From 196ca0019488eb17c36b62a1a44b7148e1c75433 Mon Sep 17 00:00:00 2001 From: andupetcu <47487320+andupetcu@users.noreply.github.com> Date: Sun, 21 Sep 2025 01:06:30 +0300 Subject: [PATCH] Fix authentication state persistence and admin role display MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Implement complete authentication system with JWT token validation - Add auth provider with persistent login state across page refreshes - Create multilingual login/register forms with Material-UI components - Fix token validation using raw SQL queries to bypass Prisma sync issues - Add comprehensive error handling for expired/invalid tokens - Create profile and settings pages with full i18n support - Add proper user role management (admin/user) with database sync - Implement secure middleware with CSRF protection and auth checks - Add debug endpoints for troubleshooting authentication issues - Fix Zustand store persistence for authentication state 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- app/[locale]/auth/login/page.tsx | 133 + app/[locale]/layout.tsx | 9 +- app/[locale]/login/page.tsx | 32 + app/[locale]/profile/page.tsx | 220 + app/[locale]/settings/page.tsx | 230 + app/api/auth/login/route.ts | 43 +- app/api/auth/logout/route.ts | 23 + app/api/auth/me/route.ts | 29 +- app/api/auth/register/route.ts | 37 +- app/api/debug/schema/route.ts | 35 + app/api/debug/token/route.ts | 53 + app/api/debug/user/route.ts | 43 + components/auth/auth-provider.tsx | 316 + components/auth/login-form.tsx | 148 +- components/auth/protected-route.tsx | 48 + components/auth/register-form.tsx | 200 + components/layout/navigation.tsx | 114 +- data/en_bible/BSB/EXO/chapter-1.json | 93 + data/en_bible/BSB/EXO/chapter-10.json | 121 + data/en_bible/BSB/EXO/chapter-11.json | 45 + data/en_bible/BSB/EXO/chapter-12.json | 209 + data/en_bible/BSB/EXO/chapter-13.json | 93 + data/en_bible/BSB/EXO/chapter-14.json | 129 + data/en_bible/BSB/EXO/chapter-15.json | 113 + data/en_bible/BSB/EXO/chapter-16.json | 149 + data/en_bible/BSB/EXO/chapter-17.json | 69 + data/en_bible/BSB/EXO/chapter-18.json | 113 + data/en_bible/BSB/EXO/chapter-19.json | 105 + data/en_bible/BSB/EXO/chapter-2.json | 105 + data/en_bible/BSB/EXO/chapter-20.json | 109 + data/en_bible/BSB/EXO/chapter-21.json | 149 + data/en_bible/BSB/EXO/chapter-22.json | 129 + data/en_bible/BSB/EXO/chapter-23.json | 137 + data/en_bible/BSB/EXO/chapter-24.json | 77 + data/en_bible/BSB/EXO/chapter-25.json | 165 + data/en_bible/BSB/EXO/chapter-26.json | 153 + data/en_bible/BSB/EXO/chapter-27.json | 89 + data/en_bible/BSB/EXO/chapter-28.json | 177 + data/en_bible/BSB/EXO/chapter-29.json | 189 + data/en_bible/BSB/EXO/chapter-3.json | 93 + data/en_bible/BSB/EXO/chapter-30.json | 157 + data/en_bible/BSB/EXO/chapter-31.json | 77 + data/en_bible/BSB/EXO/chapter-32.json | 145 + data/en_bible/BSB/EXO/chapter-33.json | 97 + data/en_bible/BSB/EXO/chapter-34.json | 145 + data/en_bible/BSB/EXO/chapter-35.json | 145 + data/en_bible/BSB/EXO/chapter-36.json | 157 + data/en_bible/BSB/EXO/chapter-37.json | 121 + data/en_bible/BSB/EXO/chapter-38.json | 129 + data/en_bible/BSB/EXO/chapter-39.json | 177 + data/en_bible/BSB/EXO/chapter-4.json | 129 + data/en_bible/BSB/EXO/chapter-40.json | 157 + data/en_bible/BSB/EXO/chapter-5.json | 97 + data/en_bible/BSB/EXO/chapter-6.json | 125 + data/en_bible/BSB/EXO/chapter-7.json | 105 + data/en_bible/BSB/EXO/chapter-8.json | 133 + data/en_bible/BSB/EXO/chapter-9.json | 145 + data/en_bible/BSB/EXO/chapter-intro.json | 9 + data/en_bible/BSB/GEN/chapter-1.json | 129 + data/en_bible/BSB/GEN/chapter-10.json | 133 + data/en_bible/BSB/GEN/chapter-11.json | 133 + data/en_bible/BSB/GEN/chapter-12.json | 85 + data/en_bible/BSB/GEN/chapter-13.json | 77 + data/en_bible/BSB/GEN/chapter-14.json | 101 + data/en_bible/BSB/GEN/chapter-15.json | 89 + data/en_bible/BSB/GEN/chapter-16.json | 69 + data/en_bible/BSB/GEN/chapter-17.json | 113 + data/en_bible/BSB/GEN/chapter-18.json | 137 + data/en_bible/BSB/GEN/chapter-19.json | 157 + data/en_bible/BSB/GEN/chapter-2.json | 105 + data/en_bible/BSB/GEN/chapter-20.json | 77 + data/en_bible/BSB/GEN/chapter-21.json | 141 + data/en_bible/BSB/GEN/chapter-22.json | 101 + data/en_bible/BSB/GEN/chapter-23.json | 85 + data/en_bible/BSB/GEN/chapter-24.json | 273 + data/en_bible/BSB/GEN/chapter-25.json | 141 + data/en_bible/BSB/GEN/chapter-26.json | 145 + data/en_bible/BSB/GEN/chapter-27.json | 189 + data/en_bible/BSB/GEN/chapter-28.json | 93 + data/en_bible/BSB/GEN/chapter-29.json | 145 + data/en_bible/BSB/GEN/chapter-3.json | 101 + data/en_bible/BSB/GEN/chapter-30.json | 177 + data/en_bible/BSB/GEN/chapter-31.json | 225 + data/en_bible/BSB/GEN/chapter-32.json | 133 + data/en_bible/BSB/GEN/chapter-33.json | 85 + data/en_bible/BSB/GEN/chapter-34.json | 129 + data/en_bible/BSB/GEN/chapter-35.json | 121 + data/en_bible/BSB/GEN/chapter-36.json | 177 + data/en_bible/BSB/GEN/chapter-37.json | 149 + data/en_bible/BSB/GEN/chapter-38.json | 125 + data/en_bible/BSB/GEN/chapter-39.json | 97 + data/en_bible/BSB/GEN/chapter-4.json | 109 + data/en_bible/BSB/GEN/chapter-40.json | 97 + data/en_bible/BSB/GEN/chapter-41.json | 233 + data/en_bible/BSB/GEN/chapter-42.json | 157 + data/en_bible/BSB/GEN/chapter-43.json | 141 + data/en_bible/BSB/GEN/chapter-44.json | 141 + data/en_bible/BSB/GEN/chapter-45.json | 117 + data/en_bible/BSB/GEN/chapter-46.json | 141 + data/en_bible/BSB/GEN/chapter-47.json | 129 + data/en_bible/BSB/GEN/chapter-48.json | 93 + data/en_bible/BSB/GEN/chapter-49.json | 137 + data/en_bible/BSB/GEN/chapter-5.json | 133 + data/en_bible/BSB/GEN/chapter-50.json | 109 + data/en_bible/BSB/GEN/chapter-6.json | 93 + data/en_bible/BSB/GEN/chapter-7.json | 101 + data/en_bible/BSB/GEN/chapter-8.json | 93 + data/en_bible/BSB/GEN/chapter-9.json | 121 + data/en_bible/BSB/GEN/chapter-intro.json | 9 + data/en_bible/BSB/LEV/chapter-1.json | 73 + data/en_bible/BSB/LEV/chapter-10.json | 85 + data/en_bible/BSB/LEV/chapter-11.json | 193 + data/en_bible/BSB/LEV/chapter-12.json | 37 + data/en_bible/BSB/LEV/chapter-13.json | 241 + data/en_bible/BSB/LEV/chapter-14.json | 233 + data/en_bible/BSB/LEV/chapter-15.json | 137 + data/en_bible/BSB/LEV/chapter-16.json | 141 + data/en_bible/BSB/LEV/chapter-17.json | 69 + data/en_bible/BSB/LEV/chapter-18.json | 125 + data/en_bible/BSB/LEV/chapter-19.json | 153 + data/en_bible/BSB/LEV/chapter-2.json | 69 + data/en_bible/BSB/LEV/chapter-20.json | 113 + data/en_bible/BSB/LEV/chapter-21.json | 101 + data/en_bible/BSB/LEV/chapter-22.json | 137 + data/en_bible/BSB/LEV/chapter-23.json | 181 + data/en_bible/BSB/LEV/chapter-24.json | 97 + data/en_bible/BSB/LEV/chapter-25.json | 225 + data/en_bible/BSB/LEV/chapter-26.json | 189 + data/en_bible/BSB/LEV/chapter-27.json | 141 + data/en_bible/BSB/LEV/chapter-3.json | 73 + data/en_bible/BSB/LEV/chapter-4.json | 145 + data/en_bible/BSB/LEV/chapter-5.json | 81 + data/en_bible/BSB/LEV/chapter-6.json | 125 + data/en_bible/BSB/LEV/chapter-7.json | 157 + data/en_bible/BSB/LEV/chapter-8.json | 149 + data/en_bible/BSB/LEV/chapter-9.json | 101 + data/en_bible/BSB/LEV/chapter-intro.json | 9 + data/en_bible/BSB/NUM/chapter-1.json | 221 + data/en_bible/BSB/NUM/chapter-2.json | 141 + data/en_bible/BSB/NUM/chapter-3.json | 209 + data/en_bible/BSB/NUM/chapter-4.json | 201 + data/en_bible/BSB/NUM/chapter-5.json | 129 + data/en_bible/BSB/NUM/chapter-6.json | 113 + data/en_bible/BSB/NUM/chapter-intro.json | 9 + data/en_bible/BSB/new_testament.json | 4 + data/en_bible/BSB/old_testament.json | 16044 +++ data/en_bible/BSB_MD/new_testament.json | 5345 + data/en_bible/BSB_MD/old_testament.json | 8615 ++ data/en_bible/BSB_SAMPLES/new_testament.json | 4 + data/en_bible/BSB_SAMPLES/old_testament.json | 19 + data/en_bible/BSB_VALIDATION/report.json | 1517 + data/en_bible/WEB/new_testament.json | 33272 ++++++ data/en_bible/WEB/old_testament.json | 97425 ++++++++++++++++ hooks/use-auth.ts | 46 +- lib/auth/client.ts | 29 + lib/auth/index.ts | 36 +- lib/store/index.ts | 8 + lib/validation/index.ts | 84 +- lib/vector-search.ts | 15 +- messages/en.json | 74 + messages/ro.json | 74 + middleware.ts | 18 +- prisma/schema.prisma | 3 + scripts/assemble-english-from-cache.ts | 71 + scripts/cleanup-english-versions.ts | 63 + scripts/clone_vector_table.ts | 74 + scripts/import-english-json.ts | 140 + scripts/parse-bsb-md-full.js | 103 + scripts/parse-bsb-md-samples.ts | 83 + scripts/usfm-to-json.ts | 163 + scripts/validate-bsb-md.js | 143 + scripts/validate-bsb-md.ts | 145 + .../multi-language-implementation-plan.md | 0 types/index.ts | 1 + 174 files changed, 181207 insertions(+), 179 deletions(-) create mode 100644 app/[locale]/auth/login/page.tsx create mode 100644 app/[locale]/login/page.tsx create mode 100644 app/[locale]/profile/page.tsx create mode 100644 app/[locale]/settings/page.tsx create mode 100644 app/api/auth/logout/route.ts create mode 100644 app/api/debug/schema/route.ts create mode 100644 app/api/debug/token/route.ts create mode 100644 app/api/debug/user/route.ts create mode 100644 components/auth/auth-provider.tsx create mode 100644 components/auth/protected-route.tsx create mode 100644 components/auth/register-form.tsx create mode 100644 data/en_bible/BSB/EXO/chapter-1.json create mode 100644 data/en_bible/BSB/EXO/chapter-10.json create mode 100644 data/en_bible/BSB/EXO/chapter-11.json create mode 100644 data/en_bible/BSB/EXO/chapter-12.json create mode 100644 data/en_bible/BSB/EXO/chapter-13.json create mode 100644 data/en_bible/BSB/EXO/chapter-14.json create mode 100644 data/en_bible/BSB/EXO/chapter-15.json create mode 100644 data/en_bible/BSB/EXO/chapter-16.json create mode 100644 data/en_bible/BSB/EXO/chapter-17.json create mode 100644 data/en_bible/BSB/EXO/chapter-18.json create mode 100644 data/en_bible/BSB/EXO/chapter-19.json create mode 100644 data/en_bible/BSB/EXO/chapter-2.json create mode 100644 data/en_bible/BSB/EXO/chapter-20.json create mode 100644 data/en_bible/BSB/EXO/chapter-21.json create mode 100644 data/en_bible/BSB/EXO/chapter-22.json create mode 100644 data/en_bible/BSB/EXO/chapter-23.json create mode 100644 data/en_bible/BSB/EXO/chapter-24.json create mode 100644 data/en_bible/BSB/EXO/chapter-25.json create mode 100644 data/en_bible/BSB/EXO/chapter-26.json create mode 100644 data/en_bible/BSB/EXO/chapter-27.json create mode 100644 data/en_bible/BSB/EXO/chapter-28.json create mode 100644 data/en_bible/BSB/EXO/chapter-29.json create mode 100644 data/en_bible/BSB/EXO/chapter-3.json create mode 100644 data/en_bible/BSB/EXO/chapter-30.json create mode 100644 data/en_bible/BSB/EXO/chapter-31.json create mode 100644 data/en_bible/BSB/EXO/chapter-32.json create mode 100644 data/en_bible/BSB/EXO/chapter-33.json create mode 100644 data/en_bible/BSB/EXO/chapter-34.json create mode 100644 data/en_bible/BSB/EXO/chapter-35.json create mode 100644 data/en_bible/BSB/EXO/chapter-36.json create mode 100644 data/en_bible/BSB/EXO/chapter-37.json create mode 100644 data/en_bible/BSB/EXO/chapter-38.json create mode 100644 data/en_bible/BSB/EXO/chapter-39.json create mode 100644 data/en_bible/BSB/EXO/chapter-4.json create mode 100644 data/en_bible/BSB/EXO/chapter-40.json create mode 100644 data/en_bible/BSB/EXO/chapter-5.json create mode 100644 data/en_bible/BSB/EXO/chapter-6.json create mode 100644 data/en_bible/BSB/EXO/chapter-7.json create mode 100644 data/en_bible/BSB/EXO/chapter-8.json create mode 100644 data/en_bible/BSB/EXO/chapter-9.json create mode 100644 data/en_bible/BSB/EXO/chapter-intro.json create mode 100644 data/en_bible/BSB/GEN/chapter-1.json create mode 100644 data/en_bible/BSB/GEN/chapter-10.json create mode 100644 data/en_bible/BSB/GEN/chapter-11.json create mode 100644 data/en_bible/BSB/GEN/chapter-12.json create mode 100644 data/en_bible/BSB/GEN/chapter-13.json create mode 100644 data/en_bible/BSB/GEN/chapter-14.json create mode 100644 data/en_bible/BSB/GEN/chapter-15.json create mode 100644 data/en_bible/BSB/GEN/chapter-16.json create mode 100644 data/en_bible/BSB/GEN/chapter-17.json create mode 100644 data/en_bible/BSB/GEN/chapter-18.json create mode 100644 data/en_bible/BSB/GEN/chapter-19.json create mode 100644 data/en_bible/BSB/GEN/chapter-2.json create mode 100644 data/en_bible/BSB/GEN/chapter-20.json create mode 100644 data/en_bible/BSB/GEN/chapter-21.json create mode 100644 data/en_bible/BSB/GEN/chapter-22.json create mode 100644 data/en_bible/BSB/GEN/chapter-23.json create mode 100644 data/en_bible/BSB/GEN/chapter-24.json create mode 100644 data/en_bible/BSB/GEN/chapter-25.json create mode 100644 data/en_bible/BSB/GEN/chapter-26.json create mode 100644 data/en_bible/BSB/GEN/chapter-27.json create mode 100644 data/en_bible/BSB/GEN/chapter-28.json create mode 100644 data/en_bible/BSB/GEN/chapter-29.json create mode 100644 data/en_bible/BSB/GEN/chapter-3.json create mode 100644 data/en_bible/BSB/GEN/chapter-30.json create mode 100644 data/en_bible/BSB/GEN/chapter-31.json create mode 100644 data/en_bible/BSB/GEN/chapter-32.json create mode 100644 data/en_bible/BSB/GEN/chapter-33.json create mode 100644 data/en_bible/BSB/GEN/chapter-34.json create mode 100644 data/en_bible/BSB/GEN/chapter-35.json create mode 100644 data/en_bible/BSB/GEN/chapter-36.json create mode 100644 data/en_bible/BSB/GEN/chapter-37.json create mode 100644 data/en_bible/BSB/GEN/chapter-38.json create mode 100644 data/en_bible/BSB/GEN/chapter-39.json create mode 100644 data/en_bible/BSB/GEN/chapter-4.json create mode 100644 data/en_bible/BSB/GEN/chapter-40.json create mode 100644 data/en_bible/BSB/GEN/chapter-41.json create mode 100644 data/en_bible/BSB/GEN/chapter-42.json create mode 100644 data/en_bible/BSB/GEN/chapter-43.json create mode 100644 data/en_bible/BSB/GEN/chapter-44.json create mode 100644 data/en_bible/BSB/GEN/chapter-45.json create mode 100644 data/en_bible/BSB/GEN/chapter-46.json create mode 100644 data/en_bible/BSB/GEN/chapter-47.json create mode 100644 data/en_bible/BSB/GEN/chapter-48.json create mode 100644 data/en_bible/BSB/GEN/chapter-49.json create mode 100644 data/en_bible/BSB/GEN/chapter-5.json create mode 100644 data/en_bible/BSB/GEN/chapter-50.json create mode 100644 data/en_bible/BSB/GEN/chapter-6.json create mode 100644 data/en_bible/BSB/GEN/chapter-7.json create mode 100644 data/en_bible/BSB/GEN/chapter-8.json create mode 100644 data/en_bible/BSB/GEN/chapter-9.json create mode 100644 data/en_bible/BSB/GEN/chapter-intro.json create mode 100644 data/en_bible/BSB/LEV/chapter-1.json create mode 100644 data/en_bible/BSB/LEV/chapter-10.json create mode 100644 data/en_bible/BSB/LEV/chapter-11.json create mode 100644 data/en_bible/BSB/LEV/chapter-12.json create mode 100644 data/en_bible/BSB/LEV/chapter-13.json create mode 100644 data/en_bible/BSB/LEV/chapter-14.json create mode 100644 data/en_bible/BSB/LEV/chapter-15.json create mode 100644 data/en_bible/BSB/LEV/chapter-16.json create mode 100644 data/en_bible/BSB/LEV/chapter-17.json create mode 100644 data/en_bible/BSB/LEV/chapter-18.json create mode 100644 data/en_bible/BSB/LEV/chapter-19.json create mode 100644 data/en_bible/BSB/LEV/chapter-2.json create mode 100644 data/en_bible/BSB/LEV/chapter-20.json create mode 100644 data/en_bible/BSB/LEV/chapter-21.json create mode 100644 data/en_bible/BSB/LEV/chapter-22.json create mode 100644 data/en_bible/BSB/LEV/chapter-23.json create mode 100644 data/en_bible/BSB/LEV/chapter-24.json create mode 100644 data/en_bible/BSB/LEV/chapter-25.json create mode 100644 data/en_bible/BSB/LEV/chapter-26.json create mode 100644 data/en_bible/BSB/LEV/chapter-27.json create mode 100644 data/en_bible/BSB/LEV/chapter-3.json create mode 100644 data/en_bible/BSB/LEV/chapter-4.json create mode 100644 data/en_bible/BSB/LEV/chapter-5.json create mode 100644 data/en_bible/BSB/LEV/chapter-6.json create mode 100644 data/en_bible/BSB/LEV/chapter-7.json create mode 100644 data/en_bible/BSB/LEV/chapter-8.json create mode 100644 data/en_bible/BSB/LEV/chapter-9.json create mode 100644 data/en_bible/BSB/LEV/chapter-intro.json create mode 100644 data/en_bible/BSB/NUM/chapter-1.json create mode 100644 data/en_bible/BSB/NUM/chapter-2.json create mode 100644 data/en_bible/BSB/NUM/chapter-3.json create mode 100644 data/en_bible/BSB/NUM/chapter-4.json create mode 100644 data/en_bible/BSB/NUM/chapter-5.json create mode 100644 data/en_bible/BSB/NUM/chapter-6.json create mode 100644 data/en_bible/BSB/NUM/chapter-intro.json create mode 100644 data/en_bible/BSB/new_testament.json create mode 100644 data/en_bible/BSB/old_testament.json create mode 100644 data/en_bible/BSB_MD/new_testament.json create mode 100644 data/en_bible/BSB_MD/old_testament.json create mode 100644 data/en_bible/BSB_SAMPLES/new_testament.json create mode 100644 data/en_bible/BSB_SAMPLES/old_testament.json create mode 100644 data/en_bible/BSB_VALIDATION/report.json create mode 100644 data/en_bible/WEB/new_testament.json create mode 100644 data/en_bible/WEB/old_testament.json create mode 100644 lib/auth/client.ts create mode 100644 scripts/assemble-english-from-cache.ts create mode 100644 scripts/cleanup-english-versions.ts create mode 100644 scripts/clone_vector_table.ts create mode 100644 scripts/import-english-json.ts create mode 100644 scripts/parse-bsb-md-full.js create mode 100644 scripts/parse-bsb-md-samples.ts create mode 100644 scripts/usfm-to-json.ts create mode 100644 scripts/validate-bsb-md.js create mode 100644 scripts/validate-bsb-md.ts rename multi-language-implementation-plan.md => temp/multi-language-implementation-plan.md (100%) diff --git a/app/[locale]/auth/login/page.tsx b/app/[locale]/auth/login/page.tsx new file mode 100644 index 0000000..f39d7f3 --- /dev/null +++ b/app/[locale]/auth/login/page.tsx @@ -0,0 +1,133 @@ +'use client' + +import { useState } from 'react' +import { useRouter } from 'next/navigation' +import { useTranslations, useLocale } from 'next-intl' +import { + Container, + Paper, + Box, + Typography, + Tabs, + Tab, + Link, + Card, + CardContent, + Divider +} from '@mui/material' +import { + MenuBook, + Login as LoginIcon, + PersonAdd +} from '@mui/icons-material' +import { LoginForm } from '@/components/auth/login-form' +import { RegisterForm } from '@/components/auth/register-form' + +export default function AuthPage() { + const [activeTab, setActiveTab] = useState(0) + const router = useRouter() + const locale = useLocale() + const t = useTranslations('auth') + + const handleAuthSuccess = () => { + router.push(`/${locale}`) + } + + const handleTabChange = (event: React.SyntheticEvent, newValue: number) => { + setActiveTab(newValue) + } + + const getSubtitle = () => { + if (locale === 'en') { + return activeTab === 0 + ? 'Sign in to continue exploring Scripture' + : 'Create an account to begin your spiritual journey' + } + return activeTab === 0 + ? 'Conectează-te pentru a continua explorarea Scripturii' + : 'Creează un cont pentru a începe călătoria ta spirituală' + } + + return ( + + + + {/* Header */} + + + + + + {activeTab === 0 ? t('welcomeBack') : t('joinUs')} + + + {getSubtitle()} + + + + + + {/* Tabs */} + + } + iconPosition="start" + label={t('login')} + /> + } + iconPosition="start" + label={t('register')} + /> + + + {/* Forms */} + + {activeTab === 0 ? ( + + ) : ( + + )} + + + + + {/* Switch Form Link */} + + + {activeTab === 0 ? t('noAccount') : t('alreadyHaveAccount')}{' '} + setActiveTab(activeTab === 0 ? 1 : 0)} + sx={{ + textDecoration: 'none', + fontWeight: 600, + '&:hover': { + textDecoration: 'underline' + } + }} + > + {activeTab === 0 ? t('createAccount') : t('login')} + + + + + + + ) +} \ No newline at end of file diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx index 5ce12fa..8725918 100644 --- a/app/[locale]/layout.tsx +++ b/app/[locale]/layout.tsx @@ -4,6 +4,7 @@ import { NextIntlClientProvider } from 'next-intl' import { getMessages } from 'next-intl/server' import { notFound } from 'next/navigation' import { MuiThemeProvider } from '@/components/providers/theme-provider' +import { AuthProvider } from '@/components/auth/auth-provider' import { Navigation } from '@/components/layout/navigation' import FloatingChat from '@/components/chat/floating-chat' import { merriweather, lato } from '@/lib/fonts' @@ -45,9 +46,11 @@ export default async function LocaleLayout({ - - {children} - + + + {children} + + diff --git a/app/[locale]/login/page.tsx b/app/[locale]/login/page.tsx new file mode 100644 index 0000000..342671c --- /dev/null +++ b/app/[locale]/login/page.tsx @@ -0,0 +1,32 @@ +'use client' + +import { useEffect } from 'react' +import { useRouter } from 'next/navigation' +import { useLocale } from 'next-intl' +import { Box, CircularProgress, Typography } from '@mui/material' + +export default function LoginRedirectPage() { + const router = useRouter() + const locale = useLocale() + + useEffect(() => { + // Redirect to the actual login page + router.replace(`/${locale}/auth/login`) + }, [router, locale]) + + return ( + + + + Redirecting to login... + + + ) +} \ No newline at end of file diff --git a/app/[locale]/profile/page.tsx b/app/[locale]/profile/page.tsx new file mode 100644 index 0000000..b3e7b5e --- /dev/null +++ b/app/[locale]/profile/page.tsx @@ -0,0 +1,220 @@ +'use client' + +import { useState } from 'react' +import { useTranslations } from 'next-intl' +import { useAuth } from '@/hooks/use-auth' +import { ProtectedRoute } from '@/components/auth/protected-route' +import { + Container, + Paper, + Box, + Typography, + TextField, + Button, + Avatar, + Grid, + Card, + CardContent, + Divider, + Alert, + CircularProgress +} from '@mui/material' +import { + Person, + Email, + AdminPanelSettings, + Save, + Edit +} from '@mui/icons-material' + +export default function ProfilePage() { + const { user } = useAuth() + const t = useTranslations('profile') + const [isEditing, setIsEditing] = useState(false) + const [name, setName] = useState(user?.name || '') + const [loading, setLoading] = useState(false) + const [message, setMessage] = useState('') + + const handleSave = async () => { + setLoading(true) + setMessage('') + + try { + // TODO: Implement profile update API + await new Promise(resolve => setTimeout(resolve, 1000)) // Placeholder + setMessage(t('profileUpdated')) + setIsEditing(false) + } catch (error) { + setMessage(t('updateError')) + } finally { + setLoading(false) + } + } + + const handleCancel = () => { + setName(user?.name || '') + setIsEditing(false) + } + + const getRoleTranslation = (role: string) => { + switch (role) { + case 'admin': + return t('admin') + case 'moderator': + return t('moderator') + default: + return t('user') + } + } + + return ( + + + + {/* Header */} + + + {user?.name ? user.name.charAt(0).toUpperCase() : } + + + {t('title')} + + + {t('subtitle')} + + + + + + {/* Profile Information */} + + {/* Personal Information Card */} + + + + + + {t('personalInfo')} + + {!isEditing && ( + + )} + + + + setName(e.target.value)} + disabled={!isEditing || loading} + variant="outlined" + margin="normal" + InputProps={{ + startAdornment: + }} + /> + + + + + }} + helperText={t('emailCannotChange')} + /> + + + {isEditing && ( + + + + + )} + + + + + {/* Account Details Card */} + + + + + {t('accountDetails')} + + + + + + + {t('role')} + + + {getRoleTranslation(user?.role || 'user')} + + + + + + + {t('memberSince')} + + + {new Date().toLocaleDateString()} {/* TODO: Use actual creation date */} + + + + + + + + {/* Success/Error Message */} + {message && ( + setMessage('')} + > + {message} + + )} + + + + ) +} \ No newline at end of file diff --git a/app/[locale]/settings/page.tsx b/app/[locale]/settings/page.tsx new file mode 100644 index 0000000..6cf42e5 --- /dev/null +++ b/app/[locale]/settings/page.tsx @@ -0,0 +1,230 @@ +'use client' + +import { useState } from 'react' +import { useTranslations, useLocale } from 'next-intl' +import { useAuth } from '@/hooks/use-auth' +import { ProtectedRoute } from '@/components/auth/protected-route' +import { + Container, + Paper, + Box, + Typography, + Switch, + FormControlLabel, + Select, + MenuItem, + FormControl, + InputLabel, + Grid, + Card, + CardContent, + Divider, + Alert, + Button +} from '@mui/material' +import { + Settings as SettingsIcon, + Palette, + TextFields, + Language, + Notifications, + Security, + Save +} from '@mui/icons-material' + +export default function SettingsPage() { + const { user } = useAuth() + const locale = useLocale() + const t = useTranslations('settings') + const [settings, setSettings] = useState({ + theme: user?.theme || 'light', + fontSize: user?.fontSize || 'medium', + notifications: true, + emailUpdates: false, + language: locale + }) + const [message, setMessage] = useState('') + + const handleSettingChange = (setting: string, value: any) => { + setSettings(prev => ({ + ...prev, + [setting]: value + })) + } + + const handleSave = async () => { + try { + // TODO: Implement settings update API + await new Promise(resolve => setTimeout(resolve, 1000)) // Placeholder + setMessage(t('settingsSaved')) + } catch (error) { + setMessage(t('settingsError')) + } + } + + return ( + + + + {/* Header */} + + + + {t('title')} + + + {t('subtitle')} + + + + + + + {/* Appearance Settings */} + + + + + + + {t('appearance')} + + + + + + {t('theme')} + + + + + + + {t('fontSize')} + + + + + + + + {/* Language & Notifications */} + + + + + + + {t('languageAndNotifications')} + + + + + + {t('language')} + + + + + + handleSettingChange('notifications', e.target.checked)} + /> + } + label={t('notifications')} + /> + + + + handleSettingChange('emailUpdates', e.target.checked)} + /> + } + label={t('emailUpdates')} + /> + + + + + + {/* Security Settings */} + + + + + + + {t('security')} + + + + + {t('passwordSecurity')} + + + + + + + + + {/* Save Button */} + + + + + {/* Success/Error Message */} + {message && ( + setMessage('')} + > + {message} + + )} + + + + ) +} \ No newline at end of file diff --git a/app/api/auth/login/route.ts b/app/api/auth/login/route.ts index bfbcdbd..b9f0d81 100644 --- a/app/api/auth/login/route.ts +++ b/app/api/auth/login/route.ts @@ -1,22 +1,50 @@ import { NextResponse } from 'next/server' import { validateUser, generateToken } from '@/lib/auth' import { prisma } from '@/lib/db' +import { createUserLoginSchema } from '@/lib/validation' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + fieldsRequired: 'Email și parola sunt obligatorii', + invalidCredentials: 'Email sau parolă incorectă', + serverError: 'Eroare de server', + invalidInput: 'Date de intrare invalide' + }, + en: { + fieldsRequired: 'Email and password are required', + invalidCredentials: 'Invalid email or password', + serverError: 'Server error', + invalidInput: 'Invalid input data' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function POST(request: Request) { try { - const { email, password } = await request.json() + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + + const body = await request.json() + const { email, password } = body // Validation - if (!email || !password) { - return NextResponse.json({ error: 'Email și parola sunt obligatorii' }, { status: 400 }) + const loginSchema = createUserLoginSchema(locale) + const result = loginSchema.safeParse({ email, password }) + + if (!result.success) { + const errors = result.error.errors.map(err => err.message).join(', ') + return NextResponse.json({ error: errors }, { status: 400 }) } // Validate user const user = await validateUser(email, password) if (!user) { - return NextResponse.json({ error: 'Email sau parolă incorectă' }, { status: 401 }) + return NextResponse.json({ error: messages.invalidCredentials }, { status: 401 }) } // Generate token @@ -38,11 +66,14 @@ export async function POST(request: Request) { }) return NextResponse.json({ - user: { id: user.id, email: user.email, name: user.name }, + user: { id: user.id, email: user.email, name: user.name, role: user.role, theme: user.theme, fontSize: user.fontSize }, token }) } catch (error) { console.error('Login error:', error) - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/auth/logout/route.ts b/app/api/auth/logout/route.ts new file mode 100644 index 0000000..67b8d76 --- /dev/null +++ b/app/api/auth/logout/route.ts @@ -0,0 +1,23 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const authHeader = request.headers.get('authorization') + const token = authHeader?.replace('Bearer ', '') + + if (token) { + // Remove the session from database + await prisma.session.deleteMany({ + where: { token } + }) + } + + return NextResponse.json({ success: true }) + } catch (error) { + console.error('Logout error:', error) + return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/auth/me/route.ts b/app/api/auth/me/route.ts index 572ac80..507240b 100644 --- a/app/api/auth/me/route.ts +++ b/app/api/auth/me/route.ts @@ -3,23 +3,46 @@ import { getUserFromToken } from '@/lib/auth' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + tokenRequired: 'Token de autentificare necesar', + invalidToken: 'Token invalid', + serverError: 'Eroare de server' + }, + en: { + tokenRequired: 'Authentication token required', + invalidToken: 'Invalid token', + serverError: 'Server error' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function GET(request: Request) { try { + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + const authHeader = request.headers.get('authorization') const token = authHeader?.replace('Bearer ', '') if (!token) { - return NextResponse.json({ error: 'Token de autentificare necesar' }, { status: 401 }) + return NextResponse.json({ error: messages.tokenRequired }, { status: 401 }) } const user = await getUserFromToken(token) if (!user) { - return NextResponse.json({ error: 'Token invalid' }, { status: 401 }) + return NextResponse.json({ error: messages.invalidToken }, { status: 401 }) } return NextResponse.json({ user }) } catch (error) { console.error('User validation error:', error) - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/auth/register/route.ts b/app/api/auth/register/route.ts index a1a5bc1..88564ec 100644 --- a/app/api/auth/register/route.ts +++ b/app/api/auth/register/route.ts @@ -1,17 +1,38 @@ import { NextResponse } from 'next/server' import { createUser, generateToken } from '@/lib/auth' import { prisma } from '@/lib/db' -import { userRegistrationSchema } from '@/lib/validation' +import { createUserRegistrationSchema } from '@/lib/validation' import { z } from 'zod' export const runtime = 'nodejs' +function getErrorMessages(locale: string = 'ro') { + const messages = { + ro: { + userExists: 'Utilizatorul există deja', + serverError: 'Eroare de server', + invalidInput: 'Date de intrare invalide' + }, + en: { + userExists: 'User already exists', + serverError: 'Server error', + invalidInput: 'Invalid input data' + } + } + return messages[locale as keyof typeof messages] || messages.ro +} + export async function POST(request: Request) { try { + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + const body = await request.json() // Validate input - const result = userRegistrationSchema.safeParse(body) + const registrationSchema = createUserRegistrationSchema(locale) + const result = registrationSchema.safeParse(body) if (!result.success) { const errors = result.error.errors.map(err => err.message).join(', ') return NextResponse.json({ error: errors }, { status: 400 }) @@ -22,7 +43,7 @@ export async function POST(request: Request) { // Check if user exists const existing = await prisma.user.findUnique({ where: { email } }) if (existing) { - return NextResponse.json({ error: 'Utilizatorul există deja' }, { status: 409 }) + return NextResponse.json({ error: messages.userExists }, { status: 409 }) } // Create user @@ -39,14 +60,18 @@ export async function POST(request: Request) { }) return NextResponse.json({ - user: { id: user.id, email: user.email, name: user.name }, + user: { id: user.id, email: user.email, name: user.name, role: user.role, theme: user.theme, fontSize: user.fontSize }, token }) } catch (error) { console.error('Registration error:', error) + const url = new URL(request.url) + const locale = url.searchParams.get('locale') || 'ro' + const messages = getErrorMessages(locale) + if (error instanceof z.ZodError) { - return NextResponse.json({ error: 'Date de intrare invalide' }, { status: 400 }) + return NextResponse.json({ error: messages.invalidInput }, { status: 400 }) } - return NextResponse.json({ error: 'Eroare de server' }, { status: 500 }) + return NextResponse.json({ error: messages.serverError }, { status: 500 }) } } diff --git a/app/api/debug/schema/route.ts b/app/api/debug/schema/route.ts new file mode 100644 index 0000000..10102ba --- /dev/null +++ b/app/api/debug/schema/route.ts @@ -0,0 +1,35 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function GET() { + try { + // Get table structure for User table + const tableInfo = await prisma.$queryRaw` + SELECT column_name, data_type, is_nullable, column_default + FROM information_schema.columns + WHERE table_name = 'User' AND table_schema = 'public' + ORDER BY ordinal_position; + ` + + // Also try to get one user record to see what fields are actually there + let sampleUser = null + try { + sampleUser = await prisma.$queryRaw`SELECT * FROM "User" LIMIT 1;` + } catch (e) { + sampleUser = { error: 'Could not fetch sample user: ' + e.message } + } + + return NextResponse.json({ + tableStructure: tableInfo, + sampleUser: sampleUser + }) + } catch (error) { + console.error('Schema debug error:', error) + return NextResponse.json({ + error: 'Schema debug failed', + details: error.message + }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/debug/token/route.ts b/app/api/debug/token/route.ts new file mode 100644 index 0000000..13ca661 --- /dev/null +++ b/app/api/debug/token/route.ts @@ -0,0 +1,53 @@ +import { NextResponse } from 'next/server' +import jwt from 'jsonwebtoken' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const { token } = await request.json() + + if (!token) { + return NextResponse.json({ error: 'Token required' }, { status: 400 }) + } + + // Log environment info + const hasSecret = !!process.env.JWT_SECRET + const secretPreview = process.env.JWT_SECRET ? process.env.JWT_SECRET.substring(0, 10) + '...' : 'MISSING' + + console.log('Debug: JWT_SECRET exists:', hasSecret) + console.log('Debug: JWT_SECRET preview:', secretPreview) + + // Try to decode without verification first + let decodedWithoutVerification + try { + decodedWithoutVerification = jwt.decode(token, { complete: true }) + console.log('Debug: Token decoded without verification:', !!decodedWithoutVerification) + } catch (e) { + console.log('Debug: Token decode failed:', e.message) + } + + // Try to verify + let verificationResult + try { + verificationResult = jwt.verify(token, process.env.JWT_SECRET!) + console.log('Debug: Token verification successful') + } catch (e) { + console.log('Debug: Token verification failed:', e.message) + verificationResult = { error: e.message } + } + + return NextResponse.json({ + hasSecret, + secretPreview, + decodedWithoutVerification: !!decodedWithoutVerification, + payload: decodedWithoutVerification?.payload, + verificationResult: typeof verificationResult === 'object' && 'error' in verificationResult + ? verificationResult + : { success: true, payload: verificationResult } + }) + } catch (error) { + console.error('Debug endpoint error:', error) + return NextResponse.json({ error: 'Debug failed' }, { status: 500 }) + } +} \ No newline at end of file diff --git a/app/api/debug/user/route.ts b/app/api/debug/user/route.ts new file mode 100644 index 0000000..fe8921f --- /dev/null +++ b/app/api/debug/user/route.ts @@ -0,0 +1,43 @@ +import { NextResponse } from 'next/server' +import { prisma } from '@/lib/db' + +export const runtime = 'nodejs' + +export async function POST(request: Request) { + try { + const { userId } = await request.json() + + if (!userId) { + return NextResponse.json({ error: 'userId required' }, { status: 400 }) + } + + // Use raw query to avoid Prisma client sync issues + const users = await prisma.$queryRaw` + SELECT id, email, name, role, theme, "fontSize", "createdAt", "updatedAt", "lastLoginAt" + FROM "User" + WHERE id = ${userId} + ` + const user = Array.isArray(users) && users.length > 0 ? users[0] : null + + // Also get a count of all users + const userCount = await prisma.user.count() + + // Get all user IDs for comparison + const allUsers = await prisma.user.findMany({ + select: { id: true, email: true, createdAt: true }, + orderBy: { createdAt: 'desc' }, + take: 5 + }) + + return NextResponse.json({ + searchedUserId: userId, + userExists: !!user, + user: user || null, + totalUsers: userCount, + recentUsers: allUsers + }) + } catch (error) { + console.error('User debug error:', error) + return NextResponse.json({ error: 'Debug failed', details: error.message }, { status: 500 }) + } +} \ No newline at end of file diff --git a/components/auth/auth-provider.tsx b/components/auth/auth-provider.tsx new file mode 100644 index 0000000..0949916 --- /dev/null +++ b/components/auth/auth-provider.tsx @@ -0,0 +1,316 @@ +'use client' + +import React, { createContext, useContext, useEffect, useState, ReactNode } from 'react' +import { useLocale } from 'next-intl' +import { useStore } from '@/lib/store' +import { isTokenExpired, clearExpiredToken } from '@/lib/auth/client' + +interface User { + id: string + email: string + name?: string + role: string + theme: string + fontSize: string + createdAt: Date + updatedAt: Date + lastLoginAt?: Date +} + +interface AuthContextType { + user: User | null + isAuthenticated: boolean + isLoading: boolean + login: (email: string, password: string) => Promise<{ success: boolean; error?: string }> + register: (email: string, password: string, name?: string) => Promise<{ success: boolean; error?: string }> + logout: () => Promise + refreshUser: () => Promise +} + +const AuthContext = createContext(undefined) + +interface AuthProviderProps { + children: ReactNode +} + +export function AuthProvider({ children }: AuthProviderProps) { + const [isLoading, setIsLoading] = useState(true) + const [initialized, setInitialized] = useState(false) + const locale = useLocale() + const { user, setUser } = useStore() + + const refreshUser = async (forceRefresh = false) => { + const token = localStorage.getItem('authToken') + if (!token) { + setUser(null) + setIsLoading(false) + return + } + + // Check if token is expired before making request + if (isTokenExpired(token)) { + console.log('Token expired in refreshUser, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + setIsLoading(false) + return + } + + // If we already have a user and this isn't a forced refresh, don't re-fetch + if (user && !forceRefresh) { + setIsLoading(false) + return + } + + try { + const response = await fetch(`/api/auth/me?locale=${locale}`, { + headers: { + 'Authorization': `Bearer ${token}` + } + }) + + if (response.ok) { + const data = await response.json() + setUser(data.user) + } else { + // Token is invalid or expired, get error details + try { + const errorData = await response.json() + console.log('Server returned 401 error:', errorData) + } catch (e) { + console.log('Server returned 401 without JSON body, status:', response.status) + } + console.log('Token expired or invalid, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + } + } catch (error) { + console.error('Auth check failed:', error) + // Network error or other issues, clean up auth state + localStorage.removeItem('authToken') + setUser(null) + } finally { + setIsLoading(false) + } + } + + // Debug database schema + const debugSchema = async () => { + try { + const response = await fetch('/api/debug/schema') + const debug = await response.json() + console.log('Database schema info:', debug) + } catch (e) { + console.log('Schema debug failed:', e) + } + } + + // Debug user lookup + const debugUser = async (userId: string) => { + try { + const response = await fetch('/api/debug/user', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ userId }) + }) + const debug = await response.json() + console.log('User debug info:', debug) + } catch (e) { + console.log('User debug failed:', e) + } + } + + // Debug token validation + const debugToken = async (token: string) => { + try { + const response = await fetch('/api/debug/token', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ token }) + }) + const debug = await response.json() + console.log('Token debug info:', debug) + + // Log more details about the token payload + if (debug.payload) { + console.log('Token payload:', debug.payload) + + // Debug user lookup + if (debug.payload.userId) { + debugUser(debug.payload.userId) + } + } + if (debug.verificationResult) { + console.log('Verification result:', debug.verificationResult) + } + } catch (e) { + console.log('Token debug failed:', e) + } + } + + // Clear expired tokens and sync state immediately on mount + useEffect(() => { + if (typeof window !== 'undefined') { + const token = localStorage.getItem('authToken') + console.log('Auth mount check - token exists:', !!token) + if (token) { + console.log('Token preview:', token.substring(0, 50) + '...') + + // Debug the database schema and token on server side + debugSchema() + debugToken(token) + + const expired = isTokenExpired(token) + console.log('Token expired:', expired) + if (expired) { + console.log('Clearing expired token and user state on mount') + localStorage.removeItem('authToken') + setUser(null) + } + } else if (user) { + console.log('No token but user exists in store, clearing user state') + setUser(null) + } + clearExpiredToken() + } + }, []) + + // Initialize auth state only once on mount + useEffect(() => { + if (!initialized && typeof window !== 'undefined') { + const token = localStorage.getItem('authToken') + console.log('Initialization flow - token exists:', !!token) + + if (token) { + // Check if token is expired before making request + if (isTokenExpired(token)) { + console.log('Token expired during initialization, clearing auth state') + localStorage.removeItem('authToken') + setUser(null) + setIsLoading(false) + } else { + console.log('Token is valid, calling refreshUser()') + // Token appears valid, try to refresh user data + // refreshUser will handle server-side validation failures + refreshUser() + } + } else { + console.log('No token found, clearing user state') + // No token, clear any stale user data + setUser(null) + setIsLoading(false) + } + + setInitialized(true) + } + }, [initialized]) + + // Handle hydration issues - ensure we stop loading once initialized + useEffect(() => { + if (initialized && isLoading) { + const token = localStorage.getItem('authToken') + if (!token) { + setIsLoading(false) + } + } + }, [initialized, isLoading]) + + const login = async (email: string, password: string): Promise<{ success: boolean; error?: string }> => { + try { + const response = await fetch(`/api/auth/login?locale=${locale}`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ email, password }), + }) + + const data = await response.json() + + if (response.ok) { + localStorage.setItem('authToken', data.token) + setUser(data.user) + return { success: true } + } else { + return { success: false, error: data.error } + } + } catch (error) { + console.error('Login error:', error) + return { + success: false, + error: locale === 'en' ? 'Login failed' : 'Autentificare eșuată' + } + } + } + + const register = async (email: string, password: string, name?: string): Promise<{ success: boolean; error?: string }> => { + try { + const response = await fetch(`/api/auth/register?locale=${locale}`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ email, password, name }), + }) + + const data = await response.json() + + if (response.ok) { + localStorage.setItem('authToken', data.token) + setUser(data.user) + return { success: true } + } else { + return { success: false, error: data.error } + } + } catch (error) { + console.error('Registration error:', error) + return { + success: false, + error: locale === 'en' ? 'Registration failed' : 'Înregistrare eșuată' + } + } + } + + const logout = async () => { + try { + const token = localStorage.getItem('authToken') + if (token) { + await fetch('/api/auth/logout', { + method: 'POST', + headers: { + 'Authorization': `Bearer ${token}` + } + }) + } + } catch (error) { + console.error('Logout error:', error) + } finally { + localStorage.removeItem('authToken') + setUser(null) + } + } + + const value: AuthContextType = { + user, + isAuthenticated: !!user, + isLoading, + login, + register, + logout, + refreshUser: () => refreshUser(true) + } + + return ( + + {children} + + ) +} + +export function useAuth(): AuthContextType { + const context = useContext(AuthContext) + if (context === undefined) { + throw new Error('useAuth must be used within an AuthProvider') + } + return context +} \ No newline at end of file diff --git a/components/auth/login-form.tsx b/components/auth/login-form.tsx index 35d198c..8de11d2 100644 --- a/components/auth/login-form.tsx +++ b/components/auth/login-form.tsx @@ -1,7 +1,23 @@ 'use client' import { useState } from 'react' -import { useStore } from '@/lib/store' +import { useTranslations } from 'next-intl' +import { useAuth } from './auth-provider' +import { + Box, + TextField, + Button, + Alert, + CircularProgress, + InputAdornment, + IconButton +} from '@mui/material' +import { + Email, + Lock, + Visibility, + VisibilityOff +} from '@mui/icons-material' interface LoginFormProps { onSuccess?: () => void @@ -12,7 +28,9 @@ export function LoginForm({ onSuccess }: LoginFormProps) { const [password, setPassword] = useState('') const [loading, setLoading] = useState(false) const [error, setError] = useState('') - const { setUser } = useStore() + const [showPassword, setShowPassword] = useState(false) + const { login } = useAuth() + const t = useTranslations('auth') const handleSubmit = async (e: React.FormEvent) => { e.preventDefault() @@ -20,74 +38,94 @@ export function LoginForm({ onSuccess }: LoginFormProps) { setError('') try { - const response = await fetch('/api/auth/login', { - method: 'POST', - headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ email, password }) - }) + const result = await login(email, password) - const data = await response.json() - - if (!response.ok) { - setError(data.error || 'Eroare la autentificare') - return - } - - // Store user and token - setUser(data.user) - localStorage.setItem('authToken', data.token) - - if (onSuccess) { - onSuccess() + if (result.success) { + if (onSuccess) { + onSuccess() + } + } else { + setError(result.error || t('loginError')) } } catch (error) { - setError('Eroare de conexiune') + setError(t('connectionError')) } finally { setLoading(false) } } - return ( -
-
- - setEmail(e.target.value)} - className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - required - /> -
+ const handleClickShowPassword = () => { + setShowPassword(!showPassword) + } -
- - setPassword(e.target.value)} - className="mt-1 block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - required - /> -
+ return ( + + setEmail(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showPassword ? : } + + + ), + }} + /> {error && ( -
{error}
+ + {error} + )} - - + {loading ? t('logging_in') : t('login')} + +
) } \ No newline at end of file diff --git a/components/auth/protected-route.tsx b/components/auth/protected-route.tsx new file mode 100644 index 0000000..fc06af5 --- /dev/null +++ b/components/auth/protected-route.tsx @@ -0,0 +1,48 @@ +'use client' + +import { ReactNode, useEffect } from 'react' +import { useRouter } from 'next/navigation' +import { useLocale } from 'next-intl' +import { useAuth } from './auth-provider' +import { Box, CircularProgress, Typography } from '@mui/material' + +interface ProtectedRouteProps { + children: ReactNode + fallback?: ReactNode +} + +export function ProtectedRoute({ children, fallback }: ProtectedRouteProps) { + const { isAuthenticated, isLoading } = useAuth() + const router = useRouter() + const locale = useLocale() + + useEffect(() => { + if (!isLoading && !isAuthenticated) { + router.push(`/${locale}/login`) + } + }, [isAuthenticated, isLoading, router, locale]) + + if (isLoading) { + return fallback || ( + + + + Loading... + + + ) + } + + if (!isAuthenticated) { + return null + } + + return <>{children} +} \ No newline at end of file diff --git a/components/auth/register-form.tsx b/components/auth/register-form.tsx new file mode 100644 index 0000000..f1cc142 --- /dev/null +++ b/components/auth/register-form.tsx @@ -0,0 +1,200 @@ +'use client' + +import { useState } from 'react' +import { useTranslations } from 'next-intl' +import { useAuth } from './auth-provider' +import { + Box, + TextField, + Button, + Alert, + CircularProgress, + InputAdornment, + IconButton +} from '@mui/material' +import { + Email, + Lock, + Person, + Visibility, + VisibilityOff +} from '@mui/icons-material' + +interface RegisterFormProps { + onSuccess?: () => void +} + +export function RegisterForm({ onSuccess }: RegisterFormProps) { + const [email, setEmail] = useState('') + const [password, setPassword] = useState('') + const [confirmPassword, setConfirmPassword] = useState('') + const [name, setName] = useState('') + const [loading, setLoading] = useState(false) + const [error, setError] = useState('') + const [showPassword, setShowPassword] = useState(false) + const [showConfirmPassword, setShowConfirmPassword] = useState(false) + const { register } = useAuth() + const t = useTranslations('auth') + + const handleSubmit = async (e: React.FormEvent) => { + e.preventDefault() + setLoading(true) + setError('') + + if (password !== confirmPassword) { + setError(t('passwordMismatch')) + setLoading(false) + return + } + + try { + const result = await register(email, password, name || undefined) + + if (result.success) { + if (onSuccess) { + onSuccess() + } + } else { + setError(result.error || t('registerError')) + } + } catch (error) { + setError(t('connectionError')) + } finally { + setLoading(false) + } + } + + const handleClickShowPassword = () => { + setShowPassword(!showPassword) + } + + const handleClickShowConfirmPassword = () => { + setShowConfirmPassword(!showConfirmPassword) + } + + return ( + + setName(e.target.value)} + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setEmail(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + }} + /> + + setPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showPassword ? : } + + + ), + }} + /> + + setConfirmPassword(e.target.value)} + required + margin="normal" + variant="outlined" + disabled={loading} + error={confirmPassword !== '' && password !== confirmPassword} + helperText={ + confirmPassword !== '' && password !== confirmPassword + ? t('passwordMismatch') + : '' + } + InputProps={{ + startAdornment: ( + + + + ), + endAdornment: ( + + + {showConfirmPassword ? : } + + + ), + }} + /> + + {error && ( + + {error} + + )} + + + + ) +} \ No newline at end of file diff --git a/components/layout/navigation.tsx b/components/layout/navigation.tsx index ca3cff2..a294c29 100644 --- a/components/layout/navigation.tsx +++ b/components/layout/navigation.tsx @@ -30,10 +30,12 @@ import { Home, Settings, Logout, + Login, } from '@mui/icons-material' import { useRouter } from 'next/navigation' import { useTranslations, useLocale } from 'next-intl' import { LanguageSwitcher } from './language-switcher' +import { useAuth } from '@/hooks/use-auth' export function Navigation() { const [anchorElNav, setAnchorElNav] = useState(null) @@ -44,6 +46,7 @@ export function Navigation() { const isMobile = useMediaQuery(theme.breakpoints.down('md')) const t = useTranslations('navigation') const locale = useLocale() + const { user, isAuthenticated, logout } = useAuth() const pages = [ { name: t('home'), path: '/', icon: }, @@ -53,9 +56,9 @@ export function Navigation() { ] const settings = [ - { name: t('profile'), icon: }, - { name: t('settings'), icon: }, - { name: t('logout'), icon: }, + { name: t('profile'), icon: , action: 'profile' }, + { name: t('settings'), icon: , action: 'settings' }, + { name: t('logout'), icon: , action: 'logout' }, ] const handleOpenNavMenu = (event: React.MouseEvent) => { @@ -81,6 +84,29 @@ export function Navigation() { setDrawerOpen(false) } + const handleUserMenuAction = (action: string) => { + handleCloseUserMenu() + + switch (action) { + case 'profile': + router.push(`/${locale}/profile`) + break + case 'settings': + router.push(`/${locale}/settings`) + break + case 'logout': + logout() + router.push(`/${locale}`) + break + default: + break + } + } + + const handleLogin = () => { + router.push(`/${locale}/auth/login`) + } + const toggleDrawer = (open: boolean) => { setDrawerOpen(open) } @@ -191,38 +217,56 @@ export function Navigation() { {/* User Menu */} - - - - - - - - - {settings.map((setting) => ( - - - {setting.icon} - - {setting.name} - - ))} - + {isAuthenticated ? ( + <> + + + + {user?.name ? user.name.charAt(0).toUpperCase() : } + + + + + + + {user?.name || user?.email} + + + {settings.map((setting) => ( + handleUserMenuAction(setting.action)}> + + {setting.icon} + + {setting.name} + + ))} + + + ) : ( + + )} diff --git a/data/en_bible/BSB/EXO/chapter-1.json b/data/en_bible/BSB/EXO/chapter-1.json new file mode 100644 index 0000000..3871ca1 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-1.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These are the names of the sons of Israel who went to Egypt with Jacob, each with his family:" + }, + { + "verseNum": 2, + "text": "Reuben, Simeon, Levi, and Judah;" + }, + { + "verseNum": 3, + "text": "Issachar, Zebulun, and Benjamin;" + }, + { + "verseNum": 4, + "text": "Dan and Naphtali;\n \n Gad and Asher." + }, + { + "verseNum": 5, + "text": "The descendants of Jacob numbered seventy in all, including Joseph, who was already in Egypt." + }, + { + "verseNum": 6, + "text": "Now Joseph and all his brothers and all that generation died," + }, + { + "verseNum": 7, + "text": "but the Israelites were fruitful and increased rapidly; they multiplied and became exceedingly numerous, so that the land was filled with them." + }, + { + "verseNum": 8, + "text": "Then a new king, who did not know Joseph, came to power in Egypt." + }, + { + "verseNum": 9, + "text": "“Look,” he said to his people, “the Israelites have become too numerous and too powerful for us." + }, + { + "verseNum": 10, + "text": "Come, let us deal shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the country.”" + }, + { + "verseNum": 11, + "text": "So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as store cities for Pharaoh." + }, + { + "verseNum": 12, + "text": "But the more they were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Israelites." + }, + { + "verseNum": 13, + "text": "They worked the Israelites ruthlessly" + }, + { + "verseNum": 14, + "text": "and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the fields. Every service they imposed was harsh." + }, + { + "verseNum": 15, + "text": "Then the king of Egypt said to the Hebrew midwives, whose names were Shiphrah and Puah," + }, + { + "verseNum": 16, + "text": "“When you help the Hebrew women give birth, observe them on the birthstools. If the child is a son, kill him; but if it is a daughter, let her live.”" + }, + { + "verseNum": 17, + "text": "The midwives, however, feared God and did not do as the king of Egypt had instructed; they let the boys live." + }, + { + "verseNum": 18, + "text": "So the king of Egypt summoned the midwives and asked them, “Why have you done this? Why have you let the boys live?”" + }, + { + "verseNum": 19, + "text": "The midwives answered Pharaoh, “The Hebrew women are not like the Egyptian women, for they are vigorous and give birth before a midwife arrives.”" + }, + { + "verseNum": 20, + "text": "So God was good to the midwives, and the people multiplied and became even more numerous." + }, + { + "verseNum": 21, + "text": "And because the midwives feared God, He gave them families of their own." + }, + { + "verseNum": 22, + "text": "Then Pharaoh commanded all his people: “Every son born to the Hebrews you must throw into the Nile, but every daughter you may allow to live.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-10.json b/data/en_bible/BSB/EXO/chapter-10.json new file mode 100644 index 0000000..7024558 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-10.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform these miraculous signs of Mine among them," + }, + { + "verseNum": 2, + "text": "and that you may tell your children and grandchildren how severely I dealt with the Egyptians when I performed miraculous signs among them, so that all of you may know that I am the LORD.”" + }, + { + "verseNum": 3, + "text": "So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the Hebrews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me." + }, + { + "verseNum": 4, + "text": "But if you refuse to let My people go, I will bring locusts into your territory tomorrow." + }, + { + "verseNum": 5, + "text": "They will cover the face of the land so that no one can see it. They will devour whatever is left after the hail and eat every tree that grows in your fields." + }, + { + "verseNum": 6, + "text": "They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’”\n \nThen Moses turned and left Pharaoh’s presence." + }, + { + "verseNum": 7, + "text": "Pharaoh’s officials asked him, “How long will this man be a snare to us? Let the people go, so that they may worship the LORD their God. Do you not yet realize that Egypt is in ruins?”" + }, + { + "verseNum": 8, + "text": "So Moses and Aaron were brought back to Pharaoh. “Go, worship the LORD your God,” he said. “But who exactly will be going?”" + }, + { + "verseNum": 9, + "text": "“We will go with our young and old,” Moses replied. “We will go with our sons and daughters, and with our flocks and herds, for we must hold a feast to the LORD.”" + }, + { + "verseNum": 10, + "text": "Then Pharaoh told them, “May the LORD be with you if I ever let you go with your little ones. Clearly you are bent on evil." + }, + { + "verseNum": 11, + "text": "No, only the men may go and worship the LORD, since that is what you have been requesting.” And Moses and Aaron were driven from Pharaoh’s presence." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has left behind.”" + }, + { + "verseNum": 13, + "text": "So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By morning the east wind had brought the locusts." + }, + { + "verseNum": 14, + "text": "The locusts swarmed across the land and settled over the entire territory of Egypt. Never before had there been so many locusts, and never again will there be." + }, + { + "verseNum": 15, + "text": "They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of Egypt." + }, + { + "verseNum": 16, + "text": "Pharaoh quickly summoned Moses and Aaron and said, “I have sinned against the LORD your God and against you." + }, + { + "verseNum": 17, + "text": "Now please forgive my sin once more and appeal to the LORD your God, that He may remove this death from me.”" + }, + { + "verseNum": 18, + "text": "So Moses left Pharaoh’s presence and appealed to the LORD." + }, + { + "verseNum": 19, + "text": "And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not a single locust remained anywhere in Egypt." + }, + { + "verseNum": 20, + "text": "But the LORD hardened Pharaoh’s heart, and he would not let the Israelites go." + }, + { + "verseNum": 21, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable darkness.”" + }, + { + "verseNum": 22, + "text": "So Moses stretched out his hand toward heaven, and total darkness covered all the land of Egypt for three days." + }, + { + "verseNum": 23, + "text": "No one could see anyone else, and for three days no one left his place. Yet all the Israelites had light in their dwellings." + }, + { + "verseNum": 24, + "text": "Then Pharaoh summoned Moses and said, “Go, worship the LORD. Even your little ones may go with you; only your flocks and herds must stay behind.”" + }, + { + "verseNum": 25, + "text": "But Moses replied, “You must also provide us with sacrifices and burnt offerings to present to the LORD our God." + }, + { + "verseNum": 26, + "text": "Even our livestock must go with us; not a hoof will be left behind, for we will need some of them to worship the LORD our God, and we will not know how we are to worship the LORD until we arrive.”" + }, + { + "verseNum": 27, + "text": "But the LORD hardened Pharaoh’s heart, and he was unwilling to let them go." + }, + { + "verseNum": 28, + "text": "“Depart from me!” Pharaoh said to Moses. “Make sure you never see my face again, for on the day you see my face, you will die.”" + }, + { + "verseNum": 29, + "text": "“As you say,” Moses replied, “I will never see your face again.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-11.json b/data/en_bible/BSB/EXO/chapter-11.json new file mode 100644 index 0000000..f00368f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-11.json @@ -0,0 +1,45 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “I will bring upon Pharaoh and Egypt one more plague. After that, he will allow you to leave this place. And when he lets you go, he will drive you out completely." + }, + { + "verseNum": 2, + "text": "Now announce to the people that men and women alike should ask their neighbors for articles of silver and gold.”" + }, + { + "verseNum": 3, + "text": "And the LORD gave the people favor in the sight of the Egyptians. Moreover, Moses himself was highly regarded in Egypt by Pharaoh’s officials and by the people." + }, + { + "verseNum": 4, + "text": "So Moses declared, “This is what the LORD says: ‘About midnight I will go throughout Egypt," + }, + { + "verseNum": 5, + "text": "and every firstborn son in the land of Egypt will die, from the firstborn of Pharaoh who sits on his throne, to the firstborn of the servant girl behind the hand mill, as well as the firstborn of all the cattle." + }, + { + "verseNum": 6, + "text": "Then a great cry will go out over all the land of Egypt. Such an outcry has never been heard before and will never be heard again." + }, + { + "verseNum": 7, + "text": "But among all the Israelites, not even a dog will snarl at man or beast.’\n \nThen you will know that the LORD makes a distinction between Egypt and Israel." + }, + { + "verseNum": 8, + "text": "And all these officials of yours will come and bow before me, saying, ‘Go, you and all the people who follow you!’ After that, I will depart.”\n \nAnd hot with anger, Moses left Pharaoh’s presence." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Pharaoh will not listen to you, so that My wonders may be multiplied in the land of Egypt.”" + }, + { + "verseNum": 10, + "text": "Moses and Aaron did all these wonders before Pharaoh, but the LORD hardened Pharaoh’s heart so that he would not let the Israelites go out of his land." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-12.json b/data/en_bible/BSB/EXO/chapter-12.json new file mode 100644 index 0000000..cd14976 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-12.json @@ -0,0 +1,209 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD said to Moses and Aaron in the land of Egypt," + }, + { + "verseNum": 2, + "text": "“This month is the beginning of months for you; it shall be the first month of your year." + }, + { + "verseNum": 3, + "text": "Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb for his family, one per household." + }, + { + "verseNum": 4, + "text": "If the household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb accordingly." + }, + { + "verseNum": 5, + "text": "Your lamb must be an unblemished year-old male, and you may take it from the sheep or the goats." + }, + { + "verseNum": 6, + "text": "You must keep it until the fourteenth day of the month, when the whole assembly of the congregation of Israel will slaughter the animals at twilight." + }, + { + "verseNum": 7, + "text": "They are to take some of the blood and put it on the sides and tops of the doorframes of the houses where they eat the lambs." + }, + { + "verseNum": 8, + "text": "They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter herbs." + }, + { + "verseNum": 9, + "text": "Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts." + }, + { + "verseNum": 10, + "text": "Do not leave any of it until morning; before the morning you must burn up any part that is left over." + }, + { + "verseNum": 11, + "text": "This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in haste; it is the LORD’s Passover." + }, + { + "verseNum": 12, + "text": "On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will execute judgment against all the gods of Egypt. I am the LORD." + }, + { + "verseNum": 13, + "text": "The blood on the houses where you are staying will distinguish them; when I see the blood, I will pass over you. No plague will fall on you to destroy you when I strike the land of Egypt." + }, + { + "verseNum": 14, + "text": "And this day will be a memorial for you, and you are to celebrate it as a feast to the LORD, as a permanent statute for the generations to come." + }, + { + "verseNum": 15, + "text": "For seven days you must eat unleavened bread. On the first day you are to remove the leaven from your houses. Whoever eats anything leavened from the first day through the seventh must be cut off from Israel." + }, + { + "verseNum": 16, + "text": "On the first day you are to hold a sacred assembly, and another on the seventh day. You must not do any work on those days, except to prepare the meals—that is all you may do." + }, + { + "verseNum": 17, + "text": "So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divisions out of the land of Egypt. You must keep this day as a permanent statute for the generations to come." + }, + { + "verseNum": 18, + "text": "In the first month you are to eat unleavened bread, from the evening of the fourteenth day until the evening of the twenty-first day." + }, + { + "verseNum": 19, + "text": "For seven days there must be no leaven found in your houses. If anyone eats something leavened, that person, whether a foreigner or native of the land, must be cut off from the congregation of Israel." + }, + { + "verseNum": 20, + "text": "You are not to eat anything leavened; eat unleavened bread in all your homes.”" + }, + { + "verseNum": 21, + "text": "Then Moses summoned all the elders of Israel and told them, “Go at once and select for yourselves a lamb for each family, and slaughter the Passover lamb." + }, + { + "verseNum": 22, + "text": "Take a cluster of hyssop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house until morning." + }, + { + "verseNum": 23, + "text": "When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer to enter your houses and strike you down." + }, + { + "verseNum": 24, + "text": "And you are to keep this command as a permanent statute for you and your descendants." + }, + { + "verseNum": 25, + "text": "When you enter the land that the LORD will give you as He promised, you are to keep this service." + }, + { + "verseNum": 26, + "text": "When your children ask you, ‘What does this service mean to you?’" + }, + { + "verseNum": 27, + "text": "you are to reply, ‘It is the Passover sacrifice to the LORD, who passed over the houses of the Israelites in Egypt when He struck down the Egyptians and spared our homes.’”\n \nThen the people bowed down and worshiped." + }, + { + "verseNum": 28, + "text": "And the Israelites went and did just what the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 29, + "text": "Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as well as all the firstborn among the livestock." + }, + { + "verseNum": 30, + "text": "During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house without someone dead." + }, + { + "verseNum": 31, + "text": "Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you have requested." + }, + { + "verseNum": 32, + "text": "Take your flocks and herds as well, just as you have said, and depart! And bless me also.”" + }, + { + "verseNum": 33, + "text": "And in order to send them out of the land quickly, the Egyptians urged the people on. “For otherwise,” they said, “we are all going to die!”" + }, + { + "verseNum": 34, + "text": "So the people took their dough before it was leavened, carrying it on their shoulders in kneading bowls wrapped in clothing." + }, + { + "verseNum": 35, + "text": "Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of silver and gold, and for clothing." + }, + { + "verseNum": 36, + "text": "And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this way they plundered the Egyptians." + }, + { + "verseNum": 37, + "text": "The Israelites journeyed from Rameses to Succoth with about 600,000 men on foot, besides women and children." + }, + { + "verseNum": 38, + "text": "And a mixed multitude also went up with them, along with great droves of livestock, both flocks and herds." + }, + { + "verseNum": 39, + "text": "Since their dough had no leaven, the people baked what they had brought out of Egypt into unleavened loaves. For when they had been driven out of Egypt, they could not delay and had not prepared any provisions for themselves." + }, + { + "verseNum": 40, + "text": "Now the duration of the Israelites’ stay in Egypt was 430 years." + }, + { + "verseNum": 41, + "text": "At the end of the 430 years, to the very day, all the LORD’s divisions went out of the land of Egypt." + }, + { + "verseNum": 42, + "text": "Because the LORD kept a vigil that night to bring them out of the land of Egypt, this same night is to be a vigil to the LORD, to be observed by all the Israelites for the generations to come." + }, + { + "verseNum": 43, + "text": "And the LORD said to Moses and Aaron, “This is the statute of the Passover: No foreigner is to eat of it." + }, + { + "verseNum": 44, + "text": "But any slave who has been purchased may eat of it, after you have circumcised him." + }, + { + "verseNum": 45, + "text": "A temporary resident or hired hand shall not eat the Passover." + }, + { + "verseNum": 46, + "text": "It must be eaten inside one house. You are not to take any of the meat outside the house, and you may not break any of the bones." + }, + { + "verseNum": 47, + "text": "The whole congregation of Israel must celebrate it." + }, + { + "verseNum": 48, + "text": "If a foreigner resides with you and wants to celebrate the LORD’s Passover, all the males in the household must be circumcised; then he may come near to celebrate it, and he shall be like a native of the land. But no uncircumcised man may eat of it." + }, + { + "verseNum": 49, + "text": "The same law shall apply to both the native and the foreigner who resides among you.”" + }, + { + "verseNum": 50, + "text": "Then all the Israelites did this—they did just as the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 51, + "text": "And on that very day the LORD brought the Israelites out of the land of Egypt by their divisions." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-13.json b/data/en_bible/BSB/EXO/chapter-13.json new file mode 100644 index 0000000..9a5584f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-13.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Consecrate to Me every firstborn male. The firstborn from every womb among the Israelites belongs to Me, both of man and beast.”" + }, + { + "verseNum": 3, + "text": "So Moses told the people, “Remember this day, the day you came out of Egypt, out of the house of slavery; for the LORD brought you out of it by the strength of His hand. And nothing leavened shall be eaten." + }, + { + "verseNum": 4, + "text": "Today, in the month of Abib, you are leaving." + }, + { + "verseNum": 5, + "text": "And when the LORD brings you into the land of the Canaanites, Hittites, Amorites, Hivites, and Jebusites—the land He swore to your fathers that He would give you, a land flowing with milk and honey—you shall keep this service in this month." + }, + { + "verseNum": 6, + "text": "For seven days you are to eat unleavened bread, and on the seventh day there shall be a feast to the LORD." + }, + { + "verseNum": 7, + "text": "Unleavened bread shall be eaten during those seven days. Nothing leavened may be found among you, nor shall leaven be found anywhere within your borders." + }, + { + "verseNum": 8, + "text": "And on that day you are to explain to your son, ‘This is because of what the LORD did for me when I came out of Egypt.’" + }, + { + "verseNum": 9, + "text": "It shall be a sign for you on your hand and a reminder on your forehead that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought you out of Egypt." + }, + { + "verseNum": 10, + "text": "Therefore you shall keep this statute at the appointed time year after year." + }, + { + "verseNum": 11, + "text": "And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you and your fathers," + }, + { + "verseNum": 12, + "text": "you are to present to the LORD the firstborn male of every womb. All the firstborn males of your livestock belong to the LORD." + }, + { + "verseNum": 13, + "text": "You must redeem every firstborn donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of your sons you must redeem." + }, + { + "verseNum": 14, + "text": "In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, out of the house of slavery." + }, + { + "verseNum": 15, + "text": "And when Pharaoh stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all the firstborn of my sons.’" + }, + { + "verseNum": 16, + "text": "So it shall serve as a sign on your hand and a symbol on your forehead, for with a mighty hand the LORD brought us out of Egypt.”" + }, + { + "verseNum": 17, + "text": "When Pharaoh let the people go, God did not lead them along the road through the land of the Philistines, though it was shorter. For God said, “If the people face war, they might change their minds and return to Egypt.”" + }, + { + "verseNum": 18, + "text": "So God led the people around by the way of the wilderness toward the Red Sea. And the Israelites left the land of Egypt arrayed for battle." + }, + { + "verseNum": 19, + "text": "Moses took the bones of Joseph with him because Joseph had made the sons of Israel swear a solemn oath when he said, “God will surely attend to you, and then you must carry my bones with you from this place.”" + }, + { + "verseNum": 20, + "text": "They set out from Succoth and camped at Etham on the edge of the wilderness." + }, + { + "verseNum": 21, + "text": "And the LORD went before them in a pillar of cloud to guide their way by day, and in a pillar of fire to give them light by night, so that they could travel by day or night." + }, + { + "verseNum": 22, + "text": "Neither the pillar of cloud by day nor the pillar of fire by night left its place before the people." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-14.json b/data/en_bible/BSB/EXO/chapter-14.json new file mode 100644 index 0000000..8b0aac7 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-14.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to turn back and encamp before Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite Baal-zephon." + }, + { + "verseNum": 3, + "text": "For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’" + }, + { + "verseNum": 4, + "text": "And I will harden Pharaoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.”\n \nSo this is what the Israelites did." + }, + { + "verseNum": 5, + "text": "When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we done? We have released Israel from serving us.”" + }, + { + "verseNum": 6, + "text": "So Pharaoh prepared his chariot and took his army with him." + }, + { + "verseNum": 7, + "text": "He took 600 of the best chariots, and all the other chariots of Egypt, with officers over all of them." + }, + { + "verseNum": 8, + "text": "And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, who were marching out defiantly." + }, + { + "verseNum": 9, + "text": "The Egyptians—all Pharaoh’s horses and chariots, horsemen and troops—pursued the Israelites and overtook them as they camped by the sea near Pi-hahiroth, opposite Baal-zephon." + }, + { + "verseNum": 10, + "text": "As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the LORD." + }, + { + "verseNum": 11, + "text": "They said to Moses, “Was it because there were no graves in Egypt that you brought us into the wilderness to die? What have you done to us by bringing us out of Egypt?" + }, + { + "verseNum": 12, + "text": "Did we not say to you in Egypt, ‘Leave us alone so that we may serve the Egyptians’? For it would have been better for us to serve the Egyptians than to die in the wilderness.”" + }, + { + "verseNum": 13, + "text": "But Moses told the people, “Do not be afraid. Stand firm and you will see the LORD’s salvation, which He will accomplish for you today; for the Egyptians you see today, you will never see again." + }, + { + "verseNum": 14, + "text": "The LORD will fight for you; you need only to be still.”" + }, + { + "verseNum": 15, + "text": "Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go forward." + }, + { + "verseNum": 16, + "text": "And as for you, lift up your staff and stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground." + }, + { + "verseNum": 17, + "text": "And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his army and chariots and horsemen." + }, + { + "verseNum": 18, + "text": "The Egyptians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his horsemen.”" + }, + { + "verseNum": 19, + "text": "And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before them and stood behind them," + }, + { + "verseNum": 20, + "text": "so that it came between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the other." + }, + { + "verseNum": 21, + "text": "Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry land. So the waters were divided," + }, + { + "verseNum": 22, + "text": "and the Israelites went through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 23, + "text": "And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and followed them into the sea." + }, + { + "verseNum": 24, + "text": "At morning watch, however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, and He threw their camp into confusion." + }, + { + "verseNum": 25, + "text": "He caused their chariot wheels to wobble, so that they had difficulty driving. “Let us flee from the Israelites,” said the Egyptians, “for the LORD is fighting for them against Egypt!”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses, “Stretch out your hand over the sea, so that the waters may flow back over the Egyptians and their chariots and horsemen.”" + }, + { + "verseNum": 27, + "text": "So Moses stretched out his hand over the sea, and at daybreak the sea returned to its normal state. As the Egyptians were retreating, the LORD swept them into the sea." + }, + { + "verseNum": 28, + "text": "The waters flowed back and covered the chariots and horsemen—the entire army of Pharaoh that had chased the Israelites into the sea. Not one of them survived." + }, + { + "verseNum": 29, + "text": "But the Israelites had walked through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 30, + "text": "That day the LORD saved Israel from the hand of the Egyptians, and Israel saw the Egyptians dead on the shore." + }, + { + "verseNum": 31, + "text": "When Israel saw the great power that the LORD had exercised over the Egyptians, the people feared the LORD and believed in Him and in His servant Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-15.json b/data/en_bible/BSB/EXO/chapter-15.json new file mode 100644 index 0000000..cd67248 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-15.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses and the Israelites sang this song to the LORD:\n \n “I will sing to the LORD,\n for He is highly exalted.\n The horse and rider\n He has thrown into the sea." + }, + { + "verseNum": 2, + "text": "The LORD is my strength and my song,\n and He has become my salvation.\n He is my God, and I will praise Him,\n my father’s God, and I will exalt Him." + }, + { + "verseNum": 3, + "text": "The LORD is a warrior,\n the LORD is His name." + }, + { + "verseNum": 4, + "text": "Pharaoh’s chariots and army\n He has cast into the sea;\n the finest of his officers\n are drowned in the Red Sea." + }, + { + "verseNum": 5, + "text": "The depths have covered them;\n they sank there like a stone." + }, + { + "verseNum": 6, + "text": "Your right hand, O LORD,\n is majestic in power;\n Your right hand, O LORD,\n has shattered the enemy." + }, + { + "verseNum": 7, + "text": "You overthrew Your adversaries\n by Your great majesty.\n You unleashed Your burning wrath;\n it consumed them like stubble." + }, + { + "verseNum": 8, + "text": "At the blast of Your nostrils\n the waters piled up;\n like a wall the currents stood firm;\n the depths congealed in the heart of the sea." + }, + { + "verseNum": 9, + "text": "The enemy declared,\n ‘I will pursue, I will overtake.\n I will divide the spoils;\n I will gorge myself on them.\n I will draw my sword;\n my hand will destroy them.’" + }, + { + "verseNum": 10, + "text": "But You blew with Your breath,\n and the sea covered them.\n They sank like lead\n in the mighty waters." + }, + { + "verseNum": 11, + "text": "Who among the gods is like You, O LORD?\n Who is like You—majestic in holiness,\n revered with praises,\n performing wonders?" + }, + { + "verseNum": 12, + "text": "You stretched out Your right hand,\n and the earth swallowed them up." + }, + { + "verseNum": 13, + "text": "With loving devotion You will lead\n the people You have redeemed;\n with Your strength You will guide them\n to Your holy dwelling." + }, + { + "verseNum": 14, + "text": "The nations will hear and tremble;\n anguish will grip the dwellers of Philistia." + }, + { + "verseNum": 15, + "text": "Then the chiefs of Edom will be dismayed;\n trembling will seize the leaders of Moab;\n those who dwell in Canaan will melt away," + }, + { + "verseNum": 16, + "text": "and terror and dread will fall on them.\n By the power of Your arm\n they will be as still as a stone\n until Your people pass by, O LORD,\n until the people You have bought pass by." + }, + { + "verseNum": 17, + "text": "You will bring them in and plant them\n on the mountain of Your inheritance—\n the place, O LORD, You have prepared for Your dwelling,\n the sanctuary, O Lord, Your hands have established." + }, + { + "verseNum": 18, + "text": "The LORD will reign forever and ever!”" + }, + { + "verseNum": 19, + "text": "For when Pharaoh’s horses, chariots, and horsemen went into the sea, the LORD brought the waters of the sea back over them. But the Israelites walked through the sea on dry ground." + }, + { + "verseNum": 20, + "text": "Then Miriam the prophetess, Aaron’s sister, took a tambourine in her hand, and all the women followed her with tambourines and dancing." + }, + { + "verseNum": 21, + "text": "And Miriam sang back to them:\n \n “Sing to the LORD,\n for He is highly exalted;\n the horse and rider\n He has thrown into the sea.”" + }, + { + "verseNum": 22, + "text": "Then Moses led Israel from the Red Sea, and they went out into the Desert of Shur. For three days they walked in the desert without finding water." + }, + { + "verseNum": 23, + "text": "And when they came to Marah, they could not drink the water there because it was bitter. (That is why it was named Marah.)" + }, + { + "verseNum": 24, + "text": "So the people grumbled against Moses, saying, “What are we to drink?”" + }, + { + "verseNum": 25, + "text": "And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened.\n \nThere the LORD made for them a statute and an ordinance, and there He tested them," + }, + { + "verseNum": 26, + "text": "saying, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am the LORD who heals you.”" + }, + { + "verseNum": 27, + "text": "Then they came to Elim, where there were twelve springs of water and seventy palm trees, and they camped there by the waters." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-16.json b/data/en_bible/BSB/EXO/chapter-16.json new file mode 100644 index 0000000..7f0aed1 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-16.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim and came to the Desert of Sin, which is between Elim and Sinai." + }, + { + "verseNum": 2, + "text": "And there in the desert they all grumbled against Moses and Aaron." + }, + { + "verseNum": 3, + "text": "“If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to starve this whole assembly to death!”" + }, + { + "verseNum": 4, + "text": "Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test whether or not they will follow My instructions." + }, + { + "verseNum": 5, + "text": "Then on the sixth day, when they prepare what they bring in, it will be twice as much as they gather on the other days.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron said to all the Israelites, “This evening you will know that it was the LORD who brought you out of the land of Egypt," + }, + { + "verseNum": 7, + "text": "and in the morning you will see the LORD’s glory, because He has heard your grumbling against Him. For who are we that you should grumble against us?”" + }, + { + "verseNum": 8, + "text": "And Moses added, “The LORD will give you meat to eat this evening and bread to fill you in the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are not against us but against the LORD.”" + }, + { + "verseNum": 9, + "text": "Then Moses said to Aaron, “Tell the whole congregation of Israel, ‘Come before the LORD, for He has heard your grumbling.’”" + }, + { + "verseNum": 10, + "text": "And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD appeared." + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“I have heard the grumbling of the Israelites. Tell them, ‘At twilight you will eat meat, and in the morning you will be filled with bread. Then you will know that I am the LORD your God.’”" + }, + { + "verseNum": 13, + "text": "That evening quail came and covered the camp, and in the morning there was a layer of dew around the camp." + }, + { + "verseNum": 14, + "text": "When the layer of dew had evaporated, there were thin flakes on the desert floor, as fine as frost on the ground." + }, + { + "verseNum": 15, + "text": "When the Israelites saw it, they asked one another, “What is it?” For they did not know what it was.\n \nSo Moses told them, “It is the bread that the LORD has given you to eat." + }, + { + "verseNum": 16, + "text": "This is what the LORD has commanded: ‘Each one is to gather as much as he needs. You may take an omer for each person in your tent.’”" + }, + { + "verseNum": 17, + "text": "So the Israelites did this. Some gathered more, and some less." + }, + { + "verseNum": 18, + "text": "When they measured it by the omer, he who gathered much had no excess, and he who gathered little had no shortfall. Each one gathered as much as he needed to eat." + }, + { + "verseNum": 19, + "text": "Then Moses said to them, “No one may keep any of it until morning.”" + }, + { + "verseNum": 20, + "text": "But they did not listen to Moses; some people left part of it until morning, and it became infested with maggots and began to smell. So Moses was angry with them." + }, + { + "verseNum": 21, + "text": "Every morning each one gathered as much as was needed, and when the sun grew hot, it melted away." + }, + { + "verseNum": 22, + "text": "On the sixth day, they gathered twice as much food—two omers per person —and all the leaders of the congregation came and reported this to Moses." + }, + { + "verseNum": 23, + "text": "He told them, “This is what the LORD has said: ‘Tomorrow is to be a day of complete rest, a holy Sabbath to the LORD. So bake what you want to bake, and boil what you want to boil. Then set aside whatever remains and keep it until morning.’”" + }, + { + "verseNum": 24, + "text": "So they set it aside until morning as Moses had commanded, and it did not smell or contain any maggots." + }, + { + "verseNum": 25, + "text": "“Eat it today,” Moses said, “because today is a Sabbath to the LORD. Today you will not find anything in the field." + }, + { + "verseNum": 26, + "text": "For six days you may gather, but on the seventh day, the Sabbath, it will not be there.”" + }, + { + "verseNum": 27, + "text": "Yet on the seventh day some of the people went out to gather, but they did not find anything." + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses, “How long will you refuse to keep My commandments and instructions?" + }, + { + "verseNum": 29, + "text": "Understand that the LORD has given you the Sabbath; that is why on the sixth day He will give you bread for two days. On the seventh day, everyone must stay where he is; no one may leave his place.”" + }, + { + "verseNum": 30, + "text": "So the people rested on the seventh day." + }, + { + "verseNum": 31, + "text": "Now the house of Israel called the bread manna. It was white like coriander seed and tasted like wafers made with honey." + }, + { + "verseNum": 32, + "text": "Moses said, “This is what the LORD has commanded: ‘Keep an omer of manna for the generations to come, so that they may see the bread I fed you in the wilderness when I brought you out of the land of Egypt.’”" + }, + { + "verseNum": 33, + "text": "So Moses told Aaron, “Take a jar and fill it with an omer of manna. Then place it before the LORD to be preserved for the generations to come.”" + }, + { + "verseNum": 34, + "text": "And Aaron placed it in front of the Testimony, to be preserved just as the LORD had commanded Moses." + }, + { + "verseNum": 35, + "text": "The Israelites ate manna forty years, until they came to a land where they could settle; they ate manna until they reached the border of Canaan." + }, + { + "verseNum": 36, + "text": "(Now an omer is a tenth of an ephah.)" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-17.json b/data/en_bible/BSB/EXO/chapter-17.json new file mode 100644 index 0000000..14a2b77 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-17.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped at Rephidim, but there was no water for the people to drink." + }, + { + "verseNum": 2, + "text": "So the people contended with Moses, “Give us water to drink.”\n \n“Why do you contend with me?” Moses replied. “Why do you test the LORD?”" + }, + { + "verseNum": 3, + "text": "But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our children and livestock die of thirst?”" + }, + { + "verseNum": 4, + "text": "Then Moses cried out to the LORD, “What should I do with these people? A little more and they will stone me!”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Walk on ahead of the people and take some of the elders of Israel with you. Take along in your hand the staff with which you struck the Nile, and go." + }, + { + "verseNum": 6, + "text": "Behold, I will stand there before you by the rock at Horeb. And when you strike the rock, water will come out of it for the people to drink.”\n \nSo Moses did this in the sight of the elders of Israel." + }, + { + "verseNum": 7, + "text": "He named the place Massah and Meribah because the Israelites quarreled, and because they tested the LORD, saying, “Is the LORD among us or not?”" + }, + { + "verseNum": 8, + "text": "After this, the Amalekites came and attacked the Israelites at Rephidim." + }, + { + "verseNum": 9, + "text": "So Moses said to Joshua, “Choose some of our men and go out to fight the Amalekites. Tomorrow I will stand on the hilltop with the staff of God in my hand.”" + }, + { + "verseNum": 10, + "text": "Joshua did as Moses had instructed him and fought against the Amalekites, while Moses, Aaron, and Hur went up to the top of the hill." + }, + { + "verseNum": 11, + "text": "As long as Moses held up his hands, Israel prevailed; but when he lowered them, Amalek prevailed." + }, + { + "verseNum": 12, + "text": "When Moses’ hands grew heavy, they took a stone and put it under him, and he sat on it. Then Aaron and Hur held his hands up, one on each side, so that his hands remained steady until the sun went down." + }, + { + "verseNum": 13, + "text": "So Joshua overwhelmed Amalek and his army with the sword." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Write this on a scroll as a reminder and recite it to Joshua, because I will utterly blot out the memory of Amalek from under heaven.”" + }, + { + "verseNum": 15, + "text": "And Moses built an altar and named it The LORD Is My Banner." + }, + { + "verseNum": 16, + "text": "“Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation to generation.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-18.json b/data/en_bible/BSB/EXO/chapter-18.json new file mode 100644 index 0000000..86cd30e --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-18.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and how the LORD had brought Israel out of Egypt." + }, + { + "verseNum": 2, + "text": "After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her," + }, + { + "verseNum": 3, + "text": "along with her two sons. One son was named Gershom, for Moses had said, “I have been a foreigner in a foreign land.”" + }, + { + "verseNum": 4, + "text": "The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from the sword of Pharaoh.”" + }, + { + "verseNum": 5, + "text": "Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where he was encamped at the mountain of God." + }, + { + "verseNum": 6, + "text": "He sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two sons.”" + }, + { + "verseNum": 7, + "text": "So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent." + }, + { + "verseNum": 8, + "text": "Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encountered along the way, and how the LORD had delivered them." + }, + { + "verseNum": 9, + "text": "And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued from the hand of the Egyptians." + }, + { + "verseNum": 10, + "text": "Jethro declared, “Blessed be the LORD, who has delivered you from the hand of the Egyptians and of Pharaoh, and who has delivered the people from the hand of the Egyptians." + }, + { + "verseNum": 11, + "text": "Now I know that the LORD is greater than all other gods, for He did this when they treated Israel with arrogance.”" + }, + { + "verseNum": 12, + "text": "Then Moses’ father-in-law Jethro brought a burnt offering and sacrifices to God, and Aaron came with all the elders of Israel to eat bread with Moses’ father-in-law in the presence of God." + }, + { + "verseNum": 13, + "text": "The next day Moses took his seat to judge the people, and they stood around him from morning until evening." + }, + { + "verseNum": 14, + "text": "When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people standing around you from morning till evening?”" + }, + { + "verseNum": 15, + "text": "“Because the people come to me to inquire of God,” Moses replied." + }, + { + "verseNum": 16, + "text": "“Whenever they have a dispute, it is brought to me to judge between one man and another, and I make known to them the statutes and laws of God.”" + }, + { + "verseNum": 17, + "text": "But Moses’ father-in-law said to him, “What you are doing is not good." + }, + { + "verseNum": 18, + "text": "Surely you and these people with you will wear yourselves out, because the task is too heavy for you. You cannot handle it alone." + }, + { + "verseNum": 19, + "text": "Now listen to me; I will give you some advice, and may God be with you. You must be the people’s representative before God and bring their causes to Him." + }, + { + "verseNum": 20, + "text": "Teach them the statutes and laws, and show them the way to live and the work they must do." + }, + { + "verseNum": 21, + "text": "Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 22, + "text": "Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with you." + }, + { + "verseNum": 23, + "text": "If you follow this advice and God so directs you, then you will be able to endure, and all these people can go home in peace.”" + }, + { + "verseNum": 24, + "text": "Moses listened to his father-in-law and did everything he said." + }, + { + "verseNum": 25, + "text": "So Moses chose capable men from all Israel and made them heads over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 26, + "text": "And they judged the people at all times; they would bring the difficult cases to Moses, but any minor issue they would judge themselves." + }, + { + "verseNum": 27, + "text": "Then Moses sent his father-in-law on his way, and Jethro returned to his own land." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-19.json b/data/en_bible/BSB/EXO/chapter-19.json new file mode 100644 index 0000000..a8fb6f6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-19.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In the third month, on the same day of the month that the Israelites had left the land of Egypt, they came to the Wilderness of Sinai." + }, + { + "verseNum": 2, + "text": "After they had set out from Rephidim, they entered the Wilderness of Sinai, and Israel camped there in front of the mountain." + }, + { + "verseNum": 3, + "text": "Then Moses went up to God, and the LORD called to him from the mountain, “This is what you are to tell the house of Jacob and explain to the sons of Israel:" + }, + { + "verseNum": 4, + "text": "‘You have seen for yourselves what I did to Egypt, and how I carried you on eagles’ wings and brought you to Myself." + }, + { + "verseNum": 5, + "text": "Now if you will indeed obey My voice and keep My covenant, you will be My treasured possession out of all the nations—for the whole earth is Mine." + }, + { + "verseNum": 6, + "text": "And unto Me you shall be a kingdom of priests and a holy nation.’ These are the words that you are to speak to the Israelites.”" + }, + { + "verseNum": 7, + "text": "So Moses went back and summoned the elders of the people and set before them all these words that the LORD had commanded him." + }, + { + "verseNum": 8, + "text": "And all the people answered together, “We will do everything that the LORD has spoken.”\n \nSo Moses brought their words back to the LORD." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Behold, I will come to you in a dense cloud, so that the people will hear when I speak with you, and they will always put their trust in you.”\n \nAnd Moses relayed to the LORD what the people had said." + }, + { + "verseNum": 10, + "text": "Then the LORD said to Moses, “Go to the people and consecrate them today and tomorrow. They must wash their clothes" + }, + { + "verseNum": 11, + "text": "and be prepared by the third day, for on the third day the LORD will come down on Mount Sinai in the sight of all the people." + }, + { + "verseNum": 12, + "text": "And you are to set up a boundary for the people around the mountain and tell them, ‘Be careful not to go up on the mountain or touch its base. Whoever touches the mountain shall surely be put to death." + }, + { + "verseNum": 13, + "text": "No hand shall touch him, but he shall surely be stoned or shot with arrows—whether man or beast, he must not live.’\n \nOnly when the ram’s horn sounds a long blast may they approach the mountain.”" + }, + { + "verseNum": 14, + "text": "When Moses came down from the mountain to the people, he consecrated them, and they washed their clothes." + }, + { + "verseNum": 15, + "text": "“Be prepared for the third day,” he said to the people. “Do not draw near to a woman.”" + }, + { + "verseNum": 16, + "text": "On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the camp trembled." + }, + { + "verseNum": 17, + "text": "Then Moses brought the people out of the camp to meet with God, and they stood at the foot of the mountain." + }, + { + "verseNum": 18, + "text": "Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a furnace, and the whole mountain quaked violently." + }, + { + "verseNum": 19, + "text": "And as the sound of the ram’s horn grew louder and louder, Moses spoke and God answered him in the thunder." + }, + { + "verseNum": 20, + "text": "The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses went up," + }, + { + "verseNum": 21, + "text": "and the LORD said to him, “Go down and warn the people not to break through to see the LORD, lest many of them perish." + }, + { + "verseNum": 22, + "text": "Even the priests who approach the LORD must consecrate themselves, or the LORD will break out against them.”" + }, + { + "verseNum": 23, + "text": "But Moses said to the LORD, “The people cannot come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain and set it apart as holy.’”" + }, + { + "verseNum": 24, + "text": "And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, or He will break out against them.”" + }, + { + "verseNum": 25, + "text": "So Moses went down to the people and spoke to them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-2.json b/data/en_bible/BSB/EXO/chapter-2.json new file mode 100644 index 0000000..9a81660 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-2.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now a man of the house of Levi married a daughter of Levi," + }, + { + "verseNum": 2, + "text": "and she conceived and gave birth to a son. When she saw that he was a beautiful child, she hid him for three months." + }, + { + "verseNum": 3, + "text": "But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and set it among the reeds along the bank of the Nile." + }, + { + "verseNum": 4, + "text": "And his sister stood at a distance to see what would happen to him." + }, + { + "verseNum": 5, + "text": "Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walking along the riverbank. And when she saw the basket among the reeds, she sent her maidservant to retrieve it." + }, + { + "verseNum": 6, + "text": "When she opened it, she saw the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.”" + }, + { + "verseNum": 7, + "text": "Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to nurse the child for you?”" + }, + { + "verseNum": 8, + "text": "“Go ahead,” Pharaoh’s daughter told her. And the girl went and called the boy’s mother." + }, + { + "verseNum": 9, + "text": "Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” So the woman took the boy and nursed him." + }, + { + "verseNum": 10, + "text": "When the child had grown older, she brought him to Pharaoh’s daughter, and he became her son. She named him Moses and explained, “I drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "One day, after Moses had grown up, he went out to his own people and observed their hard labor. He saw an Egyptian beating a Hebrew, one of his own people." + }, + { + "verseNum": 12, + "text": "After looking this way and that and seeing no one, he struck down the Egyptian and hid his body in the sand." + }, + { + "verseNum": 13, + "text": "The next day Moses went out and saw two Hebrews fighting. He asked the one in the wrong, “Why are you attacking your companion?”" + }, + { + "verseNum": 14, + "text": "But the man replied, “Who made you ruler and judge over us? Are you planning to kill me as you killed the Egyptian?”\n \nThen Moses was afraid and thought, “This thing I have done has surely become known.”" + }, + { + "verseNum": 15, + "text": "When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Pharaoh and settled in the land of Midian, where he sat down beside a well." + }, + { + "verseNum": 16, + "text": "Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs to water their father’s flock." + }, + { + "verseNum": 17, + "text": "And when some shepherds came along and drove them away, Moses rose up to help them and watered their flock." + }, + { + "verseNum": 18, + "text": "When the daughters returned to their father Reuel, he asked them, “Why have you returned so early today?”" + }, + { + "verseNum": 19, + "text": "“An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and watered the flock.”" + }, + { + "verseNum": 20, + "text": "“So where is he?” their father asked. “Why did you leave the man behind? Invite him to have something to eat.”" + }, + { + "verseNum": 21, + "text": "Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in marriage." + }, + { + "verseNum": 22, + "text": "And she gave birth to a son, and Moses named him Gershom, saying, “I have become a foreigner in a foreign land.”" + }, + { + "verseNum": 23, + "text": "After a long time, the king of Egypt died. The Israelites groaned and cried out under their burden of slavery, and their cry for deliverance from bondage ascended to God." + }, + { + "verseNum": 24, + "text": "So God heard their groaning, and He remembered His covenant with Abraham, Isaac, and Jacob." + }, + { + "verseNum": 25, + "text": "God saw the Israelites and took notice." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-20.json b/data/en_bible/BSB/EXO/chapter-20.json new file mode 100644 index 0000000..b7754c0 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-20.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "And God spoke all these words:" + }, + { + "verseNum": 2, + "text": "“I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery." + }, + { + "verseNum": 3, + "text": "You shall have no other gods before Me." + }, + { + "verseNum": 4, + "text": "You shall not make for yourself an idol in the form of anything in the heavens above, on the earth below, or in the waters beneath." + }, + { + "verseNum": 5, + "text": "You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth generations of those who hate Me," + }, + { + "verseNum": 6, + "text": "but showing loving devotion to a thousand generations of those who love Me and keep My commandments." + }, + { + "verseNum": 7, + "text": "You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in vain." + }, + { + "verseNum": 8, + "text": "Remember the Sabbath day by keeping it holy." + }, + { + "verseNum": 9, + "text": "Six days you shall labor and do all your work," + }, + { + "verseNum": 10, + "text": "but the seventh day is a Sabbath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant or livestock, nor the foreigner within your gates." + }, + { + "verseNum": 11, + "text": "For in six days the LORD made the heavens and the earth and the sea and all that is in them, but on the seventh day He rested. Therefore the LORD blessed the Sabbath day and set it apart as holy." + }, + { + "verseNum": 12, + "text": "Honor your father and mother, so that your days may be long in the land that the LORD your God is giving you." + }, + { + "verseNum": 13, + "text": "You shall not murder." + }, + { + "verseNum": 14, + "text": "You shall not commit adultery." + }, + { + "verseNum": 15, + "text": "You shall not steal." + }, + { + "verseNum": 16, + "text": "You shall not bear false witness against your neighbor." + }, + { + "verseNum": 17, + "text": "You shall not covet your neighbor’s house. You shall not covet your neighbor’s wife, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.”" + }, + { + "verseNum": 18, + "text": "When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they trembled and stood at a distance." + }, + { + "verseNum": 19, + "text": "“Speak to us yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.”" + }, + { + "verseNum": 20, + "text": "“Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.”" + }, + { + "verseNum": 21, + "text": "And the people stood at a distance as Moses approached the thick darkness where God was." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from heaven." + }, + { + "verseNum": 23, + "text": "You are not to make any gods alongside Me; you are not to make for yourselves gods of silver or gold." + }, + { + "verseNum": 24, + "text": "You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace offerings, your sheep and goats and cattle. In every place where I cause My name to be remembered, I will come to you and bless you." + }, + { + "verseNum": 25, + "text": "Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it." + }, + { + "verseNum": 26, + "text": "And you must not go up to My altar on steps, lest your nakedness be exposed on it.’" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-21.json b/data/en_bible/BSB/EXO/chapter-21.json new file mode 100644 index 0000000..8ab3b43 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-21.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“These are the ordinances that you are to set before them:" + }, + { + "verseNum": 2, + "text": "If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything." + }, + { + "verseNum": 3, + "text": "If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him." + }, + { + "verseNum": 4, + "text": "If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her master, and only the man shall go free." + }, + { + "verseNum": 5, + "text": "But if the servant declares, ‘I love my master and my wife and children; I do not want to go free,’" + }, + { + "verseNum": 6, + "text": "then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he shall serve his master for life." + }, + { + "verseNum": 7, + "text": "And if a man sells his daughter as a servant, she is not to go free as the menservants do." + }, + { + "verseNum": 8, + "text": "If she is displeasing in the eyes of her master who had designated her for himself, he must allow her to be redeemed. He has no right to sell her to foreigners, since he has broken faith with her." + }, + { + "verseNum": 9, + "text": "And if he chooses her for his son, he must deal with her as with a daughter." + }, + { + "verseNum": 10, + "text": "If he takes another wife, he must not reduce the food, clothing, or marital rights of his first wife." + }, + { + "verseNum": 11, + "text": "If, however, he does not provide her with these three things, she is free to go without monetary payment." + }, + { + "verseNum": 12, + "text": "Whoever strikes and kills a man must surely be put to death." + }, + { + "verseNum": 13, + "text": "If, however, he did not lie in wait, but God allowed it to happen, then I will appoint for you a place where he may flee." + }, + { + "verseNum": 14, + "text": "But if a man schemes and acts willfully against his neighbor to kill him, you must take him away from My altar to be put to death." + }, + { + "verseNum": 15, + "text": "Whoever strikes his father or mother must surely be put to death." + }, + { + "verseNum": 16, + "text": "Whoever kidnaps another man must be put to death, whether he sells him or the man is found in his possession." + }, + { + "verseNum": 17, + "text": "Anyone who curses his father or mother must surely be put to death." + }, + { + "verseNum": 18, + "text": "If men are quarreling and one strikes the other with a stone or a fist, and he does not die but is confined to bed," + }, + { + "verseNum": 19, + "text": "then the one who struck him shall go unpunished, as long as the other can get up and walk around outside with his staff. Nevertheless, he must compensate the man for his lost work and see that he is completely healed." + }, + { + "verseNum": 20, + "text": "If a man strikes his manservant or maidservant with a rod, and the servant dies by his hand, he shall surely be punished." + }, + { + "verseNum": 21, + "text": "However, if the servant gets up after a day or two, the owner shall not be punished, since the servant is his property." + }, + { + "verseNum": 22, + "text": "If men who are fighting strike a pregnant woman and her child is born prematurely, but there is no further injury, he shall surely be fined as the woman’s husband demands and as the court allows." + }, + { + "verseNum": 23, + "text": "But if a serious injury results, then you must require a life for a life—" + }, + { + "verseNum": 24, + "text": "eye for eye, tooth for tooth, hand for hand, foot for foot," + }, + { + "verseNum": 25, + "text": "burn for burn, wound for wound, and stripe for stripe." + }, + { + "verseNum": 26, + "text": "If a man strikes and blinds the eye of his manservant or maidservant, he must let the servant go free as compensation for the eye." + }, + { + "verseNum": 27, + "text": "And if he knocks out the tooth of his manservant or maidservant, he must let the servant go free as compensation for the tooth." + }, + { + "verseNum": 28, + "text": "If an ox gores a man or woman to death, the ox must surely be stoned, and its meat must not be eaten. But the owner of the ox shall not be held responsible." + }, + { + "verseNum": 29, + "text": "But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be stoned and its owner must also be put to death." + }, + { + "verseNum": 30, + "text": "If payment is demanded of him instead, he may redeem his life by paying the full amount demanded of him." + }, + { + "verseNum": 31, + "text": "If the ox gores a son or a daughter, it shall be done to him according to the same rule." + }, + { + "verseNum": 32, + "text": "If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be stoned." + }, + { + "verseNum": 33, + "text": "If a man opens or digs a pit and fails to cover it, and an ox or a donkey falls into it," + }, + { + "verseNum": 34, + "text": "the owner of the pit shall make restitution; he must pay its owner, and the dead animal will be his." + }, + { + "verseNum": 35, + "text": "If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the proceeds; they also must divide the dead animal." + }, + { + "verseNum": 36, + "text": "But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead animal will be his." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-22.json b/data/en_bible/BSB/EXO/chapter-22.json new file mode 100644 index 0000000..6dd090f --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-22.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a man steals an ox or a sheep and slaughters or sells it, he must repay five oxen for an ox and four sheep for a sheep." + }, + { + "verseNum": 2, + "text": "If a thief is caught breaking in and is beaten to death, no one shall be guilty of bloodshed." + }, + { + "verseNum": 3, + "text": "But if it happens after sunrise, there is guilt for his bloodshed.\n \nA thief must make full restitution; if he has nothing, he himself shall be sold for his theft." + }, + { + "verseNum": 4, + "text": "If what was stolen is actually found alive in his possession—whether ox or donkey or sheep—he must pay back double." + }, + { + "verseNum": 5, + "text": "If a man grazes his livestock in a field or vineyard and allows them to stray so that they graze in someone else’s field, he must make restitution from the best of his own field or vineyard." + }, + { + "verseNum": 6, + "text": "If a fire breaks out and spreads to thornbushes so that it consumes stacked or standing grain, or the whole field, the one who started the fire must make full restitution." + }, + { + "verseNum": 7, + "text": "If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double." + }, + { + "verseNum": 8, + "text": "If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s property." + }, + { + "verseNum": 9, + "text": "In all cases of illegal possession of an ox, a donkey, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back double to his neighbor." + }, + { + "verseNum": 10, + "text": "If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching," + }, + { + "verseNum": 11, + "text": "an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no restitution." + }, + { + "verseNum": 12, + "text": "But if the animal was actually stolen from the neighbor, he must make restitution to the owner." + }, + { + "verseNum": 13, + "text": "If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for the torn carcass." + }, + { + "verseNum": 14, + "text": "If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution." + }, + { + "verseNum": 15, + "text": "If the owner was present, no restitution is required. If the animal was rented, the fee covers the loss." + }, + { + "verseNum": 16, + "text": "If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must pay the full dowry for her to be his wife." + }, + { + "verseNum": 17, + "text": "If her father absolutely refuses to give her to him, the man still must pay an amount comparable to the bridal price of a virgin." + }, + { + "verseNum": 18, + "text": "You must not allow a sorceress to live." + }, + { + "verseNum": 19, + "text": "Whoever lies with an animal must surely be put to death." + }, + { + "verseNum": 20, + "text": "If anyone sacrifices to any god other than the LORD alone, he must be set apart for destruction." + }, + { + "verseNum": 21, + "text": "You must not exploit or oppress a foreign resident, for you yourselves were foreigners in the land of Egypt." + }, + { + "verseNum": 22, + "text": "You must not mistreat any widow or orphan." + }, + { + "verseNum": 23, + "text": "If you do mistreat them, and they cry out to Me in distress, I will surely hear their cry." + }, + { + "verseNum": 24, + "text": "My anger will be kindled, and I will kill you with the sword; then your wives will become widows and your children will be fatherless." + }, + { + "verseNum": 25, + "text": "If you lend money to one of My people among you who is poor, you must not act as a creditor to him; you are not to charge him interest." + }, + { + "verseNum": 26, + "text": "If you take your neighbor’s cloak as collateral, return it to him by sunset," + }, + { + "verseNum": 27, + "text": "because his cloak is the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will hear, for I am compassionate." + }, + { + "verseNum": 28, + "text": "You must not blaspheme God or curse the ruler of your people." + }, + { + "verseNum": 29, + "text": "You must not hold back offerings from your granaries or vats. You are to give Me the firstborn of your sons." + }, + { + "verseNum": 30, + "text": "You shall do likewise with your cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day you are to give them to Me." + }, + { + "verseNum": 31, + "text": "You are to be My holy people. You must not eat the meat of a mauled animal found in the field; you are to throw it to the dogs." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-23.json b/data/en_bible/BSB/EXO/chapter-23.json new file mode 100644 index 0000000..a7179e3 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-23.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You shall not spread a false report. Do not join the wicked by being a malicious witness." + }, + { + "verseNum": 2, + "text": "You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert justice by siding with the crowd." + }, + { + "verseNum": 3, + "text": "And do not show favoritism to a poor man in his lawsuit." + }, + { + "verseNum": 4, + "text": "If you encounter your enemy’s stray ox or donkey, you must return it to him." + }, + { + "verseNum": 5, + "text": "If you see the donkey of one who hates you fallen under its load, do not leave it there; you must help him with it." + }, + { + "verseNum": 6, + "text": "You shall not deny justice to the poor in their lawsuits." + }, + { + "verseNum": 7, + "text": "Stay far away from a false accusation. Do not kill the innocent or the just, for I will not acquit the guilty." + }, + { + "verseNum": 8, + "text": "Do not accept a bribe, for a bribe blinds those who see and twists the words of the righteous." + }, + { + "verseNum": 9, + "text": "Do not oppress a foreign resident, since you yourselves know how it feels to be foreigners; for you were foreigners in the land of Egypt." + }, + { + "verseNum": 10, + "text": "For six years you are to sow your land and gather its produce," + }, + { + "verseNum": 11, + "text": "but in the seventh year you must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. Do the same with your vineyard and olive grove." + }, + { + "verseNum": 12, + "text": "For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the foreign resident." + }, + { + "verseNum": 13, + "text": "Pay close attention to everything I have said to you. You must not invoke the names of other gods; they must not be heard on your lips." + }, + { + "verseNum": 14, + "text": "Three times a year you are to celebrate a feast to Me." + }, + { + "verseNum": 15, + "text": "You are to keep the Feast of Unleavened Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleavened bread for seven days, because that was the month you came out of Egypt. No one may appear before Me empty-handed." + }, + { + "verseNum": 16, + "text": "You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field.\n \nAnd keep the Feast of Ingathering at the end of the year, when you gather your produce from the field." + }, + { + "verseNum": 17, + "text": "Three times a year all your males are to appear before the Lord GOD." + }, + { + "verseNum": 18, + "text": "You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My feast remain until morning." + }, + { + "verseNum": 19, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk." + }, + { + "verseNum": 20, + "text": "Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared." + }, + { + "verseNum": 21, + "text": "Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in him." + }, + { + "verseNum": 22, + "text": "But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes." + }, + { + "verseNum": 23, + "text": "For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, Hivites, and Jebusites, and I will annihilate them." + }, + { + "verseNum": 24, + "text": "You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to pieces." + }, + { + "verseNum": 25, + "text": "So you shall serve the LORD your God, and He will bless your bread and your water. And I will take away sickness from among you." + }, + { + "verseNum": 26, + "text": "No woman in your land will miscarry or be barren; I will fulfill the number of your days." + }, + { + "verseNum": 27, + "text": "I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run." + }, + { + "verseNum": 28, + "text": "I will send the hornet before you to drive the Hivites and Canaanites and Hittites out of your way." + }, + { + "verseNum": 29, + "text": "I will not drive them out before you in a single year; otherwise the land would become desolate and wild animals would multiply against you." + }, + { + "verseNum": 30, + "text": "Little by little I will drive them out ahead of you, until you become fruitful and possess the land." + }, + { + "verseNum": 31, + "text": "And I will establish your borders from the Red Sea to the Sea of the Philistines, and from the desert to the Euphrates. For I will deliver the inhabitants into your hand, and you will drive them out before you." + }, + { + "verseNum": 32, + "text": "You shall make no covenant with them or with their gods." + }, + { + "verseNum": 33, + "text": "They must not remain in your land, lest they cause you to sin against Me. For if you serve their gods, it will surely be a snare to you.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-24.json b/data/en_bible/BSB/EXO/chapter-24.json new file mode 100644 index 0000000..e8a3b75 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-24.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Come up to the LORD—you and Aaron, Nadab and Abihu, and seventy of Israel’s elders—and you are to worship at a distance." + }, + { + "verseNum": 2, + "text": "Moses alone shall approach the LORD, but the others must not come near. And the people may not go up with him.”" + }, + { + "verseNum": 3, + "text": "When Moses came and told the people all the words and ordinances of the LORD, they all responded with one voice: “All the words that the LORD has spoken, we will do.”" + }, + { + "verseNum": 4, + "text": "And Moses wrote down all the words of the LORD.\n \nEarly the next morning he got up and built an altar at the base of the mountain, along with twelve pillars for the twelve tribes of Israel." + }, + { + "verseNum": 5, + "text": "Then he sent out some young men of Israel, and they offered burnt offerings and sacrificed young bulls as peace offerings to the LORD." + }, + { + "verseNum": 6, + "text": "Moses took half of the blood and put it in bowls, and the other half he sprinkled on the altar." + }, + { + "verseNum": 7, + "text": "Then he took the Book of the Covenant and read it to the people, who replied, “All that the LORD has spoken we will do, and we will be obedient.”" + }, + { + "verseNum": 8, + "text": "So Moses took the blood, sprinkled it on the people, and said, “This is the blood of the covenant that the LORD has made with you in accordance with all these words.”" + }, + { + "verseNum": 9, + "text": "Then Moses went up with Aaron, Nadab and Abihu, and seventy of the elders of Israel," + }, + { + "verseNum": 10, + "text": "and they saw the God of Israel. Under His feet was a work like a pavement made of sapphire, as clear as the sky itself." + }, + { + "verseNum": 11, + "text": "But God did not lay His hand on the nobles of Israel; they saw Him, and they ate and drank." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Come up to Me on the mountain and stay here, so that I may give you the tablets of stone, with the law and commandments I have written for their instruction.”" + }, + { + "verseNum": 13, + "text": "So Moses set out with Joshua his attendant and went up on the mountain of God." + }, + { + "verseNum": 14, + "text": "And he said to the elders, “Wait here for us until we return to you. Aaron and Hur are here with you. Whoever has a dispute can go to them.”" + }, + { + "verseNum": 15, + "text": "When Moses went up on the mountain, the cloud covered it," + }, + { + "verseNum": 16, + "text": "and the glory of the LORD settled on Mount Sinai. For six days the cloud covered it, and on the seventh day the LORD called to Moses from within the cloud." + }, + { + "verseNum": 17, + "text": "And the sight of the glory of the LORD was like a consuming fire on the mountaintop in the eyes of the Israelites." + }, + { + "verseNum": 18, + "text": "Moses entered the cloud as he went up on the mountain, and he remained on the mountain forty days and forty nights." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-25.json b/data/en_bible/BSB/EXO/chapter-25.json new file mode 100644 index 0000000..5cd4678 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-25.json @@ -0,0 +1,165 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to bring Me an offering. You are to receive My offering from every man whose heart compels him." + }, + { + "verseNum": 3, + "text": "This is the offering you are to accept from them:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 4, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 5, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 6, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 7, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 8, + "text": "And they are to make a sanctuary for Me, so that I may dwell among them." + }, + { + "verseNum": 9, + "text": "You must make the tabernacle and design all its furnishings according to the pattern I show you." + }, + { + "verseNum": 10, + "text": "And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "Overlay it with pure gold both inside and out, and make a gold molding around it." + }, + { + "verseNum": 12, + "text": "Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 13, + "text": "And make poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 14, + "text": "Insert the poles into the rings on the sides of the ark, in order to carry it." + }, + { + "verseNum": 15, + "text": "The poles are to remain in the rings of the ark; they must not be removed." + }, + { + "verseNum": 16, + "text": "And place inside the ark the Testimony, which I will give you." + }, + { + "verseNum": 17, + "text": "And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 18, + "text": "Make two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 19, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 20, + "text": "And the cherubim are to have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each other, looking toward the mercy seat." + }, + { + "verseNum": 21, + "text": "Set the mercy seat atop the ark, and put the Testimony that I will give you into the ark." + }, + { + "verseNum": 22, + "text": "And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the Israelites." + }, + { + "verseNum": 23, + "text": "You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 24, + "text": "Overlay it with pure gold and make a gold molding around it." + }, + { + "verseNum": 25, + "text": "And make a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 26, + "text": "Make four gold rings for the table and fasten them to the four corners at its four legs." + }, + { + "verseNum": 27, + "text": "The rings are to be close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 28, + "text": "Make the poles of acacia wood and overlay them with gold, so that the table may be carried with them." + }, + { + "verseNum": 29, + "text": "You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink offerings. Make them out of pure gold." + }, + { + "verseNum": 30, + "text": "And place the Bread of the Presence on the table before Me at all times." + }, + { + "verseNum": 31, + "text": "Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, including its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 32, + "text": "Six branches are to extend from the sides of the lampstand—three on one side and three on the other." + }, + { + "verseNum": 33, + "text": "There are to be three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand." + }, + { + "verseNum": 34, + "text": "And on the lampstand there shall be four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 35, + "text": "For the six branches that extend from the lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 36, + "text": "The buds and branches are to be all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 37, + "text": "Make seven lamps and set them up on the lampstand so that they illuminate the area in front of it." + }, + { + "verseNum": 38, + "text": "The wick trimmers and their trays must be of pure gold." + }, + { + "verseNum": 39, + "text": "The lampstand and all these utensils shall be made from a talent of pure gold." + }, + { + "verseNum": 40, + "text": "See to it that you make everything according to the pattern shown you on the mountain." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-26.json b/data/en_bible/BSB/EXO/chapter-26.json new file mode 100644 index 0000000..067ba2e --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-26.json @@ -0,0 +1,153 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You are to construct the tabernacle itself with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and cherubim skillfully worked into them." + }, + { + "verseNum": 2, + "text": "Each curtain shall be twenty-eight cubits long and four cubits wide —all curtains the same size." + }, + { + "verseNum": 3, + "text": "Five of the curtains are to be joined together, and the other five joined as well." + }, + { + "verseNum": 4, + "text": "Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain in the second set." + }, + { + "verseNum": 5, + "text": "Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops line up opposite one another." + }, + { + "verseNum": 6, + "text": "Make fifty gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a unit." + }, + { + "verseNum": 7, + "text": "You are to make curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 8, + "text": "Each of the eleven curtains is to be the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 9, + "text": "Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent." + }, + { + "verseNum": 10, + "text": "Make fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 11, + "text": "Make fifty bronze clasps and put them through the loops to join the tent together as a unit." + }, + { + "verseNum": 12, + "text": "As for the overlap that remains of the tent curtains, the half curtain that is left over shall hang down over the back of the tabernacle." + }, + { + "verseNum": 13, + "text": "And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of the tabernacle to cover it." + }, + { + "verseNum": 14, + "text": "Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 15, + "text": "You are to construct upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 16, + "text": "Each frame is to be ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 17, + "text": "Two tenons must be connected to each other for each frame. Make all the frames of the tabernacle in this way." + }, + { + "verseNum": 18, + "text": "Construct twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 19, + "text": "with forty silver bases under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 20, + "text": "For the second side of the tabernacle, the north side, make twenty frames" + }, + { + "verseNum": 21, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 22, + "text": "Make six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 23, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 24, + "text": "coupled together from bottom to top and fitted into a single ring. These will serve as the two corners." + }, + { + "verseNum": 25, + "text": "So there are to be eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 26, + "text": "You are also to make five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 27, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 28, + "text": "The central crossbar in the middle of the frames shall extend from one end to the other." + }, + { + "verseNum": 29, + "text": "Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold." + }, + { + "verseNum": 30, + "text": "So you are to set up the tabernacle according to the pattern shown you on the mountain." + }, + { + "verseNum": 31, + "text": "Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 32, + "text": "Hang it with gold hooks on four posts of acacia wood, overlaid with gold and standing on four silver bases." + }, + { + "verseNum": 33, + "text": "And hang the veil from the clasps and place the ark of the Testimony behind the veil. So the veil will separate the Holy Place from the Most Holy Place." + }, + { + "verseNum": 34, + "text": "Put the mercy seat on the ark of the Testimony in the Most Holy Place." + }, + { + "verseNum": 35, + "text": "And place the table outside the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the south side." + }, + { + "verseNum": 36, + "text": "For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen." + }, + { + "verseNum": 37, + "text": "Make five posts of acacia wood for the curtain, overlay them with gold hooks, and cast five bronze bases for them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-27.json b/data/en_bible/BSB/EXO/chapter-27.json new file mode 100644 index 0000000..19970ff --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-27.json @@ -0,0 +1,89 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You are to build an altar of acacia wood. The altar must be square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with bronze." + }, + { + "verseNum": 3, + "text": "Make all its utensils of bronze—its pots for removing ashes, its shovels, its sprinkling bowls, its meat forks, and its firepans." + }, + { + "verseNum": 4, + "text": "Construct for it a grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh." + }, + { + "verseNum": 5, + "text": "Set the grate beneath the ledge of the altar, so that the mesh comes halfway up the altar." + }, + { + "verseNum": 6, + "text": "Additionally, make poles of acacia wood for the altar and overlay them with bronze." + }, + { + "verseNum": 7, + "text": "The poles are to be inserted into the rings so that the poles are on two sides of the altar when it is carried." + }, + { + "verseNum": 8, + "text": "Construct the altar with boards so that it is hollow. It is to be made just as you were shown on the mountain." + }, + { + "verseNum": 9, + "text": "You are also to make a courtyard for the tabernacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long on one side," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 12, + "text": "The curtains on the west side of the courtyard shall be fifty cubits wide, with ten posts and ten bases." + }, + { + "verseNum": 13, + "text": "The east side of the courtyard, toward the sunrise, is to be fifty cubits wide." + }, + { + "verseNum": 14, + "text": "Make the curtains on one side fifteen cubits long, with three posts and three bases," + }, + { + "verseNum": 15, + "text": "and the curtains on the other side fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 16, + "text": "The gate of the courtyard shall be twenty cubits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It shall have four posts and four bases." + }, + { + "verseNum": 17, + "text": "All the posts around the courtyard shall have silver bands, silver hooks, and bronze bases." + }, + { + "verseNum": 18, + "text": "The entire courtyard shall be a hundred cubits long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze bases." + }, + { + "verseNum": 19, + "text": "All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs of the courtyard, shall be made of bronze." + }, + { + "verseNum": 20, + "text": "And you are to command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 21, + "text": "In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-28.json b/data/en_bible/BSB/EXO/chapter-28.json new file mode 100644 index 0000000..3419c04 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-28.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Next, have your brother Aaron brought to you from among the Israelites, along with his sons Nadab, Abihu, Eleazar, and Ithamar, to serve Me as priests." + }, + { + "verseNum": 2, + "text": "Make holy garments for your brother Aaron, to give him glory and splendor." + }, + { + "verseNum": 3, + "text": "You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that he may serve Me as priest." + }, + { + "verseNum": 4, + "text": "These are the garments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they may serve Me as priests." + }, + { + "verseNum": 5, + "text": "They shall use gold, along with blue, purple, and scarlet yarn, and fine linen." + }, + { + "verseNum": 6, + "text": "They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 7, + "text": "It shall have two shoulder pieces attached at two of its corners, so it can be fastened." + }, + { + "verseNum": 8, + "text": "And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "Take two onyx stones and engrave on them the names of the sons of Israel:" + }, + { + "verseNum": 10, + "text": "six of their names on one stone and the remaining six on the other, in the order of their birth." + }, + { + "verseNum": 11, + "text": "Engrave the names of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the stones in gold filigree settings." + }, + { + "verseNum": 12, + "text": "Fasten both stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a memorial before the LORD." + }, + { + "verseNum": 13, + "text": "Fashion gold filigree settings" + }, + { + "verseNum": 14, + "text": "and two chains of pure gold, made of braided cord work; and attach these chains to the settings." + }, + { + "verseNum": 15, + "text": "You are also to make a breastpiece of judgment with the same workmanship as the ephod. Construct it with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 16, + "text": "It must be square when folded over double, a span long and a span wide." + }, + { + "verseNum": 17, + "text": "And mount on it a setting of gemstones, four rows of stones:\n \n In the first row there shall be a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 18, + "text": "in the second row a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 19, + "text": "in the third row a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 20, + "text": "and in the fourth row a beryl, an onyx, and a jasper.\n \nMount these stones in gold filigree settings." + }, + { + "verseNum": 21, + "text": "The twelve stones are to correspond to the names of the sons of Israel, each engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 22, + "text": "For the breastpiece, make braided chains like cords of pure gold." + }, + { + "verseNum": 23, + "text": "You are also to make two gold rings and fasten them to the two corners of the breastpiece." + }, + { + "verseNum": 24, + "text": "Then fasten the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 25, + "text": "and fasten the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 26, + "text": "Make two more gold rings and attach them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 27, + "text": "Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband." + }, + { + "verseNum": 28, + "text": "The rings of the breastpiece shall be tied to the rings of the ephod with a cord of blue yarn, so that the breastpiece is above the waistband of the ephod and does not swing out from the ephod." + }, + { + "verseNum": 29, + "text": "Whenever Aaron enters the Holy Place, he shall bear the names of the sons of Israel over his heart on the breastpiece of judgment, as a continual reminder before the LORD." + }, + { + "verseNum": 30, + "text": "And place the Urim and Thummim in the breastpiece of judgment, so that they will also be over Aaron’s heart whenever he comes before the LORD. Aaron will continually carry the judgment of the sons of Israel over his heart before the LORD." + }, + { + "verseNum": 31, + "text": "You are to make the robe of the ephod entirely of blue cloth," + }, + { + "verseNum": 32, + "text": "with an opening at its top in the center. Around the opening shall be a woven collar with an opening like that of a garment, so that it will not tear." + }, + { + "verseNum": 33, + "text": "Make pomegranates of blue, purple, and scarlet yarn all the way around the lower hem, with gold bells between them," + }, + { + "verseNum": 34, + "text": "alternating the gold bells and pomegranates around the lower hem of the robe." + }, + { + "verseNum": 35, + "text": "Aaron must wear the robe whenever he ministers, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he will not die." + }, + { + "verseNum": 36, + "text": "You are to make a plate of pure gold and engrave on it as on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 37, + "text": "Fasten to it a blue cord to mount it on the turban; it shall be on the front of the turban." + }, + { + "verseNum": 38, + "text": "And it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so that they may be acceptable before the LORD." + }, + { + "verseNum": 39, + "text": "You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an embroidered sash." + }, + { + "verseNum": 40, + "text": "Make tunics, sashes, and headbands for Aaron’s sons, to give them glory and splendor." + }, + { + "verseNum": 41, + "text": "After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me as priests." + }, + { + "verseNum": 42, + "text": "Make linen undergarments to cover their bare flesh, extending from waist to thigh." + }, + { + "verseNum": 43, + "text": "Aaron and his sons must wear them whenever they enter the Tent of Meeting or approach the altar to minister in the Holy Place, so that they will not incur guilt and die. This is to be a permanent statute for Aaron and his descendants." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-29.json b/data/en_bible/BSB/EXO/chapter-29.json new file mode 100644 index 0000000..21729e8 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-29.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is what you are to do to consecrate Aaron and his sons to serve Me as priests: Take a young bull and two rams without blemish," + }, + { + "verseNum": 2, + "text": "along with unleavened bread, unleavened cakes mixed with oil, and unleavened wafers anointed with oil. Make them out of fine wheat flour," + }, + { + "verseNum": 3, + "text": "put them in a basket, and present them in the basket, along with the bull and the two rams." + }, + { + "verseNum": 4, + "text": "Then present Aaron and his sons at the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 5, + "text": "Take the garments and clothe Aaron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the ephod on him with its woven waistband." + }, + { + "verseNum": 6, + "text": "Put the turban on his head and attach the holy diadem to the turban." + }, + { + "verseNum": 7, + "text": "Then take the anointing oil and anoint him by pouring it on his head." + }, + { + "verseNum": 8, + "text": "Present his sons as well and clothe them with tunics." + }, + { + "verseNum": 9, + "text": "Wrap the sashes around Aaron and his sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this way you are to ordain Aaron and his sons." + }, + { + "verseNum": 10, + "text": "You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 11, + "text": "And you shall slaughter the bull before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Take some of the blood of the bull and put it on the horns of the altar with your finger; then pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 13, + "text": "Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar." + }, + { + "verseNum": 14, + "text": "But burn the flesh of the bull and its hide and dung outside the camp; it is a sin offering." + }, + { + "verseNum": 15, + "text": "Take one of the rams, and Aaron and his sons shall lay their hands on its head." + }, + { + "verseNum": 16, + "text": "You are to slaughter the ram, take its blood, and sprinkle it on all sides of the altar." + }, + { + "verseNum": 17, + "text": "Cut the ram into pieces, wash the entrails and legs, and place them with its head and other pieces." + }, + { + "verseNum": 18, + "text": "Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 19, + "text": "Take the second ram, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 20, + "text": "Slaughter the ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Sprinkle the remaining blood on all sides of the altar." + }, + { + "verseNum": 21, + "text": "And take some of the blood on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as well as on his sons and their garments. Then he and his garments will be consecrated, as well as his sons and their garments." + }, + { + "verseNum": 22, + "text": "Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh (since this is a ram for ordination)," + }, + { + "verseNum": 23, + "text": "along with one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened bread that is before the LORD." + }, + { + "verseNum": 24, + "text": "Put all these in the hands of Aaron and his sons and wave them before the LORD as a wave offering." + }, + { + "verseNum": 25, + "text": "Then take them from their hands and burn them on the altar atop the burnt offering as a pleasing aroma before the LORD; it is an offering made by fire to the LORD." + }, + { + "verseNum": 26, + "text": "Take the breast of the ram of Aaron’s ordination and wave it before the LORD as a wave offering, and it will be your portion." + }, + { + "verseNum": 27, + "text": "Consecrate for Aaron and his sons the breast of the wave offering that is waved and the thigh of the heave offering that is lifted up from the ram of ordination." + }, + { + "verseNum": 28, + "text": "This will belong to Aaron and his sons as a regular portion from the Israelites, for it is the heave offering the Israelites will make to the LORD from their peace offerings." + }, + { + "verseNum": 29, + "text": "The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them." + }, + { + "verseNum": 30, + "text": "The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear them for seven days." + }, + { + "verseNum": 31, + "text": "You are to take the ram of ordination and boil its flesh in a holy place." + }, + { + "verseNum": 32, + "text": "At the entrance to the Tent of Meeting, Aaron and his sons are to eat the meat of the ram and the bread that is in the basket." + }, + { + "verseNum": 33, + "text": "They must eat those things by which atonement was made for their ordination and consecration. But no outsider may eat them, because these things are sacred." + }, + { + "verseNum": 34, + "text": "And if any of the meat of ordination or any bread is left until the morning, you are to burn up the remainder. It must not be eaten, because it is sacred." + }, + { + "verseNum": 35, + "text": "This is what you are to do for Aaron and his sons based on all that I have commanded you, taking seven days to ordain them." + }, + { + "verseNum": 36, + "text": "Sacrifice a bull as a sin offering each day for atonement. Purify the altar by making atonement for it, and anoint it to consecrate it." + }, + { + "verseNum": 37, + "text": "For seven days you shall make atonement for the altar and consecrate it. Then the altar will become most holy; whatever touches the altar will be holy." + }, + { + "verseNum": 38, + "text": "This is what you are to offer regularly on the altar, each day: two lambs that are a year old." + }, + { + "verseNum": 39, + "text": "Offer one lamb in the morning and the other at twilight." + }, + { + "verseNum": 40, + "text": "With the first lamb offer a tenth of an ephah of fine flour, mixed with a quarter hin of oil from pressed olives, and a drink offering of a quarter hin of wine." + }, + { + "verseNum": 41, + "text": "And offer the second lamb at twilight with the same grain offering and drink offering as in the morning, as a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 42, + "text": "For the generations to come, this burnt offering shall be made regularly at the entrance to the Tent of Meeting before the LORD, where I will meet you to speak with you." + }, + { + "verseNum": 43, + "text": "I will also meet with the Israelites there, and that place will be consecrated by My glory." + }, + { + "verseNum": 44, + "text": "So I will consecrate the Tent of Meeting and the altar, and I will consecrate Aaron and his sons to serve Me as priests." + }, + { + "verseNum": 45, + "text": "Then I will dwell among the Israelites and be their God." + }, + { + "verseNum": 46, + "text": "And they will know that I am the LORD their God, who brought them out of the land of Egypt so that I might dwell among them.\n \nI am the LORD their God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-3.json b/data/en_bible/BSB/EXO/chapter-3.json new file mode 100644 index 0000000..c8015ef --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-3.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the wilderness and came to Horeb, the mountain of God." + }, + { + "verseNum": 2, + "text": "There the angel of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not consumed." + }, + { + "verseNum": 3, + "text": "So Moses thought, “I must go over and see this marvelous sight. Why is the bush not burning up?”" + }, + { + "verseNum": 4, + "text": "When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 5, + "text": "“Do not come any closer,” God said. “Take off your sandals, for the place where you are standing is holy ground.”" + }, + { + "verseNum": 6, + "text": "Then He said, “I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.”\n \nAt this, Moses hid his face, for he was afraid to look at God." + }, + { + "verseNum": 7, + "text": "The LORD said, “I have indeed seen the affliction of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings." + }, + { + "verseNum": 8, + "text": "I have come down to rescue them from the hand of the Egyptians and to bring them up out of that land to a good and spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 9, + "text": "And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them." + }, + { + "verseNum": 10, + "text": "Therefore, go! I am sending you to Pharaoh to bring My people the Israelites out of Egypt.”" + }, + { + "verseNum": 11, + "text": "But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of Egypt?”" + }, + { + "verseNum": 12, + "text": "“I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of you will worship God on this mountain.”" + }, + { + "verseNum": 13, + "text": "Then Moses asked God, “Suppose I go to the Israelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His name?’ What should I tell them?”" + }, + { + "verseNum": 14, + "text": "God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has sent me to you.’”" + }, + { + "verseNum": 15, + "text": "God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every generation." + }, + { + "verseNum": 16, + "text": "Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me and said: I have surely attended to you and have seen what has been done to you in Egypt." + }, + { + "verseNum": 17, + "text": "And I have promised to bring you up out of your affliction in Egypt, into the land of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites—a land flowing with milk and honey.’" + }, + { + "verseNum": 18, + "text": "The elders of Israel will listen to what you say, and you must go with them to the king of Egypt and tell him, ‘The LORD, the God of the Hebrews, has met with us. Now please let us take a three-day journey into the wilderness, so that we may sacrifice to the LORD our God.’" + }, + { + "verseNum": 19, + "text": "But I know that the king of Egypt will not allow you to go unless a mighty hand compels him." + }, + { + "verseNum": 20, + "text": "So I will stretch out My hand and strike the Egyptians with all the wonders I will perform among them. And after that, he will release you." + }, + { + "verseNum": 21, + "text": "And I will grant this people such favor in the sight of the Egyptians that when you leave, you will not go away empty-handed." + }, + { + "verseNum": 22, + "text": "Every woman shall ask her neighbor and any woman staying in her house for silver and gold jewelry and clothing, and you will put them on your sons and daughters. So you will plunder the Egyptians.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-30.json b/data/en_bible/BSB/EXO/chapter-30.json new file mode 100644 index 0000000..f30af00 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-30.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You are also to make an altar of acacia wood for the burning of incense." + }, + { + "verseNum": 2, + "text": "It is to be square, a cubit long, a cubit wide, and two cubits high. Its horns must be of one piece." + }, + { + "verseNum": 3, + "text": "Overlay with pure gold the top and all the sides and horns, and make a molding of gold around it." + }, + { + "verseNum": 4, + "text": "And make two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 5, + "text": "Make the poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 6, + "text": "Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you." + }, + { + "verseNum": 7, + "text": "And Aaron is to burn fragrant incense on it every morning when he tends the lamps." + }, + { + "verseNum": 8, + "text": "When Aaron sets up the lamps at twilight, he must burn the incense perpetually before the LORD for the generations to come." + }, + { + "verseNum": 9, + "text": "On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it." + }, + { + "verseNum": 10, + "text": "Once a year Aaron shall make atonement on the horns of the altar. Throughout your generations he shall make atonement on it annually with the blood of the sin offering of atonement. The altar is most holy to the LORD.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come upon them when they are numbered." + }, + { + "verseNum": 13, + "text": "Everyone who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is an offering to the LORD." + }, + { + "verseNum": 14, + "text": "Everyone twenty years of age or older who crosses over must give this offering to the LORD." + }, + { + "verseNum": 15, + "text": "In making the offering to the LORD to atone for your lives, the rich shall not give more than a half shekel, nor shall the poor give less." + }, + { + "verseNum": 16, + "text": "Take the atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD to make atonement for your lives.”" + }, + { + "verseNum": 17, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and the altar, and put water in it," + }, + { + "verseNum": 19, + "text": "with which Aaron and his sons are to wash their hands and feet." + }, + { + "verseNum": 20, + "text": "Whenever they enter the Tent of Meeting or approach the altar to minister by presenting an offering made by fire to the LORD, they must wash with water so that they will not die." + }, + { + "verseNum": 21, + "text": "Thus they are to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to come.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Take the finest spices: 500 shekels of liquid myrrh, half that amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane," + }, + { + "verseNum": 24, + "text": "500 shekels of cassia —all according to the sanctuary shekel—and a hin of olive oil." + }, + { + "verseNum": 25, + "text": "Prepare from these a sacred anointing oil, a fragrant blend, the work of a perfumer; it will be a sacred anointing oil." + }, + { + "verseNum": 26, + "text": "Use this oil to anoint the Tent of Meeting, the ark of the Testimony," + }, + { + "verseNum": 27, + "text": "the table and all its utensils, the lampstand and its utensils, the altar of incense," + }, + { + "verseNum": 28, + "text": "the altar of burnt offering and all its utensils, and the basin with its stand." + }, + { + "verseNum": 29, + "text": "You are to consecrate them so that they will be most holy. Whatever touches them shall be holy." + }, + { + "verseNum": 30, + "text": "Anoint Aaron and his sons and consecrate them to serve Me as priests." + }, + { + "verseNum": 31, + "text": "And you are to tell the Israelites, ‘This will be My sacred anointing oil for the generations to come." + }, + { + "verseNum": 32, + "text": "It must not be used to anoint an ordinary man, and you must not make anything like it with the same formula. It is holy, and it must be holy to you." + }, + { + "verseNum": 33, + "text": "Anyone who mixes perfume like it or puts it on an outsider shall be cut off from his people.’”" + }, + { + "verseNum": 34, + "text": "The LORD also said to Moses, “Take fragrant spices—gum resin, onycha, galbanum, and pure frankincense—in equal measures," + }, + { + "verseNum": 35, + "text": "and make a fragrant blend of incense, the work of a perfumer, seasoned with salt, pure and holy." + }, + { + "verseNum": 36, + "text": "Grind some of it into fine powder and place it in front of the Testimony in the Tent of Meeting, where I will meet with you. It shall be most holy to you." + }, + { + "verseNum": 37, + "text": "You are never to use this formula to make incense for yourselves; you shall regard it as holy to the LORD." + }, + { + "verseNum": 38, + "text": "Anyone who makes something like it to enjoy its fragrance shall be cut off from his people.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-31.json b/data/en_bible/BSB/EXO/chapter-31.json new file mode 100644 index 0000000..98605db --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-31.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“See, I have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 3, + "text": "And I have filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 4, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 5, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every craft." + }, + { + "verseNum": 6, + "text": "Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant.\n \nI have also given skill to all the craftsmen, that they may fashion all that I have commanded you:" + }, + { + "verseNum": 7, + "text": "the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other furnishings of the tent—" + }, + { + "verseNum": 8, + "text": "the table with its utensils, the pure gold lampstand with all its utensils, the altar of incense," + }, + { + "verseNum": 9, + "text": "the altar of burnt offering with all its utensils, and the basin with its stand—" + }, + { + "verseNum": 10, + "text": "as well as the woven garments, both the holy garments for Aaron the priest and the garments for his sons to serve as priests," + }, + { + "verseNum": 11, + "text": "in addition to the anointing oil and fragrant incense for the Holy Place. They are to make them according to all that I have commanded you.”" + }, + { + "verseNum": 12, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 13, + "text": "“Tell the Israelites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you." + }, + { + "verseNum": 14, + "text": "Keep the Sabbath, for it is holy to you. Anyone who profanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people." + }, + { + "verseNum": 15, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to death." + }, + { + "verseNum": 16, + "text": "The Israelites must keep the Sabbath, celebrating it as a permanent covenant for the generations to come." + }, + { + "verseNum": 17, + "text": "It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh day He rested and was refreshed.’”" + }, + { + "verseNum": 18, + "text": "When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tablets of the Testimony, tablets of stone inscribed by the finger of God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-32.json b/data/en_bible/BSB/EXO/chapter-32.json new file mode 100644 index 0000000..03fbf76 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-32.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!”" + }, + { + "verseNum": 2, + "text": "So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, and bring them to me.”" + }, + { + "verseNum": 3, + "text": "Then all the people took off their gold earrings and brought them to Aaron." + }, + { + "verseNum": 4, + "text": "He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you up out of the land of Egypt!”" + }, + { + "verseNum": 5, + "text": "When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a feast to the LORD.”" + }, + { + "verseNum": 6, + "text": "So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink, and got up to indulge in revelry." + }, + { + "verseNum": 7, + "text": "Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves." + }, + { + "verseNum": 8, + "text": "How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of the land of Egypt.’”" + }, + { + "verseNum": 9, + "text": "The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked people." + }, + { + "verseNum": 10, + "text": "Now leave Me alone, so that My anger may burn against them and consume them. Then I will make you into a great nation.”" + }, + { + "verseNum": 11, + "text": "But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand?" + }, + { + "verseNum": 12, + "text": "Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from the face of the earth’? Turn from Your fierce anger and relent from doing harm to Your people." + }, + { + "verseNum": 13, + "text": "Remember Your servants Abraham, Isaac, and Israel, to whom You swore by Your very self when You declared, ‘I will make your descendants as numerous as the stars in the sky, and I will give your descendants all this land that I have promised, and it shall be their inheritance forever.’”" + }, + { + "verseNum": 14, + "text": "So the LORD relented from the calamity He had threatened to bring on His people." + }, + { + "verseNum": 15, + "text": "Then Moses turned and went down the mountain with the two tablets of the Testimony in his hands. They were inscribed on both sides, front and back." + }, + { + "verseNum": 16, + "text": "The tablets were the work of God, and the writing was the writing of God, engraved on the tablets." + }, + { + "verseNum": 17, + "text": "When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is in the camp.”" + }, + { + "verseNum": 18, + "text": "But Moses replied:\n \n “It is neither the cry of victory nor the cry of defeat;\n I hear the sound of singing!”" + }, + { + "verseNum": 19, + "text": "As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering them at the base of the mountain." + }, + { + "verseNum": 20, + "text": "Then he took the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the Israelites to drink it." + }, + { + "verseNum": 21, + "text": "“What did this people do to you,” Moses asked Aaron, “that you have led them into so great a sin?”" + }, + { + "verseNum": 22, + "text": "“Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on evil." + }, + { + "verseNum": 23, + "text": "They told me, ‘Make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!’" + }, + { + "verseNum": 24, + "text": "So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I threw it into the fire, out came this calf!”" + }, + { + "verseNum": 25, + "text": "Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock to their enemies." + }, + { + "verseNum": 26, + "text": "So Moses stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.”\n \nAnd all the Levites gathered around him." + }, + { + "verseNum": 27, + "text": "He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp from gate to gate, and slay his brother, his friend, and his neighbor.’”" + }, + { + "verseNum": 28, + "text": "The Levites did as Moses commanded, and that day about three thousand of the people fell dead." + }, + { + "verseNum": 29, + "text": "Afterward, Moses said, “Today you have been ordained for service to the LORD, since each man went against his son and his brother; so the LORD has bestowed a blessing on you this day.”" + }, + { + "verseNum": 30, + "text": "The next day Moses said to the people, “You have committed a great sin. Now I will go up to the LORD; perhaps I can make atonement for your sin.”" + }, + { + "verseNum": 31, + "text": "So Moses returned to the LORD and said, “Oh, what a great sin these people have committed! They have made gods of gold for themselves." + }, + { + "verseNum": 32, + "text": "Yet now, if You would only forgive their sin.... But if not, please blot me out of the book that You have written.”" + }, + { + "verseNum": 33, + "text": "The LORD replied to Moses, “Whoever has sinned against Me, I will blot out of My book." + }, + { + "verseNum": 34, + "text": "Now go, lead the people to the place I described. Behold, My angel shall go before you. But on the day I settle accounts, I will punish them for their sin.”" + }, + { + "verseNum": 35, + "text": "And the LORD sent a plague on the people because of what they had done with the calf that Aaron had made." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-33.json b/data/en_bible/BSB/EXO/chapter-33.json new file mode 100644 index 0000000..163876b --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-33.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Leave this place, you and the people you brought up out of the land of Egypt, and go to the land that I promised to Abraham, Isaac, and Jacob when I said, ‘I will give it to your descendants.’" + }, + { + "verseNum": 2, + "text": "And I will send an angel before you, and I will drive out the Canaanites, Amorites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 3, + "text": "Go up to a land flowing with milk and honey. But I will not go with you, because you are a stiff-necked people; otherwise, I might destroy you on the way.”" + }, + { + "verseNum": 4, + "text": "When the people heard these bad tidings, they went into mourning, and no one put on any of his jewelry." + }, + { + "verseNum": 5, + "text": "For the LORD had said to Moses, “Tell the Israelites, ‘You are a stiff-necked people. If I should go with you for a single moment, I would destroy you. Now take off your jewelry, and I will decide what to do with you.’”" + }, + { + "verseNum": 6, + "text": "So the Israelites stripped themselves of their jewelry from Mount Horeb onward." + }, + { + "verseNum": 7, + "text": "Now Moses used to take the tent and pitch it at a distance outside the camp. He called it the Tent of Meeting, and anyone inquiring of the LORD would go to the Tent of Meeting outside the camp." + }, + { + "verseNum": 8, + "text": "Then, whenever Moses went out to the tent, all the people would stand at the entrances to their own tents and watch Moses until he entered the tent." + }, + { + "verseNum": 9, + "text": "As Moses entered the tent, the pillar of cloud would come down and remain at the entrance, and the LORD would speak with Moses." + }, + { + "verseNum": 10, + "text": "When all the people saw the pillar of cloud standing at the entrance to the tent, they would stand up and worship, each one at the entrance to his own tent." + }, + { + "verseNum": 11, + "text": "Thus the LORD would speak to Moses face to face, as a man speaks to his friend. Then Moses would return to the camp, but his young assistant Joshua son of Nun would not leave the tent." + }, + { + "verseNum": 12, + "text": "Then Moses said to the LORD, “Look, You have been telling me, ‘Lead this people up,’ but You have not let me know whom You will send with me. Yet You have said, ‘I know you by name, and you have found favor in My sight.’" + }, + { + "verseNum": 13, + "text": "Now if indeed I have found favor in Your sight, please let me know Your ways, that I may know You and find favor in Your sight. Remember that this nation is Your people.”" + }, + { + "verseNum": 14, + "text": "And the LORD answered, “My Presence will go with you, and I will give you rest.”" + }, + { + "verseNum": 15, + "text": "“If Your Presence does not go with us,” Moses replied, “do not lead us up from here." + }, + { + "verseNum": 16, + "text": "For how then can it be known that Your people and I have found favor in Your sight, unless You go with us? How else will we be distinguished from all the other people on the face of the earth?”" + }, + { + "verseNum": 17, + "text": "So the LORD said to Moses, “I will do this very thing you have asked, for you have found favor in My sight, and I know you by name.”" + }, + { + "verseNum": 18, + "text": "Then Moses said, “Please show me Your glory.”" + }, + { + "verseNum": 19, + "text": "“I will cause all My goodness to pass before you,” the LORD replied, “and I will proclaim My name—the LORD—in your presence. I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.”" + }, + { + "verseNum": 20, + "text": "But He added, “You cannot see My face, for no one can see Me and live.”" + }, + { + "verseNum": 21, + "text": "The LORD continued, “There is a place near Me where you are to stand upon a rock," + }, + { + "verseNum": 22, + "text": "and when My glory passes by, I will put you in a cleft of the rock and cover you with My hand until I have passed by." + }, + { + "verseNum": 23, + "text": "Then I will take My hand away, and you will see My back; but My face must not be seen.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-34.json b/data/en_bible/BSB/EXO/chapter-34.json new file mode 100644 index 0000000..c97dd14 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-34.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I will write on them the words that were on the first tablets, which you broke." + }, + { + "verseNum": 2, + "text": "Be ready in the morning, and come up on Mount Sinai to present yourself before Me on the mountaintop." + }, + { + "verseNum": 3, + "text": "No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks or herds may graze in front of the mountain.”" + }, + { + "verseNum": 4, + "text": "So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and taking the two stone tablets in his hands, he went up Mount Sinai as the LORD had commanded him." + }, + { + "verseNum": 5, + "text": "And the LORD descended in a cloud, stood with him there, and proclaimed His name, the LORD." + }, + { + "verseNum": 6, + "text": "Then the LORD passed in front of Moses and called out:\n “The LORD, the LORD God,\n is compassionate and gracious,\n slow to anger,\n abounding in loving devotion and faithfulness," + }, + { + "verseNum": 7, + "text": "maintaining loving devotion to a thousand generations,\n forgiving iniquity, transgression, and sin.\n Yet He will by no means leave the guilty unpunished;\n He will visit the iniquity of the fathers\n on their children and grandchildren\n to the third and fourth generations.”" + }, + { + "verseNum": 8, + "text": "Moses immediately bowed down to the ground and worshiped." + }, + { + "verseNum": 9, + "text": "“O Lord,” he said, “if I have indeed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your inheritance.”" + }, + { + "verseNum": 10, + "text": "And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All the people among whom you live will see the LORD’s work, for it is an awesome thing that I am doing with you." + }, + { + "verseNum": 11, + "text": "Observe what I command you this day. I will drive out before you the Amorites, Canaanites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 12, + "text": "Be careful not to make a treaty with the inhabitants of the land you are entering, lest they become a snare in your midst." + }, + { + "verseNum": 13, + "text": "Rather, you must tear down their altars, smash their sacred stones, and chop down their Asherah poles." + }, + { + "verseNum": 14, + "text": "For you must not worship any other god, for the LORD, whose name is Jealous, is a jealous God." + }, + { + "verseNum": 15, + "text": "Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will invite you, and you will eat their sacrifices." + }, + { + "verseNum": 16, + "text": "And when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to do the same." + }, + { + "verseNum": 17, + "text": "You shall make no molten gods for yourselves." + }, + { + "verseNum": 18, + "text": "You are to keep the Feast of Unleavened Bread. For seven days at the appointed time in the month of Abib, you are to eat unleavened bread as I commanded you. For in the month of Abib you came out of Egypt." + }, + { + "verseNum": 19, + "text": "The first offspring of every womb belongs to Me, including all the firstborn males among your livestock, whether cattle or sheep." + }, + { + "verseNum": 20, + "text": "You must redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty-handed." + }, + { + "verseNum": 21, + "text": "Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and harvesting, you must rest." + }, + { + "verseNum": 22, + "text": "And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the Feast of Ingathering at the turn of the year." + }, + { + "verseNum": 23, + "text": "Three times a year all your males are to appear before the Lord GOD, the God of Israel." + }, + { + "verseNum": 24, + "text": "For I will drive out the nations before you and enlarge your borders, and no one will covet your land when you go up three times a year to appear before the LORD your God." + }, + { + "verseNum": 25, + "text": "Do not offer the blood of a sacrifice to Me along with anything leavened, and do not let any of the sacrifice from the Passover Feast remain until morning." + }, + { + "verseNum": 26, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk.”" + }, + { + "verseNum": 27, + "text": "The LORD also said to Moses, “Write down these words, for in accordance with these words I have made a covenant with you and with Israel.”" + }, + { + "verseNum": 28, + "text": "So Moses was there with the LORD forty days and forty nights without eating bread or drinking water. He wrote on the tablets the words of the covenant—the Ten Commandments." + }, + { + "verseNum": 29, + "text": "And when Moses came down from Mount Sinai with the two tablets of the Testimony in his hands, he was unaware that his face had become radiant from speaking with the LORD." + }, + { + "verseNum": 30, + "text": "Aaron and all the Israelites looked at Moses, and behold, his face was radiant. And they were afraid to approach him." + }, + { + "verseNum": 31, + "text": "But Moses called out to them; so Aaron and all the leaders of the congregation returned to him, and Moses spoke to them." + }, + { + "verseNum": 32, + "text": "And after this all the Israelites came near, and Moses commanded them to do everything that the LORD had told him on Mount Sinai." + }, + { + "verseNum": 33, + "text": "When Moses had finished speaking with them, he put a veil over his face." + }, + { + "verseNum": 34, + "text": "But whenever Moses went in before the LORD to speak with Him, he would remove the veil until he came out. And when he came out, he would tell the Israelites what he had been commanded," + }, + { + "verseNum": 35, + "text": "and the Israelites would see that the face of Moses was radiant. So Moses would put the veil back over his face until he went in to speak with the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-35.json b/data/en_bible/BSB/EXO/chapter-35.json new file mode 100644 index 0000000..92158be --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-35.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses assembled the whole congregation of Israel and said to them, “These are the things that the LORD has commanded you to do:" + }, + { + "verseNum": 2, + "text": "For six days work may be done, but the seventh day shall be your holy day, a Sabbath of complete rest to the LORD. Whoever does any work on that day must be put to death." + }, + { + "verseNum": 3, + "text": "Do not light a fire in any of your dwellings on the Sabbath day.”" + }, + { + "verseNum": 4, + "text": "Moses also told the whole congregation of Israel, “This is what the LORD has commanded:" + }, + { + "verseNum": 5, + "text": "Take from among you an offering to the LORD. Let everyone whose heart is willing bring an offering to the LORD:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 6, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 7, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 8, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 9, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 10, + "text": "Let every skilled craftsman among you come and make everything that the LORD has commanded:" + }, + { + "verseNum": 11, + "text": "the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, and bases;" + }, + { + "verseNum": 12, + "text": "the ark with its poles and mercy seat, and the veil to shield it;" + }, + { + "verseNum": 13, + "text": "the table with its poles, all its utensils, and the Bread of the Presence;" + }, + { + "verseNum": 14, + "text": "the lampstand for light with its accessories and lamps and oil for the light;" + }, + { + "verseNum": 15, + "text": "the altar of incense with its poles;\n \n the anointing oil and fragrant incense;\n \n the curtain for the doorway at the entrance to the tabernacle;" + }, + { + "verseNum": 16, + "text": "the altar of burnt offering with its bronze grate, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 17, + "text": "the curtains of the courtyard with its posts and bases, and the curtain for the gate of the courtyard;" + }, + { + "verseNum": 18, + "text": "the tent pegs for the tabernacle and for the courtyard, along with their ropes;" + }, + { + "verseNum": 19, + "text": "and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.”" + }, + { + "verseNum": 20, + "text": "Then the whole congregation of Israel withdrew from the presence of Moses." + }, + { + "verseNum": 21, + "text": "And everyone whose heart stirred him and whose spirit prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for all its services, and for the holy garments." + }, + { + "verseNum": 22, + "text": "So all who had willing hearts, both men and women, came and brought brooches and earrings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a wave offering to the LORD." + }, + { + "verseNum": 23, + "text": "Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them." + }, + { + "verseNum": 24, + "text": "And all who could present an offering of silver or bronze brought it as a contribution to the LORD. Also, everyone who had acacia wood for any part of the service brought it." + }, + { + "verseNum": 25, + "text": "Every skilled woman spun with her hands and brought what she had spun: blue, purple, or scarlet yarn, or fine linen." + }, + { + "verseNum": 26, + "text": "And all the skilled women whose hearts were stirred spun the goat hair." + }, + { + "verseNum": 27, + "text": "The leaders brought onyx stones and gemstones to mount on the ephod and breastpiece," + }, + { + "verseNum": 28, + "text": "as well as spices and olive oil for the light, for the anointing oil, and for the fragrant incense." + }, + { + "verseNum": 29, + "text": "So all the men and women of the Israelites whose hearts prompted them brought a freewill offering to the LORD for all the work that the LORD through Moses had commanded them to do." + }, + { + "verseNum": 30, + "text": "Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 31, + "text": "And He has filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 32, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 33, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every artistic craft." + }, + { + "verseNum": 34, + "text": "And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others." + }, + { + "verseNum": 35, + "text": "He has filled them with skill to do all kinds of work as engravers, designers, embroiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-36.json b/data/en_bible/BSB/EXO/chapter-36.json new file mode 100644 index 0000000..4c5b6a8 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-36.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“So Bezalel, Oholiab, and every skilled person are to carry out everything commanded by the LORD, who has given them skill and ability to know how to perform all the work of constructing the sanctuary.”" + }, + { + "verseNum": 2, + "text": "Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had gifted—everyone whose heart stirred him to come and do the work." + }, + { + "verseNum": 3, + "text": "They received from Moses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary.\n \nMeanwhile, the people continued to bring freewill offerings morning after morning," + }, + { + "verseNum": 4, + "text": "so that all the skilled craftsmen who were doing all the work on the sanctuary left their work" + }, + { + "verseNum": 5, + "text": "and said to Moses, “The people are bringing more than enough for doing the work the LORD has commanded us to do.”" + }, + { + "verseNum": 6, + "text": "After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were restrained from bringing more," + }, + { + "verseNum": 7, + "text": "since what they already had was more than enough to perform all the work." + }, + { + "verseNum": 8, + "text": "All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully worked into them." + }, + { + "verseNum": 9, + "text": "Each curtain was twenty-eight cubits long and four cubits wide; all the curtains were the same size." + }, + { + "verseNum": 10, + "text": "And he joined five of the curtains together, and the other five he joined as well." + }, + { + "verseNum": 11, + "text": "He made loops of blue material on the edge of the end curtain in the first set, and also on the end curtain in the second set." + }, + { + "verseNum": 12, + "text": "He made fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined up opposite one another." + }, + { + "verseNum": 13, + "text": "He also made fifty gold clasps to join the curtains together, so that the tabernacle was a unit." + }, + { + "verseNum": 14, + "text": "He then made curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 15, + "text": "Each of the eleven curtains was the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 16, + "text": "He joined five of the curtains into one set and the other six into another." + }, + { + "verseNum": 17, + "text": "He made fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 18, + "text": "He also made fifty bronze clasps to join the tent together as a unit." + }, + { + "verseNum": 19, + "text": "Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 20, + "text": "Next, he constructed upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 21, + "text": "Each frame was ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 22, + "text": "Two tenons were connected to each other for each frame. He made all the frames of the tabernacle in this way." + }, + { + "verseNum": 23, + "text": "He constructed twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 24, + "text": "with forty silver bases to put under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 25, + "text": "For the second side of the tabernacle, the north side, he made twenty frames" + }, + { + "verseNum": 26, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 27, + "text": "He made six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 28, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 29, + "text": "coupled together from bottom to top and fitted into a single ring. He made both corners in this way." + }, + { + "verseNum": 30, + "text": "So there were eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 31, + "text": "He also made five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 32, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 33, + "text": "He made the central crossbar to run through the center of the frames, from one end to the other." + }, + { + "verseNum": 34, + "text": "And he overlaid the frames with gold and made gold rings to hold the crossbars. He also overlaid the crossbars with gold." + }, + { + "verseNum": 35, + "text": "Next, he made the veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 36, + "text": "He also made four posts of acacia wood for it and overlaid them with gold, along with gold hooks; and he cast four silver bases for the posts." + }, + { + "verseNum": 37, + "text": "For the entrance to the tent, he made a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen," + }, + { + "verseNum": 38, + "text": "together with five posts and their hooks.\n \nHe overlaid the tops of the posts and their bands with gold, and their five bases were bronze." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-37.json b/data/en_bible/BSB/EXO/chapter-37.json new file mode 100644 index 0000000..3bdd5f5 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-37.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel went on to construct the ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 2, + "text": "He overlaid it with pure gold, both inside and out, and made a gold molding around it." + }, + { + "verseNum": 3, + "text": "And he cast four gold rings for its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 4, + "text": "Then he made poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 5, + "text": "He inserted the poles into the rings on the sides of the ark in order to carry it." + }, + { + "verseNum": 6, + "text": "He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 7, + "text": "He made two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 8, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 9, + "text": "And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking toward the mercy seat." + }, + { + "verseNum": 10, + "text": "He also made the table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "He overlaid it with pure gold and made a gold molding around it." + }, + { + "verseNum": 12, + "text": "And he made a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 13, + "text": "He cast four gold rings for the table and fastened them to the four corners at its four legs." + }, + { + "verseNum": 14, + "text": "The rings were placed close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 15, + "text": "He made the poles of acacia wood for carrying the table and overlaid them with gold." + }, + { + "verseNum": 16, + "text": "He also made the utensils for the table out of pure gold: its plates and dishes, as well as its bowls and pitchers for pouring drink offerings." + }, + { + "verseNum": 17, + "text": "Then he made the lampstand out of pure hammered gold, all of one piece: its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 18, + "text": "Six branches extended from the sides, three on one side and three on the other." + }, + { + "verseNum": 19, + "text": "There were three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extended from the lampstand." + }, + { + "verseNum": 20, + "text": "And on the lampstand were four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 21, + "text": "A bud was under the first pair of branches that extended from the lampstand, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 22, + "text": "The buds and branches were all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 23, + "text": "He also made its seven lamps, its wick trimmers, and trays of pure gold." + }, + { + "verseNum": 24, + "text": "He made the lampstand and all its utensils from a talent of pure gold." + }, + { + "verseNum": 25, + "text": "He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, and two cubits high. Its horns were of one piece." + }, + { + "verseNum": 26, + "text": "And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of gold around it." + }, + { + "verseNum": 27, + "text": "He made two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 28, + "text": "And he made the poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 29, + "text": "He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-38.json b/data/en_bible/BSB/EXO/chapter-38.json new file mode 100644 index 0000000..77ac9ed --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-38.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "He made a horn at each of its four corners, so that the horns and altar were of one piece, and he overlaid the altar with bronze." + }, + { + "verseNum": 3, + "text": "He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and firepans." + }, + { + "verseNum": 4, + "text": "He made a grate of bronze mesh for the altar under its ledge, halfway up from the bottom." + }, + { + "verseNum": 5, + "text": "At the four corners of the bronze grate he cast four rings as holders for the poles." + }, + { + "verseNum": 6, + "text": "And he made the poles of acacia wood and overlaid them with bronze." + }, + { + "verseNum": 7, + "text": "Then he inserted the poles into the rings on the sides of the altar for carrying it. He made the altar with boards so that it was hollow." + }, + { + "verseNum": 8, + "text": "Next he made the bronze basin and its stand from the mirrors of the women who served at the entrance to the Tent of Meeting." + }, + { + "verseNum": 9, + "text": "Then he constructed the courtyard. The south side of the courtyard was a hundred cubits long and had curtains of finely spun linen," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "The north side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 12, + "text": "The west side was fifty cubits long and had curtains, with ten posts and ten bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 13, + "text": "And the east side, toward the sunrise, was also fifty cubits long." + }, + { + "verseNum": 14, + "text": "The curtains on one side of the entrance were fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 15, + "text": "And the curtains on the other side were also fifteen cubits long, with three posts and three bases as well." + }, + { + "verseNum": 16, + "text": "All the curtains around the courtyard were made of finely spun linen." + }, + { + "verseNum": 17, + "text": "The bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of the posts was silver. So all the posts of the courtyard were banded with silver." + }, + { + "verseNum": 18, + "text": "The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits long and, like the curtains of the courtyard, five cubits high," + }, + { + "verseNum": 19, + "text": "with four posts and four bronze bases. Their hooks were silver, as well as the bands and the plating of their tops." + }, + { + "verseNum": 20, + "text": "All the tent pegs for the tabernacle and for the surrounding courtyard were bronze." + }, + { + "verseNum": 21, + "text": "This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Moses’ command by the Levites under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 22, + "text": "Bezalel son of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Moses." + }, + { + "verseNum": 23, + "text": "With him was Oholiab son of Ahisamach, of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and fine linen." + }, + { + "verseNum": 24, + "text": "All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 25, + "text": "The silver from those numbered among the congregation totaled 100 talents and 1,775 shekels, according to the sanctuary shekel—" + }, + { + "verseNum": 26, + "text": "a beka per person, that is, half a shekel, according to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be numbered, a total of 603,550 men." + }, + { + "verseNum": 27, + "text": "The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one talent per base." + }, + { + "verseNum": 28, + "text": "With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and supplied bands for them." + }, + { + "verseNum": 29, + "text": "The bronze from the wave offering totaled 70 talents and 2,400 shekels." + }, + { + "verseNum": 30, + "text": "He used it to make the bases for the entrance to the Tent of Meeting, the bronze altar and its bronze grating, all the utensils for the altar," + }, + { + "verseNum": 31, + "text": "the bases for the surrounding courtyard and its gate, and all the tent pegs for the tabernacle and its surrounding courtyard." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-39.json b/data/en_bible/BSB/EXO/chapter-39.json new file mode 100644 index 0000000..5d86c0a --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-39.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy garments for Aaron, just as the LORD had commanded Moses." + }, + { + "verseNum": 2, + "text": "Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 3, + "text": "They hammered out thin sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled craftsman." + }, + { + "verseNum": 4, + "text": "They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened." + }, + { + "verseNum": 5, + "text": "And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had commanded Moses." + }, + { + "verseNum": 6, + "text": "They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of the sons of Israel." + }, + { + "verseNum": 7, + "text": "Then they fastened them on the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had commanded Moses." + }, + { + "verseNum": 8, + "text": "He made the breastpiece with the same workmanship as the ephod, with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "It was square when folded over double, a span long and a span wide." + }, + { + "verseNum": 10, + "text": "And they mounted on it four rows of gemstones:\n \n The first row had a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 11, + "text": "the second row had a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 12, + "text": "the third row had a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 13, + "text": "and the fourth row had a beryl, an onyx, and a jasper.\n \nThese stones were mounted in gold filigree settings." + }, + { + "verseNum": 14, + "text": "The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 15, + "text": "For the breastpiece they made braided chains like cords of pure gold." + }, + { + "verseNum": 16, + "text": "They also made two gold filigree settings and two gold rings, and fastened the two rings to the two corners of the breastpiece." + }, + { + "verseNum": 17, + "text": "Then they fastened the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 18, + "text": "and they fastened the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 19, + "text": "They made two more gold rings and attached them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 20, + "text": "They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam just above its woven waistband." + }, + { + "verseNum": 21, + "text": "Then they tied the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "They made the robe of the ephod entirely of blue cloth, the work of a weaver," + }, + { + "verseNum": 23, + "text": "with an opening in the center of the robe like that of a garment, with a collar around the opening so that it would not tear." + }, + { + "verseNum": 24, + "text": "They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower hem of the robe." + }, + { + "verseNum": 25, + "text": "They also made bells of pure gold and attached them around the hem between the pomegranates," + }, + { + "verseNum": 26, + "text": "alternating the bells and pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had commanded Moses." + }, + { + "verseNum": 27, + "text": "For Aaron and his sons they made tunics of fine linen, the work of a weaver," + }, + { + "verseNum": 28, + "text": "as well as the turban of fine linen, the ornate headbands and undergarments of finely spun linen," + }, + { + "verseNum": 29, + "text": "and the sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "They also made the plate of the holy crown of pure gold, and they engraved on it, like an inscription on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 31, + "text": "Then they fastened to it a blue cord to mount it on the turban, just as the LORD had commanded Moses." + }, + { + "verseNum": 32, + "text": "So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did everything just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "Then they brought the tabernacle to Moses:\n \n the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and bases;" + }, + { + "verseNum": 34, + "text": "the covering of ram skins dyed red, the covering of fine leather, and the veil of the covering;" + }, + { + "verseNum": 35, + "text": "the ark of the Testimony with its poles and the mercy seat;" + }, + { + "verseNum": 36, + "text": "the table with all its utensils and the Bread of the Presence;" + }, + { + "verseNum": 37, + "text": "the pure gold lampstand with its row of lamps and all its utensils, as well as the oil for the light;" + }, + { + "verseNum": 38, + "text": "the gold altar, the anointing oil, the fragrant incense, and the curtain for the entrance to the tent;" + }, + { + "verseNum": 39, + "text": "the bronze altar with its bronze grating, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 40, + "text": "the curtains of the courtyard with its posts and bases;\n \n the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of Meeting;" + }, + { + "verseNum": 41, + "text": "and the woven garments for ministering in the sanctuary, both the holy garments for Aaron the priest and the garments for his sons to serve as priests." + }, + { + "verseNum": 42, + "text": "The Israelites had done all the work just as the LORD had commanded Moses." + }, + { + "verseNum": 43, + "text": "And Moses inspected all the work and saw that they had accomplished it just as the LORD had commanded. So Moses blessed them." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-4.json b/data/en_bible/BSB/EXO/chapter-4.json new file mode 100644 index 0000000..2bab838 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-4.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses answered, “What if they do not believe me or listen to my voice? For they may say, ‘The LORD has not appeared to you.’”" + }, + { + "verseNum": 2, + "text": "And the LORD asked him, “What is that in your hand?”\n \n“A staff,” he replied." + }, + { + "verseNum": 3, + "text": "“Throw it on the ground,” said the LORD. So Moses threw it on the ground, and it became a snake, and he ran from it." + }, + { + "verseNum": 4, + "text": "“Stretch out your hand and grab it by the tail,” the LORD said to Moses, who reached out his hand and caught the snake, and it turned back into a staff in his hand." + }, + { + "verseNum": 5, + "text": "“This is so that they may believe that the LORD, the God of their fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has appeared to you.”" + }, + { + "verseNum": 6, + "text": "Furthermore, the LORD said to Moses, “Put your hand inside your cloak.” So he put his hand inside his cloak, and when he took it out, his hand was leprous, white as snow." + }, + { + "verseNum": 7, + "text": "“Put your hand back inside your cloak,” said the LORD.\n \nSo Moses put his hand back inside his cloak, and when he took it out, it was restored, like the rest of his skin." + }, + { + "verseNum": 8, + "text": "And the LORD said, “If they refuse to believe you or heed the witness of the first sign, they may believe that of the second." + }, + { + "verseNum": 9, + "text": "But if they do not believe even these two signs or listen to your voice, take some water from the Nile and pour it on the dry ground. Then the water you take from the Nile will become blood on the ground.”" + }, + { + "verseNum": 10, + "text": "“Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of speech and tongue.”" + }, + { + "verseNum": 11, + "text": "And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD?" + }, + { + "verseNum": 12, + "text": "Now go! I will help you as you speak, and I will teach you what to say.”" + }, + { + "verseNum": 13, + "text": "But Moses replied, “Please, Lord, send someone else.”" + }, + { + "verseNum": 14, + "text": "Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart." + }, + { + "verseNum": 15, + "text": "You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do." + }, + { + "verseNum": 16, + "text": "He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him." + }, + { + "verseNum": 17, + "text": "But take this staff in your hand so you can perform signs with it.”" + }, + { + "verseNum": 18, + "text": "Then Moses went back to his father-in-law Jethro and said to him, “Please let me return to my brothers in Egypt to see if they are still alive.”\n \n“Go in peace,” Jethro replied." + }, + { + "verseNum": 19, + "text": "Now the LORD had said to Moses in Midian, “Go back to Egypt, for all the men who sought to kill you are dead.”" + }, + { + "verseNum": 20, + "text": "So Moses took his wife and sons, put them on a donkey, and headed back to Egypt. And he took the staff of God in his hand." + }, + { + "verseNum": 21, + "text": "The LORD instructed Moses, “When you go back to Egypt, see that you perform before Pharaoh all the wonders that I have put within your power. But I will harden his heart so that he will not let the people go." + }, + { + "verseNum": 22, + "text": "Then tell Pharaoh that this is what the LORD says: ‘Israel is My firstborn son," + }, + { + "verseNum": 23, + "text": "and I told you to let My son go so that he may worship Me. But since you have refused to let him go, behold, I will kill your firstborn son!’”" + }, + { + "verseNum": 24, + "text": "Now at a lodging place along the way, the LORD met Moses and was about to kill him." + }, + { + "verseNum": 25, + "text": "But Zipporah took a flint knife, cut off her son’s foreskin, and touched it to Moses’ feet. “Surely you are a bridegroom of blood to me,” she said." + }, + { + "verseNum": 26, + "text": "So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the circumcision.)" + }, + { + "verseNum": 27, + "text": "Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed him." + }, + { + "verseNum": 28, + "text": "And Moses told Aaron everything the LORD had sent him to say, and all the signs He had commanded him to perform." + }, + { + "verseNum": 29, + "text": "Then Moses and Aaron went and assembled all the elders of the Israelites," + }, + { + "verseNum": 30, + "text": "and Aaron relayed everything the LORD had said to Moses.\n \nAnd Moses performed the signs before the people," + }, + { + "verseNum": 31, + "text": "and they believed. And when they heard that the LORD had attended to the Israelites and had seen their affliction, they bowed down and worshiped." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-40.json b/data/en_bible/BSB/EXO/chapter-40.json new file mode 100644 index 0000000..234b49b --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-40.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“On the first day of the first month you are to set up the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 3, + "text": "Put the ark of the Testimony in it and screen off the ark with the veil." + }, + { + "verseNum": 4, + "text": "Then bring in the table and set out its arrangement; bring in the lampstand as well, and set up its lamps." + }, + { + "verseNum": 5, + "text": "Place the gold altar of incense in front of the ark of the Testimony, and hang the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 6, + "text": "Place the altar of burnt offering in front of the entrance to the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 7, + "text": "And place the basin between the Tent of Meeting and the altar, and put water in it." + }, + { + "verseNum": 8, + "text": "Set up the surrounding courtyard and hang the curtain for the entrance to the courtyard." + }, + { + "verseNum": 9, + "text": "Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all its furnishings, and it shall be holy." + }, + { + "verseNum": 10, + "text": "Anoint the altar of burnt offering and all its utensils; consecrate the altar, and it shall be most holy." + }, + { + "verseNum": 11, + "text": "Anoint the basin and its stand and consecrate them." + }, + { + "verseNum": 12, + "text": "Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 13, + "text": "And you are to clothe Aaron with the holy garments, anoint him, and consecrate him, so that he may serve Me as a priest." + }, + { + "verseNum": 14, + "text": "Bring his sons forward and clothe them with tunics." + }, + { + "verseNum": 15, + "text": "Anoint them just as you anointed their father, so that they may also serve Me as priests. Their anointing will qualify them for a permanent priesthood throughout their generations.”" + }, + { + "verseNum": 16, + "text": "Moses did everything just as the LORD had commanded him." + }, + { + "verseNum": 17, + "text": "So the tabernacle was set up on the first day of the first month of the second year." + }, + { + "verseNum": 18, + "text": "When Moses set up the tabernacle, he laid its bases, positioned its frames, inserted its crossbars, and set up its posts." + }, + { + "verseNum": 19, + "text": "Then he spread the tent over the tabernacle and put the covering over the tent, just as the LORD had commanded him." + }, + { + "verseNum": 20, + "text": "Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set the mercy seat atop the ark." + }, + { + "verseNum": 21, + "text": "Then he brought the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, just as the LORD had commanded him." + }, + { + "verseNum": 22, + "text": "Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil." + }, + { + "verseNum": 23, + "text": "He arranged the bread on it before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 24, + "text": "He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle" + }, + { + "verseNum": 25, + "text": "and set up the lamps before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 26, + "text": "Moses placed the gold altar in the Tent of Meeting, in front of the veil," + }, + { + "verseNum": 27, + "text": "and he burned fragrant incense on it, just as the LORD had commanded him." + }, + { + "verseNum": 28, + "text": "Then he put up the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 29, + "text": "He placed the altar of burnt offering near the entrance to the tabernacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "He placed the basin between the Tent of Meeting and the altar and put water in it for washing;" + }, + { + "verseNum": 31, + "text": "and from it Moses, Aaron, and his sons washed their hands and feet." + }, + { + "verseNum": 32, + "text": "They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses finished the work." + }, + { + "verseNum": 34, + "text": "Then the cloud covered the Tent of Meeting, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 35, + "text": "Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 36, + "text": "Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through all the stages of their journey." + }, + { + "verseNum": 37, + "text": "If the cloud was not lifted, they would not set out until the day it was taken up." + }, + { + "verseNum": 38, + "text": "For the cloud of the LORD was over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Israel through all their journeys." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-5.json b/data/en_bible/BSB/EXO/chapter-5.json new file mode 100644 index 0000000..491448c --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-5.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After that, Moses and Aaron went to Pharaoh and said, “This is what the LORD, the God of Israel, says: ‘Let My people go, so that they may hold a feast to Me in the wilderness.’”" + }, + { + "verseNum": 2, + "text": "But Pharaoh replied, “Who is the LORD that I should obey His voice and let Israel go? I do not know the LORD, and I will not let Israel go.”" + }, + { + "verseNum": 3, + "text": "“The God of the Hebrews has met with us,” they answered. “Please let us go on a three-day journey into the wilderness to sacrifice to the LORD our God, or He may strike us with plagues or with the sword.”" + }, + { + "verseNum": 4, + "text": "But the king of Egypt said to them, “Moses and Aaron, why do you draw the people away from their work? Get back to your labor!”" + }, + { + "verseNum": 5, + "text": "Pharaoh also said, “Look, the people of the land are now numerous, and you would be stopping them from their labor.”" + }, + { + "verseNum": 6, + "text": "That same day Pharaoh commanded the taskmasters of the people and their foremen:" + }, + { + "verseNum": 7, + "text": "“You shall no longer supply the people with straw for making bricks. They must go and gather their own straw." + }, + { + "verseNum": 8, + "text": "But require of them the same quota of bricks as before; do not reduce it. For they are lazy; that is why they are crying out, ‘Let us go and sacrifice to our God.’" + }, + { + "verseNum": 9, + "text": "Make the work harder on the men so they will be occupied and pay no attention to these lies.”" + }, + { + "verseNum": 10, + "text": "So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh says: ‘I am no longer giving you straw." + }, + { + "verseNum": 11, + "text": "Go and get your own straw wherever you can find it; but your workload will in no way be reduced.’”" + }, + { + "verseNum": 12, + "text": "So the people scattered all over the land of Egypt to gather stubble for straw." + }, + { + "verseNum": 13, + "text": "The taskmasters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was provided.”" + }, + { + "verseNum": 14, + "text": "Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you did before?”" + }, + { + "verseNum": 15, + "text": "So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way?" + }, + { + "verseNum": 16, + "text": "No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is with your own people.”" + }, + { + "verseNum": 17, + "text": "“You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sacrifice to the LORD.’" + }, + { + "verseNum": 18, + "text": "Now get to work. You will be given no straw, yet you must deliver the full quota of bricks.”" + }, + { + "verseNum": 19, + "text": "The Israelite foremen realized they were in trouble when they were told, “You must not reduce your daily quota of bricks.”" + }, + { + "verseNum": 20, + "text": "When they left Pharaoh, they confronted Moses and Aaron, who stood waiting to meet them." + }, + { + "verseNum": 21, + "text": "“May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you have placed in their hand a sword to kill us!”" + }, + { + "verseNum": 22, + "text": "So Moses returned to the LORD and asked, “Lord, why have You brought trouble upon this people? Is this why You sent me?" + }, + { + "verseNum": 23, + "text": "Ever since I went to Pharaoh to speak in Your name, he has brought trouble on this people, and You have not delivered Your people in any way.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-6.json b/data/en_bible/BSB/EXO/chapter-6.json new file mode 100644 index 0000000..3f568d6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-6.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "But the LORD said to Moses, “Now you will see what I will do to Pharaoh, for because of My mighty hand he will let the people go; because of My strong hand he will drive them out of his land.”" + }, + { + "verseNum": 2, + "text": "God also told Moses, “I am the LORD." + }, + { + "verseNum": 3, + "text": "I appeared to Abraham, to Isaac, and to Jacob as God Almighty, but by My name the LORD I did not make Myself known to them." + }, + { + "verseNum": 4, + "text": "I also established My covenant with them to give them the land of Canaan, the land where they lived as foreigners." + }, + { + "verseNum": 5, + "text": "Furthermore, I have heard the groaning of the Israelites, whom the Egyptians are enslaving, and I have remembered My covenant." + }, + { + "verseNum": 6, + "text": "Therefore tell the Israelites: ‘I am the LORD, and I will bring you out from under the yoke of the Egyptians and deliver you from their bondage. I will redeem you with an outstretched arm and with mighty acts of judgment." + }, + { + "verseNum": 7, + "text": "I will take you as My own people, and I will be your God. Then you will know that I am the LORD your God, who brought you out from under the yoke of the Egyptians." + }, + { + "verseNum": 8, + "text": "And I will bring you into the land that I swore to give to Abraham, Isaac, and Jacob. I will give it to you as a possession. I am the LORD!’”" + }, + { + "verseNum": 9, + "text": "Moses relayed this message to the Israelites, but on account of their broken spirit and cruel bondage, they did not listen to him." + }, + { + "verseNum": 10, + "text": "So the LORD said to Moses," + }, + { + "verseNum": 11, + "text": "“Go and tell Pharaoh king of Egypt to let the Israelites go out of his land.”" + }, + { + "verseNum": 12, + "text": "But in the LORD’s presence Moses replied, “If the Israelites will not listen to me, then why would Pharaoh listen to me, since I am unskilled in speech?”" + }, + { + "verseNum": 13, + "text": "Then the LORD spoke to Moses and Aaron and gave them a charge concerning both the Israelites and Pharaoh king of Egypt, to bring the Israelites out of the land of Egypt." + }, + { + "verseNum": 14, + "text": "These were the heads of their fathers’ houses:\n \n The sons of Reuben, the firstborn of Israel, were Hanoch and Pallu, Hezron and Carmi. These were the clans of Reuben." + }, + { + "verseNum": 15, + "text": "The sons of Simeon were Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman. These were the clans of Simeon." + }, + { + "verseNum": 16, + "text": "These were the names of the sons of Levi according to their records: Gershon, Kohath, and Merari. Levi lived 137 years." + }, + { + "verseNum": 17, + "text": "The sons of Gershon were Libni and Shimei, by their clans." + }, + { + "verseNum": 18, + "text": "The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. Kohath lived 133 years." + }, + { + "verseNum": 19, + "text": "The sons of Merari were Mahli and Mushi.\n \n These were the clans of the Levites according to their records." + }, + { + "verseNum": 20, + "text": "And Amram married his father’s sister Jochebed, and she bore him Aaron and Moses. Amram lived 137 years." + }, + { + "verseNum": 21, + "text": "The sons of Izhar were Korah, Nepheg, and Zichri." + }, + { + "verseNum": 22, + "text": "The sons of Uzziel were Mishael, Elzaphan, and Sithri." + }, + { + "verseNum": 23, + "text": "And Aaron married Elisheba, the daughter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar and Ithamar." + }, + { + "verseNum": 24, + "text": "The sons of Korah were Assir, Elkanah, and Abiasaph. These were the clans of the Korahites." + }, + { + "verseNum": 25, + "text": "Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas.\n \n These were the heads of the Levite families by their clans." + }, + { + "verseNum": 26, + "text": "It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.”" + }, + { + "verseNum": 27, + "text": "Moses and Aaron were the ones who spoke to Pharaoh king of Egypt in order to bring the Israelites out of Egypt." + }, + { + "verseNum": 28, + "text": "Now on the day that the LORD spoke to Moses in Egypt," + }, + { + "verseNum": 29, + "text": "He said to him, “I am the LORD; tell Pharaoh king of Egypt everything I say to you.”" + }, + { + "verseNum": 30, + "text": "But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would Pharaoh listen to me?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-7.json b/data/en_bible/BSB/EXO/chapter-7.json new file mode 100644 index 0000000..a6723f6 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-7.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The LORD answered Moses, “See, I have made you like God to Pharaoh, and your brother Aaron will be your prophet." + }, + { + "verseNum": 2, + "text": "You are to speak all that I command you, and your brother Aaron is to tell Pharaoh to let the Israelites go out of his land." + }, + { + "verseNum": 3, + "text": "But I will harden Pharaoh’s heart, and though I will multiply My signs and wonders in the land of Egypt," + }, + { + "verseNum": 4, + "text": "Pharaoh will not listen to you.\n \nThen I will lay My hand on Egypt, and by mighty acts of judgment I will bring the divisions of My people the Israelites out of the land of Egypt." + }, + { + "verseNum": 5, + "text": "And the Egyptians will know that I am the LORD, when I stretch out My hand against Egypt and bring the Israelites out from among them.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron did just as the LORD had commanded them." + }, + { + "verseNum": 7, + "text": "Moses was eighty years old and Aaron was eighty-three when they spoke to Pharaoh." + }, + { + "verseNum": 8, + "text": "The LORD said to Moses and Aaron," + }, + { + "verseNum": 9, + "text": "“When Pharaoh tells you, ‘Perform a miracle,’ you are to say to Aaron, ‘Take your staff and throw it down before Pharaoh,’ and it will become a serpent.”" + }, + { + "verseNum": 10, + "text": "So Moses and Aaron went to Pharaoh and did just as the LORD had commanded. Aaron threw his staff down before Pharaoh and his officials, and it became a serpent." + }, + { + "verseNum": 11, + "text": "But Pharaoh called the wise men and sorcerers and magicians of Egypt, and they also did the same things by their magic arts." + }, + { + "verseNum": 12, + "text": "Each one threw down his staff, and it became a serpent. But Aaron’s staff swallowed up the other staffs." + }, + { + "verseNum": 13, + "text": "Still, Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Pharaoh’s heart is unyielding; he refuses to let the people go." + }, + { + "verseNum": 15, + "text": "Go to Pharaoh in the morning as you see him walking out to the water. Wait on the bank of the Nile to meet him, and take in your hand the staff that was changed into a snake." + }, + { + "verseNum": 16, + "text": "Then say to him, ‘The LORD, the God of the Hebrews, has sent me to tell you: Let My people go, so that they may worship Me in the wilderness. But you have not listened until now." + }, + { + "verseNum": 17, + "text": "This is what the LORD says: By this you will know that I am the LORD. Behold, with the staff in my hand I will strike the water of the Nile, and it will turn to blood." + }, + { + "verseNum": 18, + "text": "The fish in the Nile will die, the river will stink, and the Egyptians will be unable to drink its water.’”" + }, + { + "verseNum": 19, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the waters of Egypt—over their rivers and canals and ponds and reservoirs—that they may become blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and stone.”" + }, + { + "verseNum": 20, + "text": "Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to blood." + }, + { + "verseNum": 21, + "text": "The fish in the Nile died, and the river smelled so bad that the Egyptians could not drink its water. And there was blood throughout the land of Egypt." + }, + { + "verseNum": 22, + "text": "But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hardened, and he would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 23, + "text": "Instead, Pharaoh turned around, went into his palace, and did not take any of this to heart." + }, + { + "verseNum": 24, + "text": "So all the Egyptians dug around the Nile for water to drink, because they could not drink the water from the river." + }, + { + "verseNum": 25, + "text": "And seven full days passed after the LORD had struck the Nile." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-8.json b/data/en_bible/BSB/EXO/chapter-8.json new file mode 100644 index 0000000..b83cdf0 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-8.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you refuse to let them go, I will plague your whole country with frogs." + }, + { + "verseNum": 3, + "text": "The Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your officials and your people, and into your ovens and kneading bowls." + }, + { + "verseNum": 4, + "text": "The frogs will come up on you and your people and all your officials.’”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Stretch out your hand with your staff over the rivers and canals and ponds, and cause the frogs to come up onto the land of Egypt.’”" + }, + { + "verseNum": 6, + "text": "So Aaron stretched out his hand over the waters of Egypt, and the frogs came up and covered the land of Egypt." + }, + { + "verseNum": 7, + "text": "But the magicians did the same thing by their magic arts, and they also brought frogs up onto the land of Egypt." + }, + { + "verseNum": 8, + "text": "Pharaoh summoned Moses and Aaron and said, “Pray to the LORD to take the frogs away from me and my people. Then I will let your people go, that they may sacrifice to the LORD.”" + }, + { + "verseNum": 9, + "text": "Moses said to Pharaoh, “You may have the honor over me. When shall I pray for you and your officials and your people that the frogs (except for those in the Nile) may be taken away from you and your houses?”" + }, + { + "verseNum": 10, + "text": "“Tomorrow,” Pharaoh answered.\n \n“May it be as you say,” Moses replied, “so that you may know that there is no one like the LORD our God." + }, + { + "verseNum": 11, + "text": "The frogs will depart from you and your houses and your officials and your people; they will remain only in the Nile.”" + }, + { + "verseNum": 12, + "text": "After Moses and Aaron had left Pharaoh, Moses cried out to the LORD for help with the frogs that He had brought against Pharaoh." + }, + { + "verseNum": 13, + "text": "And the LORD did as Moses requested, and the frogs in the houses, the courtyards, and the fields died." + }, + { + "verseNum": 14, + "text": "They were piled into countless heaps, and there was a terrible stench in the land." + }, + { + "verseNum": 15, + "text": "When Pharaoh saw that there was relief, however, he hardened his heart and would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses, “Tell Aaron, ‘Stretch out your staff and strike the dust of the earth, that it may turn into swarms of gnats throughout the land of Egypt.’”" + }, + { + "verseNum": 17, + "text": "This they did, and when Aaron stretched out his hand with his staff and struck the dust of the earth, gnats came upon man and beast. All the dust of the earth turned into gnats throughout the land of Egypt." + }, + { + "verseNum": 18, + "text": "The magicians tried to produce gnats using their magic arts, but they could not. And the gnats remained on man and beast." + }, + { + "verseNum": 19, + "text": "“This is the finger of God,” the magicians said to Pharaoh. But Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 20, + "text": "Then the LORD said to Moses, “Get up early in the morning, and when Pharaoh goes out to the water, stand before him and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 21, + "text": "But if you will not let My people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the ground where they stand will be full of flies." + }, + { + "verseNum": 22, + "text": "But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way you will know that I, the LORD, am in the land." + }, + { + "verseNum": 23, + "text": "I will make a distinction between My people and your people. This sign will take place tomorrow.’”" + }, + { + "verseNum": 24, + "text": "And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was ruined by swarms of flies." + }, + { + "verseNum": 25, + "text": "Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this land.”" + }, + { + "verseNum": 26, + "text": "But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us?" + }, + { + "verseNum": 27, + "text": "We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He commands us.”" + }, + { + "verseNum": 28, + "text": "Pharaoh answered, “I will let you go and sacrifice to the LORD your God in the wilderness, but you must not go very far. Now pray for me.”" + }, + { + "verseNum": 29, + "text": "“As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and his people. But Pharaoh must not act deceitfully again by refusing to let the people go and sacrifice to the LORD.”" + }, + { + "verseNum": 30, + "text": "Then Moses left Pharaoh and prayed to the LORD," + }, + { + "verseNum": 31, + "text": "and the LORD did as Moses requested. He removed the swarms of flies from Pharaoh and his officials and his people; not one fly remained." + }, + { + "verseNum": 32, + "text": "But Pharaoh hardened his heart this time as well, and he would not let the people go." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-9.json b/data/en_bible/BSB/EXO/chapter-9.json new file mode 100644 index 0000000..81b53d7 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-9.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you continue to restrain them and refuse to let them go," + }, + { + "verseNum": 3, + "text": "then the hand of the LORD will bring a severe plague on your livestock in the field—on your horses, donkeys, camels, herds, and flocks." + }, + { + "verseNum": 4, + "text": "But the LORD will make a distinction between the livestock of Israel and the livestock of Egypt, so that no animal belonging to the Israelites will die.’”" + }, + { + "verseNum": 5, + "text": "The LORD set a time, saying, “Tomorrow the LORD will do this in the land.”" + }, + { + "verseNum": 6, + "text": "And the next day the LORD did just that. All the livestock of the Egyptians died, but not one animal belonging to the Israelites died." + }, + { + "verseNum": 7, + "text": "Pharaoh sent officials and found that none of the livestock of the Israelites had died. But Pharaoh’s heart was hardened, and he would not let the people go." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses and Aaron, “Take handfuls of soot from the furnace; in the sight of Pharaoh, Moses is to toss it into the air." + }, + { + "verseNum": 9, + "text": "It will become fine dust over all the land of Egypt, and festering boils will break out on man and beast throughout the land.”" + }, + { + "verseNum": 10, + "text": "So they took soot from the furnace and stood before Pharaoh. Moses tossed it into the air, and festering boils broke out on man and beast." + }, + { + "verseNum": 11, + "text": "The magicians could not stand before Moses, because the boils had broken out on them and on all the Egyptians." + }, + { + "verseNum": 12, + "text": "But the LORD hardened Pharaoh’s heart, and he would not listen to them, just as the LORD had said to Moses." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses, “Get up early in the morning, stand before Pharaoh, and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 14, + "text": "Otherwise, I will send all My plagues against you and your officials and your people, so you may know that there is no one like Me in all the earth." + }, + { + "verseNum": 15, + "text": "For by this time I could have stretched out My hand and struck you and your people with a plague to wipe you off the earth." + }, + { + "verseNum": 16, + "text": "But I have raised you up for this very purpose, that I might display My power to you, and that My name might be proclaimed in all the earth." + }, + { + "verseNum": 17, + "text": "Still, you lord it over My people and do not allow them to go." + }, + { + "verseNum": 18, + "text": "Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from the day it was founded until now." + }, + { + "verseNum": 19, + "text": "So give orders now to shelter your livestock and everything you have in the field. Every man or beast that remains in the field and is not brought inside will die when the hail comes down upon them.’”" + }, + { + "verseNum": 20, + "text": "Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter," + }, + { + "verseNum": 21, + "text": "but those who disregarded the word of the LORD left their servants and livestock in the field." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of Egypt.”" + }, + { + "verseNum": 23, + "text": "So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained down hail upon the land of Egypt." + }, + { + "verseNum": 24, + "text": "The hail fell and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the time it became a nation." + }, + { + "verseNum": 25, + "text": "Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and stripped every tree." + }, + { + "verseNum": 26, + "text": "The only place where it did not hail was in the land of Goshen, where the Israelites lived." + }, + { + "verseNum": 27, + "text": "Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is righteous, and I and my people are wicked." + }, + { + "verseNum": 28, + "text": "Pray to the LORD, for there has been enough of God’s thunder and hail. I will let you go; you do not need to stay any longer.”" + }, + { + "verseNum": 29, + "text": "Moses said to him, “When I have left the city, I will spread out my hands to the LORD. The thunder will cease, and there will be no more hail, so that you may know that the earth is the LORD’s." + }, + { + "verseNum": 30, + "text": "But as for you and your officials, I know that you still do not fear the LORD our God.”" + }, + { + "verseNum": 31, + "text": "(Now the flax and barley were destroyed, since the barley was ripe and the flax was in bloom;" + }, + { + "verseNum": 32, + "text": "but the wheat and spelt were not destroyed, because they are late crops.)" + }, + { + "verseNum": 33, + "text": "Then Moses departed from Pharaoh, went out of the city, and spread out his hands to the LORD. The thunder and hail ceased, and the rain no longer poured down on the land." + }, + { + "verseNum": 34, + "text": "When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials." + }, + { + "verseNum": 35, + "text": "So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said through Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/EXO/chapter-intro.json b/data/en_bible/BSB/EXO/chapter-intro.json new file mode 100644 index 0000000..6ffe584 --- /dev/null +++ b/data/en_bible/BSB/EXO/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Exodus" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-1.json b/data/en_bible/BSB/GEN/chapter-1.json new file mode 100644 index 0000000..9bf2df4 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-1.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In the beginning God created the heavens and the earth." + }, + { + "verseNum": 2, + "text": "Now the earth was formless and void, and darkness was over the surface of the deep. And the Spirit of God was hovering over the surface of the waters." + }, + { + "verseNum": 3, + "text": "And God said, “Let there be light,” and there was light." + }, + { + "verseNum": 4, + "text": "And God saw that the light was good, and He separated the light from the darkness." + }, + { + "verseNum": 5, + "text": "God called the light “day,” and the darkness He called “night.”\n \n And there was evening, and there was morning—the first day." + }, + { + "verseNum": 6, + "text": "And God said, “Let there be an expanse between the waters, to separate the waters from the waters.”" + }, + { + "verseNum": 7, + "text": "So God made the expanse and separated the waters beneath it from the waters above. And it was so." + }, + { + "verseNum": 8, + "text": "God called the expanse “sky.”\n \n And there was evening, and there was morning—the second day." + }, + { + "verseNum": 9, + "text": "And God said, “Let the waters under the sky be gathered into one place, so that the dry land may appear.” And it was so." + }, + { + "verseNum": 10, + "text": "God called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that it was good." + }, + { + "verseNum": 11, + "text": "Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according to its kind.” And it was so." + }, + { + "verseNum": 12, + "text": "The earth produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And God saw that it was good." + }, + { + "verseNum": 13, + "text": "And there was evening, and there was morning—the third day." + }, + { + "verseNum": 14, + "text": "And God said, “Let there be lights in the expanse of the sky to distinguish between the day and the night, and let them be signs to mark the seasons and days and years." + }, + { + "verseNum": 15, + "text": "And let them serve as lights in the expanse of the sky to shine upon the earth.” And it was so." + }, + { + "verseNum": 16, + "text": "God made two great lights: the greater light to rule the day and the lesser light to rule the night. And He made the stars as well." + }, + { + "verseNum": 17, + "text": "God set these lights in the expanse of the sky to shine upon the earth," + }, + { + "verseNum": 18, + "text": "to preside over the day and the night, and to separate the light from the darkness. And God saw that it was good." + }, + { + "verseNum": 19, + "text": "And there was evening, and there was morning—the fourth day." + }, + { + "verseNum": 20, + "text": "And God said, “Let the waters teem with living creatures, and let birds fly above the earth in the open expanse of the sky.”" + }, + { + "verseNum": 21, + "text": "So God created the great sea creatures and every living thing that moves, with which the waters teemed according to their kinds, and every bird of flight after its kind. And God saw that it was good." + }, + { + "verseNum": 22, + "text": "Then God blessed them and said, “Be fruitful and multiply and fill the waters of the seas, and let birds multiply on the earth.”" + }, + { + "verseNum": 23, + "text": "And there was evening, and there was morning—the fifth day." + }, + { + "verseNum": 24, + "text": "And God said, “Let the earth bring forth living creatures according to their kinds: livestock, land crawlers, and beasts of the earth according to their kinds.” And it was so." + }, + { + "verseNum": 25, + "text": "God made the beasts of the earth according to their kinds, the livestock according to their kinds, and everything that crawls upon the earth according to its kind. And God saw that it was good." + }, + { + "verseNum": 26, + "text": "Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the livestock, and over all the earth itself and every creature that crawls upon it.”" + }, + { + "verseNum": 27, + "text": "So God created man in His own image;\n in the image of God He created him;\n male and female He created them." + }, + { + "verseNum": 28, + "text": "God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that crawls upon the earth.”" + }, + { + "verseNum": 29, + "text": "Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains seed. They will be yours for food." + }, + { + "verseNum": 30, + "text": "And to every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for food.” And it was so." + }, + { + "verseNum": 31, + "text": "And God looked upon all that He had made, and indeed, it was very good.\n \n And there was evening, and there was morning—the sixth day." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-10.json b/data/en_bible/BSB/GEN/chapter-10.json new file mode 100644 index 0000000..cb9920f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-10.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Noah’s sons Shem, Ham, and Japheth, who also had sons after the flood." + }, + { + "verseNum": 2, + "text": "The sons of Japheth:\n \n Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras." + }, + { + "verseNum": 3, + "text": "The sons of Gomer:\n \n Ashkenaz, Riphath, and Togarmah." + }, + { + "verseNum": 4, + "text": "And the sons of Javan:\n \n Elishah, Tarshish, the Kittites, and the Rodanites." + }, + { + "verseNum": 5, + "text": "From these, the maritime peoples separated into their territories, according to their languages, by clans within their nations." + }, + { + "verseNum": 6, + "text": "The sons of Ham:\n \n Cush, Mizraim, Put, and Canaan." + }, + { + "verseNum": 7, + "text": "The sons of Cush:\n \n Seba, Havilah, Sabtah, Raamah, and Sabteca.\n \nAnd the sons of Raamah:\n \n Sheba and Dedan." + }, + { + "verseNum": 8, + "text": "Cush was the father of Nimrod, who began to be a mighty one on the earth." + }, + { + "verseNum": 9, + "text": "He was a mighty hunter before the LORD; so it is said, “Like Nimrod, a mighty hunter before the LORD.”" + }, + { + "verseNum": 10, + "text": "His kingdom began in Babylon, Erech, Accad, and Calneh, in the land of Shinar." + }, + { + "verseNum": 11, + "text": "From that land he went forth into Assyria, where he built Nineveh, Rehoboth-Ir, Calah," + }, + { + "verseNum": 12, + "text": "and Resen, which is between Nineveh and the great city of Calah." + }, + { + "verseNum": 13, + "text": "Mizraim was the father of the Ludites, the Anamites, the Lehabites, the Naphtuhites," + }, + { + "verseNum": 14, + "text": "the Pathrusites, the Casluhites (from whom the Philistines came), and the Caphtorites." + }, + { + "verseNum": 15, + "text": "And Canaan was the father of Sidon his firstborn, and of the Hittites," + }, + { + "verseNum": 16, + "text": "the Jebusites, the Amorites, the Girgashites," + }, + { + "verseNum": 17, + "text": "the Hivites, the Arkites, the Sinites," + }, + { + "verseNum": 18, + "text": "the Arvadites, the Zemarites, and the Hamathites.\n \nLater the Canaanite clans were scattered," + }, + { + "verseNum": 19, + "text": "and the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha." + }, + { + "verseNum": 20, + "text": "These are the sons of Ham according to their clans, languages, lands, and nations." + }, + { + "verseNum": 21, + "text": "And sons were also born to Shem, the older brother of Japheth; Shem was the forefather of all the sons of Eber." + }, + { + "verseNum": 22, + "text": "The sons of Shem:\n \n Elam, Asshur, Arphaxad, Lud, and Aram." + }, + { + "verseNum": 23, + "text": "The sons of Aram:\n \n Uz, Hul, Gether, and Mash." + }, + { + "verseNum": 24, + "text": "Arphaxad was the father of Shelah, and Shelah was the father of Eber." + }, + { + "verseNum": 25, + "text": "Two sons were born to Eber: One was named Peleg, because in his days the earth was divided, and his brother was named Joktan." + }, + { + "verseNum": 26, + "text": "And Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah," + }, + { + "verseNum": 27, + "text": "Hadoram, Uzal, Diklah," + }, + { + "verseNum": 28, + "text": "Obal, Abimael, Sheba," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah, and Jobab. All these were sons of Joktan." + }, + { + "verseNum": 30, + "text": "Their territory extended from Mesha to Sephar, in the eastern hill country." + }, + { + "verseNum": 31, + "text": "These are the sons of Shem, according to their clans, languages, lands, and nations." + }, + { + "verseNum": 32, + "text": "All these are the clans of Noah’s sons, according to their generations and nations. From these the nations of the earth spread out after the flood." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-11.json b/data/en_bible/BSB/GEN/chapter-11.json new file mode 100644 index 0000000..1c85994 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-11.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now the whole world had one language and a common form of speech." + }, + { + "verseNum": 2, + "text": "And as people journeyed eastward, they found a plain in the land of Shinar and settled there." + }, + { + "verseNum": 3, + "text": "And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of mortar." + }, + { + "verseNum": 4, + "text": "“Come,” they said, “let us build for ourselves a city with a tower that reaches to the heavens, that we may make a name for ourselves and not be scattered over the face of all the earth.”" + }, + { + "verseNum": 5, + "text": "Then the LORD came down to see the city and the tower that the sons of men were building." + }, + { + "verseNum": 6, + "text": "And the LORD said, “If they have begun to do this as one people speaking the same language, then nothing they devise will be beyond them." + }, + { + "verseNum": 7, + "text": "Come, let Us go down and confuse their language, so that they will not understand one another’s speech.”" + }, + { + "verseNum": 8, + "text": "So the LORD scattered them from there over the face of all the earth, and they stopped building the city." + }, + { + "verseNum": 9, + "text": "That is why it is called Babel, for there the LORD confused the language of the whole world, and from that place the LORD scattered them over the face of all the earth." + }, + { + "verseNum": 10, + "text": "This is the account of Shem. Two years after the flood, when Shem was 100 years old, he became the father of Arphaxad." + }, + { + "verseNum": 11, + "text": "And after he had become the father of Arphaxad, Shem lived 500 years and had other sons and daughters." + }, + { + "verseNum": 12, + "text": "When Arphaxad was 35 years old, he became the father of Shelah." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Shelah, Arphaxad lived 403 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "When Shelah was 30 years old, he became the father of Eber." + }, + { + "verseNum": 15, + "text": "And after he had become the father of Eber, Shelah lived 403 years and had other sons and daughters." + }, + { + "verseNum": 16, + "text": "When Eber was 34 years old, he became the father of Peleg." + }, + { + "verseNum": 17, + "text": "And after he had become the father of Peleg, Eber lived 430 years and had other sons and daughters." + }, + { + "verseNum": 18, + "text": "When Peleg was 30 years old, he became the father of Reu." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Reu, Peleg lived 209 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "When Reu was 32 years old, he became the father of Serug." + }, + { + "verseNum": 21, + "text": "And after he had become the father of Serug, Reu lived 207 years and had other sons and daughters." + }, + { + "verseNum": 22, + "text": "When Serug was 30 years old, he became the father of Nahor." + }, + { + "verseNum": 23, + "text": "And after he had become the father of Nahor, Serug lived 200 years and had other sons and daughters." + }, + { + "verseNum": 24, + "text": "When Nahor was 29 years old, he became the father of Terah." + }, + { + "verseNum": 25, + "text": "And after he had become the father of Terah, Nahor lived 119 years and had other sons and daughters." + }, + { + "verseNum": 26, + "text": "When Terah was 70 years old, he became the father of Abram, Nahor, and Haran." + }, + { + "verseNum": 27, + "text": "This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran became the father of Lot." + }, + { + "verseNum": 28, + "text": "During his father Terah’s lifetime, Haran died in his native land, in Ur of the Chaldeans." + }, + { + "verseNum": 29, + "text": "And Abram and Nahor took wives for themselves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both Milcah and Iscah." + }, + { + "verseNum": 30, + "text": "But Sarai was barren; she had no children." + }, + { + "verseNum": 31, + "text": "And Terah took his son Abram, his grandson Lot son of Haran, and his daughter-in-law Sarai the wife of Abram, and they set out from Ur of the Chaldeans for the land of Canaan. But when they arrived in Haran, they settled there." + }, + { + "verseNum": 32, + "text": "Terah lived 205 years, and he died in Haran." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-12.json b/data/en_bible/BSB/GEN/chapter-12.json new file mode 100644 index 0000000..9a326bb --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-12.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Abram, “Leave your country, your kindred, and your father’s household, and go to the land I will show you." + }, + { + "verseNum": 2, + "text": "I will make you into a great nation,\n and I will bless you;\n I will make your name great,\n so that you will be a blessing." + }, + { + "verseNum": 3, + "text": "I will bless those who bless you\n and curse those who curse you;\n and all the families of the earth\n will be blessed through you.”" + }, + { + "verseNum": 4, + "text": "So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy-five years old when he left Haran." + }, + { + "verseNum": 5, + "text": "And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in Haran, and set out for the land of Canaan.\n \nWhen they came to the land of Canaan," + }, + { + "verseNum": 6, + "text": "Abram traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the Canaanites were in the land." + }, + { + "verseNum": 7, + "text": "Then the LORD appeared to Abram and said, “I will give this land to your offspring.” So Abram built an altar there to the LORD, who had appeared to him." + }, + { + "verseNum": 8, + "text": "From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the LORD." + }, + { + "verseNum": 9, + "text": "And Abram journeyed on toward the Negev." + }, + { + "verseNum": 10, + "text": "Now there was a famine in the land. So Abram went down to Egypt to live there for a while because the famine was severe." + }, + { + "verseNum": 11, + "text": "As he was about to enter Egypt, he said to his wife Sarai, “Look, I know that you are a beautiful woman," + }, + { + "verseNum": 12, + "text": "and when the Egyptians see you, they will say, ‘This is his wife.’ Then they will kill me but will let you live." + }, + { + "verseNum": 13, + "text": "Please say you are my sister, so that I will be treated well for your sake, and on account of you my life will be spared.”" + }, + { + "verseNum": 14, + "text": "So when Abram entered Egypt, the Egyptians saw that the woman was very beautiful." + }, + { + "verseNum": 15, + "text": "When Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of Pharaoh." + }, + { + "verseNum": 16, + "text": "He treated Abram well on her account, and Abram acquired sheep and cattle, male and female donkeys, menservants and maidservants, and camels." + }, + { + "verseNum": 17, + "text": "The LORD, however, afflicted Pharaoh and his household with severe plagues because of Abram’s wife Sarai." + }, + { + "verseNum": 18, + "text": "So Pharaoh summoned Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife?" + }, + { + "verseNum": 19, + "text": "Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her and go!”" + }, + { + "verseNum": 20, + "text": "Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and all his possessions." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-13.json b/data/en_bible/BSB/GEN/chapter-13.json new file mode 100644 index 0000000..3f950bf --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-13.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "So Abram went up out of Egypt into the Negev—he and his wife and all his possessions—and Lot was with him." + }, + { + "verseNum": 2, + "text": "And Abram had become extremely wealthy in livestock and silver and gold." + }, + { + "verseNum": 3, + "text": "From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had formerly been pitched," + }, + { + "verseNum": 4, + "text": "to the site where he had built the altar. And there Abram called on the name of the LORD." + }, + { + "verseNum": 5, + "text": "Now Lot, who was traveling with Abram, also had flocks and herds and tents." + }, + { + "verseNum": 6, + "text": "But the land was unable to support both of them while they stayed together, for they had so many possessions that they were unable to coexist." + }, + { + "verseNum": 7, + "text": "And there was discord between the herdsmen of Abram and the herdsmen of Lot. At that time the Canaanites and the Perizzites were also living in the land." + }, + { + "verseNum": 8, + "text": "So Abram said to Lot, “Please let there be no contention between you and me, or between your herdsmen and my herdsmen. After all, we are brothers." + }, + { + "verseNum": 9, + "text": "Is not the whole land before you? Now separate yourself from me. If you go to the left, I will go to the right; if you go to the right, I will go to the left.”" + }, + { + "verseNum": 10, + "text": "And Lot looked out and saw that the whole plain of the Jordan, all the way to Zoar, was well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD destroyed Sodom and Gomorrah.)" + }, + { + "verseNum": 11, + "text": "So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted company." + }, + { + "verseNum": 12, + "text": "Abram lived in the land of Canaan, but Lot settled in the cities of the plain and pitched his tent toward Sodom." + }, + { + "verseNum": 13, + "text": "But the men of Sodom were wicked, sinning greatly against the LORD." + }, + { + "verseNum": 14, + "text": "After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south and east and west," + }, + { + "verseNum": 15, + "text": "for all the land that you see, I will give to you and your offspring forever." + }, + { + "verseNum": 16, + "text": "I will make your offspring like the dust of the earth, so that if one could count the dust of the earth, then your offspring could be counted." + }, + { + "verseNum": 17, + "text": "Get up and walk around the land, through its length and breadth, for I will give it to you.”" + }, + { + "verseNum": 18, + "text": "So Abram moved his tent and went to live near the Oaks of Mamre at Hebron, where he built an altar to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-14.json b/data/en_bible/BSB/GEN/chapter-14.json new file mode 100644 index 0000000..bee7037 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-14.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim" + }, + { + "verseNum": 2, + "text": "went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king of Zeboiim, and the king of Bela (that is, Zoar)." + }, + { + "verseNum": 3, + "text": "The latter five came as allies to the Valley of Siddim (that is, the Salt Sea )." + }, + { + "verseNum": 4, + "text": "For twelve years they had been subject to Chedorlaomer, but in the thirteenth year they rebelled." + }, + { + "verseNum": 5, + "text": "In the fourteenth year, Chedorlaomer and the kings allied with him went out and defeated the Rephaites in Ashteroth-karnaim, the Zuzites in Ham, the Emites in Shaveh-kiriathaim," + }, + { + "verseNum": 6, + "text": "and the Horites in the area of Mount Seir, as far as El-paran, which is near the desert." + }, + { + "verseNum": 7, + "text": "Then they turned back to invade En-mishpat (that is, Kadesh), and they conquered the whole territory of the Amalekites, as well as the Amorites who lived in Hazazon-tamar." + }, + { + "verseNum": 8, + "text": "Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) marched out and arrayed themselves for battle in the Valley of Siddim" + }, + { + "verseNum": 9, + "text": "against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Arioch king of Ellasar—four kings against five." + }, + { + "verseNum": 10, + "text": "Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled to the hill country." + }, + { + "verseNum": 11, + "text": "The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went on their way." + }, + { + "verseNum": 12, + "text": "They also carried off Abram’s nephew Lot and his possessions, since Lot was living in Sodom." + }, + { + "verseNum": 13, + "text": "Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near the Oaks of Mamre the Amorite, a brother of Eshcol and Aner, all of whom were bound by treaty to Abram." + }, + { + "verseNum": 14, + "text": "And when Abram heard that his relative had been captured, he mobilized the 318 trained men born in his household, and they set out in pursuit as far as Dan." + }, + { + "verseNum": 15, + "text": "During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as far as Hobah, north of Damascus." + }, + { + "verseNum": 16, + "text": "He retrieved all the goods, as well as his relative Lot and his possessions, together with the women and the rest of the people." + }, + { + "verseNum": 17, + "text": "After Abram returned from defeating Chedorlaomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of Shaveh (that is, the King’s Valley)." + }, + { + "verseNum": 18, + "text": "Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High —" + }, + { + "verseNum": 19, + "text": "and he blessed Abram and said:\n \n “Blessed be Abram by God Most High,\n Creator of heaven and earth," + }, + { + "verseNum": 20, + "text": "and blessed be God Most High,\n who has delivered your enemies into your hand.”\n \nThen Abram gave Melchizedek a tenth of everything." + }, + { + "verseNum": 21, + "text": "The king of Sodom said to Abram, “Give me the people, but take the goods for yourself.”" + }, + { + "verseNum": 22, + "text": "But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth," + }, + { + "verseNum": 23, + "text": "that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, ‘I have made Abram rich.’" + }, + { + "verseNum": 24, + "text": "I will accept nothing but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and Mamre. They may take their portion.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-15.json b/data/en_bible/BSB/GEN/chapter-15.json new file mode 100644 index 0000000..6761d0b --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-15.json @@ -0,0 +1,89 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After these events, the word of the LORD came to Abram in a vision:\n \n “Do not be afraid, Abram.\n I am your shield,\n your very great reward.”" + }, + { + "verseNum": 2, + "text": "But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of my house is Eliezer of Damascus?”" + }, + { + "verseNum": 3, + "text": "Abram continued, “Behold, You have given me no offspring, so a servant in my household will be my heir.”" + }, + { + "verseNum": 4, + "text": "Then the word of the LORD came to Abram, saying, “This one will not be your heir, but one who comes from your own body will be your heir.”" + }, + { + "verseNum": 5, + "text": "And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring be.”" + }, + { + "verseNum": 6, + "text": "Abram believed the LORD, and it was credited to him as righteousness." + }, + { + "verseNum": 7, + "text": "The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give you this land to possess.”" + }, + { + "verseNum": 8, + "text": "But Abram replied, “Lord GOD, how can I know that I will possess it?”" + }, + { + "verseNum": 9, + "text": "And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with a turtledove and a young pigeon.”" + }, + { + "verseNum": 10, + "text": "So Abram brought all these to Him, split each of them down the middle, and laid the halves opposite each other. The birds, however, he did not cut in half." + }, + { + "verseNum": 11, + "text": "And the birds of prey descended on the carcasses, but Abram drove them away." + }, + { + "verseNum": 12, + "text": "As the sun was setting, Abram fell into a deep sleep, and suddenly great terror and darkness overwhelmed him." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Abram, “Know for certain that your descendants will be strangers in a land that is not their own, and they will be enslaved and mistreated four hundred years." + }, + { + "verseNum": 14, + "text": "But I will judge the nation they serve as slaves, and afterward they will depart with many possessions." + }, + { + "verseNum": 15, + "text": "You, however, will go to your fathers in peace and be buried at a ripe old age." + }, + { + "verseNum": 16, + "text": "In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet complete.”" + }, + { + "verseNum": 17, + "text": "When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the carcasses." + }, + { + "verseNum": 18, + "text": "On that day the LORD made a covenant with Abram, saying, “To your descendants I have given this land—from the river of Egypt to the great River Euphrates—" + }, + { + "verseNum": 19, + "text": "the land of the Kenites, Kenizzites, Kadmonites," + }, + { + "verseNum": 20, + "text": "Hittites, Perizzites, Rephaites," + }, + { + "verseNum": 21, + "text": "Amorites, Canaanites, Girgashites, and Jebusites.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-16.json b/data/en_bible/BSB/GEN/chapter-16.json new file mode 100644 index 0000000..f3125e0 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-16.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Abram’s wife Sarai had borne him no children, but she had an Egyptian maidservant named Hagar." + }, + { + "verseNum": 2, + "text": "So Sarai said to Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidservant; perhaps I can build a family by her.”\n \nAnd Abram listened to the voice of Sarai." + }, + { + "verseNum": 3, + "text": "So after he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and gave her to Abram to be his wife." + }, + { + "verseNum": 4, + "text": "And he slept with Hagar, and she conceived. But when Hagar realized that she was pregnant, she began to despise her mistress." + }, + { + "verseNum": 5, + "text": "Then Sarai said to Abram, “May the wrong done to me be upon you! I delivered my servant into your arms, and ever since she saw that she was pregnant, she has treated me with contempt. May the LORD judge between you and me.”" + }, + { + "verseNum": 6, + "text": "“Here,” said Abram, “your servant is in your hands. Do whatever you want with her.” Then Sarai treated Hagar so harshly that she fled from her." + }, + { + "verseNum": 7, + "text": "Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along the road to Shur." + }, + { + "verseNum": 8, + "text": "“Hagar, servant of Sarai,” he said, “where have you come from, and where are you going?”\n \n“I am running away from my mistress Sarai,” she replied." + }, + { + "verseNum": 9, + "text": "So the angel of the LORD told her, “Return to your mistress and submit to her authority.”" + }, + { + "verseNum": 10, + "text": "Then the angel added, “I will greatly multiply your offspring so that they will be too numerous to count.”" + }, + { + "verseNum": 11, + "text": "The angel of the LORD proceeded:\n \n “Behold, you have conceived and will bear a son.\n And you shall name him Ishmael,\n for the LORD has heard your cry of affliction." + }, + { + "verseNum": 12, + "text": "He will be a wild donkey of a man,\n and his hand will be against everyone,\n and everyone’s hand against him;\n he will live in hostility\n toward all his brothers.”" + }, + { + "verseNum": 13, + "text": "So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me,” for she said, “Here I have seen the One who sees me!”" + }, + { + "verseNum": 14, + "text": "Therefore the well was called Beer-lahai-roi. It is located between Kadesh and Bered." + }, + { + "verseNum": 15, + "text": "And Hagar bore Abram a son, and Abram gave the name Ishmael to the son she had borne." + }, + { + "verseNum": 16, + "text": "Abram was eighty-six years old when Hagar bore Ishmael to him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-17.json b/data/en_bible/BSB/GEN/chapter-17.json new file mode 100644 index 0000000..6a8b76c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-17.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When Abram was ninety-nine years old, the LORD appeared to him and said, “I am God Almighty. Walk before Me and be blameless." + }, + { + "verseNum": 2, + "text": "I will establish My covenant between Me and you, and I will multiply you exceedingly.”" + }, + { + "verseNum": 3, + "text": "Then Abram fell facedown, and God said to him," + }, + { + "verseNum": 4, + "text": "“As for Me, this is My covenant with you: You will be the father of many nations." + }, + { + "verseNum": 5, + "text": "No longer will you be called Abram, but your name will be Abraham, for I have made you a father of many nations." + }, + { + "verseNum": 6, + "text": "I will make you exceedingly fruitful; I will make nations of you, and kings will descend from you." + }, + { + "verseNum": 7, + "text": "I will establish My covenant as an everlasting covenant between Me and you and your descendants after you, to be your God and the God of your descendants after you." + }, + { + "verseNum": 8, + "text": "And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be their God.”" + }, + { + "verseNum": 9, + "text": "God also said to Abraham, “You must keep My covenant—you and your descendants in the generations after you." + }, + { + "verseNum": 10, + "text": "This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be circumcised." + }, + { + "verseNum": 11, + "text": "You are to circumcise the flesh of your foreskin, and this will be a sign of the covenant between Me and you." + }, + { + "verseNum": 12, + "text": "Generation after generation, every male must be circumcised when he is eight days old, including those born in your household and those purchased from a foreigner—even those who are not your offspring." + }, + { + "verseNum": 13, + "text": "Whether they are born in your household or purchased, they must be circumcised. My covenant in your flesh will be an everlasting covenant." + }, + { + "verseNum": 14, + "text": "But if any male is not circumcised, he will be cut off from his people; he has broken My covenant.”" + }, + { + "verseNum": 15, + "text": "Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be Sarah." + }, + { + "verseNum": 16, + "text": "And I will bless her and will surely give you a son by her. I will bless her, and she will be the mother of nations; kings of peoples will descend from her.”" + }, + { + "verseNum": 17, + "text": "Abraham fell facedown. Then he laughed and said to himself, “Can a child be born to a man who is a hundred years old? Can Sarah give birth at the age of ninety?”" + }, + { + "verseNum": 18, + "text": "And Abraham said to God, “O that Ishmael might live under Your blessing!”" + }, + { + "verseNum": 19, + "text": "But God replied, “Your wife Sarah will indeed bear you a son, and you are to name him Isaac. I will establish My covenant with him as an everlasting covenant for his descendants after him." + }, + { + "verseNum": 20, + "text": "As for Ishmael, I have heard you, and I will surely bless him; I will make him fruitful and multiply him greatly. He will become the father of twelve rulers, and I will make him into a great nation." + }, + { + "verseNum": 21, + "text": "But I will establish My covenant with Isaac, whom Sarah will bear to you at this time next year.”" + }, + { + "verseNum": 22, + "text": "When He had finished speaking with Abraham, God went up from him." + }, + { + "verseNum": 23, + "text": "On that very day Abraham took his son Ishmael and all those born in his household or purchased with his money—every male among the members of Abraham’s household—and he circumcised them, just as God had told him." + }, + { + "verseNum": 24, + "text": "So Abraham was ninety-nine years old when he was circumcised," + }, + { + "verseNum": 25, + "text": "and his son Ishmael was thirteen;" + }, + { + "verseNum": 26, + "text": "Abraham and his son Ishmael were circumcised on the same day." + }, + { + "verseNum": 27, + "text": "And all the men of Abraham’s household—both servants born in his household and those purchased from foreigners—were circumcised with him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-18.json b/data/en_bible/BSB/GEN/chapter-18.json new file mode 100644 index 0000000..fc87b27 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-18.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD appeared to Abraham by the Oaks of Mamre in the heat of the day, while he was sitting at the entrance of his tent." + }, + { + "verseNum": 2, + "text": "And Abraham looked up and saw three men standing nearby. When he saw them, he ran from the entrance of his tent to meet them and bowed low to the ground." + }, + { + "verseNum": 3, + "text": "“My lord,” said Abraham, “if I have found favor in your sight, please do not pass your servant by." + }, + { + "verseNum": 4, + "text": "Let a little water be brought, that you may wash your feet and rest yourselves under the tree." + }, + { + "verseNum": 5, + "text": "And I will bring a bit of bread so that you may refresh yourselves. This is why you have passed your servant’s way. After that, you may continue on your way.”\n \n“Yes,” they replied, “you may do as you have said.”" + }, + { + "verseNum": 6, + "text": "So Abraham hurried into the tent and said to Sarah, “Quick! Prepare three seahs of fine flour, knead it, and bake some bread.”" + }, + { + "verseNum": 7, + "text": "Meanwhile, Abraham ran to the herd, selected a tender and choice calf, and gave it to a servant, who hurried to prepare it." + }, + { + "verseNum": 8, + "text": "Then Abraham brought curds and milk and the calf that had been prepared, and he set them before the men and stood by them under the tree as they ate." + }, + { + "verseNum": 9, + "text": "“Where is your wife Sarah?” they asked.\n \n“There, in the tent,” he replied." + }, + { + "verseNum": 10, + "text": "Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!”\n \nNow Sarah was behind him, listening at the entrance to the tent." + }, + { + "verseNum": 11, + "text": "And Abraham and Sarah were already old and well along in years; Sarah had passed the age of childbearing." + }, + { + "verseNum": 12, + "text": "So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleasure?”" + }, + { + "verseNum": 13, + "text": "And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am old?’" + }, + { + "verseNum": 14, + "text": "Is anything too difficult for the LORD? At the appointed time I will return to you—in about a year—and Sarah will have a son.”" + }, + { + "verseNum": 15, + "text": "But Sarah was afraid, so she denied it and said, “I did not laugh.”\n \n“No,” replied the LORD, “but you did laugh.”" + }, + { + "verseNum": 16, + "text": "When the men got up to leave, they looked out over Sodom, and Abraham walked along with them to see them off." + }, + { + "verseNum": 17, + "text": "And the LORD said, “Shall I hide from Abraham what I am about to do?" + }, + { + "verseNum": 18, + "text": "Abraham will surely become a great and powerful nation, and through him all the nations of the earth will be blessed." + }, + { + "verseNum": 19, + "text": "For I have chosen him, so that he will command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may bring upon Abraham what He has promised.”" + }, + { + "verseNum": 20, + "text": "Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin is so grievous," + }, + { + "verseNum": 21, + "text": "I will go down to see if their actions fully justify the outcry that has reached Me. If not, I will find out.”" + }, + { + "verseNum": 22, + "text": "And the two men turned away and went toward Sodom, but Abraham remained standing before the LORD." + }, + { + "verseNum": 23, + "text": "Abraham stepped forward and said, “Will You really sweep away the righteous with the wicked?" + }, + { + "verseNum": 24, + "text": "What if there are fifty righteous ones in the city? Will You really sweep it away and not spare the place for the sake of the fifty righteous ones who are there?" + }, + { + "verseNum": 25, + "text": "Far be it from You to do such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the Judge of all the earth do what is right?”" + }, + { + "verseNum": 26, + "text": "So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I will spare the whole place.”" + }, + { + "verseNum": 27, + "text": "Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but dust and ashes—" + }, + { + "verseNum": 28, + "text": "suppose the fifty righteous ones lack five. Will You destroy the whole city for the lack of five?”\n \nHe replied, “If I find forty-five there, I will not destroy it.”" + }, + { + "verseNum": 29, + "text": "Once again Abraham spoke to the LORD, “Suppose forty are found there?”\n \nHe answered, “On account of the forty, I will not do it.”" + }, + { + "verseNum": 30, + "text": "Then Abraham said, “May the Lord not be angry, but let me speak further. Suppose thirty are found there?”\n \nHe replied, “If I find thirty there, I will not do it.”" + }, + { + "verseNum": 31, + "text": "And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?”\n \nHe answered, “On account of the twenty, I will not destroy it.”" + }, + { + "verseNum": 32, + "text": "Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?”\n \nAnd He answered, “On account of the ten, I will not destroy it.”" + }, + { + "verseNum": 33, + "text": "When the LORD had finished speaking with Abraham, He departed, and Abraham returned home." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-19.json b/data/en_bible/BSB/GEN/chapter-19.json new file mode 100644 index 0000000..2341d26 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-19.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got up to meet them, bowed facedown," + }, + { + "verseNum": 2, + "text": "and said, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.”\n \n“No,” they answered, “we will spend the night in the square.”" + }, + { + "verseNum": 3, + "text": "But Lot insisted so strongly that they followed him into his house. He prepared a feast for them and baked unleavened bread, and they ate." + }, + { + "verseNum": 4, + "text": "Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded the house." + }, + { + "verseNum": 5, + "text": "They called out to Lot, saying, “Where are the men who came to you tonight? Send them out to us so we can have relations with them!”" + }, + { + "verseNum": 6, + "text": "Lot went outside to meet them, shutting the door behind him." + }, + { + "verseNum": 7, + "text": "“Please, my brothers,” he pleaded, “don’t do such a wicked thing!" + }, + { + "verseNum": 8, + "text": "Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protection of my roof.”" + }, + { + "verseNum": 9, + "text": "“Get out of the way!” they replied. And they declared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on Lot and moved in to break down the door." + }, + { + "verseNum": 10, + "text": "But the men inside reached out, pulled Lot into the house with them, and shut the door." + }, + { + "verseNum": 11, + "text": "And they struck the men at the entrance, young and old, with blindness, so that they wearied themselves trying to find the door." + }, + { + "verseNum": 12, + "text": "Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs to you? Get them out of here," + }, + { + "verseNum": 13, + "text": "because we are about to destroy this place. For the outcry to the LORD against its people is so great that He has sent us to destroy it.”" + }, + { + "verseNum": 14, + "text": "So Lot went out and spoke to the sons-in-law who were pledged in marriage to his daughters. “Get up,” he said. “Get out of this place, for the LORD is about to destroy the city!” But his sons-in-law thought he was joking." + }, + { + "verseNum": 15, + "text": "At daybreak the angels hurried Lot along, saying, “Get up! Take your wife and your two daughters who are here, or you will be swept away in the punishment of the city.”" + }, + { + "verseNum": 16, + "text": "But when Lot hesitated, the men grabbed his hand and the hands of his wife and his two daughters. And they led them safely out of the city, because of the LORD’s compassion for them." + }, + { + "verseNum": 17, + "text": "As soon as the men had brought them out, one of them said, “Run for your lives! Do not look back, and do not stop anywhere on the plain! Flee to the mountains, or you will be swept away!”" + }, + { + "verseNum": 18, + "text": "But Lot replied, “No, my lords, please!" + }, + { + "verseNum": 19, + "text": "Your servant has indeed found favor in your sight, and you have shown me great kindness by sparing my life. But I cannot run to the mountains; the disaster will overtake me, and I will die." + }, + { + "verseNum": 20, + "text": "Look, there is a town nearby where I can flee, and it is a small place. Please let me flee there—is it not a small place? Then my life will be saved.”" + }, + { + "verseNum": 21, + "text": "“Very well,” he answered, “I will grant this request as well, and will not demolish the town you indicate." + }, + { + "verseNum": 22, + "text": "Hurry! Run there quickly, for I cannot do anything until you reach it.” That is why the town was called Zoar." + }, + { + "verseNum": 23, + "text": "And by the time the sun had risen over the land, Lot had reached Zoar." + }, + { + "verseNum": 24, + "text": "Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens." + }, + { + "verseNum": 25, + "text": "Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the ground." + }, + { + "verseNum": 26, + "text": "But Lot’s wife looked back, and she became a pillar of salt." + }, + { + "verseNum": 27, + "text": "Early the next morning, Abraham got up and returned to the place where he had stood before the LORD." + }, + { + "verseNum": 28, + "text": "He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke from a furnace." + }, + { + "verseNum": 29, + "text": "So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities where he had lived." + }, + { + "verseNum": 30, + "text": "Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in Zoar—where they lived in a cave." + }, + { + "verseNum": 31, + "text": "One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over all the earth." + }, + { + "verseNum": 32, + "text": "Come, let us get our father drunk with wine so we can sleep with him and preserve his line.”" + }, + { + "verseNum": 33, + "text": "So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 34, + "text": "The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can preserve our father’s line.”" + }, + { + "verseNum": 35, + "text": "So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 36, + "text": "Thus both of Lot’s daughters became pregnant by their father." + }, + { + "verseNum": 37, + "text": "The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today." + }, + { + "verseNum": 38, + "text": "The younger daughter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of today." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-2.json b/data/en_bible/BSB/GEN/chapter-2.json new file mode 100644 index 0000000..9bf6291 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-2.json @@ -0,0 +1,105 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Thus the heavens and the earth were completed in all their vast array." + }, + { + "verseNum": 2, + "text": "And by the seventh day God had finished the work He had been doing; so on that day He rested from all His work." + }, + { + "verseNum": 3, + "text": "Then God blessed the seventh day and sanctified it, because on that day He rested from all the work of creation that He had accomplished." + }, + { + "verseNum": 4, + "text": "This is the account of the heavens and the earth when they were created, in the day that the LORD God made them." + }, + { + "verseNum": 5, + "text": "Now no shrub of the field had yet appeared on the earth, nor had any plant of the field sprouted; for the LORD God had not yet sent rain upon the earth, and there was no man to cultivate the ground." + }, + { + "verseNum": 6, + "text": "But springs welled up from the earth and watered the whole surface of the ground." + }, + { + "verseNum": 7, + "text": "Then the LORD God formed man from the dust of the ground and breathed the breath of life into his nostrils, and the man became a living being." + }, + { + "verseNum": 8, + "text": "And the LORD God planted a garden in Eden, in the east, where He placed the man He had formed." + }, + { + "verseNum": 9, + "text": "Out of the ground the LORD God gave growth to every tree that is pleasing to the eye and good for food. And in the middle of the garden were the tree of life and the tree of the knowledge of good and evil." + }, + { + "verseNum": 10, + "text": "Now a river flowed out of Eden to water the garden, and from there it branched into four headwaters:" + }, + { + "verseNum": 11, + "text": "The name of the first river is Pishon; it winds through the whole land of Havilah, where there is gold." + }, + { + "verseNum": 12, + "text": "And the gold of that land is pure, and bdellium and onyx are found there." + }, + { + "verseNum": 13, + "text": "The name of the second river is Gihon; it winds through the whole land of Cush." + }, + { + "verseNum": 14, + "text": "The name of the third river is Hiddekel; it runs along the east side of Assyria.\n \n And the fourth river is the Euphrates." + }, + { + "verseNum": 15, + "text": "Then the LORD God took the man and placed him in the Garden of Eden to cultivate and keep it." + }, + { + "verseNum": 16, + "text": "And the LORD God commanded him, “You may eat freely from every tree of the garden," + }, + { + "verseNum": 17, + "text": "but you must not eat from the tree of the knowledge of good and evil; for in the day that you eat of it, you will surely die.”" + }, + { + "verseNum": 18, + "text": "The LORD God also said, “It is not good for the man to be alone. I will make for him a suitable helper.”" + }, + { + "verseNum": 19, + "text": "And out of the ground the LORD God formed every beast of the field and every bird of the air, and He brought them to the man to see what he would name each one. And whatever the man called each living creature, that was its name." + }, + { + "verseNum": 20, + "text": "The man gave names to all the livestock, to the birds of the air, and to every beast of the field. But for Adam no suitable helper was found." + }, + { + "verseNum": 21, + "text": "So the LORD God caused the man to fall into a deep sleep, and while he slept, He took one of the man’s ribs and closed up the area with flesh." + }, + { + "verseNum": 22, + "text": "And from the rib that the LORD God had taken from the man, He made a woman and brought her to him." + }, + { + "verseNum": 23, + "text": "And the man said:\n \n “This is now bone of my bones\n and flesh of my flesh;\n she shall be called ‘woman,’\n for out of man she was taken.”" + }, + { + "verseNum": 24, + "text": "For this reason a man will leave his father and mother and be united to his wife, and they will become one flesh." + }, + { + "verseNum": 25, + "text": "And the man and his wife were both naked, and they were not ashamed." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-20.json b/data/en_bible/BSB/GEN/chapter-20.json new file mode 100644 index 0000000..4b2a45f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-20.json @@ -0,0 +1,77 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham journeyed from there to the region of the Negev and settled between Kadesh and Shur. While he was staying in Gerar," + }, + { + "verseNum": 2, + "text": "Abraham said of his wife Sarah, “She is my sister.” So Abimelech king of Gerar had Sarah brought to him." + }, + { + "verseNum": 3, + "text": "One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is a married woman.”" + }, + { + "verseNum": 4, + "text": "Now Abimelech had not gone near her, so he replied, “Lord, would You destroy a nation even though it is innocent?" + }, + { + "verseNum": 5, + "text": "Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have done this in the integrity of my heart and the innocence of my hands.”" + }, + { + "verseNum": 6, + "text": "Then God said to Abimelech in the dream, “Yes, I know that you did this with a clear conscience, and so I have kept you from sinning against Me. That is why I did not let you touch her." + }, + { + "verseNum": 7, + "text": "Now return the man’s wife, for he is a prophet; he will pray for you and you will live. But if you do not restore her, be aware that you will surely die—you and all who belong to you.”" + }, + { + "verseNum": 8, + "text": "Early the next morning Abimelech got up and summoned all his servants; and when he described to them all that had happened, the men were terrified." + }, + { + "verseNum": 9, + "text": "Then Abimelech called Abraham and asked, “What have you done to us? How have I sinned against you, that you have brought such tremendous guilt upon me and my kingdom? You have done things to me that should not be done.”" + }, + { + "verseNum": 10, + "text": "Abimelech also asked Abraham, “What prompted you to do such a thing?”" + }, + { + "verseNum": 11, + "text": "Abraham replied, “I thought to myself, ‘Surely there is no fear of God in this place. They will kill me on account of my wife.’" + }, + { + "verseNum": 12, + "text": "Besides, she really is my sister, the daughter of my father—though not the daughter of my mother—and she became my wife." + }, + { + "verseNum": 13, + "text": "So when God had me journey from my father’s house, I said to Sarah, ‘This is how you can show your loyalty to me: Wherever we go, say of me, “He is my brother.”’”" + }, + { + "verseNum": 14, + "text": "So Abimelech brought sheep and cattle, menservants and maidservants, and he gave them to Abraham and restored his wife Sarah to him." + }, + { + "verseNum": 15, + "text": "And Abimelech said, “Look, my land is before you. Settle wherever you please.”" + }, + { + "verseNum": 16, + "text": "And he said to Sarah, “See, I am giving your brother a thousand pieces of silver. It is your vindication before all who are with you; you are completely cleared.”" + }, + { + "verseNum": 17, + "text": "Then Abraham prayed to God, and God healed Abimelech and his wife and his maidservants, so that they could again bear children—" + }, + { + "verseNum": 18, + "text": "for on account of Abraham’s wife Sarah, the LORD had completely closed all the wombs in Abimelech’s household." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-21.json b/data/en_bible/BSB/GEN/chapter-21.json new file mode 100644 index 0000000..baa3e08 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-21.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD attended to Sarah as He had said, and the LORD did for Sarah what He had promised." + }, + { + "verseNum": 2, + "text": "So Sarah conceived and bore a son to Abraham in his old age, at the very time God had promised." + }, + { + "verseNum": 3, + "text": "And Abraham gave the name Isaac to the son Sarah bore to him." + }, + { + "verseNum": 4, + "text": "When his son Isaac was eight days old, Abraham circumcised him, as God had commanded him." + }, + { + "verseNum": 5, + "text": "Abraham was a hundred years old when his son Isaac was born to him." + }, + { + "verseNum": 6, + "text": "Then Sarah said, “God has made me laugh, and everyone who hears of this will laugh with me.”" + }, + { + "verseNum": 7, + "text": "She added, “Who would have told Abraham that Sarah would nurse children? Yet I have borne him a son in his old age.”" + }, + { + "verseNum": 8, + "text": "So the child grew and was weaned, and Abraham held a great feast on the day Isaac was weaned." + }, + { + "verseNum": 9, + "text": "But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son," + }, + { + "verseNum": 10, + "text": "and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my son Isaac!”" + }, + { + "verseNum": 11, + "text": "Now this matter distressed Abraham greatly because it concerned his son Ishmael." + }, + { + "verseNum": 12, + "text": "But God said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything that Sarah tells you, for through Isaac your offspring will be reckoned." + }, + { + "verseNum": 13, + "text": "But I will also make a nation of the slave woman’s son, because he is your offspring.”" + }, + { + "verseNum": 14, + "text": "Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beersheba." + }, + { + "verseNum": 15, + "text": "When the water in the skin was gone, she left the boy under one of the bushes." + }, + { + "verseNum": 16, + "text": "Then she went off and sat down nearby, about a bowshot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up her voice and wept." + }, + { + "verseNum": 17, + "text": "Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has heard the voice of the boy where he lies." + }, + { + "verseNum": 18, + "text": "Get up, lift up the boy, and take him by the hand, for I will make him into a great nation.”" + }, + { + "verseNum": 19, + "text": "Then God opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave the boy a drink." + }, + { + "verseNum": 20, + "text": "And God was with the boy, and he grew up and settled in the wilderness and became a great archer." + }, + { + "verseNum": 21, + "text": "And while he was dwelling in the Wilderness of Paran, his mother got a wife for him from the land of Egypt." + }, + { + "verseNum": 22, + "text": "At that time Abimelech and Phicol the commander of his army said to Abraham, “God is with you in all that you do." + }, + { + "verseNum": 23, + "text": "Now, therefore, swear to me here before God that you will not deal falsely with me or my children or descendants. Show to me and to the country in which you reside the same kindness that I have shown to you.”" + }, + { + "verseNum": 24, + "text": "And Abraham replied, “I swear it.”" + }, + { + "verseNum": 25, + "text": "But when Abraham complained to Abimelech about a well that Abimelech’s servants had seized," + }, + { + "verseNum": 26, + "text": "Abimelech replied, “I do not know who has done this. You did not tell me, so I have not heard about it until today.”" + }, + { + "verseNum": 27, + "text": "So Abraham brought sheep and cattle and gave them to Abimelech, and the two men made a covenant." + }, + { + "verseNum": 28, + "text": "Abraham separated seven ewe lambs from the flock," + }, + { + "verseNum": 29, + "text": "and Abimelech asked him, “Why have you set apart these seven ewe lambs?”" + }, + { + "verseNum": 30, + "text": "He replied, “You are to accept the seven ewe lambs from my hand as my witness that I dug this well.”" + }, + { + "verseNum": 31, + "text": "So that place was called Beersheba, because it was there that the two of them swore an oath." + }, + { + "verseNum": 32, + "text": "After they had made the covenant at Beersheba, Abimelech and Phicol the commander of his army got up and returned to the land of the Philistines." + }, + { + "verseNum": 33, + "text": "And Abraham planted a tamarisk tree in Beersheba, and there he called upon the name of the LORD, the Eternal God." + }, + { + "verseNum": 34, + "text": "And Abraham resided in the land of the Philistines for a long time." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-22.json b/data/en_bible/BSB/GEN/chapter-22.json new file mode 100644 index 0000000..5304e75 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-22.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Some time later God tested Abraham and said to him, “Abraham!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 2, + "text": "“Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Offer him there as a burnt offering on one of the mountains, which I will show you.”" + }, + { + "verseNum": 3, + "text": "So Abraham got up early the next morning, saddled his donkey, and took along two of his servants and his son Isaac. He split the wood for a burnt offering and set out for the place God had designated." + }, + { + "verseNum": 4, + "text": "On the third day Abraham looked up and saw the place in the distance." + }, + { + "verseNum": 5, + "text": "“Stay here with the donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we will return to you.”" + }, + { + "verseNum": 6, + "text": "Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together." + }, + { + "verseNum": 7, + "text": "Then Isaac said to his father Abraham, “My father!”\n \n“Here I am, my son,” he replied.\n \n“The fire and the wood are here,” said Isaac, “but where is the lamb for the burnt offering?”" + }, + { + "verseNum": 8, + "text": "Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the two walked on together." + }, + { + "verseNum": 9, + "text": "When they arrived at the place God had designated, Abraham built the altar there and arranged the wood. He bound his son Isaac and placed him on the altar, atop the wood." + }, + { + "verseNum": 10, + "text": "Then Abraham reached out his hand and took the knife to slaughter his son." + }, + { + "verseNum": 11, + "text": "Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!”\n \n“Here I am,” he replied." + }, + { + "verseNum": 12, + "text": "“Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only son from me.”" + }, + { + "verseNum": 13, + "text": "Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt offering in place of his son." + }, + { + "verseNum": 14, + "text": "And Abraham called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD it will be provided.”" + }, + { + "verseNum": 15, + "text": "And the angel of the LORD called to Abraham from heaven a second time," + }, + { + "verseNum": 16, + "text": "saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your only son," + }, + { + "verseNum": 17, + "text": "I will surely bless you, and I will multiply your descendants like the stars in the sky and the sand on the seashore. Your descendants will possess the gates of their enemies." + }, + { + "verseNum": 18, + "text": "And through your offspring all nations of the earth will be blessed, because you have obeyed My voice.”" + }, + { + "verseNum": 19, + "text": "Abraham went back to his servants, and they got up and set out together for Beersheba. And Abraham settled in Beersheba." + }, + { + "verseNum": 20, + "text": "Some time later, Abraham was told, “Milcah has also borne sons to your brother Nahor:" + }, + { + "verseNum": 21, + "text": "Uz the firstborn, his brother Buz, Kemuel (the father of Aram)," + }, + { + "verseNum": 22, + "text": "Chesed, Hazo, Pildash, Jidlaph, and Bethuel.”" + }, + { + "verseNum": 23, + "text": "And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s brother Nahor." + }, + { + "verseNum": 24, + "text": "Moreover, Nahor’s concubine, whose name was Reumah, bore Tebah, Gaham, Tahash, and Maacah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-23.json b/data/en_bible/BSB/GEN/chapter-23.json new file mode 100644 index 0000000..678b84a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-23.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarah lived to be 127 years old." + }, + { + "verseNum": 2, + "text": "She died in Kiriath-arba (that is, Hebron) in the land of Canaan, and Abraham went out to mourn and to weep for her." + }, + { + "verseNum": 3, + "text": "Then Abraham got up from beside his dead wife and said to the Hittites," + }, + { + "verseNum": 4, + "text": "“I am a foreigner and an outsider among you. Give me a burial site among you so that I can bury my dead.”" + }, + { + "verseNum": 5, + "text": "The Hittites replied to Abraham," + }, + { + "verseNum": 6, + "text": "“Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us will withhold his tomb for burying your dead.”" + }, + { + "verseNum": 7, + "text": "Then Abraham rose and bowed down before the people of the land, the Hittites." + }, + { + "verseNum": 8, + "text": "“If you are willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar on my behalf" + }, + { + "verseNum": 9, + "text": "to sell me the cave of Machpelah that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so that I may have a burial site.”" + }, + { + "verseNum": 10, + "text": "Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who had come to the gate of his city, Ephron the Hittite answered Abraham," + }, + { + "verseNum": 11, + "text": "“No, my lord. Listen to me. I give you the field, and I give you the cave that is in it. I give it to you in the presence of my people. Bury your dead.”" + }, + { + "verseNum": 12, + "text": "Again Abraham bowed down before the people of the land" + }, + { + "verseNum": 13, + "text": "and said to Ephron in their presence, “If you will please listen to me, I will pay you the price of the field. Accept it from me, so that I may bury my dead there.”" + }, + { + "verseNum": 14, + "text": "Ephron answered Abraham," + }, + { + "verseNum": 15, + "text": "“Listen to me, my lord. The land is worth four hundred shekels of silver, but what is that between you and me? Bury your dead.”" + }, + { + "verseNum": 16, + "text": "Abraham agreed to Ephron’s terms and weighed out for him the price he had named in the hearing of the Hittites: four hundred shekels of silver, according to the standard of the merchants." + }, + { + "verseNum": 17, + "text": "So Ephron’s field at Machpelah near Mamre, the cave that was in it, and all the trees within the boundaries of the field were deeded over" + }, + { + "verseNum": 18, + "text": "to Abraham’s possession in the presence of all the Hittites who had come to the gate of his city." + }, + { + "verseNum": 19, + "text": "After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre (that is, Hebron) in the land of Canaan." + }, + { + "verseNum": 20, + "text": "So the field and its cave were deeded by the Hittites to Abraham as a burial site." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-24.json b/data/en_bible/BSB/GEN/chapter-24.json new file mode 100644 index 0000000..a669701 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-24.json @@ -0,0 +1,273 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "By now Abraham was old and well along in years, and the LORD had blessed him in every way." + }, + { + "verseNum": 2, + "text": "So Abraham instructed the chief servant of his household, who managed all he owned, “Place your hand under my thigh," + }, + { + "verseNum": 3, + "text": "and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the Canaanites among whom I am dwelling," + }, + { + "verseNum": 4, + "text": "but will go to my country and my kindred to take a wife for my son Isaac.”" + }, + { + "verseNum": 5, + "text": "The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you came?”" + }, + { + "verseNum": 6, + "text": "Abraham replied, “Make sure that you do not take my son back there." + }, + { + "verseNum": 7, + "text": "The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and promised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you so that you can take a wife for my son from there." + }, + { + "verseNum": 8, + "text": "And if the woman is unwilling to follow you, then you are released from this oath of mine. Only do not take my son back there.”" + }, + { + "verseNum": 9, + "text": "So the servant placed his hand under the thigh of his master Abraham and swore an oath to him concerning this matter." + }, + { + "verseNum": 10, + "text": "Then the servant took ten of his master’s camels and departed with all manner of good things from his master in hand. And he set out for Nahor’s hometown in Aram-naharaim." + }, + { + "verseNum": 11, + "text": "As evening approached, he made the camels kneel down near the well outside the town at the time when the women went out to draw water." + }, + { + "verseNum": 12, + "text": "“O LORD, God of my master Abraham,” he prayed, “please grant me success today, and show kindness to my master Abraham." + }, + { + "verseNum": 13, + "text": "Here I am, standing beside the spring, and the daughters of the townspeople are coming out to draw water." + }, + { + "verseNum": 14, + "text": "Now may it happen that the girl to whom I say, ‘Please let down your jar that I may drink,’ and who responds, ‘Drink, and I will water your camels as well’—let her be the one You have appointed for Your servant Isaac. By this I will know that You have shown kindness to my master.”" + }, + { + "verseNum": 15, + "text": "Before the servant had finished praying, Rebekah came out with her jar on her shoulder. She was the daughter of Bethuel son of Milcah, the wife of Abraham’s brother Nahor." + }, + { + "verseNum": 16, + "text": "Now the girl was very beautiful, a virgin who had not had relations with any man. She went down to the spring, filled her jar, and came up again." + }, + { + "verseNum": 17, + "text": "So the servant ran to meet her and said, “Please let me have a little water from your jar.”" + }, + { + "verseNum": 18, + "text": "“Drink, my lord,” she replied, and she quickly lowered her jar to her hands and gave him a drink." + }, + { + "verseNum": 19, + "text": "After she had given him a drink, she said, “I will also draw water for your camels, until they have had enough to drink.”" + }, + { + "verseNum": 20, + "text": "And she quickly emptied her jar into the trough and ran back to the well to draw water, until she had drawn water for all his camels." + }, + { + "verseNum": 21, + "text": "Meanwhile, the man watched her silently to see whether or not the LORD had made his journey a success." + }, + { + "verseNum": 22, + "text": "And after the camels had finished drinking, he took out a gold ring weighing a beka, and two gold bracelets for her wrists weighing ten shekels." + }, + { + "verseNum": 23, + "text": "“Whose daughter are you?” he asked. “Please tell me, is there room in your father’s house for us to spend the night?”" + }, + { + "verseNum": 24, + "text": "She replied, “I am the daughter of Bethuel, the son that Milcah bore to Nahor.”" + }, + { + "verseNum": 25, + "text": "Then she added, “We have plenty of straw and feed, as well as a place for you to spend the night.”" + }, + { + "verseNum": 26, + "text": "Then the man bowed down and worshiped the LORD," + }, + { + "verseNum": 27, + "text": "saying, “Blessed be the LORD, the God of my master Abraham, who has not withheld His kindness and faithfulness from my master. As for me, the LORD has led me on the journey to the house of my master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The girl ran and told her mother’s household about these things." + }, + { + "verseNum": 29, + "text": "Now Rebekah had a brother named Laban, and he rushed out to the man at the spring." + }, + { + "verseNum": 30, + "text": "As soon as he saw the ring, and the bracelets on his sister’s wrists, and heard Rebekah’s words, “The man said this to me,” he went and found the man standing by the camels near the spring." + }, + { + "verseNum": 31, + "text": "“Come, you who are blessed by the LORD,” said Laban. “Why are you standing out here? I have prepared the house and a place for the camels.”" + }, + { + "verseNum": 32, + "text": "So the man came to the house, and the camels were unloaded. Straw and feed were brought to the camels, and water to wash his feet and the feet of his companions." + }, + { + "verseNum": 33, + "text": "Then a meal was set before the man, but he said, “I will not eat until I have told you what I came to say.”\n \nSo Laban said, “Please speak.”" + }, + { + "verseNum": 34, + "text": "“I am Abraham’s servant,” he replied." + }, + { + "verseNum": 35, + "text": "“The LORD has greatly blessed my master, and he has become rich. He has given him sheep and cattle, silver and gold, menservants and maidservants, camels and donkeys." + }, + { + "verseNum": 36, + "text": "My master’s wife Sarah has borne him a son in her old age, and my master has given him everything he owns." + }, + { + "verseNum": 37, + "text": "My master made me swear an oath and said, ‘You shall not take a wife for my son from the daughters of the Canaanites in whose land I dwell," + }, + { + "verseNum": 38, + "text": "but you shall go to my father’s house and to my kindred to take a wife for my son.’" + }, + { + "verseNum": 39, + "text": "Then I asked my master, ‘What if the woman will not come back with me?’" + }, + { + "verseNum": 40, + "text": "And he told me, ‘The LORD, before whom I have walked, will send His angel with you and make your journey a success, so that you may take a wife for my son from my kindred and from my father’s house." + }, + { + "verseNum": 41, + "text": "And when you go to my kindred, if they refuse to give her to you, then you will be released from my oath.’" + }, + { + "verseNum": 42, + "text": "So when I came to the spring today, I prayed: O LORD, God of my master Abraham, if only You would make my journey a success!" + }, + { + "verseNum": 43, + "text": "Here I am, standing beside this spring. Now if a maiden comes out to draw water and I say to her, ‘Please let me drink a little water from your jar,’" + }, + { + "verseNum": 44, + "text": "and she replies, ‘Drink, and I will draw water for your camels as well,’ may she be the woman the LORD has appointed for my master’s son." + }, + { + "verseNum": 45, + "text": "And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me a drink.’" + }, + { + "verseNum": 46, + "text": "She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the camels." + }, + { + "verseNum": 47, + "text": "Then I asked her, ‘Whose daughter are you?’\n \nShe replied, ‘The daughter of Bethuel son of Nahor, whom Milcah bore to him.’ So I put the ring on her nose and the bracelets on her wrists." + }, + { + "verseNum": 48, + "text": "Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his son." + }, + { + "verseNum": 49, + "text": "Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so that I may go elsewhere.”" + }, + { + "verseNum": 50, + "text": "Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter." + }, + { + "verseNum": 51, + "text": "Rebekah is here before you. Take her and go, and let her become the wife of your master’s son, just as the LORD has decreed.”" + }, + { + "verseNum": 52, + "text": "When Abraham’s servant heard their words, he bowed down to the ground before the LORD." + }, + { + "verseNum": 53, + "text": "Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Rebekah. He also gave precious gifts to her brother and her mother." + }, + { + "verseNum": 54, + "text": "Then he and the men with him ate and drank and spent the night there.\n \nWhen they got up the next morning, he said, “Send me on my way to my master.”" + }, + { + "verseNum": 55, + "text": "But her brother and mother said, “Let the girl remain with us ten days or so. After that, she may go.”" + }, + { + "verseNum": 56, + "text": "But he replied, “Do not delay me, since the LORD has made my journey a success. Send me on my way so that I may go to my master.”" + }, + { + "verseNum": 57, + "text": "So they said, “We will call the girl and ask her opinion.”" + }, + { + "verseNum": 58, + "text": "They called Rebekah and asked her, “Will you go with this man?”\n \n“I will go,” she replied." + }, + { + "verseNum": 59, + "text": "So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and his men." + }, + { + "verseNum": 60, + "text": "And they blessed Rebekah and said to her,\n \n “Our sister, may you become the mother\n of thousands upon thousands.\n May your offspring possess\n the gates of their enemies.”" + }, + { + "verseNum": 61, + "text": "Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So the servant took Rebekah and left." + }, + { + "verseNum": 62, + "text": "Now Isaac had just returned from Beer-lahai-roi, for he was living in the Negev." + }, + { + "verseNum": 63, + "text": "Early in the evening, Isaac went out to the field to meditate, and looking up, he saw the camels approaching." + }, + { + "verseNum": 64, + "text": "And when Rebekah looked up and saw Isaac, she got down from her camel" + }, + { + "verseNum": 65, + "text": "and asked the servant, “Who is that man in the field coming to meet us?”\n \n“It is my master,” the servant answered. So she took her veil and covered herself." + }, + { + "verseNum": 66, + "text": "Then the servant told Isaac all that he had done." + }, + { + "verseNum": 67, + "text": "And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his mother’s death." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-25.json b/data/en_bible/BSB/GEN/chapter-25.json new file mode 100644 index 0000000..9b1f2d5 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-25.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham had taken another wife, named Keturah," + }, + { + "verseNum": 2, + "text": "and she bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah." + }, + { + "verseNum": 3, + "text": "Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Letushites, and the Leummites." + }, + { + "verseNum": 4, + "text": "The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah.\n \nAll these were descendants of Keturah." + }, + { + "verseNum": 5, + "text": "Abraham left everything he owned to Isaac." + }, + { + "verseNum": 6, + "text": "But while he was still alive, Abraham gave gifts to the sons of his concubines and sent them away from his son Isaac to the land of the east." + }, + { + "verseNum": 7, + "text": "Abraham lived a total of 175 years." + }, + { + "verseNum": 8, + "text": "And at a ripe old age he breathed his last and died, old and contented, and was gathered to his people." + }, + { + "verseNum": 9, + "text": "His sons Isaac and Ishmael buried him in the cave of Machpelah near Mamre, in the field of Ephron son of Zohar the Hittite." + }, + { + "verseNum": 10, + "text": "This was the field that Abraham had bought from the Hittites. Abraham was buried there with his wife Sarah." + }, + { + "verseNum": 11, + "text": "After Abraham’s death, God blessed his son Isaac, who lived near Beer-lahai-roi." + }, + { + "verseNum": 12, + "text": "This is the account of Abraham’s son Ishmael, whom Hagar the Egyptian, Sarah’s maidservant, bore to Abraham." + }, + { + "verseNum": 13, + "text": "These are the names of the sons of Ishmael in the order of their birth: Nebaioth the firstborn of Ishmael, then Kedar, Adbeel, Mibsam," + }, + { + "verseNum": 14, + "text": "Mishma, Dumah, Massa," + }, + { + "verseNum": 15, + "text": "Hadad, Tema, Jetur, Naphish, and Kedemah." + }, + { + "verseNum": 16, + "text": "These were the sons of Ishmael, and these were their names by their villages and encampments—twelve princes of their tribes." + }, + { + "verseNum": 17, + "text": "Ishmael lived a total of 137 years. Then he breathed his last and died, and was gathered to his people." + }, + { + "verseNum": 18, + "text": "Ishmael’s descendants settled from Havilah to Shur, which is near the border of Egypt as you go toward Asshur. And they lived in hostility toward all their brothers." + }, + { + "verseNum": 19, + "text": "This is the account of Abraham’s son Isaac. Abraham became the father of Isaac," + }, + { + "verseNum": 20, + "text": "and Isaac was forty years old when he married Rebekah, the daughter of Bethuel the Aramean from Paddan-aram and the sister of Laban the Aramean." + }, + { + "verseNum": 21, + "text": "Later, Isaac prayed to the LORD on behalf of his wife, because she was barren. And the LORD heard his prayer, and his wife Rebekah conceived." + }, + { + "verseNum": 22, + "text": "But the children inside her struggled with each other, and she said, “Why is this happening to me?” So Rebekah went to inquire of the LORD," + }, + { + "verseNum": 23, + "text": "and He declared to her:\n \n “Two nations are in your womb,\n and two peoples from within you will be separated;\n one people will be stronger than the other,\n and the older will serve the younger.”" + }, + { + "verseNum": 24, + "text": "When her time came to give birth, there were indeed twins in her womb." + }, + { + "verseNum": 25, + "text": "The first one came out red, covered with hair like a fur coat; so they named him Esau." + }, + { + "verseNum": 26, + "text": "After this, his brother came out grasping Esau’s heel; so he was named Jacob. And Isaac was sixty years old when the twins were born." + }, + { + "verseNum": 27, + "text": "When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet man who stayed at home." + }, + { + "verseNum": 28, + "text": "Because Isaac had a taste for wild game, he loved Esau; but Rebekah loved Jacob." + }, + { + "verseNum": 29, + "text": "One day, while Jacob was cooking some stew, Esau came in from the field and was famished." + }, + { + "verseNum": 30, + "text": "He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also called Edom.)" + }, + { + "verseNum": 31, + "text": "“First sell me your birthright,” Jacob replied." + }, + { + "verseNum": 32, + "text": "“Look,” said Esau, “I am about to die, so what good is a birthright to me?”" + }, + { + "verseNum": 33, + "text": "“Swear to me first,” Jacob said.\n \nSo Esau swore to Jacob and sold him the birthright." + }, + { + "verseNum": 34, + "text": "Then Jacob gave some bread and lentil stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birthright." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-26.json b/data/en_bible/BSB/GEN/chapter-26.json new file mode 100644 index 0000000..2e091db --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-26.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Now there was another famine in the land, subsequent to the one that had occurred in Abraham’s time. And Isaac went to Abimelech king of the Philistines at Gerar." + }, + { + "verseNum": 2, + "text": "The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you." + }, + { + "verseNum": 3, + "text": "Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will confirm the oath that I swore to your father Abraham." + }, + { + "verseNum": 4, + "text": "I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all nations of the earth will be blessed," + }, + { + "verseNum": 5, + "text": "because Abraham listened to My voice and kept My charge, My commandments, My statutes, and My laws.”" + }, + { + "verseNum": 6, + "text": "So Isaac settled in Gerar." + }, + { + "verseNum": 7, + "text": "But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, because she is so beautiful.”" + }, + { + "verseNum": 8, + "text": "When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac caressing his wife Rebekah." + }, + { + "verseNum": 9, + "text": "Abimelech sent for Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?”\n \nIsaac replied, “Because I thought I might die on account of her.”" + }, + { + "verseNum": 10, + "text": "“What is this you have done to us?” asked Abimelech. “One of the people could easily have slept with your wife, and you would have brought guilt upon us.”" + }, + { + "verseNum": 11, + "text": "So Abimelech warned all the people, saying, “Whoever harms this man or his wife will surely be put to death.”" + }, + { + "verseNum": 12, + "text": "Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the LORD blessed him," + }, + { + "verseNum": 13, + "text": "and he became richer and richer, until he was exceedingly wealthy." + }, + { + "verseNum": 14, + "text": "He owned so many flocks and herds and servants that the Philistines envied him." + }, + { + "verseNum": 15, + "text": "So the Philistines took dirt and stopped up all the wells that his father’s servants had dug in the days of his father Abraham." + }, + { + "verseNum": 16, + "text": "Then Abimelech said to Isaac, “Depart from us, for you are much too powerful for us.”" + }, + { + "verseNum": 17, + "text": "So Isaac left that place and encamped in the Valley of Gerar and settled there." + }, + { + "verseNum": 18, + "text": "Isaac reopened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given them." + }, + { + "verseNum": 19, + "text": "Then Isaac’s servants dug in the valley and found a well of fresh water there." + }, + { + "verseNum": 20, + "text": "But the herdsmen of Gerar quarreled with Isaac’s herdsmen and said, “The water is ours!” So he named the well Esek, because they contended with him." + }, + { + "verseNum": 21, + "text": "Then they dug another well and quarreled over that one also; so he named it Sitnah." + }, + { + "verseNum": 22, + "text": "He moved on from there and dug another well, and they did not quarrel over it. He named it Rehoboth and said, “At last the LORD has made room for us, and we will be fruitful in the land.”" + }, + { + "verseNum": 23, + "text": "From there Isaac went up to Beersheba," + }, + { + "verseNum": 24, + "text": "and that night the LORD appeared to him and said, “I am the God of your father Abraham. Do not be afraid, for I am with you. I will bless you and multiply your descendants for the sake of My servant Abraham.”" + }, + { + "verseNum": 25, + "text": "So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. His servants also dug a well there." + }, + { + "verseNum": 26, + "text": "Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the commander of his army." + }, + { + "verseNum": 27, + "text": "“Why have you come to me?” Isaac asked them. “You hated me and sent me away.”" + }, + { + "verseNum": 28, + "text": "“We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. Let us make a covenant with you" + }, + { + "verseNum": 29, + "text": "that you will not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the LORD.”" + }, + { + "verseNum": 30, + "text": "So Isaac prepared a feast for them, and they ate and drank." + }, + { + "verseNum": 31, + "text": "And they got up early the next morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in peace." + }, + { + "verseNum": 32, + "text": "On that same day, Isaac’s servants came and told him about the well they had dug. “We have found water!” they told him." + }, + { + "verseNum": 33, + "text": "So he called it Shibah, and to this day the name of the city is Beersheba." + }, + { + "verseNum": 34, + "text": "When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite." + }, + { + "verseNum": 35, + "text": "And they brought grief to Isaac and Rebekah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-27.json b/data/en_bible/BSB/GEN/chapter-27.json new file mode 100644 index 0000000..4414e27 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-27.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.”\n \n“Here I am,” Esau replied." + }, + { + "verseNum": 2, + "text": "“Look,” said Isaac, “I am now old, and I do not know the day of my death." + }, + { + "verseNum": 3, + "text": "Take your weapons—your quiver and bow—and go out into the field to hunt some game for me." + }, + { + "verseNum": 4, + "text": "Then prepare a tasty dish that I love and bring it to me to eat, so that I may bless you before I die.”" + }, + { + "verseNum": 5, + "text": "Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to hunt game and bring it back," + }, + { + "verseNum": 6, + "text": "Rebekah said to her son Jacob, “Behold, I overheard your father saying to your brother Esau," + }, + { + "verseNum": 7, + "text": "‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD before I die.’" + }, + { + "verseNum": 8, + "text": "Now, my son, listen to my voice and do exactly as I tell you." + }, + { + "verseNum": 9, + "text": "Go out to the flock and bring me two choice young goats, so that I can make them into a tasty dish for your father—the kind he loves." + }, + { + "verseNum": 10, + "text": "Then take it to your father to eat, so that he may bless you before he dies.”" + }, + { + "verseNum": 11, + "text": "Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth-skinned." + }, + { + "verseNum": 12, + "text": "What if my father touches me? Then I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a blessing.”" + }, + { + "verseNum": 13, + "text": "His mother replied, “Your curse be on me, my son. Just obey my voice and go get them for me.”" + }, + { + "verseNum": 14, + "text": "So Jacob went and got two goats and brought them to his mother, who made the tasty food his father loved." + }, + { + "verseNum": 15, + "text": "And Rebekah took the finest clothes in the house that belonged to her older son Esau, and she put them on her younger son Jacob." + }, + { + "verseNum": 16, + "text": "She also put the skins of the young goats on his hands and on the smooth part of his neck." + }, + { + "verseNum": 17, + "text": "Then she handed her son Jacob the tasty food and bread she had made." + }, + { + "verseNum": 18, + "text": "So Jacob went to his father and said, “My father.”\n \n“Here I am!” he answered. “Which one are you, my son?”" + }, + { + "verseNum": 19, + "text": "Jacob said to his father, “I am Esau, your firstborn. I have done as you told me. Please sit up and eat some of my game, so that you may bless me.”" + }, + { + "verseNum": 20, + "text": "But Isaac asked his son, “How did you ever find it so quickly, my son?”\n \n“Because the LORD your God brought it to me,” he replied." + }, + { + "verseNum": 21, + "text": "Then Isaac said to Jacob, “Please come closer so I can touch you, my son. Are you really my son Esau, or not?”" + }, + { + "verseNum": 22, + "text": "So Jacob came close to his father Isaac, who touched him and said, “The voice is the voice of Jacob, but the hands are the hands of Esau.”" + }, + { + "verseNum": 23, + "text": "Isaac did not recognize him, because his hands were hairy like those of his brother Esau; so he blessed him." + }, + { + "verseNum": 24, + "text": "Again he asked, “Are you really my son Esau?”\n \nAnd he replied, “I am.”" + }, + { + "verseNum": 25, + "text": "“Serve me,” said Isaac, “and let me eat some of my son’s game, so that I may bless you.”\n \nJacob brought it to him, and he ate; then he brought him wine, and he drank." + }, + { + "verseNum": 26, + "text": "Then his father Isaac said to him, “Please come near and kiss me, my son.”" + }, + { + "verseNum": 27, + "text": "So he came near and kissed him. When Isaac smelled his clothing, he blessed him and said:\n \n “Ah, the smell of my son\n is like the smell of a field\n that the LORD has blessed." + }, + { + "verseNum": 28, + "text": "May God give to you the dew of heaven\n and the richness of the earth—\n an abundance of grain and new wine." + }, + { + "verseNum": 29, + "text": "May peoples serve you\n and nations bow down to you.\n May you be the master of your brothers,\n and may the sons of your mother bow down to you.\n May those who curse you be cursed,\n and those who bless you be blessed.”" + }, + { + "verseNum": 30, + "text": "As soon as Isaac had finished blessing him and Jacob had left his father’s presence, his brother Esau returned from the hunt." + }, + { + "verseNum": 31, + "text": "He too made some tasty food, brought it to his father, and said to him, “My father, sit up and eat of your son’s game, so that you may bless me.”" + }, + { + "verseNum": 32, + "text": "But his father Isaac replied, “Who are you?”\n \n“I am Esau, your firstborn son,” he answered." + }, + { + "verseNum": 33, + "text": "Isaac began to tremble violently and said, “Who was it, then, who hunted the game and brought it to me? Before you came in, I ate it all and blessed him—and indeed, he will be blessed!”" + }, + { + "verseNum": 34, + "text": "When Esau heard his father’s words, he let out a loud and bitter cry and said to his father, “Bless me too, O my father!”" + }, + { + "verseNum": 35, + "text": "But Isaac replied, “Your brother came deceitfully and took your blessing.”" + }, + { + "verseNum": 36, + "text": "So Esau declared, “Is he not rightly named Jacob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for me?”" + }, + { + "verseNum": 37, + "text": "But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my son?”" + }, + { + "verseNum": 38, + "text": "Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” Then Esau wept aloud." + }, + { + "verseNum": 39, + "text": "His father Isaac answered him:\n \n “Behold, your dwelling place shall be\n away from the richness of the land,\n away from the dew of heaven above." + }, + { + "verseNum": 40, + "text": "You shall live by the sword\n and serve your brother.\n But when you rebel,\n you will tear his yoke from your neck.”" + }, + { + "verseNum": 41, + "text": "Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother Jacob.”" + }, + { + "verseNum": 42, + "text": "When the words of her older son Esau were relayed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you." + }, + { + "verseNum": 43, + "text": "So now, my son, obey my voice and flee at once to my brother Laban in Haran." + }, + { + "verseNum": 44, + "text": "Stay with him for a while, until your brother’s fury subsides—" + }, + { + "verseNum": 45, + "text": "until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. Why should I lose both of you in one day?”" + }, + { + "verseNum": 46, + "text": "Then Rebekah said to Isaac, “I am weary of my life because of these Hittite women. If Jacob takes a Hittite wife from among them, what good is my life?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-28.json b/data/en_bible/BSB/GEN/chapter-28.json new file mode 100644 index 0000000..186f308 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-28.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "So Isaac called for Jacob and blessed him. “Do not take a wife from the Canaanite women,” he commanded." + }, + { + "verseNum": 2, + "text": "“Go at once to Paddan-aram, to the house of your mother’s father Bethuel, and take a wife from among the daughters of Laban, your mother’s brother." + }, + { + "verseNum": 3, + "text": "May God Almighty bless you and make you fruitful and multiply you, so that you may become a company of peoples." + }, + { + "verseNum": 4, + "text": "And may He give the blessing of Abraham to you and your descendants, so that you may possess the land where you dwell as a foreigner, the land God gave to Abraham.”" + }, + { + "verseNum": 5, + "text": "So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Rebekah, who was the mother of Jacob and Esau." + }, + { + "verseNum": 6, + "text": "Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Canaanite woman,”" + }, + { + "verseNum": 7, + "text": "and that Jacob had obeyed his father and mother and gone to Paddan-aram." + }, + { + "verseNum": 8, + "text": "And seeing that his father Isaac disapproved of the Canaanite women," + }, + { + "verseNum": 9, + "text": "Esau went to Ishmael and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition to the wives he already had." + }, + { + "verseNum": 10, + "text": "Meanwhile Jacob left Beersheba and set out for Haran." + }, + { + "verseNum": 11, + "text": "On reaching a certain place, he spent the night there because the sun had set. And taking one of the stones from that place, he put it under his head and lay down to sleep." + }, + { + "verseNum": 12, + "text": "And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder." + }, + { + "verseNum": 13, + "text": "And there at the top the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the land on which you now lie." + }, + { + "verseNum": 14, + "text": "Your descendants will be like the dust of the earth, and you will spread out to the west and east and north and south. All the families of the earth will be blessed through you and your offspring." + }, + { + "verseNum": 15, + "text": "Look, I am with you, and I will watch over you wherever you go, and I will bring you back to this land. For I will not leave you until I have done what I have promised you.”" + }, + { + "verseNum": 16, + "text": "When Jacob woke up, he thought, “Surely the LORD is in this place, and I was unaware of it.”" + }, + { + "verseNum": 17, + "text": "And he was afraid and said, “How awesome is this place! This is none other than the house of God; this is the gate of heaven!”" + }, + { + "verseNum": 18, + "text": "Early the next morning, Jacob took the stone that he had placed under his head, and he set it up as a pillar. He poured oil on top of it," + }, + { + "verseNum": 19, + "text": "and he called that place Bethel, though previously the city had been named Luz." + }, + { + "verseNum": 20, + "text": "Then Jacob made a vow, saying, “If God will be with me and watch over me on this journey, and if He will provide me with food to eat and clothes to wear," + }, + { + "verseNum": 21, + "text": "so that I may return safely to my father’s house, then the LORD will be my God." + }, + { + "verseNum": 22, + "text": "And this stone I have set up as a pillar will be God’s house, and of all that You give me I will surely give You a tenth.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-29.json b/data/en_bible/BSB/GEN/chapter-29.json new file mode 100644 index 0000000..3b23f8d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-29.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Jacob resumed his journey and came to the land of the people of the east." + }, + { + "verseNum": 2, + "text": "He looked and saw a well in the field, and near it lay three flocks of sheep, because the sheep were watered from this well. And a large stone covered the mouth of the well." + }, + { + "verseNum": 3, + "text": "When all the flocks had been gathered there, the shepherds would roll away the stone from the mouth of the well and water the sheep. Then they would return the stone to its place over the mouth of the well." + }, + { + "verseNum": 4, + "text": "“My brothers,” Jacob asked the shepherds, “where are you from?”\n \n“We are from Haran,” they answered." + }, + { + "verseNum": 5, + "text": "“Do you know Laban the grandson of Nahor?” Jacob asked.\n \n“We know him,” they replied." + }, + { + "verseNum": 6, + "text": "“Is he well?” Jacob inquired.\n \n“Yes,” they answered, “and here comes his daughter Rachel with his sheep.”" + }, + { + "verseNum": 7, + "text": "“Look,” said Jacob, “it is still broad daylight; it is not yet time to gather the livestock. Water the sheep and take them back to pasture.”" + }, + { + "verseNum": 8, + "text": "But they replied, “We cannot, until all the flocks have been gathered and the stone has been rolled away from the mouth of the well. Then we will water the sheep.”" + }, + { + "verseNum": 9, + "text": "While he was still speaking with them, Rachel arrived with her father’s sheep, for she was a shepherdess." + }, + { + "verseNum": 10, + "text": "As soon as Jacob saw Rachel, the daughter of his mother’s brother Laban, with Laban’s sheep, he went up and rolled the stone away from the mouth of the well and watered his uncle’s sheep." + }, + { + "verseNum": 11, + "text": "Then Jacob kissed Rachel and wept aloud." + }, + { + "verseNum": 12, + "text": "He told Rachel that he was Rebekah’s son, a relative of her father, and she ran and told her father." + }, + { + "verseNum": 13, + "text": "When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He embraced him and kissed him and brought him to his home, where Jacob told him all that had happened." + }, + { + "verseNum": 14, + "text": "Then Laban declared, “You are indeed my own flesh and blood.”\n \nAfter Jacob had stayed with him a month," + }, + { + "verseNum": 15, + "text": "Laban said to him, “Just because you are my relative, should you work for nothing? Tell me what your wages should be.”" + }, + { + "verseNum": 16, + "text": "Now Laban had two daughters; the older was named Leah, and the younger was named Rachel." + }, + { + "verseNum": 17, + "text": "Leah had weak eyes, but Rachel was shapely and beautiful." + }, + { + "verseNum": 18, + "text": "Since Jacob loved Rachel, he answered, “I will serve you seven years for your younger daughter Rachel.”" + }, + { + "verseNum": 19, + "text": "Laban replied, “Better that I give her to you than to another. Stay here with me.”" + }, + { + "verseNum": 20, + "text": "So Jacob served seven years for Rachel, yet it seemed but a few days because of his love for her." + }, + { + "verseNum": 21, + "text": "Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with her.”" + }, + { + "verseNum": 22, + "text": "So Laban invited all the men of that place and prepared a feast." + }, + { + "verseNum": 23, + "text": "But when evening came, Laban took his daughter Leah and gave her to Jacob, and he slept with her." + }, + { + "verseNum": 24, + "text": "And Laban gave his servant girl Zilpah to his daughter Leah as her maidservant." + }, + { + "verseNum": 25, + "text": "When morning came, there was Leah! “What have you done to me?” Jacob said to Laban. “Wasn’t it for Rachel that I served you? Why have you deceived me?”" + }, + { + "verseNum": 26, + "text": "Laban replied, “It is not our custom here to give the younger daughter in marriage before the older." + }, + { + "verseNum": 27, + "text": "Finish this week’s celebration, and we will give you the younger one in return for another seven years of work.”" + }, + { + "verseNum": 28, + "text": "And Jacob did just that. He finished the week’s celebration, and Laban gave him his daughter Rachel as his wife." + }, + { + "verseNum": 29, + "text": "Laban also gave his servant girl Bilhah to his daughter Rachel as her maidservant." + }, + { + "verseNum": 30, + "text": "Jacob slept with Rachel as well, and indeed, he loved Rachel more than Leah. So he worked for Laban another seven years." + }, + { + "verseNum": 31, + "text": "When the LORD saw that Leah was unloved, He opened her womb; but Rachel was barren." + }, + { + "verseNum": 32, + "text": "And Leah conceived and gave birth to a son, and she named him Reuben, for she said, “The LORD has seen my affliction. Surely my husband will love me now.”" + }, + { + "verseNum": 33, + "text": "Again she conceived and gave birth to a son, and she said, “Because the LORD has heard that I am unloved, He has given me this son as well.” So she named him Simeon." + }, + { + "verseNum": 34, + "text": "Once again Leah conceived and gave birth to a son, and she said, “Now at last my husband will become attached to me, because I have borne him three sons.” So he was named Levi." + }, + { + "verseNum": 35, + "text": "And once more she conceived and gave birth to a son and said, “This time I will praise the LORD.” So she named him Judah. Then Leah stopped having children." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-3.json b/data/en_bible/BSB/GEN/chapter-3.json new file mode 100644 index 0000000..33c376c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-3.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now the serpent was more crafty than any beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the garden?’”" + }, + { + "verseNum": 2, + "text": "The woman answered the serpent, “We may eat the fruit of the trees of the garden," + }, + { + "verseNum": 3, + "text": "but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you will die.’”" + }, + { + "verseNum": 4, + "text": "“You will not surely die,” the serpent told her." + }, + { + "verseNum": 5, + "text": "“For God knows that in the day you eat of it, your eyes will be opened and you will be like God, knowing good and evil.”" + }, + { + "verseNum": 6, + "text": "When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her husband who was with her, and he ate it." + }, + { + "verseNum": 7, + "text": "And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for themselves." + }, + { + "verseNum": 8, + "text": "Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of the garden." + }, + { + "verseNum": 9, + "text": "But the LORD God called out to the man, “Where are you?”" + }, + { + "verseNum": 10, + "text": "“I heard Your voice in the garden,” he replied, “and I was afraid because I was naked; so I hid myself.”" + }, + { + "verseNum": 11, + "text": "“Who told you that you were naked?” asked the LORD God. “Have you eaten from the tree of which I commanded you not to eat?”" + }, + { + "verseNum": 12, + "text": "And the man answered, “The woman whom You gave me, she gave me fruit from the tree, and I ate it.”" + }, + { + "verseNum": 13, + "text": "Then the LORD God said to the woman, “What is this you have done?”\n \n“The serpent deceived me,” she replied, “and I ate.”" + }, + { + "verseNum": 14, + "text": "So the LORD God said to the serpent:\n \n “Because you have done this,\n cursed are you above all livestock\n and every beast of the field!\n On your belly will you go,\n and dust you will eat,\n all the days of your life." + }, + { + "verseNum": 15, + "text": "And I will put enmity between you and the woman,\n and between your seed and her seed.\n He will crush your head,\n and you will strike his heel.”" + }, + { + "verseNum": 16, + "text": "To the woman He said:\n \n “I will sharply increase your pain in childbirth;\n in pain you will bring forth children.\n Your desire will be for your husband,\n and he will rule over you.”" + }, + { + "verseNum": 17, + "text": "And to Adam He said:\n \n “Because you have listened to the voice of your wife\n and have eaten from the tree\n of which I commanded you not to eat,\n cursed is the ground because of you;\n through toil you will eat of it\n all the days of your life." + }, + { + "verseNum": 18, + "text": "Both thorns and thistles it will yield for you,\n and you will eat the plants of the field." + }, + { + "verseNum": 19, + "text": "By the sweat of your brow\n you will eat your bread,\n until you return to the ground—\n because out of it were you taken.\n For dust you are,\n and to dust you shall return.”" + }, + { + "verseNum": 20, + "text": "And Adam named his wife Eve, because she would be the mother of all the living." + }, + { + "verseNum": 21, + "text": "And the LORD God made garments of skin for Adam and his wife, and He clothed them." + }, + { + "verseNum": 22, + "text": "Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also from the tree of life, and eat, and live forever...”" + }, + { + "verseNum": 23, + "text": "Therefore the LORD God banished him from the Garden of Eden to work the ground from which he had been taken." + }, + { + "verseNum": 24, + "text": "So He drove out the man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword of flame to guard the way to the tree of life." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-30.json b/data/en_bible/BSB/GEN/chapter-30.json new file mode 100644 index 0000000..df4f5a1 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-30.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When Rachel saw that she was not bearing any children for Jacob, she envied her sister. “Give me children, or I will die!” she said to Jacob." + }, + { + "verseNum": 2, + "text": "Jacob became angry with Rachel and said, “Am I in the place of God, who has withheld children from you?”" + }, + { + "verseNum": 3, + "text": "Then she said, “Here is my maidservant Bilhah. Sleep with her, that she may bear children for me, so that through her I too can build a family.”" + }, + { + "verseNum": 4, + "text": "So Rachel gave Jacob her servant Bilhah as a wife, and he slept with her," + }, + { + "verseNum": 5, + "text": "and Bilhah conceived and bore him a son." + }, + { + "verseNum": 6, + "text": "Then Rachel said, “God has vindicated me; He has heard my plea and given me a son.” So she named him Dan." + }, + { + "verseNum": 7, + "text": "And Rachel’s servant Bilhah conceived again and bore Jacob a second son." + }, + { + "verseNum": 8, + "text": "Then Rachel said, “In my great struggles, I have wrestled with my sister and won.” So she named him Naphtali." + }, + { + "verseNum": 9, + "text": "When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as a wife." + }, + { + "verseNum": 10, + "text": "And Leah’s servant Zilpah bore Jacob a son." + }, + { + "verseNum": 11, + "text": "Then Leah said, “How fortunate!” So she named him Gad." + }, + { + "verseNum": 12, + "text": "When Leah’s servant Zilpah bore Jacob a second son," + }, + { + "verseNum": 13, + "text": "Leah said, “How happy I am! For the women call me happy.” So she named him Asher." + }, + { + "verseNum": 14, + "text": "Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s mandrakes.”" + }, + { + "verseNum": 15, + "text": "But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?”\n \n“Very well,” said Rachel, “he may sleep with you tonight in exchange for your son’s mandrakes.”" + }, + { + "verseNum": 16, + "text": "When Jacob came in from the field that evening, Leah went out to meet him and said, “You must come with me, for I have hired you with my son’s mandrakes.” So he slept with her that night." + }, + { + "verseNum": 17, + "text": "And God listened to Leah, and she conceived and bore a fifth son to Jacob." + }, + { + "verseNum": 18, + "text": "Then Leah said, “God has rewarded me for giving my maidservant to my husband.” So she named him Issachar." + }, + { + "verseNum": 19, + "text": "Again Leah conceived and bore a sixth son to Jacob." + }, + { + "verseNum": 20, + "text": "“God has given me a good gift,” she said. “This time my husband will honor me, because I have borne him six sons.” And she named him Zebulun." + }, + { + "verseNum": 21, + "text": "After that, Leah gave birth to a daughter and named her Dinah." + }, + { + "verseNum": 22, + "text": "Then God remembered Rachel. He listened to her and opened her womb," + }, + { + "verseNum": 23, + "text": "and she conceived and gave birth to a son. “God has taken away my shame,” she said." + }, + { + "verseNum": 24, + "text": "She named him Joseph, and said, “May the LORD add to me another son.”" + }, + { + "verseNum": 25, + "text": "Now after Rachel had given birth to Joseph, Jacob said to Laban, “Send me on my way so I can return to my homeland." + }, + { + "verseNum": 26, + "text": "Give me my wives and children for whom I have served you, that I may go on my way. You know how hard I have worked for you.”" + }, + { + "verseNum": 27, + "text": "But Laban replied, “If I have found favor in your eyes, please stay. I have learned by divination that the LORD has blessed me because of you.”" + }, + { + "verseNum": 28, + "text": "And he added, “Name your wages, and I will pay them.”" + }, + { + "verseNum": 29, + "text": "Then Jacob answered, “You know how I have served you and how your livestock have thrived under my care." + }, + { + "verseNum": 30, + "text": "Indeed, you had very little before my arrival, but now your wealth has increased many times over. The LORD has blessed you wherever I set foot. But now, when may I also provide for my own household?”" + }, + { + "verseNum": 31, + "text": "“What can I give you?” Laban asked.\n \n“You do not need to give me anything,” Jacob replied. “If you do this one thing for me, I will keep on shepherding and keeping your flocks." + }, + { + "verseNum": 32, + "text": "Let me go through all your flocks today and remove from them every speckled or spotted sheep, every dark-colored lamb, and every spotted or speckled goat. These will be my wages." + }, + { + "verseNum": 33, + "text": "So my honesty will testify for me when you come to check on my wages in the future. If I have any goats that are not speckled or spotted, or any lambs that are not dark-colored, they will be considered stolen.”" + }, + { + "verseNum": 34, + "text": "“Agreed,” said Laban. “Let it be as you have said.”" + }, + { + "verseNum": 35, + "text": "That very day Laban removed all the streaked or spotted male goats and every speckled or spotted female goat—every one that had any white on it—and every dark-colored lamb, and he placed them under the care of his sons." + }, + { + "verseNum": 36, + "text": "Then he put a three-day journey between himself and Jacob, while Jacob was shepherding the rest of Laban’s flocks." + }, + { + "verseNum": 37, + "text": "Jacob, however, took fresh branches of poplar, almond, and plane trees, and peeled the bark, exposing the white inner wood of the branches." + }, + { + "verseNum": 38, + "text": "Then he set the peeled branches in the watering troughs in front of the flocks coming in to drink. So when the flocks were in heat and came to drink," + }, + { + "verseNum": 39, + "text": "they mated in front of the branches. And they bore young that were streaked or speckled or spotted." + }, + { + "verseNum": 40, + "text": "Jacob set apart the young, but made the rest face the streaked dark-colored sheep in Laban’s flocks. Then he set his own stock apart and did not put them with Laban’s animals." + }, + { + "verseNum": 41, + "text": "Whenever the stronger females of the flock were in heat, Jacob would place the branches in the troughs, in full view of the animals, so that they would breed in front of the branches." + }, + { + "verseNum": 42, + "text": "But if the animals were weak, he did not set out the branches. So the weaker animals went to Laban and the stronger ones to Jacob." + }, + { + "verseNum": 43, + "text": "Thus Jacob became exceedingly prosperous. He owned large flocks, maidservants and menservants, and camels and donkeys." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-31.json b/data/en_bible/BSB/GEN/chapter-31.json new file mode 100644 index 0000000..91ab623 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-31.json @@ -0,0 +1,225 @@ +{ + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob heard that Laban’s sons were saying, “Jacob has taken away all that belonged to our father and built all this wealth at our father’s expense.”" + }, + { + "verseNum": 2, + "text": "And Jacob saw from the countenance of Laban that his attitude toward him had changed." + }, + { + "verseNum": 3, + "text": "Then the LORD said to Jacob, “Go back to the land of your fathers and to your kindred, and I will be with you.”" + }, + { + "verseNum": 4, + "text": "So Jacob sent word and called Rachel and Leah to the field where his flocks were," + }, + { + "verseNum": 5, + "text": "and he told them, “I can see from your father’s countenance that his attitude toward me has changed; but the God of my father has been with me." + }, + { + "verseNum": 6, + "text": "You know that I have served your father with all my strength." + }, + { + "verseNum": 7, + "text": "And although he has cheated me and changed my wages ten times, God has not allowed him to harm me." + }, + { + "verseNum": 8, + "text": "If he said, ‘The speckled will be your wages,’ then the whole flock bore speckled offspring. If he said, ‘The streaked will be your wages,’ then the whole flock bore streaked offspring." + }, + { + "verseNum": 9, + "text": "Thus God has taken away your father’s livestock and given them to me." + }, + { + "verseNum": 10, + "text": "When the flocks were breeding, I saw in a dream that the streaked, spotted, and speckled males were mating with the females." + }, + { + "verseNum": 11, + "text": "In that dream the angel of God said to me, ‘Jacob!’\n \nAnd I replied, ‘Here I am.’" + }, + { + "verseNum": 12, + "text": "‘Look up,’ he said, ‘and see that all the males that are mating with the flock are streaked, spotted, or speckled; for I have seen all that Laban has done to you." + }, + { + "verseNum": 13, + "text": "I am the God of Bethel, where you anointed the pillar and made a solemn vow to Me. Now get up and leave this land at once, and return to your native land.’”" + }, + { + "verseNum": 14, + "text": "And Rachel and Leah replied, “Do we have any portion or inheritance left in our father’s house?" + }, + { + "verseNum": 15, + "text": "Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squandered what was paid for us." + }, + { + "verseNum": 16, + "text": "Surely all the wealth that God has taken away from our father belongs to us and to our children. So do whatever God has told you.”" + }, + { + "verseNum": 17, + "text": "Then Jacob got up and put his children and his wives on camels," + }, + { + "verseNum": 18, + "text": "and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father Isaac in the land in Canaan." + }, + { + "verseNum": 19, + "text": "Now while Laban was out shearing his sheep, Rachel stole her father’s household idols." + }, + { + "verseNum": 20, + "text": "Moreover, Jacob deceived Laban the Aramean by not telling him that he was running away." + }, + { + "verseNum": 21, + "text": "So he fled with all his possessions, crossed the Euphrates, and headed for the hill country of Gilead." + }, + { + "verseNum": 22, + "text": "On the third day Laban was informed that Jacob had fled." + }, + { + "verseNum": 23, + "text": "So he took his relatives with him, pursued Jacob for seven days, and overtook him in the hill country of Gilead." + }, + { + "verseNum": 24, + "text": "But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Jacob, either good or bad.”" + }, + { + "verseNum": 25, + "text": "Now Jacob had pitched his tent in the hill country of Gilead when Laban overtook him, and Laban and his relatives camped there as well." + }, + { + "verseNum": 26, + "text": "Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war!" + }, + { + "verseNum": 27, + "text": "Why did you run away secretly and deceive me, without even telling me? I would have sent you away with joy and singing, with tambourines and harps." + }, + { + "verseNum": 28, + "text": "But you did not even let me kiss my grandchildren and my daughters goodbye. Now you have done a foolish thing." + }, + { + "verseNum": 29, + "text": "I have power to do you great harm, but last night the God of your father said to me, ‘Be careful not to say anything to Jacob, either good or bad.’" + }, + { + "verseNum": 30, + "text": "Now you have gone off because you long for your father’s house. But why have you stolen my gods?”" + }, + { + "verseNum": 31, + "text": "“I was afraid,” Jacob answered, “for I thought you would take your daughters from me by force." + }, + { + "verseNum": 32, + "text": "If you find your gods with anyone here, he shall not live! In the presence of our relatives, see for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen the idols." + }, + { + "verseNum": 33, + "text": "So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent and entered Rachel’s tent." + }, + { + "verseNum": 34, + "text": "Now Rachel had taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but found nothing." + }, + { + "verseNum": 35, + "text": "Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched, but could not find the household idols." + }, + { + "verseNum": 36, + "text": "Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin of mine have you so hotly pursued me?" + }, + { + "verseNum": 37, + "text": "You have searched all my goods! Have you found anything that belongs to you? Put it here before my brothers and yours, that they may judge between the two of us." + }, + { + "verseNum": 38, + "text": "I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock." + }, + { + "verseNum": 39, + "text": "I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from me for what was stolen by day or night." + }, + { + "verseNum": 40, + "text": "As it was, the heat consumed me by day and the frost by night, and sleep fled from my eyes." + }, + { + "verseNum": 41, + "text": "Thus for twenty years I have served in your household—fourteen years for your two daughters and six years for your flocks—and you have changed my wages ten times!" + }, + { + "verseNum": 42, + "text": "If the God of my father, the God of Abraham and the Fear of Isaac, had not been with me, surely by now you would have sent me away empty-handed. But God has seen my affliction and the toil of my hands, and last night He rendered judgment.”" + }, + { + "verseNum": 43, + "text": "But Laban answered Jacob, “These daughters are my daughters, these sons are my sons, and these flocks are my flocks! Everything you see is mine! Yet what can I do today about these daughters of mine or the children they have borne?" + }, + { + "verseNum": 44, + "text": "Come now, let us make a covenant, you and I, and let it serve as a witness between you and me.”" + }, + { + "verseNum": 45, + "text": "So Jacob picked out a stone and set it up as a pillar," + }, + { + "verseNum": 46, + "text": "and he said to his relatives, “Gather some stones.” So they took stones and made a mound, and there by the mound they ate." + }, + { + "verseNum": 47, + "text": "Laban called it Jegar-sahadutha, and Jacob called it Galeed." + }, + { + "verseNum": 48, + "text": "Then Laban declared, “This mound is a witness between you and me this day.”\n \nTherefore the place was called Galeed." + }, + { + "verseNum": 49, + "text": "It was also called Mizpah, because Laban said, “May the LORD keep watch between you and me when we are absent from each other." + }, + { + "verseNum": 50, + "text": "If you mistreat my daughters or take other wives, although no one is with us, remember that God is a witness between you and me.”" + }, + { + "verseNum": 51, + "text": "Laban also said to Jacob, “Here is the mound, and here is the pillar I have set up between you and me." + }, + { + "verseNum": 52, + "text": "This mound is a witness, and this pillar is a witness, that I will not go past this mound to harm you, and you will not go past this mound and pillar to harm me." + }, + { + "verseNum": 53, + "text": "May the God of Abraham and the God of Nahor, the God of their father, judge between us.”\n \nSo Jacob swore by the Fear of his father Isaac." + }, + { + "verseNum": 54, + "text": "Then Jacob offered a sacrifice on the mountain and invited his relatives to eat a meal. And after they had eaten, they spent the night on the mountain." + }, + { + "verseNum": 55, + "text": "Early the next morning, Laban got up and kissed his grandchildren and daughters and blessed them. Then he left to return home." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-32.json b/data/en_bible/BSB/GEN/chapter-32.json new file mode 100644 index 0000000..ac2860a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-32.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob also went on his way, and the angels of God met him." + }, + { + "verseNum": 2, + "text": "When Jacob saw them, he said, “This is the camp of God.” So he named that place Mahanaim." + }, + { + "verseNum": 3, + "text": "Jacob sent messengers ahead of him to his brother Esau in the land of Seir, the country of Edom." + }, + { + "verseNum": 4, + "text": "He instructed them, “You are to say to my master Esau, ‘Your servant Jacob says: I have been staying with Laban and have remained there until now." + }, + { + "verseNum": 5, + "text": "I have oxen, donkeys, flocks, menservants, and maidservants. I have sent this message to inform my master, so that I may find favor in your sight.’”" + }, + { + "verseNum": 6, + "text": "When the messengers returned to Jacob, they said, “We went to your brother Esau, and now he is coming to meet you—he and four hundred men with him.”" + }, + { + "verseNum": 7, + "text": "In great fear and distress, Jacob divided his people into two camps, as well as the flocks and herds and camels." + }, + { + "verseNum": 8, + "text": "He thought, “If Esau comes and attacks one camp, then the other camp can escape.”" + }, + { + "verseNum": 9, + "text": "Then Jacob declared, “O God of my father Abraham, God of my father Isaac, the LORD who told me, ‘Go back to your country and to your kindred, and I will make you prosper,’" + }, + { + "verseNum": 10, + "text": "I am unworthy of all the kindness and faithfulness You have shown Your servant. Indeed, with only my staff I came across the Jordan, but now I have become two camps." + }, + { + "verseNum": 11, + "text": "Please deliver me from the hand of my brother Esau, for I am afraid that he may come and attack me and the mothers and children with me." + }, + { + "verseNum": 12, + "text": "But You have said, ‘I will surely make you prosper, and I will make your offspring like the sand of the sea, too numerous to count.’”" + }, + { + "verseNum": 13, + "text": "Jacob spent the night there, and from what he had brought with him, he selected a gift for his brother Esau:" + }, + { + "verseNum": 14, + "text": "200 female goats, 20 male goats, 200 ewes, 20 rams," + }, + { + "verseNum": 15, + "text": "30 milk camels with their young, 40 cows, 10 bulls, 20 female donkeys, and 10 male donkeys." + }, + { + "verseNum": 16, + "text": "He entrusted them to his servants in separate herds and told them, “Go on ahead of me, and keep some distance between the herds.”" + }, + { + "verseNum": 17, + "text": "He instructed the one in the lead, “When my brother Esau meets you and asks, ‘To whom do you belong, where are you going, and whose animals are these before you?’" + }, + { + "verseNum": 18, + "text": "then you are to say, ‘They belong to your servant Jacob. They are a gift, sent to my lord Esau. And behold, Jacob is behind us.’”" + }, + { + "verseNum": 19, + "text": "He also instructed the second, the third, and all those following behind the herds: “When you meet Esau, you are to say the same thing to him." + }, + { + "verseNum": 20, + "text": "You are also to say, ‘Look, your servant Jacob is right behind us.’” For he thought, “I will appease Esau with the gift that is going before me. After that I can face him, and perhaps he will accept me.”" + }, + { + "verseNum": 21, + "text": "So Jacob’s gifts went on before him, while he spent the night in the camp." + }, + { + "verseNum": 22, + "text": "During the night Jacob got up and took his two wives, his two maidservants, and his eleven sons, and crossed the ford of the Jabbok." + }, + { + "verseNum": 23, + "text": "He took them and sent them across the stream, along with all his possessions." + }, + { + "verseNum": 24, + "text": "So Jacob was left all alone, and there a man wrestled with him until daybreak." + }, + { + "verseNum": 25, + "text": "When the man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it as they wrestled." + }, + { + "verseNum": 26, + "text": "Then the man said, “Let me go, for it is daybreak.”\n \nBut Jacob replied, “I will not let you go unless you bless me.”" + }, + { + "verseNum": 27, + "text": "“What is your name?” the man asked.\n \n“Jacob,” he replied." + }, + { + "verseNum": 28, + "text": "Then the man said, “Your name will no longer be Jacob, but Israel, because you have struggled with God and with men, and you have prevailed.”" + }, + { + "verseNum": 29, + "text": "And Jacob requested, “Please tell me your name.”\n \nBut he replied, “Why do you ask my name?” Then he blessed Jacob there." + }, + { + "verseNum": 30, + "text": "So Jacob named the place Peniel, saying, “Indeed, I have seen God face to face, and yet my life was spared.”" + }, + { + "verseNum": 31, + "text": "The sun rose above him as he passed by Penuel, and he was limping because of his hip." + }, + { + "verseNum": 32, + "text": "Therefore to this day the Israelites do not eat the tendon which is at the socket of the hip, because the socket of Jacob’s hip was struck near that tendon." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-33.json b/data/en_bible/BSB/GEN/chapter-33.json new file mode 100644 index 0000000..dbd037d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-33.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob looked up and saw Esau coming toward him with four hundred men. So he divided the children among Leah, Rachel, and the two maidservants." + }, + { + "verseNum": 2, + "text": "He put the maidservants and their children in front, Leah and her children next, and Rachel and Joseph at the rear." + }, + { + "verseNum": 3, + "text": "But Jacob himself went on ahead and bowed to the ground seven times as he approached his brother." + }, + { + "verseNum": 4, + "text": "Esau, however, ran to him and embraced him, threw his arms around his neck, and kissed him. And they both wept." + }, + { + "verseNum": 5, + "text": "When Esau looked up and saw the women and children, he asked, “Who are these with you?”\n \nJacob answered, “These are the children God has graciously given your servant.”" + }, + { + "verseNum": 6, + "text": "Then the maidservants and their children approached and bowed down." + }, + { + "verseNum": 7, + "text": "Leah and her children also approached and bowed down, and then Joseph and Rachel approached and bowed down." + }, + { + "verseNum": 8, + "text": "“What do you mean by sending this whole company to meet me?” asked Esau.\n \n“To find favor in your sight, my lord,” Jacob answered." + }, + { + "verseNum": 9, + "text": "“I already have plenty, my brother,” Esau replied. “Keep what belongs to you.”" + }, + { + "verseNum": 10, + "text": "But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is like seeing the face of God, since you have received me favorably." + }, + { + "verseNum": 11, + "text": "Please accept my gift that was brought to you, because God has been gracious to me and I have all I need.” So Jacob pressed him until he accepted." + }, + { + "verseNum": 12, + "text": "Then Esau said, “Let us be on our way, and I will go ahead of you.”" + }, + { + "verseNum": 13, + "text": "But Jacob replied, “My lord knows that the children are frail, and I must care for sheep and cattle that are nursing their young. If they are driven hard for even a day, all the animals will die." + }, + { + "verseNum": 14, + "text": "Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at Seir.”" + }, + { + "verseNum": 15, + "text": "“Let me leave some of my people with you,” Esau said.\n \nBut Jacob replied, “Why do that? Let me find favor in the sight of my lord.”" + }, + { + "verseNum": 16, + "text": "So that day Esau started on his way back to Seir," + }, + { + "verseNum": 17, + "text": "but Jacob went on to Succoth, where he built a house for himself and shelters for his livestock; that is why the place was called Succoth." + }, + { + "verseNum": 18, + "text": "After Jacob had come from Paddan-aram, he arrived safely at the city of Shechem in the land of Canaan, and he camped just outside the city." + }, + { + "verseNum": 19, + "text": "And the plot of ground where he pitched his tent, he purchased from the sons of Hamor, Shechem’s father, for a hundred pieces of silver." + }, + { + "verseNum": 20, + "text": "There he set up an altar and called it El-Elohe-Israel." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-34.json b/data/en_bible/BSB/GEN/chapter-34.json new file mode 100644 index 0000000..5cc208f --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-34.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Now Dinah, the daughter Leah had borne to Jacob, went out to visit the daughters of the land." + }, + { + "verseNum": 2, + "text": "When Shechem son of Hamor the Hivite, the prince of the region, saw her, he took her and lay with her by force." + }, + { + "verseNum": 3, + "text": "And his soul was drawn to Dinah, the daughter of Jacob. He loved the young girl and spoke to her tenderly." + }, + { + "verseNum": 4, + "text": "So Shechem told his father Hamor, “Get me this girl as a wife.”" + }, + { + "verseNum": 5, + "text": "Jacob heard that Shechem had defiled his daughter Dinah, but since his sons were with his livestock in the field, he remained silent about it until they returned." + }, + { + "verseNum": 6, + "text": "Meanwhile, Shechem’s father Hamor came to speak with Jacob." + }, + { + "verseNum": 7, + "text": "When Jacob’s sons heard what had happened, they returned from the field. They were filled with grief and fury, because Shechem had committed an outrage in Israel by lying with Jacob’s daughter—a thing that should not be done." + }, + { + "verseNum": 8, + "text": "But Hamor said to them, “My son Shechem longs for your daughter. Please give her to him as his wife." + }, + { + "verseNum": 9, + "text": "Intermarry with us; give us your daughters, and take our daughters for yourselves." + }, + { + "verseNum": 10, + "text": "You may settle among us, and the land will be open to you. Live here, move about freely, and acquire your own property.”" + }, + { + "verseNum": 11, + "text": "Then Shechem said to Dinah’s father and brothers, “Grant me this favor, and I will give you whatever you ask." + }, + { + "verseNum": 12, + "text": "Demand a high dowry and an expensive gift, and I will give you whatever you ask. Only give me the girl as my wife!”" + }, + { + "verseNum": 13, + "text": "But because Shechem had defiled their sister Dinah, Jacob’s sons answered him and his father Hamor deceitfully." + }, + { + "verseNum": 14, + "text": "“We cannot do such a thing,” they said. “To give our sister to an uncircumcised man would be a disgrace to us." + }, + { + "verseNum": 15, + "text": "We will consent to this on one condition, that you become circumcised like us—every one of your males." + }, + { + "verseNum": 16, + "text": "Then we will give you our daughters and take your daughters for ourselves. We will dwell among you and become one people." + }, + { + "verseNum": 17, + "text": "But if you will not agree to be circumcised, then we will take our sister and go.”" + }, + { + "verseNum": 18, + "text": "Their offer seemed good to Hamor and his son Shechem." + }, + { + "verseNum": 19, + "text": "The young man, who was the most respected of all his father’s household, did not hesitate to fulfill this request, because he was delighted with Jacob’s daughter." + }, + { + "verseNum": 20, + "text": "So Hamor and his son Shechem went to the gate of their city and addressed the men of their city:" + }, + { + "verseNum": 21, + "text": "“These men are at peace with us. Let them live and trade in our land; indeed, it is large enough for them. Let us take their daughters in marriage and give our daughters to them." + }, + { + "verseNum": 22, + "text": "But only on this condition will the men agree to dwell with us and be one people: if all our men are circumcised as they are." + }, + { + "verseNum": 23, + "text": "Will not their livestock, their possessions, and all their animals become ours? Only let us consent to them, and they will dwell among us.”" + }, + { + "verseNum": 24, + "text": "All the men who went out of the city gate listened to Hamor and his son Shechem, and every male of the city was circumcised." + }, + { + "verseNum": 25, + "text": "Three days later, while they were still in pain, two of Jacob’s sons (Dinah’s brothers Simeon and Levi) took their swords, went into the unsuspecting city, and slaughtered every male." + }, + { + "verseNum": 26, + "text": "They killed Hamor and his son Shechem with their swords, took Dinah out of Shechem’s house, and went away." + }, + { + "verseNum": 27, + "text": "Jacob’s other sons came upon the slaughter and looted the city, because their sister had been defiled." + }, + { + "verseNum": 28, + "text": "They took their flocks and herds and donkeys, and everything else in the city or in the field." + }, + { + "verseNum": 29, + "text": "They carried off all their possessions and women and children, and they plundered everything in their houses." + }, + { + "verseNum": 30, + "text": "Then Jacob said to Simeon and Levi, “You have brought trouble upon me by making me a stench to the Canaanites and Perizzites, the people of this land. We are few in number; if they unite against me and attack me, I and my household will be destroyed.”" + }, + { + "verseNum": 31, + "text": "But they replied, “Should he have treated our sister like a prostitute?”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-35.json b/data/en_bible/BSB/GEN/chapter-35.json new file mode 100644 index 0000000..112cb5b --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-35.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then God said to Jacob, “Arise, go up to Bethel, and settle there. Build an altar there to the God who appeared to you when you fled from your brother Esau.”" + }, + { + "verseNum": 2, + "text": "So Jacob told his household and all who were with him, “Get rid of the foreign gods that are among you. Purify yourselves and change your garments." + }, + { + "verseNum": 3, + "text": "Then let us arise and go to Bethel. I will build an altar there to God, who answered me in my day of distress. He has been with me wherever I have gone.”" + }, + { + "verseNum": 4, + "text": "So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the oak near Shechem." + }, + { + "verseNum": 5, + "text": "As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons." + }, + { + "verseNum": 6, + "text": "So Jacob and everyone with him arrived in Luz (that is, Bethel) in the land of Canaan." + }, + { + "verseNum": 7, + "text": "There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from his brother." + }, + { + "verseNum": 8, + "text": "Now Deborah, Rebekah’s nurse, died and was buried under the oak below Bethel. So Jacob named it Allon-bachuth." + }, + { + "verseNum": 9, + "text": "After Jacob had returned from Paddan-aram, God appeared to him again and blessed him." + }, + { + "verseNum": 10, + "text": "And God said to him, “Though your name is Jacob, you will no longer be called Jacob. Instead, your name will be Israel.” So God named him Israel." + }, + { + "verseNum": 11, + "text": "And God told him, “I am God Almighty. Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you." + }, + { + "verseNum": 12, + "text": "The land that I gave to Abraham and Isaac I will give to you, and I will give this land to your descendants after you.”" + }, + { + "verseNum": 13, + "text": "Then God went up from the place where He had spoken with him." + }, + { + "verseNum": 14, + "text": "So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anointed it with oil." + }, + { + "verseNum": 15, + "text": "Jacob called the place where God had spoken with him Bethel." + }, + { + "verseNum": 16, + "text": "Later, they set out from Bethel, and while they were still some distance from Ephrath, Rachel began to give birth, and her labor was difficult." + }, + { + "verseNum": 17, + "text": "During her severe labor, the midwife said to her, “Do not be afraid, for you are having another son.”" + }, + { + "verseNum": 18, + "text": "And with her last breath—for she was dying—she named him Ben-oni. But his father called him Benjamin." + }, + { + "verseNum": 19, + "text": "So Rachel died and was buried on the way to Ephrath (that is, Bethlehem)." + }, + { + "verseNum": 20, + "text": "Jacob set up a pillar on her grave; it marks Rachel’s tomb to this day." + }, + { + "verseNum": 21, + "text": "Israel again set out and pitched his tent beyond the Tower of Eder." + }, + { + "verseNum": 22, + "text": "While Israel was living in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it.\n \nJacob had twelve sons:" + }, + { + "verseNum": 23, + "text": "The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, Issachar, and Zebulun." + }, + { + "verseNum": 24, + "text": "The sons of Rachel were Joseph and Benjamin." + }, + { + "verseNum": 25, + "text": "The sons of Rachel’s maidservant Bilhah were Dan and Naphtali." + }, + { + "verseNum": 26, + "text": "And the sons of Leah’s maidservant Zilpah were Gad and Asher.\n \nThese are the sons of Jacob, who were born to him in Paddan-aram." + }, + { + "verseNum": 27, + "text": "Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abraham and Isaac had stayed." + }, + { + "verseNum": 28, + "text": "And Isaac lived 180 years." + }, + { + "verseNum": 29, + "text": "Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob buried him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-36.json b/data/en_bible/BSB/GEN/chapter-36.json new file mode 100644 index 0000000..07af253 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-36.json @@ -0,0 +1,177 @@ +{ + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Esau (that is, Edom)." + }, + { + "verseNum": 2, + "text": "Esau took his wives from the daughters of Canaan: Adah daughter of Elon the Hittite, Oholibamah daughter of Anah and granddaughter of Zibeon the Hivite," + }, + { + "verseNum": 3, + "text": "and Basemath daughter of Ishmael and sister of Nebaioth." + }, + { + "verseNum": 4, + "text": "And Adah bore Eliphaz to Esau, Basemath gave birth to Reuel," + }, + { + "verseNum": 5, + "text": "and Oholibamah gave birth to Jeush, Jalam, and Korah. These were the sons of Esau, who were born to him in the land of Canaan." + }, + { + "verseNum": 6, + "text": "Later, Esau took his wives and sons and daughters and all the people of his household, along with his livestock, all his other animals, and all the property he had acquired in Canaan, and he moved to a land far away from his brother Jacob." + }, + { + "verseNum": 7, + "text": "For their possessions were too great for them to dwell together; the land where they stayed could not support them because of their livestock." + }, + { + "verseNum": 8, + "text": "So Esau (that is, Edom) settled in the area of Mount Seir." + }, + { + "verseNum": 9, + "text": "This is the account of Esau, the father of the Edomites, in the area of Mount Seir." + }, + { + "verseNum": 10, + "text": "These are the names of Esau’s sons: Eliphaz son of Esau’s wife Adah, and Reuel son of Esau’s wife Basemath." + }, + { + "verseNum": 11, + "text": "The sons of Eliphaz were Teman, Omar, Zepho, Gatam, and Kenaz." + }, + { + "verseNum": 12, + "text": "Additionally, Timna, a concubine of Esau’s son Eliphaz, gave birth to Amalek. These are the grandsons of Esau’s wife Adah." + }, + { + "verseNum": 13, + "text": "These are the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. They are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 14, + "text": "These are the sons of Esau’s wife Oholibamah (daughter of Anah and granddaughter of Zibeon) whom she bore to Esau: Jeush, Jalam, and Korah." + }, + { + "verseNum": 15, + "text": "These are the chiefs among the sons of Esau. The sons of Eliphaz the firstborn of Esau: Chiefs Teman, Omar, Zepho, Kenaz," + }, + { + "verseNum": 16, + "text": "Korah, Gatam, and Amalek. They are the chiefs of Eliphaz in the land of Edom, and they are the grandsons of Adah." + }, + { + "verseNum": 17, + "text": "These are the sons of Esau’s son Reuel: Chiefs Nahath, Zerah, Shammah, and Mizzah. They are the chiefs descended from Reuel in the land of Edom, and they are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 18, + "text": "These are the sons of Esau’s wife Oholibamah: Chiefs Jeush, Jalam, and Korah. They are the chiefs descended from Esau’s wife Oholibamah, the daughter of Anah." + }, + { + "verseNum": 19, + "text": "All these are the sons of Esau (that is, Edom), and they were their chiefs." + }, + { + "verseNum": 20, + "text": "These are the sons of Seir the Horite, who were living in the land: Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 21, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, the descendants of Seir in the land of Edom." + }, + { + "verseNum": 22, + "text": "The sons of Lotan were Hori and Hemam. Timna was Lotan’s sister." + }, + { + "verseNum": 23, + "text": "These are the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam." + }, + { + "verseNum": 24, + "text": "These are the sons of Zibeon: Aiah and Anah. (This is the Anah who found the hot springs in the wilderness as he was pasturing the donkeys of his father Zibeon.)" + }, + { + "verseNum": 25, + "text": "These are the children of Anah: Dishon and Oholibamah daughter of Anah." + }, + { + "verseNum": 26, + "text": "These are the sons of Dishon: Hemdan, Eshban, Ithran, and Cheran." + }, + { + "verseNum": 27, + "text": "These are the sons of Ezer: Bilhan, Zaavan, and Akan." + }, + { + "verseNum": 28, + "text": "These are the sons of Dishan: Uz and Aran." + }, + { + "verseNum": 29, + "text": "These are the chiefs of the Horites: Chiefs Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 30, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, according to their divisions in the land of Seir." + }, + { + "verseNum": 31, + "text": "These are the kings who reigned in the land of Edom before any king reigned over the Israelites:" + }, + { + "verseNum": 32, + "text": "Bela son of Beor reigned in Edom; the name of his city was Dinhabah." + }, + { + "verseNum": 33, + "text": "When Bela died, Jobab son of Zerah from Bozrah reigned in his place." + }, + { + "verseNum": 34, + "text": "When Jobab died, Husham from the land of the Temanites reigned in his place." + }, + { + "verseNum": 35, + "text": "When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of his city was Avith." + }, + { + "verseNum": 36, + "text": "When Hadad died, Samlah from Masrekah reigned in his place." + }, + { + "verseNum": 37, + "text": "When Samlah died, Shaul from Rehoboth on the Euphrates reigned in his place." + }, + { + "verseNum": 38, + "text": "When Shaul died, Baal-hanan son of Achbor reigned in his place." + }, + { + "verseNum": 39, + "text": "When Baal-hanan son of Achbor died, Hadad reigned in his place. His city was named Pau, and his wife’s name was Mehetabel daughter of Matred, the daughter of Me-zahab." + }, + { + "verseNum": 40, + "text": "These are the names of Esau’s chiefs, according to their families and regions, by their names: Chiefs Timna, Alvah, Jetheth," + }, + { + "verseNum": 41, + "text": "Oholibamah, Elah, Pinon," + }, + { + "verseNum": 42, + "text": "Kenaz, Teman, Mibzar," + }, + { + "verseNum": 43, + "text": "Magdiel, and Iram. These were the chiefs of Edom, according to their settlements in the land they possessed. Esau was the father of the Edomites." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-37.json b/data/en_bible/BSB/GEN/chapter-37.json new file mode 100644 index 0000000..daf5c44 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-37.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob lived in the land where his father had resided, the land of Canaan." + }, + { + "verseNum": 2, + "text": "This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a bad report about them." + }, + { + "verseNum": 3, + "text": "Now Israel loved Joseph more than his other sons, because Joseph had been born to him in his old age; so he made him a robe of many colors." + }, + { + "verseNum": 4, + "text": "When Joseph’s brothers saw that their father loved him more than any of them, they hated him and could not speak a kind word to him." + }, + { + "verseNum": 5, + "text": "Then Joseph had a dream, and when he told it to his brothers, they hated him even more." + }, + { + "verseNum": 6, + "text": "He said to them, “Listen to this dream I had:" + }, + { + "verseNum": 7, + "text": "We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down to mine.”" + }, + { + "verseNum": 8, + "text": "“Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his statements." + }, + { + "verseNum": 9, + "text": "Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and eleven stars were bowing down to me.”" + }, + { + "verseNum": 10, + "text": "He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brothers and I actually come and bow down to the ground before you?”" + }, + { + "verseNum": 11, + "text": "And his brothers were jealous of him, but his father kept in mind what he had said." + }, + { + "verseNum": 12, + "text": "Some time later, Joseph’s brothers had gone to pasture their father’s flocks near Shechem." + }, + { + "verseNum": 13, + "text": "Israel said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.”\n \n“I am ready,” Joseph replied." + }, + { + "verseNum": 14, + "text": "Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.”\n \nSo he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem," + }, + { + "verseNum": 15, + "text": "a man found him wandering in the field and asked, “What are you looking for?”" + }, + { + "verseNum": 16, + "text": "“I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing their flocks?”" + }, + { + "verseNum": 17, + "text": "“They have moved on from here,” the man answered. “I heard them say, ‘Let us go to Dothan.’” So Joseph set out after his brothers and found them at Dothan." + }, + { + "verseNum": 18, + "text": "Now Joseph’s brothers saw him in the distance, and before he arrived, they plotted to kill him." + }, + { + "verseNum": 19, + "text": "“Here comes that dreamer!” they said to one another." + }, + { + "verseNum": 20, + "text": "“Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall see what becomes of his dreams!”" + }, + { + "verseNum": 21, + "text": "When Reuben heard this, he tried to rescue Joseph from their hands. “Let us not take his life,” he said." + }, + { + "verseNum": 22, + "text": "“Do not shed his blood. Throw him into this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his father." + }, + { + "verseNum": 23, + "text": "So when Joseph came to his brothers, they stripped him of his robe—the robe of many colors he was wearing—" + }, + { + "verseNum": 24, + "text": "and they took him and threw him into the pit. Now the pit was empty, with no water in it." + }, + { + "verseNum": 25, + "text": "And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their camels were carrying spices, balm, and myrrh on their way down to Egypt." + }, + { + "verseNum": 26, + "text": "Then Judah said to his brothers, “What profit will we gain if we kill our brother and cover up his blood?" + }, + { + "verseNum": 27, + "text": "Come, let us sell him to the Ishmaelites and not lay a hand on him; for he is our brother, our own flesh.” And they agreed." + }, + { + "verseNum": 28, + "text": "So when the Midianite traders passed by, his brothers pulled Joseph out of the pit and sold him for twenty shekels of silver to the Ishmaelites, who took him to Egypt." + }, + { + "verseNum": 29, + "text": "When Reuben returned to the pit and saw that Joseph was not there, he tore his clothes," + }, + { + "verseNum": 30, + "text": "returned to his brothers, and said, “The boy is gone! What am I going to do?”" + }, + { + "verseNum": 31, + "text": "Then they took Joseph’s robe, slaughtered a young goat, and dipped the robe in its blood." + }, + { + "verseNum": 32, + "text": "They sent the robe of many colors to their father and said, “We found this. Examine it to see whether it is your son’s robe or not.”" + }, + { + "verseNum": 33, + "text": "His father recognized it and said, “It is my son’s robe! A vicious animal has devoured him. Joseph has surely been torn to pieces!”" + }, + { + "verseNum": 34, + "text": "Then Jacob tore his clothes, put sackcloth around his waist, and mourned for his son many days." + }, + { + "verseNum": 35, + "text": "All his sons and daughters tried to comfort him, but he refused to be comforted. “No,” he said. “I will go down to Sheol mourning for my son.” So his father wept for him." + }, + { + "verseNum": 36, + "text": "Meanwhile, the Midianites sold Joseph in Egypt to Potiphar, an officer of Pharaoh and captain of the guard." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-38.json b/data/en_bible/BSB/GEN/chapter-38.json new file mode 100644 index 0000000..208dae1 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-38.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "About that time, Judah left his brothers and settled near a man named Hirah, an Adullamite." + }, + { + "verseNum": 2, + "text": "There Judah saw the daughter of a Canaanite man named Shua, and he took her as a wife and slept with her." + }, + { + "verseNum": 3, + "text": "So she conceived and gave birth to a son, and Judah named him Er." + }, + { + "verseNum": 4, + "text": "Again she conceived and gave birth to a son, and she named him Onan." + }, + { + "verseNum": 5, + "text": "Then she gave birth to another son and named him Shelah; it was at Chezib that she gave birth to him." + }, + { + "verseNum": 6, + "text": "Now Judah acquired a wife for Er, his firstborn, and her name was Tamar." + }, + { + "verseNum": 7, + "text": "But Er, Judah’s firstborn, was wicked in the sight of the LORD; so the LORD put him to death." + }, + { + "verseNum": 8, + "text": "Then Judah said to Onan, “Sleep with your brother’s wife. Perform your duty as her brother-in-law and raise up offspring for your brother.”" + }, + { + "verseNum": 9, + "text": "But Onan knew that the offspring would not belong to him; so whenever he would sleep with his brother’s wife, he would spill his seed on the ground so that he would not produce offspring for his brother." + }, + { + "verseNum": 10, + "text": "What he did was wicked in the sight of the LORD, so He put Onan to death as well." + }, + { + "verseNum": 11, + "text": "Then Judah said to his daughter-in-law Tamar, “Live as a widow in your father’s house until my son Shelah grows up.” For he thought, “He may die too, like his brothers.” So Tamar went to live in her father’s house." + }, + { + "verseNum": 12, + "text": "After a long time Judah’s wife, the daughter of Shua, died. When Judah had finished mourning, he and his friend Hirah the Adullamite went up to his sheepshearers at Timnah." + }, + { + "verseNum": 13, + "text": "When Tamar was told, “Your father-in-law is going up to Timnah to shear his sheep,”" + }, + { + "verseNum": 14, + "text": "she removed her widow’s garments, covered her face with a veil to disguise herself, and sat at the entrance to Enaim, which is on the way to Timnah. For she saw that although Shelah had grown up, she had not been given to him as a wife." + }, + { + "verseNum": 15, + "text": "When Judah saw her, he thought she was a prostitute because she had covered her face." + }, + { + "verseNum": 16, + "text": "Not realizing that she was his daughter-in-law, he went over to her and said, “Come now, let me sleep with you.”\n \n“What will you give me for sleeping with you?” she inquired." + }, + { + "verseNum": 17, + "text": "“I will send you a young goat from my flock,” Judah answered.\n \nBut she replied, “Only if you leave me something as a pledge until you send it.”" + }, + { + "verseNum": 18, + "text": "“What pledge should I give you?” he asked.\n \nShe answered, “Your seal and your cord, and the staff in your hand.” So he gave them to her and slept with her, and she became pregnant by him." + }, + { + "verseNum": 19, + "text": "Then Tamar got up and departed. And she removed her veil and put on her widow’s garments again." + }, + { + "verseNum": 20, + "text": "Now when Judah sent his friend Hirah the Adullamite with the young goat to collect the items he had left with the woman, he could not find her." + }, + { + "verseNum": 21, + "text": "He asked the men of that place, “Where is the shrine prostitute who was beside the road at Enaim?”\n \n“No shrine prostitute has been here,” they answered." + }, + { + "verseNum": 22, + "text": "So Hirah returned to Judah and said, “I could not find her, and furthermore, the men of that place said, ‘No shrine prostitute has been here.’”" + }, + { + "verseNum": 23, + "text": "“Let her keep the items,” Judah replied. “Otherwise we will become a laughingstock. After all, I did send her this young goat, but you could not find her.”" + }, + { + "verseNum": 24, + "text": "About three months later, Judah was told, “Your daughter-in-law Tamar has prostituted herself, and now she is pregnant.”\n \n“Bring her out!” Judah replied. “Let her be burned to death!”" + }, + { + "verseNum": 25, + "text": "As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and cord and staff are these?”" + }, + { + "verseNum": 26, + "text": "Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations with her again." + }, + { + "verseNum": 27, + "text": "When the time came for Tamar to give birth, there were twins in her womb." + }, + { + "verseNum": 28, + "text": "And as she was giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she announced." + }, + { + "verseNum": 29, + "text": "But when he pulled his hand back and his brother came out, she said, “You have broken out first!” So he was named Perez." + }, + { + "verseNum": 30, + "text": "Then his brother came out with the scarlet thread around his wrist, and he was named Zerah." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-39.json b/data/en_bible/BSB/GEN/chapter-39.json new file mode 100644 index 0000000..c5714c3 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-39.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Potiphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had taken him there." + }, + { + "verseNum": 2, + "text": "And the LORD was with Joseph, and he became a successful man, serving in the household of his Egyptian master." + }, + { + "verseNum": 3, + "text": "When his master saw that the LORD was with him and made him prosper in all he did," + }, + { + "verseNum": 4, + "text": "Joseph found favor in his sight and became his personal attendant.\n \nPotiphar put him in charge of his household and entrusted him with everything he owned." + }, + { + "verseNum": 5, + "text": "From the time that he put Joseph in charge of his household and all he owned, the LORD blessed the Egyptian’s household on account of him. The LORD’s blessing was on everything he owned, both in his house and in his field." + }, + { + "verseNum": 6, + "text": "So Potiphar left all that he owned in Joseph’s care; he did not concern himself with anything except the food he ate.\n \nNow Joseph was well-built and handsome," + }, + { + "verseNum": 7, + "text": "and after some time his master’s wife cast her eyes upon Joseph and said, “Sleep with me.”" + }, + { + "verseNum": 8, + "text": "But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care." + }, + { + "verseNum": 9, + "text": "No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great evil and sin against God?”" + }, + { + "verseNum": 10, + "text": "Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her." + }, + { + "verseNum": 11, + "text": "One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside." + }, + { + "verseNum": 12, + "text": "She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he escaped and ran outside." + }, + { + "verseNum": 13, + "text": "When she saw that he had left his cloak in her hand and had run out of the house," + }, + { + "verseNum": 14, + "text": "she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could." + }, + { + "verseNum": 15, + "text": "When he heard me scream for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 16, + "text": "So Potiphar’s wife kept Joseph’s cloak beside her until his master came home." + }, + { + "verseNum": 17, + "text": "Then she told him the same story: “The Hebrew slave you brought us came to me to make sport of me," + }, + { + "verseNum": 18, + "text": "but when I screamed for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 19, + "text": "When his master heard the story his wife told him, saying, “This is what your slave did to me,” he burned with anger." + }, + { + "verseNum": 20, + "text": "So Joseph’s master took him and had him thrown into the prison where the king’s prisoners were confined.\n \nWhile Joseph was there in the prison," + }, + { + "verseNum": 21, + "text": "the LORD was with him and extended kindness to him, granting him favor in the eyes of the prison warden." + }, + { + "verseNum": 22, + "text": "And the warden put all the prisoners under Joseph’s care, so that he was responsible for all that was done in the prison." + }, + { + "verseNum": 23, + "text": "The warden did not concern himself with anything under Joseph’s care, because the LORD was with Joseph and gave him success in whatever he did." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-4.json b/data/en_bible/BSB/GEN/chapter-4.json new file mode 100644 index 0000000..0eaa4a5 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-4.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "And Adam had relations with his wife Eve, and she conceived and gave birth to Cain.\n \n“With the help of the LORD I have brought forth a man,” she said." + }, + { + "verseNum": 2, + "text": "Later she gave birth to Cain’s brother Abel.\n \nNow Abel was a keeper of sheep, while Cain was a tiller of the soil." + }, + { + "verseNum": 3, + "text": "So in the course of time, Cain brought some of the fruit of the soil as an offering to the LORD," + }, + { + "verseNum": 4, + "text": "while Abel brought the best portions of the firstborn of his flock.\n \nAnd the LORD looked with favor on Abel and his offering," + }, + { + "verseNum": 5, + "text": "but He had no regard for Cain and his offering. So Cain became very angry, and his countenance fell." + }, + { + "verseNum": 6, + "text": "“Why are you angry,” said the LORD to Cain, “and why has your countenance fallen?" + }, + { + "verseNum": 7, + "text": "If you do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master it.”" + }, + { + "verseNum": 8, + "text": "Then Cain said to his brother Abel, “Let us go out to the field.” And while they were in the field, Cain rose up against his brother Abel and killed him." + }, + { + "verseNum": 9, + "text": "And the LORD said to Cain, “Where is your brother Abel?”\n \n“I do not know!” he answered. “Am I my brother’s keeper?”" + }, + { + "verseNum": 10, + "text": "“What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground." + }, + { + "verseNum": 11, + "text": "Now you are cursed and banished from the ground, which has opened its mouth to receive your brother’s blood from your hand." + }, + { + "verseNum": 12, + "text": "When you till the ground, it will no longer yield its produce to you. You will be a fugitive and a wanderer on the earth.”" + }, + { + "verseNum": 13, + "text": "But Cain said to the LORD, “My punishment is greater than I can bear." + }, + { + "verseNum": 14, + "text": "Behold, this day You have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and whoever finds me will kill me.”" + }, + { + "verseNum": 15, + "text": "“Not so!” replied the LORD. “If anyone slays Cain, then Cain will be avenged sevenfold.” And the LORD placed a mark on Cain, so that no one who found him would kill him." + }, + { + "verseNum": 16, + "text": "So Cain went out from the presence of the LORD and settled in the land of Nod, east of Eden." + }, + { + "verseNum": 17, + "text": "And Cain had relations with his wife, and she conceived and gave birth to Enoch. Then Cain built a city and named it after his son Enoch." + }, + { + "verseNum": 18, + "text": "Now to Enoch was born Irad, and Irad was the father of Mehujael, and Mehujael was the father of Methusael, and Methusael was the father of Lamech." + }, + { + "verseNum": 19, + "text": "And Lamech married two women, one named Adah and the other Zillah." + }, + { + "verseNum": 20, + "text": "Adah gave birth to Jabal; he was the father of those who dwell in tents and raise livestock." + }, + { + "verseNum": 21, + "text": "And his brother’s name was Jubal; he was the father of all who play the harp and flute." + }, + { + "verseNum": 22, + "text": "And Zillah gave birth to Tubal-cain, a forger of every implement of bronze and iron. And the sister of Tubal-cain was Naamah." + }, + { + "verseNum": 23, + "text": "Then Lamech said to his wives:\n \n “Adah and Zillah, hear my voice;\n wives of Lamech, listen to my speech.\n For I have slain a man for wounding me,\n a young man for striking me." + }, + { + "verseNum": 24, + "text": "If Cain is avenged sevenfold,\n then Lamech seventy-sevenfold.”" + }, + { + "verseNum": 25, + "text": "And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in place of Abel, since Cain killed him.”" + }, + { + "verseNum": 26, + "text": "And to Seth also a son was born, and he called him Enosh.\n \nAt that time men began to call upon the name of the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-40.json b/data/en_bible/BSB/GEN/chapter-40.json new file mode 100644 index 0000000..85aae88 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-40.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Some time later, the king’s cupbearer and baker offended their master, the king of Egypt." + }, + { + "verseNum": 2, + "text": "Pharaoh was angry with his two officers, the chief cupbearer and the chief baker," + }, + { + "verseNum": 3, + "text": "and imprisoned them in the house of the captain of the guard, the same prison where Joseph was confined." + }, + { + "verseNum": 4, + "text": "The captain of the guard assigned them to Joseph, and he became their personal attendant.\n \nAfter they had been in custody for some time," + }, + { + "verseNum": 5, + "text": "both of these men—the Egyptian king’s cupbearer and baker, who were being held in the prison—had a dream on the same night, and each dream had its own meaning." + }, + { + "verseNum": 6, + "text": "When Joseph came to them in the morning, he saw that they were distraught." + }, + { + "verseNum": 7, + "text": "So he asked the officials of Pharaoh who were in custody with him in his master’s house, “Why are your faces so downcast today?”" + }, + { + "verseNum": 8, + "text": "“We both had dreams,” they replied, “but there is no one to interpret them.”\n \nThen Joseph said to them, “Don’t interpretations belong to God? Tell me your dreams.”" + }, + { + "verseNum": 9, + "text": "So the chief cupbearer told Joseph his dream: “In my dream there was a vine before me," + }, + { + "verseNum": 10, + "text": "and on the vine were three branches. As it budded, its blossoms opened and its clusters ripened into grapes." + }, + { + "verseNum": 11, + "text": "Pharaoh’s cup was in my hand, and I took the grapes, squeezed them into his cup, and placed the cup in his hand.”" + }, + { + "verseNum": 12, + "text": "Joseph replied, “This is the interpretation: The three branches are three days." + }, + { + "verseNum": 13, + "text": "Within three days Pharaoh will lift up your head and restore your position. You will put Pharaoh’s cup in his hand, just as you did when you were his cupbearer." + }, + { + "verseNum": 14, + "text": "But when it goes well for you, please remember me and show me kindness by mentioning me to Pharaoh, that he might bring me out of this prison." + }, + { + "verseNum": 15, + "text": "For I was kidnapped from the land of the Hebrews, and even here I have done nothing for which they should have put me in this dungeon.”" + }, + { + "verseNum": 16, + "text": "When the chief baker saw that the interpretation was favorable, he said to Joseph, “I too had a dream: There were three baskets of white bread on my head." + }, + { + "verseNum": 17, + "text": "In the top basket were all sorts of baked goods for Pharaoh, but the birds were eating them out of the basket on my head.”" + }, + { + "verseNum": 18, + "text": "Joseph replied, “This is the interpretation: The three baskets are three days." + }, + { + "verseNum": 19, + "text": "Within three days Pharaoh will lift off your head and hang you on a tree. Then the birds will eat the flesh of your body.”" + }, + { + "verseNum": 20, + "text": "On the third day, which was Pharaoh’s birthday, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker." + }, + { + "verseNum": 21, + "text": "Pharaoh restored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand." + }, + { + "verseNum": 22, + "text": "But Pharaoh hanged the chief baker, just as Joseph had described to them in his interpretation." + }, + { + "verseNum": 23, + "text": "The chief cupbearer, however, did not remember Joseph; he forgot all about him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-41.json b/data/en_bible/BSB/GEN/chapter-41.json new file mode 100644 index 0000000..19c7423 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-41.json @@ -0,0 +1,233 @@ +{ + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "After two full years had passed, Pharaoh had a dream: He was standing beside the Nile," + }, + { + "verseNum": 2, + "text": "when seven cows, sleek and well-fed, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 3, + "text": "After them, seven other cows, sickly and thin, came up from the Nile and stood beside the well-fed cows on the bank of the river." + }, + { + "verseNum": 4, + "text": "And the cows that were sickly and thin devoured the seven sleek, well-fed cows.\n \nThen Pharaoh woke up," + }, + { + "verseNum": 5, + "text": "but he fell back asleep and dreamed a second time: Seven heads of grain, plump and ripe, came up on one stalk." + }, + { + "verseNum": 6, + "text": "After them, seven other heads of grain sprouted, thin and scorched by the east wind." + }, + { + "verseNum": 7, + "text": "And the thin heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it was a dream." + }, + { + "verseNum": 8, + "text": "In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one could interpret them for him." + }, + { + "verseNum": 9, + "text": "Then the chief cupbearer said to Pharaoh, “Today I recall my failures." + }, + { + "verseNum": 10, + "text": "Pharaoh was once angry with his servants, and he put me and the chief baker in the custody of the captain of the guard." + }, + { + "verseNum": 11, + "text": "One night both the chief baker and I had dreams, and each dream had its own meaning." + }, + { + "verseNum": 12, + "text": "Now a young Hebrew was there with us, a servant of the captain of the guard. We told him our dreams and he interpreted them for us individually." + }, + { + "verseNum": 13, + "text": "And it happened to us just as he had interpreted: I was restored to my position, and the other man was hanged.”" + }, + { + "verseNum": 14, + "text": "So Pharaoh sent for Joseph, who was quickly brought out of the dungeon. After he had shaved and changed his clothes, he went in before Pharaoh." + }, + { + "verseNum": 15, + "text": "Pharaoh said to Joseph, “I had a dream, and no one can interpret it. But I have heard it said of you that when you hear a dream you can interpret it.”" + }, + { + "verseNum": 16, + "text": "“I myself cannot do it,” Joseph replied, “but God will give Pharaoh a sound answer.”" + }, + { + "verseNum": 17, + "text": "Then Pharaoh said to Joseph: “In my dream I was standing on the bank of the Nile," + }, + { + "verseNum": 18, + "text": "when seven cows, well-fed and sleek, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 19, + "text": "After them, seven other cows—sickly, ugly, and thin—came up. I have never seen such ugly cows in all the land of Egypt!" + }, + { + "verseNum": 20, + "text": "Then the thin, ugly cows devoured the seven well-fed cows that were there first." + }, + { + "verseNum": 21, + "text": "When they had devoured them, however, no one could tell that they had done so; their appearance was as ugly as it had been before. Then I awoke." + }, + { + "verseNum": 22, + "text": "In my dream I also saw seven heads of grain, plump and ripe, growing on a single stalk." + }, + { + "verseNum": 23, + "text": "After them, seven other heads of grain sprouted—withered, thin, and scorched by the east wind." + }, + { + "verseNum": 24, + "text": "And the thin heads of grain swallowed the seven plump ones.\n \nI told this dream to the magicians, but no one could explain it to me.”" + }, + { + "verseNum": 25, + "text": "At this, Joseph said to Pharaoh, “The dreams of Pharaoh are one and the same. God has revealed to Pharaoh what He is about to do." + }, + { + "verseNum": 26, + "text": "The seven good cows are seven years, and the seven ripe heads of grain are seven years. The dreams have the same meaning." + }, + { + "verseNum": 27, + "text": "Moreover, the seven thin, ugly cows that came up after them are seven years, and so are the seven worthless heads of grain scorched by the east wind—they are seven years of famine." + }, + { + "verseNum": 28, + "text": "It is just as I said to Pharaoh: God has shown Pharaoh what He is about to do." + }, + { + "verseNum": 29, + "text": "Behold, seven years of great abundance are coming throughout the land of Egypt," + }, + { + "verseNum": 30, + "text": "but seven years of famine will follow them. Then all the abundance in the land of Egypt will be forgotten, and the famine will devastate the land." + }, + { + "verseNum": 31, + "text": "The abundance in the land will not be remembered, since the famine that follows it will be so severe." + }, + { + "verseNum": 32, + "text": "Moreover, because the dream was given to Pharaoh in two versions, the matter has been decreed by God, and He will carry it out shortly." + }, + { + "verseNum": 33, + "text": "Now, therefore, Pharaoh should look for a discerning and wise man and set him over the land of Egypt." + }, + { + "verseNum": 34, + "text": "Let Pharaoh take action and appoint commissioners over the land to take a fifth of the harvest of Egypt during the seven years of abundance." + }, + { + "verseNum": 35, + "text": "Under the authority of Pharaoh, let them collect all the excess food from these good years, that they may come and lay up the grain to be preserved as food in the cities." + }, + { + "verseNum": 36, + "text": "This food will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Then the country will not perish in the famine.”" + }, + { + "verseNum": 37, + "text": "This proposal pleased Pharaoh and all his officials." + }, + { + "verseNum": 38, + "text": "So Pharaoh asked them, “Can we find anyone like this man, in whom the Spirit of God abides?”" + }, + { + "verseNum": 39, + "text": "Then Pharaoh said to Joseph, “Since God has made all this known to you, there is no one as discerning and wise as you." + }, + { + "verseNum": 40, + "text": "You shall be in charge of my house, and all my people are to obey your commands. Only with regard to the throne will I be greater than you.”" + }, + { + "verseNum": 41, + "text": "Pharaoh also told Joseph, “I hereby place you over all the land of Egypt.”" + }, + { + "verseNum": 42, + "text": "Then Pharaoh removed the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine linen, and placed a gold chain around his neck." + }, + { + "verseNum": 43, + "text": "He had Joseph ride in his second chariot, with men calling out before him, “Bow the knee!” So he placed him over all the land of Egypt." + }, + { + "verseNum": 44, + "text": "And Pharaoh declared to Joseph, “I am Pharaoh, but without your permission, no one in all the land of Egypt shall lift his hand or foot.”" + }, + { + "verseNum": 45, + "text": "Pharaoh gave Joseph the name Zaphenath-paneah, and he gave him Asenath daughter of Potiphera, priest of On, to be his wife. And Joseph took charge of all the land of Egypt." + }, + { + "verseNum": 46, + "text": "Now Joseph was thirty years old when he entered the service of Pharaoh king of Egypt. And Joseph left Pharaoh’s presence and traveled throughout the land of Egypt." + }, + { + "verseNum": 47, + "text": "During the seven years of abundance, the land brought forth bountifully." + }, + { + "verseNum": 48, + "text": "During those seven years, Joseph collected all the excess food in the land of Egypt and stored it in the cities. In every city he laid up the food from the fields around it." + }, + { + "verseNum": 49, + "text": "So Joseph stored up grain in such abundance, like the sand of the sea, that he stopped keeping track of it; for it was beyond measure." + }, + { + "verseNum": 50, + "text": "Before the years of famine arrived, two sons were born to Joseph by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 51, + "text": "Joseph named the firstborn Manasseh, saying, “God has made me forget all my hardship and all my father’s household.”" + }, + { + "verseNum": 52, + "text": "And the second son he named Ephraim, saying, “God has made me fruitful in the land of my affliction.”" + }, + { + "verseNum": 53, + "text": "When the seven years of abundance in the land of Egypt came to an end," + }, + { + "verseNum": 54, + "text": "the seven years of famine began, just as Joseph had said. And although there was famine in every country, there was food throughout the land of Egypt." + }, + { + "verseNum": 55, + "text": "When extreme hunger came to all the land of Egypt and the people cried out to Pharaoh for food, he told all the Egyptians, “Go to Joseph and do whatever he tells you.”" + }, + { + "verseNum": 56, + "text": "When the famine had spread over all the land, Joseph opened up all the storehouses and sold grain to the Egyptians; for the famine was severe in the land of Egypt." + }, + { + "verseNum": 57, + "text": "And every nation came to Joseph in Egypt to buy grain, because the famine was severe over all the earth." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-42.json b/data/en_bible/BSB/GEN/chapter-42.json new file mode 100644 index 0000000..d2e7570 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-42.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "When Jacob learned that there was grain in Egypt, he said to his sons, “Why are you staring at one another?”" + }, + { + "verseNum": 2, + "text": "“Look,” he added, “I have heard that there is grain in Egypt. Go down there and buy some for us, so that we may live and not die.”" + }, + { + "verseNum": 3, + "text": "So ten of Joseph’s brothers went down to buy grain from Egypt." + }, + { + "verseNum": 4, + "text": "But Jacob did not send Joseph’s brother Benjamin with his brothers, for he said, “I am afraid that harm might befall him.”" + }, + { + "verseNum": 5, + "text": "So the sons of Israel were among those who came to buy grain, since the famine had also spread to the land of Canaan." + }, + { + "verseNum": 6, + "text": "Now Joseph was the ruler of the land; he was the one who sold grain to all its people. So when his brothers arrived, they bowed down before him with their faces to the ground." + }, + { + "verseNum": 7, + "text": "And when Joseph saw his brothers, he recognized them, but he treated them as strangers and spoke harshly to them. “Where have you come from?” he asked.\n \n“From the land of Canaan,” they replied. “We are here to buy food.”" + }, + { + "verseNum": 8, + "text": "Although Joseph recognized his brothers, they did not recognize him." + }, + { + "verseNum": 9, + "text": "Joseph remembered his dreams about them and said, “You are spies! You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 10, + "text": "“Not so, my lord,” they replied. “Your servants have come to buy food." + }, + { + "verseNum": 11, + "text": "We are all sons of one man. Your servants are honest men, not spies.”" + }, + { + "verseNum": 12, + "text": "“No,” he told them. “You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 13, + "text": "But they answered, “Your servants are twelve brothers, the sons of one man in the land of Canaan. The youngest is now with our father, and one is no more.”" + }, + { + "verseNum": 14, + "text": "Then Joseph declared, “Just as I said, you are spies!" + }, + { + "verseNum": 15, + "text": "And this is how you will be tested: As surely as Pharaoh lives, you shall not leave this place unless your youngest brother comes here." + }, + { + "verseNum": 16, + "text": "Send one of your number to get your brother; the rest of you will be confined so that the truth of your words may be tested. If they are untrue, then as surely as Pharaoh lives, you are spies!”" + }, + { + "verseNum": 17, + "text": "So Joseph imprisoned them for three days," + }, + { + "verseNum": 18, + "text": "and on the third day he said to them, “I fear God. So do this and you will live:" + }, + { + "verseNum": 19, + "text": "If you are honest, leave one of your brothers in custody while the rest of you go and take back grain to relieve the hunger of your households." + }, + { + "verseNum": 20, + "text": "Then bring your youngest brother to me so that your words can be verified, that you may not die.”\n \nAnd to this they consented." + }, + { + "verseNum": 21, + "text": "Then they said to one another, “Surely we are being punished because of our brother. We saw his anguish when he pleaded with us, but we would not listen. That is why this distress has come upon us.”" + }, + { + "verseNum": 22, + "text": "And Reuben responded, “Didn’t I tell you not to sin against the boy? But you would not listen. Now we must account for his blood!”" + }, + { + "verseNum": 23, + "text": "They did not realize that Joseph understood them, since there was an interpreter between them." + }, + { + "verseNum": 24, + "text": "And he turned away from them and wept. When he turned back and spoke to them, he took Simeon from them and had him bound before their eyes." + }, + { + "verseNum": 25, + "text": "Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. This order was carried out," + }, + { + "verseNum": 26, + "text": "and they loaded the grain on their donkeys and departed." + }, + { + "verseNum": 27, + "text": "At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack." + }, + { + "verseNum": 28, + "text": "“My silver has been returned!” he said to his brothers. “It is here in my sack.”\n \nTheir hearts sank, and trembling, they turned to one another and said, “What is this that God has done to us?”" + }, + { + "verseNum": 29, + "text": "When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them:" + }, + { + "verseNum": 30, + "text": "“The man who is lord of the land spoke harshly to us and accused us of spying on the country." + }, + { + "verseNum": 31, + "text": "But we told him, ‘We are honest men, not spies." + }, + { + "verseNum": 32, + "text": "We are twelve brothers, sons of one father. One is no more, and the youngest is now with our father in the land of Canaan.’" + }, + { + "verseNum": 33, + "text": "Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go." + }, + { + "verseNum": 34, + "text": "But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and you can trade in the land.’”" + }, + { + "verseNum": 35, + "text": "As they began emptying their sacks, there in each man’s sack was his bag of silver! And when they and their father saw the bags of silver, they were dismayed." + }, + { + "verseNum": 36, + "text": "Their father Jacob said to them, “You have deprived me of my sons. Joseph is gone and Simeon is no more. Now you want to take Benjamin. Everything is going against me!”" + }, + { + "verseNum": 37, + "text": "Then Reuben said to his father, “You may kill my two sons if I fail to bring him back to you. Put him in my care, and I will return him.”" + }, + { + "verseNum": 38, + "text": "But Jacob replied, “My son will not go down there with you, for his brother is dead, and he alone is left. If any harm comes to him on your journey, you will bring my gray hair down to Sheol in sorrow.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-43.json b/data/en_bible/BSB/GEN/chapter-43.json new file mode 100644 index 0000000..feb146a --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-43.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Now the famine was still severe in the land." + }, + { + "verseNum": 2, + "text": "So when Jacob’s sons had eaten all the grain they had brought from Egypt, their father said to them, “Go back and buy us a little more food.”" + }, + { + "verseNum": 3, + "text": "But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your brother is with you.’" + }, + { + "verseNum": 4, + "text": "If you will send our brother with us, we will go down and buy food for you." + }, + { + "verseNum": 5, + "text": "But if you will not send him, we will not go; for the man told us, ‘You will not see my face again unless your brother is with you.’”" + }, + { + "verseNum": 6, + "text": "“Why did you bring this trouble upon me?” Israel asked. “Why did you tell the man you had another brother?”" + }, + { + "verseNum": 7, + "text": "They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possibly know that he would say, ‘Bring your brother here’?”" + }, + { + "verseNum": 8, + "text": "And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children." + }, + { + "verseNum": 9, + "text": "I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may I bear the guilt before you all my life." + }, + { + "verseNum": 10, + "text": "If we had not delayed, we could have come and gone twice by now.”" + }, + { + "verseNum": 11, + "text": "Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry them down as a gift for the man—a little balm and a little honey, spices and myrrh, pistachios and almonds." + }, + { + "verseNum": 12, + "text": "Take double the silver with you so that you may return the silver that was put back into the mouths of your sacks. Perhaps it was a mistake." + }, + { + "verseNum": 13, + "text": "Take your brother as well, and return to the man at once." + }, + { + "verseNum": 14, + "text": "May God Almighty grant you mercy before the man, that he may release your other brother along with Benjamin. As for me, if I am bereaved, I am bereaved.”" + }, + { + "verseNum": 15, + "text": "So the men took these gifts, along with double the amount of silver, and Benjamin as well. Then they hurried down to Egypt and stood before Joseph." + }, + { + "verseNum": 16, + "text": "When Joseph saw Benjamin with his brothers, he said to the steward of his house, “Take these men to my house. Slaughter an animal and prepare it, for they shall dine with me at noon.”" + }, + { + "verseNum": 17, + "text": "The man did as Joseph had commanded and took the brothers to Joseph’s house." + }, + { + "verseNum": 18, + "text": "But the brothers were frightened that they had been taken to Joseph’s house. “We have been brought here because of the silver that was returned in our bags the first time,” they said. “They intend to overpower us and take us as slaves, along with our donkeys.”" + }, + { + "verseNum": 19, + "text": "So they approached Joseph’s steward and spoke to him at the entrance to the house." + }, + { + "verseNum": 20, + "text": "“Please, sir,” they said, “we really did come down here the first time to buy food." + }, + { + "verseNum": 21, + "text": "But when we came to the place we lodged for the night, we opened our sacks and, behold, each of us found his silver in the mouth of his sack! It was the full amount of our silver, and we have brought it back with us." + }, + { + "verseNum": 22, + "text": "We have brought additional silver with us to buy food. We do not know who put our silver in our sacks.”" + }, + { + "verseNum": 23, + "text": "“It is fine,” said the steward. “Do not be afraid. Your God, the God of your father, gave you the treasure that was in your sacks. I received your silver.” Then he brought Simeon out to them." + }, + { + "verseNum": 24, + "text": "And the steward took the men into Joseph’s house, gave them water to wash their feet, and provided food for their donkeys." + }, + { + "verseNum": 25, + "text": "Since the brothers had been told that they were going to eat a meal there, they prepared their gift for Joseph’s arrival at noon." + }, + { + "verseNum": 26, + "text": "When Joseph came home, they presented him with the gifts they had brought, and they bowed to the ground before him." + }, + { + "verseNum": 27, + "text": "He asked if they were well, and then he asked, “How is your elderly father you told me about? Is he still alive?”" + }, + { + "verseNum": 28, + "text": "“Your servant our father is well,” they answered. “He is still alive.” And they bowed down to honor him." + }, + { + "verseNum": 29, + "text": "When Joseph looked up and saw his brother Benjamin, his own mother’s son, he asked, “Is this your youngest brother, the one you told me about?” Then he declared, “May God be gracious to you, my son.”" + }, + { + "verseNum": 30, + "text": "Joseph hurried out because he was moved to tears for his brother, and he went to a private room to weep." + }, + { + "verseNum": 31, + "text": "Then he washed his face and came back out. Regaining his composure, he said, “Serve the meal.”" + }, + { + "verseNum": 32, + "text": "They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, since that was detestable to them." + }, + { + "verseNum": 33, + "text": "They were seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at one another in astonishment." + }, + { + "verseNum": 34, + "text": "When the portions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank freely with Joseph." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-44.json b/data/en_bible/BSB/GEN/chapter-44.json new file mode 100644 index 0000000..11ed467 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-44.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the mouth of his sack." + }, + { + "verseNum": 2, + "text": "Put my cup, the silver one, in the mouth of the youngest one’s sack, along with the silver for his grain.”\n \nSo the steward did as Joseph had instructed." + }, + { + "verseNum": 3, + "text": "At daybreak, the men were sent on their way with their donkeys." + }, + { + "verseNum": 4, + "text": "They had not gone far from the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, ask, ‘Why have you repaid good with evil?" + }, + { + "verseNum": 5, + "text": "Is this not the cup my master drinks from and uses for divination? What you have done is wicked!’”" + }, + { + "verseNum": 6, + "text": "When the steward overtook them, he relayed these words to them." + }, + { + "verseNum": 7, + "text": "“Why does my lord say these things?” they asked. “Your servants could not possibly do such a thing." + }, + { + "verseNum": 8, + "text": "We even brought back to you from the land of Canaan the silver we found in the mouths of our sacks. Why would we steal silver or gold from your master’s house?" + }, + { + "verseNum": 9, + "text": "If any of your servants is found to have it, he must die, and the rest will become slaves of my lord.”" + }, + { + "verseNum": 10, + "text": "“As you say,” replied the steward. “But only the one who is found with the cup will be my slave, and the rest of you shall be free of blame.”" + }, + { + "verseNum": 11, + "text": "So each one quickly lowered his sack to the ground and opened it." + }, + { + "verseNum": 12, + "text": "The steward searched, beginning with the oldest and ending with the youngest—and the cup was found in Benjamin’s sack." + }, + { + "verseNum": 13, + "text": "Then they all tore their clothes, loaded their donkeys, and returned to the city." + }, + { + "verseNum": 14, + "text": "When Judah and his brothers arrived at Joseph’s house, he was still there, and they fell to the ground before him." + }, + { + "verseNum": 15, + "text": "“What is this deed you have done?” Joseph declared. “Do you not know that a man like me can surely divine the truth?”" + }, + { + "verseNum": 16, + "text": "“What can we say to my lord?” Judah replied. “How can we plead? How can we justify ourselves? God has exposed the iniquity of your servants. We are now my lord’s slaves—both we and the one who was found with the cup.”" + }, + { + "verseNum": 17, + "text": "But Joseph replied, “Far be it from me to do this. The man who was found with the cup will be my slave. The rest of you may return to your father in peace.”" + }, + { + "verseNum": 18, + "text": "Then Judah approached Joseph and said, “Sir, please let your servant speak personally to my lord. Do not be angry with your servant, for you are equal to Pharaoh himself." + }, + { + "verseNum": 19, + "text": "My lord asked his servants, ‘Do you have a father or a brother?’" + }, + { + "verseNum": 20, + "text": "And we answered, ‘We have an elderly father and a younger brother, the child of his old age. The boy’s brother is dead. He is the only one of his mother’s sons left, and his father loves him.’" + }, + { + "verseNum": 21, + "text": "Then you told your servants, ‘Bring him down to me so that I can see him for myself.’" + }, + { + "verseNum": 22, + "text": "So we said to my lord, ‘The boy cannot leave his father. If he were to leave, his father would die.’" + }, + { + "verseNum": 23, + "text": "But you said to your servants, ‘Unless your younger brother comes down with you, you will not see my face again.’" + }, + { + "verseNum": 24, + "text": "Now when we returned to your servant my father, we relayed your words to him." + }, + { + "verseNum": 25, + "text": "Then our father said, ‘Go back and buy us some food.’" + }, + { + "verseNum": 26, + "text": "But we answered, ‘We cannot go down there unless our younger brother goes with us. So if our younger brother is not with us, we cannot see the man.’" + }, + { + "verseNum": 27, + "text": "And your servant my father said to us, ‘You know that my wife bore me two sons." + }, + { + "verseNum": 28, + "text": "When one of them was gone, I said: “Surely he has been torn to pieces.” And I have not seen him since." + }, + { + "verseNum": 29, + "text": "Now if you also take this one from me and harm comes to him, you will bring my gray hair down to Sheol in sorrow.’" + }, + { + "verseNum": 30, + "text": "So if the boy is not with us when I return to your servant, and if my father, whose life is wrapped up in the boy’s life," + }, + { + "verseNum": 31, + "text": "sees that the boy is not with us, he will die. Then your servants will have brought the gray hair of your servant our father down to Sheol in sorrow." + }, + { + "verseNum": 32, + "text": "Indeed, your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my life.’" + }, + { + "verseNum": 33, + "text": "Now please let your servant stay here as my lord’s slave in place of the boy. Let him return with his brothers." + }, + { + "verseNum": 34, + "text": "For how can I go back to my father without the boy? I could not bear to see the misery that would overwhelm him.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-45.json b/data/en_bible/BSB/GEN/chapter-45.json new file mode 100644 index 0000000..1fab3e0 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-45.json @@ -0,0 +1,117 @@ +{ + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!”\n \nSo none of them were with Joseph when he made himself known to his brothers." + }, + { + "verseNum": 2, + "text": "But he wept so loudly that the Egyptians heard him, and Pharaoh’s household soon heard of it." + }, + { + "verseNum": 3, + "text": "Joseph said to his brothers, “I am Joseph! Is my father still alive?”\n \nBut they were unable to answer him, because they were terrified in his presence." + }, + { + "verseNum": 4, + "text": "Then Joseph said to his brothers, “Please come near me.” And they did so.\n \n“I am Joseph, your brother,” he said, “the one you sold into Egypt!" + }, + { + "verseNum": 5, + "text": "And now, do not be distressed or angry with yourselves that you sold me into this place, because it was to save lives that God sent me before you." + }, + { + "verseNum": 6, + "text": "For the famine has covered the land these two years, and there will be five more years without plowing or harvesting." + }, + { + "verseNum": 7, + "text": "God sent me before you to preserve you as a remnant on the earth and to save your lives by a great deliverance." + }, + { + "verseNum": 8, + "text": "Therefore it was not you who sent me here, but God, who has made me a father to Pharaoh—lord of all his household and ruler over all the land of Egypt." + }, + { + "verseNum": 9, + "text": "Now return quickly to my father and tell him, ‘This is what your son Joseph says: God has made me lord of all Egypt. Come down to me without delay." + }, + { + "verseNum": 10, + "text": "You shall settle in the land of Goshen and be near me—you and your children and grandchildren, your flocks and herds, and everything you own." + }, + { + "verseNum": 11, + "text": "And there I will provide for you, because there will be five more years of famine. Otherwise, you and your household and everything you own will come to destitution.’" + }, + { + "verseNum": 12, + "text": "Behold! You and my brother Benjamin can see that I, Joseph, am the one speaking with you." + }, + { + "verseNum": 13, + "text": "Tell my father about all my splendor in Egypt and everything you have seen. And bring my father down here quickly.”" + }, + { + "verseNum": 14, + "text": "Then Joseph threw his arms around his brother Benjamin and wept, and Benjamin wept as they embraced." + }, + { + "verseNum": 15, + "text": "Joseph kissed each of his brothers as he wept over them. And afterward his brothers talked with him." + }, + { + "verseNum": 16, + "text": "When the news reached Pharaoh’s house that Joseph’s brothers had come, Pharaoh and his servants were pleased." + }, + { + "verseNum": 17, + "text": "Pharaoh said to Joseph, “Tell your brothers, ‘Do as follows: Load your animals and return to the land of Canaan." + }, + { + "verseNum": 18, + "text": "Then bring your father and your families and return to me. I will give you the best of the land of Egypt, and you shall eat from the fat of the land.’" + }, + { + "verseNum": 19, + "text": "You are also directed to tell them: ‘Take wagons from the land of Egypt for your young children and your wives, and bring your father and come back." + }, + { + "verseNum": 20, + "text": "But pay no regard to your belongings, for the best of all the land of Egypt is yours.’”" + }, + { + "verseNum": 21, + "text": "So the sons of Israel did as they were told. Joseph gave them wagons as Pharaoh had instructed, and he also gave them provisions for their journey." + }, + { + "verseNum": 22, + "text": "He gave new garments to each of them, but to Benjamin he gave three hundred shekels of silver and five sets of clothes." + }, + { + "verseNum": 23, + "text": "And he sent to his father the following: ten donkeys loaded with the best of Egypt, and ten female donkeys loaded with grain and bread and provisions for his father’s journey." + }, + { + "verseNum": 24, + "text": "Then Joseph sent his brothers on their way, and as they were leaving, he said to them, “Do not quarrel on the way!”" + }, + { + "verseNum": 25, + "text": "So the brothers went up out of Egypt and came to their father Jacob in the land of Canaan." + }, + { + "verseNum": 26, + "text": "“Joseph is still alive,” they said, “and he is ruler over all the land of Egypt!”\n \nBut Jacob was stunned, for he did not believe them." + }, + { + "verseNum": 27, + "text": "However, when they relayed all that Joseph had told them, and when he saw the wagons that Joseph had sent to carry him back, the spirit of their father Jacob was revived." + }, + { + "verseNum": 28, + "text": "“Enough!” declared Israel. “My son Joseph is still alive! I will go to see him before I die.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-46.json b/data/en_bible/BSB/GEN/chapter-46.json new file mode 100644 index 0000000..915e006 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-46.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "So Israel set out with all that he had, and when he came to Beersheba, he offered sacrifices to the God of his father Isaac." + }, + { + "verseNum": 2, + "text": "And that night God spoke to Israel in a vision: “Jacob, Jacob!” He said.\n \n“Here I am,” replied Jacob." + }, + { + "verseNum": 3, + "text": "“I am God,” He said, “the God of your father. Do not be afraid to go down to Egypt, for I will make you into a great nation there." + }, + { + "verseNum": 4, + "text": "I will go down with you to Egypt, and I will surely bring you back. And Joseph’s own hands will close your eyes.”" + }, + { + "verseNum": 5, + "text": "Then Jacob departed from Beersheba, and the sons of Israel took their father Jacob in the wagons Pharaoh had sent to carry him, along with their children and wives." + }, + { + "verseNum": 6, + "text": "They also took the livestock and possessions they had acquired in the land of Canaan, and Jacob and all his offspring went to Egypt." + }, + { + "verseNum": 7, + "text": "Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaughters—all his offspring." + }, + { + "verseNum": 8, + "text": "Now these are the names of the sons of Israel (Jacob and his descendants) who went to Egypt: Reuben, Jacob’s firstborn." + }, + { + "verseNum": 9, + "text": "The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi." + }, + { + "verseNum": 10, + "text": "The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul the son of a Canaanite woman." + }, + { + "verseNum": 11, + "text": "The sons of Levi: Gershon, Kohath, and Merari." + }, + { + "verseNum": 12, + "text": "The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan.\n \n The sons of Perez: Hezron and Hamul." + }, + { + "verseNum": 13, + "text": "The sons of Issachar: Tola, Puvah, Job, and Shimron." + }, + { + "verseNum": 14, + "text": "The sons of Zebulun: Sered, Elon, and Jahleel." + }, + { + "verseNum": 15, + "text": "These are the sons of Leah born to Jacob in Paddan-aram, in addition to his daughter Dinah. The total number of sons and daughters was thirty-three." + }, + { + "verseNum": 16, + "text": "The sons of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli." + }, + { + "verseNum": 17, + "text": "The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah.\n \n The sons of Beriah: Heber and Malchiel." + }, + { + "verseNum": 18, + "text": "These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter Leah—sixteen in all." + }, + { + "verseNum": 19, + "text": "The sons of Jacob’s wife Rachel: Joseph and Benjamin." + }, + { + "verseNum": 20, + "text": "Manasseh and Ephraim were born to Joseph in the land of Egypt by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 21, + "text": "The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard." + }, + { + "verseNum": 22, + "text": "These are the sons of Rachel born to Jacob—fourteen in all." + }, + { + "verseNum": 23, + "text": "The son of Dan: Hushim." + }, + { + "verseNum": 24, + "text": "The sons of Naphtali: Jahzeel, Guni, Jezer, and Shillem." + }, + { + "verseNum": 25, + "text": "These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all." + }, + { + "verseNum": 26, + "text": "All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives of Jacob’s sons—numbered sixty-six persons." + }, + { + "verseNum": 27, + "text": "And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family who went to Egypt were seventy in all." + }, + { + "verseNum": 28, + "text": "Now Jacob had sent Judah ahead of him to Joseph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen," + }, + { + "verseNum": 29, + "text": "Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, embraced him, and wept profusely." + }, + { + "verseNum": 30, + "text": "Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you are still alive!”" + }, + { + "verseNum": 31, + "text": "Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the land of Canaan have come to me." + }, + { + "verseNum": 32, + "text": "The men are shepherds; they raise livestock, and they have brought their flocks and herds and all that they own.’" + }, + { + "verseNum": 33, + "text": "When Pharaoh summons you and asks, ‘What is your occupation?’" + }, + { + "verseNum": 34, + "text": "you are to say, ‘Your servants have raised livestock ever since our youth—both we and our fathers.’ Then you will be allowed to settle in the land of Goshen, since all shepherds are detestable to the Egyptians.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-47.json b/data/en_bible/BSB/GEN/chapter-47.json new file mode 100644 index 0000000..6cc7253 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-47.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "So Joseph went and told Pharaoh: “My father and my brothers, with their flocks and herds and all they own, have come from the land of Canaan and are now in Goshen.”" + }, + { + "verseNum": 2, + "text": "And he chose five of his brothers and presented them before Pharaoh." + }, + { + "verseNum": 3, + "text": "“What is your occupation?” Pharaoh asked Joseph’s brothers.\n \n“Your servants are shepherds,” they replied, “both we and our fathers.”" + }, + { + "verseNum": 4, + "text": "Then they said to Pharaoh, “We have come to live in the land for a time, because there is no pasture for the flocks of your servants, since the famine in the land of Canaan has been severe. So now, please allow your servants to settle in the land of Goshen.”" + }, + { + "verseNum": 5, + "text": "Pharaoh said to Joseph, “Now that your father and brothers have come to you," + }, + { + "verseNum": 6, + "text": "the land of Egypt is before you; settle your father and brothers in the best part of the land. They may dwell in the land of Goshen. And if you know of any talented men among them, put them in charge of my own livestock.”" + }, + { + "verseNum": 7, + "text": "Then Joseph brought in his father Jacob and presented him before Pharaoh, and Jacob blessed Pharaoh." + }, + { + "verseNum": 8, + "text": "“How many years have you lived?” Pharaoh asked." + }, + { + "verseNum": 9, + "text": "“My travels have lasted 130 years,” Jacob replied. “My years have been few and hard, and they have not matched the years of the travels of my fathers.”" + }, + { + "verseNum": 10, + "text": "Then Jacob blessed Pharaoh and departed from his presence." + }, + { + "verseNum": 11, + "text": "So Joseph settled his father and brothers in the land of Egypt and gave them property in the best part of the land, the district of Rameses, as Pharaoh had commanded." + }, + { + "verseNum": 12, + "text": "Joseph also provided his father and brothers and all his father’s household with food for their families." + }, + { + "verseNum": 13, + "text": "There was no food, however, in all that region, because the famine was so severe; the lands of Egypt and Canaan had been exhausted by the famine." + }, + { + "verseNum": 14, + "text": "Joseph collected all the money to be found in the land of Egypt and the land of Canaan in exchange for the grain they were buying, and he brought it into Pharaoh’s palace." + }, + { + "verseNum": 15, + "text": "When the money from the lands of Egypt and Canaan was gone, all the Egyptians came to Joseph and said, “Give us food. Why should we die before your eyes? For our funds have run out!”" + }, + { + "verseNum": 16, + "text": "“Then bring me your livestock,” said Joseph. “Since the money is gone, I will sell you food in exchange for your livestock.”" + }, + { + "verseNum": 17, + "text": "So they brought their livestock to Joseph, and he gave them food in exchange for their horses, their flocks and herds, and their donkeys. Throughout that year he provided them with food in exchange for all their livestock." + }, + { + "verseNum": 18, + "text": "When that year was over, they came to him the second year and said, “We cannot hide from our lord that our money is gone and all our livestock belongs to you. There is nothing left for our lord except our bodies and our land." + }, + { + "verseNum": 19, + "text": "Why should we perish before your eyes—we and our land as well? Purchase us and our land in exchange for food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not die, and that the land may not become desolate.”" + }, + { + "verseNum": 20, + "text": "So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. The land became Pharaoh’s," + }, + { + "verseNum": 21, + "text": "and Joseph reduced the people to servitude from one end of Egypt to the other." + }, + { + "verseNum": 22, + "text": "However, he did not acquire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not sell their land." + }, + { + "verseNum": 23, + "text": "Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this day, here is seed for you to sow in the land." + }, + { + "verseNum": 24, + "text": "At harvest time, you are to give a fifth of it to Pharaoh, and four-fifths will be yours as seed for the field and food for yourselves and your households and children.”" + }, + { + "verseNum": 25, + "text": "“You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be Pharaoh’s servants.”" + }, + { + "verseNum": 26, + "text": "So Joseph established a law that a fifth of the produce belongs to Pharaoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to Pharaoh." + }, + { + "verseNum": 27, + "text": "Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly in number." + }, + { + "verseNum": 28, + "text": "And Jacob lived in the land of Egypt seventeen years, and the length of his life was 147 years." + }, + { + "verseNum": 29, + "text": "When the time drew near for Israel to die, he called his son Joseph and said to him, “If I have found favor in your eyes, put your hand under my thigh and promise to show me kindness and faithfulness. Do not bury me in Egypt," + }, + { + "verseNum": 30, + "text": "but when I lie down with my fathers, carry me out of Egypt and bury me with them.”\n \nJoseph answered, “I will do as you have requested.”" + }, + { + "verseNum": 31, + "text": "“Swear to me,” Jacob said.\n \nSo Joseph swore to him, and Israel bowed in worship at the head of his bed." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-48.json b/data/en_bible/BSB/GEN/chapter-48.json new file mode 100644 index 0000000..57e918e --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-48.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Some time later Joseph was told, “Your father is ill.” So he set out with his two sons, Manasseh and Ephraim." + }, + { + "verseNum": 2, + "text": "When Jacob was told, “Your son Joseph has come to you,” Israel rallied his strength and sat up in bed." + }, + { + "verseNum": 3, + "text": "Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me" + }, + { + "verseNum": 4, + "text": "and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting possession.’" + }, + { + "verseNum": 5, + "text": "And now your two sons born to you in Egypt before I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine." + }, + { + "verseNum": 6, + "text": "Any children born to you after them shall be yours, and they shall be called by the names of their brothers in the territory they inherit." + }, + { + "verseNum": 7, + "text": "Now as for me, when I was returning from Paddan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” (that is, Bethlehem)." + }, + { + "verseNum": 8, + "text": "When Israel saw the sons of Joseph, he asked, “Who are these?”" + }, + { + "verseNum": 9, + "text": "Joseph said to his father, “They are the sons God has given me in this place.”\n \nSo Jacob said, “Please bring them to me, that I may bless them.”" + }, + { + "verseNum": 10, + "text": "Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced them." + }, + { + "verseNum": 11, + "text": "“I never expected to see your face again,” Israel said to Joseph, “but now God has let me see your children as well.”" + }, + { + "verseNum": 12, + "text": "Then Joseph removed his sons from his father’s knees and bowed facedown." + }, + { + "verseNum": 13, + "text": "And Joseph took both of them—with Ephraim in his right hand toward Israel’s left hand, and Manasseh in his left hand toward Israel’s right hand—and brought them close to him." + }, + { + "verseNum": 14, + "text": "But Israel stretched out his right hand and put it on the head of Ephraim, the younger; and crossing his hands, he put his left on Manasseh’s head, although Manasseh was the firstborn." + }, + { + "verseNum": 15, + "text": "Then he blessed Joseph and said:\n \n “May the God before whom my fathers Abraham and Isaac walked,\n the God who has been my shepherd all my life to this day," + }, + { + "verseNum": 16, + "text": "the angel who has redeemed me from all harm—\n may He bless these boys.\n And may they be called by my name\n and the names of my fathers Abraham and Isaac,\n and may they grow into a multitude upon the earth.”" + }, + { + "verseNum": 17, + "text": "When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from Ephraim’s head to Manasseh’s." + }, + { + "verseNum": 18, + "text": "“Not so, my father!” Joseph said. “This one is the firstborn; put your right hand on his head.”" + }, + { + "verseNum": 19, + "text": "But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his offspring shall become a multitude of nations.”" + }, + { + "verseNum": 20, + "text": "So that day Jacob blessed them and said:\n \n “By you shall Israel pronounce this blessing:\n ‘May God make you like Ephraim and Manasseh.’”\n \nSo he put Ephraim before Manasseh." + }, + { + "verseNum": 21, + "text": "Then Israel said to Joseph, “Look, I am about to die, but God will be with you and bring you back to the land of your fathers." + }, + { + "verseNum": 22, + "text": "And to you, as one who is above your brothers, I give the ridge of land that I took from the Amorites with my sword and bow.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-49.json b/data/en_bible/BSB/GEN/chapter-49.json new file mode 100644 index 0000000..fadb75c --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-49.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Then Jacob called for his sons and said, “Gather around so that I can tell you what will happen to you in the days to come:" + }, + { + "verseNum": 2, + "text": "Come together and listen, O sons of Jacob;\n listen to your father Israel." + }, + { + "verseNum": 3, + "text": "Reuben, you are my firstborn, my might,\n and the beginning of my strength,\n excelling in honor,\n excelling in power." + }, + { + "verseNum": 4, + "text": "Uncontrolled as the waters,\n you will no longer excel,\n because you went up to your father’s bed,\n onto my couch, and defiled it." + }, + { + "verseNum": 5, + "text": "Simeon and Levi are brothers;\n their swords are weapons of violence." + }, + { + "verseNum": 6, + "text": "May I never enter their council;\n may I never join their assembly.\n For they kill men in their anger,\n and hamstring oxen on a whim." + }, + { + "verseNum": 7, + "text": "Cursed be their anger, for it is strong,\n and their wrath, for it is cruel!\n I will disperse them in Jacob\n and scatter them in Israel." + }, + { + "verseNum": 8, + "text": "Judah, your brothers shall praise you.\n Your hand shall be on the necks of your enemies;\n your father’s sons shall bow down to you." + }, + { + "verseNum": 9, + "text": "Judah is a young lion—\n my son, you return from the prey.\n Like a lion he crouches and lies down;\n like a lioness, who dares to rouse him?" + }, + { + "verseNum": 10, + "text": "The scepter will not depart from Judah,\n nor the staff from between his feet,\n until Shiloh comes\n and the allegiance of the nations is his." + }, + { + "verseNum": 11, + "text": "He ties his donkey to the vine,\n his colt to the choicest branch.\n He washes his garments in wine,\n his robes in the blood of grapes." + }, + { + "verseNum": 12, + "text": "His eyes are darker than wine,\n and his teeth are whiter than milk." + }, + { + "verseNum": 13, + "text": "Zebulun shall dwell by the seashore\n and become a harbor for ships;\n his border shall extend to Sidon." + }, + { + "verseNum": 14, + "text": "Issachar is a strong donkey,\n lying down between the sheepfolds." + }, + { + "verseNum": 15, + "text": "He saw that his resting place was good\n and that his land was pleasant,\n so he bent his shoulder to the burden\n and submitted to labor as a servant." + }, + { + "verseNum": 16, + "text": "Dan shall provide justice for his people \n as one of the tribes of Israel." + }, + { + "verseNum": 17, + "text": "He will be a snake by the road,\n a viper in the path\n that bites the horse’s heels\n so that its rider tumbles backward." + }, + { + "verseNum": 18, + "text": "I await Your salvation, O LORD." + }, + { + "verseNum": 19, + "text": "Gad will be attacked by raiders,\n but he will attack their heels." + }, + { + "verseNum": 20, + "text": "Asher’s food will be rich;\n he shall provide royal delicacies." + }, + { + "verseNum": 21, + "text": "Naphtali is a doe set free\n that bears beautiful fawns." + }, + { + "verseNum": 22, + "text": "Joseph is a fruitful vine—\n a fruitful vine by a spring,\n whose branches scale the wall." + }, + { + "verseNum": 23, + "text": "The archers attacked him with bitterness;\n they aimed at him in hostility." + }, + { + "verseNum": 24, + "text": "Yet he steadied his bow,\n and his strong arms were tempered\n by the hands of the Mighty One of Jacob,\n in the name of the Shepherd, the Rock of Israel," + }, + { + "verseNum": 25, + "text": "by the God of your father who helps you,\n and by the Almighty who blesses you,\n with blessings of the heavens above,\n with blessings of the depths below,\n with blessings of the breasts and womb." + }, + { + "verseNum": 26, + "text": "The blessings of your father have surpassed\n the blessings of the ancient mountains \n and the bounty of the everlasting hills.\n May they rest on the head of Joseph,\n on the brow of the prince of his brothers." + }, + { + "verseNum": 27, + "text": "Benjamin is a ravenous wolf;\n in the morning he devours the prey,\n in the evening he divides the plunder.”" + }, + { + "verseNum": 28, + "text": "These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a suitable blessing." + }, + { + "verseNum": 29, + "text": "Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers in the cave in the field of Ephron the Hittite." + }, + { + "verseNum": 30, + "text": "The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 31, + "text": "There Abraham and his wife Sarah are buried, there Isaac and his wife Rebekah are buried, and there I buried Leah." + }, + { + "verseNum": 32, + "text": "The field and the cave that is in it were purchased from the Hittites.”" + }, + { + "verseNum": 33, + "text": "When Jacob had finished instructing his sons, he pulled his feet into the bed and breathed his last, and he was gathered to his people." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-5.json b/data/en_bible/BSB/GEN/chapter-5.json new file mode 100644 index 0000000..7df81fc --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-5.json @@ -0,0 +1,133 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This is the book of the generations of Adam. In the day that God created man, He made him in His own likeness." + }, + { + "verseNum": 2, + "text": "Male and female He created them, and He blessed them. And in the day they were created, He called them “man.”" + }, + { + "verseNum": 3, + "text": "When Adam was 130 years old, he had a son in his own likeness, after his own image; and he named him Seth." + }, + { + "verseNum": 4, + "text": "And after he had become the father of Seth, Adam lived 800 years and had other sons and daughters." + }, + { + "verseNum": 5, + "text": "So Adam lived a total of 930 years, and then he died." + }, + { + "verseNum": 6, + "text": "When Seth was 105 years old, he became the father of Enosh." + }, + { + "verseNum": 7, + "text": "And after he had become the father of Enosh, Seth lived 807 years and had other sons and daughters." + }, + { + "verseNum": 8, + "text": "So Seth lived a total of 912 years, and then he died." + }, + { + "verseNum": 9, + "text": "When Enosh was 90 years old, he became the father of Kenan." + }, + { + "verseNum": 10, + "text": "And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters." + }, + { + "verseNum": 11, + "text": "So Enosh lived a total of 905 years, and then he died." + }, + { + "verseNum": 12, + "text": "When Kenan was 70 years old, he became the father of Mahalalel." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Mahalalel, Kenan lived 840 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "So Kenan lived a total of 910 years, and then he died." + }, + { + "verseNum": 15, + "text": "When Mahalalel was 65 years old, he became the father of Jared." + }, + { + "verseNum": 16, + "text": "And after he had become the father of Jared, Mahalalel lived 830 years and had other sons and daughters." + }, + { + "verseNum": 17, + "text": "So Mahalalel lived a total of 895 years, and then he died." + }, + { + "verseNum": 18, + "text": "When Jared was 162 years old, he became the father of Enoch." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "So Jared lived a total of 962 years, and then he died." + }, + { + "verseNum": 21, + "text": "When Enoch was 65 years old, he became the father of Methuselah." + }, + { + "verseNum": 22, + "text": "And after he had become the father of Methuselah, Enoch walked with God 300 years and had other sons and daughters." + }, + { + "verseNum": 23, + "text": "So Enoch lived a total of 365 years." + }, + { + "verseNum": 24, + "text": "Enoch walked with God, and then he was no more, because God had taken him away." + }, + { + "verseNum": 25, + "text": "When Methuselah was 187 years old, he became the father of Lamech." + }, + { + "verseNum": 26, + "text": "And after he had become the father of Lamech, Methuselah lived 782 years and had other sons and daughters." + }, + { + "verseNum": 27, + "text": "So Methuselah lived a total of 969 years, and then he died." + }, + { + "verseNum": 28, + "text": "When Lamech was 182 years old, he had a son." + }, + { + "verseNum": 29, + "text": "And he named him Noah, saying, “May this one comfort us in the labor and toil of our hands caused by the ground that the LORD has cursed.”" + }, + { + "verseNum": 30, + "text": "And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters." + }, + { + "verseNum": 31, + "text": "So Lamech lived a total of 777 years, and then he died." + }, + { + "verseNum": 32, + "text": "After Noah was 500 years old, he became the father of Shem, Ham, and Japheth." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-50.json b/data/en_bible/BSB/GEN/chapter-50.json new file mode 100644 index 0000000..40cf5d6 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-50.json @@ -0,0 +1,109 @@ +{ + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph fell upon his father’s face, wept over him, and kissed him." + }, + { + "verseNum": 2, + "text": "And Joseph directed the physicians in his service to embalm his father Israel. So they embalmed him," + }, + { + "verseNum": 3, + "text": "taking the forty days required to complete the embalming. And the Egyptians mourned for him seventy days." + }, + { + "verseNum": 4, + "text": "When the days of mourning had passed, Joseph said to Pharaoh’s court, “If I have found favor in your eyes, please tell Pharaoh that" + }, + { + "verseNum": 5, + "text": "my father made me swear an oath when he said, ‘I am about to die. You must bury me in the tomb that I dug for myself in the land of Canaan.’ Now let me go and bury my father, and then return.”" + }, + { + "verseNum": 6, + "text": "Pharaoh replied, “Go up and bury your father, as he made you swear to do.”" + }, + { + "verseNum": 7, + "text": "Then Joseph went to bury his father, and all the servants of Pharaoh accompanied him—the elders of Pharaoh’s household and all the elders of the land of Egypt—" + }, + { + "verseNum": 8, + "text": "along with all of Joseph’s household, and his brothers, and his father’s household. Only their children and flocks and herds were left in Goshen." + }, + { + "verseNum": 9, + "text": "Chariots and horsemen alike went up with him, and it was an exceedingly large procession." + }, + { + "verseNum": 10, + "text": "When they reached the threshing floor of Atad, which is across the Jordan, they lamented and wailed loudly, and Joseph mourned for his father seven days." + }, + { + "verseNum": 11, + "text": "When the Canaanites of the land saw the mourning at the threshing floor of Atad, they said, “This is a solemn ceremony of mourning by the Egyptians.” Thus the place across the Jordan is called Abel-mizraim." + }, + { + "verseNum": 12, + "text": "So Jacob’s sons did as he had charged them." + }, + { + "verseNum": 13, + "text": "They carried him to the land of Canaan and buried him in the cave at Machpelah in the field near Mamre, which Abraham had purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 14, + "text": "After Joseph had buried his father, he returned to Egypt with his brothers and all who had gone with him to bury his father." + }, + { + "verseNum": 15, + "text": "When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the evil that we did to him.”" + }, + { + "verseNum": 16, + "text": "So they sent word to Joseph, saying, “Before he died, your father commanded," + }, + { + "verseNum": 17, + "text": "‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please forgive the transgression of the servants of the God of your father.”\n \nWhen their message came to him, Joseph wept." + }, + { + "verseNum": 18, + "text": "His brothers also came to him, bowed down before him, and said, “We are your slaves!”" + }, + { + "verseNum": 19, + "text": "But Joseph replied, “Do not be afraid. Am I in the place of God?" + }, + { + "verseNum": 20, + "text": "As for you, what you intended against me for evil, God intended for good, in order to accomplish a day like this—to preserve the lives of many people." + }, + { + "verseNum": 21, + "text": "Therefore do not be afraid. I will provide for you and your little ones.” So Joseph reassured his brothers and spoke kindly to them." + }, + { + "verseNum": 22, + "text": "Now Joseph and his father’s household remained in Egypt, and Joseph lived to the age of 110." + }, + { + "verseNum": 23, + "text": "He saw Ephraim’s sons to the third generation, and indeed the sons of Machir son of Manasseh were brought up on Joseph’s knees." + }, + { + "verseNum": 24, + "text": "Then Joseph said to his brothers, “I am about to die, but God will surely visit you and bring you up from this land to the land He promised on oath to Abraham, Isaac, and Jacob.”" + }, + { + "verseNum": 25, + "text": "And Joseph made the sons of Israel take an oath and said, “God will surely attend to you, and then you must carry my bones up from this place.”" + }, + { + "verseNum": 26, + "text": "So Joseph died at the age of 110. And they embalmed his body and placed it in a coffin in Egypt." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-6.json b/data/en_bible/BSB/GEN/chapter-6.json new file mode 100644 index 0000000..46bff66 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-6.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now when men began to multiply on the face of the earth and daughters were born to them," + }, + { + "verseNum": 2, + "text": "the sons of God saw that the daughters of men were beautiful, and they took as wives whomever they chose." + }, + { + "verseNum": 3, + "text": "So the LORD said, “My Spirit will not contend with man forever, for he is mortal; his days shall be 120 years.”" + }, + { + "verseNum": 4, + "text": "The Nephilim were on the earth in those days—and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty men of old, men of renown." + }, + { + "verseNum": 5, + "text": "Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time." + }, + { + "verseNum": 6, + "text": "And the LORD regretted that He had made man on the earth, and He was grieved in His heart." + }, + { + "verseNum": 7, + "text": "So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I am grieved that I have made them.”" + }, + { + "verseNum": 8, + "text": "Noah, however, found favor in the eyes of the LORD." + }, + { + "verseNum": 9, + "text": "This is the account of Noah. Noah was a righteous man, blameless in his generation; Noah walked with God." + }, + { + "verseNum": 10, + "text": "And Noah had three sons: Shem, Ham, and Japheth." + }, + { + "verseNum": 11, + "text": "Now the earth was corrupt in the sight of God, and full of violence." + }, + { + "verseNum": 12, + "text": "And God looked upon the earth and saw that it was corrupt; for all living creatures on the earth had corrupted their ways." + }, + { + "verseNum": 13, + "text": "Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I will destroy both them and the earth." + }, + { + "verseNum": 14, + "text": "Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out." + }, + { + "verseNum": 15, + "text": "And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high." + }, + { + "verseNum": 16, + "text": "You are to make a roof for the ark, finish its walls a cubit from the top, place a door in the side of the ark, and build lower, middle, and upper decks." + }, + { + "verseNum": 17, + "text": "And behold, I will bring floodwaters upon the earth to destroy every creature under the heavens that has the breath of life. Everything on the earth will perish." + }, + { + "verseNum": 18, + "text": "But I will establish My covenant with you, and you will enter the ark—you and your sons and your wife and your sons’ wives with you." + }, + { + "verseNum": 19, + "text": "And you are to bring two of every living creature into the ark—male and female—to keep them alive with you." + }, + { + "verseNum": 20, + "text": "Two of every kind of bird and animal and crawling creature will come to you to be kept alive." + }, + { + "verseNum": 21, + "text": "You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the animals.”" + }, + { + "verseNum": 22, + "text": "So Noah did everything precisely as God had commanded him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-7.json b/data/en_bible/BSB/GEN/chapter-7.json new file mode 100644 index 0000000..f75e9ff --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-7.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Noah, “Go into the ark, you and all your family, because I have found you righteous in this generation." + }, + { + "verseNum": 2, + "text": "You are to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate;" + }, + { + "verseNum": 3, + "text": "and seven pairs of every kind of bird of the air, male and female, to preserve their offspring on the face of all the earth." + }, + { + "verseNum": 4, + "text": "For seven days from now I will send rain on the earth for forty days and forty nights, and I will wipe from the face of the earth every living thing I have made.”" + }, + { + "verseNum": 5, + "text": "And Noah did all that the LORD had commanded him." + }, + { + "verseNum": 6, + "text": "Now Noah was 600 years old when the floodwaters came upon the earth." + }, + { + "verseNum": 7, + "text": "And Noah and his wife, with his sons and their wives, entered the ark to escape the waters of the flood." + }, + { + "verseNum": 8, + "text": "The clean and unclean animals, the birds, and everything that crawls along the ground" + }, + { + "verseNum": 9, + "text": "came to Noah to enter the ark, two by two, male and female, as God had commanded Noah." + }, + { + "verseNum": 10, + "text": "And after seven days the floodwaters came upon the earth." + }, + { + "verseNum": 11, + "text": "In the six hundredth year of Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were opened." + }, + { + "verseNum": 12, + "text": "And the rain fell upon the earth for forty days and forty nights." + }, + { + "verseNum": 13, + "text": "On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons—" + }, + { + "verseNum": 14, + "text": "they and every kind of wild animal, livestock, crawling creature, bird, and winged creature." + }, + { + "verseNum": 15, + "text": "They came to Noah to enter the ark, two by two of every creature with the breath of life." + }, + { + "verseNum": 16, + "text": "And they entered, the male and female of every living thing, as God had commanded Noah. Then the LORD shut him in." + }, + { + "verseNum": 17, + "text": "For forty days the flood kept coming on the earth, and the waters rose and lifted the ark high above the earth." + }, + { + "verseNum": 18, + "text": "So the waters continued to surge and rise greatly on the earth, and the ark floated on the surface of the waters." + }, + { + "verseNum": 19, + "text": "Finally, the waters completely inundated the earth, so that all the high mountains under all the heavens were covered." + }, + { + "verseNum": 20, + "text": "The waters rose and covered the mountaintops to a depth of fifteen cubits." + }, + { + "verseNum": 21, + "text": "And every living thing that moved upon the earth perished—birds, livestock, animals, every creature that swarms upon the earth, and all mankind." + }, + { + "verseNum": 22, + "text": "Of all that was on dry land, everything that had the breath of life in its nostrils died." + }, + { + "verseNum": 23, + "text": "And every living thing on the face of the earth was destroyed—man and livestock, crawling creatures and birds of the air; they were blotted out from the earth, and only Noah and those with him in the ark remained." + }, + { + "verseNum": 24, + "text": "And the waters prevailed upon the earth for 150 days." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-8.json b/data/en_bible/BSB/GEN/chapter-8.json new file mode 100644 index 0000000..cf3d411 --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-8.json @@ -0,0 +1,93 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "But God remembered Noah and all the animals and livestock that were with him in the ark. And God sent a wind over the earth, and the waters began to subside." + }, + { + "verseNum": 2, + "text": "The springs of the deep and the floodgates of the heavens were closed, and the rain from the sky was restrained." + }, + { + "verseNum": 3, + "text": "The waters receded steadily from the earth, and after 150 days the waters had gone down." + }, + { + "verseNum": 4, + "text": "On the seventeenth day of the seventh month, the ark came to rest on the mountains of Ararat." + }, + { + "verseNum": 5, + "text": "And the waters continued to recede until the tenth month, and on the first day of the tenth month the tops of the mountains became visible." + }, + { + "verseNum": 6, + "text": "After forty days Noah opened the window he had made in the ark" + }, + { + "verseNum": 7, + "text": "and sent out a raven. It kept flying back and forth until the waters had dried up from the earth." + }, + { + "verseNum": 8, + "text": "Then Noah sent out a dove to see if the waters had receded from the surface of the ground." + }, + { + "verseNum": 9, + "text": "But the dove found no place to rest her foot, and she returned to him in the ark, because the waters were still covering the surface of all the earth. So he reached out his hand and brought her back inside the ark." + }, + { + "verseNum": 10, + "text": "Noah waited seven more days and again sent out the dove from the ark." + }, + { + "verseNum": 11, + "text": "And behold, the dove returned to him in the evening with a freshly plucked olive leaf in her beak. So Noah knew that the waters had receded from the earth." + }, + { + "verseNum": 12, + "text": "And Noah waited seven more days and sent out the dove again, but this time she did not return to him." + }, + { + "verseNum": 13, + "text": "In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the ground was dry." + }, + { + "verseNum": 14, + "text": "By the twenty-seventh day of the second month, the earth was fully dry." + }, + { + "verseNum": 15, + "text": "Then God said to Noah," + }, + { + "verseNum": 16, + "text": "“Come out of the ark, you and your wife, along with your sons and their wives." + }, + { + "verseNum": 17, + "text": "Bring out all the living creatures that are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and multiply upon it.”" + }, + { + "verseNum": 18, + "text": "So Noah came out, along with his sons and his wife and his sons’ wives." + }, + { + "verseNum": 19, + "text": "Every living creature, every creeping thing, and every bird—everything that moves upon the earth—came out of the ark, kind by kind." + }, + { + "verseNum": 20, + "text": "Then Noah built an altar to the LORD. And taking from every kind of clean animal and clean bird, he offered burnt offerings on the altar." + }, + { + "verseNum": 21, + "text": "When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every inclination of his heart is evil from his youth. And never again will I destroy all living creatures as I have done." + }, + { + "verseNum": 22, + "text": "As long as the earth endures,\n seedtime and harvest,\n cold and heat,\n summer and winter,\n day and night\n shall never cease.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-9.json b/data/en_bible/BSB/GEN/chapter-9.json new file mode 100644 index 0000000..ec3249d --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-9.json @@ -0,0 +1,121 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the earth." + }, + { + "verseNum": 2, + "text": "The fear and dread of you will fall on every living creature on the earth, every bird of the air, every creature that crawls on the ground, and all the fish of the sea. They are delivered into your hand." + }, + { + "verseNum": 3, + "text": "Everything that lives and moves will be food for you; just as I gave you the green plants, I now give you all things." + }, + { + "verseNum": 4, + "text": "But you must not eat meat with its lifeblood still in it." + }, + { + "verseNum": 5, + "text": "And surely I will require the life of any man or beast by whose hand your lifeblood is shed. I will demand an accounting from anyone who takes the life of his fellow man:" + }, + { + "verseNum": 6, + "text": "Whoever sheds the blood of man,\n by man his blood will be shed;\n for in His own image\n God has made mankind." + }, + { + "verseNum": 7, + "text": "But as for you,\n be fruitful and multiply;\n spread out across the earth\n and multiply upon it.”" + }, + { + "verseNum": 8, + "text": "Then God said to Noah and his sons with him," + }, + { + "verseNum": 9, + "text": "“Behold, I now establish My covenant with you and your descendants after you," + }, + { + "verseNum": 10, + "text": "and with every living creature that was with you—the birds, the livestock, and every beast of the earth—every living thing that came out of the ark." + }, + { + "verseNum": 11, + "text": "And I establish My covenant with you: Never again will all life be cut off by the waters of a flood; never again will there be a flood to destroy the earth.”" + }, + { + "verseNum": 12, + "text": "And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all generations to come:" + }, + { + "verseNum": 13, + "text": "I have set My rainbow in the clouds, and it will be a sign of the covenant between Me and the earth." + }, + { + "verseNum": 14, + "text": "Whenever I form clouds over the earth and the rainbow appears in the clouds," + }, + { + "verseNum": 15, + "text": "I will remember My covenant between Me and you and every living creature of every kind. Never again will the waters become a flood to destroy all life." + }, + { + "verseNum": 16, + "text": "And whenever the rainbow appears in the clouds, I will see it and remember the everlasting covenant between God and every living creature of every kind that is on the earth.”" + }, + { + "verseNum": 17, + "text": "So God said to Noah, “This is the sign of the covenant that I have established between Me and every creature on the earth.”" + }, + { + "verseNum": 18, + "text": "The sons of Noah who came out of the ark were Shem, Ham, and Japheth. And Ham was the father of Canaan." + }, + { + "verseNum": 19, + "text": "These three were the sons of Noah, and from them the whole earth was populated." + }, + { + "verseNum": 20, + "text": "Now Noah, a man of the soil, proceeded to plant a vineyard." + }, + { + "verseNum": 21, + "text": "But when he drank some of its wine, he became drunk and uncovered himself inside his tent." + }, + { + "verseNum": 22, + "text": "And Ham, the father of Canaan, saw his father’s nakedness and told his two brothers outside." + }, + { + "verseNum": 23, + "text": "Then Shem and Japheth took a garment and placed it across their shoulders, and walking backward, they covered their father’s nakedness. Their faces were turned away so that they did not see their father’s nakedness." + }, + { + "verseNum": 24, + "text": "When Noah awoke from his drunkenness and learned what his youngest son had done to him," + }, + { + "verseNum": 25, + "text": "he said,\n \n “Cursed be Canaan!\n A servant of servants\n shall he be to his brothers.”" + }, + { + "verseNum": 26, + "text": "He also declared:\n \n “Blessed be the LORD, the God of Shem!\n May Canaan be the servant of Shem." + }, + { + "verseNum": 27, + "text": "May God expand the territory of Japheth;\n may he dwell in the tents of Shem,\n and may Canaan be his servant.”" + }, + { + "verseNum": 28, + "text": "After the flood, Noah lived 350 years." + }, + { + "verseNum": 29, + "text": "So Noah lived a total of 950 years, and then he died." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/GEN/chapter-intro.json b/data/en_bible/BSB/GEN/chapter-intro.json new file mode 100644 index 0000000..31472ef --- /dev/null +++ b/data/en_bible/BSB/GEN/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Genesis" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-1.json b/data/en_bible/BSB/LEV/chapter-1.json new file mode 100644 index 0000000..9dc6a22 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-1.json @@ -0,0 +1,73 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or the flock." + }, + { + "verseNum": 3, + "text": "If one’s offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD." + }, + { + "verseNum": 4, + "text": "He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for him." + }, + { + "verseNum": 5, + "text": "And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to present the blood and sprinkle it on all sides of the altar at the entrance to the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "Next, he is to skin the burnt offering and cut it into pieces." + }, + { + "verseNum": 7, + "text": "The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire." + }, + { + "verseNum": 8, + "text": "Then Aaron’s sons the priests are to arrange the pieces, including the head and the fat, atop the burning wood on the altar." + }, + { + "verseNum": 9, + "text": "The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male." + }, + { + "verseNum": 11, + "text": "He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to sprinkle its blood against the altar on all sides." + }, + { + "verseNum": 12, + "text": "He is to cut the animal into pieces, and the priest shall arrange them, including the head and fat, atop the burning wood that is on the altar." + }, + { + "verseNum": 13, + "text": "The entrails and legs must be washed with water, and the priest shall bring all of it and burn it on the altar; it is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 14, + "text": "If, instead, one’s offering to the LORD is a burnt offering of birds, he is to present a turtledove or a young pigeon." + }, + { + "verseNum": 15, + "text": "Then the priest shall bring it to the altar, twist off its head, and burn it on the altar; its blood should be drained out on the side of the altar." + }, + { + "verseNum": 16, + "text": "And he is to remove the crop with its contents and throw it to the east side of the altar, in the place for ashes." + }, + { + "verseNum": 17, + "text": "He shall tear it open by its wings, without dividing the bird completely. And the priest is to burn it on the altar atop the burning wood. It is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-10.json b/data/en_bible/BSB/LEV/chapter-10.json new file mode 100644 index 0000000..b4187b6 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-10.json @@ -0,0 +1,85 @@ +{ + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added incense, and offered unauthorized fire before the LORD, contrary to His command." + }, + { + "verseNum": 2, + "text": "So fire came out from the presence of the LORD and consumed them, and they died in the presence of the LORD." + }, + { + "verseNum": 3, + "text": "Then Moses said to Aaron, “This is what the LORD meant when He said:\n \n ‘To those who come near Me\n I will show My holiness,\n and in the sight of all the people\n I will reveal My glory.’”\n \nBut Aaron remained silent." + }, + { + "verseNum": 4, + "text": "Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come here; carry the bodies of your cousins outside the camp, away from the front of the sanctuary.”" + }, + { + "verseNum": 5, + "text": "So they came forward and carried them, still in their tunics, outside the camp, as Moses had directed." + }, + { + "verseNum": 6, + "text": "Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become disheveled and do not tear your garments, or else you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account of the fire that the LORD has ignited." + }, + { + "verseNum": 7, + "text": "You shall not go outside the entrance to the Tent of Meeting, or you will die, for the LORD’s anointing oil is on you.”\n \nSo they did as Moses instructed." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Aaron," + }, + { + "verseNum": 9, + "text": "“You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the generations to come." + }, + { + "verseNum": 10, + "text": "You must distinguish between the holy and the common, between the clean and the unclean," + }, + { + "verseNum": 11, + "text": "so that you may teach the Israelites all the statutes that the LORD has given them through Moses.”" + }, + { + "verseNum": 12, + "text": "And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offering that remains from the offerings made by fire to the LORD and eat it without leaven beside the altar, because it is most holy." + }, + { + "verseNum": 13, + "text": "You shall eat it in a holy place, because it is your share and your sons’ share of the offerings made by fire to the LORD; for this is what I have been commanded." + }, + { + "verseNum": 14, + "text": "And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings of the sons of Israel." + }, + { + "verseNum": 15, + "text": "They are to bring the thigh of the contribution and the breast of the wave offering, together with the fat portions of the offerings made by fire, to wave as a wave offering before the LORD. It will belong permanently to you and your children, as the LORD has commanded.”" + }, + { + "verseNum": 16, + "text": "Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Ithamar, Aaron’s remaining sons, and asked," + }, + { + "verseNum": 17, + "text": "“Why didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making atonement for them before the LORD." + }, + { + "verseNum": 18, + "text": "Since its blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I commanded.”" + }, + { + "verseNum": 19, + "text": "But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt offering before the LORD. Since these things have happened to me, if I had eaten the sin offering today, would it have been acceptable in the sight of the LORD?”" + }, + { + "verseNum": 20, + "text": "And when Moses heard this explanation, he was satisfied." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-11.json b/data/en_bible/BSB/LEV/chapter-11.json new file mode 100644 index 0000000..74ce57b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-11.json @@ -0,0 +1,193 @@ +{ + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The LORD spoke again to Moses and Aaron, telling them," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘Of all the beasts of the earth, these ones you may eat:" + }, + { + "verseNum": 3, + "text": "You may eat any animal that has a split hoof completely divided and that chews the cud." + }, + { + "verseNum": 4, + "text": "But of those that only chew the cud or only have a divided hoof, you are not to eat the following:\n \n The camel, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 5, + "text": "The rock badger, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 6, + "text": "The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 7, + "text": "And the pig, though it has a split hoof completely divided, does not chew the cud; it is unclean for you." + }, + { + "verseNum": 8, + "text": "You must not eat their meat or touch their carcasses; they are unclean for you." + }, + { + "verseNum": 9, + "text": "Of all the creatures that live in the water, whether in the seas or in the streams, you may eat anything with fins and scales." + }, + { + "verseNum": 10, + "text": "But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not have fins and scales." + }, + { + "verseNum": 11, + "text": "They shall be an abomination to you; you must not eat their meat, and you must detest their carcasses." + }, + { + "verseNum": 12, + "text": "Everything in the water that does not have fins and scales shall be detestable to you." + }, + { + "verseNum": 13, + "text": "Additionally, you are to detest the following birds, and they must not be eaten because they are detestable:\n \n the eagle, the bearded vulture, the black vulture," + }, + { + "verseNum": 14, + "text": "the kite, any kind of falcon," + }, + { + "verseNum": 15, + "text": "any kind of raven," + }, + { + "verseNum": 16, + "text": "the ostrich, the screech owl, the gull, any kind of hawk," + }, + { + "verseNum": 17, + "text": "the little owl, the cormorant, the great owl," + }, + { + "verseNum": 18, + "text": "the white owl, the desert owl, the osprey," + }, + { + "verseNum": 19, + "text": "the stork, any kind of heron,\n \n the hoopoe, and the bat." + }, + { + "verseNum": 20, + "text": "All flying insects that walk on all fours are detestable to you." + }, + { + "verseNum": 21, + "text": "However, you may eat the following kinds of flying insects that walk on all fours: those having jointed legs above their feet for hopping on the ground." + }, + { + "verseNum": 22, + "text": "Of these you may eat any kind of locust, katydid, cricket, or grasshopper." + }, + { + "verseNum": 23, + "text": "All other flying insects that have four legs are detestable to you." + }, + { + "verseNum": 24, + "text": "These creatures will make you unclean. Whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 25, + "text": "and whoever picks up one of their carcasses must wash his clothes, and he will be unclean until evening." + }, + { + "verseNum": 26, + "text": "Every animal with hooves not completely divided or that does not chew the cud is unclean for you. Whoever touches any of them will be unclean." + }, + { + "verseNum": 27, + "text": "All the four-footed animals that walk on their paws are unclean for you; whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 28, + "text": "and anyone who picks up a carcass must wash his clothes, and he will be unclean until evening. They are unclean for you." + }, + { + "verseNum": 29, + "text": "The following creatures that move along the ground are unclean for you: the mole, the mouse, any kind of great lizard," + }, + { + "verseNum": 30, + "text": "the gecko, the monitor lizard, the common lizard, the skink, and the chameleon." + }, + { + "verseNum": 31, + "text": "These animals are unclean for you among all the crawling creatures. Whoever touches them when they are dead shall be unclean until evening." + }, + { + "verseNum": 32, + "text": "When one of them dies and falls on something, that article becomes unclean; any article of wood, clothing, leather, sackcloth, or any implement used for work must be rinsed with water and will remain unclean until evening; then it will be clean." + }, + { + "verseNum": 33, + "text": "If any of them falls into a clay pot, everything in it will be unclean; you must break the pot." + }, + { + "verseNum": 34, + "text": "Any food coming into contact with water from that pot will be unclean, and any drink in such a container will be unclean." + }, + { + "verseNum": 35, + "text": "Anything upon which one of their carcasses falls will be unclean. If it is an oven or cooking pot, it must be smashed; it is unclean and will remain unclean for you." + }, + { + "verseNum": 36, + "text": "Nevertheless, a spring or cistern containing water will remain clean, but one who touches a carcass in it will be unclean." + }, + { + "verseNum": 37, + "text": "If a carcass falls on any seed for sowing, the seed is clean;" + }, + { + "verseNum": 38, + "text": "but if water has been put on the seed and a carcass falls on it, it is unclean for you." + }, + { + "verseNum": 39, + "text": "If an animal that you may eat dies, anyone who touches the carcass will be unclean until evening." + }, + { + "verseNum": 40, + "text": "Whoever eats from the carcass must wash his clothes and will be unclean until evening, and anyone who picks up the carcass must wash his clothes and will be unclean until evening." + }, + { + "verseNum": 41, + "text": "Every creature that moves along the ground is detestable; it must not be eaten." + }, + { + "verseNum": 42, + "text": "Do not eat any creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; for such creatures are detestable." + }, + { + "verseNum": 43, + "text": "Do not defile yourselves by any crawling creature; do not become unclean or defiled by them." + }, + { + "verseNum": 44, + "text": "For I am the LORD your God; consecrate yourselves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground." + }, + { + "verseNum": 45, + "text": "For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be holy, because I am holy." + }, + { + "verseNum": 46, + "text": "This is the law regarding animals, birds, all living creatures that move in the water, and all creatures that crawl along the ground." + }, + { + "verseNum": 47, + "text": "You must distinguish between the unclean and the clean, between animals that may be eaten and those that may not.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-12.json b/data/en_bible/BSB/LEV/chapter-12.json new file mode 100644 index 0000000..2fcbd88 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-12.json @@ -0,0 +1,37 @@ +{ + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her menstruation." + }, + { + "verseNum": 3, + "text": "And on the eighth day the flesh of the boy’s foreskin is to be circumcised." + }, + { + "verseNum": 4, + "text": "The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary until the days of her purification are complete." + }, + { + "verseNum": 5, + "text": "If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must continue in purification from her bleeding for sixty-six days." + }, + { + "verseNum": 6, + "text": "When the days of her purification are complete, whether for a son or for a daughter, she is to bring to the priest at the entrance to the Tent of Meeting a year-old lamb for a burnt offering and a young pigeon or a turtledove for a sin offering." + }, + { + "verseNum": 7, + "text": "And the priest will present them before the LORD and make atonement for her; and she shall be ceremonially cleansed from her flow of blood. This is the law for a woman giving birth, whether to a male or to a female." + }, + { + "verseNum": 8, + "text": "But if she cannot afford a lamb, she shall bring two turtledoves or two young pigeons, one for a burnt offering and the other for a sin offering. Then the priest will make atonement for her, and she will be clean.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-13.json b/data/en_bible/BSB/LEV/chapter-13.json new file mode 100644 index 0000000..260add1 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-13.json @@ -0,0 +1,241 @@ +{ + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“When someone has a swelling or rash or bright spot on his skin that could become an infectious skin disease, he must be brought to Aaron the priest or to one of his sons who is a priest." + }, + { + "verseNum": 3, + "text": "The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines him, he must pronounce him unclean." + }, + { + "verseNum": 4, + "text": "If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 5, + "text": "On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days." + }, + { + "verseNum": 6, + "text": "The priest will examine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. The person must wash his clothes and be clean." + }, + { + "verseNum": 7, + "text": "But if the rash spreads further on his skin after he has shown himself to the priest for his cleansing, he must present himself again to the priest." + }, + { + "verseNum": 8, + "text": "The priest will reexamine him, and if the rash has spread on the skin, the priest must pronounce him unclean; he has a skin disease." + }, + { + "verseNum": 9, + "text": "When anyone develops a skin disease, he must be brought to the priest." + }, + { + "verseNum": 10, + "text": "The priest will examine him, and if there is a white swelling on the skin that has turned the hair white, and there is raw flesh in the swelling," + }, + { + "verseNum": 11, + "text": "it is a chronic skin disease and the priest must pronounce him unclean. He need not isolate him, for he is unclean." + }, + { + "verseNum": 12, + "text": "But if the skin disease breaks out all over his skin so that it covers all the skin of the infected person from head to foot, as far as the priest can see," + }, + { + "verseNum": 13, + "text": "the priest shall examine him, and if the disease has covered his entire body, he is to pronounce the infected person clean. Since it has all turned white, he is clean." + }, + { + "verseNum": 14, + "text": "But whenever raw flesh appears on someone, he will be unclean." + }, + { + "verseNum": 15, + "text": "When the priest sees the raw flesh, he must pronounce him unclean. The raw flesh is unclean; it is a skin disease." + }, + { + "verseNum": 16, + "text": "But if the raw flesh changes and turns white, he must go to the priest." + }, + { + "verseNum": 17, + "text": "The priest will reexamine him, and if the infection has turned white, the priest is to pronounce the infected person clean; then he is clean." + }, + { + "verseNum": 18, + "text": "When a boil appears on someone’s skin and it heals," + }, + { + "verseNum": 19, + "text": "and a white swelling or a reddish-white spot develops where the boil was, he must present himself to the priest." + }, + { + "verseNum": 20, + "text": "The priest shall examine it, and if it appears to be beneath the skin and the hair in it has turned white, the priest shall pronounce him unclean; it is a diseased infection that has broken out in the boil." + }, + { + "verseNum": 21, + "text": "But when the priest examines it, if there is no white hair in it, and it is not beneath the skin and has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 22, + "text": "If it spreads any further on the skin, the priest must pronounce him unclean; it is an infection." + }, + { + "verseNum": 23, + "text": "But if the spot remains unchanged and does not spread, it is only the scar from the boil, and the priest shall pronounce him clean." + }, + { + "verseNum": 24, + "text": "When there is a burn on someone’s skin and the raw area of the burn becomes reddish-white or white," + }, + { + "verseNum": 25, + "text": "the priest must examine it. If the hair in the spot has turned white and the spot appears to be deeper than the skin, it is a disease that has broken out in the burn. The priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 26, + "text": "But if the priest examines it and there is no white hair in the spot, and it is not beneath the skin but has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 27, + "text": "On the seventh day the priest is to reexamine him, and if it has spread further on the skin, the priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 28, + "text": "But if the spot is unchanged and has not spread on the skin but has faded, it is a swelling from the burn, and the priest is to pronounce him clean; for it is only the scar from the burn." + }, + { + "verseNum": 29, + "text": "If a man or woman has an infection on the head or chin," + }, + { + "verseNum": 30, + "text": "the priest shall examine the infection, and if it appears to be deeper than the skin and the hair in it is yellow and thin, the priest must pronounce him unclean; it is a scaly outbreak, an infectious disease of the head or chin." + }, + { + "verseNum": 31, + "text": "But if the priest examines the scaly infection and it does not appear to be deeper than the skin, and there is no black hair in it, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 32, + "text": "On the seventh day the priest is to reexamine the infection, and if the scaly outbreak has not spread and there is no yellow hair in it, and it does not appear to be deeper than the skin," + }, + { + "verseNum": 33, + "text": "then the person must shave himself except for the scaly area. Then the priest shall isolate him for another seven days." + }, + { + "verseNum": 34, + "text": "On the seventh day the priest shall examine the scaly outbreak, and if it has not spread on the skin and does not appear to be deeper than the skin, the priest is to pronounce him clean. He must wash his clothes, and he will be clean." + }, + { + "verseNum": 35, + "text": "If, however, the scaly outbreak spreads further on the skin after his cleansing," + }, + { + "verseNum": 36, + "text": "the priest is to examine him, and if the scaly outbreak has spread on the skin, the priest need not look for yellow hair; the person is unclean." + }, + { + "verseNum": 37, + "text": "If, however, in his sight the scaly outbreak is unchanged and black hair has grown in it, then it has healed. He is clean, and the priest is to pronounce him clean." + }, + { + "verseNum": 38, + "text": "When a man or a woman has white spots on the skin," + }, + { + "verseNum": 39, + "text": "the priest shall examine them, and if the spots are dull white, it is a harmless rash that has broken out on the skin; the person is clean." + }, + { + "verseNum": 40, + "text": "Now if a man loses his hair and is bald, he is still clean." + }, + { + "verseNum": 41, + "text": "Or if his hairline recedes and he is bald on his forehead, he is still clean." + }, + { + "verseNum": 42, + "text": "But if there is a reddish-white sore on the bald head or forehead, it is an infectious disease breaking out on it." + }, + { + "verseNum": 43, + "text": "The priest is to examine him, and if the swelling of the infection on his bald head or forehead is reddish-white like a skin disease," + }, + { + "verseNum": 44, + "text": "the man is diseased; he is unclean. The priest must pronounce him unclean because of the infection on his head." + }, + { + "verseNum": 45, + "text": "A diseased person must wear torn clothes and let his hair hang loose, and he must cover his mouth and cry out, ‘Unclean, unclean!’" + }, + { + "verseNum": 46, + "text": "As long as he has the infection, he remains unclean. He must live alone in a place outside the camp." + }, + { + "verseNum": 47, + "text": "If any fabric is contaminated with mildew —any wool or linen garment," + }, + { + "verseNum": 48, + "text": "any weave or knit of linen or wool, or any article of leather—" + }, + { + "verseNum": 49, + "text": "and if the mark in the fabric, leather, weave, knit, or leather article is green or red, then it is contaminated with mildew and must be shown to the priest." + }, + { + "verseNum": 50, + "text": "And the priest is to examine the mildew and isolate the contaminated fabric for seven days." + }, + { + "verseNum": 51, + "text": "On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is unclean." + }, + { + "verseNum": 52, + "text": "He is to burn the fabric, weave, or knit, whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the article must be burned up." + }, + { + "verseNum": 53, + "text": "But when the priest reexamines it, if the mildew has not spread in the fabric, weave, knit, or leather article," + }, + { + "verseNum": 54, + "text": "the priest is to order the contaminated article to be washed and isolated for another seven days." + }, + { + "verseNum": 55, + "text": "After it has been washed, the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is unclean. Even though the mildew has not spread, you must burn it, whether the rot is on the front or back." + }, + { + "verseNum": 56, + "text": "If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, weave, or knit." + }, + { + "verseNum": 57, + "text": "But if it reappears in the fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated article." + }, + { + "verseNum": 58, + "text": "If the mildew disappears from the fabric, weave, or knit, or any leather article after washing, then it is to be washed again, and it will be clean." + }, + { + "verseNum": 59, + "text": "This is the law concerning a mildew contamination in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or unclean.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-14.json b/data/en_bible/BSB/LEV/chapter-14.json new file mode 100644 index 0000000..5e6a0fe --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-14.json @@ -0,0 +1,233 @@ +{ + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“This is the law for the one afflicted with a skin disease on the day of his cleansing, when he is brought to the priest." + }, + { + "verseNum": 3, + "text": "The priest is to go outside the camp to examine him, and if the skin disease of the afflicted person has healed," + }, + { + "verseNum": 4, + "text": "the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one to be cleansed." + }, + { + "verseNum": 5, + "text": "Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot." + }, + { + "verseNum": 6, + "text": "And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip them into the blood of the bird that was slaughtered over the fresh water." + }, + { + "verseNum": 7, + "text": "Seven times he shall sprinkle the one to be cleansed of the skin disease. Then he shall pronounce him clean and release the live bird into the open field." + }, + { + "verseNum": 8, + "text": "The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his tent for seven days." + }, + { + "verseNum": 9, + "text": "On the seventh day he must shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he will be clean." + }, + { + "verseNum": 10, + "text": "On the eighth day he is to bring two unblemished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil." + }, + { + "verseNum": 11, + "text": "The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave offering before the LORD." + }, + { + "verseNum": 13, + "text": "Then he is to slaughter the lamb in the sanctuary area where the sin offering and burnt offering are slaughtered. Like the sin offering, the guilt offering belongs to the priest; it is most holy." + }, + { + "verseNum": 14, + "text": "The priest is to take some of the blood from the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 15, + "text": "Then the priest shall take some of the log of olive oil, pour it into his left palm," + }, + { + "verseNum": 16, + "text": "dip his right forefinger into the oil in his left palm, and sprinkle some of the oil with his finger seven times before the LORD." + }, + { + "verseNum": 17, + "text": "And the priest is to put some of the oil remaining in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot, on top of the blood of the guilt offering." + }, + { + "verseNum": 18, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 19, + "text": "Then the priest is to sacrifice the sin offering and make atonement for the one to be cleansed from his uncleanness. After that, the priest shall slaughter the burnt offering" + }, + { + "verseNum": 20, + "text": "and offer it on the altar, with the grain offering, to make atonement for him, and he will be clean." + }, + { + "verseNum": 21, + "text": "If, however, the person is poor and cannot afford these offerings, he is to take one male lamb as a guilt offering to be waved to make atonement for him, along with a tenth of an ephah of fine flour mixed with olive oil for a grain offering, a log of olive oil," + }, + { + "verseNum": 22, + "text": "and two turtledoves or two young pigeons, whichever he can afford, one to be a sin offering and the other a burnt offering." + }, + { + "verseNum": 23, + "text": "On the eighth day he is to bring them for his cleansing to the priest at the entrance to the Tent of Meeting before the LORD." + }, + { + "verseNum": 24, + "text": "The priest shall take the lamb for the guilt offering, along with the log of olive oil, and wave them as a wave offering before the LORD." + }, + { + "verseNum": 25, + "text": "And after he slaughters the lamb for the guilt offering, the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 26, + "text": "Then the priest is to pour some of the oil into his left palm" + }, + { + "verseNum": 27, + "text": "and sprinkle with his right forefinger some of the oil in his left palm seven times before the LORD." + }, + { + "verseNum": 28, + "text": "The priest shall also put some of the oil in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot—on the same places as the blood of the guilt offering." + }, + { + "verseNum": 29, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 30, + "text": "Then he must sacrifice the turtledoves or young pigeons, whichever he can afford," + }, + { + "verseNum": 31, + "text": "one as a sin offering and the other as a burnt offering, together with the grain offering. In this way the priest will make atonement before the LORD for the one to be cleansed." + }, + { + "verseNum": 32, + "text": "This is the law for someone who has a skin disease and cannot afford the cost of his cleansing.”" + }, + { + "verseNum": 33, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 34, + "text": "“When you enter the land of Canaan, which I am giving you as your possession, and I put a contamination of mildew into a house in that land," + }, + { + "verseNum": 35, + "text": "the owner of the house shall come and tell the priest, ‘Something like mildew has appeared in my house.’" + }, + { + "verseNum": 36, + "text": "The priest must order that the house be cleared before he enters it to examine the mildew, so that nothing in the house will become unclean. After this, the priest shall go in to inspect the house." + }, + { + "verseNum": 37, + "text": "He is to examine the house, and if the mildew on the walls consists of green or red depressions that appear to be beneath the surface of the wall," + }, + { + "verseNum": 38, + "text": "the priest shall go outside the doorway of the house and close it up for seven days." + }, + { + "verseNum": 39, + "text": "On the seventh day the priest is to return and inspect the house. If the mildew has spread on the walls," + }, + { + "verseNum": 40, + "text": "he must order that the contaminated stones be pulled out and thrown into an unclean place outside the city." + }, + { + "verseNum": 41, + "text": "And he shall have the inside of the house scraped completely and the plaster that is scraped off dumped into an unclean place outside the city." + }, + { + "verseNum": 42, + "text": "So different stones must be obtained to replace the contaminated ones, as well as additional mortar to replaster the house." + }, + { + "verseNum": 43, + "text": "If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered," + }, + { + "verseNum": 44, + "text": "the priest must come and inspect it.\n \nIf the mildew has spread in the house, it is a destructive mildew; the house is unclean." + }, + { + "verseNum": 45, + "text": "It must be torn down with its stones, its timbers, and all its plaster, and taken outside the city to an unclean place." + }, + { + "verseNum": 46, + "text": "Anyone who enters the house during any of the days that it is closed up will be unclean until evening." + }, + { + "verseNum": 47, + "text": "And anyone who sleeps in the house or eats in it must wash his clothes." + }, + { + "verseNum": 48, + "text": "If, however, the priest comes and inspects it, and the mildew has not spread after the house has been replastered, he shall pronounce the house clean, because the mildew is gone." + }, + { + "verseNum": 49, + "text": "He is to take two birds, cedar wood, scarlet yarn, and hyssop to purify the house;" + }, + { + "verseNum": 50, + "text": "and he shall slaughter one of the birds over fresh water in a clay pot." + }, + { + "verseNum": 51, + "text": "Then he shall take the cedar wood, the hyssop, the scarlet yarn, and the live bird, dip them in the blood of the slaughtered bird and the fresh water, and sprinkle the house seven times." + }, + { + "verseNum": 52, + "text": "And he shall cleanse the house with the bird’s blood, the fresh water, the live bird, the cedar wood, the hyssop, and the scarlet yarn." + }, + { + "verseNum": 53, + "text": "Finally, he is to release the live bird into the open fields outside the city. In this way he will make atonement for the house, and it will be clean." + }, + { + "verseNum": 54, + "text": "This is the law for any infectious skin disease, for a scaly outbreak," + }, + { + "verseNum": 55, + "text": "for mildew in clothing or in a house," + }, + { + "verseNum": 56, + "text": "and for a swelling, rash, or spot," + }, + { + "verseNum": 57, + "text": "to determine when something is clean or unclean. This is the law regarding skin diseases and mildew.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-15.json b/data/en_bible/BSB/LEV/chapter-15.json new file mode 100644 index 0000000..9cd010c --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-15.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘When any man has a bodily discharge, the discharge is unclean." + }, + { + "verseNum": 3, + "text": "This uncleanness is from his discharge, whether his body allows the discharge to flow or blocks it. So his discharge will bring about uncleanness." + }, + { + "verseNum": 4, + "text": "Any bed on which the man with the discharge lies will be unclean, and any furniture on which he sits will be unclean." + }, + { + "verseNum": 5, + "text": "Anyone who touches his bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 6, + "text": "Whoever sits on furniture on which the man with the discharge was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 7, + "text": "Whoever touches the body of the man with a discharge must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 8, + "text": "If the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 9, + "text": "Any saddle on which the man with the discharge rides will be unclean." + }, + { + "verseNum": 10, + "text": "Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 11, + "text": "If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 12, + "text": "Any clay pot that the man with the discharge touches must be broken, and any wooden utensil must be rinsed with water." + }, + { + "verseNum": 13, + "text": "When the man has been cleansed from his discharge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in fresh water, and he shall be clean." + }, + { + "verseNum": 14, + "text": "On the eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the entrance to the Tent of Meeting, and give them to the priest." + }, + { + "verseNum": 15, + "text": "The priest is to sacrifice them, one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his discharge." + }, + { + "verseNum": 16, + "text": "When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening." + }, + { + "verseNum": 17, + "text": "Any clothing or leather on which there is an emission of semen must be washed with water, and it will remain unclean until evening." + }, + { + "verseNum": 18, + "text": "If a man lies with a woman and there is an emission of semen, both must bathe with water, and they will remain unclean until evening." + }, + { + "verseNum": 19, + "text": "When a woman has a discharge consisting of blood from her body, she will be unclean due to her menstruation for seven days, and anyone who touches her will be unclean until evening." + }, + { + "verseNum": 20, + "text": "Anything on which she lies or sits during her menstruation will be unclean," + }, + { + "verseNum": 21, + "text": "and anyone who touches her bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 22, + "text": "Whoever touches any furniture on which she was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 23, + "text": "And whether it is a bed or furniture on which she was sitting, whoever touches it will be unclean until evening." + }, + { + "verseNum": 24, + "text": "If a man lies with her and her menstrual flow touches him, he will be unclean for seven days, and any bed on which he lies will become unclean." + }, + { + "verseNum": 25, + "text": "When a woman has a discharge of her blood for many days at a time other than her menstrual period, or if it continues beyond her period, she will be unclean all the days of her unclean discharge, just as she is during the days of her menstruation." + }, + { + "verseNum": 26, + "text": "Any bed on which she lies or any furniture on which she sits during the days of her discharge will be unclean, like her bed during her menstrual period." + }, + { + "verseNum": 27, + "text": "Anyone who touches these things will be unclean; he must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 28, + "text": "When a woman is cleansed of her discharge, she must count off seven days, and after that she will be ceremonially clean." + }, + { + "verseNum": 29, + "text": "On the eighth day she is to take two turtledoves or two young pigeons and bring them to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 30, + "text": "The priest is to sacrifice one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for her before the LORD for her unclean discharge." + }, + { + "verseNum": 31, + "text": "You must keep the children of Israel separate from their uncleanness, so that they do not die by defiling My tabernacle, which is among them." + }, + { + "verseNum": 32, + "text": "This is the law of him who has a discharge, of the man who has an emission of semen whereby he is unclean," + }, + { + "verseNum": 33, + "text": "of a woman in her menstrual period, of any male or female who has a discharge, and of a man who lies with an unclean woman.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-16.json b/data/en_bible/BSB/LEV/chapter-16.json new file mode 100644 index 0000000..5fa432e --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-16.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD." + }, + { + "verseNum": 2, + "text": "And the LORD said to Moses: “Tell your brother Aaron not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the cloud above the mercy seat." + }, + { + "verseNum": 3, + "text": "This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for a burnt offering." + }, + { + "verseNum": 4, + "text": "He is to wear the sacred linen tunic, with linen undergarments. He must tie a linen sash around him and put on the linen turban. These are holy garments, and he must bathe himself with water before he wears them." + }, + { + "verseNum": 5, + "text": "And he shall take from the congregation of Israel two male goats for a sin offering and one ram for a burnt offering." + }, + { + "verseNum": 6, + "text": "Aaron is to present the bull for his sin offering and make atonement for himself and his household." + }, + { + "verseNum": 7, + "text": "Then he shall take the two goats and present them before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat," + }, + { + "verseNum": 9, + "text": "he shall present the goat chosen by lot for the LORD and sacrifice it as a sin offering." + }, + { + "verseNum": 10, + "text": "But the goat chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by sending it into the wilderness as the scapegoat." + }, + { + "verseNum": 11, + "text": "When Aaron presents the bull for his sin offering and makes atonement for himself and his household, he is to slaughter the bull for his own sin offering." + }, + { + "verseNum": 12, + "text": "Then he must take a censer full of burning coals from the altar before the LORD, and two handfuls of finely ground fragrant incense, and take them inside the veil." + }, + { + "verseNum": 13, + "text": "He is to put the incense on the fire before the LORD, and the cloud of incense will cover the mercy seat above the Testimony, so that he will not die." + }, + { + "verseNum": 14, + "text": "And he is to take some of the bull’s blood and sprinkle it with his finger on the east side of the mercy seat; then he shall sprinkle some of it with his finger seven times before the mercy seat." + }, + { + "verseNum": 15, + "text": "Aaron shall then slaughter the goat for the sin offering for the people and bring its blood behind the veil, and with its blood he must do as he did with the bull’s blood: He is to sprinkle it against the mercy seat and in front of it." + }, + { + "verseNum": 16, + "text": "So he shall make atonement for the Most Holy Place because of the impurities and rebellious acts of the Israelites in regard to all their sins. He is to do the same for the Tent of Meeting which abides among them, because it is surrounded by their impurities." + }, + { + "verseNum": 17, + "text": "No one may be in the Tent of Meeting from the time Aaron goes in to make atonement in the Most Holy Place until he leaves, after he has made atonement for himself, his household, and the whole assembly of Israel." + }, + { + "verseNum": 18, + "text": "Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the altar." + }, + { + "verseNum": 19, + "text": "He is to sprinkle some of the blood on it with his finger seven times to cleanse it and consecrate it from the uncleanness of the Israelites." + }, + { + "verseNum": 20, + "text": "When Aaron has finished purifying the Most Holy Place, the Tent of Meeting, and the altar, he is to bring forward the live goat." + }, + { + "verseNum": 21, + "text": "Then he is to lay both hands on the head of the live goat and confess over it all the iniquities and rebellious acts of the Israelites in regard to all their sins. He is to put them on the goat’s head and send it away into the wilderness by the hand of a man appointed for the task." + }, + { + "verseNum": 22, + "text": "The goat will carry on itself all their iniquities into a solitary place, and the man will release it into the wilderness." + }, + { + "verseNum": 23, + "text": "Then Aaron is to enter the Tent of Meeting, take off the linen garments he put on before entering the Most Holy Place, and leave them there." + }, + { + "verseNum": 24, + "text": "He is to bathe himself with water in a holy place and put on his own clothes. Then he must go out and sacrifice his burnt offering and the people’s burnt offering to make atonement for himself and for the people." + }, + { + "verseNum": 25, + "text": "He is also to burn the fat of the sin offering on the altar." + }, + { + "verseNum": 26, + "text": "The man who released the goat as the scapegoat must wash his clothes and bathe himself with water; afterward he may reenter the camp." + }, + { + "verseNum": 27, + "text": "The bull for the sin offering and the goat for the sin offering, whose blood was brought into the Most Holy Place to make atonement, must be taken outside the camp; and their hides, flesh, and dung must be burned up." + }, + { + "verseNum": 28, + "text": "The one who burns them must wash his clothes and bathe himself with water, and afterward he may reenter the camp." + }, + { + "verseNum": 29, + "text": "This is to be a permanent statute for you: On the tenth day of the seventh month, you shall humble yourselves and not do any work—whether the native or the foreigner who resides among you—" + }, + { + "verseNum": 30, + "text": "because on this day atonement will be made for you to cleanse you, and you will be clean from all your sins before the LORD." + }, + { + "verseNum": 31, + "text": "It is a Sabbath of complete rest for you, that you may humble yourselves; it is a permanent statute." + }, + { + "verseNum": 32, + "text": "The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen garments" + }, + { + "verseNum": 33, + "text": "and make atonement for the Most Holy Place, the Tent of Meeting, and the altar, and for the priests and all the people of the assembly." + }, + { + "verseNum": 34, + "text": "This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.”\n \nAnd all this was done as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-17.json b/data/en_bible/BSB/LEV/chapter-17.json new file mode 100644 index 0000000..f213820 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-17.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to Aaron, his sons, and all the Israelites and tell them this is what the LORD has commanded:" + }, + { + "verseNum": 3, + "text": "‘Anyone from the house of Israel who slaughters an ox, a lamb, or a goat in the camp or outside of it" + }, + { + "verseNum": 4, + "text": "instead of bringing it to the entrance to the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be cut off from among his people." + }, + { + "verseNum": 5, + "text": "For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace to the LORD." + }, + { + "verseNum": 6, + "text": "The priest will then sprinkle the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma to the LORD." + }, + { + "verseNum": 7, + "text": "They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent statute for them for the generations to come.’" + }, + { + "verseNum": 8, + "text": "Tell them that if anyone from the house of Israel or any foreigner living among them offers a burnt offering or a sacrifice" + }, + { + "verseNum": 9, + "text": "but does not bring it to the entrance to the Tent of Meeting to sacrifice it to the LORD, that man must be cut off from his people." + }, + { + "verseNum": 10, + "text": "If anyone from the house of Israel or a foreigner living among them eats any blood, I will set My face against that person and cut him off from among his people." + }, + { + "verseNum": 11, + "text": "For the life of the flesh is in the blood, and I have given it to you to make atonement for your souls upon the altar; for it is the blood that makes atonement for the soul." + }, + { + "verseNum": 12, + "text": "Therefore I say to the Israelites, ‘None of you may eat blood, nor may any foreigner living among you eat blood.’" + }, + { + "verseNum": 13, + "text": "And if any Israelite or foreigner living among them hunts down a wild animal or bird that may be eaten, he must drain its blood and cover it with dirt." + }, + { + "verseNum": 14, + "text": "For the life of all flesh is its blood. Therefore I have told the Israelites, ‘You must not eat the blood of any living thing, because the life of all flesh is its blood; whoever eats it must be cut off.’" + }, + { + "verseNum": 15, + "text": "And any person, whether native or foreigner, who eats anything found dead or mauled by wild beasts must wash his clothes and bathe with water, and he will be unclean until evening; then he will be clean." + }, + { + "verseNum": 16, + "text": "But if he does not wash his clothes and bathe himself, then he shall bear his iniquity.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-18.json b/data/en_bible/BSB/LEV/chapter-18.json new file mode 100644 index 0000000..3bd9357 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-18.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: I am the LORD your God." + }, + { + "verseNum": 3, + "text": "You must not follow the practices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You must not walk in their customs." + }, + { + "verseNum": 4, + "text": "You are to practice My judgments and keep My statutes by walking in them. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "Keep My statutes and My judgments, for the man who does these things will live by them. I am the LORD." + }, + { + "verseNum": 6, + "text": "None of you are to approach any close relative to have sexual relations. I am the LORD." + }, + { + "verseNum": 7, + "text": "You must not expose the nakedness of your father by having sexual relations with your mother. She is your mother; you must not have sexual relations with her." + }, + { + "verseNum": 8, + "text": "You must not have sexual relations with your father’s wife; it would dishonor your father." + }, + { + "verseNum": 9, + "text": "You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the same home or elsewhere." + }, + { + "verseNum": 10, + "text": "You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family." + }, + { + "verseNum": 11, + "text": "You must not have sexual relations with the daughter of your father’s wife, born to your father; she is your sister." + }, + { + "verseNum": 12, + "text": "You must not have sexual relations with your father’s sister; she is your father’s close relative." + }, + { + "verseNum": 13, + "text": "You must not have sexual relations with your mother’s sister, for she is your mother’s close relative." + }, + { + "verseNum": 14, + "text": "You must not dishonor your father’s brother by approaching his wife to have sexual relations with her; she is your aunt." + }, + { + "verseNum": 15, + "text": "You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are not to have sexual relations with her." + }, + { + "verseNum": 16, + "text": "You must not have sexual relations with your brother’s wife; that would shame your brother." + }, + { + "verseNum": 17, + "text": "You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are close relatives; it is depraved." + }, + { + "verseNum": 18, + "text": "You must not take your wife’s sister as a rival wife and have sexual relations with her while your wife is still alive." + }, + { + "verseNum": 19, + "text": "You must not approach a woman to have sexual relations with her during her menstrual period." + }, + { + "verseNum": 20, + "text": "You must not lie carnally with your neighbor’s wife and thus defile yourself with her." + }, + { + "verseNum": 21, + "text": "You must not give any of your children to be sacrificed to Molech, for you must not profane the name of your God. I am the LORD." + }, + { + "verseNum": 22, + "text": "You must not lie with a man as with a woman; that is an abomination." + }, + { + "verseNum": 23, + "text": "You must not lie carnally with any animal, thus defiling yourself with it; a woman must not stand before an animal to mate with it; that is a perversion." + }, + { + "verseNum": 24, + "text": "Do not defile yourselves by any of these practices, for by all these things the nations I am driving out before you have defiled themselves." + }, + { + "verseNum": 25, + "text": "Even the land has become defiled, so I am punishing it for its sin, and the land will vomit out its inhabitants." + }, + { + "verseNum": 26, + "text": "But you are to keep My statutes and ordinances, and you must not commit any of these abominations—neither your native-born nor the foreigner who lives among you." + }, + { + "verseNum": 27, + "text": "For the men who were in the land before you committed all these abominations, and the land has become defiled." + }, + { + "verseNum": 28, + "text": "So if you defile the land, it will vomit you out as it spewed out the nations before you." + }, + { + "verseNum": 29, + "text": "Therefore anyone who commits any of these abominations must be cut off from among his people." + }, + { + "verseNum": 30, + "text": "You must keep My charge not to practice any of the abominable customs that were practiced before you, so that you do not defile yourselves by them. I am the LORD your God.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-19.json b/data/en_bible/BSB/LEV/chapter-19.json new file mode 100644 index 0000000..7f2d4c9 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-19.json @@ -0,0 +1,153 @@ +{ + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am holy." + }, + { + "verseNum": 3, + "text": "Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD your God." + }, + { + "verseNum": 4, + "text": "Do not turn to idols or make for yourselves molten gods. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance." + }, + { + "verseNum": 6, + "text": "It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up." + }, + { + "verseNum": 7, + "text": "If any of it is eaten on the third day, it is tainted and will not be accepted." + }, + { + "verseNum": 8, + "text": "Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person must be cut off from his people." + }, + { + "verseNum": 9, + "text": "When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest." + }, + { + "verseNum": 10, + "text": "You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the foreigner. I am the LORD your God." + }, + { + "verseNum": 11, + "text": "You must not steal. You must not lie or deceive one another." + }, + { + "verseNum": 12, + "text": "You must not swear falsely by My name and so profane the name of your God. I am the LORD." + }, + { + "verseNum": 13, + "text": "You must not defraud your neighbor or rob him.\n \nYou must not withhold until morning the wages due a hired hand." + }, + { + "verseNum": 14, + "text": "You must not curse the deaf or place a stumbling block before the blind, but you shall fear your God. I am the LORD." + }, + { + "verseNum": 15, + "text": "You must not pervert justice; you must not show partiality to the poor or favoritism to the rich; you are to judge your neighbor fairly." + }, + { + "verseNum": 16, + "text": "You must not go about spreading slander among your people.\n \nYou must not endanger the life of your neighbor. I am the LORD." + }, + { + "verseNum": 17, + "text": "You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him." + }, + { + "verseNum": 18, + "text": "Do not seek revenge or bear a grudge against any of your people, but love your neighbor as yourself. I am the LORD." + }, + { + "verseNum": 19, + "text": "You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two kinds of material." + }, + { + "verseNum": 20, + "text": "If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punishment. But they are not to be put to death, because she had not been freed." + }, + { + "verseNum": 21, + "text": "The man, however, must bring a ram to the entrance to the Tent of Meeting as his guilt offering to the LORD." + }, + { + "verseNum": 22, + "text": "The priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven the sin he has committed." + }, + { + "verseNum": 23, + "text": "When you enter the land and plant any kind of tree for food, you shall regard the fruit as forbidden. For three years it will be forbidden to you and must not be eaten." + }, + { + "verseNum": 24, + "text": "In the fourth year all its fruit must be consecrated as a praise offering to the LORD." + }, + { + "verseNum": 25, + "text": "But in the fifth year you may eat its fruit; thus your harvest will be increased. I am the LORD your God." + }, + { + "verseNum": 26, + "text": "You must not eat anything with blood still in it.\n \nYou must not practice divination or sorcery." + }, + { + "verseNum": 27, + "text": "You must not cut off the hair at the sides of your head or clip off the edges of your beard." + }, + { + "verseNum": 28, + "text": "You must not make any cuts in your bodies for the dead or put tattoo marks on yourselves. I am the LORD." + }, + { + "verseNum": 29, + "text": "You must not defile your daughter by making her a prostitute, or the land will be prostituted and filled with depravity." + }, + { + "verseNum": 30, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 31, + "text": "You must not turn to mediums or spiritists; do not seek them out, or you will be defiled by them. I am the LORD your God." + }, + { + "verseNum": 32, + "text": "You are to rise in the presence of the elderly, honor the aged, and fear your God. I am the LORD." + }, + { + "verseNum": 33, + "text": "When a foreigner resides with you in your land, you must not oppress him." + }, + { + "verseNum": 34, + "text": "You must treat the foreigner living among you as native-born and love him as yourself, for you were foreigners in the land of Egypt. I am the LORD your God." + }, + { + "verseNum": 35, + "text": "You must not use dishonest measures of length, weight, or volume." + }, + { + "verseNum": 36, + "text": "You shall maintain honest scales and weights, an honest ephah, and an honest hin. I am the LORD your God, who brought you out of the land of Egypt." + }, + { + "verseNum": 37, + "text": "You must keep all My statutes and all My ordinances and follow them. I am the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-2.json b/data/en_bible/BSB/LEV/chapter-2.json new file mode 100644 index 0000000..4159837 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-2.json @@ -0,0 +1,69 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it," + }, + { + "verseNum": 2, + "text": "and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, together with all the frankincense, and burn this as a memorial portion on the altar, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 3, + "text": "The remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 4, + "text": "Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either unleavened cakes mixed with oil or unleavened wafers coated with oil." + }, + { + "verseNum": 5, + "text": "If your offering is a grain offering prepared on a griddle, it must be unleavened bread made of fine flour mixed with oil." + }, + { + "verseNum": 6, + "text": "Crumble it and pour oil on it; it is a grain offering." + }, + { + "verseNum": 7, + "text": "If your offering is a grain offering cooked in a pan, it must consist of fine flour with oil." + }, + { + "verseNum": 8, + "text": "When you bring to the LORD the grain offering made in any of these ways, it is to be presented to the priest, and he shall take it to the altar." + }, + { + "verseNum": 9, + "text": "The priest is to remove the memorial portion from the grain offering and burn it on the altar as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 11, + "text": "No grain offering that you present to the LORD may be made with leaven, for you are not to burn any leaven or honey as an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "You may bring them to the LORD as an offering of firstfruits, but they are not to be offered on the altar as a pleasing aroma." + }, + { + "verseNum": 13, + "text": "And you shall season each of your grain offerings with salt. You must not leave the salt of the covenant of your God out of your grain offering; you are to add salt to each of your offerings." + }, + { + "verseNum": 14, + "text": "If you bring a grain offering of firstfruits to the LORD, you shall offer crushed heads of new grain roasted on the fire." + }, + { + "verseNum": 15, + "text": "And you are to put oil and frankincense on it; it is a grain offering." + }, + { + "verseNum": 16, + "text": "The priest shall then burn the memorial portion of the crushed grain and the oil, together with all its frankincense, as an offering made by fire to the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-20.json b/data/en_bible/BSB/LEV/chapter-20.json new file mode 100644 index 0000000..33019bf --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-20.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites, ‘Any Israelite or foreigner living in Israel who gives any of his children to Molech must be put to death. The people of the land are to stone him." + }, + { + "verseNum": 3, + "text": "And I will set My face against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy name." + }, + { + "verseNum": 4, + "text": "And if the people of the land ever hide their eyes and fail to put to death the man who gives one of his children to Molech," + }, + { + "verseNum": 5, + "text": "then I will set My face against that man and his family and cut off from among their people both him and all who follow him in prostituting themselves with Molech." + }, + { + "verseNum": 6, + "text": "Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people." + }, + { + "verseNum": 7, + "text": "Consecrate yourselves, therefore, and be holy, because I am the LORD your God." + }, + { + "verseNum": 8, + "text": "And you shall keep My statutes and practice them. I am the LORD who sanctifies you." + }, + { + "verseNum": 9, + "text": "If anyone curses his father or mother, he must be put to death. He has cursed his father or mother; his blood shall be upon him." + }, + { + "verseNum": 10, + "text": "If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put to death." + }, + { + "verseNum": 11, + "text": "If a man lies with his father’s wife, he has uncovered his father’s nakedness. Both must surely be put to death; their blood is upon them." + }, + { + "verseNum": 12, + "text": "If a man lies with his daughter-in-law, both must surely be put to death. They have acted perversely; their blood is upon them." + }, + { + "verseNum": 13, + "text": "If a man lies with a man as with a woman, they have both committed an abomination. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 14, + "text": "If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no depravity among you." + }, + { + "verseNum": 15, + "text": "If a man lies carnally with an animal, he must be put to death. And you are also to kill the animal." + }, + { + "verseNum": 16, + "text": "If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 17, + "text": "If a man marries his sister, whether the daughter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncovered the nakedness of his sister; he shall bear his iniquity." + }, + { + "verseNum": 18, + "text": "If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of her blood. Both of them must be cut off from among their people." + }, + { + "verseNum": 19, + "text": "You must not have sexual relations with the sister of your mother or your father, for it is exposing one’s own kin; both shall bear their iniquity." + }, + { + "verseNum": 20, + "text": "If a man lies with his uncle’s wife, he has uncovered the nakedness of his uncle. They will bear their sin; they shall die childless." + }, + { + "verseNum": 21, + "text": "If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of his brother; they shall be childless." + }, + { + "verseNum": 22, + "text": "You are therefore to keep all My statutes and ordinances, so that the land where I am bringing you to live will not vomit you out." + }, + { + "verseNum": 23, + "text": "You must not follow the statutes of the nations I am driving out before you. Because they did all these things, I abhorred them." + }, + { + "verseNum": 24, + "text": "But I have told you that you will inherit their land, since I will give it to you as an inheritance—a land flowing with milk and honey. I am the LORD your God, who has set you apart from the peoples." + }, + { + "verseNum": 25, + "text": "You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by anything that crawls on the ground; I have set these apart as unclean for you." + }, + { + "verseNum": 26, + "text": "You are to be holy to Me because I, the LORD, am holy, and I have set you apart from the nations to be My own." + }, + { + "verseNum": 27, + "text": "A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; their blood is upon them.’”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-21.json b/data/en_bible/BSB/LEV/chapter-21.json new file mode 100644 index 0000000..2f67417 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-21.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead person among his people," + }, + { + "verseNum": 2, + "text": "except for his immediate family—his mother, father, son, daughter, or brother," + }, + { + "verseNum": 3, + "text": "or his unmarried sister who is near to him, since she has no husband." + }, + { + "verseNum": 4, + "text": "He is not to defile himself for those related to him by marriage, and so profane himself." + }, + { + "verseNum": 5, + "text": "Priests must not make bald spots on their heads, shave off the edges of their beards, or make cuts in their bodies." + }, + { + "verseNum": 6, + "text": "They must be holy to their God and not profane the name of their God. Because they present to the LORD the offerings made by fire, the food of their God, they must be holy." + }, + { + "verseNum": 7, + "text": "A priest must not marry a woman defiled by prostitution or divorced by her husband, for the priest is holy to his God." + }, + { + "verseNum": 8, + "text": "You are to regard him as holy, since he presents the food of your God. He shall be holy to you, because I the LORD am holy—I who set you apart." + }, + { + "verseNum": 9, + "text": "If a priest’s daughter defiles herself by prostituting herself, she profanes her father; she must be burned in the fire." + }, + { + "verseNum": 10, + "text": "The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly garments, must not let his hair hang loose or tear his garments." + }, + { + "verseNum": 11, + "text": "He must not go near any dead body; he must not defile himself, even for his father or mother." + }, + { + "verseNum": 12, + "text": "He must not leave or desecrate the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the LORD." + }, + { + "verseNum": 13, + "text": "The woman he marries must be a virgin." + }, + { + "verseNum": 14, + "text": "He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a virgin from his own people," + }, + { + "verseNum": 15, + "text": "so that he does not defile his offspring among his people, for I am the LORD who sanctifies him.”" + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 17, + "text": "“Say to Aaron, ‘For the generations to come, none of your descendants who has a physical defect may approach to offer the food of his God." + }, + { + "verseNum": 18, + "text": "No man who has any defect may approach—no man who is blind, lame, disfigured, or deformed;" + }, + { + "verseNum": 19, + "text": "no man who has a broken foot or hand," + }, + { + "verseNum": 20, + "text": "or who is a hunchback or dwarf, or who has an eye defect, a festering rash, scabs, or a crushed testicle." + }, + { + "verseNum": 21, + "text": "No descendant of Aaron the priest who has a defect shall approach to present the offerings made by fire to the LORD. Since he has a defect, he is not to come near to offer the food of his God." + }, + { + "verseNum": 22, + "text": "He may eat the most holy food of his God as well as the holy food," + }, + { + "verseNum": 23, + "text": "but because he has a defect, he must not go near the veil or approach the altar, so as not to desecrate My sanctuaries. For I am the LORD who sanctifies them.’”" + }, + { + "verseNum": 24, + "text": "Moses told this to Aaron and his sons and to all the Israelites." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-22.json b/data/en_bible/BSB/LEV/chapter-22.json new file mode 100644 index 0000000..1aadabe --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-22.json @@ -0,0 +1,137 @@ +{ + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell Aaron and his sons to treat with respect the sacred offerings that the Israelites have consecrated to Me, so that they do not profane My holy name. I am the LORD." + }, + { + "verseNum": 3, + "text": "Tell them that for the generations to come, if any of their descendants in a state of uncleanness approaches the sacred offerings that the Israelites consecrate to the LORD, that person must be cut off from My presence. I am the LORD." + }, + { + "verseNum": 4, + "text": "If a descendant of Aaron has a skin disease or a discharge, he may not eat the sacred offerings until he is clean. Whoever touches anything defiled by a corpse or by a man who has an emission of semen," + }, + { + "verseNum": 5, + "text": "or whoever touches a crawling creature or a person that makes him unclean, whatever the uncleanness may be—" + }, + { + "verseNum": 6, + "text": "the man who touches any of these will remain unclean until evening. He must not eat from the sacred offerings unless he has bathed himself with water." + }, + { + "verseNum": 7, + "text": "When the sun has set, he will become clean, and then he may eat from the sacred offerings, for they are his food." + }, + { + "verseNum": 8, + "text": "He must not eat anything found dead or torn by wild animals, which would make him unclean. I am the LORD." + }, + { + "verseNum": 9, + "text": "The priests must keep My charge, lest they bear the guilt and die because they profane it. I am the LORD who sanctifies them." + }, + { + "verseNum": 10, + "text": "No one outside a priest’s family may eat the sacred offering, nor may the guest of a priest or his hired hand eat it." + }, + { + "verseNum": 11, + "text": "But if a priest buys a slave with his own money, or if a slave is born in his household, that slave may eat his food." + }, + { + "verseNum": 12, + "text": "If the priest’s daughter is married to a man other than a priest, she is not to eat of the sacred contributions." + }, + { + "verseNum": 13, + "text": "But if a priest’s daughter with no children becomes widowed or divorced and returns to her father’s house, she may share her father’s food as in her youth. But no outsider may share it." + }, + { + "verseNum": 14, + "text": "If anyone eats a sacred offering in error, he must add a fifth to its value and give the sacred offering to the priest." + }, + { + "verseNum": 15, + "text": "The priests must not profane the sacred offerings that the Israelites present to the LORD" + }, + { + "verseNum": 16, + "text": "by allowing the people to eat the sacred offerings and thus to bear the punishment for guilt. For I am the LORD who sanctifies them.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt offering to the LORD, whether to fulfill a vow or as a freewill offering," + }, + { + "verseNum": 19, + "text": "must offer an unblemished male from the cattle, sheep, or goats in order for it to be accepted on your behalf." + }, + { + "verseNum": 20, + "text": "You must not present anything with a defect, because it will not be accepted on your behalf." + }, + { + "verseNum": 21, + "text": "When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as a freewill offering, it must be without blemish or defect to be acceptable." + }, + { + "verseNum": 22, + "text": "You are not to present to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a festering rash, or a scab; you must not put any of these on the altar as an offering made by fire to the LORD." + }, + { + "verseNum": 23, + "text": "You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but it is not acceptable in fulfillment of a vow." + }, + { + "verseNum": 24, + "text": "You are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land." + }, + { + "verseNum": 25, + "text": "Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are deformed and flawed.’”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“When an ox, a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it will be acceptable as an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "But you must not slaughter an ox or a sheep on the same day as its young." + }, + { + "verseNum": 29, + "text": "When you sacrifice a thank offering to the LORD, offer it so that it may be acceptable on your behalf." + }, + { + "verseNum": 30, + "text": "It must be eaten that same day. Do not leave any of it until morning. I am the LORD." + }, + { + "verseNum": 31, + "text": "You are to keep My commandments and practice them. I am the LORD." + }, + { + "verseNum": 32, + "text": "You must not profane My holy name. I must be acknowledged as holy among the Israelites. I am the LORD who sanctifies you," + }, + { + "verseNum": 33, + "text": "who brought you out of the land of Egypt to be your God. I am the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-23.json b/data/en_bible/BSB/LEV/chapter-23.json new file mode 100644 index 0000000..581e9cc --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-23.json @@ -0,0 +1,181 @@ +{ + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘These are My appointed feasts, the feasts of the LORD that you are to proclaim as sacred assemblies." + }, + { + "verseNum": 3, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, a day of sacred assembly. You must not do any work; wherever you live, it is a Sabbath to the LORD." + }, + { + "verseNum": 4, + "text": "These are the LORD’s appointed feasts, the sacred assemblies you are to proclaim at their appointed times." + }, + { + "verseNum": 5, + "text": "The Passover to the LORD begins at twilight on the fourteenth day of the first month." + }, + { + "verseNum": 6, + "text": "On the fifteenth day of the same month begins the Feast of Unleavened Bread to the LORD. For seven days you must eat unleavened bread." + }, + { + "verseNum": 7, + "text": "On the first day you are to hold a sacred assembly; you are not to do any regular work." + }, + { + "verseNum": 8, + "text": "For seven days you are to present an offering made by fire to the LORD. On the seventh day there shall be a sacred assembly; you must not do any regular work.’”" + }, + { + "verseNum": 9, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 10, + "text": "“Speak to the Israelites and say, ‘When you enter the land that I am giving you and you reap its harvest, you are to bring to the priest a sheaf of the firstfruits of your harvest." + }, + { + "verseNum": 11, + "text": "And he shall wave the sheaf before the LORD so that it may be accepted on your behalf; the priest is to wave it on the day after the Sabbath." + }, + { + "verseNum": 12, + "text": "On the day you wave the sheaf, you shall offer a year-old lamb without blemish as a burnt offering to the LORD," + }, + { + "verseNum": 13, + "text": "along with its grain offering of two-tenths of an ephah of fine flour mixed with oil—an offering made by fire to the LORD, a pleasing aroma—and its drink offering of a quarter hin of wine." + }, + { + "verseNum": 14, + "text": "You must not eat any bread or roasted or new grain until the very day you have brought this offering to your God. This is to be a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 15, + "text": "From the day after the Sabbath, the day you brought the sheaf of the wave offering, you are to count off seven full weeks." + }, + { + "verseNum": 16, + "text": "You shall count off fifty days until the day after the seventh Sabbath, and then present an offering of new grain to the LORD." + }, + { + "verseNum": 17, + "text": "Bring two loaves of bread from your dwellings as a wave offering, each made from two-tenths of an ephah of fine flour, baked with leaven, as the firstfruits to the LORD." + }, + { + "verseNum": 18, + "text": "Along with the bread you are to present seven unblemished male lambs a year old, one young bull, and two rams. They will be a burnt offering to the LORD, together with their grain offerings and drink offerings—an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 19, + "text": "You shall also prepare one male goat as a sin offering and two male lambs a year old as a peace offering." + }, + { + "verseNum": 20, + "text": "The priest is to wave the lambs as a wave offering before the LORD, together with the bread of the firstfruits. The bread and the two lambs shall be holy to the LORD for the priest." + }, + { + "verseNum": 21, + "text": "On that same day you are to proclaim a sacred assembly, and you must not do any regular work. This is to be a permanent statute wherever you live for the generations to come." + }, + { + "verseNum": 22, + "text": "When you reap the harvest of your land, do not reap all the way to the edges of your field or gather the gleanings of your harvest. Leave them for the poor and the foreign resident. I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "The LORD also said to Moses," + }, + { + "verseNum": 24, + "text": "“Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred assembly announced by trumpet blasts." + }, + { + "verseNum": 25, + "text": "You must not do any regular work, but you are to present an offering made by fire to the LORD.’”" + }, + { + "verseNum": 26, + "text": "Again the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“The tenth day of this seventh month is the Day of Atonement. You shall hold a sacred assembly and humble yourselves, and present an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "On this day you are not to do any work, for it is the Day of Atonement, when atonement is made for you before the LORD your God." + }, + { + "verseNum": 29, + "text": "If anyone does not humble himself on this day, he must be cut off from his people." + }, + { + "verseNum": 30, + "text": "I will destroy from among his people anyone who does any work on this day." + }, + { + "verseNum": 31, + "text": "You are not to do any work at all. This is a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 32, + "text": "It will be a Sabbath of complete rest for you, and you shall humble yourselves. From the evening of the ninth day of the month until the following evening you are to keep your Sabbath.”" + }, + { + "verseNum": 33, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 34, + "text": "“Speak to the Israelites and say, ‘On the fifteenth day of the seventh month the Feast of Tabernacles to the LORD begins, and it continues for seven days." + }, + { + "verseNum": 35, + "text": "On the first day there shall be a sacred assembly. You must not do any regular work." + }, + { + "verseNum": 36, + "text": "For seven days you are to present an offering made by fire to the LORD. On the eighth day you are to hold a sacred assembly and present an offering made by fire to the LORD. It is a solemn assembly; you must not do any regular work." + }, + { + "verseNum": 37, + "text": "These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting offerings by fire to the LORD—burnt offerings and grain offerings, sacrifices and drink offerings, each on its designated day." + }, + { + "verseNum": 38, + "text": "These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill offerings you give to the LORD." + }, + { + "verseNum": 39, + "text": "On the fifteenth day of the seventh month, after you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first day and also on the eighth day." + }, + { + "verseNum": 40, + "text": "On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days." + }, + { + "verseNum": 41, + "text": "You are to celebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generations to come; you are to celebrate it in the seventh month." + }, + { + "verseNum": 42, + "text": "You are to dwell in booths for seven days. All the native-born of Israel must dwell in booths," + }, + { + "verseNum": 43, + "text": "so that your descendants may know that I made the Israelites dwell in booths when I brought them out of the land of Egypt. I am the LORD your God.’”" + }, + { + "verseNum": 44, + "text": "So Moses announced to the Israelites the appointed feasts of the LORD." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-24.json b/data/en_bible/BSB/LEV/chapter-24.json new file mode 100644 index 0000000..a6ba79b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-24.json @@ -0,0 +1,97 @@ +{ + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 3, + "text": "Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continually before the LORD from evening until morning. This is to be a permanent statute for the generations to come." + }, + { + "verseNum": 4, + "text": "He shall tend the lamps on the pure gold lampstand before the LORD continually." + }, + { + "verseNum": 5, + "text": "You are also to take fine flour and bake twelve loaves, using two-tenths of an ephah for each loaf," + }, + { + "verseNum": 6, + "text": "and set them in two rows—six per row—on the table of pure gold before the LORD." + }, + { + "verseNum": 7, + "text": "And you are to place pure frankincense near each row, so that it may serve as a memorial portion for the bread, an offering made by fire to the LORD." + }, + { + "verseNum": 8, + "text": "Every Sabbath day the bread is to be set out before the LORD on behalf of the Israelites as a permanent covenant." + }, + { + "verseNum": 9, + "text": "It belongs to Aaron and his sons, who are to eat it in a holy place; for it is to him a most holy part of the offerings made by fire to the LORD—his portion forever.”" + }, + { + "verseNum": 10, + "text": "Now the son of an Israelite mother and an Egyptian father went out among the Israelites, and a fight broke out in the camp between him and an Israelite." + }, + { + "verseNum": 11, + "text": "The son of the Israelite woman blasphemed the Name with a curse. So they brought him to Moses. (His mother’s name was Shelomith daughter of Dibri, of the tribe of Dan.)" + }, + { + "verseNum": 12, + "text": "They placed him in custody until the will of the LORD should be made clear to them." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 14, + "text": "“Take the blasphemer outside the camp, and have all who heard him lay their hands on his head; then have the whole assembly stone him." + }, + { + "verseNum": 15, + "text": "And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin." + }, + { + "verseNum": 16, + "text": "Whoever blasphemes the name of the LORD must surely be put to death; the whole assembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the Name, he must be put to death." + }, + { + "verseNum": 17, + "text": "And if a man takes the life of anyone else, he must surely be put to death." + }, + { + "verseNum": 18, + "text": "Whoever kills an animal must make restitution—life for life." + }, + { + "verseNum": 19, + "text": "If anyone injures his neighbor, whatever he has done must be done to him:" + }, + { + "verseNum": 20, + "text": "fracture for fracture, eye for eye, tooth for tooth. Just as he injured the other person, the same must be inflicted on him." + }, + { + "verseNum": 21, + "text": "Whoever kills an animal must make restitution, but whoever kills a man must be put to death." + }, + { + "verseNum": 22, + "text": "You are to have the same standard of law for the foreign resident and the native; for I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "Then Moses spoke to the Israelites, and they took the blasphemer outside the camp and stoned him. So the Israelites did as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-25.json b/data/en_bible/BSB/LEV/chapter-25.json new file mode 100644 index 0000000..58e4717 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-25.json @@ -0,0 +1,225 @@ +{ + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses on Mount Sinai," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them: When you enter the land that I am giving you, the land itself must observe a Sabbath to the LORD." + }, + { + "verseNum": 3, + "text": "For six years you may sow your field and prune your vineyard and gather its crops." + }, + { + "verseNum": 4, + "text": "But in the seventh year there shall be a Sabbath of complete rest for the land—a Sabbath to the LORD.\n \nYou are not to sow your field or prune your vineyard." + }, + { + "verseNum": 5, + "text": "You are not to reap the aftergrowth of your harvest or gather the grapes of your untended vines. The land must have a year of complete rest." + }, + { + "verseNum": 6, + "text": "Whatever the land yields during the Sabbath year shall be food for you—for yourself, your manservant and maidservant, the hired hand or foreigner who stays with you," + }, + { + "verseNum": 7, + "text": "and for your livestock and the wild animals in your land. All its growth may serve as food." + }, + { + "verseNum": 8, + "text": "And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years." + }, + { + "verseNum": 9, + "text": "Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout your land." + }, + { + "verseNum": 10, + "text": "So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to return to his property and to his clan." + }, + { + "verseNum": 11, + "text": "The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or harvest the untended vines." + }, + { + "verseNum": 12, + "text": "For it is a Jubilee; it shall be holy to you. You may eat only the crops taken directly from the field." + }, + { + "verseNum": 13, + "text": "In this Year of Jubilee, each of you shall return to his own property." + }, + { + "verseNum": 14, + "text": "If you make a sale to your neighbor or a purchase from him, you must not take advantage of each other." + }, + { + "verseNum": 15, + "text": "You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the number of harvest years remaining." + }, + { + "verseNum": 16, + "text": "You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a given number of harvests." + }, + { + "verseNum": 17, + "text": "Do not take advantage of each other, but fear your God; for I am the LORD your God." + }, + { + "verseNum": 18, + "text": "You are to keep My statutes and carefully observe My judgments, so that you may dwell securely in the land." + }, + { + "verseNum": 19, + "text": "Then the land will yield its fruit, so that you can eat your fill and dwell in safety in the land." + }, + { + "verseNum": 20, + "text": "Now you may wonder, ‘What will we eat in the seventh year if we do not sow or gather our produce?’" + }, + { + "verseNum": 21, + "text": "But I will send My blessing upon you in the sixth year, so that the land will yield a crop sufficient for three years." + }, + { + "verseNum": 22, + "text": "While you are sowing in the eighth year, you will be eating from the previous harvest, until the ninth year’s harvest comes in." + }, + { + "verseNum": 23, + "text": "The land must not be sold permanently, because it is Mine, and you are but foreigners and residents with Me." + }, + { + "verseNum": 24, + "text": "Thus for every piece of property you possess, you must provide for the redemption of the land." + }, + { + "verseNum": 25, + "text": "If your brother becomes impoverished and sells some of his property, his nearest of kin may come and redeem what his brother has sold." + }, + { + "verseNum": 26, + "text": "Or if a man has no one to redeem it for him, but he prospers and acquires enough to redeem his land," + }, + { + "verseNum": 27, + "text": "he shall calculate the years since its sale, repay the balance to the man to whom he sold it, and return to his property." + }, + { + "verseNum": 28, + "text": "But if he cannot obtain enough to repay him, what he sold will remain in possession of the buyer until the Year of Jubilee. In the Jubilee, however, it is to be released, so that he may return to his property." + }, + { + "verseNum": 29, + "text": "If a man sells a house in a walled city, he retains his right of redemption until a full year after its sale; during that year it may be redeemed." + }, + { + "verseNum": 30, + "text": "If it is not redeemed by the end of a full year, then the house in the walled city is permanently transferred to its buyer and his descendants. It is not to be released in the Jubilee." + }, + { + "verseNum": 31, + "text": "But houses in villages with no walls around them are to be considered as open fields. They may be redeemed, and they shall be released in the Jubilee." + }, + { + "verseNum": 32, + "text": "As for the cities of the Levites, the Levites always have the right to redeem their houses in the cities they possess." + }, + { + "verseNum": 33, + "text": "So whatever belongs to the Levites may be redeemed—a house sold in a city they possess—and must be released in the Jubilee, because the houses in the cities of the Levites are their possession among the Israelites." + }, + { + "verseNum": 34, + "text": "But the open pastureland around their cities may not be sold, for this is their permanent possession." + }, + { + "verseNum": 35, + "text": "Now if your countryman becomes destitute and cannot support himself among you, then you are to help him as you would a foreigner or stranger, so that he can continue to live among you." + }, + { + "verseNum": 36, + "text": "Do not take any interest or profit from him, but fear your God, that your countryman may live among you." + }, + { + "verseNum": 37, + "text": "You must not lend him your silver at interest or sell him your food for profit." + }, + { + "verseNum": 38, + "text": "I am the LORD your God, who brought you out of the land of Egypt to give you the land of Canaan and to be your God." + }, + { + "verseNum": 39, + "text": "If a countryman among you becomes destitute and sells himself to you, then you must not force him into slave labor." + }, + { + "verseNum": 40, + "text": "Let him stay with you as a hired worker or temporary resident; he is to work for you until the Year of Jubilee." + }, + { + "verseNum": 41, + "text": "Then he and his children are to be released, and he may return to his clan and to the property of his fathers." + }, + { + "verseNum": 42, + "text": "Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves." + }, + { + "verseNum": 43, + "text": "You are not to rule over them harshly, but you shall fear your God." + }, + { + "verseNum": 44, + "text": "Your menservants and maidservants shall come from the nations around you, from whom you may purchase them." + }, + { + "verseNum": 45, + "text": "You may also purchase them from the foreigners residing among you or their clans living among you who are born in your land. These may become your property." + }, + { + "verseNum": 46, + "text": "You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no man may rule harshly over his brother." + }, + { + "verseNum": 47, + "text": "If a foreigner residing among you prospers, but your countryman dwelling near him becomes destitute and sells himself to the foreigner or to a member of his clan," + }, + { + "verseNum": 48, + "text": "he retains the right of redemption after he has sold himself. One of his brothers may redeem him:" + }, + { + "verseNum": 49, + "text": "either his uncle or cousin or any close relative from his clan may redeem him. Or if he prospers, he may redeem himself." + }, + { + "verseNum": 50, + "text": "He and his purchaser will then count the time from the year he sold himself up to the Year of Jubilee. The price of his sale will be determined by the number of years, based on the daily wages of a hired hand." + }, + { + "verseNum": 51, + "text": "If many years remain, he must pay for his redemption in proportion to his purchase price." + }, + { + "verseNum": 52, + "text": "If only a few years remain until the Year of Jubilee, he is to calculate and pay his redemption according to his remaining years." + }, + { + "verseNum": 53, + "text": "He shall be treated like a man hired from year to year, but a foreign owner must not rule over him harshly in your sight." + }, + { + "verseNum": 54, + "text": "Even if he is not redeemed in any of these ways, he and his children shall be released in the Year of Jubilee." + }, + { + "verseNum": 55, + "text": "For the Israelites are My servants. They are My servants, whom I brought out of the land of Egypt. I am the LORD your God." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-26.json b/data/en_bible/BSB/LEV/chapter-26.json new file mode 100644 index 0000000..17a24ee --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-26.json @@ -0,0 +1,189 @@ +{ + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You must not make idols for yourselves or set up a carved image or sacred pillar; you must not place a sculpted stone in your land to bow down to it. For I am the LORD your God." + }, + { + "verseNum": 2, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 3, + "text": "If you follow My statutes and carefully keep My commandments," + }, + { + "verseNum": 4, + "text": "I will give you rains in their season, and the land will yield its produce, and the trees of the field will bear their fruit." + }, + { + "verseNum": 5, + "text": "Your threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will dwell securely in your land." + }, + { + "verseNum": 6, + "text": "And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass through your land." + }, + { + "verseNum": 7, + "text": "You will pursue your enemies, and they will fall by the sword before you." + }, + { + "verseNum": 8, + "text": "Five of you will pursue a hundred, and a hundred of you will pursue ten thousand, and your enemies will fall by the sword before you." + }, + { + "verseNum": 9, + "text": "I will turn toward you and make you fruitful and multiply you, and I will establish My covenant with you." + }, + { + "verseNum": 10, + "text": "You will still be eating the old supply of grain when you need to clear it out to make room for the new." + }, + { + "verseNum": 11, + "text": "And I will make My dwelling place among you, and My soul will not despise you." + }, + { + "verseNum": 12, + "text": "I will walk among you and be your God, and you will be My people." + }, + { + "verseNum": 13, + "text": "I am the LORD your God, who brought you out of the land of Egypt so that you would no longer be slaves to the Egyptians. I broke the bars of your yoke and enabled you to walk in uprightness." + }, + { + "verseNum": 14, + "text": "If, however, you fail to obey Me and to carry out all these commandments," + }, + { + "verseNum": 15, + "text": "and if you reject My statutes, despise My ordinances, and neglect to carry out all My commandments, and so break My covenant," + }, + { + "verseNum": 16, + "text": "then this is what I will do to you: I will bring upon you sudden terror, wasting disease, and fever that will destroy your sight and drain your life. You will sow your seed in vain, because your enemies will eat it." + }, + { + "verseNum": 17, + "text": "And I will set My face against you, so that you will be defeated by your enemies. Those who hate you will rule over you, and you will flee when no one pursues you." + }, + { + "verseNum": 18, + "text": "And if after all this you will not obey Me, I will proceed to punish you sevenfold for your sins." + }, + { + "verseNum": 19, + "text": "I will break down your stubborn pride and make your sky like iron and your land like bronze," + }, + { + "verseNum": 20, + "text": "and your strength will be spent in vain. For your land will not yield its produce, and the trees of the land will not bear their fruit." + }, + { + "verseNum": 21, + "text": "If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins." + }, + { + "verseNum": 22, + "text": "I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your numbers, until your roads lie desolate." + }, + { + "verseNum": 23, + "text": "And if in spite of these things you do not accept My discipline, but continue to walk in hostility toward Me," + }, + { + "verseNum": 24, + "text": "then I will act with hostility toward you, and I will strike you sevenfold for your sins." + }, + { + "verseNum": 25, + "text": "And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy." + }, + { + "verseNum": 26, + "text": "When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by weight, so that you will eat but not be satisfied." + }, + { + "verseNum": 27, + "text": "But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me," + }, + { + "verseNum": 28, + "text": "then I will walk in fury against you, and I, even I, will punish you sevenfold for your sins." + }, + { + "verseNum": 29, + "text": "You will eat the flesh of your own sons and daughters." + }, + { + "verseNum": 30, + "text": "I will destroy your high places, cut down your incense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will despise you." + }, + { + "verseNum": 31, + "text": "I will reduce your cities to rubble and lay waste your sanctuaries, and I will refuse to smell the pleasing aroma of your sacrifices." + }, + { + "verseNum": 32, + "text": "And I will lay waste the land, so that your enemies who dwell in it will be appalled." + }, + { + "verseNum": 33, + "text": "But I will scatter you among the nations and will draw out a sword after you as your land becomes desolate and your cities are laid waste." + }, + { + "verseNum": 34, + "text": "Then the land shall enjoy its Sabbaths all the days it lies desolate, while you are in the land of your enemies. At that time the land will rest and enjoy its Sabbaths." + }, + { + "verseNum": 35, + "text": "As long as it lies desolate, the land will have the rest it did not receive during the Sabbaths when you lived in it." + }, + { + "verseNum": 36, + "text": "As for those of you who survive, I will send a faintness into their hearts in the lands of their enemies, so that even the sound of a windblown leaf will put them to flight. And they will flee as one flees the sword, and fall when no one pursues them." + }, + { + "verseNum": 37, + "text": "They will stumble over one another as before the sword, though no one is behind them. So you will not be able to stand against your enemies." + }, + { + "verseNum": 38, + "text": "You will perish among the nations, and the land of your enemies will consume you." + }, + { + "verseNum": 39, + "text": "Those of you who survive in the lands of your enemies will waste away in their iniquity and will decay in the sins of their fathers." + }, + { + "verseNum": 40, + "text": "But if they will confess their iniquity and that of their fathers in the unfaithfulness that they practiced against Me, by which they have also walked in hostility toward Me—" + }, + { + "verseNum": 41, + "text": "and I acted with hostility toward them and brought them into the land of their enemies—and if their uncircumcised hearts will be humbled and they will make amends for their iniquity," + }, + { + "verseNum": 42, + "text": "then I will remember My covenant with Jacob and My covenant with Isaac and My covenant with Abraham, and I will remember the land." + }, + { + "verseNum": 43, + "text": "For the land will be abandoned by them, and it will enjoy its Sabbaths by lying desolate without them. And they will pay the penalty for their iniquity, because they rejected My ordinances and abhorred My statutes." + }, + { + "verseNum": 44, + "text": "Yet in spite of this, when they are in the land of their enemies, I will not reject or despise them so as to destroy them and break My covenant with them; for I am the LORD their God." + }, + { + "verseNum": 45, + "text": "But for their sake I will remember the covenant with their fathers, whom I brought out of the land of Egypt in the sight of the nations, that I might be their God. I am the LORD.”" + }, + { + "verseNum": 46, + "text": "These are the statutes, ordinances, and laws that the LORD established between Himself and the Israelites through Moses on Mount Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-27.json b/data/en_bible/BSB/LEV/chapter-27.json new file mode 100644 index 0000000..bd228a3 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-27.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘When someone makes a special vow to the LORD involving the value of persons," + }, + { + "verseNum": 3, + "text": "if the valuation concerns a male from twenty to sixty years of age, then your valuation shall be fifty shekels of silver, according to the sanctuary shekel." + }, + { + "verseNum": 4, + "text": "Or if it is a female, then your valuation shall be thirty shekels." + }, + { + "verseNum": 5, + "text": "And if the person is from five to twenty years of age, then your valuation for the male shall be twenty shekels, and for the female ten shekels." + }, + { + "verseNum": 6, + "text": "Now if the person is from one month to five years of age, then your valuation for the male shall be five shekels of silver, and for the female three shekels of silver." + }, + { + "verseNum": 7, + "text": "And if the person is sixty years of age or older, then your valuation shall be fifteen shekels for the male and ten shekels for the female." + }, + { + "verseNum": 8, + "text": "But if the one making the vow is too poor to pay the valuation, he is to present the person before the priest, who shall set the value according to what the one making the vow can afford." + }, + { + "verseNum": 9, + "text": "If he vows an animal that may be brought as an offering to the LORD, any such animal given to the LORD shall be holy." + }, + { + "verseNum": 10, + "text": "He must not replace it or exchange it, either good for bad or bad for good. But if he does substitute one animal for another, both that animal and its substitute will be holy." + }, + { + "verseNum": 11, + "text": "But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest." + }, + { + "verseNum": 12, + "text": "The priest shall set its value, whether high or low; as the priest values it, the price will be set." + }, + { + "verseNum": 13, + "text": "If, however, the owner decides to redeem the animal, he must add a fifth to its value." + }, + { + "verseNum": 14, + "text": "Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it." + }, + { + "verseNum": 15, + "text": "But if he who consecrated his house redeems it, he must add a fifth to the assessed value, and it will belong to him." + }, + { + "verseNum": 16, + "text": "If a man consecrates to the LORD a parcel of his land, then your valuation shall be proportional to the seed required for it—fifty shekels of silver for every homer of barley seed." + }, + { + "verseNum": 17, + "text": "If he consecrates his field during the Year of Jubilee, the price will stand according to your valuation." + }, + { + "verseNum": 18, + "text": "But if he consecrates his field after the Jubilee, the priest is to calculate the price in proportion to the years left until the next Year of Jubilee, so that your valuation will be reduced." + }, + { + "verseNum": 19, + "text": "And if the one who consecrated the field decides to redeem it, he must add a fifth to the assessed value, and it shall belong to him." + }, + { + "verseNum": 20, + "text": "If, however, he does not redeem the field, or if he has sold it to another man, it may no longer be redeemed." + }, + { + "verseNum": 21, + "text": "When the field is released in the Jubilee, it will become holy, like a field devoted to the LORD; it becomes the property of the priests." + }, + { + "verseNum": 22, + "text": "Now if a man consecrates to the LORD a field he has purchased, which is not a part of his own property," + }, + { + "verseNum": 23, + "text": "then the priest shall calculate for him the value up to the Year of Jubilee, and the man shall pay the assessed value on that day as a sacred offering to the LORD." + }, + { + "verseNum": 24, + "text": "In the Year of Jubilee the field shall return to the one from whom it was bought—the original owner of the land." + }, + { + "verseNum": 25, + "text": "Every valuation will be according to the sanctuary shekel, twenty gerahs to the shekel." + }, + { + "verseNum": 26, + "text": "But no one may consecrate a firstborn of the livestock, because a firstborn belongs to the LORD. Whether it is an ox or a sheep, it is the LORD’s." + }, + { + "verseNum": 27, + "text": "But if it is among the unclean animals, then he may redeem it according to your valuation and add a fifth of its value. If it is not redeemed, then it shall be sold according to your valuation." + }, + { + "verseNum": 28, + "text": "Nothing that a man sets apart to the LORD from all he owns—whether a man, an animal, or his inherited land—can be sold or redeemed; everything so devoted is most holy to the LORD." + }, + { + "verseNum": 29, + "text": "No person set apart for destruction may be ransomed; he must surely be put to death." + }, + { + "verseNum": 30, + "text": "Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD." + }, + { + "verseNum": 31, + "text": "If a man wishes to redeem part of his tithe, he must add a fifth to its value." + }, + { + "verseNum": 32, + "text": "Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD." + }, + { + "verseNum": 33, + "text": "He must not inspect whether it is good or bad, and he shall not make any substitution. But if he does make a substitution, both the animal and its substitute shall become holy; they cannot be redeemed.’”" + }, + { + "verseNum": 34, + "text": "These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-3.json b/data/en_bible/BSB/LEV/chapter-3.json new file mode 100644 index 0000000..037695a --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-3.json @@ -0,0 +1,73 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blemish before the LORD." + }, + { + "verseNum": 2, + "text": "He is to lay his hand on the head of the offering and slaughter it at the entrance to the Tent of Meeting. Then Aaron’s sons the priests shall sprinkle the blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "From the peace offering he is to bring an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 5, + "text": "Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burning wood, as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 6, + "text": "If, however, one’s peace offering to the LORD is from the flock, he must present a male or female without blemish." + }, + { + "verseNum": 7, + "text": "If he is presenting a lamb for his offering, he must present it before the LORD." + }, + { + "verseNum": 8, + "text": "He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 9, + "text": "And from the peace offering he shall bring an offering made by fire to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 10, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 11, + "text": "Then the priest is to burn them on the altar as food, an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "If one’s offering is a goat, he is to present it before the LORD." + }, + { + "verseNum": 13, + "text": "He must lay his hand on its head and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 14, + "text": "And from his offering he shall present an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 15, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 16, + "text": "Then the priest is to burn the food on the altar as an offering made by fire, a pleasing aroma. All the fat is the LORD’s." + }, + { + "verseNum": 17, + "text": "This is a permanent statute for the generations to come, wherever you live: You must not eat any fat or any blood.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-4.json b/data/en_bible/BSB/LEV/chapter-4.json new file mode 100644 index 0000000..17712a2 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-4.json @@ -0,0 +1,145 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to do as follows with one who sins unintentionally against any of the LORD’s commandments and does what is forbidden by them:" + }, + { + "verseNum": 3, + "text": "If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull without blemish as a sin offering for the sin he has committed." + }, + { + "verseNum": 4, + "text": "He must bring the bull to the entrance to the Tent of Meeting before the LORD, lay his hand on the bull’s head, and slaughter it before the LORD." + }, + { + "verseNum": 5, + "text": "Then the anointed priest shall take some of the bull’s blood and bring it into the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "The priest is to dip his finger in the blood and sprinkle some of it seven times before the LORD, in front of the veil of the sanctuary." + }, + { + "verseNum": 7, + "text": "The priest must then put some of the blood on the horns of the altar of fragrant incense that is before the LORD in the Tent of Meeting. And he is to pour out the rest of the bull’s blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "Then he shall remove all the fat from the bull of the sin offering—the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 9, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys—" + }, + { + "verseNum": 10, + "text": "just as the fat is removed from the ox of the peace offering. Then the priest shall burn them on the altar of burnt offering." + }, + { + "verseNum": 11, + "text": "But the hide of the bull and all its flesh, with its head and legs and its entrails and dung—" + }, + { + "verseNum": 12, + "text": "all the rest of the bull—he must take outside the camp to a ceremonially clean place where the ashes are poured out, and there he must burn it on a wood fire on the ash heap." + }, + { + "verseNum": 13, + "text": "Now if the whole congregation of Israel strays unintentionally and the matter escapes the notice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing what is forbidden," + }, + { + "verseNum": 14, + "text": "when they become aware of the sin they have committed, then the assembly must bring a young bull as a sin offering and present it before the Tent of Meeting." + }, + { + "verseNum": 15, + "text": "The elders of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be slaughtered before the LORD." + }, + { + "verseNum": 16, + "text": "Then the anointed priest is to bring some of the bull’s blood into the Tent of Meeting," + }, + { + "verseNum": 17, + "text": "and he is to dip his finger in the blood and sprinkle it seven times before the LORD in front of the veil." + }, + { + "verseNum": 18, + "text": "He is also to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 19, + "text": "And he is to remove all the fat from it and burn it on the altar." + }, + { + "verseNum": 20, + "text": "He shall offer this bull just as he did the bull for the sin offering; in this way the priest will make atonement on their behalf, and they will be forgiven." + }, + { + "verseNum": 21, + "text": "Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is the sin offering for the assembly." + }, + { + "verseNum": 22, + "text": "When a leader sins unintentionally and does what is prohibited by any of the commandments of the LORD his God, he incurs guilt." + }, + { + "verseNum": 23, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished male goat as his offering." + }, + { + "verseNum": 24, + "text": "He is to lay his hand on the head of the goat and slaughter it at the place where the burnt offering is slaughtered before the LORD. It is a sin offering." + }, + { + "verseNum": 25, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 26, + "text": "He must burn all its fat on the altar, like the fat of the peace offerings; thus the priest will make atonement for that man’s sin, and he will be forgiven." + }, + { + "verseNum": 27, + "text": "And if one of the common people sins unintentionally and does what is prohibited by any of the LORD’s commandments, he incurs guilt." + }, + { + "verseNum": 28, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished female goat as his offering for that sin." + }, + { + "verseNum": 29, + "text": "He is to lay his hand on the head of the sin offering and slaughter it at the place of the burnt offering." + }, + { + "verseNum": 30, + "text": "Then the priest is to take some of its blood with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 31, + "text": "Then he is to remove all the fat, just as it is removed from the peace offering, and the priest is to burn it on the altar as a pleasing aroma to the LORD. In this way the priest will make atonement for him, and he will be forgiven." + }, + { + "verseNum": 32, + "text": "If, however, he brings a lamb as a sin offering, he must bring an unblemished female." + }, + { + "verseNum": 33, + "text": "And he is to lay his hand on the head of the sin offering and slaughter it as a sin offering at the place where the burnt offering is slaughtered." + }, + { + "verseNum": 34, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar." + }, + { + "verseNum": 35, + "text": "And he shall remove all the fat, just as the fat of the lamb is removed from the peace offerings, and he shall burn it on the altar along with the offerings made by fire to the LORD. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-5.json b/data/en_bible/BSB/LEV/chapter-5.json new file mode 100644 index 0000000..8d5fa3b --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-5.json @@ -0,0 +1,81 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned of it, he shall bear the iniquity." + }, + { + "verseNum": 2, + "text": "Or if a person touches anything unclean—whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is unaware of it, he is unclean and guilty." + }, + { + "verseNum": 3, + "text": "Or if he touches human uncleanness—anything by which one becomes unclean—even if he is unaware of it, when he realizes it, he is guilty." + }, + { + "verseNum": 4, + "text": "Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath—even if he is unaware of it, when he realizes it, he is guilty in the matter." + }, + { + "verseNum": 5, + "text": "If someone incurs guilt in one of these ways, he must confess the sin he has committed," + }, + { + "verseNum": 6, + "text": "and he must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will make atonement for him concerning his sin." + }, + { + "verseNum": 7, + "text": "If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin offering and the other as a burnt offering." + }, + { + "verseNum": 8, + "text": "He is to bring them to the priest, who shall first present the one for the sin offering. He is to twist its head at the front of its neck without severing it;" + }, + { + "verseNum": 9, + "text": "then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of the altar. It is a sin offering." + }, + { + "verseNum": 10, + "text": "And the priest must prepare the second bird as a burnt offering according to the ordinance. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + }, + { + "verseNum": 11, + "text": "But if he cannot afford two turtledoves or two young pigeons, he may bring a tenth of an ephah of fine flour as a sin offering. He must not put olive oil or frankincense on it, because it is a sin offering." + }, + { + "verseNum": 12, + "text": "He is to bring it to the priest, who shall take a handful from it as a memorial portion and burn it on the altar atop the offerings made by fire to the LORD; it is a sin offering." + }, + { + "verseNum": 13, + "text": "In this way the priest will make atonement for him for any of these sins he has committed, and he will be forgiven. The remainder will belong to the priest, like the grain offering.”" + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 15, + "text": "“If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering." + }, + { + "verseNum": 16, + "text": "Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the ram as a guilt offering, and he will be forgiven." + }, + { + "verseNum": 17, + "text": "If someone sins and violates any of the LORD’s commandments even though he was unaware, he is guilty and shall bear his punishment." + }, + { + "verseNum": 18, + "text": "He is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his behalf for the wrong he has committed in ignorance, and he will be forgiven." + }, + { + "verseNum": 19, + "text": "It is a guilt offering; he was certainly guilty before the LORD.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-6.json b/data/en_bible/BSB/LEV/chapter-6.json new file mode 100644 index 0000000..0e467d9 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-6.json @@ -0,0 +1,125 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“If someone sins and acts unfaithfully against the LORD by deceiving his neighbor in regard to a deposit or security entrusted to him or stolen, or if he extorts his neighbor" + }, + { + "verseNum": 3, + "text": "or finds lost property and lies about it and swears falsely, or if he commits any such sin that a man might commit—" + }, + { + "verseNum": 4, + "text": "once he has sinned and becomes guilty, he must return what he has stolen or taken by extortion, or the deposit entrusted to him, or the lost property he found," + }, + { + "verseNum": 5, + "text": "or anything else about which he has sworn falsely.\n \nHe must make restitution in full, add a fifth of the value, and pay it to the owner on the day he acknowledges his guilt." + }, + { + "verseNum": 6, + "text": "Then he must bring to the priest his guilt offering to the LORD: an unblemished ram of proper value from the flock." + }, + { + "verseNum": 7, + "text": "In this way the priest will make atonement for him before the LORD, and he will be forgiven for anything he may have done to incur guilt.”" + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 9, + "text": "“Command Aaron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and the fire must be kept burning on the altar." + }, + { + "verseNum": 10, + "text": "And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the fire has consumed and place them beside it." + }, + { + "verseNum": 11, + "text": "Then he must take off his garments, put on other clothes, and carry the ashes outside the camp to a ceremonially clean place." + }, + { + "verseNum": 12, + "text": "The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of the peace offerings on it." + }, + { + "verseNum": 13, + "text": "The fire shall be kept burning on the altar continually; it must not be extinguished." + }, + { + "verseNum": 14, + "text": "Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in front of the altar." + }, + { + "verseNum": 15, + "text": "The priest is to remove a handful of fine flour and olive oil, together with all the frankincense from the grain offering, and burn the memorial portion on the altar as a pleasing aroma to the LORD." + }, + { + "verseNum": 16, + "text": "Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 17, + "text": "It must not be baked with leaven; I have assigned it as their portion of My offerings made by fire. It is most holy, like the sin offering and the guilt offering." + }, + { + "verseNum": 18, + "text": "Any male among the sons of Aaron may eat it. This is a permanent portion from the offerings made by fire to the LORD for the generations to come. Anything that touches them will become holy.”" + }, + { + "verseNum": 19, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 20, + "text": "“This is the offering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, half of it in the morning and half in the evening." + }, + { + "verseNum": 21, + "text": "It shall be prepared with oil on a griddle; you are to bring it well-kneaded and present it as a grain offering broken in pieces, a pleasing aroma to the LORD." + }, + { + "verseNum": 22, + "text": "The priest, who is one of Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for the LORD, it must be burned completely." + }, + { + "verseNum": 23, + "text": "Every grain offering for a priest shall be burned completely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 25, + "text": "“Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, the sin offering shall be slaughtered before the LORD; it is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it shall eat it; it must be eaten in a holy place, in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Anything that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must wash it in a holy place." + }, + { + "verseNum": 28, + "text": "The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the pot must be scoured and rinsed with water." + }, + { + "verseNum": 29, + "text": "Any male among the priests may eat it; it is most holy." + }, + { + "verseNum": 30, + "text": "But no sin offering may be eaten if its blood has been brought into the Tent of Meeting to make atonement in the Holy Place; it must be burned." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-7.json b/data/en_bible/BSB/LEV/chapter-7.json new file mode 100644 index 0000000..dccabd8 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-7.json @@ -0,0 +1,157 @@ +{ + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is the law of the guilt offering, which is most holy:" + }, + { + "verseNum": 2, + "text": "The guilt offering must be slaughtered in the place where the burnt offering is slaughtered, and the priest shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "And all the fat from it shall be offered: the fat tail, the fat that covers the entrails," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which is to be removed with the kidneys." + }, + { + "verseNum": 5, + "text": "The priest shall burn them on the altar as an offering made by fire to the LORD; it is a guilt offering." + }, + { + "verseNum": 6, + "text": "Every male among the priests may eat of it. It must be eaten in a holy place; it is most holy." + }, + { + "verseNum": 7, + "text": "The guilt offering is like the sin offering; the same law applies to both. It belongs to the priest who makes atonement with it." + }, + { + "verseNum": 8, + "text": "As for the priest who presents a burnt offering for anyone, the hide of that offering belongs to him." + }, + { + "verseNum": 9, + "text": "Likewise, every grain offering that is baked in an oven or cooked in a pan or on a griddle belongs to the priest who presents it," + }, + { + "verseNum": 10, + "text": "and every grain offering, whether dry or mixed with oil, belongs equally to all the sons of Aaron." + }, + { + "verseNum": 11, + "text": "Now this is the law of the peace offering that one may present to the LORD:" + }, + { + "verseNum": 12, + "text": "If he offers it in thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour mixed with oil." + }, + { + "verseNum": 13, + "text": "Along with his peace offering of thanksgiving he is to present an offering with cakes of leavened bread." + }, + { + "verseNum": 14, + "text": "From the cakes he must present one portion of each offering as a contribution to the LORD. It belongs to the priest who sprinkles the blood of the peace offering." + }, + { + "verseNum": 15, + "text": "The meat of the sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it may be left until morning." + }, + { + "verseNum": 16, + "text": "If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may be eaten on the next day." + }, + { + "verseNum": 17, + "text": "But any meat of the sacrifice remaining until the third day must be burned up." + }, + { + "verseNum": 18, + "text": "If any of the meat from his peace offering is eaten on the third day, it will not be accepted. It will not be credited to the one who presented it; it shall be an abomination, and the one who eats of it shall bear his iniquity." + }, + { + "verseNum": 19, + "text": "Meat that touches anything unclean must not be eaten; it is to be burned up. As for any other meat, anyone who is ceremonially clean may eat it." + }, + { + "verseNum": 20, + "text": "But if anyone who is unclean eats meat from the peace offering that belongs to the LORD, that person must be cut off from his people." + }, + { + "verseNum": 21, + "text": "If one touches anything unclean, whether human uncleanness, an unclean animal, or any unclean, detestable thing, and then eats any of the meat of the peace offering that belongs to the LORD, that person must be cut off from his people.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Speak to the Israelites and say, ‘You are not to eat any of the fat of an ox, a sheep, or a goat." + }, + { + "verseNum": 24, + "text": "The fat of an animal found dead or mauled by wild beasts may be used for any other purpose, but you must not eat it." + }, + { + "verseNum": 25, + "text": "If anyone eats the fat of an animal from which an offering made by fire may be presented to the LORD, the one who eats it must be cut off from his people." + }, + { + "verseNum": 26, + "text": "You must not eat the blood of any bird or animal in any of your dwellings." + }, + { + "verseNum": 27, + "text": "If anyone eats blood, that person must be cut off from his people.’”" + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 29, + "text": "“Speak to the Israelites and say, ‘Anyone who presents a peace offering to the LORD must bring it as his sacrifice to the LORD." + }, + { + "verseNum": 30, + "text": "With his own hands he is to bring the offerings made by fire to the LORD; he shall bring the fat, together with the breast, and wave the breast as a wave offering before the LORD." + }, + { + "verseNum": 31, + "text": "The priest is to burn the fat on the altar, but the breast belongs to Aaron and his sons." + }, + { + "verseNum": 32, + "text": "And you are to give the right thigh to the priest as a contribution from your peace offering." + }, + { + "verseNum": 33, + "text": "The son of Aaron who presents the blood and fat of the peace offering shall have the right thigh as a portion." + }, + { + "verseNum": 34, + "text": "I have taken from the sons of Israel the breast of the wave offering and the thigh of the contribution of their peace offerings, and I have given them to Aaron the priest and his sons as a permanent portion from the sons of Israel.’”" + }, + { + "verseNum": 35, + "text": "This is the portion of the offerings made by fire to the LORD for Aaron and his sons since the day they were presented to serve the LORD as priests." + }, + { + "verseNum": 36, + "text": "On the day they were anointed, the LORD commanded that this be given them by the sons of Israel. It is a permanent portion for the generations to come." + }, + { + "verseNum": 37, + "text": "This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the ordination offering, and the peace offering," + }, + { + "verseNum": 38, + "text": "which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-8.json b/data/en_bible/BSB/LEV/chapter-8.json new file mode 100644 index 0000000..34ad366 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-8.json @@ -0,0 +1,149 @@ +{ + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Take Aaron and his sons, their garments, the anointing oil, the bull of the sin offering, the two rams, and the basket of unleavened bread," + }, + { + "verseNum": 3, + "text": "and assemble the whole congregation at the entrance to the Tent of Meeting.”" + }, + { + "verseNum": 4, + "text": "So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the Tent of Meeting." + }, + { + "verseNum": 5, + "text": "And Moses said to them, “This is what the LORD has commanded to be done.”" + }, + { + "verseNum": 6, + "text": "Then Moses presented Aaron and his sons and washed them with water." + }, + { + "verseNum": 7, + "text": "He put the tunic on Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and fastened it to him." + }, + { + "verseNum": 8, + "text": "Then he put the breastpiece on him and placed the Urim and Thummim in the breastpiece." + }, + { + "verseNum": 9, + "text": "Moses also put the turban on Aaron’s head and set the gold plate, the holy diadem, on the front of the turban, as the LORD had commanded him." + }, + { + "verseNum": 10, + "text": "Next, Moses took the anointing oil and anointed the tabernacle and everything in it; and so he consecrated them." + }, + { + "verseNum": 11, + "text": "He sprinkled some of the oil on the altar seven times, anointing the altar and all its utensils, and the basin with its stand, to consecrate them." + }, + { + "verseNum": 12, + "text": "He also poured some of the anointing oil on Aaron’s head and anointed him to consecrate him." + }, + { + "verseNum": 13, + "text": "Then Moses presented Aaron’s sons, put tunics on them, wrapped sashes around them, and tied headbands on them, just as the LORD had commanded him." + }, + { + "verseNum": 14, + "text": "Moses then brought the bull near for the sin offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 15, + "text": "Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement could be made on it." + }, + { + "verseNum": 16, + "text": "Moses also took all the fat that was on the entrails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar." + }, + { + "verseNum": 17, + "text": "But the bull with its hide, flesh, and dung he burned outside the camp, as the LORD had commanded him." + }, + { + "verseNum": 18, + "text": "Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 19, + "text": "Moses slaughtered the ram and sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 20, + "text": "He cut the ram into pieces and burned the head, the pieces, and the fat." + }, + { + "verseNum": 21, + "text": "He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, an offering made by fire to the LORD, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "After that, Moses presented the other ram, the ram of ordination, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 23, + "text": "Moses slaughtered the ram and took some of its blood and put it on Aaron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 24, + "text": "Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 25, + "text": "And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh." + }, + { + "verseNum": 26, + "text": "And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh." + }, + { + "verseNum": 27, + "text": "He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave offering." + }, + { + "verseNum": 28, + "text": "Then Moses took these from their hands and burned them on the altar with the burnt offering. This was an ordination offering, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 29, + "text": "He also took the breast—Moses’ portion of the ram of ordination—and waved it before the LORD as a wave offering, as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprinkled them on Aaron and his garments, and on his sons and their garments. So he consecrated Aaron and his garments, as well as Aaron’s sons and their garments." + }, + { + "verseNum": 31, + "text": "And Moses said to Aaron and his sons, “Boil the meat at the entrance to the Tent of Meeting and eat it there with the bread that is in the basket of ordination offerings, as I commanded, saying, ‘Aaron and his sons are to eat it.’" + }, + { + "verseNum": 32, + "text": "Then you must burn up the remainder of the meat and bread." + }, + { + "verseNum": 33, + "text": "You must not go outside the entrance to the Tent of Meeting for seven days, until the days of your ordination are complete; for it will take seven days to ordain you." + }, + { + "verseNum": 34, + "text": "What has been done today has been commanded by the LORD in order to make atonement on your behalf." + }, + { + "verseNum": 35, + "text": "You must remain at the entrance to the Tent of Meeting day and night for seven days and keep the LORD’s charge so that you will not die, for this is what I have been commanded.”" + }, + { + "verseNum": 36, + "text": "So Aaron and his sons did everything the LORD had commanded through Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-9.json b/data/en_bible/BSB/LEV/chapter-9.json new file mode 100644 index 0000000..046decf --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-9.json @@ -0,0 +1,101 @@ +{ + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On the eighth day Moses summoned Aaron and his sons and the elders of Israel." + }, + { + "verseNum": 2, + "text": "He said to Aaron, “Take for yourself a young bull for a sin offering and a ram for a burnt offering, both without blemish, and present them before the LORD." + }, + { + "verseNum": 3, + "text": "Then speak to the Israelites and say, ‘Take a male goat for a sin offering, a calf and a lamb—both a year old and without blemish—for a burnt offering," + }, + { + "verseNum": 4, + "text": "an ox and a ram for a peace offering to sacrifice before the LORD, and a grain offering mixed with oil. For today the LORD will appear to you.’”" + }, + { + "verseNum": 5, + "text": "So they took what Moses had commanded to the front of the Tent of Meeting, and the whole congregation drew near and stood before the LORD." + }, + { + "verseNum": 6, + "text": "And Moses said, “This is what the LORD has commanded you to do, so that the glory of the LORD may appear to you.”" + }, + { + "verseNum": 7, + "text": "Then Moses said to Aaron, “Approach the altar and sacrifice your sin offering and your burnt offering to make atonement for yourself and for the people. And sacrifice the people’s offering to make atonement for them, as the LORD has commanded.”" + }, + { + "verseNum": 8, + "text": "So Aaron approached the altar and slaughtered the calf as a sin offering for himself." + }, + { + "verseNum": 9, + "text": "The sons of Aaron brought the blood to him, and he dipped his finger in the blood and applied it to the horns of the altar. And he poured out the rest of the blood at the base of the altar." + }, + { + "verseNum": 10, + "text": "On the altar he burned the fat, the kidneys, and the lobe of the liver from the sin offering, as the LORD had commanded Moses." + }, + { + "verseNum": 11, + "text": "But he burned up the flesh and the hide outside the camp." + }, + { + "verseNum": 12, + "text": "Then Aaron slaughtered the burnt offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 13, + "text": "They brought him the burnt offering piece by piece, including the head, and he burned them on the altar." + }, + { + "verseNum": 14, + "text": "He washed the entrails and the legs and burned them atop the burnt offering on the altar." + }, + { + "verseNum": 15, + "text": "Aaron then presented the people’s offering. He took the male goat for the people’s sin offering, slaughtered it, and offered it for sin like the first one." + }, + { + "verseNum": 16, + "text": "He presented the burnt offering and offered it according to the ordinance." + }, + { + "verseNum": 17, + "text": "Next he presented the grain offering, took a handful of it, and burned it on the altar in addition to the morning’s burnt offering." + }, + { + "verseNum": 18, + "text": "Then he slaughtered the ox and the ram as the people’s peace offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 19, + "text": "They also brought the fat portions from the ox and the ram—the fat tail, the fat covering the entrails, the kidneys, and the lobe of the liver—" + }, + { + "verseNum": 20, + "text": "and placed these on the breasts. Aaron burned the fat portions on the altar," + }, + { + "verseNum": 21, + "text": "but he waved the breasts and the right thigh as a wave offering before the LORD, as Moses had commanded." + }, + { + "verseNum": 22, + "text": "Aaron lifted up his hands toward the people and blessed them. And having made the sin offering, the burnt offering, and the peace offering, he stepped down." + }, + { + "verseNum": 23, + "text": "Moses and Aaron then entered the Tent of Meeting. When they came out, they blessed the people, and the glory of the LORD appeared to all the people." + }, + { + "verseNum": 24, + "text": "Fire came out from the presence of the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell facedown." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/LEV/chapter-intro.json b/data/en_bible/BSB/LEV/chapter-intro.json new file mode 100644 index 0000000..9501376 --- /dev/null +++ b/data/en_bible/BSB/LEV/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Leviticus" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-1.json b/data/en_bible/BSB/NUM/chapter-1.json new file mode 100644 index 0000000..e2de1ab --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-1.json @@ -0,0 +1,221 @@ +{ + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in the Tent of Meeting in the Wilderness of Sinai. He said:" + }, + { + "verseNum": 2, + "text": "“Take a census of the whole congregation of Israel by their clans and families, listing every man by name, one by one." + }, + { + "verseNum": 3, + "text": "You and Aaron are to number those who are twenty years of age or older by their divisions—everyone who can serve in Israel’s army." + }, + { + "verseNum": 4, + "text": "And one man from each tribe, the head of each family, must be there with you." + }, + { + "verseNum": 5, + "text": "These are the names of the men who are to assist you:\n \n From the tribe of Reuben, Elizur son of Shedeur;" + }, + { + "verseNum": 6, + "text": "from Simeon, Shelumiel son of Zurishaddai;" + }, + { + "verseNum": 7, + "text": "from Judah, Nahshon son of Amminadab;" + }, + { + "verseNum": 8, + "text": "from Issachar, Nethanel son of Zuar;" + }, + { + "verseNum": 9, + "text": "from Zebulun, Eliab son of Helon;" + }, + { + "verseNum": 10, + "text": "from the sons of Joseph:\n \n from Ephraim, Elishama son of Ammihud,\n \n and from Manasseh, Gamaliel son of Pedahzur;" + }, + { + "verseNum": 11, + "text": "from Benjamin, Abidan son of Gideoni;" + }, + { + "verseNum": 12, + "text": "from Dan, Ahiezer son of Ammishaddai;" + }, + { + "verseNum": 13, + "text": "from Asher, Pagiel son of Ocran;" + }, + { + "verseNum": 14, + "text": "from Gad, Eliasaph son of Deuel;" + }, + { + "verseNum": 15, + "text": "and from Naphtali, Ahira son of Enan.”" + }, + { + "verseNum": 16, + "text": "These men were appointed from the congregation; they were the leaders of the tribes of their fathers, the heads of the clans of Israel." + }, + { + "verseNum": 17, + "text": "So Moses and Aaron took these men who had been designated by name," + }, + { + "verseNum": 18, + "text": "and on the first day of the second month they assembled the whole congregation and recorded their ancestry by clans and families, counting one by one the names of those twenty years of age or older," + }, + { + "verseNum": 19, + "text": "just as the LORD had commanded Moses.\n \nSo Moses numbered them in the Wilderness of Sinai:" + }, + { + "verseNum": 20, + "text": "From the sons of Reuben, the firstborn of Israel, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 21, + "text": "those registered to the tribe of Reuben numbered 46,500." + }, + { + "verseNum": 22, + "text": "From the sons of Simeon, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 23, + "text": "those registered to the tribe of Simeon numbered 59,300." + }, + { + "verseNum": 24, + "text": "From the sons of Gad, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 25, + "text": "those registered to the tribe of Gad numbered 45,650." + }, + { + "verseNum": 26, + "text": "From the sons of Judah, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 27, + "text": "those registered to the tribe of Judah numbered 74,600." + }, + { + "verseNum": 28, + "text": "From the sons of Issachar, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 29, + "text": "those registered to the tribe of Issachar numbered 54,400." + }, + { + "verseNum": 30, + "text": "From the sons of Zebulun, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 31, + "text": "those registered to the tribe of Zebulun numbered 57,400." + }, + { + "verseNum": 32, + "text": "From the sons of Joseph:\n \n From the sons of Ephraim, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 33, + "text": "those registered to the tribe of Ephraim numbered 40,500." + }, + { + "verseNum": 34, + "text": "And from the sons of Manasseh, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 35, + "text": "those registered to the tribe of Manasseh numbered 32,200." + }, + { + "verseNum": 36, + "text": "From the sons of Benjamin, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 37, + "text": "those registered to the tribe of Benjamin numbered 35,400." + }, + { + "verseNum": 38, + "text": "From the sons of Dan, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 39, + "text": "those registered to the tribe of Dan numbered 62,700." + }, + { + "verseNum": 40, + "text": "From the sons of Asher, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 41, + "text": "those registered to the tribe of Asher numbered 41,500." + }, + { + "verseNum": 42, + "text": "From the sons of Naphtali, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 43, + "text": "those registered to the tribe of Naphtali numbered 53,400." + }, + { + "verseNum": 44, + "text": "These were the men numbered by Moses and Aaron, with the assistance of the twelve leaders of Israel, each one representing his family." + }, + { + "verseNum": 45, + "text": "So all the Israelites twenty years of age or older who could serve in Israel’s army were counted according to their families." + }, + { + "verseNum": 46, + "text": "And all those counted totaled 603,550." + }, + { + "verseNum": 47, + "text": "The Levites, however, were not numbered along with them by the tribe of their fathers." + }, + { + "verseNum": 48, + "text": "For the LORD had said to Moses:" + }, + { + "verseNum": 49, + "text": "“Do not number the tribe of Levi in the census with the other Israelites." + }, + { + "verseNum": 50, + "text": "Instead, you are to appoint the Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for it, and camp around it." + }, + { + "verseNum": 51, + "text": "Whenever the tabernacle is to move, the Levites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider who goes near it must be put to death." + }, + { + "verseNum": 52, + "text": "The Israelites are to camp by their divisions, each man in his own camp and under his own standard." + }, + { + "verseNum": 53, + "text": "But the Levites are to camp around the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the tabernacle of the Testimony.”" + }, + { + "verseNum": 54, + "text": "Thus the Israelites did everything just as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-2.json b/data/en_bible/BSB/NUM/chapter-2.json new file mode 100644 index 0000000..f4d4214 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-2.json @@ -0,0 +1,141 @@ +{ + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron:" + }, + { + "verseNum": 2, + "text": "“The Israelites are to camp around the Tent of Meeting at a distance from it, each man under his standard, with the banners of his family." + }, + { + "verseNum": 3, + "text": "On the east side, toward the sunrise, the divisions of Judah are to camp under their standard:\n \n The leader of the descendants of Judah is Nahshon son of Amminadab," + }, + { + "verseNum": 4, + "text": "and his division numbers 74,600." + }, + { + "verseNum": 5, + "text": "The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar," + }, + { + "verseNum": 6, + "text": "and his division numbers 54,400." + }, + { + "verseNum": 7, + "text": "Next will be the tribe of Zebulun. The leader of the Zebulunites is Eliab son of Helon," + }, + { + "verseNum": 8, + "text": "and his division numbers 57,400." + }, + { + "verseNum": 9, + "text": "The total number of men in the divisions of the camp of Judah is 186,400; they shall set out first." + }, + { + "verseNum": 10, + "text": "On the south side, the divisions of Reuben are to camp under their standard:\n \n The leader of the Reubenites is Elizur son of Shedeur," + }, + { + "verseNum": 11, + "text": "and his division numbers 46,500." + }, + { + "verseNum": 12, + "text": "The tribe of Simeon will camp next to it. The leader of the Simeonites is Shelumiel son of Zurishaddai," + }, + { + "verseNum": 13, + "text": "and his division numbers 59,300." + }, + { + "verseNum": 14, + "text": "Next will be the tribe of Gad. The leader of the Gadites is Eliasaph son of Deuel," + }, + { + "verseNum": 15, + "text": "and his division numbers 45,650." + }, + { + "verseNum": 16, + "text": "The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second." + }, + { + "verseNum": 17, + "text": "In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his own place under his standard." + }, + { + "verseNum": 18, + "text": "On the west side, the divisions of Ephraim are to camp under their standard:\n \n The leader of the Ephraimites is Elishama son of Ammihud," + }, + { + "verseNum": 19, + "text": "and his division numbers 40,500." + }, + { + "verseNum": 20, + "text": "The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son of Pedahzur," + }, + { + "verseNum": 21, + "text": "and his division numbers 32,200." + }, + { + "verseNum": 22, + "text": "Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of Gideoni," + }, + { + "verseNum": 23, + "text": "and his division numbers 35,400." + }, + { + "verseNum": 24, + "text": "The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third." + }, + { + "verseNum": 25, + "text": "On the north side, the divisions of Dan are to camp under their standard:\n \n The leader of the Danites is Ahiezer son of Ammishaddai," + }, + { + "verseNum": 26, + "text": "and his division numbers 62,700." + }, + { + "verseNum": 27, + "text": "The tribe of Asher will camp next to it. The leader of the Asherites is Pagiel son of Ocran," + }, + { + "verseNum": 28, + "text": "and his division numbers 41,500." + }, + { + "verseNum": 29, + "text": "Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of Enan," + }, + { + "verseNum": 30, + "text": "and his division numbers 53,400." + }, + { + "verseNum": 31, + "text": "The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.”" + }, + { + "verseNum": 32, + "text": "These are the Israelites, numbered according to their families. The total of those counted in the camps, by their divisions, was 603,550." + }, + { + "verseNum": 33, + "text": "But the Levites were not counted among the other Israelites, as the LORD had commanded Moses." + }, + { + "verseNum": 34, + "text": "So the Israelites did everything the LORD commanded Moses; they camped under their standards in this way and set out in the same way, each man with his clan and his family." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-3.json b/data/en_bible/BSB/NUM/chapter-3.json new file mode 100644 index 0000000..bcb21c7 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-3.json @@ -0,0 +1,209 @@ +{ + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount Sinai." + }, + { + "verseNum": 2, + "text": "These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ithamar." + }, + { + "verseNum": 3, + "text": "These were Aaron’s sons, the anointed priests, who were ordained to serve as priests." + }, + { + "verseNum": 4, + "text": "Nadab and Abihu, however, died in the presence of the LORD when they offered unauthorized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime of their father Aaron." + }, + { + "verseNum": 5, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Bring the tribe of Levi and present them to Aaron the priest to assist him." + }, + { + "verseNum": 7, + "text": "They are to perform duties for him and for the whole congregation before the Tent of Meeting, attending to the service of the tabernacle." + }, + { + "verseNum": 8, + "text": "They shall take care of all the furnishings of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the tabernacle." + }, + { + "verseNum": 9, + "text": "Assign the Levites to Aaron and his sons; they have been given exclusively to him from among the Israelites." + }, + { + "verseNum": 10, + "text": "So you shall appoint Aaron and his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle must be put to death.”" + }, + { + "verseNum": 11, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 12, + "text": "“Behold, I have taken the Levites from among the children of Israel in place of every firstborn Israelite from the womb. The Levites belong to Me," + }, + { + "verseNum": 13, + "text": "for all the firstborn are Mine. On the day I struck down every firstborn in the land of Egypt, I consecrated to Myself all the firstborn in Israel, both man and beast. They are Mine; I am the LORD.”" + }, + { + "verseNum": 14, + "text": "Then the LORD spoke to Moses in the Wilderness of Sinai, saying," + }, + { + "verseNum": 15, + "text": "“Number the Levites by their families and clans. You are to count every male a month old or more.”" + }, + { + "verseNum": 16, + "text": "So Moses numbered them according to the word of the LORD, as he had been commanded." + }, + { + "verseNum": 17, + "text": "These were the sons of Levi by name: Gershon, Kohath, and Merari." + }, + { + "verseNum": 18, + "text": "These were the names of the sons of Gershon by their clans: Libni and Shimei." + }, + { + "verseNum": 19, + "text": "The sons of Kohath by their clans were Amram, Izhar, Hebron, and Uzziel." + }, + { + "verseNum": 20, + "text": "And the sons of Merari by their clans were Mahli and Mushi. These were the clans of the Levites, according to their families." + }, + { + "verseNum": 21, + "text": "From Gershon came the Libnite clan and the Shimeite clan; these were the Gershonite clans." + }, + { + "verseNum": 22, + "text": "The number of all the males a month old or more was 7,500." + }, + { + "verseNum": 23, + "text": "The Gershonite clans were to camp on the west, behind the tabernacle," + }, + { + "verseNum": 24, + "text": "and the leader of the families of the Gershonites was Eliasaph son of Lael." + }, + { + "verseNum": 25, + "text": "The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its covering, the curtain for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, the curtain for the entrance to the courtyard that surrounds the tabernacle and altar, and the cords—all the service for these items." + }, + { + "verseNum": 27, + "text": "From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; these were the clans of the Kohathites." + }, + { + "verseNum": 28, + "text": "The number of all the males a month old or more was 8,600. They were responsible for the duties of the sanctuary." + }, + { + "verseNum": 29, + "text": "The clans of the Kohathites were to camp on the south side of the tabernacle," + }, + { + "verseNum": 30, + "text": "and the leader of the families of the Kohathites was Elizaphan son of Uzziel." + }, + { + "verseNum": 31, + "text": "Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctuary used with them, and the curtain—all the service for these items." + }, + { + "verseNum": 32, + "text": "The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those responsible for the duties of the sanctuary." + }, + { + "verseNum": 33, + "text": "From Merari came the clans of the Mahlites and Mushites; these were the Merarite clans." + }, + { + "verseNum": 34, + "text": "The number of all the males a month old or more was 6,200." + }, + { + "verseNum": 35, + "text": "The leader of the families of the Merarites was Zuriel son of Abihail; they were to camp on the north side of the tabernacle." + }, + { + "verseNum": 36, + "text": "The duties assigned to the sons of Merari were the tabernacle’s frames, crossbars, posts, bases, and all its equipment—all the service for these items," + }, + { + "verseNum": 37, + "text": "as well as the posts of the surrounding courtyard with their bases, tent pegs, and ropes." + }, + { + "verseNum": 38, + "text": "Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to perform the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who approached the sanctuary was to be put to death." + }, + { + "verseNum": 39, + "text": "The total number of Levites that Moses and Aaron counted by their clans at the LORD’s command, including all the males a month old or more, was 22,000." + }, + { + "verseNum": 40, + "text": "Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names." + }, + { + "verseNum": 41, + "text": "You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Levites in place of all the firstborn of the livestock of the Israelites.”" + }, + { + "verseNum": 42, + "text": "So Moses numbered all the firstborn of the Israelites, as the LORD had commanded him." + }, + { + "verseNum": 43, + "text": "The total number of the firstborn males a month old or more, listed by name, was 22,273." + }, + { + "verseNum": 44, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the LORD." + }, + { + "verseNum": 46, + "text": "To redeem the 273 firstborn Israelites who outnumber the Levites," + }, + { + "verseNum": 47, + "text": "you are to collect five shekels for each one, according to the sanctuary shekel of twenty gerahs." + }, + { + "verseNum": 48, + "text": "Give the money to Aaron and his sons as the redemption price for the excess among the Israelites.”" + }, + { + "verseNum": 49, + "text": "So Moses collected the redemption money from those in excess of the number redeemed by the Levites." + }, + { + "verseNum": 50, + "text": "He collected the money from the firstborn of the Israelites: 1,365 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 51, + "text": "And Moses gave the redemption money to Aaron and his sons in obedience to the word of the LORD, just as the LORD had commanded him." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-4.json b/data/en_bible/BSB/NUM/chapter-4.json new file mode 100644 index 0000000..e24630b --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-4.json @@ -0,0 +1,201 @@ +{ + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Take a census of the Kohathites among the Levites by their clans and families," + }, + { + "verseNum": 3, + "text": "men from thirty to fifty years old—everyone who is qualified to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 4, + "text": "This service of the Kohathites at the Tent of Meeting regards the most holy things." + }, + { + "verseNum": 5, + "text": "Whenever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover the ark of the Testimony with it." + }, + { + "verseNum": 6, + "text": "They are to place over this a covering of fine leather, spread a solid blue cloth over it, and insert its poles." + }, + { + "verseNum": 7, + "text": "Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to remain on it." + }, + { + "verseNum": 8, + "text": "And they shall spread a scarlet cloth over them, cover them with fine leather, and insert the poles." + }, + { + "verseNum": 9, + "text": "They are to take a blue cloth and cover the lampstand used for light, together with its lamps, wick trimmers, and trays, as well as the jars of oil with which to supply it." + }, + { + "verseNum": 10, + "text": "Then they shall wrap it and all its utensils inside a covering of fine leather and put it on the carrying frame." + }, + { + "verseNum": 11, + "text": "Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert the poles." + }, + { + "verseNum": 12, + "text": "They are to take all the utensils for serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them on the carrying frame." + }, + { + "verseNum": 13, + "text": "Then they shall remove the ashes from the bronze altar, spread a purple cloth over it," + }, + { + "verseNum": 14, + "text": "and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine leather and insert the poles." + }, + { + "verseNum": 15, + "text": "When Aaron and his sons have finished covering the holy objects and all their equipment, as soon as the camp is ready to move, the Kohathites shall come and do the carrying. But they must not touch the holy objects, or they will die. These are the transportation duties of the Kohathites regarding the Tent of Meeting." + }, + { + "verseNum": 16, + "text": "Eleazar son of Aaron the priest shall oversee the oil for the light, the fragrant incense, the daily grain offering, and the anointing oil. He has oversight of the entire tabernacle and everything in it, including the holy objects and their utensils.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 18, + "text": "“Do not allow the Kohathite tribal clans to be cut off from among the Levites." + }, + { + "verseNum": 19, + "text": "In order that they may live and not die when they come near the most holy things, do this for them: Aaron and his sons are to go in and assign each man his task and what he is to carry." + }, + { + "verseNum": 20, + "text": "But the Kohathites are not to go in and look at the holy objects, even for a moment, or they will die.”" + }, + { + "verseNum": 21, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 22, + "text": "“Take a census of the Gershonites as well, by their families and clans," + }, + { + "verseNum": 23, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 24, + "text": "This is the service of the Gershonite clans regarding work and transport:" + }, + { + "verseNum": 25, + "text": "They are to carry the curtains of the tabernacle, the Tent of Meeting with the covering of fine leather over it, the curtains for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their service. The Gershonites will do all that needs to be done with these items." + }, + { + "verseNum": 27, + "text": "All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to carry." + }, + { + "verseNum": 28, + "text": "This is the service of the Gershonite clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 29, + "text": "As for the sons of Merari, you are to number them by their clans and families," + }, + { + "verseNum": 30, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work of the Tent of Meeting." + }, + { + "verseNum": 31, + "text": "This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases," + }, + { + "verseNum": 32, + "text": "and the posts of the surrounding courtyard with their bases, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are responsible to carry." + }, + { + "verseNum": 33, + "text": "This is the service of the Merarite clans according to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.”" + }, + { + "verseNum": 34, + "text": "So Moses, Aaron, and the leaders of the congregation numbered the Kohathites by their clans and families," + }, + { + "verseNum": 35, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 36, + "text": "And those numbered by their clans totaled 2,750." + }, + { + "verseNum": 37, + "text": "These were counted from the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD through Moses." + }, + { + "verseNum": 38, + "text": "Then the Gershonites were numbered by their clans and families," + }, + { + "verseNum": 39, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 40, + "text": "And those numbered by their clans and families totaled 2,630." + }, + { + "verseNum": 41, + "text": "These were counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron counted at the LORD’s command." + }, + { + "verseNum": 42, + "text": "And the Merarites were numbered by their clans and families," + }, + { + "verseNum": 43, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "The men registered by their clans numbered 3,200." + }, + { + "verseNum": 45, + "text": "These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through Moses." + }, + { + "verseNum": 46, + "text": "So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Levites" + }, + { + "verseNum": 47, + "text": "from thirty to fifty years old who came to do the work of serving and carrying the Tent of Meeting." + }, + { + "verseNum": 48, + "text": "And the number of men was 8,580." + }, + { + "verseNum": 49, + "text": "At the LORD’s command they were numbered through Moses and each one was assigned his work and burden, as the LORD had commanded Moses." + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-5.json b/data/en_bible/BSB/NUM/chapter-5.json new file mode 100644 index 0000000..361bd02 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-5.json @@ -0,0 +1,129 @@ +{ + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to send away from the camp anyone with a skin disease, anyone who has a bodily discharge, and anyone who is defiled by a dead body." + }, + { + "verseNum": 3, + "text": "You must send away male and female alike; send them outside the camp so they will not defile their camp, where I dwell among them.”" + }, + { + "verseNum": 4, + "text": "So the Israelites did this, sending such people outside the camp. They did just as the LORD had instructed Moses." + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Tell the Israelites that when a man or woman acts unfaithfully against the LORD by committing any sin against another, that person is guilty" + }, + { + "verseNum": 7, + "text": "and must confess the sin he has committed. He must make full restitution, add a fifth to its value, and give all this to the one he has wronged." + }, + { + "verseNum": 8, + "text": "But if the man has no relative to whom restitution can be made for the wrong, the restitution belongs to the LORD and must be given to the priest along with the ram of atonement, by which the atonement is made for him." + }, + { + "verseNum": 9, + "text": "Every sacred contribution the Israelites bring to the priest shall belong to him." + }, + { + "verseNum": 10, + "text": "Each man’s sacred gifts are his own, but whatever he gives to the priest will belong to the priest.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“Speak to the Israelites and tell them that if any man’s wife goes astray and is unfaithful to him" + }, + { + "verseNum": 13, + "text": "by sleeping with another man, and it is concealed from her husband and her impurity is undetected (since there is no witness against her and she was not caught in the act)," + }, + { + "verseNum": 14, + "text": "and if a feeling of jealousy comes over her husband and he suspects his wife who has defiled herself—or if a feeling of jealousy comes over him and he suspects her even though she has not defiled herself—" + }, + { + "verseNum": 15, + "text": "then he is to bring his wife to the priest.\n \nHe must also bring for her an offering of a tenth of an ephah of barley flour. He is not to pour oil over it or put frankincense on it, because it is a grain offering for jealousy, an offering of memorial as a reminder of iniquity." + }, + { + "verseNum": 16, + "text": "The priest is to bring the wife forward and have her stand before the LORD." + }, + { + "verseNum": 17, + "text": "Then he is to take some holy water in a clay jar and put some of the dust from the tabernacle floor into the water." + }, + { + "verseNum": 18, + "text": "After the priest has the woman stand before the LORD, he is to let down her hair and place in her hands the grain offering of memorial, which is the grain offering for jealousy. The priest is to hold the bitter water that brings a curse." + }, + { + "verseNum": 19, + "text": "And he is to put the woman under oath and say to her, ‘If no other man has slept with you and you have not gone astray and become defiled while under your husband’s authority, may you be immune to this bitter water that brings a curse." + }, + { + "verseNum": 20, + "text": "But if you have gone astray while under your husband’s authority and have defiled yourself and lain carnally with a man other than your husband’—" + }, + { + "verseNum": 21, + "text": "and the priest shall have the woman swear under the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly swell." + }, + { + "verseNum": 22, + "text": "May this water that brings a curse enter your stomach and cause your belly to swell and your thigh to shrivel.’\n \nThen the woman is to say, ‘Amen, Amen.’" + }, + { + "verseNum": 23, + "text": "And the priest shall write these curses on a scroll and wash them off into the bitter water." + }, + { + "verseNum": 24, + "text": "He is to have the woman drink the bitter water that brings a curse, and it will enter her and cause her bitter suffering." + }, + { + "verseNum": 25, + "text": "The priest shall take from her hand the grain offering for jealousy, wave it before the LORD, and bring it to the altar." + }, + { + "verseNum": 26, + "text": "Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the water." + }, + { + "verseNum": 27, + "text": "When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will become accursed among her people." + }, + { + "verseNum": 28, + "text": "But if the woman has not defiled herself and is clean, she will be unaffected and able to conceive children." + }, + { + "verseNum": 29, + "text": "This is the law of jealousy when a wife goes astray and defiles herself while under her husband’s authority," + }, + { + "verseNum": 30, + "text": "or when a feeling of jealousy comes over a husband and he suspects his wife. He is to have the woman stand before the LORD, and the priest is to apply to her this entire law." + }, + { + "verseNum": 31, + "text": "The husband will be free from guilt, but the woman shall bear her iniquity.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-6.json b/data/en_bible/BSB/NUM/chapter-6.json new file mode 100644 index 0000000..56418a4 --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-6.json @@ -0,0 +1,113 @@ +{ + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them that if a man or woman makes a special vow, the vow of a Nazirite, to separate himself to the LORD," + }, + { + "verseNum": 3, + "text": "he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat fresh grapes or raisins." + }, + { + "verseNum": 4, + "text": "All the days of his separation, he is not to eat anything that comes from the grapevine, not even the seeds or skins." + }, + { + "verseNum": 5, + "text": "For the entire period of his vow of separation, no razor shall pass over his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow long." + }, + { + "verseNum": 6, + "text": "Throughout the days of his separation to the LORD, he must not go near a dead body." + }, + { + "verseNum": 7, + "text": "Even if his father or mother or brother or sister should die, he is not to defile himself, because the crown of consecration to his God is upon his head." + }, + { + "verseNum": 8, + "text": "Throughout the time of his separation, he is holy to the LORD." + }, + { + "verseNum": 9, + "text": "If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the seventh day." + }, + { + "verseNum": 10, + "text": "On the eighth day he must bring two turtledoves or two young pigeons to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 11, + "text": "And the priest is to offer one as a sin offering and the other as a burnt offering to make atonement for him, because he has sinned by being in the presence of the dead body. On that day he must consecrate his head again." + }, + { + "verseNum": 12, + "text": "He must rededicate his time of separation to the LORD and bring a year-old male lamb as a guilt offering. But the preceding days shall not be counted, because his separation was defiled." + }, + { + "verseNum": 13, + "text": "Now this is the law of the Nazirite when his time of separation is complete: He must be brought to the entrance to the Tent of Meeting," + }, + { + "verseNum": 14, + "text": "and he is to present an offering to the LORD of an unblemished year-old male lamb as a burnt offering, an unblemished year-old female lamb as a sin offering, and an unblemished ram as a peace offering—" + }, + { + "verseNum": 15, + "text": "together with their grain offerings and drink offerings—and a basket of unleavened cakes made from fine flour mixed with oil and unleavened wafers coated with oil." + }, + { + "verseNum": 16, + "text": "The priest is to present all these before the LORD and make the sin offering and the burnt offering." + }, + { + "verseNum": 17, + "text": "He shall also offer the ram as a peace offering to the LORD, along with the basket of unleavened bread. And the priest is to offer the accompanying grain offering and drink offering." + }, + { + "verseNum": 18, + "text": "Then at the entrance to the Tent of Meeting, the Nazirite is to shave his consecrated head, take the hair, and put it on the fire under the peace offering." + }, + { + "verseNum": 19, + "text": "And the priest is to take the boiled shoulder from the ram, one unleavened cake from the basket, and one unleavened wafer, and put them into the hands of the Nazirite who has just shaved the hair of his consecration." + }, + { + "verseNum": 20, + "text": "The priest shall then wave them as a wave offering before the LORD. This is a holy portion for the priest, in addition to the breast of the wave offering and the thigh that was presented. After that, the Nazirite may drink wine." + }, + { + "verseNum": 21, + "text": "This is the law of the Nazirite who vows his offering to the LORD for his separation, in addition to whatever else he can afford; he must fulfill whatever vow he makes, according to the law of his separation.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Tell Aaron and his sons: This is how you are to bless the Israelites. Say to them:" + }, + { + "verseNum": 24, + "text": "‘May the LORD bless you\n and keep you;" + }, + { + "verseNum": 25, + "text": "may the LORD cause His face to shine upon you\n and be gracious to you;" + }, + { + "verseNum": 26, + "text": "may the LORD lift up His countenance toward you\n and give you peace.’" + }, + { + "verseNum": 27, + "text": "So they shall put My name on the Israelites, and I will bless them.”" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/NUM/chapter-intro.json b/data/en_bible/BSB/NUM/chapter-intro.json new file mode 100644 index 0000000..2f053ae --- /dev/null +++ b/data/en_bible/BSB/NUM/chapter-intro.json @@ -0,0 +1,9 @@ +{ + "chapterNum": null, + "verses": [ + { + "verseNum": 1, + "text": "Numbers" + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB/new_testament.json b/data/en_bible/BSB/new_testament.json new file mode 100644 index 0000000..69a090a --- /dev/null +++ b/data/en_bible/BSB/new_testament.json @@ -0,0 +1,4 @@ +{ + "testament": "New Testament", + "books": [] +} \ No newline at end of file diff --git a/data/en_bible/BSB/old_testament.json b/data/en_bible/BSB/old_testament.json new file mode 100644 index 0000000..0e6d18a --- /dev/null +++ b/data/en_bible/BSB/old_testament.json @@ -0,0 +1,16044 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In the beginning God created the heavens and the earth." + }, + { + "verseNum": 2, + "text": "Now the earth was formless and void, and darkness was over the surface of the deep. And the Spirit of God was hovering over the surface of the waters." + }, + { + "verseNum": 3, + "text": "And God said, “Let there be light,” and there was light." + }, + { + "verseNum": 4, + "text": "And God saw that the light was good, and He separated the light from the darkness." + }, + { + "verseNum": 5, + "text": "God called the light “day,” and the darkness He called “night.”\n \n And there was evening, and there was morning—the first day." + }, + { + "verseNum": 6, + "text": "And God said, “Let there be an expanse between the waters, to separate the waters from the waters.”" + }, + { + "verseNum": 7, + "text": "So God made the expanse and separated the waters beneath it from the waters above. And it was so." + }, + { + "verseNum": 8, + "text": "God called the expanse “sky.”\n \n And there was evening, and there was morning—the second day." + }, + { + "verseNum": 9, + "text": "And God said, “Let the waters under the sky be gathered into one place, so that the dry land may appear.” And it was so." + }, + { + "verseNum": 10, + "text": "God called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that it was good." + }, + { + "verseNum": 11, + "text": "Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according to its kind.” And it was so." + }, + { + "verseNum": 12, + "text": "The earth produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And God saw that it was good." + }, + { + "verseNum": 13, + "text": "And there was evening, and there was morning—the third day." + }, + { + "verseNum": 14, + "text": "And God said, “Let there be lights in the expanse of the sky to distinguish between the day and the night, and let them be signs to mark the seasons and days and years." + }, + { + "verseNum": 15, + "text": "And let them serve as lights in the expanse of the sky to shine upon the earth.” And it was so." + }, + { + "verseNum": 16, + "text": "God made two great lights: the greater light to rule the day and the lesser light to rule the night. And He made the stars as well." + }, + { + "verseNum": 17, + "text": "God set these lights in the expanse of the sky to shine upon the earth," + }, + { + "verseNum": 18, + "text": "to preside over the day and the night, and to separate the light from the darkness. And God saw that it was good." + }, + { + "verseNum": 19, + "text": "And there was evening, and there was morning—the fourth day." + }, + { + "verseNum": 20, + "text": "And God said, “Let the waters teem with living creatures, and let birds fly above the earth in the open expanse of the sky.”" + }, + { + "verseNum": 21, + "text": "So God created the great sea creatures and every living thing that moves, with which the waters teemed according to their kinds, and every bird of flight after its kind. And God saw that it was good." + }, + { + "verseNum": 22, + "text": "Then God blessed them and said, “Be fruitful and multiply and fill the waters of the seas, and let birds multiply on the earth.”" + }, + { + "verseNum": 23, + "text": "And there was evening, and there was morning—the fifth day." + }, + { + "verseNum": 24, + "text": "And God said, “Let the earth bring forth living creatures according to their kinds: livestock, land crawlers, and beasts of the earth according to their kinds.” And it was so." + }, + { + "verseNum": 25, + "text": "God made the beasts of the earth according to their kinds, the livestock according to their kinds, and everything that crawls upon the earth according to its kind. And God saw that it was good." + }, + { + "verseNum": 26, + "text": "Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the livestock, and over all the earth itself and every creature that crawls upon it.”" + }, + { + "verseNum": 27, + "text": "So God created man in His own image;\n in the image of God He created him;\n male and female He created them." + }, + { + "verseNum": 28, + "text": "God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that crawls upon the earth.”" + }, + { + "verseNum": 29, + "text": "Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains seed. They will be yours for food." + }, + { + "verseNum": 30, + "text": "And to every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for food.” And it was so." + }, + { + "verseNum": 31, + "text": "And God looked upon all that He had made, and indeed, it was very good.\n \n And there was evening, and there was morning—the sixth day." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Thus the heavens and the earth were completed in all their vast array." + }, + { + "verseNum": 2, + "text": "And by the seventh day God had finished the work He had been doing; so on that day He rested from all His work." + }, + { + "verseNum": 3, + "text": "Then God blessed the seventh day and sanctified it, because on that day He rested from all the work of creation that He had accomplished." + }, + { + "verseNum": 4, + "text": "This is the account of the heavens and the earth when they were created, in the day that the LORD God made them." + }, + { + "verseNum": 5, + "text": "Now no shrub of the field had yet appeared on the earth, nor had any plant of the field sprouted; for the LORD God had not yet sent rain upon the earth, and there was no man to cultivate the ground." + }, + { + "verseNum": 6, + "text": "But springs welled up from the earth and watered the whole surface of the ground." + }, + { + "verseNum": 7, + "text": "Then the LORD God formed man from the dust of the ground and breathed the breath of life into his nostrils, and the man became a living being." + }, + { + "verseNum": 8, + "text": "And the LORD God planted a garden in Eden, in the east, where He placed the man He had formed." + }, + { + "verseNum": 9, + "text": "Out of the ground the LORD God gave growth to every tree that is pleasing to the eye and good for food. And in the middle of the garden were the tree of life and the tree of the knowledge of good and evil." + }, + { + "verseNum": 10, + "text": "Now a river flowed out of Eden to water the garden, and from there it branched into four headwaters:" + }, + { + "verseNum": 11, + "text": "The name of the first river is Pishon; it winds through the whole land of Havilah, where there is gold." + }, + { + "verseNum": 12, + "text": "And the gold of that land is pure, and bdellium and onyx are found there." + }, + { + "verseNum": 13, + "text": "The name of the second river is Gihon; it winds through the whole land of Cush." + }, + { + "verseNum": 14, + "text": "The name of the third river is Hiddekel; it runs along the east side of Assyria.\n \n And the fourth river is the Euphrates." + }, + { + "verseNum": 15, + "text": "Then the LORD God took the man and placed him in the Garden of Eden to cultivate and keep it." + }, + { + "verseNum": 16, + "text": "And the LORD God commanded him, “You may eat freely from every tree of the garden," + }, + { + "verseNum": 17, + "text": "but you must not eat from the tree of the knowledge of good and evil; for in the day that you eat of it, you will surely die.”" + }, + { + "verseNum": 18, + "text": "The LORD God also said, “It is not good for the man to be alone. I will make for him a suitable helper.”" + }, + { + "verseNum": 19, + "text": "And out of the ground the LORD God formed every beast of the field and every bird of the air, and He brought them to the man to see what he would name each one. And whatever the man called each living creature, that was its name." + }, + { + "verseNum": 20, + "text": "The man gave names to all the livestock, to the birds of the air, and to every beast of the field. But for Adam no suitable helper was found." + }, + { + "verseNum": 21, + "text": "So the LORD God caused the man to fall into a deep sleep, and while he slept, He took one of the man’s ribs and closed up the area with flesh." + }, + { + "verseNum": 22, + "text": "And from the rib that the LORD God had taken from the man, He made a woman and brought her to him." + }, + { + "verseNum": 23, + "text": "And the man said:\n \n “This is now bone of my bones\n and flesh of my flesh;\n she shall be called ‘woman,’\n for out of man she was taken.”" + }, + { + "verseNum": 24, + "text": "For this reason a man will leave his father and mother and be united to his wife, and they will become one flesh." + }, + { + "verseNum": 25, + "text": "And the man and his wife were both naked, and they were not ashamed." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now the serpent was more crafty than any beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the garden?’”" + }, + { + "verseNum": 2, + "text": "The woman answered the serpent, “We may eat the fruit of the trees of the garden," + }, + { + "verseNum": 3, + "text": "but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you will die.’”" + }, + { + "verseNum": 4, + "text": "“You will not surely die,” the serpent told her." + }, + { + "verseNum": 5, + "text": "“For God knows that in the day you eat of it, your eyes will be opened and you will be like God, knowing good and evil.”" + }, + { + "verseNum": 6, + "text": "When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her husband who was with her, and he ate it." + }, + { + "verseNum": 7, + "text": "And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for themselves." + }, + { + "verseNum": 8, + "text": "Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of the garden." + }, + { + "verseNum": 9, + "text": "But the LORD God called out to the man, “Where are you?”" + }, + { + "verseNum": 10, + "text": "“I heard Your voice in the garden,” he replied, “and I was afraid because I was naked; so I hid myself.”" + }, + { + "verseNum": 11, + "text": "“Who told you that you were naked?” asked the LORD God. “Have you eaten from the tree of which I commanded you not to eat?”" + }, + { + "verseNum": 12, + "text": "And the man answered, “The woman whom You gave me, she gave me fruit from the tree, and I ate it.”" + }, + { + "verseNum": 13, + "text": "Then the LORD God said to the woman, “What is this you have done?”\n \n“The serpent deceived me,” she replied, “and I ate.”" + }, + { + "verseNum": 14, + "text": "So the LORD God said to the serpent:\n \n “Because you have done this,\n cursed are you above all livestock\n and every beast of the field!\n On your belly will you go,\n and dust you will eat,\n all the days of your life." + }, + { + "verseNum": 15, + "text": "And I will put enmity between you and the woman,\n and between your seed and her seed.\n He will crush your head,\n and you will strike his heel.”" + }, + { + "verseNum": 16, + "text": "To the woman He said:\n \n “I will sharply increase your pain in childbirth;\n in pain you will bring forth children.\n Your desire will be for your husband,\n and he will rule over you.”" + }, + { + "verseNum": 17, + "text": "And to Adam He said:\n \n “Because you have listened to the voice of your wife\n and have eaten from the tree\n of which I commanded you not to eat,\n cursed is the ground because of you;\n through toil you will eat of it\n all the days of your life." + }, + { + "verseNum": 18, + "text": "Both thorns and thistles it will yield for you,\n and you will eat the plants of the field." + }, + { + "verseNum": 19, + "text": "By the sweat of your brow\n you will eat your bread,\n until you return to the ground—\n because out of it were you taken.\n For dust you are,\n and to dust you shall return.”" + }, + { + "verseNum": 20, + "text": "And Adam named his wife Eve, because she would be the mother of all the living." + }, + { + "verseNum": 21, + "text": "And the LORD God made garments of skin for Adam and his wife, and He clothed them." + }, + { + "verseNum": 22, + "text": "Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also from the tree of life, and eat, and live forever...”" + }, + { + "verseNum": 23, + "text": "Therefore the LORD God banished him from the Garden of Eden to work the ground from which he had been taken." + }, + { + "verseNum": 24, + "text": "So He drove out the man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword of flame to guard the way to the tree of life." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "And Adam had relations with his wife Eve, and she conceived and gave birth to Cain.\n \n“With the help of the LORD I have brought forth a man,” she said." + }, + { + "verseNum": 2, + "text": "Later she gave birth to Cain’s brother Abel.\n \nNow Abel was a keeper of sheep, while Cain was a tiller of the soil." + }, + { + "verseNum": 3, + "text": "So in the course of time, Cain brought some of the fruit of the soil as an offering to the LORD," + }, + { + "verseNum": 4, + "text": "while Abel brought the best portions of the firstborn of his flock.\n \nAnd the LORD looked with favor on Abel and his offering," + }, + { + "verseNum": 5, + "text": "but He had no regard for Cain and his offering. So Cain became very angry, and his countenance fell." + }, + { + "verseNum": 6, + "text": "“Why are you angry,” said the LORD to Cain, “and why has your countenance fallen?" + }, + { + "verseNum": 7, + "text": "If you do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master it.”" + }, + { + "verseNum": 8, + "text": "Then Cain said to his brother Abel, “Let us go out to the field.” And while they were in the field, Cain rose up against his brother Abel and killed him." + }, + { + "verseNum": 9, + "text": "And the LORD said to Cain, “Where is your brother Abel?”\n \n“I do not know!” he answered. “Am I my brother’s keeper?”" + }, + { + "verseNum": 10, + "text": "“What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground." + }, + { + "verseNum": 11, + "text": "Now you are cursed and banished from the ground, which has opened its mouth to receive your brother’s blood from your hand." + }, + { + "verseNum": 12, + "text": "When you till the ground, it will no longer yield its produce to you. You will be a fugitive and a wanderer on the earth.”" + }, + { + "verseNum": 13, + "text": "But Cain said to the LORD, “My punishment is greater than I can bear." + }, + { + "verseNum": 14, + "text": "Behold, this day You have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and whoever finds me will kill me.”" + }, + { + "verseNum": 15, + "text": "“Not so!” replied the LORD. “If anyone slays Cain, then Cain will be avenged sevenfold.” And the LORD placed a mark on Cain, so that no one who found him would kill him." + }, + { + "verseNum": 16, + "text": "So Cain went out from the presence of the LORD and settled in the land of Nod, east of Eden." + }, + { + "verseNum": 17, + "text": "And Cain had relations with his wife, and she conceived and gave birth to Enoch. Then Cain built a city and named it after his son Enoch." + }, + { + "verseNum": 18, + "text": "Now to Enoch was born Irad, and Irad was the father of Mehujael, and Mehujael was the father of Methusael, and Methusael was the father of Lamech." + }, + { + "verseNum": 19, + "text": "And Lamech married two women, one named Adah and the other Zillah." + }, + { + "verseNum": 20, + "text": "Adah gave birth to Jabal; he was the father of those who dwell in tents and raise livestock." + }, + { + "verseNum": 21, + "text": "And his brother’s name was Jubal; he was the father of all who play the harp and flute." + }, + { + "verseNum": 22, + "text": "And Zillah gave birth to Tubal-cain, a forger of every implement of bronze and iron. And the sister of Tubal-cain was Naamah." + }, + { + "verseNum": 23, + "text": "Then Lamech said to his wives:\n \n “Adah and Zillah, hear my voice;\n wives of Lamech, listen to my speech.\n For I have slain a man for wounding me,\n a young man for striking me." + }, + { + "verseNum": 24, + "text": "If Cain is avenged sevenfold,\n then Lamech seventy-sevenfold.”" + }, + { + "verseNum": 25, + "text": "And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in place of Abel, since Cain killed him.”" + }, + { + "verseNum": 26, + "text": "And to Seth also a son was born, and he called him Enosh.\n \nAt that time men began to call upon the name of the LORD." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This is the book of the generations of Adam. In the day that God created man, He made him in His own likeness." + }, + { + "verseNum": 2, + "text": "Male and female He created them, and He blessed them. And in the day they were created, He called them “man.”" + }, + { + "verseNum": 3, + "text": "When Adam was 130 years old, he had a son in his own likeness, after his own image; and he named him Seth." + }, + { + "verseNum": 4, + "text": "And after he had become the father of Seth, Adam lived 800 years and had other sons and daughters." + }, + { + "verseNum": 5, + "text": "So Adam lived a total of 930 years, and then he died." + }, + { + "verseNum": 6, + "text": "When Seth was 105 years old, he became the father of Enosh." + }, + { + "verseNum": 7, + "text": "And after he had become the father of Enosh, Seth lived 807 years and had other sons and daughters." + }, + { + "verseNum": 8, + "text": "So Seth lived a total of 912 years, and then he died." + }, + { + "verseNum": 9, + "text": "When Enosh was 90 years old, he became the father of Kenan." + }, + { + "verseNum": 10, + "text": "And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters." + }, + { + "verseNum": 11, + "text": "So Enosh lived a total of 905 years, and then he died." + }, + { + "verseNum": 12, + "text": "When Kenan was 70 years old, he became the father of Mahalalel." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Mahalalel, Kenan lived 840 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "So Kenan lived a total of 910 years, and then he died." + }, + { + "verseNum": 15, + "text": "When Mahalalel was 65 years old, he became the father of Jared." + }, + { + "verseNum": 16, + "text": "And after he had become the father of Jared, Mahalalel lived 830 years and had other sons and daughters." + }, + { + "verseNum": 17, + "text": "So Mahalalel lived a total of 895 years, and then he died." + }, + { + "verseNum": 18, + "text": "When Jared was 162 years old, he became the father of Enoch." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "So Jared lived a total of 962 years, and then he died." + }, + { + "verseNum": 21, + "text": "When Enoch was 65 years old, he became the father of Methuselah." + }, + { + "verseNum": 22, + "text": "And after he had become the father of Methuselah, Enoch walked with God 300 years and had other sons and daughters." + }, + { + "verseNum": 23, + "text": "So Enoch lived a total of 365 years." + }, + { + "verseNum": 24, + "text": "Enoch walked with God, and then he was no more, because God had taken him away." + }, + { + "verseNum": 25, + "text": "When Methuselah was 187 years old, he became the father of Lamech." + }, + { + "verseNum": 26, + "text": "And after he had become the father of Lamech, Methuselah lived 782 years and had other sons and daughters." + }, + { + "verseNum": 27, + "text": "So Methuselah lived a total of 969 years, and then he died." + }, + { + "verseNum": 28, + "text": "When Lamech was 182 years old, he had a son." + }, + { + "verseNum": 29, + "text": "And he named him Noah, saying, “May this one comfort us in the labor and toil of our hands caused by the ground that the LORD has cursed.”" + }, + { + "verseNum": 30, + "text": "And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters." + }, + { + "verseNum": 31, + "text": "So Lamech lived a total of 777 years, and then he died." + }, + { + "verseNum": 32, + "text": "After Noah was 500 years old, he became the father of Shem, Ham, and Japheth." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now when men began to multiply on the face of the earth and daughters were born to them," + }, + { + "verseNum": 2, + "text": "the sons of God saw that the daughters of men were beautiful, and they took as wives whomever they chose." + }, + { + "verseNum": 3, + "text": "So the LORD said, “My Spirit will not contend with man forever, for he is mortal; his days shall be 120 years.”" + }, + { + "verseNum": 4, + "text": "The Nephilim were on the earth in those days—and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty men of old, men of renown." + }, + { + "verseNum": 5, + "text": "Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time." + }, + { + "verseNum": 6, + "text": "And the LORD regretted that He had made man on the earth, and He was grieved in His heart." + }, + { + "verseNum": 7, + "text": "So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I am grieved that I have made them.”" + }, + { + "verseNum": 8, + "text": "Noah, however, found favor in the eyes of the LORD." + }, + { + "verseNum": 9, + "text": "This is the account of Noah. Noah was a righteous man, blameless in his generation; Noah walked with God." + }, + { + "verseNum": 10, + "text": "And Noah had three sons: Shem, Ham, and Japheth." + }, + { + "verseNum": 11, + "text": "Now the earth was corrupt in the sight of God, and full of violence." + }, + { + "verseNum": 12, + "text": "And God looked upon the earth and saw that it was corrupt; for all living creatures on the earth had corrupted their ways." + }, + { + "verseNum": 13, + "text": "Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I will destroy both them and the earth." + }, + { + "verseNum": 14, + "text": "Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out." + }, + { + "verseNum": 15, + "text": "And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high." + }, + { + "verseNum": 16, + "text": "You are to make a roof for the ark, finish its walls a cubit from the top, place a door in the side of the ark, and build lower, middle, and upper decks." + }, + { + "verseNum": 17, + "text": "And behold, I will bring floodwaters upon the earth to destroy every creature under the heavens that has the breath of life. Everything on the earth will perish." + }, + { + "verseNum": 18, + "text": "But I will establish My covenant with you, and you will enter the ark—you and your sons and your wife and your sons’ wives with you." + }, + { + "verseNum": 19, + "text": "And you are to bring two of every living creature into the ark—male and female—to keep them alive with you." + }, + { + "verseNum": 20, + "text": "Two of every kind of bird and animal and crawling creature will come to you to be kept alive." + }, + { + "verseNum": 21, + "text": "You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the animals.”" + }, + { + "verseNum": 22, + "text": "So Noah did everything precisely as God had commanded him." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Noah, “Go into the ark, you and all your family, because I have found you righteous in this generation." + }, + { + "verseNum": 2, + "text": "You are to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate;" + }, + { + "verseNum": 3, + "text": "and seven pairs of every kind of bird of the air, male and female, to preserve their offspring on the face of all the earth." + }, + { + "verseNum": 4, + "text": "For seven days from now I will send rain on the earth for forty days and forty nights, and I will wipe from the face of the earth every living thing I have made.”" + }, + { + "verseNum": 5, + "text": "And Noah did all that the LORD had commanded him." + }, + { + "verseNum": 6, + "text": "Now Noah was 600 years old when the floodwaters came upon the earth." + }, + { + "verseNum": 7, + "text": "And Noah and his wife, with his sons and their wives, entered the ark to escape the waters of the flood." + }, + { + "verseNum": 8, + "text": "The clean and unclean animals, the birds, and everything that crawls along the ground" + }, + { + "verseNum": 9, + "text": "came to Noah to enter the ark, two by two, male and female, as God had commanded Noah." + }, + { + "verseNum": 10, + "text": "And after seven days the floodwaters came upon the earth." + }, + { + "verseNum": 11, + "text": "In the six hundredth year of Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were opened." + }, + { + "verseNum": 12, + "text": "And the rain fell upon the earth for forty days and forty nights." + }, + { + "verseNum": 13, + "text": "On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons—" + }, + { + "verseNum": 14, + "text": "they and every kind of wild animal, livestock, crawling creature, bird, and winged creature." + }, + { + "verseNum": 15, + "text": "They came to Noah to enter the ark, two by two of every creature with the breath of life." + }, + { + "verseNum": 16, + "text": "And they entered, the male and female of every living thing, as God had commanded Noah. Then the LORD shut him in." + }, + { + "verseNum": 17, + "text": "For forty days the flood kept coming on the earth, and the waters rose and lifted the ark high above the earth." + }, + { + "verseNum": 18, + "text": "So the waters continued to surge and rise greatly on the earth, and the ark floated on the surface of the waters." + }, + { + "verseNum": 19, + "text": "Finally, the waters completely inundated the earth, so that all the high mountains under all the heavens were covered." + }, + { + "verseNum": 20, + "text": "The waters rose and covered the mountaintops to a depth of fifteen cubits." + }, + { + "verseNum": 21, + "text": "And every living thing that moved upon the earth perished—birds, livestock, animals, every creature that swarms upon the earth, and all mankind." + }, + { + "verseNum": 22, + "text": "Of all that was on dry land, everything that had the breath of life in its nostrils died." + }, + { + "verseNum": 23, + "text": "And every living thing on the face of the earth was destroyed—man and livestock, crawling creatures and birds of the air; they were blotted out from the earth, and only Noah and those with him in the ark remained." + }, + { + "verseNum": 24, + "text": "And the waters prevailed upon the earth for 150 days." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "But God remembered Noah and all the animals and livestock that were with him in the ark. And God sent a wind over the earth, and the waters began to subside." + }, + { + "verseNum": 2, + "text": "The springs of the deep and the floodgates of the heavens were closed, and the rain from the sky was restrained." + }, + { + "verseNum": 3, + "text": "The waters receded steadily from the earth, and after 150 days the waters had gone down." + }, + { + "verseNum": 4, + "text": "On the seventeenth day of the seventh month, the ark came to rest on the mountains of Ararat." + }, + { + "verseNum": 5, + "text": "And the waters continued to recede until the tenth month, and on the first day of the tenth month the tops of the mountains became visible." + }, + { + "verseNum": 6, + "text": "After forty days Noah opened the window he had made in the ark" + }, + { + "verseNum": 7, + "text": "and sent out a raven. It kept flying back and forth until the waters had dried up from the earth." + }, + { + "verseNum": 8, + "text": "Then Noah sent out a dove to see if the waters had receded from the surface of the ground." + }, + { + "verseNum": 9, + "text": "But the dove found no place to rest her foot, and she returned to him in the ark, because the waters were still covering the surface of all the earth. So he reached out his hand and brought her back inside the ark." + }, + { + "verseNum": 10, + "text": "Noah waited seven more days and again sent out the dove from the ark." + }, + { + "verseNum": 11, + "text": "And behold, the dove returned to him in the evening with a freshly plucked olive leaf in her beak. So Noah knew that the waters had receded from the earth." + }, + { + "verseNum": 12, + "text": "And Noah waited seven more days and sent out the dove again, but this time she did not return to him." + }, + { + "verseNum": 13, + "text": "In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the ground was dry." + }, + { + "verseNum": 14, + "text": "By the twenty-seventh day of the second month, the earth was fully dry." + }, + { + "verseNum": 15, + "text": "Then God said to Noah," + }, + { + "verseNum": 16, + "text": "“Come out of the ark, you and your wife, along with your sons and their wives." + }, + { + "verseNum": 17, + "text": "Bring out all the living creatures that are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and multiply upon it.”" + }, + { + "verseNum": 18, + "text": "So Noah came out, along with his sons and his wife and his sons’ wives." + }, + { + "verseNum": 19, + "text": "Every living creature, every creeping thing, and every bird—everything that moves upon the earth—came out of the ark, kind by kind." + }, + { + "verseNum": 20, + "text": "Then Noah built an altar to the LORD. And taking from every kind of clean animal and clean bird, he offered burnt offerings on the altar." + }, + { + "verseNum": 21, + "text": "When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every inclination of his heart is evil from his youth. And never again will I destroy all living creatures as I have done." + }, + { + "verseNum": 22, + "text": "As long as the earth endures,\n seedtime and harvest,\n cold and heat,\n summer and winter,\n day and night\n shall never cease.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the earth." + }, + { + "verseNum": 2, + "text": "The fear and dread of you will fall on every living creature on the earth, every bird of the air, every creature that crawls on the ground, and all the fish of the sea. They are delivered into your hand." + }, + { + "verseNum": 3, + "text": "Everything that lives and moves will be food for you; just as I gave you the green plants, I now give you all things." + }, + { + "verseNum": 4, + "text": "But you must not eat meat with its lifeblood still in it." + }, + { + "verseNum": 5, + "text": "And surely I will require the life of any man or beast by whose hand your lifeblood is shed. I will demand an accounting from anyone who takes the life of his fellow man:" + }, + { + "verseNum": 6, + "text": "Whoever sheds the blood of man,\n by man his blood will be shed;\n for in His own image\n God has made mankind." + }, + { + "verseNum": 7, + "text": "But as for you,\n be fruitful and multiply;\n spread out across the earth\n and multiply upon it.”" + }, + { + "verseNum": 8, + "text": "Then God said to Noah and his sons with him," + }, + { + "verseNum": 9, + "text": "“Behold, I now establish My covenant with you and your descendants after you," + }, + { + "verseNum": 10, + "text": "and with every living creature that was with you—the birds, the livestock, and every beast of the earth—every living thing that came out of the ark." + }, + { + "verseNum": 11, + "text": "And I establish My covenant with you: Never again will all life be cut off by the waters of a flood; never again will there be a flood to destroy the earth.”" + }, + { + "verseNum": 12, + "text": "And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all generations to come:" + }, + { + "verseNum": 13, + "text": "I have set My rainbow in the clouds, and it will be a sign of the covenant between Me and the earth." + }, + { + "verseNum": 14, + "text": "Whenever I form clouds over the earth and the rainbow appears in the clouds," + }, + { + "verseNum": 15, + "text": "I will remember My covenant between Me and you and every living creature of every kind. Never again will the waters become a flood to destroy all life." + }, + { + "verseNum": 16, + "text": "And whenever the rainbow appears in the clouds, I will see it and remember the everlasting covenant between God and every living creature of every kind that is on the earth.”" + }, + { + "verseNum": 17, + "text": "So God said to Noah, “This is the sign of the covenant that I have established between Me and every creature on the earth.”" + }, + { + "verseNum": 18, + "text": "The sons of Noah who came out of the ark were Shem, Ham, and Japheth. And Ham was the father of Canaan." + }, + { + "verseNum": 19, + "text": "These three were the sons of Noah, and from them the whole earth was populated." + }, + { + "verseNum": 20, + "text": "Now Noah, a man of the soil, proceeded to plant a vineyard." + }, + { + "verseNum": 21, + "text": "But when he drank some of its wine, he became drunk and uncovered himself inside his tent." + }, + { + "verseNum": 22, + "text": "And Ham, the father of Canaan, saw his father’s nakedness and told his two brothers outside." + }, + { + "verseNum": 23, + "text": "Then Shem and Japheth took a garment and placed it across their shoulders, and walking backward, they covered their father’s nakedness. Their faces were turned away so that they did not see their father’s nakedness." + }, + { + "verseNum": 24, + "text": "When Noah awoke from his drunkenness and learned what his youngest son had done to him," + }, + { + "verseNum": 25, + "text": "he said,\n \n “Cursed be Canaan!\n A servant of servants\n shall he be to his brothers.”" + }, + { + "verseNum": 26, + "text": "He also declared:\n \n “Blessed be the LORD, the God of Shem!\n May Canaan be the servant of Shem." + }, + { + "verseNum": 27, + "text": "May God expand the territory of Japheth;\n may he dwell in the tents of Shem,\n and may Canaan be his servant.”" + }, + { + "verseNum": 28, + "text": "After the flood, Noah lived 350 years." + }, + { + "verseNum": 29, + "text": "So Noah lived a total of 950 years, and then he died." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Noah’s sons Shem, Ham, and Japheth, who also had sons after the flood." + }, + { + "verseNum": 2, + "text": "The sons of Japheth:\n \n Gomer, Magog, Madai, Javan, Tubal, Meshech, and Tiras." + }, + { + "verseNum": 3, + "text": "The sons of Gomer:\n \n Ashkenaz, Riphath, and Togarmah." + }, + { + "verseNum": 4, + "text": "And the sons of Javan:\n \n Elishah, Tarshish, the Kittites, and the Rodanites." + }, + { + "verseNum": 5, + "text": "From these, the maritime peoples separated into their territories, according to their languages, by clans within their nations." + }, + { + "verseNum": 6, + "text": "The sons of Ham:\n \n Cush, Mizraim, Put, and Canaan." + }, + { + "verseNum": 7, + "text": "The sons of Cush:\n \n Seba, Havilah, Sabtah, Raamah, and Sabteca.\n \nAnd the sons of Raamah:\n \n Sheba and Dedan." + }, + { + "verseNum": 8, + "text": "Cush was the father of Nimrod, who began to be a mighty one on the earth." + }, + { + "verseNum": 9, + "text": "He was a mighty hunter before the LORD; so it is said, “Like Nimrod, a mighty hunter before the LORD.”" + }, + { + "verseNum": 10, + "text": "His kingdom began in Babylon, Erech, Accad, and Calneh, in the land of Shinar." + }, + { + "verseNum": 11, + "text": "From that land he went forth into Assyria, where he built Nineveh, Rehoboth-Ir, Calah," + }, + { + "verseNum": 12, + "text": "and Resen, which is between Nineveh and the great city of Calah." + }, + { + "verseNum": 13, + "text": "Mizraim was the father of the Ludites, the Anamites, the Lehabites, the Naphtuhites," + }, + { + "verseNum": 14, + "text": "the Pathrusites, the Casluhites (from whom the Philistines came), and the Caphtorites." + }, + { + "verseNum": 15, + "text": "And Canaan was the father of Sidon his firstborn, and of the Hittites," + }, + { + "verseNum": 16, + "text": "the Jebusites, the Amorites, the Girgashites," + }, + { + "verseNum": 17, + "text": "the Hivites, the Arkites, the Sinites," + }, + { + "verseNum": 18, + "text": "the Arvadites, the Zemarites, and the Hamathites.\n \nLater the Canaanite clans were scattered," + }, + { + "verseNum": 19, + "text": "and the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as Lasha." + }, + { + "verseNum": 20, + "text": "These are the sons of Ham according to their clans, languages, lands, and nations." + }, + { + "verseNum": 21, + "text": "And sons were also born to Shem, the older brother of Japheth; Shem was the forefather of all the sons of Eber." + }, + { + "verseNum": 22, + "text": "The sons of Shem:\n \n Elam, Asshur, Arphaxad, Lud, and Aram." + }, + { + "verseNum": 23, + "text": "The sons of Aram:\n \n Uz, Hul, Gether, and Mash." + }, + { + "verseNum": 24, + "text": "Arphaxad was the father of Shelah, and Shelah was the father of Eber." + }, + { + "verseNum": 25, + "text": "Two sons were born to Eber: One was named Peleg, because in his days the earth was divided, and his brother was named Joktan." + }, + { + "verseNum": 26, + "text": "And Joktan was the father of Almodad, Sheleph, Hazarmaveth, Jerah," + }, + { + "verseNum": 27, + "text": "Hadoram, Uzal, Diklah," + }, + { + "verseNum": 28, + "text": "Obal, Abimael, Sheba," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah, and Jobab. All these were sons of Joktan." + }, + { + "verseNum": 30, + "text": "Their territory extended from Mesha to Sephar, in the eastern hill country." + }, + { + "verseNum": 31, + "text": "These are the sons of Shem, according to their clans, languages, lands, and nations." + }, + { + "verseNum": 32, + "text": "All these are the clans of Noah’s sons, according to their generations and nations. From these the nations of the earth spread out after the flood." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now the whole world had one language and a common form of speech." + }, + { + "verseNum": 2, + "text": "And as people journeyed eastward, they found a plain in the land of Shinar and settled there." + }, + { + "verseNum": 3, + "text": "And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of mortar." + }, + { + "verseNum": 4, + "text": "“Come,” they said, “let us build for ourselves a city with a tower that reaches to the heavens, that we may make a name for ourselves and not be scattered over the face of all the earth.”" + }, + { + "verseNum": 5, + "text": "Then the LORD came down to see the city and the tower that the sons of men were building." + }, + { + "verseNum": 6, + "text": "And the LORD said, “If they have begun to do this as one people speaking the same language, then nothing they devise will be beyond them." + }, + { + "verseNum": 7, + "text": "Come, let Us go down and confuse their language, so that they will not understand one another’s speech.”" + }, + { + "verseNum": 8, + "text": "So the LORD scattered them from there over the face of all the earth, and they stopped building the city." + }, + { + "verseNum": 9, + "text": "That is why it is called Babel, for there the LORD confused the language of the whole world, and from that place the LORD scattered them over the face of all the earth." + }, + { + "verseNum": 10, + "text": "This is the account of Shem. Two years after the flood, when Shem was 100 years old, he became the father of Arphaxad." + }, + { + "verseNum": 11, + "text": "And after he had become the father of Arphaxad, Shem lived 500 years and had other sons and daughters." + }, + { + "verseNum": 12, + "text": "When Arphaxad was 35 years old, he became the father of Shelah." + }, + { + "verseNum": 13, + "text": "And after he had become the father of Shelah, Arphaxad lived 403 years and had other sons and daughters." + }, + { + "verseNum": 14, + "text": "When Shelah was 30 years old, he became the father of Eber." + }, + { + "verseNum": 15, + "text": "And after he had become the father of Eber, Shelah lived 403 years and had other sons and daughters." + }, + { + "verseNum": 16, + "text": "When Eber was 34 years old, he became the father of Peleg." + }, + { + "verseNum": 17, + "text": "And after he had become the father of Peleg, Eber lived 430 years and had other sons and daughters." + }, + { + "verseNum": 18, + "text": "When Peleg was 30 years old, he became the father of Reu." + }, + { + "verseNum": 19, + "text": "And after he had become the father of Reu, Peleg lived 209 years and had other sons and daughters." + }, + { + "verseNum": 20, + "text": "When Reu was 32 years old, he became the father of Serug." + }, + { + "verseNum": 21, + "text": "And after he had become the father of Serug, Reu lived 207 years and had other sons and daughters." + }, + { + "verseNum": 22, + "text": "When Serug was 30 years old, he became the father of Nahor." + }, + { + "verseNum": 23, + "text": "And after he had become the father of Nahor, Serug lived 200 years and had other sons and daughters." + }, + { + "verseNum": 24, + "text": "When Nahor was 29 years old, he became the father of Terah." + }, + { + "verseNum": 25, + "text": "And after he had become the father of Terah, Nahor lived 119 years and had other sons and daughters." + }, + { + "verseNum": 26, + "text": "When Terah was 70 years old, he became the father of Abram, Nahor, and Haran." + }, + { + "verseNum": 27, + "text": "This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran became the father of Lot." + }, + { + "verseNum": 28, + "text": "During his father Terah’s lifetime, Haran died in his native land, in Ur of the Chaldeans." + }, + { + "verseNum": 29, + "text": "And Abram and Nahor took wives for themselves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both Milcah and Iscah." + }, + { + "verseNum": 30, + "text": "But Sarai was barren; she had no children." + }, + { + "verseNum": 31, + "text": "And Terah took his son Abram, his grandson Lot son of Haran, and his daughter-in-law Sarai the wife of Abram, and they set out from Ur of the Chaldeans for the land of Canaan. But when they arrived in Haran, they settled there." + }, + { + "verseNum": 32, + "text": "Terah lived 205 years, and he died in Haran." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Abram, “Leave your country, your kindred, and your father’s household, and go to the land I will show you." + }, + { + "verseNum": 2, + "text": "I will make you into a great nation,\n and I will bless you;\n I will make your name great,\n so that you will be a blessing." + }, + { + "verseNum": 3, + "text": "I will bless those who bless you\n and curse those who curse you;\n and all the families of the earth\n will be blessed through you.”" + }, + { + "verseNum": 4, + "text": "So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy-five years old when he left Haran." + }, + { + "verseNum": 5, + "text": "And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in Haran, and set out for the land of Canaan.\n \nWhen they came to the land of Canaan," + }, + { + "verseNum": 6, + "text": "Abram traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the Canaanites were in the land." + }, + { + "verseNum": 7, + "text": "Then the LORD appeared to Abram and said, “I will give this land to your offspring.” So Abram built an altar there to the LORD, who had appeared to him." + }, + { + "verseNum": 8, + "text": "From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the LORD." + }, + { + "verseNum": 9, + "text": "And Abram journeyed on toward the Negev." + }, + { + "verseNum": 10, + "text": "Now there was a famine in the land. So Abram went down to Egypt to live there for a while because the famine was severe." + }, + { + "verseNum": 11, + "text": "As he was about to enter Egypt, he said to his wife Sarai, “Look, I know that you are a beautiful woman," + }, + { + "verseNum": 12, + "text": "and when the Egyptians see you, they will say, ‘This is his wife.’ Then they will kill me but will let you live." + }, + { + "verseNum": 13, + "text": "Please say you are my sister, so that I will be treated well for your sake, and on account of you my life will be spared.”" + }, + { + "verseNum": 14, + "text": "So when Abram entered Egypt, the Egyptians saw that the woman was very beautiful." + }, + { + "verseNum": 15, + "text": "When Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of Pharaoh." + }, + { + "verseNum": 16, + "text": "He treated Abram well on her account, and Abram acquired sheep and cattle, male and female donkeys, menservants and maidservants, and camels." + }, + { + "verseNum": 17, + "text": "The LORD, however, afflicted Pharaoh and his household with severe plagues because of Abram’s wife Sarai." + }, + { + "verseNum": 18, + "text": "So Pharaoh summoned Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife?" + }, + { + "verseNum": 19, + "text": "Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her and go!”" + }, + { + "verseNum": 20, + "text": "Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and all his possessions." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "So Abram went up out of Egypt into the Negev—he and his wife and all his possessions—and Lot was with him." + }, + { + "verseNum": 2, + "text": "And Abram had become extremely wealthy in livestock and silver and gold." + }, + { + "verseNum": 3, + "text": "From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had formerly been pitched," + }, + { + "verseNum": 4, + "text": "to the site where he had built the altar. And there Abram called on the name of the LORD." + }, + { + "verseNum": 5, + "text": "Now Lot, who was traveling with Abram, also had flocks and herds and tents." + }, + { + "verseNum": 6, + "text": "But the land was unable to support both of them while they stayed together, for they had so many possessions that they were unable to coexist." + }, + { + "verseNum": 7, + "text": "And there was discord between the herdsmen of Abram and the herdsmen of Lot. At that time the Canaanites and the Perizzites were also living in the land." + }, + { + "verseNum": 8, + "text": "So Abram said to Lot, “Please let there be no contention between you and me, or between your herdsmen and my herdsmen. After all, we are brothers." + }, + { + "verseNum": 9, + "text": "Is not the whole land before you? Now separate yourself from me. If you go to the left, I will go to the right; if you go to the right, I will go to the left.”" + }, + { + "verseNum": 10, + "text": "And Lot looked out and saw that the whole plain of the Jordan, all the way to Zoar, was well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD destroyed Sodom and Gomorrah.)" + }, + { + "verseNum": 11, + "text": "So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted company." + }, + { + "verseNum": 12, + "text": "Abram lived in the land of Canaan, but Lot settled in the cities of the plain and pitched his tent toward Sodom." + }, + { + "verseNum": 13, + "text": "But the men of Sodom were wicked, sinning greatly against the LORD." + }, + { + "verseNum": 14, + "text": "After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south and east and west," + }, + { + "verseNum": 15, + "text": "for all the land that you see, I will give to you and your offspring forever." + }, + { + "verseNum": 16, + "text": "I will make your offspring like the dust of the earth, so that if one could count the dust of the earth, then your offspring could be counted." + }, + { + "verseNum": 17, + "text": "Get up and walk around the land, through its length and breadth, for I will give it to you.”" + }, + { + "verseNum": 18, + "text": "So Abram moved his tent and went to live near the Oaks of Mamre at Hebron, where he built an altar to the LORD." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim" + }, + { + "verseNum": 2, + "text": "went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king of Zeboiim, and the king of Bela (that is, Zoar)." + }, + { + "verseNum": 3, + "text": "The latter five came as allies to the Valley of Siddim (that is, the Salt Sea )." + }, + { + "verseNum": 4, + "text": "For twelve years they had been subject to Chedorlaomer, but in the thirteenth year they rebelled." + }, + { + "verseNum": 5, + "text": "In the fourteenth year, Chedorlaomer and the kings allied with him went out and defeated the Rephaites in Ashteroth-karnaim, the Zuzites in Ham, the Emites in Shaveh-kiriathaim," + }, + { + "verseNum": 6, + "text": "and the Horites in the area of Mount Seir, as far as El-paran, which is near the desert." + }, + { + "verseNum": 7, + "text": "Then they turned back to invade En-mishpat (that is, Kadesh), and they conquered the whole territory of the Amalekites, as well as the Amorites who lived in Hazazon-tamar." + }, + { + "verseNum": 8, + "text": "Then the king of Sodom, the king of Gomorrah, the king of Admah, the king of Zeboiim, and the king of Bela (that is, Zoar) marched out and arrayed themselves for battle in the Valley of Siddim" + }, + { + "verseNum": 9, + "text": "against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Arioch king of Ellasar—four kings against five." + }, + { + "verseNum": 10, + "text": "Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled to the hill country." + }, + { + "verseNum": 11, + "text": "The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went on their way." + }, + { + "verseNum": 12, + "text": "They also carried off Abram’s nephew Lot and his possessions, since Lot was living in Sodom." + }, + { + "verseNum": 13, + "text": "Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near the Oaks of Mamre the Amorite, a brother of Eshcol and Aner, all of whom were bound by treaty to Abram." + }, + { + "verseNum": 14, + "text": "And when Abram heard that his relative had been captured, he mobilized the 318 trained men born in his household, and they set out in pursuit as far as Dan." + }, + { + "verseNum": 15, + "text": "During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as far as Hobah, north of Damascus." + }, + { + "verseNum": 16, + "text": "He retrieved all the goods, as well as his relative Lot and his possessions, together with the women and the rest of the people." + }, + { + "verseNum": 17, + "text": "After Abram returned from defeating Chedorlaomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of Shaveh (that is, the King’s Valley)." + }, + { + "verseNum": 18, + "text": "Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High —" + }, + { + "verseNum": 19, + "text": "and he blessed Abram and said:\n \n “Blessed be Abram by God Most High,\n Creator of heaven and earth," + }, + { + "verseNum": 20, + "text": "and blessed be God Most High,\n who has delivered your enemies into your hand.”\n \nThen Abram gave Melchizedek a tenth of everything." + }, + { + "verseNum": 21, + "text": "The king of Sodom said to Abram, “Give me the people, but take the goods for yourself.”" + }, + { + "verseNum": 22, + "text": "But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth," + }, + { + "verseNum": 23, + "text": "that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, ‘I have made Abram rich.’" + }, + { + "verseNum": 24, + "text": "I will accept nothing but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and Mamre. They may take their portion.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After these events, the word of the LORD came to Abram in a vision:\n \n “Do not be afraid, Abram.\n I am your shield,\n your very great reward.”" + }, + { + "verseNum": 2, + "text": "But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of my house is Eliezer of Damascus?”" + }, + { + "verseNum": 3, + "text": "Abram continued, “Behold, You have given me no offspring, so a servant in my household will be my heir.”" + }, + { + "verseNum": 4, + "text": "Then the word of the LORD came to Abram, saying, “This one will not be your heir, but one who comes from your own body will be your heir.”" + }, + { + "verseNum": 5, + "text": "And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring be.”" + }, + { + "verseNum": 6, + "text": "Abram believed the LORD, and it was credited to him as righteousness." + }, + { + "verseNum": 7, + "text": "The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give you this land to possess.”" + }, + { + "verseNum": 8, + "text": "But Abram replied, “Lord GOD, how can I know that I will possess it?”" + }, + { + "verseNum": 9, + "text": "And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with a turtledove and a young pigeon.”" + }, + { + "verseNum": 10, + "text": "So Abram brought all these to Him, split each of them down the middle, and laid the halves opposite each other. The birds, however, he did not cut in half." + }, + { + "verseNum": 11, + "text": "And the birds of prey descended on the carcasses, but Abram drove them away." + }, + { + "verseNum": 12, + "text": "As the sun was setting, Abram fell into a deep sleep, and suddenly great terror and darkness overwhelmed him." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Abram, “Know for certain that your descendants will be strangers in a land that is not their own, and they will be enslaved and mistreated four hundred years." + }, + { + "verseNum": 14, + "text": "But I will judge the nation they serve as slaves, and afterward they will depart with many possessions." + }, + { + "verseNum": 15, + "text": "You, however, will go to your fathers in peace and be buried at a ripe old age." + }, + { + "verseNum": 16, + "text": "In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet complete.”" + }, + { + "verseNum": 17, + "text": "When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the carcasses." + }, + { + "verseNum": 18, + "text": "On that day the LORD made a covenant with Abram, saying, “To your descendants I have given this land—from the river of Egypt to the great River Euphrates—" + }, + { + "verseNum": 19, + "text": "the land of the Kenites, Kenizzites, Kadmonites," + }, + { + "verseNum": 20, + "text": "Hittites, Perizzites, Rephaites," + }, + { + "verseNum": 21, + "text": "Amorites, Canaanites, Girgashites, and Jebusites.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Abram’s wife Sarai had borne him no children, but she had an Egyptian maidservant named Hagar." + }, + { + "verseNum": 2, + "text": "So Sarai said to Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidservant; perhaps I can build a family by her.”\n \nAnd Abram listened to the voice of Sarai." + }, + { + "verseNum": 3, + "text": "So after he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and gave her to Abram to be his wife." + }, + { + "verseNum": 4, + "text": "And he slept with Hagar, and she conceived. But when Hagar realized that she was pregnant, she began to despise her mistress." + }, + { + "verseNum": 5, + "text": "Then Sarai said to Abram, “May the wrong done to me be upon you! I delivered my servant into your arms, and ever since she saw that she was pregnant, she has treated me with contempt. May the LORD judge between you and me.”" + }, + { + "verseNum": 6, + "text": "“Here,” said Abram, “your servant is in your hands. Do whatever you want with her.” Then Sarai treated Hagar so harshly that she fled from her." + }, + { + "verseNum": 7, + "text": "Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along the road to Shur." + }, + { + "verseNum": 8, + "text": "“Hagar, servant of Sarai,” he said, “where have you come from, and where are you going?”\n \n“I am running away from my mistress Sarai,” she replied." + }, + { + "verseNum": 9, + "text": "So the angel of the LORD told her, “Return to your mistress and submit to her authority.”" + }, + { + "verseNum": 10, + "text": "Then the angel added, “I will greatly multiply your offspring so that they will be too numerous to count.”" + }, + { + "verseNum": 11, + "text": "The angel of the LORD proceeded:\n \n “Behold, you have conceived and will bear a son.\n And you shall name him Ishmael,\n for the LORD has heard your cry of affliction." + }, + { + "verseNum": 12, + "text": "He will be a wild donkey of a man,\n and his hand will be against everyone,\n and everyone’s hand against him;\n he will live in hostility\n toward all his brothers.”" + }, + { + "verseNum": 13, + "text": "So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me,” for she said, “Here I have seen the One who sees me!”" + }, + { + "verseNum": 14, + "text": "Therefore the well was called Beer-lahai-roi. It is located between Kadesh and Bered." + }, + { + "verseNum": 15, + "text": "And Hagar bore Abram a son, and Abram gave the name Ishmael to the son she had borne." + }, + { + "verseNum": 16, + "text": "Abram was eighty-six years old when Hagar bore Ishmael to him." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When Abram was ninety-nine years old, the LORD appeared to him and said, “I am God Almighty. Walk before Me and be blameless." + }, + { + "verseNum": 2, + "text": "I will establish My covenant between Me and you, and I will multiply you exceedingly.”" + }, + { + "verseNum": 3, + "text": "Then Abram fell facedown, and God said to him," + }, + { + "verseNum": 4, + "text": "“As for Me, this is My covenant with you: You will be the father of many nations." + }, + { + "verseNum": 5, + "text": "No longer will you be called Abram, but your name will be Abraham, for I have made you a father of many nations." + }, + { + "verseNum": 6, + "text": "I will make you exceedingly fruitful; I will make nations of you, and kings will descend from you." + }, + { + "verseNum": 7, + "text": "I will establish My covenant as an everlasting covenant between Me and you and your descendants after you, to be your God and the God of your descendants after you." + }, + { + "verseNum": 8, + "text": "And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be their God.”" + }, + { + "verseNum": 9, + "text": "God also said to Abraham, “You must keep My covenant—you and your descendants in the generations after you." + }, + { + "verseNum": 10, + "text": "This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be circumcised." + }, + { + "verseNum": 11, + "text": "You are to circumcise the flesh of your foreskin, and this will be a sign of the covenant between Me and you." + }, + { + "verseNum": 12, + "text": "Generation after generation, every male must be circumcised when he is eight days old, including those born in your household and those purchased from a foreigner—even those who are not your offspring." + }, + { + "verseNum": 13, + "text": "Whether they are born in your household or purchased, they must be circumcised. My covenant in your flesh will be an everlasting covenant." + }, + { + "verseNum": 14, + "text": "But if any male is not circumcised, he will be cut off from his people; he has broken My covenant.”" + }, + { + "verseNum": 15, + "text": "Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be Sarah." + }, + { + "verseNum": 16, + "text": "And I will bless her and will surely give you a son by her. I will bless her, and she will be the mother of nations; kings of peoples will descend from her.”" + }, + { + "verseNum": 17, + "text": "Abraham fell facedown. Then he laughed and said to himself, “Can a child be born to a man who is a hundred years old? Can Sarah give birth at the age of ninety?”" + }, + { + "verseNum": 18, + "text": "And Abraham said to God, “O that Ishmael might live under Your blessing!”" + }, + { + "verseNum": 19, + "text": "But God replied, “Your wife Sarah will indeed bear you a son, and you are to name him Isaac. I will establish My covenant with him as an everlasting covenant for his descendants after him." + }, + { + "verseNum": 20, + "text": "As for Ishmael, I have heard you, and I will surely bless him; I will make him fruitful and multiply him greatly. He will become the father of twelve rulers, and I will make him into a great nation." + }, + { + "verseNum": 21, + "text": "But I will establish My covenant with Isaac, whom Sarah will bear to you at this time next year.”" + }, + { + "verseNum": 22, + "text": "When He had finished speaking with Abraham, God went up from him." + }, + { + "verseNum": 23, + "text": "On that very day Abraham took his son Ishmael and all those born in his household or purchased with his money—every male among the members of Abraham’s household—and he circumcised them, just as God had told him." + }, + { + "verseNum": 24, + "text": "So Abraham was ninety-nine years old when he was circumcised," + }, + { + "verseNum": 25, + "text": "and his son Ishmael was thirteen;" + }, + { + "verseNum": 26, + "text": "Abraham and his son Ishmael were circumcised on the same day." + }, + { + "verseNum": 27, + "text": "And all the men of Abraham’s household—both servants born in his household and those purchased from foreigners—were circumcised with him." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD appeared to Abraham by the Oaks of Mamre in the heat of the day, while he was sitting at the entrance of his tent." + }, + { + "verseNum": 2, + "text": "And Abraham looked up and saw three men standing nearby. When he saw them, he ran from the entrance of his tent to meet them and bowed low to the ground." + }, + { + "verseNum": 3, + "text": "“My lord,” said Abraham, “if I have found favor in your sight, please do not pass your servant by." + }, + { + "verseNum": 4, + "text": "Let a little water be brought, that you may wash your feet and rest yourselves under the tree." + }, + { + "verseNum": 5, + "text": "And I will bring a bit of bread so that you may refresh yourselves. This is why you have passed your servant’s way. After that, you may continue on your way.”\n \n“Yes,” they replied, “you may do as you have said.”" + }, + { + "verseNum": 6, + "text": "So Abraham hurried into the tent and said to Sarah, “Quick! Prepare three seahs of fine flour, knead it, and bake some bread.”" + }, + { + "verseNum": 7, + "text": "Meanwhile, Abraham ran to the herd, selected a tender and choice calf, and gave it to a servant, who hurried to prepare it." + }, + { + "verseNum": 8, + "text": "Then Abraham brought curds and milk and the calf that had been prepared, and he set them before the men and stood by them under the tree as they ate." + }, + { + "verseNum": 9, + "text": "“Where is your wife Sarah?” they asked.\n \n“There, in the tent,” he replied." + }, + { + "verseNum": 10, + "text": "Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!”\n \nNow Sarah was behind him, listening at the entrance to the tent." + }, + { + "verseNum": 11, + "text": "And Abraham and Sarah were already old and well along in years; Sarah had passed the age of childbearing." + }, + { + "verseNum": 12, + "text": "So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleasure?”" + }, + { + "verseNum": 13, + "text": "And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am old?’" + }, + { + "verseNum": 14, + "text": "Is anything too difficult for the LORD? At the appointed time I will return to you—in about a year—and Sarah will have a son.”" + }, + { + "verseNum": 15, + "text": "But Sarah was afraid, so she denied it and said, “I did not laugh.”\n \n“No,” replied the LORD, “but you did laugh.”" + }, + { + "verseNum": 16, + "text": "When the men got up to leave, they looked out over Sodom, and Abraham walked along with them to see them off." + }, + { + "verseNum": 17, + "text": "And the LORD said, “Shall I hide from Abraham what I am about to do?" + }, + { + "verseNum": 18, + "text": "Abraham will surely become a great and powerful nation, and through him all the nations of the earth will be blessed." + }, + { + "verseNum": 19, + "text": "For I have chosen him, so that he will command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may bring upon Abraham what He has promised.”" + }, + { + "verseNum": 20, + "text": "Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin is so grievous," + }, + { + "verseNum": 21, + "text": "I will go down to see if their actions fully justify the outcry that has reached Me. If not, I will find out.”" + }, + { + "verseNum": 22, + "text": "And the two men turned away and went toward Sodom, but Abraham remained standing before the LORD." + }, + { + "verseNum": 23, + "text": "Abraham stepped forward and said, “Will You really sweep away the righteous with the wicked?" + }, + { + "verseNum": 24, + "text": "What if there are fifty righteous ones in the city? Will You really sweep it away and not spare the place for the sake of the fifty righteous ones who are there?" + }, + { + "verseNum": 25, + "text": "Far be it from You to do such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the Judge of all the earth do what is right?”" + }, + { + "verseNum": 26, + "text": "So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I will spare the whole place.”" + }, + { + "verseNum": 27, + "text": "Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but dust and ashes—" + }, + { + "verseNum": 28, + "text": "suppose the fifty righteous ones lack five. Will You destroy the whole city for the lack of five?”\n \nHe replied, “If I find forty-five there, I will not destroy it.”" + }, + { + "verseNum": 29, + "text": "Once again Abraham spoke to the LORD, “Suppose forty are found there?”\n \nHe answered, “On account of the forty, I will not do it.”" + }, + { + "verseNum": 30, + "text": "Then Abraham said, “May the Lord not be angry, but let me speak further. Suppose thirty are found there?”\n \nHe replied, “If I find thirty there, I will not do it.”" + }, + { + "verseNum": 31, + "text": "And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?”\n \nHe answered, “On account of the twenty, I will not destroy it.”" + }, + { + "verseNum": 32, + "text": "Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?”\n \nAnd He answered, “On account of the ten, I will not destroy it.”" + }, + { + "verseNum": 33, + "text": "When the LORD had finished speaking with Abraham, He departed, and Abraham returned home." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got up to meet them, bowed facedown," + }, + { + "verseNum": 2, + "text": "and said, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.”\n \n“No,” they answered, “we will spend the night in the square.”" + }, + { + "verseNum": 3, + "text": "But Lot insisted so strongly that they followed him into his house. He prepared a feast for them and baked unleavened bread, and they ate." + }, + { + "verseNum": 4, + "text": "Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded the house." + }, + { + "verseNum": 5, + "text": "They called out to Lot, saying, “Where are the men who came to you tonight? Send them out to us so we can have relations with them!”" + }, + { + "verseNum": 6, + "text": "Lot went outside to meet them, shutting the door behind him." + }, + { + "verseNum": 7, + "text": "“Please, my brothers,” he pleaded, “don’t do such a wicked thing!" + }, + { + "verseNum": 8, + "text": "Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protection of my roof.”" + }, + { + "verseNum": 9, + "text": "“Get out of the way!” they replied. And they declared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on Lot and moved in to break down the door." + }, + { + "verseNum": 10, + "text": "But the men inside reached out, pulled Lot into the house with them, and shut the door." + }, + { + "verseNum": 11, + "text": "And they struck the men at the entrance, young and old, with blindness, so that they wearied themselves trying to find the door." + }, + { + "verseNum": 12, + "text": "Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs to you? Get them out of here," + }, + { + "verseNum": 13, + "text": "because we are about to destroy this place. For the outcry to the LORD against its people is so great that He has sent us to destroy it.”" + }, + { + "verseNum": 14, + "text": "So Lot went out and spoke to the sons-in-law who were pledged in marriage to his daughters. “Get up,” he said. “Get out of this place, for the LORD is about to destroy the city!” But his sons-in-law thought he was joking." + }, + { + "verseNum": 15, + "text": "At daybreak the angels hurried Lot along, saying, “Get up! Take your wife and your two daughters who are here, or you will be swept away in the punishment of the city.”" + }, + { + "verseNum": 16, + "text": "But when Lot hesitated, the men grabbed his hand and the hands of his wife and his two daughters. And they led them safely out of the city, because of the LORD’s compassion for them." + }, + { + "verseNum": 17, + "text": "As soon as the men had brought them out, one of them said, “Run for your lives! Do not look back, and do not stop anywhere on the plain! Flee to the mountains, or you will be swept away!”" + }, + { + "verseNum": 18, + "text": "But Lot replied, “No, my lords, please!" + }, + { + "verseNum": 19, + "text": "Your servant has indeed found favor in your sight, and you have shown me great kindness by sparing my life. But I cannot run to the mountains; the disaster will overtake me, and I will die." + }, + { + "verseNum": 20, + "text": "Look, there is a town nearby where I can flee, and it is a small place. Please let me flee there—is it not a small place? Then my life will be saved.”" + }, + { + "verseNum": 21, + "text": "“Very well,” he answered, “I will grant this request as well, and will not demolish the town you indicate." + }, + { + "verseNum": 22, + "text": "Hurry! Run there quickly, for I cannot do anything until you reach it.” That is why the town was called Zoar." + }, + { + "verseNum": 23, + "text": "And by the time the sun had risen over the land, Lot had reached Zoar." + }, + { + "verseNum": 24, + "text": "Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens." + }, + { + "verseNum": 25, + "text": "Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the ground." + }, + { + "verseNum": 26, + "text": "But Lot’s wife looked back, and she became a pillar of salt." + }, + { + "verseNum": 27, + "text": "Early the next morning, Abraham got up and returned to the place where he had stood before the LORD." + }, + { + "verseNum": 28, + "text": "He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke from a furnace." + }, + { + "verseNum": 29, + "text": "So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities where he had lived." + }, + { + "verseNum": 30, + "text": "Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in Zoar—where they lived in a cave." + }, + { + "verseNum": 31, + "text": "One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over all the earth." + }, + { + "verseNum": 32, + "text": "Come, let us get our father drunk with wine so we can sleep with him and preserve his line.”" + }, + { + "verseNum": 33, + "text": "So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 34, + "text": "The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can preserve our father’s line.”" + }, + { + "verseNum": 35, + "text": "So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay down or when she got up." + }, + { + "verseNum": 36, + "text": "Thus both of Lot’s daughters became pregnant by their father." + }, + { + "verseNum": 37, + "text": "The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today." + }, + { + "verseNum": 38, + "text": "The younger daughter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of today." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham journeyed from there to the region of the Negev and settled between Kadesh and Shur. While he was staying in Gerar," + }, + { + "verseNum": 2, + "text": "Abraham said of his wife Sarah, “She is my sister.” So Abimelech king of Gerar had Sarah brought to him." + }, + { + "verseNum": 3, + "text": "One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is a married woman.”" + }, + { + "verseNum": 4, + "text": "Now Abimelech had not gone near her, so he replied, “Lord, would You destroy a nation even though it is innocent?" + }, + { + "verseNum": 5, + "text": "Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have done this in the integrity of my heart and the innocence of my hands.”" + }, + { + "verseNum": 6, + "text": "Then God said to Abimelech in the dream, “Yes, I know that you did this with a clear conscience, and so I have kept you from sinning against Me. That is why I did not let you touch her." + }, + { + "verseNum": 7, + "text": "Now return the man’s wife, for he is a prophet; he will pray for you and you will live. But if you do not restore her, be aware that you will surely die—you and all who belong to you.”" + }, + { + "verseNum": 8, + "text": "Early the next morning Abimelech got up and summoned all his servants; and when he described to them all that had happened, the men were terrified." + }, + { + "verseNum": 9, + "text": "Then Abimelech called Abraham and asked, “What have you done to us? How have I sinned against you, that you have brought such tremendous guilt upon me and my kingdom? You have done things to me that should not be done.”" + }, + { + "verseNum": 10, + "text": "Abimelech also asked Abraham, “What prompted you to do such a thing?”" + }, + { + "verseNum": 11, + "text": "Abraham replied, “I thought to myself, ‘Surely there is no fear of God in this place. They will kill me on account of my wife.’" + }, + { + "verseNum": 12, + "text": "Besides, she really is my sister, the daughter of my father—though not the daughter of my mother—and she became my wife." + }, + { + "verseNum": 13, + "text": "So when God had me journey from my father’s house, I said to Sarah, ‘This is how you can show your loyalty to me: Wherever we go, say of me, “He is my brother.”’”" + }, + { + "verseNum": 14, + "text": "So Abimelech brought sheep and cattle, menservants and maidservants, and he gave them to Abraham and restored his wife Sarah to him." + }, + { + "verseNum": 15, + "text": "And Abimelech said, “Look, my land is before you. Settle wherever you please.”" + }, + { + "verseNum": 16, + "text": "And he said to Sarah, “See, I am giving your brother a thousand pieces of silver. It is your vindication before all who are with you; you are completely cleared.”" + }, + { + "verseNum": 17, + "text": "Then Abraham prayed to God, and God healed Abimelech and his wife and his maidservants, so that they could again bear children—" + }, + { + "verseNum": 18, + "text": "for on account of Abraham’s wife Sarah, the LORD had completely closed all the wombs in Abimelech’s household." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD attended to Sarah as He had said, and the LORD did for Sarah what He had promised." + }, + { + "verseNum": 2, + "text": "So Sarah conceived and bore a son to Abraham in his old age, at the very time God had promised." + }, + { + "verseNum": 3, + "text": "And Abraham gave the name Isaac to the son Sarah bore to him." + }, + { + "verseNum": 4, + "text": "When his son Isaac was eight days old, Abraham circumcised him, as God had commanded him." + }, + { + "verseNum": 5, + "text": "Abraham was a hundred years old when his son Isaac was born to him." + }, + { + "verseNum": 6, + "text": "Then Sarah said, “God has made me laugh, and everyone who hears of this will laugh with me.”" + }, + { + "verseNum": 7, + "text": "She added, “Who would have told Abraham that Sarah would nurse children? Yet I have borne him a son in his old age.”" + }, + { + "verseNum": 8, + "text": "So the child grew and was weaned, and Abraham held a great feast on the day Isaac was weaned." + }, + { + "verseNum": 9, + "text": "But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son," + }, + { + "verseNum": 10, + "text": "and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my son Isaac!”" + }, + { + "verseNum": 11, + "text": "Now this matter distressed Abraham greatly because it concerned his son Ishmael." + }, + { + "verseNum": 12, + "text": "But God said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything that Sarah tells you, for through Isaac your offspring will be reckoned." + }, + { + "verseNum": 13, + "text": "But I will also make a nation of the slave woman’s son, because he is your offspring.”" + }, + { + "verseNum": 14, + "text": "Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beersheba." + }, + { + "verseNum": 15, + "text": "When the water in the skin was gone, she left the boy under one of the bushes." + }, + { + "verseNum": 16, + "text": "Then she went off and sat down nearby, about a bowshot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up her voice and wept." + }, + { + "verseNum": 17, + "text": "Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has heard the voice of the boy where he lies." + }, + { + "verseNum": 18, + "text": "Get up, lift up the boy, and take him by the hand, for I will make him into a great nation.”" + }, + { + "verseNum": 19, + "text": "Then God opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave the boy a drink." + }, + { + "verseNum": 20, + "text": "And God was with the boy, and he grew up and settled in the wilderness and became a great archer." + }, + { + "verseNum": 21, + "text": "And while he was dwelling in the Wilderness of Paran, his mother got a wife for him from the land of Egypt." + }, + { + "verseNum": 22, + "text": "At that time Abimelech and Phicol the commander of his army said to Abraham, “God is with you in all that you do." + }, + { + "verseNum": 23, + "text": "Now, therefore, swear to me here before God that you will not deal falsely with me or my children or descendants. Show to me and to the country in which you reside the same kindness that I have shown to you.”" + }, + { + "verseNum": 24, + "text": "And Abraham replied, “I swear it.”" + }, + { + "verseNum": 25, + "text": "But when Abraham complained to Abimelech about a well that Abimelech’s servants had seized," + }, + { + "verseNum": 26, + "text": "Abimelech replied, “I do not know who has done this. You did not tell me, so I have not heard about it until today.”" + }, + { + "verseNum": 27, + "text": "So Abraham brought sheep and cattle and gave them to Abimelech, and the two men made a covenant." + }, + { + "verseNum": 28, + "text": "Abraham separated seven ewe lambs from the flock," + }, + { + "verseNum": 29, + "text": "and Abimelech asked him, “Why have you set apart these seven ewe lambs?”" + }, + { + "verseNum": 30, + "text": "He replied, “You are to accept the seven ewe lambs from my hand as my witness that I dug this well.”" + }, + { + "verseNum": 31, + "text": "So that place was called Beersheba, because it was there that the two of them swore an oath." + }, + { + "verseNum": 32, + "text": "After they had made the covenant at Beersheba, Abimelech and Phicol the commander of his army got up and returned to the land of the Philistines." + }, + { + "verseNum": 33, + "text": "And Abraham planted a tamarisk tree in Beersheba, and there he called upon the name of the LORD, the Eternal God." + }, + { + "verseNum": 34, + "text": "And Abraham resided in the land of the Philistines for a long time." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Some time later God tested Abraham and said to him, “Abraham!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 2, + "text": "“Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Offer him there as a burnt offering on one of the mountains, which I will show you.”" + }, + { + "verseNum": 3, + "text": "So Abraham got up early the next morning, saddled his donkey, and took along two of his servants and his son Isaac. He split the wood for a burnt offering and set out for the place God had designated." + }, + { + "verseNum": 4, + "text": "On the third day Abraham looked up and saw the place in the distance." + }, + { + "verseNum": 5, + "text": "“Stay here with the donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we will return to you.”" + }, + { + "verseNum": 6, + "text": "Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together." + }, + { + "verseNum": 7, + "text": "Then Isaac said to his father Abraham, “My father!”\n \n“Here I am, my son,” he replied.\n \n“The fire and the wood are here,” said Isaac, “but where is the lamb for the burnt offering?”" + }, + { + "verseNum": 8, + "text": "Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the two walked on together." + }, + { + "verseNum": 9, + "text": "When they arrived at the place God had designated, Abraham built the altar there and arranged the wood. He bound his son Isaac and placed him on the altar, atop the wood." + }, + { + "verseNum": 10, + "text": "Then Abraham reached out his hand and took the knife to slaughter his son." + }, + { + "verseNum": 11, + "text": "Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!”\n \n“Here I am,” he replied." + }, + { + "verseNum": 12, + "text": "“Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only son from me.”" + }, + { + "verseNum": 13, + "text": "Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt offering in place of his son." + }, + { + "verseNum": 14, + "text": "And Abraham called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD it will be provided.”" + }, + { + "verseNum": 15, + "text": "And the angel of the LORD called to Abraham from heaven a second time," + }, + { + "verseNum": 16, + "text": "saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your only son," + }, + { + "verseNum": 17, + "text": "I will surely bless you, and I will multiply your descendants like the stars in the sky and the sand on the seashore. Your descendants will possess the gates of their enemies." + }, + { + "verseNum": 18, + "text": "And through your offspring all nations of the earth will be blessed, because you have obeyed My voice.”" + }, + { + "verseNum": 19, + "text": "Abraham went back to his servants, and they got up and set out together for Beersheba. And Abraham settled in Beersheba." + }, + { + "verseNum": 20, + "text": "Some time later, Abraham was told, “Milcah has also borne sons to your brother Nahor:" + }, + { + "verseNum": 21, + "text": "Uz the firstborn, his brother Buz, Kemuel (the father of Aram)," + }, + { + "verseNum": 22, + "text": "Chesed, Hazo, Pildash, Jidlaph, and Bethuel.”" + }, + { + "verseNum": 23, + "text": "And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s brother Nahor." + }, + { + "verseNum": 24, + "text": "Moreover, Nahor’s concubine, whose name was Reumah, bore Tebah, Gaham, Tahash, and Maacah." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarah lived to be 127 years old." + }, + { + "verseNum": 2, + "text": "She died in Kiriath-arba (that is, Hebron) in the land of Canaan, and Abraham went out to mourn and to weep for her." + }, + { + "verseNum": 3, + "text": "Then Abraham got up from beside his dead wife and said to the Hittites," + }, + { + "verseNum": 4, + "text": "“I am a foreigner and an outsider among you. Give me a burial site among you so that I can bury my dead.”" + }, + { + "verseNum": 5, + "text": "The Hittites replied to Abraham," + }, + { + "verseNum": 6, + "text": "“Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us will withhold his tomb for burying your dead.”" + }, + { + "verseNum": 7, + "text": "Then Abraham rose and bowed down before the people of the land, the Hittites." + }, + { + "verseNum": 8, + "text": "“If you are willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar on my behalf" + }, + { + "verseNum": 9, + "text": "to sell me the cave of Machpelah that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so that I may have a burial site.”" + }, + { + "verseNum": 10, + "text": "Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who had come to the gate of his city, Ephron the Hittite answered Abraham," + }, + { + "verseNum": 11, + "text": "“No, my lord. Listen to me. I give you the field, and I give you the cave that is in it. I give it to you in the presence of my people. Bury your dead.”" + }, + { + "verseNum": 12, + "text": "Again Abraham bowed down before the people of the land" + }, + { + "verseNum": 13, + "text": "and said to Ephron in their presence, “If you will please listen to me, I will pay you the price of the field. Accept it from me, so that I may bury my dead there.”" + }, + { + "verseNum": 14, + "text": "Ephron answered Abraham," + }, + { + "verseNum": 15, + "text": "“Listen to me, my lord. The land is worth four hundred shekels of silver, but what is that between you and me? Bury your dead.”" + }, + { + "verseNum": 16, + "text": "Abraham agreed to Ephron’s terms and weighed out for him the price he had named in the hearing of the Hittites: four hundred shekels of silver, according to the standard of the merchants." + }, + { + "verseNum": 17, + "text": "So Ephron’s field at Machpelah near Mamre, the cave that was in it, and all the trees within the boundaries of the field were deeded over" + }, + { + "verseNum": 18, + "text": "to Abraham’s possession in the presence of all the Hittites who had come to the gate of his city." + }, + { + "verseNum": 19, + "text": "After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre (that is, Hebron) in the land of Canaan." + }, + { + "verseNum": 20, + "text": "So the field and its cave were deeded by the Hittites to Abraham as a burial site." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "By now Abraham was old and well along in years, and the LORD had blessed him in every way." + }, + { + "verseNum": 2, + "text": "So Abraham instructed the chief servant of his household, who managed all he owned, “Place your hand under my thigh," + }, + { + "verseNum": 3, + "text": "and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the Canaanites among whom I am dwelling," + }, + { + "verseNum": 4, + "text": "but will go to my country and my kindred to take a wife for my son Isaac.”" + }, + { + "verseNum": 5, + "text": "The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you came?”" + }, + { + "verseNum": 6, + "text": "Abraham replied, “Make sure that you do not take my son back there." + }, + { + "verseNum": 7, + "text": "The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and promised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you so that you can take a wife for my son from there." + }, + { + "verseNum": 8, + "text": "And if the woman is unwilling to follow you, then you are released from this oath of mine. Only do not take my son back there.”" + }, + { + "verseNum": 9, + "text": "So the servant placed his hand under the thigh of his master Abraham and swore an oath to him concerning this matter." + }, + { + "verseNum": 10, + "text": "Then the servant took ten of his master’s camels and departed with all manner of good things from his master in hand. And he set out for Nahor’s hometown in Aram-naharaim." + }, + { + "verseNum": 11, + "text": "As evening approached, he made the camels kneel down near the well outside the town at the time when the women went out to draw water." + }, + { + "verseNum": 12, + "text": "“O LORD, God of my master Abraham,” he prayed, “please grant me success today, and show kindness to my master Abraham." + }, + { + "verseNum": 13, + "text": "Here I am, standing beside the spring, and the daughters of the townspeople are coming out to draw water." + }, + { + "verseNum": 14, + "text": "Now may it happen that the girl to whom I say, ‘Please let down your jar that I may drink,’ and who responds, ‘Drink, and I will water your camels as well’—let her be the one You have appointed for Your servant Isaac. By this I will know that You have shown kindness to my master.”" + }, + { + "verseNum": 15, + "text": "Before the servant had finished praying, Rebekah came out with her jar on her shoulder. She was the daughter of Bethuel son of Milcah, the wife of Abraham’s brother Nahor." + }, + { + "verseNum": 16, + "text": "Now the girl was very beautiful, a virgin who had not had relations with any man. She went down to the spring, filled her jar, and came up again." + }, + { + "verseNum": 17, + "text": "So the servant ran to meet her and said, “Please let me have a little water from your jar.”" + }, + { + "verseNum": 18, + "text": "“Drink, my lord,” she replied, and she quickly lowered her jar to her hands and gave him a drink." + }, + { + "verseNum": 19, + "text": "After she had given him a drink, she said, “I will also draw water for your camels, until they have had enough to drink.”" + }, + { + "verseNum": 20, + "text": "And she quickly emptied her jar into the trough and ran back to the well to draw water, until she had drawn water for all his camels." + }, + { + "verseNum": 21, + "text": "Meanwhile, the man watched her silently to see whether or not the LORD had made his journey a success." + }, + { + "verseNum": 22, + "text": "And after the camels had finished drinking, he took out a gold ring weighing a beka, and two gold bracelets for her wrists weighing ten shekels." + }, + { + "verseNum": 23, + "text": "“Whose daughter are you?” he asked. “Please tell me, is there room in your father’s house for us to spend the night?”" + }, + { + "verseNum": 24, + "text": "She replied, “I am the daughter of Bethuel, the son that Milcah bore to Nahor.”" + }, + { + "verseNum": 25, + "text": "Then she added, “We have plenty of straw and feed, as well as a place for you to spend the night.”" + }, + { + "verseNum": 26, + "text": "Then the man bowed down and worshiped the LORD," + }, + { + "verseNum": 27, + "text": "saying, “Blessed be the LORD, the God of my master Abraham, who has not withheld His kindness and faithfulness from my master. As for me, the LORD has led me on the journey to the house of my master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The girl ran and told her mother’s household about these things." + }, + { + "verseNum": 29, + "text": "Now Rebekah had a brother named Laban, and he rushed out to the man at the spring." + }, + { + "verseNum": 30, + "text": "As soon as he saw the ring, and the bracelets on his sister’s wrists, and heard Rebekah’s words, “The man said this to me,” he went and found the man standing by the camels near the spring." + }, + { + "verseNum": 31, + "text": "“Come, you who are blessed by the LORD,” said Laban. “Why are you standing out here? I have prepared the house and a place for the camels.”" + }, + { + "verseNum": 32, + "text": "So the man came to the house, and the camels were unloaded. Straw and feed were brought to the camels, and water to wash his feet and the feet of his companions." + }, + { + "verseNum": 33, + "text": "Then a meal was set before the man, but he said, “I will not eat until I have told you what I came to say.”\n \nSo Laban said, “Please speak.”" + }, + { + "verseNum": 34, + "text": "“I am Abraham’s servant,” he replied." + }, + { + "verseNum": 35, + "text": "“The LORD has greatly blessed my master, and he has become rich. He has given him sheep and cattle, silver and gold, menservants and maidservants, camels and donkeys." + }, + { + "verseNum": 36, + "text": "My master’s wife Sarah has borne him a son in her old age, and my master has given him everything he owns." + }, + { + "verseNum": 37, + "text": "My master made me swear an oath and said, ‘You shall not take a wife for my son from the daughters of the Canaanites in whose land I dwell," + }, + { + "verseNum": 38, + "text": "but you shall go to my father’s house and to my kindred to take a wife for my son.’" + }, + { + "verseNum": 39, + "text": "Then I asked my master, ‘What if the woman will not come back with me?’" + }, + { + "verseNum": 40, + "text": "And he told me, ‘The LORD, before whom I have walked, will send His angel with you and make your journey a success, so that you may take a wife for my son from my kindred and from my father’s house." + }, + { + "verseNum": 41, + "text": "And when you go to my kindred, if they refuse to give her to you, then you will be released from my oath.’" + }, + { + "verseNum": 42, + "text": "So when I came to the spring today, I prayed: O LORD, God of my master Abraham, if only You would make my journey a success!" + }, + { + "verseNum": 43, + "text": "Here I am, standing beside this spring. Now if a maiden comes out to draw water and I say to her, ‘Please let me drink a little water from your jar,’" + }, + { + "verseNum": 44, + "text": "and she replies, ‘Drink, and I will draw water for your camels as well,’ may she be the woman the LORD has appointed for my master’s son." + }, + { + "verseNum": 45, + "text": "And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me a drink.’" + }, + { + "verseNum": 46, + "text": "She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the camels." + }, + { + "verseNum": 47, + "text": "Then I asked her, ‘Whose daughter are you?’\n \nShe replied, ‘The daughter of Bethuel son of Nahor, whom Milcah bore to him.’ So I put the ring on her nose and the bracelets on her wrists." + }, + { + "verseNum": 48, + "text": "Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his son." + }, + { + "verseNum": 49, + "text": "Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so that I may go elsewhere.”" + }, + { + "verseNum": 50, + "text": "Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter." + }, + { + "verseNum": 51, + "text": "Rebekah is here before you. Take her and go, and let her become the wife of your master’s son, just as the LORD has decreed.”" + }, + { + "verseNum": 52, + "text": "When Abraham’s servant heard their words, he bowed down to the ground before the LORD." + }, + { + "verseNum": 53, + "text": "Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Rebekah. He also gave precious gifts to her brother and her mother." + }, + { + "verseNum": 54, + "text": "Then he and the men with him ate and drank and spent the night there.\n \nWhen they got up the next morning, he said, “Send me on my way to my master.”" + }, + { + "verseNum": 55, + "text": "But her brother and mother said, “Let the girl remain with us ten days or so. After that, she may go.”" + }, + { + "verseNum": 56, + "text": "But he replied, “Do not delay me, since the LORD has made my journey a success. Send me on my way so that I may go to my master.”" + }, + { + "verseNum": 57, + "text": "So they said, “We will call the girl and ask her opinion.”" + }, + { + "verseNum": 58, + "text": "They called Rebekah and asked her, “Will you go with this man?”\n \n“I will go,” she replied." + }, + { + "verseNum": 59, + "text": "So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and his men." + }, + { + "verseNum": 60, + "text": "And they blessed Rebekah and said to her,\n \n “Our sister, may you become the mother\n of thousands upon thousands.\n May your offspring possess\n the gates of their enemies.”" + }, + { + "verseNum": 61, + "text": "Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So the servant took Rebekah and left." + }, + { + "verseNum": 62, + "text": "Now Isaac had just returned from Beer-lahai-roi, for he was living in the Negev." + }, + { + "verseNum": 63, + "text": "Early in the evening, Isaac went out to the field to meditate, and looking up, he saw the camels approaching." + }, + { + "verseNum": 64, + "text": "And when Rebekah looked up and saw Isaac, she got down from her camel" + }, + { + "verseNum": 65, + "text": "and asked the servant, “Who is that man in the field coming to meet us?”\n \n“It is my master,” the servant answered. So she took her veil and covered herself." + }, + { + "verseNum": 66, + "text": "Then the servant told Isaac all that he had done." + }, + { + "verseNum": 67, + "text": "And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his mother’s death." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Now Abraham had taken another wife, named Keturah," + }, + { + "verseNum": 2, + "text": "and she bore him Zimran, Jokshan, Medan, Midian, Ishbak, and Shuah." + }, + { + "verseNum": 3, + "text": "Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Letushites, and the Leummites." + }, + { + "verseNum": 4, + "text": "The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah.\n \nAll these were descendants of Keturah." + }, + { + "verseNum": 5, + "text": "Abraham left everything he owned to Isaac." + }, + { + "verseNum": 6, + "text": "But while he was still alive, Abraham gave gifts to the sons of his concubines and sent them away from his son Isaac to the land of the east." + }, + { + "verseNum": 7, + "text": "Abraham lived a total of 175 years." + }, + { + "verseNum": 8, + "text": "And at a ripe old age he breathed his last and died, old and contented, and was gathered to his people." + }, + { + "verseNum": 9, + "text": "His sons Isaac and Ishmael buried him in the cave of Machpelah near Mamre, in the field of Ephron son of Zohar the Hittite." + }, + { + "verseNum": 10, + "text": "This was the field that Abraham had bought from the Hittites. Abraham was buried there with his wife Sarah." + }, + { + "verseNum": 11, + "text": "After Abraham’s death, God blessed his son Isaac, who lived near Beer-lahai-roi." + }, + { + "verseNum": 12, + "text": "This is the account of Abraham’s son Ishmael, whom Hagar the Egyptian, Sarah’s maidservant, bore to Abraham." + }, + { + "verseNum": 13, + "text": "These are the names of the sons of Ishmael in the order of their birth: Nebaioth the firstborn of Ishmael, then Kedar, Adbeel, Mibsam," + }, + { + "verseNum": 14, + "text": "Mishma, Dumah, Massa," + }, + { + "verseNum": 15, + "text": "Hadad, Tema, Jetur, Naphish, and Kedemah." + }, + { + "verseNum": 16, + "text": "These were the sons of Ishmael, and these were their names by their villages and encampments—twelve princes of their tribes." + }, + { + "verseNum": 17, + "text": "Ishmael lived a total of 137 years. Then he breathed his last and died, and was gathered to his people." + }, + { + "verseNum": 18, + "text": "Ishmael’s descendants settled from Havilah to Shur, which is near the border of Egypt as you go toward Asshur. And they lived in hostility toward all their brothers." + }, + { + "verseNum": 19, + "text": "This is the account of Abraham’s son Isaac. Abraham became the father of Isaac," + }, + { + "verseNum": 20, + "text": "and Isaac was forty years old when he married Rebekah, the daughter of Bethuel the Aramean from Paddan-aram and the sister of Laban the Aramean." + }, + { + "verseNum": 21, + "text": "Later, Isaac prayed to the LORD on behalf of his wife, because she was barren. And the LORD heard his prayer, and his wife Rebekah conceived." + }, + { + "verseNum": 22, + "text": "But the children inside her struggled with each other, and she said, “Why is this happening to me?” So Rebekah went to inquire of the LORD," + }, + { + "verseNum": 23, + "text": "and He declared to her:\n \n “Two nations are in your womb,\n and two peoples from within you will be separated;\n one people will be stronger than the other,\n and the older will serve the younger.”" + }, + { + "verseNum": 24, + "text": "When her time came to give birth, there were indeed twins in her womb." + }, + { + "verseNum": 25, + "text": "The first one came out red, covered with hair like a fur coat; so they named him Esau." + }, + { + "verseNum": 26, + "text": "After this, his brother came out grasping Esau’s heel; so he was named Jacob. And Isaac was sixty years old when the twins were born." + }, + { + "verseNum": 27, + "text": "When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet man who stayed at home." + }, + { + "verseNum": 28, + "text": "Because Isaac had a taste for wild game, he loved Esau; but Rebekah loved Jacob." + }, + { + "verseNum": 29, + "text": "One day, while Jacob was cooking some stew, Esau came in from the field and was famished." + }, + { + "verseNum": 30, + "text": "He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also called Edom.)" + }, + { + "verseNum": 31, + "text": "“First sell me your birthright,” Jacob replied." + }, + { + "verseNum": 32, + "text": "“Look,” said Esau, “I am about to die, so what good is a birthright to me?”" + }, + { + "verseNum": 33, + "text": "“Swear to me first,” Jacob said.\n \nSo Esau swore to Jacob and sold him the birthright." + }, + { + "verseNum": 34, + "text": "Then Jacob gave some bread and lentil stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birthright." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Now there was another famine in the land, subsequent to the one that had occurred in Abraham’s time. And Isaac went to Abimelech king of the Philistines at Gerar." + }, + { + "verseNum": 2, + "text": "The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you." + }, + { + "verseNum": 3, + "text": "Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will confirm the oath that I swore to your father Abraham." + }, + { + "verseNum": 4, + "text": "I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all nations of the earth will be blessed," + }, + { + "verseNum": 5, + "text": "because Abraham listened to My voice and kept My charge, My commandments, My statutes, and My laws.”" + }, + { + "verseNum": 6, + "text": "So Isaac settled in Gerar." + }, + { + "verseNum": 7, + "text": "But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, because she is so beautiful.”" + }, + { + "verseNum": 8, + "text": "When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac caressing his wife Rebekah." + }, + { + "verseNum": 9, + "text": "Abimelech sent for Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?”\n \nIsaac replied, “Because I thought I might die on account of her.”" + }, + { + "verseNum": 10, + "text": "“What is this you have done to us?” asked Abimelech. “One of the people could easily have slept with your wife, and you would have brought guilt upon us.”" + }, + { + "verseNum": 11, + "text": "So Abimelech warned all the people, saying, “Whoever harms this man or his wife will surely be put to death.”" + }, + { + "verseNum": 12, + "text": "Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the LORD blessed him," + }, + { + "verseNum": 13, + "text": "and he became richer and richer, until he was exceedingly wealthy." + }, + { + "verseNum": 14, + "text": "He owned so many flocks and herds and servants that the Philistines envied him." + }, + { + "verseNum": 15, + "text": "So the Philistines took dirt and stopped up all the wells that his father’s servants had dug in the days of his father Abraham." + }, + { + "verseNum": 16, + "text": "Then Abimelech said to Isaac, “Depart from us, for you are much too powerful for us.”" + }, + { + "verseNum": 17, + "text": "So Isaac left that place and encamped in the Valley of Gerar and settled there." + }, + { + "verseNum": 18, + "text": "Isaac reopened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given them." + }, + { + "verseNum": 19, + "text": "Then Isaac’s servants dug in the valley and found a well of fresh water there." + }, + { + "verseNum": 20, + "text": "But the herdsmen of Gerar quarreled with Isaac’s herdsmen and said, “The water is ours!” So he named the well Esek, because they contended with him." + }, + { + "verseNum": 21, + "text": "Then they dug another well and quarreled over that one also; so he named it Sitnah." + }, + { + "verseNum": 22, + "text": "He moved on from there and dug another well, and they did not quarrel over it. He named it Rehoboth and said, “At last the LORD has made room for us, and we will be fruitful in the land.”" + }, + { + "verseNum": 23, + "text": "From there Isaac went up to Beersheba," + }, + { + "verseNum": 24, + "text": "and that night the LORD appeared to him and said, “I am the God of your father Abraham. Do not be afraid, for I am with you. I will bless you and multiply your descendants for the sake of My servant Abraham.”" + }, + { + "verseNum": 25, + "text": "So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. His servants also dug a well there." + }, + { + "verseNum": 26, + "text": "Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the commander of his army." + }, + { + "verseNum": 27, + "text": "“Why have you come to me?” Isaac asked them. “You hated me and sent me away.”" + }, + { + "verseNum": 28, + "text": "“We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. Let us make a covenant with you" + }, + { + "verseNum": 29, + "text": "that you will not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the LORD.”" + }, + { + "verseNum": 30, + "text": "So Isaac prepared a feast for them, and they ate and drank." + }, + { + "verseNum": 31, + "text": "And they got up early the next morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in peace." + }, + { + "verseNum": 32, + "text": "On that same day, Isaac’s servants came and told him about the well they had dug. “We have found water!” they told him." + }, + { + "verseNum": 33, + "text": "So he called it Shibah, and to this day the name of the city is Beersheba." + }, + { + "verseNum": 34, + "text": "When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite." + }, + { + "verseNum": 35, + "text": "And they brought grief to Isaac and Rebekah." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.”\n \n“Here I am,” Esau replied." + }, + { + "verseNum": 2, + "text": "“Look,” said Isaac, “I am now old, and I do not know the day of my death." + }, + { + "verseNum": 3, + "text": "Take your weapons—your quiver and bow—and go out into the field to hunt some game for me." + }, + { + "verseNum": 4, + "text": "Then prepare a tasty dish that I love and bring it to me to eat, so that I may bless you before I die.”" + }, + { + "verseNum": 5, + "text": "Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to hunt game and bring it back," + }, + { + "verseNum": 6, + "text": "Rebekah said to her son Jacob, “Behold, I overheard your father saying to your brother Esau," + }, + { + "verseNum": 7, + "text": "‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD before I die.’" + }, + { + "verseNum": 8, + "text": "Now, my son, listen to my voice and do exactly as I tell you." + }, + { + "verseNum": 9, + "text": "Go out to the flock and bring me two choice young goats, so that I can make them into a tasty dish for your father—the kind he loves." + }, + { + "verseNum": 10, + "text": "Then take it to your father to eat, so that he may bless you before he dies.”" + }, + { + "verseNum": 11, + "text": "Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth-skinned." + }, + { + "verseNum": 12, + "text": "What if my father touches me? Then I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a blessing.”" + }, + { + "verseNum": 13, + "text": "His mother replied, “Your curse be on me, my son. Just obey my voice and go get them for me.”" + }, + { + "verseNum": 14, + "text": "So Jacob went and got two goats and brought them to his mother, who made the tasty food his father loved." + }, + { + "verseNum": 15, + "text": "And Rebekah took the finest clothes in the house that belonged to her older son Esau, and she put them on her younger son Jacob." + }, + { + "verseNum": 16, + "text": "She also put the skins of the young goats on his hands and on the smooth part of his neck." + }, + { + "verseNum": 17, + "text": "Then she handed her son Jacob the tasty food and bread she had made." + }, + { + "verseNum": 18, + "text": "So Jacob went to his father and said, “My father.”\n \n“Here I am!” he answered. “Which one are you, my son?”" + }, + { + "verseNum": 19, + "text": "Jacob said to his father, “I am Esau, your firstborn. I have done as you told me. Please sit up and eat some of my game, so that you may bless me.”" + }, + { + "verseNum": 20, + "text": "But Isaac asked his son, “How did you ever find it so quickly, my son?”\n \n“Because the LORD your God brought it to me,” he replied." + }, + { + "verseNum": 21, + "text": "Then Isaac said to Jacob, “Please come closer so I can touch you, my son. Are you really my son Esau, or not?”" + }, + { + "verseNum": 22, + "text": "So Jacob came close to his father Isaac, who touched him and said, “The voice is the voice of Jacob, but the hands are the hands of Esau.”" + }, + { + "verseNum": 23, + "text": "Isaac did not recognize him, because his hands were hairy like those of his brother Esau; so he blessed him." + }, + { + "verseNum": 24, + "text": "Again he asked, “Are you really my son Esau?”\n \nAnd he replied, “I am.”" + }, + { + "verseNum": 25, + "text": "“Serve me,” said Isaac, “and let me eat some of my son’s game, so that I may bless you.”\n \nJacob brought it to him, and he ate; then he brought him wine, and he drank." + }, + { + "verseNum": 26, + "text": "Then his father Isaac said to him, “Please come near and kiss me, my son.”" + }, + { + "verseNum": 27, + "text": "So he came near and kissed him. When Isaac smelled his clothing, he blessed him and said:\n \n “Ah, the smell of my son\n is like the smell of a field\n that the LORD has blessed." + }, + { + "verseNum": 28, + "text": "May God give to you the dew of heaven\n and the richness of the earth—\n an abundance of grain and new wine." + }, + { + "verseNum": 29, + "text": "May peoples serve you\n and nations bow down to you.\n May you be the master of your brothers,\n and may the sons of your mother bow down to you.\n May those who curse you be cursed,\n and those who bless you be blessed.”" + }, + { + "verseNum": 30, + "text": "As soon as Isaac had finished blessing him and Jacob had left his father’s presence, his brother Esau returned from the hunt." + }, + { + "verseNum": 31, + "text": "He too made some tasty food, brought it to his father, and said to him, “My father, sit up and eat of your son’s game, so that you may bless me.”" + }, + { + "verseNum": 32, + "text": "But his father Isaac replied, “Who are you?”\n \n“I am Esau, your firstborn son,” he answered." + }, + { + "verseNum": 33, + "text": "Isaac began to tremble violently and said, “Who was it, then, who hunted the game and brought it to me? Before you came in, I ate it all and blessed him—and indeed, he will be blessed!”" + }, + { + "verseNum": 34, + "text": "When Esau heard his father’s words, he let out a loud and bitter cry and said to his father, “Bless me too, O my father!”" + }, + { + "verseNum": 35, + "text": "But Isaac replied, “Your brother came deceitfully and took your blessing.”" + }, + { + "verseNum": 36, + "text": "So Esau declared, “Is he not rightly named Jacob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for me?”" + }, + { + "verseNum": 37, + "text": "But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my son?”" + }, + { + "verseNum": 38, + "text": "Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” Then Esau wept aloud." + }, + { + "verseNum": 39, + "text": "His father Isaac answered him:\n \n “Behold, your dwelling place shall be\n away from the richness of the land,\n away from the dew of heaven above." + }, + { + "verseNum": 40, + "text": "You shall live by the sword\n and serve your brother.\n But when you rebel,\n you will tear his yoke from your neck.”" + }, + { + "verseNum": 41, + "text": "Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother Jacob.”" + }, + { + "verseNum": 42, + "text": "When the words of her older son Esau were relayed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you." + }, + { + "verseNum": 43, + "text": "So now, my son, obey my voice and flee at once to my brother Laban in Haran." + }, + { + "verseNum": 44, + "text": "Stay with him for a while, until your brother’s fury subsides—" + }, + { + "verseNum": 45, + "text": "until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. Why should I lose both of you in one day?”" + }, + { + "verseNum": 46, + "text": "Then Rebekah said to Isaac, “I am weary of my life because of these Hittite women. If Jacob takes a Hittite wife from among them, what good is my life?”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "So Isaac called for Jacob and blessed him. “Do not take a wife from the Canaanite women,” he commanded." + }, + { + "verseNum": 2, + "text": "“Go at once to Paddan-aram, to the house of your mother’s father Bethuel, and take a wife from among the daughters of Laban, your mother’s brother." + }, + { + "verseNum": 3, + "text": "May God Almighty bless you and make you fruitful and multiply you, so that you may become a company of peoples." + }, + { + "verseNum": 4, + "text": "And may He give the blessing of Abraham to you and your descendants, so that you may possess the land where you dwell as a foreigner, the land God gave to Abraham.”" + }, + { + "verseNum": 5, + "text": "So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Rebekah, who was the mother of Jacob and Esau." + }, + { + "verseNum": 6, + "text": "Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Canaanite woman,”" + }, + { + "verseNum": 7, + "text": "and that Jacob had obeyed his father and mother and gone to Paddan-aram." + }, + { + "verseNum": 8, + "text": "And seeing that his father Isaac disapproved of the Canaanite women," + }, + { + "verseNum": 9, + "text": "Esau went to Ishmael and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition to the wives he already had." + }, + { + "verseNum": 10, + "text": "Meanwhile Jacob left Beersheba and set out for Haran." + }, + { + "verseNum": 11, + "text": "On reaching a certain place, he spent the night there because the sun had set. And taking one of the stones from that place, he put it under his head and lay down to sleep." + }, + { + "verseNum": 12, + "text": "And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder." + }, + { + "verseNum": 13, + "text": "And there at the top the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the land on which you now lie." + }, + { + "verseNum": 14, + "text": "Your descendants will be like the dust of the earth, and you will spread out to the west and east and north and south. All the families of the earth will be blessed through you and your offspring." + }, + { + "verseNum": 15, + "text": "Look, I am with you, and I will watch over you wherever you go, and I will bring you back to this land. For I will not leave you until I have done what I have promised you.”" + }, + { + "verseNum": 16, + "text": "When Jacob woke up, he thought, “Surely the LORD is in this place, and I was unaware of it.”" + }, + { + "verseNum": 17, + "text": "And he was afraid and said, “How awesome is this place! This is none other than the house of God; this is the gate of heaven!”" + }, + { + "verseNum": 18, + "text": "Early the next morning, Jacob took the stone that he had placed under his head, and he set it up as a pillar. He poured oil on top of it," + }, + { + "verseNum": 19, + "text": "and he called that place Bethel, though previously the city had been named Luz." + }, + { + "verseNum": 20, + "text": "Then Jacob made a vow, saying, “If God will be with me and watch over me on this journey, and if He will provide me with food to eat and clothes to wear," + }, + { + "verseNum": 21, + "text": "so that I may return safely to my father’s house, then the LORD will be my God." + }, + { + "verseNum": 22, + "text": "And this stone I have set up as a pillar will be God’s house, and of all that You give me I will surely give You a tenth.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Jacob resumed his journey and came to the land of the people of the east." + }, + { + "verseNum": 2, + "text": "He looked and saw a well in the field, and near it lay three flocks of sheep, because the sheep were watered from this well. And a large stone covered the mouth of the well." + }, + { + "verseNum": 3, + "text": "When all the flocks had been gathered there, the shepherds would roll away the stone from the mouth of the well and water the sheep. Then they would return the stone to its place over the mouth of the well." + }, + { + "verseNum": 4, + "text": "“My brothers,” Jacob asked the shepherds, “where are you from?”\n \n“We are from Haran,” they answered." + }, + { + "verseNum": 5, + "text": "“Do you know Laban the grandson of Nahor?” Jacob asked.\n \n“We know him,” they replied." + }, + { + "verseNum": 6, + "text": "“Is he well?” Jacob inquired.\n \n“Yes,” they answered, “and here comes his daughter Rachel with his sheep.”" + }, + { + "verseNum": 7, + "text": "“Look,” said Jacob, “it is still broad daylight; it is not yet time to gather the livestock. Water the sheep and take them back to pasture.”" + }, + { + "verseNum": 8, + "text": "But they replied, “We cannot, until all the flocks have been gathered and the stone has been rolled away from the mouth of the well. Then we will water the sheep.”" + }, + { + "verseNum": 9, + "text": "While he was still speaking with them, Rachel arrived with her father’s sheep, for she was a shepherdess." + }, + { + "verseNum": 10, + "text": "As soon as Jacob saw Rachel, the daughter of his mother’s brother Laban, with Laban’s sheep, he went up and rolled the stone away from the mouth of the well and watered his uncle’s sheep." + }, + { + "verseNum": 11, + "text": "Then Jacob kissed Rachel and wept aloud." + }, + { + "verseNum": 12, + "text": "He told Rachel that he was Rebekah’s son, a relative of her father, and she ran and told her father." + }, + { + "verseNum": 13, + "text": "When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He embraced him and kissed him and brought him to his home, where Jacob told him all that had happened." + }, + { + "verseNum": 14, + "text": "Then Laban declared, “You are indeed my own flesh and blood.”\n \nAfter Jacob had stayed with him a month," + }, + { + "verseNum": 15, + "text": "Laban said to him, “Just because you are my relative, should you work for nothing? Tell me what your wages should be.”" + }, + { + "verseNum": 16, + "text": "Now Laban had two daughters; the older was named Leah, and the younger was named Rachel." + }, + { + "verseNum": 17, + "text": "Leah had weak eyes, but Rachel was shapely and beautiful." + }, + { + "verseNum": 18, + "text": "Since Jacob loved Rachel, he answered, “I will serve you seven years for your younger daughter Rachel.”" + }, + { + "verseNum": 19, + "text": "Laban replied, “Better that I give her to you than to another. Stay here with me.”" + }, + { + "verseNum": 20, + "text": "So Jacob served seven years for Rachel, yet it seemed but a few days because of his love for her." + }, + { + "verseNum": 21, + "text": "Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with her.”" + }, + { + "verseNum": 22, + "text": "So Laban invited all the men of that place and prepared a feast." + }, + { + "verseNum": 23, + "text": "But when evening came, Laban took his daughter Leah and gave her to Jacob, and he slept with her." + }, + { + "verseNum": 24, + "text": "And Laban gave his servant girl Zilpah to his daughter Leah as her maidservant." + }, + { + "verseNum": 25, + "text": "When morning came, there was Leah! “What have you done to me?” Jacob said to Laban. “Wasn’t it for Rachel that I served you? Why have you deceived me?”" + }, + { + "verseNum": 26, + "text": "Laban replied, “It is not our custom here to give the younger daughter in marriage before the older." + }, + { + "verseNum": 27, + "text": "Finish this week’s celebration, and we will give you the younger one in return for another seven years of work.”" + }, + { + "verseNum": 28, + "text": "And Jacob did just that. He finished the week’s celebration, and Laban gave him his daughter Rachel as his wife." + }, + { + "verseNum": 29, + "text": "Laban also gave his servant girl Bilhah to his daughter Rachel as her maidservant." + }, + { + "verseNum": 30, + "text": "Jacob slept with Rachel as well, and indeed, he loved Rachel more than Leah. So he worked for Laban another seven years." + }, + { + "verseNum": 31, + "text": "When the LORD saw that Leah was unloved, He opened her womb; but Rachel was barren." + }, + { + "verseNum": 32, + "text": "And Leah conceived and gave birth to a son, and she named him Reuben, for she said, “The LORD has seen my affliction. Surely my husband will love me now.”" + }, + { + "verseNum": 33, + "text": "Again she conceived and gave birth to a son, and she said, “Because the LORD has heard that I am unloved, He has given me this son as well.” So she named him Simeon." + }, + { + "verseNum": 34, + "text": "Once again Leah conceived and gave birth to a son, and she said, “Now at last my husband will become attached to me, because I have borne him three sons.” So he was named Levi." + }, + { + "verseNum": 35, + "text": "And once more she conceived and gave birth to a son and said, “This time I will praise the LORD.” So she named him Judah. Then Leah stopped having children." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When Rachel saw that she was not bearing any children for Jacob, she envied her sister. “Give me children, or I will die!” she said to Jacob." + }, + { + "verseNum": 2, + "text": "Jacob became angry with Rachel and said, “Am I in the place of God, who has withheld children from you?”" + }, + { + "verseNum": 3, + "text": "Then she said, “Here is my maidservant Bilhah. Sleep with her, that she may bear children for me, so that through her I too can build a family.”" + }, + { + "verseNum": 4, + "text": "So Rachel gave Jacob her servant Bilhah as a wife, and he slept with her," + }, + { + "verseNum": 5, + "text": "and Bilhah conceived and bore him a son." + }, + { + "verseNum": 6, + "text": "Then Rachel said, “God has vindicated me; He has heard my plea and given me a son.” So she named him Dan." + }, + { + "verseNum": 7, + "text": "And Rachel’s servant Bilhah conceived again and bore Jacob a second son." + }, + { + "verseNum": 8, + "text": "Then Rachel said, “In my great struggles, I have wrestled with my sister and won.” So she named him Naphtali." + }, + { + "verseNum": 9, + "text": "When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as a wife." + }, + { + "verseNum": 10, + "text": "And Leah’s servant Zilpah bore Jacob a son." + }, + { + "verseNum": 11, + "text": "Then Leah said, “How fortunate!” So she named him Gad." + }, + { + "verseNum": 12, + "text": "When Leah’s servant Zilpah bore Jacob a second son," + }, + { + "verseNum": 13, + "text": "Leah said, “How happy I am! For the women call me happy.” So she named him Asher." + }, + { + "verseNum": 14, + "text": "Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s mandrakes.”" + }, + { + "verseNum": 15, + "text": "But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?”\n \n“Very well,” said Rachel, “he may sleep with you tonight in exchange for your son’s mandrakes.”" + }, + { + "verseNum": 16, + "text": "When Jacob came in from the field that evening, Leah went out to meet him and said, “You must come with me, for I have hired you with my son’s mandrakes.” So he slept with her that night." + }, + { + "verseNum": 17, + "text": "And God listened to Leah, and she conceived and bore a fifth son to Jacob." + }, + { + "verseNum": 18, + "text": "Then Leah said, “God has rewarded me for giving my maidservant to my husband.” So she named him Issachar." + }, + { + "verseNum": 19, + "text": "Again Leah conceived and bore a sixth son to Jacob." + }, + { + "verseNum": 20, + "text": "“God has given me a good gift,” she said. “This time my husband will honor me, because I have borne him six sons.” And she named him Zebulun." + }, + { + "verseNum": 21, + "text": "After that, Leah gave birth to a daughter and named her Dinah." + }, + { + "verseNum": 22, + "text": "Then God remembered Rachel. He listened to her and opened her womb," + }, + { + "verseNum": 23, + "text": "and she conceived and gave birth to a son. “God has taken away my shame,” she said." + }, + { + "verseNum": 24, + "text": "She named him Joseph, and said, “May the LORD add to me another son.”" + }, + { + "verseNum": 25, + "text": "Now after Rachel had given birth to Joseph, Jacob said to Laban, “Send me on my way so I can return to my homeland." + }, + { + "verseNum": 26, + "text": "Give me my wives and children for whom I have served you, that I may go on my way. You know how hard I have worked for you.”" + }, + { + "verseNum": 27, + "text": "But Laban replied, “If I have found favor in your eyes, please stay. I have learned by divination that the LORD has blessed me because of you.”" + }, + { + "verseNum": 28, + "text": "And he added, “Name your wages, and I will pay them.”" + }, + { + "verseNum": 29, + "text": "Then Jacob answered, “You know how I have served you and how your livestock have thrived under my care." + }, + { + "verseNum": 30, + "text": "Indeed, you had very little before my arrival, but now your wealth has increased many times over. The LORD has blessed you wherever I set foot. But now, when may I also provide for my own household?”" + }, + { + "verseNum": 31, + "text": "“What can I give you?” Laban asked.\n \n“You do not need to give me anything,” Jacob replied. “If you do this one thing for me, I will keep on shepherding and keeping your flocks." + }, + { + "verseNum": 32, + "text": "Let me go through all your flocks today and remove from them every speckled or spotted sheep, every dark-colored lamb, and every spotted or speckled goat. These will be my wages." + }, + { + "verseNum": 33, + "text": "So my honesty will testify for me when you come to check on my wages in the future. If I have any goats that are not speckled or spotted, or any lambs that are not dark-colored, they will be considered stolen.”" + }, + { + "verseNum": 34, + "text": "“Agreed,” said Laban. “Let it be as you have said.”" + }, + { + "verseNum": 35, + "text": "That very day Laban removed all the streaked or spotted male goats and every speckled or spotted female goat—every one that had any white on it—and every dark-colored lamb, and he placed them under the care of his sons." + }, + { + "verseNum": 36, + "text": "Then he put a three-day journey between himself and Jacob, while Jacob was shepherding the rest of Laban’s flocks." + }, + { + "verseNum": 37, + "text": "Jacob, however, took fresh branches of poplar, almond, and plane trees, and peeled the bark, exposing the white inner wood of the branches." + }, + { + "verseNum": 38, + "text": "Then he set the peeled branches in the watering troughs in front of the flocks coming in to drink. So when the flocks were in heat and came to drink," + }, + { + "verseNum": 39, + "text": "they mated in front of the branches. And they bore young that were streaked or speckled or spotted." + }, + { + "verseNum": 40, + "text": "Jacob set apart the young, but made the rest face the streaked dark-colored sheep in Laban’s flocks. Then he set his own stock apart and did not put them with Laban’s animals." + }, + { + "verseNum": 41, + "text": "Whenever the stronger females of the flock were in heat, Jacob would place the branches in the troughs, in full view of the animals, so that they would breed in front of the branches." + }, + { + "verseNum": 42, + "text": "But if the animals were weak, he did not set out the branches. So the weaker animals went to Laban and the stronger ones to Jacob." + }, + { + "verseNum": 43, + "text": "Thus Jacob became exceedingly prosperous. He owned large flocks, maidservants and menservants, and camels and donkeys." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob heard that Laban’s sons were saying, “Jacob has taken away all that belonged to our father and built all this wealth at our father’s expense.”" + }, + { + "verseNum": 2, + "text": "And Jacob saw from the countenance of Laban that his attitude toward him had changed." + }, + { + "verseNum": 3, + "text": "Then the LORD said to Jacob, “Go back to the land of your fathers and to your kindred, and I will be with you.”" + }, + { + "verseNum": 4, + "text": "So Jacob sent word and called Rachel and Leah to the field where his flocks were," + }, + { + "verseNum": 5, + "text": "and he told them, “I can see from your father’s countenance that his attitude toward me has changed; but the God of my father has been with me." + }, + { + "verseNum": 6, + "text": "You know that I have served your father with all my strength." + }, + { + "verseNum": 7, + "text": "And although he has cheated me and changed my wages ten times, God has not allowed him to harm me." + }, + { + "verseNum": 8, + "text": "If he said, ‘The speckled will be your wages,’ then the whole flock bore speckled offspring. If he said, ‘The streaked will be your wages,’ then the whole flock bore streaked offspring." + }, + { + "verseNum": 9, + "text": "Thus God has taken away your father’s livestock and given them to me." + }, + { + "verseNum": 10, + "text": "When the flocks were breeding, I saw in a dream that the streaked, spotted, and speckled males were mating with the females." + }, + { + "verseNum": 11, + "text": "In that dream the angel of God said to me, ‘Jacob!’\n \nAnd I replied, ‘Here I am.’" + }, + { + "verseNum": 12, + "text": "‘Look up,’ he said, ‘and see that all the males that are mating with the flock are streaked, spotted, or speckled; for I have seen all that Laban has done to you." + }, + { + "verseNum": 13, + "text": "I am the God of Bethel, where you anointed the pillar and made a solemn vow to Me. Now get up and leave this land at once, and return to your native land.’”" + }, + { + "verseNum": 14, + "text": "And Rachel and Leah replied, “Do we have any portion or inheritance left in our father’s house?" + }, + { + "verseNum": 15, + "text": "Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squandered what was paid for us." + }, + { + "verseNum": 16, + "text": "Surely all the wealth that God has taken away from our father belongs to us and to our children. So do whatever God has told you.”" + }, + { + "verseNum": 17, + "text": "Then Jacob got up and put his children and his wives on camels," + }, + { + "verseNum": 18, + "text": "and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father Isaac in the land in Canaan." + }, + { + "verseNum": 19, + "text": "Now while Laban was out shearing his sheep, Rachel stole her father’s household idols." + }, + { + "verseNum": 20, + "text": "Moreover, Jacob deceived Laban the Aramean by not telling him that he was running away." + }, + { + "verseNum": 21, + "text": "So he fled with all his possessions, crossed the Euphrates, and headed for the hill country of Gilead." + }, + { + "verseNum": 22, + "text": "On the third day Laban was informed that Jacob had fled." + }, + { + "verseNum": 23, + "text": "So he took his relatives with him, pursued Jacob for seven days, and overtook him in the hill country of Gilead." + }, + { + "verseNum": 24, + "text": "But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Jacob, either good or bad.”" + }, + { + "verseNum": 25, + "text": "Now Jacob had pitched his tent in the hill country of Gilead when Laban overtook him, and Laban and his relatives camped there as well." + }, + { + "verseNum": 26, + "text": "Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war!" + }, + { + "verseNum": 27, + "text": "Why did you run away secretly and deceive me, without even telling me? I would have sent you away with joy and singing, with tambourines and harps." + }, + { + "verseNum": 28, + "text": "But you did not even let me kiss my grandchildren and my daughters goodbye. Now you have done a foolish thing." + }, + { + "verseNum": 29, + "text": "I have power to do you great harm, but last night the God of your father said to me, ‘Be careful not to say anything to Jacob, either good or bad.’" + }, + { + "verseNum": 30, + "text": "Now you have gone off because you long for your father’s house. But why have you stolen my gods?”" + }, + { + "verseNum": 31, + "text": "“I was afraid,” Jacob answered, “for I thought you would take your daughters from me by force." + }, + { + "verseNum": 32, + "text": "If you find your gods with anyone here, he shall not live! In the presence of our relatives, see for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen the idols." + }, + { + "verseNum": 33, + "text": "So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent and entered Rachel’s tent." + }, + { + "verseNum": 34, + "text": "Now Rachel had taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but found nothing." + }, + { + "verseNum": 35, + "text": "Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched, but could not find the household idols." + }, + { + "verseNum": 36, + "text": "Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin of mine have you so hotly pursued me?" + }, + { + "verseNum": 37, + "text": "You have searched all my goods! Have you found anything that belongs to you? Put it here before my brothers and yours, that they may judge between the two of us." + }, + { + "verseNum": 38, + "text": "I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock." + }, + { + "verseNum": 39, + "text": "I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from me for what was stolen by day or night." + }, + { + "verseNum": 40, + "text": "As it was, the heat consumed me by day and the frost by night, and sleep fled from my eyes." + }, + { + "verseNum": 41, + "text": "Thus for twenty years I have served in your household—fourteen years for your two daughters and six years for your flocks—and you have changed my wages ten times!" + }, + { + "verseNum": 42, + "text": "If the God of my father, the God of Abraham and the Fear of Isaac, had not been with me, surely by now you would have sent me away empty-handed. But God has seen my affliction and the toil of my hands, and last night He rendered judgment.”" + }, + { + "verseNum": 43, + "text": "But Laban answered Jacob, “These daughters are my daughters, these sons are my sons, and these flocks are my flocks! Everything you see is mine! Yet what can I do today about these daughters of mine or the children they have borne?" + }, + { + "verseNum": 44, + "text": "Come now, let us make a covenant, you and I, and let it serve as a witness between you and me.”" + }, + { + "verseNum": 45, + "text": "So Jacob picked out a stone and set it up as a pillar," + }, + { + "verseNum": 46, + "text": "and he said to his relatives, “Gather some stones.” So they took stones and made a mound, and there by the mound they ate." + }, + { + "verseNum": 47, + "text": "Laban called it Jegar-sahadutha, and Jacob called it Galeed." + }, + { + "verseNum": 48, + "text": "Then Laban declared, “This mound is a witness between you and me this day.”\n \nTherefore the place was called Galeed." + }, + { + "verseNum": 49, + "text": "It was also called Mizpah, because Laban said, “May the LORD keep watch between you and me when we are absent from each other." + }, + { + "verseNum": 50, + "text": "If you mistreat my daughters or take other wives, although no one is with us, remember that God is a witness between you and me.”" + }, + { + "verseNum": 51, + "text": "Laban also said to Jacob, “Here is the mound, and here is the pillar I have set up between you and me." + }, + { + "verseNum": 52, + "text": "This mound is a witness, and this pillar is a witness, that I will not go past this mound to harm you, and you will not go past this mound and pillar to harm me." + }, + { + "verseNum": 53, + "text": "May the God of Abraham and the God of Nahor, the God of their father, judge between us.”\n \nSo Jacob swore by the Fear of his father Isaac." + }, + { + "verseNum": 54, + "text": "Then Jacob offered a sacrifice on the mountain and invited his relatives to eat a meal. And after they had eaten, they spent the night on the mountain." + }, + { + "verseNum": 55, + "text": "Early the next morning, Laban got up and kissed his grandchildren and daughters and blessed them. Then he left to return home." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob also went on his way, and the angels of God met him." + }, + { + "verseNum": 2, + "text": "When Jacob saw them, he said, “This is the camp of God.” So he named that place Mahanaim." + }, + { + "verseNum": 3, + "text": "Jacob sent messengers ahead of him to his brother Esau in the land of Seir, the country of Edom." + }, + { + "verseNum": 4, + "text": "He instructed them, “You are to say to my master Esau, ‘Your servant Jacob says: I have been staying with Laban and have remained there until now." + }, + { + "verseNum": 5, + "text": "I have oxen, donkeys, flocks, menservants, and maidservants. I have sent this message to inform my master, so that I may find favor in your sight.’”" + }, + { + "verseNum": 6, + "text": "When the messengers returned to Jacob, they said, “We went to your brother Esau, and now he is coming to meet you—he and four hundred men with him.”" + }, + { + "verseNum": 7, + "text": "In great fear and distress, Jacob divided his people into two camps, as well as the flocks and herds and camels." + }, + { + "verseNum": 8, + "text": "He thought, “If Esau comes and attacks one camp, then the other camp can escape.”" + }, + { + "verseNum": 9, + "text": "Then Jacob declared, “O God of my father Abraham, God of my father Isaac, the LORD who told me, ‘Go back to your country and to your kindred, and I will make you prosper,’" + }, + { + "verseNum": 10, + "text": "I am unworthy of all the kindness and faithfulness You have shown Your servant. Indeed, with only my staff I came across the Jordan, but now I have become two camps." + }, + { + "verseNum": 11, + "text": "Please deliver me from the hand of my brother Esau, for I am afraid that he may come and attack me and the mothers and children with me." + }, + { + "verseNum": 12, + "text": "But You have said, ‘I will surely make you prosper, and I will make your offspring like the sand of the sea, too numerous to count.’”" + }, + { + "verseNum": 13, + "text": "Jacob spent the night there, and from what he had brought with him, he selected a gift for his brother Esau:" + }, + { + "verseNum": 14, + "text": "200 female goats, 20 male goats, 200 ewes, 20 rams," + }, + { + "verseNum": 15, + "text": "30 milk camels with their young, 40 cows, 10 bulls, 20 female donkeys, and 10 male donkeys." + }, + { + "verseNum": 16, + "text": "He entrusted them to his servants in separate herds and told them, “Go on ahead of me, and keep some distance between the herds.”" + }, + { + "verseNum": 17, + "text": "He instructed the one in the lead, “When my brother Esau meets you and asks, ‘To whom do you belong, where are you going, and whose animals are these before you?’" + }, + { + "verseNum": 18, + "text": "then you are to say, ‘They belong to your servant Jacob. They are a gift, sent to my lord Esau. And behold, Jacob is behind us.’”" + }, + { + "verseNum": 19, + "text": "He also instructed the second, the third, and all those following behind the herds: “When you meet Esau, you are to say the same thing to him." + }, + { + "verseNum": 20, + "text": "You are also to say, ‘Look, your servant Jacob is right behind us.’” For he thought, “I will appease Esau with the gift that is going before me. After that I can face him, and perhaps he will accept me.”" + }, + { + "verseNum": 21, + "text": "So Jacob’s gifts went on before him, while he spent the night in the camp." + }, + { + "verseNum": 22, + "text": "During the night Jacob got up and took his two wives, his two maidservants, and his eleven sons, and crossed the ford of the Jabbok." + }, + { + "verseNum": 23, + "text": "He took them and sent them across the stream, along with all his possessions." + }, + { + "verseNum": 24, + "text": "So Jacob was left all alone, and there a man wrestled with him until daybreak." + }, + { + "verseNum": 25, + "text": "When the man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it as they wrestled." + }, + { + "verseNum": 26, + "text": "Then the man said, “Let me go, for it is daybreak.”\n \nBut Jacob replied, “I will not let you go unless you bless me.”" + }, + { + "verseNum": 27, + "text": "“What is your name?” the man asked.\n \n“Jacob,” he replied." + }, + { + "verseNum": 28, + "text": "Then the man said, “Your name will no longer be Jacob, but Israel, because you have struggled with God and with men, and you have prevailed.”" + }, + { + "verseNum": 29, + "text": "And Jacob requested, “Please tell me your name.”\n \nBut he replied, “Why do you ask my name?” Then he blessed Jacob there." + }, + { + "verseNum": 30, + "text": "So Jacob named the place Peniel, saying, “Indeed, I have seen God face to face, and yet my life was spared.”" + }, + { + "verseNum": 31, + "text": "The sun rose above him as he passed by Penuel, and he was limping because of his hip." + }, + { + "verseNum": 32, + "text": "Therefore to this day the Israelites do not eat the tendon which is at the socket of the hip, because the socket of Jacob’s hip was struck near that tendon." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob looked up and saw Esau coming toward him with four hundred men. So he divided the children among Leah, Rachel, and the two maidservants." + }, + { + "verseNum": 2, + "text": "He put the maidservants and their children in front, Leah and her children next, and Rachel and Joseph at the rear." + }, + { + "verseNum": 3, + "text": "But Jacob himself went on ahead and bowed to the ground seven times as he approached his brother." + }, + { + "verseNum": 4, + "text": "Esau, however, ran to him and embraced him, threw his arms around his neck, and kissed him. And they both wept." + }, + { + "verseNum": 5, + "text": "When Esau looked up and saw the women and children, he asked, “Who are these with you?”\n \nJacob answered, “These are the children God has graciously given your servant.”" + }, + { + "verseNum": 6, + "text": "Then the maidservants and their children approached and bowed down." + }, + { + "verseNum": 7, + "text": "Leah and her children also approached and bowed down, and then Joseph and Rachel approached and bowed down." + }, + { + "verseNum": 8, + "text": "“What do you mean by sending this whole company to meet me?” asked Esau.\n \n“To find favor in your sight, my lord,” Jacob answered." + }, + { + "verseNum": 9, + "text": "“I already have plenty, my brother,” Esau replied. “Keep what belongs to you.”" + }, + { + "verseNum": 10, + "text": "But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is like seeing the face of God, since you have received me favorably." + }, + { + "verseNum": 11, + "text": "Please accept my gift that was brought to you, because God has been gracious to me and I have all I need.” So Jacob pressed him until he accepted." + }, + { + "verseNum": 12, + "text": "Then Esau said, “Let us be on our way, and I will go ahead of you.”" + }, + { + "verseNum": 13, + "text": "But Jacob replied, “My lord knows that the children are frail, and I must care for sheep and cattle that are nursing their young. If they are driven hard for even a day, all the animals will die." + }, + { + "verseNum": 14, + "text": "Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at Seir.”" + }, + { + "verseNum": 15, + "text": "“Let me leave some of my people with you,” Esau said.\n \nBut Jacob replied, “Why do that? Let me find favor in the sight of my lord.”" + }, + { + "verseNum": 16, + "text": "So that day Esau started on his way back to Seir," + }, + { + "verseNum": 17, + "text": "but Jacob went on to Succoth, where he built a house for himself and shelters for his livestock; that is why the place was called Succoth." + }, + { + "verseNum": 18, + "text": "After Jacob had come from Paddan-aram, he arrived safely at the city of Shechem in the land of Canaan, and he camped just outside the city." + }, + { + "verseNum": 19, + "text": "And the plot of ground where he pitched his tent, he purchased from the sons of Hamor, Shechem’s father, for a hundred pieces of silver." + }, + { + "verseNum": 20, + "text": "There he set up an altar and called it El-Elohe-Israel." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Now Dinah, the daughter Leah had borne to Jacob, went out to visit the daughters of the land." + }, + { + "verseNum": 2, + "text": "When Shechem son of Hamor the Hivite, the prince of the region, saw her, he took her and lay with her by force." + }, + { + "verseNum": 3, + "text": "And his soul was drawn to Dinah, the daughter of Jacob. He loved the young girl and spoke to her tenderly." + }, + { + "verseNum": 4, + "text": "So Shechem told his father Hamor, “Get me this girl as a wife.”" + }, + { + "verseNum": 5, + "text": "Jacob heard that Shechem had defiled his daughter Dinah, but since his sons were with his livestock in the field, he remained silent about it until they returned." + }, + { + "verseNum": 6, + "text": "Meanwhile, Shechem’s father Hamor came to speak with Jacob." + }, + { + "verseNum": 7, + "text": "When Jacob’s sons heard what had happened, they returned from the field. They were filled with grief and fury, because Shechem had committed an outrage in Israel by lying with Jacob’s daughter—a thing that should not be done." + }, + { + "verseNum": 8, + "text": "But Hamor said to them, “My son Shechem longs for your daughter. Please give her to him as his wife." + }, + { + "verseNum": 9, + "text": "Intermarry with us; give us your daughters, and take our daughters for yourselves." + }, + { + "verseNum": 10, + "text": "You may settle among us, and the land will be open to you. Live here, move about freely, and acquire your own property.”" + }, + { + "verseNum": 11, + "text": "Then Shechem said to Dinah’s father and brothers, “Grant me this favor, and I will give you whatever you ask." + }, + { + "verseNum": 12, + "text": "Demand a high dowry and an expensive gift, and I will give you whatever you ask. Only give me the girl as my wife!”" + }, + { + "verseNum": 13, + "text": "But because Shechem had defiled their sister Dinah, Jacob’s sons answered him and his father Hamor deceitfully." + }, + { + "verseNum": 14, + "text": "“We cannot do such a thing,” they said. “To give our sister to an uncircumcised man would be a disgrace to us." + }, + { + "verseNum": 15, + "text": "We will consent to this on one condition, that you become circumcised like us—every one of your males." + }, + { + "verseNum": 16, + "text": "Then we will give you our daughters and take your daughters for ourselves. We will dwell among you and become one people." + }, + { + "verseNum": 17, + "text": "But if you will not agree to be circumcised, then we will take our sister and go.”" + }, + { + "verseNum": 18, + "text": "Their offer seemed good to Hamor and his son Shechem." + }, + { + "verseNum": 19, + "text": "The young man, who was the most respected of all his father’s household, did not hesitate to fulfill this request, because he was delighted with Jacob’s daughter." + }, + { + "verseNum": 20, + "text": "So Hamor and his son Shechem went to the gate of their city and addressed the men of their city:" + }, + { + "verseNum": 21, + "text": "“These men are at peace with us. Let them live and trade in our land; indeed, it is large enough for them. Let us take their daughters in marriage and give our daughters to them." + }, + { + "verseNum": 22, + "text": "But only on this condition will the men agree to dwell with us and be one people: if all our men are circumcised as they are." + }, + { + "verseNum": 23, + "text": "Will not their livestock, their possessions, and all their animals become ours? Only let us consent to them, and they will dwell among us.”" + }, + { + "verseNum": 24, + "text": "All the men who went out of the city gate listened to Hamor and his son Shechem, and every male of the city was circumcised." + }, + { + "verseNum": 25, + "text": "Three days later, while they were still in pain, two of Jacob’s sons (Dinah’s brothers Simeon and Levi) took their swords, went into the unsuspecting city, and slaughtered every male." + }, + { + "verseNum": 26, + "text": "They killed Hamor and his son Shechem with their swords, took Dinah out of Shechem’s house, and went away." + }, + { + "verseNum": 27, + "text": "Jacob’s other sons came upon the slaughter and looted the city, because their sister had been defiled." + }, + { + "verseNum": 28, + "text": "They took their flocks and herds and donkeys, and everything else in the city or in the field." + }, + { + "verseNum": 29, + "text": "They carried off all their possessions and women and children, and they plundered everything in their houses." + }, + { + "verseNum": 30, + "text": "Then Jacob said to Simeon and Levi, “You have brought trouble upon me by making me a stench to the Canaanites and Perizzites, the people of this land. We are few in number; if they unite against me and attack me, I and my household will be destroyed.”" + }, + { + "verseNum": 31, + "text": "But they replied, “Should he have treated our sister like a prostitute?”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then God said to Jacob, “Arise, go up to Bethel, and settle there. Build an altar there to the God who appeared to you when you fled from your brother Esau.”" + }, + { + "verseNum": 2, + "text": "So Jacob told his household and all who were with him, “Get rid of the foreign gods that are among you. Purify yourselves and change your garments." + }, + { + "verseNum": 3, + "text": "Then let us arise and go to Bethel. I will build an altar there to God, who answered me in my day of distress. He has been with me wherever I have gone.”" + }, + { + "verseNum": 4, + "text": "So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the oak near Shechem." + }, + { + "verseNum": 5, + "text": "As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons." + }, + { + "verseNum": 6, + "text": "So Jacob and everyone with him arrived in Luz (that is, Bethel) in the land of Canaan." + }, + { + "verseNum": 7, + "text": "There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from his brother." + }, + { + "verseNum": 8, + "text": "Now Deborah, Rebekah’s nurse, died and was buried under the oak below Bethel. So Jacob named it Allon-bachuth." + }, + { + "verseNum": 9, + "text": "After Jacob had returned from Paddan-aram, God appeared to him again and blessed him." + }, + { + "verseNum": 10, + "text": "And God said to him, “Though your name is Jacob, you will no longer be called Jacob. Instead, your name will be Israel.” So God named him Israel." + }, + { + "verseNum": 11, + "text": "And God told him, “I am God Almighty. Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you." + }, + { + "verseNum": 12, + "text": "The land that I gave to Abraham and Isaac I will give to you, and I will give this land to your descendants after you.”" + }, + { + "verseNum": 13, + "text": "Then God went up from the place where He had spoken with him." + }, + { + "verseNum": 14, + "text": "So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anointed it with oil." + }, + { + "verseNum": 15, + "text": "Jacob called the place where God had spoken with him Bethel." + }, + { + "verseNum": 16, + "text": "Later, they set out from Bethel, and while they were still some distance from Ephrath, Rachel began to give birth, and her labor was difficult." + }, + { + "verseNum": 17, + "text": "During her severe labor, the midwife said to her, “Do not be afraid, for you are having another son.”" + }, + { + "verseNum": 18, + "text": "And with her last breath—for she was dying—she named him Ben-oni. But his father called him Benjamin." + }, + { + "verseNum": 19, + "text": "So Rachel died and was buried on the way to Ephrath (that is, Bethlehem)." + }, + { + "verseNum": 20, + "text": "Jacob set up a pillar on her grave; it marks Rachel’s tomb to this day." + }, + { + "verseNum": 21, + "text": "Israel again set out and pitched his tent beyond the Tower of Eder." + }, + { + "verseNum": 22, + "text": "While Israel was living in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it.\n \nJacob had twelve sons:" + }, + { + "verseNum": 23, + "text": "The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, Issachar, and Zebulun." + }, + { + "verseNum": 24, + "text": "The sons of Rachel were Joseph and Benjamin." + }, + { + "verseNum": 25, + "text": "The sons of Rachel’s maidservant Bilhah were Dan and Naphtali." + }, + { + "verseNum": 26, + "text": "And the sons of Leah’s maidservant Zilpah were Gad and Asher.\n \nThese are the sons of Jacob, who were born to him in Paddan-aram." + }, + { + "verseNum": 27, + "text": "Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abraham and Isaac had stayed." + }, + { + "verseNum": 28, + "text": "And Isaac lived 180 years." + }, + { + "verseNum": 29, + "text": "Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob buried him." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Esau (that is, Edom)." + }, + { + "verseNum": 2, + "text": "Esau took his wives from the daughters of Canaan: Adah daughter of Elon the Hittite, Oholibamah daughter of Anah and granddaughter of Zibeon the Hivite," + }, + { + "verseNum": 3, + "text": "and Basemath daughter of Ishmael and sister of Nebaioth." + }, + { + "verseNum": 4, + "text": "And Adah bore Eliphaz to Esau, Basemath gave birth to Reuel," + }, + { + "verseNum": 5, + "text": "and Oholibamah gave birth to Jeush, Jalam, and Korah. These were the sons of Esau, who were born to him in the land of Canaan." + }, + { + "verseNum": 6, + "text": "Later, Esau took his wives and sons and daughters and all the people of his household, along with his livestock, all his other animals, and all the property he had acquired in Canaan, and he moved to a land far away from his brother Jacob." + }, + { + "verseNum": 7, + "text": "For their possessions were too great for them to dwell together; the land where they stayed could not support them because of their livestock." + }, + { + "verseNum": 8, + "text": "So Esau (that is, Edom) settled in the area of Mount Seir." + }, + { + "verseNum": 9, + "text": "This is the account of Esau, the father of the Edomites, in the area of Mount Seir." + }, + { + "verseNum": 10, + "text": "These are the names of Esau’s sons: Eliphaz son of Esau’s wife Adah, and Reuel son of Esau’s wife Basemath." + }, + { + "verseNum": 11, + "text": "The sons of Eliphaz were Teman, Omar, Zepho, Gatam, and Kenaz." + }, + { + "verseNum": 12, + "text": "Additionally, Timna, a concubine of Esau’s son Eliphaz, gave birth to Amalek. These are the grandsons of Esau’s wife Adah." + }, + { + "verseNum": 13, + "text": "These are the sons of Reuel: Nahath, Zerah, Shammah, and Mizzah. They are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 14, + "text": "These are the sons of Esau’s wife Oholibamah (daughter of Anah and granddaughter of Zibeon) whom she bore to Esau: Jeush, Jalam, and Korah." + }, + { + "verseNum": 15, + "text": "These are the chiefs among the sons of Esau. The sons of Eliphaz the firstborn of Esau: Chiefs Teman, Omar, Zepho, Kenaz," + }, + { + "verseNum": 16, + "text": "Korah, Gatam, and Amalek. They are the chiefs of Eliphaz in the land of Edom, and they are the grandsons of Adah." + }, + { + "verseNum": 17, + "text": "These are the sons of Esau’s son Reuel: Chiefs Nahath, Zerah, Shammah, and Mizzah. They are the chiefs descended from Reuel in the land of Edom, and they are the grandsons of Esau’s wife Basemath." + }, + { + "verseNum": 18, + "text": "These are the sons of Esau’s wife Oholibamah: Chiefs Jeush, Jalam, and Korah. They are the chiefs descended from Esau’s wife Oholibamah, the daughter of Anah." + }, + { + "verseNum": 19, + "text": "All these are the sons of Esau (that is, Edom), and they were their chiefs." + }, + { + "verseNum": 20, + "text": "These are the sons of Seir the Horite, who were living in the land: Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 21, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, the descendants of Seir in the land of Edom." + }, + { + "verseNum": 22, + "text": "The sons of Lotan were Hori and Hemam. Timna was Lotan’s sister." + }, + { + "verseNum": 23, + "text": "These are the sons of Shobal: Alvan, Manahath, Ebal, Shepho, and Onam." + }, + { + "verseNum": 24, + "text": "These are the sons of Zibeon: Aiah and Anah. (This is the Anah who found the hot springs in the wilderness as he was pasturing the donkeys of his father Zibeon.)" + }, + { + "verseNum": 25, + "text": "These are the children of Anah: Dishon and Oholibamah daughter of Anah." + }, + { + "verseNum": 26, + "text": "These are the sons of Dishon: Hemdan, Eshban, Ithran, and Cheran." + }, + { + "verseNum": 27, + "text": "These are the sons of Ezer: Bilhan, Zaavan, and Akan." + }, + { + "verseNum": 28, + "text": "These are the sons of Dishan: Uz and Aran." + }, + { + "verseNum": 29, + "text": "These are the chiefs of the Horites: Chiefs Lotan, Shobal, Zibeon, Anah," + }, + { + "verseNum": 30, + "text": "Dishon, Ezer, and Dishan. They are the chiefs of the Horites, according to their divisions in the land of Seir." + }, + { + "verseNum": 31, + "text": "These are the kings who reigned in the land of Edom before any king reigned over the Israelites:" + }, + { + "verseNum": 32, + "text": "Bela son of Beor reigned in Edom; the name of his city was Dinhabah." + }, + { + "verseNum": 33, + "text": "When Bela died, Jobab son of Zerah from Bozrah reigned in his place." + }, + { + "verseNum": 34, + "text": "When Jobab died, Husham from the land of the Temanites reigned in his place." + }, + { + "verseNum": 35, + "text": "When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of his city was Avith." + }, + { + "verseNum": 36, + "text": "When Hadad died, Samlah from Masrekah reigned in his place." + }, + { + "verseNum": 37, + "text": "When Samlah died, Shaul from Rehoboth on the Euphrates reigned in his place." + }, + { + "verseNum": 38, + "text": "When Shaul died, Baal-hanan son of Achbor reigned in his place." + }, + { + "verseNum": 39, + "text": "When Baal-hanan son of Achbor died, Hadad reigned in his place. His city was named Pau, and his wife’s name was Mehetabel daughter of Matred, the daughter of Me-zahab." + }, + { + "verseNum": 40, + "text": "These are the names of Esau’s chiefs, according to their families and regions, by their names: Chiefs Timna, Alvah, Jetheth," + }, + { + "verseNum": 41, + "text": "Oholibamah, Elah, Pinon," + }, + { + "verseNum": 42, + "text": "Kenaz, Teman, Mibzar," + }, + { + "verseNum": 43, + "text": "Magdiel, and Iram. These were the chiefs of Edom, according to their settlements in the land they possessed. Esau was the father of the Edomites." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Now Jacob lived in the land where his father had resided, the land of Canaan." + }, + { + "verseNum": 2, + "text": "This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a bad report about them." + }, + { + "verseNum": 3, + "text": "Now Israel loved Joseph more than his other sons, because Joseph had been born to him in his old age; so he made him a robe of many colors." + }, + { + "verseNum": 4, + "text": "When Joseph’s brothers saw that their father loved him more than any of them, they hated him and could not speak a kind word to him." + }, + { + "verseNum": 5, + "text": "Then Joseph had a dream, and when he told it to his brothers, they hated him even more." + }, + { + "verseNum": 6, + "text": "He said to them, “Listen to this dream I had:" + }, + { + "verseNum": 7, + "text": "We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down to mine.”" + }, + { + "verseNum": 8, + "text": "“Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his statements." + }, + { + "verseNum": 9, + "text": "Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and eleven stars were bowing down to me.”" + }, + { + "verseNum": 10, + "text": "He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brothers and I actually come and bow down to the ground before you?”" + }, + { + "verseNum": 11, + "text": "And his brothers were jealous of him, but his father kept in mind what he had said." + }, + { + "verseNum": 12, + "text": "Some time later, Joseph’s brothers had gone to pasture their father’s flocks near Shechem." + }, + { + "verseNum": 13, + "text": "Israel said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.”\n \n“I am ready,” Joseph replied." + }, + { + "verseNum": 14, + "text": "Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.”\n \nSo he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem," + }, + { + "verseNum": 15, + "text": "a man found him wandering in the field and asked, “What are you looking for?”" + }, + { + "verseNum": 16, + "text": "“I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing their flocks?”" + }, + { + "verseNum": 17, + "text": "“They have moved on from here,” the man answered. “I heard them say, ‘Let us go to Dothan.’” So Joseph set out after his brothers and found them at Dothan." + }, + { + "verseNum": 18, + "text": "Now Joseph’s brothers saw him in the distance, and before he arrived, they plotted to kill him." + }, + { + "verseNum": 19, + "text": "“Here comes that dreamer!” they said to one another." + }, + { + "verseNum": 20, + "text": "“Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall see what becomes of his dreams!”" + }, + { + "verseNum": 21, + "text": "When Reuben heard this, he tried to rescue Joseph from their hands. “Let us not take his life,” he said." + }, + { + "verseNum": 22, + "text": "“Do not shed his blood. Throw him into this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his father." + }, + { + "verseNum": 23, + "text": "So when Joseph came to his brothers, they stripped him of his robe—the robe of many colors he was wearing—" + }, + { + "verseNum": 24, + "text": "and they took him and threw him into the pit. Now the pit was empty, with no water in it." + }, + { + "verseNum": 25, + "text": "And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their camels were carrying spices, balm, and myrrh on their way down to Egypt." + }, + { + "verseNum": 26, + "text": "Then Judah said to his brothers, “What profit will we gain if we kill our brother and cover up his blood?" + }, + { + "verseNum": 27, + "text": "Come, let us sell him to the Ishmaelites and not lay a hand on him; for he is our brother, our own flesh.” And they agreed." + }, + { + "verseNum": 28, + "text": "So when the Midianite traders passed by, his brothers pulled Joseph out of the pit and sold him for twenty shekels of silver to the Ishmaelites, who took him to Egypt." + }, + { + "verseNum": 29, + "text": "When Reuben returned to the pit and saw that Joseph was not there, he tore his clothes," + }, + { + "verseNum": 30, + "text": "returned to his brothers, and said, “The boy is gone! What am I going to do?”" + }, + { + "verseNum": 31, + "text": "Then they took Joseph’s robe, slaughtered a young goat, and dipped the robe in its blood." + }, + { + "verseNum": 32, + "text": "They sent the robe of many colors to their father and said, “We found this. Examine it to see whether it is your son’s robe or not.”" + }, + { + "verseNum": 33, + "text": "His father recognized it and said, “It is my son’s robe! A vicious animal has devoured him. Joseph has surely been torn to pieces!”" + }, + { + "verseNum": 34, + "text": "Then Jacob tore his clothes, put sackcloth around his waist, and mourned for his son many days." + }, + { + "verseNum": 35, + "text": "All his sons and daughters tried to comfort him, but he refused to be comforted. “No,” he said. “I will go down to Sheol mourning for my son.” So his father wept for him." + }, + { + "verseNum": 36, + "text": "Meanwhile, the Midianites sold Joseph in Egypt to Potiphar, an officer of Pharaoh and captain of the guard." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "About that time, Judah left his brothers and settled near a man named Hirah, an Adullamite." + }, + { + "verseNum": 2, + "text": "There Judah saw the daughter of a Canaanite man named Shua, and he took her as a wife and slept with her." + }, + { + "verseNum": 3, + "text": "So she conceived and gave birth to a son, and Judah named him Er." + }, + { + "verseNum": 4, + "text": "Again she conceived and gave birth to a son, and she named him Onan." + }, + { + "verseNum": 5, + "text": "Then she gave birth to another son and named him Shelah; it was at Chezib that she gave birth to him." + }, + { + "verseNum": 6, + "text": "Now Judah acquired a wife for Er, his firstborn, and her name was Tamar." + }, + { + "verseNum": 7, + "text": "But Er, Judah’s firstborn, was wicked in the sight of the LORD; so the LORD put him to death." + }, + { + "verseNum": 8, + "text": "Then Judah said to Onan, “Sleep with your brother’s wife. Perform your duty as her brother-in-law and raise up offspring for your brother.”" + }, + { + "verseNum": 9, + "text": "But Onan knew that the offspring would not belong to him; so whenever he would sleep with his brother’s wife, he would spill his seed on the ground so that he would not produce offspring for his brother." + }, + { + "verseNum": 10, + "text": "What he did was wicked in the sight of the LORD, so He put Onan to death as well." + }, + { + "verseNum": 11, + "text": "Then Judah said to his daughter-in-law Tamar, “Live as a widow in your father’s house until my son Shelah grows up.” For he thought, “He may die too, like his brothers.” So Tamar went to live in her father’s house." + }, + { + "verseNum": 12, + "text": "After a long time Judah’s wife, the daughter of Shua, died. When Judah had finished mourning, he and his friend Hirah the Adullamite went up to his sheepshearers at Timnah." + }, + { + "verseNum": 13, + "text": "When Tamar was told, “Your father-in-law is going up to Timnah to shear his sheep,”" + }, + { + "verseNum": 14, + "text": "she removed her widow’s garments, covered her face with a veil to disguise herself, and sat at the entrance to Enaim, which is on the way to Timnah. For she saw that although Shelah had grown up, she had not been given to him as a wife." + }, + { + "verseNum": 15, + "text": "When Judah saw her, he thought she was a prostitute because she had covered her face." + }, + { + "verseNum": 16, + "text": "Not realizing that she was his daughter-in-law, he went over to her and said, “Come now, let me sleep with you.”\n \n“What will you give me for sleeping with you?” she inquired." + }, + { + "verseNum": 17, + "text": "“I will send you a young goat from my flock,” Judah answered.\n \nBut she replied, “Only if you leave me something as a pledge until you send it.”" + }, + { + "verseNum": 18, + "text": "“What pledge should I give you?” he asked.\n \nShe answered, “Your seal and your cord, and the staff in your hand.” So he gave them to her and slept with her, and she became pregnant by him." + }, + { + "verseNum": 19, + "text": "Then Tamar got up and departed. And she removed her veil and put on her widow’s garments again." + }, + { + "verseNum": 20, + "text": "Now when Judah sent his friend Hirah the Adullamite with the young goat to collect the items he had left with the woman, he could not find her." + }, + { + "verseNum": 21, + "text": "He asked the men of that place, “Where is the shrine prostitute who was beside the road at Enaim?”\n \n“No shrine prostitute has been here,” they answered." + }, + { + "verseNum": 22, + "text": "So Hirah returned to Judah and said, “I could not find her, and furthermore, the men of that place said, ‘No shrine prostitute has been here.’”" + }, + { + "verseNum": 23, + "text": "“Let her keep the items,” Judah replied. “Otherwise we will become a laughingstock. After all, I did send her this young goat, but you could not find her.”" + }, + { + "verseNum": 24, + "text": "About three months later, Judah was told, “Your daughter-in-law Tamar has prostituted herself, and now she is pregnant.”\n \n“Bring her out!” Judah replied. “Let her be burned to death!”" + }, + { + "verseNum": 25, + "text": "As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and cord and staff are these?”" + }, + { + "verseNum": 26, + "text": "Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations with her again." + }, + { + "verseNum": 27, + "text": "When the time came for Tamar to give birth, there were twins in her womb." + }, + { + "verseNum": 28, + "text": "And as she was giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she announced." + }, + { + "verseNum": 29, + "text": "But when he pulled his hand back and his brother came out, she said, “You have broken out first!” So he was named Perez." + }, + { + "verseNum": 30, + "text": "Then his brother came out with the scarlet thread around his wrist, and he was named Zerah." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Potiphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had taken him there." + }, + { + "verseNum": 2, + "text": "And the LORD was with Joseph, and he became a successful man, serving in the household of his Egyptian master." + }, + { + "verseNum": 3, + "text": "When his master saw that the LORD was with him and made him prosper in all he did," + }, + { + "verseNum": 4, + "text": "Joseph found favor in his sight and became his personal attendant.\n \nPotiphar put him in charge of his household and entrusted him with everything he owned." + }, + { + "verseNum": 5, + "text": "From the time that he put Joseph in charge of his household and all he owned, the LORD blessed the Egyptian’s household on account of him. The LORD’s blessing was on everything he owned, both in his house and in his field." + }, + { + "verseNum": 6, + "text": "So Potiphar left all that he owned in Joseph’s care; he did not concern himself with anything except the food he ate.\n \nNow Joseph was well-built and handsome," + }, + { + "verseNum": 7, + "text": "and after some time his master’s wife cast her eyes upon Joseph and said, “Sleep with me.”" + }, + { + "verseNum": 8, + "text": "But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care." + }, + { + "verseNum": 9, + "text": "No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great evil and sin against God?”" + }, + { + "verseNum": 10, + "text": "Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her." + }, + { + "verseNum": 11, + "text": "One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside." + }, + { + "verseNum": 12, + "text": "She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he escaped and ran outside." + }, + { + "verseNum": 13, + "text": "When she saw that he had left his cloak in her hand and had run out of the house," + }, + { + "verseNum": 14, + "text": "she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could." + }, + { + "verseNum": 15, + "text": "When he heard me scream for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 16, + "text": "So Potiphar’s wife kept Joseph’s cloak beside her until his master came home." + }, + { + "verseNum": 17, + "text": "Then she told him the same story: “The Hebrew slave you brought us came to me to make sport of me," + }, + { + "verseNum": 18, + "text": "but when I screamed for help, he left his cloak beside me and ran out of the house.”" + }, + { + "verseNum": 19, + "text": "When his master heard the story his wife told him, saying, “This is what your slave did to me,” he burned with anger." + }, + { + "verseNum": 20, + "text": "So Joseph’s master took him and had him thrown into the prison where the king’s prisoners were confined.\n \nWhile Joseph was there in the prison," + }, + { + "verseNum": 21, + "text": "the LORD was with him and extended kindness to him, granting him favor in the eyes of the prison warden." + }, + { + "verseNum": 22, + "text": "And the warden put all the prisoners under Joseph’s care, so that he was responsible for all that was done in the prison." + }, + { + "verseNum": 23, + "text": "The warden did not concern himself with anything under Joseph’s care, because the LORD was with Joseph and gave him success in whatever he did." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Some time later, the king’s cupbearer and baker offended their master, the king of Egypt." + }, + { + "verseNum": 2, + "text": "Pharaoh was angry with his two officers, the chief cupbearer and the chief baker," + }, + { + "verseNum": 3, + "text": "and imprisoned them in the house of the captain of the guard, the same prison where Joseph was confined." + }, + { + "verseNum": 4, + "text": "The captain of the guard assigned them to Joseph, and he became their personal attendant.\n \nAfter they had been in custody for some time," + }, + { + "verseNum": 5, + "text": "both of these men—the Egyptian king’s cupbearer and baker, who were being held in the prison—had a dream on the same night, and each dream had its own meaning." + }, + { + "verseNum": 6, + "text": "When Joseph came to them in the morning, he saw that they were distraught." + }, + { + "verseNum": 7, + "text": "So he asked the officials of Pharaoh who were in custody with him in his master’s house, “Why are your faces so downcast today?”" + }, + { + "verseNum": 8, + "text": "“We both had dreams,” they replied, “but there is no one to interpret them.”\n \nThen Joseph said to them, “Don’t interpretations belong to God? Tell me your dreams.”" + }, + { + "verseNum": 9, + "text": "So the chief cupbearer told Joseph his dream: “In my dream there was a vine before me," + }, + { + "verseNum": 10, + "text": "and on the vine were three branches. As it budded, its blossoms opened and its clusters ripened into grapes." + }, + { + "verseNum": 11, + "text": "Pharaoh’s cup was in my hand, and I took the grapes, squeezed them into his cup, and placed the cup in his hand.”" + }, + { + "verseNum": 12, + "text": "Joseph replied, “This is the interpretation: The three branches are three days." + }, + { + "verseNum": 13, + "text": "Within three days Pharaoh will lift up your head and restore your position. You will put Pharaoh’s cup in his hand, just as you did when you were his cupbearer." + }, + { + "verseNum": 14, + "text": "But when it goes well for you, please remember me and show me kindness by mentioning me to Pharaoh, that he might bring me out of this prison." + }, + { + "verseNum": 15, + "text": "For I was kidnapped from the land of the Hebrews, and even here I have done nothing for which they should have put me in this dungeon.”" + }, + { + "verseNum": 16, + "text": "When the chief baker saw that the interpretation was favorable, he said to Joseph, “I too had a dream: There were three baskets of white bread on my head." + }, + { + "verseNum": 17, + "text": "In the top basket were all sorts of baked goods for Pharaoh, but the birds were eating them out of the basket on my head.”" + }, + { + "verseNum": 18, + "text": "Joseph replied, “This is the interpretation: The three baskets are three days." + }, + { + "verseNum": 19, + "text": "Within three days Pharaoh will lift off your head and hang you on a tree. Then the birds will eat the flesh of your body.”" + }, + { + "verseNum": 20, + "text": "On the third day, which was Pharaoh’s birthday, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker." + }, + { + "verseNum": 21, + "text": "Pharaoh restored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand." + }, + { + "verseNum": 22, + "text": "But Pharaoh hanged the chief baker, just as Joseph had described to them in his interpretation." + }, + { + "verseNum": 23, + "text": "The chief cupbearer, however, did not remember Joseph; he forgot all about him." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "After two full years had passed, Pharaoh had a dream: He was standing beside the Nile," + }, + { + "verseNum": 2, + "text": "when seven cows, sleek and well-fed, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 3, + "text": "After them, seven other cows, sickly and thin, came up from the Nile and stood beside the well-fed cows on the bank of the river." + }, + { + "verseNum": 4, + "text": "And the cows that were sickly and thin devoured the seven sleek, well-fed cows.\n \nThen Pharaoh woke up," + }, + { + "verseNum": 5, + "text": "but he fell back asleep and dreamed a second time: Seven heads of grain, plump and ripe, came up on one stalk." + }, + { + "verseNum": 6, + "text": "After them, seven other heads of grain sprouted, thin and scorched by the east wind." + }, + { + "verseNum": 7, + "text": "And the thin heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it was a dream." + }, + { + "verseNum": 8, + "text": "In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one could interpret them for him." + }, + { + "verseNum": 9, + "text": "Then the chief cupbearer said to Pharaoh, “Today I recall my failures." + }, + { + "verseNum": 10, + "text": "Pharaoh was once angry with his servants, and he put me and the chief baker in the custody of the captain of the guard." + }, + { + "verseNum": 11, + "text": "One night both the chief baker and I had dreams, and each dream had its own meaning." + }, + { + "verseNum": 12, + "text": "Now a young Hebrew was there with us, a servant of the captain of the guard. We told him our dreams and he interpreted them for us individually." + }, + { + "verseNum": 13, + "text": "And it happened to us just as he had interpreted: I was restored to my position, and the other man was hanged.”" + }, + { + "verseNum": 14, + "text": "So Pharaoh sent for Joseph, who was quickly brought out of the dungeon. After he had shaved and changed his clothes, he went in before Pharaoh." + }, + { + "verseNum": 15, + "text": "Pharaoh said to Joseph, “I had a dream, and no one can interpret it. But I have heard it said of you that when you hear a dream you can interpret it.”" + }, + { + "verseNum": 16, + "text": "“I myself cannot do it,” Joseph replied, “but God will give Pharaoh a sound answer.”" + }, + { + "verseNum": 17, + "text": "Then Pharaoh said to Joseph: “In my dream I was standing on the bank of the Nile," + }, + { + "verseNum": 18, + "text": "when seven cows, well-fed and sleek, came up from the river and began to graze among the reeds." + }, + { + "verseNum": 19, + "text": "After them, seven other cows—sickly, ugly, and thin—came up. I have never seen such ugly cows in all the land of Egypt!" + }, + { + "verseNum": 20, + "text": "Then the thin, ugly cows devoured the seven well-fed cows that were there first." + }, + { + "verseNum": 21, + "text": "When they had devoured them, however, no one could tell that they had done so; their appearance was as ugly as it had been before. Then I awoke." + }, + { + "verseNum": 22, + "text": "In my dream I also saw seven heads of grain, plump and ripe, growing on a single stalk." + }, + { + "verseNum": 23, + "text": "After them, seven other heads of grain sprouted—withered, thin, and scorched by the east wind." + }, + { + "verseNum": 24, + "text": "And the thin heads of grain swallowed the seven plump ones.\n \nI told this dream to the magicians, but no one could explain it to me.”" + }, + { + "verseNum": 25, + "text": "At this, Joseph said to Pharaoh, “The dreams of Pharaoh are one and the same. God has revealed to Pharaoh what He is about to do." + }, + { + "verseNum": 26, + "text": "The seven good cows are seven years, and the seven ripe heads of grain are seven years. The dreams have the same meaning." + }, + { + "verseNum": 27, + "text": "Moreover, the seven thin, ugly cows that came up after them are seven years, and so are the seven worthless heads of grain scorched by the east wind—they are seven years of famine." + }, + { + "verseNum": 28, + "text": "It is just as I said to Pharaoh: God has shown Pharaoh what He is about to do." + }, + { + "verseNum": 29, + "text": "Behold, seven years of great abundance are coming throughout the land of Egypt," + }, + { + "verseNum": 30, + "text": "but seven years of famine will follow them. Then all the abundance in the land of Egypt will be forgotten, and the famine will devastate the land." + }, + { + "verseNum": 31, + "text": "The abundance in the land will not be remembered, since the famine that follows it will be so severe." + }, + { + "verseNum": 32, + "text": "Moreover, because the dream was given to Pharaoh in two versions, the matter has been decreed by God, and He will carry it out shortly." + }, + { + "verseNum": 33, + "text": "Now, therefore, Pharaoh should look for a discerning and wise man and set him over the land of Egypt." + }, + { + "verseNum": 34, + "text": "Let Pharaoh take action and appoint commissioners over the land to take a fifth of the harvest of Egypt during the seven years of abundance." + }, + { + "verseNum": 35, + "text": "Under the authority of Pharaoh, let them collect all the excess food from these good years, that they may come and lay up the grain to be preserved as food in the cities." + }, + { + "verseNum": 36, + "text": "This food will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Then the country will not perish in the famine.”" + }, + { + "verseNum": 37, + "text": "This proposal pleased Pharaoh and all his officials." + }, + { + "verseNum": 38, + "text": "So Pharaoh asked them, “Can we find anyone like this man, in whom the Spirit of God abides?”" + }, + { + "verseNum": 39, + "text": "Then Pharaoh said to Joseph, “Since God has made all this known to you, there is no one as discerning and wise as you." + }, + { + "verseNum": 40, + "text": "You shall be in charge of my house, and all my people are to obey your commands. Only with regard to the throne will I be greater than you.”" + }, + { + "verseNum": 41, + "text": "Pharaoh also told Joseph, “I hereby place you over all the land of Egypt.”" + }, + { + "verseNum": 42, + "text": "Then Pharaoh removed the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine linen, and placed a gold chain around his neck." + }, + { + "verseNum": 43, + "text": "He had Joseph ride in his second chariot, with men calling out before him, “Bow the knee!” So he placed him over all the land of Egypt." + }, + { + "verseNum": 44, + "text": "And Pharaoh declared to Joseph, “I am Pharaoh, but without your permission, no one in all the land of Egypt shall lift his hand or foot.”" + }, + { + "verseNum": 45, + "text": "Pharaoh gave Joseph the name Zaphenath-paneah, and he gave him Asenath daughter of Potiphera, priest of On, to be his wife. And Joseph took charge of all the land of Egypt." + }, + { + "verseNum": 46, + "text": "Now Joseph was thirty years old when he entered the service of Pharaoh king of Egypt. And Joseph left Pharaoh’s presence and traveled throughout the land of Egypt." + }, + { + "verseNum": 47, + "text": "During the seven years of abundance, the land brought forth bountifully." + }, + { + "verseNum": 48, + "text": "During those seven years, Joseph collected all the excess food in the land of Egypt and stored it in the cities. In every city he laid up the food from the fields around it." + }, + { + "verseNum": 49, + "text": "So Joseph stored up grain in such abundance, like the sand of the sea, that he stopped keeping track of it; for it was beyond measure." + }, + { + "verseNum": 50, + "text": "Before the years of famine arrived, two sons were born to Joseph by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 51, + "text": "Joseph named the firstborn Manasseh, saying, “God has made me forget all my hardship and all my father’s household.”" + }, + { + "verseNum": 52, + "text": "And the second son he named Ephraim, saying, “God has made me fruitful in the land of my affliction.”" + }, + { + "verseNum": 53, + "text": "When the seven years of abundance in the land of Egypt came to an end," + }, + { + "verseNum": 54, + "text": "the seven years of famine began, just as Joseph had said. And although there was famine in every country, there was food throughout the land of Egypt." + }, + { + "verseNum": 55, + "text": "When extreme hunger came to all the land of Egypt and the people cried out to Pharaoh for food, he told all the Egyptians, “Go to Joseph and do whatever he tells you.”" + }, + { + "verseNum": 56, + "text": "When the famine had spread over all the land, Joseph opened up all the storehouses and sold grain to the Egyptians; for the famine was severe in the land of Egypt." + }, + { + "verseNum": 57, + "text": "And every nation came to Joseph in Egypt to buy grain, because the famine was severe over all the earth." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "When Jacob learned that there was grain in Egypt, he said to his sons, “Why are you staring at one another?”" + }, + { + "verseNum": 2, + "text": "“Look,” he added, “I have heard that there is grain in Egypt. Go down there and buy some for us, so that we may live and not die.”" + }, + { + "verseNum": 3, + "text": "So ten of Joseph’s brothers went down to buy grain from Egypt." + }, + { + "verseNum": 4, + "text": "But Jacob did not send Joseph’s brother Benjamin with his brothers, for he said, “I am afraid that harm might befall him.”" + }, + { + "verseNum": 5, + "text": "So the sons of Israel were among those who came to buy grain, since the famine had also spread to the land of Canaan." + }, + { + "verseNum": 6, + "text": "Now Joseph was the ruler of the land; he was the one who sold grain to all its people. So when his brothers arrived, they bowed down before him with their faces to the ground." + }, + { + "verseNum": 7, + "text": "And when Joseph saw his brothers, he recognized them, but he treated them as strangers and spoke harshly to them. “Where have you come from?” he asked.\n \n“From the land of Canaan,” they replied. “We are here to buy food.”" + }, + { + "verseNum": 8, + "text": "Although Joseph recognized his brothers, they did not recognize him." + }, + { + "verseNum": 9, + "text": "Joseph remembered his dreams about them and said, “You are spies! You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 10, + "text": "“Not so, my lord,” they replied. “Your servants have come to buy food." + }, + { + "verseNum": 11, + "text": "We are all sons of one man. Your servants are honest men, not spies.”" + }, + { + "verseNum": 12, + "text": "“No,” he told them. “You have come to see if our land is vulnerable.”" + }, + { + "verseNum": 13, + "text": "But they answered, “Your servants are twelve brothers, the sons of one man in the land of Canaan. The youngest is now with our father, and one is no more.”" + }, + { + "verseNum": 14, + "text": "Then Joseph declared, “Just as I said, you are spies!" + }, + { + "verseNum": 15, + "text": "And this is how you will be tested: As surely as Pharaoh lives, you shall not leave this place unless your youngest brother comes here." + }, + { + "verseNum": 16, + "text": "Send one of your number to get your brother; the rest of you will be confined so that the truth of your words may be tested. If they are untrue, then as surely as Pharaoh lives, you are spies!”" + }, + { + "verseNum": 17, + "text": "So Joseph imprisoned them for three days," + }, + { + "verseNum": 18, + "text": "and on the third day he said to them, “I fear God. So do this and you will live:" + }, + { + "verseNum": 19, + "text": "If you are honest, leave one of your brothers in custody while the rest of you go and take back grain to relieve the hunger of your households." + }, + { + "verseNum": 20, + "text": "Then bring your youngest brother to me so that your words can be verified, that you may not die.”\n \nAnd to this they consented." + }, + { + "verseNum": 21, + "text": "Then they said to one another, “Surely we are being punished because of our brother. We saw his anguish when he pleaded with us, but we would not listen. That is why this distress has come upon us.”" + }, + { + "verseNum": 22, + "text": "And Reuben responded, “Didn’t I tell you not to sin against the boy? But you would not listen. Now we must account for his blood!”" + }, + { + "verseNum": 23, + "text": "They did not realize that Joseph understood them, since there was an interpreter between them." + }, + { + "verseNum": 24, + "text": "And he turned away from them and wept. When he turned back and spoke to them, he took Simeon from them and had him bound before their eyes." + }, + { + "verseNum": 25, + "text": "Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. This order was carried out," + }, + { + "verseNum": 26, + "text": "and they loaded the grain on their donkeys and departed." + }, + { + "verseNum": 27, + "text": "At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack." + }, + { + "verseNum": 28, + "text": "“My silver has been returned!” he said to his brothers. “It is here in my sack.”\n \nTheir hearts sank, and trembling, they turned to one another and said, “What is this that God has done to us?”" + }, + { + "verseNum": 29, + "text": "When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them:" + }, + { + "verseNum": 30, + "text": "“The man who is lord of the land spoke harshly to us and accused us of spying on the country." + }, + { + "verseNum": 31, + "text": "But we told him, ‘We are honest men, not spies." + }, + { + "verseNum": 32, + "text": "We are twelve brothers, sons of one father. One is no more, and the youngest is now with our father in the land of Canaan.’" + }, + { + "verseNum": 33, + "text": "Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go." + }, + { + "verseNum": 34, + "text": "But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and you can trade in the land.’”" + }, + { + "verseNum": 35, + "text": "As they began emptying their sacks, there in each man’s sack was his bag of silver! And when they and their father saw the bags of silver, they were dismayed." + }, + { + "verseNum": 36, + "text": "Their father Jacob said to them, “You have deprived me of my sons. Joseph is gone and Simeon is no more. Now you want to take Benjamin. Everything is going against me!”" + }, + { + "verseNum": 37, + "text": "Then Reuben said to his father, “You may kill my two sons if I fail to bring him back to you. Put him in my care, and I will return him.”" + }, + { + "verseNum": 38, + "text": "But Jacob replied, “My son will not go down there with you, for his brother is dead, and he alone is left. If any harm comes to him on your journey, you will bring my gray hair down to Sheol in sorrow.”" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Now the famine was still severe in the land." + }, + { + "verseNum": 2, + "text": "So when Jacob’s sons had eaten all the grain they had brought from Egypt, their father said to them, “Go back and buy us a little more food.”" + }, + { + "verseNum": 3, + "text": "But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your brother is with you.’" + }, + { + "verseNum": 4, + "text": "If you will send our brother with us, we will go down and buy food for you." + }, + { + "verseNum": 5, + "text": "But if you will not send him, we will not go; for the man told us, ‘You will not see my face again unless your brother is with you.’”" + }, + { + "verseNum": 6, + "text": "“Why did you bring this trouble upon me?” Israel asked. “Why did you tell the man you had another brother?”" + }, + { + "verseNum": 7, + "text": "They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possibly know that he would say, ‘Bring your brother here’?”" + }, + { + "verseNum": 8, + "text": "And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children." + }, + { + "verseNum": 9, + "text": "I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may I bear the guilt before you all my life." + }, + { + "verseNum": 10, + "text": "If we had not delayed, we could have come and gone twice by now.”" + }, + { + "verseNum": 11, + "text": "Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry them down as a gift for the man—a little balm and a little honey, spices and myrrh, pistachios and almonds." + }, + { + "verseNum": 12, + "text": "Take double the silver with you so that you may return the silver that was put back into the mouths of your sacks. Perhaps it was a mistake." + }, + { + "verseNum": 13, + "text": "Take your brother as well, and return to the man at once." + }, + { + "verseNum": 14, + "text": "May God Almighty grant you mercy before the man, that he may release your other brother along with Benjamin. As for me, if I am bereaved, I am bereaved.”" + }, + { + "verseNum": 15, + "text": "So the men took these gifts, along with double the amount of silver, and Benjamin as well. Then they hurried down to Egypt and stood before Joseph." + }, + { + "verseNum": 16, + "text": "When Joseph saw Benjamin with his brothers, he said to the steward of his house, “Take these men to my house. Slaughter an animal and prepare it, for they shall dine with me at noon.”" + }, + { + "verseNum": 17, + "text": "The man did as Joseph had commanded and took the brothers to Joseph’s house." + }, + { + "verseNum": 18, + "text": "But the brothers were frightened that they had been taken to Joseph’s house. “We have been brought here because of the silver that was returned in our bags the first time,” they said. “They intend to overpower us and take us as slaves, along with our donkeys.”" + }, + { + "verseNum": 19, + "text": "So they approached Joseph’s steward and spoke to him at the entrance to the house." + }, + { + "verseNum": 20, + "text": "“Please, sir,” they said, “we really did come down here the first time to buy food." + }, + { + "verseNum": 21, + "text": "But when we came to the place we lodged for the night, we opened our sacks and, behold, each of us found his silver in the mouth of his sack! It was the full amount of our silver, and we have brought it back with us." + }, + { + "verseNum": 22, + "text": "We have brought additional silver with us to buy food. We do not know who put our silver in our sacks.”" + }, + { + "verseNum": 23, + "text": "“It is fine,” said the steward. “Do not be afraid. Your God, the God of your father, gave you the treasure that was in your sacks. I received your silver.” Then he brought Simeon out to them." + }, + { + "verseNum": 24, + "text": "And the steward took the men into Joseph’s house, gave them water to wash their feet, and provided food for their donkeys." + }, + { + "verseNum": 25, + "text": "Since the brothers had been told that they were going to eat a meal there, they prepared their gift for Joseph’s arrival at noon." + }, + { + "verseNum": 26, + "text": "When Joseph came home, they presented him with the gifts they had brought, and they bowed to the ground before him." + }, + { + "verseNum": 27, + "text": "He asked if they were well, and then he asked, “How is your elderly father you told me about? Is he still alive?”" + }, + { + "verseNum": 28, + "text": "“Your servant our father is well,” they answered. “He is still alive.” And they bowed down to honor him." + }, + { + "verseNum": 29, + "text": "When Joseph looked up and saw his brother Benjamin, his own mother’s son, he asked, “Is this your youngest brother, the one you told me about?” Then he declared, “May God be gracious to you, my son.”" + }, + { + "verseNum": 30, + "text": "Joseph hurried out because he was moved to tears for his brother, and he went to a private room to weep." + }, + { + "verseNum": 31, + "text": "Then he washed his face and came back out. Regaining his composure, he said, “Serve the meal.”" + }, + { + "verseNum": 32, + "text": "They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, since that was detestable to them." + }, + { + "verseNum": 33, + "text": "They were seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at one another in astonishment." + }, + { + "verseNum": 34, + "text": "When the portions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank freely with Joseph." + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the mouth of his sack." + }, + { + "verseNum": 2, + "text": "Put my cup, the silver one, in the mouth of the youngest one’s sack, along with the silver for his grain.”\n \nSo the steward did as Joseph had instructed." + }, + { + "verseNum": 3, + "text": "At daybreak, the men were sent on their way with their donkeys." + }, + { + "verseNum": 4, + "text": "They had not gone far from the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, ask, ‘Why have you repaid good with evil?" + }, + { + "verseNum": 5, + "text": "Is this not the cup my master drinks from and uses for divination? What you have done is wicked!’”" + }, + { + "verseNum": 6, + "text": "When the steward overtook them, he relayed these words to them." + }, + { + "verseNum": 7, + "text": "“Why does my lord say these things?” they asked. “Your servants could not possibly do such a thing." + }, + { + "verseNum": 8, + "text": "We even brought back to you from the land of Canaan the silver we found in the mouths of our sacks. Why would we steal silver or gold from your master’s house?" + }, + { + "verseNum": 9, + "text": "If any of your servants is found to have it, he must die, and the rest will become slaves of my lord.”" + }, + { + "verseNum": 10, + "text": "“As you say,” replied the steward. “But only the one who is found with the cup will be my slave, and the rest of you shall be free of blame.”" + }, + { + "verseNum": 11, + "text": "So each one quickly lowered his sack to the ground and opened it." + }, + { + "verseNum": 12, + "text": "The steward searched, beginning with the oldest and ending with the youngest—and the cup was found in Benjamin’s sack." + }, + { + "verseNum": 13, + "text": "Then they all tore their clothes, loaded their donkeys, and returned to the city." + }, + { + "verseNum": 14, + "text": "When Judah and his brothers arrived at Joseph’s house, he was still there, and they fell to the ground before him." + }, + { + "verseNum": 15, + "text": "“What is this deed you have done?” Joseph declared. “Do you not know that a man like me can surely divine the truth?”" + }, + { + "verseNum": 16, + "text": "“What can we say to my lord?” Judah replied. “How can we plead? How can we justify ourselves? God has exposed the iniquity of your servants. We are now my lord’s slaves—both we and the one who was found with the cup.”" + }, + { + "verseNum": 17, + "text": "But Joseph replied, “Far be it from me to do this. The man who was found with the cup will be my slave. The rest of you may return to your father in peace.”" + }, + { + "verseNum": 18, + "text": "Then Judah approached Joseph and said, “Sir, please let your servant speak personally to my lord. Do not be angry with your servant, for you are equal to Pharaoh himself." + }, + { + "verseNum": 19, + "text": "My lord asked his servants, ‘Do you have a father or a brother?’" + }, + { + "verseNum": 20, + "text": "And we answered, ‘We have an elderly father and a younger brother, the child of his old age. The boy’s brother is dead. He is the only one of his mother’s sons left, and his father loves him.’" + }, + { + "verseNum": 21, + "text": "Then you told your servants, ‘Bring him down to me so that I can see him for myself.’" + }, + { + "verseNum": 22, + "text": "So we said to my lord, ‘The boy cannot leave his father. If he were to leave, his father would die.’" + }, + { + "verseNum": 23, + "text": "But you said to your servants, ‘Unless your younger brother comes down with you, you will not see my face again.’" + }, + { + "verseNum": 24, + "text": "Now when we returned to your servant my father, we relayed your words to him." + }, + { + "verseNum": 25, + "text": "Then our father said, ‘Go back and buy us some food.’" + }, + { + "verseNum": 26, + "text": "But we answered, ‘We cannot go down there unless our younger brother goes with us. So if our younger brother is not with us, we cannot see the man.’" + }, + { + "verseNum": 27, + "text": "And your servant my father said to us, ‘You know that my wife bore me two sons." + }, + { + "verseNum": 28, + "text": "When one of them was gone, I said: “Surely he has been torn to pieces.” And I have not seen him since." + }, + { + "verseNum": 29, + "text": "Now if you also take this one from me and harm comes to him, you will bring my gray hair down to Sheol in sorrow.’" + }, + { + "verseNum": 30, + "text": "So if the boy is not with us when I return to your servant, and if my father, whose life is wrapped up in the boy’s life," + }, + { + "verseNum": 31, + "text": "sees that the boy is not with us, he will die. Then your servants will have brought the gray hair of your servant our father down to Sheol in sorrow." + }, + { + "verseNum": 32, + "text": "Indeed, your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my life.’" + }, + { + "verseNum": 33, + "text": "Now please let your servant stay here as my lord’s slave in place of the boy. Let him return with his brothers." + }, + { + "verseNum": 34, + "text": "For how can I go back to my father without the boy? I could not bear to see the misery that would overwhelm him.”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!”\n \nSo none of them were with Joseph when he made himself known to his brothers." + }, + { + "verseNum": 2, + "text": "But he wept so loudly that the Egyptians heard him, and Pharaoh’s household soon heard of it." + }, + { + "verseNum": 3, + "text": "Joseph said to his brothers, “I am Joseph! Is my father still alive?”\n \nBut they were unable to answer him, because they were terrified in his presence." + }, + { + "verseNum": 4, + "text": "Then Joseph said to his brothers, “Please come near me.” And they did so.\n \n“I am Joseph, your brother,” he said, “the one you sold into Egypt!" + }, + { + "verseNum": 5, + "text": "And now, do not be distressed or angry with yourselves that you sold me into this place, because it was to save lives that God sent me before you." + }, + { + "verseNum": 6, + "text": "For the famine has covered the land these two years, and there will be five more years without plowing or harvesting." + }, + { + "verseNum": 7, + "text": "God sent me before you to preserve you as a remnant on the earth and to save your lives by a great deliverance." + }, + { + "verseNum": 8, + "text": "Therefore it was not you who sent me here, but God, who has made me a father to Pharaoh—lord of all his household and ruler over all the land of Egypt." + }, + { + "verseNum": 9, + "text": "Now return quickly to my father and tell him, ‘This is what your son Joseph says: God has made me lord of all Egypt. Come down to me without delay." + }, + { + "verseNum": 10, + "text": "You shall settle in the land of Goshen and be near me—you and your children and grandchildren, your flocks and herds, and everything you own." + }, + { + "verseNum": 11, + "text": "And there I will provide for you, because there will be five more years of famine. Otherwise, you and your household and everything you own will come to destitution.’" + }, + { + "verseNum": 12, + "text": "Behold! You and my brother Benjamin can see that I, Joseph, am the one speaking with you." + }, + { + "verseNum": 13, + "text": "Tell my father about all my splendor in Egypt and everything you have seen. And bring my father down here quickly.”" + }, + { + "verseNum": 14, + "text": "Then Joseph threw his arms around his brother Benjamin and wept, and Benjamin wept as they embraced." + }, + { + "verseNum": 15, + "text": "Joseph kissed each of his brothers as he wept over them. And afterward his brothers talked with him." + }, + { + "verseNum": 16, + "text": "When the news reached Pharaoh’s house that Joseph’s brothers had come, Pharaoh and his servants were pleased." + }, + { + "verseNum": 17, + "text": "Pharaoh said to Joseph, “Tell your brothers, ‘Do as follows: Load your animals and return to the land of Canaan." + }, + { + "verseNum": 18, + "text": "Then bring your father and your families and return to me. I will give you the best of the land of Egypt, and you shall eat from the fat of the land.’" + }, + { + "verseNum": 19, + "text": "You are also directed to tell them: ‘Take wagons from the land of Egypt for your young children and your wives, and bring your father and come back." + }, + { + "verseNum": 20, + "text": "But pay no regard to your belongings, for the best of all the land of Egypt is yours.’”" + }, + { + "verseNum": 21, + "text": "So the sons of Israel did as they were told. Joseph gave them wagons as Pharaoh had instructed, and he also gave them provisions for their journey." + }, + { + "verseNum": 22, + "text": "He gave new garments to each of them, but to Benjamin he gave three hundred shekels of silver and five sets of clothes." + }, + { + "verseNum": 23, + "text": "And he sent to his father the following: ten donkeys loaded with the best of Egypt, and ten female donkeys loaded with grain and bread and provisions for his father’s journey." + }, + { + "verseNum": 24, + "text": "Then Joseph sent his brothers on their way, and as they were leaving, he said to them, “Do not quarrel on the way!”" + }, + { + "verseNum": 25, + "text": "So the brothers went up out of Egypt and came to their father Jacob in the land of Canaan." + }, + { + "verseNum": 26, + "text": "“Joseph is still alive,” they said, “and he is ruler over all the land of Egypt!”\n \nBut Jacob was stunned, for he did not believe them." + }, + { + "verseNum": 27, + "text": "However, when they relayed all that Joseph had told them, and when he saw the wagons that Joseph had sent to carry him back, the spirit of their father Jacob was revived." + }, + { + "verseNum": 28, + "text": "“Enough!” declared Israel. “My son Joseph is still alive! I will go to see him before I die.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "So Israel set out with all that he had, and when he came to Beersheba, he offered sacrifices to the God of his father Isaac." + }, + { + "verseNum": 2, + "text": "And that night God spoke to Israel in a vision: “Jacob, Jacob!” He said.\n \n“Here I am,” replied Jacob." + }, + { + "verseNum": 3, + "text": "“I am God,” He said, “the God of your father. Do not be afraid to go down to Egypt, for I will make you into a great nation there." + }, + { + "verseNum": 4, + "text": "I will go down with you to Egypt, and I will surely bring you back. And Joseph’s own hands will close your eyes.”" + }, + { + "verseNum": 5, + "text": "Then Jacob departed from Beersheba, and the sons of Israel took their father Jacob in the wagons Pharaoh had sent to carry him, along with their children and wives." + }, + { + "verseNum": 6, + "text": "They also took the livestock and possessions they had acquired in the land of Canaan, and Jacob and all his offspring went to Egypt." + }, + { + "verseNum": 7, + "text": "Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaughters—all his offspring." + }, + { + "verseNum": 8, + "text": "Now these are the names of the sons of Israel (Jacob and his descendants) who went to Egypt: Reuben, Jacob’s firstborn." + }, + { + "verseNum": 9, + "text": "The sons of Reuben: Hanoch, Pallu, Hezron, and Carmi." + }, + { + "verseNum": 10, + "text": "The sons of Simeon: Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul the son of a Canaanite woman." + }, + { + "verseNum": 11, + "text": "The sons of Levi: Gershon, Kohath, and Merari." + }, + { + "verseNum": 12, + "text": "The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan.\n \n The sons of Perez: Hezron and Hamul." + }, + { + "verseNum": 13, + "text": "The sons of Issachar: Tola, Puvah, Job, and Shimron." + }, + { + "verseNum": 14, + "text": "The sons of Zebulun: Sered, Elon, and Jahleel." + }, + { + "verseNum": 15, + "text": "These are the sons of Leah born to Jacob in Paddan-aram, in addition to his daughter Dinah. The total number of sons and daughters was thirty-three." + }, + { + "verseNum": 16, + "text": "The sons of Gad: Ziphion, Haggi, Shuni, Ezbon, Eri, Arodi, and Areli." + }, + { + "verseNum": 17, + "text": "The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah.\n \n The sons of Beriah: Heber and Malchiel." + }, + { + "verseNum": 18, + "text": "These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter Leah—sixteen in all." + }, + { + "verseNum": 19, + "text": "The sons of Jacob’s wife Rachel: Joseph and Benjamin." + }, + { + "verseNum": 20, + "text": "Manasseh and Ephraim were born to Joseph in the land of Egypt by Asenath daughter of Potiphera, priest of On." + }, + { + "verseNum": 21, + "text": "The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, Huppim, and Ard." + }, + { + "verseNum": 22, + "text": "These are the sons of Rachel born to Jacob—fourteen in all." + }, + { + "verseNum": 23, + "text": "The son of Dan: Hushim." + }, + { + "verseNum": 24, + "text": "The sons of Naphtali: Jahzeel, Guni, Jezer, and Shillem." + }, + { + "verseNum": 25, + "text": "These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all." + }, + { + "verseNum": 26, + "text": "All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives of Jacob’s sons—numbered sixty-six persons." + }, + { + "verseNum": 27, + "text": "And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family who went to Egypt were seventy in all." + }, + { + "verseNum": 28, + "text": "Now Jacob had sent Judah ahead of him to Joseph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen," + }, + { + "verseNum": 29, + "text": "Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, embraced him, and wept profusely." + }, + { + "verseNum": 30, + "text": "Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you are still alive!”" + }, + { + "verseNum": 31, + "text": "Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the land of Canaan have come to me." + }, + { + "verseNum": 32, + "text": "The men are shepherds; they raise livestock, and they have brought their flocks and herds and all that they own.’" + }, + { + "verseNum": 33, + "text": "When Pharaoh summons you and asks, ‘What is your occupation?’" + }, + { + "verseNum": 34, + "text": "you are to say, ‘Your servants have raised livestock ever since our youth—both we and our fathers.’ Then you will be allowed to settle in the land of Goshen, since all shepherds are detestable to the Egyptians.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "So Joseph went and told Pharaoh: “My father and my brothers, with their flocks and herds and all they own, have come from the land of Canaan and are now in Goshen.”" + }, + { + "verseNum": 2, + "text": "And he chose five of his brothers and presented them before Pharaoh." + }, + { + "verseNum": 3, + "text": "“What is your occupation?” Pharaoh asked Joseph’s brothers.\n \n“Your servants are shepherds,” they replied, “both we and our fathers.”" + }, + { + "verseNum": 4, + "text": "Then they said to Pharaoh, “We have come to live in the land for a time, because there is no pasture for the flocks of your servants, since the famine in the land of Canaan has been severe. So now, please allow your servants to settle in the land of Goshen.”" + }, + { + "verseNum": 5, + "text": "Pharaoh said to Joseph, “Now that your father and brothers have come to you," + }, + { + "verseNum": 6, + "text": "the land of Egypt is before you; settle your father and brothers in the best part of the land. They may dwell in the land of Goshen. And if you know of any talented men among them, put them in charge of my own livestock.”" + }, + { + "verseNum": 7, + "text": "Then Joseph brought in his father Jacob and presented him before Pharaoh, and Jacob blessed Pharaoh." + }, + { + "verseNum": 8, + "text": "“How many years have you lived?” Pharaoh asked." + }, + { + "verseNum": 9, + "text": "“My travels have lasted 130 years,” Jacob replied. “My years have been few and hard, and they have not matched the years of the travels of my fathers.”" + }, + { + "verseNum": 10, + "text": "Then Jacob blessed Pharaoh and departed from his presence." + }, + { + "verseNum": 11, + "text": "So Joseph settled his father and brothers in the land of Egypt and gave them property in the best part of the land, the district of Rameses, as Pharaoh had commanded." + }, + { + "verseNum": 12, + "text": "Joseph also provided his father and brothers and all his father’s household with food for their families." + }, + { + "verseNum": 13, + "text": "There was no food, however, in all that region, because the famine was so severe; the lands of Egypt and Canaan had been exhausted by the famine." + }, + { + "verseNum": 14, + "text": "Joseph collected all the money to be found in the land of Egypt and the land of Canaan in exchange for the grain they were buying, and he brought it into Pharaoh’s palace." + }, + { + "verseNum": 15, + "text": "When the money from the lands of Egypt and Canaan was gone, all the Egyptians came to Joseph and said, “Give us food. Why should we die before your eyes? For our funds have run out!”" + }, + { + "verseNum": 16, + "text": "“Then bring me your livestock,” said Joseph. “Since the money is gone, I will sell you food in exchange for your livestock.”" + }, + { + "verseNum": 17, + "text": "So they brought their livestock to Joseph, and he gave them food in exchange for their horses, their flocks and herds, and their donkeys. Throughout that year he provided them with food in exchange for all their livestock." + }, + { + "verseNum": 18, + "text": "When that year was over, they came to him the second year and said, “We cannot hide from our lord that our money is gone and all our livestock belongs to you. There is nothing left for our lord except our bodies and our land." + }, + { + "verseNum": 19, + "text": "Why should we perish before your eyes—we and our land as well? Purchase us and our land in exchange for food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not die, and that the land may not become desolate.”" + }, + { + "verseNum": 20, + "text": "So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. The land became Pharaoh’s," + }, + { + "verseNum": 21, + "text": "and Joseph reduced the people to servitude from one end of Egypt to the other." + }, + { + "verseNum": 22, + "text": "However, he did not acquire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not sell their land." + }, + { + "verseNum": 23, + "text": "Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this day, here is seed for you to sow in the land." + }, + { + "verseNum": 24, + "text": "At harvest time, you are to give a fifth of it to Pharaoh, and four-fifths will be yours as seed for the field and food for yourselves and your households and children.”" + }, + { + "verseNum": 25, + "text": "“You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be Pharaoh’s servants.”" + }, + { + "verseNum": 26, + "text": "So Joseph established a law that a fifth of the produce belongs to Pharaoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to Pharaoh." + }, + { + "verseNum": 27, + "text": "Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly in number." + }, + { + "verseNum": 28, + "text": "And Jacob lived in the land of Egypt seventeen years, and the length of his life was 147 years." + }, + { + "verseNum": 29, + "text": "When the time drew near for Israel to die, he called his son Joseph and said to him, “If I have found favor in your eyes, put your hand under my thigh and promise to show me kindness and faithfulness. Do not bury me in Egypt," + }, + { + "verseNum": 30, + "text": "but when I lie down with my fathers, carry me out of Egypt and bury me with them.”\n \nJoseph answered, “I will do as you have requested.”" + }, + { + "verseNum": 31, + "text": "“Swear to me,” Jacob said.\n \nSo Joseph swore to him, and Israel bowed in worship at the head of his bed." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Some time later Joseph was told, “Your father is ill.” So he set out with his two sons, Manasseh and Ephraim." + }, + { + "verseNum": 2, + "text": "When Jacob was told, “Your son Joseph has come to you,” Israel rallied his strength and sat up in bed." + }, + { + "verseNum": 3, + "text": "Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me" + }, + { + "verseNum": 4, + "text": "and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting possession.’" + }, + { + "verseNum": 5, + "text": "And now your two sons born to you in Egypt before I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine." + }, + { + "verseNum": 6, + "text": "Any children born to you after them shall be yours, and they shall be called by the names of their brothers in the territory they inherit." + }, + { + "verseNum": 7, + "text": "Now as for me, when I was returning from Paddan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” (that is, Bethlehem)." + }, + { + "verseNum": 8, + "text": "When Israel saw the sons of Joseph, he asked, “Who are these?”" + }, + { + "verseNum": 9, + "text": "Joseph said to his father, “They are the sons God has given me in this place.”\n \nSo Jacob said, “Please bring them to me, that I may bless them.”" + }, + { + "verseNum": 10, + "text": "Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced them." + }, + { + "verseNum": 11, + "text": "“I never expected to see your face again,” Israel said to Joseph, “but now God has let me see your children as well.”" + }, + { + "verseNum": 12, + "text": "Then Joseph removed his sons from his father’s knees and bowed facedown." + }, + { + "verseNum": 13, + "text": "And Joseph took both of them—with Ephraim in his right hand toward Israel’s left hand, and Manasseh in his left hand toward Israel’s right hand—and brought them close to him." + }, + { + "verseNum": 14, + "text": "But Israel stretched out his right hand and put it on the head of Ephraim, the younger; and crossing his hands, he put his left on Manasseh’s head, although Manasseh was the firstborn." + }, + { + "verseNum": 15, + "text": "Then he blessed Joseph and said:\n \n “May the God before whom my fathers Abraham and Isaac walked,\n the God who has been my shepherd all my life to this day," + }, + { + "verseNum": 16, + "text": "the angel who has redeemed me from all harm—\n may He bless these boys.\n And may they be called by my name\n and the names of my fathers Abraham and Isaac,\n and may they grow into a multitude upon the earth.”" + }, + { + "verseNum": 17, + "text": "When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from Ephraim’s head to Manasseh’s." + }, + { + "verseNum": 18, + "text": "“Not so, my father!” Joseph said. “This one is the firstborn; put your right hand on his head.”" + }, + { + "verseNum": 19, + "text": "But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his offspring shall become a multitude of nations.”" + }, + { + "verseNum": 20, + "text": "So that day Jacob blessed them and said:\n \n “By you shall Israel pronounce this blessing:\n ‘May God make you like Ephraim and Manasseh.’”\n \nSo he put Ephraim before Manasseh." + }, + { + "verseNum": 21, + "text": "Then Israel said to Joseph, “Look, I am about to die, but God will be with you and bring you back to the land of your fathers." + }, + { + "verseNum": 22, + "text": "And to you, as one who is above your brothers, I give the ridge of land that I took from the Amorites with my sword and bow.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Then Jacob called for his sons and said, “Gather around so that I can tell you what will happen to you in the days to come:" + }, + { + "verseNum": 2, + "text": "Come together and listen, O sons of Jacob;\n listen to your father Israel." + }, + { + "verseNum": 3, + "text": "Reuben, you are my firstborn, my might,\n and the beginning of my strength,\n excelling in honor,\n excelling in power." + }, + { + "verseNum": 4, + "text": "Uncontrolled as the waters,\n you will no longer excel,\n because you went up to your father’s bed,\n onto my couch, and defiled it." + }, + { + "verseNum": 5, + "text": "Simeon and Levi are brothers;\n their swords are weapons of violence." + }, + { + "verseNum": 6, + "text": "May I never enter their council;\n may I never join their assembly.\n For they kill men in their anger,\n and hamstring oxen on a whim." + }, + { + "verseNum": 7, + "text": "Cursed be their anger, for it is strong,\n and their wrath, for it is cruel!\n I will disperse them in Jacob\n and scatter them in Israel." + }, + { + "verseNum": 8, + "text": "Judah, your brothers shall praise you.\n Your hand shall be on the necks of your enemies;\n your father’s sons shall bow down to you." + }, + { + "verseNum": 9, + "text": "Judah is a young lion—\n my son, you return from the prey.\n Like a lion he crouches and lies down;\n like a lioness, who dares to rouse him?" + }, + { + "verseNum": 10, + "text": "The scepter will not depart from Judah,\n nor the staff from between his feet,\n until Shiloh comes\n and the allegiance of the nations is his." + }, + { + "verseNum": 11, + "text": "He ties his donkey to the vine,\n his colt to the choicest branch.\n He washes his garments in wine,\n his robes in the blood of grapes." + }, + { + "verseNum": 12, + "text": "His eyes are darker than wine,\n and his teeth are whiter than milk." + }, + { + "verseNum": 13, + "text": "Zebulun shall dwell by the seashore\n and become a harbor for ships;\n his border shall extend to Sidon." + }, + { + "verseNum": 14, + "text": "Issachar is a strong donkey,\n lying down between the sheepfolds." + }, + { + "verseNum": 15, + "text": "He saw that his resting place was good\n and that his land was pleasant,\n so he bent his shoulder to the burden\n and submitted to labor as a servant." + }, + { + "verseNum": 16, + "text": "Dan shall provide justice for his people \n as one of the tribes of Israel." + }, + { + "verseNum": 17, + "text": "He will be a snake by the road,\n a viper in the path\n that bites the horse’s heels\n so that its rider tumbles backward." + }, + { + "verseNum": 18, + "text": "I await Your salvation, O LORD." + }, + { + "verseNum": 19, + "text": "Gad will be attacked by raiders,\n but he will attack their heels." + }, + { + "verseNum": 20, + "text": "Asher’s food will be rich;\n he shall provide royal delicacies." + }, + { + "verseNum": 21, + "text": "Naphtali is a doe set free\n that bears beautiful fawns." + }, + { + "verseNum": 22, + "text": "Joseph is a fruitful vine—\n a fruitful vine by a spring,\n whose branches scale the wall." + }, + { + "verseNum": 23, + "text": "The archers attacked him with bitterness;\n they aimed at him in hostility." + }, + { + "verseNum": 24, + "text": "Yet he steadied his bow,\n and his strong arms were tempered\n by the hands of the Mighty One of Jacob,\n in the name of the Shepherd, the Rock of Israel," + }, + { + "verseNum": 25, + "text": "by the God of your father who helps you,\n and by the Almighty who blesses you,\n with blessings of the heavens above,\n with blessings of the depths below,\n with blessings of the breasts and womb." + }, + { + "verseNum": 26, + "text": "The blessings of your father have surpassed\n the blessings of the ancient mountains \n and the bounty of the everlasting hills.\n May they rest on the head of Joseph,\n on the brow of the prince of his brothers." + }, + { + "verseNum": 27, + "text": "Benjamin is a ravenous wolf;\n in the morning he devours the prey,\n in the evening he divides the plunder.”" + }, + { + "verseNum": 28, + "text": "These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a suitable blessing." + }, + { + "verseNum": 29, + "text": "Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers in the cave in the field of Ephron the Hittite." + }, + { + "verseNum": 30, + "text": "The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 31, + "text": "There Abraham and his wife Sarah are buried, there Isaac and his wife Rebekah are buried, and there I buried Leah." + }, + { + "verseNum": 32, + "text": "The field and the cave that is in it were purchased from the Hittites.”" + }, + { + "verseNum": 33, + "text": "When Jacob had finished instructing his sons, he pulled his feet into the bed and breathed his last, and he was gathered to his people." + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Then Joseph fell upon his father’s face, wept over him, and kissed him." + }, + { + "verseNum": 2, + "text": "And Joseph directed the physicians in his service to embalm his father Israel. So they embalmed him," + }, + { + "verseNum": 3, + "text": "taking the forty days required to complete the embalming. And the Egyptians mourned for him seventy days." + }, + { + "verseNum": 4, + "text": "When the days of mourning had passed, Joseph said to Pharaoh’s court, “If I have found favor in your eyes, please tell Pharaoh that" + }, + { + "verseNum": 5, + "text": "my father made me swear an oath when he said, ‘I am about to die. You must bury me in the tomb that I dug for myself in the land of Canaan.’ Now let me go and bury my father, and then return.”" + }, + { + "verseNum": 6, + "text": "Pharaoh replied, “Go up and bury your father, as he made you swear to do.”" + }, + { + "verseNum": 7, + "text": "Then Joseph went to bury his father, and all the servants of Pharaoh accompanied him—the elders of Pharaoh’s household and all the elders of the land of Egypt—" + }, + { + "verseNum": 8, + "text": "along with all of Joseph’s household, and his brothers, and his father’s household. Only their children and flocks and herds were left in Goshen." + }, + { + "verseNum": 9, + "text": "Chariots and horsemen alike went up with him, and it was an exceedingly large procession." + }, + { + "verseNum": 10, + "text": "When they reached the threshing floor of Atad, which is across the Jordan, they lamented and wailed loudly, and Joseph mourned for his father seven days." + }, + { + "verseNum": 11, + "text": "When the Canaanites of the land saw the mourning at the threshing floor of Atad, they said, “This is a solemn ceremony of mourning by the Egyptians.” Thus the place across the Jordan is called Abel-mizraim." + }, + { + "verseNum": 12, + "text": "So Jacob’s sons did as he had charged them." + }, + { + "verseNum": 13, + "text": "They carried him to the land of Canaan and buried him in the cave at Machpelah in the field near Mamre, which Abraham had purchased from Ephron the Hittite as a burial site." + }, + { + "verseNum": 14, + "text": "After Joseph had buried his father, he returned to Egypt with his brothers and all who had gone with him to bury his father." + }, + { + "verseNum": 15, + "text": "When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the evil that we did to him.”" + }, + { + "verseNum": 16, + "text": "So they sent word to Joseph, saying, “Before he died, your father commanded," + }, + { + "verseNum": 17, + "text": "‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please forgive the transgression of the servants of the God of your father.”\n \nWhen their message came to him, Joseph wept." + }, + { + "verseNum": 18, + "text": "His brothers also came to him, bowed down before him, and said, “We are your slaves!”" + }, + { + "verseNum": 19, + "text": "But Joseph replied, “Do not be afraid. Am I in the place of God?" + }, + { + "verseNum": 20, + "text": "As for you, what you intended against me for evil, God intended for good, in order to accomplish a day like this—to preserve the lives of many people." + }, + { + "verseNum": 21, + "text": "Therefore do not be afraid. I will provide for you and your little ones.” So Joseph reassured his brothers and spoke kindly to them." + }, + { + "verseNum": 22, + "text": "Now Joseph and his father’s household remained in Egypt, and Joseph lived to the age of 110." + }, + { + "verseNum": 23, + "text": "He saw Ephraim’s sons to the third generation, and indeed the sons of Machir son of Manasseh were brought up on Joseph’s knees." + }, + { + "verseNum": 24, + "text": "Then Joseph said to his brothers, “I am about to die, but God will surely visit you and bring you up from this land to the land He promised on oath to Abraham, Isaac, and Jacob.”" + }, + { + "verseNum": 25, + "text": "And Joseph made the sons of Israel take an oath and said, “God will surely attend to you, and then you must carry my bones up from this place.”" + }, + { + "verseNum": 26, + "text": "So Joseph died at the age of 110. And they embalmed his body and placed it in a coffin in Egypt." + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These are the names of the sons of Israel who went to Egypt with Jacob, each with his family:" + }, + { + "verseNum": 2, + "text": "Reuben, Simeon, Levi, and Judah;" + }, + { + "verseNum": 3, + "text": "Issachar, Zebulun, and Benjamin;" + }, + { + "verseNum": 4, + "text": "Dan and Naphtali;\n \n Gad and Asher." + }, + { + "verseNum": 5, + "text": "The descendants of Jacob numbered seventy in all, including Joseph, who was already in Egypt." + }, + { + "verseNum": 6, + "text": "Now Joseph and all his brothers and all that generation died," + }, + { + "verseNum": 7, + "text": "but the Israelites were fruitful and increased rapidly; they multiplied and became exceedingly numerous, so that the land was filled with them." + }, + { + "verseNum": 8, + "text": "Then a new king, who did not know Joseph, came to power in Egypt." + }, + { + "verseNum": 9, + "text": "“Look,” he said to his people, “the Israelites have become too numerous and too powerful for us." + }, + { + "verseNum": 10, + "text": "Come, let us deal shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the country.”" + }, + { + "verseNum": 11, + "text": "So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as store cities for Pharaoh." + }, + { + "verseNum": 12, + "text": "But the more they were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Israelites." + }, + { + "verseNum": 13, + "text": "They worked the Israelites ruthlessly" + }, + { + "verseNum": 14, + "text": "and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the fields. Every service they imposed was harsh." + }, + { + "verseNum": 15, + "text": "Then the king of Egypt said to the Hebrew midwives, whose names were Shiphrah and Puah," + }, + { + "verseNum": 16, + "text": "“When you help the Hebrew women give birth, observe them on the birthstools. If the child is a son, kill him; but if it is a daughter, let her live.”" + }, + { + "verseNum": 17, + "text": "The midwives, however, feared God and did not do as the king of Egypt had instructed; they let the boys live." + }, + { + "verseNum": 18, + "text": "So the king of Egypt summoned the midwives and asked them, “Why have you done this? Why have you let the boys live?”" + }, + { + "verseNum": 19, + "text": "The midwives answered Pharaoh, “The Hebrew women are not like the Egyptian women, for they are vigorous and give birth before a midwife arrives.”" + }, + { + "verseNum": 20, + "text": "So God was good to the midwives, and the people multiplied and became even more numerous." + }, + { + "verseNum": 21, + "text": "And because the midwives feared God, He gave them families of their own." + }, + { + "verseNum": 22, + "text": "Then Pharaoh commanded all his people: “Every son born to the Hebrews you must throw into the Nile, but every daughter you may allow to live.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now a man of the house of Levi married a daughter of Levi," + }, + { + "verseNum": 2, + "text": "and she conceived and gave birth to a son. When she saw that he was a beautiful child, she hid him for three months." + }, + { + "verseNum": 3, + "text": "But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and set it among the reeds along the bank of the Nile." + }, + { + "verseNum": 4, + "text": "And his sister stood at a distance to see what would happen to him." + }, + { + "verseNum": 5, + "text": "Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walking along the riverbank. And when she saw the basket among the reeds, she sent her maidservant to retrieve it." + }, + { + "verseNum": 6, + "text": "When she opened it, she saw the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.”" + }, + { + "verseNum": 7, + "text": "Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to nurse the child for you?”" + }, + { + "verseNum": 8, + "text": "“Go ahead,” Pharaoh’s daughter told her. And the girl went and called the boy’s mother." + }, + { + "verseNum": 9, + "text": "Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” So the woman took the boy and nursed him." + }, + { + "verseNum": 10, + "text": "When the child had grown older, she brought him to Pharaoh’s daughter, and he became her son. She named him Moses and explained, “I drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "One day, after Moses had grown up, he went out to his own people and observed their hard labor. He saw an Egyptian beating a Hebrew, one of his own people." + }, + { + "verseNum": 12, + "text": "After looking this way and that and seeing no one, he struck down the Egyptian and hid his body in the sand." + }, + { + "verseNum": 13, + "text": "The next day Moses went out and saw two Hebrews fighting. He asked the one in the wrong, “Why are you attacking your companion?”" + }, + { + "verseNum": 14, + "text": "But the man replied, “Who made you ruler and judge over us? Are you planning to kill me as you killed the Egyptian?”\n \nThen Moses was afraid and thought, “This thing I have done has surely become known.”" + }, + { + "verseNum": 15, + "text": "When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Pharaoh and settled in the land of Midian, where he sat down beside a well." + }, + { + "verseNum": 16, + "text": "Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs to water their father’s flock." + }, + { + "verseNum": 17, + "text": "And when some shepherds came along and drove them away, Moses rose up to help them and watered their flock." + }, + { + "verseNum": 18, + "text": "When the daughters returned to their father Reuel, he asked them, “Why have you returned so early today?”" + }, + { + "verseNum": 19, + "text": "“An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and watered the flock.”" + }, + { + "verseNum": 20, + "text": "“So where is he?” their father asked. “Why did you leave the man behind? Invite him to have something to eat.”" + }, + { + "verseNum": 21, + "text": "Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in marriage." + }, + { + "verseNum": 22, + "text": "And she gave birth to a son, and Moses named him Gershom, saying, “I have become a foreigner in a foreign land.”" + }, + { + "verseNum": 23, + "text": "After a long time, the king of Egypt died. The Israelites groaned and cried out under their burden of slavery, and their cry for deliverance from bondage ascended to God." + }, + { + "verseNum": 24, + "text": "So God heard their groaning, and He remembered His covenant with Abraham, Isaac, and Jacob." + }, + { + "verseNum": 25, + "text": "God saw the Israelites and took notice." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the wilderness and came to Horeb, the mountain of God." + }, + { + "verseNum": 2, + "text": "There the angel of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not consumed." + }, + { + "verseNum": 3, + "text": "So Moses thought, “I must go over and see this marvelous sight. Why is the bush not burning up?”" + }, + { + "verseNum": 4, + "text": "When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!”\n \n“Here I am,” he answered." + }, + { + "verseNum": 5, + "text": "“Do not come any closer,” God said. “Take off your sandals, for the place where you are standing is holy ground.”" + }, + { + "verseNum": 6, + "text": "Then He said, “I am the God of your father, the God of Abraham, the God of Isaac, and the God of Jacob.”\n \nAt this, Moses hid his face, for he was afraid to look at God." + }, + { + "verseNum": 7, + "text": "The LORD said, “I have indeed seen the affliction of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings." + }, + { + "verseNum": 8, + "text": "I have come down to rescue them from the hand of the Egyptians and to bring them up out of that land to a good and spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 9, + "text": "And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them." + }, + { + "verseNum": 10, + "text": "Therefore, go! I am sending you to Pharaoh to bring My people the Israelites out of Egypt.”" + }, + { + "verseNum": 11, + "text": "But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of Egypt?”" + }, + { + "verseNum": 12, + "text": "“I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of you will worship God on this mountain.”" + }, + { + "verseNum": 13, + "text": "Then Moses asked God, “Suppose I go to the Israelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His name?’ What should I tell them?”" + }, + { + "verseNum": 14, + "text": "God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has sent me to you.’”" + }, + { + "verseNum": 15, + "text": "God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every generation." + }, + { + "verseNum": 16, + "text": "Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me and said: I have surely attended to you and have seen what has been done to you in Egypt." + }, + { + "verseNum": 17, + "text": "And I have promised to bring you up out of your affliction in Egypt, into the land of the Canaanites, Hittites, Amorites, Perizzites, Hivites, and Jebusites—a land flowing with milk and honey.’" + }, + { + "verseNum": 18, + "text": "The elders of Israel will listen to what you say, and you must go with them to the king of Egypt and tell him, ‘The LORD, the God of the Hebrews, has met with us. Now please let us take a three-day journey into the wilderness, so that we may sacrifice to the LORD our God.’" + }, + { + "verseNum": 19, + "text": "But I know that the king of Egypt will not allow you to go unless a mighty hand compels him." + }, + { + "verseNum": 20, + "text": "So I will stretch out My hand and strike the Egyptians with all the wonders I will perform among them. And after that, he will release you." + }, + { + "verseNum": 21, + "text": "And I will grant this people such favor in the sight of the Egyptians that when you leave, you will not go away empty-handed." + }, + { + "verseNum": 22, + "text": "Every woman shall ask her neighbor and any woman staying in her house for silver and gold jewelry and clothing, and you will put them on your sons and daughters. So you will plunder the Egyptians.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses answered, “What if they do not believe me or listen to my voice? For they may say, ‘The LORD has not appeared to you.’”" + }, + { + "verseNum": 2, + "text": "And the LORD asked him, “What is that in your hand?”\n \n“A staff,” he replied." + }, + { + "verseNum": 3, + "text": "“Throw it on the ground,” said the LORD. So Moses threw it on the ground, and it became a snake, and he ran from it." + }, + { + "verseNum": 4, + "text": "“Stretch out your hand and grab it by the tail,” the LORD said to Moses, who reached out his hand and caught the snake, and it turned back into a staff in his hand." + }, + { + "verseNum": 5, + "text": "“This is so that they may believe that the LORD, the God of their fathers—the God of Abraham, the God of Isaac, and the God of Jacob—has appeared to you.”" + }, + { + "verseNum": 6, + "text": "Furthermore, the LORD said to Moses, “Put your hand inside your cloak.” So he put his hand inside his cloak, and when he took it out, his hand was leprous, white as snow." + }, + { + "verseNum": 7, + "text": "“Put your hand back inside your cloak,” said the LORD.\n \nSo Moses put his hand back inside his cloak, and when he took it out, it was restored, like the rest of his skin." + }, + { + "verseNum": 8, + "text": "And the LORD said, “If they refuse to believe you or heed the witness of the first sign, they may believe that of the second." + }, + { + "verseNum": 9, + "text": "But if they do not believe even these two signs or listen to your voice, take some water from the Nile and pour it on the dry ground. Then the water you take from the Nile will become blood on the ground.”" + }, + { + "verseNum": 10, + "text": "“Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of speech and tongue.”" + }, + { + "verseNum": 11, + "text": "And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD?" + }, + { + "verseNum": 12, + "text": "Now go! I will help you as you speak, and I will teach you what to say.”" + }, + { + "verseNum": 13, + "text": "But Moses replied, “Please, Lord, send someone else.”" + }, + { + "verseNum": 14, + "text": "Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart." + }, + { + "verseNum": 15, + "text": "You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do." + }, + { + "verseNum": 16, + "text": "He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him." + }, + { + "verseNum": 17, + "text": "But take this staff in your hand so you can perform signs with it.”" + }, + { + "verseNum": 18, + "text": "Then Moses went back to his father-in-law Jethro and said to him, “Please let me return to my brothers in Egypt to see if they are still alive.”\n \n“Go in peace,” Jethro replied." + }, + { + "verseNum": 19, + "text": "Now the LORD had said to Moses in Midian, “Go back to Egypt, for all the men who sought to kill you are dead.”" + }, + { + "verseNum": 20, + "text": "So Moses took his wife and sons, put them on a donkey, and headed back to Egypt. And he took the staff of God in his hand." + }, + { + "verseNum": 21, + "text": "The LORD instructed Moses, “When you go back to Egypt, see that you perform before Pharaoh all the wonders that I have put within your power. But I will harden his heart so that he will not let the people go." + }, + { + "verseNum": 22, + "text": "Then tell Pharaoh that this is what the LORD says: ‘Israel is My firstborn son," + }, + { + "verseNum": 23, + "text": "and I told you to let My son go so that he may worship Me. But since you have refused to let him go, behold, I will kill your firstborn son!’”" + }, + { + "verseNum": 24, + "text": "Now at a lodging place along the way, the LORD met Moses and was about to kill him." + }, + { + "verseNum": 25, + "text": "But Zipporah took a flint knife, cut off her son’s foreskin, and touched it to Moses’ feet. “Surely you are a bridegroom of blood to me,” she said." + }, + { + "verseNum": 26, + "text": "So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the circumcision.)" + }, + { + "verseNum": 27, + "text": "Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed him." + }, + { + "verseNum": 28, + "text": "And Moses told Aaron everything the LORD had sent him to say, and all the signs He had commanded him to perform." + }, + { + "verseNum": 29, + "text": "Then Moses and Aaron went and assembled all the elders of the Israelites," + }, + { + "verseNum": 30, + "text": "and Aaron relayed everything the LORD had said to Moses.\n \nAnd Moses performed the signs before the people," + }, + { + "verseNum": 31, + "text": "and they believed. And when they heard that the LORD had attended to the Israelites and had seen their affliction, they bowed down and worshiped." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After that, Moses and Aaron went to Pharaoh and said, “This is what the LORD, the God of Israel, says: ‘Let My people go, so that they may hold a feast to Me in the wilderness.’”" + }, + { + "verseNum": 2, + "text": "But Pharaoh replied, “Who is the LORD that I should obey His voice and let Israel go? I do not know the LORD, and I will not let Israel go.”" + }, + { + "verseNum": 3, + "text": "“The God of the Hebrews has met with us,” they answered. “Please let us go on a three-day journey into the wilderness to sacrifice to the LORD our God, or He may strike us with plagues or with the sword.”" + }, + { + "verseNum": 4, + "text": "But the king of Egypt said to them, “Moses and Aaron, why do you draw the people away from their work? Get back to your labor!”" + }, + { + "verseNum": 5, + "text": "Pharaoh also said, “Look, the people of the land are now numerous, and you would be stopping them from their labor.”" + }, + { + "verseNum": 6, + "text": "That same day Pharaoh commanded the taskmasters of the people and their foremen:" + }, + { + "verseNum": 7, + "text": "“You shall no longer supply the people with straw for making bricks. They must go and gather their own straw." + }, + { + "verseNum": 8, + "text": "But require of them the same quota of bricks as before; do not reduce it. For they are lazy; that is why they are crying out, ‘Let us go and sacrifice to our God.’" + }, + { + "verseNum": 9, + "text": "Make the work harder on the men so they will be occupied and pay no attention to these lies.”" + }, + { + "verseNum": 10, + "text": "So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh says: ‘I am no longer giving you straw." + }, + { + "verseNum": 11, + "text": "Go and get your own straw wherever you can find it; but your workload will in no way be reduced.’”" + }, + { + "verseNum": 12, + "text": "So the people scattered all over the land of Egypt to gather stubble for straw." + }, + { + "verseNum": 13, + "text": "The taskmasters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was provided.”" + }, + { + "verseNum": 14, + "text": "Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you did before?”" + }, + { + "verseNum": 15, + "text": "So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way?" + }, + { + "verseNum": 16, + "text": "No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is with your own people.”" + }, + { + "verseNum": 17, + "text": "“You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sacrifice to the LORD.’" + }, + { + "verseNum": 18, + "text": "Now get to work. You will be given no straw, yet you must deliver the full quota of bricks.”" + }, + { + "verseNum": 19, + "text": "The Israelite foremen realized they were in trouble when they were told, “You must not reduce your daily quota of bricks.”" + }, + { + "verseNum": 20, + "text": "When they left Pharaoh, they confronted Moses and Aaron, who stood waiting to meet them." + }, + { + "verseNum": 21, + "text": "“May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you have placed in their hand a sword to kill us!”" + }, + { + "verseNum": 22, + "text": "So Moses returned to the LORD and asked, “Lord, why have You brought trouble upon this people? Is this why You sent me?" + }, + { + "verseNum": 23, + "text": "Ever since I went to Pharaoh to speak in Your name, he has brought trouble on this people, and You have not delivered Your people in any way.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "But the LORD said to Moses, “Now you will see what I will do to Pharaoh, for because of My mighty hand he will let the people go; because of My strong hand he will drive them out of his land.”" + }, + { + "verseNum": 2, + "text": "God also told Moses, “I am the LORD." + }, + { + "verseNum": 3, + "text": "I appeared to Abraham, to Isaac, and to Jacob as God Almighty, but by My name the LORD I did not make Myself known to them." + }, + { + "verseNum": 4, + "text": "I also established My covenant with them to give them the land of Canaan, the land where they lived as foreigners." + }, + { + "verseNum": 5, + "text": "Furthermore, I have heard the groaning of the Israelites, whom the Egyptians are enslaving, and I have remembered My covenant." + }, + { + "verseNum": 6, + "text": "Therefore tell the Israelites: ‘I am the LORD, and I will bring you out from under the yoke of the Egyptians and deliver you from their bondage. I will redeem you with an outstretched arm and with mighty acts of judgment." + }, + { + "verseNum": 7, + "text": "I will take you as My own people, and I will be your God. Then you will know that I am the LORD your God, who brought you out from under the yoke of the Egyptians." + }, + { + "verseNum": 8, + "text": "And I will bring you into the land that I swore to give to Abraham, Isaac, and Jacob. I will give it to you as a possession. I am the LORD!’”" + }, + { + "verseNum": 9, + "text": "Moses relayed this message to the Israelites, but on account of their broken spirit and cruel bondage, they did not listen to him." + }, + { + "verseNum": 10, + "text": "So the LORD said to Moses," + }, + { + "verseNum": 11, + "text": "“Go and tell Pharaoh king of Egypt to let the Israelites go out of his land.”" + }, + { + "verseNum": 12, + "text": "But in the LORD’s presence Moses replied, “If the Israelites will not listen to me, then why would Pharaoh listen to me, since I am unskilled in speech?”" + }, + { + "verseNum": 13, + "text": "Then the LORD spoke to Moses and Aaron and gave them a charge concerning both the Israelites and Pharaoh king of Egypt, to bring the Israelites out of the land of Egypt." + }, + { + "verseNum": 14, + "text": "These were the heads of their fathers’ houses:\n \n The sons of Reuben, the firstborn of Israel, were Hanoch and Pallu, Hezron and Carmi. These were the clans of Reuben." + }, + { + "verseNum": 15, + "text": "The sons of Simeon were Jemuel, Jamin, Ohad, Jachin, Zohar, and Shaul, the son of a Canaanite woman. These were the clans of Simeon." + }, + { + "verseNum": 16, + "text": "These were the names of the sons of Levi according to their records: Gershon, Kohath, and Merari. Levi lived 137 years." + }, + { + "verseNum": 17, + "text": "The sons of Gershon were Libni and Shimei, by their clans." + }, + { + "verseNum": 18, + "text": "The sons of Kohath were Amram, Izhar, Hebron, and Uzziel. Kohath lived 133 years." + }, + { + "verseNum": 19, + "text": "The sons of Merari were Mahli and Mushi.\n \n These were the clans of the Levites according to their records." + }, + { + "verseNum": 20, + "text": "And Amram married his father’s sister Jochebed, and she bore him Aaron and Moses. Amram lived 137 years." + }, + { + "verseNum": 21, + "text": "The sons of Izhar were Korah, Nepheg, and Zichri." + }, + { + "verseNum": 22, + "text": "The sons of Uzziel were Mishael, Elzaphan, and Sithri." + }, + { + "verseNum": 23, + "text": "And Aaron married Elisheba, the daughter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar and Ithamar." + }, + { + "verseNum": 24, + "text": "The sons of Korah were Assir, Elkanah, and Abiasaph. These were the clans of the Korahites." + }, + { + "verseNum": 25, + "text": "Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas.\n \n These were the heads of the Levite families by their clans." + }, + { + "verseNum": 26, + "text": "It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.”" + }, + { + "verseNum": 27, + "text": "Moses and Aaron were the ones who spoke to Pharaoh king of Egypt in order to bring the Israelites out of Egypt." + }, + { + "verseNum": 28, + "text": "Now on the day that the LORD spoke to Moses in Egypt," + }, + { + "verseNum": 29, + "text": "He said to him, “I am the LORD; tell Pharaoh king of Egypt everything I say to you.”" + }, + { + "verseNum": 30, + "text": "But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would Pharaoh listen to me?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The LORD answered Moses, “See, I have made you like God to Pharaoh, and your brother Aaron will be your prophet." + }, + { + "verseNum": 2, + "text": "You are to speak all that I command you, and your brother Aaron is to tell Pharaoh to let the Israelites go out of his land." + }, + { + "verseNum": 3, + "text": "But I will harden Pharaoh’s heart, and though I will multiply My signs and wonders in the land of Egypt," + }, + { + "verseNum": 4, + "text": "Pharaoh will not listen to you.\n \nThen I will lay My hand on Egypt, and by mighty acts of judgment I will bring the divisions of My people the Israelites out of the land of Egypt." + }, + { + "verseNum": 5, + "text": "And the Egyptians will know that I am the LORD, when I stretch out My hand against Egypt and bring the Israelites out from among them.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron did just as the LORD had commanded them." + }, + { + "verseNum": 7, + "text": "Moses was eighty years old and Aaron was eighty-three when they spoke to Pharaoh." + }, + { + "verseNum": 8, + "text": "The LORD said to Moses and Aaron," + }, + { + "verseNum": 9, + "text": "“When Pharaoh tells you, ‘Perform a miracle,’ you are to say to Aaron, ‘Take your staff and throw it down before Pharaoh,’ and it will become a serpent.”" + }, + { + "verseNum": 10, + "text": "So Moses and Aaron went to Pharaoh and did just as the LORD had commanded. Aaron threw his staff down before Pharaoh and his officials, and it became a serpent." + }, + { + "verseNum": 11, + "text": "But Pharaoh called the wise men and sorcerers and magicians of Egypt, and they also did the same things by their magic arts." + }, + { + "verseNum": 12, + "text": "Each one threw down his staff, and it became a serpent. But Aaron’s staff swallowed up the other staffs." + }, + { + "verseNum": 13, + "text": "Still, Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Pharaoh’s heart is unyielding; he refuses to let the people go." + }, + { + "verseNum": 15, + "text": "Go to Pharaoh in the morning as you see him walking out to the water. Wait on the bank of the Nile to meet him, and take in your hand the staff that was changed into a snake." + }, + { + "verseNum": 16, + "text": "Then say to him, ‘The LORD, the God of the Hebrews, has sent me to tell you: Let My people go, so that they may worship Me in the wilderness. But you have not listened until now." + }, + { + "verseNum": 17, + "text": "This is what the LORD says: By this you will know that I am the LORD. Behold, with the staff in my hand I will strike the water of the Nile, and it will turn to blood." + }, + { + "verseNum": 18, + "text": "The fish in the Nile will die, the river will stink, and the Egyptians will be unable to drink its water.’”" + }, + { + "verseNum": 19, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the waters of Egypt—over their rivers and canals and ponds and reservoirs—that they may become blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and stone.”" + }, + { + "verseNum": 20, + "text": "Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to blood." + }, + { + "verseNum": 21, + "text": "The fish in the Nile died, and the river smelled so bad that the Egyptians could not drink its water. And there was blood throughout the land of Egypt." + }, + { + "verseNum": 22, + "text": "But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hardened, and he would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 23, + "text": "Instead, Pharaoh turned around, went into his palace, and did not take any of this to heart." + }, + { + "verseNum": 24, + "text": "So all the Egyptians dug around the Nile for water to drink, because they could not drink the water from the river." + }, + { + "verseNum": 25, + "text": "And seven full days passed after the LORD had struck the Nile." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you refuse to let them go, I will plague your whole country with frogs." + }, + { + "verseNum": 3, + "text": "The Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your officials and your people, and into your ovens and kneading bowls." + }, + { + "verseNum": 4, + "text": "The frogs will come up on you and your people and all your officials.’”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Tell Aaron, ‘Stretch out your hand with your staff over the rivers and canals and ponds, and cause the frogs to come up onto the land of Egypt.’”" + }, + { + "verseNum": 6, + "text": "So Aaron stretched out his hand over the waters of Egypt, and the frogs came up and covered the land of Egypt." + }, + { + "verseNum": 7, + "text": "But the magicians did the same thing by their magic arts, and they also brought frogs up onto the land of Egypt." + }, + { + "verseNum": 8, + "text": "Pharaoh summoned Moses and Aaron and said, “Pray to the LORD to take the frogs away from me and my people. Then I will let your people go, that they may sacrifice to the LORD.”" + }, + { + "verseNum": 9, + "text": "Moses said to Pharaoh, “You may have the honor over me. When shall I pray for you and your officials and your people that the frogs (except for those in the Nile) may be taken away from you and your houses?”" + }, + { + "verseNum": 10, + "text": "“Tomorrow,” Pharaoh answered.\n \n“May it be as you say,” Moses replied, “so that you may know that there is no one like the LORD our God." + }, + { + "verseNum": 11, + "text": "The frogs will depart from you and your houses and your officials and your people; they will remain only in the Nile.”" + }, + { + "verseNum": 12, + "text": "After Moses and Aaron had left Pharaoh, Moses cried out to the LORD for help with the frogs that He had brought against Pharaoh." + }, + { + "verseNum": 13, + "text": "And the LORD did as Moses requested, and the frogs in the houses, the courtyards, and the fields died." + }, + { + "verseNum": 14, + "text": "They were piled into countless heaps, and there was a terrible stench in the land." + }, + { + "verseNum": 15, + "text": "When Pharaoh saw that there was relief, however, he hardened his heart and would not listen to Moses and Aaron, just as the LORD had said." + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses, “Tell Aaron, ‘Stretch out your staff and strike the dust of the earth, that it may turn into swarms of gnats throughout the land of Egypt.’”" + }, + { + "verseNum": 17, + "text": "This they did, and when Aaron stretched out his hand with his staff and struck the dust of the earth, gnats came upon man and beast. All the dust of the earth turned into gnats throughout the land of Egypt." + }, + { + "verseNum": 18, + "text": "The magicians tried to produce gnats using their magic arts, but they could not. And the gnats remained on man and beast." + }, + { + "verseNum": 19, + "text": "“This is the finger of God,” the magicians said to Pharaoh. But Pharaoh’s heart was hardened, and he would not listen to them, just as the LORD had said." + }, + { + "verseNum": 20, + "text": "Then the LORD said to Moses, “Get up early in the morning, and when Pharaoh goes out to the water, stand before him and tell him that this is what the LORD says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 21, + "text": "But if you will not let My people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the ground where they stand will be full of flies." + }, + { + "verseNum": 22, + "text": "But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way you will know that I, the LORD, am in the land." + }, + { + "verseNum": 23, + "text": "I will make a distinction between My people and your people. This sign will take place tomorrow.’”" + }, + { + "verseNum": 24, + "text": "And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was ruined by swarms of flies." + }, + { + "verseNum": 25, + "text": "Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this land.”" + }, + { + "verseNum": 26, + "text": "But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us?" + }, + { + "verseNum": 27, + "text": "We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He commands us.”" + }, + { + "verseNum": 28, + "text": "Pharaoh answered, “I will let you go and sacrifice to the LORD your God in the wilderness, but you must not go very far. Now pray for me.”" + }, + { + "verseNum": 29, + "text": "“As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and his people. But Pharaoh must not act deceitfully again by refusing to let the people go and sacrifice to the LORD.”" + }, + { + "verseNum": 30, + "text": "Then Moses left Pharaoh and prayed to the LORD," + }, + { + "verseNum": 31, + "text": "and the LORD did as Moses requested. He removed the swarms of flies from Pharaoh and his officials and his people; not one fly remained." + }, + { + "verseNum": 32, + "text": "But Pharaoh hardened his heart this time as well, and he would not let the people go." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 2, + "text": "But if you continue to restrain them and refuse to let them go," + }, + { + "verseNum": 3, + "text": "then the hand of the LORD will bring a severe plague on your livestock in the field—on your horses, donkeys, camels, herds, and flocks." + }, + { + "verseNum": 4, + "text": "But the LORD will make a distinction between the livestock of Israel and the livestock of Egypt, so that no animal belonging to the Israelites will die.’”" + }, + { + "verseNum": 5, + "text": "The LORD set a time, saying, “Tomorrow the LORD will do this in the land.”" + }, + { + "verseNum": 6, + "text": "And the next day the LORD did just that. All the livestock of the Egyptians died, but not one animal belonging to the Israelites died." + }, + { + "verseNum": 7, + "text": "Pharaoh sent officials and found that none of the livestock of the Israelites had died. But Pharaoh’s heart was hardened, and he would not let the people go." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses and Aaron, “Take handfuls of soot from the furnace; in the sight of Pharaoh, Moses is to toss it into the air." + }, + { + "verseNum": 9, + "text": "It will become fine dust over all the land of Egypt, and festering boils will break out on man and beast throughout the land.”" + }, + { + "verseNum": 10, + "text": "So they took soot from the furnace and stood before Pharaoh. Moses tossed it into the air, and festering boils broke out on man and beast." + }, + { + "verseNum": 11, + "text": "The magicians could not stand before Moses, because the boils had broken out on them and on all the Egyptians." + }, + { + "verseNum": 12, + "text": "But the LORD hardened Pharaoh’s heart, and he would not listen to them, just as the LORD had said to Moses." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses, “Get up early in the morning, stand before Pharaoh, and tell him that this is what the LORD, the God of the Hebrews, says: ‘Let My people go, so that they may worship Me." + }, + { + "verseNum": 14, + "text": "Otherwise, I will send all My plagues against you and your officials and your people, so you may know that there is no one like Me in all the earth." + }, + { + "verseNum": 15, + "text": "For by this time I could have stretched out My hand and struck you and your people with a plague to wipe you off the earth." + }, + { + "verseNum": 16, + "text": "But I have raised you up for this very purpose, that I might display My power to you, and that My name might be proclaimed in all the earth." + }, + { + "verseNum": 17, + "text": "Still, you lord it over My people and do not allow them to go." + }, + { + "verseNum": 18, + "text": "Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from the day it was founded until now." + }, + { + "verseNum": 19, + "text": "So give orders now to shelter your livestock and everything you have in the field. Every man or beast that remains in the field and is not brought inside will die when the hail comes down upon them.’”" + }, + { + "verseNum": 20, + "text": "Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter," + }, + { + "verseNum": 21, + "text": "but those who disregarded the word of the LORD left their servants and livestock in the field." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of Egypt.”" + }, + { + "verseNum": 23, + "text": "So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained down hail upon the land of Egypt." + }, + { + "verseNum": 24, + "text": "The hail fell and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the time it became a nation." + }, + { + "verseNum": 25, + "text": "Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and stripped every tree." + }, + { + "verseNum": 26, + "text": "The only place where it did not hail was in the land of Goshen, where the Israelites lived." + }, + { + "verseNum": 27, + "text": "Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is righteous, and I and my people are wicked." + }, + { + "verseNum": 28, + "text": "Pray to the LORD, for there has been enough of God’s thunder and hail. I will let you go; you do not need to stay any longer.”" + }, + { + "verseNum": 29, + "text": "Moses said to him, “When I have left the city, I will spread out my hands to the LORD. The thunder will cease, and there will be no more hail, so that you may know that the earth is the LORD’s." + }, + { + "verseNum": 30, + "text": "But as for you and your officials, I know that you still do not fear the LORD our God.”" + }, + { + "verseNum": 31, + "text": "(Now the flax and barley were destroyed, since the barley was ripe and the flax was in bloom;" + }, + { + "verseNum": 32, + "text": "but the wheat and spelt were not destroyed, because they are late crops.)" + }, + { + "verseNum": 33, + "text": "Then Moses departed from Pharaoh, went out of the city, and spread out his hands to the LORD. The thunder and hail ceased, and the rain no longer poured down on the land." + }, + { + "verseNum": 34, + "text": "When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials." + }, + { + "verseNum": 35, + "text": "So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said through Moses." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform these miraculous signs of Mine among them," + }, + { + "verseNum": 2, + "text": "and that you may tell your children and grandchildren how severely I dealt with the Egyptians when I performed miraculous signs among them, so that all of you may know that I am the LORD.”" + }, + { + "verseNum": 3, + "text": "So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the Hebrews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me." + }, + { + "verseNum": 4, + "text": "But if you refuse to let My people go, I will bring locusts into your territory tomorrow." + }, + { + "verseNum": 5, + "text": "They will cover the face of the land so that no one can see it. They will devour whatever is left after the hail and eat every tree that grows in your fields." + }, + { + "verseNum": 6, + "text": "They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’”\n \nThen Moses turned and left Pharaoh’s presence." + }, + { + "verseNum": 7, + "text": "Pharaoh’s officials asked him, “How long will this man be a snare to us? Let the people go, so that they may worship the LORD their God. Do you not yet realize that Egypt is in ruins?”" + }, + { + "verseNum": 8, + "text": "So Moses and Aaron were brought back to Pharaoh. “Go, worship the LORD your God,” he said. “But who exactly will be going?”" + }, + { + "verseNum": 9, + "text": "“We will go with our young and old,” Moses replied. “We will go with our sons and daughters, and with our flocks and herds, for we must hold a feast to the LORD.”" + }, + { + "verseNum": 10, + "text": "Then Pharaoh told them, “May the LORD be with you if I ever let you go with your little ones. Clearly you are bent on evil." + }, + { + "verseNum": 11, + "text": "No, only the men may go and worship the LORD, since that is what you have been requesting.” And Moses and Aaron were driven from Pharaoh’s presence." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has left behind.”" + }, + { + "verseNum": 13, + "text": "So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By morning the east wind had brought the locusts." + }, + { + "verseNum": 14, + "text": "The locusts swarmed across the land and settled over the entire territory of Egypt. Never before had there been so many locusts, and never again will there be." + }, + { + "verseNum": 15, + "text": "They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of Egypt." + }, + { + "verseNum": 16, + "text": "Pharaoh quickly summoned Moses and Aaron and said, “I have sinned against the LORD your God and against you." + }, + { + "verseNum": 17, + "text": "Now please forgive my sin once more and appeal to the LORD your God, that He may remove this death from me.”" + }, + { + "verseNum": 18, + "text": "So Moses left Pharaoh’s presence and appealed to the LORD." + }, + { + "verseNum": 19, + "text": "And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not a single locust remained anywhere in Egypt." + }, + { + "verseNum": 20, + "text": "But the LORD hardened Pharaoh’s heart, and he would not let the Israelites go." + }, + { + "verseNum": 21, + "text": "Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable darkness.”" + }, + { + "verseNum": 22, + "text": "So Moses stretched out his hand toward heaven, and total darkness covered all the land of Egypt for three days." + }, + { + "verseNum": 23, + "text": "No one could see anyone else, and for three days no one left his place. Yet all the Israelites had light in their dwellings." + }, + { + "verseNum": 24, + "text": "Then Pharaoh summoned Moses and said, “Go, worship the LORD. Even your little ones may go with you; only your flocks and herds must stay behind.”" + }, + { + "verseNum": 25, + "text": "But Moses replied, “You must also provide us with sacrifices and burnt offerings to present to the LORD our God." + }, + { + "verseNum": 26, + "text": "Even our livestock must go with us; not a hoof will be left behind, for we will need some of them to worship the LORD our God, and we will not know how we are to worship the LORD until we arrive.”" + }, + { + "verseNum": 27, + "text": "But the LORD hardened Pharaoh’s heart, and he was unwilling to let them go." + }, + { + "verseNum": 28, + "text": "“Depart from me!” Pharaoh said to Moses. “Make sure you never see my face again, for on the day you see my face, you will die.”" + }, + { + "verseNum": 29, + "text": "“As you say,” Moses replied, “I will never see your face again.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “I will bring upon Pharaoh and Egypt one more plague. After that, he will allow you to leave this place. And when he lets you go, he will drive you out completely." + }, + { + "verseNum": 2, + "text": "Now announce to the people that men and women alike should ask their neighbors for articles of silver and gold.”" + }, + { + "verseNum": 3, + "text": "And the LORD gave the people favor in the sight of the Egyptians. Moreover, Moses himself was highly regarded in Egypt by Pharaoh’s officials and by the people." + }, + { + "verseNum": 4, + "text": "So Moses declared, “This is what the LORD says: ‘About midnight I will go throughout Egypt," + }, + { + "verseNum": 5, + "text": "and every firstborn son in the land of Egypt will die, from the firstborn of Pharaoh who sits on his throne, to the firstborn of the servant girl behind the hand mill, as well as the firstborn of all the cattle." + }, + { + "verseNum": 6, + "text": "Then a great cry will go out over all the land of Egypt. Such an outcry has never been heard before and will never be heard again." + }, + { + "verseNum": 7, + "text": "But among all the Israelites, not even a dog will snarl at man or beast.’\n \nThen you will know that the LORD makes a distinction between Egypt and Israel." + }, + { + "verseNum": 8, + "text": "And all these officials of yours will come and bow before me, saying, ‘Go, you and all the people who follow you!’ After that, I will depart.”\n \nAnd hot with anger, Moses left Pharaoh’s presence." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Pharaoh will not listen to you, so that My wonders may be multiplied in the land of Egypt.”" + }, + { + "verseNum": 10, + "text": "Moses and Aaron did all these wonders before Pharaoh, but the LORD hardened Pharaoh’s heart so that he would not let the Israelites go out of his land." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD said to Moses and Aaron in the land of Egypt," + }, + { + "verseNum": 2, + "text": "“This month is the beginning of months for you; it shall be the first month of your year." + }, + { + "verseNum": 3, + "text": "Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb for his family, one per household." + }, + { + "verseNum": 4, + "text": "If the household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb accordingly." + }, + { + "verseNum": 5, + "text": "Your lamb must be an unblemished year-old male, and you may take it from the sheep or the goats." + }, + { + "verseNum": 6, + "text": "You must keep it until the fourteenth day of the month, when the whole assembly of the congregation of Israel will slaughter the animals at twilight." + }, + { + "verseNum": 7, + "text": "They are to take some of the blood and put it on the sides and tops of the doorframes of the houses where they eat the lambs." + }, + { + "verseNum": 8, + "text": "They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter herbs." + }, + { + "verseNum": 9, + "text": "Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts." + }, + { + "verseNum": 10, + "text": "Do not leave any of it until morning; before the morning you must burn up any part that is left over." + }, + { + "verseNum": 11, + "text": "This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in haste; it is the LORD’s Passover." + }, + { + "verseNum": 12, + "text": "On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will execute judgment against all the gods of Egypt. I am the LORD." + }, + { + "verseNum": 13, + "text": "The blood on the houses where you are staying will distinguish them; when I see the blood, I will pass over you. No plague will fall on you to destroy you when I strike the land of Egypt." + }, + { + "verseNum": 14, + "text": "And this day will be a memorial for you, and you are to celebrate it as a feast to the LORD, as a permanent statute for the generations to come." + }, + { + "verseNum": 15, + "text": "For seven days you must eat unleavened bread. On the first day you are to remove the leaven from your houses. Whoever eats anything leavened from the first day through the seventh must be cut off from Israel." + }, + { + "verseNum": 16, + "text": "On the first day you are to hold a sacred assembly, and another on the seventh day. You must not do any work on those days, except to prepare the meals—that is all you may do." + }, + { + "verseNum": 17, + "text": "So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divisions out of the land of Egypt. You must keep this day as a permanent statute for the generations to come." + }, + { + "verseNum": 18, + "text": "In the first month you are to eat unleavened bread, from the evening of the fourteenth day until the evening of the twenty-first day." + }, + { + "verseNum": 19, + "text": "For seven days there must be no leaven found in your houses. If anyone eats something leavened, that person, whether a foreigner or native of the land, must be cut off from the congregation of Israel." + }, + { + "verseNum": 20, + "text": "You are not to eat anything leavened; eat unleavened bread in all your homes.”" + }, + { + "verseNum": 21, + "text": "Then Moses summoned all the elders of Israel and told them, “Go at once and select for yourselves a lamb for each family, and slaughter the Passover lamb." + }, + { + "verseNum": 22, + "text": "Take a cluster of hyssop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house until morning." + }, + { + "verseNum": 23, + "text": "When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer to enter your houses and strike you down." + }, + { + "verseNum": 24, + "text": "And you are to keep this command as a permanent statute for you and your descendants." + }, + { + "verseNum": 25, + "text": "When you enter the land that the LORD will give you as He promised, you are to keep this service." + }, + { + "verseNum": 26, + "text": "When your children ask you, ‘What does this service mean to you?’" + }, + { + "verseNum": 27, + "text": "you are to reply, ‘It is the Passover sacrifice to the LORD, who passed over the houses of the Israelites in Egypt when He struck down the Egyptians and spared our homes.’”\n \nThen the people bowed down and worshiped." + }, + { + "verseNum": 28, + "text": "And the Israelites went and did just what the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 29, + "text": "Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as well as all the firstborn among the livestock." + }, + { + "verseNum": 30, + "text": "During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house without someone dead." + }, + { + "verseNum": 31, + "text": "Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you have requested." + }, + { + "verseNum": 32, + "text": "Take your flocks and herds as well, just as you have said, and depart! And bless me also.”" + }, + { + "verseNum": 33, + "text": "And in order to send them out of the land quickly, the Egyptians urged the people on. “For otherwise,” they said, “we are all going to die!”" + }, + { + "verseNum": 34, + "text": "So the people took their dough before it was leavened, carrying it on their shoulders in kneading bowls wrapped in clothing." + }, + { + "verseNum": 35, + "text": "Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of silver and gold, and for clothing." + }, + { + "verseNum": 36, + "text": "And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this way they plundered the Egyptians." + }, + { + "verseNum": 37, + "text": "The Israelites journeyed from Rameses to Succoth with about 600,000 men on foot, besides women and children." + }, + { + "verseNum": 38, + "text": "And a mixed multitude also went up with them, along with great droves of livestock, both flocks and herds." + }, + { + "verseNum": 39, + "text": "Since their dough had no leaven, the people baked what they had brought out of Egypt into unleavened loaves. For when they had been driven out of Egypt, they could not delay and had not prepared any provisions for themselves." + }, + { + "verseNum": 40, + "text": "Now the duration of the Israelites’ stay in Egypt was 430 years." + }, + { + "verseNum": 41, + "text": "At the end of the 430 years, to the very day, all the LORD’s divisions went out of the land of Egypt." + }, + { + "verseNum": 42, + "text": "Because the LORD kept a vigil that night to bring them out of the land of Egypt, this same night is to be a vigil to the LORD, to be observed by all the Israelites for the generations to come." + }, + { + "verseNum": 43, + "text": "And the LORD said to Moses and Aaron, “This is the statute of the Passover: No foreigner is to eat of it." + }, + { + "verseNum": 44, + "text": "But any slave who has been purchased may eat of it, after you have circumcised him." + }, + { + "verseNum": 45, + "text": "A temporary resident or hired hand shall not eat the Passover." + }, + { + "verseNum": 46, + "text": "It must be eaten inside one house. You are not to take any of the meat outside the house, and you may not break any of the bones." + }, + { + "verseNum": 47, + "text": "The whole congregation of Israel must celebrate it." + }, + { + "verseNum": 48, + "text": "If a foreigner resides with you and wants to celebrate the LORD’s Passover, all the males in the household must be circumcised; then he may come near to celebrate it, and he shall be like a native of the land. But no uncircumcised man may eat of it." + }, + { + "verseNum": 49, + "text": "The same law shall apply to both the native and the foreigner who resides among you.”" + }, + { + "verseNum": 50, + "text": "Then all the Israelites did this—they did just as the LORD had commanded Moses and Aaron." + }, + { + "verseNum": 51, + "text": "And on that very day the LORD brought the Israelites out of the land of Egypt by their divisions." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Consecrate to Me every firstborn male. The firstborn from every womb among the Israelites belongs to Me, both of man and beast.”" + }, + { + "verseNum": 3, + "text": "So Moses told the people, “Remember this day, the day you came out of Egypt, out of the house of slavery; for the LORD brought you out of it by the strength of His hand. And nothing leavened shall be eaten." + }, + { + "verseNum": 4, + "text": "Today, in the month of Abib, you are leaving." + }, + { + "verseNum": 5, + "text": "And when the LORD brings you into the land of the Canaanites, Hittites, Amorites, Hivites, and Jebusites—the land He swore to your fathers that He would give you, a land flowing with milk and honey—you shall keep this service in this month." + }, + { + "verseNum": 6, + "text": "For seven days you are to eat unleavened bread, and on the seventh day there shall be a feast to the LORD." + }, + { + "verseNum": 7, + "text": "Unleavened bread shall be eaten during those seven days. Nothing leavened may be found among you, nor shall leaven be found anywhere within your borders." + }, + { + "verseNum": 8, + "text": "And on that day you are to explain to your son, ‘This is because of what the LORD did for me when I came out of Egypt.’" + }, + { + "verseNum": 9, + "text": "It shall be a sign for you on your hand and a reminder on your forehead that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought you out of Egypt." + }, + { + "verseNum": 10, + "text": "Therefore you shall keep this statute at the appointed time year after year." + }, + { + "verseNum": 11, + "text": "And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you and your fathers," + }, + { + "verseNum": 12, + "text": "you are to present to the LORD the firstborn male of every womb. All the firstborn males of your livestock belong to the LORD." + }, + { + "verseNum": 13, + "text": "You must redeem every firstborn donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of your sons you must redeem." + }, + { + "verseNum": 14, + "text": "In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, out of the house of slavery." + }, + { + "verseNum": 15, + "text": "And when Pharaoh stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all the firstborn of my sons.’" + }, + { + "verseNum": 16, + "text": "So it shall serve as a sign on your hand and a symbol on your forehead, for with a mighty hand the LORD brought us out of Egypt.”" + }, + { + "verseNum": 17, + "text": "When Pharaoh let the people go, God did not lead them along the road through the land of the Philistines, though it was shorter. For God said, “If the people face war, they might change their minds and return to Egypt.”" + }, + { + "verseNum": 18, + "text": "So God led the people around by the way of the wilderness toward the Red Sea. And the Israelites left the land of Egypt arrayed for battle." + }, + { + "verseNum": 19, + "text": "Moses took the bones of Joseph with him because Joseph had made the sons of Israel swear a solemn oath when he said, “God will surely attend to you, and then you must carry my bones with you from this place.”" + }, + { + "verseNum": 20, + "text": "They set out from Succoth and camped at Etham on the edge of the wilderness." + }, + { + "verseNum": 21, + "text": "And the LORD went before them in a pillar of cloud to guide their way by day, and in a pillar of fire to give them light by night, so that they could travel by day or night." + }, + { + "verseNum": 22, + "text": "Neither the pillar of cloud by day nor the pillar of fire by night left its place before the people." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to turn back and encamp before Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite Baal-zephon." + }, + { + "verseNum": 3, + "text": "For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’" + }, + { + "verseNum": 4, + "text": "And I will harden Pharaoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.”\n \nSo this is what the Israelites did." + }, + { + "verseNum": 5, + "text": "When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we done? We have released Israel from serving us.”" + }, + { + "verseNum": 6, + "text": "So Pharaoh prepared his chariot and took his army with him." + }, + { + "verseNum": 7, + "text": "He took 600 of the best chariots, and all the other chariots of Egypt, with officers over all of them." + }, + { + "verseNum": 8, + "text": "And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, who were marching out defiantly." + }, + { + "verseNum": 9, + "text": "The Egyptians—all Pharaoh’s horses and chariots, horsemen and troops—pursued the Israelites and overtook them as they camped by the sea near Pi-hahiroth, opposite Baal-zephon." + }, + { + "verseNum": 10, + "text": "As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the LORD." + }, + { + "verseNum": 11, + "text": "They said to Moses, “Was it because there were no graves in Egypt that you brought us into the wilderness to die? What have you done to us by bringing us out of Egypt?" + }, + { + "verseNum": 12, + "text": "Did we not say to you in Egypt, ‘Leave us alone so that we may serve the Egyptians’? For it would have been better for us to serve the Egyptians than to die in the wilderness.”" + }, + { + "verseNum": 13, + "text": "But Moses told the people, “Do not be afraid. Stand firm and you will see the LORD’s salvation, which He will accomplish for you today; for the Egyptians you see today, you will never see again." + }, + { + "verseNum": 14, + "text": "The LORD will fight for you; you need only to be still.”" + }, + { + "verseNum": 15, + "text": "Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go forward." + }, + { + "verseNum": 16, + "text": "And as for you, lift up your staff and stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground." + }, + { + "verseNum": 17, + "text": "And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his army and chariots and horsemen." + }, + { + "verseNum": 18, + "text": "The Egyptians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his horsemen.”" + }, + { + "verseNum": 19, + "text": "And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before them and stood behind them," + }, + { + "verseNum": 20, + "text": "so that it came between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the other." + }, + { + "verseNum": 21, + "text": "Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry land. So the waters were divided," + }, + { + "verseNum": 22, + "text": "and the Israelites went through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 23, + "text": "And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and followed them into the sea." + }, + { + "verseNum": 24, + "text": "At morning watch, however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, and He threw their camp into confusion." + }, + { + "verseNum": 25, + "text": "He caused their chariot wheels to wobble, so that they had difficulty driving. “Let us flee from the Israelites,” said the Egyptians, “for the LORD is fighting for them against Egypt!”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses, “Stretch out your hand over the sea, so that the waters may flow back over the Egyptians and their chariots and horsemen.”" + }, + { + "verseNum": 27, + "text": "So Moses stretched out his hand over the sea, and at daybreak the sea returned to its normal state. As the Egyptians were retreating, the LORD swept them into the sea." + }, + { + "verseNum": 28, + "text": "The waters flowed back and covered the chariots and horsemen—the entire army of Pharaoh that had chased the Israelites into the sea. Not one of them survived." + }, + { + "verseNum": 29, + "text": "But the Israelites had walked through the sea on dry ground, with walls of water on their right and on their left." + }, + { + "verseNum": 30, + "text": "That day the LORD saved Israel from the hand of the Egyptians, and Israel saw the Egyptians dead on the shore." + }, + { + "verseNum": 31, + "text": "When Israel saw the great power that the LORD had exercised over the Egyptians, the people feared the LORD and believed in Him and in His servant Moses." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses and the Israelites sang this song to the LORD:\n \n “I will sing to the LORD,\n for He is highly exalted.\n The horse and rider\n He has thrown into the sea." + }, + { + "verseNum": 2, + "text": "The LORD is my strength and my song,\n and He has become my salvation.\n He is my God, and I will praise Him,\n my father’s God, and I will exalt Him." + }, + { + "verseNum": 3, + "text": "The LORD is a warrior,\n the LORD is His name." + }, + { + "verseNum": 4, + "text": "Pharaoh’s chariots and army\n He has cast into the sea;\n the finest of his officers\n are drowned in the Red Sea." + }, + { + "verseNum": 5, + "text": "The depths have covered them;\n they sank there like a stone." + }, + { + "verseNum": 6, + "text": "Your right hand, O LORD,\n is majestic in power;\n Your right hand, O LORD,\n has shattered the enemy." + }, + { + "verseNum": 7, + "text": "You overthrew Your adversaries\n by Your great majesty.\n You unleashed Your burning wrath;\n it consumed them like stubble." + }, + { + "verseNum": 8, + "text": "At the blast of Your nostrils\n the waters piled up;\n like a wall the currents stood firm;\n the depths congealed in the heart of the sea." + }, + { + "verseNum": 9, + "text": "The enemy declared,\n ‘I will pursue, I will overtake.\n I will divide the spoils;\n I will gorge myself on them.\n I will draw my sword;\n my hand will destroy them.’" + }, + { + "verseNum": 10, + "text": "But You blew with Your breath,\n and the sea covered them.\n They sank like lead\n in the mighty waters." + }, + { + "verseNum": 11, + "text": "Who among the gods is like You, O LORD?\n Who is like You—majestic in holiness,\n revered with praises,\n performing wonders?" + }, + { + "verseNum": 12, + "text": "You stretched out Your right hand,\n and the earth swallowed them up." + }, + { + "verseNum": 13, + "text": "With loving devotion You will lead\n the people You have redeemed;\n with Your strength You will guide them\n to Your holy dwelling." + }, + { + "verseNum": 14, + "text": "The nations will hear and tremble;\n anguish will grip the dwellers of Philistia." + }, + { + "verseNum": 15, + "text": "Then the chiefs of Edom will be dismayed;\n trembling will seize the leaders of Moab;\n those who dwell in Canaan will melt away," + }, + { + "verseNum": 16, + "text": "and terror and dread will fall on them.\n By the power of Your arm\n they will be as still as a stone\n until Your people pass by, O LORD,\n until the people You have bought pass by." + }, + { + "verseNum": 17, + "text": "You will bring them in and plant them\n on the mountain of Your inheritance—\n the place, O LORD, You have prepared for Your dwelling,\n the sanctuary, O Lord, Your hands have established." + }, + { + "verseNum": 18, + "text": "The LORD will reign forever and ever!”" + }, + { + "verseNum": 19, + "text": "For when Pharaoh’s horses, chariots, and horsemen went into the sea, the LORD brought the waters of the sea back over them. But the Israelites walked through the sea on dry ground." + }, + { + "verseNum": 20, + "text": "Then Miriam the prophetess, Aaron’s sister, took a tambourine in her hand, and all the women followed her with tambourines and dancing." + }, + { + "verseNum": 21, + "text": "And Miriam sang back to them:\n \n “Sing to the LORD,\n for He is highly exalted;\n the horse and rider\n He has thrown into the sea.”" + }, + { + "verseNum": 22, + "text": "Then Moses led Israel from the Red Sea, and they went out into the Desert of Shur. For three days they walked in the desert without finding water." + }, + { + "verseNum": 23, + "text": "And when they came to Marah, they could not drink the water there because it was bitter. (That is why it was named Marah.)" + }, + { + "verseNum": 24, + "text": "So the people grumbled against Moses, saying, “What are we to drink?”" + }, + { + "verseNum": 25, + "text": "And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened.\n \nThere the LORD made for them a statute and an ordinance, and there He tested them," + }, + { + "verseNum": 26, + "text": "saying, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am the LORD who heals you.”" + }, + { + "verseNum": 27, + "text": "Then they came to Elim, where there were twelve springs of water and seventy palm trees, and they camped there by the waters." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim and came to the Desert of Sin, which is between Elim and Sinai." + }, + { + "verseNum": 2, + "text": "And there in the desert they all grumbled against Moses and Aaron." + }, + { + "verseNum": 3, + "text": "“If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to starve this whole assembly to death!”" + }, + { + "verseNum": 4, + "text": "Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test whether or not they will follow My instructions." + }, + { + "verseNum": 5, + "text": "Then on the sixth day, when they prepare what they bring in, it will be twice as much as they gather on the other days.”" + }, + { + "verseNum": 6, + "text": "So Moses and Aaron said to all the Israelites, “This evening you will know that it was the LORD who brought you out of the land of Egypt," + }, + { + "verseNum": 7, + "text": "and in the morning you will see the LORD’s glory, because He has heard your grumbling against Him. For who are we that you should grumble against us?”" + }, + { + "verseNum": 8, + "text": "And Moses added, “The LORD will give you meat to eat this evening and bread to fill you in the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are not against us but against the LORD.”" + }, + { + "verseNum": 9, + "text": "Then Moses said to Aaron, “Tell the whole congregation of Israel, ‘Come before the LORD, for He has heard your grumbling.’”" + }, + { + "verseNum": 10, + "text": "And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD appeared." + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“I have heard the grumbling of the Israelites. Tell them, ‘At twilight you will eat meat, and in the morning you will be filled with bread. Then you will know that I am the LORD your God.’”" + }, + { + "verseNum": 13, + "text": "That evening quail came and covered the camp, and in the morning there was a layer of dew around the camp." + }, + { + "verseNum": 14, + "text": "When the layer of dew had evaporated, there were thin flakes on the desert floor, as fine as frost on the ground." + }, + { + "verseNum": 15, + "text": "When the Israelites saw it, they asked one another, “What is it?” For they did not know what it was.\n \nSo Moses told them, “It is the bread that the LORD has given you to eat." + }, + { + "verseNum": 16, + "text": "This is what the LORD has commanded: ‘Each one is to gather as much as he needs. You may take an omer for each person in your tent.’”" + }, + { + "verseNum": 17, + "text": "So the Israelites did this. Some gathered more, and some less." + }, + { + "verseNum": 18, + "text": "When they measured it by the omer, he who gathered much had no excess, and he who gathered little had no shortfall. Each one gathered as much as he needed to eat." + }, + { + "verseNum": 19, + "text": "Then Moses said to them, “No one may keep any of it until morning.”" + }, + { + "verseNum": 20, + "text": "But they did not listen to Moses; some people left part of it until morning, and it became infested with maggots and began to smell. So Moses was angry with them." + }, + { + "verseNum": 21, + "text": "Every morning each one gathered as much as was needed, and when the sun grew hot, it melted away." + }, + { + "verseNum": 22, + "text": "On the sixth day, they gathered twice as much food—two omers per person —and all the leaders of the congregation came and reported this to Moses." + }, + { + "verseNum": 23, + "text": "He told them, “This is what the LORD has said: ‘Tomorrow is to be a day of complete rest, a holy Sabbath to the LORD. So bake what you want to bake, and boil what you want to boil. Then set aside whatever remains and keep it until morning.’”" + }, + { + "verseNum": 24, + "text": "So they set it aside until morning as Moses had commanded, and it did not smell or contain any maggots." + }, + { + "verseNum": 25, + "text": "“Eat it today,” Moses said, “because today is a Sabbath to the LORD. Today you will not find anything in the field." + }, + { + "verseNum": 26, + "text": "For six days you may gather, but on the seventh day, the Sabbath, it will not be there.”" + }, + { + "verseNum": 27, + "text": "Yet on the seventh day some of the people went out to gather, but they did not find anything." + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses, “How long will you refuse to keep My commandments and instructions?" + }, + { + "verseNum": 29, + "text": "Understand that the LORD has given you the Sabbath; that is why on the sixth day He will give you bread for two days. On the seventh day, everyone must stay where he is; no one may leave his place.”" + }, + { + "verseNum": 30, + "text": "So the people rested on the seventh day." + }, + { + "verseNum": 31, + "text": "Now the house of Israel called the bread manna. It was white like coriander seed and tasted like wafers made with honey." + }, + { + "verseNum": 32, + "text": "Moses said, “This is what the LORD has commanded: ‘Keep an omer of manna for the generations to come, so that they may see the bread I fed you in the wilderness when I brought you out of the land of Egypt.’”" + }, + { + "verseNum": 33, + "text": "So Moses told Aaron, “Take a jar and fill it with an omer of manna. Then place it before the LORD to be preserved for the generations to come.”" + }, + { + "verseNum": 34, + "text": "And Aaron placed it in front of the Testimony, to be preserved just as the LORD had commanded Moses." + }, + { + "verseNum": 35, + "text": "The Israelites ate manna forty years, until they came to a land where they could settle; they ate manna until they reached the border of Canaan." + }, + { + "verseNum": 36, + "text": "(Now an omer is a tenth of an ephah.)" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped at Rephidim, but there was no water for the people to drink." + }, + { + "verseNum": 2, + "text": "So the people contended with Moses, “Give us water to drink.”\n \n“Why do you contend with me?” Moses replied. “Why do you test the LORD?”" + }, + { + "verseNum": 3, + "text": "But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our children and livestock die of thirst?”" + }, + { + "verseNum": 4, + "text": "Then Moses cried out to the LORD, “What should I do with these people? A little more and they will stone me!”" + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses, “Walk on ahead of the people and take some of the elders of Israel with you. Take along in your hand the staff with which you struck the Nile, and go." + }, + { + "verseNum": 6, + "text": "Behold, I will stand there before you by the rock at Horeb. And when you strike the rock, water will come out of it for the people to drink.”\n \nSo Moses did this in the sight of the elders of Israel." + }, + { + "verseNum": 7, + "text": "He named the place Massah and Meribah because the Israelites quarreled, and because they tested the LORD, saying, “Is the LORD among us or not?”" + }, + { + "verseNum": 8, + "text": "After this, the Amalekites came and attacked the Israelites at Rephidim." + }, + { + "verseNum": 9, + "text": "So Moses said to Joshua, “Choose some of our men and go out to fight the Amalekites. Tomorrow I will stand on the hilltop with the staff of God in my hand.”" + }, + { + "verseNum": 10, + "text": "Joshua did as Moses had instructed him and fought against the Amalekites, while Moses, Aaron, and Hur went up to the top of the hill." + }, + { + "verseNum": 11, + "text": "As long as Moses held up his hands, Israel prevailed; but when he lowered them, Amalek prevailed." + }, + { + "verseNum": 12, + "text": "When Moses’ hands grew heavy, they took a stone and put it under him, and he sat on it. Then Aaron and Hur held his hands up, one on each side, so that his hands remained steady until the sun went down." + }, + { + "verseNum": 13, + "text": "So Joshua overwhelmed Amalek and his army with the sword." + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses, “Write this on a scroll as a reminder and recite it to Joshua, because I will utterly blot out the memory of Amalek from under heaven.”" + }, + { + "verseNum": 15, + "text": "And Moses built an altar and named it The LORD Is My Banner." + }, + { + "verseNum": 16, + "text": "“Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation to generation.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and how the LORD had brought Israel out of Egypt." + }, + { + "verseNum": 2, + "text": "After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her," + }, + { + "verseNum": 3, + "text": "along with her two sons. One son was named Gershom, for Moses had said, “I have been a foreigner in a foreign land.”" + }, + { + "verseNum": 4, + "text": "The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from the sword of Pharaoh.”" + }, + { + "verseNum": 5, + "text": "Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where he was encamped at the mountain of God." + }, + { + "verseNum": 6, + "text": "He sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two sons.”" + }, + { + "verseNum": 7, + "text": "So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent." + }, + { + "verseNum": 8, + "text": "Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encountered along the way, and how the LORD had delivered them." + }, + { + "verseNum": 9, + "text": "And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued from the hand of the Egyptians." + }, + { + "verseNum": 10, + "text": "Jethro declared, “Blessed be the LORD, who has delivered you from the hand of the Egyptians and of Pharaoh, and who has delivered the people from the hand of the Egyptians." + }, + { + "verseNum": 11, + "text": "Now I know that the LORD is greater than all other gods, for He did this when they treated Israel with arrogance.”" + }, + { + "verseNum": 12, + "text": "Then Moses’ father-in-law Jethro brought a burnt offering and sacrifices to God, and Aaron came with all the elders of Israel to eat bread with Moses’ father-in-law in the presence of God." + }, + { + "verseNum": 13, + "text": "The next day Moses took his seat to judge the people, and they stood around him from morning until evening." + }, + { + "verseNum": 14, + "text": "When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people standing around you from morning till evening?”" + }, + { + "verseNum": 15, + "text": "“Because the people come to me to inquire of God,” Moses replied." + }, + { + "verseNum": 16, + "text": "“Whenever they have a dispute, it is brought to me to judge between one man and another, and I make known to them the statutes and laws of God.”" + }, + { + "verseNum": 17, + "text": "But Moses’ father-in-law said to him, “What you are doing is not good." + }, + { + "verseNum": 18, + "text": "Surely you and these people with you will wear yourselves out, because the task is too heavy for you. You cannot handle it alone." + }, + { + "verseNum": 19, + "text": "Now listen to me; I will give you some advice, and may God be with you. You must be the people’s representative before God and bring their causes to Him." + }, + { + "verseNum": 20, + "text": "Teach them the statutes and laws, and show them the way to live and the work they must do." + }, + { + "verseNum": 21, + "text": "Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 22, + "text": "Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with you." + }, + { + "verseNum": 23, + "text": "If you follow this advice and God so directs you, then you will be able to endure, and all these people can go home in peace.”" + }, + { + "verseNum": 24, + "text": "Moses listened to his father-in-law and did everything he said." + }, + { + "verseNum": 25, + "text": "So Moses chose capable men from all Israel and made them heads over the people as leaders of thousands, of hundreds, of fifties, and of tens." + }, + { + "verseNum": 26, + "text": "And they judged the people at all times; they would bring the difficult cases to Moses, but any minor issue they would judge themselves." + }, + { + "verseNum": 27, + "text": "Then Moses sent his father-in-law on his way, and Jethro returned to his own land." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In the third month, on the same day of the month that the Israelites had left the land of Egypt, they came to the Wilderness of Sinai." + }, + { + "verseNum": 2, + "text": "After they had set out from Rephidim, they entered the Wilderness of Sinai, and Israel camped there in front of the mountain." + }, + { + "verseNum": 3, + "text": "Then Moses went up to God, and the LORD called to him from the mountain, “This is what you are to tell the house of Jacob and explain to the sons of Israel:" + }, + { + "verseNum": 4, + "text": "‘You have seen for yourselves what I did to Egypt, and how I carried you on eagles’ wings and brought you to Myself." + }, + { + "verseNum": 5, + "text": "Now if you will indeed obey My voice and keep My covenant, you will be My treasured possession out of all the nations—for the whole earth is Mine." + }, + { + "verseNum": 6, + "text": "And unto Me you shall be a kingdom of priests and a holy nation.’ These are the words that you are to speak to the Israelites.”" + }, + { + "verseNum": 7, + "text": "So Moses went back and summoned the elders of the people and set before them all these words that the LORD had commanded him." + }, + { + "verseNum": 8, + "text": "And all the people answered together, “We will do everything that the LORD has spoken.”\n \nSo Moses brought their words back to the LORD." + }, + { + "verseNum": 9, + "text": "The LORD said to Moses, “Behold, I will come to you in a dense cloud, so that the people will hear when I speak with you, and they will always put their trust in you.”\n \nAnd Moses relayed to the LORD what the people had said." + }, + { + "verseNum": 10, + "text": "Then the LORD said to Moses, “Go to the people and consecrate them today and tomorrow. They must wash their clothes" + }, + { + "verseNum": 11, + "text": "and be prepared by the third day, for on the third day the LORD will come down on Mount Sinai in the sight of all the people." + }, + { + "verseNum": 12, + "text": "And you are to set up a boundary for the people around the mountain and tell them, ‘Be careful not to go up on the mountain or touch its base. Whoever touches the mountain shall surely be put to death." + }, + { + "verseNum": 13, + "text": "No hand shall touch him, but he shall surely be stoned or shot with arrows—whether man or beast, he must not live.’\n \nOnly when the ram’s horn sounds a long blast may they approach the mountain.”" + }, + { + "verseNum": 14, + "text": "When Moses came down from the mountain to the people, he consecrated them, and they washed their clothes." + }, + { + "verseNum": 15, + "text": "“Be prepared for the third day,” he said to the people. “Do not draw near to a woman.”" + }, + { + "verseNum": 16, + "text": "On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the camp trembled." + }, + { + "verseNum": 17, + "text": "Then Moses brought the people out of the camp to meet with God, and they stood at the foot of the mountain." + }, + { + "verseNum": 18, + "text": "Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a furnace, and the whole mountain quaked violently." + }, + { + "verseNum": 19, + "text": "And as the sound of the ram’s horn grew louder and louder, Moses spoke and God answered him in the thunder." + }, + { + "verseNum": 20, + "text": "The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses went up," + }, + { + "verseNum": 21, + "text": "and the LORD said to him, “Go down and warn the people not to break through to see the LORD, lest many of them perish." + }, + { + "verseNum": 22, + "text": "Even the priests who approach the LORD must consecrate themselves, or the LORD will break out against them.”" + }, + { + "verseNum": 23, + "text": "But Moses said to the LORD, “The people cannot come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain and set it apart as holy.’”" + }, + { + "verseNum": 24, + "text": "And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, or He will break out against them.”" + }, + { + "verseNum": 25, + "text": "So Moses went down to the people and spoke to them." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "And God spoke all these words:" + }, + { + "verseNum": 2, + "text": "“I am the LORD your God, who brought you out of the land of Egypt, out of the house of slavery." + }, + { + "verseNum": 3, + "text": "You shall have no other gods before Me." + }, + { + "verseNum": 4, + "text": "You shall not make for yourself an idol in the form of anything in the heavens above, on the earth below, or in the waters beneath." + }, + { + "verseNum": 5, + "text": "You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth generations of those who hate Me," + }, + { + "verseNum": 6, + "text": "but showing loving devotion to a thousand generations of those who love Me and keep My commandments." + }, + { + "verseNum": 7, + "text": "You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in vain." + }, + { + "verseNum": 8, + "text": "Remember the Sabbath day by keeping it holy." + }, + { + "verseNum": 9, + "text": "Six days you shall labor and do all your work," + }, + { + "verseNum": 10, + "text": "but the seventh day is a Sabbath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant or livestock, nor the foreigner within your gates." + }, + { + "verseNum": 11, + "text": "For in six days the LORD made the heavens and the earth and the sea and all that is in them, but on the seventh day He rested. Therefore the LORD blessed the Sabbath day and set it apart as holy." + }, + { + "verseNum": 12, + "text": "Honor your father and mother, so that your days may be long in the land that the LORD your God is giving you." + }, + { + "verseNum": 13, + "text": "You shall not murder." + }, + { + "verseNum": 14, + "text": "You shall not commit adultery." + }, + { + "verseNum": 15, + "text": "You shall not steal." + }, + { + "verseNum": 16, + "text": "You shall not bear false witness against your neighbor." + }, + { + "verseNum": 17, + "text": "You shall not covet your neighbor’s house. You shall not covet your neighbor’s wife, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.”" + }, + { + "verseNum": 18, + "text": "When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they trembled and stood at a distance." + }, + { + "verseNum": 19, + "text": "“Speak to us yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.”" + }, + { + "verseNum": 20, + "text": "“Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.”" + }, + { + "verseNum": 21, + "text": "And the people stood at a distance as Moses approached the thick darkness where God was." + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from heaven." + }, + { + "verseNum": 23, + "text": "You are not to make any gods alongside Me; you are not to make for yourselves gods of silver or gold." + }, + { + "verseNum": 24, + "text": "You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace offerings, your sheep and goats and cattle. In every place where I cause My name to be remembered, I will come to you and bless you." + }, + { + "verseNum": 25, + "text": "Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it." + }, + { + "verseNum": 26, + "text": "And you must not go up to My altar on steps, lest your nakedness be exposed on it.’" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“These are the ordinances that you are to set before them:" + }, + { + "verseNum": 2, + "text": "If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything." + }, + { + "verseNum": 3, + "text": "If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him." + }, + { + "verseNum": 4, + "text": "If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her master, and only the man shall go free." + }, + { + "verseNum": 5, + "text": "But if the servant declares, ‘I love my master and my wife and children; I do not want to go free,’" + }, + { + "verseNum": 6, + "text": "then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he shall serve his master for life." + }, + { + "verseNum": 7, + "text": "And if a man sells his daughter as a servant, she is not to go free as the menservants do." + }, + { + "verseNum": 8, + "text": "If she is displeasing in the eyes of her master who had designated her for himself, he must allow her to be redeemed. He has no right to sell her to foreigners, since he has broken faith with her." + }, + { + "verseNum": 9, + "text": "And if he chooses her for his son, he must deal with her as with a daughter." + }, + { + "verseNum": 10, + "text": "If he takes another wife, he must not reduce the food, clothing, or marital rights of his first wife." + }, + { + "verseNum": 11, + "text": "If, however, he does not provide her with these three things, she is free to go without monetary payment." + }, + { + "verseNum": 12, + "text": "Whoever strikes and kills a man must surely be put to death." + }, + { + "verseNum": 13, + "text": "If, however, he did not lie in wait, but God allowed it to happen, then I will appoint for you a place where he may flee." + }, + { + "verseNum": 14, + "text": "But if a man schemes and acts willfully against his neighbor to kill him, you must take him away from My altar to be put to death." + }, + { + "verseNum": 15, + "text": "Whoever strikes his father or mother must surely be put to death." + }, + { + "verseNum": 16, + "text": "Whoever kidnaps another man must be put to death, whether he sells him or the man is found in his possession." + }, + { + "verseNum": 17, + "text": "Anyone who curses his father or mother must surely be put to death." + }, + { + "verseNum": 18, + "text": "If men are quarreling and one strikes the other with a stone or a fist, and he does not die but is confined to bed," + }, + { + "verseNum": 19, + "text": "then the one who struck him shall go unpunished, as long as the other can get up and walk around outside with his staff. Nevertheless, he must compensate the man for his lost work and see that he is completely healed." + }, + { + "verseNum": 20, + "text": "If a man strikes his manservant or maidservant with a rod, and the servant dies by his hand, he shall surely be punished." + }, + { + "verseNum": 21, + "text": "However, if the servant gets up after a day or two, the owner shall not be punished, since the servant is his property." + }, + { + "verseNum": 22, + "text": "If men who are fighting strike a pregnant woman and her child is born prematurely, but there is no further injury, he shall surely be fined as the woman’s husband demands and as the court allows." + }, + { + "verseNum": 23, + "text": "But if a serious injury results, then you must require a life for a life—" + }, + { + "verseNum": 24, + "text": "eye for eye, tooth for tooth, hand for hand, foot for foot," + }, + { + "verseNum": 25, + "text": "burn for burn, wound for wound, and stripe for stripe." + }, + { + "verseNum": 26, + "text": "If a man strikes and blinds the eye of his manservant or maidservant, he must let the servant go free as compensation for the eye." + }, + { + "verseNum": 27, + "text": "And if he knocks out the tooth of his manservant or maidservant, he must let the servant go free as compensation for the tooth." + }, + { + "verseNum": 28, + "text": "If an ox gores a man or woman to death, the ox must surely be stoned, and its meat must not be eaten. But the owner of the ox shall not be held responsible." + }, + { + "verseNum": 29, + "text": "But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be stoned and its owner must also be put to death." + }, + { + "verseNum": 30, + "text": "If payment is demanded of him instead, he may redeem his life by paying the full amount demanded of him." + }, + { + "verseNum": 31, + "text": "If the ox gores a son or a daughter, it shall be done to him according to the same rule." + }, + { + "verseNum": 32, + "text": "If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be stoned." + }, + { + "verseNum": 33, + "text": "If a man opens or digs a pit and fails to cover it, and an ox or a donkey falls into it," + }, + { + "verseNum": 34, + "text": "the owner of the pit shall make restitution; he must pay its owner, and the dead animal will be his." + }, + { + "verseNum": 35, + "text": "If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the proceeds; they also must divide the dead animal." + }, + { + "verseNum": 36, + "text": "But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead animal will be his." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a man steals an ox or a sheep and slaughters or sells it, he must repay five oxen for an ox and four sheep for a sheep." + }, + { + "verseNum": 2, + "text": "If a thief is caught breaking in and is beaten to death, no one shall be guilty of bloodshed." + }, + { + "verseNum": 3, + "text": "But if it happens after sunrise, there is guilt for his bloodshed.\n \nA thief must make full restitution; if he has nothing, he himself shall be sold for his theft." + }, + { + "verseNum": 4, + "text": "If what was stolen is actually found alive in his possession—whether ox or donkey or sheep—he must pay back double." + }, + { + "verseNum": 5, + "text": "If a man grazes his livestock in a field or vineyard and allows them to stray so that they graze in someone else’s field, he must make restitution from the best of his own field or vineyard." + }, + { + "verseNum": 6, + "text": "If a fire breaks out and spreads to thornbushes so that it consumes stacked or standing grain, or the whole field, the one who started the fire must make full restitution." + }, + { + "verseNum": 7, + "text": "If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double." + }, + { + "verseNum": 8, + "text": "If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s property." + }, + { + "verseNum": 9, + "text": "In all cases of illegal possession of an ox, a donkey, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back double to his neighbor." + }, + { + "verseNum": 10, + "text": "If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching," + }, + { + "verseNum": 11, + "text": "an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no restitution." + }, + { + "verseNum": 12, + "text": "But if the animal was actually stolen from the neighbor, he must make restitution to the owner." + }, + { + "verseNum": 13, + "text": "If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for the torn carcass." + }, + { + "verseNum": 14, + "text": "If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution." + }, + { + "verseNum": 15, + "text": "If the owner was present, no restitution is required. If the animal was rented, the fee covers the loss." + }, + { + "verseNum": 16, + "text": "If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must pay the full dowry for her to be his wife." + }, + { + "verseNum": 17, + "text": "If her father absolutely refuses to give her to him, the man still must pay an amount comparable to the bridal price of a virgin." + }, + { + "verseNum": 18, + "text": "You must not allow a sorceress to live." + }, + { + "verseNum": 19, + "text": "Whoever lies with an animal must surely be put to death." + }, + { + "verseNum": 20, + "text": "If anyone sacrifices to any god other than the LORD alone, he must be set apart for destruction." + }, + { + "verseNum": 21, + "text": "You must not exploit or oppress a foreign resident, for you yourselves were foreigners in the land of Egypt." + }, + { + "verseNum": 22, + "text": "You must not mistreat any widow or orphan." + }, + { + "verseNum": 23, + "text": "If you do mistreat them, and they cry out to Me in distress, I will surely hear their cry." + }, + { + "verseNum": 24, + "text": "My anger will be kindled, and I will kill you with the sword; then your wives will become widows and your children will be fatherless." + }, + { + "verseNum": 25, + "text": "If you lend money to one of My people among you who is poor, you must not act as a creditor to him; you are not to charge him interest." + }, + { + "verseNum": 26, + "text": "If you take your neighbor’s cloak as collateral, return it to him by sunset," + }, + { + "verseNum": 27, + "text": "because his cloak is the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will hear, for I am compassionate." + }, + { + "verseNum": 28, + "text": "You must not blaspheme God or curse the ruler of your people." + }, + { + "verseNum": 29, + "text": "You must not hold back offerings from your granaries or vats. You are to give Me the firstborn of your sons." + }, + { + "verseNum": 30, + "text": "You shall do likewise with your cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day you are to give them to Me." + }, + { + "verseNum": 31, + "text": "You are to be My holy people. You must not eat the meat of a mauled animal found in the field; you are to throw it to the dogs." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You shall not spread a false report. Do not join the wicked by being a malicious witness." + }, + { + "verseNum": 2, + "text": "You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert justice by siding with the crowd." + }, + { + "verseNum": 3, + "text": "And do not show favoritism to a poor man in his lawsuit." + }, + { + "verseNum": 4, + "text": "If you encounter your enemy’s stray ox or donkey, you must return it to him." + }, + { + "verseNum": 5, + "text": "If you see the donkey of one who hates you fallen under its load, do not leave it there; you must help him with it." + }, + { + "verseNum": 6, + "text": "You shall not deny justice to the poor in their lawsuits." + }, + { + "verseNum": 7, + "text": "Stay far away from a false accusation. Do not kill the innocent or the just, for I will not acquit the guilty." + }, + { + "verseNum": 8, + "text": "Do not accept a bribe, for a bribe blinds those who see and twists the words of the righteous." + }, + { + "verseNum": 9, + "text": "Do not oppress a foreign resident, since you yourselves know how it feels to be foreigners; for you were foreigners in the land of Egypt." + }, + { + "verseNum": 10, + "text": "For six years you are to sow your land and gather its produce," + }, + { + "verseNum": 11, + "text": "but in the seventh year you must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. Do the same with your vineyard and olive grove." + }, + { + "verseNum": 12, + "text": "For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the foreign resident." + }, + { + "verseNum": 13, + "text": "Pay close attention to everything I have said to you. You must not invoke the names of other gods; they must not be heard on your lips." + }, + { + "verseNum": 14, + "text": "Three times a year you are to celebrate a feast to Me." + }, + { + "verseNum": 15, + "text": "You are to keep the Feast of Unleavened Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleavened bread for seven days, because that was the month you came out of Egypt. No one may appear before Me empty-handed." + }, + { + "verseNum": 16, + "text": "You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field.\n \nAnd keep the Feast of Ingathering at the end of the year, when you gather your produce from the field." + }, + { + "verseNum": 17, + "text": "Three times a year all your males are to appear before the Lord GOD." + }, + { + "verseNum": 18, + "text": "You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My feast remain until morning." + }, + { + "verseNum": 19, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk." + }, + { + "verseNum": 20, + "text": "Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared." + }, + { + "verseNum": 21, + "text": "Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in him." + }, + { + "verseNum": 22, + "text": "But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes." + }, + { + "verseNum": 23, + "text": "For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, Hivites, and Jebusites, and I will annihilate them." + }, + { + "verseNum": 24, + "text": "You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to pieces." + }, + { + "verseNum": 25, + "text": "So you shall serve the LORD your God, and He will bless your bread and your water. And I will take away sickness from among you." + }, + { + "verseNum": 26, + "text": "No woman in your land will miscarry or be barren; I will fulfill the number of your days." + }, + { + "verseNum": 27, + "text": "I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run." + }, + { + "verseNum": 28, + "text": "I will send the hornet before you to drive the Hivites and Canaanites and Hittites out of your way." + }, + { + "verseNum": 29, + "text": "I will not drive them out before you in a single year; otherwise the land would become desolate and wild animals would multiply against you." + }, + { + "verseNum": 30, + "text": "Little by little I will drive them out ahead of you, until you become fruitful and possess the land." + }, + { + "verseNum": 31, + "text": "And I will establish your borders from the Red Sea to the Sea of the Philistines, and from the desert to the Euphrates. For I will deliver the inhabitants into your hand, and you will drive them out before you." + }, + { + "verseNum": 32, + "text": "You shall make no covenant with them or with their gods." + }, + { + "verseNum": 33, + "text": "They must not remain in your land, lest they cause you to sin against Me. For if you serve their gods, it will surely be a snare to you.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Come up to the LORD—you and Aaron, Nadab and Abihu, and seventy of Israel’s elders—and you are to worship at a distance." + }, + { + "verseNum": 2, + "text": "Moses alone shall approach the LORD, but the others must not come near. And the people may not go up with him.”" + }, + { + "verseNum": 3, + "text": "When Moses came and told the people all the words and ordinances of the LORD, they all responded with one voice: “All the words that the LORD has spoken, we will do.”" + }, + { + "verseNum": 4, + "text": "And Moses wrote down all the words of the LORD.\n \nEarly the next morning he got up and built an altar at the base of the mountain, along with twelve pillars for the twelve tribes of Israel." + }, + { + "verseNum": 5, + "text": "Then he sent out some young men of Israel, and they offered burnt offerings and sacrificed young bulls as peace offerings to the LORD." + }, + { + "verseNum": 6, + "text": "Moses took half of the blood and put it in bowls, and the other half he sprinkled on the altar." + }, + { + "verseNum": 7, + "text": "Then he took the Book of the Covenant and read it to the people, who replied, “All that the LORD has spoken we will do, and we will be obedient.”" + }, + { + "verseNum": 8, + "text": "So Moses took the blood, sprinkled it on the people, and said, “This is the blood of the covenant that the LORD has made with you in accordance with all these words.”" + }, + { + "verseNum": 9, + "text": "Then Moses went up with Aaron, Nadab and Abihu, and seventy of the elders of Israel," + }, + { + "verseNum": 10, + "text": "and they saw the God of Israel. Under His feet was a work like a pavement made of sapphire, as clear as the sky itself." + }, + { + "verseNum": 11, + "text": "But God did not lay His hand on the nobles of Israel; they saw Him, and they ate and drank." + }, + { + "verseNum": 12, + "text": "Then the LORD said to Moses, “Come up to Me on the mountain and stay here, so that I may give you the tablets of stone, with the law and commandments I have written for their instruction.”" + }, + { + "verseNum": 13, + "text": "So Moses set out with Joshua his attendant and went up on the mountain of God." + }, + { + "verseNum": 14, + "text": "And he said to the elders, “Wait here for us until we return to you. Aaron and Hur are here with you. Whoever has a dispute can go to them.”" + }, + { + "verseNum": 15, + "text": "When Moses went up on the mountain, the cloud covered it," + }, + { + "verseNum": 16, + "text": "and the glory of the LORD settled on Mount Sinai. For six days the cloud covered it, and on the seventh day the LORD called to Moses from within the cloud." + }, + { + "verseNum": 17, + "text": "And the sight of the glory of the LORD was like a consuming fire on the mountaintop in the eyes of the Israelites." + }, + { + "verseNum": 18, + "text": "Moses entered the cloud as he went up on the mountain, and he remained on the mountain forty days and forty nights." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to bring Me an offering. You are to receive My offering from every man whose heart compels him." + }, + { + "verseNum": 3, + "text": "This is the offering you are to accept from them:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 4, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 5, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 6, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 7, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 8, + "text": "And they are to make a sanctuary for Me, so that I may dwell among them." + }, + { + "verseNum": 9, + "text": "You must make the tabernacle and design all its furnishings according to the pattern I show you." + }, + { + "verseNum": 10, + "text": "And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "Overlay it with pure gold both inside and out, and make a gold molding around it." + }, + { + "verseNum": 12, + "text": "Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 13, + "text": "And make poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 14, + "text": "Insert the poles into the rings on the sides of the ark, in order to carry it." + }, + { + "verseNum": 15, + "text": "The poles are to remain in the rings of the ark; they must not be removed." + }, + { + "verseNum": 16, + "text": "And place inside the ark the Testimony, which I will give you." + }, + { + "verseNum": 17, + "text": "And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 18, + "text": "Make two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 19, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 20, + "text": "And the cherubim are to have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each other, looking toward the mercy seat." + }, + { + "verseNum": 21, + "text": "Set the mercy seat atop the ark, and put the Testimony that I will give you into the ark." + }, + { + "verseNum": 22, + "text": "And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the Israelites." + }, + { + "verseNum": 23, + "text": "You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 24, + "text": "Overlay it with pure gold and make a gold molding around it." + }, + { + "verseNum": 25, + "text": "And make a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 26, + "text": "Make four gold rings for the table and fasten them to the four corners at its four legs." + }, + { + "verseNum": 27, + "text": "The rings are to be close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 28, + "text": "Make the poles of acacia wood and overlay them with gold, so that the table may be carried with them." + }, + { + "verseNum": 29, + "text": "You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink offerings. Make them out of pure gold." + }, + { + "verseNum": 30, + "text": "And place the Bread of the Presence on the table before Me at all times." + }, + { + "verseNum": 31, + "text": "Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, including its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 32, + "text": "Six branches are to extend from the sides of the lampstand—three on one side and three on the other." + }, + { + "verseNum": 33, + "text": "There are to be three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand." + }, + { + "verseNum": 34, + "text": "And on the lampstand there shall be four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 35, + "text": "For the six branches that extend from the lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 36, + "text": "The buds and branches are to be all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 37, + "text": "Make seven lamps and set them up on the lampstand so that they illuminate the area in front of it." + }, + { + "verseNum": 38, + "text": "The wick trimmers and their trays must be of pure gold." + }, + { + "verseNum": 39, + "text": "The lampstand and all these utensils shall be made from a talent of pure gold." + }, + { + "verseNum": 40, + "text": "See to it that you make everything according to the pattern shown you on the mountain." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You are to construct the tabernacle itself with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and cherubim skillfully worked into them." + }, + { + "verseNum": 2, + "text": "Each curtain shall be twenty-eight cubits long and four cubits wide —all curtains the same size." + }, + { + "verseNum": 3, + "text": "Five of the curtains are to be joined together, and the other five joined as well." + }, + { + "verseNum": 4, + "text": "Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain in the second set." + }, + { + "verseNum": 5, + "text": "Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops line up opposite one another." + }, + { + "verseNum": 6, + "text": "Make fifty gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a unit." + }, + { + "verseNum": 7, + "text": "You are to make curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 8, + "text": "Each of the eleven curtains is to be the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 9, + "text": "Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent." + }, + { + "verseNum": 10, + "text": "Make fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 11, + "text": "Make fifty bronze clasps and put them through the loops to join the tent together as a unit." + }, + { + "verseNum": 12, + "text": "As for the overlap that remains of the tent curtains, the half curtain that is left over shall hang down over the back of the tabernacle." + }, + { + "verseNum": 13, + "text": "And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of the tabernacle to cover it." + }, + { + "verseNum": 14, + "text": "Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 15, + "text": "You are to construct upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 16, + "text": "Each frame is to be ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 17, + "text": "Two tenons must be connected to each other for each frame. Make all the frames of the tabernacle in this way." + }, + { + "verseNum": 18, + "text": "Construct twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 19, + "text": "with forty silver bases under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 20, + "text": "For the second side of the tabernacle, the north side, make twenty frames" + }, + { + "verseNum": 21, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 22, + "text": "Make six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 23, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 24, + "text": "coupled together from bottom to top and fitted into a single ring. These will serve as the two corners." + }, + { + "verseNum": 25, + "text": "So there are to be eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 26, + "text": "You are also to make five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 27, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 28, + "text": "The central crossbar in the middle of the frames shall extend from one end to the other." + }, + { + "verseNum": 29, + "text": "Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold." + }, + { + "verseNum": 30, + "text": "So you are to set up the tabernacle according to the pattern shown you on the mountain." + }, + { + "verseNum": 31, + "text": "Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 32, + "text": "Hang it with gold hooks on four posts of acacia wood, overlaid with gold and standing on four silver bases." + }, + { + "verseNum": 33, + "text": "And hang the veil from the clasps and place the ark of the Testimony behind the veil. So the veil will separate the Holy Place from the Most Holy Place." + }, + { + "verseNum": 34, + "text": "Put the mercy seat on the ark of the Testimony in the Most Holy Place." + }, + { + "verseNum": 35, + "text": "And place the table outside the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the south side." + }, + { + "verseNum": 36, + "text": "For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen." + }, + { + "verseNum": 37, + "text": "Make five posts of acacia wood for the curtain, overlay them with gold hooks, and cast five bronze bases for them." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You are to build an altar of acacia wood. The altar must be square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with bronze." + }, + { + "verseNum": 3, + "text": "Make all its utensils of bronze—its pots for removing ashes, its shovels, its sprinkling bowls, its meat forks, and its firepans." + }, + { + "verseNum": 4, + "text": "Construct for it a grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh." + }, + { + "verseNum": 5, + "text": "Set the grate beneath the ledge of the altar, so that the mesh comes halfway up the altar." + }, + { + "verseNum": 6, + "text": "Additionally, make poles of acacia wood for the altar and overlay them with bronze." + }, + { + "verseNum": 7, + "text": "The poles are to be inserted into the rings so that the poles are on two sides of the altar when it is carried." + }, + { + "verseNum": 8, + "text": "Construct the altar with boards so that it is hollow. It is to be made just as you were shown on the mountain." + }, + { + "verseNum": 9, + "text": "You are also to make a courtyard for the tabernacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long on one side," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 12, + "text": "The curtains on the west side of the courtyard shall be fifty cubits wide, with ten posts and ten bases." + }, + { + "verseNum": 13, + "text": "The east side of the courtyard, toward the sunrise, is to be fifty cubits wide." + }, + { + "verseNum": 14, + "text": "Make the curtains on one side fifteen cubits long, with three posts and three bases," + }, + { + "verseNum": 15, + "text": "and the curtains on the other side fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 16, + "text": "The gate of the courtyard shall be twenty cubits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It shall have four posts and four bases." + }, + { + "verseNum": 17, + "text": "All the posts around the courtyard shall have silver bands, silver hooks, and bronze bases." + }, + { + "verseNum": 18, + "text": "The entire courtyard shall be a hundred cubits long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze bases." + }, + { + "verseNum": 19, + "text": "All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs of the courtyard, shall be made of bronze." + }, + { + "verseNum": 20, + "text": "And you are to command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 21, + "text": "In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Next, have your brother Aaron brought to you from among the Israelites, along with his sons Nadab, Abihu, Eleazar, and Ithamar, to serve Me as priests." + }, + { + "verseNum": 2, + "text": "Make holy garments for your brother Aaron, to give him glory and splendor." + }, + { + "verseNum": 3, + "text": "You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that he may serve Me as priest." + }, + { + "verseNum": 4, + "text": "These are the garments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they may serve Me as priests." + }, + { + "verseNum": 5, + "text": "They shall use gold, along with blue, purple, and scarlet yarn, and fine linen." + }, + { + "verseNum": 6, + "text": "They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 7, + "text": "It shall have two shoulder pieces attached at two of its corners, so it can be fastened." + }, + { + "verseNum": 8, + "text": "And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "Take two onyx stones and engrave on them the names of the sons of Israel:" + }, + { + "verseNum": 10, + "text": "six of their names on one stone and the remaining six on the other, in the order of their birth." + }, + { + "verseNum": 11, + "text": "Engrave the names of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the stones in gold filigree settings." + }, + { + "verseNum": 12, + "text": "Fasten both stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a memorial before the LORD." + }, + { + "verseNum": 13, + "text": "Fashion gold filigree settings" + }, + { + "verseNum": 14, + "text": "and two chains of pure gold, made of braided cord work; and attach these chains to the settings." + }, + { + "verseNum": 15, + "text": "You are also to make a breastpiece of judgment with the same workmanship as the ephod. Construct it with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 16, + "text": "It must be square when folded over double, a span long and a span wide." + }, + { + "verseNum": 17, + "text": "And mount on it a setting of gemstones, four rows of stones:\n \n In the first row there shall be a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 18, + "text": "in the second row a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 19, + "text": "in the third row a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 20, + "text": "and in the fourth row a beryl, an onyx, and a jasper.\n \nMount these stones in gold filigree settings." + }, + { + "verseNum": 21, + "text": "The twelve stones are to correspond to the names of the sons of Israel, each engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 22, + "text": "For the breastpiece, make braided chains like cords of pure gold." + }, + { + "verseNum": 23, + "text": "You are also to make two gold rings and fasten them to the two corners of the breastpiece." + }, + { + "verseNum": 24, + "text": "Then fasten the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 25, + "text": "and fasten the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 26, + "text": "Make two more gold rings and attach them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 27, + "text": "Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband." + }, + { + "verseNum": 28, + "text": "The rings of the breastpiece shall be tied to the rings of the ephod with a cord of blue yarn, so that the breastpiece is above the waistband of the ephod and does not swing out from the ephod." + }, + { + "verseNum": 29, + "text": "Whenever Aaron enters the Holy Place, he shall bear the names of the sons of Israel over his heart on the breastpiece of judgment, as a continual reminder before the LORD." + }, + { + "verseNum": 30, + "text": "And place the Urim and Thummim in the breastpiece of judgment, so that they will also be over Aaron’s heart whenever he comes before the LORD. Aaron will continually carry the judgment of the sons of Israel over his heart before the LORD." + }, + { + "verseNum": 31, + "text": "You are to make the robe of the ephod entirely of blue cloth," + }, + { + "verseNum": 32, + "text": "with an opening at its top in the center. Around the opening shall be a woven collar with an opening like that of a garment, so that it will not tear." + }, + { + "verseNum": 33, + "text": "Make pomegranates of blue, purple, and scarlet yarn all the way around the lower hem, with gold bells between them," + }, + { + "verseNum": 34, + "text": "alternating the gold bells and pomegranates around the lower hem of the robe." + }, + { + "verseNum": 35, + "text": "Aaron must wear the robe whenever he ministers, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he will not die." + }, + { + "verseNum": 36, + "text": "You are to make a plate of pure gold and engrave on it as on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 37, + "text": "Fasten to it a blue cord to mount it on the turban; it shall be on the front of the turban." + }, + { + "verseNum": 38, + "text": "And it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so that they may be acceptable before the LORD." + }, + { + "verseNum": 39, + "text": "You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an embroidered sash." + }, + { + "verseNum": 40, + "text": "Make tunics, sashes, and headbands for Aaron’s sons, to give them glory and splendor." + }, + { + "verseNum": 41, + "text": "After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me as priests." + }, + { + "verseNum": 42, + "text": "Make linen undergarments to cover their bare flesh, extending from waist to thigh." + }, + { + "verseNum": 43, + "text": "Aaron and his sons must wear them whenever they enter the Tent of Meeting or approach the altar to minister in the Holy Place, so that they will not incur guilt and die. This is to be a permanent statute for Aaron and his descendants." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is what you are to do to consecrate Aaron and his sons to serve Me as priests: Take a young bull and two rams without blemish," + }, + { + "verseNum": 2, + "text": "along with unleavened bread, unleavened cakes mixed with oil, and unleavened wafers anointed with oil. Make them out of fine wheat flour," + }, + { + "verseNum": 3, + "text": "put them in a basket, and present them in the basket, along with the bull and the two rams." + }, + { + "verseNum": 4, + "text": "Then present Aaron and his sons at the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 5, + "text": "Take the garments and clothe Aaron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the ephod on him with its woven waistband." + }, + { + "verseNum": 6, + "text": "Put the turban on his head and attach the holy diadem to the turban." + }, + { + "verseNum": 7, + "text": "Then take the anointing oil and anoint him by pouring it on his head." + }, + { + "verseNum": 8, + "text": "Present his sons as well and clothe them with tunics." + }, + { + "verseNum": 9, + "text": "Wrap the sashes around Aaron and his sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this way you are to ordain Aaron and his sons." + }, + { + "verseNum": 10, + "text": "You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 11, + "text": "And you shall slaughter the bull before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Take some of the blood of the bull and put it on the horns of the altar with your finger; then pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 13, + "text": "Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar." + }, + { + "verseNum": 14, + "text": "But burn the flesh of the bull and its hide and dung outside the camp; it is a sin offering." + }, + { + "verseNum": 15, + "text": "Take one of the rams, and Aaron and his sons shall lay their hands on its head." + }, + { + "verseNum": 16, + "text": "You are to slaughter the ram, take its blood, and sprinkle it on all sides of the altar." + }, + { + "verseNum": 17, + "text": "Cut the ram into pieces, wash the entrails and legs, and place them with its head and other pieces." + }, + { + "verseNum": 18, + "text": "Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 19, + "text": "Take the second ram, and Aaron and his sons are to lay their hands on its head." + }, + { + "verseNum": 20, + "text": "Slaughter the ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Sprinkle the remaining blood on all sides of the altar." + }, + { + "verseNum": 21, + "text": "And take some of the blood on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as well as on his sons and their garments. Then he and his garments will be consecrated, as well as his sons and their garments." + }, + { + "verseNum": 22, + "text": "Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh (since this is a ram for ordination)," + }, + { + "verseNum": 23, + "text": "along with one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened bread that is before the LORD." + }, + { + "verseNum": 24, + "text": "Put all these in the hands of Aaron and his sons and wave them before the LORD as a wave offering." + }, + { + "verseNum": 25, + "text": "Then take them from their hands and burn them on the altar atop the burnt offering as a pleasing aroma before the LORD; it is an offering made by fire to the LORD." + }, + { + "verseNum": 26, + "text": "Take the breast of the ram of Aaron’s ordination and wave it before the LORD as a wave offering, and it will be your portion." + }, + { + "verseNum": 27, + "text": "Consecrate for Aaron and his sons the breast of the wave offering that is waved and the thigh of the heave offering that is lifted up from the ram of ordination." + }, + { + "verseNum": 28, + "text": "This will belong to Aaron and his sons as a regular portion from the Israelites, for it is the heave offering the Israelites will make to the LORD from their peace offerings." + }, + { + "verseNum": 29, + "text": "The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them." + }, + { + "verseNum": 30, + "text": "The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear them for seven days." + }, + { + "verseNum": 31, + "text": "You are to take the ram of ordination and boil its flesh in a holy place." + }, + { + "verseNum": 32, + "text": "At the entrance to the Tent of Meeting, Aaron and his sons are to eat the meat of the ram and the bread that is in the basket." + }, + { + "verseNum": 33, + "text": "They must eat those things by which atonement was made for their ordination and consecration. But no outsider may eat them, because these things are sacred." + }, + { + "verseNum": 34, + "text": "And if any of the meat of ordination or any bread is left until the morning, you are to burn up the remainder. It must not be eaten, because it is sacred." + }, + { + "verseNum": 35, + "text": "This is what you are to do for Aaron and his sons based on all that I have commanded you, taking seven days to ordain them." + }, + { + "verseNum": 36, + "text": "Sacrifice a bull as a sin offering each day for atonement. Purify the altar by making atonement for it, and anoint it to consecrate it." + }, + { + "verseNum": 37, + "text": "For seven days you shall make atonement for the altar and consecrate it. Then the altar will become most holy; whatever touches the altar will be holy." + }, + { + "verseNum": 38, + "text": "This is what you are to offer regularly on the altar, each day: two lambs that are a year old." + }, + { + "verseNum": 39, + "text": "Offer one lamb in the morning and the other at twilight." + }, + { + "verseNum": 40, + "text": "With the first lamb offer a tenth of an ephah of fine flour, mixed with a quarter hin of oil from pressed olives, and a drink offering of a quarter hin of wine." + }, + { + "verseNum": 41, + "text": "And offer the second lamb at twilight with the same grain offering and drink offering as in the morning, as a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 42, + "text": "For the generations to come, this burnt offering shall be made regularly at the entrance to the Tent of Meeting before the LORD, where I will meet you to speak with you." + }, + { + "verseNum": 43, + "text": "I will also meet with the Israelites there, and that place will be consecrated by My glory." + }, + { + "verseNum": 44, + "text": "So I will consecrate the Tent of Meeting and the altar, and I will consecrate Aaron and his sons to serve Me as priests." + }, + { + "verseNum": 45, + "text": "Then I will dwell among the Israelites and be their God." + }, + { + "verseNum": 46, + "text": "And they will know that I am the LORD their God, who brought them out of the land of Egypt so that I might dwell among them.\n \nI am the LORD their God." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You are also to make an altar of acacia wood for the burning of incense." + }, + { + "verseNum": 2, + "text": "It is to be square, a cubit long, a cubit wide, and two cubits high. Its horns must be of one piece." + }, + { + "verseNum": 3, + "text": "Overlay with pure gold the top and all the sides and horns, and make a molding of gold around it." + }, + { + "verseNum": 4, + "text": "And make two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 5, + "text": "Make the poles of acacia wood and overlay them with gold." + }, + { + "verseNum": 6, + "text": "Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you." + }, + { + "verseNum": 7, + "text": "And Aaron is to burn fragrant incense on it every morning when he tends the lamps." + }, + { + "verseNum": 8, + "text": "When Aaron sets up the lamps at twilight, he must burn the incense perpetually before the LORD for the generations to come." + }, + { + "verseNum": 9, + "text": "On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it." + }, + { + "verseNum": 10, + "text": "Once a year Aaron shall make atonement on the horns of the altar. Throughout your generations he shall make atonement on it annually with the blood of the sin offering of atonement. The altar is most holy to the LORD.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come upon them when they are numbered." + }, + { + "verseNum": 13, + "text": "Everyone who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is an offering to the LORD." + }, + { + "verseNum": 14, + "text": "Everyone twenty years of age or older who crosses over must give this offering to the LORD." + }, + { + "verseNum": 15, + "text": "In making the offering to the LORD to atone for your lives, the rich shall not give more than a half shekel, nor shall the poor give less." + }, + { + "verseNum": 16, + "text": "Take the atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD to make atonement for your lives.”" + }, + { + "verseNum": 17, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and the altar, and put water in it," + }, + { + "verseNum": 19, + "text": "with which Aaron and his sons are to wash their hands and feet." + }, + { + "verseNum": 20, + "text": "Whenever they enter the Tent of Meeting or approach the altar to minister by presenting an offering made by fire to the LORD, they must wash with water so that they will not die." + }, + { + "verseNum": 21, + "text": "Thus they are to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to come.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Take the finest spices: 500 shekels of liquid myrrh, half that amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane," + }, + { + "verseNum": 24, + "text": "500 shekels of cassia —all according to the sanctuary shekel—and a hin of olive oil." + }, + { + "verseNum": 25, + "text": "Prepare from these a sacred anointing oil, a fragrant blend, the work of a perfumer; it will be a sacred anointing oil." + }, + { + "verseNum": 26, + "text": "Use this oil to anoint the Tent of Meeting, the ark of the Testimony," + }, + { + "verseNum": 27, + "text": "the table and all its utensils, the lampstand and its utensils, the altar of incense," + }, + { + "verseNum": 28, + "text": "the altar of burnt offering and all its utensils, and the basin with its stand." + }, + { + "verseNum": 29, + "text": "You are to consecrate them so that they will be most holy. Whatever touches them shall be holy." + }, + { + "verseNum": 30, + "text": "Anoint Aaron and his sons and consecrate them to serve Me as priests." + }, + { + "verseNum": 31, + "text": "And you are to tell the Israelites, ‘This will be My sacred anointing oil for the generations to come." + }, + { + "verseNum": 32, + "text": "It must not be used to anoint an ordinary man, and you must not make anything like it with the same formula. It is holy, and it must be holy to you." + }, + { + "verseNum": 33, + "text": "Anyone who mixes perfume like it or puts it on an outsider shall be cut off from his people.’”" + }, + { + "verseNum": 34, + "text": "The LORD also said to Moses, “Take fragrant spices—gum resin, onycha, galbanum, and pure frankincense—in equal measures," + }, + { + "verseNum": 35, + "text": "and make a fragrant blend of incense, the work of a perfumer, seasoned with salt, pure and holy." + }, + { + "verseNum": 36, + "text": "Grind some of it into fine powder and place it in front of the Testimony in the Tent of Meeting, where I will meet with you. It shall be most holy to you." + }, + { + "verseNum": 37, + "text": "You are never to use this formula to make incense for yourselves; you shall regard it as holy to the LORD." + }, + { + "verseNum": 38, + "text": "Anyone who makes something like it to enjoy its fragrance shall be cut off from his people.”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“See, I have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 3, + "text": "And I have filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 4, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 5, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every craft." + }, + { + "verseNum": 6, + "text": "Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant.\n \nI have also given skill to all the craftsmen, that they may fashion all that I have commanded you:" + }, + { + "verseNum": 7, + "text": "the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other furnishings of the tent—" + }, + { + "verseNum": 8, + "text": "the table with its utensils, the pure gold lampstand with all its utensils, the altar of incense," + }, + { + "verseNum": 9, + "text": "the altar of burnt offering with all its utensils, and the basin with its stand—" + }, + { + "verseNum": 10, + "text": "as well as the woven garments, both the holy garments for Aaron the priest and the garments for his sons to serve as priests," + }, + { + "verseNum": 11, + "text": "in addition to the anointing oil and fragrant incense for the Holy Place. They are to make them according to all that I have commanded you.”" + }, + { + "verseNum": 12, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 13, + "text": "“Tell the Israelites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you." + }, + { + "verseNum": 14, + "text": "Keep the Sabbath, for it is holy to you. Anyone who profanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people." + }, + { + "verseNum": 15, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to death." + }, + { + "verseNum": 16, + "text": "The Israelites must keep the Sabbath, celebrating it as a permanent covenant for the generations to come." + }, + { + "verseNum": 17, + "text": "It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh day He rested and was refreshed.’”" + }, + { + "verseNum": 18, + "text": "When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tablets of the Testimony, tablets of stone inscribed by the finger of God." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!”" + }, + { + "verseNum": 2, + "text": "So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, and bring them to me.”" + }, + { + "verseNum": 3, + "text": "Then all the people took off their gold earrings and brought them to Aaron." + }, + { + "verseNum": 4, + "text": "He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you up out of the land of Egypt!”" + }, + { + "verseNum": 5, + "text": "When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a feast to the LORD.”" + }, + { + "verseNum": 6, + "text": "So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink, and got up to indulge in revelry." + }, + { + "verseNum": 7, + "text": "Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves." + }, + { + "verseNum": 8, + "text": "How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of the land of Egypt.’”" + }, + { + "verseNum": 9, + "text": "The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked people." + }, + { + "verseNum": 10, + "text": "Now leave Me alone, so that My anger may burn against them and consume them. Then I will make you into a great nation.”" + }, + { + "verseNum": 11, + "text": "But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand?" + }, + { + "verseNum": 12, + "text": "Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from the face of the earth’? Turn from Your fierce anger and relent from doing harm to Your people." + }, + { + "verseNum": 13, + "text": "Remember Your servants Abraham, Isaac, and Israel, to whom You swore by Your very self when You declared, ‘I will make your descendants as numerous as the stars in the sky, and I will give your descendants all this land that I have promised, and it shall be their inheritance forever.’”" + }, + { + "verseNum": 14, + "text": "So the LORD relented from the calamity He had threatened to bring on His people." + }, + { + "verseNum": 15, + "text": "Then Moses turned and went down the mountain with the two tablets of the Testimony in his hands. They were inscribed on both sides, front and back." + }, + { + "verseNum": 16, + "text": "The tablets were the work of God, and the writing was the writing of God, engraved on the tablets." + }, + { + "verseNum": 17, + "text": "When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is in the camp.”" + }, + { + "verseNum": 18, + "text": "But Moses replied:\n \n “It is neither the cry of victory nor the cry of defeat;\n I hear the sound of singing!”" + }, + { + "verseNum": 19, + "text": "As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering them at the base of the mountain." + }, + { + "verseNum": 20, + "text": "Then he took the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the Israelites to drink it." + }, + { + "verseNum": 21, + "text": "“What did this people do to you,” Moses asked Aaron, “that you have led them into so great a sin?”" + }, + { + "verseNum": 22, + "text": "“Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on evil." + }, + { + "verseNum": 23, + "text": "They told me, ‘Make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to him!’" + }, + { + "verseNum": 24, + "text": "So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I threw it into the fire, out came this calf!”" + }, + { + "verseNum": 25, + "text": "Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock to their enemies." + }, + { + "verseNum": 26, + "text": "So Moses stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.”\n \nAnd all the Levites gathered around him." + }, + { + "verseNum": 27, + "text": "He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp from gate to gate, and slay his brother, his friend, and his neighbor.’”" + }, + { + "verseNum": 28, + "text": "The Levites did as Moses commanded, and that day about three thousand of the people fell dead." + }, + { + "verseNum": 29, + "text": "Afterward, Moses said, “Today you have been ordained for service to the LORD, since each man went against his son and his brother; so the LORD has bestowed a blessing on you this day.”" + }, + { + "verseNum": 30, + "text": "The next day Moses said to the people, “You have committed a great sin. Now I will go up to the LORD; perhaps I can make atonement for your sin.”" + }, + { + "verseNum": 31, + "text": "So Moses returned to the LORD and said, “Oh, what a great sin these people have committed! They have made gods of gold for themselves." + }, + { + "verseNum": 32, + "text": "Yet now, if You would only forgive their sin.... But if not, please blot me out of the book that You have written.”" + }, + { + "verseNum": 33, + "text": "The LORD replied to Moses, “Whoever has sinned against Me, I will blot out of My book." + }, + { + "verseNum": 34, + "text": "Now go, lead the people to the place I described. Behold, My angel shall go before you. But on the day I settle accounts, I will punish them for their sin.”" + }, + { + "verseNum": 35, + "text": "And the LORD sent a plague on the people because of what they had done with the calf that Aaron had made." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Leave this place, you and the people you brought up out of the land of Egypt, and go to the land that I promised to Abraham, Isaac, and Jacob when I said, ‘I will give it to your descendants.’" + }, + { + "verseNum": 2, + "text": "And I will send an angel before you, and I will drive out the Canaanites, Amorites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 3, + "text": "Go up to a land flowing with milk and honey. But I will not go with you, because you are a stiff-necked people; otherwise, I might destroy you on the way.”" + }, + { + "verseNum": 4, + "text": "When the people heard these bad tidings, they went into mourning, and no one put on any of his jewelry." + }, + { + "verseNum": 5, + "text": "For the LORD had said to Moses, “Tell the Israelites, ‘You are a stiff-necked people. If I should go with you for a single moment, I would destroy you. Now take off your jewelry, and I will decide what to do with you.’”" + }, + { + "verseNum": 6, + "text": "So the Israelites stripped themselves of their jewelry from Mount Horeb onward." + }, + { + "verseNum": 7, + "text": "Now Moses used to take the tent and pitch it at a distance outside the camp. He called it the Tent of Meeting, and anyone inquiring of the LORD would go to the Tent of Meeting outside the camp." + }, + { + "verseNum": 8, + "text": "Then, whenever Moses went out to the tent, all the people would stand at the entrances to their own tents and watch Moses until he entered the tent." + }, + { + "verseNum": 9, + "text": "As Moses entered the tent, the pillar of cloud would come down and remain at the entrance, and the LORD would speak with Moses." + }, + { + "verseNum": 10, + "text": "When all the people saw the pillar of cloud standing at the entrance to the tent, they would stand up and worship, each one at the entrance to his own tent." + }, + { + "verseNum": 11, + "text": "Thus the LORD would speak to Moses face to face, as a man speaks to his friend. Then Moses would return to the camp, but his young assistant Joshua son of Nun would not leave the tent." + }, + { + "verseNum": 12, + "text": "Then Moses said to the LORD, “Look, You have been telling me, ‘Lead this people up,’ but You have not let me know whom You will send with me. Yet You have said, ‘I know you by name, and you have found favor in My sight.’" + }, + { + "verseNum": 13, + "text": "Now if indeed I have found favor in Your sight, please let me know Your ways, that I may know You and find favor in Your sight. Remember that this nation is Your people.”" + }, + { + "verseNum": 14, + "text": "And the LORD answered, “My Presence will go with you, and I will give you rest.”" + }, + { + "verseNum": 15, + "text": "“If Your Presence does not go with us,” Moses replied, “do not lead us up from here." + }, + { + "verseNum": 16, + "text": "For how then can it be known that Your people and I have found favor in Your sight, unless You go with us? How else will we be distinguished from all the other people on the face of the earth?”" + }, + { + "verseNum": 17, + "text": "So the LORD said to Moses, “I will do this very thing you have asked, for you have found favor in My sight, and I know you by name.”" + }, + { + "verseNum": 18, + "text": "Then Moses said, “Please show me Your glory.”" + }, + { + "verseNum": 19, + "text": "“I will cause all My goodness to pass before you,” the LORD replied, “and I will proclaim My name—the LORD—in your presence. I will have mercy on whom I have mercy, and I will have compassion on whom I have compassion.”" + }, + { + "verseNum": 20, + "text": "But He added, “You cannot see My face, for no one can see Me and live.”" + }, + { + "verseNum": 21, + "text": "The LORD continued, “There is a place near Me where you are to stand upon a rock," + }, + { + "verseNum": 22, + "text": "and when My glory passes by, I will put you in a cleft of the rock and cover you with My hand until I have passed by." + }, + { + "verseNum": 23, + "text": "Then I will take My hand away, and you will see My back; but My face must not be seen.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I will write on them the words that were on the first tablets, which you broke." + }, + { + "verseNum": 2, + "text": "Be ready in the morning, and come up on Mount Sinai to present yourself before Me on the mountaintop." + }, + { + "verseNum": 3, + "text": "No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks or herds may graze in front of the mountain.”" + }, + { + "verseNum": 4, + "text": "So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and taking the two stone tablets in his hands, he went up Mount Sinai as the LORD had commanded him." + }, + { + "verseNum": 5, + "text": "And the LORD descended in a cloud, stood with him there, and proclaimed His name, the LORD." + }, + { + "verseNum": 6, + "text": "Then the LORD passed in front of Moses and called out:\n “The LORD, the LORD God,\n is compassionate and gracious,\n slow to anger,\n abounding in loving devotion and faithfulness," + }, + { + "verseNum": 7, + "text": "maintaining loving devotion to a thousand generations,\n forgiving iniquity, transgression, and sin.\n Yet He will by no means leave the guilty unpunished;\n He will visit the iniquity of the fathers\n on their children and grandchildren\n to the third and fourth generations.”" + }, + { + "verseNum": 8, + "text": "Moses immediately bowed down to the ground and worshiped." + }, + { + "verseNum": 9, + "text": "“O Lord,” he said, “if I have indeed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your inheritance.”" + }, + { + "verseNum": 10, + "text": "And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All the people among whom you live will see the LORD’s work, for it is an awesome thing that I am doing with you." + }, + { + "verseNum": 11, + "text": "Observe what I command you this day. I will drive out before you the Amorites, Canaanites, Hittites, Perizzites, Hivites, and Jebusites." + }, + { + "verseNum": 12, + "text": "Be careful not to make a treaty with the inhabitants of the land you are entering, lest they become a snare in your midst." + }, + { + "verseNum": 13, + "text": "Rather, you must tear down their altars, smash their sacred stones, and chop down their Asherah poles." + }, + { + "verseNum": 14, + "text": "For you must not worship any other god, for the LORD, whose name is Jealous, is a jealous God." + }, + { + "verseNum": 15, + "text": "Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will invite you, and you will eat their sacrifices." + }, + { + "verseNum": 16, + "text": "And when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to do the same." + }, + { + "verseNum": 17, + "text": "You shall make no molten gods for yourselves." + }, + { + "verseNum": 18, + "text": "You are to keep the Feast of Unleavened Bread. For seven days at the appointed time in the month of Abib, you are to eat unleavened bread as I commanded you. For in the month of Abib you came out of Egypt." + }, + { + "verseNum": 19, + "text": "The first offspring of every womb belongs to Me, including all the firstborn males among your livestock, whether cattle or sheep." + }, + { + "verseNum": 20, + "text": "You must redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty-handed." + }, + { + "verseNum": 21, + "text": "Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and harvesting, you must rest." + }, + { + "verseNum": 22, + "text": "And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the Feast of Ingathering at the turn of the year." + }, + { + "verseNum": 23, + "text": "Three times a year all your males are to appear before the Lord GOD, the God of Israel." + }, + { + "verseNum": 24, + "text": "For I will drive out the nations before you and enlarge your borders, and no one will covet your land when you go up three times a year to appear before the LORD your God." + }, + { + "verseNum": 25, + "text": "Do not offer the blood of a sacrifice to Me along with anything leavened, and do not let any of the sacrifice from the Passover Feast remain until morning." + }, + { + "verseNum": 26, + "text": "Bring the best of the firstfruits of your soil to the house of the LORD your God.\n \nYou must not cook a young goat in its mother’s milk.”" + }, + { + "verseNum": 27, + "text": "The LORD also said to Moses, “Write down these words, for in accordance with these words I have made a covenant with you and with Israel.”" + }, + { + "verseNum": 28, + "text": "So Moses was there with the LORD forty days and forty nights without eating bread or drinking water. He wrote on the tablets the words of the covenant—the Ten Commandments." + }, + { + "verseNum": 29, + "text": "And when Moses came down from Mount Sinai with the two tablets of the Testimony in his hands, he was unaware that his face had become radiant from speaking with the LORD." + }, + { + "verseNum": 30, + "text": "Aaron and all the Israelites looked at Moses, and behold, his face was radiant. And they were afraid to approach him." + }, + { + "verseNum": 31, + "text": "But Moses called out to them; so Aaron and all the leaders of the congregation returned to him, and Moses spoke to them." + }, + { + "verseNum": 32, + "text": "And after this all the Israelites came near, and Moses commanded them to do everything that the LORD had told him on Mount Sinai." + }, + { + "verseNum": 33, + "text": "When Moses had finished speaking with them, he put a veil over his face." + }, + { + "verseNum": 34, + "text": "But whenever Moses went in before the LORD to speak with Him, he would remove the veil until he came out. And when he came out, he would tell the Israelites what he had been commanded," + }, + { + "verseNum": 35, + "text": "and the Israelites would see that the face of Moses was radiant. So Moses would put the veil back over his face until he went in to speak with the LORD." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Then Moses assembled the whole congregation of Israel and said to them, “These are the things that the LORD has commanded you to do:" + }, + { + "verseNum": 2, + "text": "For six days work may be done, but the seventh day shall be your holy day, a Sabbath of complete rest to the LORD. Whoever does any work on that day must be put to death." + }, + { + "verseNum": 3, + "text": "Do not light a fire in any of your dwellings on the Sabbath day.”" + }, + { + "verseNum": 4, + "text": "Moses also told the whole congregation of Israel, “This is what the LORD has commanded:" + }, + { + "verseNum": 5, + "text": "Take from among you an offering to the LORD. Let everyone whose heart is willing bring an offering to the LORD:\n \n gold, silver, and bronze;" + }, + { + "verseNum": 6, + "text": "blue, purple, and scarlet yarn;\n \n fine linen and goat hair;" + }, + { + "verseNum": 7, + "text": "ram skins dyed red and fine leather;\n \n acacia wood;" + }, + { + "verseNum": 8, + "text": "olive oil for the light;\n \n spices for the anointing oil and for the fragrant incense;" + }, + { + "verseNum": 9, + "text": "and onyx stones and gemstones to be mounted on the ephod and breastpiece." + }, + { + "verseNum": 10, + "text": "Let every skilled craftsman among you come and make everything that the LORD has commanded:" + }, + { + "verseNum": 11, + "text": "the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, and bases;" + }, + { + "verseNum": 12, + "text": "the ark with its poles and mercy seat, and the veil to shield it;" + }, + { + "verseNum": 13, + "text": "the table with its poles, all its utensils, and the Bread of the Presence;" + }, + { + "verseNum": 14, + "text": "the lampstand for light with its accessories and lamps and oil for the light;" + }, + { + "verseNum": 15, + "text": "the altar of incense with its poles;\n \n the anointing oil and fragrant incense;\n \n the curtain for the doorway at the entrance to the tabernacle;" + }, + { + "verseNum": 16, + "text": "the altar of burnt offering with its bronze grate, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 17, + "text": "the curtains of the courtyard with its posts and bases, and the curtain for the gate of the courtyard;" + }, + { + "verseNum": 18, + "text": "the tent pegs for the tabernacle and for the courtyard, along with their ropes;" + }, + { + "verseNum": 19, + "text": "and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.”" + }, + { + "verseNum": 20, + "text": "Then the whole congregation of Israel withdrew from the presence of Moses." + }, + { + "verseNum": 21, + "text": "And everyone whose heart stirred him and whose spirit prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for all its services, and for the holy garments." + }, + { + "verseNum": 22, + "text": "So all who had willing hearts, both men and women, came and brought brooches and earrings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a wave offering to the LORD." + }, + { + "verseNum": 23, + "text": "Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them." + }, + { + "verseNum": 24, + "text": "And all who could present an offering of silver or bronze brought it as a contribution to the LORD. Also, everyone who had acacia wood for any part of the service brought it." + }, + { + "verseNum": 25, + "text": "Every skilled woman spun with her hands and brought what she had spun: blue, purple, or scarlet yarn, or fine linen." + }, + { + "verseNum": 26, + "text": "And all the skilled women whose hearts were stirred spun the goat hair." + }, + { + "verseNum": 27, + "text": "The leaders brought onyx stones and gemstones to mount on the ephod and breastpiece," + }, + { + "verseNum": 28, + "text": "as well as spices and olive oil for the light, for the anointing oil, and for the fragrant incense." + }, + { + "verseNum": 29, + "text": "So all the men and women of the Israelites whose hearts prompted them brought a freewill offering to the LORD for all the work that the LORD through Moses had commanded them to do." + }, + { + "verseNum": 30, + "text": "Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah." + }, + { + "verseNum": 31, + "text": "And He has filled him with the Spirit of God, with skill, ability, and knowledge in all kinds of craftsmanship," + }, + { + "verseNum": 32, + "text": "to design artistic works in gold, silver, and bronze," + }, + { + "verseNum": 33, + "text": "to cut gemstones for settings, and to carve wood, so that he may be a master of every artistic craft." + }, + { + "verseNum": 34, + "text": "And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others." + }, + { + "verseNum": 35, + "text": "He has filled them with skill to do all kinds of work as engravers, designers, embroiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“So Bezalel, Oholiab, and every skilled person are to carry out everything commanded by the LORD, who has given them skill and ability to know how to perform all the work of constructing the sanctuary.”" + }, + { + "verseNum": 2, + "text": "Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had gifted—everyone whose heart stirred him to come and do the work." + }, + { + "verseNum": 3, + "text": "They received from Moses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary.\n \nMeanwhile, the people continued to bring freewill offerings morning after morning," + }, + { + "verseNum": 4, + "text": "so that all the skilled craftsmen who were doing all the work on the sanctuary left their work" + }, + { + "verseNum": 5, + "text": "and said to Moses, “The people are bringing more than enough for doing the work the LORD has commanded us to do.”" + }, + { + "verseNum": 6, + "text": "After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were restrained from bringing more," + }, + { + "verseNum": 7, + "text": "since what they already had was more than enough to perform all the work." + }, + { + "verseNum": 8, + "text": "All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully worked into them." + }, + { + "verseNum": 9, + "text": "Each curtain was twenty-eight cubits long and four cubits wide; all the curtains were the same size." + }, + { + "verseNum": 10, + "text": "And he joined five of the curtains together, and the other five he joined as well." + }, + { + "verseNum": 11, + "text": "He made loops of blue material on the edge of the end curtain in the first set, and also on the end curtain in the second set." + }, + { + "verseNum": 12, + "text": "He made fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined up opposite one another." + }, + { + "verseNum": 13, + "text": "He also made fifty gold clasps to join the curtains together, so that the tabernacle was a unit." + }, + { + "verseNum": 14, + "text": "He then made curtains of goat hair for the tent over the tabernacle—eleven curtains in all." + }, + { + "verseNum": 15, + "text": "Each of the eleven curtains was the same size—thirty cubits long and four cubits wide." + }, + { + "verseNum": 16, + "text": "He joined five of the curtains into one set and the other six into another." + }, + { + "verseNum": 17, + "text": "He made fifty loops along the edge of the end curtain in the first set, and fifty loops along the edge of the corresponding curtain in the second set." + }, + { + "verseNum": 18, + "text": "He also made fifty bronze clasps to join the tent together as a unit." + }, + { + "verseNum": 19, + "text": "Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of fine leather." + }, + { + "verseNum": 20, + "text": "Next, he constructed upright frames of acacia wood for the tabernacle." + }, + { + "verseNum": 21, + "text": "Each frame was ten cubits long and a cubit and a half wide." + }, + { + "verseNum": 22, + "text": "Two tenons were connected to each other for each frame. He made all the frames of the tabernacle in this way." + }, + { + "verseNum": 23, + "text": "He constructed twenty frames for the south side of the tabernacle," + }, + { + "verseNum": 24, + "text": "with forty silver bases to put under the twenty frames—two bases for each frame, one under each tenon." + }, + { + "verseNum": 25, + "text": "For the second side of the tabernacle, the north side, he made twenty frames" + }, + { + "verseNum": 26, + "text": "and forty silver bases—two bases under each frame." + }, + { + "verseNum": 27, + "text": "He made six frames for the rear of the tabernacle, the west side," + }, + { + "verseNum": 28, + "text": "and two frames for the two back corners of the tabernacle," + }, + { + "verseNum": 29, + "text": "coupled together from bottom to top and fitted into a single ring. He made both corners in this way." + }, + { + "verseNum": 30, + "text": "So there were eight frames and sixteen silver bases—two under each frame." + }, + { + "verseNum": 31, + "text": "He also made five crossbars of acacia wood for the frames on one side of the tabernacle," + }, + { + "verseNum": 32, + "text": "five for those on the other side, and five for those on the rear side of the tabernacle, to the west." + }, + { + "verseNum": 33, + "text": "He made the central crossbar to run through the center of the frames, from one end to the other." + }, + { + "verseNum": 34, + "text": "And he overlaid the frames with gold and made gold rings to hold the crossbars. He also overlaid the crossbars with gold." + }, + { + "verseNum": 35, + "text": "Next, he made the veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it." + }, + { + "verseNum": 36, + "text": "He also made four posts of acacia wood for it and overlaid them with gold, along with gold hooks; and he cast four silver bases for the posts." + }, + { + "verseNum": 37, + "text": "For the entrance to the tent, he made a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen," + }, + { + "verseNum": 38, + "text": "together with five posts and their hooks.\n \nHe overlaid the tops of the posts and their bands with gold, and their five bases were bronze." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel went on to construct the ark of acacia wood, two and a half cubits long, a cubit and a half wide, and a cubit and a half high." + }, + { + "verseNum": 2, + "text": "He overlaid it with pure gold, both inside and out, and made a gold molding around it." + }, + { + "verseNum": 3, + "text": "And he cast four gold rings for its four feet, two rings on one side and two on the other." + }, + { + "verseNum": 4, + "text": "Then he made poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 5, + "text": "He inserted the poles into the rings on the sides of the ark in order to carry it." + }, + { + "verseNum": 6, + "text": "He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide." + }, + { + "verseNum": 7, + "text": "He made two cherubim of hammered gold at the ends of the mercy seat," + }, + { + "verseNum": 8, + "text": "one cherub on one end and one on the other, all made from one piece of gold." + }, + { + "verseNum": 9, + "text": "And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking toward the mercy seat." + }, + { + "verseNum": 10, + "text": "He also made the table of acacia wood two cubits long, a cubit wide, and a cubit and a half high." + }, + { + "verseNum": 11, + "text": "He overlaid it with pure gold and made a gold molding around it." + }, + { + "verseNum": 12, + "text": "And he made a rim around it a handbreadth wide and put a gold molding on the rim." + }, + { + "verseNum": 13, + "text": "He cast four gold rings for the table and fastened them to the four corners at its four legs." + }, + { + "verseNum": 14, + "text": "The rings were placed close to the rim, to serve as holders for the poles used to carry the table." + }, + { + "verseNum": 15, + "text": "He made the poles of acacia wood for carrying the table and overlaid them with gold." + }, + { + "verseNum": 16, + "text": "He also made the utensils for the table out of pure gold: its plates and dishes, as well as its bowls and pitchers for pouring drink offerings." + }, + { + "verseNum": 17, + "text": "Then he made the lampstand out of pure hammered gold, all of one piece: its base and shaft, its cups, and its buds and petals." + }, + { + "verseNum": 18, + "text": "Six branches extended from the sides, three on one side and three on the other." + }, + { + "verseNum": 19, + "text": "There were three cups shaped like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extended from the lampstand." + }, + { + "verseNum": 20, + "text": "And on the lampstand were four cups shaped like almond blossoms with buds and petals." + }, + { + "verseNum": 21, + "text": "A bud was under the first pair of branches that extended from the lampstand, a bud under the second pair, and a bud under the third pair." + }, + { + "verseNum": 22, + "text": "The buds and branches were all of one piece with the lampstand, hammered out of pure gold." + }, + { + "verseNum": 23, + "text": "He also made its seven lamps, its wick trimmers, and trays of pure gold." + }, + { + "verseNum": 24, + "text": "He made the lampstand and all its utensils from a talent of pure gold." + }, + { + "verseNum": 25, + "text": "He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, and two cubits high. Its horns were of one piece." + }, + { + "verseNum": 26, + "text": "And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of gold around it." + }, + { + "verseNum": 27, + "text": "He made two gold rings below the molding on opposite sides to hold the poles used to carry it." + }, + { + "verseNum": 28, + "text": "And he made the poles of acacia wood and overlaid them with gold." + }, + { + "verseNum": 29, + "text": "He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits high." + }, + { + "verseNum": 2, + "text": "He made a horn at each of its four corners, so that the horns and altar were of one piece, and he overlaid the altar with bronze." + }, + { + "verseNum": 3, + "text": "He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and firepans." + }, + { + "verseNum": 4, + "text": "He made a grate of bronze mesh for the altar under its ledge, halfway up from the bottom." + }, + { + "verseNum": 5, + "text": "At the four corners of the bronze grate he cast four rings as holders for the poles." + }, + { + "verseNum": 6, + "text": "And he made the poles of acacia wood and overlaid them with bronze." + }, + { + "verseNum": 7, + "text": "Then he inserted the poles into the rings on the sides of the altar for carrying it. He made the altar with boards so that it was hollow." + }, + { + "verseNum": 8, + "text": "Next he made the bronze basin and its stand from the mirrors of the women who served at the entrance to the Tent of Meeting." + }, + { + "verseNum": 9, + "text": "Then he constructed the courtyard. The south side of the courtyard was a hundred cubits long and had curtains of finely spun linen," + }, + { + "verseNum": 10, + "text": "with twenty posts and twenty bronze bases, and with silver hooks and bands on the posts." + }, + { + "verseNum": 11, + "text": "The north side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 12, + "text": "The west side was fifty cubits long and had curtains, with ten posts and ten bases. The hooks and bands of the posts were silver." + }, + { + "verseNum": 13, + "text": "And the east side, toward the sunrise, was also fifty cubits long." + }, + { + "verseNum": 14, + "text": "The curtains on one side of the entrance were fifteen cubits long, with three posts and three bases." + }, + { + "verseNum": 15, + "text": "And the curtains on the other side were also fifteen cubits long, with three posts and three bases as well." + }, + { + "verseNum": 16, + "text": "All the curtains around the courtyard were made of finely spun linen." + }, + { + "verseNum": 17, + "text": "The bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of the posts was silver. So all the posts of the courtyard were banded with silver." + }, + { + "verseNum": 18, + "text": "The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits long and, like the curtains of the courtyard, five cubits high," + }, + { + "verseNum": 19, + "text": "with four posts and four bronze bases. Their hooks were silver, as well as the bands and the plating of their tops." + }, + { + "verseNum": 20, + "text": "All the tent pegs for the tabernacle and for the surrounding courtyard were bronze." + }, + { + "verseNum": 21, + "text": "This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Moses’ command by the Levites under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 22, + "text": "Bezalel son of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Moses." + }, + { + "verseNum": 23, + "text": "With him was Oholiab son of Ahisamach, of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and fine linen." + }, + { + "verseNum": 24, + "text": "All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 25, + "text": "The silver from those numbered among the congregation totaled 100 talents and 1,775 shekels, according to the sanctuary shekel—" + }, + { + "verseNum": 26, + "text": "a beka per person, that is, half a shekel, according to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be numbered, a total of 603,550 men." + }, + { + "verseNum": 27, + "text": "The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one talent per base." + }, + { + "verseNum": 28, + "text": "With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and supplied bands for them." + }, + { + "verseNum": 29, + "text": "The bronze from the wave offering totaled 70 talents and 2,400 shekels." + }, + { + "verseNum": 30, + "text": "He used it to make the bases for the entrance to the Tent of Meeting, the bronze altar and its bronze grating, all the utensils for the altar," + }, + { + "verseNum": 31, + "text": "the bases for the surrounding courtyard and its gate, and all the tent pegs for the tabernacle and its surrounding courtyard." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy garments for Aaron, just as the LORD had commanded Moses." + }, + { + "verseNum": 2, + "text": "Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, and scarlet yarn." + }, + { + "verseNum": 3, + "text": "They hammered out thin sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled craftsman." + }, + { + "verseNum": 4, + "text": "They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened." + }, + { + "verseNum": 5, + "text": "And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had commanded Moses." + }, + { + "verseNum": 6, + "text": "They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of the sons of Israel." + }, + { + "verseNum": 7, + "text": "Then they fastened them on the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had commanded Moses." + }, + { + "verseNum": 8, + "text": "He made the breastpiece with the same workmanship as the ephod, with gold, with blue, purple, and scarlet yarn, and with finely spun linen." + }, + { + "verseNum": 9, + "text": "It was square when folded over double, a span long and a span wide." + }, + { + "verseNum": 10, + "text": "And they mounted on it four rows of gemstones:\n \n The first row had a ruby, a topaz, and an emerald;" + }, + { + "verseNum": 11, + "text": "the second row had a turquoise, a sapphire, and a diamond;" + }, + { + "verseNum": 12, + "text": "the third row had a jacinth, an agate, and an amethyst;" + }, + { + "verseNum": 13, + "text": "and the fourth row had a beryl, an onyx, and a jasper.\n \nThese stones were mounted in gold filigree settings." + }, + { + "verseNum": 14, + "text": "The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve tribes." + }, + { + "verseNum": 15, + "text": "For the breastpiece they made braided chains like cords of pure gold." + }, + { + "verseNum": 16, + "text": "They also made two gold filigree settings and two gold rings, and fastened the two rings to the two corners of the breastpiece." + }, + { + "verseNum": 17, + "text": "Then they fastened the two gold chains to the two gold rings at the corners of the breastpiece," + }, + { + "verseNum": 18, + "text": "and they fastened the other ends of the two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the front." + }, + { + "verseNum": 19, + "text": "They made two more gold rings and attached them to the other two corners of the breastpiece, on the inside edge next to the ephod." + }, + { + "verseNum": 20, + "text": "They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam just above its woven waistband." + }, + { + "verseNum": 21, + "text": "Then they tied the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "They made the robe of the ephod entirely of blue cloth, the work of a weaver," + }, + { + "verseNum": 23, + "text": "with an opening in the center of the robe like that of a garment, with a collar around the opening so that it would not tear." + }, + { + "verseNum": 24, + "text": "They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower hem of the robe." + }, + { + "verseNum": 25, + "text": "They also made bells of pure gold and attached them around the hem between the pomegranates," + }, + { + "verseNum": 26, + "text": "alternating the bells and pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had commanded Moses." + }, + { + "verseNum": 27, + "text": "For Aaron and his sons they made tunics of fine linen, the work of a weaver," + }, + { + "verseNum": 28, + "text": "as well as the turban of fine linen, the ornate headbands and undergarments of finely spun linen," + }, + { + "verseNum": 29, + "text": "and the sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "They also made the plate of the holy crown of pure gold, and they engraved on it, like an inscription on a seal:\n \n HOLY TO THE LORD." + }, + { + "verseNum": 31, + "text": "Then they fastened to it a blue cord to mount it on the turban, just as the LORD had commanded Moses." + }, + { + "verseNum": 32, + "text": "So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did everything just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "Then they brought the tabernacle to Moses:\n \n the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and bases;" + }, + { + "verseNum": 34, + "text": "the covering of ram skins dyed red, the covering of fine leather, and the veil of the covering;" + }, + { + "verseNum": 35, + "text": "the ark of the Testimony with its poles and the mercy seat;" + }, + { + "verseNum": 36, + "text": "the table with all its utensils and the Bread of the Presence;" + }, + { + "verseNum": 37, + "text": "the pure gold lampstand with its row of lamps and all its utensils, as well as the oil for the light;" + }, + { + "verseNum": 38, + "text": "the gold altar, the anointing oil, the fragrant incense, and the curtain for the entrance to the tent;" + }, + { + "verseNum": 39, + "text": "the bronze altar with its bronze grating, its poles, and all its utensils;\n \n the basin with its stand;" + }, + { + "verseNum": 40, + "text": "the curtains of the courtyard with its posts and bases;\n \n the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of Meeting;" + }, + { + "verseNum": 41, + "text": "and the woven garments for ministering in the sanctuary, both the holy garments for Aaron the priest and the garments for his sons to serve as priests." + }, + { + "verseNum": 42, + "text": "The Israelites had done all the work just as the LORD had commanded Moses." + }, + { + "verseNum": 43, + "text": "And Moses inspected all the work and saw that they had accomplished it just as the LORD had commanded. So Moses blessed them." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“On the first day of the first month you are to set up the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 3, + "text": "Put the ark of the Testimony in it and screen off the ark with the veil." + }, + { + "verseNum": 4, + "text": "Then bring in the table and set out its arrangement; bring in the lampstand as well, and set up its lamps." + }, + { + "verseNum": 5, + "text": "Place the gold altar of incense in front of the ark of the Testimony, and hang the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 6, + "text": "Place the altar of burnt offering in front of the entrance to the tabernacle, the Tent of Meeting." + }, + { + "verseNum": 7, + "text": "And place the basin between the Tent of Meeting and the altar, and put water in it." + }, + { + "verseNum": 8, + "text": "Set up the surrounding courtyard and hang the curtain for the entrance to the courtyard." + }, + { + "verseNum": 9, + "text": "Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all its furnishings, and it shall be holy." + }, + { + "verseNum": 10, + "text": "Anoint the altar of burnt offering and all its utensils; consecrate the altar, and it shall be most holy." + }, + { + "verseNum": 11, + "text": "Anoint the basin and its stand and consecrate them." + }, + { + "verseNum": 12, + "text": "Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with water." + }, + { + "verseNum": 13, + "text": "And you are to clothe Aaron with the holy garments, anoint him, and consecrate him, so that he may serve Me as a priest." + }, + { + "verseNum": 14, + "text": "Bring his sons forward and clothe them with tunics." + }, + { + "verseNum": 15, + "text": "Anoint them just as you anointed their father, so that they may also serve Me as priests. Their anointing will qualify them for a permanent priesthood throughout their generations.”" + }, + { + "verseNum": 16, + "text": "Moses did everything just as the LORD had commanded him." + }, + { + "verseNum": 17, + "text": "So the tabernacle was set up on the first day of the first month of the second year." + }, + { + "verseNum": 18, + "text": "When Moses set up the tabernacle, he laid its bases, positioned its frames, inserted its crossbars, and set up its posts." + }, + { + "verseNum": 19, + "text": "Then he spread the tent over the tabernacle and put the covering over the tent, just as the LORD had commanded him." + }, + { + "verseNum": 20, + "text": "Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set the mercy seat atop the ark." + }, + { + "verseNum": 21, + "text": "Then he brought the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, just as the LORD had commanded him." + }, + { + "verseNum": 22, + "text": "Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil." + }, + { + "verseNum": 23, + "text": "He arranged the bread on it before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 24, + "text": "He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle" + }, + { + "verseNum": 25, + "text": "and set up the lamps before the LORD, just as the LORD had commanded him." + }, + { + "verseNum": 26, + "text": "Moses placed the gold altar in the Tent of Meeting, in front of the veil," + }, + { + "verseNum": 27, + "text": "and he burned fragrant incense on it, just as the LORD had commanded him." + }, + { + "verseNum": 28, + "text": "Then he put up the curtain at the entrance to the tabernacle." + }, + { + "verseNum": 29, + "text": "He placed the altar of burnt offering near the entrance to the tabernacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "He placed the basin between the Tent of Meeting and the altar and put water in it for washing;" + }, + { + "verseNum": 31, + "text": "and from it Moses, Aaron, and his sons washed their hands and feet." + }, + { + "verseNum": 32, + "text": "They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded Moses." + }, + { + "verseNum": 33, + "text": "And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses finished the work." + }, + { + "verseNum": 34, + "text": "Then the cloud covered the Tent of Meeting, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 35, + "text": "Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory of the LORD filled the tabernacle." + }, + { + "verseNum": 36, + "text": "Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through all the stages of their journey." + }, + { + "verseNum": 37, + "text": "If the cloud was not lifted, they would not set out until the day it was taken up." + }, + { + "verseNum": 38, + "text": "For the cloud of the LORD was over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Israel through all their journeys." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or the flock." + }, + { + "verseNum": 3, + "text": "If one’s offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD." + }, + { + "verseNum": 4, + "text": "He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for him." + }, + { + "verseNum": 5, + "text": "And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to present the blood and sprinkle it on all sides of the altar at the entrance to the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "Next, he is to skin the burnt offering and cut it into pieces." + }, + { + "verseNum": 7, + "text": "The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire." + }, + { + "verseNum": 8, + "text": "Then Aaron’s sons the priests are to arrange the pieces, including the head and the fat, atop the burning wood on the altar." + }, + { + "verseNum": 9, + "text": "The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male." + }, + { + "verseNum": 11, + "text": "He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to sprinkle its blood against the altar on all sides." + }, + { + "verseNum": 12, + "text": "He is to cut the animal into pieces, and the priest shall arrange them, including the head and fat, atop the burning wood that is on the altar." + }, + { + "verseNum": 13, + "text": "The entrails and legs must be washed with water, and the priest shall bring all of it and burn it on the altar; it is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 14, + "text": "If, instead, one’s offering to the LORD is a burnt offering of birds, he is to present a turtledove or a young pigeon." + }, + { + "verseNum": 15, + "text": "Then the priest shall bring it to the altar, twist off its head, and burn it on the altar; its blood should be drained out on the side of the altar." + }, + { + "verseNum": 16, + "text": "And he is to remove the crop with its contents and throw it to the east side of the altar, in the place for ashes." + }, + { + "verseNum": 17, + "text": "He shall tear it open by its wings, without dividing the bird completely. And the priest is to burn it on the altar atop the burning wood. It is a burnt offering, an offering made by fire, a pleasing aroma to the LORD." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it," + }, + { + "verseNum": 2, + "text": "and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, together with all the frankincense, and burn this as a memorial portion on the altar, an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 3, + "text": "The remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 4, + "text": "Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either unleavened cakes mixed with oil or unleavened wafers coated with oil." + }, + { + "verseNum": 5, + "text": "If your offering is a grain offering prepared on a griddle, it must be unleavened bread made of fine flour mixed with oil." + }, + { + "verseNum": 6, + "text": "Crumble it and pour oil on it; it is a grain offering." + }, + { + "verseNum": 7, + "text": "If your offering is a grain offering cooked in a pan, it must consist of fine flour with oil." + }, + { + "verseNum": 8, + "text": "When you bring to the LORD the grain offering made in any of these ways, it is to be presented to the priest, and he shall take it to the altar." + }, + { + "verseNum": 9, + "text": "The priest is to remove the memorial portion from the grain offering and burn it on the altar as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 10, + "text": "But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy part of the offerings made by fire to the LORD." + }, + { + "verseNum": 11, + "text": "No grain offering that you present to the LORD may be made with leaven, for you are not to burn any leaven or honey as an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "You may bring them to the LORD as an offering of firstfruits, but they are not to be offered on the altar as a pleasing aroma." + }, + { + "verseNum": 13, + "text": "And you shall season each of your grain offerings with salt. You must not leave the salt of the covenant of your God out of your grain offering; you are to add salt to each of your offerings." + }, + { + "verseNum": 14, + "text": "If you bring a grain offering of firstfruits to the LORD, you shall offer crushed heads of new grain roasted on the fire." + }, + { + "verseNum": 15, + "text": "And you are to put oil and frankincense on it; it is a grain offering." + }, + { + "verseNum": 16, + "text": "The priest shall then burn the memorial portion of the crushed grain and the oil, together with all its frankincense, as an offering made by fire to the LORD." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blemish before the LORD." + }, + { + "verseNum": 2, + "text": "He is to lay his hand on the head of the offering and slaughter it at the entrance to the Tent of Meeting. Then Aaron’s sons the priests shall sprinkle the blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "From the peace offering he is to bring an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 5, + "text": "Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burning wood, as an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 6, + "text": "If, however, one’s peace offering to the LORD is from the flock, he must present a male or female without blemish." + }, + { + "verseNum": 7, + "text": "If he is presenting a lamb for his offering, he must present it before the LORD." + }, + { + "verseNum": 8, + "text": "He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 9, + "text": "And from the peace offering he shall bring an offering made by fire to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 10, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 11, + "text": "Then the priest is to burn them on the altar as food, an offering made by fire to the LORD." + }, + { + "verseNum": 12, + "text": "If one’s offering is a goat, he is to present it before the LORD." + }, + { + "verseNum": 13, + "text": "He must lay his hand on its head and slaughter it in front of the Tent of Meeting. Then Aaron’s sons shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 14, + "text": "And from his offering he shall present an offering made by fire to the LORD: the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 15, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys." + }, + { + "verseNum": 16, + "text": "Then the priest is to burn the food on the altar as an offering made by fire, a pleasing aroma. All the fat is the LORD’s." + }, + { + "verseNum": 17, + "text": "This is a permanent statute for the generations to come, wherever you live: You must not eat any fat or any blood.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites to do as follows with one who sins unintentionally against any of the LORD’s commandments and does what is forbidden by them:" + }, + { + "verseNum": 3, + "text": "If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull without blemish as a sin offering for the sin he has committed." + }, + { + "verseNum": 4, + "text": "He must bring the bull to the entrance to the Tent of Meeting before the LORD, lay his hand on the bull’s head, and slaughter it before the LORD." + }, + { + "verseNum": 5, + "text": "Then the anointed priest shall take some of the bull’s blood and bring it into the Tent of Meeting." + }, + { + "verseNum": 6, + "text": "The priest is to dip his finger in the blood and sprinkle some of it seven times before the LORD, in front of the veil of the sanctuary." + }, + { + "verseNum": 7, + "text": "The priest must then put some of the blood on the horns of the altar of fragrant incense that is before the LORD in the Tent of Meeting. And he is to pour out the rest of the bull’s blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "Then he shall remove all the fat from the bull of the sin offering—the fat that covers the entrails, all the fat that is on them," + }, + { + "verseNum": 9, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kidneys—" + }, + { + "verseNum": 10, + "text": "just as the fat is removed from the ox of the peace offering. Then the priest shall burn them on the altar of burnt offering." + }, + { + "verseNum": 11, + "text": "But the hide of the bull and all its flesh, with its head and legs and its entrails and dung—" + }, + { + "verseNum": 12, + "text": "all the rest of the bull—he must take outside the camp to a ceremonially clean place where the ashes are poured out, and there he must burn it on a wood fire on the ash heap." + }, + { + "verseNum": 13, + "text": "Now if the whole congregation of Israel strays unintentionally and the matter escapes the notice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing what is forbidden," + }, + { + "verseNum": 14, + "text": "when they become aware of the sin they have committed, then the assembly must bring a young bull as a sin offering and present it before the Tent of Meeting." + }, + { + "verseNum": 15, + "text": "The elders of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be slaughtered before the LORD." + }, + { + "verseNum": 16, + "text": "Then the anointed priest is to bring some of the bull’s blood into the Tent of Meeting," + }, + { + "verseNum": 17, + "text": "and he is to dip his finger in the blood and sprinkle it seven times before the LORD in front of the veil." + }, + { + "verseNum": 18, + "text": "He is also to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the base of the altar of burnt offering at the entrance to the Tent of Meeting." + }, + { + "verseNum": 19, + "text": "And he is to remove all the fat from it and burn it on the altar." + }, + { + "verseNum": 20, + "text": "He shall offer this bull just as he did the bull for the sin offering; in this way the priest will make atonement on their behalf, and they will be forgiven." + }, + { + "verseNum": 21, + "text": "Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is the sin offering for the assembly." + }, + { + "verseNum": 22, + "text": "When a leader sins unintentionally and does what is prohibited by any of the commandments of the LORD his God, he incurs guilt." + }, + { + "verseNum": 23, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished male goat as his offering." + }, + { + "verseNum": 24, + "text": "He is to lay his hand on the head of the goat and slaughter it at the place where the burnt offering is slaughtered before the LORD. It is a sin offering." + }, + { + "verseNum": 25, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 26, + "text": "He must burn all its fat on the altar, like the fat of the peace offerings; thus the priest will make atonement for that man’s sin, and he will be forgiven." + }, + { + "verseNum": 27, + "text": "And if one of the common people sins unintentionally and does what is prohibited by any of the LORD’s commandments, he incurs guilt." + }, + { + "verseNum": 28, + "text": "When he becomes aware of the sin he has committed, he must bring an unblemished female goat as his offering for that sin." + }, + { + "verseNum": 29, + "text": "He is to lay his hand on the head of the sin offering and slaughter it at the place of the burnt offering." + }, + { + "verseNum": 30, + "text": "Then the priest is to take some of its blood with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of the blood at the base of the altar." + }, + { + "verseNum": 31, + "text": "Then he is to remove all the fat, just as it is removed from the peace offering, and the priest is to burn it on the altar as a pleasing aroma to the LORD. In this way the priest will make atonement for him, and he will be forgiven." + }, + { + "verseNum": 32, + "text": "If, however, he brings a lamb as a sin offering, he must bring an unblemished female." + }, + { + "verseNum": 33, + "text": "And he is to lay his hand on the head of the sin offering and slaughter it as a sin offering at the place where the burnt offering is slaughtered." + }, + { + "verseNum": 34, + "text": "Then the priest is to take some of the blood of the sin offering with his finger, put it on the horns of the altar of burnt offering, and pour out the rest of its blood at the base of the altar." + }, + { + "verseNum": 35, + "text": "And he shall remove all the fat, just as the fat of the lamb is removed from the peace offerings, and he shall burn it on the altar along with the offerings made by fire to the LORD. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned of it, he shall bear the iniquity." + }, + { + "verseNum": 2, + "text": "Or if a person touches anything unclean—whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is unaware of it, he is unclean and guilty." + }, + { + "verseNum": 3, + "text": "Or if he touches human uncleanness—anything by which one becomes unclean—even if he is unaware of it, when he realizes it, he is guilty." + }, + { + "verseNum": 4, + "text": "Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath—even if he is unaware of it, when he realizes it, he is guilty in the matter." + }, + { + "verseNum": 5, + "text": "If someone incurs guilt in one of these ways, he must confess the sin he has committed," + }, + { + "verseNum": 6, + "text": "and he must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will make atonement for him concerning his sin." + }, + { + "verseNum": 7, + "text": "If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin offering and the other as a burnt offering." + }, + { + "verseNum": 8, + "text": "He is to bring them to the priest, who shall first present the one for the sin offering. He is to twist its head at the front of its neck without severing it;" + }, + { + "verseNum": 9, + "text": "then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of the altar. It is a sin offering." + }, + { + "verseNum": 10, + "text": "And the priest must prepare the second bird as a burnt offering according to the ordinance. In this way the priest will make atonement for him for the sin he has committed, and he will be forgiven." + }, + { + "verseNum": 11, + "text": "But if he cannot afford two turtledoves or two young pigeons, he may bring a tenth of an ephah of fine flour as a sin offering. He must not put olive oil or frankincense on it, because it is a sin offering." + }, + { + "verseNum": 12, + "text": "He is to bring it to the priest, who shall take a handful from it as a memorial portion and burn it on the altar atop the offerings made by fire to the LORD; it is a sin offering." + }, + { + "verseNum": 13, + "text": "In this way the priest will make atonement for him for any of these sins he has committed, and he will be forgiven. The remainder will belong to the priest, like the grain offering.”" + }, + { + "verseNum": 14, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 15, + "text": "“If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering." + }, + { + "verseNum": 16, + "text": "Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the ram as a guilt offering, and he will be forgiven." + }, + { + "verseNum": 17, + "text": "If someone sins and violates any of the LORD’s commandments even though he was unaware, he is guilty and shall bear his punishment." + }, + { + "verseNum": 18, + "text": "He is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his behalf for the wrong he has committed in ignorance, and he will be forgiven." + }, + { + "verseNum": 19, + "text": "It is a guilt offering; he was certainly guilty before the LORD.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“If someone sins and acts unfaithfully against the LORD by deceiving his neighbor in regard to a deposit or security entrusted to him or stolen, or if he extorts his neighbor" + }, + { + "verseNum": 3, + "text": "or finds lost property and lies about it and swears falsely, or if he commits any such sin that a man might commit—" + }, + { + "verseNum": 4, + "text": "once he has sinned and becomes guilty, he must return what he has stolen or taken by extortion, or the deposit entrusted to him, or the lost property he found," + }, + { + "verseNum": 5, + "text": "or anything else about which he has sworn falsely.\n \nHe must make restitution in full, add a fifth of the value, and pay it to the owner on the day he acknowledges his guilt." + }, + { + "verseNum": 6, + "text": "Then he must bring to the priest his guilt offering to the LORD: an unblemished ram of proper value from the flock." + }, + { + "verseNum": 7, + "text": "In this way the priest will make atonement for him before the LORD, and he will be forgiven for anything he may have done to incur guilt.”" + }, + { + "verseNum": 8, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 9, + "text": "“Command Aaron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and the fire must be kept burning on the altar." + }, + { + "verseNum": 10, + "text": "And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the fire has consumed and place them beside it." + }, + { + "verseNum": 11, + "text": "Then he must take off his garments, put on other clothes, and carry the ashes outside the camp to a ceremonially clean place." + }, + { + "verseNum": 12, + "text": "The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of the peace offerings on it." + }, + { + "verseNum": 13, + "text": "The fire shall be kept burning on the altar continually; it must not be extinguished." + }, + { + "verseNum": 14, + "text": "Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in front of the altar." + }, + { + "verseNum": 15, + "text": "The priest is to remove a handful of fine flour and olive oil, together with all the frankincense from the grain offering, and burn the memorial portion on the altar as a pleasing aroma to the LORD." + }, + { + "verseNum": 16, + "text": "Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 17, + "text": "It must not be baked with leaven; I have assigned it as their portion of My offerings made by fire. It is most holy, like the sin offering and the guilt offering." + }, + { + "verseNum": 18, + "text": "Any male among the sons of Aaron may eat it. This is a permanent portion from the offerings made by fire to the LORD for the generations to come. Anything that touches them will become holy.”" + }, + { + "verseNum": 19, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 20, + "text": "“This is the offering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, half of it in the morning and half in the evening." + }, + { + "verseNum": 21, + "text": "It shall be prepared with oil on a griddle; you are to bring it well-kneaded and present it as a grain offering broken in pieces, a pleasing aroma to the LORD." + }, + { + "verseNum": 22, + "text": "The priest, who is one of Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for the LORD, it must be burned completely." + }, + { + "verseNum": 23, + "text": "Every grain offering for a priest shall be burned completely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 25, + "text": "“Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, the sin offering shall be slaughtered before the LORD; it is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it shall eat it; it must be eaten in a holy place, in the courtyard of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Anything that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must wash it in a holy place." + }, + { + "verseNum": 28, + "text": "The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the pot must be scoured and rinsed with water." + }, + { + "verseNum": 29, + "text": "Any male among the priests may eat it; it is most holy." + }, + { + "verseNum": 30, + "text": "But no sin offering may be eaten if its blood has been brought into the Tent of Meeting to make atonement in the Holy Place; it must be burned." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Now this is the law of the guilt offering, which is most holy:" + }, + { + "verseNum": 2, + "text": "The guilt offering must be slaughtered in the place where the burnt offering is slaughtered, and the priest shall sprinkle its blood on all sides of the altar." + }, + { + "verseNum": 3, + "text": "And all the fat from it shall be offered: the fat tail, the fat that covers the entrails," + }, + { + "verseNum": 4, + "text": "both kidneys with the fat on them near the loins, and the lobe of the liver, which is to be removed with the kidneys." + }, + { + "verseNum": 5, + "text": "The priest shall burn them on the altar as an offering made by fire to the LORD; it is a guilt offering." + }, + { + "verseNum": 6, + "text": "Every male among the priests may eat of it. It must be eaten in a holy place; it is most holy." + }, + { + "verseNum": 7, + "text": "The guilt offering is like the sin offering; the same law applies to both. It belongs to the priest who makes atonement with it." + }, + { + "verseNum": 8, + "text": "As for the priest who presents a burnt offering for anyone, the hide of that offering belongs to him." + }, + { + "verseNum": 9, + "text": "Likewise, every grain offering that is baked in an oven or cooked in a pan or on a griddle belongs to the priest who presents it," + }, + { + "verseNum": 10, + "text": "and every grain offering, whether dry or mixed with oil, belongs equally to all the sons of Aaron." + }, + { + "verseNum": 11, + "text": "Now this is the law of the peace offering that one may present to the LORD:" + }, + { + "verseNum": 12, + "text": "If he offers it in thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour mixed with oil." + }, + { + "verseNum": 13, + "text": "Along with his peace offering of thanksgiving he is to present an offering with cakes of leavened bread." + }, + { + "verseNum": 14, + "text": "From the cakes he must present one portion of each offering as a contribution to the LORD. It belongs to the priest who sprinkles the blood of the peace offering." + }, + { + "verseNum": 15, + "text": "The meat of the sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it may be left until morning." + }, + { + "verseNum": 16, + "text": "If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may be eaten on the next day." + }, + { + "verseNum": 17, + "text": "But any meat of the sacrifice remaining until the third day must be burned up." + }, + { + "verseNum": 18, + "text": "If any of the meat from his peace offering is eaten on the third day, it will not be accepted. It will not be credited to the one who presented it; it shall be an abomination, and the one who eats of it shall bear his iniquity." + }, + { + "verseNum": 19, + "text": "Meat that touches anything unclean must not be eaten; it is to be burned up. As for any other meat, anyone who is ceremonially clean may eat it." + }, + { + "verseNum": 20, + "text": "But if anyone who is unclean eats meat from the peace offering that belongs to the LORD, that person must be cut off from his people." + }, + { + "verseNum": 21, + "text": "If one touches anything unclean, whether human uncleanness, an unclean animal, or any unclean, detestable thing, and then eats any of the meat of the peace offering that belongs to the LORD, that person must be cut off from his people.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Speak to the Israelites and say, ‘You are not to eat any of the fat of an ox, a sheep, or a goat." + }, + { + "verseNum": 24, + "text": "The fat of an animal found dead or mauled by wild beasts may be used for any other purpose, but you must not eat it." + }, + { + "verseNum": 25, + "text": "If anyone eats the fat of an animal from which an offering made by fire may be presented to the LORD, the one who eats it must be cut off from his people." + }, + { + "verseNum": 26, + "text": "You must not eat the blood of any bird or animal in any of your dwellings." + }, + { + "verseNum": 27, + "text": "If anyone eats blood, that person must be cut off from his people.’”" + }, + { + "verseNum": 28, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 29, + "text": "“Speak to the Israelites and say, ‘Anyone who presents a peace offering to the LORD must bring it as his sacrifice to the LORD." + }, + { + "verseNum": 30, + "text": "With his own hands he is to bring the offerings made by fire to the LORD; he shall bring the fat, together with the breast, and wave the breast as a wave offering before the LORD." + }, + { + "verseNum": 31, + "text": "The priest is to burn the fat on the altar, but the breast belongs to Aaron and his sons." + }, + { + "verseNum": 32, + "text": "And you are to give the right thigh to the priest as a contribution from your peace offering." + }, + { + "verseNum": 33, + "text": "The son of Aaron who presents the blood and fat of the peace offering shall have the right thigh as a portion." + }, + { + "verseNum": 34, + "text": "I have taken from the sons of Israel the breast of the wave offering and the thigh of the contribution of their peace offerings, and I have given them to Aaron the priest and his sons as a permanent portion from the sons of Israel.’”" + }, + { + "verseNum": 35, + "text": "This is the portion of the offerings made by fire to the LORD for Aaron and his sons since the day they were presented to serve the LORD as priests." + }, + { + "verseNum": 36, + "text": "On the day they were anointed, the LORD commanded that this be given them by the sons of Israel. It is a permanent portion for the generations to come." + }, + { + "verseNum": 37, + "text": "This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the ordination offering, and the peace offering," + }, + { + "verseNum": 38, + "text": "which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Take Aaron and his sons, their garments, the anointing oil, the bull of the sin offering, the two rams, and the basket of unleavened bread," + }, + { + "verseNum": 3, + "text": "and assemble the whole congregation at the entrance to the Tent of Meeting.”" + }, + { + "verseNum": 4, + "text": "So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the Tent of Meeting." + }, + { + "verseNum": 5, + "text": "And Moses said to them, “This is what the LORD has commanded to be done.”" + }, + { + "verseNum": 6, + "text": "Then Moses presented Aaron and his sons and washed them with water." + }, + { + "verseNum": 7, + "text": "He put the tunic on Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and fastened it to him." + }, + { + "verseNum": 8, + "text": "Then he put the breastpiece on him and placed the Urim and Thummim in the breastpiece." + }, + { + "verseNum": 9, + "text": "Moses also put the turban on Aaron’s head and set the gold plate, the holy diadem, on the front of the turban, as the LORD had commanded him." + }, + { + "verseNum": 10, + "text": "Next, Moses took the anointing oil and anointed the tabernacle and everything in it; and so he consecrated them." + }, + { + "verseNum": 11, + "text": "He sprinkled some of the oil on the altar seven times, anointing the altar and all its utensils, and the basin with its stand, to consecrate them." + }, + { + "verseNum": 12, + "text": "He also poured some of the anointing oil on Aaron’s head and anointed him to consecrate him." + }, + { + "verseNum": 13, + "text": "Then Moses presented Aaron’s sons, put tunics on them, wrapped sashes around them, and tied headbands on them, just as the LORD had commanded him." + }, + { + "verseNum": 14, + "text": "Moses then brought the bull near for the sin offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 15, + "text": "Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement could be made on it." + }, + { + "verseNum": 16, + "text": "Moses also took all the fat that was on the entrails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar." + }, + { + "verseNum": 17, + "text": "But the bull with its hide, flesh, and dung he burned outside the camp, as the LORD had commanded him." + }, + { + "verseNum": 18, + "text": "Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 19, + "text": "Moses slaughtered the ram and sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 20, + "text": "He cut the ram into pieces and burned the head, the pieces, and the fat." + }, + { + "verseNum": 21, + "text": "He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, an offering made by fire to the LORD, just as the LORD had commanded Moses." + }, + { + "verseNum": 22, + "text": "After that, Moses presented the other ram, the ram of ordination, and Aaron and his sons laid their hands on its head." + }, + { + "verseNum": 23, + "text": "Moses slaughtered the ram and took some of its blood and put it on Aaron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 24, + "text": "Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he sprinkled the blood on all sides of the altar." + }, + { + "verseNum": 25, + "text": "And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh." + }, + { + "verseNum": 26, + "text": "And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh." + }, + { + "verseNum": 27, + "text": "He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave offering." + }, + { + "verseNum": 28, + "text": "Then Moses took these from their hands and burned them on the altar with the burnt offering. This was an ordination offering, a pleasing aroma, an offering made by fire to the LORD." + }, + { + "verseNum": 29, + "text": "He also took the breast—Moses’ portion of the ram of ordination—and waved it before the LORD as a wave offering, as the LORD had commanded him." + }, + { + "verseNum": 30, + "text": "Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprinkled them on Aaron and his garments, and on his sons and their garments. So he consecrated Aaron and his garments, as well as Aaron’s sons and their garments." + }, + { + "verseNum": 31, + "text": "And Moses said to Aaron and his sons, “Boil the meat at the entrance to the Tent of Meeting and eat it there with the bread that is in the basket of ordination offerings, as I commanded, saying, ‘Aaron and his sons are to eat it.’" + }, + { + "verseNum": 32, + "text": "Then you must burn up the remainder of the meat and bread." + }, + { + "verseNum": 33, + "text": "You must not go outside the entrance to the Tent of Meeting for seven days, until the days of your ordination are complete; for it will take seven days to ordain you." + }, + { + "verseNum": 34, + "text": "What has been done today has been commanded by the LORD in order to make atonement on your behalf." + }, + { + "verseNum": 35, + "text": "You must remain at the entrance to the Tent of Meeting day and night for seven days and keep the LORD’s charge so that you will not die, for this is what I have been commanded.”" + }, + { + "verseNum": 36, + "text": "So Aaron and his sons did everything the LORD had commanded through Moses." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On the eighth day Moses summoned Aaron and his sons and the elders of Israel." + }, + { + "verseNum": 2, + "text": "He said to Aaron, “Take for yourself a young bull for a sin offering and a ram for a burnt offering, both without blemish, and present them before the LORD." + }, + { + "verseNum": 3, + "text": "Then speak to the Israelites and say, ‘Take a male goat for a sin offering, a calf and a lamb—both a year old and without blemish—for a burnt offering," + }, + { + "verseNum": 4, + "text": "an ox and a ram for a peace offering to sacrifice before the LORD, and a grain offering mixed with oil. For today the LORD will appear to you.’”" + }, + { + "verseNum": 5, + "text": "So they took what Moses had commanded to the front of the Tent of Meeting, and the whole congregation drew near and stood before the LORD." + }, + { + "verseNum": 6, + "text": "And Moses said, “This is what the LORD has commanded you to do, so that the glory of the LORD may appear to you.”" + }, + { + "verseNum": 7, + "text": "Then Moses said to Aaron, “Approach the altar and sacrifice your sin offering and your burnt offering to make atonement for yourself and for the people. And sacrifice the people’s offering to make atonement for them, as the LORD has commanded.”" + }, + { + "verseNum": 8, + "text": "So Aaron approached the altar and slaughtered the calf as a sin offering for himself." + }, + { + "verseNum": 9, + "text": "The sons of Aaron brought the blood to him, and he dipped his finger in the blood and applied it to the horns of the altar. And he poured out the rest of the blood at the base of the altar." + }, + { + "verseNum": 10, + "text": "On the altar he burned the fat, the kidneys, and the lobe of the liver from the sin offering, as the LORD had commanded Moses." + }, + { + "verseNum": 11, + "text": "But he burned up the flesh and the hide outside the camp." + }, + { + "verseNum": 12, + "text": "Then Aaron slaughtered the burnt offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 13, + "text": "They brought him the burnt offering piece by piece, including the head, and he burned them on the altar." + }, + { + "verseNum": 14, + "text": "He washed the entrails and the legs and burned them atop the burnt offering on the altar." + }, + { + "verseNum": 15, + "text": "Aaron then presented the people’s offering. He took the male goat for the people’s sin offering, slaughtered it, and offered it for sin like the first one." + }, + { + "verseNum": 16, + "text": "He presented the burnt offering and offered it according to the ordinance." + }, + { + "verseNum": 17, + "text": "Next he presented the grain offering, took a handful of it, and burned it on the altar in addition to the morning’s burnt offering." + }, + { + "verseNum": 18, + "text": "Then he slaughtered the ox and the ram as the people’s peace offering. His sons brought him the blood, and he sprinkled it on all sides of the altar." + }, + { + "verseNum": 19, + "text": "They also brought the fat portions from the ox and the ram—the fat tail, the fat covering the entrails, the kidneys, and the lobe of the liver—" + }, + { + "verseNum": 20, + "text": "and placed these on the breasts. Aaron burned the fat portions on the altar," + }, + { + "verseNum": 21, + "text": "but he waved the breasts and the right thigh as a wave offering before the LORD, as Moses had commanded." + }, + { + "verseNum": 22, + "text": "Aaron lifted up his hands toward the people and blessed them. And having made the sin offering, the burnt offering, and the peace offering, he stepped down." + }, + { + "verseNum": 23, + "text": "Moses and Aaron then entered the Tent of Meeting. When they came out, they blessed the people, and the glory of the LORD appeared to all the people." + }, + { + "verseNum": 24, + "text": "Fire came out from the presence of the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell facedown." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added incense, and offered unauthorized fire before the LORD, contrary to His command." + }, + { + "verseNum": 2, + "text": "So fire came out from the presence of the LORD and consumed them, and they died in the presence of the LORD." + }, + { + "verseNum": 3, + "text": "Then Moses said to Aaron, “This is what the LORD meant when He said:\n \n ‘To those who come near Me\n I will show My holiness,\n and in the sight of all the people\n I will reveal My glory.’”\n \nBut Aaron remained silent." + }, + { + "verseNum": 4, + "text": "Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come here; carry the bodies of your cousins outside the camp, away from the front of the sanctuary.”" + }, + { + "verseNum": 5, + "text": "So they came forward and carried them, still in their tunics, outside the camp, as Moses had directed." + }, + { + "verseNum": 6, + "text": "Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become disheveled and do not tear your garments, or else you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account of the fire that the LORD has ignited." + }, + { + "verseNum": 7, + "text": "You shall not go outside the entrance to the Tent of Meeting, or you will die, for the LORD’s anointing oil is on you.”\n \nSo they did as Moses instructed." + }, + { + "verseNum": 8, + "text": "Then the LORD said to Aaron," + }, + { + "verseNum": 9, + "text": "“You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the generations to come." + }, + { + "verseNum": 10, + "text": "You must distinguish between the holy and the common, between the clean and the unclean," + }, + { + "verseNum": 11, + "text": "so that you may teach the Israelites all the statutes that the LORD has given them through Moses.”" + }, + { + "verseNum": 12, + "text": "And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offering that remains from the offerings made by fire to the LORD and eat it without leaven beside the altar, because it is most holy." + }, + { + "verseNum": 13, + "text": "You shall eat it in a holy place, because it is your share and your sons’ share of the offerings made by fire to the LORD; for this is what I have been commanded." + }, + { + "verseNum": 14, + "text": "And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings of the sons of Israel." + }, + { + "verseNum": 15, + "text": "They are to bring the thigh of the contribution and the breast of the wave offering, together with the fat portions of the offerings made by fire, to wave as a wave offering before the LORD. It will belong permanently to you and your children, as the LORD has commanded.”" + }, + { + "verseNum": 16, + "text": "Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Ithamar, Aaron’s remaining sons, and asked," + }, + { + "verseNum": 17, + "text": "“Why didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making atonement for them before the LORD." + }, + { + "verseNum": 18, + "text": "Since its blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I commanded.”" + }, + { + "verseNum": 19, + "text": "But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt offering before the LORD. Since these things have happened to me, if I had eaten the sin offering today, would it have been acceptable in the sight of the LORD?”" + }, + { + "verseNum": 20, + "text": "And when Moses heard this explanation, he was satisfied." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The LORD spoke again to Moses and Aaron, telling them," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘Of all the beasts of the earth, these ones you may eat:" + }, + { + "verseNum": 3, + "text": "You may eat any animal that has a split hoof completely divided and that chews the cud." + }, + { + "verseNum": 4, + "text": "But of those that only chew the cud or only have a divided hoof, you are not to eat the following:\n \n The camel, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 5, + "text": "The rock badger, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 6, + "text": "The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for you." + }, + { + "verseNum": 7, + "text": "And the pig, though it has a split hoof completely divided, does not chew the cud; it is unclean for you." + }, + { + "verseNum": 8, + "text": "You must not eat their meat or touch their carcasses; they are unclean for you." + }, + { + "verseNum": 9, + "text": "Of all the creatures that live in the water, whether in the seas or in the streams, you may eat anything with fins and scales." + }, + { + "verseNum": 10, + "text": "But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not have fins and scales." + }, + { + "verseNum": 11, + "text": "They shall be an abomination to you; you must not eat their meat, and you must detest their carcasses." + }, + { + "verseNum": 12, + "text": "Everything in the water that does not have fins and scales shall be detestable to you." + }, + { + "verseNum": 13, + "text": "Additionally, you are to detest the following birds, and they must not be eaten because they are detestable:\n \n the eagle, the bearded vulture, the black vulture," + }, + { + "verseNum": 14, + "text": "the kite, any kind of falcon," + }, + { + "verseNum": 15, + "text": "any kind of raven," + }, + { + "verseNum": 16, + "text": "the ostrich, the screech owl, the gull, any kind of hawk," + }, + { + "verseNum": 17, + "text": "the little owl, the cormorant, the great owl," + }, + { + "verseNum": 18, + "text": "the white owl, the desert owl, the osprey," + }, + { + "verseNum": 19, + "text": "the stork, any kind of heron,\n \n the hoopoe, and the bat." + }, + { + "verseNum": 20, + "text": "All flying insects that walk on all fours are detestable to you." + }, + { + "verseNum": 21, + "text": "However, you may eat the following kinds of flying insects that walk on all fours: those having jointed legs above their feet for hopping on the ground." + }, + { + "verseNum": 22, + "text": "Of these you may eat any kind of locust, katydid, cricket, or grasshopper." + }, + { + "verseNum": 23, + "text": "All other flying insects that have four legs are detestable to you." + }, + { + "verseNum": 24, + "text": "These creatures will make you unclean. Whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 25, + "text": "and whoever picks up one of their carcasses must wash his clothes, and he will be unclean until evening." + }, + { + "verseNum": 26, + "text": "Every animal with hooves not completely divided or that does not chew the cud is unclean for you. Whoever touches any of them will be unclean." + }, + { + "verseNum": 27, + "text": "All the four-footed animals that walk on their paws are unclean for you; whoever touches their carcasses will be unclean until evening," + }, + { + "verseNum": 28, + "text": "and anyone who picks up a carcass must wash his clothes, and he will be unclean until evening. They are unclean for you." + }, + { + "verseNum": 29, + "text": "The following creatures that move along the ground are unclean for you: the mole, the mouse, any kind of great lizard," + }, + { + "verseNum": 30, + "text": "the gecko, the monitor lizard, the common lizard, the skink, and the chameleon." + }, + { + "verseNum": 31, + "text": "These animals are unclean for you among all the crawling creatures. Whoever touches them when they are dead shall be unclean until evening." + }, + { + "verseNum": 32, + "text": "When one of them dies and falls on something, that article becomes unclean; any article of wood, clothing, leather, sackcloth, or any implement used for work must be rinsed with water and will remain unclean until evening; then it will be clean." + }, + { + "verseNum": 33, + "text": "If any of them falls into a clay pot, everything in it will be unclean; you must break the pot." + }, + { + "verseNum": 34, + "text": "Any food coming into contact with water from that pot will be unclean, and any drink in such a container will be unclean." + }, + { + "verseNum": 35, + "text": "Anything upon which one of their carcasses falls will be unclean. If it is an oven or cooking pot, it must be smashed; it is unclean and will remain unclean for you." + }, + { + "verseNum": 36, + "text": "Nevertheless, a spring or cistern containing water will remain clean, but one who touches a carcass in it will be unclean." + }, + { + "verseNum": 37, + "text": "If a carcass falls on any seed for sowing, the seed is clean;" + }, + { + "verseNum": 38, + "text": "but if water has been put on the seed and a carcass falls on it, it is unclean for you." + }, + { + "verseNum": 39, + "text": "If an animal that you may eat dies, anyone who touches the carcass will be unclean until evening." + }, + { + "verseNum": 40, + "text": "Whoever eats from the carcass must wash his clothes and will be unclean until evening, and anyone who picks up the carcass must wash his clothes and will be unclean until evening." + }, + { + "verseNum": 41, + "text": "Every creature that moves along the ground is detestable; it must not be eaten." + }, + { + "verseNum": 42, + "text": "Do not eat any creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; for such creatures are detestable." + }, + { + "verseNum": 43, + "text": "Do not defile yourselves by any crawling creature; do not become unclean or defiled by them." + }, + { + "verseNum": 44, + "text": "For I am the LORD your God; consecrate yourselves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground." + }, + { + "verseNum": 45, + "text": "For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be holy, because I am holy." + }, + { + "verseNum": 46, + "text": "This is the law regarding animals, birds, all living creatures that move in the water, and all creatures that crawl along the ground." + }, + { + "verseNum": 47, + "text": "You must distinguish between the unclean and the clean, between animals that may be eaten and those that may not.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her menstruation." + }, + { + "verseNum": 3, + "text": "And on the eighth day the flesh of the boy’s foreskin is to be circumcised." + }, + { + "verseNum": 4, + "text": "The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary until the days of her purification are complete." + }, + { + "verseNum": 5, + "text": "If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must continue in purification from her bleeding for sixty-six days." + }, + { + "verseNum": 6, + "text": "When the days of her purification are complete, whether for a son or for a daughter, she is to bring to the priest at the entrance to the Tent of Meeting a year-old lamb for a burnt offering and a young pigeon or a turtledove for a sin offering." + }, + { + "verseNum": 7, + "text": "And the priest will present them before the LORD and make atonement for her; and she shall be ceremonially cleansed from her flow of blood. This is the law for a woman giving birth, whether to a male or to a female." + }, + { + "verseNum": 8, + "text": "But if she cannot afford a lamb, she shall bring two turtledoves or two young pigeons, one for a burnt offering and the other for a sin offering. Then the priest will make atonement for her, and she will be clean.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“When someone has a swelling or rash or bright spot on his skin that could become an infectious skin disease, he must be brought to Aaron the priest or to one of his sons who is a priest." + }, + { + "verseNum": 3, + "text": "The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines him, he must pronounce him unclean." + }, + { + "verseNum": 4, + "text": "If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 5, + "text": "On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days." + }, + { + "verseNum": 6, + "text": "The priest will examine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. The person must wash his clothes and be clean." + }, + { + "verseNum": 7, + "text": "But if the rash spreads further on his skin after he has shown himself to the priest for his cleansing, he must present himself again to the priest." + }, + { + "verseNum": 8, + "text": "The priest will reexamine him, and if the rash has spread on the skin, the priest must pronounce him unclean; he has a skin disease." + }, + { + "verseNum": 9, + "text": "When anyone develops a skin disease, he must be brought to the priest." + }, + { + "verseNum": 10, + "text": "The priest will examine him, and if there is a white swelling on the skin that has turned the hair white, and there is raw flesh in the swelling," + }, + { + "verseNum": 11, + "text": "it is a chronic skin disease and the priest must pronounce him unclean. He need not isolate him, for he is unclean." + }, + { + "verseNum": 12, + "text": "But if the skin disease breaks out all over his skin so that it covers all the skin of the infected person from head to foot, as far as the priest can see," + }, + { + "verseNum": 13, + "text": "the priest shall examine him, and if the disease has covered his entire body, he is to pronounce the infected person clean. Since it has all turned white, he is clean." + }, + { + "verseNum": 14, + "text": "But whenever raw flesh appears on someone, he will be unclean." + }, + { + "verseNum": 15, + "text": "When the priest sees the raw flesh, he must pronounce him unclean. The raw flesh is unclean; it is a skin disease." + }, + { + "verseNum": 16, + "text": "But if the raw flesh changes and turns white, he must go to the priest." + }, + { + "verseNum": 17, + "text": "The priest will reexamine him, and if the infection has turned white, the priest is to pronounce the infected person clean; then he is clean." + }, + { + "verseNum": 18, + "text": "When a boil appears on someone’s skin and it heals," + }, + { + "verseNum": 19, + "text": "and a white swelling or a reddish-white spot develops where the boil was, he must present himself to the priest." + }, + { + "verseNum": 20, + "text": "The priest shall examine it, and if it appears to be beneath the skin and the hair in it has turned white, the priest shall pronounce him unclean; it is a diseased infection that has broken out in the boil." + }, + { + "verseNum": 21, + "text": "But when the priest examines it, if there is no white hair in it, and it is not beneath the skin and has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 22, + "text": "If it spreads any further on the skin, the priest must pronounce him unclean; it is an infection." + }, + { + "verseNum": 23, + "text": "But if the spot remains unchanged and does not spread, it is only the scar from the boil, and the priest shall pronounce him clean." + }, + { + "verseNum": 24, + "text": "When there is a burn on someone’s skin and the raw area of the burn becomes reddish-white or white," + }, + { + "verseNum": 25, + "text": "the priest must examine it. If the hair in the spot has turned white and the spot appears to be deeper than the skin, it is a disease that has broken out in the burn. The priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 26, + "text": "But if the priest examines it and there is no white hair in the spot, and it is not beneath the skin but has faded, the priest shall isolate him for seven days." + }, + { + "verseNum": 27, + "text": "On the seventh day the priest is to reexamine him, and if it has spread further on the skin, the priest must pronounce him unclean; it is a diseased infection." + }, + { + "verseNum": 28, + "text": "But if the spot is unchanged and has not spread on the skin but has faded, it is a swelling from the burn, and the priest is to pronounce him clean; for it is only the scar from the burn." + }, + { + "verseNum": 29, + "text": "If a man or woman has an infection on the head or chin," + }, + { + "verseNum": 30, + "text": "the priest shall examine the infection, and if it appears to be deeper than the skin and the hair in it is yellow and thin, the priest must pronounce him unclean; it is a scaly outbreak, an infectious disease of the head or chin." + }, + { + "verseNum": 31, + "text": "But if the priest examines the scaly infection and it does not appear to be deeper than the skin, and there is no black hair in it, the priest shall isolate the infected person for seven days." + }, + { + "verseNum": 32, + "text": "On the seventh day the priest is to reexamine the infection, and if the scaly outbreak has not spread and there is no yellow hair in it, and it does not appear to be deeper than the skin," + }, + { + "verseNum": 33, + "text": "then the person must shave himself except for the scaly area. Then the priest shall isolate him for another seven days." + }, + { + "verseNum": 34, + "text": "On the seventh day the priest shall examine the scaly outbreak, and if it has not spread on the skin and does not appear to be deeper than the skin, the priest is to pronounce him clean. He must wash his clothes, and he will be clean." + }, + { + "verseNum": 35, + "text": "If, however, the scaly outbreak spreads further on the skin after his cleansing," + }, + { + "verseNum": 36, + "text": "the priest is to examine him, and if the scaly outbreak has spread on the skin, the priest need not look for yellow hair; the person is unclean." + }, + { + "verseNum": 37, + "text": "If, however, in his sight the scaly outbreak is unchanged and black hair has grown in it, then it has healed. He is clean, and the priest is to pronounce him clean." + }, + { + "verseNum": 38, + "text": "When a man or a woman has white spots on the skin," + }, + { + "verseNum": 39, + "text": "the priest shall examine them, and if the spots are dull white, it is a harmless rash that has broken out on the skin; the person is clean." + }, + { + "verseNum": 40, + "text": "Now if a man loses his hair and is bald, he is still clean." + }, + { + "verseNum": 41, + "text": "Or if his hairline recedes and he is bald on his forehead, he is still clean." + }, + { + "verseNum": 42, + "text": "But if there is a reddish-white sore on the bald head or forehead, it is an infectious disease breaking out on it." + }, + { + "verseNum": 43, + "text": "The priest is to examine him, and if the swelling of the infection on his bald head or forehead is reddish-white like a skin disease," + }, + { + "verseNum": 44, + "text": "the man is diseased; he is unclean. The priest must pronounce him unclean because of the infection on his head." + }, + { + "verseNum": 45, + "text": "A diseased person must wear torn clothes and let his hair hang loose, and he must cover his mouth and cry out, ‘Unclean, unclean!’" + }, + { + "verseNum": 46, + "text": "As long as he has the infection, he remains unclean. He must live alone in a place outside the camp." + }, + { + "verseNum": 47, + "text": "If any fabric is contaminated with mildew —any wool or linen garment," + }, + { + "verseNum": 48, + "text": "any weave or knit of linen or wool, or any article of leather—" + }, + { + "verseNum": 49, + "text": "and if the mark in the fabric, leather, weave, knit, or leather article is green or red, then it is contaminated with mildew and must be shown to the priest." + }, + { + "verseNum": 50, + "text": "And the priest is to examine the mildew and isolate the contaminated fabric for seven days." + }, + { + "verseNum": 51, + "text": "On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is unclean." + }, + { + "verseNum": 52, + "text": "He is to burn the fabric, weave, or knit, whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the article must be burned up." + }, + { + "verseNum": 53, + "text": "But when the priest reexamines it, if the mildew has not spread in the fabric, weave, knit, or leather article," + }, + { + "verseNum": 54, + "text": "the priest is to order the contaminated article to be washed and isolated for another seven days." + }, + { + "verseNum": 55, + "text": "After it has been washed, the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is unclean. Even though the mildew has not spread, you must burn it, whether the rot is on the front or back." + }, + { + "verseNum": 56, + "text": "If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, weave, or knit." + }, + { + "verseNum": 57, + "text": "But if it reappears in the fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated article." + }, + { + "verseNum": 58, + "text": "If the mildew disappears from the fabric, weave, or knit, or any leather article after washing, then it is to be washed again, and it will be clean." + }, + { + "verseNum": 59, + "text": "This is the law concerning a mildew contamination in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or unclean.”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“This is the law for the one afflicted with a skin disease on the day of his cleansing, when he is brought to the priest." + }, + { + "verseNum": 3, + "text": "The priest is to go outside the camp to examine him, and if the skin disease of the afflicted person has healed," + }, + { + "verseNum": 4, + "text": "the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one to be cleansed." + }, + { + "verseNum": 5, + "text": "Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot." + }, + { + "verseNum": 6, + "text": "And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip them into the blood of the bird that was slaughtered over the fresh water." + }, + { + "verseNum": 7, + "text": "Seven times he shall sprinkle the one to be cleansed of the skin disease. Then he shall pronounce him clean and release the live bird into the open field." + }, + { + "verseNum": 8, + "text": "The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his tent for seven days." + }, + { + "verseNum": 9, + "text": "On the seventh day he must shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he will be clean." + }, + { + "verseNum": 10, + "text": "On the eighth day he is to bring two unblemished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil." + }, + { + "verseNum": 11, + "text": "The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 12, + "text": "Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave offering before the LORD." + }, + { + "verseNum": 13, + "text": "Then he is to slaughter the lamb in the sanctuary area where the sin offering and burnt offering are slaughtered. Like the sin offering, the guilt offering belongs to the priest; it is most holy." + }, + { + "verseNum": 14, + "text": "The priest is to take some of the blood from the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 15, + "text": "Then the priest shall take some of the log of olive oil, pour it into his left palm," + }, + { + "verseNum": 16, + "text": "dip his right forefinger into the oil in his left palm, and sprinkle some of the oil with his finger seven times before the LORD." + }, + { + "verseNum": 17, + "text": "And the priest is to put some of the oil remaining in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot, on top of the blood of the guilt offering." + }, + { + "verseNum": 18, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 19, + "text": "Then the priest is to sacrifice the sin offering and make atonement for the one to be cleansed from his uncleanness. After that, the priest shall slaughter the burnt offering" + }, + { + "verseNum": 20, + "text": "and offer it on the altar, with the grain offering, to make atonement for him, and he will be clean." + }, + { + "verseNum": 21, + "text": "If, however, the person is poor and cannot afford these offerings, he is to take one male lamb as a guilt offering to be waved to make atonement for him, along with a tenth of an ephah of fine flour mixed with olive oil for a grain offering, a log of olive oil," + }, + { + "verseNum": 22, + "text": "and two turtledoves or two young pigeons, whichever he can afford, one to be a sin offering and the other a burnt offering." + }, + { + "verseNum": 23, + "text": "On the eighth day he is to bring them for his cleansing to the priest at the entrance to the Tent of Meeting before the LORD." + }, + { + "verseNum": 24, + "text": "The priest shall take the lamb for the guilt offering, along with the log of olive oil, and wave them as a wave offering before the LORD." + }, + { + "verseNum": 25, + "text": "And after he slaughters the lamb for the guilt offering, the priest is to take some of the blood of the guilt offering and put it on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot." + }, + { + "verseNum": 26, + "text": "Then the priest is to pour some of the oil into his left palm" + }, + { + "verseNum": 27, + "text": "and sprinkle with his right forefinger some of the oil in his left palm seven times before the LORD." + }, + { + "verseNum": 28, + "text": "The priest shall also put some of the oil in his palm on the right earlobe of the one to be cleansed, on the thumb of his right hand, and on the big toe of his right foot—on the same places as the blood of the guilt offering." + }, + { + "verseNum": 29, + "text": "The rest of the oil in his palm, the priest is to put on the head of the one to be cleansed, to make atonement for him before the LORD." + }, + { + "verseNum": 30, + "text": "Then he must sacrifice the turtledoves or young pigeons, whichever he can afford," + }, + { + "verseNum": 31, + "text": "one as a sin offering and the other as a burnt offering, together with the grain offering. In this way the priest will make atonement before the LORD for the one to be cleansed." + }, + { + "verseNum": 32, + "text": "This is the law for someone who has a skin disease and cannot afford the cost of his cleansing.”" + }, + { + "verseNum": 33, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 34, + "text": "“When you enter the land of Canaan, which I am giving you as your possession, and I put a contamination of mildew into a house in that land," + }, + { + "verseNum": 35, + "text": "the owner of the house shall come and tell the priest, ‘Something like mildew has appeared in my house.’" + }, + { + "verseNum": 36, + "text": "The priest must order that the house be cleared before he enters it to examine the mildew, so that nothing in the house will become unclean. After this, the priest shall go in to inspect the house." + }, + { + "verseNum": 37, + "text": "He is to examine the house, and if the mildew on the walls consists of green or red depressions that appear to be beneath the surface of the wall," + }, + { + "verseNum": 38, + "text": "the priest shall go outside the doorway of the house and close it up for seven days." + }, + { + "verseNum": 39, + "text": "On the seventh day the priest is to return and inspect the house. If the mildew has spread on the walls," + }, + { + "verseNum": 40, + "text": "he must order that the contaminated stones be pulled out and thrown into an unclean place outside the city." + }, + { + "verseNum": 41, + "text": "And he shall have the inside of the house scraped completely and the plaster that is scraped off dumped into an unclean place outside the city." + }, + { + "verseNum": 42, + "text": "So different stones must be obtained to replace the contaminated ones, as well as additional mortar to replaster the house." + }, + { + "verseNum": 43, + "text": "If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered," + }, + { + "verseNum": 44, + "text": "the priest must come and inspect it.\n \nIf the mildew has spread in the house, it is a destructive mildew; the house is unclean." + }, + { + "verseNum": 45, + "text": "It must be torn down with its stones, its timbers, and all its plaster, and taken outside the city to an unclean place." + }, + { + "verseNum": 46, + "text": "Anyone who enters the house during any of the days that it is closed up will be unclean until evening." + }, + { + "verseNum": 47, + "text": "And anyone who sleeps in the house or eats in it must wash his clothes." + }, + { + "verseNum": 48, + "text": "If, however, the priest comes and inspects it, and the mildew has not spread after the house has been replastered, he shall pronounce the house clean, because the mildew is gone." + }, + { + "verseNum": 49, + "text": "He is to take two birds, cedar wood, scarlet yarn, and hyssop to purify the house;" + }, + { + "verseNum": 50, + "text": "and he shall slaughter one of the birds over fresh water in a clay pot." + }, + { + "verseNum": 51, + "text": "Then he shall take the cedar wood, the hyssop, the scarlet yarn, and the live bird, dip them in the blood of the slaughtered bird and the fresh water, and sprinkle the house seven times." + }, + { + "verseNum": 52, + "text": "And he shall cleanse the house with the bird’s blood, the fresh water, the live bird, the cedar wood, the hyssop, and the scarlet yarn." + }, + { + "verseNum": 53, + "text": "Finally, he is to release the live bird into the open fields outside the city. In this way he will make atonement for the house, and it will be clean." + }, + { + "verseNum": 54, + "text": "This is the law for any infectious skin disease, for a scaly outbreak," + }, + { + "verseNum": 55, + "text": "for mildew in clothing or in a house," + }, + { + "verseNum": 56, + "text": "and for a swelling, rash, or spot," + }, + { + "verseNum": 57, + "text": "to determine when something is clean or unclean. This is the law regarding skin diseases and mildew.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Say to the Israelites, ‘When any man has a bodily discharge, the discharge is unclean." + }, + { + "verseNum": 3, + "text": "This uncleanness is from his discharge, whether his body allows the discharge to flow or blocks it. So his discharge will bring about uncleanness." + }, + { + "verseNum": 4, + "text": "Any bed on which the man with the discharge lies will be unclean, and any furniture on which he sits will be unclean." + }, + { + "verseNum": 5, + "text": "Anyone who touches his bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 6, + "text": "Whoever sits on furniture on which the man with the discharge was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 7, + "text": "Whoever touches the body of the man with a discharge must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 8, + "text": "If the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 9, + "text": "Any saddle on which the man with the discharge rides will be unclean." + }, + { + "verseNum": 10, + "text": "Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 11, + "text": "If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 12, + "text": "Any clay pot that the man with the discharge touches must be broken, and any wooden utensil must be rinsed with water." + }, + { + "verseNum": 13, + "text": "When the man has been cleansed from his discharge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in fresh water, and he shall be clean." + }, + { + "verseNum": 14, + "text": "On the eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the entrance to the Tent of Meeting, and give them to the priest." + }, + { + "verseNum": 15, + "text": "The priest is to sacrifice them, one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his discharge." + }, + { + "verseNum": 16, + "text": "When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening." + }, + { + "verseNum": 17, + "text": "Any clothing or leather on which there is an emission of semen must be washed with water, and it will remain unclean until evening." + }, + { + "verseNum": 18, + "text": "If a man lies with a woman and there is an emission of semen, both must bathe with water, and they will remain unclean until evening." + }, + { + "verseNum": 19, + "text": "When a woman has a discharge consisting of blood from her body, she will be unclean due to her menstruation for seven days, and anyone who touches her will be unclean until evening." + }, + { + "verseNum": 20, + "text": "Anything on which she lies or sits during her menstruation will be unclean," + }, + { + "verseNum": 21, + "text": "and anyone who touches her bed must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 22, + "text": "Whoever touches any furniture on which she was sitting must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 23, + "text": "And whether it is a bed or furniture on which she was sitting, whoever touches it will be unclean until evening." + }, + { + "verseNum": 24, + "text": "If a man lies with her and her menstrual flow touches him, he will be unclean for seven days, and any bed on which he lies will become unclean." + }, + { + "verseNum": 25, + "text": "When a woman has a discharge of her blood for many days at a time other than her menstrual period, or if it continues beyond her period, she will be unclean all the days of her unclean discharge, just as she is during the days of her menstruation." + }, + { + "verseNum": 26, + "text": "Any bed on which she lies or any furniture on which she sits during the days of her discharge will be unclean, like her bed during her menstrual period." + }, + { + "verseNum": 27, + "text": "Anyone who touches these things will be unclean; he must wash his clothes and bathe with water, and he will be unclean until evening." + }, + { + "verseNum": 28, + "text": "When a woman is cleansed of her discharge, she must count off seven days, and after that she will be ceremonially clean." + }, + { + "verseNum": 29, + "text": "On the eighth day she is to take two turtledoves or two young pigeons and bring them to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 30, + "text": "The priest is to sacrifice one as a sin offering and the other as a burnt offering. In this way the priest will make atonement for her before the LORD for her unclean discharge." + }, + { + "verseNum": 31, + "text": "You must keep the children of Israel separate from their uncleanness, so that they do not die by defiling My tabernacle, which is among them." + }, + { + "verseNum": 32, + "text": "This is the law of him who has a discharge, of the man who has an emission of semen whereby he is unclean," + }, + { + "verseNum": 33, + "text": "of a woman in her menstrual period, of any male or female who has a discharge, and of a man who lies with an unclean woman.’”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD." + }, + { + "verseNum": 2, + "text": "And the LORD said to Moses: “Tell your brother Aaron not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the cloud above the mercy seat." + }, + { + "verseNum": 3, + "text": "This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for a burnt offering." + }, + { + "verseNum": 4, + "text": "He is to wear the sacred linen tunic, with linen undergarments. He must tie a linen sash around him and put on the linen turban. These are holy garments, and he must bathe himself with water before he wears them." + }, + { + "verseNum": 5, + "text": "And he shall take from the congregation of Israel two male goats for a sin offering and one ram for a burnt offering." + }, + { + "verseNum": 6, + "text": "Aaron is to present the bull for his sin offering and make atonement for himself and his household." + }, + { + "verseNum": 7, + "text": "Then he shall take the two goats and present them before the LORD at the entrance to the Tent of Meeting." + }, + { + "verseNum": 8, + "text": "After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat," + }, + { + "verseNum": 9, + "text": "he shall present the goat chosen by lot for the LORD and sacrifice it as a sin offering." + }, + { + "verseNum": 10, + "text": "But the goat chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by sending it into the wilderness as the scapegoat." + }, + { + "verseNum": 11, + "text": "When Aaron presents the bull for his sin offering and makes atonement for himself and his household, he is to slaughter the bull for his own sin offering." + }, + { + "verseNum": 12, + "text": "Then he must take a censer full of burning coals from the altar before the LORD, and two handfuls of finely ground fragrant incense, and take them inside the veil." + }, + { + "verseNum": 13, + "text": "He is to put the incense on the fire before the LORD, and the cloud of incense will cover the mercy seat above the Testimony, so that he will not die." + }, + { + "verseNum": 14, + "text": "And he is to take some of the bull’s blood and sprinkle it with his finger on the east side of the mercy seat; then he shall sprinkle some of it with his finger seven times before the mercy seat." + }, + { + "verseNum": 15, + "text": "Aaron shall then slaughter the goat for the sin offering for the people and bring its blood behind the veil, and with its blood he must do as he did with the bull’s blood: He is to sprinkle it against the mercy seat and in front of it." + }, + { + "verseNum": 16, + "text": "So he shall make atonement for the Most Holy Place because of the impurities and rebellious acts of the Israelites in regard to all their sins. He is to do the same for the Tent of Meeting which abides among them, because it is surrounded by their impurities." + }, + { + "verseNum": 17, + "text": "No one may be in the Tent of Meeting from the time Aaron goes in to make atonement in the Most Holy Place until he leaves, after he has made atonement for himself, his household, and the whole assembly of Israel." + }, + { + "verseNum": 18, + "text": "Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the altar." + }, + { + "verseNum": 19, + "text": "He is to sprinkle some of the blood on it with his finger seven times to cleanse it and consecrate it from the uncleanness of the Israelites." + }, + { + "verseNum": 20, + "text": "When Aaron has finished purifying the Most Holy Place, the Tent of Meeting, and the altar, he is to bring forward the live goat." + }, + { + "verseNum": 21, + "text": "Then he is to lay both hands on the head of the live goat and confess over it all the iniquities and rebellious acts of the Israelites in regard to all their sins. He is to put them on the goat’s head and send it away into the wilderness by the hand of a man appointed for the task." + }, + { + "verseNum": 22, + "text": "The goat will carry on itself all their iniquities into a solitary place, and the man will release it into the wilderness." + }, + { + "verseNum": 23, + "text": "Then Aaron is to enter the Tent of Meeting, take off the linen garments he put on before entering the Most Holy Place, and leave them there." + }, + { + "verseNum": 24, + "text": "He is to bathe himself with water in a holy place and put on his own clothes. Then he must go out and sacrifice his burnt offering and the people’s burnt offering to make atonement for himself and for the people." + }, + { + "verseNum": 25, + "text": "He is also to burn the fat of the sin offering on the altar." + }, + { + "verseNum": 26, + "text": "The man who released the goat as the scapegoat must wash his clothes and bathe himself with water; afterward he may reenter the camp." + }, + { + "verseNum": 27, + "text": "The bull for the sin offering and the goat for the sin offering, whose blood was brought into the Most Holy Place to make atonement, must be taken outside the camp; and their hides, flesh, and dung must be burned up." + }, + { + "verseNum": 28, + "text": "The one who burns them must wash his clothes and bathe himself with water, and afterward he may reenter the camp." + }, + { + "verseNum": 29, + "text": "This is to be a permanent statute for you: On the tenth day of the seventh month, you shall humble yourselves and not do any work—whether the native or the foreigner who resides among you—" + }, + { + "verseNum": 30, + "text": "because on this day atonement will be made for you to cleanse you, and you will be clean from all your sins before the LORD." + }, + { + "verseNum": 31, + "text": "It is a Sabbath of complete rest for you, that you may humble yourselves; it is a permanent statute." + }, + { + "verseNum": 32, + "text": "The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen garments" + }, + { + "verseNum": 33, + "text": "and make atonement for the Most Holy Place, the Tent of Meeting, and the altar, and for the priests and all the people of the assembly." + }, + { + "verseNum": 34, + "text": "This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.”\n \nAnd all this was done as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to Aaron, his sons, and all the Israelites and tell them this is what the LORD has commanded:" + }, + { + "verseNum": 3, + "text": "‘Anyone from the house of Israel who slaughters an ox, a lamb, or a goat in the camp or outside of it" + }, + { + "verseNum": 4, + "text": "instead of bringing it to the entrance to the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be cut off from among his people." + }, + { + "verseNum": 5, + "text": "For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace to the LORD." + }, + { + "verseNum": 6, + "text": "The priest will then sprinkle the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma to the LORD." + }, + { + "verseNum": 7, + "text": "They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent statute for them for the generations to come.’" + }, + { + "verseNum": 8, + "text": "Tell them that if anyone from the house of Israel or any foreigner living among them offers a burnt offering or a sacrifice" + }, + { + "verseNum": 9, + "text": "but does not bring it to the entrance to the Tent of Meeting to sacrifice it to the LORD, that man must be cut off from his people." + }, + { + "verseNum": 10, + "text": "If anyone from the house of Israel or a foreigner living among them eats any blood, I will set My face against that person and cut him off from among his people." + }, + { + "verseNum": 11, + "text": "For the life of the flesh is in the blood, and I have given it to you to make atonement for your souls upon the altar; for it is the blood that makes atonement for the soul." + }, + { + "verseNum": 12, + "text": "Therefore I say to the Israelites, ‘None of you may eat blood, nor may any foreigner living among you eat blood.’" + }, + { + "verseNum": 13, + "text": "And if any Israelite or foreigner living among them hunts down a wild animal or bird that may be eaten, he must drain its blood and cover it with dirt." + }, + { + "verseNum": 14, + "text": "For the life of all flesh is its blood. Therefore I have told the Israelites, ‘You must not eat the blood of any living thing, because the life of all flesh is its blood; whoever eats it must be cut off.’" + }, + { + "verseNum": 15, + "text": "And any person, whether native or foreigner, who eats anything found dead or mauled by wild beasts must wash his clothes and bathe with water, and he will be unclean until evening; then he will be clean." + }, + { + "verseNum": 16, + "text": "But if he does not wash his clothes and bathe himself, then he shall bear his iniquity.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them: I am the LORD your God." + }, + { + "verseNum": 3, + "text": "You must not follow the practices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You must not walk in their customs." + }, + { + "verseNum": 4, + "text": "You are to practice My judgments and keep My statutes by walking in them. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "Keep My statutes and My judgments, for the man who does these things will live by them. I am the LORD." + }, + { + "verseNum": 6, + "text": "None of you are to approach any close relative to have sexual relations. I am the LORD." + }, + { + "verseNum": 7, + "text": "You must not expose the nakedness of your father by having sexual relations with your mother. She is your mother; you must not have sexual relations with her." + }, + { + "verseNum": 8, + "text": "You must not have sexual relations with your father’s wife; it would dishonor your father." + }, + { + "verseNum": 9, + "text": "You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the same home or elsewhere." + }, + { + "verseNum": 10, + "text": "You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family." + }, + { + "verseNum": 11, + "text": "You must not have sexual relations with the daughter of your father’s wife, born to your father; she is your sister." + }, + { + "verseNum": 12, + "text": "You must not have sexual relations with your father’s sister; she is your father’s close relative." + }, + { + "verseNum": 13, + "text": "You must not have sexual relations with your mother’s sister, for she is your mother’s close relative." + }, + { + "verseNum": 14, + "text": "You must not dishonor your father’s brother by approaching his wife to have sexual relations with her; she is your aunt." + }, + { + "verseNum": 15, + "text": "You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are not to have sexual relations with her." + }, + { + "verseNum": 16, + "text": "You must not have sexual relations with your brother’s wife; that would shame your brother." + }, + { + "verseNum": 17, + "text": "You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are close relatives; it is depraved." + }, + { + "verseNum": 18, + "text": "You must not take your wife’s sister as a rival wife and have sexual relations with her while your wife is still alive." + }, + { + "verseNum": 19, + "text": "You must not approach a woman to have sexual relations with her during her menstrual period." + }, + { + "verseNum": 20, + "text": "You must not lie carnally with your neighbor’s wife and thus defile yourself with her." + }, + { + "verseNum": 21, + "text": "You must not give any of your children to be sacrificed to Molech, for you must not profane the name of your God. I am the LORD." + }, + { + "verseNum": 22, + "text": "You must not lie with a man as with a woman; that is an abomination." + }, + { + "verseNum": 23, + "text": "You must not lie carnally with any animal, thus defiling yourself with it; a woman must not stand before an animal to mate with it; that is a perversion." + }, + { + "verseNum": 24, + "text": "Do not defile yourselves by any of these practices, for by all these things the nations I am driving out before you have defiled themselves." + }, + { + "verseNum": 25, + "text": "Even the land has become defiled, so I am punishing it for its sin, and the land will vomit out its inhabitants." + }, + { + "verseNum": 26, + "text": "But you are to keep My statutes and ordinances, and you must not commit any of these abominations—neither your native-born nor the foreigner who lives among you." + }, + { + "verseNum": 27, + "text": "For the men who were in the land before you committed all these abominations, and the land has become defiled." + }, + { + "verseNum": 28, + "text": "So if you defile the land, it will vomit you out as it spewed out the nations before you." + }, + { + "verseNum": 29, + "text": "Therefore anyone who commits any of these abominations must be cut off from among his people." + }, + { + "verseNum": 30, + "text": "You must keep My charge not to practice any of the abominable customs that were practiced before you, so that you do not defile yourselves by them. I am the LORD your God.”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am holy." + }, + { + "verseNum": 3, + "text": "Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD your God." + }, + { + "verseNum": 4, + "text": "Do not turn to idols or make for yourselves molten gods. I am the LORD your God." + }, + { + "verseNum": 5, + "text": "When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance." + }, + { + "verseNum": 6, + "text": "It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up." + }, + { + "verseNum": 7, + "text": "If any of it is eaten on the third day, it is tainted and will not be accepted." + }, + { + "verseNum": 8, + "text": "Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person must be cut off from his people." + }, + { + "verseNum": 9, + "text": "When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest." + }, + { + "verseNum": 10, + "text": "You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the foreigner. I am the LORD your God." + }, + { + "verseNum": 11, + "text": "You must not steal. You must not lie or deceive one another." + }, + { + "verseNum": 12, + "text": "You must not swear falsely by My name and so profane the name of your God. I am the LORD." + }, + { + "verseNum": 13, + "text": "You must not defraud your neighbor or rob him.\n \nYou must not withhold until morning the wages due a hired hand." + }, + { + "verseNum": 14, + "text": "You must not curse the deaf or place a stumbling block before the blind, but you shall fear your God. I am the LORD." + }, + { + "verseNum": 15, + "text": "You must not pervert justice; you must not show partiality to the poor or favoritism to the rich; you are to judge your neighbor fairly." + }, + { + "verseNum": 16, + "text": "You must not go about spreading slander among your people.\n \nYou must not endanger the life of your neighbor. I am the LORD." + }, + { + "verseNum": 17, + "text": "You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him." + }, + { + "verseNum": 18, + "text": "Do not seek revenge or bear a grudge against any of your people, but love your neighbor as yourself. I am the LORD." + }, + { + "verseNum": 19, + "text": "You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two kinds of material." + }, + { + "verseNum": 20, + "text": "If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punishment. But they are not to be put to death, because she had not been freed." + }, + { + "verseNum": 21, + "text": "The man, however, must bring a ram to the entrance to the Tent of Meeting as his guilt offering to the LORD." + }, + { + "verseNum": 22, + "text": "The priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven the sin he has committed." + }, + { + "verseNum": 23, + "text": "When you enter the land and plant any kind of tree for food, you shall regard the fruit as forbidden. For three years it will be forbidden to you and must not be eaten." + }, + { + "verseNum": 24, + "text": "In the fourth year all its fruit must be consecrated as a praise offering to the LORD." + }, + { + "verseNum": 25, + "text": "But in the fifth year you may eat its fruit; thus your harvest will be increased. I am the LORD your God." + }, + { + "verseNum": 26, + "text": "You must not eat anything with blood still in it.\n \nYou must not practice divination or sorcery." + }, + { + "verseNum": 27, + "text": "You must not cut off the hair at the sides of your head or clip off the edges of your beard." + }, + { + "verseNum": 28, + "text": "You must not make any cuts in your bodies for the dead or put tattoo marks on yourselves. I am the LORD." + }, + { + "verseNum": 29, + "text": "You must not defile your daughter by making her a prostitute, or the land will be prostituted and filled with depravity." + }, + { + "verseNum": 30, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 31, + "text": "You must not turn to mediums or spiritists; do not seek them out, or you will be defiled by them. I am the LORD your God." + }, + { + "verseNum": 32, + "text": "You are to rise in the presence of the elderly, honor the aged, and fear your God. I am the LORD." + }, + { + "verseNum": 33, + "text": "When a foreigner resides with you in your land, you must not oppress him." + }, + { + "verseNum": 34, + "text": "You must treat the foreigner living among you as native-born and love him as yourself, for you were foreigners in the land of Egypt. I am the LORD your God." + }, + { + "verseNum": 35, + "text": "You must not use dishonest measures of length, weight, or volume." + }, + { + "verseNum": 36, + "text": "You shall maintain honest scales and weights, an honest ephah, and an honest hin. I am the LORD your God, who brought you out of the land of Egypt." + }, + { + "verseNum": 37, + "text": "You must keep all My statutes and all My ordinances and follow them. I am the LORD.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell the Israelites, ‘Any Israelite or foreigner living in Israel who gives any of his children to Molech must be put to death. The people of the land are to stone him." + }, + { + "verseNum": 3, + "text": "And I will set My face against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy name." + }, + { + "verseNum": 4, + "text": "And if the people of the land ever hide their eyes and fail to put to death the man who gives one of his children to Molech," + }, + { + "verseNum": 5, + "text": "then I will set My face against that man and his family and cut off from among their people both him and all who follow him in prostituting themselves with Molech." + }, + { + "verseNum": 6, + "text": "Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people." + }, + { + "verseNum": 7, + "text": "Consecrate yourselves, therefore, and be holy, because I am the LORD your God." + }, + { + "verseNum": 8, + "text": "And you shall keep My statutes and practice them. I am the LORD who sanctifies you." + }, + { + "verseNum": 9, + "text": "If anyone curses his father or mother, he must be put to death. He has cursed his father or mother; his blood shall be upon him." + }, + { + "verseNum": 10, + "text": "If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put to death." + }, + { + "verseNum": 11, + "text": "If a man lies with his father’s wife, he has uncovered his father’s nakedness. Both must surely be put to death; their blood is upon them." + }, + { + "verseNum": 12, + "text": "If a man lies with his daughter-in-law, both must surely be put to death. They have acted perversely; their blood is upon them." + }, + { + "verseNum": 13, + "text": "If a man lies with a man as with a woman, they have both committed an abomination. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 14, + "text": "If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no depravity among you." + }, + { + "verseNum": 15, + "text": "If a man lies carnally with an animal, he must be put to death. And you are also to kill the animal." + }, + { + "verseNum": 16, + "text": "If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their blood is upon them." + }, + { + "verseNum": 17, + "text": "If a man marries his sister, whether the daughter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncovered the nakedness of his sister; he shall bear his iniquity." + }, + { + "verseNum": 18, + "text": "If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of her blood. Both of them must be cut off from among their people." + }, + { + "verseNum": 19, + "text": "You must not have sexual relations with the sister of your mother or your father, for it is exposing one’s own kin; both shall bear their iniquity." + }, + { + "verseNum": 20, + "text": "If a man lies with his uncle’s wife, he has uncovered the nakedness of his uncle. They will bear their sin; they shall die childless." + }, + { + "verseNum": 21, + "text": "If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of his brother; they shall be childless." + }, + { + "verseNum": 22, + "text": "You are therefore to keep all My statutes and ordinances, so that the land where I am bringing you to live will not vomit you out." + }, + { + "verseNum": 23, + "text": "You must not follow the statutes of the nations I am driving out before you. Because they did all these things, I abhorred them." + }, + { + "verseNum": 24, + "text": "But I have told you that you will inherit their land, since I will give it to you as an inheritance—a land flowing with milk and honey. I am the LORD your God, who has set you apart from the peoples." + }, + { + "verseNum": 25, + "text": "You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by anything that crawls on the ground; I have set these apart as unclean for you." + }, + { + "verseNum": 26, + "text": "You are to be holy to Me because I, the LORD, am holy, and I have set you apart from the nations to be My own." + }, + { + "verseNum": 27, + "text": "A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; their blood is upon them.’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead person among his people," + }, + { + "verseNum": 2, + "text": "except for his immediate family—his mother, father, son, daughter, or brother," + }, + { + "verseNum": 3, + "text": "or his unmarried sister who is near to him, since she has no husband." + }, + { + "verseNum": 4, + "text": "He is not to defile himself for those related to him by marriage, and so profane himself." + }, + { + "verseNum": 5, + "text": "Priests must not make bald spots on their heads, shave off the edges of their beards, or make cuts in their bodies." + }, + { + "verseNum": 6, + "text": "They must be holy to their God and not profane the name of their God. Because they present to the LORD the offerings made by fire, the food of their God, they must be holy." + }, + { + "verseNum": 7, + "text": "A priest must not marry a woman defiled by prostitution or divorced by her husband, for the priest is holy to his God." + }, + { + "verseNum": 8, + "text": "You are to regard him as holy, since he presents the food of your God. He shall be holy to you, because I the LORD am holy—I who set you apart." + }, + { + "verseNum": 9, + "text": "If a priest’s daughter defiles herself by prostituting herself, she profanes her father; she must be burned in the fire." + }, + { + "verseNum": 10, + "text": "The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly garments, must not let his hair hang loose or tear his garments." + }, + { + "verseNum": 11, + "text": "He must not go near any dead body; he must not defile himself, even for his father or mother." + }, + { + "verseNum": 12, + "text": "He must not leave or desecrate the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the LORD." + }, + { + "verseNum": 13, + "text": "The woman he marries must be a virgin." + }, + { + "verseNum": 14, + "text": "He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a virgin from his own people," + }, + { + "verseNum": 15, + "text": "so that he does not defile his offspring among his people, for I am the LORD who sanctifies him.”" + }, + { + "verseNum": 16, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 17, + "text": "“Say to Aaron, ‘For the generations to come, none of your descendants who has a physical defect may approach to offer the food of his God." + }, + { + "verseNum": 18, + "text": "No man who has any defect may approach—no man who is blind, lame, disfigured, or deformed;" + }, + { + "verseNum": 19, + "text": "no man who has a broken foot or hand," + }, + { + "verseNum": 20, + "text": "or who is a hunchback or dwarf, or who has an eye defect, a festering rash, scabs, or a crushed testicle." + }, + { + "verseNum": 21, + "text": "No descendant of Aaron the priest who has a defect shall approach to present the offerings made by fire to the LORD. Since he has a defect, he is not to come near to offer the food of his God." + }, + { + "verseNum": 22, + "text": "He may eat the most holy food of his God as well as the holy food," + }, + { + "verseNum": 23, + "text": "but because he has a defect, he must not go near the veil or approach the altar, so as not to desecrate My sanctuaries. For I am the LORD who sanctifies them.’”" + }, + { + "verseNum": 24, + "text": "Moses told this to Aaron and his sons and to all the Israelites." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Tell Aaron and his sons to treat with respect the sacred offerings that the Israelites have consecrated to Me, so that they do not profane My holy name. I am the LORD." + }, + { + "verseNum": 3, + "text": "Tell them that for the generations to come, if any of their descendants in a state of uncleanness approaches the sacred offerings that the Israelites consecrate to the LORD, that person must be cut off from My presence. I am the LORD." + }, + { + "verseNum": 4, + "text": "If a descendant of Aaron has a skin disease or a discharge, he may not eat the sacred offerings until he is clean. Whoever touches anything defiled by a corpse or by a man who has an emission of semen," + }, + { + "verseNum": 5, + "text": "or whoever touches a crawling creature or a person that makes him unclean, whatever the uncleanness may be—" + }, + { + "verseNum": 6, + "text": "the man who touches any of these will remain unclean until evening. He must not eat from the sacred offerings unless he has bathed himself with water." + }, + { + "verseNum": 7, + "text": "When the sun has set, he will become clean, and then he may eat from the sacred offerings, for they are his food." + }, + { + "verseNum": 8, + "text": "He must not eat anything found dead or torn by wild animals, which would make him unclean. I am the LORD." + }, + { + "verseNum": 9, + "text": "The priests must keep My charge, lest they bear the guilt and die because they profane it. I am the LORD who sanctifies them." + }, + { + "verseNum": 10, + "text": "No one outside a priest’s family may eat the sacred offering, nor may the guest of a priest or his hired hand eat it." + }, + { + "verseNum": 11, + "text": "But if a priest buys a slave with his own money, or if a slave is born in his household, that slave may eat his food." + }, + { + "verseNum": 12, + "text": "If the priest’s daughter is married to a man other than a priest, she is not to eat of the sacred contributions." + }, + { + "verseNum": 13, + "text": "But if a priest’s daughter with no children becomes widowed or divorced and returns to her father’s house, she may share her father’s food as in her youth. But no outsider may share it." + }, + { + "verseNum": 14, + "text": "If anyone eats a sacred offering in error, he must add a fifth to its value and give the sacred offering to the priest." + }, + { + "verseNum": 15, + "text": "The priests must not profane the sacred offerings that the Israelites present to the LORD" + }, + { + "verseNum": 16, + "text": "by allowing the people to eat the sacred offerings and thus to bear the punishment for guilt. For I am the LORD who sanctifies them.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 18, + "text": "“Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt offering to the LORD, whether to fulfill a vow or as a freewill offering," + }, + { + "verseNum": 19, + "text": "must offer an unblemished male from the cattle, sheep, or goats in order for it to be accepted on your behalf." + }, + { + "verseNum": 20, + "text": "You must not present anything with a defect, because it will not be accepted on your behalf." + }, + { + "verseNum": 21, + "text": "When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as a freewill offering, it must be without blemish or defect to be acceptable." + }, + { + "verseNum": 22, + "text": "You are not to present to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a festering rash, or a scab; you must not put any of these on the altar as an offering made by fire to the LORD." + }, + { + "verseNum": 23, + "text": "You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but it is not acceptable in fulfillment of a vow." + }, + { + "verseNum": 24, + "text": "You are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land." + }, + { + "verseNum": 25, + "text": "Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are deformed and flawed.’”" + }, + { + "verseNum": 26, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“When an ox, a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it will be acceptable as an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "But you must not slaughter an ox or a sheep on the same day as its young." + }, + { + "verseNum": 29, + "text": "When you sacrifice a thank offering to the LORD, offer it so that it may be acceptable on your behalf." + }, + { + "verseNum": 30, + "text": "It must be eaten that same day. Do not leave any of it until morning. I am the LORD." + }, + { + "verseNum": 31, + "text": "You are to keep My commandments and practice them. I am the LORD." + }, + { + "verseNum": 32, + "text": "You must not profane My holy name. I must be acknowledged as holy among the Israelites. I am the LORD who sanctifies you," + }, + { + "verseNum": 33, + "text": "who brought you out of the land of Egypt to be your God. I am the LORD.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘These are My appointed feasts, the feasts of the LORD that you are to proclaim as sacred assemblies." + }, + { + "verseNum": 3, + "text": "For six days work may be done, but the seventh day is a Sabbath of complete rest, a day of sacred assembly. You must not do any work; wherever you live, it is a Sabbath to the LORD." + }, + { + "verseNum": 4, + "text": "These are the LORD’s appointed feasts, the sacred assemblies you are to proclaim at their appointed times." + }, + { + "verseNum": 5, + "text": "The Passover to the LORD begins at twilight on the fourteenth day of the first month." + }, + { + "verseNum": 6, + "text": "On the fifteenth day of the same month begins the Feast of Unleavened Bread to the LORD. For seven days you must eat unleavened bread." + }, + { + "verseNum": 7, + "text": "On the first day you are to hold a sacred assembly; you are not to do any regular work." + }, + { + "verseNum": 8, + "text": "For seven days you are to present an offering made by fire to the LORD. On the seventh day there shall be a sacred assembly; you must not do any regular work.’”" + }, + { + "verseNum": 9, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 10, + "text": "“Speak to the Israelites and say, ‘When you enter the land that I am giving you and you reap its harvest, you are to bring to the priest a sheaf of the firstfruits of your harvest." + }, + { + "verseNum": 11, + "text": "And he shall wave the sheaf before the LORD so that it may be accepted on your behalf; the priest is to wave it on the day after the Sabbath." + }, + { + "verseNum": 12, + "text": "On the day you wave the sheaf, you shall offer a year-old lamb without blemish as a burnt offering to the LORD," + }, + { + "verseNum": 13, + "text": "along with its grain offering of two-tenths of an ephah of fine flour mixed with oil—an offering made by fire to the LORD, a pleasing aroma—and its drink offering of a quarter hin of wine." + }, + { + "verseNum": 14, + "text": "You must not eat any bread or roasted or new grain until the very day you have brought this offering to your God. This is to be a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 15, + "text": "From the day after the Sabbath, the day you brought the sheaf of the wave offering, you are to count off seven full weeks." + }, + { + "verseNum": 16, + "text": "You shall count off fifty days until the day after the seventh Sabbath, and then present an offering of new grain to the LORD." + }, + { + "verseNum": 17, + "text": "Bring two loaves of bread from your dwellings as a wave offering, each made from two-tenths of an ephah of fine flour, baked with leaven, as the firstfruits to the LORD." + }, + { + "verseNum": 18, + "text": "Along with the bread you are to present seven unblemished male lambs a year old, one young bull, and two rams. They will be a burnt offering to the LORD, together with their grain offerings and drink offerings—an offering made by fire, a pleasing aroma to the LORD." + }, + { + "verseNum": 19, + "text": "You shall also prepare one male goat as a sin offering and two male lambs a year old as a peace offering." + }, + { + "verseNum": 20, + "text": "The priest is to wave the lambs as a wave offering before the LORD, together with the bread of the firstfruits. The bread and the two lambs shall be holy to the LORD for the priest." + }, + { + "verseNum": 21, + "text": "On that same day you are to proclaim a sacred assembly, and you must not do any regular work. This is to be a permanent statute wherever you live for the generations to come." + }, + { + "verseNum": 22, + "text": "When you reap the harvest of your land, do not reap all the way to the edges of your field or gather the gleanings of your harvest. Leave them for the poor and the foreign resident. I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "The LORD also said to Moses," + }, + { + "verseNum": 24, + "text": "“Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred assembly announced by trumpet blasts." + }, + { + "verseNum": 25, + "text": "You must not do any regular work, but you are to present an offering made by fire to the LORD.’”" + }, + { + "verseNum": 26, + "text": "Again the LORD said to Moses," + }, + { + "verseNum": 27, + "text": "“The tenth day of this seventh month is the Day of Atonement. You shall hold a sacred assembly and humble yourselves, and present an offering made by fire to the LORD." + }, + { + "verseNum": 28, + "text": "On this day you are not to do any work, for it is the Day of Atonement, when atonement is made for you before the LORD your God." + }, + { + "verseNum": 29, + "text": "If anyone does not humble himself on this day, he must be cut off from his people." + }, + { + "verseNum": 30, + "text": "I will destroy from among his people anyone who does any work on this day." + }, + { + "verseNum": 31, + "text": "You are not to do any work at all. This is a permanent statute for the generations to come, wherever you live." + }, + { + "verseNum": 32, + "text": "It will be a Sabbath of complete rest for you, and you shall humble yourselves. From the evening of the ninth day of the month until the following evening you are to keep your Sabbath.”" + }, + { + "verseNum": 33, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 34, + "text": "“Speak to the Israelites and say, ‘On the fifteenth day of the seventh month the Feast of Tabernacles to the LORD begins, and it continues for seven days." + }, + { + "verseNum": 35, + "text": "On the first day there shall be a sacred assembly. You must not do any regular work." + }, + { + "verseNum": 36, + "text": "For seven days you are to present an offering made by fire to the LORD. On the eighth day you are to hold a sacred assembly and present an offering made by fire to the LORD. It is a solemn assembly; you must not do any regular work." + }, + { + "verseNum": 37, + "text": "These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting offerings by fire to the LORD—burnt offerings and grain offerings, sacrifices and drink offerings, each on its designated day." + }, + { + "verseNum": 38, + "text": "These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill offerings you give to the LORD." + }, + { + "verseNum": 39, + "text": "On the fifteenth day of the seventh month, after you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first day and also on the eighth day." + }, + { + "verseNum": 40, + "text": "On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days." + }, + { + "verseNum": 41, + "text": "You are to celebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generations to come; you are to celebrate it in the seventh month." + }, + { + "verseNum": 42, + "text": "You are to dwell in booths for seven days. All the native-born of Israel must dwell in booths," + }, + { + "verseNum": 43, + "text": "so that your descendants may know that I made the Israelites dwell in booths when I brought them out of the land of Egypt. I am the LORD your God.’”" + }, + { + "verseNum": 44, + "text": "So Moses announced to the Israelites the appointed feasts of the LORD." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps burning continually." + }, + { + "verseNum": 3, + "text": "Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continually before the LORD from evening until morning. This is to be a permanent statute for the generations to come." + }, + { + "verseNum": 4, + "text": "He shall tend the lamps on the pure gold lampstand before the LORD continually." + }, + { + "verseNum": 5, + "text": "You are also to take fine flour and bake twelve loaves, using two-tenths of an ephah for each loaf," + }, + { + "verseNum": 6, + "text": "and set them in two rows—six per row—on the table of pure gold before the LORD." + }, + { + "verseNum": 7, + "text": "And you are to place pure frankincense near each row, so that it may serve as a memorial portion for the bread, an offering made by fire to the LORD." + }, + { + "verseNum": 8, + "text": "Every Sabbath day the bread is to be set out before the LORD on behalf of the Israelites as a permanent covenant." + }, + { + "verseNum": 9, + "text": "It belongs to Aaron and his sons, who are to eat it in a holy place; for it is to him a most holy part of the offerings made by fire to the LORD—his portion forever.”" + }, + { + "verseNum": 10, + "text": "Now the son of an Israelite mother and an Egyptian father went out among the Israelites, and a fight broke out in the camp between him and an Israelite." + }, + { + "verseNum": 11, + "text": "The son of the Israelite woman blasphemed the Name with a curse. So they brought him to Moses. (His mother’s name was Shelomith daughter of Dibri, of the tribe of Dan.)" + }, + { + "verseNum": 12, + "text": "They placed him in custody until the will of the LORD should be made clear to them." + }, + { + "verseNum": 13, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 14, + "text": "“Take the blasphemer outside the camp, and have all who heard him lay their hands on his head; then have the whole assembly stone him." + }, + { + "verseNum": 15, + "text": "And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin." + }, + { + "verseNum": 16, + "text": "Whoever blasphemes the name of the LORD must surely be put to death; the whole assembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the Name, he must be put to death." + }, + { + "verseNum": 17, + "text": "And if a man takes the life of anyone else, he must surely be put to death." + }, + { + "verseNum": 18, + "text": "Whoever kills an animal must make restitution—life for life." + }, + { + "verseNum": 19, + "text": "If anyone injures his neighbor, whatever he has done must be done to him:" + }, + { + "verseNum": 20, + "text": "fracture for fracture, eye for eye, tooth for tooth. Just as he injured the other person, the same must be inflicted on him." + }, + { + "verseNum": 21, + "text": "Whoever kills an animal must make restitution, but whoever kills a man must be put to death." + }, + { + "verseNum": 22, + "text": "You are to have the same standard of law for the foreign resident and the native; for I am the LORD your God.’”" + }, + { + "verseNum": 23, + "text": "Then Moses spoke to the Israelites, and they took the blasphemer outside the camp and stoned him. So the Israelites did as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses on Mount Sinai," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them: When you enter the land that I am giving you, the land itself must observe a Sabbath to the LORD." + }, + { + "verseNum": 3, + "text": "For six years you may sow your field and prune your vineyard and gather its crops." + }, + { + "verseNum": 4, + "text": "But in the seventh year there shall be a Sabbath of complete rest for the land—a Sabbath to the LORD.\n \nYou are not to sow your field or prune your vineyard." + }, + { + "verseNum": 5, + "text": "You are not to reap the aftergrowth of your harvest or gather the grapes of your untended vines. The land must have a year of complete rest." + }, + { + "verseNum": 6, + "text": "Whatever the land yields during the Sabbath year shall be food for you—for yourself, your manservant and maidservant, the hired hand or foreigner who stays with you," + }, + { + "verseNum": 7, + "text": "and for your livestock and the wild animals in your land. All its growth may serve as food." + }, + { + "verseNum": 8, + "text": "And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years." + }, + { + "verseNum": 9, + "text": "Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout your land." + }, + { + "verseNum": 10, + "text": "So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to return to his property and to his clan." + }, + { + "verseNum": 11, + "text": "The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or harvest the untended vines." + }, + { + "verseNum": 12, + "text": "For it is a Jubilee; it shall be holy to you. You may eat only the crops taken directly from the field." + }, + { + "verseNum": 13, + "text": "In this Year of Jubilee, each of you shall return to his own property." + }, + { + "verseNum": 14, + "text": "If you make a sale to your neighbor or a purchase from him, you must not take advantage of each other." + }, + { + "verseNum": 15, + "text": "You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the number of harvest years remaining." + }, + { + "verseNum": 16, + "text": "You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a given number of harvests." + }, + { + "verseNum": 17, + "text": "Do not take advantage of each other, but fear your God; for I am the LORD your God." + }, + { + "verseNum": 18, + "text": "You are to keep My statutes and carefully observe My judgments, so that you may dwell securely in the land." + }, + { + "verseNum": 19, + "text": "Then the land will yield its fruit, so that you can eat your fill and dwell in safety in the land." + }, + { + "verseNum": 20, + "text": "Now you may wonder, ‘What will we eat in the seventh year if we do not sow or gather our produce?’" + }, + { + "verseNum": 21, + "text": "But I will send My blessing upon you in the sixth year, so that the land will yield a crop sufficient for three years." + }, + { + "verseNum": 22, + "text": "While you are sowing in the eighth year, you will be eating from the previous harvest, until the ninth year’s harvest comes in." + }, + { + "verseNum": 23, + "text": "The land must not be sold permanently, because it is Mine, and you are but foreigners and residents with Me." + }, + { + "verseNum": 24, + "text": "Thus for every piece of property you possess, you must provide for the redemption of the land." + }, + { + "verseNum": 25, + "text": "If your brother becomes impoverished and sells some of his property, his nearest of kin may come and redeem what his brother has sold." + }, + { + "verseNum": 26, + "text": "Or if a man has no one to redeem it for him, but he prospers and acquires enough to redeem his land," + }, + { + "verseNum": 27, + "text": "he shall calculate the years since its sale, repay the balance to the man to whom he sold it, and return to his property." + }, + { + "verseNum": 28, + "text": "But if he cannot obtain enough to repay him, what he sold will remain in possession of the buyer until the Year of Jubilee. In the Jubilee, however, it is to be released, so that he may return to his property." + }, + { + "verseNum": 29, + "text": "If a man sells a house in a walled city, he retains his right of redemption until a full year after its sale; during that year it may be redeemed." + }, + { + "verseNum": 30, + "text": "If it is not redeemed by the end of a full year, then the house in the walled city is permanently transferred to its buyer and his descendants. It is not to be released in the Jubilee." + }, + { + "verseNum": 31, + "text": "But houses in villages with no walls around them are to be considered as open fields. They may be redeemed, and they shall be released in the Jubilee." + }, + { + "verseNum": 32, + "text": "As for the cities of the Levites, the Levites always have the right to redeem their houses in the cities they possess." + }, + { + "verseNum": 33, + "text": "So whatever belongs to the Levites may be redeemed—a house sold in a city they possess—and must be released in the Jubilee, because the houses in the cities of the Levites are their possession among the Israelites." + }, + { + "verseNum": 34, + "text": "But the open pastureland around their cities may not be sold, for this is their permanent possession." + }, + { + "verseNum": 35, + "text": "Now if your countryman becomes destitute and cannot support himself among you, then you are to help him as you would a foreigner or stranger, so that he can continue to live among you." + }, + { + "verseNum": 36, + "text": "Do not take any interest or profit from him, but fear your God, that your countryman may live among you." + }, + { + "verseNum": 37, + "text": "You must not lend him your silver at interest or sell him your food for profit." + }, + { + "verseNum": 38, + "text": "I am the LORD your God, who brought you out of the land of Egypt to give you the land of Canaan and to be your God." + }, + { + "verseNum": 39, + "text": "If a countryman among you becomes destitute and sells himself to you, then you must not force him into slave labor." + }, + { + "verseNum": 40, + "text": "Let him stay with you as a hired worker or temporary resident; he is to work for you until the Year of Jubilee." + }, + { + "verseNum": 41, + "text": "Then he and his children are to be released, and he may return to his clan and to the property of his fathers." + }, + { + "verseNum": 42, + "text": "Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves." + }, + { + "verseNum": 43, + "text": "You are not to rule over them harshly, but you shall fear your God." + }, + { + "verseNum": 44, + "text": "Your menservants and maidservants shall come from the nations around you, from whom you may purchase them." + }, + { + "verseNum": 45, + "text": "You may also purchase them from the foreigners residing among you or their clans living among you who are born in your land. These may become your property." + }, + { + "verseNum": 46, + "text": "You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no man may rule harshly over his brother." + }, + { + "verseNum": 47, + "text": "If a foreigner residing among you prospers, but your countryman dwelling near him becomes destitute and sells himself to the foreigner or to a member of his clan," + }, + { + "verseNum": 48, + "text": "he retains the right of redemption after he has sold himself. One of his brothers may redeem him:" + }, + { + "verseNum": 49, + "text": "either his uncle or cousin or any close relative from his clan may redeem him. Or if he prospers, he may redeem himself." + }, + { + "verseNum": 50, + "text": "He and his purchaser will then count the time from the year he sold himself up to the Year of Jubilee. The price of his sale will be determined by the number of years, based on the daily wages of a hired hand." + }, + { + "verseNum": 51, + "text": "If many years remain, he must pay for his redemption in proportion to his purchase price." + }, + { + "verseNum": 52, + "text": "If only a few years remain until the Year of Jubilee, he is to calculate and pay his redemption according to his remaining years." + }, + { + "verseNum": 53, + "text": "He shall be treated like a man hired from year to year, but a foreign owner must not rule over him harshly in your sight." + }, + { + "verseNum": 54, + "text": "Even if he is not redeemed in any of these ways, he and his children shall be released in the Year of Jubilee." + }, + { + "verseNum": 55, + "text": "For the Israelites are My servants. They are My servants, whom I brought out of the land of Egypt. I am the LORD your God." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“You must not make idols for yourselves or set up a carved image or sacred pillar; you must not place a sculpted stone in your land to bow down to it. For I am the LORD your God." + }, + { + "verseNum": 2, + "text": "You must keep My Sabbaths and have reverence for My sanctuary. I am the LORD." + }, + { + "verseNum": 3, + "text": "If you follow My statutes and carefully keep My commandments," + }, + { + "verseNum": 4, + "text": "I will give you rains in their season, and the land will yield its produce, and the trees of the field will bear their fruit." + }, + { + "verseNum": 5, + "text": "Your threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will dwell securely in your land." + }, + { + "verseNum": 6, + "text": "And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass through your land." + }, + { + "verseNum": 7, + "text": "You will pursue your enemies, and they will fall by the sword before you." + }, + { + "verseNum": 8, + "text": "Five of you will pursue a hundred, and a hundred of you will pursue ten thousand, and your enemies will fall by the sword before you." + }, + { + "verseNum": 9, + "text": "I will turn toward you and make you fruitful and multiply you, and I will establish My covenant with you." + }, + { + "verseNum": 10, + "text": "You will still be eating the old supply of grain when you need to clear it out to make room for the new." + }, + { + "verseNum": 11, + "text": "And I will make My dwelling place among you, and My soul will not despise you." + }, + { + "verseNum": 12, + "text": "I will walk among you and be your God, and you will be My people." + }, + { + "verseNum": 13, + "text": "I am the LORD your God, who brought you out of the land of Egypt so that you would no longer be slaves to the Egyptians. I broke the bars of your yoke and enabled you to walk in uprightness." + }, + { + "verseNum": 14, + "text": "If, however, you fail to obey Me and to carry out all these commandments," + }, + { + "verseNum": 15, + "text": "and if you reject My statutes, despise My ordinances, and neglect to carry out all My commandments, and so break My covenant," + }, + { + "verseNum": 16, + "text": "then this is what I will do to you: I will bring upon you sudden terror, wasting disease, and fever that will destroy your sight and drain your life. You will sow your seed in vain, because your enemies will eat it." + }, + { + "verseNum": 17, + "text": "And I will set My face against you, so that you will be defeated by your enemies. Those who hate you will rule over you, and you will flee when no one pursues you." + }, + { + "verseNum": 18, + "text": "And if after all this you will not obey Me, I will proceed to punish you sevenfold for your sins." + }, + { + "verseNum": 19, + "text": "I will break down your stubborn pride and make your sky like iron and your land like bronze," + }, + { + "verseNum": 20, + "text": "and your strength will be spent in vain. For your land will not yield its produce, and the trees of the land will not bear their fruit." + }, + { + "verseNum": 21, + "text": "If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins." + }, + { + "verseNum": 22, + "text": "I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your numbers, until your roads lie desolate." + }, + { + "verseNum": 23, + "text": "And if in spite of these things you do not accept My discipline, but continue to walk in hostility toward Me," + }, + { + "verseNum": 24, + "text": "then I will act with hostility toward you, and I will strike you sevenfold for your sins." + }, + { + "verseNum": 25, + "text": "And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy." + }, + { + "verseNum": 26, + "text": "When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by weight, so that you will eat but not be satisfied." + }, + { + "verseNum": 27, + "text": "But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me," + }, + { + "verseNum": 28, + "text": "then I will walk in fury against you, and I, even I, will punish you sevenfold for your sins." + }, + { + "verseNum": 29, + "text": "You will eat the flesh of your own sons and daughters." + }, + { + "verseNum": 30, + "text": "I will destroy your high places, cut down your incense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will despise you." + }, + { + "verseNum": 31, + "text": "I will reduce your cities to rubble and lay waste your sanctuaries, and I will refuse to smell the pleasing aroma of your sacrifices." + }, + { + "verseNum": 32, + "text": "And I will lay waste the land, so that your enemies who dwell in it will be appalled." + }, + { + "verseNum": 33, + "text": "But I will scatter you among the nations and will draw out a sword after you as your land becomes desolate and your cities are laid waste." + }, + { + "verseNum": 34, + "text": "Then the land shall enjoy its Sabbaths all the days it lies desolate, while you are in the land of your enemies. At that time the land will rest and enjoy its Sabbaths." + }, + { + "verseNum": 35, + "text": "As long as it lies desolate, the land will have the rest it did not receive during the Sabbaths when you lived in it." + }, + { + "verseNum": 36, + "text": "As for those of you who survive, I will send a faintness into their hearts in the lands of their enemies, so that even the sound of a windblown leaf will put them to flight. And they will flee as one flees the sword, and fall when no one pursues them." + }, + { + "verseNum": 37, + "text": "They will stumble over one another as before the sword, though no one is behind them. So you will not be able to stand against your enemies." + }, + { + "verseNum": 38, + "text": "You will perish among the nations, and the land of your enemies will consume you." + }, + { + "verseNum": 39, + "text": "Those of you who survive in the lands of your enemies will waste away in their iniquity and will decay in the sins of their fathers." + }, + { + "verseNum": 40, + "text": "But if they will confess their iniquity and that of their fathers in the unfaithfulness that they practiced against Me, by which they have also walked in hostility toward Me—" + }, + { + "verseNum": 41, + "text": "and I acted with hostility toward them and brought them into the land of their enemies—and if their uncircumcised hearts will be humbled and they will make amends for their iniquity," + }, + { + "verseNum": 42, + "text": "then I will remember My covenant with Jacob and My covenant with Isaac and My covenant with Abraham, and I will remember the land." + }, + { + "verseNum": 43, + "text": "For the land will be abandoned by them, and it will enjoy its Sabbaths by lying desolate without them. And they will pay the penalty for their iniquity, because they rejected My ordinances and abhorred My statutes." + }, + { + "verseNum": 44, + "text": "Yet in spite of this, when they are in the land of their enemies, I will not reject or despise them so as to destroy them and break My covenant with them; for I am the LORD their God." + }, + { + "verseNum": 45, + "text": "But for their sake I will remember the covenant with their fathers, whom I brought out of the land of Egypt in the sight of the nations, that I might be their God. I am the LORD.”" + }, + { + "verseNum": 46, + "text": "These are the statutes, ordinances, and laws that the LORD established between Himself and the Israelites through Moses on Mount Sinai." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and say to them, ‘When someone makes a special vow to the LORD involving the value of persons," + }, + { + "verseNum": 3, + "text": "if the valuation concerns a male from twenty to sixty years of age, then your valuation shall be fifty shekels of silver, according to the sanctuary shekel." + }, + { + "verseNum": 4, + "text": "Or if it is a female, then your valuation shall be thirty shekels." + }, + { + "verseNum": 5, + "text": "And if the person is from five to twenty years of age, then your valuation for the male shall be twenty shekels, and for the female ten shekels." + }, + { + "verseNum": 6, + "text": "Now if the person is from one month to five years of age, then your valuation for the male shall be five shekels of silver, and for the female three shekels of silver." + }, + { + "verseNum": 7, + "text": "And if the person is sixty years of age or older, then your valuation shall be fifteen shekels for the male and ten shekels for the female." + }, + { + "verseNum": 8, + "text": "But if the one making the vow is too poor to pay the valuation, he is to present the person before the priest, who shall set the value according to what the one making the vow can afford." + }, + { + "verseNum": 9, + "text": "If he vows an animal that may be brought as an offering to the LORD, any such animal given to the LORD shall be holy." + }, + { + "verseNum": 10, + "text": "He must not replace it or exchange it, either good for bad or bad for good. But if he does substitute one animal for another, both that animal and its substitute will be holy." + }, + { + "verseNum": 11, + "text": "But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest." + }, + { + "verseNum": 12, + "text": "The priest shall set its value, whether high or low; as the priest values it, the price will be set." + }, + { + "verseNum": 13, + "text": "If, however, the owner decides to redeem the animal, he must add a fifth to its value." + }, + { + "verseNum": 14, + "text": "Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it." + }, + { + "verseNum": 15, + "text": "But if he who consecrated his house redeems it, he must add a fifth to the assessed value, and it will belong to him." + }, + { + "verseNum": 16, + "text": "If a man consecrates to the LORD a parcel of his land, then your valuation shall be proportional to the seed required for it—fifty shekels of silver for every homer of barley seed." + }, + { + "verseNum": 17, + "text": "If he consecrates his field during the Year of Jubilee, the price will stand according to your valuation." + }, + { + "verseNum": 18, + "text": "But if he consecrates his field after the Jubilee, the priest is to calculate the price in proportion to the years left until the next Year of Jubilee, so that your valuation will be reduced." + }, + { + "verseNum": 19, + "text": "And if the one who consecrated the field decides to redeem it, he must add a fifth to the assessed value, and it shall belong to him." + }, + { + "verseNum": 20, + "text": "If, however, he does not redeem the field, or if he has sold it to another man, it may no longer be redeemed." + }, + { + "verseNum": 21, + "text": "When the field is released in the Jubilee, it will become holy, like a field devoted to the LORD; it becomes the property of the priests." + }, + { + "verseNum": 22, + "text": "Now if a man consecrates to the LORD a field he has purchased, which is not a part of his own property," + }, + { + "verseNum": 23, + "text": "then the priest shall calculate for him the value up to the Year of Jubilee, and the man shall pay the assessed value on that day as a sacred offering to the LORD." + }, + { + "verseNum": 24, + "text": "In the Year of Jubilee the field shall return to the one from whom it was bought—the original owner of the land." + }, + { + "verseNum": 25, + "text": "Every valuation will be according to the sanctuary shekel, twenty gerahs to the shekel." + }, + { + "verseNum": 26, + "text": "But no one may consecrate a firstborn of the livestock, because a firstborn belongs to the LORD. Whether it is an ox or a sheep, it is the LORD’s." + }, + { + "verseNum": 27, + "text": "But if it is among the unclean animals, then he may redeem it according to your valuation and add a fifth of its value. If it is not redeemed, then it shall be sold according to your valuation." + }, + { + "verseNum": 28, + "text": "Nothing that a man sets apart to the LORD from all he owns—whether a man, an animal, or his inherited land—can be sold or redeemed; everything so devoted is most holy to the LORD." + }, + { + "verseNum": 29, + "text": "No person set apart for destruction may be ransomed; he must surely be put to death." + }, + { + "verseNum": 30, + "text": "Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD." + }, + { + "verseNum": 31, + "text": "If a man wishes to redeem part of his tithe, he must add a fifth to its value." + }, + { + "verseNum": 32, + "text": "Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD." + }, + { + "verseNum": 33, + "text": "He must not inspect whether it is good or bad, and he shall not make any substitution. But if he does make a substitution, both the animal and its substitute shall become holy; they cannot be redeemed.’”" + }, + { + "verseNum": 34, + "text": "These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai." + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in the Tent of Meeting in the Wilderness of Sinai. He said:" + }, + { + "verseNum": 2, + "text": "“Take a census of the whole congregation of Israel by their clans and families, listing every man by name, one by one." + }, + { + "verseNum": 3, + "text": "You and Aaron are to number those who are twenty years of age or older by their divisions—everyone who can serve in Israel’s army." + }, + { + "verseNum": 4, + "text": "And one man from each tribe, the head of each family, must be there with you." + }, + { + "verseNum": 5, + "text": "These are the names of the men who are to assist you:\n \n From the tribe of Reuben, Elizur son of Shedeur;" + }, + { + "verseNum": 6, + "text": "from Simeon, Shelumiel son of Zurishaddai;" + }, + { + "verseNum": 7, + "text": "from Judah, Nahshon son of Amminadab;" + }, + { + "verseNum": 8, + "text": "from Issachar, Nethanel son of Zuar;" + }, + { + "verseNum": 9, + "text": "from Zebulun, Eliab son of Helon;" + }, + { + "verseNum": 10, + "text": "from the sons of Joseph:\n \n from Ephraim, Elishama son of Ammihud,\n \n and from Manasseh, Gamaliel son of Pedahzur;" + }, + { + "verseNum": 11, + "text": "from Benjamin, Abidan son of Gideoni;" + }, + { + "verseNum": 12, + "text": "from Dan, Ahiezer son of Ammishaddai;" + }, + { + "verseNum": 13, + "text": "from Asher, Pagiel son of Ocran;" + }, + { + "verseNum": 14, + "text": "from Gad, Eliasaph son of Deuel;" + }, + { + "verseNum": 15, + "text": "and from Naphtali, Ahira son of Enan.”" + }, + { + "verseNum": 16, + "text": "These men were appointed from the congregation; they were the leaders of the tribes of their fathers, the heads of the clans of Israel." + }, + { + "verseNum": 17, + "text": "So Moses and Aaron took these men who had been designated by name," + }, + { + "verseNum": 18, + "text": "and on the first day of the second month they assembled the whole congregation and recorded their ancestry by clans and families, counting one by one the names of those twenty years of age or older," + }, + { + "verseNum": 19, + "text": "just as the LORD had commanded Moses.\n \nSo Moses numbered them in the Wilderness of Sinai:" + }, + { + "verseNum": 20, + "text": "From the sons of Reuben, the firstborn of Israel, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 21, + "text": "those registered to the tribe of Reuben numbered 46,500." + }, + { + "verseNum": 22, + "text": "From the sons of Simeon, according to the records of their clans and families, counting one by one the names of every male twenty years of age or older who could serve in the army," + }, + { + "verseNum": 23, + "text": "those registered to the tribe of Simeon numbered 59,300." + }, + { + "verseNum": 24, + "text": "From the sons of Gad, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 25, + "text": "those registered to the tribe of Gad numbered 45,650." + }, + { + "verseNum": 26, + "text": "From the sons of Judah, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 27, + "text": "those registered to the tribe of Judah numbered 74,600." + }, + { + "verseNum": 28, + "text": "From the sons of Issachar, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 29, + "text": "those registered to the tribe of Issachar numbered 54,400." + }, + { + "verseNum": 30, + "text": "From the sons of Zebulun, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 31, + "text": "those registered to the tribe of Zebulun numbered 57,400." + }, + { + "verseNum": 32, + "text": "From the sons of Joseph:\n \n From the sons of Ephraim, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 33, + "text": "those registered to the tribe of Ephraim numbered 40,500." + }, + { + "verseNum": 34, + "text": "And from the sons of Manasseh, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 35, + "text": "those registered to the tribe of Manasseh numbered 32,200." + }, + { + "verseNum": 36, + "text": "From the sons of Benjamin, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 37, + "text": "those registered to the tribe of Benjamin numbered 35,400." + }, + { + "verseNum": 38, + "text": "From the sons of Dan, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 39, + "text": "those registered to the tribe of Dan numbered 62,700." + }, + { + "verseNum": 40, + "text": "From the sons of Asher, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 41, + "text": "those registered to the tribe of Asher numbered 41,500." + }, + { + "verseNum": 42, + "text": "From the sons of Naphtali, according to the records of their clans and families, counting the names of all those twenty years of age or older who could serve in the army," + }, + { + "verseNum": 43, + "text": "those registered to the tribe of Naphtali numbered 53,400." + }, + { + "verseNum": 44, + "text": "These were the men numbered by Moses and Aaron, with the assistance of the twelve leaders of Israel, each one representing his family." + }, + { + "verseNum": 45, + "text": "So all the Israelites twenty years of age or older who could serve in Israel’s army were counted according to their families." + }, + { + "verseNum": 46, + "text": "And all those counted totaled 603,550." + }, + { + "verseNum": 47, + "text": "The Levites, however, were not numbered along with them by the tribe of their fathers." + }, + { + "verseNum": 48, + "text": "For the LORD had said to Moses:" + }, + { + "verseNum": 49, + "text": "“Do not number the tribe of Levi in the census with the other Israelites." + }, + { + "verseNum": 50, + "text": "Instead, you are to appoint the Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for it, and camp around it." + }, + { + "verseNum": 51, + "text": "Whenever the tabernacle is to move, the Levites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider who goes near it must be put to death." + }, + { + "verseNum": 52, + "text": "The Israelites are to camp by their divisions, each man in his own camp and under his own standard." + }, + { + "verseNum": 53, + "text": "But the Levites are to camp around the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the tabernacle of the Testimony.”" + }, + { + "verseNum": 54, + "text": "Thus the Israelites did everything just as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron:" + }, + { + "verseNum": 2, + "text": "“The Israelites are to camp around the Tent of Meeting at a distance from it, each man under his standard, with the banners of his family." + }, + { + "verseNum": 3, + "text": "On the east side, toward the sunrise, the divisions of Judah are to camp under their standard:\n \n The leader of the descendants of Judah is Nahshon son of Amminadab," + }, + { + "verseNum": 4, + "text": "and his division numbers 74,600." + }, + { + "verseNum": 5, + "text": "The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar," + }, + { + "verseNum": 6, + "text": "and his division numbers 54,400." + }, + { + "verseNum": 7, + "text": "Next will be the tribe of Zebulun. The leader of the Zebulunites is Eliab son of Helon," + }, + { + "verseNum": 8, + "text": "and his division numbers 57,400." + }, + { + "verseNum": 9, + "text": "The total number of men in the divisions of the camp of Judah is 186,400; they shall set out first." + }, + { + "verseNum": 10, + "text": "On the south side, the divisions of Reuben are to camp under their standard:\n \n The leader of the Reubenites is Elizur son of Shedeur," + }, + { + "verseNum": 11, + "text": "and his division numbers 46,500." + }, + { + "verseNum": 12, + "text": "The tribe of Simeon will camp next to it. The leader of the Simeonites is Shelumiel son of Zurishaddai," + }, + { + "verseNum": 13, + "text": "and his division numbers 59,300." + }, + { + "verseNum": 14, + "text": "Next will be the tribe of Gad. The leader of the Gadites is Eliasaph son of Deuel," + }, + { + "verseNum": 15, + "text": "and his division numbers 45,650." + }, + { + "verseNum": 16, + "text": "The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second." + }, + { + "verseNum": 17, + "text": "In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his own place under his standard." + }, + { + "verseNum": 18, + "text": "On the west side, the divisions of Ephraim are to camp under their standard:\n \n The leader of the Ephraimites is Elishama son of Ammihud," + }, + { + "verseNum": 19, + "text": "and his division numbers 40,500." + }, + { + "verseNum": 20, + "text": "The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son of Pedahzur," + }, + { + "verseNum": 21, + "text": "and his division numbers 32,200." + }, + { + "verseNum": 22, + "text": "Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of Gideoni," + }, + { + "verseNum": 23, + "text": "and his division numbers 35,400." + }, + { + "verseNum": 24, + "text": "The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third." + }, + { + "verseNum": 25, + "text": "On the north side, the divisions of Dan are to camp under their standard:\n \n The leader of the Danites is Ahiezer son of Ammishaddai," + }, + { + "verseNum": 26, + "text": "and his division numbers 62,700." + }, + { + "verseNum": 27, + "text": "The tribe of Asher will camp next to it. The leader of the Asherites is Pagiel son of Ocran," + }, + { + "verseNum": 28, + "text": "and his division numbers 41,500." + }, + { + "verseNum": 29, + "text": "Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of Enan," + }, + { + "verseNum": 30, + "text": "and his division numbers 53,400." + }, + { + "verseNum": 31, + "text": "The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.”" + }, + { + "verseNum": 32, + "text": "These are the Israelites, numbered according to their families. The total of those counted in the camps, by their divisions, was 603,550." + }, + { + "verseNum": 33, + "text": "But the Levites were not counted among the other Israelites, as the LORD had commanded Moses." + }, + { + "verseNum": 34, + "text": "So the Israelites did everything the LORD commanded Moses; they camped under their standards in this way and set out in the same way, each man with his clan and his family." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount Sinai." + }, + { + "verseNum": 2, + "text": "These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ithamar." + }, + { + "verseNum": 3, + "text": "These were Aaron’s sons, the anointed priests, who were ordained to serve as priests." + }, + { + "verseNum": 4, + "text": "Nadab and Abihu, however, died in the presence of the LORD when they offered unauthorized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime of their father Aaron." + }, + { + "verseNum": 5, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Bring the tribe of Levi and present them to Aaron the priest to assist him." + }, + { + "verseNum": 7, + "text": "They are to perform duties for him and for the whole congregation before the Tent of Meeting, attending to the service of the tabernacle." + }, + { + "verseNum": 8, + "text": "They shall take care of all the furnishings of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the tabernacle." + }, + { + "verseNum": 9, + "text": "Assign the Levites to Aaron and his sons; they have been given exclusively to him from among the Israelites." + }, + { + "verseNum": 10, + "text": "So you shall appoint Aaron and his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle must be put to death.”" + }, + { + "verseNum": 11, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 12, + "text": "“Behold, I have taken the Levites from among the children of Israel in place of every firstborn Israelite from the womb. The Levites belong to Me," + }, + { + "verseNum": 13, + "text": "for all the firstborn are Mine. On the day I struck down every firstborn in the land of Egypt, I consecrated to Myself all the firstborn in Israel, both man and beast. They are Mine; I am the LORD.”" + }, + { + "verseNum": 14, + "text": "Then the LORD spoke to Moses in the Wilderness of Sinai, saying," + }, + { + "verseNum": 15, + "text": "“Number the Levites by their families and clans. You are to count every male a month old or more.”" + }, + { + "verseNum": 16, + "text": "So Moses numbered them according to the word of the LORD, as he had been commanded." + }, + { + "verseNum": 17, + "text": "These were the sons of Levi by name: Gershon, Kohath, and Merari." + }, + { + "verseNum": 18, + "text": "These were the names of the sons of Gershon by their clans: Libni and Shimei." + }, + { + "verseNum": 19, + "text": "The sons of Kohath by their clans were Amram, Izhar, Hebron, and Uzziel." + }, + { + "verseNum": 20, + "text": "And the sons of Merari by their clans were Mahli and Mushi. These were the clans of the Levites, according to their families." + }, + { + "verseNum": 21, + "text": "From Gershon came the Libnite clan and the Shimeite clan; these were the Gershonite clans." + }, + { + "verseNum": 22, + "text": "The number of all the males a month old or more was 7,500." + }, + { + "verseNum": 23, + "text": "The Gershonite clans were to camp on the west, behind the tabernacle," + }, + { + "verseNum": 24, + "text": "and the leader of the families of the Gershonites was Eliasaph son of Lael." + }, + { + "verseNum": 25, + "text": "The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its covering, the curtain for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, the curtain for the entrance to the courtyard that surrounds the tabernacle and altar, and the cords—all the service for these items." + }, + { + "verseNum": 27, + "text": "From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; these were the clans of the Kohathites." + }, + { + "verseNum": 28, + "text": "The number of all the males a month old or more was 8,600. They were responsible for the duties of the sanctuary." + }, + { + "verseNum": 29, + "text": "The clans of the Kohathites were to camp on the south side of the tabernacle," + }, + { + "verseNum": 30, + "text": "and the leader of the families of the Kohathites was Elizaphan son of Uzziel." + }, + { + "verseNum": 31, + "text": "Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctuary used with them, and the curtain—all the service for these items." + }, + { + "verseNum": 32, + "text": "The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those responsible for the duties of the sanctuary." + }, + { + "verseNum": 33, + "text": "From Merari came the clans of the Mahlites and Mushites; these were the Merarite clans." + }, + { + "verseNum": 34, + "text": "The number of all the males a month old or more was 6,200." + }, + { + "verseNum": 35, + "text": "The leader of the families of the Merarites was Zuriel son of Abihail; they were to camp on the north side of the tabernacle." + }, + { + "verseNum": 36, + "text": "The duties assigned to the sons of Merari were the tabernacle’s frames, crossbars, posts, bases, and all its equipment—all the service for these items," + }, + { + "verseNum": 37, + "text": "as well as the posts of the surrounding courtyard with their bases, tent pegs, and ropes." + }, + { + "verseNum": 38, + "text": "Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to perform the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who approached the sanctuary was to be put to death." + }, + { + "verseNum": 39, + "text": "The total number of Levites that Moses and Aaron counted by their clans at the LORD’s command, including all the males a month old or more, was 22,000." + }, + { + "verseNum": 40, + "text": "Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names." + }, + { + "verseNum": 41, + "text": "You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Levites in place of all the firstborn of the livestock of the Israelites.”" + }, + { + "verseNum": 42, + "text": "So Moses numbered all the firstborn of the Israelites, as the LORD had commanded him." + }, + { + "verseNum": 43, + "text": "The total number of the firstborn males a month old or more, listed by name, was 22,273." + }, + { + "verseNum": 44, + "text": "Again the LORD spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the LORD." + }, + { + "verseNum": 46, + "text": "To redeem the 273 firstborn Israelites who outnumber the Levites," + }, + { + "verseNum": 47, + "text": "you are to collect five shekels for each one, according to the sanctuary shekel of twenty gerahs." + }, + { + "verseNum": 48, + "text": "Give the money to Aaron and his sons as the redemption price for the excess among the Israelites.”" + }, + { + "verseNum": 49, + "text": "So Moses collected the redemption money from those in excess of the number redeemed by the Levites." + }, + { + "verseNum": 50, + "text": "He collected the money from the firstborn of the Israelites: 1,365 shekels, according to the sanctuary shekel." + }, + { + "verseNum": 51, + "text": "And Moses gave the redemption money to Aaron and his sons in obedience to the word of the LORD, just as the LORD had commanded him." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 2, + "text": "“Take a census of the Kohathites among the Levites by their clans and families," + }, + { + "verseNum": 3, + "text": "men from thirty to fifty years old—everyone who is qualified to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 4, + "text": "This service of the Kohathites at the Tent of Meeting regards the most holy things." + }, + { + "verseNum": 5, + "text": "Whenever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover the ark of the Testimony with it." + }, + { + "verseNum": 6, + "text": "They are to place over this a covering of fine leather, spread a solid blue cloth over it, and insert its poles." + }, + { + "verseNum": 7, + "text": "Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to remain on it." + }, + { + "verseNum": 8, + "text": "And they shall spread a scarlet cloth over them, cover them with fine leather, and insert the poles." + }, + { + "verseNum": 9, + "text": "They are to take a blue cloth and cover the lampstand used for light, together with its lamps, wick trimmers, and trays, as well as the jars of oil with which to supply it." + }, + { + "verseNum": 10, + "text": "Then they shall wrap it and all its utensils inside a covering of fine leather and put it on the carrying frame." + }, + { + "verseNum": 11, + "text": "Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert the poles." + }, + { + "verseNum": 12, + "text": "They are to take all the utensils for serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them on the carrying frame." + }, + { + "verseNum": 13, + "text": "Then they shall remove the ashes from the bronze altar, spread a purple cloth over it," + }, + { + "verseNum": 14, + "text": "and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine leather and insert the poles." + }, + { + "verseNum": 15, + "text": "When Aaron and his sons have finished covering the holy objects and all their equipment, as soon as the camp is ready to move, the Kohathites shall come and do the carrying. But they must not touch the holy objects, or they will die. These are the transportation duties of the Kohathites regarding the Tent of Meeting." + }, + { + "verseNum": 16, + "text": "Eleazar son of Aaron the priest shall oversee the oil for the light, the fragrant incense, the daily grain offering, and the anointing oil. He has oversight of the entire tabernacle and everything in it, including the holy objects and their utensils.”" + }, + { + "verseNum": 17, + "text": "Then the LORD said to Moses and Aaron," + }, + { + "verseNum": 18, + "text": "“Do not allow the Kohathite tribal clans to be cut off from among the Levites." + }, + { + "verseNum": 19, + "text": "In order that they may live and not die when they come near the most holy things, do this for them: Aaron and his sons are to go in and assign each man his task and what he is to carry." + }, + { + "verseNum": 20, + "text": "But the Kohathites are not to go in and look at the holy objects, even for a moment, or they will die.”" + }, + { + "verseNum": 21, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 22, + "text": "“Take a census of the Gershonites as well, by their families and clans," + }, + { + "verseNum": 23, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 24, + "text": "This is the service of the Gershonite clans regarding work and transport:" + }, + { + "verseNum": 25, + "text": "They are to carry the curtains of the tabernacle, the Tent of Meeting with the covering of fine leather over it, the curtains for the entrance to the Tent of Meeting," + }, + { + "verseNum": 26, + "text": "the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their service. The Gershonites will do all that needs to be done with these items." + }, + { + "verseNum": 27, + "text": "All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to carry." + }, + { + "verseNum": 28, + "text": "This is the service of the Gershonite clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aaron the priest." + }, + { + "verseNum": 29, + "text": "As for the sons of Merari, you are to number them by their clans and families," + }, + { + "verseNum": 30, + "text": "from thirty to fifty years old, counting everyone who comes to serve in the work of the Tent of Meeting." + }, + { + "verseNum": 31, + "text": "This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases," + }, + { + "verseNum": 32, + "text": "and the posts of the surrounding courtyard with their bases, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are responsible to carry." + }, + { + "verseNum": 33, + "text": "This is the service of the Merarite clans according to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.”" + }, + { + "verseNum": 34, + "text": "So Moses, Aaron, and the leaders of the congregation numbered the Kohathites by their clans and families," + }, + { + "verseNum": 35, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 36, + "text": "And those numbered by their clans totaled 2,750." + }, + { + "verseNum": 37, + "text": "These were counted from the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD through Moses." + }, + { + "verseNum": 38, + "text": "Then the Gershonites were numbered by their clans and families," + }, + { + "verseNum": 39, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 40, + "text": "And those numbered by their clans and families totaled 2,630." + }, + { + "verseNum": 41, + "text": "These were counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron counted at the LORD’s command." + }, + { + "verseNum": 42, + "text": "And the Merarites were numbered by their clans and families," + }, + { + "verseNum": 43, + "text": "everyone from thirty to fifty years old who came to serve in the work at the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "The men registered by their clans numbered 3,200." + }, + { + "verseNum": 45, + "text": "These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through Moses." + }, + { + "verseNum": 46, + "text": "So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Levites" + }, + { + "verseNum": 47, + "text": "from thirty to fifty years old who came to do the work of serving and carrying the Tent of Meeting." + }, + { + "verseNum": 48, + "text": "And the number of men was 8,580." + }, + { + "verseNum": 49, + "text": "At the LORD’s command they were numbered through Moses and each one was assigned his work and burden, as the LORD had commanded Moses." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Command the Israelites to send away from the camp anyone with a skin disease, anyone who has a bodily discharge, and anyone who is defiled by a dead body." + }, + { + "verseNum": 3, + "text": "You must send away male and female alike; send them outside the camp so they will not defile their camp, where I dwell among them.”" + }, + { + "verseNum": 4, + "text": "So the Israelites did this, sending such people outside the camp. They did just as the LORD had instructed Moses." + }, + { + "verseNum": 5, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 6, + "text": "“Tell the Israelites that when a man or woman acts unfaithfully against the LORD by committing any sin against another, that person is guilty" + }, + { + "verseNum": 7, + "text": "and must confess the sin he has committed. He must make full restitution, add a fifth to its value, and give all this to the one he has wronged." + }, + { + "verseNum": 8, + "text": "But if the man has no relative to whom restitution can be made for the wrong, the restitution belongs to the LORD and must be given to the priest along with the ram of atonement, by which the atonement is made for him." + }, + { + "verseNum": 9, + "text": "Every sacred contribution the Israelites bring to the priest shall belong to him." + }, + { + "verseNum": 10, + "text": "Each man’s sacred gifts are his own, but whatever he gives to the priest will belong to the priest.”" + }, + { + "verseNum": 11, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 12, + "text": "“Speak to the Israelites and tell them that if any man’s wife goes astray and is unfaithful to him" + }, + { + "verseNum": 13, + "text": "by sleeping with another man, and it is concealed from her husband and her impurity is undetected (since there is no witness against her and she was not caught in the act)," + }, + { + "verseNum": 14, + "text": "and if a feeling of jealousy comes over her husband and he suspects his wife who has defiled herself—or if a feeling of jealousy comes over him and he suspects her even though she has not defiled herself—" + }, + { + "verseNum": 15, + "text": "then he is to bring his wife to the priest.\n \nHe must also bring for her an offering of a tenth of an ephah of barley flour. He is not to pour oil over it or put frankincense on it, because it is a grain offering for jealousy, an offering of memorial as a reminder of iniquity." + }, + { + "verseNum": 16, + "text": "The priest is to bring the wife forward and have her stand before the LORD." + }, + { + "verseNum": 17, + "text": "Then he is to take some holy water in a clay jar and put some of the dust from the tabernacle floor into the water." + }, + { + "verseNum": 18, + "text": "After the priest has the woman stand before the LORD, he is to let down her hair and place in her hands the grain offering of memorial, which is the grain offering for jealousy. The priest is to hold the bitter water that brings a curse." + }, + { + "verseNum": 19, + "text": "And he is to put the woman under oath and say to her, ‘If no other man has slept with you and you have not gone astray and become defiled while under your husband’s authority, may you be immune to this bitter water that brings a curse." + }, + { + "verseNum": 20, + "text": "But if you have gone astray while under your husband’s authority and have defiled yourself and lain carnally with a man other than your husband’—" + }, + { + "verseNum": 21, + "text": "and the priest shall have the woman swear under the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly swell." + }, + { + "verseNum": 22, + "text": "May this water that brings a curse enter your stomach and cause your belly to swell and your thigh to shrivel.’\n \nThen the woman is to say, ‘Amen, Amen.’" + }, + { + "verseNum": 23, + "text": "And the priest shall write these curses on a scroll and wash them off into the bitter water." + }, + { + "verseNum": 24, + "text": "He is to have the woman drink the bitter water that brings a curse, and it will enter her and cause her bitter suffering." + }, + { + "verseNum": 25, + "text": "The priest shall take from her hand the grain offering for jealousy, wave it before the LORD, and bring it to the altar." + }, + { + "verseNum": 26, + "text": "Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the water." + }, + { + "verseNum": 27, + "text": "When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will become accursed among her people." + }, + { + "verseNum": 28, + "text": "But if the woman has not defiled herself and is clean, she will be unaffected and able to conceive children." + }, + { + "verseNum": 29, + "text": "This is the law of jealousy when a wife goes astray and defiles herself while under her husband’s authority," + }, + { + "verseNum": 30, + "text": "or when a feeling of jealousy comes over a husband and he suspects his wife. He is to have the woman stand before the LORD, and the priest is to apply to her this entire law." + }, + { + "verseNum": 31, + "text": "The husband will be free from guilt, but the woman shall bear her iniquity.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "And the LORD said to Moses," + }, + { + "verseNum": 2, + "text": "“Speak to the Israelites and tell them that if a man or woman makes a special vow, the vow of a Nazirite, to separate himself to the LORD," + }, + { + "verseNum": 3, + "text": "he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat fresh grapes or raisins." + }, + { + "verseNum": 4, + "text": "All the days of his separation, he is not to eat anything that comes from the grapevine, not even the seeds or skins." + }, + { + "verseNum": 5, + "text": "For the entire period of his vow of separation, no razor shall pass over his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow long." + }, + { + "verseNum": 6, + "text": "Throughout the days of his separation to the LORD, he must not go near a dead body." + }, + { + "verseNum": 7, + "text": "Even if his father or mother or brother or sister should die, he is not to defile himself, because the crown of consecration to his God is upon his head." + }, + { + "verseNum": 8, + "text": "Throughout the time of his separation, he is holy to the LORD." + }, + { + "verseNum": 9, + "text": "If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the seventh day." + }, + { + "verseNum": 10, + "text": "On the eighth day he must bring two turtledoves or two young pigeons to the priest at the entrance to the Tent of Meeting." + }, + { + "verseNum": 11, + "text": "And the priest is to offer one as a sin offering and the other as a burnt offering to make atonement for him, because he has sinned by being in the presence of the dead body. On that day he must consecrate his head again." + }, + { + "verseNum": 12, + "text": "He must rededicate his time of separation to the LORD and bring a year-old male lamb as a guilt offering. But the preceding days shall not be counted, because his separation was defiled." + }, + { + "verseNum": 13, + "text": "Now this is the law of the Nazirite when his time of separation is complete: He must be brought to the entrance to the Tent of Meeting," + }, + { + "verseNum": 14, + "text": "and he is to present an offering to the LORD of an unblemished year-old male lamb as a burnt offering, an unblemished year-old female lamb as a sin offering, and an unblemished ram as a peace offering—" + }, + { + "verseNum": 15, + "text": "together with their grain offerings and drink offerings—and a basket of unleavened cakes made from fine flour mixed with oil and unleavened wafers coated with oil." + }, + { + "verseNum": 16, + "text": "The priest is to present all these before the LORD and make the sin offering and the burnt offering." + }, + { + "verseNum": 17, + "text": "He shall also offer the ram as a peace offering to the LORD, along with the basket of unleavened bread. And the priest is to offer the accompanying grain offering and drink offering." + }, + { + "verseNum": 18, + "text": "Then at the entrance to the Tent of Meeting, the Nazirite is to shave his consecrated head, take the hair, and put it on the fire under the peace offering." + }, + { + "verseNum": 19, + "text": "And the priest is to take the boiled shoulder from the ram, one unleavened cake from the basket, and one unleavened wafer, and put them into the hands of the Nazirite who has just shaved the hair of his consecration." + }, + { + "verseNum": 20, + "text": "The priest shall then wave them as a wave offering before the LORD. This is a holy portion for the priest, in addition to the breast of the wave offering and the thigh that was presented. After that, the Nazirite may drink wine." + }, + { + "verseNum": 21, + "text": "This is the law of the Nazirite who vows his offering to the LORD for his separation, in addition to whatever else he can afford; he must fulfill whatever vow he makes, according to the law of his separation.”" + }, + { + "verseNum": 22, + "text": "Then the LORD said to Moses," + }, + { + "verseNum": 23, + "text": "“Tell Aaron and his sons: This is how you are to bless the Israelites. Say to them:" + }, + { + "verseNum": 24, + "text": "‘May the LORD bless you\n and keep you;" + }, + { + "verseNum": 25, + "text": "may the LORD cause His face to shine upon you\n and be gracious to you;" + }, + { + "verseNum": 26, + "text": "may the LORD lift up His countenance toward you\n and give you peace.’" + }, + { + "verseNum": 27, + "text": "So they shall put My name on the Israelites, and I will bless them.”" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_MD/new_testament.json b/data/en_bible/BSB_MD/new_testament.json new file mode 100644 index 0000000..4975072 --- /dev/null +++ b/data/en_bible/BSB_MD/new_testament.json @@ -0,0 +1,5345 @@ +{ + "testament": "New Testament", + "books": [ + { + "name": "Matthew", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–17) 23 Jesus Himself was about thirty years old when He began His ministry. He was regarded as the son of Joseph, 24 the son of Heli, the son of Matthat, the son of Levi, 25 the son of Melchi, the son of Jannai, the son of Joseph, the son of Mattathias, the son of Amos, 26 the son of Nahum, the son of Esli, the son of Naggai, the son of Maath, the son of Mattathias, 27 the son of Semein, the son of Josech, the son of Joda, the son of Joanan, the son of Rhesa, the son of Zerubbabel, 28 the son of Shealtiel, the son of Neri, the son of Melchi, the son of Addi, the son of Cosam, 29 the son of Elmadam, the son of Er, the son of Joshua, the son of Eliezer, “Do not take money by force or false accusation,” 15 he said. “Be content with your wages.” 30 the son of Jorim, the son of Matthat, the son of Levi, a 16 The people were waiting expectantly and were all wondering in their hearts if John could be the Christ. John answered all of them: “I baptize you with water, but One more powerful than I b will come, the straps of whose sandals I am not c worthy to untie. He will baptize you with the Holy Spirit and with fire. His winnowing fork is in His hand to clear His threshing floor and to gather the wheat into His barn; but He will burn 18 up the chaff with unquenchable fire.” 17 19 20 With these and many other exhortations, John proclaimed the good news to the people. But when he rebuked Herod the tetrarch regarding his brother’s wife Herodias and all the evils he had done, Herod adde" + }, + { + "verseNum": 3, + "text": "–4. ; see" + }, + { + "verseNum": 4, + "text": "–5. not include Cited in" + }, + { + "verseNum": 18, + "text": "–25) then you will not stand at all.’ ” 10 11 Again the LORD spoke to Ahaz, saying, “Ask for a sign from the LORD your God, whether from 12 the depths of Sheol or the heights of heaven.” But Ahaz replied, “I will not ask; I will not test 13 the LORD.” c b 15 14 Then Isaiah said, “Hear now, O house of David! Is it not enough to try the patience of men? Will There- you try the patience of my God as well? fore the Lord Himself will give you a sign: Behold, will be with child and give birth to a the virgin son, and will call Him Immanuel. By the time He knows enough to reject evil and choose good, For before He will be eating curds and honey. the boy knows enough to reject evil and choose good, the land of the two kings you dread will be Judgment to Come" + }, + { + "verseNum": 23, + "text": ". Swift to plunder, quick to carry away hastens pounds or 11.4 kilograms of silver Hebrew Hebrew swirling and sweeping over it, reaching up to the neck; i its spreading streams will cover your entire land, O Immanuel! ; literally a thousand of silver God with us means and and He will call His name Immanuel you will call His name and she will call His name g 1 Maher-shalal-hash-baz Hebrew h 7 the River ; LXX The spoil speeds, the prey ; that is, approximately 25.1 God with us i 8 Immanuel means or ; also in verse 3. Hebrew means . 624 |" + }, + { + "verseNum": 25, + "text": "25 14 a But he had no union with until she gave birth to a Son. And he gave Mary as his wife. her The Pilgrimage of the Magi" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12) their wealth to the Lord of all the earth. 5 Now, O daughter of troops, mobilize your troops; for a siege is laid against us! With a rod they will strike the cheek 2 of the judge of Israel. c But you, Bethlehem Ephrathah, who are small among the clans of Judah, d devote to destruction out of you will come forth for Me — One to be ruler over Israel Cited in Matt. 2:6 thousands d 2 c 2 Or" + }, + { + "verseNum": 15, + "text": "That is, the northern kingdom of Israel; also in verses 8, 9, and 12 i 2 Or ; The more they Cited in" + }, + { + "verseNum": 16, + "text": "–18) you will understand this. 31 “At that time,” declares the LORD, “I will be the God of all the families of Israel, 2 and they will be My people.” This is what the LORD says: “The people who survived the sword found favor in the wilderness when Israel went to find rest.” 3 b The LORD appeared to us in the past, saying: “I have loved you with an everlasting love; therefore I have drawn you with loving b 3 The LORD appeared to him from afar, saying devotion. 710 |" + }, + { + "verseNum": 18, + "text": "That is, the northern kingdom of Israel; also in verse 20 Hebrew 22 How long will you wander, O faithless daughter? a For the LORD has created a new thing 23 in the land— a woman will shelter a man.” 24 b This is what the LORD of Hosts, the God of Is- rael, says: “When I restore them from captivity, they will once again speak this word in the land of Judah and in its cities: ‘May the LORD bless you, O righteous dwelling place, O holy moun- And Judah and all its cities will dwell tain.’ 25 together in the land, the farmers and those who move with the flocks, for I will refresh the The New Covenant" + }, + { + "verseNum": 19, + "text": "–23) were waiting for the redemption of Jerusalem. 39 When Jesus’ parents had done everything re- quired by the Law of the Lord, they returned to 40 Galilee, to their own town of Nazareth. b And the Child grew and became strong. He was filled with wisdom, and the grace of God was The Boy Jesus at the Temple upon Him. 41 42 Every year His parents went to Jerusalem for And when He was the Feast of the Passover. twelve years old, they went up according to the 43 custom of the Feast. Assuming He was in their company, stayed. they traveled on for a day before they began to 45 look for Him among their relatives and friends. 46 When they could not find Him, they returned Finally, after to Jerusalem to search for Him. three days they found Him in the temple courts, 47 sitting among the teachers, listening to them and And all who heard Him asking them questions. were astounded at His understanding and His 48 answers. When His parents saw Him, they were aston- ished. “Child, why have You done this to us?” His mother asked. “Your father and I have been anx- 49 iously searching for You.” c 50 “Why were you looking for Me?” He asked. “Did you not know that I had to be in My Father’s house But they did not understand the 51 statement He was making to them. ?” Then He went down to Nazareth with them and was obedient to them. But His mother treas- 52 ured up all these things in her heart. And Jesus grew in wisdom and stature, and in The Mission of John the Baptist (Isa. 40:1–5 ; favor with G" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 11, + "text": "," + }, + { + "verseNum": 13, + "text": "–17 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 6, + "text": "and" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 10, + "text": "and" + }, + { + "verseNum": 12, + "text": "–17 ;" + }, + { + "verseNum": 15, + "text": "–16 Judgment against Israel’s Pride 20" + }, + { + "verseNum": 18, + "text": "| 863 4 But Jesus answered, “It is written: ‘Man shall not live on bread alone, e but on every word that comes from the ” mouth of God.’ 6 5 Then the devil took Him to the holy city and set Him on the pinnacle of the temple. “If You are the Son of God,” he said, “throw Yourself down. For it is written: ‘He will command His angels concerning You, and they will lift You up in their hands, f so that You will not strike Your foot against a stone.’ ” g 7 Jesus replied, “It is also written: ‘Do not put the 8 Lord your God to the test.’ ” Again, the devil took Him to a very high moun- 9 tain and showed Him all the kingdoms of the “All this I will give You,” world and their glory. 10 he said, “if You will fall down and worship me.” h “Away from Me, Satan!” Jesus told him. “For it is written: ‘Worship the Lord your God and serve 11 Him only.’ ” Then the devil left Him, and angels came and Jesus Begins His Ministry ministered to Him." + }, + { + "verseNum": 19, + "text": "19 11 20 brother Andrew. They were casting a net into the sea, for they were fishermen. “Come, follow Me,” Jesus said, “and I will make you fishers of men.” And at once they left their nets and fol- 21 lowed Him. Going on from there, He saw two other broth- ers, James son of Zebedee and his brother John. They were in a boat with their father Zebedee, mending their nets. Jesus called them, and im- mediately they left the boat and their father and Jesus Heals the Multitudes followed Him." + }, + { + "verseNum": 23, + "text": "–25 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 3, + "text": "–12 ;" + }, + { + "verseNum": 5, + "text": ". 23 40 The steps of a man are ordered by the LORD 24 The LORD helps and delivers them; who takes delight in his journey. a He rescues and saves them from the" + }, + { + "verseNum": 13, + "text": "–16 ;" + }, + { + "verseNum": 21, + "text": ", be upon your hearts. c 18 Cited in" + }, + { + "verseNum": 27, + "text": "–30) iniquity.” 16 2 18 3 “Speak to Then the LORD said to Moses, the Israelites and tell them: I am the You must not follow the prac- LORD your God. tices of the land of Egypt, where you used to live, and you must not follow the practices of the land of Canaan, into which I am bringing you. You 4 must not walk in their customs. 5 You are to practice My judgments and keep My statutes by walking in them. I am the LORD your e God. Keep My statutes and My judgments, for the man who does these things will live by them. 6 I am the LORD. f None of you are to approach any close relative 7 to have sexual relations. I am the LORD. You must not expose the nakedness of your fa- ther by having sexual relations with your mother. She is your mother; you must not have 8 sexual relations with her. You must not have sexual relations with your 9 father’s wife; it would dishonor your father. You must not have sexual relations with your sister, either your father’s daughter or your mother’s daughter, whether she was born in the 10 same home or elsewhere. goat idols You must not have sexual relations with your son’s daughter or your daughter’s daughter, for that would shame your family. f 6 Literally to uncover (their) nakedness ; also in verse 14 the soul d 11 Literally ; or Cited in" + }, + { + "verseNum": 31, + "text": "–32 ;" + }, + { + "verseNum": 32, + "text": ". A talent was worth about twenty years’ wages for a laborer. And he who marries a divorced g 9" + }, + { + "verseNum": 33, + "text": "–37) the LORD had commanded him. 30 2 Then Moses said to the heads of the tribes of Israel, “This is what the LORD If a man makes a vow to the has commanded: LORD or swears an oath to obligate himself by a pledge, he must not break his word; he must do 3 everything he has promised. a 4 5 And if a woman in her father’s house during her youth makes a vow to the LORD or obligates her- self by a pledge, and her father hears about her vow or pledge but says nothing to her, then all the vows or pledges by which she has bound her- self shall stand. But if her father prohibits her on the day he hears about it, then none of the vows or pledges by which she has bound herself shall stand. The LORD will absolve her because 6 her father has prohibited her. 7 If a woman marries while under a vow or rash promise by which she has bound herself, and her husband hears of it but says nothing to her on that day, then the vows or pledges by which she has bound herself shall stand. But if her hus- band prohibits her when he hears of it, he nulli- fies the vow that binds her or the rash promise 9 she has made, and the LORD will absolve her. 8 Every vow a widow or divorced woman pledges 10 to fulfill is binding on her. 11 12 If a woman in her husband’s house has made a vow or put herself under an obligation with an oath, and her husband hears of it but says nothing to her and does not prohibit her, then all the vows or pledges by which she has bound her- But if her husband nullifies self shall stand" + }, + { + "verseNum": 38, + "text": "g 28 or a bull d 17 Or Or be eaten. But the owner of the ox shall not be held 29 responsible. But if the ox has a habit of goring, and its owner has been warned yet does not restrain it, and it kills a man or woman, then the ox must be 30 stoned and its owner must also be put to death. If payment is demanded of him instead, he may redeem his life by paying the full amount de- 31 manded of him. If the ox gores a son or a daughter, it shall be 32 done to him according to the same rule. a If the ox gores a manservant or maidservant, the owner must pay thirty shekels of silver to the master of that servant, and the ox must be 33 stoned. 34 If a man opens or digs a pit and fails to cover it, the owner of and an ox or a donkey falls into it, the pit shall make restitution; he must pay its 35 owner, and the dead animal will be his. If a man’s ox injures his neighbor’s ox and it dies, they must sell the live one and divide the 36 proceeds; they also must divide the dead animal. But if it was known that the ox had a habit of goring, yet its owner failed to restrain it, he shall pay full compensation, ox for ox, and the dead an- Property Laws imal will be his. b 22 “If a man steals an ox or a sheep and slaughters or sells it, he must repay five 2 oxen for an ox and four sheep for a sheep. 3 If a thief is caught breaking in and is beaten to But if death, no one shall be guilty of bloodshed. it happens after sunrise, there is guilt for his bloodshed. 4 A thief must make full restitution;" + }, + { + "verseNum": 43, + "text": "," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–4) 7 a If there is a poor man among your brothers within any of the gates in the land that the LORD your God is giving you, then you are not to your heart or shut your hand from your harden Instead, you are to open your poor brother. hand to him and freely loan him whatever he 9 needs. 8 Be careful not to harbor this wicked thought in your heart: “The seventh year, the year of re- lease, is near,” so that you look upon your poor brother begrudgingly and give him nothing. He will cry out to the LORD against you, and you will 10 be guilty of sin. 11 Give generously to him, and do not let your heart be grieved when you do so. And because of this the LORD your God will bless you in all your work and in everything to which you put your For there will never cease to be poor in hand. the land; that is why I am commanding you to open wide your hand to your brother and to the Hebrew Servants" + }, + { + "verseNum": 5, + "text": "–15) portion, and it will not be taken away from her.” 11 One day in a place where Jesus had just finished praying, one of His disciples re- quested, “Lord, teach us to pray, just as John 2 taught his disciples.” a So Jesus told them, “When you pray, say: b hallowed be Your name. ‘Father, 3 Your kingdom come. 4 Give us each day our daily bread. And forgive us our sins, for we also forgive everyone who sins c against us. Ask, Seek, Knock" + }, + { + "verseNum": 8, + "text": "| 865 Reconcile quickly with your adversary, while you are still on the way to court. Otherwise, he may hand you over to the judge, and the judge may hand you over to the officer, and you may be Truly I tell you, you will thrown into prison. Adultery" + }, + { + "verseNum": 9, + "text": "9 So then, this is how you should pray: 10 ‘Our Father in heaven, hallowed be Your name. Your kingdom come, Your will be done, on earth as it is in heaven. Give us this day our daily bread. And forgive us our debts, 11 12 13 as we also have forgiven our debtors. a And lead us not into temptation, but deliver us from the evil one. ’ 15 14 For if you forgive men their trespasses, your But if heavenly Father will also forgive you. you do not forgive men their trespasses, neither Proper Fasting will your Father forgive yours. 16 17 When you fast, do not be somber like the hyp- ocrites, for they disfigure their faces to show men they are fasting. Truly I tell you, they already But when you fast, have their full reward. anoint your head and wash your face, so that your fasting will not be obvious to men, but only to your Father, who is unseen. And your Father, Treasures in Heaven" + }, + { + "verseNum": 13, + "text": ". BYZ and TR ; see Matt. 7:9–10. WH ; Vulgate ; also in vv. 18 and 19 42 Woe to you Pharisees! For you pay tithes of mint, rue, and every herb, but you disregard jus- tice and the love of God. You should have prac- 43 ticed the latter without neglecting the former. 44 Woe to you Pharisees! For you love the chief seats in the synagogues and the greetings in the marketplaces. Woe to you! For you are like un- marked graves, which men walk over without 45 even noticing.” One of the experts in the law told Him, “Teacher, when You say these things, You insult 46 us as well.” “Woe to you as well, experts in the law!” He re- plied. “For you weigh men down with heavy bur- dens, but you yourselves will not lift a finger to 47 lighten their load. 48 Woe to you! For you build tombs for the prophets, but it was your fathers who killed them. So you are witnesses consenting to the 49 deeds of your fathers: They killed the prophets, and you build their tombs. Because of this, the wisdom of God said, ‘I will send them prophets and apostles; some of them they will kill and oth- 50 ers they will persecute.’ 51 As a result, this generation will be charged with the blood of all the prophets that has been shed since the foundation of the world, from c the blood of Abel to the blood of Zechariah, who was killed between the altar and the sanctuary. Yes, I tell you, all of it will be charged to this gen- 52 eration. Woe to you experts in the law! For you have taken away the key to knowledge. You your" + }, + { + "verseNum": 19, + "text": "–21) be added unto you. 32 33 Do not be afraid, little flock, for your Father is Sell your pleased to give you the kingdom. possessions and give to the poor. Provide your- selves with purses that will not wear out, an in- exhaustible treasure in heaven, where no thief For where approaches and no moth destroys. Readiness at Any Hour your treasure is, there your heart will be also." + }, + { + "verseNum": 22, + "text": "–24) nah is here. 33 No one lights a lamp and puts it in a cellar or under a basket. Instead, he sets it on a stand, so 34 those who enter can see the light. a b 36 35 Your eye is the lamp of your body. When your eyes are good, your whole body also is full of light. But when they are bad, your body is full of Be careful, then, that the light within darkness. you is not darkness. So if your whole body is full of light, with no part of it in darkness, you will be radiant, as though a lamp were shining on you.” Woes to Pharisees and Experts in the Law" + }, + { + "verseNum": 25, + "text": "–34) treasure for himself but is not rich toward God.” 22 24 Then Jesus said to His disciples, “Therefore I tell you, do not worry about your life, what you 23 will eat, or about your body, what you will wear. For life is more than food, and the body more than clothes. Consider the ravens: They do not sow or reap, they have no storehouse or barn; yet God feeds them. How much more valuable you 25 are than the birds! c 26 Who of you by worrying can add a single hour So if you cannot do such a small to his life? 27 thing, why do you worry about the rest? d 28 Consider how the lilies grow: They do not la- bor or spin. Yet I tell you, not even Solomon in all his glory was adorned like one of these. If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the furnace, how much more will He clothe you, 29 O you of little faith! 30 And do not be concerned about what you will For the eat or drink. Do not worry about it. Gentiles of the world strive after all these things, 31 and your Father knows that you need them. kingdom, and these things will But seek His e Treasures in Heaven" + }, + { + "verseNum": 33, + "text": ". 934 |" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 7, + "text": "–12) And lead us not into temptation. ” ’ 5 6 Then Jesus said to them, “Suppose one of you goes to his friend at midnight and says, ‘Friend, lend me three loaves of bread, because a friend of mine has come to me on a journey, and I have 7 nothing to set before him.’ And suppose the one inside answers, ‘Do not bother me. My door is already shut, and my chil- dren and I are in bed. I cannot get up to give you 8 anything.’ 10 So I tell you: Ask, and it will be given to you; seek, and you will find; knock, and the door will be opened to you. For everyone who asks re- ceives; he who seeks finds; and to him who 11 knocks, the door will be opened. d 12 13 What father among you, if his son asks for a fish, Or if he will give him a snake instead? asks for an egg, will give him a scorpion? So if you who are evil know how to give good gifts to your children, how much more will your Father in heaven give the Holy Spirit to those A House Divided who ask Him!”" + }, + { + "verseNum": 13, + "text": "–14) til all of it was leavened.” 22 23 Then Jesus traveled throughout the towns and villages, teaching as He made His way toward Je- rusalem. “Lord,” someone asked Him, “will only a few people be saved?” 24 Jesus answered, “Make every effort to enter through the narrow door. For many, I tell you, will try to enter and will not be able. After the donkey b 5 a 35 master of the house gets up and shuts the door, 25" + }, + { + "verseNum": 15, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–27) of the overflow of the heart the mouth speaks. 46 47 48 Why do you call Me ‘Lord, Lord,’ but do not do I will show you what he is like who what I say? comes to Me and hears My words and acts on them: He is like a man building a house, who dug down deep and laid his foundation on the rock. When the flood came, the torrent crashed against that house but could not shake it, because 49 it was well built. b But the one who hears My words and does not act on them is like a man who built his house on ground without a foundation. The torrent crashed against that house, and immediately it The Faith of the Centurion fell—and great was its destruction!”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 5, + "text": "–13 ;" + }, + { + "verseNum": 13, + "text": "| 867 torrents raged, and the winds blew and beat against that house, and it fell—and great was its The Authority of Jesus collapse!” 28 When Jesus had finished saying these things, 29 the crowds were astonished at His teaching, because He taught as one who had authority, The Leper’s Prayer and not as their scribes." + }, + { + "verseNum": 14, + "text": "Jesus Heals at Peter’s House" + }, + { + "verseNum": 17, + "text": "and" + }, + { + "verseNum": 28, + "text": "–34 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–13 ;" + }, + { + "verseNum": 13, + "text": "and" + }, + { + "verseNum": 14, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–26 ;" + }, + { + "verseNum": 27, + "text": "–34) on the bed, and the demon was gone. 31 Then Jesus left the region of Tyre and went e 32 through Sidon to the Sea of Galilee and into the Some people brought region of the Decapolis. to Him a man who was deaf and hardly able to speak, and they begged Jesus to place His hand 33 on him. 37 Jesus ordered them not to tell anyone. But the more He ordered them, the more widely they proclaimed it. The people were utterly aston- ished and said, “He has done all things well! He The Feeding of the Four Thousand makes even the deaf hear and the mute speak!” (2 Kings 4:42–44 ;" + }, + { + "verseNum": 35, + "text": "–38) 10 c 2 After this, the Lord appointed seventy- two others and sent them two by two ahead of Him to every town and place He was about to visit. And He told them, “The harvest is plentiful, but the workers are few. Ask the Lord of the harvest, therefore, to send out workers 3 into His harvest. 4 Go! I am sending you out like lambs among Carry no purse or bag or sandals. Do not “Master,” said John, “we saw someone driving out demons in Your name, and we tried to stop from heaven, just as Elijah did a 54 him, because he does not accompany us.” know what kind of spirit you are of. 56 For the Son of Man did not come to destroy the lives of men, but to save them.” c 1 wolves. greet anyone along the road. ; see 2 Kings 1:10–12. BYZ and TR include BYZ and TR seventy b 55 and He said, “You do not NE, BYZ, and TR ; also in verse 17 930 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 4, + "text": "| 869 Jesus Heals the Blind and Mute" + }, + { + "verseNum": 5, + "text": "The Ministry of the Twelve" + }, + { + "verseNum": 15, + "text": ". Lit. Some A denarius was customarily a day’s wage for a laborer; see Matt. 20:2. ; some manuscripts 38 “Go and see how many loaves you have,” He told them. them touch the fringe of His cloak. And all who The Tradition of the Elders" + }, + { + "verseNum": 16, + "text": "–25) 3 I thank God, whom I serve with a clear con- science as did my forefathers, as I constantly 4 remember you night and day in my prayers. Recalling your tears, I long to see you so that I 5 may be filled with joy. I am reminded of your sincere faith, which first dwelt in your grandmother Lois and your mother 6 Eunice, and I am convinced is in you as well. 7 For this reason I remind you to fan into flame the gift of God, which is in you through the laying a on of my hands. For God has not given us a spirit 8 of fear, but of power, love, and self-control. b 9 10 So do not be ashamed of the testimony of our Lord, or of me, His prisoner. Instead, join me in He suffering for the gospel by the power of God. has saved us and called us to a holy calling, not because of our works, but by His own purpose and by the grace He granted us in Christ Jesus be- And now He has revealed fore time began. this grace through the appearing of our Savior, Christ Jesus, who has abolished death and illumi- nated the way to life and immortality through the to which I was appointed as a preacher, gospel, 12 an apostle, and a teacher. 11 e Hold on to the pattern of sound teaching 14 you have heard from me, with the faith and love that Guard the treasure en- are in Christ Jesus. trusted to you, with the help of the Holy Spirit 15 who dwells in us. f You know that everyone in the Province of has deserted me, including Phygelus and Asia 16 Hermogenes. May the Lord grant mercy to the household of Onesiph" + }, + { + "verseNum": 26, + "text": "–31) rooms will be proclaimed from the housetops. 4 I tell you, My friends, do not be afraid of those 5 who kill the body and after that can do no more. But I will show you whom you should fear: Fear the One who, after you have been killed, has au- thority to throw you into hell. Yes, I tell you, fear b 6 Him! a 7 Are not five sparrows sold for two pennies? Yet not one of them is forgotten by God. And even the very hairs of your head are all num- bered. So do not be afraid; you are worth more Confessing Christ" + }, + { + "verseNum": 32, + "text": "–33) than many sparrows. 8 9 10 I tell you, everyone who confesses Me before men, the Son of Man will also confess him before the angels of God. But whoever denies Me be- fore men will be denied before the angels of And everyone who speaks a word against God. the Son of Man will be forgiven, but whoever blasphemes against the Holy Spirit will not be 11 forgiven. 12 When you are brought before synagogues, rul- ers, and authorities, do not worry about how to defend yourselves or what to say. For at that time the Holy Spirit will teach you what you The Parable of the Rich Fool should say.” 13 Someone in the crowd said to Him, “Teacher, tell my brother to divide the inheritance with 14 me.” 15 But Jesus replied, “Man, who appointed Me And He said judge or executor between you?” to them, “Watch out! Guard yourselves against every form of greed, for one’s life does not con- 16 sist in the abundance of his possessions.” 17 18 Then He told them a parable: “The ground of a So certain rich man produced an abundance. he thought to himself, ‘What shall I do, since I Then he have nowhere to store my crops?’ said, ‘This is what I will do: I will tear down my 19 barns and will build bigger ones, and there I will two assaria b 6 a 5 Then I will store up all my grain and my goods. c 25 a single cubit to his height sider the lilies: They do not spin or weave. Gehenna Greek Greek Or" + }, + { + "verseNum": 34, + "text": "–39 ;" + }, + { + "verseNum": 35, + "text": "–36; God’s Compassion on Israel 14 Shepherd with Your staff Your people, the flock of Your inheritance. a They live alone in a woodland, surrounded by pastures. Let them graze in Bashan and Gilead, as in the days of old. 15 As in the days when you came out 16 of Egypt, I will show My wonders. Nations will see and be ashamed, deprived of all their might. They will put their hands over their 17 mouths, and their ears will become deaf. They will lick the dust like a snake, like reptiles slithering on the ground." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–6) throughout Judea and all the surrounding region. 18 19 Then John’s disciples informed him about all these things. So John called two of his disciples and sent them to ask the Lord, “Are You the One who was to come, or should we look for someone 20 else?” When the men came to Jesus, they said, “John the Baptist sent us to ask, ‘Are You the One who was to come, or should we look for someone 21 else?’ ” 22 At that very hour Jesus healed many people of their diseases, afflictions, and evil spirits, and He gave sight to many who were blind. So He re- plied, “Go back and report to John what you have seen and heard: The blind receive sight, the lame walk, the lepers are cleansed, the deaf hear, the dead are raised, and the good news is preached because its foundation was on the rock d Lit. Literally , probably a wooden plank or open coffin A ; see Matt. 7:25. was one afflicted with a skin disease. See Lev. 13. d 22 BYZ and TR leper 23 a 38" + }, + { + "verseNum": 7, + "text": "–19 ;" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 20, + "text": "–24) Sodom than for that town. 13 12 Woe to you, Chorazin! Woe to you, Bethsaida! For if the miracles that were performed in you had been performed in Tyre and Sidon, they would have repented long ago, sitting in sack- But it will be more bearable cloth and ashes. 15 for Tyre and Sidon at the judgment than for you. 14 And you, Capernaum, will you be lifted up to 16 heaven? No, you will be brought down to Hades! Whoever listens to you listens to Me; whoever rejects you rejects Me; and whoever rejects Me The Joyful Return rejects the One who sent Me.” 17 The seventy-two returned with joy and said, “Lord, even the demons submit to us in Your 18 name.” 19 So He told them, “I saw Satan fall like lightning Behold, I have given you author- from heaven. ity to tread on snakes and scorpions, and over all 20 the power of the enemy. Nothing will harm you. Nevertheless, do not rejoice that the spirits submit to you, but rejoice that your names are Jesus’ Prayer of Thanksgiving written in heaven.”" + }, + { + "verseNum": 25, + "text": "–30) 21 At that time Jesus rejoiced in the Holy Spirit and declared, “I praise You, Father, Lord of heaven and earth, because You have hidden these things from the wise and learned, and a 7 d 35 revealed them to little children. Yes, Father, for 22 this was well-pleasing in Your sight. All things have been entrusted to Me by My Fa- ther. No one knows who the Son is except the Fa- ther, and no one knows who the Father is except the Son and those to whom the Son chooses to 23 reveal Him.” 24 Then Jesus turned to the disciples and said pri- vately, “Blessed are the eyes that see what you For I tell you that many prophets and see. kings desired to see what you see but did not see The Parable of the Good Samaritan it, and to hear what you hear but did not hear it.” 25 One day an expert in the law stood up to test Him. “Teacher,” he asked, “what must I do to in- 26 herit eternal life?” “What is written in the Law?” Jesus replied. 27 “How do you read it?” He answered, “ ‘Love the Lord your God with all your heart and with all your soul and with all your strength and with all your mind’ and ‘Love 28 your neighbor as yourself.’ ” b c “You have answered correctly,” Jesus said. “Do 29 this and you will live.” But wanting to justify himself, he asked Jesus, 30 “And who is my neighbor?” Jesus took up this question and said, “A man was going down from Jerusalem to Jericho when he fell into the hands of robbers. They stripped him, beat him, and went away, leaving him half 31 dead. Now by ch" + }, + { + "verseNum": 29, + "text": "| 871 g prophesied until John. 15 accept it, he is the Elijah who was to come. 16 And if you are willing to h He who has ears, let him hear. To what can I compare this generation? They are like children sitting in the marketplaces and 17 calling out to others: ‘We played the flute for you, and you did not dance; we sang a dirge, 18 and you did not mourn.’ 19 For John came neither eating nor drinking, and The Son of Man they say, ‘He has a demon!’ came eating and drinking, and they say, ‘Look at this glutton and drunkard, a friend of tax collec- tors and sinners!’ But wisdom is vindicated by Woe to the Unrepentant" + }, + { + "verseNum": 30, + "text": "30 humble in heart, and you will find rest for your For My yoke is easy and My burden is souls. The Lord of the Sabbath light.” (1 Samuel 21:1–7 ;" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 7, + "text": "Or Or Also for you, O Judah, a harvest is appointed, i when I restore My people from captivity. house of wickedness 812 |" + }, + { + "verseNum": 9, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–21) their images are as empty as the wind. 42 “Here is My Servant, whom I uphold, My Chosen One, in whom My soul delights. I will put My Spirit on Him, 2 and He will bring justice to the nations. He will not cry out or raise His voice, 3 nor make His voice heard in the streets. A bruised reed He will not break and a smoldering wick He will not 4 extinguish; b He will faithfully bring forth justice. He will not grow weak or discouraged before He has established justice on the earth. c In His law the islands will put their hope.” 5 This is what God the LORD says— He who created the heavens and stretched them out, who spread out the earth and its offspring, who gives breath to the people on it 6 and life to those who walk in it: “I, the LORD, have called you for a righteous purpose, and I will take hold of your hand. I will keep you and appoint you to be a covenant for the people 7 and a light to the nations, to open the eyes of the blind, to bring prisoners out of the dungeon 8 and those sitting in darkness out from the prison house." + }, + { + "verseNum": 18, + "text": "–21 Or ; also in verse 12 Or or 654 |" + }, + { + "verseNum": 22, + "text": "–30 ;" + }, + { + "verseNum": 31, + "text": "–32) can plunder his house. 28 Still other seed fell on good soil, where it sprouted, grew up, and produced a crop—one bearing thirtyfold, another sixtyfold, and another 9 a hundredfold.” Then Jesus said, “He who has ears to hear, let The Purpose of Jesus’ Parables him hear.”" + }, + { + "verseNum": 33, + "text": "–37) 43 44 45 No good tree bears bad fruit, nor does a bad For each tree is known by tree bear good fruit. its own fruit. Indeed, figs are not gathered from thornbushes, nor grapes from brambles. The good man brings good things out of the good treasure of his heart, and the evil man brings evil things out of the evil treasure of his heart. For out The House on the Rock" + }, + { + "verseNum": 38, + "text": "–42 ;" + }, + { + "verseNum": 46, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–17 ;" + }, + { + "verseNum": 14, + "text": "," + }, + { + "verseNum": 15, + "text": "," + }, + { + "verseNum": 18, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–30) 17 Now the word of the LORD came to me, “Son of man, pose a riddle; saying, and tell speak a parable to the house of Israel them that this is what the Lord GOD says: 3 2 a ‘A great eagle with great wings and long pinions, full of feathers of many colors, came to Lebanon 4 and took away the top of the cedar. He plucked off its topmost shoot, 5 carried it to the land of merchants, and planted it in a city of traders. He took some of the seed of the land b and planted it in fertile soil; he placed it by abundant waters 6 and set it out like a willow. It sprouted and became a spreading vine, low in height, with branches turned toward him; yet its roots remained where it stood. So it became a vine and yielded branches 7 and sent out shoots. But there was another great eagle with great wings and many feathers. And behold, this vine bent its roots" + }, + { + "verseNum": 31, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": ") nested in its branches.” 20 21 Again He asked, “To what can I compare the kingdom of God? It is like leaven that a woman took and mixed into three measures of flour, un- The Narrow Door" + }, + { + "verseNum": 34, + "text": "–35) A Maskil d of Asaph. 1 2 Give ear, O my people, to my instruction; listen to the words of my mouth. I will open my mouth in parables; e 3 I will utter things hidden from the beginning, that we have heard and known 4 and our fathers have relayed to us. We will not hide them from their children but will declare to the next generation the praises of the LORD and His might a 10 b 10 Surely Your wrath against men brings You praise, and the survivors of Your wrath will be restrained. Has His promise failed for all time? “To this I will appeal: to the years of the right hand of the Most High.” and the wonders He has performed. were unknown c 19 Or Or times probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. Or Or ; see also LXX; cited in" + }, + { + "verseNum": 35, + "text": "d 1 Maskil e 2 from ancient is 538 |" + }, + { + "verseNum": 36, + "text": "–43) 1 This is the word of the LORD that came to Zephaniah son of Cushi, the son of Gedaliah, the son of Amariah, the son of Hezekiah, in the 2 days of Josiah son of Amon king of Judah: “I will completely sweep away everything from the face of the earth,” declares the LORD. 3 “I will sweep away man and beast; I will sweep away the birds of the air, and the fish of the sea, a and the idols with their wicked worshipers. I will cut off mankind from the face of the earth,” declares the LORD. 4 “I will stretch out My hand against Judah and against all who dwell in Jerusalem. I will cut off from this place every remnant of Baal, 5 the names of the idolatrous and pagan priests— those who bow on the rooftops to worship the host of heaven, those who bow down and swear by 6 the LORD b but also swear by Milcom, and those who turn back from following the LORD, neither seeking the LORD nor inquiring of Him.” The Day of the LORD" + }, + { + "verseNum": 43, + "text": ". Hosea Hosea’s Wife and Children Israel’s Adultery Rebuked 1 This is the word of the LORD that came to Hosea son of Beeri in the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah, and 2 of Jeroboam son of Jehoash, king of Israel. a When the LORD first spoke through Hosea, He told him, “Go, take a prostitute as your wife and have children of adultery, because this land is flagrantly prostituting itself by departing from 3 the LORD.” So Hosea went and married Gomer daughter of Diblaim, and she conceived and bore him a 4 son. b Then the LORD said to Hosea, “Name him Jezreel, for soon I will bring the bloodshed of Jezreel upon the house of Jehu, and I will put an end to the kingdom of Israel. And on that day I will break the bow of Israel in the Valley of 6 Jezreel.” 5 c Gomer again conceived and gave birth to a daughter, and the LORD said to Hosea, “Name her Lo-ruhamah, for I will no longer have compas- 7 sion on the house of Israel, that I should ever forgive them. Yet I will have compassion on the house of Judah, and I will save them—not by bow or sword or war, not by horses and cavalry, but 8 by the LORD their God.” 9 After she had weaned Lo-ruhamah, Gomer con- And the LORD for you are not My ceived and gave birth to a son. e said, “Name him Lo-ammi, 10 people, and I am not your God. d f 11 Yet the number of the Israelites will be like the sand of the sea, which cannot be measured or counted. And it will happen that in the very place where it was said to them, ‘You" + }, + { + "verseNum": 53, + "text": "–58 ;" + }, + { + "verseNum": 55, + "text": ". 900 |" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–21 ;" + }, + { + "verseNum": 17, + "text": "| 875 The Beheading of John" + }, + { + "verseNum": 18, + "text": "18 19 “Bring them here to Me,” Jesus said. And He directed the crowds to sit down on the grass. Taking the five loaves and the two fish and look- ing up to heaven, He spoke a blessing. Then He broke the loaves and gave them to the disciples, 20 and the disciples gave them to the people. 21 They all ate and were satisfied, and the disci- ples picked up twelve basketfuls of broken pieces that were left over. About five thousand Jesus Walks on Water men were fed, besides women and children." + }, + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–9) touched Him were healed." + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 8, + "text": "–9 and Mark Cited in b 14 Hebrew; LXX c 16 Hebrew; LXX 7:6–7 1 Corinthians 1:19 Cited in" + }, + { + "verseNum": 10, + "text": "–20) so in many such matters.” 14 13 Once again Jesus called the crowd to Him and 15 said, “All of you, listen to Me and understand: Nothing that enters a man from the outside can defile him; but the things that come out of a man, these are what defile him.” until they have washed their hands to the fist e 8 c 4 —washings of pots and cups and NE and h 10 i cups, pitchers, and kettles. That is, between three and six in the morning Literally g 10 establish" + }, + { + "verseNum": 21, + "text": "–28) 23 24 c 25 Jesus left that place and went to the region of Tyre. Not wanting anyone to know He was there, He entered a house, but was unable to escape their notice. Instead, a woman whose little daughter had an unclean spirit soon heard 26 about Jesus, and she came and fell at His feet. Now she was a Greek woman of Syrophoeni- cian origin, and she kept asking Jesus to drive the 27 demon out of her daughter. “First let the children have their fill,” He said. “For it is not right to take the children’s bread 28 and toss it to the dogs.” d “Yes, Lord,” she replied, “even the dogs 29 the table eat the children’s crumbs.” under Then Jesus told her, “Because of this answer, 30 you may go. The demon has left your daughter.” And she went home and found her child lying The Deaf and Mute Man" + }, + { + "verseNum": 29, + "text": "–39 ;" + }, + { + "verseNum": 38, + "text": ". Or That is, the Ten Cities The Leaven of the Pharisees and of Herod" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + }, + { + "verseNum": 5, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "| 877 These are theft, false testimony, and slander. what defile a man, but eating with unwashed The Faith of the Canaanite Woman hands does not defile him.”" + }, + { + "verseNum": 13, + "text": "Peter’s Confession of Christ" + }, + { + "verseNum": 21, + "text": "–23 ;" + }, + { + "verseNum": 24, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": ". 36 50" + }, + { + "verseNum": 14, + "text": "–18 ;" + }, + { + "verseNum": 19, + "text": "–20) 5 The apostles said to the Lord, “Increase our 6 faith!” One day the beggar died and was carried by And the rich man everyone is urged to enter into it a 7 the angels to Abraham’s side. ‘A hundred cors of wheat’ b 16 c And the Lord answered, “If you have faith the size of a mustard seed, you can say to this mul- berry tree, ‘Be uprooted and planted in the sea,’ and it will obey you. ; that is, approximately 1,000 bushels or 35,000 liters (probably about 30 tons or 27 into Abraham’s bosom c 22 Greek metric tons of wheat) Or Greek ; similarly in verse 23 7 26" + }, + { + "verseNum": 22, + "text": "–23 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–14) 15 2 Now all the tax collectors and sinners were gathering around to listen to Jesus. So the Pharisees and scribes began to grumble: “This man welcomes sinners and eats with 3 them.” 4 Then Jesus told them this parable: “What man among you, if he has a hundred sheep and loses one of them, does not leave the ninety-nine in the pasture and go after the one that is lost, until he 5 6 22" + }, + { + "verseNum": 15, + "text": "–20) 15 A lone witness is not sufficient to establish any wrongdoing or sin against a man, regardless of what offense he may have committed. A matter must be established by the testimony of two or 16 three witnesses. b 17 If a false witness testifies against someone, ac- both parties to the cusing him of a crime, dispute must stand in the presence of the LORD, 18 before the priests and judges who are in office at The judges shall investigate thor- that time. oughly, and if the witness is proven to be a liar who has falsely accused his brother, you must c do to him as he intended to do to his brother. So 20 you must purge the evil from among you. 19 21 Then the rest of the people will hear and be afraid, and they will never again do anything so d evil among you. You must show no pity: life for life, eye for eye, tooth for tooth, hand for hand, Laws of Warfare and foot for foot. 20 2 When you go out to war against your en- emies and see horses, chariots, and an army larger than yours, do not be afraid of them; for the LORD your God, who brought you out of When you are the land of Egypt, is with you. 3 about to go into battle, the priest is to come for- ward and address the army, saying to them, “Hear, O Israel, today you are going into battle with your enemies. Do not be fainthearted or afraid; do not be alarmed or terrified because of For the LORD your God goes with you to them. fight for you against your enemies, to give you 5 the victory.” 4 Furthermore, the officers are to" + }, + { + "verseNum": 16, + "text": "and 2 Corinthians 13:1 Cited in 1 Corinthians 5:13 6 Atonement for an Unsolved Murder" + }, + { + "verseNum": 17, + "text": "| 879 18 “O unbelieving and perverse generation!” Je- sus replied. “How long must I remain with you? How long must I put up with you? Bring the boy Then Jesus rebuked the demon, here to Me.” and it came out of the boy, and he was healed The Power of Faith" + }, + { + "verseNum": 18, + "text": "32 them, tell it to the church. And if he refuses to lis- church, regard him as you would ten even to the 18 a pagan or a tax collector. Truly I tell you, whatever you bind on earth will be bound in heaven, and whatever you loose Ask in My Name" + }, + { + "verseNum": 19, + "text": "–20) one will take away your joy. 23 In that day you will no longer ask Me anything. Truly, truly, I tell you, whatever you 24 ask the Father in My name, He will give you. Until now you have not asked for anything in My name. Ask and you will receive, so that your 25 joy may be complete. 26 27 I have spoken these things to you in figures of speech. An hour is coming when I will no longer speak to you this way, but will tell you plainly about the Father. In that day you will ask in My name. I am not saying that I will ask the Father on your behalf. For the Father Himself loves you, because you have loved Me and have be- lieved that I came from God. I came from the Father and entered the world. In turn, I will leave 29 the world and go to the Father.” 28 c 30 His disciples said, “See, now You are speaking plainly and without figures of speech. Now we understand that You know all things and that You have no need for anyone to question You. Be- cause of this, we believe that You came from 31 God.” 32 finally believe?” “Do you Jesus replied. “Look, an hour is coming and has already come when you will be scattered, each to his own home, and you will leave Me all alone. Yet I am not alone, because the Father is with Me. I have told you these things so that in Me you may have peace. In the world you will have tribulation. But Prayer for the Son take courage; I have overcome the world!” 33 17 When Jesus had spoken these things, He lifted up His eyes to heaven and said, “Fa- 2 ther, th" + }, + { + "verseNum": 21, + "text": "–35) hospitality. 14 15 Bless those who persecute you. Bless and do 16 Rejoice with those who rejoice; not curse. Live in harmony weep with those who weep. with one another. Do not be proud, but associate 17 with the lowly. Do not be conceited. Do not repay anyone evil for evil. Carefully 18 consider what is right in the eyes of everybody. If it is possible on your part, live at peace with 19 everyone. Do not avenge yourselves, beloved, but leave room for God’s wrath. For it is written: “Venge- 20 ance is Mine; I will repay, says the Lord.” a On the contrary, “If your enemy is hungry, feed him; if he is thirsty, give him a drink. b For in so doing, 21 you will heap burning coals on his head.” Do not be overcome by evil, but overcome evil Submission to Authorities" + }, + { + "verseNum": 22, + "text": ". Seth and Enosh 25 a And Adam again had relations with his wife, and she gave birth to a son and named him Seth, saying, “God has granted me another seed in 26 place of Abel, since Cain killed him.” And to Seth also a son was born, and he called b him Enosh. the name of At that time men began to call upon The Descendants of Adam (1 Chronicles 1:1–3) the LORD. 5 c This is the book of the generations of Adam. 2 In the day that God created man, He made Male and female He and He blessed them. And in the him in His own likeness. created them, 3 day they were created, He called them “man.” d 4 When Adam was 130 years old, he had a son in his own likeness, after his own image; and he And after he had become the named him Seth. father of Seth, Adam lived 800 years and had So Adam lived a total other sons and daughters. 6 of 930 years, and then he died. 7 5 When Seth was 105 years old, he became the fa- And after he had become the ther of Enosh. father of Enosh, Seth lived 807 years and had So Seth lived a total other sons and daughters. 9 of 912 years, and then he died. 8 10 When Enosh was 90 years old, he became the father of Kenan. And after he had become the father of Kenan, Enosh lived 815 years and had other sons and daughters. So Enosh lived a 12 total of 905 years, and then he died. 11 13 When Kenan was 70 years old, he became the And after he had become father of Mahalalel. the father of Mahalalel, Kenan lived 840 years and had other sons and daughters. So Kenan 15 lived a t" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–12) yourselves, and be at peace with one another.” 10 Then Jesus left that place and went into the region of Judea, beyond the Jordan. Again the crowds came to Him and He taught 2 them, as was His custom. Some Pharisees came to test Him. “Is it lawful 3 for a man to divorce his wife?” they inquired. 4 “What did Moses command you?” He replied. f They answered, “Moses permitted a man to write his wife a certificate of divorce and send a 43 her away.” Gehenna b 43 g 7 6 But Jesus told them, “Moses wrote this com- mandment for you because of your hardness of heart. However, from the beginning of creation, ‘God made them male and female.’ ‘For this 8 reason a man will leave his father and mother and be united to his wife, and the two will be- come one flesh.’ So they are no longer two, but Therefore what God has joined to- one flesh. 10 gether, let man not separate.” 9 h i 11 When they were back inside the house, the dis- ciples asked Jesus about this matter. So He told them, “Whoever divorces his wife and marries 12 another woman commits adultery against her. And if a woman divorces her husband and Jesus Blesses the Children marries another man, she commits adultery.”" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 13, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–30 ;" + }, + { + "verseNum": 18, + "text": "," + }, + { + "verseNum": 19, + "text": "," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 2, + "text": "." + }, + { + "verseNum": 14, + "text": "| 881 28 c Jesus said to them, “Truly I tell you, in the re- newal of all things, when the Son of Man sits on His glorious throne, you who have followed Me 29 will also sit on twelve thrones, judging the twelve And everyone who has left tribes of Israel. d houses or brothers or sisters or father or mother or children or fields for the sake of My or wife name will receive a hundredfold and will inherit But many who are first will be last, eternal life. The Parable of the Workers and the last will be first. 30 20 “For the kingdom of heaven is like a land- owner who went out early in the morn- He agreed for the day and sent ing to hire workers for his vineyard. to pay them a denarius 3 them into his vineyard. 2 e f About the third hour he went out and saw oth- 4 ers standing in the marketplace doing nothing. ‘You also go into my vineyard,’ he said, ‘and I 5 will pay you whatever is right.’ g So they went. He went out again about the sixth hour and the 6 and did the same thing. ninth hour h About the eleventh hour he went out and found still others standing around. ‘Why have you been standing here all day long doing noth- 7 ing?’ he asked. i ‘Because no one has hired us,’ they answered. 8 So he told them, ‘You also go into my vineyard.’ When evening came, the owner of the vineyard said to his foreman, ‘Call the workers and pay them their wages, starting with the last ones 9 hired and moving on to the first.’ The workers who were hired about the elev- 10 enth hour came and each re" + }, + { + "verseNum": 15, + "text": "15 Do I give this last man the same as I gave you. not have the right to do as I please with what is 16 mine? Or are you envious because I am generous?’ a sitting beside the road. When they heard that Jesus was passing by, they cried out, “Lord, Son 31 of David, have mercy on us!” So the last will be first, and the first will be The Third Prediction of the Passion last.”" + }, + { + "verseNum": 17, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–28) 35 Then James and John, the sons of Zebedee, came to Jesus and declared, “Teacher, we want 36 You to do for us whatever we ask.” “What do you want Me to do for you?” He “We can,” the brothers answered. 40 “You will drink the cup that I drink,” Jesus said, “and you will be baptized with the baptism that I But to sit at My right or left is not undergo. Mine to grant. These seats belong to those for 41 whom they have been prepared.” b 42 When the ten heard about this, they became So Jesus called indignant with James and John. them together and said, “You know that those re- garded as rulers of the Gentiles lord it over them, 43 and their superiors exercise authority over them. But it shall not be this way among you. Instead, whoever wants to become great among you must and whoever wants to be first be your servant, For even the Son of must be the slave of all. Man did not come to be served, but to serve, and Jesus Heals Bartimaeus to give His life as a ransom for many.”" + }, + { + "verseNum": 29, + "text": "–34 ;" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 5, + "text": "and" + }, + { + "verseNum": 9, + "text": "," + }, + { + "verseNum": 13, + "text": "," + }, + { + "verseNum": 15, + "text": "," + }, + { + "verseNum": 16, + "text": "is probably a You have is probably ; LXX 500 |" + }, + { + "verseNum": 18, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–27 ;" + }, + { + "verseNum": 33, + "text": "–46 ;" + }, + { + "verseNum": 37, + "text": "| 883 The crowds replied, “This is Jesus, the prophet Jesus Cleanses the Temple from Nazareth in Galilee.”" + }, + { + "verseNum": 38, + "text": "38 10 But when the tenants saw the son, they said to one another, ‘This is the heir. Come, let us kill him So they seized him and take his inheritance.’ 40 and threw him out of the vineyard and killed him. 39 Therefore, when the owner of the vineyard re- 41 turns, what will he do to those tenants?” “He will bring those wretches to a wretched end,” they replied, “and will rent out the vineyard to other tenants who will give him his share of 42 the fruit at harvest time.” Jesus said to them, “Have you never read in the Scriptures: ‘The stone the builders rejected has become the cornerstone. a So the servants went out into the streets and gathered everyone they could find, both evil and good, and the wedding hall was filled with 11 guests. 12 But when the king came in to see the guests, he spotted a man who was not dressed in wedding ‘Friend,’ he asked, ‘how did you get in clothes. here without wedding clothes?’ 13 But the man was speechless. Then the king told the servants, ‘Tie him hand and foot, and throw him into the outer darkness, where there will be weeping and gnashing of 14 teeth.’ Paying Taxes to Caesar" + }, + { + "verseNum": 42, + "text": "," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 15, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–33 ;" + }, + { + "verseNum": 24, + "text": "," + }, + { + "verseNum": 32, + "text": "," + }, + { + "verseNum": 34, + "text": "–40 ;" + }, + { + "verseNum": 37, + "text": "," + }, + { + "verseNum": 39, + "text": "," + }, + { + "verseNum": 41, + "text": "–46 ;" + }, + { + "verseNum": 44, + "text": "," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–36) 37 38 As Jesus was speaking, a Pharisee invited Him to dine with him; so He went in and reclined at the table. But the Pharisee was surprised to 39 see that Jesus did not first wash before the meal. 40 Then the Lord said, “Now you Pharisees clean the outside of the cup and dish, but inside you are full of greed and wickedness. You fools! Did 41 not the One who made the outside make the in- side as well? But give as alms the things that are within you, and behold, everything will be a 34 clean for you. When your eye is sound c 51 the house Literally" + }, + { + "verseNum": 21, + "text": "| 885 brother. The same thing happened to the sec- 27 ond and third brothers, down to the seventh. In the resur- rection, then, whose wife will she be of the 29 seven? For all of them were married to her.” And last of all, the woman died. 28 a 30 31 Jesus answered, “You are mistaken because you do not know the Scriptures or the power of In the resurrection, people will neither God. marry nor be given in marriage. Instead, they will be like the angels in heaven. But concerning 32 the resurrection of the dead, have you not read ‘I am the God of Abra- what God said to you: ham, the God of Isaac, and the God of Jacob’ ? He 33 is not the God of the dead, but of the living.” b When the crowds heard this, they were aston- The Greatest Commandment ished at His teaching." + }, + { + "verseNum": 22, + "text": "22 38 he who swears by the temple swears by it and by the One who dwells in it. And he who swears by heaven swears by God’s throne and by the 23 One who sits on it. Woe to you, scribes and Pharisees, you hypocrites! You pay tithes of mint, dill, and cumin. But you have disregarded the weightier matters of the law: justice, mercy, and faithful- ness. You should have practiced the latter, with- You blind guides! out neglecting the former. 25 You strain out a gnat but swallow a camel. 24 a 26 Woe to you, scribes and Pharisees, you hypocrites! You clean the outside of the cup and dish, but inside they are full of greed and self-in- Blind Pharisee! First clean the inside dulgence. of the cup and dish, so that the outside may be- 27 come clean as well. b 28 Woe to you, scribes and Pharisees, you hypocrites! You are like whitewashed tombs, which look beautiful on the outside but on the in- side are full of dead men’s bones and every kind In the same way, on the outside of impurity. you appear to be righteous, but on the inside you 29 are full of hypocrisy and wickedness. 30 Woe to you, scribes and Pharisees, you hypocrites! You build tombs for the prophets and And decorate the monuments of the righteous. you say, ‘If we had lived in the days of our fathers, 31 we would not have been partners with them in So you shedding the blood of the prophets.’ testify against yourselves that you are the sons of those who murdered the prophets. Fill up, 33 then, the measure of the sin of your fat" + }, + { + "verseNum": 37, + "text": "–39) who are first will be last.” 31 30 At that very hour, some Pharisees came to Je- sus and told Him, “Leave this place and get away, 32 because Herod wants to kill You.” 33 But Jesus replied, “Go tell that fox, ‘Look, I will keep driving out demons and healing people to- day and tomorrow, and on the third day I will Nevertheless, I must keep go- reach My goal.’ ing today and tomorrow and the next day, for it is not admissible for a prophet to perish outside 34 of Jerusalem. 35 O Jerusalem, Jerusalem, who kills the prophets and stones those sent to her, how often I have longed to gather your children together as a hen gathers her chicks under her wings, but you were Look, your house is left to you des- unwilling! olate. And I tell you that you will not see Me again until you say, ‘Blessed is He who comes in the Jesus Heals a Man with Dropsy name of the Lord.’ ” a 14 One Sabbath, Jesus went to eat in the home of a leading Pharisee, and those in Right attendance were watching Him closely. So Je- there before Him was a man with dropsy. sus asked the experts in the law and the Phari- 4 sees, “Is it lawful to heal on the Sabbath or not?” 2 3 But they remained silent. 5 Then Jesus took hold of the man, healed him, and b And He asked them, sent him on his way. “Which of you whose son or ox falls into a pit on the Sabbath day will not immediately pull him out?” 936 |" + }, + { + "verseNum": 39, + "text": "," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–25 ;" + }, + { + "verseNum": 26, + "text": "–31 ;" + }, + { + "verseNum": 30, + "text": ", one like a son of man b 13 Perhaps , that is, the Mediterranean Sea" + }, + { + "verseNum": 32, + "text": "–35 ;" + }, + { + "verseNum": 36, + "text": "–51) father of Shem, Ham, and Japheth. 6 2 Now when men began to multiply on the face of the earth and daughters were born to them, the sons of God saw that the daughters of men were beautiful, and they took as wives 3 whomever they chose. h So the LORD said, “My Spirit will not contend for he is mortal; his days shall with man forever, 4 be 120 years.” The Nephilim were on the earth in those days— and afterward as well—when the sons of God had relations with the daughters of men. And they bore them children who became the mighty 5 men of old, men of renown. 6 Then the LORD saw that the wickedness of man was great upon the earth, and that every inclination of the thoughts of his heart was altogether evil all the time. And the LORD regretted that He had made man on the earth, and He was grieved in His heart. So the LORD said, “I will blot out man, whom I have created, from the face of the earth—every man and beast and crawling creature and bird of the air—for I to invoke am grieved that I have made them.” pleased God to call themselves by 7 20 When Jared was 162 years old, he became the father of Enoch. And after he had become the father of Enoch, Jared lived 800 years and had other sons and daughters. So Jared lived a total a 25 Seth of 962 years, and then he died. to profane f 24 probably means or and he was not found, because God had taken him away Cited in" + }, + { + "verseNum": 40, + "text": ". was one afflicted with a skin disease. See Leviticus 13. See" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 2, + "text": "| 887 33 then let those who are in Judea flee to the Let no one on the housetop come And mountains. down to retrieve anything from his house. 19 let no one in the field return for his cloak. 18 20 21 How miserable those days will be for pregnant Pray that your flight will and nursing mothers! For not occur in the winter or on the Sabbath. at that time there will be great tribulation, un- seen from the beginning of the world until now, If those days had and never to be seen again. not been cut short, nobody would be saved. But for the sake of the elect, those days will be cut 23 short. 22 At that time, if anyone says to you, ‘Look, here 24 is the Christ!’ or ‘There He is!’ do not believe it. For false Christs and false prophets will appear and perform great signs and wonders to deceive See, I have even the elect, if that were possible. The Return of the Son of Man told you in advance." + }, + { + "verseNum": 3, + "text": "3 4 The fool- them were foolish, and five were wise. ish ones took their lamps but did not take along 5 But the wise ones took oil in flasks any extra oil. When the bridegroom along with their lamps. was delayed, they all became drowsy and fell 6 asleep. things; I will put you in charge of many things. 22 Enter into the joy of your master!’ The servant who had received the two talents also came and said, ‘Master, you en- trusted me with two talents. See, I have gained 23 two more.’ 13 you.’ At midnight the cry rang out: ‘Here is the bride- 7 groom! Come out to meet him!’ 8 Then all the virgins woke up and trimmed their The foolish ones said to the wise, ‘Give lamps. 9 us some of your oil; our lamps are going out.’ ‘No,’ said the wise ones, ‘or there may not be enough for both us and you. Instead, go to those 10 who sell oil and buy some for yourselves.’ But while they were on their way to buy it, the bridegroom arrived. Those who were ready went in with him to the wedding banquet, and 11 the door was shut. Later the other virgins arrived and said, ‘Lord, 12 lord, open the door for us!’ But he replied, ‘Truly I tell you, I do not know a Therefore keep watch, because you do not The Parable of the Talents know the day or the hour." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–30 ; scribed. And they prepared the Passover." + }, + { + "verseNum": 29, + "text": "| 889 Then the righteous will answer Him, ‘Lord, when did we see You hungry and feed You, or 38 thirsty and give You something to drink? When did we see You a stranger and take You When did we see in, or naked and clothe You? 40 You sick or in prison and visit You?’ 39 And the King will reply, ‘Truly I tell you, what- ever you did for one of the least of these brothers 41 of Mine, you did for Me.’ 42 Then He will say to those on His left, ‘Depart from Me, you who are cursed, into the eternal fire For I prepared for the devil and his angels. was hungry and you gave Me nothing to eat, I was I was thirsty and you gave Me nothing to drink, a stranger and you did not take Me in, I was naked and you did not clothe Me, I was sick and 44 in prison and you did not look after Me.’ 43 And they too will reply, ‘Lord, when did we see You hungry or thirsty or a stranger or naked or 45 sick or in prison, and did not minister to You?’ Then the King will answer, ‘Truly I tell you, whatever you did not do for one of the least of 46 these, you did not do for Me.’ And they will go away into eternal punish- The Plot to Kill Jesus ment, but the righteous into eternal life.”" + }, + { + "verseNum": 30, + "text": "on until that day when I drink it anew with you 30 in My Father’s kingdom.” And when they had sung a hymn, they went Jesus Predicts Peter’s Denial (Zech. 13:7–9 ; out to the Mount of Olives." + }, + { + "verseNum": 31, + "text": "–35 ;" + }, + { + "verseNum": 36, + "text": "–46 ;" + }, + { + "verseNum": 64, + "text": "," + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–2) down and wept. 15 g Early in the morning, the chief priests, el- ders, scribes, and the whole Sanhedrin devised a plan. They bound Jesus, led Him away, 2 and handed Him over to Pilate. But Jesus remained silent and made no the temple b 55 the whole Council So Pilate questioned Him, “Are You the King of c 62 and the rooster crowed the right hand of the Mighty One the Jews?” f 70 d 62 and your speech is similar See" + }, + { + "verseNum": 3, + "text": "–10) vour one another’s flesh.” 10 b 11 Next I took my staff called Favor and cut it in two, revoking the covenant I had made with all the nations. It was revoked on that day, and so the afflicted of the flock who were watching me fir a 2 knew that it was the word of the LORD. broke it juniper b 10 pine Then I told them, “If it seems right to you, give me my wages; but if not, keep them.” So they 13 weighed out my wages, thirty pieces of silver. And the LORD said to me, “Throw it to the pot- ter”—this magnificent price at which they valued me. So I took the thirty pieces of silver and threw 14 them to the potter in the house of the LORD. Then I cut in two my second staff called Union, breaking the brotherhood between Judah 15 and Israel. 16 And the LORD said to me: “Take up once more For be- the equipment of a foolish shepherd. hold, I will raise up a shepherd in the land who will neither care for the lost, nor seek the young, nor heal the broken, nor sustain the healthy, but he will devour the flesh of the choice sheep and 17 tear off their hooves. Woe to the worthless shepherd, who deserts the flock! May a sword strike his arm and his right eye! May his arm be completely withered The Coming Deliverance of Jerusalem and his right eye utterly blinded!” 12 This is the burden of the word of the LORD concerning Israel. Thus declares the LORD, who stretches out the heavens and lays the foundation of the earth, 2 who forms the spirit of man within him: “Behold, I will make Jerusal" + }, + { + "verseNum": 11, + "text": "–14 ;" + }, + { + "verseNum": 15, + "text": "–23 ;" + }, + { + "verseNum": 19, + "text": "| 891 So the high priest stood up and asked Him, “Have You no answer? What are these men testi- 63 fying against You?” But Jesus remained silent. Then the high priest said to Him, “I charge You under oath by the living God: Tell us if You are 64 the Christ, the Son of God.” “You have said it yourself,” Jesus answered. a “But I say to all of you, from now on you will see the Son of Man sitting at the right hand of Power 65 and coming on the clouds of heaven.” b 66 At this, the high priest tore his clothes and de- clared, “He has blasphemed! Why do we need any more witnesses? Look, now you have heard the blasphemy. 67 “He deserves to die,” they answered. 68 What do you think?” Then they spit in His face and struck Him. Oth- and said, “Prophesy to us, ers slapped Him Peter Denies Jesus Christ! Who hit You?”" + }, + { + "verseNum": 20, + "text": "20 But the chief priests and elders persuaded the crowds to ask for Barabbas and to have Jesus put 21 to death. “Which of the two do you want me to release to you?” asked the governor. 22 “Barabbas,” they replied. offered Him wine to drink, mixed with gall; but 35 after tasting it, He refused to drink it. b 36 When they had crucified Him, they divided up And sitting His garments by casting lots. 37 down, they kept watch over Him there. Above His head they posted the written charge “What then should I do with Jesus who is called against Him: Christ?” Pilate asked. 23 They all answered, “Crucify Him!” 38 THIS IS JESUS, THE KING OF THE JEWS. c “Why?” asked Pilate. “What evil has He done?” Pilate Washes His Hands" + }, + { + "verseNum": 24, + "text": "–26) have him release Barabbas to them instead. 12 So Pilate asked them again, “What then do you want me to do with the One you call the King of 13 the Jews?” 14 And they shouted back, “Crucify Him!” “Why?” asked Pilate. “What evil has He done?” 15 But they shouted all the louder, “Crucify Him!” And wishing to satisfy the crowd, Pilate re- leased Barabbas to them. But he had Jesus The Soldiers Mock Jesus" + }, + { + "verseNum": 27, + "text": "–31 ;" + }, + { + "verseNum": 32, + "text": "–56 ;" + }, + { + "verseNum": 35, + "text": "," + }, + { + "verseNum": 43, + "text": "f 22 , a possible reading of the Cited in" + }, + { + "verseNum": 46, + "text": "and" + }, + { + "verseNum": 56, + "text": ". 9 But they quickly reported all these instructions to Peter’s companions. Afterward, Jesus Himself, through them, sent out from east to west the sacred and Mark after v. 8. Other manuscripts contain only a short ending, a version of the following: imperishable proclamation of eternal salvation. Amen. f 9 After the Lord g 17 is a variant of Some early manuscripts end the Gospel of After Jesus had risen early on the first day of the week in tongues Literally h 19 WH ECM, BYZ, and TR Or Luke Dedication to Theophilus" + }, + { + "verseNum": 57, + "text": "–61 ;" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 16, + "text": "–20) but they did not believe them either. 14 Later, as they were eating, Jesus appeared to the Eleven and rebuked them for their unbelief and hardness of heart, because they did not be- 15 lieve those who had seen Him after He had risen. 16 And He said to them, “Go into all the world and Whoever preach the gospel to every creature. 17 believes and is baptized will be saved, but who- And ever does not believe will be condemned. these signs will accompany those who believe: In g My name they will drive out demons; they will they will pick up speak in new tongues; snakes with their hands, and if they drink any deadly poison, it will not harm them; they will lay their hands on the sick, and they will be made The Ascension" + }, + { + "verseNum": 20, + "text": "| 893 split. The tombs broke open, and the bodies of 53 many saints who had fallen asleep were raised. After Jesus’ resurrection, when they had come out of the tombs, they entered the holy city and 54 appeared to many people. When the centurion and those with him who were guarding Jesus saw the earthquake and all that had happened, they were terrified and said, 55 “Truly this was the Son of God.” 56 And many women were there, watching from a distance. They had followed Jesus from Galilee Among them were Mary to minister to Him. Magdalene, Mary the mother of James and Jo- The Burial of Jesus seph, and the mother of Zebedee’s sons." + } + ] + } + ] + }, + { + "name": "Mark", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 2, + "text": ", and" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 7, + "text": ", and" + }, + { + "verseNum": 9, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–28) The First Disciples" + }, + { + "verseNum": 29, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–39) 42 At daybreak, Jesus went out to a solitary place, and the crowds were looking for Him. They came But to Him and tried to keep Him from leaving. Jesus told them, “I must preach the good news of the kingdom of God to the other towns as well, 44 because that is why I was sent.” 43 a 5 b 2 On one occasion, while Jesus was standing with the crowd by the Lake of Gennesaret He pressing in on Him to hear the word of God, saw two boats at the edge of the lake. The fisher- 3 men had left them and were washing their nets. Jesus got into the boat belonging to Simon and asked him to put out a little from shore. And sit- 4 ting down, He taught the people from the boat. When Jesus had finished speaking, He said to Si- mon, “Put out into deep water and let down your 5 nets for a catch.” 6 “Master,” Simon replied, “we have worked hard all night without catching anything. But because When they You say so, I will let down the nets.” 7 had done so, they caught such a large number of fish that their nets began to tear. So they sig- naled to their partners in the other boat to come and help them, and they came and filled both 8 boats so full that they began to sink. 9 When Simon Peter saw this, he fell at Jesus’ knees. “Go away from me, Lord,” he said, “for I am For he and his companions were a sinful man.” 10 astonished at the catch of fish they had taken, and so were his partners James and John, the sons of Zebedee. 11 “Do not be afraid,” Jesus said to Simon. “From And when they now on yo" + }, + { + "verseNum": 39, + "text": ". That is, the Sea of Galilee Leprosy was a term used for various skin diseases. See Leviticus 13. See" + }, + { + "verseNum": 40, + "text": "–45 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–20 ;" + }, + { + "verseNum": 19, + "text": "19 6 20 Jesus replied, “How can the guests of the bride- groom fast while He is with them? As long as He But the time will is with them, they cannot fast. come when the bridegroom will be taken from The Patches and the Wineskins them; then they will fast." + }, + { + "verseNum": 21, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 7, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–19 ;" + }, + { + "verseNum": 20, + "text": "–27) 14 e 15 One day Jesus was driving out a demon that was mute. And when the demon was gone, the man who had been mute spoke. The crowds were but some of them said, “It is by Beel- amazed, zebul, the prince of the demons, that He drives And others tested Him by de- out demons.” 17 manding a sign from heaven. 16 18 Knowing their thoughts, Jesus said to them, “Every kingdom divided against itself will be laid waste, and a house divided against a house will If Satan is divided against himself, how can fall. 19 his kingdom stand? After all, you say that I drive out demons by Beelzebul. And if I drive out de- mons by Beelzebul, by whom do your sons drive 20 them out? So then, they will be your judges. But if I drive out demons by the finger of God, 21 then the kingdom of God has come upon you. 22 When a strong man, fully armed, guards his But when house, his possessions are secure. someone stronger attacks and overpowers him, he takes away the armor in which the man 23 trusted, and then he divides up his plunder. He who is not with Me is against Me, and he An Unclean Spirit Returns (Matt. 12:43–45) who does not gather with Me scatters. 24 25 When an unclean spirit comes out of a man, it passes through arid places seeking rest and does not find it. Then it says, ‘I will return to the house 26 On its return, it finds the house swept I left.’ clean and put in order. Then it goes and brings seven other spirits more wicked than itself, and they go in and dwell there. And the final pl" + }, + { + "verseNum": 28, + "text": "–30) who does not gather with Me scatters. 31 32 Therefore I tell you, every sin and blasphemy will be forgiven men, but the blasphemy against Whoever speaks the Spirit will not be forgiven. a word against the Son of Man will be forgiven, but whoever speaks against the Holy Spirit will not be forgiven, either in this age or in the one to come. Beezeboul d 24" + }, + { + "verseNum": 31, + "text": "–35 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "," + }, + { + "verseNum": 13, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "| 897 24 25 8 If a kingdom is divided against out Satan? 26 If a house is divided itself, it cannot stand. And if Satan is against itself, it cannot stand. 27 divided and rises against himself, he cannot stand; his end has come. Indeed, no one can en- ter a strong man’s house to steal his possessions unless he first ties up the strong man. Then he The Unpardonable Sin" + }, + { + "verseNum": 22, + "text": "22 39 For there is noth- Doesn’t he set it on a stand? ing hidden that will not be disclosed, and nothing 23 concealed that will not be brought to light. 24 If anyone has ears to hear, let him hear.” He went on to say, “Pay attention to what you hear. With the measure you use, it will be meas- 25 ured to you, and even more will be added to you. For whoever has will be given more. But whoever does not have, even what he has will be The Seed Growing Secretly taken away from him.” 26 27 Jesus also said, “The kingdom of God is like a man who scatters seed on the ground. Night and day he sleeps and wakes, and the seed 28 sprouts and grows, though he knows not how. All by itself the earth produces a crop—first the stalk, then the head, then grain that ripens And as soon as the grain is ripe, he within. a swings the sickle, because the harvest has The Parable of the Mustard Seed come." + }, + { + "verseNum": 29, + "text": ". Or Or Amos Judgment on Israel’s Neighbors (Jer. 12:14–17) 9 1 a b These are the words of Amos, who was among the sheepherders of Tekoa—what before the he saw concerning Israel two years c earthquake, in the days when Uzziah was king of was king of Judah and Jeroboam son of Jehoash Israel. He said: 2 “The LORD roars from Zion and raises His voice from Jerusalem; 3 the pastures of the shepherds mourn, and the summit of Carmel withers.” This is what the LORD says: “For three transgressions of Damascus, even d four, I will not revoke My judgment, because they threshed Gilead 4 with sledges of iron. 5 So I will send fire upon the house of Hazael to consume the citadels of Ben-hadad. I will break down the gates of Damascus; from the Valley I will cut off the ruler e f of Aven This is what the LORD says: “For three transgressions of Tyre, even four, I will not revoke My judgment, because they delivered up a whole congregation of exiles to Edom and broke a covenant of brotherhood. So I will send fire upon the walls of Tyre 10 11 to consume its citadels.” This is what the LORD says: “For three transgressions of Edom, even four, I will not revoke My judgment, because he pursued his brother with the sword and stifled all compassion; 12 his anger raged continually, and his fury flamed incessantly. So I will send fire upon Teman 13 to consume the citadels of Bozrah.” This is what the LORD says: “For three transgressions of the Ammonites, even four, and the one who wields the scepter in" + }, + { + "verseNum": 30, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–41 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–43 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 3, + "text": "." + }, + { + "verseNum": 6, + "text": "| 899 17 Those who had seen it described what had happened to the demon-possessed man and also And the people began to beg Jesus to the pigs. 18 to leave their region. 19 As He was getting into the boat, the man who had been possessed by the demons begged to go But Jesus would not allow him. “Go with Him. home to your own people,” He said, “and tell them how much the Lord has done for you, and 20 what mercy He has shown you.” a So the man went away and began to proclaim how much Jesus had throughout the Decapolis The Healing Touch of Jesus done for him. And everyone was amazed." + }, + { + "verseNum": 7, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–29 ;" + }, + { + "verseNum": 30, + "text": "–44 ;" + }, + { + "verseNum": 45, + "text": "–52 ;" + }, + { + "verseNum": 53, + "text": "–56) the Son of God!” 34 When they had crossed over, they landed And when the men of that at Gennesaret. a 24 place recognized Jesus, they sent word to all the c 30 e 4 when he saw the strong wind many stadia Greek Literally" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–13) were healed. 15 2 Then some Pharisees and scribes came to Jesus from Jerusalem and asked, “Why do Your disciples break the tradition of the elders? They do not wash their hands before 3 they eat.” 4 e 5 Jesus replied, “And why do you break the com- d mand of God for the sake of your tradition? For God said, ‘Honor your father and mother’ and ‘Anyone who curses his father or mother must be But you say that if anyone says to put to death.’ his father or mother, ‘Whatever you would have f received from me is a gift devoted to God,’ he need not honor his father or mother with it. Thus you nullify the word of God for the sake of You hypocrites! Isaiah prophe- your tradition. 8 sied correctly about you: 7 6 9 ‘These people honor Me with their lips, but their hearts are far from Me. They worship Me in vain; g they teach as doctrine the precepts What Defiles a Man" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 12, + "text": "); literally" + }, + { + "verseNum": 14, + "text": "–23) ” of men.’ 10 11 Jesus called the crowd to Him and said, “Listen A man is not defiled by what and understand. 12 enters his mouth, but by what comes out of it.” Then the disciples came to Him and said, “Are You aware that the Pharisees were offended 13 when they heard this?” h 14 But Jesus replied, “Every plant that My heav- enly Father has not planted will be pulled up by Disregard them! They are blind its roots. guides. If a blind man leads a blind man, both 15 will fall into a pit.” 16 17 Peter said to Him, “Explain this parable to us.” And when they had climbed back into the boat, the wind died down. Then those who were in the boat worshiped Him, saying, “Truly You are Jesus Heals at Gennesaret" + }, + { + "verseNum": 15, + "text": "| 901 And after checking, they said, “Five—and two 39 fish.” 40 Then Jesus directed them to have the people So they sat sit in groups on the green grass. 41 down in groups of hundreds and fifties. Taking the five loaves and the two fish and looking up to heaven, Jesus spoke a blessing and broke the loaves. Then He gave them to His dis- ciples to set before the people. And He divided 42 the two fish among them all. 43 44 They all ate and were satisfied, and the dis- ciples picked up twelve basketfuls of broken pieces of bread and fish. And there were five Jesus Walks on Water thousand men who had eaten the loaves." + }, + { + "verseNum": 17, + "text": "17 35 f After Jesus had left the crowd and gone into the house, His disciples inquired about the para- 18 ble. Immediately opened!”). the man’s ears were opened and his tongue was released, and he be- 36 gan to speak plainly. “Are you still so dull?” He asked. “Do you not 19 understand? Nothing that enters a man from the because it does not en- outside can defile him, ter his heart, but it goes into the stomach and 20 then is eliminated.” (Thus all foods are clean.) a 21 22 He continued: “What comes out of a man, that For from within the hearts is what defiles him. b of men come evil thoughts, sexual immorality, greed, wickedness, theft, murder, adultery, deceit, debauchery, envy, slander, arrogance, and foolishness. All these evils come from The Faith of the Gentile Woman within, and these are what defile a man.”" + }, + { + "verseNum": 24, + "text": "–30) 21 22 Leaving that place, Jesus withdrew to the dis- And a Canaanite trict of Tyre and Sidon. woman from that region came to Him, crying out, “Lord, Son of David, have mercy on me! My 23 daughter is miserably possessed by a demon.” But Jesus did not answer a word. So His disci- ples came and urged Him, “Send her away, for 24 she keeps crying out after us.” He answered, “I was sent only to the lost sheep 25 of the house of Israel.” The woman came and knelt before Him. “Lord, 26 help me!” she said. But Jesus replied, “It is not right to take the a 27 children’s bread and toss it to the dogs.” “Yes, Lord,” she said, “even the dogs 28 crumbs that fall from their master’s table.” eat the “O woman,” Jesus answered, “your faith is great! Let it be done for you as you desire.” And The Feeding of the Four Thousand her daughter was healed from that very hour. (2 Kings 4:42–44 ;" + }, + { + "verseNum": 31, + "text": "–37) 27 As Jesus went on from there, two blind men followed Him, crying out, “Have mercy on us, Son 28 of David!” After Jesus had entered the house, the blind men came to Him. “Do you believe that I am able to do this?” He asked. 29 “Yes, Lord,” they answered. 30 Then He touched their eyes and said, “Accord- ing to your faith will it be done to you.” And their eyes were opened. Jesus warned them 31 sternly, “See that no one finds out about this!” But they went out and spread the news about 32 Him throughout the land. 33 As they were leaving, a demon-possessed man And when who was mute was brought to Jesus. the demon had been driven out, the man began to speak. The crowds were amazed and said, 34 “Nothing like this has ever been seen in Israel!” But the Pharisees said, “It is by the prince of The Lord of the Harvest" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–10) 42 Now a man from Baal-shalishah came to the man of God with a sack of twenty loaves of barley bread from the first ripe grain. 43 “Give it to the people to eat,” said Elisha. But his servant asked, “How am I to set twenty loaves before a hundred men?” “Give it to the people to eat,” said Elisha, “for this is what the LORD says: ‘They will eat and have 44 some left over.’ ” So he set it before them, and they ate and had some left over, according to the word of the Naaman Cured of Leprosy" + }, + { + "verseNum": 11, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–21 ;" + }, + { + "verseNum": 27, + "text": "–30 ;" + }, + { + "verseNum": 31, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–38 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 5, + "text": "| 903 29 “But what about you?” Jesus asked. “Who do you say I am?” 30 Peter answered, “You are the Christ.” And Jesus warned them not to tell anyone Christ’s Passion Foretold about Him." + }, + { + "verseNum": 6, + "text": "6 For they one for Moses, and one for Elijah.” were all so terrified that Peter did not know what 7 else to say. 8 Then a cloud appeared and enveloped them, and a voice came from the cloud: “This is My beloved Son. Listen to Him!” Suddenly, when they looked around, they saw no one with them 9 except Jesus. 10 As they were coming down the mountain, Jesus admonished them not to tell anyone what they had seen until the Son of Man had risen from the dead. So they kept this matter to themselves, 11 discussing what it meant to rise from the dead. And they asked Jesus, “Why do the scribes say 12 that Elijah must come first?” 13 He replied, “Elijah does indeed come first, and he restores all things. Why then is it written that the Son of Man must suffer many things and be rejected? But I tell you that Elijah has indeed come, and they have done to him whatever they The Boy with an Evil Spirit wished, just as it is written about him.”" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 14, + "text": "–29 ;" + }, + { + "verseNum": 29, + "text": ". d 9 Greek Or ; Greek BYZ and TR include NE and WH do not include ." + }, + { + "verseNum": 30, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": "–41 ;" + }, + { + "verseNum": 42, + "text": "–48 ;" + }, + { + "verseNum": 48, + "text": "Jeremiah The Call of Jeremiah 12 1 These are the words of Jeremiah son of Hilkiah, one of the priests in Anathoth in the 2 territory of Benjamin. 3 The word of the LORD came to Jeremiah in the thirteenth year of the reign of Josiah son of Amon king of Judah, and through the days of Jehoia- kim son of Josiah king of Judah, until the fifth month of the eleventh year of Zedekiah son of Jo- siah king of Judah, when the people of Jerusalem 4 went into exile. 5 The word of the LORD came to me, saying: a “You have observed correctly,” said the LORD, over My word to accomplish “for I am watching 13 it.” Again the word of the LORD came to me, ask- ing, “What do you see?” “I see a boiling pot,” I replied, “and it is tilting 14 toward us from the north.” 15 Then the LORD said to me, “Disaster from the north will be poured out on all who live in the For I am about to summon all the clans land. and kingdoms of the north,” declares the LORD. “Their kings will come and set up their “Before I formed you in the womb I knew thrones you, and before you were born I set you apart and appointed you as a prophet to the nations.” 6 “Ah, Lord GOD,” I said, “I surely do not know 7 how to speak, for I am only a child!” But the LORD told me: “Do not say, ‘I am only a child.’ For to everyone I send you, you must go, and all that I command you, 8 you must speak. Do not be afraid of them, for I am with you to deliver you,” declares the LORD. 9 Then the LORD reached out His hand, touched my mouth, and said" + }, + { + "verseNum": 49, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–12) heart.” 19 When Jesus had finished saying these things, He left Galilee and went into the Large region of Judea beyond the Jordan. 3 crowds followed Him, and He healed them there. 2 Then some Pharisees came and tested Him by asking, “Is it lawful for a man to divorce his wife 4 for any reason?” d 5 Jesus answered, “Have you not read that from the beginning the Creator ‘made them male and and said, ‘For this reason a man will female,’ leave his father and mother and be united to his So wife, and the two will become one flesh’ they are no longer two, but one flesh. Therefore what God has joined together, let man not sepa- 7 rate.” ? 6 e f “Why then,” they asked, “did Moses order a man to give his wife a certificate of divorce and send 8 her away? ” Jesus replied, “Moses permitted you to divorce your wives because of your hardness of heart. Now But it was not this way from the beginning. I tell you that whoever divorces his wife, except for sexual immorality, and marries another 10 woman commits adultery. ” 9 g His disciples said to Him, “If this is the case be- tween a man and his wife, it is better not to 11 marry.” “Not everyone can accept this word,” He re- 12 plied, “but only those to whom it has been given. For there are eunuchs who were born that way; others were made that way by men; and still others live like eunuchs for the sake of the kingdom of heaven. The one who can accept this should accept it.” d 4 seventy times seven When his fellow servants saw what had ha" + }, + { + "verseNum": 4, + "text": ". 10 11 12 When you lend anything to your neighbor, do not enter his house to collect security. You are to stand outside while the man to whom you are lending brings the security out to you. If he is a poor man, you must not go to sleep with the se- curity in your possession; be sure to return it to him by sunset, so that he may sleep in his own cloak and bless you, and this will be credited to 14 you as righteousness before the LORD your God. 13 15 Do not oppress a hired hand who is poor and needy, whether he is a brother or a foreigner re- You are to pay his siding in one of your towns. wages each day before sunset, because he is poor and depends on them. Otherwise he may cry out to the LORD against you, and you will be guilty of 16 sin. d Fathers shall not be put to death for their chil- dren, nor children for their fathers; each is to die 17 for his own sin. 18 Do not deny justice to the foreigner or the fatherless, and do not take a widow’s cloak as Remember that you were slaves in security. Egypt, and the LORD your God redeemed you from that place. Therefore I am commanding you 19 to do this. If you are harvesting in your field and forget a sheaf there, do not go back to get it. It is to be left for the foreigner, the fatherless, and the widow, so that the LORD your God may bless you in all 20 the work of your hands. When you beat the olives from your trees, you must not go over the branches again. What re- mains will be for the foreigner, the fatherless, 21 and the wid" + }, + { + "verseNum": 6, + "text": "a living soul Cited in" + }, + { + "verseNum": 13, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–31 ;" + }, + { + "verseNum": 19, + "text": "," + }, + { + "verseNum": 21, + "text": "| 905 John said to Him, “Teacher, we saw someone else driving out demons in Your name, and we tried to stop him, because he does not accom- 39 pany us.” 40 “Do not stop him,” Jesus replied. “For no one who performs a miracle in My name can turn 41 For whoever is around and speak evil of Me. Indeed, if anyone gives not against us is for us. you even a cup of water because you bear the name of Christ, truly I tell you, he will never lose Temptations and Trespasses his reward." + }, + { + "verseNum": 22, + "text": "22 37 But the man was saddened by these words and went away in sorrow, because he had great 23 wealth. They answered, “Grant that one of us may sit at Your right hand and the other at Your left in 38 Your glory.” Then Jesus looked around and said to His dis- ciples, “How hard it is for the rich to enter the 24 kingdom of God!” “You do not know what you are asking,” Jesus replied. “Can you drink the cup I will drink, 39 or be baptized with the baptism I will undergo?” And the disciples were amazed at His words. a 25 But Jesus said to them again, “Children, how hard it is to enter It is easier the kingdom of God! for a camel to pass through the eye of a needle 26 than for a rich man to enter the kingdom of God.” They were even more astonished and said to 27 one another, “Who then can be saved?” Jesus looked at them and said, “With man this is impossible, but not with God. For all things are 28 possible with God.” Peter began to say to Him, “Look, we have left 29 everything and followed You.” 30 “Truly I tell you,” Jesus replied, “no one who has left home or brothers or sisters or mother or father or children or fields for My sake and for the gospel will fail to receive a hundredfold in the present age—houses and brothers and sis- ters and mothers and children and fields, along with persecutions—and in the age to come, eter- nal life. But many who are first will be last, and The Third Prediction of the Passion the last will be first.”" + }, + { + "verseNum": 32, + "text": "–34 ;" + }, + { + "verseNum": 35, + "text": "–45) third day He will be raised to life.” 20 Then the mother of Zebedee’s sons came to Jesus with her sons and knelt down to make a 21 request of Him. “What do you want?” He inquired. She answered, “Declare that in Your kingdom one of these two sons of mine may sit at Your 22 right hand, and the other at Your left.” b “You do not know what you are asking,” Jesus replied. “Can you drink the cup I am going to drink?” 23 “We can,” the brothers answered. c “You will indeed drink My cup,” Jesus said. “But to sit at My right or left is not Mine to grant. These seats belong to those for whom My Father 24 has prepared them.” 25 26 When the ten heard about this, they were in- dignant with the two brothers. But Jesus called them aside and said, “You know that the rulers of the Gentiles lord it over them, and their superi- ors exercise authority over them. It shall not be this way among you. Instead, whoever wants to become great among you must be your 28 servant, and whoever wants to be first among you must be your slave— just as the Son of Man did not come to be served, but to serve, and The Blind Men by the Road to give His life as a ransom for many.”" + }, + { + "verseNum": 46, + "text": "–52 ;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 9, + "text": ", and" + }, + { + "verseNum": 10, + "text": ", and" + }, + { + "verseNum": 12, + "text": "–14 , , 20–25) Bethany, where He spent the night. 18 19 In the morning, as Jesus was returning to the Seeing a fig tree by the city, He was hungry. road, He went up to it but found nothing on it ex- cept leaves. “May you never bear fruit again!” He 20 said. And immediately the tree withered. When the disciples saw this, they marveled and asked, “How did the fig tree wither so 21 quickly?” “Truly I tell you,” Jesus replied, “if you have faith and do not doubt, not only will you do what was done to the fig tree, but even if you say to this mountain, ‘Be lifted up and thrown into the sea,’ If you believe, you will receive it will happen. Jesus’ Authority Challenged whatever you ask for in prayer.”" + }, + { + "verseNum": 15, + "text": "–19 ;" + }, + { + "verseNum": 17, + "text": ", and" + }, + { + "verseNum": 20, + "text": "–25) 12 13 14 The next day, when they had left Bethany, Je- Seeing in the distance a fig sus was hungry. tree in leaf, He went to see if there was any fruit on it. But when He reached it, He found nothing on it except leaves, since it was not the season for Then He said to the tree, “May no one ever figs. eat of your fruit again.” And His disciples heard Jesus Cleanses the Temple this statement. (Matt. 21:12–17 ;" + }, + { + "verseNum": 27, + "text": "–33 ;" + }, + { + "verseNum": 32, + "text": "| 907 16 17 who were buying and selling there. He over- turned the tables of the money changers and the seats of those selling doves. And He would not allow anyone to carry merchandise through the temple courts. Then Jesus began to teach them, and He declared, “Is it not written: ‘My house will be called a house of prayer for all the nations’ ? 18 But you have made it ‘a den of robbers.’ ” e f When the chief priests and scribes heard this, they looked for a way to kill Him. For they were afraid of Him, because the whole crowd was 19 astonished at His teaching. g And when evening came, Jesus and His disci- The Withered Fig Tree ples went out of the city." + }, + { + "verseNum": 33, + "text": "we say, ‘From men’ ” they were afraid of the 33 people, for they all held that John truly was a prophet. So they answered, “We do not know.” . . . teach the way of God in accordance with the truth. Is it lawful to pay taxes to Caesar or not? 15 Should we pay them or not?” And Jesus replied, “Neither will I tell you by what The Parable of the Wicked Tenants authority I am doing these things.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 10, + "text": "," + }, + { + "verseNum": 11, + "text": "" + }, + { + "verseNum": 13, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–27 ;" + }, + { + "verseNum": 19, + "text": ", and" + }, + { + "verseNum": 26, + "text": "," + }, + { + "verseNum": 28, + "text": "–34) 6 2 These are the commandments and statutes and ordinances that the LORD your God has instructed me to teach you to follow in the land so that that you are about to enter and possess, you and your children and grandchildren may fear the LORD your God all the days of your lives by keeping all His statutes and commandments that I give you, and so that your days may be pro- Hear, O Israel, and be careful to observe longed. them, so that you may prosper and multiply greatly in a land flowing with milk and honey, just as the LORD, the God of your fathers, has 4 promised you. 5 3 g Hear, O Israel: The LORD our God, the LORD is One. And you shall love the LORD your God with all your heart and with all your soul and 6 with all your strength. 7 h These words I am commanding you today are to b 17 And you shall teach them Cited in" + }, + { + "verseNum": 29, + "text": "Cited in" + }, + { + "verseNum": 30, + "text": ", and" + }, + { + "verseNum": 31, + "text": "," + }, + { + "verseNum": 35, + "text": "–37 ;" + }, + { + "verseNum": 36, + "text": "," + }, + { + "verseNum": 38, + "text": "–40) David’s son?” 45 46 In the hearing of all the people, Jesus said to “Beware of the scribes. They like His disciples, to walk around in long robes, and they love the greetings in the marketplaces, the chief seats in f the synagogues, and the places of honor at ban- They defraud widows of their houses, quets. and for a show make lengthy prayers. These men The Poor Widow’s Offering" + }, + { + "verseNum": 40, + "text": "and" + }, + { + "verseNum": 41, + "text": "–44) will receive greater condemnation.” 47 21 2 g Then Jesus looked up and saw the rich and putting their gifts into the treasury, He saw a poor widow put in two small copper 3 coins. 4 “Truly I tell you,” He said, “this poor widow has For they all con- put in more than all the others. tributed out of their surplus, but she out of her Temple Destruction and Other Signs poverty has put in all she had to live on.”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–13 ;" + }, + { + "verseNum": 14, + "text": "–23 ;" + }, + { + "verseNum": 15, + "text": "15 reader understand), then let those who are in Ju- dea flee to the mountains. Let no one on the housetop go back inside to retrieve anything from his house. And let no one in the field re- 17 turn for his cloak. 16 18 How miserable those days will be for pregnant 19 and nursing mothers! Pray that this will not occur in the winter. For those will be days of tribulation unseen from the beginning of God’s 20 creation until now, and never to be seen again. If the Lord had not cut short those days, no- body would be saved. But for the sake of the elect, whom He has chosen, He has cut them 21 short. At that time if anyone says to you, ‘Look, here 22 is the Christ!’ or ‘There He is!’ do not believe it. For false Christs and false prophets will appear and perform signs and wonders to deceive even the elect, if that were possible. So be on your The Return of the Son of Man guard; I have told you everything in advance." + }, + { + "verseNum": 24, + "text": "–27 ;" + }, + { + "verseNum": 26, + "text": "," + }, + { + "verseNum": 28, + "text": "–31 ;" + }, + { + "verseNum": 32, + "text": "–37 ;" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–26 ; had directed them and prepared the Passover." + }, + { + "verseNum": 27, + "text": "–31) ’ 7 Awake, O sword, against My Shepherd, against the man who is My Companion, declares the LORD of Hosts. Strike the Shepherd, and the sheep h will be scattered, 8 and I will turn My hand against the little ones. And in all the land, declares the LORD, two-thirds will be cut off and perish, 9 but a third will be left in it. This third I will bring through the fire; I will refine them like silver and test them like gold. They will call on My name, and I will answer them. I will say, ‘They are My people,’ The Destroyers of Jerusalem Destroyed and they will say, ‘The LORD is our God.’ ” 14 2 Behold, a day of the LORD is coming when your plunder will be divided in For I will gather all the nations your presence. for battle against Jerusalem, and the city will be captured, the houses looted, and the women rav- ished. Half of the city will go into exile, but the rest of the people will not be removed from the 3 city. 4 Then the LORD will go out to fight against those On that nations, as He fights in the day of battle. day His feet will stand on the Mount of Olives, east of Jerusalem, and the Mount of Olives will be split in two from east to west, forming a great valley, with half the mountain moving to the You will flee by My north and half to the south. mountain valley, for it will extend to Azal. You will flee as you fled from the earthquake in the days of Uzziah king of Judah. Then the LORD my 6 God will come, and all the holy ones with Him. 5 i 7 On that day there will be" + }, + { + "verseNum": 32, + "text": "–42 ;" + }, + { + "verseNum": 42, + "text": "| 911 Jesus Predicts Peter’s Denial" + }, + { + "verseNum": 43, + "text": "–52 ;" + }, + { + "verseNum": 53, + "text": "–65 ;" + }, + { + "verseNum": 62, + "text": "," + }, + { + "verseNum": 66, + "text": "–72 ;" + }, + { + "verseNum": 69, + "text": "–72 ;" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–5) wept bitterly. 27 When morning came, all the chief priests and elders of the people conspired against Jesus to put Him to death. They bound Him, led Him away, and handed Him over to a 64 Pilate the governor. the right hand of the Mighty One b 64 2 d 16 Jesus Barabbas 3 When Judas, who had betrayed Him, saw that Jesus was condemned, he was filled with re- morse and returned the thirty pieces of silver to “I have sinned by the chief priests and elders. betraying innocent blood,” he said. 4 “What is that to us?” they replied. “You bear the 5 responsibility.” So Judas threw the silver into the temple and 6 left. Then he went away and hanged himself. 7 The chief priests picked up the pieces of silver and said, “It is unlawful to put this into the treas- ury, since it is blood money.” After conferring together, they used the money to buy the potter’s field as a burial place for foreigners. That is why 9 it has been called the Field of Blood to this day. Then what was spoken through Jeremiah the 8 prophet was fulfilled: 10 “They took the thirty pieces of silver, the price set on Him by the people c of Israel, Jesus before Pilate (Lk. 23:1–5 ;" + }, + { + "verseNum": 6, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–15) But they shouted all the louder, “Crucify Him!” 24 When Pilate saw that he was accomplishing nothing, but that instead a riot was breaking out, he took water and washed his hands before the crowd. “I am innocent of this man’s blood, ” he 25 said. “You bear the responsibility.” a All the people answered, “His blood be on us 26 and on our children!” So Pilate released Barabbas to them. But he had Jesus flogged, and handed Him over to be The Soldiers Mock Jesus" + }, + { + "verseNum": 16, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–41 ;" + }, + { + "verseNum": 24, + "text": ", and" + }, + { + "verseNum": 33, + "text": "–41 ;" + }, + { + "verseNum": 34, + "text": "d 16 let the LORD rescue him, 9 since He delights in him.” Yet You brought me forth from the womb; You made me secure at my mother’s 10 breast. From birth I was cast upon You; 11 from my mother’s womb You have been my God. Be not far from me, 12 for trouble is near and there is no one to help. 13 Many bulls surround me; strong bulls of Bashan encircle me. 14 They open their jaws against me like lions that roar and maul. I am poured out like water, and all my bones are disjointed. 15 My heart is like wax; c it melts away within me. My strength is dried up like a potsherd, and my tongue sticks to the roof of my 16 mouth. You lay me in the dust of death. For dogs surround me; d 17 a band of evil men encircles me; they have pierced my hands and feet. 18 I can count all my bones; they stare and gloat over me. e They divide my garments among them 19 and cast lots for my clothing. 20 But You, O LORD, be not far off; O my Strength, come quickly to help me. Deliver my soul from the sword, 21 my precious life from the power of wild dogs. Save me from the mouth of the lion; 22 at the horns of the wild oxen You have answered me! I will proclaim Your name to my f 23 brothers; I will praise You in the assembly. You who fear the LORD, praise Him! 24 All descendants of Jacob, honor Him! All offspring of Israel, revere Him! For He has not despised or detested original Heb. text also" + }, + { + "verseNum": 38, + "text": "| 913 The Crucifixion" + }, + { + "verseNum": 39, + "text": "39 a 7 When the centurion standing there in front of he said, Jesus saw how He had breathed His last, 40 “Truly this man was the Son of God!” b 41 And there were also women watching from a distance. Among them were Mary Magdalene, Mary the mother of James the younger and of These women had fol- Joses, lowed Jesus and ministered to Him while He was in Galilee, and there were many other women The Burial of Jesus" + }, + { + "verseNum": 42, + "text": "–47 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–8 ;" + }, + { + "verseNum": 9, + "text": "–11) 9 10 11 Then the disciples returned to their homes. But Mary stood outside the tomb weeping. And 12 as she wept, she bent down to look into the tomb, and she saw two angels in white sitting where the body of Jesus had lain, one at the head and 13 the other at the feet. “Woman, why are you weeping?” they asked. “Because they have taken my Lord away,” she said, “and I do not know where they have put 14 Him.” When she had said this, she turned around and saw Jesus standing there. But she did not recog- 15 nize that it was Jesus. “Woman, why are you weeping?” Jesus asked. “Whom are you seeking?” Thinking He was the gardener, she said, “Sir, if you have carried Him off, tell me where you have 16 put Him, and I will get Him.” Jesus said to her, “Mary.” f 20 d She turned and said to Him in Hebrew, 17 boni!” (which means “Teacher”). “Rab- 2 while Early on the first day of the week, it was still dark, Mary Magdalene went to the tomb and saw that the stone had been re- So she came running moved from the entrance. to Simon Peter and the other disciple, the one whom Jesus loved. “They have taken the Lord out of the tomb,” she said, “and we do not know where they have put Him!” a 36 “Do not cling to Me,” Jesus said, “for I have not yet ascended to the Father. But go and tell My brothers, ‘I am ascending to My Father and your 18 Father, to My God and your God.’ ” Mary Magdalene went and announced to the disciples, “I have seen the Lord!” And she told them what He had said to her. b 37" + }, + { + "verseNum": 12, + "text": "–13) 51 13 Now there was a Council member named who had not Joseph, a good and righteous man, consented to their decision or action. He was 52 from the Judean town of Arimathea and was 53 He went to Pi- waiting for the kingdom of God. Then he took late to ask for the body of Jesus. it down, wrapped it in a linen cloth, and placed it a 36 in a tomb cut into the rock, where no one had yet c 42 said to Jesus, “Remember me, Lord, to offer Him wine vinegar d 44 b 38 Or was obscured BYZ and TR became dark But on the first of the Sabbaths, f 46 j 13 BYZ and TR include i 1 or Literally 11.1 kilometers ; BYZ and TR j 14 That same day two of them were going to a vil- from Je- lage called Emmaus, about seven miles 15 rusalem. They were talking with each other And as about everything that had happened. they talked and deliberated, Jesus Himself came But their eyes up and walked along with them. were kept from recognizing Him. written in Greek, Latin, and Hebrew 16 g 47 an innocent man h 54 That is, from noon until three in the afternoon being sixty stadia in distance Or Or ; that is, approximately 6.9 miles or e 45 was about to begin ; see" + }, + { + "verseNum": 14, + "text": "–18) culated among the Jews to this very day. 16 Meanwhile, the eleven disciples went to Gali- 17 lee, to the mountain Jesus had designated. When they saw Him, they worshiped Him, but 18 some doubted. d 19 Then Jesus came to them and said, “All author- ity in heaven and on earth has been given to Me. of all Therefore go and make disciples 20 nations, baptizing them in the name of the Father and of the Son and of the Holy Spirit, and teaching them to obey all that I have commanded you. And surely I am with you always, even to the end of the age.” b 6 where the Lord lay Having gone, therefore, make disciples the other Mary went to see the tomb. a 1 c 9 They were going to tell His disciples, and suddenly d 19 Now after the Sabbaths, it being dawn toward the first of the Sabbaths, Literally BYZ and TR Literally BYZ and TR Mark The Mission of John the Baptist (Isa. 40:1–5 ;" + }, + { + "verseNum": 19, + "text": "–20 ;" + } + ] + } + ] + }, + { + "name": "Luke", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) 1 2 3 In my first book, O Theophilus, I wrote about all that Jesus began to do and to teach, until the day He was taken up to heaven, after giving instructions through the Holy Spirit to the apos- After His suffering, He pre- tles He had chosen. sented Himself to them with many convincing proofs that He was alive. He appeared to them over a span of forty days and spoke about the 4 kingdom of God. a And while they were gathered together, He commanded them: “Do not leave Jerusalem, but 5 wait for the gift the Father promised, which you For John baptized with have heard Me discuss. water, but in a few days you will be baptized with The Ascension" + }, + { + "verseNum": 17, + "text": "Matthew The Genealogy of Jesus" + }, + { + "verseNum": 33, + "text": "33 53 David, 34 Jacob forever. His kingdom will never end!” and He will reign over the house of 54 He has filled the hungry with good things, but has sent the rich away empty. “How can this be,” Mary asked the angel, “since 35 I am a virgin?” 36 The angel replied, “The Holy Spirit will come a upon you, and the power of the Most High will overshadow you. So the Holy One to be born will be called the Son of God. Look, even Eliza- beth your relative has conceived a son in her old age, and she who was called barren is in her sixth 38 ” month. For no word from God will ever fail. 37 b “I am the Lord’s servant,” Mary answered. “May it happen to me according to your word.” Mary Visits Elizabeth Then the angel left her. 39 40 In those days Mary got ready and hurried to a town in the hill country of Judah, where she entered the home of Zechariah and greeted Eliz- 41 abeth. 44 43 42 When Elizabeth heard Mary’s greeting, the baby leaped in her womb, and Elizabeth was filled with the Holy Spirit. In a loud voice she exclaimed, “Blessed are you among women, and And why am blessed is the fruit of your womb! I so honored, that the mother of my Lord should For as soon as the sound of your come to me? 45 greeting reached my ears, the baby in my womb Blessed is she who has believed leaped for joy. Mary’s Song (1 Samuel 2:1–11) that the Lord’s word to her will be fulfilled.” 46 Then Mary said: 47 48 “My soul magnifies the Lord, and my spirit rejoices in God my Savior! For He has looked with fav" + }, + { + "verseNum": 46, + "text": "–56) c 2 At that time Hannah prayed: d “My heart rejoices in the LORD; my horn is exalted in the LORD. My mouth speaks boldly against my enemies, 2 for I rejoice in Your salvation. There is no one holy like the LORD. 3 Indeed, there is no one besides You! And there is no Rock like our God. Do not boast so proudly, or let arrogance come from your mouth, for the LORD is a God who knows, 4 and by Him actions are weighed. The bows of the mighty are broken, 5 but the feeble are equipped with strength. The well-fed hire themselves out for food, but the starving hunger no more. The barren woman gives birth to seven, 6 but she who has many sons pines away. The LORD brings death and gives life; 7 He brings down to Sheol and raises up. The LORD sends poverty and wealth; 8 He humbles and He exalts. He raises the poor from the dust and lifts the needy from the ash heap. He seats them among princes and bestows on them a throne of honor. For the foundations of the earth are the LORD’s, a 24 and upon them He has set the world. three bulls b 24 An ephah c 28 He guards the steps of His faithful ones, but the wicked perish in darkness; for by his own strength shall no man 10 prevail. Those who oppose the LORD will be shattered. He will thunder from heaven against them. The LORD will judge the ends of the earth 11 and will give power to His king. He will exalt the horn of His anointed.” Then Elkanah went home to Ramah, but the boy began ministering to the LORD before Eli the Eli’s Wicked Sons p" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–7) to the Christ. 18 This is how the birth of Jesus Christ came about: His mother Mary was pledged in marriage to Joseph, but before they came together, she was 19 found to be with child through the Holy Spirit. Because Joseph her husband was a righteous man and was unwilling to disgrace her publicly, 20 he resolved to divorce her quietly. But after he had pondered these things, an an- gel of the Lord appeared to him in a dream and said, “Joseph, son of David, do not be afraid to embrace Mary as your wife, for the One con- ceived in her is from the Holy Spirit. She will give birth to a Son, and you are to give Him the name Jesus, because He will save His people 22 from their sins.” 21 d All this took place to fulfill what the Lord had 23 said through the prophet: “Behold, the virgin will be with child e and will give birth to a son, f and they will call Him Immanuel” (which means, “God with us” ). 24 a 3 Aram Jeconiah was the father of Shealtiel, Shealtiel the father of Zerubbabel, Greek they will call His name Immanuel Amōs , a variant of Ram c 10 e 23 3:10. ; also in verse 4; see 1 Chr. 2:9–10. b 7 When Joseph woke up, he did as the angel of the Lord had commanded him and embraced d 21 Jesus ; also in v. 8; see 1 Chr. The LORD saves , a variant of Greek Asaph Asa f 23 Greek , a variant spelling of Amon ; twice in this verse; see 1 Chr. 3:14. means . Literally ;" + }, + { + "verseNum": 23, + "text": "was the first month of the ancient Hebrew lunar calendar, usually occurring within the months of March and April. 8 9 And on that day you are to explain to your son, ‘This is because of what the LORD did for me It shall be a sign for when I came out of Egypt.’ you on your hand and a reminder on your fore- head that the Law of the LORD is to be on your lips. For with a mighty hand the LORD brought Therefore you shall keep this you out of Egypt. 11 statute at the appointed time year after year. 10 12 13 And after the LORD brings you into the land of the Canaanites and gives it to you, as He swore to you are to present to the you and your fathers, LORD the firstborn male of every womb. All the firstborn males of your livestock belong to You must redeem every firstborn the LORD. donkey with a lamb, and if you do not redeem it, you are to break its neck. And every firstborn of 14 your sons you must redeem. 15 In the future, when your son asks you, ‘What does this mean?’ you are to tell him, ‘With a mighty hand the LORD brought us out of Egypt, And when Pharaoh out of the house of slavery. stubbornly refused to let us go, the LORD killed every firstborn in the land of Egypt, both of man and beast. This is why I sacrifice to the LORD the firstborn male of every womb, but I redeem all So it shall serve as a the firstborn of my sons.’ sign on your hand and a symbol on your fore- head, for with a mighty hand the LORD brought The Pillars of Cloud and Fire us out of Egypt.” 17 16 When Ph" + }, + { + "verseNum": 24, + "text": "106 |" + }, + { + "verseNum": 27, + "text": "| 917 11 bring you good news of great joy that will be for Today in the city of David a Sav- all the people: 12 ior has been born to you. He is Christ the Lord! And this will be a sign to you: You will find a baby wrapped in swaddling cloths and lying in a 13 manger.” And suddenly there appeared with the angel a great multitude of the heavenly host, praising 14 God and saying: “Glory to God in the highest, 15 and on earth peace to men on whom His favor rests!” When the angels had left them and gone into heaven, the shepherds said to one another, “Let us go to Bethlehem and see this thing that has happened, which the Lord has made known to 16 us.” 17 So they hurried off and found Mary and Joseph and the Baby, who was lying in the manger. Af- ter they had seen the Child, they spread the mes- And all who sage they had received about Him. heard it were amazed at what the shepherds said to them. But Mary treasured up all these things 20 and pondered them in her heart. 19 18 The shepherds returned, glorifying and prais- ing God for all they had heard and seen, which Jesus Presented at the Temple was just as the angel had told them. 21 When the eight days before His circumcision had passed, He was named Jesus, the name the 22 angel had given Him before He was conceived. e 23 And when the time of purification according to the Law of Moses was complete, His parents brought Him to Jerusalem to present Him to the (as it is written in the Law of the Lord: Lord 24 “Every firstborn male sh" + }, + { + "verseNum": 28, + "text": "28 44 parents brought in the child Jesus to do for Him Simeon what was customary under the Law, 29 took Him in his arms and blessed God, saying: “Sovereign Lord, as You have promised, You now dismiss Your servant in peace. 30 31 For my eyes have seen Your salvation, 32 which You have prepared in the sight of all people, 33 a light for revelation to the Gentiles, and for glory to Your people Israel.” 34 The Child’s father and mother were amazed at Then Simeon what was spoken about Him. blessed them and said to His mother Mary: “Behold, this Child is appointed to cause the rise and fall of many in Israel, and to be a sign that will be spoken 35 against, so that the thoughts of many hearts will be revealed— and a sword will pierce your soul The Prophecy of Anna as well.” 36 There was also a prophetess named Anna, the daughter of Phanuel, of the tribe of Asher, who 37 was well along in years. She had been married for a and then was a widow to the age seven years, of eighty-four. She never left the temple, but 38 worshiped night and day, fasting and praying. Coming forward at that moment, she gave thanks to God and spoke about the Child to all who The Return to Nazareth" + }, + { + "verseNum": 39, + "text": "–40) because they are no more.” e 19 20 After Herod died, an angel of the Lord ap- “Get up!” peared in a dream to Joseph in Egypt. he said. “Take the Child and His mother and go to the land of Israel, for those seeking the Child’s life 21 are now dead.” 22 So Joseph got up, took the Child and His mother, and went to the land of Israel. But when he learned that Archelaus was reigning in Judea in place of his father Herod, he was afraid to go there. And having been warned in a dream, and he he withdrew to the district of Galilee, went and lived in a town called Nazareth. So was fulfilled what was spoken through the prophets: The Mission of John the Baptist “He will be called a Nazarene.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–20 ;" + }, + { + "verseNum": 4, + "text": ", and" + }, + { + "verseNum": 5, + "text": "Cited in" + }, + { + "verseNum": 6, + "text": "Cited in" + }, + { + "verseNum": 16, + "text": "; see also" + }, + { + "verseNum": 21, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–38) Jesse, the father of David. 18 Now these are the generations of Perez: 19 Perez was the father of Hezron, Hezron was the father of Ram, 20 Ram was the father of Amminadab, a Amminadab was the father of Nahshon, 21 Nahshon was the father of Salmon, Salmon was the father of Boaz, 22 Boaz was the father of Obed, Obed was the father of Jesse, and Jesse was the father of David. a 20 Salma A few Hebrew manuscripts, some LXX manuscripts, and Vulgate (see also verse 21 and LXX of 1 Chronicles 2:11); most Hebrew manuscripts 1 Samuel Elkanah and His Wives" + }, + { + "verseNum": 35, + "text": "–36) confused h 24 i 25 Peleg division Hebrew; LXX (see . means sounds like the He- Or brew for or . That is, Babylonia Or ; the Hebrew word for 14 |" + }, + { + "verseNum": 37, + "text": "| 919 The Genealogy of Jesus" + }, + { + "verseNum": 38, + "text": "38 a the son of Enosh, the son of Seth, the son of Adam, The Temptation of Jesus the son of God." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–13)" + }, + { + "verseNum": 4, + "text": "into your house, or you, like it, will be set apart for destruction. You are to utterly detest and ab- Remember the LORD Your God hor it, because it is set apart for destruction. 8 2 You must carefully follow every command- ment I am giving you today, so that you may live and multiply, and enter and possess the land Re- that the LORD swore to give your fathers. member that these forty years the LORD your God led you all the way in the wilderness, so that He might humble you and test you in order to know what was in your heart, whether or not you 3 would keep His commandments. He humbled you, and in your hunger He gave you manna to eat, which neither you nor your fa- thers had known, so that you might understand that man does not live on bread alone, but on every word that comes from the mouth of the LORD. Your clothing did not wear out and your 5 feet did not swell during these forty years. 4 a 6 So know in your heart that just as a man disciplines his son, so the LORD your God disci- plines you. Therefore you shall keep the com- mandments of the LORD your God, walking in His 7 ways and fearing Him. 9 8 For the LORD your God is bringing you into a good land, a land of brooks and fountains and springs that flow through the valleys and hills; a land of wheat, barley, vines, fig trees, and pome- granates; a land of olive oil and honey; a land where you will eat food without scarcity, where you will lack nothing; a land whose rocks are iron 10 and whose hills are ready to be mine" + }, + { + "verseNum": 8, + "text": "berit see" + }, + { + "verseNum": 10, + "text": "–11 14 “Because he loves Me, I will deliver him; 15 because he knows My name, I will protect him. When he calls out to Me, I will answer him; 16 I will be with him in trouble. I will deliver him and honor him. With long life I will satisfy him and show him My salvation.” Psalm 92 How Great Are Your Works! A Psalm. A song for the Sabbath day. 1 It is good to praise the LORD, 2 and to sing praises to Your name, O Most High, to proclaim Your loving devotion in the 3 morning and Your faithfulness at night 4 with the ten-stringed harp and the melody of the lyre. For You, O LORD, have made me glad by 5 Your deeds; I sing for joy at the works of Your hands. How great are Your works, O LORD, how deep are Your thoughts! A senseless man does not know, 6 7 and a fool does not understand, that though the wicked sprout like grass, 8 and all evildoers flourish, they will be forever destroyed. 9 But You, O LORD, are exalted forever! For surely Your enemies, O LORD, 10 surely Your enemies will perish; all evildoers will be scattered. But You have exalted my horn like that of a 11 wild ox; with fine oil I have been anointed. My eyes see the downfall of my enemies; my ears hear the wailing of my wicked a 12 foes. 13 The righteous will flourish like a palm tree, and grow like a cedar in Lebanon. 14 Planted in the house of the LORD, they will flourish in the courts of our God. 15 In old age they will still bear fruit; healthy and green they will remain, to proclaim, “The LORD is upright; He is m" + }, + { + "verseNum": 12, + "text": ". or persons to the LORD, either by destroying them or by giving them as an offering; also twice in verse 26. the Hebrew are translated in most passages as Forms of the Hebrew covenant . ; refer to the giving over of things Forms of means d 2 172 |" + }, + { + "verseNum": 14, + "text": "–15) 9 Nevertheless, there will be no more gloom for those in distress. In the past He humbled the land of Zebulun and the land of Naphtali, but in the future He will honor the Way of the Sea, 2 beyond the Jordan, Galilee of the nations: The people walking in darkness have seen a great light; on those living in the land of the shadow 3 h of death, a light has dawned. You have enlarged the nation and increased its joy. The people rejoice before You 4 as they rejoice at harvest time, as men rejoice in dividing the plunder. For as in the day of Midian You have shattered the yoke of their burden, the bar across their shoulders, 5 and the rod of their oppressor. For every trampling boot of battle 6 and every garment rolled in blood will be burned as fuel for the fire. For unto us a child is born, unto us a son is given, and the government will be upon His shoulders. And He will be called 7 Wonderful Counselor, Mighty God, Everlasting Father, Prince of Peace. Of the increase of His government and peace there will be no end. He will reign on the throne of David and over his kingdom, to establish and sustain it with justice and righteousness from that time and forevermore. The zeal of the LORD of Hosts will accomplish Immanuel this. c 12 Do not fear their f 17 I will ; see" + }, + { + "verseNum": 16, + "text": "–30)" + }, + { + "verseNum": 18, + "text": "Or ; cited in" + }, + { + "verseNum": 19, + "text": "672 |" + }, + { + "verseNum": 31, + "text": "–37) the boat with the hired men and followed Him. 21 Then Jesus and His companions went to Capernaum, and right away Jesus entered the 22 synagogue on the Sabbath and began to teach. The people were astonished at His teaching, because He taught as one who had authority, and 23 not as the scribes. 24 Suddenly a man with an unclean spirit cried “What do You want with out in the synagogue: us, Jesus of Nazareth? Have You come to destroy 25 us? I know who You are—the Holy One of God!” 26 But Jesus rebuked the spirit. “Be silent!” He At this, the unclean said. “Come out of him!” spirit threw the man into convulsions and came 27 out with a loud shriek. All the people were amazed and began to ask one another, “What is this? A new teaching with 28 authority! He commands even the unclean spir- And the news about its, and they obey Him!” Jesus spread quickly through the whole region of Jesus Heals at Peter’s House Galilee." + }, + { + "verseNum": 38, + "text": "–41) 14 When Jesus arrived at Peter’s house, He saw 15 Peter’s mother-in-law sick in bed with a fever. So He touched her hand, and the fever left her, 16 and she got up and began to serve Him. When evening came, many who were demon- possessed were brought to Jesus, and He drove 17 out the spirits with a word and healed all the sick. This was to fulfill what was spoken through the prophet Isaiah: a “He took up our infirmities The Cost of Discipleship" + }, + { + "verseNum": 42, + "text": "–44) who He was. 35 36 Early in the morning, while it was still dark, Jesus got up and went out to a solitary place to 37 pray. Simon and his companions went to look for Him, and when they found Him, they said, 38 “Everyone is looking for You!” 39 But Jesus answered, “Let us go on to the neigh- boring towns so I can preach there as well, for that is why I have come.” So He went through- out Galilee, preaching in their synagogues and The Leper’s Prayer driving out demons. (Lev. 14:1–32 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 12, + "text": "–16) 2 3 Then the LORD said to Moses, “This is c the law for the one afflicted with a skin on the day of his cleansing, when he is disease The priest is to go outside brought to the priest. the camp to examine him, and if the skin disease of the afflicted person has healed, the priest shall order that two live clean birds, cedar wood, scarlet yarn, and hyssop be brought for the one leprosy to be cleansed. 4 14 Or c 2 eases, are translated as der of this chapter. diseases; also in verses 3, 7, 32, 54, and 57. Forms of the Hebrew , traditionally translated as Forms of the Hebrew leprosy regarding blemishes on garments, utensils, or buildings; here and throughout the remain- regarding skin dis- tzaraath , traditionally translated as , were used for various skin 108 |" + }, + { + "verseNum": 15, + "text": "| 921 31 32 Then He went down to Capernaum, a town in Galilee, and on the Sabbath He began to teach the They were astonished at His teaching, people. 33 because His message had authority. 34 In the synagogue there was a man possessed by the spirit of an unclean demon. He cried out in “Ha! What do You want with us, a loud voice, Jesus of Nazareth? Have You come to destroy us? 35 I know who You are—the Holy One of God!” But Jesus rebuked the demon. “Be silent!” He said. “Come out of him!” At this, the demon threw the man down before them all and came out 36 without harming him. All the people were overcome with amaze- ment and asked one another, “What is this mes- sage? With authority and power He commands And the unclean spirits, and they come out!” the news about Jesus spread throughout the sur- Jesus Heals at Peter’s House rounding region." + }, + { + "verseNum": 16, + "text": "16 31 healed of their sicknesses. Jesus Heals a Paralytic withdrew to the wilderness to pray." + }, + { + "verseNum": 17, + "text": "–26) 9 d 2 Jesus got into a boat, crossed over, and came Just then some men to His own town. brought to Him a paralytic lying on a mat. When Jesus saw their faith, He said to the paralytic, 3 “Take courage, son; your sins are forgiven.” Another of His disciples requested, “Lord, first 22 let me go and bury my father.” On seeing this, some of the scribes said to them- e 4 selves, “This man is blaspheming!” But Jesus told him, “Follow Me, and let the Jesus Calms the Storm dead bury their own dead.”" + }, + { + "verseNum": 27, + "text": "–32) 9 As Jesus went on from there, He saw a man named Matthew sitting at the tax booth. “Follow Me,” He told him, and Matthew got up and fol- 10 lowed Him. 11 Later, as Jesus was dining at Matthew’s house, many tax collectors and sinners came and ate with Him and His disciples. When the Phari- sees saw this, they asked His disciples, “Why does your Teacher eat with tax collectors and sinners?” e 4 Gergesenes c 28 saw BYZ, TR, and GOC ; other When Jesus arrived on the other side in the region of the Gadarenes, He was met by two demon-possessed men coming from the tombs. They were so violent that no one could pass that a 17 way. b 18 Gerasenes And behold, they brought d 2" + }, + { + "verseNum": 30, + "text": ". Then a paralytic was brought to Him, carried by Since they were unable to get to Jesus four men. through the crowd, they uncovered the roof above Him, made an opening, and lowered the 5 paralytic on his mat. When Jesus saw their faith, He said to the para- 6 lytic, “Son, your sins are forgiven.” 7 But some of the scribes were sitting there and “Why does this man thinking in their hearts, speak like this? He is blaspheming! Who can for- 8 give sins but God alone?” 9 At once Jesus knew in His spirit that they were thinking this way within themselves. “Why are you thinking these things in your hearts?” He “Which is easier: to say to a paralytic, asked. ‘Your sins are forgiven,’ or to say, ‘Get up, pick up But so that you may know your mat, and walk’? that the Son of Man has authority on earth to for- give sins “I tell you, ” He said to the paralytic, 12 get up, pick up your mat, and go home.” . . . 10 11 And immediately the man got up, picked up his mat, and walked out in front of them all. As a re- sult, they were all astounded and glorified God, Jesus Calls Levi (Matt. 9:9–13 ;" + }, + { + "verseNum": 32, + "text": ". NE and WH do not include . Greek Literally the one also having betrayed Him 870 |" + }, + { + "verseNum": 33, + "text": "–35) b 14 c Then John’s disciples came to Jesus and asked, “Why is it that we and the Pharisees fast so of- 15 ten, but Your disciples do not fast?” Jesus replied, “How can the guests of the bride- groom mourn while He is with them? But the time will come when the bridegroom will be The Patches and the Wineskins taken from them; then they will fast." + }, + { + "verseNum": 36, + "text": "–39) 16 No one sews a patch of unshrunk cloth on an old garment. For the patch will pull away from 17 the garment, and a worse tear will result. Neither do men pour new wine into old wine- skins. If they do, the skins will burst, the wine will spill, and the wineskins will be ruined. Instead, they pour new wine into new wineskins, and The Healing Touch of Jesus both are preserved.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–5) 21 Then David came to Nob, to Ahimelech the priest. And when Ahimelech met Da- vid, he trembled and asked him, “Why are you 2 alone? Why is no one with you?” 3 “The king has given me a mission,” David replied. “He told me no one is to know about the mission on which I am sending you. And I have directed my young men to meet me at a certain Now then, what do you have on hand? place. Give me five loaves of bread, or whatever can be 4 found.” “There is no common bread on hand,” the priest replied, “but there is some consecrated bread— provided that the young men have kept them- 5 selves from women.” David answered, “Women have indeed been kept from us, as is usual when I set out. And the bodies of the young men are holy even on com- 6 mon missions. How much more so today!” So the priest gave him the consecrated bread, since there was no bread there but the Bread of the Presence, which had been removed from be- fore the LORD and replaced with hot bread on 7 the day it was taken away. Now one of Saul’s servants was there that day, detained before the LORD. And his name was David Flees to Gath Doeg the Edomite, the chief shepherd for Saul." + }, + { + "verseNum": 6, + "text": "–11) 9 10 Moving on from there, Jesus entered their syn- and a man with a withered hand was agogue, there. In order to accuse Jesus, they asked Him, 11 “Is it lawful to heal on the Sabbath?” He replied, “If one of you has a sheep and it 12 falls into a pit on the Sabbath, will he not take How much more valu- hold of it and lift it out? able is a man than a sheep! Therefore it is lawful 13 to do good on the Sabbath.” 14 Then Jesus said to the man, “Stretch out your hand.” So he stretched it out, and it was restored But the Pharisees to full use, just like the other. God’s Chosen Servant" + }, + { + "verseNum": 12, + "text": "–16) 10 And calling His twelve disciples to Him, Jesus gave them authority over unclean spirits, so that they could drive them out and heal 2 every disease and sickness. These are the names of the twelve apostles: first Simon, called Peter, and his brother Andrew; 3 James son of Zebedee, and his brother John; Philip and Bartholomew; Thomas and Matthew the tax collector; James son of Alphaeus, and e and Judas Iscar- Thaddaeus; iot, who betrayed Jesus. Simon the Zealot, c 14 so often 4 d" + }, + { + "verseNum": 17, + "text": "–19) 22 23 24 Jesus went throughout Galilee, teaching in their synagogues, preaching the gospel of the kingdom, and healing every disease and sickness among the people. News about Him spread all over Syria, and people brought to Him all who were ill with various diseases, those suffering acute pain, the demon-possessed, those having 25 seizures, and the paralyzed, and He healed them. a Large crowds followed Him, having come from Jerusalem, Judea, and be- Galilee, the Decapolis, The Sermon on the Mount yond the Jordan. 5 2 When Jesus saw the crowds, He went up on the mountain and sat down. His disciples and He began to teach them, came to Him, The Beatitudes" + }, + { + "verseNum": 20, + "text": "–23) 1 Blessed is the man who does not walk in the counsel of 7 BOOK I Psalms 1–41 4 The One enthroned in heaven laughs; 5 the Lord taunts them. 6 Then He rebukes them in His anger, and terrifies them in His fury: “I have installed My King on Zion, upon My holy mountain.” the wicked, or set foot on the path of sinners, 2 or sit in the seat of mockers. But his delight is in the Law of the LORD, and on His law he meditates day and 3 night. He is like a tree planted by streams of water, yielding its fruit in season, whose leaf does not wither, 4 and who prospers in all he does. Not so the wicked! 5 For they are like chaff driven off by the wind. Therefore the wicked will not stand in the judgment, nor sinners in the assembly of the righteous. 6 For the LORD guards the path of the righteous, Psalm 2 but the way of the wicked will perish. The Triumphant Messiah" + }, + { + "verseNum": 24, + "text": "–26) Hosts. 6 Woe to those at ease in Zion and those secure on Mount Samaria, the distinguished ones of the foremost nation, 2 to whom the house of Israel comes. Cross over to Calneh and see; go from there to the great Hamath; then go down to Gath of the Philistines." + }, + { + "verseNum": 27, + "text": "–36) 37 36 g 38 h 39 You have heard that it was said, ‘Eye for eye and tooth for tooth.’ But I tell you not to resist an evil person. If someone slaps you on your right cheek, turn to him the other also; if some- 41 one wants to sue you and take your tunic, let him j and if someone forces have your cloak as well; kodrantēn a 26 you to go one mile, go with him two miles. 40 i Give to the one who asks you, and do not turn away from the one who wants to borrow from 43 you. k 44 l 45 You have heard that it was said, ‘Love your neighbor’ But I tell and ‘Hate your enemy.’ you, love your enemies and pray for those who that you may be sons of your persecute you, Father in heaven. He causes His sun to rise on the evil and the good, and sends rain on the right- If you love those eous and the unrighteous. who love you, what reward will you get? Do not And if you even tax collectors do the same? greet only your brothers, what are you doing more than others? Do not even Gentiles do the 48 same? 46 47 Be perfect, therefore, as your heavenly Father Giving to the Needy is perfect." + }, + { + "verseNum": 37, + "text": "–42 ; Rom. 14:1–12) enough trouble of its own. 2 “Do not judge, or you will be judged. For with the same judgment you pronounce, you will be judged, and with the measure you use, it 3 will be measured to you. Why do you look at the speck in your brother’s 4 eye but fail to notice the beam in your own eye? How can you say to your brother, ‘Let me take the speck out of your eye,’ while there is still a beam in your own eye? You hypocrite! First take the beam out of your own eye, and then you will see clearly to remove the speck from your 6 brother’s eye. 5 Do not give dogs what is holy; do not throw your pearls before swine. If you do, they may trample them under their feet, and then turn and Ask, Seek, Knock" + }, + { + "verseNum": 40, + "text": "| 923 But Jesus knew their thoughts and said to the man with the withered hand, “Get up and stand 9 among us.” So he got up and stood there. 10 Then Jesus said to them, “I ask you, which is lawful on the Sabbath: to do good or to do evil, to And after looking save life or to destroy it?” around at all of them, He said to the man, “Stretch 11 out your hand.” He did so, and it was restored. But the scribes and Pharisees were filled with rage and began to discuss with one another what The Twelve Apostles they might do to Jesus." + }, + { + "verseNum": 41, + "text": "41 7 a How can you say, ‘Brother, Why do you look at the speck in your brother’s 42 eye but fail to notice the beam in your own eye? let me take the speck out of your eye,’ while you yourself fail to see the beam in your own eye? You hypocrite! First take the beam out of your own eye, and then you will see clearly to remove the speck from A Tree and Its Fruit your brother’s eye." + }, + { + "verseNum": 43, + "text": "–45) and only a few find it. 15 17 16 Beware of false prophets. They come to you in sheep’s clothing, but inwardly they are ravenous wolves. By their fruit you will recognize them. Are grapes gathered from thornbushes, or figs Likewise, every good tree bears from thistles? A good fruit, but a bad tree bears bad fruit. good tree cannot bear bad fruit, and a bad tree Every tree that does cannot bear good fruit. not bear good fruit is cut down and thrown into the fire. So then, by their fruit you will recog- 21 nize them. 20 18 19" + }, + { + "verseNum": 46, + "text": "–49) depart from Me, you workers of lawlessness!’ 24 25 Therefore everyone who hears these words of Mine and acts on them is like a wise man who The rain fell, the built his house on the rock. torrents raged, and the winds blew and beat against that house; yet it did not fall, because its 26 foundation was on the rock. 9 The centurion answered, “Lord, I am not wor- thy to have You come under my roof. But just say the word, and my servant will be healed. For I myself am a man under authority, with soldiers under me. I tell one to go, and he goes, and an- other to come, and he comes. I tell my servant to 10 do something, and he does it.” When Jesus heard this, He marveled and said to those following Him, “Truly I tell you, I have 11 not found anyone in Israel with such great faith. I say to you that many will come from the east and the west to share the banquet with Abraham, Isaac, and Jacob in the kingdom of heaven. But the sons of the kingdom will be thrown into the outer darkness, where there will be weeping and 13 gnashing of teeth.” 12 But everyone who hears these words of Mine and does not act on them is like a foolish man a 2 who built his house on sand. The rain fell, the leper 27 Then Jesus said to the centurion, “Go! As you will it be done for you.” And his child have believed, so servant was healed at that very hour. b 4 c 6 A was one afflicted with a skin disease. See Leviticus 13. See" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 18, + "text": "–23) reward.” 42 11 After Jesus had finished instructing His twelve disciples, He went on from there a 2 to teach and preach in their cities. b 3 Meanwhile John heard in prison about the works of Christ, and he sent his disciples to ask Him, “Are You the One who was to come, or 4 should we look for someone else?” 5 c Jesus replied, “Go back and report to John what The blind receive sight, the you hear and see: lame walk, the lepers are cleansed, the deaf 6 hear, the dead are raised, and the good news is d Blessed is the one who preached to the poor. Jesus Testifies about John does not fall away on account of Me." + }, + { + "verseNum": 24, + "text": "–35) 3 b “Behold, I will send My messenger, who will Then the Lord prepare the way before Me. whom you seek will suddenly come to His tem- ple—the Messenger of the covenant, in whom you delight—see, He is coming,” says the LORD 2 of Hosts. But who can endure the day of His coming? And who can stand when He appears? For He will be 3 like a refiner’s fire, like a launderer’s soap. And He will sit as a refiner and purifier of silver; He will purify the sons of Levi and refine them like gold and silver. Then they will present offer- 4 ings to the LORD in righteousness. Then the offerings of Judah and Jerusalem will please the LORD, as in days of old and years gone 5 by. “Then I will draw near to you for judgment. And I will be a swift witness against sorcerers and adulterers and perjurers, against oppressors of the widowed and fatherless, and against those who defraud laborers of their wages and deny justice to the foreigner but do not fear Me,” says Robbing God the LORD of Hosts. 6 7 “Because I, the LORD, do not change, you de- Yet scendants of Jacob have not been destroyed. from the days of your fathers, you have turned away from My statutes and have not kept them. Return to Me, and I will return to you,” says the LORD of Hosts. 8 “But you ask, ‘How can we return?’ Will a man rob God? Yet you are robbing Me! 9 But you ask, ‘How do we rob You?’ a In tithes and offerings. You are cursed with a 10 curse, yet you—the whole nation—are still rob- bing Me. Bring the full tithe into th" + }, + { + "verseNum": 27, + "text": "860 |" + }, + { + "verseNum": 36, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 3, + "text": "| 925 to the poor. Jesus Testifies about John fall away on account of Me." + }, + { + "verseNum": 4, + "text": "–8) 13 2 That same day Jesus went out of the house and sat by the sea. Such large crowds gathered around Him that He got into a boat and sat down, while all the people stood on 3 the shore. 4 And He told them many things in parables, say- ing, “A farmer went out to sow his seed. And as he was sowing, some seed fell along the path, and 5 the birds came and devoured it. 6 Some fell on rocky ground, where it did not have much soil. It sprang up quickly because the But when the sun rose, the soil was shallow. seedlings were scorched, and they withered be- 7 cause they had no root. Other seed fell among thorns, which grew up 8 and choked the seedlings. Still other seed fell on good soil and produced a b 9 crop—a hundredfold, sixtyfold, or thirtyfold. The Purpose of Jesus’ Parables let him hear.”" + }, + { + "verseNum": 9, + "text": "–10) He who has ears, 10 Then the disciples came to Jesus and asked, 11 “Why do You speak to the people in parables?” 12 He replied, “The knowledge of the mysteries of the kingdom of heaven has been given to you, Whoever has will be given but not to them. more, and he will have an abundance. Whoever does not have, even what he has will be taken This is why I speak to them in away from him. parables: 13 ‘Though seeing, they do not see; c 14 though hearing, they do not hear or understand.’ In them the prophecy of Isaiah is fulfilled: 47 While Jesus was still speaking to the crowds, His mother and brothers stood outside, wanting to speak to Him. Someone told Him, “Look, Your mother and brothers are standing outside, wanting to speak to You.” a 47 b 9 a ears to hear ‘You will be ever hearing but never understanding; you will be ever seeing but never perceiving. c 13 WH does not include verse 47. 42:20," + }, + { + "verseNum": 10, + "text": ", and" + }, + { + "verseNum": 11, + "text": "–15) 18 19 Consider, then, the parable of the sower: When anyone hears the message of the king- dom but does not understand it, the evil one comes and snatches away what was sown in his 20 heart. This is the seed sown along the path. b The seed sown on rocky ground is the one who 21 hears the word and at once receives it with joy. But since he has no root, he remains for only a season. When trouble or persecution comes be- 22 cause of the word, he quickly falls away. The seed sown among the thorns is the one who hears the word, but the worries of this life and the deceitfulness of wealth choke the word, 23 and it becomes unfruitful. But the seed sown on good soil is the one who hears the word and understands it. He indeed bears fruit and produces a crop—a hundredfold, The Parable of the Weeds sixtyfold, or thirtyfold.”" + }, + { + "verseNum": 16, + "text": "–18) a crop—thirtyfold, sixtyfold, or a hundredfold.” 21 Other seed fell among thorns, which grew up and choked the seedlings, and they yielded no a 32 crop. and Your sisters Now these are the ones Jesus also said to them, “Does anyone bring in b 12 a lamp to put it under a basket or under a bed? the word c 15 ECM, SBL, WH, and TR; NE and BYZ include ." + }, + { + "verseNum": 19, + "text": "–21) 45 46 49 But Jesus replied, “Who is My mother, and who Pointing to His disciples, He are My brothers?” 50 said, “Here are My mother and My brothers. For whoever does the will of My Father in The Parable of the Sower heaven is My brother and sister and mother.”" + }, + { + "verseNum": 22, + "text": "–25) 1 2 Give thanks to the LORD, for He is good; His loving devotion endures forever. Let the redeemed of the LORD say so, 3 whom He has redeemed from the hand of 20 the enemy and gathered from the lands, a from east and west, from north and south. 4 Some wandered in desert wastelands, 5 finding no path to a city in which to dwell. They were hungry and thirsty; 6 their soul fainted within them. 17 Fools, in their rebellious ways, 18 and through their iniquities, suffered affliction. They loathed all food 19 and drew near to the gates of death. Then they cried out to the LORD in their trouble, and He saved them from their distress. 21 He sent forth His word and healed them; He rescued them from the Pit. Let them give thanks to the LORD for His 22 loving devotion and His wonders to the sons of men. Let them offer sacrifices of thanksgiving and declare His works with rejoicing. 23 Then they cried out to the LORD in their 24 Others went out to sea in ships, 7 trouble, and He delivered them from their distress. He led them on a straight path 8 to reach a city where they could live. Let them give thanks to the LORD for His 9 loving devotion conducting trade on the mighty waters. 25 26 They saw the works of the LORD, and His wonders in the deep. For He spoke and raised a tempest that lifted the waves of the sea. They mounted up to the heavens, then sunk and His wonders to the sons of men. 27 to the depths; For He satisfies the thirsty 10 and fills the hungry with good things. Some" + }, + { + "verseNum": 26, + "text": "–39) 28 c 6 But Jesus knew what they were thinking and 5 said, “Why do you harbor evil in your hearts? Which is easier: to say, ‘Your sins are forgiven,’ But so that you may or to say, ‘Get up and walk’? know that the Son of Man has authority on earth to forgive sins ” Then He said to the paralytic, And “Get up, pick up your mat, and go home.” 8 the man got up and went home. 7 . . . When the crowds saw this, they were filled with awe and glorified God, who had given such au- Jesus Calls Matthew thority to men." + }, + { + "verseNum": 40, + "text": "–56) 18 While Jesus was saying these things, a syna- gogue leader came and knelt before Him. “My daughter has just died,” he said. “But come and 19 place Your hand on her, and she will live.” 20 So Jesus got up and went with him, along with Suddenly a woman who had suf- His disciples. fered from bleeding for twelve years came up be- 21 hind Him and touched the fringe of His cloak. She said to herself, “If only I touch His cloak, I 22 will be healed.” Jesus turned and saw her. “Take courage, daughter,” He said, “your faith has healed you.” 23 And the woman was healed from that very hour. 24 When Jesus entered the house of the syna- gogue leader, He saw the flute players and the noisy crowd. “Go away,” He told them. “The girl 25 is not dead, but asleep.” And they laughed at Him. 26 After the crowd had been put outside, Jesus went in and took the girl by the hand, and she got up. And the news about this spread through- but sinners, to repentance a 13 out that region. d 4 b 13 Simon the Cananean e 4" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–6) 5 6 7 These twelve Jesus sent out with the following instructions: “Do not go onto the road of the Gen- Go ra- tiles or enter any town of the Samaritans. ther to the lost sheep of Israel. As you go, preach a 8 this message: ‘The kingdom of heaven is near.’ Heal the sick, raise the dead, cleanse the lepers, drive out demons. Freely you have received; 9 freely give. 10 Do not take along any gold or silver or copper Take no bag for the road, or sec- in your belts. ond tunic, or sandals, or staff; for the worker is 11 worthy of his provisions. b c 12 14 Whatever town or village you enter, find out until who is worthy there and stay at his house 13 you move on. As you enter the home, greet its occupants. If the home is worthy, let your peace rest on it, but if it is not, let your peace re- And if anyone will not welcome turn to you. you or heed your words, shake the dust off your Truly I feet when you leave that home or town. tell you, it will be more bearable for Sodom and Gomorrah on the day of judgment than for that Sheep among Wolves (2 Timothy 1:3–12) town. 16 15 17 Behold, I am sending you out like sheep among wolves; therefore be as shrewd as snakes and as But beware of men, for they innocent as doves. 18 will hand you over to their councils and flog you On My account you will be in their synagogues. brought before governors and kings as witnesses But when they to them and to the Gentiles. hand you over, do not worry about how to respond or what to say. In that hour you" + }, + { + "verseNum": 6, + "text": "| 927 b “the But they all denied it. “Master,” said Peter, 46 people are crowding and pressing against You.” But Jesus declared, “Someone touched Me, for 47 I know that power has gone out from Me.” Then the woman, seeing that she could not es- cape notice, came trembling and fell down before Him. In the presence of all the people, she ex- plained why she had touched Him and how she 48 had immediately been healed. “Daughter,” said Jesus, “your faith has healed 49 you. Go in peace.” While He was still speaking, someone arrived from the house of the synagogue leader. “Your daughter is dead,” he told Jairus. “Do not bother 50 the Teacher anymore.” But Jesus overheard them and said to Jairus, “Do not be afraid; just believe, and she will be 51 healed.” When He entered the house, He did not allow anyone to go in with Him except Peter, 52 John, James, and the child’s father and mother. Meanwhile, everyone was weeping and mourning for her. But Jesus said, “Stop weeping; she is not dead but asleep.” And they laughed 54 at Him, knowing that she was dead. 53 55 But Jesus took her by the hand and called out, Her spirit returned, and at once “Child, get up!” 56 she got up. And He directed that she be given something to eat. Her parents were astounded, but Jesus ordered them not to tell anyone what The Ministry of the Twelve had happened." + }, + { + "verseNum": 7, + "text": "–9) 14 2 At that time Herod the tetrarch heard the and said to his serv- reports about Jesus ants, “This is John the Baptist; he has risen from the dead! That is why miraculous powers are at 3 work in him.” Now Herod had arrested John and bound him 4 and put him in prison on account of Herodias, his brother Philip’s wife, because John had been 5 telling him, “It is not lawful for you to have her.” Although Herod wanted to kill John, he was afraid of the people, because they regarded John 6 as a prophet. On Herod’s birthday, however, the daughter of 7 Herodias danced before them and pleased Herod so much that he promised with an oath to give 8 to her whatever she asked. Prompted by her mother, she said, “Give me 9 here on a platter the head of John the Baptist.” 10 The king was grieved, but because of his oaths and his guests, he ordered that her wish be granted and sent to have John beheaded in the 11 prison. John’s head was brought in on a platter and presented to the girl, who carried it to her 12 mother. Then John’s disciples came and took his body The Feeding of the Five Thousand and buried it. And they went and informed Jesus." + }, + { + "verseNum": 10, + "text": "–17 ;" + }, + { + "verseNum": 18, + "text": "–20 ;" + }, + { + "verseNum": 21, + "text": "–22) 21 b From that time on Jesus began to show His disciples that He must go to Jerusalem and suffer many things at the hands of the elders, chief priests, and scribes, and that He must be killed 22 and on the third day be raised to life. Peter took Him aside and began to rebuke Him. “Far be it from You, Lord!” he said. “This shall 23 never happen to You!” But Jesus turned and said to Peter, “Get behind Me, Satan! You are a stumbling block to Me. For you do not have in mind the things of God, but the Take Up Your Cross things of men.”" + }, + { + "verseNum": 23, + "text": "–27) 24 25 26 Then Jesus told His disciples, “If anyone wants to come after Me, he must deny himself and take up his cross and follow Me. For whoever wants to save his life will lose it, but whoever loses his life for My sake will find it. What will it profit a man if he gains the whole world, yet forfeits his soul? Or what can a man give in exchange for his soul? For the Son of Man will come in His Father’s glory with His angels, and then He will Jesus Christ a 17 repay each one according to what he has done. Simon Bar-Jonah b 21 27 Truly I tell you, some who are standing here will not taste death before they see the Son of The Transfiguration Man coming in His kingdom.”" + }, + { + "verseNum": 28, + "text": "–36 ;" + }, + { + "verseNum": 35, + "text": ". ; see the First Book of Enoch (1 Enoch 13:1–11 and 1 Enoch 20:1–4). 1094 |" + }, + { + "verseNum": 37, + "text": "–42) 14 15 When they came to the crowd, a man came up “Lord, have to Jesus and knelt before Him. mercy on my son,” he said. “He has seizures and is suffering terribly. He often falls into the fire or into the water. I brought him to Your disciples, but they could not heal him.” 16 c 4 three tabernacles d 5 Greek NE and WH Or Cited in" + }, + { + "verseNum": 43, + "text": "–45) a 22 23 When they gathered together in Galilee, Jesus told them, “The Son of Man is about to be deliv- ered into the hands of men. They will kill Him, and on the third day He will be raised to life.” And The Temple Tax the disciples were deeply grieved. 24 b After they had arrived in Capernaum, the collectors of the two-drachma tax came to Peter and asked, “Does your Teacher pay the two 25 drachmas?” “Yes,” he answered. When Peter entered the house, Jesus preempted him. “What do you think, Simon?” He asked. “From whom do the kings of the earth collect customs and taxes: from their own sons, or from 26 others?” “From others,” Peter answered. 27 “Then the sons are exempt,” Jesus said to him. “But so that we may not offend them, go to the sea, cast a hook, and take the first fish you catch. When you open its mouth, you will find a four- drachma coin. Take it and give it to them for My The Greatest in the Kingdom tax and yours.”" + }, + { + "verseNum": 46, + "text": "–50) c 4 Jesus invited a little child to stand among them. “Truly I tell you,” He said, “unless you change and become like little children, you will never Therefore, who- enter the kingdom of heaven. ever humbles himself like this little child is the And who- greatest in the kingdom of heaven. ever welcomes a little child like this in My name Temptations and Trespasses welcomes Me." + }, + { + "verseNum": 57, + "text": "–62 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–12) demons that He drives out demons.” 35 36 Jesus went through all the towns and villages, teaching in their synagogues, preaching the gos- pel of the kingdom, and healing every disease When He saw the crowds, He and sickness. was moved with compassion for them, because they were harassed and helpless, like sheep 37 without a shepherd. 38 Then He said to His disciples, “The harvest is Ask the plentiful, but the workers are few. Lord of the harvest, therefore, to send out work- The Twelve Apostles ers into His harvest.”" + }, + { + "verseNum": 4, + "text": "| 929 After the voice had spoken, only Jesus was pre- sent with them. The disciples kept this to them- selves, and in those days they did not tell anyone The Boy with an Evil Spirit what they had seen." + }, + { + "verseNum": 5, + "text": "5 6 7 Whatever house you enter, begin by saying, If a man of peace is there, ‘Peace to this house.’ your peace will rest on him; if not, it will return Stay at the same house, eating and drink- to you. ing whatever you are offered. For the worker is worthy of his wages. Do not move around from 8 house to house. a 9 If you enter a town and they welcome you, eat Heal the sick who whatever is set before you. are there and tell them, ‘The kingdom of God is 10 near you.’ But if you enter a town and they do not wel- 11 come you, go into the streets and declare, ‘Even the dust of your town that clings to our feet, we wipe off as a testimony against you. Yet be sure of this: The kingdom of God is near.’ I tell you, it will be more bearable on that day for Woe to the Unrepentant" + }, + { + "verseNum": 7, + "text": "; see also" + }, + { + "verseNum": 13, + "text": "–16) her actions.” 20 21 Then Jesus began to denounce the cities in which most of His miracles had been performed, because they did not repent. “Woe to you, Cho- razin! Woe to you, Bethsaida! For if the miracles that were performed in you had been performed in Tyre and Sidon, they would have repented But I tell you, long ago in sackcloth and ashes. it will be more bearable for Tyre and Sidon on the 23 day of judgment than for you. 22 24 And you, Capernaum, will you be lifted up to heaven? No, you will be brought down to Hades! For if the miracles that were performed in you had been performed in Sodom, it would have re- But I tell you that it will be mained to this day. more bearable for Sodom on the day of judgment Rest for the Weary" + }, + { + "verseNum": 21, + "text": "–24) than for you.” 25 At that time Jesus declared, “I praise You, Fa- ther, Lord of heaven and earth, because You have hidden these things from the wise and learned, Yes, Fa- and revealed them to little children. 27 ther, for this was well-pleasing in Your sight. 26 All things have been entrusted to Me by My Fa- ther. No one knows the Son except the Father, and no one knows the Father except the Son and 28 those to whom the Son chooses to reveal Him. 29 40 He who receives you receives Me, and he who 41 receives Me receives the One who sent Me. Whoever receives a prophet because he is a prophet will receive a prophet’s reward, and whoever receives a righteous man because he is a righteous man will receive a righteous man’s And if anyone gives even a cup of cold reward. water to one of these little ones because he is My disciple, truly I tell you, he will never lose his John’s Inquiry" + }, + { + "verseNum": 27, + "text": "," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–4) reward you. 5 6 And when you pray, do not be like the hypo- crites. For they love to pray standing in the syna- gogues and on the street corners to be seen by men. Truly I tell you, they already have their full But when you pray, go into your inner reward. room, shut your door, and pray to your Father, who is unseen. And your Father, who sees what 7 is done in secret, will reward you. 8 And when you pray, do not babble on like pa- gans, for they think that by their many words Do not be like them, for your they will be heard. Father knows what you need before you ask Him. b 27 c 29 Greek Gehenna ; that is, a Roman copper coin worth about 1/64 of a denarius g 37 from evil f 33 5:18 ; also in verse 30 Or l 44 that is, a Roman mile, approximately 4,855 feet or 1,480 meters accuse you and persecute you j 41 Greek ; love your enemies, bless those who curse you, do good to those who hate you, and pray for those who spitefully" + }, + { + "verseNum": 5, + "text": "–13) tear you to pieces. 7 7 Therefore I tell you, do not worry about your a 13 life, what you will eat or drink; or about your from evil Or also in verse 20 f 33 and" + }, + { + "verseNum": 14, + "text": "–23) and Judas Iscariot, who betrayed Jesus. g 20 h 21 Then Jesus went home, and once again a crowd gathered, so that He and His disciples could not even eat. When His family heard about this, they went out to take custody of Him, 22 saying, “He is out of His mind.” i And the scribes who had come down from Jerusalem were saying, “He is possessed by Beelzebul, ” and, “By the prince of the demons He 23 drives out demons.” Instead, new wine is poured into new wineskins whom He designated as apostles So Jesus called them together and began to speak to them in parables: “How can Satan drive the Bread of the Presence b 26 to heal sicknesses, and These are the twelve He appointed Simon the Cananean Then He comes to a house Beelzebub d 15 . i 22 Or f 18 BYZ and TR include Beezeboul . Greek WH ; Vulgate" + }, + { + "verseNum": 24, + "text": "–26) now One greater than Solomon is here. 43 44 When an unclean spirit comes out of a man, it passes through arid places seeking rest and does Then it says, ‘I will return to the not find it. house I left.’ On its return, it finds the house va- cant, swept clean, and put in order. Then it goes and brings with it seven other spirits more wicked than itself, and they go in and dwell there. And the final plight of that man is worse than the Jesus’ Mother and Brothers first. So will it be with this wicked generation.”" + }, + { + "verseNum": 26, + "text": "| 931 Which of these three do you think was a neigh- bor to the man who fell into the hands of rob- 37 bers?” “The one who showed him mercy,” replied the expert in the law. Martha and Mary Then Jesus told him, “Go and do likewise.” 38 39 As they traveled along, Jesus entered a village where a woman named Martha welcomed Him into her home. She had a sister named Mary, 40 who sat at the Lord’s feet listening to His mes- sage. But Martha was distracted by all the preparations to be made. She came to Jesus and said, “Lord, do You not care that my sister has left 41 me to serve alone? Tell her to help me!” 42 “Martha, Martha,” the Lord replied, “you are worried and upset about many things. But only one thing is necessary. Mary has chosen the good The Lord’s Prayer" + }, + { + "verseNum": 27, + "text": "True Blessedness 27 As Jesus was saying these things, a woman in the crowd raised her voice and said, “Blessed is the womb that bore You, and blessed are the 28 breasts that nursed You!” But He replied, “Blessed rather are those who The Sign of Jonah hear the word of God and obey it.”" + }, + { + "verseNum": 29, + "text": "–32) 3 2 Then the word of the LORD came to Jonah a second time: “Get up! Go to the great city of Nineveh and proclaim to it the message that I 3 give you.” This time Jonah got up and went to Nineveh, in b accordance with the word of the LORD. c 4 Now Nineveh was an exceedingly great city, On the first day requiring a three-day journey. of his journey, Jonah set out into the city and pro- claimed, “Forty more days and Nineveh will be 5 overturned!” And the Ninevites believed God. They pro- claimed a fast and dressed in sackcloth, from the 6 greatest of them to the least. When word reached the king of Nineveh, he got up from his throne, took off his royal robe, cov- 7 ered himself with sackcloth, and sat in ashes. Then he issued a proclamation in Nineveh: “By the decree of the king and his nobles: Let no man or beast, herd or flock, taste 8 anything at all. They must not eat or drink. Furthermore, let both man and beast be chesed covered with sackcloth, and have everyone love Forms of the Hebrew b 3 range of meaning includes became angry was a great city to God e 6 a 8 ," + }, + { + "verseNum": 33, + "text": "–36) there your heart will be also. 22 21 c 23 are good, The eye is the lamp of the body. If your eyes d your whole body will be full of light. your whole body will be full of darkness. If then the light within you is 24 darkness, how great is that darkness! But if your eyes are bad, No one can serve two masters: Either he will hate the one and love the other, or he will be devoted to the one and despise the other. You Do Not Worry" + }, + { + "verseNum": 37, + "text": "–54) 23 2 Then Jesus spoke to the crowds and to 3 “The scribes and Phari- His disciples: So practice and observe sees sit in Moses’ seat. everything they tell you. But do not do what they 4 do, for they do not practice what they preach. and lay them on men’s shoulders, but they themselves 5 are not willing to lift a finger to move them. They tie up heavy, burdensome loads f 6 All their deeds are done for men to see. They broaden their phylacteries and lengthen their tassels. They love the places of honor at ban- the quets, the chief seats in the synagogues, greetings in the marketplaces, and the title of 8 ‘Rabbi’ by which they are addressed. 7 g 9 11 10 But you are not to be called ‘Rabbi,’ for you have And do one Teacher, and you are all brothers. not call anyone on earth your father, for you have one Father, who is in heaven. Nor are you to be called instructors, for you have one Instructor, 12 the Christ. The greatest among you shall be your servant. For whoever exalts himself will be humbled, and whoever humbles himself will 13 be exalted. Woe to you, scribes and Pharisees, you hypocrites! You shut the kingdom of heaven in men’s faces. You yourselves do not enter, nor will 15 you let in those who wish to enter. h Woe to you, scribes and Pharisees, you hypocrites! You traverse land and sea to win a single convert, and when he becomes one, you 16 as you are. make him twice as much a son of hell i 18 17 Woe to you, blind guides! You say, ‘If anyone swears by the temple, it" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–3) 5 6 When they crossed to the other side, the disci- “Watch out!” Jesus ples forgot to take bread. told them. “Beware of the leaven of the Pharisees 7 and Sadducees.” They discussed this among themselves and con- cluded, “It is because we did not bring any 8 bread.” 9 Aware of their conversation, Jesus said, “You of little faith, why are you debating among your- Do you still not selves about having no bread? understand? Do you not remember the five 10 loaves for the five thousand, and how many bas- ketfuls you gathered? Or the seven loaves for 11 the four thousand, and how many basketfuls you How do you not understand that I gathered? was not telling you about bread? But beware of 12 the leaven of the Pharisees and Sadducees.” Or Several manuscripts do not include from verses 2 and 3. Then they understood that He was not telling them to beware of the leaven used in bread, but of the teaching of the Pharisees and Sadducees. When evening comes . . . of the times. 878 |" + }, + { + "verseNum": 4, + "text": "–7) household! 26 d So do not be afraid of them. For there is noth- ing concealed that will not be disclosed, and 27 nothing hidden that will not be made known. What I tell you in the dark, speak in the day- light; what is whispered in your ear, proclaim 28 from the housetops. Do not be afraid of those who kill the body but cannot kill the soul. Instead, fear the One who can 29 destroy both soul and body in hell. e f Yet Are not two sparrows sold for a penny? 30 not one of them will fall to the ground apart from And even the very hairs the will of your Father. So do not be of your head are all numbered. Confessing Christ" + }, + { + "verseNum": 8, + "text": "–12) afraid; you are worth more than many sparrows. 32 31 33 Therefore everyone who confesses Me before men, I will also confess him before My Father in But whoever denies Me before men, I heaven. Not Peace but a Sword will also deny him before My Father in heaven." + }, + { + "verseNum": 22, + "text": "–31) cannot serve both God and money. 25 26 body, what you will wear. Is not life more than Look at food, and the body more than clothes? the birds of the air: They do not sow or reap or gather into barns, and yet your heavenly Father feeds them. Are you not much more valuable Who of you by worrying can add a than they? 28 single hour to his life? 27 e 29 And why do you worry about clothes? Con- sider how the lilies of the field grow: They do not Yet I tell you that not even Solo- labor or spin. 30 mon in all his glory was adorned like one of these. If that is how God clothes the grass of the field, which is here today and tomorrow is thrown into the furnace, will He not much more 31 clothe you, O you of little faith? 32 33 Therefore do not worry, saying, ‘What shall we eat?’ or ‘What shall we drink?’ or ‘What shall we wear?’ For the Gentiles strive after all these f things, and your heavenly Father knows that you need them. and His righteousness, and all these things will 34 be added unto you. But seek first the kingdom of God Therefore do not worry about tomorrow, for tomorrow will worry about itself. Today has Judging Others" + }, + { + "verseNum": 31, + "text": ". Or ; ; see" + }, + { + "verseNum": 32, + "text": "–34) who sees what is done in secret, will reward you. 19 18 b Do not store up for yourselves treasures on 20 destroy, and where earth, where moth and rust But store up for thieves break in and steal. yourselves treasures in heaven, where moth and rust do not destroy, and where thieves do not For where your treasure is, break in and steal. The Lamp of the Body" + }, + { + "verseNum": 35, + "text": "–48) 36 f 37 39 No one knows about that day or hour, not even the angels in heaven, nor the Son, but only the 38 As it was in the days of Noah, so will it Father. be at the coming of the Son of Man. For in the days before the flood, people were eating and drinking, marrying and giving in marriage, up to the day Noah entered the ark. And they were oblivious until the flood came and swept them all away. So will it be at the coming of the Son of Man. Two men will be in the field: one will be taken and the other left. Two women will be grinding at the mill: one will be taken and the 42 other left. 40 41 Therefore keep watch, because you do not 43 know the day on which your Lord will come. But understand this: If the homeowner had known in which watch of the night the thief was coming, he would have kept watch and would not have let his house be broken into. For this rea- son, you also must be ready, because the Son of 45 Man will come at an hour you do not expect. 44 46 Who then is the faithful and wise servant, whom the master has put in charge of his house- hold, to give the others their food at the proper Blessed is that servant whose master time? Truly I finds him doing so when he returns. tell you, he will put him in charge of all his 48 possessions. 47 50 But suppose that servant is wicked and says in 49 his heart, ‘My master will be away a long time.’ And he begins to beat his fellow servants and The master of to eat and drink with drunkards. that servant will come on a da" + }, + { + "verseNum": 36, + "text": "| 933 say to myself, “You have plenty of good things laid up for many years. Take it easy. Eat, drink, 20 and be merry!” ’ But God said to him, ‘You fool! This very night your life will be required of you. Then who will 21 own what you have accumulated?’ This is how it will be for anyone who stores up Do Not Worry" + }, + { + "verseNum": 37, + "text": "37 banquet, so that when he comes and knocks, they can open the door for him at once. Blessed are those servants whom the master finds on watch when he returns. Truly I tell you, he will dress himself to serve and will have them recline at the 38 table, and he himself will come and wait on them. Even if he comes in the second or third watch and finds them alert, those servants a of the night 39 will be blessed. b But understand this: If the homeowner had known at what hour the thief was coming, he 40 would not have let his house be broken into. You also must be ready, because the Son of 41 Man will come at an hour you do not expect.” “Lord,” said Peter, “are You addressing this 42 parable to us, or to everyone else as well?” 43 And the Lord answered, “Who then is the faith- ful and wise manager, whom the master puts in charge of his servants to give them their portion Blessed is that servant at the proper time? whose master finds him doing so when he re- Truly I tell you, he will put him in charge turns. 45 of all his possessions. 44 46 But suppose that servant says in his heart, ‘My master will be a long time in coming,’ and he be- gins to beat the menservants and maidservants, The master and to eat and drink and get drunk. of that servant will come on a day he does not ex- pect and at an hour he does not anticipate. Then he will cut him to pieces and assign him a place 47 with the unbelievers. 48 That servant who knows his master’s will but does not get ready or follow his" + }, + { + "verseNum": 49, + "text": "–53) nations. 7 Woe is me! For I am like one gathering summer fruit at the gleaning of the vineyard; there is no cluster to eat, 2 no early fig that I crave. The godly man has perished from the earth; there is no one upright among men. They all lie in wait for blood; 3 they hunt one another with a net. Both hands are skilled at evil; the prince and the judge demand a bribe. a 16 When the powerful utters his evil desire, scorn of My people they all conspire together. e 12 b 4 the River your punishment 4 The best of them is like a brier; the most upright is sharper than a hedge of thorns. b The day for your watchmen has come, 5 the day of your visitation. Now is the time of their confusion. Do not rely on a friend; do not trust in a companion. c Seal the doors of your mouth 6 from her who lies in your arms. For a son dishonors his father, a daughter rises against her mother, and a daughter-in-law against her mother-in-law. d A man’s enemies are the members Israel’s Confession and Comfort of his own household. 7 But as for me, I will look to the LORD; 8 I will wait for the God of my salvation. My God will hear me. Do not gloat over me, my enemy! Though I have fallen, I will arise; though I sit in darkness, 9 the LORD will be my light. Because I have sinned against Him, I must endure the rage of the LORD, until He argues my case and executes justice for me. He will bring me into the light; I will see His righteousness. 10 Then my enemy will see and will be covered with shame— she" + }, + { + "verseNum": 53, + "text": ". Hebrew Or Hebrew Cited in" + }, + { + "verseNum": 54, + "text": "–56) 16 Then the Pharisees and Sadducees came and tested Jesus by asking Him to show 2 them a sign from heaven. 3 b 4 But He replied, “When evening comes, you say, ‘The weather will be fair, for the sky is red,’ and in the morning, ‘Today it will be stormy, for the sky is red and overcast.’ You know how to inter- pret the appearance of the sky, but not the signs A wicked and adulterous genera- of the times. tion demands a sign, but none will be given it except the sign of Jonah.” Then He left them and The Leaven of the Pharisees and Sadducees went away." + }, + { + "verseNum": 57, + "text": "–59) will never enter the kingdom of heaven. 21 d e You have heard that it was said to the ancients, 22 ‘Do not murder’ and ‘Anyone who murders will be subject to judgment.’ But I tell you that an- yone who is angry with his brother will be sub- g ject to judgment. Again, anyone who says to his brother, ‘Raca,’ But anyone who says, ‘You fool!’ will be subject 23 to the fire of hell. will be subject to the Sanhedrin. h f Blessed are those who exercise strength under control, for they will inherit the land 24 So if you are offering your gift at the altar and there remember that your brother has some- thing against you, leave your gift there before the altar. First go and be reconciled to your brother; then come and offer your gift. e 22 the hell of fire without ; see the Gehenna of fire g 22 the Council h 22" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–5) 13 Put on sackcloth and lament, O priests; wail, O ministers of the altar. Come, spend the night in sackcloth, O ministers of my God, 14 because the grain and drink offerings are withheld from the house of your God. Consecrate a fast; proclaim a solemn assembly! Gather the elders and all the residents of the land to the house of the LORD your God, and cry out to the LORD. 15 Alas for the day! For the Day of the LORD is near, b 16 and it will come as destruction from the Almighty. Has not the food been cut off before our very eyes— 17 joy and gladness from the house of our God? The seeds lie shriveled beneath the clods; the storehouses are in ruins; the granaries are broken down, 18 for the grain has withered away. How the cattle groan! The herds wander in confusion because they have no pasture. 19 Even the flocks of sheep are suffering. To You, O LORD, I call, for fire has consumed the open pastures and flames have scorched all the trees of b 15 Shaddai a 4 the new wine is dried up, and the oil fails. the field. The precise identification of the four kinds of locusts mentioned here is uncertain. Hebrew 818 |" + }, + { + "verseNum": 6, + "text": "–9) from the storm and the rain. 5 I will sing for my beloved a song of his vineyard: 2 My beloved had a vineyard on a very fertile hill. He dug it up and cleared the stones and planted the finest vines. He built a watchtower in the middle and dug out a winepress as well. He waited for the vineyard to yield good grapes, but the fruit it produced was sour! 26 Your men will fall by the sword, and your warriors in battle. And the gates of Zion will lament and mourn; A Remnant in Zion destitute, she will sit on the ground. 4 In that day seven women will take hold of one man and say, “We will eat our own bread and provide our own clothes. Just let us be called by your name. 2 Take away our disgrace!” On that day the Branch of the LORD will be beautiful and glorious, and the fruit of the land 3 will be the pride and glory of Israel’s survivors. Whoever remains in Zion and whoever is left in Jerusalem will be called holy— a 17 all in Jerusalem who are recorded among will uncover their secret parts b 24 branding the living— Or DSS; MT “And now, O dwellers of Jerusalem and men of Judah, I exhort you to judge 4 between Me and My vineyard. What more could have been done for My vineyard than I have done for it? Why, when I expected sweet grapes, 5 did it bring forth sour fruit? Now I will tell you what I am about to do to My vineyard: I will take away its hedge, and it will be consumed; I will tear down its wall, 6 and it will be trampled. I will make it a wasteland, neither pruned nor c" + }, + { + "verseNum": 18, + "text": "–19) 31 32 He put before them another parable: “The kingdom of heaven is like a mustard seed that a Although it man took and planted in his field. is the smallest of all seeds, yet it grows into the largest of garden plants and becomes a tree, so that the birds of the air come and nest in its The Parable of the Leaven" + }, + { + "verseNum": 20, + "text": "–21) branches.” 33 He told them still another parable: “The king- dom of heaven is like leaven that a woman took and mixed into three measures of flour, until all I Will Open My Mouth in Parables of it was leavened.”" + }, + { + "verseNum": 22, + "text": "–30) Law and the Prophets. 13 14 Enter through the narrow gate. For wide is the gate and broad is the way that leads to destruc- tion, and many enter through it. But small is the gate and narrow the way that leads to life, A Tree and Its Fruit" + }, + { + "verseNum": 31, + "text": "–35) come upon this generation. 37 36 O Jerusalem, Jerusalem, who kills the prophets and stones those sent to her, how often I have a 24 longed to gather your children together, as a hen d 38 Go ahead, then, and complete and dish c 32 gathers her chicks under her wings, but you were d 39 Look, your house is left to you des- unwilling! olate. For I tell you that you will not see Me again until you say, ‘Blessed is He who comes in Temple Destruction and Other Signs ” the name of the Lord.’" + }, + { + "verseNum": 35, + "text": ", Luke Join in the festal procession with boughs in hand, up to the horns of the altar. , meaning This or Or i 1 ; see" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 5, + "text": "| 935 you will stand outside knocking and saying, ‘Lord, open the door for us.’ But he will reply, ‘I do not know where you are 26 from.’ Then you will say, ‘We ate and drank with you, 27 and you taught in our streets.’ And he will answer, ‘I tell you, I do not know where you are from. Depart from me, all you evil- 28 doers.’ There will be weeping and gnashing of teeth when you see Abraham, Isaac, Jacob, and all the 29 prophets in the kingdom of God, but you your- People will come from selves are thrown out. east and west and north and south, and will re- And cline at the table in the kingdom of God. indeed, some who are last will be first, and some Lament over Jerusalem" + }, + { + "verseNum": 6, + "text": "6 22 And they were unable to answer these ques- The Parable of the Guests tions. 7 8 When Jesus noticed how the guests chose the “When places of honor, He told them a parable: you are invited to a wedding banquet, do not sit 9 in the place of honor, in case someone more dis- Then the tinguished than you has been invited. host who invited both of you will come and tell you, ‘Give this man your seat.’ And in humiliation, 10 you will have to take the last place. c 11 But when you are invited, go and sit in the last place, so that your host will come and tell you, ‘Friend, move up to a better place.’ Then you will be honored in front of everyone at the table For everyone who exalts himself will with you. be humbled, and the one who humbles himself 12 will be exalted.” 13 Then Jesus said to the man who had invited Him, “When you host a dinner or a banquet, do not invite your friends or brothers or relatives or rich neighbors. Otherwise, they may invite you in But when you return, and you will be repaid. host a banquet, invite the poor, the crippled, the and you will be blessed. lame, and the blind, Since they cannot repay you, you will be repaid The Parable of the Banquet (Matt. 22:1–14) at the resurrection of the righteous.” 15 14 When one of those reclining with Him heard this, he said to Jesus, “Blessed is everyone who 16 will eat at the feast in the kingdom of God.” d 17 But Jesus replied, “A certain man prepared a When great banquet and invited many guests. it was time for th" + }, + { + "verseNum": 15, + "text": "–24) people regarded Him as a prophet. 22 2 3 Once again, Jesus spoke to them in para- bles: “The kingdom of heaven is like a king who prepared a wedding banquet for his He sent his servants to call those he had in- son. 4 vited to the banquet, but they refused to come. Again, he sent other servants and said, ‘Tell those who have been invited that I have pre- pared my dinner. My oxen and fattened cattle have been killed, and everything is ready. Come 5 to the wedding banquet.’ 6 But they paid no attention and went away, one The rest to his field, another to his business. seized his servants, mistreated them, and killed 7 them. 9 The king was enraged, and he sent his troops to 8 destroy those murderers and burn their city. Then he said to his servants, ‘The wedding ban- quet is ready, but those I invited were not wor- Go therefore to the crossroads and invite to thy. a 42 the banquet as many as you can find.’ c 19 b 44 16 Then the Pharisees went out and conspired to They sent their disci- trap Jesus in His words. ples to Him along with the Herodians. “Teacher,” they said, “we know that You are honest and that You teach the way of God in accordance with the truth. You seek favor from no one, because You pay no attention to external appearance. So tell us what You think: Is it lawful to pay taxes to 18 Caesar or not?” 17 19 But Jesus knew their evil intent and said, “You Show Me hypocrites, why are you testing Me? the coin used for the tax.” 20 And they brought Him a denarius. c" + }, + { + "verseNum": 25, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–35 ; you." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–7) thrown into the fire of hell. 10 d See that you do not look down on any of these little ones. For I tell you that their angels in heaven always see the face of My Father in 12 heaven. e 13 What do you think? If a man has a hundred sheep and one of them goes astray, will he not leave the ninety-nine on the hills and go out to And if he finds search for the one that is lost? it, truly I tell you, he rejoices more over that one sheep than over the ninety-nine that did not go In the same way, your Father in heaven astray. is not willing that any of these little ones should A Brother Who Sins" + }, + { + "verseNum": 11, + "text": "–32) firstborn belongs to him. 18 19 If a man has a stubborn and rebellious son who does not obey his father and mother and does not his father and listen to them when disciplined, mother are to lay hold of him and bring him to 20 the elders of his city, to the gate of his hometown, and say to the elders, “This son of ours is stub- born and rebellious; he does not obey us. He is a 21 glutton and a drunkard.” a Then all the men of his city will stone him to death. So you must purge the evil from among Cursed Is Anyone Hung on a Tree you, and all Israel will hear and be afraid. 22 b 23 If a man has committed a sin worthy of death, and he is executed, and you hang his body on a tree, you must not leave the body on the tree overnight, but you must be sure to bury him that day, because anyone who is hung on a tree is under God’s curse. You must not defile the land that the LORD your God is giving you as an Various Laws inheritance. c 22 d If you see your brother’s ox or sheep 2 straying, you must not ignore it; be sure If your brother does to return it to your brother. not live near you, or if you do not know who he is, you are to take the animal home to remain with you until your brother comes seeking it; And you shall do then you can return it to him. the same for his donkey, his cloak, or anything your brother has lost and you have found. You 4 must not ignore it. 3 If you see your brother’s donkey or ox fallen on the road, you must not ignore it; you must help 5 him lift it up" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 6, + "text": "| 937 And when he finds it, he joyfully puts it finds it? comes home, and calls to- on his shoulders, 7 gether his friends and neighbors to tell them, ‘Re- I joice with me, for I have found my lost sheep!’ tell you that in the same way there will be more joy in heaven over one sinner who repents than over ninety-nine righteous ones who do not need The Parable of the Lost Coin to repent. 8 a Or what woman who has ten silver coins and loses one of them does not light a lamp, sweep 9 her house, and search carefully until she finds it? And when she finds it, she calls together her friends and neighbors to say, ‘Rejoice with me, for I have found my lost coin.’ In the same way, I tell you, there is joy in the presence of God’s an- The Parable of the Prodigal Son gels over one sinner who repents.”" + }, + { + "verseNum": 7, + "text": "7 Then he asked another, ‘And how much do you a owe?’ ‘A hundred measures of wheat,’ 8 ‘Take your bill and write eighty,’ he told him. he replied. The master commended the dishonest manager because he had acted shrewdly. For the sons of this age are more shrewd in dealing with their own kind than are the sons of light. I tell you, use worldly wealth to make friends for your- selves so that when it is gone, they will welcome 10 you into eternal dwellings. 9 Whoever is faithful with very little will also be faithful with much, and whoever is dishonest 11 with very little will also be dishonest with much. So if you have not been faithful with worldly 12 wealth, who will entrust you with true riches? And if you have not been faithful with the be- longings of another, who will give you belongings 13 of your own? No servant can serve two masters. Either he will hate the one and love the other, or he will be devoted to the one and despise the other. You The Law and the Prophets cannot serve both God and money.” 14 15 The Pharisees, who were lovers of money, So heard all of this and were scoffing at Jesus. He said to them, “You are the ones who justify yourselves before men, but God knows your hearts. For what is prized among men is detesta- 16 ble before God. The Law and the Prophets were proclaimed until John. Since that time, the gospel of the king- b dom of God is being preached, and everyone is forcing his way into it. But it is easier for heaven and earth to pass away than for" + }, + { + "verseNum": 18, + "text": ") 24 If a man marries a woman, but she be- comes displeasing to him because he finds some indecency in her, he may write her a hand it to her, and send certificate of divorce, 2 her away from his house. a 3 4 If, after leaving his house, she goes and becomes another man’s wife, and the second man hates her, writes her a certificate of divorce, hands it to her, and sends her away from his house, or if he dies, then the husband who divorced her first may not remarry her after she has been defiled, for that is an abomination to the LORD. You must not bring sin upon the land that the LORD your 5 God is giving you as an inheritance. If a man is newly married, he must not be sent to war or be pressed into any duty. For one year he is free to stay at home and bring joy to the wife Additional Laws he has married. 6 Do not take a pair of millstones or even an up- per millstone as security for a debt, because that 7 would be taking one’s livelihood as security. If a man is caught kidnapping one of his Israelite brothers, whether he treats him as a slave or sells b him, the kidnapper must die. So you must purge 8 the evil from among you. c 9 In cases of infectious skin diseases, be careful to diligently follow everything the Levitical priests instruct you. Be careful to do as I have Remember what the LORD commanded them. your God did to Miriam on the journey after you a 1 came out of Egypt. b 7 leprosy Cited in" + }, + { + "verseNum": 19, + "text": "–31) He sent. 39 38 You pore over the Scriptures because you pre- sume that by them you possess eternal life. These are the very words that testify about Me, yet 42 41 you refuse to come to Me to have life. 40 43 I do not accept glory from men, but I know you, that you do not have the love of God within you. I have come in My Father’s name, and you have not received Me; but if someone else comes in his own name, you will receive him. How can you believe if you accept glory from one another, yet do not seek the glory that comes from the 45 only God? 44 46 Do not think that I will accuse you before the Father. Your accuser is Moses, in whom you have put your hope. If you had believed Moses, you 47 would believe Me, because he wrote about Me. But since you do not believe what he wrote, how will you believe what I say?” 956 |" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–4) 5 6 But if anyone causes one of these little ones who believe in Me to stumble, it would be better for him to have a large millstone hung around his 7 neck and to be drowned in the depths of the sea. Woe to the world for the causes of sin. These stumbling blocks must come, but woe to the man 8 through whom they come! If your hand or your foot causes you to sin, cut it off and throw it away. It is better for you to en- ter life crippled or lame than to have two hands 9 and two feet and be thrown into the eternal fire. And if your eye causes you to sin, gouge it out and throw it away. It is better for you to enter life with one eye than to have two eyes and be The Parable of the Lost Sheep" + }, + { + "verseNum": 5, + "text": "–10) from that moment. 19 Afterward the disciples came to Jesus pri- 20 vately and asked, “Why couldn’t we drive it out?” “Because you have so little faith,” He an- swered. “For truly I tell you, if you have faith the size of a mustard seed, you can say to this moun- tain, ‘Move from here to there,’ and it will move. The Second Prediction of the Passion Nothing will be impossible for you.”" + }, + { + "verseNum": 11, + "text": "–19) LORD. 5 Now Naaman, the commander of the army of the king of Aram, was a great man in his mas- ter’s sight and highly regarded, for through him the LORD had given victory to Aram. And he was 2 a mighty man of valor, but he was a leper. b Elisha summoned Gehazi and said, “Call the Shunammite woman.” So he called her and she a 29 came. Gird up your loins leper b 1 leprosy Literally A , or one with At this time the Arameans had gone out in bands and had taken a young girl from the land of Israel, and she was serving Naaman’s wife. , was one afflicted with a skin disease; see Leviticus 13. 344 | 2 Kings 5:3 3 She said to her mistress, “If only my master would go to the prophet who is in Samaria, he 4 would cure him of his leprosy.” And Naaman went and told his master what the 5 girl from the land of Israel had said. “Go now,” said the king of Aram, “and I will send you with a letter to the king of Israel.” a b So Naaman departed, taking with him ten talents and ten six thousand shekels of gold, of silver, 6 sets of clothing. And the letter that he took to the king of Israel stated: “With this letter I am sending my servant Naaman, so that you may cure him of his 7 leprosy.” When the king of Israel read the letter, he tore his clothes and asked, “Am I God, killing and giv- ing life, that this man expects me to cure a leper? Surely you can see that he is seeking a quarrel 8 with me!” Now when Elisha the man of God heard that the king of Israel had torn his clothes, he sent a m" + }, + { + "verseNum": 20, + "text": "–37) 24 25 Then the LORD rained down sulfur and fire on Sodom and Gomorrah—from the LORD out of the heavens. Thus He destroyed these cities and the entire plain, including all the inhabitants of the cities and everything that grew on the 26 ground. But Lot’s wife looked back, and she became a 27 pillar of salt. 28 Early the next morning, Abraham got up and returned to the place where he had stood before the LORD. He looked down toward Sodom and Gomorrah and all the land of the plain, and he saw the smoke rising from the land like smoke 29 from a furnace. So when God destroyed the cities of the plain, He remembered Abraham, and He brought Lot out of the catastrophe that destroyed the cities Lot and His Daughters where he had lived. 30 Lot and his two daughters left Zoar and settled in the mountains—for he was afraid to stay in 31 Zoar—where they lived in a cave. 32 One day the older daughter said to the younger, “Our father is old, and there is no man in the land to sleep with us, as is the custom over Come, let us get our father drunk all the earth. with wine so we can sleep with him and preserve his line.” 33 9" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "| 939 27 Just as it was in the days of Noah, so also will it be in the days of the Son of Man: People were eating and drinking, marrying and being given in marriage, up to the day Noah entered the ark. 28 Then the flood came and destroyed them all. 29 It was the same in the days of Lot: People were eating and drinking, buying and selling, planting and building. But on the day Lot left Sodom, fire and sulfur rained down from heaven and de- 30 stroyed them all. 31 It will be just like that on the day the Son of Man is revealed. On that day, let no one on the housetop come down to retrieve his possessions. 32 Likewise, let no one in the field return for any- 33 thing he has left behind. Remember Lot’s wife! Whoever tries to save his life will lose it, but whoever loses his life will preserve it. I tell you, on that night two people will be in one bed: one will be taken and the other left. Two women will be grinding grain together: one will 37 be taken and the other left.” 35 34 e “Where, Lord?” they asked. Jesus answered, “Wherever there is a carcass, The Parable of the Persistent Widow there the vultures will gather.” 18 3 2 Then Jesus told them a parable about their need to pray at all times and not lose heart: “In a certain town there was a judge who neither feared God nor respected And there was a widow in that town who men. kept appealing to him, ‘Give me justice against 4 my adversary.’ For a while he refused, but later he said to him- 5 self, ‘Though I neither fear God no" + }, + { + "verseNum": 10, + "text": "10 26 a told this parable: “Two men went up to the 11 temple to pray. One was a Pharisee and the other The Pharisee stood by himself a tax collector. and prayed, ‘God, I thank You that I am not like 12 other men—swindlers, evildoers, adulterers— I fast twice a or even like this tax collector. 13 week and pay tithes of all that I acquire.’ 14 But the tax collector stood at a distance, un- willing even to lift up his eyes to heaven. Instead, he beat his breast and said, ‘God, have mercy on I tell you, this man, rather than me, a sinner!’ the Pharisee, went home justified. For everyone who exalts himself will be humbled, but the one Jesus Blesses the Children who humbles himself will be exalted.”" + }, + { + "verseNum": 15, + "text": "–17) 13 14 Then little children were brought to Jesus for Him to place His hands on them and pray for them. And the disciples rebuked those who But Jesus said, “Let the little brought them. children come to Me, and do not hinder them! 15 For the kingdom of heaven belongs to such as And after He had placed His hands on these.” The Rich Young Man them, He went on from there." + }, + { + "verseNum": 18, + "text": "–30) 16 Just then a man came up to Jesus and inquired, “Teacher, what good thing must I do to obtain a 17 eternal life?” “Why do you ask Me about what is good?” Jesus replied. “There is only One who is good. If 18 you want to enter life, keep the commandments.” “Which ones?” the man asked. Jesus answered, “ ‘Do not murder, do not commit 19 adultery, do not steal, do not bear false witness, honor your father and mother, and love your b 20 neighbor as yourself.’ ” “All these I have kept,” said the young man. 21 “What do I still lack?” Jesus told him, “If you want to be perfect, go, sell your possessions and give to the poor, and you will have treasure in heaven. Then come, 22 follow Me.” When the young man heard this, he went away 23 in sorrow, because he had great wealth. 24 Then Jesus said to His disciples, “Truly I tell you, it is hard for a rich man to enter the kingdom Again I tell you, it is easier for a of heaven. camel to pass through the eye of a needle than for 25 a rich man to enter the kingdom of God.” When the disciples heard this, they were greatly astonished and asked, “Who then can be 26 saved?” Jesus looked at them and said, “With man this is impossible, but with God all things are possi- 27 ble.” “Look,” Peter replied, “we have left everything a 17 to follow You. What then will there be for us?” b 19 BYZ and TR eration" + }, + { + "verseNum": 20, + "text": ", and" + }, + { + "verseNum": 31, + "text": "–34) 17 18 As Jesus was going up to Jerusalem, He took “Look, we the twelve disciples aside and said, are going up to Jerusalem, and the Son of Man 19 will be delivered over to the chief priests and and scribes. They will condemn Him to death will deliver Him over to the Gentiles to be mocked and flogged and crucified. And on the A Mother’s Request" + }, + { + "verseNum": 35, + "text": "–43) 27 29 30 The crowd admonished them to be silent, but they cried out all the louder, “Lord, Son of David, 32 have mercy on us!” Jesus stopped and called them. “What do you 33 want Me to do for you?” He asked. “Lord,” they answered, “let our eyes be 34 opened.” Moved with compassion, Jesus touched their eyes, and at once they received their sight and The Triumphal Entry" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–10) 34 5 6" + }, + { + "verseNum": 10, + "text": ". 880 |" + }, + { + "verseNum": 11, + "text": "–27) 14 15 For it is just like a man going on a journey, who called his servants and entrusted them with his to possessions. another two talents, and to another one talent— each according to his own ability. And he went on 16 his journey. To one he gave five talents, b c 17 The servant who had received the five talents went at once and put them to work and gained 18 Likewise, the one with the two tal- five more. ents gained two more. But the servant who had received the one talent went off, dug a hole 19 in the ground, and hid his master’s money. 20 After a long time the master of those servants returned and settled accounts with them. The servant who had received the five talents came and presented five more. ‘Master,’ he said, ‘you entrusted me with five talents. See, I have gained 21 five more.’ His master replied, ‘Well done, good and faith- ful servant! You have been faithful with a few things; I will put you in charge of many things. 24 Enter into the joy of your master!’ 25 Finally, the servant who had received the one talent came and said, ‘Master, I knew that you are a hard man, reaping where you have not sown and gathering where you have not scattered seed. So I was afraid and went out and hid your talent in the ground. See, you have what belongs 26 to you.’ ‘You wicked, lazy servant!’ replied his master. ‘You knew that I reap where I have not sown and gather where I have not scattered seed. Then you should have deposited my money with the bankers, and on my return" + }, + { + "verseNum": 28, + "text": "–40 ;" + }, + { + "verseNum": 37, + "text": "| 941 19 2 3 Then Jesus entered Jericho and was And there was a man passing through. named Zacchaeus, a chief tax collector, who was He was trying to see who Jesus very wealthy. was, but could not see over the crowd because he was small in stature. So he ran on ahead and climbed a sycamore tree to see Him, since Jesus 5 was about to pass that way. 4 When Jesus came to that place, He looked up and said, “Zacchaeus, hurry down, for I must stay 6 at your house today.” 7 So Zacchaeus hurried down and welcomed Him And all who saw this began to grumble, joyfully. saying, “He has gone to be the guest of a sinful 8 man!” But Zacchaeus stood up and said to the Lord, “Look, Lord, half of my possessions I give to the poor, and if I have cheated anyone, I will repay it 9 fourfold.” 10 Jesus said to him, “Today salvation has come to this house, because this man too is a son of Abra- For the Son of Man came to seek and to ham. The Parable of the Ten Minas (Matt. 25:14–30) save the lost.” 11 12 While the people were listening to this, Jesus proceeded to tell them a parable, because He was near Jerusalem and they thought the kingdom of So He said, “A God would appear imminently. man of noble birth went to a distant country to Be- lay claim to his kingship and then return. forehand, he called ten of his servants and gave ‘Conduct business with this un- them ten minas. 14 til I return,’ he said. 13 a But his subjects hated him and sent a delega- tion after him to say, ‘We do not want this man" + }, + { + "verseNum": 38, + "text": ". He spreads the snow like wool; b He scatters the frost like ashes; He casts forth His hail like pebbles. 17 18 Who can withstand His icy blast? He sends forth His word and melts them; 19 He unleashes His winds, and the waters flow. He declares His word to Jacob, 20 His statutes and judgments to Israel. c He has done this for no other nation; they do not know His judgments. Hallelujah! Psalm 148 Praise the LORD from the Heavens" + }, + { + "verseNum": 41, + "text": "–44) and excellent in wisdom. a 29 Woe to you, O Ariel, the city of Ariel where David camped! Year upon year 2 let your festivals recur. And I will constrain Ariel, and there will be mourning and b 3 lamentation; she will be like an altar hearth I will camp in a circle around you; I will besiege you with towers and set up siege works against you. 4 before Me. You will be brought low, you will speak from the ground, and out of the dust your words will be muffled. Your voice will be like a spirit from the 5 ground; your speech will whisper out of the dust. But your many foes will be like fine dust, the multitude of the ruthless like blowing 6 chaff. Then suddenly, in an instant, you will be visited by the LORD of Hosts with thunder and earthquake and loud noise, 7 with windstorm and tempest and consuming flame of fire. All the many nations going out to battle against Ariel— even all who war against her, laying siege and attacking her— When he has leveled its surface, does he not sow caraway and scatter will be like a dream, 8 like a vision in the night, cumin? He plants wheat in rows and barley in plots, 26 and rye within its border. 27 For his God instructs and teaches him properly. Surely caraway is not threshed with a sledge, and the wheel of a cart is not rolled over the cumin. But caraway is beaten out with a stick, Lion of God a 1 Altar Hearth and cumin with a rod. like Ariel b 2 or Or verse 7 Or ; see the footnote for verse 1. as when a hungry man dreams he is eating, th" + }, + { + "verseNum": 45, + "text": "–48 ;" + }, + { + "verseNum": 46, + "text": "668 |" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–8) 22 23 When Jesus returned to the temple courts and began to teach, the chief priests and elders of the people came up to Him. “By what authority are You doing these things?” they asked. “And who a 12 gave You this authority?” d 16 the temple But he went. e 29 “I will also ask you one question,” Jesus re- plied, “and if you answer Me, I will tell you by What what authority I am doing these things. was the source of John’s baptism? Was it from heaven or from men?” 25 They deliberated among themselves and said, “If 26 we say, ‘From heaven,’ He will ask, ‘Why then did But if we say, ‘From you not believe him?’ 27 men,’ we are afraid of the people, for they all re- So they answered, gard John as a prophet.” “We do not know.” And Jesus replied, “Neither will I tell you by what The Parable of the Two Sons authority I am doing these things. 28 But what do you think? There was a man who had two sons. He went to the first one and said, 29 ‘Son, go and work today in the vineyard.’ e ‘I will not,’ he replied. But later he changed his 30 mind and went. Then the man went to the second son and told him the same thing. 31 ‘I will, sir,’ he said. But he did not go. f Which of the two did the will of his father?” “The first, ” they answered. Jesus said to them, “Truly I tell you, the tax 32 collectors and prostitutes are entering the king- For John came to you dom of God before you. in the way of righteousness, and you did not be- lieve him, but the tax collectors and prostitutes did. And" + }, + { + "verseNum": 9, + "text": "–18) 33 Listen to another parable: There was a land- owner who planted a vineyard. He put a wall around it, dug a winepress in it, and built a tower. Then he rented it out to some tenants and went 34 away on a journey. 35 When the harvest time drew near, he sent his servants to the tenants to collect his share of the fruit. But the tenants seized his servants. They 36 beat one, killed another, and stoned a third. Again, he sent other servants, more than the 37 first group. But the tenants did the same to them. Finally, he sent his son to them. ‘They will re- the temple of God spect my son,’ he said. f 31 b 13 The latter c 13 Literally" + }, + { + "verseNum": 17, + "text": "," + }, + { + "verseNum": 18, + "text": "." + }, + { + "verseNum": 19, + "text": "–26) For many are called, but few are chosen.” This is from the Lord, 43 and it is marvelous in our eyes’ ? 15 44 Therefore I tell you that the kingdom of God will be taken away from you and given to a peo- ple who will produce its fruit. He who falls on b this stone will be broken to pieces, but he on 45 whom it falls will be crushed. ” 46 When the chief priests and Pharisees heard His parables, they knew that Jesus was speaking Although they wanted to arrest about them. Him, they were afraid of the crowds, because the The Parable of the Banquet" + }, + { + "verseNum": 27, + "text": "–40) 23 24 That same day the Sadducees, who say there is no resurrection, came to Jesus and questioned Him. “Teacher,” they said, “Moses declared that if a man dies without having children, his brother is to marry the widow and raise up off- Now there were seven broth- spring for him. ers among us. The first one married and died without having children. So he left his wife to his 25 d d 24" + }, + { + "verseNum": 28, + "text": "188 |" + }, + { + "verseNum": 37, + "text": ", and" + }, + { + "verseNum": 41, + "text": "–44) 40 41 42 While the Pharisees were assembled, Jesus “What do you think about questioned them: the Christ? Whose son is He?” 43 “David’s,” they answered. Jesus said to them, “How then does David in 44 the Spirit call Him ‘Lord’? For he says: ‘The Lord said to my Lord, “Sit at My right hand until I put Your enemies under Your feet.” e ’ 45 No one was able to answer a word, and from that day on no one dared to question Him any Woes to Scribes and Pharisees further." + }, + { + "verseNum": 42, + "text": "–43," + }, + { + "verseNum": 45, + "text": "–47) delight. 38 In His teaching Jesus also said, “Watch out for the scribes. They like to walk around in long 39 robes, to receive greetings in the marketplaces, and to have the chief seats in the synagogues and the places of honor at banquets. They de- fraud widows of their houses, and for a show make lengthy prayers. These men will receive The Widow’s Offering" + }, + { + "verseNum": 47, + "text": ". Greek ; also in verse 33 886 |" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–4) greater condemnation.” 41 40 e 42 As Jesus was sitting opposite the treasury, He watched the crowd putting money into it. And many rich people put in large amounts. Then one poor widow came and put in two small cop- per coins, which amounted to a small fraction of b 31 a 30 a denarius. devour widows’ houses f 42 f" + }, + { + "verseNum": 5, + "text": "–9) e 24 As Jesus left the temple and was walking away, His disciples came up to Him to 2 point out its buildings. “Do you see all these things?” He replied. “Truly I tell you, not one stone here will be left on an- 3 other; every one will be thrown down.” While Jesus was sitting on the Mount of Olives, the disciples came to Him privately. “Tell us,” they said, “when will these things happen, and what will be the sign of Your coming and of the 4 end of the age?” 5 6 Jesus answered, “See to it that no one deceives you. For many will come in My name, claiming, ‘I am the Christ,’ and will deceive many. You will hear of wars and rumors of wars, but see to it that you are not alarmed. These things must hap- pen, but the end is still to come. Nation will rise against nation, and kingdom against kingdom. There will be famines and earthquakes in vari- ous places. All these are the beginning of birth Witnessing to All Nations pains." + }, + { + "verseNum": 6, + "text": "| 943 Even Moses demonstrates that the dead are raised, in the passage about the burning bush. For he calls the Lord ‘the God of Abraham, the He is not God of Isaac, and the God of Jacob.’ the God of the dead, but of the living, for to Him 39 all are alive.” 38 d 40 Some of the scribes answered, “Teacher, You And they did not dare to have spoken well!” Whose Son Is the Christ? question Him any further." + }, + { + "verseNum": 7, + "text": "7 “Teacher,” they asked, “when will these things happen? And what will be the sign that they are 8 about to take place?” 9 Jesus answered, “See to it that you are not de- ceived. For many will come in My name, claiming, ‘I am He,’ and, ‘The time is near.’ Do not follow When you hear of wars and rebellions, do them. not be alarmed. These things must happen first, Witnessing to All Nations but the end is not imminent.”" + }, + { + "verseNum": 10, + "text": "–19) 8 7 9 10 Then they will deliver you over to be perse- cuted and killed, and you will be hated by all At that time many nations because of My name. will fall away and will betray and hate one and many false prophets will arise another, 12 and deceive many. 11 13 Because of the multiplication of wickedness, But the one the love of most will grow cold. 14 who perseveres to the end will be saved. And this gospel of the kingdom will be preached in all the world as a testimony to all na- The Abomination of Desolation tions, and then the end will come." + }, + { + "verseNum": 20, + "text": "–24) 15 f So when you see standing in the holy place ‘the abomination of desolation,’ spoken of by the b 26 prophet Daniel (let the reader understand), e 39 desolate f 15 include See" + }, + { + "verseNum": 25, + "text": "–28) 25 26 27 So if they tell you, ‘There He is, in the wilder- ness,’ do not go out, or, ‘Here He is, in the inner For just as the light- rooms,’ do not believe it. ning comes from the east and flashes as far as the 28 west, so will be the coming of the Son of Man. Wherever there is a carcass, there the vultures 29 will gather. Immediately after the tribulation of those days: ‘The sun will be darkened, and the moon will not give its light; the stars will fall from the sky, a 30 and the powers of the heavens will be shaken. b ’ c At that time the sign of the Son of Man will ap- and all the tribes of the earth pear in heaven, will mourn. They will see the Son of Man coming 31 on the clouds of heaven with power and great And He will send out His angels with a glory. loud trumpet call, and they will gather His elect from the four winds, from one end of the heavens The Lesson of the Fig Tree to the other." + }, + { + "verseNum": 27, + "text": "," + }, + { + "verseNum": 29, + "text": "–33) 32 d Now learn this lesson from the fig tree: As a 29 soon as its branches become tender and sprout and the celestial bodies will be shaken c 30 this parable d 32 e 33 e 34 right at the door. So also, leaves, you know that summer is near. when you see all these things, you will know that He is near, Truly I tell you, 35 this generation will not pass away until all these Heaven and earth will things have happened. Readiness at Any Hour pass away, but My words will never pass away." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–6) 13 14 15 Then one of the Twelve, the one called Judas Iscariot, went to the chief priests and asked, “What are you willing to give me if I hand Him 16 over to you?” And they set out for him thirty pieces of silver. So from then on Judas looked Preparing the Passover for an opportunity to betray Jesus." + }, + { + "verseNum": 7, + "text": "–13) 17 c On the first day of the Feast of Unleavened the disciples came to Jesus and asked, Bread, “Where do You want us to prepare for You to eat 18 the Passover?” 19 He answered, “Go into the city to a certain man and tell him that the Teacher says, ‘My time is near. I will keep the Passover with My disciples at your house.’ So the disciples did as Jesus The Last Supper" + }, + { + "verseNum": 14, + "text": "–23 ; 1 Corinthians 11:17–34) 20 ” When evening came, Jesus was reclining with the twelve disciples. And while they were eat- ing, He said to them, “Truly I tell you, one of you 22 will betray Me.” They were deeply grieved and began to ask 23 Him one after another, “Surely not I, Lord?” 24 Jesus answered, “The one who has dipped his hand into the bowl with Me will betray Me. The Son of Man will go just as it is written about Him, but woe to that man by whom He is betrayed. It 25 would be better for him if he had not been born.” Then Judas, who would betray Him, said, “Surely not I, Rabbi?” 26 Jesus answered, “You have said it yourself.” While they were eating, Jesus took bread, spoke a blessing and broke it, and gave it to the 27 disciples, saying, “Take and eat; this is My body.” 28 e Then He took the cup, gave thanks, and gave it to them, saying, “Drink from it, all of you. This 29 which is poured out is My blood of the covenant, for many for the forgiveness of sins. I tell you, I will not drink of this fruit of the vine from now the new covenant Literally On the first of the e 28 c 17 See" + }, + { + "verseNum": 31, + "text": "–38 ;" + }, + { + "verseNum": 37, + "text": ". insurrectionists e 27 i 36 Or See" + }, + { + "verseNum": 38, + "text": "| 945 has been determined, but woe to that man who 23 betrays Him.” Then they began to question among them- Who Is the Greatest? selves which of them was going to do this. 24 26 A dispute also arose among the disciples as to 25 which of them should be considered the greatest. So Jesus declared, “The kings of the Gentiles lord it over them, and those in authority over But you them call themselves benefactors. shall not be like them. Instead, the greatest 27 among you should be like the youngest, and the For one who leads like the one who serves. who is greater, the one who reclines at the table or the one who serves? Is it not the one who re- 28 clines? But I am among you as one who serves. 29 30 You are the ones who have stood by Me in My And I bestow on you a kingdom, just as trials. My Father has bestowed one on Me, so that you may eat and drink at My table in My kingdom and sit on thrones, judging the twelve tribes of Jesus Predicts Peter’s Denial Israel. (Matt. 26:31–35 ;" + }, + { + "verseNum": 39, + "text": "–46) 36 Then Jesus went with His disciples to a place called Gethsemane, and He told them, “Sit here 37 while I go over there and pray.” 38 He took with Him Peter and the two sons of Zebedee and began to be sorrowful and deeply distressed. Then He said to them, “My soul is consumed with sorrow to the point of death. Stay 39 here and keep watch with Me.” Going a little farther, He fell facedown and prayed, “My Father, if it is possible, let this cup 40 pass from Me. Yet not as I will, but as You will.” 41 Then Jesus returned to the disciples and found them sleeping. “Were you not able to keep watch with Me for one hour?” He asked Peter. “Watch and pray so that you will not enter into tempta- tion. For the spirit is willing, but the body is 42 weak.” 43 A second time He went away and prayed, “My Father, if this cup cannot pass unless I drink it, may Your will be done.” And again Jesus re- turned and found them sleeping, for their eyes 44 were heavy. 45 46 Then He returned to the disciples and said, “Are you still sleeping and resting? Look, the hour is near, and the Son of Man is betrayed into Rise, let us go! See, My be- the hands of sinners. The Betrayal of Jesus trayer is approaching!”" + }, + { + "verseNum": 47, + "text": "–53 ;" + }, + { + "verseNum": 54, + "text": "–62 ;" + }, + { + "verseNum": 58, + "text": "–62) 25 Simon Peter was still standing and warming himself. So they asked him, “Aren’t you also one of His disciples?” 26 He denied it and said, “I am not.” One of the high priest’s servants, a relative of the man whose ear Peter had cut off, asked, “Didn’t I see you with Him in the garden?” a 32 See" + }, + { + "verseNum": 63, + "text": "–65 ;" + }, + { + "verseNum": 66, + "text": "–71 ;" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–5) 15 28 16 Now Simon Peter and another disciple were following Jesus. Since that disciple was known to the high priest, he also went with Jesus into the But Peter stood courtyard of the high priest. outside at the door. Then the disciple who was known to the high priest went out and spoke to 17 the doorkeeper, and brought Peter in. At this, the servant girl watching the door said to Peter, “Aren’t you also one of this man’s disci- ples?” 18 “I am not,” he answered. Because it was cold, the servants and officers were standing around a charcoal fire they had made to keep warm. And Peter was also standing Jesus before the High Priest with them, warming himself. (Matt. 26:57–68 ;" + }, + { + "verseNum": 13, + "text": "–25) 15 16 Now it was the governor’s custom at the feast to release to the crowd a prisoner of their choos- d 17 At that time they were holding a notorious ing. prisoner named Barabbas. So when the crowd had assembled, Pilate asked them, “Which one do 18 you want me to release to you: Barabbas, or Jesus For he knew it was out who is called Christ?” 19 of envy that they had handed Jesus over to him. While Pilate was sitting on the judgment seat, his wife sent him this message: “Have nothing to do with that innocent man, for I have suffered terribly in a dream today because of Him.” Barabbas c 10 Or 11:12–13. SBL and NA ; also in verse 17, but universally called in verses 20, 21, and 26 See Ps. 110:1 and Dan. 7:13. See Jer. 19:1–15, Jer. 32:6–9, and Zech. 892 |" + }, + { + "verseNum": 26, + "text": "–43 ;" + }, + { + "verseNum": 30, + "text": "; see also Rev. 6:16. LXX; Hebrew Or 4 4 d I led them with cords of kindness, Yes, he struggled with the angel and" + }, + { + "verseNum": 34, + "text": "DSS, LXX, Vulgate, and Syriac; most MT LXX the torment of the afflicted. c 15 like a lion at my hands and feet e 18 I will sing Your praises in the assembly My mouth MT; or Cited in" + }, + { + "verseNum": 35, + "text": "| 947 20 21 Caesar, and proclaiming Himself to be Christ, a 3 King.” So Pilate asked Him, “Are You the King of the Wanting to release Jesus, Pilate addressed but they kept shouting, “Crucify them again, 22 Him! Crucify Him!” Jews?” 4 “You have said so,” Jesus replied. Then Pilate said to the chief priests and the crowds, “I find no basis for a charge against this 5 man.” But they kept insisting, “He stirs up the people all over Judea with His teaching. He began in Gal- Jesus before Herod ilee and has come all the way here.” 6 7 When Pilate heard this, he asked if the man was And learning that Jesus was under a Galilean. Herod’s jurisdiction, he sent Him to Herod, who 8 himself was in Jerusalem at that time. When Herod saw Jesus, he was greatly pleased. He had wanted to see Him for a long time, be- cause he had heard about Him and was hoping to Herod questioned see Him perform a miracle. 10 Jesus at great length, but He gave no answer. 9 11 Meanwhile, the chief priests and scribes stood And even there, vehemently accusing Him. Herod and his soldiers ridiculed and mocked Him. Dressing Him in a fine robe, they sent Him 12 back to Pilate. A third time he said to them, “What evil has this man done? I have found in Him no offense worthy of death. So after I punish Him, I will re- 23 lease Him.” b But they were insistent, demanding with loud 24 25 voices for Jesus to be crucified. And their clamor So Pilate sentenced that their de- prevailed. As they had requested, he re- mand be me" + }, + { + "verseNum": 36, + "text": "36 a 37 The soldiers also mocked Him and came up to “If You are the King of offer Him sour wine. 38 the Jews,” they said, “save Yourself!” b Above Him was posted an inscription: 39 THIS IS THE KING OF THE JEWS. One of the criminals who hung there heaped abuse on Him. “Are You not the Christ?” he said. 40 “Save Yourself and us!” 41 But the other one rebuked him, saying, “Do you not even fear God, since you are under the same We are punished justly, for we are judgment? receiving what our actions deserve. But this man c Then he said, “Jesus, has done nothing wrong.” remember me when You come into Your king- 43 dom!” 42 And Jesus said to him, “Truly I tell you, today The Death of Jesus" + }, + { + "verseNum": 44, + "text": "–49) For the choirmaster. A Psalm of David. 1 2 Incline Your ear to me; come quickly to my rescue. Be my rock of refuge, 3 the stronghold of my deliverance. For You are my rock and my fortress; 4 lead me and guide me for the sake of Your name. You free me from the net laid out for me, d 5 for You are my refuge. Into Your hands I commit my spirit; You have redeemed me, O LORD, God e of truth. I hate 7 those who cling to worthless idols, but in the LORD I trust. I will be glad and rejoice in Your loving devotion, 8 for You have seen my affliction; You have known the anguish of my soul. You have not delivered me to the enemy; You have set my feet in the open. 9 Be merciful to me, O LORD, for I am in distress; my eyes fail from sorrow, 10 my soul and body as well. For my life is consumed with grief and my years with groaning; my iniquity has drained my strength, and my bones are wasting away. Among all my enemies I am a disgrace, 11 and among my neighbors even more. 12 I am dreaded by my friends— they flee when they see me on the street. I am forgotten like a dead man, out of mind. 13 I am like a broken vessel. For I hear the slander of many; there is terror on every side. 14 They conspire against me and plot to take my life. 15 But I trust in You, O LORD; I say, “You are my God.” My times are in Your hands; 16 17 deliver me from my enemies and from those who pursue me. Make Your face shine on Your servant; save me by Your loving devotion. In You, O LORD, I have taken refuge; let" + }, + { + "verseNum": 46, + "text": "; see Ex. 3:15. Or Or MT; one Hebrew manuscript, LXX, and Syriac 18 May lying lips be silenced— I said, “I will confess my transgressions to the" + }, + { + "verseNum": 50, + "text": "–56 ;" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 13, + "text": "–35) 11 12 After this, Jesus appeared in a different form to 13 two of them as they walked along in the country. And they went back and reported it to the rest, The Great Commission" + }, + { + "verseNum": 36, + "text": "–49 ; 1" + }, + { + "verseNum": 50, + "text": "–53 ;" + }, + { + "verseNum": 53, + "text": "| 949 34 There they found the Eleven and those with and saying, “The Lord them, gathered together 35 has indeed risen and has appeared to Simon!” Then the two told what had happened on the road, and how they had recognized Jesus in the Jesus Appears to the Disciples breaking of the bread." + } + ] + } + ] + }, + { + "name": "John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 4, + "text": "–6) pleases Him.” 30 29 31 32 As Jesus spoke these things, many believed in Him. So He said to the Jews who had believed Him, “If you continue in My word, you are truly My disciples. Then you will know the truth, 33 and the truth will set you free.” “We are Abraham’s descendants,” they an- swered. “We have never been slaves to anyone. 34 How can You say we will be set free?” 35 36 Jesus replied, “Truly, truly, I tell you, everyone who sins is a slave to sin. A slave does not remain in the house forever, but a son remains forever. So if the Son sets you free, you will be 37 free indeed. 38 I know you are Abraham’s descendants, but you are trying to kill Me because My word has no place within you. I speak of what I have seen in the presence of the Father, and you do what you 39 have heard from your father.” “Abraham is our father,” they replied. 40 “If you were children of Abraham,” said Jesus, “you would do the works of Abraham. But now you are trying to kill Me, a man who has told you 41 the truth that I heard from God. Abraham never did such a thing. You are doing the works of your father.” “We are not illegitimate children,” they declared. 42 “Our only Father is God Himself.” Jesus said to them, “If God were your Father, you would love Me, for I have come here from 43 God. I have not come on My own, but He sent Me. Why do you not understand what I am saying? a 54 It is because you are unable to accept My and so He passed by WH and TR before Abraham was, I am! Literally Your" + }, + { + "verseNum": 5, + "text": "–10) “Now go and sin no more.” 12 Once again, Jesus spoke to the people and said, “I am the light of the world. Whoever follows Me will never walk in the darkness, but will have the 13 light of life.” So the Pharisees said to Him, “You are testify- 14 ing about Yourself; Your testimony is not valid.” Jesus replied, “Even if I testify about Myself, My testimony is valid, because I know where I came from and where I am going. But you do not know You where I came from or where I am going. But judge according to the flesh; I judge no one. g even if I do judge, My judgment is true, because I 17 am not alone; I am with the Father who sent Me. 15 16 h 18 Even in your own Law it is written that the testimony of two men is valid. I am One who testifies about Myself, and the Father, who sent 19 Me, also testifies about Me.” “Where is Your Father?” they asked Him. “You do not know Me or My Father,” Jesus answered. “If you knew Me, you would know My 20 Father as well.” He spoke these words while teaching in the temple courts, near the treasury. Yet no one 21 seized Him, because His hour had not yet come. Again He said to them, “I am going away, and you will look for Me, but you will die in your sin. 22 Where I am going, you cannot come.” They said this to test Him, in order to have a basis for accusing Him. But Jesus bent down and 7 began to write on the ground with His finger. So the Jews began to ask, “Will He kill Himself, since He says, ‘Where I am going, you cannot 23 come’?” When t" + }, + { + "verseNum": 12, + "text": "–13) 13 14 b I have many things to write to you, but I would Instead, I prefer not to do so with pen and ink. hope to see you soon and speak with you face to face. Peace to you. The friends here send you greetings. I have written to the church about this, but Greet each of our friends there by name. a 9 I have written something to the church b 14 and we will speak mouth to mouth Literally begin a new verse (15) after face to face. Literally ; some translators Jude A Greeting from Jude" + }, + { + "verseNum": 13, + "text": "–14) shares in his evil deeds. 12 I have many things to write to you, but I would prefer not to do so with paper and ink. Instead, I so hope to come and speak with you face to face, 13 that our joy may be complete. b c The children of your elect sister send you greetings. a 8 what you have worked for b 12 mouth to mouth c 13 Amen. NE and WH Literally BYZ and TR include 3 John A Greeting from the Elder (2" + }, + { + "verseNum": 14, + "text": "–18) For the choirmaster. According to Gittith.a A Psalm of the sons of Korah. 1 How lovely is Your dwelling place, 2 O LORD of Hosts! My soul longs, even faints, for the courts of the LORD; my heart and my flesh cry out 3 for the living God. Even the sparrow has found a home, and the swallow a nest for herself, where she places her young near Your altars, 4 O LORD of Hosts, my King and my God. How blessed are those who dwell in Your house! 5 They are ever praising You. Selah Blessed are those whose strength is 8 in You, b whose hearts are set on pilgrimage. As they pass through the Valley of Baca, they make it a place of springs; even the autumn rain covers it with c pools. 6 7 8 They go from strength to strength, until each appears before God in Zion. 10 O LORD God of Hosts, hear my prayer; Selah 9 give ear, O God of Jacob. He withholds no good thing 12 from those who walk with integrity. O LORD of Hosts, how blessed is the man who trusts in You! Psalm 85 You Showed Favor to Your Land For the choirmaster. A Psalm of the sons of Korah. 1 d 2 You showed favor to Your land, O LORD; You restored Jacob from captivity. You forgave the iniquity of Your people; You covered all their sin. 3 Selah You withheld all Your fury; You turned from Your burning anger. 4 Restore us, O God of our salvation, and put away Your displeasure 5 toward us. Will You be angry with us forever? 6 Will You draw out Your anger to all generations? Will You not revive us again, 7 that Your people may rejoice" + }, + { + "verseNum": 19, + "text": "–28) 23 3 2 In those days John the Baptist came, preach- and saying, ing in the wilderness of Judea 3 “Repent, for the kingdom of heaven is near.” This is he who was spoken of through the prophet Isaiah: “A voice of one calling in the wilderness, f ‘Prepare the way for the Lord, ” make straight paths for Him.’ 4 John wore a garment of camel’s hair, with a 5 leather belt around his waist. His food was lo- d 15 custs and wild honey. People went out to him Jeremiah" + }, + { + "verseNum": 23, + "text": "and all flesh together will see it. on a high mountain. O herald of good news to Jerusalem, lift it up, Say to the cities of Judah, “Here is your God!” LXX f 9 LXX b 3 e 8 Or make straight the paths of our God Every valley shall be filled in, and every mountain and hill ; d 5 O herald of good news to Zion, go up Literally Cited in" + }, + { + "verseNum": 27, + "text": ". Literally e 35" + }, + { + "verseNum": 29, + "text": "–34) 13 14 At that time Jesus came from Galilee to the Jor- But John tried to dan to be baptized by John. prevent Him, saying, “I need to be baptized by 15 You, and do You come to me?” “Let it be so now,” Jesus replied. “It is fitting for us to fulfill all righteousness in this way.” Then 16 John permitted Him. c d and He saw As soon as Jesus was baptized, He went up out of the water. Suddenly the heavens were 17 the Spirit of God descend- opened, And a voice ing like a dove and resting on Him. from heaven said, “This is My beloved Son, in The Temptation of Jesus whom I am well pleased!”" + }, + { + "verseNum": 32, + "text": "–33." + }, + { + "verseNum": 35, + "text": "–42) 18 The tempter came to Him and said, “If You are the Son of God, tell these stones to become c 16 a 11 bread.” he saw Or i 16 in the Holy Spirit and in fire in water b 11 e 4 Or f 6 As Jesus was walking beside the Sea of Galilee, and the heavens were opened to Him He saw two brothers, Simon called Peter and his d 16 g 7 NA, BYZ, and TR h 10 Or ; see" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "2 Kings 6:25" + }, + { + "verseNum": 12, + "text": "–25) 12 a Then Jesus entered the temple courts and drove out all who were buying and selling there. He overturned the tables of the money changers and the seats of those selling doves. And He b declared to them, “It is written: ‘My house will be c But you are making it called a house of prayer.’ 14 ‘a den of robbers.’ 13 ” 15 The blind and the lame came to Him at the But the chief temple, and He healed them. priests and scribes were indignant when they saw the wonders He performed and the children shouting in the temple courts, “Hosanna to the 16 Son of David!” “Do You hear what these children are saying?” they asked. “Yes,” Jesus answered. “Have you never read: d 17 ‘From the mouths of children and infants You have ordained praise’ ?” Then He left them and went out of the city to The Barren Fig Tree" + }, + { + "verseNum": 13, + "text": "13 14 a 6 7 15 In the temple courts When the Jewish Passover was near, Jesus went up to Jerusalem. He found men selling cattle, sheep, and doves, and So He money changers seated at their tables. made a whip out of cords and drove all from the temple courts, both sheep and cattle. He poured out the coins of the money changers and over- To those selling doves He turned their tables. said, “Get these out of here! How dare you turn 17 My Father’s house into a marketplace!” b 16 His disciples remembered that it is written: 18 “Zeal for Your house will consume Me.” On account of this, the Jews demanded, “What sign can You show us to prove Your authority to 19 do these things?” Jesus answered, “Destroy this temple, and in 20 three days I will raise it up again.” “This temple took forty-six years to build,” the Jews replied, “and You are going to raise it up in 21 three days?” 22 But Jesus was speaking about the temple of His body. After He was raised from the dead, His disciples remembered that He had said this. Then they believed the Scripture and the word 23 that Jesus had spoken. 24 While He was in Jerusalem at the Passover Feast, many people saw the signs He was doing But Jesus did not en- and believed in His name. He trust Himself to them, for He knew them all. did not need any testimony about man, for He Jesus and Nicodemus knew what was in a man." + }, + { + "verseNum": 17, + "text": "tremble continually and Vulgate); literally may their prosperity be a trap e 25 Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–21) in the land of the Philistines for a long time. 22 Some time later God tested Abraham and said to him, “Abraham!” 2 “Here I am,” he answered. “Take your son,” God said, “your only son Isaac, whom you love, and go to the land of Moriah. Of- fer him there as a burnt offering on one of the 3 mountains, which I will show you.” So Abraham got up early the next morning, sad- dled his donkey, and took along two of his serv- ants and his son Isaac. He split the wood for a burnt offering and set out for the place God had 4 designated. 5 On the third day Abraham looked up and saw “Stay here with the the place in the distance. donkey,” Abraham told his servants. “The boy and I will go over there to worship, and then we 6 will return to you.” Abraham took the wood for the burnt offering and placed it on his son Isaac. He himself carried the fire and the sacrificial knife, and the two of them walked on together. c 12 well of seven Cited in" + }, + { + "verseNum": 11, + "text": "–24) know My Father as well. From now on you do 8 know Him and have seen Him.” Philip said to Him, “Lord, show us the Father, 9 and that will be enough for us.” 31 32 When Judas had gone out, Jesus said, “Now the Son of Man is glorified, and God is glorified in Him. God will also glorify the Son in Himself—and will glorify Him 33 at once. If God is glorified in Him, a Little children, I am with you only a little while longer. You will look for Me, and as I said to the Jews, so now I say to you: ‘Where I am going, you 34 cannot come.’ 35 A new commandment I give you: Love one an- other. As I have loved you, so you also must love one another. By this everyone will know that Jesus Predicts Peter’s Denial you are My disciples, if you love one another.” (Matt. 26:31–35 ;" + }, + { + "verseNum": 22, + "text": "| 1097 18 Children, it is the last hour; and just as you have heard that the antichrist is coming, so now 19 many antichrists have appeared. This is how we know it is the last hour. They went out from us, but they did not belong to us. For if they had be- longed to us, they would have remained with us. But their departure made it clear that none of 20 them belonged to us. a 21 22 You, however, have an anointing from the Holy One, and all of you know the truth. I have not written to you because you lack knowledge of the truth, but because you have it, and because no lie Who is the liar, if it is not comes from the truth. the one who denies that Jesus is the Christ? This is the antichrist, who denies the Father and the Son. Whoever denies the Son does not have the Father, but whoever confesses the Son has Remain in Christ the Father as well. 24 23 As for you, let what you have heard from the beginning remain in you. If it does, you will also remain in the Son and in the Father. And this is the promise that He Himself made to us: eternal 26 life. 25 27 I have written these things to you about those who are trying to deceive you. And as for you, the anointing you received from Him remains in you, and you do not need anyone to teach you. But just as His true and genuine anointing teaches you about all things, so remain in Him as 28 you have been taught. b And now, little children, remain in Christ, so that when He appears, we may be confident and 29 unashamed before Him at His com" + }, + { + "verseNum": 23, + "text": "15 23 16 24 keep His commandments and do what is pleasing And this is His commandment: in His sight. that we should believe in the name of His Son, Je- sus Christ, and we should love one another just Whoever keeps His com- as He commanded us. mandments remains in God, and God in him. And by this we know that He remains in us: by the Testing the Spirits Spirit He has given us. If anyone confesses that Jesus is the Son of God, God abides in him, and he in God. And we have come to know and believe the love that God has for us. God is love; whoever abides in love In this way, love abides in God, and God in him. has been perfected among us, so that we may have confidence on the day of judgment; for in 18 this world we are just like Him. 17 4 2 Beloved, do not believe every spirit, but test the spirits to see whether they are from God. For many false prophets have gone out into the By this you will know the Spirit of God: world. Every spirit that confesses that Jesus Christ has and every spirit come in the flesh is from God, is not from God. This that does not confess Jesus is the spirit of the antichrist, which you have heard is coming and which is already in the 4 world at this time. 3 a 5 You, little children, are from God and have over- come them, because greater is He who is in you They are of the than he who is in the world. world. That is why they speak from the world’s We perspective, and the world listens to them. are from God. Whoever knows God listens to us; whoever is n" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 26, + "text": "| 953 26 Then a dispute arose between John’s disciples and a certain Jew over the issue of ceremonial So John’s disciples came to him and washing. said, “Look, Rabbi, the One who was with you be- yond the Jordan, the One you testified about—He 27 is baptizing, and everyone is going to Him.” 28 29 John replied, “A man can receive only what is You yourselves can given him from heaven. testify that I said, ‘I am not the Christ, but am sent ahead of Him.’ The bride belongs to the bride- groom. The friend of the bridegroom stands and listens for him, and is overjoyed to hear the bridegroom’s voice. That joy is mine, and it is He must increase; I must de- now complete. 31 crease. 30 b 32 The One who comes from above is above all. The one who is from the earth belongs to the earth and speaks as one from the earth. The One He testi- who comes from heaven is above all. 33 fies to what He has seen and heard, yet no one 34 accepts His testimony. Whoever accepts His For testimony has certified that God is truthful. the One whom God has sent speaks the words of 35 God, for God gives the Spirit without limit. 36 The Father loves the Son and has placed all Whoever believes in the things in His hands. Son has eternal life. Whoever rejects the Son will not see life. Instead, the wrath of God remains on Jesus and the Samaritan Woman him.” c 4 d 2 When Jesus realized that the Pharisees were aware He was gaining and baptizing more 3 (although it was not Jesus disciples than John He left Judea wh" + }, + { + "verseNum": 27, + "text": "The Disciples Return and Marvel 46 27 Just then His disciples returned and were sur- prised that He was speaking with a woman. But no one asked Him, “What do You want from her?” 28 or “Why are You talking with her?” 29 Then the woman left her water jar, went back into the town, and said to the people, “Come, 30 see a man who told me everything I ever did. Could this be the Christ?” So they left the town 31 and made their way toward Jesus. Meanwhile the disciples urged Him, “Rabbi, 32 eat something.” But He told them, “I have food to eat that you 33 know nothing about.” So the disciples asked one another, “Could 34 someone have brought Him food?” 35 Jesus explained, “My food is to do the will of Do Him who sent Me and to finish His work. you not say, ‘There are still four months until the harvest’? I tell you, lift up your eyes and look at 36 the fields, for they are ripe for harvest. a 37 38 Already the reaper draws his wages and gath- ers a crop for eternal life, so that the sower and the reaper may rejoice together. For in this case the saying ‘One sows and another reaps’ is I sent you to reap what you have not true. worked for; others have done the hard work, and Many Samaritans Believe now you have taken up their labor.” 39 Many of the Samaritans from that town believed in Jesus because of the woman’s testi- mony, “He told me everything I ever did.” So when the Samaritans came to Him, they asked 41 Him to stay with them, and He stayed two days. 40 42 And many more believe" + }, + { + "verseNum": 43, + "text": "–54) b 5 6 c When Jesus had entered Capernaum, a centu- “Lord, my lies at home, paralyzed and in terrible rion came and pleaded with Him, servant 7 agony.” 8 “I will go and heal him,” Jesus replied. 22 Not everyone who says to Me, ‘Lord, Lord,’ will enter the kingdom of heaven, but only he who Many will does the will of My Father in heaven. say to Me on that day, ‘Lord, Lord, did we not prophesy in Your name, and in Your name drive 23 out demons and perform many miracles?’ Then I will tell them plainly, ‘I never knew you; The House on the Rock" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 21, + "text": "| 1099 a 14 I have written these things to you who believe in the name of the Son of God, so that you may And this is the know that you have eternal life. confidence that we have before Him: If we ask 15 anything according to His will, He hears us. And if we know that He hears us in whatever we ask, we know that we already possess what 16 we have asked of Him. If anyone sees his brother committing a sin not leading to death, he should ask God, who will give life to those who commit this kind of sin. There is c b We know that anyone born of God does not keep on sinning; the One who was born of God 19 protects him, cannot touch and the evil one We know that we are of God, and that the him. 20 whole world is under the power of the evil one. And we know that the Son of God has come and has given us understanding, so that we may know Him who is true; and we are in Him who is true—in His Son Jesus Christ. He is the true God 21 and eternal life. d Little children, keep yourselves from idols. a 13 tects himself BYZ and TR include or and that you may believe in the name of the Son of God b 18 the one who was born of God pro- God protects the one born of Him c 18 evil . d 21 Or Amen. Or ; similarly in verse 19 BYZ and TR include 2 John A Greeting from the Elder (3" + }, + { + "verseNum": 29, + "text": "and" + }, + { + "verseNum": 39, + "text": "–47) marries a divorced woman commits adultery. 19 20 Now there was a rich man dressed in purple and fine linen, who lived each day in joyous 21 splendor. And a beggar named Lazarus lay at his gate, covered with sores and longing to be fed with the crumbs that fell from the rich man’s 22 table. Even the dogs came and licked his sores. 23 also died and was buried. In Hades, where he was in torment, he looked up and saw Abraham 24 from afar, with Lazarus by his side. So he cried out, ‘Father Abraham, have mercy on me and send Lazarus to dip the tip of his fin- ger in water and cool my tongue. For I am in 25 agony in this fire.’ But Abraham answered, ‘Child, remember that during your lifetime you received your good things, while Lazarus received bad things. But 26 now he is comforted here, while you are in agony. And besides all this, a great chasm has been fixed between us and you, so that even those who wish cannot cross from here to you, nor can any- 27 one cross from there to us.’ 28 ‘Then I beg you, father,’ he said, ‘send Lazarus to my father’s house, for I have five brothers. Let him warn them, so that they will not also end 29 up in this place of torment.’ But Abraham replied, ‘They have Moses and 30 the Prophets; let your brothers listen to them.’ ‘No, father Abraham,’ he said, ‘but if someone 31 is sent to them from the dead, they will repent.’ Then Abraham said to him, ‘If they do not lis- ten to Moses and the Prophets, they will not be Temptations and Trespasses pers" + }, + { + "verseNum": 47, + "text": "| 955 But he answered, “The man who made me well 12 told me, ‘Pick up your mat and walk.’” “Who is this man who told you to pick it up and 13 walk?” they asked. But the man who was healed did not know who it was, for Jesus had slipped away while the 14 crowd was there. Afterward, Jesus found the man at the temple and said to him, “See, you have been made well. Stop sinning, or something worse may happen to 15 you.” And the man went away and told the Jews that The Father and the Son it was Jesus who had made him well. 16 Now because Jesus was doing these things on 17 the Sabbath, the Jews began to persecute Him. But Jesus answered them, “To this very day My 18 Father is at His work, and I too am working.” Because of this, the Jews tried all the harder to kill Him. Not only was He breaking the Sabbath, but He was even calling God His own Father, 19 making Himself equal with God. 20 So Jesus replied, “Truly, truly, I tell you, the Son can do nothing by Himself, unless He sees the Fa- ther doing it. For whatever the Father does, the The Father loves the Son and Son also does. shows Him all He does. And to your amazement, 21 He will show Him even greater works than these. For just as the Father raises the dead and gives them life, so also the Son gives life to whom He 22 wishes. 23 Furthermore, the Father judges no one, but has assigned all judgment to the Son, so that all may honor the Son just as they honor the Father. Whoever does not honor the Son does not honor 24 the Father" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–15) 13 14 When Jesus heard about John, He withdrew by boat privately to a solitary place. But the crowds found out about it and followed Him on foot from When He stepped ashore and saw a the towns. large crowd, He had compassion on them and 15 healed their sick. When evening came, the disciples came to Him and said, “This is a desolate place, and the hour is already late. Dismiss the crowds so they can go 16 to the villages and buy themselves some food.” “They do not need to go away,” Jesus replied. 17 “You give them something to eat.” “We have here only five loaves of bread and two fish,” they answered. 876 |" + }, + { + "verseNum": 16, + "text": "–21) 22 23 Immediately Jesus made the disciples get into the boat and go on ahead of Him to the other side, while He dismissed the crowds. After He had dismissed them, He went up on the mountain by a Himself to pray. When evening came, He was from there alone, land, buffeted by the waves because the wind 25 was against it. but the boat was already far 24 b 26 During the fourth watch of the night, Jesus When went out to them, walking on the sea. the disciples saw Him walking on the sea, they were terrified. “It’s a ghost!” they said, and cried 27 out in fear. But Jesus spoke up at once: “Take courage! It is 28 I. Do not be afraid.” “Lord, if it is You,” Peter replied, “command me 29 to come to You on the water.” “Come,” said Jesus. 30 Then Peter got down out of the boat, walked on the water, and came toward Jesus. But when he was afraid he saw the strength of the wind, 31 and, beginning to sink, cried out, “Lord, save me!” c Immediately Jesus reached out His hand and took hold of Peter. “You of little faith,” He said, 32 “why did you doubt?” 33 36 surrounding region. People brought all the sick and begged Him just to let them touch to Him the fringe of His cloak. And all who touched Him The Tradition of the Elders" + }, + { + "verseNum": 31, + "text": "Or Hebrew Or 44 63 He turned their rivers to blood, Fire consumed His young men, 45 and from their streams they could not 64 and their maidens were left without" + }, + { + "verseNum": 39, + "text": "and" + }, + { + "verseNum": 45, + "text": "Cited in" + }, + { + "verseNum": 59, + "text": "–66) and carried our diseases.” 18 b When Jesus saw a large crowd around Him, He 19 gave orders to cross to the other side of the sea. And one of the scribes came to Him and said, 20 “Teacher, I will follow You wherever You go.” Jesus replied, “Foxes have dens and birds of the air have nests, but the Son of Man has no 21 place to lay His head.” 29 “What do You want with us, Son of God?” they shouted. “Have You come here to torture us be- 30 fore the appointed time?” 31 In the distance a large herd of pigs was feeding. So the demons begged Jesus, “If You drive us 32 out, send us into the herd of pigs.” “Go!” He told them. So they came out and went into the pigs, and the whole herd rushed down the steep bank into the sea and died in the 33 waters. Those tending the pigs ran off into the town 34 and reported all this, including the account of the Then the whole town demon-possessed men. went out to meet Jesus. And when they saw Him, Jesus Heals a Paralytic they begged Him to leave their region." + }, + { + "verseNum": 67, + "text": "–71) 28 13 When Jesus came to the region of Caesarea Philippi, He questioned His disciples: “Who do 14 people say the Son of Man is?” They replied, “Some say John the Baptist; oth- ers say Elijah; and still others, Jeremiah or one of 15 the prophets.” “But what about you?” Jesus asked. “Who do 16 you say I am?” Simon Peter answered, “You are the Christ, the 17 Son of the living God.” a 18 Jesus replied, “Blessed are you, Simon son of Jonah! For this was not revealed to you by flesh And I and blood, but by My Father in heaven. tell you that you are Peter, and on this rock I will build My church, and the gates of Hades will not prevail against it. I will give you the keys of the kingdom of heaven. Whatever you bind on earth will be bound in heaven, and whatever you loose 20 on earth will be loosed in heaven.” 19 Then He admonished the disciples not to tell Christ’s Passion Foretold anyone that He was the Christ." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 3, + "text": "| 957 58 so also the one who feeds on Me will live because This is the bread that came down from of Me. heaven. Unlike your fathers, who ate the manna and died, the one who eats this bread will live Many Disciples Turn Back forever.” (Matt. 8:18–22 ;" + }, + { + "verseNum": 4, + "text": "4 For no one who wants to works You are doing. be known publicly acts in secret. Since You are 5 doing these things, show Yourself to the world.” For even His own brothers did not believe in 6 Him. Therefore Jesus told them, “Although your time 7 is always at hand, My time has not yet come. The world cannot hate you, but it hates Me, be- Go up to going up to this cause I testify that its works are evil. the feast on your own. I am not 9 feast, because My time has not yet come.” 10 8 a Having said this, Jesus remained in Galilee. But after His brothers had gone up to the feast, 11 He also went—not publicly, but in secret. So the Jews were looking for Him at the feast 12 and asking, “Where is He?” Many in the crowds were whispering about Him. Some said, “He is a good man.” 13 But others replied, “No, He deceives the people.” Yet no one would speak publicly about Him for 14 fear of the Jews. 15 up to the temple courts b About halfway through the feast, Jesus went and began to teach. The Jews were amazed and asked, “How did this man attain such learning without having 16 studied?” 17 18 “My teaching is not My own,” Jesus replied. “It comes from Him who sent Me. If anyone de- sires to do His will, he will know whether My teaching is from God or whether I speak on My own. He who speaks on his own authority seeks his own glory, but He who seeks the glory of the One who sent Him is a man of truth; in Him there is no falsehood. Has not Moses given you the law? Yet not one of you keeps" + }, + { + "verseNum": 53, + "text": "through" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 11, + "text": ". and were convicted by their conscience, g 16 where are they e 10 and ; d 9 See" + }, + { + "verseNum": 12, + "text": "–29) things so that our 5 joy may be complete. 4 a 6 And this is the message we have heard from Him and announce to you: God is light, and in Him there is no darkness at all. If we say we b 7 have fellowship with Him yet walk in the dark- ness, we lie and do not practice the truth. But if we walk in the light as He is in the light, we have fellowship with one another, and the blood 8 of Jesus His Son cleanses us from all sin. 9 If we say we have no sin, we deceive ourselves, and the truth is not in us. If we confess our sins, He is faithful and just to forgive us our sins and If we to cleanse us from all unrighteousness. say we have not sinned, we make Him out to be a Jesus Our Advocate liar, and His word is not in us. 10 2 My little children, I am writing these things to you so that you will not sin. But if anyone does sin, we have an advocate before the Fa- c He Him- ther—Jesus Christ, the Righteous One. self is the atoning sacrifice for our sins, and not only for ours but also for the sins of the whole 3 world. 2 4 By this we can be sure that we have come to If know Him: if we keep His commandments. anyone says, “I know Him,” but does not keep His a 4 commandments, he is a liar, and the truth is not your But b 7 c 2 But if anyone keeps His word, the love of in him. 6 God has been truly perfected in him. By this we Whoever claims to know that we are in Him: A New Commandment abide in Him must walk as Jesus walked. 7 8 Beloved, I am not writing to you a new com- mandment, bu" + }, + { + "verseNum": 24, + "text": "| 959 But still others asked, “How can the Christ come Doesn’t the Scripture say that the from Galilee? Christ will come from the line of David and from 43 Bethlehem, the village where David lived? ” a 44 So there was division in the crowd because of Some of them wanted to seize Him, but Jesus. The Unbelief of the Jewish Leaders no one laid a hand on Him. 45 Then the officers returned to the chief priests and Pharisees, who asked them, “Why didn’t you 46 bring Him in?” “Never has anyone spoken like this man!” the 47 officers answered. 48 49 “Have you also been deceived?” replied the “Have any of the rulers or Pharisees But this crowd that does not Pharisees. believed in Him? 50 know the law—they are under a curse.” 51 Nicodemus, who had gone to Jesus earlier and who himself was one of them, asked, “Does our law convict a man without first hearing from him 52 to determine what he has done?” b “Aren’t you also from Galilee?” they replied. “Look into it, and you will see that no prophet 53 comes out of Galilee.” The Woman Caught in Adultery Then each went to his own home. 8 2 But Jesus went to the Mount of Olives. c 4 Early in the morning He went back into the 3 temple courts. All the people came to Him, and He sat down to teach them. The scribes and Pharisees, however, brought to Him a woman caught in adultery. They made her stand before and said, “Teacher, this woman was them In the Law Moses caught in the act of adultery. commanded us to stone such a woman. So what 6 do You s" + }, + { + "verseNum": 25, + "text": "25 “Who are You?” they asked. 26 “Just what I have been telling you from the begin- ning,” Jesus replied. “I have much to say about you and much to judge. But the One who sent Me is truthful, and what I have heard from Him, I tell 27 the world.” 28 They did not understand that He was telling them about the Father. So Jesus said, “When you have lifted up the Son of Man, then you will know that I am He, and that I do nothing on My own, but speak exactly what the Father has taught Me. He who sent Me is with Me. He has not left Me alone, because I always do what The Truth Will Set You Free (2" + }, + { + "verseNum": 30, + "text": "–47) 4 5 6 I was overjoyed to find some of your children walking in the truth, just as the Father has com- And now I urge you, dear lady—not manded us. as a new commandment to you, but one we have had from the beginning—that we love one an- And this is love, that we walk according other. to His commandments. This is the very com- mandment you have heard from the beginning, that you must walk in love. 8 For many deceivers have gone out into the world, refusing to confess the coming of Jesus Christ in the flesh. Any such person is the de- a Watch yourselves, so ceiver and the antichrist. that you do not lose what we have worked for, Anyone but that you may be fully rewarded. who runs ahead without remaining in the teach- ing of Christ does not have God. Whoever re- mains in His teaching has both the Father and the 10 Son. 9 11 If anyone comes to you but does not bring this teaching, do not receive him into your home or even greet him. Whoever greets such a person Conclusion (3" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 38, + "text": "| 961 son, the one you say was born blind? So how is it 20 that he can now see?” 21 His parents answered, “We know he is our son, But how he and we know he was born blind. can now see or who opened his eyes, we do not know. Ask him. He is old enough to speak for 22 himself.” His parents said this because they were afraid of the Jews. For the Jews had already determined that anyone who confessed Jesus as the Christ That was would be put out of the synagogue. 24 why his parents said, “He is old enough. Ask him.” 23 So a second time they called for the man who had been blind and said, “Give glory to God! We 25 know that this man is a sinner.” He answered, “Whether He is a sinner I do not know. There is one thing I do know: I was blind, 26 but now I see!” “What did He do to you?” they asked. “How did 27 He open your eyes?” He replied, “I already told you, and you did not listen. Why do you want to hear it again? Do you 28 also want to become His disciples?” Then they heaped insults on him and said, 29 “You are His disciple; we are disciples of Moses. We know that God spoke to Moses, but we do 30 not know where this man is from.” 31 “That is remarkable indeed!” the man said. “You do not know where He is from, and yet He opened my eyes. We know that God does not listen to sinners, but He does listen to the one who worships Him and does His will. Never before has anyone heard of opening the eyes of a man born blind. If this man were not from God, 34 He could do no such thing.” 33 32" + }, + { + "verseNum": 39, + "text": "39 Then Jesus declared, “For judgment I have come into this world, so that the blind may see 40 and those who see may become blind.” a Some of the Pharisees who were with Him heard this, and they asked Him, “Are we blind 41 too?” “If you were blind,” Jesus replied, “you would not be guilty of sin. But since you claim you can Jesus the Good Shepherd see, your guilt remains.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–21) 1 A Psalm of David. a The LORD is my shepherd; 2 I shall not want. 3 He makes me lie down in green pastures; He leads me beside quiet waters. He restores my soul; He guides me in the paths of 4 righteousness for the sake of His name. b Even though I walk through the valley of the shadow of death, I will fear no evil, for You are with me; 5 Your rod and Your staff, they comfort me. You prepare a table before me in the presence of my enemies. You anoint my head with oil; 3 4 5 d The earth is the LORD’s, and the fullness 2 thereof, the world and all who dwell therein. For He has founded it upon the seas and established it upon the waters. Who may ascend the hill of the LORD? Who may stand in His holy place? e He who has clean hands and a pure heart, who does not lift up his soul to an idol or swear deceitfully. He will receive blessing from the LORD and vindication from the God of his f salvation. 6 Such is the generation of those who seek Him, Selah who seek Your face, O God of Jacob. 7 Lift up your heads, O gates! 8 Be lifted up, O ancient doors, that the King of Glory may enter! Who is this King of Glory? 9 The LORD strong and mighty, the LORD mighty in battle. Lift up your heads, O gates! 10 Be lifted up, O ancient doors, that the King of Glory may enter! Who is He, this King of Glory? The LORD of Hosts— He is the King of Glory. Psalm 25 To You I Lift Up My Soul Selah Of David. g 1 2 To You, O LORD, I lift up my soul; in You, my God, I trust. Do not let me be put to sha" + }, + { + "verseNum": 34, + "text": "save them from the hand of the wicked. in Joseph quarreling ; see" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 34, + "text": "| 963 16 b Then Thomas called Didymus said to his fel- low disciples, “Let us also go, so that we may die Jesus Comforts Martha and Mary with Him.” 17 18 c 19 away, When Jesus arrived, He found that Lazarus had Now Beth- already spent four days in the tomb. any was near Jerusalem, a little less than two and many of the Jews had come miles 20 to Martha and Mary to console them in the loss So when Martha heard that Je- of their brother. sus was coming, she went out to meet Him, but 21 Mary stayed at home. 22 Martha said to Jesus, “Lord, if You had been But here, my brother would not have died. even now I know that God will give You whatever 23 You ask of Him.” 24 “Your brother will rise again,” Jesus told her. Martha replied, “I know that he will rise again 25 in the resurrection at the last day.” 26 Jesus said to her, “I am the resurrection and the life. Whoever believes in Me will live, even And everyone who lives and though he dies. believes in Me will never die. Do you believe 27 this?” “Yes, Lord,” she answered, “I believe that You are the Christ, the Son of God, who was to come 28 into the world.” After Martha had said this, she went back and called her sister Mary aside to tell her, “The Teacher is here and is asking for you.” And when Mary heard this, she got up quickly and 30 went to Him. 29 Now Jesus had not yet entered the village, but 31 was still at the place where Martha had met Him. When the Jews who were in the house consol- ing Mary saw how quickly she got up a" + }, + { + "verseNum": 35, + "text": "35 36 Jesus wept. 37 Then the Jews said, “See how He loved him!” But some of them asked, “Could not this man who opened the eyes of the blind also have kept Jesus Raises Lazarus Lazarus from dying?”" + }, + { + "verseNum": 38, + "text": "–44) 36 c In Joppa there was a disciple named Tabitha (which is translated as Dorcas), who was always 37 occupied with works of kindness and charity. At that time, however, she became sick and died, and her body was washed and placed in an Since Lydda was near Joppa, the upper room. disciples, hearing that Peter was there, sent two 39 men to urge him, “Come to us without delay.” 38 So Peter got up and went with them. On his ar- rival, they took him to the upper room. All the widows stood around him, weeping and showing him the tunics and other clothing that Dorcas had 40 made while she was still with them. Then Peter sent them all out of the room. He knelt down and prayed, and turning toward her body, he said, “Tabitha, get up!” She opened her eyes, and seeing Peter, she sat up. Peter took her by the hand and helped her up. Then he called the saints and widows and presented her 42 to them alive. 41 43 This became known all over Joppa, and many And Peter stayed people believed in the Lord. for several days in Joppa with a tanner named Cornelius Sends for Peter Simon. 10 2 At Caesarea there was a man named Cor- nelius, a centurion in what was called the He and all his household were Italian Regiment. devout and God-fearing. He gave generously to d One day the people and prayed to God regularly. he had a clear vision of at about the ninth hour, an angel of God who came to him and said, “Cor- 4 nelius!” 3 Cornelius stared at him in fear and asked, “What is it, Lord?” 5 The angel" + }, + { + "verseNum": 45, + "text": "–57) 26 When Jesus had finished saying all these “You know things, He told His disciples, that the Passover is two days away, and the Son 3 of Man will be handed over to be crucified.” 4 At that time the chief priests and elders of the people assembled in the courtyard of the high and they con- priest, whose name was Caiaphas, spired to arrest Jesus covertly and kill Him. “But not during the feast,” they said, “or there may be Jesus Anointed at Bethany a riot among the people.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8) 6 5 a 7 While Jesus was in Bethany in the home of Simon the Leper, a woman came to Him with an alabaster jar of expensive perfume, which she 8 poured on His head as He reclined at the table. 9 When the disciples saw this, they were indig- This perfume nant and asked, “Why this waste? could have been sold at a high price, and the 10 money given to the poor.” 12 b to Me. The poor you will always have with By but you will not always have Me. you, pouring this perfume on Me, she has prepared My body for burial. Truly I tell you, wherever this gospel is preached in all the world, what she Judas Agrees to Betray Jesus has done will also be told in memory of her.”" + }, + { + "verseNum": 3, + "text": ". b 16 Didymus He was was the one having anointed the Lord with fragrant oil and having wiped His feet ; that is, approximately 1.72 miles or 2.78 kilometers Or 964 |" + }, + { + "verseNum": 12, + "text": "–19) for now I keep watch with My own eyes. 9 Rejoice greatly, O Daughter of Zion! Shout in triumph, O Daughter of This is what the LORD of Hosts says: “In those days ten men from the nations of every tongue will tightly grasp the robe of a Jew, saying, ‘Let us go with you, for we have heard that God is with a 1 you.’ leader Or for the eye of the LORD is on all men and all the tribes of Israel ” righteous and endowed with salvation d 9 e 9 Jerusalem! d See, your King comes to you, righteous and victorious, humble and riding on a donkey, b 4 on a colt, the foal of a donkey. strike down her power on the sea e Or Or Cited in" + }, + { + "verseNum": 13, + "text": ". 19:38, and" + }, + { + "verseNum": 15, + "text": "c 7 like a Or 854 |" + }, + { + "verseNum": 32, + "text": "–33. Then they led Jesus away from Caiaphas into the Praetorium. By now it was early morning, and the Jews did not enter the Praetorium, to avoid being defiled and unable to eat the 29 Passover. So Pilate went out to them and asked, “What 30 accusation are you bringing against this man?” “If He were not a criminal,” they replied, “we 31 would not have handed Him over to you.” “You take Him and judge Him by your own law,” Pilate told them. 32 “We are not permitted to execute anyone,” the This was to fulfill the word that Jews replied. a Jesus had spoken to indicate the kind of death He 33 was going to die. Pilate went back into the Praetorium, sum- moned Jesus, and asked Him, “Are You the King 34 of the Jews?” “Are you saying this on your own,” Jesus asked, 35 “or did others tell you about Me?” “Am I a Jew?” Pilate replied. “Your own people and chief priests handed You over to me. What 36 have You done?” Jesus answered, “My kingdom is not of this world; if it were, My servants would fight to pre- vent My arrest by the Jews. But now My kingdom 37 is not of this realm.” “Then You are a king!” Pilate said. “You say that I am a king,” Jesus answered. “For this reason I was born and have come into the world, to testify to the truth. Everyone who be- 38 longs to the truth listens to My voice.” “What is truth?” Pilate asked. 39 And having said this, he went out again to the Jews and told them, “I find no basis for a charge against Him. But it is your custom that I release to you one" + }, + { + "verseNum": 38, + "text": "and" + }, + { + "verseNum": 40, + "text": ", and" + }, + { + "verseNum": 41, + "text": "41 42 9 Isaiah said these things because he saw Jesus’ glory and spoke about Him. Nevertheless, many of the leaders believed in Him. But because of the Pharisees they did not confess Him, for 43 fear that they would be put out of the synagogue. For they loved praise from men more than 44 praise from God. “Then, Lord,” Simon Peter replied, “not only my 10 feet, but my hands and my head as well!” 11 Jesus told him, “Whoever has already bathed needs only to wash his feet, and he will be com- pletely clean. And you are clean, though not all of For He knew who would betray Him. you.” 12 That is why He said, “Not all of you are clean.” 46 45 Then Jesus cried out, “Whoever believes in Me does not believe in Me alone, but in the One who sent Me. And whoever sees Me sees the One who sent Me. I have come into the world as a light, so that no one who believes in Me should 47 remain in darkness. As for anyone who hears My words and does not keep them, I do not judge him. For I have not 48 come to judge the world, but to save the world. There is a judge for the one who rejects Me and does not receive My words: The word that I have 49 spoken will judge him on the last day. 50 I have not spoken on My own, but the Father who sent Me has commanded Me what to say and And I know that His command how to say it. leads to eternal life. So I speak exactly what the Jesus Washes His Disciples’ Feet Father has told Me to say.” 13 It was now just before the Passover Feast, and Jesus knew that His hour" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 16, + "text": "See Ps. 35:19, Ps. 38:19, and Ps. 69:4. Or or or ; Greek 4 because they have not known the Father or Me. But I have told you these things so that when their hour comes, you will remember that I told you about them. I did not tell you these things The Promise of the Holy Spirit from the beginning, because I was with you." + }, + { + "verseNum": 18, + "text": "–30) For the choirmaster. A Psalm of David. 1 Blessed is the one who cares for the poor; the LORD will deliver him in the day 2 of trouble. The LORD will protect and preserve him; He will bless him in the land 3 and refuse to give him over to the will of his foes. O LORD, do not withhold Your mercy The LORD will sustain him on his bed of 4 illness and restore him from his bed of sickness. I said, “O LORD, be gracious to me; 5 heal me, for I have sinned against You.” My enemies say with malice: 6 “When will he die and be forgotten?” My visitor speaks falsehood; 7 8 he gathers slander in his heart; he goes out and spreads it abroad. All who hate me whisper against me; they imagine the worst for me: “A vile disease has been poured into him; 9 he will never get up from where he lies!” Even my close friend whom I trusted, the one who shared my bread, has lifted up his heel against me. a 10 But You, O LORD, be gracious to me and raise 11 me up, that I may repay them. 12 By this I know that You delight in me, for my enemy does not triumph over me. In my integrity You uphold me 13 and set me in Your presence forever. Blessed be the LORD, the God of Israel, from everlasting to everlasting. Amen and Amen. from me; 12 Your loving devotion and faithfulness will always guard me. For evils without number surround me; my sins have overtaken me, so that I cannot see. They are more than the hairs of my 13 head, and my heart has failed within me. Be pleased, O LORD, to deliver me; hurry, O LOR" + }, + { + "verseNum": 31, + "text": "–35 ; 1" + }, + { + "verseNum": 36, + "text": "–38) 31 Then Jesus said to them, “This very night you will all fall away on account of Me. For it is written: ‘I will strike the Shepherd, a 32 and the sheep of the flock will be scattered.’ But after I have risen, I will go ahead of you 33 into Galilee.” Peter said to Him, “Even if all fall away on 34 account of You, I never will.” “Truly I tell you,” Jesus declared, “this very night, before the rooster crows, you will deny Me 35 three times.” Peter replied, “Even if I have to die with You, I will never deny You.” And all the other disciples Jesus Prays at Gethsemane said the same thing." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 15, + "text": "–26) 5 Now, however, I am going to Him who sent Me; 6 yet none of you asks Me, ‘Where are You going?’ Instead, your hearts are filled with sorrow be- But I tell you cause I have told you these things. the truth, it is for your benefit that I am going will not away. Unless I go away, the Advocate 8 come to you; but if I go, I will send Him to you. 7 a 10 And when He comes, He will convict the world 9 in regard to sin and righteousness and judgment: in regard to sin, because they do not believe in Me; in regard to righteousness, because I am going to the Father and you will no longer see and in regard to judgment, because the Me; 12 prince of this world has been condemned. 11 13 14 I still have much to tell you, but you cannot yet bear to hear it. However, when the Spirit of truth comes, He will guide you into all truth. For He will not speak on His own, but He will speak what He hears, and He will declare to you what is He will glorify Me by taking from to come. Every- what is Mine and disclosing it to you. thing that belongs to the Father is Mine. That is why I said that the Spirit will take from what is 16 Mine and disclose it to you. 15 b In a little while you will see Me no more, and Grief Will Turn to Joy then after a little while you will see Me. 17 ” Then some of His disciples asked one another, “Why is He telling us, ‘In a little while you will not see Me, and then after a little while you will see 18 Me’ and ‘Because I am going to the Father’?” They kept asking, “Why" + }, + { + "verseNum": 24, + "text": "| 967 30 telling him to buy what was needed for the feast, As soon as he or to give something to the poor. had received the morsel, Judas went out into the Love One Another night." + }, + { + "verseNum": 25, + "text": "25 26 All this I have spoken to you while I am still But the Advocate, the Holy Spirit, with you. whom the Father will send in My name, will teach you all things and will remind you of everything Peace I Leave with You I have told you. 27 28 Peace I leave with you; My peace I give to you. I do not give to you as the world gives. Do not let You your hearts be troubled; do not be afraid. heard Me say, ‘I am going away, and I am coming back to you.’ If you loved Me, you would rejoice that I am going to the Father, because the Father And now I have told you be- is greater than I. fore it happens, so that when it does happen, you 30 will believe. 29 31 I will not speak with you much longer, for the prince of this world is coming, and he has no claim on Me. But I do exactly what the Father has commanded Me, so that the world may know that I love the Father. Jesus the True Vine" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–8) and will no longer conceal her slain. 11 In the land of righteousness he acts unjustly and fails to see the majesty of the LORD. O LORD, Your hand is upraised, but they do not see it. They will see Your zeal for Your people and be put to shame. The fire set for Your enemies 12 will consume them! 13 O LORD, You will establish peace for us. For all that we have accomplished, You have done for us. O LORD our God, other lords besides You 14 have ruled over us, but Your name alone do we confess. The dead will not live; the departed spirits will not rise. Therefore You have punished and destroyed 15 them; You have wiped out all memory of them. You have enlarged the nation, O LORD; You have enlarged the nation. You have gained glory for Yourself; 16 You have extended all the borders of the land. O LORD, they sought You in their distress; when You disciplined them, they poured 17 out a quiet prayer. As a woman with child about to give birth 18 writhes and cries out in pain, so were we in Your presence, O LORD. We were with child; we writhed in pain; but we gave birth to wind. 19 We have given no salvation to the earth, nor brought any life into the world. Your dead will live; their bodies will rise. Awake and sing, you who dwell in the dust! 20 For your dew is like the dew of the morning, and the earth will bring forth her dead. 27 In that day the LORD will take His sharp, great, and mighty sword, and bring judg- —Levia- ment on Leviathan the fleeing serpent 2 than the coiling se" + }, + { + "verseNum": 20, + "text": "" + }, + { + "verseNum": 25, + "text": "Or Cited in Hebrews 9 I proclaim righteousness in the great assembly; 10 behold, I do not seal my lips, as You, O LORD, do know. I have not covered up Your righteousness in my heart; I have declared Your faithfulness and salvation; I have not concealed Your loving devotion 11 and faithfulness from the great assembly." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–4) Rome.” 12 13 When daylight came, the Jews formed a con- spiracy and bound themselves with an oath not to eat or drink until they had killed Paul. More 14 than forty of them were involved in this plot. They went to the chief priests and elders and said, “We have bound ourselves with a solemn 15 oath not to eat anything until we have killed Paul. Now then, you and the Sanhedrin petition the commander to bring him down to you on the pre- text of examining his case more carefully. We are 16 ready to kill him on the way.” b 17 the plot, But when the son of Paul’s sister heard about he went into the barracks and told Paul. Then Paul called one of the centurions and said, “Take this young man to the commander; he a 5 has something to tell him.” the ambush b 16 c 23 The commander took the young man by the hand, drew him aside, and asked, “What do you 20 need to tell me?” 21 He answered, “The Jews have agreed to ask you to bring Paul to the Sanhedrin tomorrow on the pretext of acquiring more information about Do not let them persuade you, because him. more than forty men are waiting to ambush him. They have bound themselves with an oath not to eat or drink until they have killed him; they are 22 ready now, awaiting your consent.” So the commander dismissed the young man and instructed him, “Do not tell anyone that you Paul Sent to Felix have reported this to me.” 23 Then he called two of his centurions and said, “Prepare two hundred soldiers, seventy horse- men, and two hundred sp" + }, + { + "verseNum": 5, + "text": "–16) My name, I will do it. 15 e f 16 If you love Me, you will keep My command- g And I will ask the Father, and He will ments. 17 to be with you give you another Advocate the Spirit of truth. The world cannot forever— receive Him, because it neither sees Him nor knows Him. But you do know Him, for He abides 18 with you and will be in you. h 19 20 I will not leave you as orphans; I will come to In a little while the world will see Me no you. more, but you will see Me. Because I live, you also will live. On that day you will know that I am in 21 My Father, and you are in Me, and I am in you. Whoever has My commandments and keeps them is the one who loves Me. The one who loves Me will be loved by My Father, and I will love him 22 and reveal Myself to him.” Judas (not Iscariot) asked Him, “Lord, why are You going to reveal Yourself to us and not to the 23 world?” “Lord,” said Thomas, “we do not know where 6 You are going, so how can we know the way?” 7 Jesus answered, “I am the way and the truth and the life. No one comes to the Father except If God is glorified in Him a 32 through Me. If you had known Me, you would going there to prepare a place for you. d 4 Me g 16 WH does not include f 15 If you love Me, keep Or Helper b 1 Comforter BYZ, TR Jesus replied, “If anyone loves Me, he will keep My word. My Father will love him, and We will 24 come to him and make Our home with him. Whoever does not love Me does not keep My words. The word that you hear is not My own, If it were not" + }, + { + "verseNum": 23, + "text": "–33) on earth will be loosed in heaven. 19 Again, I tell you truly that if two of you on the earth agree about anything you ask for, it will be For done for you by My Father in heaven. where two or three gather together in My name, The Unforgiving Servant" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": "| 969 22 forth her child, she forgets her anguish because of her joy that a child has been born into the So also you have sorrow now, but I will world. see you again and your hearts will rejoice, and no Ask in My Name" + }, + { + "verseNum": 6, + "text": "Prayer for the Disciples 24 6 8 I have revealed Your name to those You have given Me out of the world. They were Yours; You 7 gave them to Me, and they have kept Your word. Now they know that everything You have given Me comes from You. For I have given them the words You gave Me, and they have received them. They knew with certainty that I came from 9 You, and they believed that You sent Me. 11 10 I ask on their behalf. I do not ask on behalf of the world, but on behalf of those You have given Me; for they are Yours. All I have is Yours, and all You have is Mine; and in them I have been glori- fied. I will no longer be in the world, but they are in the world, and I am coming to You. a 12 Holy Father, protect them by Your name, the name You gave Me, so that they may be one as While I was with them, I protected We are one. and preserved them by Your name, the name You gave Me. Not one of them has been lost, except the son of destruction, so that the Scripture 13 would be fulfilled. 14 But now I am coming to You; and I am saying these things while I am in the world, so that they may have My joy fulfilled within them. I have given them Your word and the world has hated them. For they are not of the world, just as I am 15 not of the world. b I am not asking that You take them out of the 16 world, but that You keep them from the evil one. 17 They are not of the world, just as I am not of 18 Sanctify them by the truth; Your the world. As You sent Me into the world, I word is truth." + }, + { + "verseNum": 12, + "text": ". ; TR Father, I want those You have given Me to be with Me where I am, that they may see the glory You gave Me because You loved Me before the 25 foundation of the world. 26 Righteous Father, although the world has not known You, I know You, and they know that You sent Me. And I have made Your name known to them and will continue to make it known, so that the love You have for Me may be in them, and I in The Betrayal of Jesus them.” (Matt. 26:47–56 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–14) 47 While Jesus was still speaking, Judas, one of the Twelve, arrived, accompanied by a large crowd armed with swords and clubs, sent from 48 the chief priests and elders of the people. Now the betrayer had arranged a signal with 49 them: “The One I kiss is the man; arrest Him.” Going directly to Jesus, he said, “Greetings, b 50 Rabbi!” and kissed Him. 51 “Friend,” Jesus replied, “do what you came for.” Then the men stepped forward, seized Jesus, and At this, one of Jesus’ companions arrested Him. drew his sword and struck the servant of the 52 high priest, cutting off his ear. 53 “Put your sword back in its place,” Jesus said to him. “For all who draw the sword will die by the sword. Are you not aware that I can call on My Father, and He will at once put at My disposal more than twelve legions of angels? But how then would the Scriptures be fulfilled that say it 55 must happen this way?” 54 At that time Jesus said to the crowd, “Have you come out with swords and clubs to arrest Me as you would an outlaw? Every day I sat teaching in 56 the temple courts, and you did not arrest Me. But this has all happened so that the writings c of the prophets would be fulfilled.” Jesus before the Sanhedrin Then all the disciples deserted Him and fled." + }, + { + "verseNum": 15, + "text": "–18) 69 Meanwhile, Peter was sitting out in the court- yard, and a servant girl came up to him. “You also 70 were with Jesus the Galilean,” she said. But he denied it before them all: “I do not know 71 what you are talking about.” When Peter had gone out to the gateway, an- other servant girl saw him and said to the people 72 there, “This man was with Jesus of Nazareth.” And again he denied it with an oath: “I do not 73 know the man!” After a little while, those standing nearby came up to Peter. “Surely you are one of them,” they 74 said, “for your accent gives you away.” At that he began to curse and swear to them, “I do not know the man!” 75 And immediately a rooster crowed. Then Peter remembered the word that Jesus had spoken: “Before the rooster crows, you will deny Me three times.” And he went outside and Jesus Delivered to Pilate" + }, + { + "verseNum": 19, + "text": "–24) 57 58 Those who had arrested Jesus led Him away to the house of Caiaphas the high priest, where the But Peter scribes and elders had gathered. followed Him at a distance, right up to the court- yard of the high priest. And he went in and sat 59 down with the guards to see the outcome. d Now the chief priests and the whole Sanhed- were seeking false testimony against Jesus rin But they did not in order to put Him to death. find any, though many false witnesses came forward. 61 60 Finally two came forward and declared, “This man said, ‘I am able to destroy the temple of God the whole Council and rebuild it in three days.’ the temple d 59 ” c 55 So He left them and went away once more and a 31 prayed a third time, saying the same thing. “Friend,” Jesus replied, “for what have you come?” b 50 Zech. 13:7 Or Lit. Or 62 Judas Hangs Himself" + }, + { + "verseNum": 28, + "text": "–40) and they gave them for the potter’s field, as the Lord had commanded me.” 11 Meanwhile Jesus stood before the governor, who questioned Him: “Are You the King of the Jews?” 12 “You have said so,” Jesus replied. And when He was accused by the chief priests 13 and elders, He gave no answer. Then Pilate asked Him, “Do You not hear how 14 many charges they are bringing against You?” But Jesus gave no answer, not even to a single The Crowd Chooses Barabbas charge, much to the governor’s amazement." + }, + { + "verseNum": 40, + "text": "| 971 advised the Jews that it would be better if one Peter’s First Denial man died for the people. (Matt. 26:69–70 ;" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–15) 4 The Lord GOD has given Me the tongue of discipleship, to sustain the weary with a word. He awakens Me morning by morning; 5 He awakens My ear to listen as a disciple. The Lord GOD has opened My ears, and I have not been rebellious, nor have I turned back. 6 I offered My back to those who struck Me, and My cheeks to those who tore out My 5 beard. 7 I did not hide My face from scorn and spittle. Because the Lord GOD helps Me, I have not been disgraced; let him lean on his God. Behold, all you who kindle a fire, who array yourselves with firebrands, walk in the light of your fire and of the firebrands you have lit! Salvation for Zion This is what you will receive from My hand: You will lie down in a place of torment. 51 “Listen to Me, you who pursue righteousness, you who seek the LORD: Look to the rock from which you were cut, and to the quarry from which you were 2 hewn. Look to Abraham your father, and to Sarah who gave you birth. When I called him, he was but one; 3 then I blessed him and multiplied him. For the LORD will comfort Zion and will look with compassion on all her ruins; He will make her wilderness like Eden and her desert like the garden of the LORD. 4 Joy and gladness will be found in her, thanksgiving and melodious song. Pay attention to Me, My people, and listen to Me, My nation; for a law will go out from Me, and My justice will become a light to the nations; I will bring it about quickly. My righteousness draws near, My salvation is on the way, and My" + }, + { + "verseNum": 16, + "text": "–30) For the choirmaster. To the tune of “The Doe of the Dawn.” A Psalm of David. 1 a My God, my God, why have You forsaken me? Why are You so far from saving me, 2 so far from my words of groaning? I cry out by day, O my God, but You do not answer, and by night, 3 but I have no rest. Yet You are holy, 4 enthroned on the praises of Israel. In You our fathers trusted; 5 they trusted and You delivered them. They cried out to You and were set free; they trusted in You and were not disappointed. 6 But I am a worm and not a man, 7 scorned by men and despised by the people. All who see me mock me; a 1 they sneer and shake their heads: b 8 Cited in" + }, + { + "verseNum": 20, + "text": ". Or failed" + }, + { + "verseNum": 24, + "text": "; see ; cited in" + }, + { + "verseNum": 28, + "text": "–30) 45 e 46 From the sixth hour until the ninth hour ness came over all the land. hour Jesus cried out in a loud voice, “Eli, Eli, lema sabachthani?” which means, “My God, My 47 God, why have You forsaken Me?” g dark- f About the ninth 48 When some of those standing there heard this, One of them they said, “He is calling Elijah.” h quickly ran and brought a sponge. He filled it i put it on a reed, and held it up with sour wine, 49 for Jesus to drink. j But the others said, “Leave Him alone. Let us 50 see if Elijah comes to save Him.” 51 When Jesus had cried out again in a loud voice, At that moment the He yielded up His spirit. veil of the temple was torn in two from top to bottom. The earth quaked, and the rocks were And when they came to a place called Golgo- they this righteous blood a 24 tha, which means The Place of the Skull, through the prophet: “They divided My garments among them, and cast lots for My clothing.” f 46 ; BYZ and TR e 45 this blood Literally d 43 b 35 See" + }, + { + "verseNum": 31, + "text": "–37) 10 b d Then I will pour out on the house of David and c on the people of Jerusalem a spirit of grace and prayer, and they will look on Me, the One they They will mourn for Him as one have pierced. mourns for an only child, and grieve bitterly for 11 Him as one grieves for a firstborn son. On that day the wailing in Jerusalem will be as 12 in great as the wailing of Hadad-rimmon the plain of Megiddo. The land will mourn, each clan on its own: the clan of the house of Da- 13 vid and their wives, the clan of the house of Na- than and their wives, the clan of the house of Levi and their wives, the clan of Shimei and their wives, and all the remaining clans and their An End to Idolatry wives. 14 13 “On that day a fountain will be opened to the house of David and the people of Je- 2 rusalem, to cleanse them from sin and impurity. And on that day, declares the LORD of Hosts, I will erase the names of the idols from the land, and they will no longer be remembered. I will also remove the prophets and the spirit of impu- 3 rity from the land. e And if anyone still prophesies, his father and mother who bore him will say to him, ‘You shall not remain alive, because you have spoken falsely in the name of the LORD.’ When he prophesies, his father and mother who bore him will pierce 4 him through. And on that day every prophet who prophesies will be ashamed of his vision, and he will not put d 10 a 8 on a hairy cloak in order to deceive. He will say, farmer, for the land has been my li" + }, + { + "verseNum": 34, + "text": ". to fulfill what was said insurrectionists c 38 Eloi, Eloi And another took a spear Or ; also 52 2" + }, + { + "verseNum": 36, + "text": "LXX Cited in Psalm 35 Contend with My Opponents, O LORD Of David. 1 Contend with my opponents, O LORD; 2 fight against those who fight against me. 3 Take up Your shield and buckler; arise and come to my aid. a Draw the spear and javelin pursuers; against my 4 say to my soul: “I am your salvation.” May those who seek my life be disgraced and put to shame; may those who plan to harm me 5 be driven back and confounded. May they be like chaff in the wind, 6 as the angel of the LORD drives them away. May their path be dark and slick, 7 as the angel of the LORD pursues. 8 For without cause they laid their net for me; without reason they dug a pit for my soul. May ruin befall them by surprise; 9 may the net they hid ensnare them; may they fall into the hazard they created. Then my soul will rejoice in the LORD 10 and exult in His salvation. All my bones will exclaim, “Who is like You, O LORD, who delivers the afflicted from the aggressor, the poor and needy from the robber?” 11 Hostile witnesses come forward; 12 they make charges I know nothing about. They repay me evil for good, 13 to the bereavement of my soul. Yet when they were ill, I put on sackcloth; b I humbled myself with fasting, 14 but my prayers returned unanswered. I paced about as for my friend or brother; I was bowed down with grief, 15" + }, + { + "verseNum": 37, + "text": "between your hands Or h 7 Or 8 a b And on that day living water will flow out from and Jerusalem, half of it toward the Eastern Sea 9 the other half toward the Western Sea, in sum- On that day the LORD will mer and winter alike. become King over all the earth—the LORD alone, 10 and His name alone. All the land from Geba to Rimmon south of Je- rusalem will be turned into a plain, but Jerusalem will be raised up and will remain in her place, from the Benjamin Gate to the site of the First Gate to the Corner Gate, and from the Tower of People will Hananel to the royal winepresses. live there, and never again will there be an utter 12 destruction. So Jerusalem will dwell securely. 11 And this will be the plague with which the LORD strikes all the peoples who have warred against Jerusalem: Their flesh will rot while they stand on their feet, their eyes will rot in their sockets, and their tongues will rot in their 13 mouths. 14 On that day a great panic from the LORD will come upon them, so that each will seize the hand of another, and the hand of one will rise against Judah will also fight at Jerusalem, the other. and the wealth of all the surrounding nations will be collected—gold, silver, and apparel in great And a similar plague will strike the abundance. 15" + }, + { + "verseNum": 38, + "text": "–42) 9 He was assigned a grave with the wicked, and with a rich man in His death, b although He had done no violence, nor was any deceit in His mouth. 10 Yet it was the LORD’s will to crush Him c and to cause Him to suffer; and when His soul is made a guilt offering, He will see His offspring, He will prolong His days, 11 and the good pleasure of the LORD will prosper in His hand. d After the anguish of His soul, He will see the light of life and be satisfied. 54 “Shout for joy, O barren woman, who bears no children; break forth in song and cry aloud, you who have never travailed; because more are the children of the desolate h woman than of her who has a husband,” 2 says the LORD. “Enlarge the site of your tent, stretch out the curtains of your dwellings, do not hold back. Lengthen your ropes i 3 and drive your stakes in deep. For you will spread out to the right and left; your descendants will dispossess the 4 nations and inhabit the desolate cities. Do not be afraid, for you will not be put to shame; do not be intimidated, for you will not be humiliated. For you will forget the shame of your youth and will remember no more the reproach 5 of your widowhood. For your husband is your Maker— the LORD of Hosts is His name— the Holy One of Israel is your Redeemer; He is called the God of all the earth. 6 For the LORD has called you back, like a wife deserted and wounded in spirit, like the rejected wife of one’s youth,” 7 says your God. By His knowledge My righteous Servant will" + }, + { + "verseNum": 39, + "text": "" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9) 28 a After the Sabbath, at dawn on the first Mary Magdalene and day of the week, 3 Suddenly there was a great earthquake, for an angel of the Lord descended from heaven, rolled His appearance away the stone, and sat on it. was like lightning, and his clothes were white as snow. The guards trembled in fear of him and 5 became like dead men. 4 b 7 6 But the angel said to the women, “Do not be afraid, for I know that you are looking for Jesus, who was crucified. He is not here; He has risen, just as He said! Come, see the place where He Then go quickly and tell His disciples, ‘He lay. has risen from the dead and is going ahead of you into Galilee. There you will see Him.’ See, I have 8 told you.” c So they hurried away from the tomb in fear and 9 Suddenly great joy, and ran to tell His disciples. Jesus met them and said, “Greetings!” They came 10 to Him, grasped His feet, and worshiped Him. “Do not be afraid,” said Jesus. “Go and tell My The Report of the Guards brothers to go to Galilee. There they will see Me.” 11 12 13 While the women were on their way, some of the guards went into the city and reported to the chief priests all that had happened. And after the chief priests had met with the elders and formed a plan, they gave the soldiers a large sum and instructed them: “You are to say, of money 14 ‘His disciples came by night and stole Him away If this report reaches while we were asleep.’ the governor, we will satisfy him and keep you 15 out of trouble.” So the guards" + }, + { + "verseNum": 10, + "text": "–18) e 9 f Early on the first day of the week, after Jesus had risen, He appeared first to Mary Magdalene, 10 from whom He had driven out seven demons. She went and told those who had been with And Him, who were mourning and weeping. when they heard that Jesus was alive and she had Jesus Appears to Two Disciples seen Him, they did not believe it." + }, + { + "verseNum": 18, + "text": "| 973 31 It was the day of Preparation, and the next day was a High Sabbath. In order that the bodies would not remain on the cross during the Sab- bath, the Jews asked Pilate to have the legs bro- So the soldiers ken and the bodies removed. came and broke the legs of the first man who had 33 been crucified with Jesus, and those of the other. 32 35 But when they came to Jesus and saw that He 34 was already dead, they did not break His legs. Instead, one of the soldiers pierced His side with a spear, and immediately blood and water The one who saw it has testified to flowed out. this, and his testimony is true. He knows that he 36 is telling the truth, so that you also may believe. a 37 Now these things happened so that the Scrip- ture would be fulfilled: “Not one of His bones will be broken.” And, as another Scripture says: The Burial of Jesus" + }, + { + "verseNum": 19, + "text": "–23 ; 1" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 25, + "text": "| 975 “Yes, Lord,” he answered, “You know I love You.” 16 Jesus replied, “Feed My lambs.” And after He had said this, He told him, “Follow Jesus and the Beloved Disciple Me.” 20 Jesus asked a second time, “Simon son of John, do you love Me?” “Yes, Lord,” he answered, “You know I love You.” 17 Jesus told him, “Shepherd My sheep.” Jesus asked a third time, “Simon son of John, do you love Me?” Peter was deeply hurt that Jesus had asked him a third time, “Do you love Me?” “Lord, You know all things,” he replied. “You know I love You.” 18 Jesus said to him, “Feed My sheep. Truly, truly, I tell you, when you were young, you dressed yourself and walked where you wanted; but when you are old, you will stretch will dress out your hands, and someone else 19 you and lead you where you do not want to go.” Jesus said this to indicate the kind of death by a which Peter would glorify God. Peter turned and saw the disciple whom Jesus b loved following them. He was the one who had 21 leaned back against Jesus at the supper to ask, “Lord, who is going to betray You?” When Pe- 22 ter saw him, he asked, “Lord, what about him?” Jesus answered, “If I want him to remain until 23 I return, what is that to you? You follow Me!” Because of this, the rumor spread among the brothers that this disciple would not die. How- ever, Jesus did not say that he would not die, but only, “If I want him to remain until I return, what 24 is that to you?” This is the disciple who testifies to these things and who has" + } + ] + } + ] + }, + { + "name": "Acts", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 3 2 Many have undertaken to compose an ac- count of the things that have been fulfilled among us, just as they were handed down to us by the initial eyewitnesses and servants of the Therefore, having carefully investigated word. everything from the beginning, it seemed good also to me to write an orderly account for you, so that you may most excellent Theophilus, know the certainty of the things you have been Gabriel Foretells John’s Birth taught. 5 4 6 In the time of Herod king of Judea there was a priest named Zechariah, who belonged to the priestly division of Abijah, and whose wife Eliza- Both of them beth was a descendant of Aaron. were righteous in the sight of God, walking blamelessly in all the commandments and de- But they had no children, crees of the Lord. because Elizabeth was barren, and they were 8 both well along in years. 7 9 10 One day while Zechariah’s division was on duty and he was serving as priest before God, he was chosen by lot, according to the custom of the priesthood, to enter the temple of the Lord and And at the hour of the incense burn incense. offering, the whole congregation was praying 11 outside. 12 Just then an angel of the Lord appeared to Zechariah, standing at the right side of the altar When Zechariah saw him, he was of incense. 13 startled and gripped with fear. 15 14 But the angel said to him, “Do not be afraid, Zechariah, because your prayer has been heard. Your wife Elizabeth will bear you a son, and you He will be a joy are to" + }, + { + "verseNum": 5, + "text": "Or James Killed, Peter Imprisoned 15" + }, + { + "verseNum": 6, + "text": "–11) well.” h 19 18 After the Lord Jesus had spoken to them, He was taken up into heaven and sat down at the 20 right hand of God. And they went out and preached everywhere, and the Lord worked through them, confirming Joseph His word by the signs that accompanied it. b 40 Joses e 8 6 When they entered the tomb, they saw a young man dressed in a white robe sitting on the right side, and they were alarmed. But he said to them, “Do not be alarmed. You are looking for Je- a 39 sus the Nazarene, who was crucified. He has c 47 saw how, having cried out, He had breathed His last d 2 And very early on the first of the Sabbaths, Joses BYZ, TR Or ; see" + }, + { + "verseNum": 20, + "text": "4 15" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–13) d 15 Mizraim was the father of the Ludites, the the Anamites, the Lehabites, the Naphtuhites, Pathrusites, the Casluhites (from whom the Phil- e And Ca- istines came), and the Caphtorites. 16 naan was the father of Sidon his firstborn, and 17 of the Hittites, the Jebusites, the Amorites, 18 the Hivites, the Arkites, the the Girgashites, the Arvadites, the Zemarites, and the Sinites, Hamathites. 19 and Later the Canaanite clans were scattered, the borders of Canaan extended from Sidon toward Gerar as far as Gaza, and then toward Sodom, Gomorrah, Admah, and Zeboiim, as far as 20 Lasha. These are the sons of Ham according to their The Semites clans, languages, lands, and nations. 21 f And sons were also born to Shem, the older Shem was the forefather of brother of Japheth; 22 all the sons of Eber. The sons of Shem: 23 Elam, Asshur, Arphaxad, Lud, and Aram. The sons of Aram: 24 Uz, Hul, Gether, and Mash. g Arphaxad was the father of Shelah, 25 Shelah was the father of Eber. i h and Two sons were born to Eber: One was named because in his days the earth was divided, Peleg, 26 and his brother was named Joktan. 11 2 Now the whole world had one language j And as and a common form of speech. they found a plain k people journeyed eastward, 3 in the land of Shinar and settled there. And they said to one another, “Come, let us make bricks and bake them thoroughly.” So they used brick instead of stone, and tar instead of 4 mortar. “Come,” they said, “let us build for ourselves a city" + }, + { + "verseNum": 14, + "text": "–36) A Miktam d of David. 1 Preserve me, O God, 2 for in You I take refuge. I said to the LORD, “You are my Lord; 3 apart from You I have no good thing.” As for the saints in the land, they are the excellence in whom all my delight resides. 4 they have together become corrupt; c Sorrows will multiply there is no one who does good, 4 not even one. Will the workers of iniquity never learn? They devour my people like bread; 5 they refuse to call upon the LORD. There they are, overwhelmed with dread, 6 for God is in the company of the righteous. You sinners frustrate the plans of the 7 oppressed, yet the LORD is their shelter. 8 Oh, that the salvation of Israel would come from Zion! When the LORD restores His captive people, Psalm 15 Who May Dwell on Your Holy Mountain? let Jacob rejoice, let Israel be glad! A Psalm of David. 1 O LORD, who may abide in Your tent? Who may dwell on Your holy mountain? fool d 1 Miktam a 1 c 3 e 7 h 10 to those who chase other gods. 5 I will not pour out their libations of blood, or speak their names with my lips. The LORD is my chosen portion and my cup; 6 You have made my lot secure. The lines of my boundary have fallen in 7 pleasant places; surely my inheritance is delightful. I will bless the LORD who counsels me; e even at night my conscience instructs me. f I have set the LORD always before me. 9 Because He is at my right hand, I will not be shaken. Therefore my heart is glad and my tongue g 10 rejoices; my body also will dwell securely. h 11 F" + }, + { + "verseNum": 17, + "text": "–21 and" + }, + { + "verseNum": 25, + "text": "–28 Psalm 17 Hear My Righteous Plea A prayer of David. 1 Hear, O LORD, my righteous plea; listen to my cry. Give ear to my prayer— 2 it comes from lips free of deceit. May my vindication come from Your 3 presence; may Your eyes see what is right. You have tried my heart; You have visited me in the night. You have tested me and found no evil; 4 I have resolved not to sin with my mouth. As for the deeds of men— 5 by the word of Your lips I have avoided the ways of the violent. 6 My steps have held to Your paths; my feet have not slipped. I call on You, O God, for You will answer me. 7 Incline Your ear to me; hear my words. Show the wonders of Your loving devotion, 8 You who save by Your right hand those who seek refuge from their foes. a Keep me as the apple of 9 Your eye; hide me in the shadow of Your wings from the wicked who assail me, 10 from my mortal enemies who surround me. 11 They have closed their callous hearts; their mouths speak with arrogance. They have tracked us down, and now 12 surround us; their eyes are set to cast us to the ground, like a lion greedy for prey, 13 like a young lion lurking in ambush. Arise, O LORD, confront them! Bring them to their knees; 14 deliver me from the wicked by Your sword, from such men, O LORD, by Your hand— from men of the world b whose portion is in this life. May You fill the bellies of Your treasured" + }, + { + "verseNum": 30, + "text": "; see also LXX; cited in" + }, + { + "verseNum": 31, + "text": "| 977 18 Even on My menservants and maidservants I will pour out My Spirit in those days, and they will prophesy. 19 I will show wonders in the heavens above 20 and signs on the earth below, blood and fire and billows of smoke. The sun will be turned to darkness, and the moon to blood, before the coming of the great and glorious Day of the Lord. And everyone who calls on the name e of the Lord will be saved.’ 21 22 23 Men of Israel, listen to this message: Jesus of Nazareth was a man certified by God to you by miracles, wonders, and signs, which God did among you through Him, as you yourselves He was delivered up by God’s set plan know. and foreknowledge, and you, by the hands of the lawless, put Him to death by nailing Him But God raised Him from the dead, to the cross. releasing Him from the agony of death, because it was impossible for death to keep Him in its 25 grip. 24 f David says about Him: ‘I saw the Lord always before me; 26 because He is at my right hand, I will not be shaken. Therefore my heart is glad and my tongue 27 rejoices; my body also will dwell in hope, because You will not abandon my soul 28 to Hades, nor will You let Your Holy One see decay. You have made known to me the paths of life; g You will fill me with joy in Your presence.’ 29 30 Brothers, I can tell you with confidence that the patriarch David died and was buried, and his tomb is with us to this day. But he was a prophet and knew that God had promised him on h oath that He would place one of his" + }, + { + "verseNum": 32, + "text": "32 A Lame Man Walks decay. 33 which we are all witnesses. God has raised this Jesus to life, to 34 Exalted, then, to the right hand of God, He has received from the Father the promised Holy Spirit and has poured out what you now see and For David did not ascend into heaven, but hear. he himself says: 35 36 ‘The Lord said to my Lord, “Sit at My right hand until I make Your enemies a footstool for Your feet.” a ’ Therefore let all Israel know with certainty that God has made this Jesus, whom you cruci- Three Thousand Believe fied, both Lord and Christ!” 37 When the people heard this, they were cut to the heart and asked Peter and the other apostles, 38 “Brothers, what shall we do?” 39 Peter replied, “Repent and be baptized, every one of you, in the name of Jesus Christ for the for- giveness of your sins, and you will receive the gift This promise belongs to you of the Holy Spirit. and your children and to all who are far off—to 40 all whom the Lord our God will call to Himself.” 41 With many other words he testified, and he urged them, “Be saved from this corrupt genera- Those who embraced his message were tion.” b baptized, and about three thousand were added The Fellowship of Believers to the believers that day." + }, + { + "verseNum": 34, + "text": "–35, and" + }, + { + "verseNum": 42, + "text": "–47) Spirit and spoke the word of God boldly. 32 33 The multitude of believers was one in heart and soul. No one claimed that any of his posses- sions was his own, but they shared everything With great power the apostles they owned. continued to give their testimony about the res- urrection of the Lord Jesus. And abundant grace 34 was upon them all. 35 There were no needy ones among them, because those who owned lands or houses would sell their property, bring the proceeds from the and lay them at the apostles’ feet for dis- sales, 36 tribution to anyone as he had need. 37 Joseph, a Levite from Cyprus, whom the apos- tles called Barnabas (meaning Son of Encourage- sold a field he owned, brought the ment), Ananias and Sapphira money, and laid it at the apostles’ feet. 5 2 Now a man named Ananias, together with his wife Sapphira, also sold a piece of prop- erty. With his wife’s full knowledge, he kept back some of the proceeds for himself, but 3 brought a portion and laid it at the apostles’ feet. Then Peter said, “Ananias, how is it that Satan has filled your heart to lie to the Holy Spirit and 4 withhold some of the proceeds from the land? Did it not belong to you before it was sold? And a 26 after it was sold, was it not at your disposal? How His Messiah His Christ b 20 could you conceive such a deed in your heart? 5 You have not lied to men, but to God!” On hearing these words, Ananias fell down and 6 died. And great fear came over all who heard Then the young men what had" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 11, + "text": "–26) LORD your God has not permitted you to do so. 15 c b 16 The LORD your God will raise up for you a prophet like me from among your brothers. You This is what you asked of must listen to him. on the day of the the LORD your God at Horeb assembly, when you said, “Let us not hear the voice of the LORD our God or see this great fire 17 anymore, so that we will not die!” 18 19 Then the LORD said to me, “They have spoken well. I will raise up for them a prophet like you from among their brothers. I will put My words in his mouth, and he will tell them everything I command him. And I will hold accountable an- d yone who does not listen to My words that the prophet speaks in My name. But if any prophet dares to speak a message in My name that I have not commanded him to speak, or to speak in the name of other gods, that prophet c 16 must be put to death.” b 15 20 This shall be the priests’ share from the people who offer a sacrifice, whether a bull or a sheep: a 10 the priests are to be given the shoulder, the makes his son or his daughter pass through the fire d 19 Literally Cited in" + }, + { + "verseNum": 22, + "text": "That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai See" + }, + { + "verseNum": 23, + "text": ". 182 |" + }, + { + "verseNum": 25, + "text": "Or Or Heth and Syriac 24 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 11, + "text": ", and" + }, + { + "verseNum": 23, + "text": "–31) 1 a Why do the nations rage 2 and the peoples plot in vain? The kings of the earth take their stand and the rulers gather together, b against the LORD 3 and against His Anointed One: “Let us break Their chains I will proclaim the decree spoken to Me by the LORD: c “You are My Son; 8 today I have become Your Father. Ask Me, and I will make the nations Your d inheritance, 9 the ends of the earth Your possession. e You will break them with an iron scepter; You will shatter them like pottery. ” 10 11 Therefore be wise, O kings; be admonished, O judges of the earth. 12 Serve the LORD with fear, and rejoice with trembling. Kiss the Son, lest He be angry and you perish in your rebellion, when His wrath ignites in an instant. Psalm 3 Deliver Me, O LORD! (2 Samuel 15:13–29) Blessed are all who take refuge in Him. A Psalm of David, when he fled from his son Absalom. 1 2 O LORD, how my foes have increased! How many rise up against me! Many say of me, “God will not deliver him.” 3 Selah f But You, O LORD, are a shield around me, my glory, and the One who lifts my head. today I have begotten You c 7 a 1 and cast away Their cords.” noisily assemble b 2 Or d 9 ; see" + }, + { + "verseNum": 25, + "text": "–26 f 2 Selah or Literally Interlude ; cited in Cited in or is probably a musical or literary 498 |" + }, + { + "verseNum": 26, + "text": "26 ‘Why do the nations rage and the peoples plot in vain? The kings of the earth take their stand and the rulers gather together a against the Lord 27 and against His Anointed One.’ 28 29 In fact, this is the very city where Herod and Pontius Pilate conspired with the Gentiles and the people of Israel against Your holy servant Je- They carried out sus, whom You anointed. what Your hand and will had decided beforehand And now, Lord, consider their would happen. 30 threats, and enable Your servants to speak Your as You stretch word with complete boldness, out Your hand to heal and perform signs and wonders through the name of Your holy servant 31 Jesus.” After they had prayed, their meeting place was shaken, and they were all filled with the Holy Sharing among Believers" + }, + { + "verseNum": 32, + "text": "–37) 42 They devoted themselves to the apostles’ 43 teaching and to the fellowship, to the breaking of came bread and to prayer. over everyone, and the apostles performed many 44 wonders and signs. 45 A sense of awe c All the believers were together and had every- Selling their possessions and thing in common. 46 goods, they shared with anyone who was in need. d 47 With one accord they continued to meet daily in the temple courts and to break bread from house to house, sharing their meals with glad- praising God and ness and sincerity of heart, enjoying the favor of all the people. And the Lord added to their number daily those who were be- a 35 ing saved. e 1 of Nazareth, walk!" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7) 8 9 Deacons likewise must be dignified, not double- tongued or given to much wine or greedy for They must hold to the mystery of the money. Additionally, faith with a clear conscience. they must first be tested. Then, if they are above 11 reproach, let them serve as deacons. 10 e In the same way, the women must be digni- fied, not slanderers, but temperate and faithful in 12 all things. 13 A deacon must be the husband of but one wife, a good manager of his children and of his own For those who have served well as household. deacons acquire for themselves a high standing and great confidence in the faith that is in Christ a 11 Jesus. wife ; also in verse 12 Or in spirit h 10 Or ; also in verse 12 over her husband f 16 b 12 their wives Or and suffer reproach Literally e 11 wife SBL, BYZ, and TR The Mystery of Godliness 14 15 Although I hope to come to you soon, I am writing you these things in case I am delayed, so that you will know how each one must conduct himself in God’s household, which is the church of the living God, the pillar and 16 foundation of the truth. By common confession, the mystery of godli- ness is great: f g He appeared in the flesh, was vindicated by the Spirit, was seen by angels, was proclaimed among the nations, was believed in throughout the world, A Warning against Apostasy was taken up in glory. 4 Now the Spirit expressly states that in later times some will abandon the faith to follow 2 deceitful spirits and the teachings of demons, influenced b" + }, + { + "verseNum": 5, + "text": ". Tischendorf our Lord Jesus with the blood of His own Son. e 8 1000 |" + }, + { + "verseNum": 7, + "text": "| 981 37 somebody, and about four hundred men joined him. He was killed, all his followers were dis- After him, persed, and it all came to nothing. Judas the Galilean appeared in the days of the census and drew away people after him. He too 38 perished, and all his followers were scattered. So in the present case I advise you: Leave these men alone. Let them go! For if their purpose or But if endeavor is of human origin, it will fail. it is from God, you will not be able to stop them. You may even find yourselves fighting against 40 God.” 39 At this, they yielded to Gamaliel. They called the apostles in and had them flogged. Then they ordered them not to speak in the name of Jesus, 41 and released them. 42 The apostles left the Sanhedrin, rejoicing that they had been counted worthy of suffering dis- grace for the Name. Every day, in the temple courts and from house to house, they did not stop teaching and proclaiming the good news that Je- The Choosing of the Seven (1 Timothy 3:8–13) sus is the Christ. 6 In those days when the disciples were in- creasing in number, the Grecian Jews among d them began to grumble against the Hebraic because their widows were being over- Jews 2 looked in the daily distribution of food. 3 So the Twelve summoned all the disciples and said, “It is unacceptable for us to neglect the word of God in order to wait on tables. There- fore, brothers, select from among you seven men 4 confirmed to be full of the Spirit and wisdom. We and will will assign t" + }, + { + "verseNum": 8, + "text": "The Arrest of Stephen 8 9 Now Stephen, who was full of grace and power, was performing great wonders and signs among But resistance arose from what was the people. called the Synagogue of the Freedmen, including Cyrenians, Alexandrians, and men from the prov- inces of They disputed with but they could not stand up to his Stephen, 11 wisdom or the Spirit by whom he spoke. 10 Cilicia and Asia. a Then they prompted some men to say, “We heard Stephen speak words of blasphemy against 12 Moses and against God.” b 13 So they stirred up the people, elders, and scribes and confronted Stephen. They seized him and brought him before the Sanhedrin, where they presented false witnesses who said, “This man never stops speaking against this holy place and against the law. For we have heard him say that Jesus of Nazareth will destroy this place and change the customs that Moses handed down to 15 us.” 14 All who were sitting in the Sanhedrin looked intently at Stephen, and they saw that his face Stephen’s Address: The Call of Abraham was like the face of an angel." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–8) lived 205 years, and he died in Haran. 12 b Then the LORD said to Abram, “Leave your country, your kindred, and your fa- ther’s household, and go to the land I will show 2 you. I will make you into a great nation, and I will bless you; I will make your name great, 3 so that you will be a blessing. I will bless those who bless you c and all the families of the earth will be blessed through you. and curse those who curse you; ” 4 5 So Abram departed, as the LORD had directed him, and Lot went with him. Abram was seventy- five years old when he left Haran. And Abram took his wife Sarai, his nephew Lot, and all the possessions and people they had acquired in 6 Haran, and set out for the land of Canaan. d Abram When they came to the land of Canaan, traveled through the land as far as the site of the Oak of Moreh at Shechem. And at that time the 7 Canaanites were in the land. e Then the LORD appeared to Abram and said, “I ” So Abram will give this land to your offspring. built an altar there to the LORD, who had ap- 8 peared to him. From there Abram moved on to the hill country east of Bethel and pitched his tent, with Bethel to the west and Ai to the east. There he built an altar to the LORD, and he called on the name of the 9 LORD. Abram and Sarai in Egypt And Abram journeyed on toward the Negev. 10 30 11 And Abram and Nahor took wives for them- selves. Abram’s wife was named Sarai, and Nahor’s wife was named Milcah; she was the daughter of Haran, who was the father of both B" + }, + { + "verseNum": 3, + "text": "See" + }, + { + "verseNum": 6, + "text": "–7 well of the Living One who sees me responding pronouns may also be capitalized. father of many means Or g 1 j 5 . Cited in" + }, + { + "verseNum": 7, + "text": "nachash c 14 e 3 Or Hebrew g 6 , in contrast to Aaron’s staff, which became a ; twice in this verse and twice in verse 7 various skin diseases; see Leviticus 13. 58 |" + }, + { + "verseNum": 9, + "text": "–14) said. 12 13 Some time later, Joseph’s brothers had gone to Is- pasture their father’s flocks near Shechem. rael said to him, “Are not your brothers pasturing the flocks at Shechem? Get ready; I am sending you to them.” 42 41 These are the names of Esau’s chiefs, accord- ing to their families and regions, by their names: Oholibamah, Chiefs Timna, Alvah, Jetheth, Magdiel, Kenaz, Teman, Mibzar, Elah, Pinon, before an Israelite king reigned over them: b 31 Dishon a 26 d 39 Hebrew Or with long sleeves Some MT manuscripts, SP, and Syriac (see also 1 Chronicles 1:50); other MT manuscripts “I am ready,” Joseph replied. c 37 Hadar , a variant of Dishan 43 ; also in verses 23 and 32 the River e 3 a robe Hebrew Possibly 40 |" + }, + { + "verseNum": 14, + "text": ") Hebrew ; twice in this verse food. Then we, along with our land, will be slaves to Pharaoh. Give us seed that we may live and not 20 die, and that the land may not become desolate.” 22 21 a So Joseph acquired for Pharaoh all the land in Egypt; the Egyptians, one and all, sold their fields because the famine was so severe upon them. and Joseph re- The land became Pharaoh’s, from one end of duced the people to servitude However, he did not ac- Egypt to the other. quire the priests’ portion of the land, for it had been given to them by Pharaoh. They ate the rations that Pharaoh supplied; so they did not 23 sell their land. 24 Then Joseph said to the people, “Now that I have acquired you and your land for Pharaoh this At day, here is seed for you to sow in the land. harvest time, you are to give a fifth of it to Phar- aoh, and four-fifths will be yours as seed for the field and food for yourselves and your house- 25 holds and children.” 26 “You have saved our lives,” they said. “We have found favor in our lord’s eyes, and we will be So Joseph established a Pharaoh’s servants.” law that a fifth of the produce belongs to Phar- aoh, and it is in effect in the land of Egypt to this day. Only the priests’ land does not belong to The Israelites Prosper in Goshen Pharaoh. 27 28 Now the Israelites settled in the land of Egypt, in the region of Goshen. They acquired property there and became fruitful and increased greatly And Jacob lived in the land of Egypt in number. seventeen years," + }, + { + "verseNum": 15, + "text": "–19) filled with them. 8 10 9 Then a new king, who did not know Joseph, came to power in Egypt. “Look,” he said to his people, “the Israelites have become too numer- Come, let us deal ous and too powerful for us. shrewdly with them, or they will increase even more; and if a war breaks out, they may join our enemies, fight against us, and leave the 11 country. ” b 12 So the Egyptians appointed taskmasters over the Israelites to oppress them with forced labor. As a result, they built Pithom and Rameses as But the more they store cities for Pharaoh. were oppressed, the more they multiplied and flourished; so the Egyptians came to dread the Is- 13 raelites. 14 They worked the Israelites ruthlessly and made their lives bitter with hard labor in brick and mortar, and with all kinds of work in the 15 fields. Every service they imposed was harsh. Then the king of Egypt said to the Hebrew mid- wives, whose names were Shiphrah and Puah, a 5 d 3 to the Hebrews MT (see also Gen. 46:27); DSS and LXX (see also" + }, + { + "verseNum": 20, + "text": "–22 ;" + }, + { + "verseNum": 23, + "text": "–29) 11 b One day, after Moses had grown up, he went and observed their hard out to his own people 12 labor. He saw an Egyptian beating a Hebrew, one After looking this way and of his own people. that and seeing no one, he struck down the Egyp- 13 tian and hid his body in the sand. The next day Moses went out and saw two He- brews fighting. He asked the one in the wrong, 14 “Why are you attacking your companion?” c But the man replied, “Who made you ruler and d Are you planning to kill me as judge over us? you killed the Egyptian? ” Then Moses was afraid and thought, “This thing I 15 have done has surely become known.” When Pharaoh heard about this matter, he sought to kill Moses. But Moses fled from Phar- aoh and settled in the land of Midian, where he 16 sat down beside a well. 17 Now the priest of Midian had seven daughters, and they came to draw water and fill the troughs And when some to water their father’s flock. shepherds came along and drove them away, Moses rose up to help them and watered their 18 flock. e When the daughters returned to their father he asked them, “Why have you returned Reuel, 19 so early today?” f 22 Moses agreed to stay with the man, and he gave his daughter Zipporah to Moses in mar- And she gave birth to a son, and Moses riage. named him Gershom, saying, “I have become a God Hears the Cry of the Israelites foreigner in a foreign land.” 23 After a long time, the king of Egypt died. The Israelites groaned and cried out under their bur- den of slav" + }, + { + "verseNum": 27, + "text": "and" + }, + { + "verseNum": 28, + "text": "Or foreigner g 1 Cited in" + }, + { + "verseNum": 30, + "text": "–38) cob. God saw the Israelites and took notice. 3 g i h There the angel Meanwhile, Moses was shepherding the flock of his father-in-law Jethro, the priest of Midian. He led the flock to the far side of the 2 wilderness and came to Horeb, the mountain of God. of the LORD appeared to him in a blazing fire from within a bush. Moses saw the bush ablaze with fire, but it was not con- So Moses thought, “I must go over and sumed. see this marvelous sight. Why is the bush not 4 burning up?” 3 When the LORD saw that he had gone over to look, God called out to him from within the bush, “Moses, Moses!” 5 “Here I am,” he answered. j 6 “Do not come any closer,” God said. “Take off your sandals, for the place where you are stand- Then He said, “I am the God ing is holy ground.” of your father, the God of Abraham, the God of Isaac, and the God of Jacob.” k At this, Moses hid his face, for he was afraid to 7 look at God. The LORD said, “I have indeed seen the afflic- tion of My people in Egypt. I have heard them crying out because of their oppressors, and I am aware of their sufferings. I have come down to rescue them from the hand of the Egyptians and b 11 to bring them up out of that land to a good and his brothers c 14 8 e 18 Reuel “An Egyptian rescued us from the shepherds,” they replied. “He even drew water for us and wa- to lift out a 10 Moses tered the flock.” d 14 Jethro sounds like a Hebrew term that means f 22 Gershom Are you planning to kill me as you killed the Egyptian yesterd" + }, + { + "verseNum": 32, + "text": "i 2 called Or d 20" + }, + { + "verseNum": 33, + "text": "Cited in" + }, + { + "verseNum": 34, + "text": "Cited in" + }, + { + "verseNum": 35, + "text": "Jethro was also called was also . That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai sounds like the Hebrew for k 6 Moses’ father-in-law Cited in" + }, + { + "verseNum": 39, + "text": "–43) by the finger of God. 32 Now when the people saw that Moses was delayed in coming down from the mountain, they gathered around Aaron and said, “Come, make us gods who will go before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has happened to 2 him!” b So Aaron told them, “Take off the gold earrings that are on your wives and sons and daughters, a 7 and bring them to me.” the ark of the covenant b 1 That is, Cited in" + }, + { + "verseNum": 40, + "text": "" + }, + { + "verseNum": 42, + "text": "–43 means . d 12 You have taken along the tabernacle of Molech and the star of your god Rephan means , a symbol of strength. LXX Literally 826 |" + }, + { + "verseNum": 44, + "text": "–47 ;" + }, + { + "verseNum": 46, + "text": ". Literally 8 9 Arise, O LORD, to Your resting place, You and the ark of Your strength. May Your priests be clothed with 10 righteousness, and Your saints shout for joy. For the sake of Your servant David, do not reject Your anointed one. 11 The LORD swore an oath to David, a promise He will not revoke: a 12 “One of your descendants I will place on your throne. If your sons keep My covenant and the testimony I will teach them, then their sons will also sit on your throne 13 forever and ever.” 14 For the LORD has chosen Zion; He has desired it for His home: “This is My resting place forever and ever; here I will dwell, for I have desired this 15 home. 16 17 I will bless her with abundant provisions; I will satisfy her poor with bread. I will clothe her priests with salvation, and her saints will sing out in joy. There I will make a horn grow for David; 18 I have prepared a lamp for My anointed one. I will clothe his enemies with shame, Psalm 133 but the crown upon him will gleam.” How Pleasant to Live in Harmony! (1 Corinthians 1:10–17 ;" + }, + { + "verseNum": 49, + "text": "–50 676 |" + }, + { + "verseNum": 50, + "text": "| 983 The Rebellion of Israel" + }, + { + "verseNum": 51, + "text": "51 52 You stiff-necked people with uncircumcised hearts and ears! You always resist the Holy Which of the Spirit, just as your fathers did. prophets did your fathers fail to persecute? They even killed those who foretold the coming of the Righteous One. And now you are His betrayers you who received the law or- and murderers— The Stoning of Stephen dained by angels, yet have not kept it.” 54 53 a 55 On hearing this, the members of the Sanhedrin were enraged, and they gnashed their teeth at him. But Stephen, full of the Holy Spirit, looked intently into heaven and saw the glory of God and “Look,” Jesus standing at the right hand of God. he said, “I see heaven open and the Son of Man 57 standing at the right hand of God.” 56 58 At this they covered their ears, cried out in a loud voice, and rushed together at him. They dragged him out of the city and began to stone him. Meanwhile the witnesses laid their gar- 59 ments at the feet of a young man named Saul. 60 While they were stoning him, Stephen ap- Falling pealed, “Lord Jesus, receive my spirit.” on his knees, he cried out in a loud voice, “Lord, do not hold this sin against them.” And when he Saul Persecutes the Church had said this, he fell asleep. 8 And Saul was there, giving approval to Ste- phen’s death. 3 2 On that day a great persecution broke out against the church in Jerusalem, and all except the apostles were scattered throughout Judea and God-fearing men buried Stephen and Samaria. But Saul began to de- mourned deep" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 9, + "text": "–25) his father’s estate. 9 a 10 When you enter the land that the LORD your God is giving you, do not imitate the detestable ways of the nations there. Let no one be found among you who sacrifices his son or daughter in the fire, practices divination or conjury, inter- casts spells, prets omens, practices sorcery, 12 consults a medium or spiritist, or inquires of the dead. For whoever does these things is detestable to the LORD. And because of these de- testable things, the LORD your God is driving out 13 the nations before you. 11 14 You must be blameless before the LORD your Though these nations, which you will dis- God. possess, listen to conjurers and diviners, the A Prophet Like Moses" + }, + { + "verseNum": 26, + "text": "–40 ;" + }, + { + "verseNum": 32, + "text": "–33. h 1 waters of Noah 22:37 DSS (see also LXX); MT does not include Cited in" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–19 ;" + }, + { + "verseNum": 19, + "text": "| 985 so that if he found any men or women belonging to the Way, he could bring them as prisoners to 3 Jerusalem. 4 As Saul drew near to Damascus on his journey, suddenly a light from heaven flashed around him. He fell to the ground and heard a voice say 5 to him, “Saul, Saul, why do you persecute Me?” “Who are You, Lord?” Saul asked. d 6 “I am Jesus, whom you are persecuting,” He replied. “Now get up and go into the city, and 7 you will be told what you must do.” 8 The men traveling with Saul stood there speechless. They heard the voice but did not see anyone. Saul got up from the ground, but when 9 he opened his eyes he could not see a thing. So For they led him by the hand into Damascus. three days he was without sight, and he did not Ananias Baptizes Saul eat or drink anything. 10 e In Damascus there was a disciple named Ananias. The Lord spoke to him in a vision, “Ananias!” 11 “Here I am, Lord,” he answered. “Get up!” the Lord told him. “Go to the house of Judas on Straight Street and ask for a man from Tarsus named Saul, for he is praying. In a vi- sion he has seen a man named Ananias come and 13 place his hands on him to restore his sight.” 12 But Ananias answered, “Lord, many people have told me about this man and all the harm he has done to Your saints in Jerusalem. And now he is here with authority from the chief priests to 15 arrest all who call on Your name.” 14 “Go!” said the Lord. “This man is My chosen in- strument to carry My name before the Gentiles 16 and th" + }, + { + "verseNum": 20, + "text": "he regained his strength. And he spent several Saul Preaches at Damascus days with the disciples in Damascus. 20 Saul promptly began to proclaim Jesus in the 21 synagogues, declaring, “He is the Son of God.” All who heard him were astounded and asked, “Isn’t this the man who wreaked havoc in Jerusa- lem on those who call on this name? And hasn’t he come here to take them as prisoners to the 22 chief priests?” But Saul was empowered all the more, and he confounded the Jews living in Damascus by prov- The Escape from Damascus ing that Jesus is the Christ. 23 24 25 After many days had passed, the Jews con- spired to kill him, but Saul learned of their plot. Day and night they watched the city gates in order to kill him. One night, however, his disci- ples took him and lowered him in a basket Saul in Jerusalem through a window in the wall. 26 a 27 When Saul arrived in Jerusalem, he tried to join the disciples, but they were all afraid of him, not believing that he was a disciple. Then Bar- nabas brought him to the apostles and described how Saul had seen the Lord, who had spoken to him on the road to Damascus, and how Saul had 28 spoken boldly in that city in the name of Jesus. 29 b So Saul stayed with them, moving about freely in Jerusalem and speaking boldly in the name of the Lord. He talked and debated with the Gre- cian Jews, When the but they tried to kill him. brothers learned of this, they took him down to The Healing of Aeneas Caesarea and sent him off to Tarsus. 31 30 T" + }, + { + "verseNum": 36, + "text": "–43) 38 the nation, but also for the scattered children of 53 God, to gather them together into one. 54 So from that day on they plotted to kill Him. As a result, Jesus no longer went about publicly among the Jews, but He withdrew to a town called Ephraim in an area near the wilderness. 55 And He stayed there with the disciples. 39 Jesus, once again deeply moved, came to the tomb. It was a cave with a stone laid across the entrance. “Take away the stone,” Jesus said. “Lord, by now he stinks,” said Martha, the sister 40 of the dead man. “It has already been four days.” Jesus replied, “Did I not tell you that if you be- 41 lieved, you would see the glory of God?” 42 So they took away the stone. Then Jesus lifted His eyes upward and said, “Father, I thank You that You have heard Me. I knew that You al- ways hear Me, but I say this for the benefit of the people standing here, so they may believe that 43 You sent Me.” After Jesus had said this, He called out in a loud 44 voice, “Lazarus, come out!” The man who had been dead came out with his a hands and feet bound in strips of linen, and his face wrapped in a cloth. The Plot to Kill Jesus “Unwrap him and let him go,” Jesus told them." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 9, + "text": "–16) 11 2 3 The LORD spoke again to Moses and Aa- “Say to the Israelites, ron, telling them, ‘Of all the beasts of the earth, these ones you may eat: You may eat any animal that has a split hoof 4 completely divided and that chews the cud. a But of those that only chew the cud or only have a divided hoof, you are not to eat the following: 5 b The rock badger, though it chews the cud, does not have a divided hoof; it is 6 unclean for you. The rabbit, though it chews the cud, does not have a divided hoof; it is unclean for 7 you. And the pig, though it has a split hoof 8 completely divided, does not chew the cud; it is unclean for you. You must not eat their meat or touch their car- 9 casses; they are unclean for you. Of all the creatures that live in the water, whether in the seas or in the streams, you may 10 eat anything with fins and scales. 11 But the following among all the teeming life and creatures in the water are detestable to you: everything in the seas or streams that does not They shall be an abomina- have fins and scales. tion to you; you must not eat their meat, and you Everything in the must detest their carcasses. water that does not have fins and scales shall be 13 detestable to you. 12 Additionally, you are to detest the following birds, and they must not be eaten because they are detestable: the eagle, the bearded vulture, the black 14 vulture, 15 the kite, any kind of falcon, 16 any kind of raven, c the ostrich, 17 kind of hawk, the screech owl, the gull, a" + }, + { + "verseNum": 42, + "text": "| 987 25 called together his relatives and close friends. As Peter was about to enter, Cornelius met him But Peter and fell at his feet to worship him. helped him up. “Stand up,” he said, “I am only a 27 man myself.” 26 28 As Peter talked with him, he went inside and found many people gathered together. He said to them, “You know how unlawful it is for a Jew to associate with a foreigner or visit him. But God has shown me that I should not call any man im- pure or unclean. So when I was invited, I came without objection. I ask, then, why have you sent 30 for me?” 29 e Cornelius answered: “Four days ago I was in my house praying at this, the ninth hour. Sud- 31 denly a man in radiant clothing stood before me and said, ‘Cornelius, your prayer has been heard, and your gifts to the poor have been remembered before God. Therefore send to Joppa for Simon, who is called Peter. He is a guest 33 in the home of Simon the tanner, by the sea.’ 32 So I sent for you immediately, and you were kind enough to come. Now then, we are all here in the presence of God to listen to everything the Good News for the Gentiles Lord has instructed you to tell us.” 34 35 Then Peter began to speak: “I now truly under- but stand that God does not show favoritism, 36 welcomes those from every nation who fear Him and do what is right. He has sent this message to the people of Israel, proclaiming the gospel of 37 peace through Jesus Christ, who is Lord of all. 38 You yourselves know what has happened througho" + }, + { + "verseNum": 43, + "text": "43 appointed by God to judge the living and the All the prophets testify about Him that dead. everyone who believes in Him receives for- The Gentiles Receive the Holy Spirit giveness of sins through His name.”" + }, + { + "verseNum": 44, + "text": "–48) 19 a While Apollos was at Corinth, Paul 2 and came passed through the interior and to Ephesus. There he found some disciples asked them, “Did you receive the Holy Spirit when you became believers?” “No,” they answered, “we have not even heard 3 that there is a Holy Spirit.” “Into what, then, were you baptized?” Paul asked. 4 “The baptism of John,” they replied. Paul explained: “John’s baptism was a baptism of repentance. He told the people to believe in the 5 One coming after him, that is, in Jesus.” 6 On hearing this, they were baptized into the name of the Lord Jesus. And when Paul laid his hands on them, the Holy Spirit came upon them, 7 and they spoke in tongues and prophesied. Paul Ministers in Ephesus" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 16, + "text": "69:25" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 3, + "text": "| 989 12 b a About that time, King Herod 2 out to harm reached some who belonged to the He had James, the brother of John, put church. 3 to death with the sword. c 4 And seeing that this pleased the Jews, Herod proceeded to seize Peter during the Feast of Un- leavened Bread. He arrested him and put him in prison, handing him over to be guarded by four squads of four soldiers each. Herod in- tended to bring him out to the people after the The Rescue of Peter Passover. 5 So Peter was kept in prison, but the church was 6 fervently praying to God for him. 7 On the night before Herod was to bring him to trial, Peter was sleeping between two soldiers, bound with two chains, with sentries standing guard at the entrance to the prison. Suddenly an angel of the Lord appeared and a light shone in the cell. He tapped Peter on the side and woke him up, saying, “Get up quickly.” And the chains fell off his wrists. “Get dressed and put on your sandals,” said the angel. Peter did so, and the an- gel told him, “Wrap your cloak around you and 9 follow me.” 8 10 So Peter followed him out, but he was unaware that what the angel was doing was real. He thought he was only seeing a vision. They passed the first and second guards and came to the iron gate leading to the city, which opened for them by itself. When they had gone outside and walked the length of one block, the angel sud- 11 denly left him. “You are out of your mind,” they told her. But when she kept insisting it was so, they said, “It" + }, + { + "verseNum": 4, + "text": "On Cyprus 4 So Barnabas and Saul, sent forth by the Holy 5 Spirit, went down to Seleucia and sailed When they arrived at from there to Cyprus. Salamis, they proclaimed the word of God in the Jewish synagogues. And John was with them as 6 their helper. 7 They traveled through the whole island as far as Paphos, where they found a Jewish sorcerer and false prophet named Bar-Jesus, an at- tendant of the proconsul, Sergius Paulus. The proconsul, a man of intelligence, summoned Bar- nabas and Saul because he wanted to hear the But Elymas the sorcerer (for that word of God. is what his name means) opposed them and tried 9 to turn the proconsul from the faith. 8 10 11 Then Saul, who was also called Paul, filled with the Holy Spirit, looked directly at Elymas and said, “O child of the devil and enemy of all right- eousness, you are full of all kinds of deceit and trickery! Will you never stop perverting the Now look, the hand straight ways of the Lord? of the Lord is against you, and for a time you will be blind and unable to see the light of the sun.” Immediately mist and darkness came over him, and he groped about, seeking someone to lead 12 him by the hand. When the proconsul saw what had happened, he believed, for he was astonished at the teach- In Pisidian Antioch ing about the Lord. 13 14 After setting sail from Paphos, Paul and his companions came to Perga in Pamphylia, where And John left them to return to Jerusalem. from Perga, they traveled inland to Pisidian An- 15 tioch, w" + }, + { + "verseNum": 21, + "text": "); MT A few late LXX manuscripts; MT Or 260 | 1 Samuel 13:3 3 Then Jonathan attacked the Philistine outpost at Geba, and the Philistines heard about it. So Saul blew the ram’s horn throughout the land, 4 saying, “Let the Hebrews hear!” And all Israel heard the news: “Saul has at- tacked an outpost of the Philistines, and now Is- rael has become a stench to the Philistines!” Then the people were summoned to join Saul at 5 Gilgal. a Now the Philistines assembled to fight against Israel with three thousand chariots, six thou- sand horsemen, and troops as numerous as the sand on the seashore. They went up and camped 6 at Michmash, east of Beth-aven. Seeing that they were in danger because their troops were hard-pressed, the men of Israel hid 7 in caves and thickets, among the rocks, and in cellars and cisterns. Some Hebrews even crossed the Jordan into the land of Gad and Gil- ead. Saul, however, remained at Gilgal, and all his Saul’s Unlawful Sacrifice troops were quaking in fear. 8 And Saul waited seven days for the time appointed by Samuel, but Samuel did not come to Gilgal, and the troops began to desert Saul. So he said, “Bring me the burnt offering and the peace offerings.” And he offered up the burnt 10 offering. 9 Just as he finished offering the burnt offering, 11 Samuel arrived, and Saul went out to greet him. “What have you done?” Samuel asked. 12 And Saul replied, “When I saw that the troops were deserting me, and that you did not come at the appointed time and the Ph" + }, + { + "verseNum": 25, + "text": "BYZ and TR . Or ; others BYZ and TR ; see" + }, + { + "verseNum": 33, + "text": "," + }, + { + "verseNum": 34, + "text": "Or or or Salvation for Foreigners 10" + }, + { + "verseNum": 35, + "text": "Cited in" + }, + { + "verseNum": 41, + "text": "c 6 and clearly inscribe it on tablets, so that a herald may run with it. That is, the Babylonians d 15 Literally He 842 |" + }, + { + "verseNum": 42, + "text": "–52) “for the wicked.” c 49 Listen to Me, O islands; pay attention, O distant peoples: The LORD called Me from the womb; 2 from the body of My mother He named Me. He made My mouth like a sharp sword; He hid Me in the shadow of His hand. He made Me like a polished arrow; 3 He hid Me in His quiver. He said to Me, “You are My Servant, Israel, in whom I will display My glory.” 4 But I said, “I have labored in vain, I have spent My strength in futility and vanity; yet My vindication is with the LORD, 5 and My reward is with My God.” And now says the LORD, who formed Me from the womb to be His Servant, to bring Jacob back to Him, 18 who teaches you for your benefit, who directs you in the way you should go. that Israel might be gathered to Him— for I am honored in the sight of the LORD, 6 If only you had paid attention to My commandments, and My God is My strength— He says: “It is not enough for You to be My your peace would have been like a river, and your righteousness like waves of b 19 the sea. coastlands a 14 c 1 Servant, to raise up the tribes of Jacob, like the sand, and your offspring like its grains and to restore the protected ones of Israel. That is, the Babylonians; also in verse 20 Literally Or I will also make You a light for the nations, to bring My salvation to the ends of the a 7 earth.” Thus says the LORD, the Redeemer and Holy One of Israel, to Him who was despised and abhorred by the nation, to the Servant of rulers: “Kings will see You and rise, and princes wil" + }, + { + "verseNum": 47, + "text": "g 22 Your sons Cited in" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 17, + "text": "| 991 For when David had served God’s purpose in his own generation, he fell asleep. His body was buried with his fathers and saw decay. But the from the dead did not see One whom God raised 38 decay. 37 39 Therefore let it be known to you, brothers, that through Jesus the forgiveness of sins is pro- claimed to you. Through Him everyone who believes is justified from everything from which 40 you could not be justified by the law of Moses. Watch out, then, that what was spoken by the 41 prophets does not happen to you: ‘Look, you scoffers, wonder and perish! For I am doing a work in your days that you would never believe, A Light for the Gentiles" + }, + { + "verseNum": 18, + "text": "not left Himself without testimony to His good- ness: He gives you rain from heaven and fruitful seasons, filling your hearts with food and glad- 18 ness.” Even with these words, Paul and Barnabas could hardly stop the crowds from sacrificing to 19 them. 20 Then some Jews arrived from Antioch and Ico- nium and won over the crowds. They stoned Paul and dragged him outside the city, presuming he was dead. But after the disciples had gathered around him, he got up and went back into the city. And the next day he left with Barnabas for Strengthening the Disciples Derbe. 21 22 They preached the gospel to that city and made many disciples. Then they returned to Lys- tra, Iconium, and Antioch, strengthening the souls of the disciples and encouraging them to continue in the faith. “We must endure many hardships to enter the kingdom of God,” they 23 said. Paul and Barnabas appointed elders for them in each church, praying and fasting as they en- trusted them to the Lord, in whom they had be- 24 lieved. 25 After passing through Pisidia, they came to And when they had spoken the Pamphylia. 26 word in Perga, they went down to Attalia. 27 From Attalia they sailed to Antioch, where they had been commended to the grace of God for the work they had just completed. When they arrived, they gathered the church together and reported all that God had done through them, and how He had opened the door of faith to the Gentiles. And they spent a long time The Dispute over Circumcision there with the" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 5, + "text": "–21) us.’ ” 11 “In that day I will restore the fallen tent of David. 12 I will repair its gaps, restore its ruins, and rebuild it as in the days of old, a that they may possess the remnant of Edom declares the LORD, who will do this. and all the nations that bear My name,” 13 “Behold, the days are coming,” declares the LORD, “when the plowman will overtake the reaper and the treader of grapes, the sower of seed. 14 The mountains will drip with sweet wine, with which all the hills will flow. b I will restore My people Israel from captivity; they will rebuild and inhabit the ruined cities. They will plant vineyards and drink their 15 wine; they will make gardens and eat their fruit. I will firmly plant them in their own land, never again to be uprooted from the land that I have given them,” says the LORD your God. snake c 7 Or That is, Crete Hebrew ; translated in most cases as That is, people from the upper Nile region Obadiah The Destruction of Edom" + }, + { + "verseNum": 36, + "text": "–41 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 11, + "text": "–15) 18 To the angel of the church in Thyatira write: These are the words of the Son of God, whose eyes are like a blazing fire and whose feet are 19 like polished bronze. I know your deeds—your love, your faith, your service, your perseverance—and your 20 latest deeds are greater than your first. But I have this against you: You tolerate that woman Jezebel, who calls herself a prophetess. By her teaching she misleads My servants to be sexually immoral and to eat Even though I have food sacrificed to idols. given her time to repent of her immorality, 22 she is unwilling. 21 Behold, I will cast her onto a bed of sick- ness, and those who commit adultery with 23 her will suffer great tribulation unless they Then I will strike her repent of her deeds. children dead, and all the churches will know that I am the One who searches minds and hearts, and I will repay each of you according 24 to your deeds. 26 But I say to the rest of you in Thyatira, who do not hold to her teaching and have not learned the so-called deep things of Satan: I 25 will place no further burden upon you than to hold fast to what you have until I And to the one who overcomes and come. continues in My work until the end, I will He will give authority over the nations. rule them with an iron scepter and shatter —just as I have received them like pottery And I will give authority from My Father. 29 him the morning star. 28 27 a He who has an ear, let him hear what the Spirit says to the churches. To the Church i" + }, + { + "verseNum": 12, + "text": "| 993 Paul’s Second Missionary Journey Begins" + }, + { + "verseNum": 13, + "text": "a there we went to the Roman colony of Philippi, the leading city of that district of Macedonia. 13 And we stayed there several days. On the Sabbath we went outside the city gate along the river, where it was customary to find a place of prayer. After sitting down, we spoke to 14 the women who had gathered there. Among those listening was a woman named Lydia, a dealer in purple cloth from the city of Thyatira, who was a worshiper of God. The Lord 15 opened her heart to respond to Paul’s message. And when she and her household had been baptized, she urged us, “If you consider me a be- liever in the Lord, come and stay at my house.” Paul and Silas Imprisoned And she persuaded us. 16 b 17 One day as we were going to the place of prayer, we were met by a slave girl with a spirit of divination, who earned a large income for her This girl followed masters by fortune-telling. Paul and the rest of us, shouting, “These men are servants of the Most High God, who are proclaim- 18 ing to you the way of salvation!” She continued this for many days. Eventually Paul grew so aggravated that he turned and said to the spirit, “In the name of Jesus Christ I com- mand you to come out of her!” And the spirit left 19 her at that very moment. 20 When the girl’s owners saw that their hope of making money was gone, they seized Paul and Silas and dragged them before the authorities in They brought them to the the marketplace. 21 magistrates and said, “These men are Jews and by promot- are throwing our" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 11, + "text": "The Berean Standard Bible (BSB) is a modern English translation of the Holy Bible, effective for public reading, study, memorization, and evangelism. Based on the best available manuscripts and sources, each word is connected back to the Greek or Hebrew text to produce a transparent text that can be studied for its root meanings. The BSB represents a single tier of the Berean Bible. This printing contains the full BSB text, footnotes, section headings, and cross references. Additional components, including translation tables, lexicons, outlines, and summaries, are free online and in a variety of apps. The Berean Bible Translation Committee has employed an open process where translation tables are freely available and all comments are welcomed and considered. These sources may also be downloaded and shared freely. Please see the Berean Bible website for a full description of the translation committee and process. We pray that this text will enable readers to connect with God’s Word to study it, memorize it, After this letter has been read among you, share it, and proclaim it. We are inspired by the model of the early Christian church: make sure that it is also read in the church of the Laodiceans, and that you in turn read the letter from Laodicea. –" + }, + { + "verseNum": 29, + "text": "| 995 synagogue with the Jews and God-fearing Gen- tiles, and in the marketplace with those he met 18 each day. Some Epicurean and Stoic philosophers also began to debate with him. Some of them asked, “What is this babbler trying to say?” Others said, “He seems to be advocating foreign gods.” They said this because Paul was proclaiming the good 19 news of Jesus and the resurrection. b So they took Paul and brought him to the Areopagus, where they asked him, “May we 20 know what this new teaching is that you are pre- senting? For you are bringing some strange notions to our ears, and we want to know what 21 they mean.” Now all the Athenians and foreigners who lived there spent their time doing nothing more Paul’s Address in the Areopagus than hearing and articulating new ideas. 22 c Then Paul stood up in the meeting of the Are- 23 opagus and said, “Men of Athens, I see that in every way you are very religious. For as I walked around and examined your objects of worship, I even found an altar with this inscrip- tion: TO AN UNKNOWN GOD. Therefore what you worship as something un- 24 known, I now proclaim to you. 25 The God who made the world and everything in it is the Lord of heaven and earth and does not live in temples made by human hands. Nor is He served by human hands, as if He needed any- d thing, because He Himself gives everyone life and breath and everything else. He made every nation of men, that they should in- habit the whole earth; and He determined their appointed" + }, + { + "verseNum": 30, + "text": "30 31 Although God overlooked the ignorance of ear- lier times, He now commands all people every- For He has set a day when where to repent. He will judge the world with justice by the Man He has appointed. He has given proof of this to 32 everyone by raising Him from the dead.” 34 33 When they heard about the resurrection of the dead, some began to mock him, but others said, “We want to hear you again on this topic.” At that, Paul left the Areopagus. joined him and believed, including Dionysius the Areop- agite, a woman named Damaris, and others who Paul Ministers in Corinth were with them. (1 Corinthians 1:1–3 ; 2 Corinthians 1:1–2) But some a 18 2 After this, Paul left Athens and went to There he found a Jew named Corinth. Aquila, a native of Pontus, who had recently come from Italy with his wife Priscilla because Claudius had ordered all the Jews to leave Rome. and he stayed and Paul went to visit them, worked with them because they were tentmak- 4 ers by trade, just as he was. 3 5 Every Sabbath he reasoned in the synagogue, And trying to persuade Jews and Greeks alike. when Silas and Timothy came down from Mace- 6 donia, Paul devoted himself fully to the word, But testifying to the Jews that Jesus is the Christ. when they opposed and insulted him, he shook out his garments and told them, “Your blood be on your own heads! I am innocent of it. From now 7 on I will go to the Gentiles.” b 8 to the house of Titus Justus, So Paul left the synagogue and went next door a worship" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–11 ; 2 Corinthians 1:1–2) 1 2 nes, Paul, called to be an apostle of Christ Jesus by the will of God, and our brother Sosthe- To the church of God in Corinth, to those sancti- fied in Christ Jesus and called to be holy, together with all those everywhere who call on the name 3 of our Lord Jesus Christ, their Lord and ours: Grace and peace to you from God our Father Thanksgiving" + }, + { + "verseNum": 2, + "text": ". Priscilla" + }, + { + "verseNum": 23, + "text": "–28) Then Peter came to himself and said, “Now I know for sure that the Lord has sent His angel and rescued me from Herod’s grasp and from everything the Jewish people were antici- 12 pating.” 13 13 And when he had realized this, he went to the house of Mary the mother of John, also called Mark, where many people had gathered together and were praying. He knocked at the outer 14 gate, and a servant girl named Rhoda came to an- swer it. When she recognized Peter’s voice, she was so overjoyed that she forgot to open the gate, but ran inside and announced, “Peter is standing a 1 at the gate!” the days of the Unleavened returned to Jerusalem That is, King Herod Agrippa Literally d 20 b 1 2 Now in the church at Antioch there were prophets and teachers: Barnabas, Sim- eon called Niger, Lucius of Cyrene, Manaen (who had been brought up with Herod the tetrarch), While they were worshiping the Lord and Saul. and fasting, the Holy Spirit said, “Set apart for Me Barnabas and Saul for the work to which I have And after they had fasted and called them.” prayed, they laid their hands on them and sent them off. put forth the hands to mistreat c 3 3 seize Peter—now these were had fulfilled their mission, they ; see" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–7) 44 While Peter was still speaking these words, the 45 Holy Spirit fell upon all who heard his message. All the circumcised believers who had accom- panied Peter were astounded that the gift of the Holy Spirit had been poured out even on the Gen- tiles. For they heard them speaking in tongues 47 and exalting God. 46 Then Peter said, “Can anyone withhold the wa- 48 ter to baptize these people? They have received the Holy Spirit just as we have!” So he ordered that they be baptized in the name of Jesus Christ. Peter’s Report at Jerusalem Then they asked him to stay for a few days. 11 2 The apostles and brothers throughout Judea soon heard that the Gentiles also a So when Peter had received the word of God. went up to Jerusalem, the circumcised believers took issue with him 4 circumcised men and ate with them.” and said, “You visited un- 3 5 6 But Peter began and explained to them the whole sequence of events: “I was in the city of Joppa praying, and in a trance I saw a vision of something like a large sheet being let down from heaven by its four corners, and it came right down to me. I looked at it closely and saw four- footed animals of the earth, wild beasts, reptiles, and birds of the air. Then I heard a voice saying 8 to me, ‘Get up, Peter, kill and eat.’ 7 b ‘No, Lord,’ I said, ‘for nothing impure 9 clean has ever entered my mouth.’ or un- But the voice spoke from heaven a second time, ‘Do not call anything impure that God has made 10 clean.’ This happened three times," + }, + { + "verseNum": 8, + "text": "–12 ;" + }, + { + "verseNum": 27, + "text": "| 997 14 Jesus over those with evil spirits. They would say, “I command you by Jesus, whom Paul pro- Seven sons of Sceva, a Jewish chief claims.” 15 priest, were doing this. But one day the evil spirit responded, “Jesus I 16 know, and I know about Paul, but who are you?” Then the man with the evil spirit jumped on them and overpowered them all. The attack was so violent that they ran out of the house naked 17 and wounded. 18 This became known to all the Jews and Greeks living in Ephesus, and fear came over all of them. So the name of the Lord Jesus was held in high Many who had believed now came for- honor. 19 ward, confessing and disclosing their deeds. And a number of those who had practiced magic arts brought their books and burned them in front of everyone. When the value of the books was calculated, the total came to fifty thousand So the word of the Lord powerfully drachmas. The Riot in Ephesus continued to spread and prevail. 21 20 d e After these things had happened, Paul resolved in the Spirit to go to Jerusalem, passing through Macedonia and Achaia. “After I have 22 been there,” he said, “I must see Rome as well.” He sent two of his helpers, Timothy and Erastus, to Macedonia, while he stayed for a time 23 in the province of Asia. f 24 about the Way. About that time there arose a great disturb- ance It began with a silver- smith named Demetrius who made silver shrines of Artemis, bringing much business to the 25 craftsmen. g 26 Demetrius assembled the craftsmen, alon" + }, + { + "verseNum": 28, + "text": "28 29 When the men heard this, they were enraged and began shouting, “Great is Artemis of the Ephesians!” Soon the whole city was in disar- ray. They rushed together into the theatre, drag- ging with them Gaius and Aristarchus, Paul’s 30 traveling companions from Macedonia. 31 a Paul wanted to go before the assembly, but the Even some of disciples would not allow him. Paul’s friends who were officials of the province sent word to him, begging him not to of Asia 32 venture into the theatre. 33 Meanwhile the assembly was in turmoil. Some were shouting one thing and some another, and most of them did not even know why they were The Jews in the crowd pushed Alexan- there. der forward to explain himself, and he motioned 34 for silence so he could make his defense to the But when they realized that he was a people. Jew, they all shouted in unison for about two 35 hours: “Great is Artemis of the Ephesians!” 36 Finally the city clerk quieted the crowd and de- clared, “Men of Ephesus, doesn’t everyone know that the city of Ephesus is guardian of the temple of the great Artemis and of her image, which fell Since these things are undenia- from heaven? 37 ble, you ought to be calm and not do anything For you have brought these men here, rash. though they have neither robbed our temple nor 38 blasphemed our goddess. 39 So if Demetrius and his fellow craftsmen have a complaint against anyone, the courts are open and proconsuls are available. Let them bring But if you charges against one an" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 7, + "text": "–12) 18 And the child grew, and one day he went out to 19 his father, who was with the harvesters. “My head! My head!” he complained to his father. So his father told a servant, “Carry him to his 20 mother.” 21 After the servant had picked him up and car- ried him to his mother, the boy sat on her lap un- til noon, and then he died. And she went up and laid him on the bed of the man of God. Then she 22 shut the door and went out. And the woman called her husband and said, “Please send me one of the servants and one of the donkeys, that I may go quickly to the man of God and return.” 23 “Why would you go to him today?” he replied. 37 Then Elisha said, “Pick up your son.” 2 Kings 5:2 | 343 “It is not a New Moon or a Sabbath.” 24 “Everything is all right,” she said. 25 Then she saddled the donkey and told her servant, “Drive onward; do not slow the pace for me unless I tell you.” So she set out and went to the man of God at Mount Carmel. When the man of God saw her at a distance, he 26 said to his servant Gehazi, “Look, there is the Shunammite woman. Please run out now to meet her and ask, ‘Are you all right? Is your hus- band all right? Is your child all right?’ 27 And she answered, “Everything is all right.” ” When she reached the man of God at the mountain, she clung to his feet. Gehazi came over to push her away, but the man of God said, “Leave her alone, for her soul is in deep distress, and the LORD has hidden it from me and has not told 28 me.” Then she said, “Did I ask y" + }, + { + "verseNum": 25, + "text": "–26 c 9 Likely reading of the original Heb.; MT 776 |" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 14, + "text": "| 999 19 20 When they came to him, he said, “You know how I lived the whole time I was with you, from I the first day I arrived in the province of Asia. served the Lord with great humility and with tears, especially in the trials that came upon me I did not shrink through the plots of the Jews. back from declaring anything that was helpful to you as I taught you publicly and from house to testifying to Jews and Greeks alike house, a about repentance to God and faith in our Lord Je- 22 sus Christ. 21 24 23 And now, compelled by the Spirit, I am going to Jerusalem, not knowing what will hap- I only know that in town after pen to me there. town the Holy Spirit warns me that chains and But I consider my life of afflictions await me. no value to me, if only I may finish my course and complete the ministry I have received from the Lord Jesus—the ministry of testifying to the good 25 news of God’s grace. 26 Now I know that none of you among whom I have preached the kingdom will see my face Therefore I testify to you this day that I again. am innocent of the blood of all men. For I did not shrink back from declaring to you the whole 28 will of God. 27 b c d Keep watch over yourselves and the entire flock of which the Holy Spirit has made you over- 29 which seers. Be shepherds of the church of God, I know He purchased with His own blood. 30 that after my departure, savage wolves will come Even in among you and will not spare the flock. from your own number, men will rise up and dis- 3" + }, + { + "verseNum": 15, + "text": "15 16 After these days, we packed up and went on to Some of the disciples from Caesa- Jerusalem. rea accompanied us, and they took us to stay at the home of Mnason the Cypriot, an early disci- ple. Paul’s Arrival at Jerusalem 17 18 19 When we arrived in Jerusalem, the brothers welcomed us joyfully. The next day Paul went in with us to see James, and all the elders were Paul greeted them and recounted one present. by one the things that God had done among the 20 Gentiles through his ministry. When they heard this, they glorified God. Then they said to Paul, “You see, brother, how many 21 thousands of Jews have believed, and all of them But they are under the are zealous for the law. impression that you teach all the Jews who live among the Gentiles to forsake Moses, telling them not to circumcise their children or observe What then should we do? They our customs. 23 will certainly hear that you have come. 22 24 Therefore do what we advise you. There are four men with us who have taken a vow. Take these men, purify yourself along with them, and pay their expenses so they can have their heads shaved. Then everyone will know that there is no truth to these rumors about you, but that you 25 also live in obedience to the law. As for the Gentile believers, we have written to them our decision that they must abstain from food sacrificed to idols, from blood, from the meat of strangled animals, and from sexual im- 26 morality.” So the next day Paul took the men and purified himself al" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–21 , 26:1–23) the towns until he came to Caesarea. 9" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 2, + "text": "| 1001 there giving my approval and watching over the 21 garments of those who killed him.’ Then He said to me, ‘Go! I will send you far Paul the Roman Citizen away to the Gentiles.’” 22 The crowd listened to Paul until he made this statement. Then they lifted up their voices and shouted, “Rid the earth of him! He is not fit to 23 live!” 24 As they were shouting and throwing off their the com- cloaks and tossing dust into the air, mander ordered that Paul be brought into the barracks. He directed that Paul be flogged and interrogated to determine the reason for this 25 outcry against him. But as they stretched him out to strap him down, Paul said to the centurion standing there, “Is it lawful for you to flog a Roman citizen with- 26 out a trial?” On hearing this, the centurion went and re- ported it to the commander. “What are you going 27 to do?” he said. “This man is a Roman citizen.” The commander went to Paul and asked, “Tell me, are you a Roman citizen?” 28 “Yes,” he answered. “I paid a high price for my citizenship,” said the commander. 29 “But I was born a citizen,” Paul replied. At once those who were about to interrogate Paul stepped back, and the commander himself was alarmed when he realized that he had put a 30 Roman citizen in chains. The next day the commander, wanting to learn the real reason Paul was accused by the Jews, re- leased him and ordered the chief priests and the to assemble. Then he brought whole Sanhedrin Paul before the Sanhedrin Paul down and had" + }, + { + "verseNum": 3, + "text": "3 18 Then Paul said to him, “God will strike you, you whitewashed wall! You sit here to judge me ac- cording to the law, yet you yourself violate the 4 law by commanding that I be struck.” So the centurion took him to the commander and said, “Paul the prisoner sent and asked me to bring this young man to you. He has something 19 to tell you.” But those standing nearby said, “How dare you 5 insult the high priest of God!” “Brothers,” Paul replied, “I was not aware that he was the high priest, for it is written: ‘Do not 6 speak evil about the ruler of your people.’ ” a Then Paul, knowing that some of them were Sadducees and the others Pharisees, called out in the Sanhedrin, “Brothers, I am a Pharisee, the son of a Pharisee. It is because of my hope in the res- 7 urrection of the dead that I am on trial.” As soon as he had said this, a dispute broke out 8 between the Pharisees and Sadducees, and the assembly was divided. For the Sadducees say that there is neither a resurrection nor angels nor spirits, but the Pharisees acknowledge them 9 all. A great clamor arose, and some scribes from the party of the Pharisees got up and contended sharply, “We find nothing wrong with this man. 10 What if a spirit or an angel has spoken to him?” The dispute grew so violent that the com- mander was afraid they would tear Paul to pieces. He ordered the soldiers to go down and remove 11 him by force and bring him into the barracks. The following night the Lord stood near Paul and said, “Take cour" + }, + { + "verseNum": 5, + "text": "That is, the seven-day period after the Passover b 15 d 16 LXX during which no leaven may be eaten; see" + }, + { + "verseNum": 12, + "text": "–22) have been with Me from the beginning. 16 2 “I have told you these things so that you will not fall away. They will put you out of the synagogues. In fact, a time is coming when anyone who kills you will think he is offering Comforter c 26 They will do these things a service to God. Counselor Paraclete Helper 3" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 6, + "text": "| 1003 he said, “I will hear your case from Cilicia, when your accusers arrive.” Then he ordered that Paul be kept under guard in Herod’s Praeto- Tertullus Prosecutes Paul rium. 24 Five days later the high priest Ananias a came down with some elders and a named Tertullus, who presented to the lawyer 2 governor their case against Paul. 3 When Paul had been called in, Tertullus opened the prosecution: “Because of you, we have en- joyed a lasting peace, and your foresight has brought improvements to this nation. In every 4 way and everywhere, most excellent Felix, we acknowledge this with all gratitude. But in order not to delay you any further, I beg your 5 indulgence to hear us briefly. 6 We have found this man to be a pestilence, stir- ring up dissension among the Jews all over the world. He is a ringleader of the sect of the Naza- 8 renes, and he even tried to desecrate the temple; so we seized him. By examining him yourself, you will be able to learn the truth about 9 all our charges against him.” b The Jews concurred, asserting that these Paul’s Defense to Felix charges were true. 10 11 When the governor motioned for Paul to speak, he began his response: “Knowing that you have been a judge over this nation for many years, I gladly make my defense. You can verify 12 for yourself that no more than twelve days ago I went up to Jerusalem to worship. Yet my ac- cusers did not find me debating with anyone in the temple or riling up a crowd in the synagogues or in the city. Nor c" + }, + { + "verseNum": 7, + "text": "7 22 When Paul arrived, the that Paul be brought in. Jews who had come down from Jerusalem stood around him, bringing many serious charges that 8 they could not prove. Then Agrippa said to Festus, “I would like to hear this man myself.” Paul before Agrippa and Bernice “Tomorrow you will hear him,” Festus declared. 23 Then Paul made his defense: “I have committed no offense against the law of the Jews or against 9 the temple or against Caesar.” But Festus, wishing to do the Jews a favor, said to Paul, “Are you willing to go up to Jerusalem to Paul Appeals to Caesar stand trial before me on these charges?” 10 11 Paul replied, “I am standing before the judg- ment seat of Caesar, where I ought to be tried. I have done nothing wrong to the Jews, as you yourself know very well. If, however, I am guilty of anything worthy of death, I do not refuse to die. But if there is no truth to their ac- cusations against me, no one has the right to 12 hand me over to them. I appeal to Caesar!” Then Festus conferred with his council and re- plied, “You have appealed to Caesar. To Caesar Festus Consults Agrippa you will go!” 13 The next day Agrippa and Bernice came with great pomp and entered the auditorium, along with the commanders and leading men of the 24 city. And Festus ordered that Paul be brought in. Then Festus said, “King Agrippa and all who are present with us, you see this man. The whole Jewish community has petitioned me about him, both here and in Jerusalem, crying out that he But" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–23) 22 2 d “Brothers and fathers, listen now to my When they heard defense before you.” him speak to them in Hebrew, they became even more silent. the commander of the in Aramaic d 2 in the Hebrew language b 31 ; Asia was a Roman province in what is now western Turkey. Literally Or ; literally Or ; literally 3 “I am a Jew, born in Tarsus Then Paul declared, of Cilicia, but raised in this city. I was educated at the feet of Gamaliel in strict conformity to the law of our fathers. I was just as zealous for God as any 4 of you are today. 5 I persecuted this Way even to the death, detain- ing both men and women and throwing them into prison, as the high priest and the whole Council can testify about me. I even obtained let- ters from them to their brothers in Damascus, and I was on my way to apprehend these people 6 and bring them to Jerusalem to be punished. 7 About noon as I was approaching Damascus, suddenly a bright light from heaven flashed around me. I fell to the ground and heard a voice 8 say to me, ‘Saul, Saul, why do you persecute Me?’ ‘Who are You, Lord?’ I asked. 9 ‘I am Jesus of Nazareth, whom you are persecut- My companions saw the light, ing,’ He replied. but they could not understand the voice of the 10 One speaking to me. Then I asked, ‘What should I do, Lord?’ ‘Get up and go into Damascus,’ He told me. ‘There you will be told all that you have been appointed 11 to do.’ 12 Because the brilliance of the light had blinded me, my companions led me by the hand into" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 10, + "text": "| 1005 matters, and I can speak freely to him. I am con- fident that none of this has escaped his notice, because it was not done in a corner. King Agrippa, do you believe the prophets? I know you 28 do.” 27 Then Agrippa said to Paul, “Can you persuade 29 me in such a short time to become a Christian?” “Short time or long,” Paul replied, “I wish to God that not only you but all who hear me this day may become what I am, except for these 30 chains.” 31 Then the king and the governor rose, along with Bernice and those seated with them. On their way out, they said to one another, “This man has done nothing worthy of death or impris- 32 onment.” And Agrippa said to Festus, “This man could have been released if he had not appealed to Cae- Paul Sails for Rome sar.” 27 c When it was decided that we would sail for Italy, Paul and some other prisoners were handed over to a centurion named Julius, who belonged to the Imperial We d boarded an Adramyttian ship about to sail for and we put out to ports along the coast of Asia, sea. Aristarchus, a Macedonian from Thessalo- 3 nica, was with us. Regiment. 2 4 The next day we landed at Sidon, and Julius treated Paul with consideration, allowing him to visit his friends and receive their care. After 5 putting out from there, we sailed to the lee of Cy- prus because the winds were against us. And when we had sailed across the open sea off the coast of Cilicia and Pamphylia, we came to Myra in Lycia. There the centurion found an Alexan- 7 drian" + }, + { + "verseNum": 11, + "text": "11 28 12 But contrary to Paul’s advice, the centurion was persuaded by the pilot and by the owner of the ship. Since the harbor was unsuitable to winter in, the majority decided to sail on, hoping that somehow they could reach Phoenix to win- ter there. Phoenix was a harbor in Crete facing The Storm at Sea" + }, + { + "verseNum": 13, + "text": "–26) 4 5 Then the LORD hurled a great wind upon the sea, and such a violent storm arose that the The sail- ship was in danger of breaking apart. ors were afraid, and each cried out to his own god. And they threw the ship’s cargo into the sea to lighten the load. But Jonah had gone down to the lowest part of the vessel, where he lay down 6 and fell into a deep sleep. The captain approached him and said, “How can you sleep? Get up and call upon your God. Per- haps this God will consider us, so that we may not 7 perish.” “Come!” said the sailors to one another. “Let us cast lots to find out who is responsible for this calamity that is upon us.” 8 So they cast lots, and the lot fell on Jonah. “Tell us now,” they demanded, “who is to blame for this calamity that is upon us? What is your oc- cupation, and where have you come from? What 9 is your country, and who are your people?” “I am a Hebrew,” replied Jonah. “I worship the LORD, the God of the heavens, who made the sea 10 and the dry land.” Then the men were even more afraid and said to him, “What have you done?” The men knew that he was fleeing from the presence of the LORD, because he had told them. the men dug in a 13 Hebrew Now the sea was growing worse and worse, so they said to Jonah, “What must we do to you to 12 calm this sea for us?” “Pick me up,” he answered, “and cast me into the sea, so it may quiet down for you. For I know that I am to blame for this violent storm that has 13 come upon you.” a Nevertheless, the men" + }, + { + "verseNum": 28, + "text": "" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 16, + "text": "–31) 6 a 2 and the train of His robe In the year that King Uzziah died, I saw the Lord seated on a throne, high and exalted; filled the temple. Above Him stood seraphim, each having six wings: With two wings they covered their faces, with two they covered their feet, and with two And they were calling out to they were flying. one another: 3 4 “Holy, holy, holy is the LORD of Hosts; all the earth is full of His glory.” At the sound of their voices the doorposts and thresholds shook, and the temple was filled with 5 smoke. Then I said: “Woe is me, for I am ruined, because I am a man of unclean lips dwelling among a people of unclean lips; 6 for my eyes have seen the King, the LORD of Hosts.” 7 Then one of the seraphim flew to me, and in his hand was a glowing coal that he had taken with tongs from the altar. And with it he touched my mouth and said: “Now that this has touched your lips, 8 your iniquity is removed and your sin is atoned for.” Then I heard the voice of the Lord saying: And He replied: “Go and tell this people, ‘Be ever hearing, but never b 10 understanding; be ever seeing, but never perceiving.’ Make the hearts of this people calloused; deafen their ears and close their eyes. Otherwise they might see with their eyes, hear with their ears, c understand with their hearts, 11 and turn and be healed. ” Then I asked: “How long, O Lord?” And He replied: “Until the cities lie ruined and without inhabitant, 12 until the houses are left unoccupied 13 and the land is desol" + }, + { + "verseNum": 26, + "text": "eyes, hear with their ears, understand with their hearts, and turn, and I would heal them. the hem of His robe b 9 “Here am I. Send me!” Or Hebrew; LXX Hebrew; LXX d 1 e 2 had set up camp in Ephraim f 3 Shear-jashub" + }, + { + "verseNum": 27, + "text": "a remnant shall return That is, Syria Or means . Cited in" + }, + { + "verseNum": 31, + "text": "| 1007 18 against our people or the customs of our fathers, I was taken prisoner in Jerusalem and handed over to the Romans. They examined me and 19 wanted to release me, because there was no ba- sis for a death sentence against me. But when the Jews objected, I was compelled to appeal to Caesar, even though I have no charge to bring So for this reason I have against my nation. called to see you and speak with you. It is be- cause of the hope of Israel that I am bound with 21 this chain.” 20 The leaders replied, “We have not received any letters about you from Judea, nor have any of the 22 brothers from there reported or even mentioned But we consider your anything bad about you. views worth hearing, because we know that peo- 23 ple everywhere are speaking against this sect.” So they set a day to meet with Paul, and many people came to the place he was staying. He ex- pounded to them from morning to evening, testi- fying about the kingdom of God and persuading them about Jesus from the Law of Moses and the 24 Prophets. 25 Some of them were convinced by what he said, They disagreed but others refused to believe. among themselves and began to leave after Paul had made this final statement: “The Holy Spirit was right when He spoke to your fathers through 26 Isaiah the prophet: ‘Go to this people and say, “You will be ever hearing but never understanding; 27 you will be ever seeing but never perceiving.” For this people’s heart has grown callous; they hardly hear with their ears," + } + ] + } + ] + }, + { + "name": "Romans", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 17, + "text": "," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–16) For the choirmaster: To the tune of “Do Not Destroy.” A Psalm of Asaph. A song. 1 We give thanks to You, O God; 2 we give thanks, for Your Name is near. The people declare Your wondrous works. There is no longer any prophet. And none of us knows how long this will 10 3 “When I choose a time, I will judge fairly. last. 11 How long, O God, will the enemy taunt You? Will the foe revile Your name forever? Why do You withdraw Your strong right a 12 hand? Stretch it out to destroy them! 13 Yet God is my King from ancient times, working salvation on the earth. You divided the sea by Your strength; When the earth and all its dwellers quake, Selah 4 it is I who bear up its pillars. I say to the proud, ‘Do not boast,’ 5 and to the wicked, ‘Do not lift up your horn. 6 Do not lift up your horn against heaven or speak with an outstretched neck.’ ” For exaltation comes neither from east nor 14 You smashed the heads of the dragons of 7 west, the sea; 15 You crushed the heads of Leviathan; You fed him to the creatures of the desert. 16 You broke open the fountain and the flood; You dried up the ever-flowing rivers. b 17 The day is Yours, and also the night; You established the moon and the sun. 18 You set all the boundaries of the earth; You made the summer and winter. Remember how the enemy has mocked You, O LORD, 19 how a foolish people has spurned Your name. Do not deliver the soul of Your dove to beasts; 20 do not forget the lives of Your afflicted forever. Consider Your covenant, 2" + }, + { + "verseNum": 6, + "text": "They hold fast to their evil purpose; they speak of hiding their snares. “Who will see them?” they say. 6 They devise injustice and say, “We have perfected a secret plan.” For the inner man and the heart are 7 mysterious. 8 But God will shoot them with arrows; suddenly they will be wounded. They will be made to stumble, their own tongues turned against 9 them. All who see will shake their heads. Then all mankind will fear 10 and proclaim the work of God; so they will ponder what He has done. Let the righteous rejoice in the LORD and take refuge in Him; let all the upright in heart exult. Psalm 65 Praise Awaits God in Zion For the choirmaster. A Psalm of David. A song." + }, + { + "verseNum": 24, + "text": "Or DSS and Vulgate; MT h 15 g 15 b 5 in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 4, + "text": "13 7" + }, + { + "verseNum": 5, + "text": "“So that You may be proved right when You speak a and victorious when You judge.” 5 6 But if our unrighteousness highlights the right- eousness of God, what shall we say? That God is unjust to inflict His wrath on us? I am speaking in 7 human terms. Certainly not! In that case, how could God judge the world? However, if my falsehood accentuates God’s truthfulness, to the increase of His glory, why am I still condemned as a sinner? Why not say, as some slanderously claim that we say, “Let us do evil that good may There Is No One Righteous result”? Their condemnation is deserved!" + }, + { + "verseNum": 9, + "text": "–20) For the choirmaster. According to Mahalath.b A Maskil c of David. 1 The fool says in his heart, “There is no God.” They are corrupt; their ways are vile. There is no one who does good. 2 God looks down from heaven upon the sons of men to see if any understand, 3 if any seek God. All have turned away, d they have together become corrupt; e there is no one who does good, 4 not even one. Will the workers of iniquity never learn? They devour my people like bread; 5 they refuse to call upon God. There they are, overwhelmed with dread, where there was nothing to fear. For God has scattered the bones of those who besieged you. You put them to shame, 6 for God has despised them. Oh, that the salvation of Israel would come f from Zion! The righteous will see and fear; they will mock the evildoer, saying, a 1 Maskil b 1 Mahalath When God restores His captive people, let Jacob rejoice, let Israel be glad! c 1 Maskil is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. worthless e 3 d 3 f 6 term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. is probably a musical or liturgical term; see also" + }, + { + "verseNum": 10, + "text": "–12 i 11 ; Hebrew Or throughout the Psalms denote one who is morally deficient. my kidneys instruct me LXX will dwell in hope I foresaw g 9 f 8 is probably a musical or liturgical term; used for Psalm 16 and Psalms 56–60. LXX LXX Cited in" + }, + { + "verseNum": 13, + "text": ", Psalm 6 Do Not Rebuke Me in Your Anger" + }, + { + "verseNum": 14, + "text": "Probable reading; MT d 6 Or Will You forget me forever? How long will You hide Your face from me? like silver refined in a furnace of clay, purified is probably a musical term; b 10 He crouches and lies low c 1 Sheminith 502 |" + }, + { + "verseNum": 15, + "text": "–17 your lips have spoken lies, 4 and your tongue mutters injustice. No one calls for justice; no one pleads his case honestly. They rely on empty pleas; they tell lies; 5 they conceive mischief and give birth to iniquity. They hatch the eggs of vipers and weave a spider’s web. Whoever eats their eggs will die; 6 crack one open, and a viper is hatched. Their cobwebs cannot be made into clothing, and they cannot cover themselves with their works. Their deeds are sinful deeds, 7 and acts of violence are in their hands. Their feet run to evil; they are swift to shed innocent blood. a Their thoughts are sinful thoughts; 8 b ruin and destruction lie in their wake. The way of peace they have not known, and there is no justice in their tracks. They have turned them into crooked paths; no one who treads on them will know 9 peace. Therefore justice is far from us, and righteousness does not reach us. We hope for light, but there is darkness; for brightness, but we walk in gloom. 10 Like the blind, we feel our way along the wall, groping like those without eyes. We stumble at midday as in the twilight; 11 among the vigorous we are like the dead. We all growl like bears and moan like doves. 12 We hope for justice, but find none, for salvation, but it is far from us. For our transgressions are multiplied before You, and our sins testify against us. Our transgressions are indeed with us, 13 and we know our iniquities: rebelling and denying the LORD, turning away from our God, 670 |" + }, + { + "verseNum": 18, + "text": "Literally man: e There is no fear of God 2 before his eyes. For his eyes are too full of conceit to detect or hate his own sin. Like a godless circle of mockers, c 16 d 19 Or See John 514 |" + }, + { + "verseNum": 21, + "text": "–31) 3 Finally, my brothers, rejoice in the Lord. It is no trouble for me to write the same things to 2 you again, and it is a safeguard for you. 3 Watch out for those dogs, those workers of evil, For it is we who those mutilators of the flesh! are the circumcision, we who worship by the 4 Spirit of God, who glory in Christ Jesus, and who though I myself put no confidence in the flesh— could have such confidence. 5 If anyone else thinks he has grounds for confi- dence in the flesh, I have more: circumcised on the eighth day, of the people of Israel, of the tribe of Benjamin; a Hebrew of Hebrews; as to the law, as to zeal, persecuting the church; as a Pharisee; to righteousness in the law, faultless. 6 7 8 2 3" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–12 ;" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 7, + "text": "LXX 7 and all the stars by the breath of His mouth. He piles up the waters of the sea; He puts the depths into storehouses. ; cited in" + }, + { + "verseNum": 8, + "text": "Or 512 |" + }, + { + "verseNum": 13, + "text": "–25) d 19 Then Melchizedek king of Salem brought out bread and wine—since he was priest of God Most High and he blessed Abram and said: — 20 “Blessed be Abram by God Most High, Creator of heaven and earth, and blessed be God Most High, who has delivered your enemies into your hand.” Then Abram gave Melchizedek a tenth of 21 everything. The king of Sodom said to Abram, “Give me the a 8 people, but take the goods for yourself.” b 13 Terebinths 8 But Abram replied, “Lord GOD, how can I know 9 that I will possess it?” And the LORD said to him, “Bring Me a heifer, a goat, and a ram, each three years old, along with 10 a turtledove and a young pigeon.” 11 So Abram brought all these to Him, split each of them down the middle, and laid the halves op- posite each other. The birds, however, he did not And the birds of prey descended on cut in half. the carcasses, but Abram drove them away. As Great Trees the sun was setting, Abram fell into a deep sleep, c 13 berit 12 That is, the Valley of the Dead Sea e 5 f 6 translated in most passages as Cited in" + }, + { + "verseNum": 17, + "text": ". Hebrew d 11 Ishmael El-Shaddai means 18 |" + }, + { + "verseNum": 18, + "text": "covenant. d 18 Or El-Elyon or Hebrew Forms of the Hebrew ; also in verses 19, 20, and 22; cited in" + }, + { + "verseNum": 22, + "text": "," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 6, + "text": "–11) 25 3 2 Now there was a man of the Pharisees named Nicodemus, a leader of the Jews. He came to Jesus at night and said, “Rabbi, we know that You are a teacher who has come from God. For no one could perform the signs You are doing 3 if God were not with him.” c Jesus replied, “Truly, truly, I tell you, no one can ” 4 see the kingdom of God unless he is born again. “How can a man be born when he is old?” Nico- demus asked. “Can he enter his mother’s womb a 5 second time to be born?” Jesus answered, “Truly, truly, I tell you, no one a 14 can enter the kingdom of God unless he is born of the temple b 17 you Literally nal life in Him. for is plural; also in verse 12. g 16 ; also in verse 15 only begotten" + }, + { + "verseNum": 12, + "text": "–21) and they were not ashamed. c 3 was more crafty than any Now the serpent beast of the field that the LORD God had made. And he said to the woman, “Did God really say, ‘You must not eat from any tree in the 2 garden?’ ” 3 The woman answered the serpent, “We may eat the fruit of the trees of the garden, but about the fruit of the tree in the middle of the garden, God has said, ‘You must not eat of it or touch it, or you 4 will die.’ ” 5 “You will not surely die,” the serpent told the woman. “For God knows that in the day you eat of it, your eyes will be opened and you will be like 6 God, knowing good and evil.” When the woman saw that the tree was good for food and pleasing to the eyes, and that it was desirable for obtaining wisdom, she took the fruit and ate it. She also gave some to her hus- 7 band who was with her, and he ate it. And the eyes of both of them were opened, and they knew that they were naked; so they sewed together fig leaves and made coverings for God Arraigns Adam and Eve themselves. 8 d Then the man and his wife heard the voice of the LORD God walking in the garden in the breeze of the day, and they hid themselves from the presence of the LORD God among the trees of 9 the garden. But the LORD God called out to the man, “Where b 24 a 21 are you?” Or took part of the man’s side nachash unto the Ruach snake at the breezy (time) 10:7–8, 1 Cor. 6:16, and Eph. 5:31 crush bruise d 8 c 1 ; similarly in v. 22 Hebrew strike ; Hebrew , or . Or The same Heb. root f" + }, + { + "verseNum": 14, + "text": "| 1011 10 25 Abraham’s faith was credited to him as right- In what context was it credited? Was eousness. it after his circumcision, or before? It was not 11 after, but before. a who believe in Him who raised Jesus our Lord He was delivered over to death from the dead. for our trespasses and was raised to life for our The Triumph of Faith justification. 12 And he received the sign of circumcision as a seal of the righteousness that he had by faith while he was still uncircumcised. So then, he is the father of all who believe but are not circum- cised, in order that righteousness might be cred- And he is also the father of the ited to them. circumcised who not only are circumcised, but who also walk in the footsteps of the faith that our father Abraham had before he was Abraham Receives the Promise circumcised." + }, + { + "verseNum": 15, + "text": "15 16 But the gift is not like the trespass. For if the many died by the trespass of the one man, how much more did God’s grace and the gift that came by the grace of the one man, Jesus Christ, abound Again, the gift is not like the result to the many! of the one man’s sin: The judgment that followed one sin brought condemnation, but the gift that 17 followed many trespasses brought justification. For if, by the trespass of the one man, death reigned through that one man, how much more will those who receive the abundance of grace and of the gift of righteousness reign in life 18 through the one man, Jesus Christ! So then, just as one trespass brought condem- nation for all men, so also one act of righteous- 19 ness brought justification and life for all men. For just as through the disobedience of the one man the many were made sinners, so also through the obedience of the one man the many 20 will be made righteous. 21 The law came in so that the trespass would in- crease; but where sin increased, grace increased all the more, so that, just as sin reigned in death, so also grace might reign through right- eousness to bring eternal life through Jesus Dead to Sin, Alive to God (2 Cor. 4:7–18) Christ our Lord. 6 2 4 3 What then shall we say? Shall we continue in Certainly sin so that grace may increase? not! How can we who died to sin live in it any longer? Or aren’t you aware that all of us who were baptized into Christ Jesus were baptized We were therefore buried with into Hi" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–14) b 7 8 Now we have this treasure in jars of clay to show that this surpassingly great power is from We are hard pressed on all God and not from us. sides, but not crushed; perplexed, but not in des- persecuted, but not forsaken; struck pair; 10 down, but not destroyed. 9 11 We always carry around in our body the death of Jesus, so that the life of Jesus may also be re- For we who are alive are vealed in our body. always consigned to death for Jesus’ sake, so that the life of Jesus may also be revealed in our mor- tal body. So then, death is at work in us, but life 13 is at work in you. 12 c 14 And in keeping with what is written, “I be- lieved, therefore I have spoken,” we who have the same spirit of faith also believe and therefore d knowing that the One who raised the speak, will also raise us with Jesus and pre- Lord Jesus sent us with you in His presence. All this is for your benefit, so that the grace that is extending to more and more people may cause thanksgiv- 16 ing to overflow, to the glory of God. 15 18 17 Therefore we do not lose heart. Though our outer self is wasting away, yet our inner self is For our light and being renewed day by day. momentary affliction is producing for us an eter- nal weight of glory that is far beyond compari- son. So we fix our eyes not on what is seen, but on what is unseen. For what is seen is temporary, Our Eternal Dwelling" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6) ceive the promise of the Spirit. 15 Brothers, let me put this in human terms. Even 16 a human covenant, once it is ratified, cannot be The promises were spo- canceled or amended. ken to Abraham and to his seed. The Scripture does not say, “and to seeds,” meaning many, but 17 “and to your seed,” meaning One, who is Christ. j 18 What I mean is this: The law that came 430 years later does not revoke the covenant previ- ously established by God, so as to nullify the For if the inheritance depends on the promise. law, then it no longer depends on a promise; but God freely granted it to Abraham through a promise. 2 O foolish Galatians! Who has bewitched you? Before your very eyes Jesus Christ was I would like to clearly portrayed as crucified. a 9 learn just one thing from you: Did you receive the c 6 f 11 i 14 That is, Peter; also in verses 11 and 14 g 12" + }, + { + "verseNum": 7, + "text": "and" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 9, + "text": "–11 ;" + }, + { + "verseNum": 11, + "text": "| 1013 20 And if I do what I do evil I do not want to do. not want, it is no longer I who do it, but it is sin 21 living in me that does it. 22 23 So this is the principle I have discovered: When I want to do good, evil is right there with me. For in my inner being I delight in God’s law. But I see another law at work in my body, warring against the law of my mind and holding b me captive to the law of sin that dwells within 24 me. 25 What a wretched man I am! Who will rescue Thanks be to God, me from this body of death? through Jesus Christ our Lord! So then, with my mind I serve the law of God, but Walking by the Spirit with my flesh I serve the law of sin." + }, + { + "verseNum": 12, + "text": "Heirs with Christ 12 Therefore, brothers, we have an obligation, 13 but it is not to the flesh, to live according to it. For if you live according to the flesh, you will 14 die; but if by the Spirit you put to death the deeds For all who are led by of the body, you will live. 15 the Spirit of God are sons of God. 16 For you did not receive a spirit of slavery that returns you to fear, but you received the Spirit of adoption to sonship, by whom we cry, “Abba! The Spirit Himself testifies with our Father!” And if we are spirit that we are God’s children. children, then we are heirs: heirs of God and co- heirs with Christ—if indeed we suffer with Him, Future Glory (2 Corinthians 5:1–10) so that we may also be glorified with Him. 18 17 20 I consider that our present sufferings are not 19 comparable to the glory that will be revealed in us. The creation waits in eager expectation for For the crea- the revelation of the sons of God. tion was subjected to futility, not by its own will, 21 but because of the One who subjected it, in hope that the creation itself will be set free from its bondage to decay and brought into the glorious 22 freedom of the children of God. 23 We know that the whole creation has been groaning together in the pains of childbirth until the present time. Not only that, but we our- selves, who have the firstfruits of the Spirit, groan inwardly as we wait eagerly for our adop- For tion as sons, the redemption of our bodies. in this hope we were saved; but hope" + }, + { + "verseNum": 18, + "text": "–27) but what is unseen is eternal. 5 2 For we know that if the earthly tent we live in is dismantled, we have a building from God, an eternal house in heaven, not built by hu- For in this tent we groan, longing to man hands. because be clothed with our heavenly dwelling, 4 when we are clothed, we will not be found naked. For while we are in this tent, we groan under our burdens, because we do not wish to be un- a 6 clothed but clothed, so that our mortality may be e 17 b 6 a new creature in the face of Christ a sin offering f 21 3 2 Corinthians 5:21 | 1037 5 And it is God who has pre- swallowed up by life. pared us for this very purpose and has given us 6 the Spirit as a pledge of what is to come. 8 7 Therefore we are always confident, although we know that while we are at home in the body, For we walk by we are away from the Lord. faith, not by sight. We are confident, then, and 9 would prefer to be away from the body and at So we aspire to please Him, home with the Lord. whether we are at home in this body or away For we must all appear before the judg- from it. ment seat of Christ, that each one may receive his due for the things done in the body, whether Ambassadors for Christ good or bad. 11 10 12 Therefore, since we know what it means to fear the Lord, we try to persuade men. What we are is clear to God, and I hope it is clear to your We are not commending conscience as well. ourselves to you again. Instead, we are giving you an occasion to be proud of us, so that you" + }, + { + "verseNum": 28, + "text": "–34) 3 4 5 Blessed be the God and Father of our Lord Jesus Christ, who has blessed us in Christ with every For He spiritual blessing in the heavenly realms. chose us in Him before the foundation of the world to be holy and blameless in His presence. He predestined us for adoption as His In love sons through Jesus Christ, according to the good to the praise of His glorious pleasure of His will, grace, which He has freely given us in the Be- 7 loved One. 6 In Him we have redemption through His blood, 8 the forgiveness of our trespasses, according to 9 that He lavished on us the riches of His grace with all wisdom and understanding. And He has made known to us the mystery of His will accord- ing to His good pleasure, which He purposed in as a plan for the fullness of time, to bring Christ all things in heaven and on earth together in 11 Christ. 10 12 In Him we were also chosen as God’s own, hav- ing been predestined according to the plan of Him who works out everything by the counsel of in order that we, who were the first to His will, hope in Christ, would be for the praise of His 13 glory. And in Him, having heard and believed the word of truth—the gospel of your salvation— 14 you were sealed with the promised Holy Spirit, who is the pledge of our inheritance until the redemption of those who are God’s possession, a 1 to the praise of His glory. in Ephesus b 18 Some manuscripts do not include . TR 16 For this reason, ever since I heard about your faith in the Lord Jesus and yo" + }, + { + "verseNum": 35, + "text": "–39) For the choirmaster. A Maskil c of the sons of Korah. I say to God my Rock, “Why have You forgotten me? 10 Why must I walk in sorrow because of the enemy’s oppression?” Like the crushing of my bones, my enemies taunt me, while they say to me all day long, a 1 “Where is your God?” We have heard with our ears, O God; our fathers have told us the work You did in their days, 2 in the days of old. With Your hand You drove out the nations and planted our fathers there; You crushed the peoples and cast them out. and see the face of God? Maskil b 2 c 1 Maskil In many Hebrew manuscripts Psalms 42 and 43 constitute one psalm. used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. Or is probably a musical or liturgical term; is probably a 3 20 For it was not by their sword that they took 21 If we had forgotten the name of our God the land; or spread out our hands to a foreign god, their arm did not bring them victory. 22 would not God have discovered," + }, + { + "verseNum": 36, + "text": "and 142. Or ; similarly in verse 7 Cited is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, Literally g 7 or Or ; here and throughout Psalm 45 Cited in" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 6, + "text": "–29) 1 2 a This is the burden of the word of the LORD to Israel through Malachi: “I have loved you,” says the LORD. But you ask, “How have You loved us?” 3 b “Was not Esau Jacob’s brother?” declares the but Esau I have LORD. “Yet Jacob I have loved, and I have made his mountains a waste- hated, c land and left his inheritance to the desert jack- 4 als. ” 5 Though Edom may say, “We have been devas- tated, but we will rebuild the ruins,” this is what the LORD of Hosts says: “They may build, but I will demolish. They will be called the Land of Wickedness, and a people with whom the LORD You will see this with your is indignant forever. own eyes, and you yourselves will say, ‘The LORD is great—even beyond the borders of The Polluted Offerings Israel.’ 6 ” “A son honors his father, and a servant his mas- ter. But if I am a father, where is My honor? And if I am a master, where is your fear of Me?” says the LORD of Hosts to you priests who despise My name. 7 “But you ask, ‘How have we despised Your name?’ By presenting defiled food on My altar. d But you ask, ‘How have we defiled You ?’ By saying that the table of the LORD is contempt- 8 ible. When you offer blind animals for sacrifice, is it not wrong? And when you present the lame and sick ones, is it not wrong? Try offering them to your governor! Would he be pleased with you or 9 show you favor?” asks the LORD of Hosts. “But ask now for God’s favor. Will He be gra- cious? Since this has come from your hands, will My messenger a" + }, + { + "verseNum": 7, + "text": "and" + }, + { + "verseNum": 9, + "text": "Far be it from You to do ones who are there? such a thing—to kill the righteous with the wicked, so that the righteous and the wicked are treated alike. Far be it from You! Will not the 26 Judge of all the earth do what is right?” So the LORD replied, “If I find fifty righteous ones within the city of Sodom, on their account I 27 will spare the whole place.” 28 Then Abraham answered, “Now that I have ventured to speak to the Lord—though I am but suppose the fifty righteous dust and ashes— ones lack five. Will You destroy the whole city for the lack of five?” He replied, “If I find forty-five there, I will not de- 29 stroy it.” Once again Abraham spoke to the LORD, “Sup- pose forty are found there?” He answered, “On account of the forty, I will not 30 do it.” Then Abraham said, “May the Lord not be an- gry, but let me speak further. Suppose thirty are found there?” 31 He replied, “If I find thirty there, I will not do it.” And Abraham said, “Now that I have ventured to speak to the Lord, suppose twenty are found there?” He answered, “On account of the twenty, I will 32 not destroy it.” Finally, Abraham said, “May the Lord not be angry, but let me speak once more. Suppose ten are found there?” And He answered, “On account of the ten, I will 33 not destroy it.” When the LORD had finished speaking with Abraham, He departed, and Abraham returned Lot Welcomes the Angels" + }, + { + "verseNum": 12, + "text": "sounds like a Hebrew term a out grasping Esau’s heel; so he was named Ja- cob. And Isaac was sixty years old when the 27 twins were born. 28 When the boys grew up, Esau became a skillful hunter, a man of the field, while Jacob was a quiet Because Isaac had a man who stayed at home. taste for wild game, he loved Esau; but Rebekah Esau Sells His Birthright loved Jacob. 29 One day, while Jacob was cooking some stew, 30 Esau came in from the field and was famished. He said to Jacob, “Let me eat some of that red stew, for I am famished.” (That is why he was also 31 called Edom. 32 “First sell me your birthright,” Jacob replied. ) b “Look,” said Esau, “I am about to die, so what 33 good is a birthright to me?” “Swear to me first,” Jacob said. 34 So Esau swore to Jacob and sold him the birth- Then Jacob gave some bread and lentil right. stew to Esau, who ate and drank and then got up and went away. Thus Esau despised his birth- God’s Promise to Isaac" + }, + { + "verseNum": 13, + "text": "Or 10 “Oh, that one of you would shut the temple doors, so that you would no longer kindle useless fires on My altar! I take no pleasure in you,” says the LORD of Hosts, “and I will accept no offering 11 from your hands. For My name will be great among the nations, from where the sun rises to where it sets. In every place, incense and pure offerings will be presented in My name, because My name will be great among the nations,” says the LORD of “But you profane it when you say, ‘The Hosts. table of the Lord is defiled, and as for its fruit, its 13 food is contemptible.’ 12 You also say: ‘Oh, what a nuisance!’ And you turn up your nose at it,” says the LORD of Hosts. “You bring offerings that are stolen, lame, or sick! Should I accept these from your hands?” asks the 14 LORD. “But cursed is the deceiver who has an ac- ceptable male in his flock and vows to give it, but sacrifices a defective animal to the Lord. For I am a great King,” says the LORD of Hosts, “and My A Warning to the Priests name is to be feared among the nations. 2 2 “And now this decree is for you, O priests: If you do not listen, and if you do not take it to heart to honor My name,” says the LORD of Hosts, “I will send a curse among you, and I will curse your blessings. Yes, I have already begun to curse them, because you are not taking it to 3 heart. e Behold, I will rebuke your descendants, and I will spread dung on your faces, the waste from 4 your feasts, and you will be carried off with it. Then you wil" + }, + { + "verseNum": 15, + "text": "Hebrew Forms of the Hebrew are translated in most passages as . 88 |" + }, + { + "verseNum": 17, + "text": "18 19 Behold, at this time tomorrow I will rain down the worst hail that has ever fallen on Egypt, from So give the day it was founded until now. orders now to shelter your livestock and every- thing you have in the field. Every man or beast that remains in the field and is not brought inside 20 ” will die when the hail comes down upon them.’ Those among Pharaoh’s officials who feared the word of the LORD hurried to bring their servants and livestock to shelter, but those who disregarded the word of the LORD left their 22 servants and livestock in the field. 21 Then the LORD said to Moses, “Stretch out your hand toward heaven, so that hail may fall on all the land of Egypt—on man and beast and every plant of the field throughout the land of 23 Egypt.” 24 So Moses stretched out his staff toward heaven, and the LORD sent thunder and hail, and lightning struck the earth. So the LORD rained The hail fell down hail upon the land of Egypt. and the lightning continued flashing through it. The hail was so severe that nothing like it had ever been seen in all the land of Egypt from the 25 time it became a nation. 26 Throughout the land of Egypt, the hail struck down everything in the field, both man and beast; it beat down every plant of the field and The only place where it stripped every tree. did not hail was in the land of Goshen, where the 27 Israelites lived. Then Pharaoh summoned Moses and Aaron. “This time I have sinned,” he said. “The LORD is 28 righteous, and I and my people" + }, + { + "verseNum": 20, + "text": "642 |" + }, + { + "verseNum": 25, + "text": "and" + }, + { + "verseNum": 26, + "text": "Hebrew your path 10 19 And then I will expose her lewdness So I will betroth you to Me forever;" + }, + { + "verseNum": 29, + "text": "Or 618 |" + }, + { + "verseNum": 33, + "text": "and" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–21) and afflict us beyond measure? 65 “I revealed Myself to those who did not ask for Me; b This is what the LORD says: “As the new wine is found in a cluster of grapes, and men say, ‘Do not destroy it, for it contains a blessing,’ so I will act on behalf of My servants; 9 I will not destroy them all. And I will bring forth descendants from Jacob, and heirs from Judah; d 10 My elect will possess My mountains, and My servants will dwell there. Sharon will become a pasture for flocks, and the Valley of Achor a resting place for 11 herds, for My people who seek Me. I was found by those who did not seek But you who forsake the LORD, e Me. To a nation that did not call My name, 2 I said, ‘Here I am! Here I am!’ All day long I have held out My hands c to an obstinate people who walk in the wrong path, 3 who follow their own imaginations, to a people who continually provoke Me to My face, 4 sacrificing in the gardens and burning incense on altars of brick, sitting among the graves, spending nights in secret places, eating the meat of pigs 5 and polluted broth from their bowls. They say, ‘Keep to yourself; do not come near me, for I am holier than you!’ Such people are smoke in My nostrils, 6 a fire that burns all day long. Behold, it is written before Me: who forget My holy mountain, f 12 who set a table for Fortune and fill bowls of mixed wine for Destiny, I will destine you for the sword, and you will all kneel down to be slaughtered, because I called and you did not answer, I sp" + }, + { + "verseNum": 5, + "text": "and" + }, + { + "verseNum": 6, + "text": "f 12 Or g 13 restore your fortunes d 4 to the extremity of the heavens h 14 Or See" + }, + { + "verseNum": 7, + "text": ". Cited in" + }, + { + "verseNum": 8, + "text": "31 God may bless you in the land that you are enter- 17 ing to possess. But if your heart turns away and you do not lis- 18 ten, but are drawn away to bow down to other gods and worship them, I declare to you today that you will surely perish; you shall not prolong your days in the land that you are crossing the 19 Jordan to possess. I call heaven and earth as witnesses against you today that I have set before you life and death, blessing and cursing. Therefore choose 20 life, so that you and your descendants may live, and that you may love the LORD your God, obey Him, and hold fast to Him. For He is your life, and He will prolong your life in the land that the LORD swore to give to your fathers, to Abra- Joshua to Succeed Moses" + }, + { + "verseNum": 11, + "text": ", and" + }, + { + "verseNum": 13, + "text": "their strength billows the LORD judges c 22 e 30 glorious ; LXX or Or j 5 means ; also in verse 12. Or Or 820 |" + }, + { + "verseNum": 15, + "text": "i 1 LXX at You" + }, + { + "verseNum": 16, + "text": "LXX k 5 j 4 Cited in" + }, + { + "verseNum": 18, + "text": "Or their measuring b 4 You cheer him with joy in Your presence. LXX, Syriac, and Vulgate; Hebrew 506 |" + }, + { + "verseNum": 19, + "text": "Hebrew; LXX LXX; Hebrew ; cited in" + }, + { + "verseNum": 20, + "text": "LXX Meni f 11 have made us melt in the hand Hebrew ; cited in" + }, + { + "verseNum": 21, + "text": ", the Babylonian god of fortune Or Hebrew , the Babylonian god of fate and the Lord GOD will slay you; but the food of the serpent will be dust." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 3, + "text": "; here and in verse 14 Or ; see 2 Kings 9:14. Cited in" + }, + { + "verseNum": 4, + "text": "Some texts break verse 2 and begin verse 3 at this point. 334 | 1 Kings 20:11 severely, if enough dust remains of Samaria for 11 each of my men to have a handful.” And the king of Israel replied, “Tell him: ‘The one putting on his armor should not boast like 12 one taking it off.’ ” a Ben-hadad received this message while he and the kings were drinking in their tents, and he said to his servants, “Take your positions.” So Ahab Defeats Ben-hadad they stationed themselves against the city. 13 Meanwhile a prophet approached Ahab king of Israel and declared, “This is what the LORD says: ‘Do you see this entire great army? Behold, I will deliver it into your hand this very day, and you 14 will know that I am the LORD.’ ” “By whom?” Ahab asked. And the prophet replied, “This is what the LORD says: ‘By the young officers of the district gover- nors.’ ” “Who will start the battle?” asked Ahab. 15 “You will,” answered the prophet. So Ahab assembled the young officers of the district governors, and there were 232 men. And after them, he assembled the rest of the Israelite 16 troops, 7,000 in all. 17 They marched out at noon while Ben-hadad and the 32 kings allied with him were in their tents getting drunk. And the young officers of the district governors marched out first. Now Ben-hadad had sent out scouts, who reported to him, “Men are marching out of 18 Samaria.” “If they have marched out in peace,” he said, “take them alive. Even if they have marched out 19 for war, take them alive." + }, + { + "verseNum": 9, + "text": "Cited in" + }, + { + "verseNum": 10, + "text": "; cited in" + }, + { + "verseNum": 26, + "text": "Cited in Rom. 11:27 Literally Or Or Or or or to adorn the place of My sanctuary, 14 The and I will glorify the place of My feet. sons of your oppressors will come and bow down to you; all who reviled you will fall facedown at your feet and call you the City of the LORD, Zion of the Holy One of Israel. 15 Whereas you have been forsaken and despised, with no one passing through, I will make you an everlasting pride, 16 a joy from age to age. You will drink the milk of nations and nurse at the breasts of royalty; you will know that I, the LORD, am your Savior 17 and your Redeemer, the Mighty One of Jacob. Instead of bronze I will bring you gold; I will bring silver in place of iron, bronze instead of wood, and iron instead of stones. 18 I will appoint peace as your governor and righteousness as your ruler. No longer will violence be heard in your land, nor ruin or destruction within your borders. But you will name your walls Salvation 19 and your gates Praise. No longer will the sun be your light by day, nor the brightness of the moon shine on a your night; b 20 for the LORD will be your everlasting light, and your God will be your splendor. Your sun will no longer set, and your moon will not wane; 21 for the LORD will be your everlasting light, and the days of your sorrow will cease. Then all your people will be righteous; they will possess the land forever; they are the branch of My planting, 22 the work of My hands, so that I may be glorified. The least of you will become a t" + }, + { + "verseNum": 27, + "text": "11 8" + }, + { + "verseNum": 33, + "text": "–36) but the word of our God stands forever.” 9 Go up on a high mountain, O Zion, herald of good news. Raise your voice loudly, f O Jerusalem, herald of good news. Lift it up, do not be afraid! A voice of one calling in the wilderness: “Prepare the way for the LORD But Hezekiah said to Isaiah, “The word of a 3 the LORD that you have spoken is good.” For he c 4 shall be brought low. All the crooked ways shall become straight, and the rough places plains. cited in" + }, + { + "verseNum": 34, + "text": "and 1 Corinthians 2:16 from the east, whom victory meets at every step righteousness Or f 2 652 |" + }, + { + "verseNum": 35, + "text": "Hebrew Or His chest is as hard as a rock, as hard as a lower millstone! 25 When Leviathan rises up, the mighty are 26 terrified; they withdraw before his thrashing. The sword that reaches him has no effect, nor does the spear or dart or arrow. poplars d 22 c 21 ways bramble bushes Who can come within his double mail? Or ; also in verse 22 Or 496 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–8 ; 1 Corinthians 6:18–20) 15 16 f 17 Do you not know that you yourselves are God’s temple, and that God’s Spirit dwells in If anyone destroys God’s temple, God will destroy him; for God’s temple is holy, and you are that 18 temple. you? Let no one deceive himself. If any of you thinks he is wise in this age, he should become a fool, so d 16 c 13 For the wisdom of that he may become wise." + }, + { + "verseNum": 8, + "text": "| 1017 30 c Just as you who formerly disobeyed God have 31 now received mercy through their disobedience, so they too have now disobeyed, in order that 32 they too may now receive mercy through the For God has consigned mercy shown to you. everyone to disobedience so that He may have A Hymn of Praise mercy on everyone." + }, + { + "verseNum": 9, + "text": "–13 ; 1" + }, + { + "verseNum": 14, + "text": "–21) there am I with them.” 21 20 Then Peter came to Jesus and asked, “Lord, how many times shall I forgive my brother who 22 sins against me? Up to seven times?” a Jesus answered, “I tell you, not just seven 23 times, but seventy-seven times! b 24 25 As he began Because of this, the kingdom of heaven is like a king who wanted to settle accounts with his the settlements, servants. a debtor owing ten thousand talents was brought Since the man was unable to pay, the to him. master ordered that he be sold to pay his debt, along with his wife and children and everything 26 he owned. Then the servant fell on his knees before him. ‘Have patience with me,’ he begged, ‘and I will 27 pay back everything.’ His master had compassion on him, forgave his 28 debt, and released him. c But when that servant went out, he found one of his fellow servants who owed him a hundred denarii. He grabbed him and began to choke 29 him, saying, ‘Pay back what you owe me!’ So his fellow servant fell down and begged him, ‘Have patience with me, and I will pay you 30 back.’ But he refused. Instead, he went and had the man thrown into prison until he could pay his 31 debt. 33 Then the master summoned him and said, ‘You wicked servant! I forgave all your debt because Shouldn’t you have had mercy you begged me. In on your fellow servant, just as I had on you?’ anger his master turned him over to the jailers to be tortured, until he should repay all that he 35 owed. 34 That is how My heavenly Father will treat" + }, + { + "verseNum": 19, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–7) deeds and glorify God on the day He visits us. 13 14 Submit yourselves for the Lord’s sake to every human institution, whether to the king as the su- preme authority, or to governors as those sent by him to punish those who do wrong and to praise those who do right. For it is God’s will that by doing good you should silence the igno- a 6 rance of foolish men. f 18 in all fear h 24 g 22 b 7 c 8 15 16 Live in freedom, but do not use your freedom 17 as a cover-up for evil; live as servants of God. e Treat everyone with high regard: Love the fear God, honor the brotherhood of believers, 18 king. f 19 20 Servants, submit yourselves to your masters with all respect, not only to those who are good and gentle, but even to those who are unreason- able. For if anyone endures the pain of unjust suffering because he is conscious of God, this is How is it to your credit if to be commended. you are beaten for doing wrong and you endure it? But if you suffer for doing good and you en- Christ’s Example of Suffering" + }, + { + "verseNum": 8, + "text": "–10) must be cut off from his people. 9 10 When you reap the harvest of your land, you are not to reap to the very edges of your field or gather the gleanings of your harvest. You must not strip your vineyard bare or gather its fallen grapes. Leave them for the poor and the for- 11 eigner. I am the LORD your God. You must not steal. You must not lie or deceive 12 one another. You must not swear falsely by My name and so 13 profane the name of your God. I am the LORD. You must not defraud your neighbor or rob him. You must not withhold until morning the wages 14 due a hired hand. But you are to keep My statutes and ordi- nances, and you must not commit any of these to make them pass through (the fire) a 21 abominations—neither your native-born nor the b 2 You must not curse the deaf or place a stum- bling block before the blind, but you shall fear your God. I am the LORD. Hebrew Cited in" + }, + { + "verseNum": 9, + "text": ", and" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12) 36 Looking up at His disciples, Jesus said: 37 21 “Blessed are you who are poor, for yours is the kingdom of God. Blessed are you who hunger now, for you will be filled. Blessed are you who weep now, 22 for you will laugh. Blessed are you when people hate you, and when they exclude you and insult you and reject 23 your name as evil because of the Son of Man. Rejoice in that day and leap for joy, because great is your reward in heaven. For their fathers treated the prophets in the same way. 38 Do not judge, and you will not be judged. Do not condemn, and you will not be condemned. Give, and it Forgive, and you will be forgiven. will be given to you. A good measure, pressed down, shaken together, and running over will be poured into your lap. For with the measure you 39 use, it will be measured back to you.” 40 Jesus also told them a parable: “Can a blind man lead a blind man? Will they not both fall into a pit? A disciple is not above his teacher, but everyone who is fully trained will be like his teacher. 924 |" + }, + { + "verseNum": 11, + "text": "That is, the 3 Your nakedness will be uncovered and your shame will be exposed. 14 your astrologers who observe the stars, who monthly predict your fate." + }, + { + "verseNum": 13, + "text": "–23 ; 1 Corinthians 8:1–13) 14 2 Then some of the elders of Israel came 3 And the word and sat down before me. “Son of man, of the LORD came to me, saying, these men have set up idols in their hearts and put wicked stumbling blocks before their faces. 4 Should I consult with them in any way? Therefore speak to them and tell them that this is what the Lord GOD says: ‘When any Israelite sets up idols in his heart and puts a wicked stum- bling block before his face, and then comes to the prophet, I the LORD will answer him according so that I may take hold of to his great idolatry, the hearts of the people of Israel. For because of 6 their idols, they are all estranged from Me.’ 5 7 Therefore tell the house of Israel that this is what the Lord GOD says: ‘Repent and turn away from your idols; turn your faces away from all For when any Israelite or your abominations. any foreigner dwelling in Israel separates him- self from Me, sets up idols in his heart, and puts a wicked stumbling block before his face, and then comes to the prophet to inquire of Me, I the I will set My face LORD will answer him Myself. against that man and make him a sign and a prov- erb; I will cut him off from among My people. 9 Then you will know that I am the LORD. 8 10 But if the prophet is enticed to speak a message, then it was I the LORD who enticed him, and I will stretch out My hand against him and destroy him from among My people Israel. They will bear their punishment—the punishment of the in- 11 qu" + }, + { + "verseNum": 23, + "text": "or 1 Corinthians Greetings from Paul and Sosthenes" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 3, + "text": "retreat because of their shame. d 23 and may their loins A slight revocalization of the Hebrew (see also LXX, Syriac, LXX; Hebrew ; cited in" + }, + { + "verseNum": 9, + "text": "is probably a variant of a 46 c 1 Hachmonite the one anointed by the God of Jacob, and the sweet psalmist of Israel: the hero of the songs of Israel Some LXX manuscripts and Vulgate (see also" + }, + { + "verseNum": 11, + "text": "Praise the LORD Psalm 118 The LORD Is on My Side 1 2 Give thanks to the LORD, for He is good; His loving devotion endures forever. a Let Israel 3 say, “His loving devotion endures forever.” Let the house of Aaron say, 4 “His loving devotion endures forever.” Let those who fear the LORD say, “His loving devotion endures forever.” 5 In my distress I called to the LORD, b 6 and He answered and set me free. c The LORD is on my side; 7 I will not be afraid. What can man do to me? The LORD is on my side; He is my helper. 8 Therefore I will look in triumph on those 26 who hate me. It is better to take refuge in the LORD 9 than to trust in man. It is better to take refuge in the LORD 10 than to trust in princes. 11 All the nations surrounded me," + }, + { + "verseNum": 12, + "text": ". the River LXX j 15 That is, the That is, the northern kingdom of Israel The infant will play by the cobra’s den, and the toddler will reach into the a 6 who will arise to rule over the Gentiles; in Him the Gentiles will put their hope the young calf and bull and lion will feed together viper’s nest. d 11 Hebrew; LXX e 11 coastlands hostility g 13 upper Nile region h 15 will completely dry up That is, Babylonia i 15 Or Or Or Hebrew Hebrew 628 |" + }, + { + "verseNum": 13, + "text": "13 Now may the God of hope fill you with all joy and peace as you believe in Him, so that you may overflow with hope by the power of the Holy Paul the Minister to the Gentiles Spirit. 14 16 I myself am convinced, my brothers, that you yourselves are full of goodness, brimming with 15 knowledge, and able to instruct one another. However, I have written you a bold reminder on some points, because of the grace God has to be a minister of Christ Jesus to the given me Gentiles in the priestly service of the gospel of God, so that the Gentiles might become an offer- ing acceptable to God, sanctified by the Holy 17 Spirit. 18 Therefore I exult in Christ Jesus in my service I will not presume to speak of anything to God. except what Christ has accomplished through me 19 in leading the Gentiles to obedience by word and by the power of signs and wonders, and deed, by the power of the Spirit of God. So from Jeru- salem all the way around to Illyricum, I have fully 20 proclaimed the gospel of Christ. a In this way I have aspired to preach the gospel where Christ was not known, so that I would not Ra- be building on someone else’s foundation. ther, as it is written: 21 “Those who were not told about Him will see, b and those who have not heard will 22 understand.” That is why I have often been hindered from Paul’s Travel Plans coming to you. (1 Corinthians 16:5–9) 23 24 But now that there are no further opportuni- ties for me in these regions, and since I have longed for many years to vis" + }, + { + "verseNum": 21, + "text": "" + }, + { + "verseNum": 23, + "text": "–33) go also, they can travel with me. 5 6 After I go through Macedonia, however, I will come to you; for I will be going through Macedo- Perhaps I will stay with you awhile, or even nia. 7 spend the winter, so that you can help me on my For I do not want to see journey, wherever I go. you now only in passing; I hope to spend some But I will stay time with you, if the Lord permits. because a great in Ephesus until Pentecost, door for effective work has opened to me, even Timothy and Apollos" + }, + { + "verseNum": 33, + "text": ". SBL, BYZ, and TR include Some manuscripts place the text of verses 25–27 after" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 17, + "text": "–20) 9 But avoid foolish controversies, genealogies, ar- guments, and quarrels about the law, because 10 these things are pointless and worthless. 11 Reject a divisive man after a first and second knowing that such a man is cor- admonition, Final Remarks and Greetings rupt and sinful; he is self-condemned. 12 13 As soon as I send Artemas or Tychicus to you, make every effort to come to me at Nicopolis, Do because I have decided to winter there. your best to equip Zenas the lawyer and Apollos, 14 so that they will have everything they need. And our people must also learn to devote themselves to good works in order to meet the pressing needs of others, so that they will not be 15 unfruitful. All who are with me send you greetings. b Greet those who love us in the faith. Grace be with all of you. God’s Grace Brings Salvation 11 12 For the grace of God has appeared, bringing salvation to everyone. It instructs us to re- nounce ungodliness and worldly passions, and to 13 live sensible, upright, and godly lives in the pre- as we await the blessed hope and sent age, 14 glorious appearance of our great God and Savior He gave Himself for us to redeem Jesus Christ. us from all lawlessness and to purify for Himself a people for His own possession, zealous for 15 good deeds. Speak these things as you encourage and Heirs of Grace rebuke with all authority. Let no one despise you. 3 2 Remind the believers to submit to rulers and authorities, to be obedient and ready for to malign no one, a" + }, + { + "verseNum": 21, + "text": "–23) 7 Tychicus will tell you all the news about me. He 8 is a beloved brother, a faithful minister, and a fel- I have sent him to you low servant in the Lord. for this very purpose, that you may know about 9 us, and that he may encourage your hearts. With him I am sending Onesimus, our faithful and beloved brother, who is one of you. They will 10 tell you about everything here. 11 My fellow prisoner Aristarchus sends you greetings, as does Mark the cousin of Barnabas. You have already received instructions about Jesus, him: If he comes to you, welcome him. who is called Justus, also sends greetings. These are the only Jews among my fellow workers for the kingdom of God, and they have been a com- 12 fort to me. 13 Epaphras, who is one of you and a servant of Christ Jesus, sends you greetings. He is always wrestling in prayer for you, so that you may stand mature and fully assured in the full will of For I testify about him that he goes to God. great pains for you and for those at Laodicea and 14 Hierapolis. Luke, the beloved physician, and Demas send Signature and Final Instructions you greetings. (1 Cor. 16:19–24 ; 2 Thess. 3:16–18) 15 Greet the brothers in Laodicea, as well as Nym- 16 pha and the church that meets at her house. After this letter has been read among you, make sure that it is also read in the church of the Laodiceans, and that you in turn read the letter 17 from Laodicea. Tell Archippus: “See to it that you complete the 18 ministry you have received in the Lo" + }, + { + "verseNum": 25, + "text": "–27 here." + }, + { + "verseNum": 27, + "text": "| 1021 Greet Tryphena and Tryphosa, women who have worked hard in the Lord. Greet my beloved Persis, who has worked very 13 hard in the Lord. Greet Rufus, chosen in the Lord, and his 14 mother, who has been a mother to me as well. Greet Asyncritus, Phlegon, Hermes, Patrobas, 15 Hermas, and the brothers with them. Greet Philologus and Julia, Nereus and his sis- 16 ter, and Olympas and all the saints with them. Greet one another with a holy kiss. Avoid Divisions All the churches of Christ send you greetings." + } + ] + } + ] + }, + { + "name": "Galatians", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10) 5 6 But some believers from the party of the Phari- sees stood up and declared, “The Gentiles must be circumcised and required to obey the law of Moses.” So the apostles and elders met to look 7 into this matter. 8 After much discussion, Peter got up and said to them, “Brothers, you know that in the early days God made a choice among you that the Gentiles would hear from my lips the message of the gos- And God, who knows the heart, pel and believe. showed His approval by giving the Holy Spirit to He made no distinc- them, just as He did to us. tion between us and them, for He cleansed their 10 hearts by faith. 9 Now then, why do you test God by placing on the necks of the disciples a yoke that neither we nor our fathers have been able to bear? On the contrary, we believe it is through the grace of the Lord Jesus that we are saved, just as they 12 are.” 11 a 14 13 The whole assembly fell silent as they listened to Barnabas and Paul describing the signs and wonders God had done among the Gen- When they had finished tiles through them. speaking, James declared, “Brothers, listen to has told us how God first visited me! the Gentiles to take from them a people to be His The words of the prophets agree with own. 16 this, as it is written: Simon 15 ‘After this I will return and rebuild the fallen tent of David. 17 Its ruins I will rebuild, and I will restore it, so that the remnant of men may seek the Lord, and all the Gentiles who are called 18 by My name, b 19 says the Lord w" + }, + { + "verseNum": 9, + "text": "9 a And recognizing the grace that I had been given, James, Cephas, and John—those reputed to be pillars—gave me and Barnabas the right hand of fellowship, so that we should go to the Gentiles, They only asked and they to the circumcised. us to remember the poor, the very thing I was ea- Paul Confronts Cephas ger to do. 11 10 12 When Cephas came to Antioch, however, I op- posed him to his face, because he stood con- demned. For before certain men came from James, he used to eat with the Gentiles. But when they arrived, he began to draw back and separate himself, for fear of those in the circumcision group. The other Jews joined him in his hypoc- risy, so that by their hypocrisy even Barnabas 14 was led astray. 13 When I saw that they were not walking in line with the truth of the gospel, I said to Cephas in front of them all, “If you, who are a Jew, live like a Gentile and not like a Jew, how can you 15 compel the Gentiles to live like Jews?” b 16 We who are Jews by birth and not Gentile “sin- know that a man is not justified by works ners” of the law, but by faith in Jesus Christ. So we, too, have believed in Christ Jesus, that we may be jus- tified by faith in Christ and not by works of the law, because by works of the law no one will be 17 justified. But if, while we seek to be justified in Christ, we ourselves are found to be sinners, does that make Christ a minister of sin? Certainly not! If I rebuild what I have already torn down, I prove 19 myself to be a lawbreaker. 1" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–9) judgment. 14 15 What good is it, my brothers, if someone claims to have faith, but has no deeds? Can such 16 Suppose a brother or sister is faith save him? If one of you without clothes and daily food. tells him, “Go in peace; stay warm and well fed,” but does not provide for his physical needs, what e So too, faith by itself, if it does not good is that? 18 result in action, is dead. 17 But someone will say, “You have faith and I have deeds.” Show me your faith without deeds, f You and I will show you my faith by my deeds. Good for you! Even the believe that God is one. 20 demons believe that—and shudder. 19 g 21 22 O foolish man, do you want evidence that faith without deeds is worthless? Was not our fa- ther Abraham justified by what he did when he You see that offered his son Isaac on the altar? his faith was working with his actions, and his And the faith was perfected by what he did. the noble name invoked upon you a 7 Scripture was fulfilled that says, “Abraham d 11 23 Or there is one God 20:14;" + }, + { + "verseNum": 6, + "text": ", and" + }, + { + "verseNum": 8, + "text": "Or or Cited in" + }, + { + "verseNum": 11, + "text": ", and h 3 Selah and stagger Interlude DSS, LXX, and Syriac is probably a musical term indicating the setting for the prayer. or is probably a musical or literary term; also in verses 9 and 13. His glory covered the heavens, 4 and His praise filled the earth. His radiance was like the sunlight; rays flashed from His hand, where His power is hidden. 5 Plague went before Him, 6 and fever followed in His steps. He stood and measured the earth; He looked and startled the nations; the ancient mountains crumbled; the perpetual hills collapsed. His ways are everlasting. 7 I saw the tents of Cushan in distress; 8 the curtains of Midian were trembling. Were You angry at the rivers, O LORD? Was Your wrath against the streams? Selah Did You rage against the sea 9 when You rode on Your horses, on Your chariots of salvation? You brandished Your bow; You called for many arrows. 10 You split the earth with rivers. The mountains saw You and quaked; 11 torrents of water swept by. The deep roared with its voice and lifted its hands on high. Sun and moon stood still in their places 12 at the flash of Your flying arrows, at the brightness of Your shining spear. 13 You marched across the earth with fury; You threshed the nations in wrath. You went forth for the salvation of Your people, to save Your anointed." + }, + { + "verseNum": 12, + "text": "; see also" + }, + { + "verseNum": 15, + "text": "–25) Lord. 7 3 Do you not know, brothers (for I am speak- ing to those who know the law), that the law 2 has authority over a man only as long as he lives? For instance, a married woman is bound by law to her husband as long as he lives. But if her husband dies, she is released from the law of So then, if she is joined to another marriage. man while her husband is still alive, she is called an adulteress; but if her husband dies, she is free from that law and is not an adulteress if she mar- ries another man. 4 5 Therefore, my brothers, you also died to the law through the body of Christ, that you might belong to another, to Him who was raised from the dead, For in order that we might bear fruit to God. when we lived according to the flesh, the sinful passions aroused by the law were at work in our But now, having bodies, bearing fruit for death. died to what bound us, we have been released from the law, so that we serve in the new way of the Spirit, and not in the old way of the written God’s Law Is Holy code. 7 6 a 8 What then shall we say? Is the law sin? Certainly not! Indeed, I would not have been mindful of sin if not for the law. For I would not have been aware of coveting if the law had not said, “Do not covet.” But sin, seizing its opportunity through the commandment, produced in me every kind of covetous desire. For apart from the law, sin is 9 dead. 10 Once I was alive apart from the law; but when the commandment came, sin sprang to life and I So I discovered that" + }, + { + "verseNum": 16, + "text": "14 15 16 So when Abram entered Egypt, the Egyptians When saw that the woman was very beautiful. Pharaoh’s officials saw Sarai, they commended her to him, and she was taken into the palace of He treated Abram well on her ac- Pharaoh. count, and Abram acquired sheep and cattle, male and female donkeys, menservants and 17 maidservants, and camels. 18 The LORD, however, afflicted Pharaoh and his household with severe plagues because of So Pharaoh summoned Abram’s wife Sarai. Abram and asked, “What have you done to me? Why didn’t you tell me she was your wife? Why did you say, ‘She is my sister,’ so that I took her as my wife? Now then, here is your wife. Take her 20 and go!” 19 Then Pharaoh gave his men orders concerning Abram, and they sent him away with his wife and Abram and Lot Part Ways all his possessions. 13 So Abram went up out of Egypt into the Negev—he and his wife and all his pos- And Abram sessions—and Lot was with him. had become extremely wealthy in livestock and 3 silver and gold. 2 4 From the Negev he journeyed from place to place toward Bethel, until he came to the place between Bethel and Ai where his tent had for- to the site where he had merly been pitched, built the altar. And there Abram called on the 5 name of the LORD. 6 Now Lot, who was traveling with Abram, also But the land was had flocks and herds and tents. unable to support both of them while they stayed together, for they had so many possessions that And there was dis- they were unable to coexist. c" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 27, + "text": "Or the light of life Cited in" + }, + { + "verseNum": 28, + "text": "28 a 29 Now you, brothers, like Isaac, are children of promise. At that time, however, the son born by the flesh persecuted the son born by the 30 Spirit. It is the same now. b 31 But what does the Scripture say? “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with the free woman’s son.” Therefore, brothers, we are not children of the slave woman, but of the Freedom in Christ free woman. 5 It is for freedom that Christ has set us free. Stand firm, then, and do not be encumbered 2 once more by a yoke of slavery. 3 Take notice: I, Paul, tell you that if you let your- selves be circumcised, Christ will be of no value to you at all. Again I testify to every man who gets himself circumcised that he is obligated to obey the whole law. You who are trying to be justified by the law have been severed from 5 Christ; you have fallen away from grace. 4 6 But by faith we eagerly await through the Spirit the hope of righteousness. For in Christ Jesus neither circumcision nor uncircumcision has any value. What matters is faith expressing itself 7 through love. 8 9 10 You were running so well. Who has obstructed Such persuasion you from obeying the truth? A lit- does not come from the One who calls you. tle leaven works through the whole batch of I am confident in the Lord that you will dough. take no other view. The one who is troubling you 11 will bear the judgment, whoever he may be. Now, brothers, if I am still preaching circumci- sion, w" + }, + { + "verseNum": 30, + "text": "Hebrew; LXX Hebrew means or . 7 Then Isaac said to his father Abraham, “My father!” “Here I am, my son,” he replied. “The fire and the wood are here,” said Isaac, “but 8 where is the lamb for the burnt offering?” Abraham answered, “God Himself will provide the lamb for the burnt offering, my son.” And the 9 two walked on together. When they arrived at the place God had desig- nated, Abraham built the altar there and arranged the wood. He bound his son Isaac and Then placed him on the altar, atop the wood. Abraham reached out his hand and took the knife The LORD Provides the Sacrifice to slaughter his son. 11 10 a Just then the angel of the LORD called out to him from heaven, “Abraham, Abraham!” 12 “Here I am,” he replied. “Do not lay a hand on the boy or do anything to him,” said the angel, “for now I know that you fear God, since you have not withheld your only 13 son from me. c ” b 14 Then Abraham looked up and saw behind him a ram in a thicket, caught by its horns. So he went and took the ram and offered it as a burnt d And Abraham offering in place of his son. called that place The LORD Will Provide. So to this day it is said, “On the mountain of the LORD 15 it will be provided.” 16 17 And the angel of the LORD called to Abraham from heaven a second time, saying, “By Myself I have sworn, declares the LORD, that because you have done this and have not withheld your e I will surely bless you, and I will mul- only son, tiply your descendants like the stars in the sky and the" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 14, + "text": ", and" + }, + { + "verseNum": 16, + "text": "–26) 16 17 Again the word of the LORD came to me, say- ing, “Son of man, when the people of Israel lived in their land, they defiled it by their own ways and deeds. Their behavior before Me was 18 33" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 18, + "text": "| 1047 15 the world has been crucified to me, and I to the For neither circumcision nor uncircum- world. cision means anything. What counts is a new 16 creation. Peace and mercy to all who walk by this rule, 17 even to the Israel of God. From now on let no one cause me trouble, for 18 I bear on my body the marks of Jesus. The grace of our Lord Jesus Christ be with your spirit, brothers. cross of our Lord Jesus Christ, through which Amen. a 14 through whom Or Ephesians Paul’s Greeting to the Ephesians" + } + ] + } + ] + }, + { + "name": "Ephesians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–14) according to the will of God. 28 those He predestined, He also called; those He called, He also justified; those He justified, He 31 also glorified. 33 34 What then shall we say in response to these 32 things? If God is for us, who can be against us? He who did not spare His own Son but gave Him up for us all, how will He not also, along with Who will bring Him, freely give us all things? any charge against God’s elect? It is God who jus- tifies. Who is there to condemn us? For Christ Jesus, who died, and more than that was raised to life, is at the right hand of God—and He is More than Conquerors" + }, + { + "verseNum": 15, + "text": "–23) power. 6 5 7 Among the mature, however, we speak a mes- sage of wisdom—but not the wisdom of this age or of the rulers of this age, who are coming to a No, we speak of the mysterious and nothing. 8 which He destined for hidden wisdom of God, None of the rulers our glory before time began. of this age understood it. For if they had, they Ra- would not have crucified the Lord of glory. ther, as it is written: 9 “No eye has seen, no ear has heard, no heart has imagined, b what God has prepared for those who 10 love Him.” But God has revealed it to us by the Spirit. 11 12 The Spirit searches all things, even the deep For who among men knows the things of God. thoughts of man except his own spirit within him? So too, no one knows the thoughts of God We have not received except the Spirit of God. the spirit of the world, but the Spirit who is from God, that we may understand what God has And this is what we speak, not freely given us. in words taught us by human wisdom, but in c words taught by the Spirit, expressing spiritual 14 truths in spiritual words. 13 The natural man does not accept the things that come from the Spirit of God. For they are foolishness to him, and he cannot understand 15 them, because they are spiritually discerned. The spiritual man judges all things, but he 16 himself is not subject to anyone’s judgment. “For who has known the mind of the Lord, so But we have the mind of d we speak God’s wisdom in a mystery f 16 among b 9 as to instruct Him?” a 7 Chri" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10) faith in Christ. 6 7 Therefore, just as you have received Christ Je- rooted and sus as Lord, continue to walk in Him, built up in Him, established in the faith as you 8 were taught, and overflowing with thankfulness. See to it that no one takes you captive through philosophy and empty deception, which are based on human tradition and the spiritual For forces of the world rather than on Christ. in Christ all the fullness of the Deity dwells in And you have been made com- bodily form. plete in Christ, who is the head over every ruler 11 and authority. 10 9 b 12 In Him you were also circumcised, in the put- ting off of your sinful nature, with the circumci- sion performed by Christ and not by human And having been buried with Him in hands. baptism, you were raised with Him through your faith in the power of God, who raised Him from 13 the dead. 14 When you were dead in your trespasses and in the uncircumcision of your sinful nature, God made you alive with Christ. He forgave us all our having canceled the debt ascribed trespasses, 15 to us in the decrees that stood against us. He took it away, nailing it to the cross! And having dis- armed the powers and authorities, He made a public spectacle of them, triumphing over them a 2 by the cross. Christ but the body is of the Christ the mystery of God: Christ b 11 d 4 c 17 Literally on the sons of disobedience Literally include . Do not lie to one another, since you have taken and have put off the old self with its practices, 11" + }, + { + "verseNum": 11, + "text": "–18) 17 2 2 Therefore if you have any encouragement in Christ, if any comfort from His love, if any fellowship with the Spirit, if any affection and then make my joy complete by be- compassion, ing like-minded, having the same love, being 3 united in spirit and purpose. 4 Do nothing out of selfish ambition or empty pride, but in humility consider others more im- portant than yourselves. Each of you should look not only to your own interests, but also to The Mind of Christ" + }, + { + "verseNum": 19, + "text": "–22 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–16) A song of ascents. Of David. 1" + }, + { + "verseNum": 2, + "text": "2 have received: with all humility and gentleness, 3 with patience, bearing with one another in love, and with diligence to preserve the unity of the 4 Spirit through the bond of peace. There is one body and one Spirit, just as you 5 were called to one hope when you were called; one God and Father of all, who is over all and through all and 7 in all. one Lord, one faith, one baptism; 6 8 a Now to each one of us grace has been given ac- This cording to the measure of the gift of Christ. is why it says: “When He ascended on high, He led captives away, and gave gifts to men.” c b 9 10 also descended What does “He ascended” mean, except that He to the lower parts of the earth? He who descended is the very One who as- cended above all the heavens, in order to fill all 11 things. 13 12 And it was He who gave some to be apostles, some to be prophets, some to be evangelists, and to equip the some to be pastors and teachers, saints for works of ministry and to build up until we all reach unity in the body of Christ, the faith and in the knowledge of the Son of God, as we mature to the full measure of the stature of 14 Christ. 15 Then we will no longer be infants, tossed about by the waves and carried around by every wind of teaching and by the clever cunning of men in Instead, speaking the their deceitful scheming. truth in love, we will in all things grow up into From Him the Christ Himself, who is the head. whole body, fitted and held together by every supporting ligament, grows and" + }, + { + "verseNum": 8, + "text": "That is, the upper Nile region See" + }, + { + "verseNum": 17, + "text": "–32) against the indulgence of the flesh. 3 3 2 Therefore, since you have been raised with Christ, strive for the things above, where Christ is seated at the right hand of God. Set your minds on things above, not on earthly d For you died, and your life is now hidden things. with Christ in God. life, appears, then you also will appear with Him 5 in glory. When Christ, who is your 4 6 Put to death, therefore, the components of your earthly nature: sexual immorality, impurity, lust, evil desires, and greed, which is idolatry. Be- e 7 cause of these, the wrath of God is coming on the sons of disobedience. When you lived among But them, you also used to walk in these ways. now you must put aside all such things as these: anger, rage, malice, slander, and filthy language 9 from your lips. 8 10 1058 | Colossians 2: 1 16 also labor, striving with all His energy working Absent in Body, Present in Spirit powerfully within me." + }, + { + "verseNum": 26, + "text": "d 9 a 2 false gods chesed love Or Hebrew includes" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–4) to God the Father through Him. 18 Wives, submit to your husbands, as is fitting in 19 the Lord. Husbands, love your wives and do not be harsh 20 with them. Children, obey your parents in everything, for 21 this is pleasing to the Lord. Fathers, do not provoke your children, so they Serving with Honor will not become discouraged." + }, + { + "verseNum": 2, + "text": "–3 f 15 Cited in Matt. 5:21, Matt. 19:18," + }, + { + "verseNum": 5, + "text": "–9 ; 1 Timothy 6:1–2) 22 Slaves, obey your earthly masters in every- thing, not only to please them while they are watching, but with sincerity of heart and fear of 23 the Lord. 24 Whatever you do, work at it with your whole because being, as for the Lord and not for men, you know that you will receive an inheritance 25 from the Lord as your reward. It is the Lord Whoever does wrong Christ you are serving. will be repaid for his wrong, and there is no Prayerful Speech and Actions favoritism. 4 Masters, supply your slaves with what is right and fair, since you know that you also 2 have a Master in heaven. 3 Devote yourselves to prayer, being watchful as you pray also for us, that God and thankful, may open to us a door for the word, so that we may proclaim the mystery of Christ, for which I a 18 Amen. BYZ and TR include am in chains. 5 as I should. 6 Pray that I may declare it clearly, Act wisely toward outsiders, redeeming the time. Let your speech always be gracious, sea- soned with salt, so that you may know how to Greetings from Paul’s Fellow Workers answer everyone." + }, + { + "verseNum": 15, + "text": "| 1051 31 d 32 “For this reason a man will leave his father and mother and be united to his wife, and the two will This mystery is profound, become one flesh.” 33 but I am speaking about Christ and the church. Nevertheless, each one of you also must love his wife as he loves himself, and the wife must re- Children and Parents" + }, + { + "verseNum": 16, + "text": "16 17 In addition to all this, take up the shield of faith, with which you can extinguish all the flam- And take the helmet ing arrows of the evil one. of salvation and the sword of the Spirit, which is 18 the word of God. Pray in the Spirit at all times, with every kind of prayer and petition. To this end, stay alert with 19 all perseverance in your prayers for all the saints. Pray also for me, that whenever I open my mouth, words may be given me so that I will 20 boldly make known the mystery of the gospel, for which I am an ambassador in chains. Pray Final Greetings" + }, + { + "verseNum": 21, + "text": "–24 ; 2 Timothy 4:19–22) 20 21 The brothers who are with me send you greet- 22 ings. All the saints send you greetings, especially 23 those from the household of Caesar. a Greet all the saints in Christ Jesus. spirit. The grace of the Lord Jesus Christ be with your a 23 Amen. BYZ and TR include Colossians Greetings from Paul and Timothy" + } + ] + } + ] + }, + { + "name": "Philippians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–11 ; Col. 1:3–14) and the Lord Jesus Christ. 4 5 I always thank my God for you because of the grace He has given you in Christ Jesus. For in Him you have been enriched in every way, in all because our testi- speech and all knowledge, 7 mony about Christ was confirmed in you. 6 8 Therefore you do not lack any spiritual gift as you eagerly await the revelation of our Lord He will sustain you to the end, so Jesus Christ. 9 that you will be blameless on the day of our Lord God, who has called you into fel- Jesus Christ. lowship with His Son Jesus Christ our Lord, is Unity in the Church (Ps. 133:1–3 ; Eph. 4:1–16) faithful. 10 I appeal to you, brothers, in the name of our Lord Jesus Christ, that all of you agree together, so that there may be no divisions among you and 11 that you may be united in mind and conviction. My brothers, some from Chloe’s household have informed me that there are quarrels among What I mean is this: Individuals among you. you are saying, “I follow Paul,” “I follow Apollos,” 13 “I follow Cephas,” or “I follow Christ.” 12 a 14 15 Is Christ divided? Was Paul crucified for you? Were you baptized into the name of Paul? I thank God that I did not baptize any of you except Crispus and Gaius, so no one can say that you Yes, I also bap- were baptized into my name. tized the household of Stephanas; beyond that I c 23 a 12 do not remember if I baptized anyone else. For b 19 16 17 e 31 Christ did not send me to baptize, but to preach the gospel, not with words of wi" + }, + { + "verseNum": 12, + "text": "–20) Greetings. 2 3 4 Consider it pure joy, my brothers, when you en- counter trials of many kinds, because you know that the testing of your faith develops persever- ance. Allow perseverance to finish its work, so that you may be mature and complete, not lack- 5 ing anything. 6 Now if any of you lacks wisdom, he should ask God, who gives generously to all without finding fault, and it will be given to him. But he must ask in faith, without doubting, because he who 7 doubts is like a wave of the sea, blown and tossed 8 by the wind. That man should not expect to receive anything from the Lord. He is a double- 9 minded man, unstable in all his ways. 10 The brother in humble circumstances should exult in his high position. But the one who is 11 rich should exult in his low position, because he will pass away like a flower of the field. For the sun rises with scorching heat and withers the plant; its flower falls and its beauty is lost. So too, the rich man will fade away in the midst of his 12 pursuits. Blessed is the man who perseveres under trial, because when he has stood the test, he will re- ceive the crown of life that God has promised to Good and Perfect Gifts those who love Him. 13 15 14 When tempted, no one should say, “God is tempting me.” For God cannot be tempted by evil, But each one is nor does He tempt anyone. tempted when by his own evil desires he is lured away and enticed. Then after desire has con- ceived, it gives birth to sin; and sin, when it is full- To th" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–4) pared in advance as our way of life. 11 a 12 Therefore remember that formerly you who are Gentiles in the flesh and called uncircum- cised by the so-called circumcision (that done in remember that the body by human hands)— at that time you were separate from Christ, alien- ated from the commonwealth of Israel, and strangers to the covenants of the promise, with- But out hope and without God in the world. now in Christ Jesus you who once were far away have been brought near through the blood of 14 Christ. 13 15 For He Himself is our peace, who has made the two one and has torn down the dividing wall of by abolishing in His flesh the law of hostility commandments and decrees. He did this to cre- ate in Himself one new man out of the two, thus and reconciling both of them to making peace God in one body through the cross, by which He 17 put to death their hostility. 16 He came and preached peace to you who were 18 far away and peace to those who were near. For through Him we both have access to the Christ Our Cornerstone" + }, + { + "verseNum": 5, + "text": "–11) and the God of Israel is your rear guard. 13 e Behold, My Servant will prosper; 14 He will be raised and lifted up and highly f exalted. Just as many were appalled at Him — His appearance was disfigured beyond that of any man, 15 and His form was marred beyond human g likeness— so He will sprinkle many nations. Kings will shut their mouths because of Him. For they will see what they have not been told, h and they will understand what they have The Suffering Servant" + }, + { + "verseNum": 12, + "text": "–18) 13 You are the salt of the earth. But if the salt loses its savor, how can it be made salty again? It is no longer good for anything, except to be thrown c 14 out and trampled by men. 15 You are the light of the world. A city on a hill 16 cannot be hidden. Neither do people light a lamp and put it under a basket. Instead, they set it on a stand, and it gives light to everyone in the house. In the same way, let your light shine be- fore men, that they may see your good deeds and The Fulfillment of the Law glorify your Father in heaven. 17 18 Do not think that I have come to abolish the Law or the Prophets. I have not come to abol- ish them, but to fulfill them. For I tell you truly, until heaven and earth pass away, not a single jot, not a stroke of a pen, will disappear from the Law 19 until everything is accomplished. So then, whoever breaks one of the least of these commandments and teaches others to do likewise will be called least in the kingdom of heaven; but whoever practices and teaches them 20 will be called great in the kingdom of heaven. For I tell you that unless your righteousness exceeds that of the scribes and Pharisees, you Anger and Reconciliation" + }, + { + "verseNum": 15, + "text": "b 8 the pupil DSS; LXX the upright one Literally d 11 Pinions 5 His people have acted corruptly toward Him; the blemish on them is not that of His children, a but of a perverse and crooked 6 generation. Is this how you repay the LORD, O foolish and senseless people? Is He not your Father and Creator? 7 Has He not made you and established you? Remember the days of old; consider the years long past. Ask your father, and he will tell you, 8 your elders, and they will inform you. When the Most High gave the nations their inheritance, when He divided the sons of man, He set the boundaries of the peoples 9 according to the number of the sons of b God. 10 But the LORD’s portion is His people, Jacob His allotted inheritance. He found him in a desert land, in a barren, howling wilderness; He surrounded him, He instructed him, c 11 He guarded him as the apple of His eye. As an eagle stirs up its nest 12 and hovers over its young, He spread His wings to catch them and carried them on His pinions. d 13 The LORD alone led him, and no foreign god was with him. He made him ride on the heights of the land and fed him the produce of the field. He nourished him with honey from the rock 14 and oil from the flinty crag, with curds from the herd and milk from the flock, with the fat of lambs, with rams from Bashan, and goats, with the choicest grains of wheat. From the juice of the finest grapes 15 e you drank the wine. But Jeshurun grew fat and kicked— becoming fat, bloated, and gorged. He aband" + }, + { + "verseNum": 19, + "text": "–30) though many oppose me. 10 8 9 f 11 If Timothy comes, see to it that he has nothing to fear while he is with you, for he is doing the No one, then, work of the Lord, just as I am. should treat him with contempt. Send him on his way in peace so that he can return to me, for I am 12 expecting him along with the brothers. Now about our brother Apollos: I strongly urged him to go to you with the brothers. He was" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–11) 21 22 But now, apart from the law, the righteousness of God has been revealed, as attested by the Law a 4 And this righteousness from and the Prophets. c 13 d 13 h 25 when You are judged ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 10, + "text": "–20) 16 15 8 3 2 Now, brothers, we want you to know about the grace that God has given the churches of In the terrible ordeal they suffered, Macedonia. their abundant joy and deep poverty overflowed For I testify that they gave into rich generosity. 4 according to their ability and even beyond it. Of they earnestly pleaded with their own accord, us for the privilege of sharing in this service to the saints. And not only did they do as we ex- pected, but they gave themselves first to the Lord 6 and then to us, through the will of God. 5 7 So we urged Titus to help complete your act of But just as you grace, just as he had started it. excel in everything—in faith, in speech, in a knowledge, in complete earnestness, and in the 8 —see that you also excel love we inspired in you I am not giving a com- in this grace of giving. mand, but I am testing the sincerity of your love 9 through the earnestness of others. 10 For you know the grace of our Lord Jesus Christ, that though He was rich, yet for your sake He be- came poor, so that you through His poverty And this is my opinion might become rich. about what is helpful for you in this matter: Last 11 year you were the first not only to give, but even Now finish the work, so to have such a desire. that you may complete it with the same eager de- For if the eager- sire, according to your means. ness is there, the gift is acceptable according to what one has, not according to what he does not 13 have. 12 14 It is not our intention that" + }, + { + "verseNum": 18, + "text": "| 1055 But whatever was gain to me I count as loss for More than that, I count all the sake of Christ. things as loss compared to the surpassing excel- lence of knowing Christ Jesus my Lord, for whom I have lost all things. I consider them rubbish, and be found in Him, not that I may gain Christ having my own righteousness from the law, but that which is through faith in Christ, the right- 10 eousness from God on the basis of faith. 9 a 11 I want to know Christ and the power of His res- urrection and the fellowship of His sufferings, and so, being conformed to Him in His death, somehow, to attain to the resurrection from the Pressing on toward the Goal dead. 12 13 Not that I have already obtained all this, or have already been made perfect, but I press on to take hold of that for which Christ Jesus took hold Brothers, I do not consider myself yet to of me. have taken hold of it. But one thing I do: Forget- ting what is behind and straining toward what is I press on toward the goal to win the ahead, 15 prize of God’s heavenly calling in Christ Jesus. 14 All of us who are mature should embrace this point of view. And if you think differently about 16 some issue, God will reveal this to you as well. Nevertheless, we must live up to what we have Citizenship in Heaven already attained. 17 18 Join one another in following my example, brothers, and carefully observe those who walk according to the pattern we set for you. For as I have often told you before, and now say again even wi" + }, + { + "verseNum": 19, + "text": "19 And my God will supply all your needs accord- To our ing to His glorious riches in Christ Jesus. Final Greetings God and Father be glory forever and ever. Amen." + }, + { + "verseNum": 21, + "text": "–23 ; 2 Timothy 4:19–22) 21 22 Tychicus, the beloved brother and faithful servant in the Lord, will tell you everything, so that you also may know about me and what I am I have sent him to you for this very pur- doing. pose, that you may know about us, and that he 23 may encourage your hearts. Peace to the brothers and love with faith from 24 God the Father and the Lord Jesus Christ. Grace to all who love our Lord Jesus Christ that I may proclaim it fearlessly, as I should. with an undying love. Philippians Greetings from Paul and Timothy" + } + ] + } + ] + }, + { + "name": "Colossians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "–14) 3 4 I thank my God every time I remember you. In 5 every prayer for all of you, I always pray with joy, 6 because of your partnership in the gospel from the first day until now, being confident of this, that He who began a good work in you will carry 7 it on to completion until the day of Christ Jesus. It is right for me to feel this way about all of you, since I have you in my heart. For in my chains and in my defense and confirmation of the gospel, God is my you are all partners in grace with me. witness how I long for all of you with the affec- 9 tion of Christ Jesus. 8 10 And this is my prayer: that your love may abound more and more in knowledge and depth so that you may be able to test and of insight, prove what is best and may be pure and blame- filled with the fruit of less for the day of Christ, righteousness that comes through Jesus Christ, Paul’s Trials Advance the Gospel to the glory and praise of God." + }, + { + "verseNum": 15, + "text": "–23) 1 2 On many past occasions and in many differ- ent ways, God spoke to our fathers through a But in these last days He has the prophets. spoken to us by His Son, whom He appointed heir of all things, and through whom He made the 3 universe. b The Son is the radiance of God’s glory and the exact representation of His nature, upholding all things by His powerful word. After He had pro- vided purification for sins, He sat down at the So He became right hand of the Majesty on high. 5 as far superior to the angels as the name He has For to inherited is excellent beyond theirs. which of the angels did God ever say: 4 c “You are My Son; today I have become Your Father” ? Or again: d “I will be His Father, and He will be My Son” ? 6 And again, when God brings His firstborn into e the world, He says: 7 “Let all God’s angels worship Him.” Now about the angels He says: f “He makes His angels winds, His servants flames of fire.” 8 But about the Son He says: “Your throne, O God, endures forever and ever, 9 and justice is the scepter of Your kingdom. You have loved righteousness and hated wickedness; g therefore God, Your God, has anointed You above Your companions with the oil the ages the world in His Son b 2 c 5 a 2 of joy.” e 6 10 And: “In the beginning, O Lord, You laid the foundations of the earth, and the heavens are the work of 11 Your hands. 12 They will perish, but You remain; h You will roll them up like a robe; they will all wear out like a garment. like a garment they will" + }, + { + "verseNum": 24, + "text": "–29) 15 16 19 17 I repeat: Let no one take me for a fool. But if you do, then receive me as a fool, so that I too In this confident boasting of may boast a little. 18 mine, I am not speaking as the Lord would, but as Since many are boasting according to a fool. the flesh, I too will boast. For you gladly put up In fact, you with fools, since you are so wise. even put up with anyone who enslaves you or ex- ploits you or takes advantage of you or exalts To my shame himself or strikes you in the face. I concede that we were too weak for that! 20 21 22 In my frequent journeys, I have been in danger from rivers and from bandits, in danger from my countrymen and from the Gentiles, in danger in the city and in the country, in danger on the sea in labor and toil and and among false brothers, often without sleep, in hunger and thirst and of- 28 ten without food, in cold and exposure. 27 Apart from these external trials, I face daily the 29 pressure of my concern for all the churches. Who is weak, and I am not weak? Who is led 30 into sin, and I do not burn with grief? 31 32 If I must boast, I will boast of the things that a The God and Father of the show my weakness. Lord Jesus, who is forever worthy of praise, In Damascus, the knows that I am not lying. governor under King Aretas secured the city of But I the Damascenes in order to arrest me. was lowered in a basket through a window in the Paul’s Revelation wall and escaped his grasp. 33 12 I must go on boasting. Although there is 2" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–5) Spirit says to the churches. 14 To the angel of the church in Laodicea write: e These are the words of the Amen, the faithful and true Witness, the Originator of God’s 15 creation. 16 I know your deeds; you are neither cold nor hot. How I wish you were one or the other! So because you are lukewarm— neither hot nor cold—I am about to vomit 17 you out of My mouth! 18 You say, ‘I am rich; I have grown wealthy and need nothing.’ But you do not realize that you are wretched, pitiful, poor, blind, and naked. I counsel you to buy from Me gold refined by fire so that you may become rich, white garments so that you may be clothed and your shameful nakedness not exposed, and salve to anoint your eyes so that you may see. Those I love I rebuke and 20 discipline. Therefore be earnest and repent. 19 21 Behold, I stand at the door and knock. If anyone hears My voice and opens the door, I will come in and dine with him, and he with Me. To the one who overcomes, I will grant the right to sit with Me on My throne, just as I overcame and sat down with My Father on 22 His throne. He who has an ear, let him hear what the The Throne in Heaven Spirit says to the churches.” 4 After this I looked and saw a door standing open in heaven. And the voice I had previ- ously heard speak to me like a trumpet was say- ing, “Come up here, and I will show you what 2 must happen after these things.” At once I was in the Spirit, and I saw a throne 3 standing in heaven, with someone seated on it. The One seat" + }, + { + "verseNum": 6, + "text": "–23) all in all. 2 2 And you were dead in your trespasses and sins, in which you used to walk when you conformed to the ways of this world and of the ruler of the power of the air, the spirit who is now All of us at work in the sons of disobedience. also lived among them at one time, fulfilling the cravings of our flesh and indulging its desires and thoughts. Like the rest, we were by nature 4 children of wrath. 3 5 6 But because of His great love for us, God, who is made us alive with Christ even rich in mercy, when we were dead in our trespasses. It is by grace you have been saved! And God raised us up with Christ and seated us with Him in the heavenly realms in Christ Jesus, in order that in the coming ages He might display the surpassing riches of His grace, demonstrated by His kind- ness to us in Christ Jesus. 7 the eyes of your understanding 8" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17) in love through the work of each individual part. 17 16 18 So I tell you this, and insist on it in the Lord, that you must no longer walk as the Gentiles do, They are dark- in the futility of their thinking. ened in their understanding and alienated from the life of God because of the ignorance that is in Hav- them due to the hardness of their hearts. ing lost all sense of shame, they have given them- selves over to sensuality for the practice of every kind of impurity, with a craving for more. a 8 d 26 “In your anger do not sin.” He says b 8 e 2 c 9 19 Or Or" + }, + { + "verseNum": 18, + "text": "–21) spect her husband. 6 2 Children, obey your parents in the Lord, for this is right. “Honor your father and 3 mother” (which is the first commandment with a “that it may go well with you and that promise), 4 you may have a long life on the earth.” e Fathers, do not provoke your children to wrath; instead, bring them up in the discipline and in- Serving with Honor struction of the Lord." + }, + { + "verseNum": 22, + "text": "–25 ; 1 Timothy 6:1–2) 5 6 Slaves, obey your earthly masters with respect and fear and sincerity of heart, just as you would And do this not only to please them obey Christ. while they are watching, but as servants of 7 Christ, doing the will of God from your heart. Serve with good will, as to the Lord and not to because you know that the Lord will men, reward each one for whatever good he does, 9 whether he is slave or free. 8 And masters, do the same for your slaves. Give up your use of threats, because you know that He who is both their Master and yours is in heaven, The Full Armor of God and there is no favoritism with Him. 10 11 Finally, be strong in the Lord and in His mighty power. Put on the full armor of God, so that you 12 can make your stand against the devil’s schemes. For our struggle is not against flesh and blood, but against the rulers, against the authorities, against the powers of this world’s darkness, and against the spiritual forces of evil in the heavenly 13 realms. 14 Therefore take up the full armor of God, so that when the day of evil comes, you will be able to stand your ground, and having done everything, Stand firm then, with the belt of truth to stand. buckled around your waist, with the breastplate and with your feet of righteousness arrayed, fitted with the readiness of the gospel of peace. —of His flesh and of His c 30 15 29 In the same way, husbands ought to love their wives as their own bodies. He who loves his wife loves himself. Indeed, no" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 7, + "text": "–14) a 21 Timothy, my fellow worker, sends you greet- ings, as do Lucius, Jason, and Sosipater, my fellow 22 countrymen. I, Tertius, who wrote down this letter, greet 23 you in the Lord. Gaius, who has hosted me and all the church, sends you greetings. b Erastus, the city treasurer, sends you greetings, Doxology as does our brother Quartus." + }, + { + "verseNum": 15, + "text": "–18 ; 2 Thessalonians 3:16–18) 19 a The churches in the province of Asia send you b greetings. greet you warmly in the Lord, Aquila and Prisca 20 and so does the church that meets at their house. All the brothers here send you greetings. Greet 21 one another with a holy kiss. 22 This greeting is in my own hand—Paul. c If anyone does not love the Lord, let him be un- 23 der a curse. Come, O Lord! 24 The grace of the Lord Jesus be with you. d My love be with all of you in Christ Jesus. Amen. a 19 in Asia c 22 Marana Tha! b 19 Prisca Priscilla Literally d 24" + }, + { + "verseNum": 16, + "text": "The Scriptures belonged to the churches and were meant to be examined, copied, and distrib- uted. The committee hopes to follow this example by sharing all the resources with which we have been entrusted. Just as Paul encouraged the churches to pass on his letters, the Berean Bible is intended to be offered freely in websites, apps, software, and various text and audio formats. Greek, Hebrew, and Aramaic Sources and Abbreviations NA SBL ECM NE WH BYZ GOC TR DSS MT LXX SP Aland, Novum Testamentum Graece Nestle Society of Biblical Literature, Greek New Testament Editio Critica Maior, Novum Testamentum Graecum Eberhard Nestle Novum Testamentum Graece Westcott and Hort, New Testament in the Original Greek The New Testament in the Original Greek: Byzantine Textform Greek Orthodox Church, New Testament Scrivener’s Textus Receptus Stephanus Textus Receptus Dead Sea Scrolls Hebrew Masoretic Text: Westminster Leningrad Codex Hebrew Masoretic Text: Biblia Hebraica Stuttgartensia Greek OT Septuagint: Rahlfs-Hanhart Septuaginta Greek OT Septuagint: Swete's Septuagint Samaritan Pentateuch Genesis The Creation" + }, + { + "verseNum": 18, + "text": "| 1059 13 Therefore, as the elect of God, holy and beloved, clothe yourselves with hearts of com- passion, kindness, humility, gentleness, and pa- Bear with one another and forgive any tience. complaint you may have against someone else. Forgive as the Lord forgave you. And over all 15 these virtues put on love, which is the bond of Let the peace of Christ rule in perfect unity. your hearts, for to this you were called as mem- 16 bers of one body. And be thankful. 14 17 Let the word of Christ richly dwell within you as you teach and admonish one another with all wisdom, and as you sing psalms, hymns, and spiritual songs with gratitude in your hearts to And whatever you do, in word or deed, do God. it all in the name of the Lord Jesus, giving thanks Christian Households" + } + ] + } + ] + }, + { + "name": "Titus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) shortfall.” 16 17 But thanks be to God, who put into the heart of Titus the same devotion I have for you. For not only did he welcome our appeal, but he is eagerly 18 coming to you of his own volition. 19 Along with Titus we are sending the brother who is praised by all the churches for his work in More than that, this brother was the gospel. chosen by the churches to accompany us with the gracious offering we administer to honor the 20 Lord Himself and to show our eagerness to help. c 21 We want to avoid any criticism of the way we For we are tak- administer this generous gift. ing great care to do what is right, not only in the 22 eyes of the Lord, but also in the eyes of men. 23 And we are sending along with them our brother who has proven his earnestness to us many times and in many ways, and now even more so by his great confidence in you. As for d Titus, he is my partner and fellow worker among you. As for our brothers, they are messengers of the churches, the glory of Christ. In full view of the churches, then, show these men the proof of your love and the reason for our boasting God Loves a Cheerful Giver (1 Cor. 16:1–4) about you. 24 9 2 Now about the service to the saints, there is For I know no need for me to write to you. your eagerness to help, and I have been boasting to the Macedonians that since last year you in Achaia were prepared to give. And your zeal has 3 stirred most of them to do likewise. 4 But I am sending the brothers in order that our boasting" + }, + { + "verseNum": 5, + "text": "–9 ;" + }, + { + "verseNum": 10, + "text": "–16) Christ Jesus our Lord. 3 4 As I urged you on my departure to Macedonia, you should stay on at Ephesus to instruct certain or devote men not to teach false doctrines themselves to myths and endless genealogies, which promote speculation rather than the stew- 5 ardship of God’s work, which is by faith. a 6 The goal of our instruction is the love that comes from a pure heart, a clear conscience, and a sincere faith. Some have strayed from these They want ways and turned aside to empty talk. to be teachers of the law, but they do not under- stand what they are saying or that which they so 8 confidently assert. 7 9 10 Now we know that the law is good, if one uses it We realize that law is not enacted legitimately. for the righteous, but for the lawless and rebel- lious, for the ungodly and sinful, for the unholy and profane, for killers of father or mother, for b for the sexually immoral, for murderers, homosexuals, for slave traders and liars and 11 perjurers, and for anyone else who is averse to that agrees with the glorious sound teaching gospel of the blessed God, with which I have been God’s Grace to Paul entrusted. 12 13 I thank Christ Jesus our Lord, who has strengthened me, that He considered me faithful I was formerly a and appointed me to service. blasphemer, a persecutor, and a violent man; yet because I had acted in ignorance and unbelief, I And the grace of our Lord was shown mercy. overflowed to me, along with the faith and love a 4 that are in Christ Jesus. rat" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 9, + "text": "–11) 17 18 Now I urge you, brothers, to watch out for those who create divisions and obstacles that are contrary to the teaching you have learned. Turn For such people are not serv- away from them. ing our Lord Christ, but their own appetites. By smooth talk and flattery they deceive the hearts 19 of the naive. Everyone has heard about your obedience, so I rejoice over you. But I want you to be wise about what is good and innocent about what is evil. The God of peace will soon crush Satan under be your feet. The grace of our Lord Jesus Christ Greetings from Paul’s Fellow Workers with you." + }, + { + "verseNum": 15, + "text": "| 1073 7 through Jesus Christ our Savior, so that, having 8 been justified by His grace, we would become This saying is heirs with the hope of eternal life. trustworthy. And I want you to emphasize these things, so that those who have believed God will take care to devote themselves to good deeds. These things are excellent and profitable for the Avoid Divisions people." + } + ] + } + ] + }, + { + "name": "Philemon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 Paul and Timothy, servants of Christ Jesus, To all the saints in Christ Jesus at Philippi, 2 together with the overseers and deacons: Grace and peace to you from God our Father Thanksgiving and Prayer and the Lord Jesus Christ. (1 Corinthians 1:4–9 ;" + } + ] + } + ] + }, + { + "name": "Hebrews", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–14) 15 16 The Son is the image of the invisible God, the firstborn over all creation. For in Him all things were created, things in heaven and on earth, visible and invisible, whether thrones or dominions or rulers or authorities. All things 17 were created through Him and for Him. 18 19 He is before all things, and in Him all things And He is the head of the body, hold together. the church; He is the beginning and firstborn from among the dead, so that in all things He may 20 For God was pleased to have preeminence. and through have all His fullness dwell in Him, Him to reconcile to Himself all things, whether things on earth or things in heaven, by making 21 peace through the blood of His cross. Once you were alienated from God and were 22 hostile in your minds, engaging in evil deeds. But now He has reconciled you by Christ’s physical body through death to present you holy, 23 unblemished, and blameless in His presence— if indeed you continue in your faith, estab- lished and firm, not moved from the hope of the gospel you heard, which has been proclaimed to under heaven, and of which I, every creature Paul’s Suffering for the Church Paul, have become a servant. (2 Corinthians 11:16–33) e 24 26 25 Now I rejoice in my sufferings for you, and I fill up in my flesh what is lacking in regard to Christ’s afflictions for the sake of His body, which I became its servant by the com- is the church. mission God gave me to fully proclaim to you the word of God, the mystery that was h" + }, + { + "verseNum": 5, + "text": "b 14 c 16 Or Or 26 9 e 2 Samuel 9:3 | 287 10 When King Toi of Hamath heard that David f he had defeated the entire army of Hadadezer, sent his son Joram to greet King David and bless him for fighting and defeating Hadadezer, who had been at war with Toi. Joram brought with and him articles of silver and gold and bronze, King David dedicated these to the LORD, along g with the silver and gold he had dedicated from all the nations he had subdued— and Moab, from the Ammonites and Philistines and Amalekites, and from the spoil of Hadadezer 13 son of Rehob, king of Zobah. from Edom 11 12 h 14 in the Valley of Salt. And David made a name for himself when he returned from striking down eighteen thousand He placed gar- Edomites risons throughout Edom, and all the Edomites were subject to David. So the LORD made David David’s Officers (1 Chronicles 18:14–17) victorious wherever he went. 15 Thus David reigned over all Israel and admin- istered justice and righteousness for all his 16 people: Joab son of Zeruiah was over the army; 17 Jehoshaphat son of Ahilud was the recorder; Zadok son of Ahitub and Ahimelech son of i Abiathar were priests; 18 Seraiah was the scribe; Benaiah son of Jehoiada was over the j Cherethites and Pelethites; David and Mephibosheth and David’s sons were priestly leaders. 9 Then David asked, “Is there anyone left from the house of Saul to whom I can show kind- 2 ness for the sake of Jonathan?” And there was a servant of the house of Saul named Ziba. They summoned" + }, + { + "verseNum": 7, + "text": "Praise the LORD Or or or or Or Or , meaning LXX Or Psalm 105 Tell of His Wonders (1 Chronicles 16:7–22) 1" + }, + { + "verseNum": 8, + "text": "–9 520 |" + }, + { + "verseNum": 10, + "text": "–12 who fear Him. As far as the east is from the west, 13 so far has He removed our transgressions from us. As a father has compassion on his children, so the LORD has compassion on those 14 who fear Him. For He knows our frame; 15 He is mindful that we are dust. 16 As for man, his days are like grass— he blooms like a flower of the field; when the wind passes over, it vanishes, and its place remembers it no more. 17 But from everlasting to everlasting the loving devotion of the LORD extends to those who fear Him, 18 and His righteousness to their children’s children— 19 to those who keep His covenant and remember to obey His precepts. The LORD has established His throne in 20 heaven, and His kingdom rules over all. Bless the LORD, all His angels mighty in strength 21 who carry out His word, who hearken to the voice of His command. 22 Bless the LORD, all His hosts, you servants who do His will. Bless the LORD, all His works in all places of His dominion. Bless the LORD, O my soul! 552 |" + }, + { + "verseNum": 13, + "text": "Praise the LORD c 1 Cited in" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–8 d 16 Higgaion Selah ; see also LXX. quiet interlude or alphabet. In the LXX they form one psalm. or is probably a musical or liturgical term. 6 3" + }, + { + "verseNum": 9, + "text": "9 When God subjected all things to him, He left nothing outside of his control. Yet at present we But we see do not see everything subject to him. Jesus, who was made a little lower than the an- gels, now crowned with glory and honor because He suffered death, so that by the grace of God He 10 might taste death for everyone. In bringing many sons to glory, it was fitting a for God, for whom and through whom all things 11 exist, to make the author of their salvation per- fect through suffering. For both the One who sanctifies and those who are sanctified are of the same family. So Jesus is not ashamed to call them brothers. He says: 12 “I will proclaim Your name to My brothers; b I will sing Your praises in the 13 assembly.” And again: c “I will put My trust in Him.” And once again: d “Here am I, and the children God has 14 given Me.” Now since the children have flesh and blood, He too shared in their humanity, so that by His death He might destroy him who holds the and free those power of death, that is, the devil, who all their lives were held in slavery by their 16 fear of death. 15 17 For surely it is not the angels He helps, but the For this reason He descendants of Abraham. had to be made like His brothers in every way, so that He might become a merciful and faithful high priest in service to God, in order to make Because for the sins of the people. atonement He Himself suffered when He was tempted, He is Jesus Our Apostle and High Priest able to help those who are being" + }, + { + "verseNum": 12, + "text": ". He has not hidden His face from him, 25 but has attended to his cry for help. all the days of my life, c" + }, + { + "verseNum": 13, + "text": "Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 5, + "text": "was used for various skin diseases; see Leviticus 13. Literally is approximately 62.4 bush- according to the mouth The Hebrew word 138 |" + }, + { + "verseNum": 7, + "text": "–11) 1 Come, let us sing for joy to the LORD; 2 let us shout to the Rock of our salvation! Let us enter His presence with thanksgiving; let us make a joyful noise to Him in song. 3 For the LORD is a great God, 4 a great King above all gods. In His hand are the depths of the earth, 5 and the mountain peaks belong to Him. 6 The sea is His, for He made it, and His hands formed the dry land. O come, let us worship and bow down; 7 let us kneel before the LORD our Maker. For He is our God, and we are the people of His pasture, the sheep under His care. 8 Today, if you hear His voice, b do not harden your hearts as you did at Meribah, 9 and they have not known My ways.” e So I swore on oath in My anger, “They shall never enter My rest.” Psalm 96 Sing to the LORD, All the Earth (1 Chronicles 16:23–36) 1 Sing to the LORD a new song; 2 sing to the LORD, all the earth. Sing to the LORD, bless His name; 3 proclaim His salvation day after day. Declare His glory among the nations, His wonders among all peoples. 4 For great is the LORD, and greatly to be 5 praised; He is to be feared above all gods. For all the gods of the nations are idols, 6 but it is the LORD who made the heavens. 7 Splendor and majesty are before Him; strength and beauty fill His sanctuary. Ascribe to the LORD, O families of the 8 nations, ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; bring an offering and enter His courts. 9 Worship the LORD in the splendor of His 10 holiness; trem" + }, + { + "verseNum": 15, + "text": "and" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 3, + "text": ", and" + }, + { + "verseNum": 4, + "text": "mist Or Or f 7 , as in verses 19 and 21 a 10" + }, + { + "verseNum": 5, + "text": "means ; see" + }, + { + "verseNum": 7, + "text": ". LXX They always go astray in the heart LXX LXX ; Cited in" + }, + { + "verseNum": 12, + "text": "–16) 10 You, however, have observed my teaching, my 11 conduct, my purpose, my faith, my patience, my my persecutions, and love, my perseverance, the sufferings that came upon me in Antioch, Ico- nium, and Lystra. What persecutions I endured! In- Yet the Lord rescued me from all of them. deed, all who desire to live godly lives in Christ while evil men and Jesus will be persecuted, imposters go from bad to worse, deceiving and 14 being deceived. 12 13 15 But as for you, continue in the things you have learned and firmly believed, since you know From from whom you have learned them. infancy you have known the Holy Scriptures, which are able to make you wise for salvation All Scripture is through faith in Christ Jesus. God-breathed and is useful for instruction, for 17 conviction, for correction, and for training in so that the man of God may be righteousness, complete, fully equipped for every good work. cleanses himself of these c 21 16 SBL, BYZ, and TR See Jasher 79:27. the Book of the Upright One" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–10) A Psalm of David. 1 The LORD said to my Lord: “Sit at My right hand until I make Your enemies a 2 a footstool for Your feet.” The LORD extends Your mighty scepter 3 from Zion: “Rule in the midst of Your enemies.” Your people shall be willing on Your day of battle. Arrayed in holy splendor, from the womb of 4 the dawn, to You belongs the dew of Your youth. The LORD has sworn and will not change His mind: b “You are a priest forever 5 in the order of Melchizedek.” The Lord is at Your right hand; 6 He will crush kings in the day of His wrath. He will judge the nations, heaping up the 7 dead; He will crush the leaders far and wide. He will drink from the brook by the road; therefore He will lift up His head. Psalm 111 Majestic Is His Work 1 c Hallelujah! I will give thanks to the LORD with all my heart When they rise up, they will be put to 2 in the council of the upright and in the 29 shame, but Your servant will rejoice. 30 May my accusers be clothed with disgrace; may they wear their shame like a robe. With my mouth I will thank the LORD 31 profusely; assembly. Great are the works of the LORD; 3 they are pondered by all who delight in them. Splendid and majestic is His work; 4 His righteousness endures forever. I will praise Him in the presence of many. He has caused His wonders to be For He stands at the right hand of the 5 remembered; needy one, to save him from the condemners of his a 1 soul. the LORD is gracious and compassionate. He provides food for those who fear H" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "," + }, + { + "verseNum": 11, + "text": "–14) 1 Corinthians 3:19 | 1023 2 2 When I came to you, brothers, I did not come with eloquence or wisdom as I proclaimed For I resolved to you the testimony about God. 3 to know nothing while I was with you except Jesus Christ and Him crucified. I came to you in 4 weakness and fear, and with much trembling. My message and my preaching were not with persuasive words of wisdom, but with a demon- so that your faith stration of the Spirit’s power, would not rest on men’s wisdom, but on God’s Spiritual Wisdom" + }, + { + "verseNum": 14, + "text": "| 1077 16 to sympathize with our weaknesses, but we have one who was tempted in every way that we are, Let us then approach the yet was without sin. throne of grace with confidence, so that we may receive mercy and find grace to help us in our The Perfect High Priest time of need." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "A Call to Maturity 6 b a Therefore let us leave the elementary teach- ings about Christ and go on to maturity, not laying again the foundation of repentance from dead works, instruction and of faith in God, about baptisms, the laying on of hands, the res- 3 urrection of the dead, and eternal judgment. 4 And this we will do, if God permits. 2 5 6 It is impossible for those who have once been enlightened, who have tasted the heavenly gift, who have who have shared in the Holy Spirit, tasted the goodness of the word of God and the and then have powers of the coming age— fallen away—to be restored to repentance, be- cause they themselves are crucifying the Son of God all over again and subjecting Him to open 7 shame. For land that drinks in the rain often falling on it and that produces a crop useful to those for 8 whom it is tended receives the blessing of God. But land that produces thorns and thistles is worthless, and its curse is imminent. In the end it 9 will be burned. 10 Even though we speak like this, beloved, we are convinced of better things in your case—things For God is not un- that accompany salvation. just. He will not forget your work and the love you have shown for His name as you have minis- 11 tered to the saints and continue to do so. 12 We want each of you to show this same dili- gence to the very end, in order to make your Then you will not be sluggish, but hope sure. will imitate those who through faith and patience God’s Unchangeable Promise inherit what h" + }, + { + "verseNum": 14, + "text": "is approximately 10.1 pounds or 4.6 kg of silver; also in v. 16. Cited in" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10) 17 23 But Abram replied to the king of Sodom, “I have raised my hand to the LORD God Most High, Creator of heaven and earth, that I will not accept even a thread, or a strap of a sandal, or anything that belongs to you, lest you should say, I will accept nothing ‘I have made Abram rich.’ but what my men have eaten and the share for the men who went with me—Aner, Eshcol, and God’s Covenant with Abram Mamre. They may take their portion.”" + }, + { + "verseNum": 17, + "text": ", and" + }, + { + "verseNum": 21, + "text": "beginning with the successive letters of the Hebrew alphabet. , meaning Or . This psalm is an acrostic poem, each line 6 He has shown His people the power of His works 7 by giving them the inheritance of the nations. The works of His hands are truth and justice; 8 all His precepts are trustworthy. They are upheld forever and ever, 9 enacted in truth and uprightness. He has sent redemption to His people; 10 He has ordained His covenant forever; holy and awesome is His name." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 5, + "text": "curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). f 14 curtains was approximately 45 feet long and 6 feet wide (13.7 meters long and 1.8 meters wide). h 17 approximately 18 inches or 45.7 centimeters. Possibly the hides of large aquatic mammals approximately 15 feet long and 2.25 feet wide (4.6 meters long and 68.6 centimeters wide). pieces of wood made for insertion into another piece; similarly in verse 19. c 2 d 8 e 13 A cubit g 16 Each of the ten Each of the eleven is Each frame was That is, projecting 80 |" + }, + { + "verseNum": 6, + "text": "–13) weary soul and replenish all who are weak.” 26 At this I awoke and looked around. My sleep 27 had been most pleasant to me. “The days are coming,” declares the LORD, “when I will sow the house of Israel and the 28 house of Judah with the seed of man and of beast. Just as I watched over them to uproot and tear down, to demolish, destroy, and bring disaster, so I will watch over them to build and to plant,” 29 declares the LORD. “In those days, it will no longer be said:" + }, + { + "verseNum": 8, + "text": "–12 and" + }, + { + "verseNum": 13, + "text": "| 1079 And this point is even more clear if another one who has priest like Melchizedek appears, become a priest not by a law of succession, but For it is by the power of an indestructible life. testified: 17 a “You are a priest forever 18 in the order of Melchizedek.” 19 So the former commandment is set aside be- (for the law cause it was weak and useless made nothing perfect), and a better hope is intro- 20 duced, by which we draw near to God. 21 And none of this happened without an oath. but For others became priests without an oath, Jesus became a priest with an oath by the One who said to Him: “The Lord has sworn and will not change b 22 His mind: ‘You are a priest forever.’ ” Because of this oath, Jesus has become the 23 guarantee of a better covenant. 25 Now there have been many other priests, since 24 death prevented them from continuing in office. But because Jesus lives forever, He has a per- manent priesthood. Therefore He is able to those who draw near to God save completely through Him, since He always lives to intercede 26 for them. c 27 Such a high priest truly befits us—One who is holy, innocent, undefiled, set apart from sinners, Unlike the and exalted above the heavens. other high priests, He does not need to offer daily sacrifices, first for His own sins and then for the sins of the people; He sacrificed for sin once for For the law ap- all when He offered up Himself. points as high priests men who are weak; but the oath, which came after the law, appointed" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–10) 2 d 4 “On the Then the LORD said to Moses, 3 first day of the first month you are to set Put the up the tabernacle, the Tent of Meeting. ark of the Testimony in it and screen off the ark Then bring in the table and set out with the veil. its arrangement; bring in the lampstand as well, 5 and set up its lamps. Place the gold altar of incense in front of the ark 6 of the Testimony, and hang the curtain at the en- Place the altar of burnt trance to the tabernacle. 7 offering in front of the entrance to the tabernacle, And place the basin be- the Tent of Meeting. tween the Tent of Meeting and the altar, and put 8 water in it. Set up the surrounding courtyard and hang the 9 curtain for the entrance to the courtyard. 10 Take the anointing oil and anoint the tabernacle and everything in it; consecrate it along with all Anoint the its furnishings, and it shall be holy. altar of burnt offering and all its utensils; conse- Anoint crate the altar, and it shall be most holy. 12 the basin and its stand and consecrate them. 11 13 14 Then bring Aaron and his sons to the entrance to the Tent of Meeting and wash them with wa- And you are to clothe Aaron with the holy ter. garments, anoint him, and consecrate him, so Bring his sons that he may serve Me as a priest. Anoint forward and clothe them with tunics. them just as you anointed their father, so that they may also serve Me as priests. Their anoint- ing will qualify them for a permanent priesthood 16 throughout their generations.” 15" + }, + { + "verseNum": 20, + "text": "the River d 8 78 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–18) For the choirmaster. A Psalm of David. 1 I waited patiently for the LORD; 2 He inclined to me and heard my cry. He lifted me up from the pit of despair, out of the miry clay; He set my feet upon a rock, 3 and made my footsteps firm. He put a new song in my mouth, a hymn of praise to our God. Many will see and fear 4 and put their trust in the LORD. Blessed is the man who has made the LORD his trust, c who has not turned to the proud, 5 nor to those who lapse into falsehood. Many, O LORD my God, are the wonders You have done, and the plans You have for us— none can compare to You— if I proclaim and declare them, 6 they are more than I can count. d Sacrifice and offering You did not desire, but my ears You have opened. Burnt offerings and sin offerings 7 You did not require. 8 Then I said, “Here I am, I have come— it is written about me in the scroll: e I delight to do Your will, O my God; Your law is within my heart.” b 19 c 4 but a body You prepared for me who turn aside to false e 8 See" + }, + { + "verseNum": 16, + "text": "–17 712 |" + }, + { + "verseNum": 30, + "text": "Or ; see also LXX; cited in" + }, + { + "verseNum": 37, + "text": ". f 16 ; cited in" + }, + { + "verseNum": 38, + "text": "d 5 wine e 10 sinning against your soul Or DSS; MT Literally ; see also LXX; cited in" + }, + { + "verseNum": 39, + "text": "| 1081 us draw near with a sincere heart in full assur- ance of faith, having our hearts sprinkled to cleanse us from a guilty conscience and our bod- 23 ies washed with pure water. 24 Let us hold resolutely to the hope we profess, for He who promised is faithful. And let us con- 25 sider how to spur one another on to love and good deeds. Let us not neglect meeting to- gether, as some have made a habit, but let us encourage one another, and all the more as you 26 see the Day approaching. 27 28 If we deliberately go on sinning after we have received the knowledge of the truth, no further sacrifice for sins remains, but only a fearful ex- pectation of judgment and of raging fire that will consume all adversaries. Anyone who rejected the law of Moses died without mercy on the tes- timony of two or three witnesses. How much more severely do you think one deserves to be punished who has trampled on the Son of God, profaned the blood of the covenant that sancti- 30 fied him, and insulted the Spirit of grace? f 29 For we know Him who said, “Vengeance is 31 and again, “The Lord will It is a fearful thing to fall g Mine; I will repay,” judge His people.” 32 into the hands of the living God. h Remember the early days that you were in the 33 light. In those days, you endured a great conflict Sometimes you were in the face of suffering. publicly exposed to ridicule and persecution; at other times you were partners with those who You sympathized with those were so treated. in prison and j" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–3) The Fourth Day 1 2 In the beginning God created the heavens and the earth. Now the earth was formless and void, and dark- ness was over the surface of the deep. And the Spirit of God was hovering over the surface of the The First Day waters. 3 4 a And God said, “Let there be light,” and And God saw that the light there was light. 5 was good, and He separated the light from the darkness. God called the light “day,” and the darkness He called “night.” b The Second Day And there was evening, and there was morn- ing—the first day. 6 c 7 And God said, “Let there be an expanse be- tween the waters, to separate the waters So God made the expanse from the waters.” and separated the waters beneath it from the God called the waters above. And it was so. expanse “sky.” 8 The Third Day And there was evening, and there was morn- ing—the second day. 9 10 And God said, “Let the waters under the sky be gathered into one place, so that the dry God land may appear.” And it was so. called the dry land “earth,” and the gathering of waters He called “seas.” And God saw that 11 it was good. 12 Then God said, “Let the earth bring forth vegetation: seed-bearing plants and fruit trees, each bearing fruit with seed according The earth to its kind.” And it was so. produced vegetation: seed-bearing plants according to their kinds and trees bearing fruit with seed according to their kinds. And 13 God saw that it was good. And there was evening, and there was b 5 day one c 6 a canopy a 3 morning—the t" + }, + { + "verseNum": 4, + "text": ") of flame to guard the way to the tree of life. 4 And Adam had relations with his wife Eve, and she conceived and gave birth to Cain. b “With the help of the LORD I have brought forth 2 a man,” she said. Later she gave birth to Cain’s brother Abel. 3 4 Now Abel was a keeper of sheep, while Cain was a tiller of the soil. So in the course of time, Cain brought some of the fruit of the soil as an offering while Abel brought the best por- to the LORD, tions of the firstborn of his flock. 5 And the LORD looked with favor on Abel and but He had no regard for Cain and his offering, his offering. So Cain became very angry, and his 6 countenance fell. 7 “Why are you angry,” said the LORD to Cain, If you “and why has your countenance fallen? do what is right, will you not be accepted? But if you refuse to do what is right, sin is crouching at your door; it desires you, but you must master 8 it.” c d 11 “What have you done?” replied the LORD. “The voice of your brother’s blood cries out to Me from the ground. Now you are cursed and ban- ished from the ground, which has opened its 12 mouth to receive your brother’s blood from your hand. When you till the ground, it will no longer yield its produce to you. You will be a 13 fugitive and a wanderer on the earth.” e 14 But Cain said to the LORD, “My punishment is Behold, this day You greater than I can bear. have driven me from the face of the earth, and from Your face I will be hidden; I will be a fugitive and a wanderer on the earth, and" + }, + { + "verseNum": 5, + "text": ") lived a total of 895 years, and then he died. 18 17 19" + }, + { + "verseNum": 7, + "text": ") ways. 13 Then God said to Noah, “The end of all living creatures has come before Me, because through them the earth is full of violence. Now behold, I b 14 will destroy both them and the earth. d 15 Make for yourself an ark of gopher wood; make rooms in the ark and coat it with pitch inside and out. And this is how you are to build it: The ark is to be 300 cubits long, 50 cubits wide, and 30 cubits high. You are to make a e for the ark, finish its walls a cubit from the roof top, place a door in the side of the ark, and build 17 lower, middle, and upper decks. 16 c 18 And behold, I will bring floodwaters upon the earth to destroy every creature under the heav- ens that has the breath of life. Everything on the earth will perish. But I will establish My cove- nant with you, and you will enter the ark—you and your sons and your wife and your sons’ 19 wives with you. And you are to bring two of every living crea- 20 ture into the ark—male and female—to keep them alive with you. Two of every kind of 21 bird and animal and crawling creature will come to you to be kept alive. You are also to take for yourself every kind of food that is eaten and gather it as food for yourselves and for the 22 animals.” So Noah did everything precisely as God had The Great Flood" + }, + { + "verseNum": 8, + "text": "–19) 24 15 After these events, the word of the LORD came to Abram in a vision: “Do not be afraid, Abram. I am your shield, your very great reward.” 2 But Abram replied, “O Lord GOD, what can You give me, since I remain childless, and the heir of Abram con- my house is Eliezer of Damascus?” tinued, “Behold, You have given me no offspring, 4 so a servant in my household will be my heir.” 3 Then the word of the LORD came to Abram, say- ing, “This one will not be your heir, but one who 5 comes from your own body will be your heir.” And the LORD took him outside and said, “Now look to the heavens and count the stars, if you are able.” Then He told him, “So shall your offspring 6 be.” f Abram believed the LORD, and it was credited e 7 to him as righteousness. After Abram returned from defeating Chedor- laomer and the kings allied with him, the king of Sodom went out to meet him in the Valley of 18 Shaveh (that is, the King’s Valley). The LORD also told him, “I am the LORD, who brought you out of Ur of the Chaldeans to give God Confirms His Promise you this land to possess.”" + }, + { + "verseNum": 18, + "text": "well of the oath e 31 Beersheba Cited in" + }, + { + "verseNum": 20, + "text": ") they brought grief to Isaac and Rebekah. 35 27 When Isaac was old and his eyes were so weak that he could no longer see, he called his older son Esau and said to him, “My son.” 2 “Here I am,” Esau replied. 3 “Look,” said Isaac, “I am now old, and I do Take your weap- not know the day of my death. 4 ons—your quiver and bow—and go out into the Then prepare a field to hunt some game for me. tasty dish that I love and bring it to me to eat, so a 33 Shibah that I may bless you before I die.” b 33 Beersheba seven oath can mean or . means 6 Now Rebekah was listening to what Isaac told his son Esau. So when Esau went into the field to Rebekah said to hunt game and bring it back, 7 her son Jacob, “Behold, I overheard your father saying to your brother Esau, ‘Bring me some game and prepare me a tasty dish to eat, so that I may bless you in the presence of the LORD be- 8 fore I die.’ 9 Now, my son, listen to my voice and do exactly Go out to the flock and bring me as I tell you. two choice young goats, so that I can make them 10 into a tasty dish for your father—the kind he Then take it to your father to eat, so that loves. 11 he may bless you before he dies.” 12 Jacob answered his mother Rebekah, “Look, my brother Esau is a hairy man, but I am smooth- What if my father touches me? Then skinned. I would be revealed to him as a deceiver, and I would bring upon myself a curse rather than a 13 blessing.” His mother replied, “Your curse be on me, my 14 son. Just obey my voice and go get t" + }, + { + "verseNum": 21, + "text": ". Hebrew That is, northwest Mesopotamia 52 |" + }, + { + "verseNum": 23, + "text": ") 2 2 Now a man of the house of Levi married a Le- vite woman, and she conceived and gave birth to a son. When she saw that he was a beau- 3 tiful child, she hid him for three months. d But when she could no longer hide him, she got him a papyrus basket and coated it with tar and pitch. Then she placed the child in the basket and 4 set it among the reeds along the bank of the Nile. And his sister stood at a distance to see what 5 would happen to him. 6 Soon the daughter of Pharaoh went down to bathe in the Nile, and her attendants were walk- ing along the riverbank. And when she saw the basket among the reeds, she sent her maidser- When she opened it, she saw vant to retrieve it. the child, and behold, the little boy was crying. So she had compassion on him and said, “This is one of the Hebrew children.” and take the country b 10 seventy-five c 22 ark Or SP, LXX, and ; also in verse 5; see Gen. 6:14. Targum Yonaton; Heb. does not include . The Hebrew can also mean 56 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–3) istered to me in Ephesus. 2 2 You therefore, my child, be strong in the And the things grace that is in Christ Jesus. that you have heard me say among many wit- nesses, entrust these to faithful men who will be 3 qualified to teach others as well. 4 A soldier refrains Join me in suffering, like a good soldier of Christ from entangling Jesus. 5 himself in civilian affairs, in order to please the Likewise, a competitor one who enlisted him. 6 does not receive the crown unless he competes according to the rules. The hardworking farmer Con- should be the first to partake of the crops. sider what I am saying, for the Lord will give you 8 insight into all things. 7 9 10 Remember Jesus Christ, raised from the dead, descended from David, as proclaimed by my gos- for which I suffer to the extent of being pel, chained like a criminal. But the word of God can- For this reason I endure all not be chained! things for the sake of the elect, so that they too may obtain the salvation that is in Christ Jesus, with eternal glory. f 15 what He has entrusted to me in Asia c 12 For this reason, even though I suffer as I do, I am not ashamed; for I know whom I have be- lieved, and I am convinced that He is able to for that day. guard what I have entrusted to Him b 9 before times eternal cowardice a 7 the good deposit entrusted to you e 14 d 13 timidity c sound words or Or Literally province in what is now western Turkey. Literally Or Or Literally ; Asia was a Roman 1070 | 2 Timothy 2:11 11 26" + }, + { + "verseNum": 5, + "text": "LXX ; cited in" + }, + { + "verseNum": 6, + "text": "19 5 The LORD founded the earth by wisdom Get wisdom, get understanding; 20 and established the heavens by 6 do not forget my words or turn from understanding. them. By His knowledge the watery depths were Do not forsake wisdom, and she will preserve" + }, + { + "verseNum": 12, + "text": "I speak military officer; here and throughout chapters 36 and 37, as well as 2 Kings 18 and 19 and 2 Kings 18:20; MT . Literally ; see DSS Or or Hebrew is the title of a high-ranking Assyrian 8 22" + }, + { + "verseNum": 13, + "text": "a foreign woman of the hunter Or b 3 the adulteress another and may you rejoice in the wife of your Ponder the path for your feet d 5 youth: her palate e 19 lay hold of Sheol ; LXX makes level Make straight paths for your feet be led astray a 26 c 3 Or man’s wife Or g 21 ponders Or Or or h 3 hasten Or Or i 5 ; also in verse 20 Or Hebrew does not include or . 14 31 15 With deceit in his heart he devises evil; he continually sows discord. Yet if caught, he must pay sevenfold; 32 he must give up all the wealth of his Therefore calamity will come upon him house." + }, + { + "verseNum": 14, + "text": "–17) these things. 13 c Therefore prepare your minds for action. Be sober-minded. Set your hope fully on the grace to 14 be given you at the revelation of Jesus Christ. As obedient children, do not conform to the But just as passions of your former ignorance. d 16 He who called you is holy, so be holy in all you do, 17 for it is written: “Be holy, because I am holy.” 15 Since you call on a Father who judges each one’s work impartially, conduct yourselves in 18 reverent fear during your stay as foreigners. For you know that it was not with perishable things such as silver or gold that you were redeemed from the empty way of life you but with the inherited from your forefathers, precious blood of Christ, a lamb without blemish He was known before the foundation or spot. of the world, but was revealed in the last times 21 for your sake. 19 20 Through Him you believe in God, who raised Him from the dead and glorified Him; and so The Enduring Word" + }, + { + "verseNum": 15, + "text": "Cited in" + }, + { + "verseNum": 18, + "text": "–29) 18 When all the people witnessed the thunder and lightning, the sounding of the ram’s horn, and the mountain enveloped in smoke, they “Speak to us trembled and stood at a distance. yourself and we will listen,” they said to Moses. “But do not let God speak to us, or we will die.” 19 e 14 Or Or Cited in Matt. 15:4, Matt. 19:19," + }, + { + "verseNum": 20, + "text": "Or 15 5" + }, + { + "verseNum": 21, + "text": "174 |" + }, + { + "verseNum": 22, + "text": "22 9 23 Instead, you have come to Mount Zion, to the city of the living God, the heavenly Jerusalem. You have come to myriads of angels in joyful assembly, to the congregation of the firstborn, enrolled in heaven. You have come to God the Judge of all, to the spirits of the righteous made to Jesus the mediator of a new cove- perfect, nant, and to the sprinkled blood that speaks a 25 better word than the blood of Abel. 24 26 See to it that you do not refuse Him who speaks. For if the people did not escape when they refused Him who warned them on earth, how much less will we escape if we reject Him At that time His who warns us from heaven? voice shook the earth, but now He has promised, “Once more I will shake not only the earth, but The words “Once more” heaven as well.” signify the removal of what can be shaken—that is, created things—so that the unshakable may 28 remain. 27 a 29 Therefore, since we are receiving an unshaka- ble kingdom, let us be filled with gratitude, and so worship God acceptably with reverence and Brotherly Love awe. “For our God is a consuming fire.” b 2 Continue in brotherly love. Do not ne- glect to show hospitality to strangers, for 3 by so doing some people have entertained angels Remember those in prison without knowing it. as if you were bound with them, and those who 4 are mistreated as if you were suffering with them. Marriage should be honored by all and the mar- riage bed kept undefiled, for God will judge the Christ’s Unchanging Nature sexual" + }, + { + "verseNum": 26, + "text": "Or ; also in verse 18 Literally Literally Zechariah A Call to Repentance" + }, + { + "verseNum": 29, + "text": "Or his own a nation out of another nation—by trials, signs, wonders, and war, by a strong hand and an outstretched arm, and by great terrors—as the LORD your God did for you in Egypt, before your 35 eyes? You were shown these things so that you would know that the LORD is God; there is no 36 other besides Him. He let you hear His voice from heaven to disci- pline you, and on earth He showed you His great 37 fire, and you heard His words out of the fire. Because He loved your fathers, He chose their descendants after them and brought you out of Egypt by His presence and great power, to drive out before you nations greater and might- ier than you, and to bring you into their land and 39 give it to you for your inheritance, as it is this day. 38 40 Know therefore this day and take to heart that the LORD is God in heaven above and on the Keep His stat- earth below; there is no other. utes and commandments, which I am giving you today, so that you and your children after you may prosper, and that you may live long in the land that the LORD your God is giving you for all Cities of Refuge time. (Num. 35:9–34 ; De. 19:1–14 ; Josh. 20:1–9) 41 42 Then Moses set aside three cities across the Jordan to the east to which a manslayer could flee after killing his neighbor unintentionally without prior malice. 43 To save one’s own life, he could flee to one of Bezer in the wilderness on the these cities: plateau belonging to the Reubenites, Ramoth in Gilead belonging to the Gadites, or Golan" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 5, + "text": "; here and in verse 8 c 10 21 the autumn feast of pilgrimage to Jerusalem; also translated as called (see" + } + ] + } + ] + }, + { + "name": "James", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": ") 1 Jude, a servant of Jesus Christ and a brother of James, To those who are called, loved by God the Father, 2 and kept in Jesus Christ: God’s Judgment on the Ungodly (2 Pet. 3:1–7) Mercy, peace, and love be multiplied to you. 3 4 Beloved, although I made every effort to write to you about the salvation we share, I felt it nec- essary to write and urge you to contend ear- nestly for the faith entrusted once for all to the For certain men have crept in among you saints. unnoticed—ungodly ones who were designated long ago for condemnation. They turn the grace of our God into a license for immorality, and they 5 deny our only Master and Lord, Jesus Christ. a Although you are fully aware of this, I want to remind you that after Jesus had delivered His 6 people out of the land of Egypt, He destroyed And the angels who those who did not believe. did not stay within their own domain but aban- doned their proper dwelling—these He has kept 7 in eternal chains under darkness, bound for judg- In like manner, Sodom ment on that great day. and Gomorrah and the cities around them, who indulged in sexual immorality and pursued strange flesh, are on display as an example of 8 those who sustain the punishment of eternal fire. 9 Yet in the same way these dreamers defile their bodies, reject authority, and slander glorious be- But even the archangel Michael, when he ings. disputed with the devil over the body of Moses, b did not presume to bring a slanderous charge 10 against him, but said, “T" + }, + { + "verseNum": 2, + "text": "–12) 11 12 a 13 Now I want you to know, brothers, that my cir- cumstances have actually served to advance the As a result, it has become clear through- gospel. out the whole palace guard and to everyone else that I am in chains for Christ. And most of the brothers, confident in the Lord by my chains, now dare more greatly to speak the word with- 15 out fear. 14 b 16 c 17 latter do so in love, knowing that I am appointed for the defense of the gospel. The former, however, preach Christ out of selfish ambition, not sincerely, supposing that they can add to the 18 distress of my chains. d 19 20 What then is the issue? Just this: that in every way, whether by false motives or true, Christ is preached. And in this I rejoice. Yes, and I will con- because I know that through tinue to rejoice, your prayers and the provision of the Spirit of Jesus Christ, my distress will turn out for my de- I eagerly expect and hope that I will liverance. in no way be ashamed, but will have complete boldness so that now as always Christ will be ex- To Live Is Christ alted in my body, whether by life or by death. 21 22 23 For to me, to live is Christ, and to die is gain. But if I go on living in the body, this will mean fruitful labor for me. So what shall I choose? I do I am torn between the two. I desire not know. 24 to depart and be with Christ, which is far better But it is more necessary for you that I indeed. 25 remain in the body. 26 Convinced of this, I know that I will remain and will continu" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "4 have you not must stand” or “Sit at my feet,” discriminated among yourselves and become 5 judges with evil thoughts? 6 Listen, my beloved brothers: Has not God cho- sen the poor of this world to be rich in faith and to inherit the kingdom He promised those who But you have dishonored the poor. Is love Him? it not the rich who oppress you and drag you into a court? Are they not the ones who blaspheme 8 the noble name by which you have been called? 7 b 9 If you really fulfill the royal law stated in Scrip- you are But if you show favoritism, you sin ture, “Love your neighbor as yourself,” doing well. 10 and are convicted by the law as transgressors. 11 Whoever keeps the whole law but stumbles at c For just one point is guilty of breaking all of it. He who said, “Do not commit adultery,” also If you do not commit said, “Do not murder.” adultery, but do commit murder, you have be- 12 come a lawbreaker. d 13 Speak and act as those who are going to be For judg- judged by the law that gives freedom. ment without mercy will be shown to anyone who has not been merciful. Mercy triumphs over Faith and Works" + }, + { + "verseNum": 8, + "text": "approximately 20 dry quarts or 22 liters. Cited in" + }, + { + "verseNum": 11, + "text": "Cited in Matt. 5:27, h 17 g 16 Matt. 19:18," + }, + { + "verseNum": 14, + "text": "–26) Christ died for nothing. 3 Spirit by works of the law, or by hearing with 3 faith? 4 5 Are you so foolish? After starting in the Spirit, Have you suf- are you now finishing in the flesh? fered so much for nothing, if it really was for nothing? Does God lavish His Spirit on you and work miracles among you because you practice 6 the law, or because you hear and believe? c 7 8 So also, “Abraham believed God, and it was Understand, credited to him as righteousness.” then, that those who have faith are sons of Abra- The Scripture foresaw that God would jus- ham. tify the Gentiles by faith, and foretold the gospel d 9 to Abraham: “All nations will be blessed through you.” So those who have faith are blessed Christ Has Redeemed Us along with Abraham, the man of faith. 10 e 11 All who rely on works of the law are under a curse. For it is written: “Cursed is everyone who does not continue to do everything written in the Book of the Law.” Now it is clear that no one is justified before God by the law, because, “The righteous will live by faith.” The law, however, is not based on faith; on the contrary, “The man 13 who does these things will live by them.” 12 g f Christ redeemed us from the curse of the law h by becoming a curse for us. For it is written: 14 “Cursed is everyone who is hung on a tree.” i He redeemed us in order that the blessing promised to Abraham would come to the Gen- tiles in Christ Jesus, so that by faith we might re- The Purpose of the Law" + }, + { + "verseNum": 23, + "text": "and suddenly great terror and darkness over- 13 whelmed him. a 14 15 Then the LORD said to Abram, “Know for cer- tain that your descendants will be strangers in a land that is not their own, and they will be en- slaved and mistreated four hundred years. But I will judge the nation they serve as slaves, and afterward they will depart with many posses- You, however, will go to your fathers in sions. peace and be buried at a ripe old age. In the fourth generation your descendants will return here, for the iniquity of the Amorites is not yet 17 complete.” 16 18 When the sun had set and darkness had fallen, behold, a smoking firepot and a flaming torch appeared and passed between the halves of the On that day the LORD made a cove- carcasses. nant with Abram, saying, “To your descendants I 19 have given this land—from the river of Egypt to the land of the the great River Euphrates— 21 Kenites, Kenizzites, Kadmonites, Hittites, Amorites, Canaanites, Perizzites, Rephaites, Hagar and Ishmael Girgashites, and Jebusites.” 20 16 2 Now Abram’s wife Sarai had borne him no children, but she had an Egyptian So Sarai said to maidservant named Hagar. Abram, “Look now, the LORD has prevented me from bearing children. Please go to my maidser- 3 vant; perhaps I can build a family by her.” So af- And Abram listened to the voice of Sarai. ter he had lived in Canaan for ten years, his wife Sarai took her Egyptian maidservant Hagar and And he slept gave her to Abram to be his wife. with Hagar, and sh" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–12) For the choirmaster. A Psalm of David. 1 Hear, O God, my voice of complaint; 2 preserve my life from dread of the enemy. Hide me from the scheming of the 3 wicked, from the mob of workers of iniquity, who sharpen their tongues like swords and aim their bitter words like 4 arrows, A Psalm of David, when he was in the Wilderness of Judah. ambushing the innocent in seclusion, shooting suddenly, without fear. 5 1 O God, You are my God. Earnestly I seek You; my soul thirsts for You. My body yearns for You 2 in a dry and weary land without water. So I have seen You in the sanctuary 3 and beheld Your power and glory. Because Your loving devotion is better than 4 life, my lips will glorify You. 5 So I will bless You as long as I live; in Your name I will lift my hands. My soul is satisfied as with the richest of 6 foods; with joyful lips my mouth will praise You. When I remember You on my bed, I think of You through the watches of a 12 the night. Cited in" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 6, + "text": "and The Lord opposes the proud, but gives grace to the humble 580 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–6) he will not stand before obscure men. Saying 7 23 When you sit down to dine with a d 2 ruler, Oppressing the poor to enrich oneself or consider carefully what is set before you, giving gifts to the rich will surely lead to poverty. a 8 He whose eye is good LXX includes God blesses a cheerful and generous man, but foolish works will come to an end c 20 written for you excellent sayings and put a knife to your throat if you possess a great appetite. written for you three times d 1 b 9 who is before you Or or ; see also 2 Cor. 9:7. Lit. Or a 22 3 Saying 8 Do not crave his delicacies, for that food is deceptive. 4 Do not wear yourself out to get rich; 5 be wise enough to restrain yourself. When you glance at wealth, it disappears, Saying 9 for it makes wings for itself and flies like an eagle to the sky. 6 7 Do not eat the bread of a stingy man, and do not crave his delicacies; b for he is keeping track, inwardly counting the cost. “Eat and drink,” he says to you, 8 but his heart is not with you. You will vomit up what little you have eaten Saying 10 and waste your pleasant words. 9 Do not speak to a fool, for he will despise the wisdom of your Saying 11 words. 10 11 Do not move an ancient boundary stone or encroach on the fields of the fatherless, for their Redeemer is strong; Saying 12 He will take up their case against you. 12 Apply your heart to instruction Saying 13 and your ears to words of knowledge. 13 Do not withhold discipline from a child; 14 although you strike hi" + }, + { + "verseNum": 7, + "text": "–12) 1 3 2 There was a man in the land of Uz whose name was Job. And this man was blameless and upright, fearing God and shunning evil. He and he had seven sons and three daughters, owned 7,000 sheep, 3,000 camels, 500 yoke of oxen, 500 female donkeys, and a very large num- ber of servants. Job was the greatest man of all 4 the people of the East. Job’s sons would take turns holding feasts in their homes, and they would invite their three 5 sisters to eat and drink with them. And when the days of feasting were over, Job would send for his children to purify them, rising early in the morning to offer burnt offerings for all of them. For Job thought, “Perhaps my chil- dren have sinned and cursed God in their hearts.” Satan’s First Attack This was Job’s regular practice. 6 a One day the sons of God came to present them- also came selves before the LORD, and Satan 7 with them. “Where have you come from?” said the LORD to Satan. “From roaming through the earth,” he replied, 8 “and walking back and forth in it.” Then the LORD said to Satan, “Have you consid- ered My servant Job? For there is no one on earth like him, a man who is blameless and upright, 9 who fears God and shuns evil.” 10 11 Satan answered the LORD, “Does Job fear God Have You not placed a hedge on for nothing? every side around him and his household and all that he owns? You have blessed the work of his hands, and his possessions have increased in the But stretch out Your hand and strike all land. that he has, and" + }, + { + "verseNum": 11, + "text": "| 1087 Do Not Boast about Tomorrow" + }, + { + "verseNum": 12, + "text": "12 16 Above all, my brothers, do not swear, not by heaven or earth or by any other oath. Simply let your “Yes” be yes, and your “No,” no, so that you The Prayer of Faith will not fall under judgment. 13 14 Is any one of you suffering? He should pray. Is Is any anyone cheerful? He should sing praises. one of you sick? He should call the elders of the 15 church to pray over him and anoint him with oil in the name of the Lord. And the prayer offered in faith will restore the one who is sick. The Lord will raise him up. If he has sinned, he will be forgiven. 17 Therefore confess your sins to each other and pray for each other so that you may be healed. The prayer of a righteous man has great power Elijah was a man just like us. He to prevail. prayed earnestly that it would not rain, and it did 18 not rain on the land for three and a half years. Again he prayed, and the heavens gave rain, Restoring a Sinner and the earth yielded its crops. 19 My brothers, if one of you should wander from 20 the truth and someone should bring him back, consider this: Whoever turns a sinner from the error of his way will save his soul from death and cover over a multitude of sins. 1 Peter A Greeting from Peter" + } + ] + } + ] + }, + { + "name": "1 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 Simon Peter, a servant and apostle of Jesus Christ, To those who through the righteousness of our God and Savior Jesus Christ have received a faith 2 as precious as ours: Grace and peace be multiplied to you through Partakers of the Divine Nature the knowledge of God and of Jesus our Lord. 3 a 4 His divine power has given us everything we need for life and godliness through the knowl- edge of Him who called us by His own glory and Through these He has given us His excellence. precious and magnificent promises, so that through them you may become partakers of the divine nature, now that you have escaped the 5 corruption in the world caused by evil desires. 8 7 For this very reason, make every effort to add 6 to your faith virtue; and to virtue, knowledge; and to knowledge, self-control; and to self- control, perseverance; and to perseverance, god- and to godliness, brotherly kindness; liness; and to brotherly kindness, love. For if you possess these qualities and continue to grow in them, they will keep you from being ineffective and unproductive in your knowledge of our Lord But whoever lacks these traits is Jesus Christ. nearsighted to the point of blindness, having for- gotten that he has been cleansed from his past 10 sins. 9 11 Therefore, brothers, strive to make your call- ing and election sure. For if you practice these and you will re- things you will never stumble, ceive a lavish reception into the eternal kingdom 12 of our Lord and Savior Jesus Christ. 13 There" + }, + { + "verseNum": 13, + "text": "–21) rather healed. 14 g Pursue peace with everyone, as well as holi- 15 ness, without which no one will see the Lord. See to it that no one falls short of the grace of 16 God, and that no root of bitterness springs up to cause trouble and defile many. See to it that no one is sexually immoral, or is godless like Esau, who for a single meal sold his birthright. For you know that afterward, when he wanted to in- herit the blessing, he was rejected. He could find no ground for repentance, though he sought the An Unshakable Kingdom blessing with tears." + }, + { + "verseNum": 16, + "text": "Cited in" + }, + { + "verseNum": 22, + "text": "–25) 6 A voice says, “Cry out!” And I asked, “What should I cry out?” “All flesh is like grass, 7 and all its glory like the flowers of the field. The grass withers and the flowers fall when the breath of the LORD blows 8 on them; indeed, the people are grass. e The grass withers and the flowers fall, Here Is Your God!" + }, + { + "verseNum": 24, + "text": "–25 Or 10 Behold, the Lord GOD comes with might, and His arm establishes His rule. 11 His reward is with Him, 23 He stretches out the heavens like a curtain, and spreads them out like a tent to dwell d in. and His recompense accompanies Him. He brings the princes to nothing" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–8) captured. 14 Therefore hear the word of the LORD, 15 O scoffers who rule this people in Jerusalem. For you said, “We have made a covenant with death; we have fashioned an agreement with Sheol. When the overwhelming scourge passes through it will not touch us, f because we have made lies our refuge and falsehood our hiding place.” So this is what the Lord GOD says: “See, I lay a stone in Zion, a tested stone, a precious cornerstone, a sure foundation; the one who believes will never be g 17 shaken. I will make justice the measuring line c 10 and righteousness the level. sav lasav sav lasav kav lakav kav lakav Or or e 11 For He says For it is ; literally d 10 Hebrew Or false gods That is, the northern kingdom of Israel; also in verse 3 will never be put to shame f 15 meaningless sounds to demonstrate an inability to understand); also in verse 13 g 16 ; Hebrew Cited in 1 Corinthians 14:21 (possibly Or LXX ; cited in" + }, + { + "verseNum": 6, + "text": "640 |" + }, + { + "verseNum": 7, + "text": "; also in verse 7; LXX save, we pray save now hosia-na f 25 g 26 h 27 Cited in" + }, + { + "verseNum": 8, + "text": "h 2 Or Or ; cited in" + }, + { + "verseNum": 10, + "text": ", Hebrew k 2 15 shekels are translated goodness Lo- , a homer of barley and a wineskin full of wine ; that is, a total of approximately 9.36 bushels or 330 is approximately 6 ounces or 171 grams of silver. liters (probably about 436 pounds or 198 kilograms of barley); LXX Or 810 |" + }, + { + "verseNum": 13, + "text": "–20) with good. 13 does not carry the sword in vain. He is God’s servant, an agent of retribution to the wrong- 5 doer. 6 Therefore it is necessary to submit to authority, not only to avoid punishment, but also as a mat- This is also why you pay taxes. ter of conscience. 7 For the authorities are God’s servants, who de- vote themselves to their work. Pay everyone what you owe him: taxes to whom taxes are due, revenue to whom revenue is due, respect to whom respect is due, honor to whom honor is Love Fulfills the Law" + }, + { + "verseNum": 21, + "text": "–25) not heard. 53 2 Who has believed our message? And to whom has the arm of the i LORD been revealed? He grew up before Him like a tender shoot, and like a root out of dry ground. He had no stately form or majesty to attract 3 us, no beauty that we should desire Him. He was despised and rejected by men, a man of sorrows, acquainted with grief. Like one from whom men hide their faces, He was despised, and we esteemed Him 4 not. j Surely He took up our infirmities and carried our sorrows; yet we considered Him stricken, 5 struck down by God, and afflicted. But He was pierced for our transgressions, He was crushed for our iniquities; the punishment that brought us peace was k 6 l and by His stripes we are healed. upon Him, 12 come out from it, purify yourselves, you who carry the vessels of the LORD. We all like sheep have gone astray, each one has turned to his own way; a 5 For you will not leave in a hurry wail nor flee in haste, c 7 startle Cited in" + }, + { + "verseNum": 22, + "text": "i 2 and strengthen your stakes Or . e 12 Or many j 9 f 12 numerous g 12 For this is like the Or Some manuscripts Cited in Luke 666 |" + }, + { + "verseNum": 24, + "text": "Cited in 2 Corinthians 6:17 l 6 Cited in" + }, + { + "verseNum": 25, + "text": "and the LORD has laid upon Him —on account of you My name is blasphemed continually among the Gentiles the iniquity of us all. e 13 will act wisely f 14 d 11 LXX For those who were not told will see, and those who have not heard will understand. This One bears our sins and is pained for us Or ; cited in Syriac; Hebrew Cited ; cited in 7 Future Blessings for Zion" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) 10 a The Friends 1 The Bride This is Solomon’s Song of Songs. 2 3 Let him kiss me with the kisses of his mouth! For your love is more delightful than wine. The fragrance of your perfume is pleasing; your name is like perfume poured out. No wonder the maidens adore you. 4 Take me away with you—let us hurry! The Friends May the king bring me to his chambers. We will rejoice and delight in you; The Bride we will praise your love more than wine. 5 It is only right that they adore you. I am dark, yet lovely, O daughters of Jerusalem, 6 like the tents of Kedar, like the curtains of Solomon. Do not stare because I am dark, for the sun has gazed upon me. My mother’s sons were angry with me; 7 they made me a keeper of the vineyards, but my own vineyard I have neglected. Tell me, O one I love, where do you pasture your sheep? Where do you rest them at midday? Why should I be like a veiled woman The Friends beside the flocks of your companions? 8 Your cheeks are beautiful with ornaments, your neck with strings of jewels. 11 The Bride We will make you ornaments of gold, studded with beads of silver. 12 13 While the king was at his table, my perfume spread its fragrance. My beloved is to me a sachet of myrrh 14 resting between my breasts. My beloved is to me a cluster of henna blos- soms The Bridegroom in the vineyards of En-gedi. 15 How beautiful you are, my darling! The Bride Oh, how very beautiful! Your eyes are like doves. 16 How handsome you are, my beloved! The Bridegroom Oh, ho" + }, + { + "verseNum": 10, + "text": "–12 Cited in" + }, + { + "verseNum": 14, + "text": "do not be shaken or Raise the war cry Be broken d 12 b 10 or e 14 Hebrew 22 They will roam the land, dejected and hungry. When they are famished, they will become en- raged; and looking upward, they will curse their king and their God. Then they will look to the earth and see only distress and darkness and the gloom of anguish. And they will be driven into ut- Unto Us a Child Is Born ter darkness. (Matt. 4:12–17 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–11) 23 d “Everything is permissible,” but not every- 24 thing is beneficial. “Everything is permissible,” No one should but not everything is edifying. 25 seek his own good, but the good of others. 26 Eat anything sold in the meat market without for, “The earth raising questions of conscience, 27 is the Lord’s, and the fullness thereof.” e 28 If an unbeliever invites you to a meal and you want to go, eat anything set before you without But if some- raising questions of conscience. one tells you, “This food was offered to idols,” f then do not eat it, for the sake of the one who told you and for the sake of conscience— the other one’s conscience, I mean, not your own. For why should my freedom be determined by someone If I partake in the meal with else’s conscience? thankfulness, why am I denounced because of 31 that for which I give thanks? 30 29 32 test the Lord So whether you eat or drink or whatever you d 23 the destroyer Do not become do, do it all to the glory of God. and for the sake of conscience—for the earth is the “All things c 10 Literally Or BYZ and TR 33 a stumbling block, whether to Jews or Greeks or as I also try to please eve- the church of God— ryone in all I do. For I am not seeking my own good, but the good of many, that they may be Roles in Worship saved. 11 2 You are to imitate me, just as I imitate Christ. 3 Now I commend you for remembering me in everything and for maintaining the traditions, But I want you just as I passed them on to you. to understan" + }, + { + "verseNum": 8, + "text": "down. 12 28" + }, + { + "verseNum": 13, + "text": "| 1091 f 21 In the ark a few people, only eight souls, were And this water symbol- saved through water. izes the baptism that now saves you also—not the removal of dirt from the body, but the pledge a clear conscience toward God—through the of who has gone into resurrection of Jesus Christ, heaven and is at the right hand of God, with an- Living for God’s Glory gels, authorities, and powers subject to Him. (1 Corinthians 10:23–33) 22 g 2 in His Therefore, since Christ suffered body, arm yourselves with the same resolve, because anyone who has suffered in his body is Consequently, he does not live done with sin. out his remaining time on earth for human pas- For you have spent sions, but for the will of God. enough time in the past carrying out the same de- sires as the Gentiles: living in debauchery, lust, drunkenness, orgies, carousing, and detestable 4 idolatry. 3 5 Because of this, they consider it strange of you not to plunge with them into the same flood of reckless indiscretion, and they heap abuse on But they will have to give an account to you. 6 Him who is ready to judge the living and the h That is why the gospel was preached even dead. to those who are now dead, so that they might be judged as men in the flesh, but live according 7 to God in the spirit. 8 The end of all things is near. Therefore be clear- minded and sober, so that you can pray. Above i all, love one another deeply, because love covers over a multitude of sins. Show hospitality to 10 one another wit" + }, + { + "verseNum": 14, + "text": "that you share in the sufferings of Christ, so that you may be overjoyed at the revelation of His 14 glory. a 15 16 If you are insulted for the name of Christ, you Spirit of glory and of are blessed, because the God rests on you. Indeed, none of you should suffer as a murderer or thief or wrongdoer, or But if you suffer as a Chris- even as a meddler. 17 tian, do not be ashamed, but glorify God that you bear that name. For it is time for judgment to begin with the family of God; and if it begins with 18 us, what will the outcome be for those who diso- bey the gospel of God? And, b “If it is hard for the righteous to be saved, c 19 what will become of the ungodly and the sinner?” So then, those who suffer according to God’s will should entrust their souls to their faithful Instructions to Elders Creator and continue to do good. (1 Timothy 3:1–7 ;" + }, + { + "verseNum": 18, + "text": "586 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–4) c 3 2 This is a trustworthy saying: If anyone as- pires to be an overseer, he desires a noble task. An overseer, then, must be above re- proach, the husband of but one wife, temperate, 3 self-controlled, respectable, hospitable, able to not dependent on wine, not violent but teach, 4 gentle, peaceable, and free of the love of money. d 6 5 An overseer must manage his own household well and keep his children under control, with For if someone does not know complete dignity. how to manage his own household, how can he He must not be a re- care for the church of God? cent convert, or he may become conceited and 7 fall under the same condemnation as the devil. Furthermore, he must have a good reputation with outsiders, so that he will not fall into dis- Qualifications for Deacons grace and into the snare of the devil." + }, + { + "verseNum": 5, + "text": "Or LXX 7 you; love her, and she will guard you. c Wisdom is supreme; so acquire wisdom. gain And whatever you may acquire, 8 understanding. Prize her, and she will exalt you; 9 if you embrace her, she will honor you. She will set a garland of grace on your head; she will present you with a crown of 10 beauty.” 11 Listen, my son, and receive my words, and the years of your life will be many. 12 I will guide you in the way of wisdom; I will lead you on straight paths. When you walk, your steps will not be 13 impeded; when you run, you will not stumble. 14 Hold on to instruction; do not let go. Guard it, for it is your life. 15 Do not set foot on the path of the wicked or walk in the way of evildoers. 16 Avoid it; do not travel on it. Turn from it and pass on by. For they cannot sleep unless they do evil; 17 they are deprived of slumber 18 until they make someone fall. For they eat the bread of wickedness and drink the wine of violence. The path of the righteous is like the first gleam of dawn, 19 shining brighter and brighter until midday. But the way of the wicked is like the darkest gloom; 20 they do not know what makes them stumble. 21 My son, pay attention to my words; incline your ear to my sayings. 22 Do not lose sight of them; keep them within your heart. 23 For they are life to those who find them, 24 and health to the whole body. Guard your heart with all diligence, for from it flow springs of life. Put away deception from your mouth; keep your lips from perverse speec" + } + ] + } + ] + }, + { + "name": "2 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 Peter, an apostle of Jesus Christ, a To the elect who are exiles of the Dispersion 2 throughout Pontus, Galatia, Cappadocia, Asia, according to the fore- and Bithynia, chosen knowledge of God the Father and sanctified by the Spirit for obedience to Jesus Christ and sprin- kling by His blood: A Living Hope Grace and peace be yours in abundance. 3 b 4 Blessed be the God and Father of our Lord Jesus Christ! By His great mercy He has given us into a living hope through the resur- new birth and into rection of Jesus Christ from the dead, 5 an inheritance that is imperishable, undefiled, who and unfading, reserved in heaven for you, through faith are shielded by God’s power for the salvation that is ready to be revealed in the last 6 time. 7 In this you greatly rejoice, though now for a lit- tle while you may have had to suffer grief in var- so that the proven character of your ious trials faith—more precious than gold, which perishes even though refined by fire—may result in praise, glory, and honor at the revelation of Jesus 8 Christ. 9 Though you have not seen Him, you love Him; and though you do not see Him now, you believe in Him and rejoice with an inexpressible and glo- now that you are receiving the goal of rious joy, 10 your faith, the salvation of your souls. Concerning this salvation, the prophets who 11 foretold the grace to come to you searched and trying to determine the investigated carefully, time and setting to which the Spirit of Christ in them was pointing" + }, + { + "verseNum": 16, + "text": "–21) 17 After six days Jesus took with Him Peter, James, and John the brother of James, 2 and led them up a high mountain by themselves. There He was transfigured before them. His face shone like the sun, and His clothes became 3 as white as the light. 4 Suddenly Moses and Elijah appeared before them, talking with Jesus. Peter said to Jesus, c “Lord, it is good for us to be here. If You wish, I —one for You, one for will put up three shelters 5 Moses, and one for Elijah.” d While Peter was still speaking, a bright cloud enveloped them, and a voice from the cloud said, “This is My beloved Son, in whom I am well When the disciples pleased. 7 heard this, they fell facedown in terror. Listen to Him!” 6 8 Then Jesus came over and touched them. “Get And when they up,” He said. “Do not be afraid.” 9 looked up, they saw no one except Jesus. As they were coming down the mountain, Jesus commanded them, “Do not tell anyone about this vision until the Son of Man has been raised from 10 the dead.” The disciples asked Him, “Why then do the 11 scribes say that Elijah must come first?” 12 Jesus replied, “Elijah does indeed come, and he But I tell you that Elijah will restore all things. has already come, and they did not recognize him, but have done to him whatever they wished. In the same way, the Son of Man will suffer at 13 their hands.” Then the disciples understood that He was The Boy with a Demon speaking to them about John the Baptist." + }, + { + "verseNum": 17, + "text": "17 2 3" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 5, + "text": "5 a 6 if He did not spare the ancient world judgment; when He brought the flood on its ungodly people, but preserved Noah, a preacher of righteousness, if He condemned the cities of among the eight; Sodom and Gomorrah to destruction, reducing b 7 them to ashes as an example of what is coming and if He rescued Lot, a right- on the ungodly; 8 eous man distressed by the depraved conduct of the lawless (for that righteous man, living among them day after day, was tormented in his righteous soul by the lawless deeds he saw and if all this is so, then the Lord knows heard)— how to rescue the godly from trials and to hold the unrighteous for punishment on the day of 10 judgment. 9 Such punishment is specially reserved for those who indulge the corrupt desires of the c flesh and despise authority. Bold and self-willed, 11 they are unafraid to slander glorious beings. Yet not even angels, though greater in strength and power, dare to bring such slanderous 12 charges against them before the Lord. These men are like irrational animals, crea- tures of instinct, born to be captured and de- stroyed. They blaspheme in matters they do not understand, and like such creatures, they too will The harm they will suffer is the be destroyed. wages of their wickedness. 13 14 They consider it a pleasure to carouse in broad daylight. They are blots and blemishes, reveling Their in their deception as they feast with you. eyes are full of adultery; their desire for sin is never satisfied; they seduce th" + }, + { + "verseNum": 22, + "text": "b 23 smooth and do not go to your brother’s house in the day of your calamity; 11 better a neighbor nearby than a brother far away. 12 Be wise, my son, and bring joy to my heart, so that I can answer him who taunts me. The prudent see danger and take cover, but the simple keep going and pay the 13 penalty. Take the garment of him who posts security a 14 for a stranger; get collateral if it is for a foreigner." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) commanded him. 7 Then the LORD said to Noah, “Go into the ark, you and all your family, because I have You are found you righteous in this generation. a 12 c 15 all flesh 2 f 3 to take with you seven pairs of every kind of clean animal, a male and its mate; a pair of every kind of unclean animal, a male and its mate; and seven pairs of every kind of bird of the air, male 4 and female, to preserve their offspring on the For seven days from now I face of all the earth. will send rain on the earth for forty days and forty nights, and I will wipe from the face of the 5 earth every living thing I have made.” And Noah did all that the LORD had com- 6 manded him. 7 Now Noah was 600 years old when the flood- And Noah and his waters came upon the earth. wife, with his sons and their wives, entered 8 the ark to escape the waters of the flood. The clean and unclean animals, the birds, and came everything that crawls along the ground to Noah to enter the ark, two by two, male and 10 female, as God had commanded Noah. 9 11 And after seven days the floodwaters came In the six hundredth year of upon the earth. Noah’s life, on the seventeenth day of the second month, all the fountains of the great deep burst forth, and the floodgates of the heavens were And the rain fell upon the earth for opened. 13 forty days and forty nights. 12 14 On that very day Noah entered the ark, along with his sons Shem, Ham, and Japheth, and his wife, and the three wives of his sons— they and every kind of wi" + }, + { + "verseNum": 3, + "text": ". Revelation Prologue" + }, + { + "verseNum": 8, + "text": ". Or Hebrew Cited in" + }, + { + "verseNum": 18, + "text": "| 1095 16 b He wrote you with the wisdom God gave him. writes this way in all his letters, speaking in them about such matters. Some parts of his let- c ters are hard to understand, which ignorant and as they do the rest of unstable people distort, 17 the Scriptures, to their own destruction. Therefore, beloved, since you already know these things, be on your guard so that you will not be carried away by the error of the lawless and fall from your secure standing. But grow in the grace and knowledge of our Lord and Sav- ior Jesus Christ. To Him be the glory both now and to the day of eternity. 18 d Consider also that our Lord’s patience brings salvation, just as our beloved brother Paul also Amen. a 14 d 18 to be found by Him in peace, without spot and without blemish. Amen. b 16 in all the letters c 16 will distort Or NE, WH, and NA do not include Or NA 1 John 5 The Word of Life" + } + ] + } + ] + }, + { + "name": "Jude", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2) 1 James, a servant of God and of the Lord Jesus Christ, a To the twelve tribes of the Dispersion: Rejoicing in Trials" + }, + { + "verseNum": 3, + "text": "–16) 21 2 2 Now there were also false prophets among the people, just as there will be false teach- ers among you. They will secretly introduce destructive heresies, even denying the Master who bought them—bringing swift destruction Many will follow in their de- on themselves. pravity, and because of them the way of truth will be defamed. In their greed, these false teachers will exploit you with deceptive words. The longstanding verdict against them remains in 4 force, and their destruction does not sleep. 3 d For if God did not spare the angels when they sinned, but cast them deep into hell, placing c 17 them in chains of darkness to be held for" + }, + { + "verseNum": 17, + "text": "–23) ing for sin is no longer needed. 19 d 20 Therefore, brothers, since we have confidence by the blood of Je- by the new and living way opened for us and since we c 17 let to enter the Most Holy Place sus, through the curtain of His body, b 16 a 7 have a great priest over the house of God, f 30 the veil that is His flesh" + }, + { + "verseNum": 18, + "text": ". NA Bosor . i 8 Or SBL and WH See" + }, + { + "verseNum": 24, + "text": "–25) 25 Now to Him who is able to strengthen you by my gospel and by the proclamation of Jesus 26 Christ, according to the revelation of the mystery but now revealed and concealed for ages past made known through the writings of the proph- ets by the command of the eternal God, in order to lead all nations to the obedience that comes d to the only wise God be glory for- from faith ever through Jesus Christ! Amen. — 27 c a 20 Amen. c 26 Lord Jesus the obedience of faith b 23 d 27 24 May the grace of our Lord Jesus Christ be with you all. NA, NE, and WH Literally after" + } + ] + } + ] + }, + { + "name": "Revelation", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) his end with no one to help him. 12 “At that time Michael, the great prince who stands watch over your people, will rise up. There will be a time of distress, the likes of which will not have occurred from the begin- ning of nations until that time. But at that time your people—everyone whose name is found for a reward written in the book—will be delivered. Hebrew refer to the giving over of things or will thrust at him c 40 cherem Or or That is, people from the upper Nile region Or Forms of the Hebrew persons, either by destroying them or by giving them as an offering. 2 b a 3 And many who sleep in the dust of the earth will awake, some to everlasting life, but others to shame and everlasting contempt. Then the wise will shine like the brightness of the heav- and those who lead many to righteousness ens, 4 will shine like the stars forever and ever. c But you, Daniel, shut up these words and seal the book until the time of the end. Many will 5 roam to and fro, and knowledge will increase.” 6 Then I, Daniel, looked and saw two others standing there, one on this bank of the river and one on the opposite bank. One of them said to the man dressed in linen, who was above the wa- ters of the river, “How long until the fulfillment 7 of these wonders?” And the man dressed in linen, who was above the waters of the river, raised his right hand and his left hand toward heaven, and I heard him swear by Him who lives forever, saying, “It will" + }, + { + "verseNum": 13, + "text": ", and" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–7) There were about twelve men in all. 8 9 Then Paul went into the synagogue and spoke boldly there for three months, arguing persua- sively about the kingdom of God. But when some of them stubbornly refused to believe and publicly maligned the Way, Paul took his disci- ples and left the synagogue to conduct daily dis- cussions in the lecture hall of Tyrannus. This continued for two years, so that everyone who lived in the province of Asia, Jews and Greeks 11 alike, heard the word of the Lord. 10 b c 12 God did extraordinary miracles through the hands of Paul, and aprons that had touched him were taken to the Seven Sons of Sceva sick, and the diseases and evil spirits left them. 13 so that even handkerchiefs" + }, + { + "verseNum": 4, + "text": "4 16 5 But I have this against you: You have aban- Therefore, keep in doned your first love. mind how far you have fallen. Repent and perform the deeds you did at first. But if you do not repent, I will come to you and remove 6 your lampstand from its place. But you have this to your credit: You hate the works of the Nicolaitans, which I also 7 hate. He who has an ear, let him hear what the Spirit says to the churches. To the one who overcomes, I will grant the right to eat from the tree of life in the Paradise of God. To the Church in Smyrna 8 To the angel of the church in Smyrna write: These are the words of the First and the Last, 9 who died and returned to life. I know your affliction and your poverty— though you are rich! And I am aware of the slander of those who falsely claim to be Jews, 10 but are in fact a synagogue of Satan. Do not fear what you are about to suffer. Behold, the devil is about to throw some of you into prison to test you, and you will suf- fer tribulation for ten days. Be faithful even unto death, and I will give you the crown of 11 life. He who has an ear, let him hear what the Spirit says to the churches. The one who overcomes will not be harmed by the second death. To the Church in Pergamum 12 To the angel of the church in Pergamum write: These are the words of the One who holds 13 the sharp, double-edged sword. I know where you live, where the throne of Satan sits, yet you hold fast to My name. You did not deny your faith in Me, even in the days" + }, + { + "verseNum": 18, + "text": "–29) 11 12 We sailed from Troas straight to Samothrace, From and the following day on to Neapolis. 34 Silas, however, decided to b 33 33 Judas and Silas, who themselves were proph- ets, said much to encourage and strengthen the After spending some time there, they brothers. 35 were sent off by the brothers in peace to return But Paul and Bar- to those who had sent them. nabas remained at Antioch, along with many oth- ers, teaching and preaching the word of the Lord. a 24 in Asia remain there. b by saying that you must be circumcised and keep the law. c 6 BYZ and TR TR includes Literally ; Asia was a Roman province in what is now western Turkey. 994 |" + }, + { + "verseNum": 27, + "text": "; see also" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 7, + "text": ". DSS and LXX; MT Or that the strongholds of Canaan be Wail, O fleet of trading ships c 1 whom the seafarers have enriched destroyed. f 10 ; also in verse 14 DSS and some LXX 636 |" + }, + { + "verseNum": 14, + "text": "–22) 2 For I want you to know how much I am struggling for you and for those at Laodicea, 2 and for all who have not met me face to face, that they may be encouraged in heart, knit to- gether in love, and filled with the full riches of complete understanding, so that they may know the mystery of God, namely Christ, in whom are hidden all the treasures of wisdom and 4 knowledge. 3 a 5 I say this so that no one will deceive you by smooth rhetoric. For although I am absent from you in body, I am present with you in spirit, and I delight to see your orderly condition and firm Alive with Christ" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 4, + "text": "| 1105 the city of My God (the new Jerusalem that comes down out of heaven from My God), 13 and My new name. He who has an ear, let him hear what the To the Church in Laodicea" + }, + { + "verseNum": 5, + "text": "Worship of the Creator 5 a 6 of God. From the throne came flashes of lightning, rum- blings, and peals of thunder. Before the throne burned seven torches of fire. These are the seven spirits And before the throne was something like a sea of glass, as clear as crystal. In the center, around the throne, were four living 7 creatures, covered with eyes in front and back. The first living creature was like a lion, the sec- ond like a calf, the third had a face like a man, and And each the fourth was like an eagle in flight. of the four living creatures had six wings and was covered with eyes all around and within. Day and night they never stop saying: 8 “Holy, Holy, Holy, 9 is the Lord God Almighty, who was and is and is to come!” 10 And whenever the living creatures give glory, honor, and thanks to the One seated on the throne, who lives forever and ever, the twenty- four elders fall down before the One seated on the throne, and they worship Him who lives for- ever and ever. They cast their crowns before the 11 throne, saying: “Worthy are You, our Lord and God, to receive glory and honor and power, for You created all things; by Your will they exist and were The Lamb Takes the Scroll created.” 5 Then I saw a scroll in the right hand of the One seated on the throne. It had writing on And both sides and was sealed with seven seals. I saw a mighty angel proclaiming in a loud voice, “Who is worthy to break the seals and open the 3 scroll?” 2 4 But no one in heaven or on earth or unde" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "| 1107 3 And when the Lamb opened the second seal, I 4 heard the second living creature say, “Come!” Then another horse went forth. It was bright red, and its rider was granted permission to take away peace from the earth and to make men slay The Third Seal: Famine one another. And he was given a great sword. 5 And when the Lamb opened the third seal, I heard the third living creature say, “Come!” 6 a Then I looked and saw a black horse, and its rider held in his hand a pair of scales. And I heard what sounded like a voice from among the four living creatures, saying, “A quart of wheat for a and three quarts of barley for a denar- denarius, The Fourth Seal: Death ius, and do not harm the oil and wine.” 7 And when the Lamb opened the fourth seal, I heard the voice of the fourth living creature say, 8 “Come!” Then I looked and saw a pale green horse. Its rider’s name was Death, and Hades followed close behind. And they were given authority over a fourth of the earth, to kill by sword, by famine, The Fifth Seal: The Martyrs by plague, and by the beasts of the earth. 9 10 And when the Lamb opened the fifth seal, I saw under the altar the souls of those who had been slain for the word of God and for the testimony And they cried out in a loud they had upheld. voice, “How long, O Lord, holy and true, until You judge those who dwell upon the earth and 11 avenge our blood?” Then each of them was given a white robe and told to rest a little while longer until the full num- ber of their" + }, + { + "verseNum": 12, + "text": "12 7 And they fell facedown before the throne and saying, “Amen! Blessing worshiped God, and glory and wisdom and thanks and honor and power and strength be to our God forever 13 and ever! Amen.” Then the first angel sounded his trumpet, and hail and fire mixed with blood were hurled down upon the earth. A third of the earth was burned up, along with a third of the trees and all the 8 green grass. Then one of the elders addressed me: “These in white robes,” he asked, “who are they, and 14 where have they come from?” “Sir,” I answered, “you know.” So he replied, “These are the ones who have come out of the great tribulation; they have washed their robes and made them white in the blood of the Lamb. For this reason, 15 they are before the throne of God and serve Him day and night in His temple; 16 and the One seated on the throne will spread His tabernacle over them. ‘Never again will they hunger, and never will they thirst; a 17 nor will the sun beat down upon them, nor any scorching heat.’ b For the Lamb in the center of the throne will be their shepherd. c ‘He will lead them to springs of living water,’ d and ‘God will wipe away every tear The Seventh Seal from their eyes.’ ” 8 2 When the Lamb opened the seventh seal, there was silence in heaven for about half an And I saw the seven angels who stand be- hour. 3 fore God, and they were given seven trumpets. Then another angel, who had a golden censer, came and stood at the altar. He was given much incense to offer, along with" + }, + { + "verseNum": 16, + "text": "DSS; MT Or Hebrew In the time of favor I heard You, and in the day of salvation I helped You; and the plunder of the tyrant will be retrieved; from the sea in their bosom e 12 h 24 the land of Sinim cited in 2 Cor. 6:2 of the righteous That is, a region in southern Egypt (from DSS); MT DSS, Syriac, and Vulgate (see also verse 25); MT 662 |" + }, + { + "verseNum": 17, + "text": ". Or This psalm is an acrostic poem, each verse beginning with the successive letters of the Hebrew alphabet. LXX, Syriac, and two Hebrew manuscripts; MT Literally or Or Cited in 1 Cor. 10:26 508 |" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–11) woe. 3" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 4, + "text": ". their eye appearance 4.6 meters wide). Or them Or g 6 h 6 their The flying scroll was approximately 30 feet long and 15 feet wide (9.1 meters long and the one with the white horses after k 6 One Hebrew manuscript, LXX, and Syriac; most Hebrew manuscripts winds i 11 j 5 Hebrew Hebrew or (literally) That is, Babylonia Or Or 852 |" + }, + { + "verseNum": 5, + "text": "| 1109 3 Then he cried out in a loud voice on the land. like the roar of a lion. And when he cried out, the 4 seven thunders sounded their voices. When the seven thunders had spoken, I was about to put it in writing. But I heard a voice from heaven saying, “Seal up what the seven thunders 5 have said, and do not write it down.” Then the angel I had seen standing on the sea 6 and on the land lifted up his right hand to heaven. And he swore by Him who lives forever and ever, who created heaven and everything in it, the earth and everything in it, and the sea and 7 everything in it: “There will be no more delay! But in the days of the voice of the seventh angel, when he begins to sound his trumpet, the mys- tery of God will be fulfilled, just as He proclaimed 8 to His servants the prophets.” Then the voice that I had heard from heaven spoke to me again, saying, “Go, take the small scroll that lies open in the hand of the angel 9 standing on the sea and on the land.” And I went to the angel and said, “Give me the small scroll.” “Take it and eat it,” he said. “It will make your stomach bitter, but in your mouth it will be as 10 sweet as honey.” c So I took the small scroll from the angel’s hand and ate it, and it was as sweet as honey in my mouth. But when I had eaten it, my stomach 11 turned bitter. And they told me, “You must prophesy again about many peoples and nations and tongues The Two Witnesses and kings.” 11 2 Then I was given a measuring rod like a staff and was told, “G" + }, + { + "verseNum": 6, + "text": "6 enemies. In this way, anyone who wants to harm These witnesses have them must be killed. power to shut the sky so that no rain will fall dur- ing the days of their prophecy, and power to turn the waters into blood and to strike the earth with The Witnesses Killed and Raised every kind of plague as often as they wish. 7 8 When the two witnesses have finished their tes- timony, the beast that comes up from the Abyss will wage war with them, and will overpower Their bodies will lie in the street and kill them. of the great city—figuratively called Sodom and 9 Egypt—where their Lord was also crucified. For three and a half days all peoples and tribes and tongues and nations will view their bodies 10 and will not permit them to be laid in a tomb. And those who dwell on the earth will gloat over them and celebrate and send one another gifts, because these two prophets had tormented 11 them. 12 But after the three and a half days, the breath of life from God entered the two witnesses, and they stood on their feet, and great fear fell upon And the witnesses heard those who saw them. a loud voice from heaven saying, “Come up here.” And they went up to heaven in a cloud as their 13 enemies watched them. And in that hour there was a great earthquake, and a tenth of the city collapsed. Seven thousand were killed in the quake, and the rest were terri- 14 fied and gave glory to the God of heaven. The second woe has passed. Behold, the third The Seventh Trumpet woe is coming shortly. 15 T" + }, + { + "verseNum": 18, + "text": "." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 5, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–10) 7 In the first year of the reign of Belshazzar over Babylon, Daniel had a dream, and vi- sions passed through his mind as he lay on his bed. He wrote down the dream, and this is the 2 summary of his account. Daniel declared: “In my vision in the night I looked, and suddenly the four winds of heaven were churning up the great sea. Then four great beasts came up out of the sea, each one dif- ferent from the others: 4 3 a The first beast was like a lion, and it had the wings of an eagle. I watched until its wings were torn off and it was lifted up from the ground and made to stand on two feet like a 5 man and given the mind of a man. Suddenly another beast appeared, which looked like a bear. It was raised up on one of its sides, and it had three ribs in its mouth between its teeth. So it was told, ‘Get up and 6 gorge yourself on flesh!’ Next, as I watched, suddenly another beast appeared. It was like a leopard, and on its back it had four wings like those of a bird. The beast also had four heads, and it was 7 given authority to rule. After this, as I watched in my vision in the night, suddenly a fourth beast appeared, and it was terrifying—dreadful and extremely strong—with large iron teeth. It devoured and crushed; then it trampled underfoot whatever was left. It was different from all 8 the beasts before it, and it had ten horns. While I was contemplating the horns, sud- denly another horn, a little one, came up among them, and three of the first horns were uprooted befor" + }, + { + "verseNum": 10, + "text": ". Some Hebrew manuscripts, LXX, and Syriac (see also" + }, + { + "verseNum": 17, + "text": "| 1111 5 6 The beast was given a mouth to speak arrogant and blasphemous words, and authority to act for 42 months. And the beast opened its mouth to speak blasphemies against God and to slander His name and His tabernacle—those who dwell 7 in heaven. Then the beast was permitted to wage war against the saints and to conquer them, and it 8 was given authority over every tribe and people And all who dwell on the and tongue and nation. earth will worship the beast—all whose names have not been written from the foundation of the world in the Book of Life belonging to the Lamb 9 who was slain. 10 b He who has an ear, let him hear: “If anyone is destined for captivity, c d into captivity he will go; if anyone is to die by the sword, by the sword he must be killed.” Here is a call for the perseverance and faith of the The Beast from the Earth saints. 11 12 Then I saw another beast rising out of the earth. This beast had two horns like a lamb, but And this beast exercised spoke like a dragon. all the authority of the first beast and caused the earth and those who dwell in it to worship the first beast, whose mortal wound had been 13 healed. 14 And the second beast performed great signs, even causing fire from heaven to come down to earth in the presence of the people. Because of the signs it was given to perform on behalf of the first beast, it deceived those who dwell on the earth, telling them to make an image to the beast that had been wounded by the sword and yet had The second" + }, + { + "verseNum": 18, + "text": "18 13 Here is a call for wisdom: Let the one who has insight calculate the number of the beast, for it is The Lamb and the 144,000 the number of a man, and that number is 666. a And I heard a voice from heaven telling me to write, “Blessed are the dead—those who die in the Lord from this moment on.” 14 Then I looked and saw the Lamb stand- ing on Mount Zion, and with Him 144,000 who had His name and His Father’s And I heard a name written on their foreheads. sound from heaven like the roar of many waters and the loud rumbling of thunder. And the sound 3 I heard was like harpists strumming their harps. 2 And they sang a new song before the throne and before the four living creatures and the elders. And no one could learn the song except the 4 144,000 who had been redeemed from the earth. These are the ones who have not been defiled with women, for they are virgins. They follow the Lamb wherever He goes. They have been re- deemed from among men as firstfruits to God and to the Lamb. And no lie was found in their The Three Angels and Babylon’s Fall mouths; they are blameless. 6 5 b 7 Then I saw another angel flying overhead, with the eternal gospel to proclaim to those who dwell on the earth—to every nation and tribe and tongue and people. And he said in a loud voice, “Fear God and give Him glory, because the hour of His judgment has come. Worship the One who made the heavens and the earth and the sea and 8 the springs of waters.” c Then a second angel followed, saying, “Fallen," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 8, + "text": "and" + }, + { + "verseNum": 14, + "text": ". 802 |" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–4) ning to end: 32 2 Give ear, O heavens, and I will speak; hear, O earth, the words of my mouth. Let my teaching fall like rain and my speech settle like dew, like gentle rain on new grass, 3 like showers on tender plants. For I will proclaim the name of the LORD. 4 Ascribe greatness to our God! He is the Rock, His work is perfect; all His ways are just. A God of faithfulness without injustice, a 5 sons of Israel e 15 Jeshurun righteous and upright is He. c 10 Cited in" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 2, + "text": "| 1113 by intense heat, and they cursed the name of God, who had authority over these plagues. Yet they 10 did not repent and give Him glory. 11 And the fifth angel poured out his bowl on the throne of the beast, and its kingdom was plunged into darkness, and men began to gnaw their and curse the God of heaven tongues in anguish for their pains and sores. Yet they did not repent 12 of their deeds. And the sixth angel poured out his bowl on the great river Euphrates, and its water was dried up 13 to prepare the way for the kings of the East. 14 And I saw three unclean spirits that looked like frogs coming out of the mouths of the dragon, the These are de- beast, and the false prophet. monic spirits that perform signs and go out to all the kings of the earth, to assemble them for battle 15 on the great day of God the Almighty. “Behold, I am coming like a thief. Blessed is the one who remains awake and clothed, so that he 16 will not go naked and let his shame be exposed.” And they assembled the kings in the place that The Seventh Bowl of Wrath in Hebrew is called Armageddon. 17 Then the seventh angel poured out his bowl into the air, and a loud voice came from the 18 throne in the temple, saying, “It is done!” And there were flashes of lightning, rumblings, peals of thunder, and a great earthquake the likes of which had not occurred since men were upon The the earth—so mighty was the great quake. great city was split into three parts, and the cities of the nations collapsed. An" + }, + { + "verseNum": 3, + "text": "3 15 4 And the angel carried me away in the Spirit into a wilderness, where I saw a woman sitting on a scarlet beast that was covered with blasphemous The names and had seven heads and ten horns. woman was dressed in purple and scarlet, and adorned with gold and precious stones and pearls. She held in her hand a golden cup full of abominations and the impurities of her sexual And on her forehead a mysterious immorality. name was written: 5 BABYLON THE GREAT, THE MOTHER OF PROSTITUTES The Mystery Explained AND OF THE ABOMINATIONS OF THE EARTH. 6 I could see that the woman was drunk with the blood of the saints and witnesses for Jesus. And I 7 was utterly amazed at the sight of her. “Why are you so amazed?” said the angel. “I will tell you the mystery of the woman and of the beast that carries her, which has the seven heads 8 and ten horns. The beast that you saw—it was, and now is no more, but is about to come up out of the Abyss and go to its destruction. And those who dwell on the earth whose names were not written in the Book of Life from the foundation of the world will marvel when they see the beast that was, and is 9 not, and yet will be. 10 This calls for a mind with wisdom. The seven heads are seven mountains on which the woman sits. There are also seven kings. Five have fallen, one is, and the other has not yet come. But when he does come, he must remain for only a 11 little while. 12 The beast that was, and now is not, is an eighth king, who belongs to the other seve" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–8) escape?’ ” 21 This is the burden against the Desert by the Sea: Like whirlwinds sweeping through the Negev, 2 an invader comes from the desert, from a land of terror. A dire vision is declared to me: “The traitor still betrays, and the destroyer still destroys. Go up, O Elam! Lay siege, O Media! 3 I will put an end to all her groaning.” Therefore my body is filled with anguish. Pain grips me, like the pains of a woman in City of labor. That is, the upper Nile region; similarly in verses 4 and 5 Some MT manuscripts, DSS, and Vulgate; most MT manuscripts 634 |" + }, + { + "verseNum": 2, + "text": ". is a wordplay on , meaning . is another name for Edom. 12 The Burden against Tyre" + }, + { + "verseNum": 4, + "text": ". 736 |" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 3, + "text": "| 1115 9 Then the kings of the earth who committed sex- ual immorality and lived in luxury with her will weep and wail at the sight of the smoke rising In fear of her from the fire that consumes her. torment, they will stand at a distance and cry out: 10 a “Woe, woe to the great city, the mighty city of Babylon! For in a single hour 11 your judgment has come.” 12 13 And the merchants of the earth will weep and mourn over her, because there is no one left to cargo of gold, silver, pre- buy their cargo— cious stones, and pearls; of fine linen, purple, silk, and scarlet; of all kinds of citron wood and every article of ivory, precious wood, bronze, iron, and of cinnamon, spice, incense, myrrh, marble; and frankincense; of wine, olive oil, fine flour, and wheat; of cattle, sheep, horses, and carriages; And they will of bodies and souls of slaves. say: 14 b “The fruit of your soul’s desire has departed from you; all your luxury and splendor have vanished, 15 never to be seen again.” The merchants who sold these things and gained their wealth from her will stand at a dis- tance, in fear of her torment. They will weep and mourn, saying: 16 “Woe, woe to the great city, clothed in fine linen and purple and scarlet, 17 adorned with gold and precious stones and pearls! For in a single hour such fabulous wealth has been destroyed!” Rejoice over her, O heaven, and you saints and apostles and prophets, because God has pronounced for you The Doom of Babylon His judgment against her. 21 Then" + }, + { + "verseNum": 4, + "text": "4 c And the twenty-four elders and the four living creatures fell down and worshiped God who sits on the throne, saying: 5 “Amen, Hallelujah!” Then a voice came from the throne, saying: 16 will rule them with an iron scepter. He treads the winepress of the fury of the wrath of God the And He has a name written on His Almighty. robe and on His thigh: Defeat of the Beast and False Prophet KING OF KINGS AND LORD OF LORDS. “Praise our God, all you who serve Him, and those who fear Him, The Marriage of the Lamb small and great alike!” 6 And I heard a sound like the roar of a great mul- titude, like the rushing of many waters, and like a mighty rumbling of thunder, crying out: “Hallelujah! 7 For the Lord our God a the Almighty reigns. Let us rejoice and be glad and give Him the glory. For the marriage of the Lamb has come, 8 and His bride has made herself ready. She was given clothing of fine linen, bright and pure.” For the fine linen she wears is the righteous acts 9 of the saints. Then the angel told me to write, “Blessed are those who are invited to the marriage supper of the Lamb.” And he said to me, “These are the true 10 words of God.” So I fell at his feet to worship him. But he told me, “Do not do that! I am a fellow servant with you and your brothers who rely on the testimony of Jesus. Worship God! For the testimony of Jesus The Rider on the White Horse is the spirit of prophecy.” 11 Then I saw heaven standing open, and there before me was a white horse. And its rider is" + }, + { + "verseNum": 15, + "text": ". term; here and throughout the Psalms. LXX You will rule them You will shepherd them e 9 Cited in" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–8) and hidden from My sight. 17 For behold, I will create new heavens and a new earth. a 18 The former things will not be remembered, nor will they come to mind. But be glad and rejoice forever in what I create; 19 for I will create Jerusalem to be a joy and its people to be a delight. I will rejoice in Jerusalem and take delight in My people. The sounds of weeping and crying will no longer be heard in her. 20 No longer will a nursing infant live but a few days, or an old man fail to live out his years. For the youth will die at a hundred years, and he who fails to reach a hundred will be considered accursed. 21 They will build houses and dwell in them; they will plant vineyards and eat their 22 fruit. No longer will they build houses for others to inhabit, nor plant for others to eat. For as is the lifetime of a tree, so will be the days of My people, and My chosen ones will fully enjoy 23 the work of their hands. They will not labor in vain or bear children doomed to disaster; for they will be a people blessed by the 24 LORD— they and their descendants with them. Even before they call, I will answer, 25 and while they are still speaking, I will hear. a 17 The wolf and the lamb will feed together, and the lion will eat straw like the ox, a new heaven and a new earth c 2 snake They will neither harm nor destroy on all My holy mountain,” says the LORD. Heaven Is My Throne 66 This is what the LORD says: “Heaven is My throne, and earth is My footstool. What kind of house will y" + }, + { + "verseNum": 4, + "text": "638 |" + }, + { + "verseNum": 16, + "text": "| 1117 Blessed and holy are the first resurrection. those who share in the first resurrection! The second death has no power over them, but they will be priests of God and of Christ and will reign Satan Cast into the Lake of Fire with Him for a thousand years. 7 8 When the thousand years are complete, Satan and will go out will be released from his prison, to deceive the nations in the four corners of the earth—Gog and Magog—to assemble them for battle. Their number is like the sand of the sea- 9 shore. a 10 and consumed them. And they marched across the broad expanse of the earth and surrounded the camp of the saints and the beloved city. But fire came down from And the devil heaven who had deceived them was thrown into the lake of fire and sulfur, into which the beast and the false prophet had already been thrown. There they will be tormented day and night forever and Judgment before the Great White Throne ever. 11 Then I saw a great white throne and the One seated on it. Earth and heaven fled from His pres- And I ence, and no place was found for them. saw the dead, great and small, standing before the throne. 12 And books were opened, and one of them was the Book of Life. And the dead were judged according The to their deeds, as recorded in the books. sea gave up its dead, and Death and Hades gave up their dead, and each one was judged accord- 14 ing to his deeds. 13 15 Then Death and Hades were thrown into the lake of fire. This is the second death—the lake of And if anyo" + }, + { + "verseNum": 17, + "text": "a 17 width the same as its length. And he measured the city with the rod, and all its dimensions were equal—12,000 stadia in length and width and b height. And he measured its wall to be 144 cu- 18 by the human measure the angel was using. bits, 19 The wall was made of jasper, and the city The foun- itself of pure gold, as pure as glass. dations of the city walls were adorned with every kind of precious stone: The first foundation was jasper, the second sapphire, the third chalcedony, 20 the fourth emerald, the fifth sardonyx, the sixth carnelian, the seventh chrysolite, the eighth beryl, the ninth topaz, the tenth chrysoprase, the eleventh jacinth, 21 and the twelfth amethyst. And the twelve gates were twelve pearls, with each gate consisting of a single pearl. The main 22 street of the city was pure gold, as clear as glass. 24 But I saw no temple in the city, because the 23 Lord God Almighty and the Lamb are its temple. And the city has no need of sun or moon to shine on it, because the glory of God illuminates By its light the city, and the Lamb is its lamp. 25 the nations will walk, and into it the kings of the Its gates will earth will bring their glory. never be shut at the end of the day, because there 26 will be no night there. 27 c And into the city will be brought the glory and But nothing unclean will honor of the nations. ever enter it, nor anyone who practices an abom- ination or a lie, but only those whose names are The River of Life written in the Lamb’s Book o" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 21, + "text": "| 1119 the words of this book of prophecy, God will take away his share in the tree of life and the holy city, 20 which are described in this book. He who testifies to these things says, “Yes, I am 21 coming soon.” Amen. Come, Lord Jesus! a b The grace of the Lord Jesus c saints. be with all the Amen. a 21 c 21 the Lord Jesus Christ our Lord Jesus Christ b 21 the saints Amen. WH and BYZ SBL, WH, NE, and NA do not include ; TR SBL, WH, NE, and TR do not include . Lengths Table of Weights and Measures Finger Handbreadth (4 fingers) Span Cubit Long Cubit Rod (6 long cubits) Fathom Weights Stadion 0.73 inches 2.92 inches 9 inches 18 inches 21 inches 10.5 feet 6 feet 607 feet 1.85 centimeters 7.42 centimeters 22.86 centimeters 45.72 centimeters 53.34 centimeters 3.20 meters 1.83 meters 185 meters Gerah (1/20 shekel) Beka (1/2 shekel) Pim (2/3 shekel) Shekel (20 gerahs) Mina (50 shekels) Talent (60 minas) Liquid Measures Litra (Roman Pound) 0.0201 ounces 0.201 ounces 0.268 ounces 0.402 ounces 1.256 pounds 75.4 pounds 12 ounces 0.57 grams 5.70 grams 7.60 grams 11.4 grams 0.57 kilograms 34.2 kilograms 340 grams Log Hin (12 logs) Bath (6 hins) Homer (10 baths) Cor (10 baths) Bath (NT) Dry Measures Metretes (NT) Cab (1/18 ephah) Omer (1/10 ephah) Seah (1/3 ephah) Ephah (10 omers) Lethech (5 ephahs) Homer (10 ephahs) Cor (10 ephahs) Cor (NT) 0.33 quarts 0.98 gallons 5.8 gallons 58 gallons 58 gallons 8.7 gallons 10.4 gallons 1.1 dry quarts 2.0 dry quarts 6.7 dry quarts 0.624 bushels 3.12" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_MD/old_testament.json b/data/en_bible/BSB_MD/old_testament.json new file mode 100644 index 0000000..54fbf58 --- /dev/null +++ b/data/en_bible/BSB_MD/old_testament.json @@ -0,0 +1,8615 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–2 ;" + }, + { + "verseNum": 3, + "text": "Or SBL, NE, and WH Or" + }, + { + "verseNum": 6, + "text": "–8. Proverbs The Beginning of Knowledge (Prov. 9:1–12) 18 1 These are the proverbs of Solomon son of 2 David, king of Israel, for gaining wisdom and discipline, 3 for comprehending words of insight, and for receiving instruction in wise living a 4 and in righteousness, justice, and equity. To impart prudence to the simple 5 and knowledge and discretion to the young, let the wise listen and gain instruction, 6 and the discerning acquire wise counsel by understanding the proverbs and parables, the sayings and riddles of the wise. 7 The fear of the LORD is the beginning of b knowledge, The Enticement of Sin but fools despise wisdom and discipline. 8 Listen, my son, to your father’s instruction, and do not forsake the teaching of your 9 mother. For they are a garland of grace on your head 10 and a pendant around your neck. 11 My son, if sinners entice you, do not yield to them. If they say, “Come along, let us lie in wait for 12 blood, let us ambush the innocent without cause, let us swallow them alive like Sheol, 13 and whole like those descending into the Pit. 14 We will find all manner of precious goods; we will fill our houses with plunder. Throw in your lot with us; 15 let us all share one purse”— my son, do not walk the road with them 16 or set foot upon their path. 17 For their feet run to evil, and they are swift to shed blood. How futile it is to spread the net simple where any bird can see it! fool a 4 b 7 19 But they lie in wait for their own blood; they ambush their o" + }, + { + "verseNum": 26, + "text": "26 7 Then God said, “Let Us make man in Our image, after Our likeness, to rule over the fish of the sea and the birds of the air, over the and livestock, and over all the earth itself every creature that crawls upon it.” a 27 So God created man in His own image; in the image of God He created him; male and female He created them. b 28 God blessed them and said to them, “Be fruitful and multiply, and fill the earth and subdue it; rule over the fish of the sea and the birds of the air and every creature that 29 crawls upon the earth.” 30 Then God said, “Behold, I have given you every seed-bearing plant on the face of all the earth, and every tree whose fruit contains And to seed. They will be yours for food. every beast of the earth and every bird of the air and every creature that crawls upon the earth—everything that has the breath of life in it—I have given every green plant for 31 food.” And it was so. And God looked upon all that He had made, and indeed, it was very good. And there was evening, and there was morn- The Seventh Day (Ex. 16:22–30 ; Heb. 4:1–11) ing—the sixth day. 2 2 Thus the heavens and the earth were com- And by the pleted in all their vast array. seventh day God had finished the work He had c been doing; so on that day He rested from all His 3 work. Then God blessed the seventh day and sancti- fied it, because on that day He rested from all the Man and Woman in the Garden work of creation that He had accomplished. 4 d This is the account of the heavens and" + }, + { + "verseNum": 27, + "text": ";" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 2, + "text": "" + }, + { + "verseNum": 7, + "text": "Or" + }, + { + "verseNum": 24, + "text": "(see also LXX) ; see" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–7) 12 13 Therefore, just as sin entered the world through one man, and death through sin, so also death was passed on to all men, because all For sin was in the world before the law sinned. was given; but sin is not taken into account when there is no law. Nevertheless, death reigned from Adam until Moses, even over those who did not sin in the way that Adam transgressed. He is a pattern of the One to come. 14 e 1 let us have f 2 exult How then was it reckoned—being in circumcision, or in uncircumcision? Not in circumcision, but in uncircumci-" + }, + { + "verseNum": 19, + "text": "| 7 22 man’s ribs and closed up the area with flesh. And from the rib that the LORD God had taken 23 from the man, He made a woman and brought her to him. And the man said: “This is now bone of my bones and flesh of my flesh; she shall be called ‘woman,’ 24 for out of man she was taken.” For this reason a man will leave his father and mother and be united to his wife, and they will 25 become one flesh. b And the man and his wife were both naked, The Serpent’s Deception" + }, + { + "verseNum": 20, + "text": "until you return to the ground— because out of it were you taken. “I do not know!” he answered. “Am I my brother’s 10 keeper?” 20 For dust you are, a and to dust you shall return.” And Adam named his wife Eve, The Expulsion from Paradise would be the mother of all the living. 21 because she And the LORD God made garments of skin for 22 Adam and his wife, and He clothed them. Then the LORD God said, “Behold, the man has become like one of Us, knowing good and evil. And now, lest he reach out his hand and take also 23 from the tree of life, and eat, and live forever. . .” 24 Therefore the LORD God banished him from the Garden of Eden to work the ground from So He drove out the which he had been taken. man and stationed cherubim on the east side of the Garden of Eden, along with a whirling sword Cain and Abel" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "LXX See" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–32 ; 10:1–32 ; 11:10–26) 1 2 Adam, Seth, Enosh, 3 4 Kenan, Mahalalel, Jared, a Enoch, Methuselah, Lamech, Noah. The sons of Noah: 5 Shem, Ham, and Japheth. The sons of Japheth: Gomer, Magog, Madai, Javan, Tubal, 6 Meshech, and Tiras. b The sons of Gomer: Ashkenaz, Riphath, 7 and Togarmah. 8 And the sons of Javan: Elishah, Tarshish, the Kittites, and the Rodanites. h i The sons of Aram: 18 Meshech. Uz, Hul, Gether, and Arphaxad was the father of Shelah, and 19 Shelah was the father of Eber. j Two sons were born to Eber: One was because in his days the named Peleg, earth was divided, and his brother was 20 named Joktan. 21 And Joktan was the father of Almodad, k 22 Sheleph, Hazarmaveth, Jerah, 23 Uzal, Diklah, Abimael, Sheba, Ophir, Havilah, and Jobab. All these Obal, Hadoram, 24 were sons of Joktan. 25 26 So from Shem came Arphaxad, Shelah, 27 Eber, Peleg, Reu, and Abram (that is, Abraham). Serug, Nahor, Terah, The Descendants of Abraham (Gen. 25:12–18) l The sons of Ham: 9 Cush, Mizraim, Put, and Canaan. 28 29 c The sons of Cush: Seba, Havilah, Sabta, Raamah, and Sabteca. 10 The sons of Raamah: Sheba and Dedan. d Cush was the father of Nimrod, who 11 began to be a mighty one on the earth. Mizraim was the father of the Ludites, 12 the Anamites, the Lehabites, the Naph- tuhites, (from whom the Philistines came), and 13 the Caphtorites. the Pathrusites, the Casluhites e f g 14 And Canaan was the father of Sidon and of the Hittites, his firstborn, the 15 Jebusites, the Amorites," + }, + { + "verseNum": 2, + "text": "Jesus Blesses the Children" + }, + { + "verseNum": 6, + "text": ". Greek Enōs f 12 h 19" + }, + { + "verseNum": 32, + "text": ". e 12 Many Hebrew manuscripts and Vulgate (see is a variant of of the Sidonians, the Some translators adjust the Hebrew word order to ; see" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 7, + "text": "| 9 21 22 e When Enoch was 65 years old, he became the father of Methuselah. And after he had become the father of Methuselah, Enoch walked with 23 God 300 years and had other sons and daugh- 24 ters. So Enoch lived a total of 365 years. f Enoch walked with God, and then he was no From Methuselah to Noah more, because God had taken him away. 25 26 When Methuselah was 187 years old, he be- came the father of Lamech. And after he had become the father of Lamech, Methuselah lived 27 782 years and had other sons and daughters. So Methuselah lived a total of 969 years, and 28 then he died. 29 g When Lamech was 182 years old, he had a son. saying, “May this And he named him Noah, one comfort us in the labor and toil of our hands 30 caused by the ground that the LORD has cursed.” And after he had become the father of Noah, Lamech lived 595 years and had other sons and daughters. So Lamech lived a total of 777 32 years, and then he died. 31 After Noah was 500 years old, he became the Corruption on the Earth" + }, + { + "verseNum": 8, + "text": "Noah’s Favor with God 8 Noah, however, found favor in the eyes of the 9 LORD. This is the account of Noah. Noah was a 10 righteous man, blameless in his generation; Noah walked with God. And Noah had three 11 sons: Shem, Ham, and Japheth. 12 Now the earth was corrupt in the sight of God, And God looked upon the and full of violence. a earth and saw that it was corrupt; for all living on the earth had corrupted their creatures Preparing the Ark" + }, + { + "verseNum": 15, + "text": "" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–24 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 5, + "text": "| 11 Exiting the Ark 13 In Noah’s six hundred and first year, on the first day of the first month, the waters had dried up from the earth. So Noah removed the covering from the ark and saw that the surface of the By the twenty-seventh day of ground was dry. 15 the second month, the earth was fully dry. 14 16 17 Then God said to Noah, “Come out of the ark, you and your wife, along with your sons and their Bring out all the living creatures that wives. are with you—birds, livestock, and everything that crawls upon the ground—so that they can spread out over the earth and be fruitful and 18 multiply upon it.” 19 So Noah came out, along with his sons Every living and his wife and his sons’ wives. creature, every creeping thing, and every bird— everything that moves upon the earth—came out Noah Builds an Altar of the ark, kind by kind. 20 Then Noah built an altar to the LORD. And tak- ing from every kind of clean animal and clean 21 bird, he offered burnt offerings on the altar. When the LORD smelled the pleasing aroma, He said in His heart, “Never again will I curse the ground because of man, even though every incli- nation of his heart is evil from his youth. And never again will I destroy all living creatures as I 22 have done. As long as the earth endures, seedtime and harvest, cold and heat, summer and winter, day and night The Covenant of the Rainbow shall never cease.” 9 2 3 And God blessed Noah and his sons and said to them, “Be fruitful and multiply and fill the The fear" + }, + { + "verseNum": 6, + "text": "demand an accounting from anyone who takes 6 the life of his fellow man: Whoever sheds the blood of man, by man his blood will be shed; for in His own image 7 God has made mankind. But as for you, be fruitful and multiply; spread out across the earth and multiply upon it.” 8 9 11 10 Then God said to Noah and his sons with him, “Behold, I now establish My covenant with you and with and your descendants after you, every living creature that was with you— the birds, the livestock, and every beast of the earth—every living thing that came out of the And I establish My covenant with you: ark. Never again will all life be cut off by the waters of a flood; never again will there be a flood to 12 destroy the earth.” 13 And God said, “This is the sign of the covenant I am making between Me and you and every living creature with you, a covenant for all gen- I have set My rainbow in the erations to come: clouds, and it will be a sign of the covenant be- 14 tween Me and the earth. 15 Whenever I form clouds over the earth and the I will remem- rainbow appears in the clouds, ber My covenant between Me and you and every living creature of every kind. Never again will the And waters become a flood to destroy all life. whenever the rainbow appears in the clouds, I will see it and remember the everlasting cove- nant between God and every living creature of 17 every kind that is on the earth.” 16 So God said to Noah, “This is the sign of the covenant that I have established between Me and Noah’" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 3, + "text": "); most Hebrew manuscripts and the Caphtorites (from whom the Philistines came) Or foremost and of Heth h 17 g 13 ; see" + }, + { + "verseNum": 7, + "text": ". the Casluhites, f 13 Hebrew division j 19 Peleg most Hebrew manuscripts do not include Shelah k 22 means . . Shem, Arphaxad, Cainan, Shelah LXX and Syriac (see also" + }, + { + "verseNum": 23, + "text": "); Ebal is a variant of Shem, Arphaxad, Or ; see" + }, + { + "verseNum": 24, + "text": "LXX and" + }, + { + "verseNum": 28, + "text": "); Hebrew The sons of Aram ; see also" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 11, + "text": "| 13 territory extended from Mesha to Sephar, in the 31 eastern hill country. These are the sons of Shem, according to their 32 clans, languages, lands, and nations. All these are the clans of Noah’s sons, accord- ing to their generations and nations. From these the nations of the earth spread out after the The Tower of Babel flood." + }, + { + "verseNum": 12, + "text": "12 13 When Arphaxad was 35 years old, he became And after he had become the father of Shelah. a the father of Shelah, Arphaxad lived 403 years 14 and had other sons and daughters. 15 When Shelah was 30 years old, he became And after he had become the the father of Eber. father of Eber, Shelah lived 403 years and had 16 other sons and daughters. 17 When Eber was 34 years old, he became the fa- And after he had become ther of Peleg. the father of Peleg, Eber lived 430 years and had 18 other sons and daughters. 19 When Peleg was 30 years old, he became the And after he had become the fa- father of Reu. ther of Reu, Peleg lived 209 years and had other 20 sons and daughters. 21 When Reu was 32 years old, he became the fa- And after he had become ther of Serug. the father of Serug, Reu lived 207 years and had 22 other sons and daughters. 23 When Serug was 30 years old, he became the And after he had become the father of Nahor. father of Nahor, Serug lived 200 years and had 24 other sons and daughters. 25 When Nahor was 29 years old, he became the And after he had become the father of Terah. father of Terah, Nahor lived 119 years and had 26 other sons and daughters. When Terah was 70 years old, he became the Terah’s Descendants father of Abram, Nahor, and Haran. 27 28 This is the account of Terah. Terah became the father of Abram, Nahor, and Haran. And Haran During his father became the father of Lot. Terah’s lifetime, Haran died in his native land, in 29 Ur of the Chaldeans. 32 Ter" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–9) right. 26 Now there was another famine in the land, subsequent to the one that had oc- curred in Abraham’s time. And Isaac went to 2 Abimelech king of the Philistines at Gerar. 3 4 The LORD appeared to Isaac and said, “Do not go down to Egypt. Settle in the land where I tell you. Stay in this land as a foreigner, and I will be with you and bless you. For I will give all these lands to you and your offspring, and I will con- firm the oath that I swore to your father Abra- ham. I will make your descendants as numerous as the stars in the sky, and I will give them all these lands, and through your offspring all na- tions of the earth will be blessed, because Abra- ham listened to My voice and kept My charge, My Isaac Deceives Abimelech commandments, My statutes, and My laws.” 6 7 5 So Isaac settled in Gerar. But when the men of that place asked about his wife, he said, “She is my sister.” For he was afraid to say, “She is my wife,” since he thought to himself, “The men of this place will kill me on account of Rebekah, be- a 26 Jacob cause she is so beautiful.” d 20 Esek he grasps the heel contention he deceives b 30 Edom means means e 21 Sitnah or enmity . hostility . means or" + }, + { + "verseNum": 3, + "text": "," + }, + { + "verseNum": 6, + "text": "); Hebrew or or 28 burnt offerings on the altar of the LORD your God. The blood of your other sacrifices must be poured out beside the altar of the LORD your Be careful to God, but you may eat the meat. obey all these things I command you, so that it may always go well with you and your children after you, because you will be doing what is good A Warning against Idolatry and right in the eyes of the LORD your God." + }, + { + "verseNum": 7, + "text": ";" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 15, + "text": "b 14 d 8 e 10 Some translators close this quotation after verse 16 or 21. h 13" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 8, + "text": "| 15 11 well watered like the garden of the LORD, like the land of Egypt. (This was before the LORD de- stroyed Sodom and Gomorrah.) So Lot chose the whole plain of the Jordan for himself and set out toward the east. And Abram and Lot parted 12 company. 13 Abram lived in the land of Canaan, but Lot set- tled in the cities of the plain and pitched his tent But the men of Sodom were toward Sodom. God Renews the Promise to Abram wicked, sinning greatly against the LORD. 14 After Lot had departed, the LORD said to Abram, “Now lift up your eyes from the place where you are, and look to the north and south for all the land that you see, and east and west, 16 I will give to you and your offspring forever. 15 a I will make your offspring like the dust of the earth, so that if one could count the dust of the 17 earth, then your offspring could be counted. Get up and walk around the land, through its 18 length and breadth, for I will give it to you.” b So Abram moved his tent and went to live near of Mamre at Hebron, where he built an the Oaks The War of the Kings altar to the LORD. c 14 2 In those days Amraphel king of Shinar, Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of Goiim went to war against Bera king of Sodom, Birsha king of Gomorrah, Shinab king of Admah, Shemeber king 3 of Zeboiim, and the king of Bela (that is, Zoar). d 4 The latter five came as allies to the Valley of Sid- For twelve years dim (that is, the Salt Sea they had been subject to Chedorlaom" + }, + { + "verseNum": 9, + "text": "22 a 9 arrayed themselves for battle in the Valley of Sid- dim against Chedorlaomer king of Elam, Tidal king of Goiim, Amraphel king of Shinar, and Ari- Abram Rescues Lot och king of Ellasar—four kings against five. 10 Now the Valley of Siddim was full of tar pits, and as the kings of Sodom and Gomorrah fled, some men fell into the pits, but the survivors fled 11 to the hill country. 12 The four kings seized all the goods of Sodom and Gomorrah and all their food, and they went They also carried off Abram’s on their way. nephew Lot and his possessions, since Lot was 13 living in Sodom. c b 14 Then an escapee came and reported this to Abram the Hebrew. Now Abram was living near of Mamre the Amorite, a brother of the Oaks Eshcol and Aner, all of whom were bound by And when Abram heard that treaty his relative had been captured, he mobilized the 318 trained men born in his household, and they 15 set out in pursuit as far as Dan. to Abram. 16 During the night, Abram divided his forces and routed Chedorlaomer’s army, pursuing them as He retrieved far as Hobah, north of Damascus. all the goods, as well as his relative Lot and his possessions, together with the women and the Melchizedek Blesses Abram rest of the people." + }, + { + "verseNum": 17, + "text": "–24 ;" + }, + { + "verseNum": 18, + "text": "15 16 4" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "" + }, + { + "verseNum": 8, + "text": "–21) planned to do to them.” 56 2 Then the LORD said to Moses, “Com- mand the Israelites and say to them: When you enter the land of Canaan, it will be al- lotted to you as an inheritance with these bound- 3 aries: 34 d 4 Your southern border will extend from the Wilderness of Zin along the border of Edom. On the east, your southern border will run e from the end of the Salt Sea, cross south of the Ascent of Akrabbim, continue to Zin, and go south of Kadesh-barnea. Then it will 5 go on to Hazar-addar and proceed to Azmon, where it will turn from Azmon, join the f 6 Brook of Egypt, and end at the Sea. Your western border will be the coastline of the Great Sea; this will be your boundary on 7 the west. 8 9 Your northern border will run from the and from Great Sea directly to Mount Hor, Mount Hor to Lebo-hamath, then extend to continue to Ziphron, and end at Zedad, Hazar-enan. This will be your boundary on 10 the north. 11 And your eastern border will run straight then go from Hazar-enan to Shepham, down from Shepham to Riblah on the east side of Ain and continue along the slopes east of the Sea of Chinnereth. Then the border will go down along the Jordan and end at the the mountains beyond the river Salt Sea. 12 g d 3 On the plains of Moab by the Jordan across from Jericho, the LORD said to Moses, “Speak 52 to the Israelites and tell them: When you cross the Jordan into the land of Canaan, you must a 45 Iyim drive out before you all the inhabitants of the c 49 the Ascent of Sco" + }, + { + "verseNum": 13, + "text": "–14;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 15, + "text": "and" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 5, + "text": "| 17 8 Now the angel of the LORD found Hagar by a spring of water in the desert—the spring along “Hagar, servant of Sarai,” he the road to Shur. said, “where have you come from, and where are you going?” “I am running away from my mistress Sarai,” she 9 replied. So the angel of the LORD told her, “Return to 10 your mistress and submit to her authority.” Then the angel added, “I will greatly multiply your offspring so that they will be too numerous 11 to count.” The angel of the LORD proceeded: “Behold, you have conceived and will bear a d son. And you shall name him Ishmael, for the LORD has heard your cry of 12 affliction. He will be a wild donkey of a man, and his hand will be against everyone, and everyone’s hand against him; 13 he will live in hostility toward all his brothers.” e 14 So Hagar gave this name to the LORD who had spoken to her: “You are the God who sees me, ” for she said, “Here I have seen the One f Therefore the well was called who sees me!” It is located between Kadesh and Beer-lahai-roi. 15 Bered. And Hagar bore Abram a son, and Abram gave 16 the name Ishmael to the son she had borne. Abram was eighty-six years old when Hagar Abraham to Father Many Nations bore Ishmael to him. 17 g 2 When Abram was ninety-nine years old, the LORD appeared to him and said, “I Walk before Me and be am God Almighty. I will establish My covenant between blameless. 3 Me and you, and I will multiply you exceedingly.” 4 i 5 Then Abram fell facedown, and God said to him, “As for" + }, + { + "verseNum": 6, + "text": "6 I will make you exceedingly fruitful; I will make 7 nations of you, and kings will descend from you. I will establish My covenant as an everlasting covenant between Me and you and your de- scendants after you, to be your God and the God 8 of your descendants after you. And to you and your descendants I will give the land where you are residing—all the land of Canaan—as an eternal possession; and I will be The Covenant of Circumcision their God.” 9 10 God also said to Abraham, “You must keep My covenant—you and your descendants in the gen- erations after you. This is My covenant with you and your descendants after you, which you are to keep: Every male among you must be You are to circumcise the flesh of circumcised. your foreskin, and this will be a sign of the cove- 12 nant between Me and you. 11 13 Generation after generation, every male must be circumcised when he is eight days old, includ- ing those born in your household and those purchased from a foreigner—even those who are Whether they are born in not your offspring. your household or purchased, they must be cir- cumcised. My covenant in your flesh will be an 14 everlasting covenant. But if any male is not circumcised, he will be cut off from his people; he has broken My 15 covenant.” a 16 Then God said to Abraham, “As for Sarai your wife, do not call her Sarai, for her name is to be And I will bless her and will surely give Sarah. you a son by her. I will bless her, and she will be the mother of nations; kings of p" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 6, + "text": "" + }, + { + "verseNum": 14, + "text": "" + }, + { + "verseNum": 18, + "text": ", and" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–11) 19 Now in those days, when there was no king in Israel, a Levite who lived in the remote hill country of Ephraim took for himself But she a concubine from Bethlehem in Judah. was unfaithful to him and left him to return to her father’s house in Bethlehem in Judah. 2 3 b her hus- After she had been there four months, band got up and went after her to speak kindly to her and bring her back, taking his servant and a pair of donkeys. So the girl brought him into her 4 father’s house, and when her father saw him, he His father-in-law, the gladly welcomed him. girl’s father, persuaded him to stay, so he re- mained with him three days, eating, drinking, 5 and lodging there. 6 On the fourth day, they got up early in the morn- ing and prepared to depart, but the girl’s father said to his son-in-law, “Refresh your heart with a So they morsel of bread, and then you can go.” sat down and the two of them ate and drank to- gether. Then the girl’s father said to the man, “Please agree to stay overnight and let your heart The man got up to depart, but his be merry.” father-in-law persuaded him, so he stayed there that night. the son of Manasseh 7 Some Hebrew and LXX manuscripts and Vulgate; other Hebrew and LXX manuscripts LXX 8 9 On the fifth day, he got up early in the morning to depart, but the girl’s father said, “Please re- fresh your heart.” So they waited until late after- When the man noon and the two of them ate. got up to depart with his concubine and his serv- ant, his father" + }, + { + "verseNum": 2, + "text": "| 19 9 “Where is your wife Sarah?” they asked. 10 “There, in the tent,” he replied. Then the LORD said, “I will surely return to you at this time next year, and your wife Sarah will have a son!” 11 Now Sarah was behind him, listening at the en- And Abraham and Sarah trance to the tent. were already old and well along in years; Sarah had passed the age of childbearing. So she laughed to herself, saying, “After I am worn out and my master is old, will I now have this pleas- 13 ure?” 12 14 And the LORD asked Abraham, “Why did Sarah laugh and say, ‘Can I really bear a child when I am Is anything too difficult for the LORD? At old?’ the appointed time I will return to you—in about 15 a year—and Sarah will have a son.” a But Sarah was afraid, so she denied it and said, “I did not laugh.” Abraham Intercedes for Sodom “No,” replied the LORD, “but you did laugh.” 16 When the men got up to leave, they looked out over Sodom, and Abraham walked along with 17 them to see them off. 18 And the LORD said, “Shall I hide from Abraham Abraham will surely what I am about to do? become a great and powerful nation, and through him all the nations of the earth will be For I have chosen him, so that he will blessed. command his children and his household after him to keep the way of the LORD by doing what is right and just, in order that the LORD may 20 bring upon Abraham what He has promised.” 19 21 Then the LORD said, “The outcry against Sodom and Gomorrah is great. Because their sin I will go dow" + }, + { + "verseNum": 3, + "text": "3 17 But Lot insisted so strongly that they followed him into his house. He prepared a feast for them 4 and baked unleavened bread, and they ate. 5 Before they had gone to bed, all the men of the city of Sodom, both young and old, surrounded They called out to Lot, saying, the house. “Where are the men who came to you tonight? Send them out to us so we can have relations 6 with them!” 7 8 Lot went outside to meet them, shutting the “Please, my brothers,” he door behind him. pleaded, “don’t do such a wicked thing! Look, I have two daughters who have never slept with a man. Let me bring them to you, and you can do to them as you please. But do not do anything to these men, for they have come under the protec- 9 tion of my roof.” “Get out of the way!” they replied. And they de- clared, “This one came here as a foreigner, and he is already acting like a judge! Now we will treat you worse than them.” And they pressed in on 10 Lot and moved in to break down the door. 11 But the men inside reached out, pulled Lot into And the house with them, and shut the door. they struck the men at the entrance, young and old, with blindness, so that they wearied them- Lot Flees to Zoar selves trying to find the door. 12 13 Then the two men said to Lot, “Do you have anyone else here—a son-in-law, your sons or daughters, or anyone else in the city who belongs because we are to you? Get them out of here, about to destroy this place. For the outcry to the LORD against its people is so great that He h" + }, + { + "verseNum": 24, + "text": "–29) ” 20 When asked by the Pharisees when the king- dom of God would come, Jesus replied, “The king- 21 dom of God will not come with observable signs. Nor will people say, ‘Look, here it is,’ or ‘There it is.’ For you see, the kingdom of God is in your 22 midst. ” d 24 23 Then He said to the disciples, “The time is com- ing when you will long to see one of the days of People the Son of Man, but you will not see it. will tell you, ‘Look, there He is!’ or ‘Look, here He For just is!’ Do not go out or chase after them. as the lightning flashes and lights up the sky from one end to the other, so will be the Son of Man in But first He must suffer many things His day. leper a 12 and be rejected by this generation. d 21 within you left within your grasp e 35 25 or TR includes A Or ; see" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 2, + "text": "–3. 1046 |" + }, + { + "verseNum": 8, + "text": "| 21 So that night they got their father drunk with wine, and the firstborn went in and slept with her father; he was not aware when she lay down 34 or when she got up. The next day the older daughter said to the younger, “Look, I slept with my father last night. Let us get him drunk with wine again tonight so you can go in and sleep with him and we can pre- 35 serve our father’s line.” So again that night they got their father drunk with wine, and the younger daughter went in and slept with him; he was not aware when she lay 36 down or when she got up. 37 a 38 Thus both of Lot’s daughters became pregnant by their father. The older daughter gave birth to a son and named him Moab. He is the father of the Moabites of today. The younger daugh- ter also gave birth to a son, and she named him Ben-ammi. He is the father of the Ammonites of Abraham, Sarah, and Abimelech today. b 20 Now Abraham journeyed from there to the region of the Negev and settled be- 2 tween Kadesh and Shur. While he was staying in Abraham said of his wife Sarah, “She is Gerar, my sister.” So Abimelech king of Gerar had Sarah 3 brought to him. One night, however, God came to Abimelech in a dream and told him, “You are as good as dead because of the woman you have taken, for she is 4 a married woman.” Now Abimelech had not gone near her, so he re- 5 plied, “Lord, would You destroy a nation even though it is innocent? Didn’t Abraham tell me, ‘She is my sister’? And she herself said, ‘He is my brother.’ I have do" + }, + { + "verseNum": 9, + "text": "Sarah Turns against Hagar (Gal. 4:21–30) 24 9 a 10 But Sarah saw that the son whom Hagar the Egyptian had borne to Abraham was mocking her son, and she said to Abraham, “Expel the slave woman and her son, for the slave woman’s son will never share in the inheritance with my 11 son Isaac!” b 12 Now this matter distressed Abraham greatly But God because it concerned his son Ishmael. said to Abraham, “Do not be distressed about the boy and your maidservant. Listen to everything c that Sarah tells you, for through Isaac your off- But I will also make a spring will be reckoned. nation of the slave woman’s son, because he is 14 your offspring.” 13 15 Early in the morning, Abraham got up, took bread and a skin of water, put them on Hagar’s shoulders, and sent her away with the boy. She left and wandered in the Wilderness of Beer- When the water in the skin was gone, sheba. Then she left the boy under one of the bushes. she went off and sat down nearby, about a bow- shot away, for she said, “I cannot bear to watch the boy die!” And as she sat nearby, she lifted up 17 her voice and wept. 16 d 18 Then God heard the voice of the boy, and the angel of God called to Hagar from heaven, “What is wrong, Hagar? Do not be afraid, for God has Get heard the voice of the boy where he lies. up, lift up the boy, and take him by the hand, for Then God I will make him into a great nation.” opened her eyes, and she saw a well of water. So she went and filled the skin with water and gave 20 the boy a d" + }, + { + "verseNum": 10, + "text": "" + }, + { + "verseNum": 12, + "text": "k 29 also LXX)" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 17, + "text": "" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 15, + "text": "" + }, + { + "verseNum": 16, + "text": "| 23 22 the firstborn, his brother Buz, Kemuel (the father Chesed, Hazo, Pildash, Jidlaph, and of Aram), 23 Bethuel.” 24 And Bethuel became the father of Rebekah. Milcah bore these eight sons to Abraham’s Moreover, Nahor’s concubine, brother Nahor. whose name was Reumah, bore Tebah, Gaham, The Death and Burial of Sarah Tahash, and Maacah. 23 2 Now Sarah lived to be 127 years old. She died in Kiriath-arba (that is, Heb- ron) in the land of Canaan, and Abraham went 3 out to mourn and to weep for her. g 4 Then Abraham got up from beside his dead wife and said to the Hittites, “I am a foreigner and an outsider among you. Give me a burial site 5 among you so that I can bury my dead.” 6 The Hittites replied to Abraham, “Listen to us, sir. You are God’s chosen one among us. Bury your dead in the finest of our tombs. None of us 7 will withhold his tomb for burying your dead.” 8 9 Then Abraham rose and bowed down before “If you are the people of the land, the Hittites. willing for me to bury my dead,” he said to them, “listen to me, and approach Ephron son of Zohar to sell me the cave of Machpelah on my behalf that belongs to him; it is at the end of his field. Let him sell it to me in your presence for full price, so 10 that I may have a burial site.” Now Ephron was sitting among the sons of Heth. So in the presence of all the Hittites who 11 had come to the gate of his city, Ephron the Hit- “No, my lord. Listen to tite answered Abraham, me. I give you the field, and I give you the c" + }, + { + "verseNum": 17, + "text": "12 the hearing of the Hittites: four hundred shekels of silver, according to the standard of the mer- 17 chants. 18 So Ephron’s field at Machpelah near Mamre, cave that was in it, and all the trees within the the to boundaries of the field were deeded over Abraham’s possession in the presence of all the 19 Hittites who had come to the gate of his city. After this, Abraham buried his wife Sarah in the cave of the field at Machpelah near Mamre So the (that is, Hebron) in the land of Canaan. field and its cave were deeded by the Hittites to A Wife for Isaac Abraham as a burial site. 20 24 3 2 By now Abraham was old and well along in years, and the LORD had blessed him So Abraham instructed the chief in every way. servant of his household, who managed all he owned, “Place your hand under my thigh, and I will have you swear by the LORD, the God of heaven and the God of earth, that you will not take a wife for my son from the daughters of the but will Canaanites among whom I am dwelling, go to my country and my kindred to take a wife 5 for my son Isaac.” 4 The servant asked him, “What if the woman is unwilling to follow me to this land? Shall I then take your son back to the land from which you 6 came?” 7 Abraham replied, “Make sure that you do not take my son back there. The LORD, the God of heaven, who brought me from my father’s house and my native land, who spoke to me and prom- ised me on oath, saying, ‘To your offspring I will give this land’—He will send His angel before you" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 22, + "text": "1 Samuel 13:21" + }, + { + "verseNum": 58, + "text": "| 25 camels as well,’ may she be the woman the LORD 45 has appointed for my master’s son. And before I had finished praying in my heart, there was Rebekah coming out with her jar on her shoulder, and she went down to the spring and drew water. So I said to her, ‘Please give me 46 a drink.’ She quickly lowered her jar from her shoulder and said, ‘Drink, and I will water your camels as well.’ So I drank, and she also watered the cam- 47 els. Then I asked her, ‘Whose daughter are you?’ She replied, ‘The daughter of Bethuel son of Na- hor, whom Milcah bore to him.’ So I put the ring 48 on her nose and the bracelets on her wrists. Then I bowed down and worshiped the LORD; and I blessed the LORD, the God of my master Abraham, who led me on the right road to take the granddaughter of my master’s brother for his 49 son. Now if you will show kindness and faithfulness to my master, tell me; but if not, let me know, so 50 that I may go elsewhere.” 51 Laban and Bethuel answered, “This is from the LORD; we have no choice in the matter. Re- bekah is here before you. Take her and go, and let her become the wife of your master’s son, just as 52 the LORD has decreed.” When Abraham’s servant heard their words, 53 he bowed down to the ground before the LORD. Then he brought out jewels of silver and gold, and articles of clothing, and he gave them to Re- bekah. He also gave precious gifts to her brother Then he and the men with him and her mother. ate and drank and spent the night there. 54 When" + }, + { + "verseNum": 59, + "text": "59 9 60 So they sent their sister Rebekah on her way, along with her nurse and Abraham’s servant and And they blessed Rebekah and said to his men. her, “Our sister, may you become the mother of thousands upon thousands. 61 May your offspring possess the gates of their enemies.” Then Rebekah and her servant girls got ready, mounted the camels, and followed the man. So Isaac Marries Rebekah the servant took Rebekah and left. 62 63 Now Isaac had just returned from Beer-lahai- Early in the roi, for he was living in the Negev. evening, Isaac went out to the field to meditate, 64 and looking up, he saw the camels approaching. 65 And when Rebekah looked up and saw Isaac, and asked the she got down from her camel servant, “Who is that man in the field coming to meet us?” 66 “It is my master,” the servant answered. So she Then the took her veil and covered herself. 67 servant told Isaac all that he had done. And Isaac brought her into the tent of his mother Sarah and took Rebekah as his wife. And Isaac loved her and was comforted after his Abraham and Keturah (1 Chronicles 1:32–33) mother’s death. 25 2 Now Abraham had taken another wife, and she bore him Zim- named Keturah, 3 ran, Jokshan, Medan, Midian, Ishbak, and Shuah. Jokshan was the father of Sheba and Dedan. And the sons of Dedan were the Asshurites, the Le- 4 tushites, and the Leummites. The sons of Midian were Ephah, Epher, Hanoch, Abida, and Eldaah. 5 All these were descendants of Keturah. 6 Abraham left everything he owned" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 19, + "text": "–28 ;" + }, + { + "verseNum": 23, + "text": "m 33" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 24, + "text": "| 27 8 When Isaac had been there a long time, Abimelech king of the Philistines looked down from the window and was surprised to see Isaac Abimelech sent for caressing his wife Rebekah. Isaac and said, “So she is really your wife! How could you say, ‘She is my sister’?” 9 Isaac replied, “Because I thought I might die on 10 account of her.” “What is this you have done to us?” asked Abimelech. “One of the people could easily have 11 slept with your wife, and you would have So Abimelech warned brought guilt upon us.” all the people, saying, “Whoever harms this man Isaac’s Prosperity or his wife will surely be put to death.” 12 14 13 Now Isaac sowed seed in the land, and that very year he reaped a hundredfold. And the and he became richer and LORD blessed him, He richer, until he was exceedingly wealthy. owned so many flocks and herds and servants So the Philis- that the Philistines envied him. tines took dirt and stopped up all the wells that his father’s servants had dug in the days of his fa- 16 ther Abraham. 15 Then Abimelech said to Isaac, “Depart from us, 17 for you are much too powerful for us.” 18 So Isaac left that place and encamped in Isaac re- the Valley of Gerar and settled there. opened the wells that had been dug in the days of his father Abraham, which the Philistines had stopped up after Abraham died. And he gave these wells the same names his father had given 19 them. c 20 Then Isaac’s servants dug in the valley and found a well of fresh water But the herdsmen o" + }, + { + "verseNum": 25, + "text": "5 afraid, for I am with you. I will bless you and mul- tiply your descendants for the sake of My servant 25 Abraham.” So Isaac built an altar there and called on the name of the LORD, and he pitched his tent there. Isaac’s Covenant with Abimelech His servants also dug a well there. 26 Later, Abimelech came to Isaac from Gerar, with Ahuzzath his adviser and Phicol the com- 27 mander of his army. “Why have you come to me?” Isaac asked them. 28 “You hated me and sent me away.” 29 “We can plainly see that the LORD has been with you,” they replied. “We recommend that there should now be an oath between us and you. that you will Let us make a covenant with you not harm us, just as we have not harmed you but have done only good to you, sending you on your way in peace. And now you are blessed by the 30 LORD.” 31 So Isaac prepared a feast for them, and they ate And they got up early the next and drank. morning and swore an oath to each other. Then Isaac sent them on their way, and they left him in 32 peace. a 33 On that same day, Isaac’s servants came and told him about the well they had dug. “We have So he called it found water!” they told him. Shibah, and to this day the name of the city is Esau’s Wives Beersheba. 34 b When Esau was forty years old, he took as his wives Judith daughter of Beeri the Hittite and Basemath daughter of Elon the Hittite. And Isaac Blesses Jacob" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 3, + "text": "| 29 36 a So Esau declared, “Is he not rightly named Ja- cob? For he has cheated me twice. He took my birthright, and now he has taken my blessing.” Then he asked, “Haven’t you saved a blessing for 37 me?” But Isaac answered Esau: “Look, I have made him your master and given him all his relatives as servants; I have sustained him with grain and new wine. What is left that I can do for you, my 38 son?” Esau said to his father, “Do you have only one blessing, my father? Bless me too, O my father!” 39 Then Esau wept aloud. His father Isaac answered him: “Behold, your dwelling place shall be 40 away from the richness of the land, away from the dew of heaven above. You shall live by the sword and serve your brother. But when you rebel, 41 you will tear his yoke from your neck.” Esau held a grudge against Jacob because of the blessing his father had given him. And Esau said in his heart, “The days of mourning for my father are at hand; then I will kill my brother 42 Jacob.” 44 43 When the words of her older son Esau were re- layed to Rebekah, she sent for her younger son Jacob and told him, “Look, your brother Esau is consoling himself by plotting to kill you. So now, my son, obey my voice and flee at once to my brother Laban in Haran. Stay with him for 45 a while, until your brother’s fury subsides— until your brother’s rage against you wanes and he forgets what you have done to him. Then I will send for you and bring you back from there. 46 Why should I lose both of you in one da" + }, + { + "verseNum": 4, + "text": "a 4 bless you and make you fruitful God Almighty and multiply you, so that you may become a com- And may He give the blessing pany of peoples. of Abraham to you and your descendants, so that you may possess the land where you dwell as a 5 foreigner, the land God gave to Abraham.” So Isaac sent Jacob to Paddan-aram, to Laban son of Bethuel the Aramean, the brother of Re- Esau Marries Mahalath bekah, who was the mother of Jacob and Esau. 6 7 Now Esau learned that Isaac had blessed Jacob and sent him to Paddan-aram to take a wife there, commanding him, “Do not marry a Ca- and that Jacob had obeyed his naanite woman,” 8 father and mother and gone to Paddan-aram. 9 And seeing that his father Isaac disapproved of Esau went to Ishmael the Canaanite women, and married Mahalath, the sister of Nebaioth and daughter of Abraham’s son Ishmael, in addition Jacob’s Ladder to the wives he already had. 10 11 Meanwhile Jacob left Beersheba and set out for On reaching a certain place, he spent Haran. the night there because the sun had set. And tak- ing one of the stones from that place, he put it un- 12 der his head and lay down to sleep. b 14 13 And there at the top And Jacob had a dream about a ladder that rested on the earth with its top reaching up to heaven, and God’s angels were going up and down the ladder. the LORD was standing and saying, “I am the LORD, the God of your father Abraham and the God of Isaac. I will give you and your descendants the Your descendants land on which you now" + }, + { + "verseNum": 12, + "text": ". Greek 952 |" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 8, + "text": "| 31 12 Then Jacob kissed Rachel and uncle’s sheep. He told Rachel that he was Re- wept aloud. bekah’s son, a relative of her father, and she ran 13 and told her father. When Laban heard the news about his sister’s son Jacob, he ran out to meet him. He em- braced him and kissed him and brought him to his home, where Jacob told him all that had hap- Jacob Marries Leah and Rachel pened. 14 Then Laban declared, “You are indeed my own 15 flesh and blood.” After Jacob had stayed with him a month, La- ban said to him, “Just because you are my rela- tive, should you work for nothing? Tell me what 16 your wages should be.” 18 Leah had weak eyes, Now Laban had two daughters; the older was a 17 named Leah, and the younger was named Rachel. but Rachel was shapely Since Jacob loved Rachel, he an- and beautiful. swered, “I will serve you seven years for your 19 younger daughter Rachel.” 20 Laban replied, “Better that I give her to you So Jacob than to another. Stay here with me.” served seven years for Rachel, yet it seemed but 21 a few days because of his love for her. Finally Jacob said to Laban, “Grant me my wife, for my time is complete, and I want to sleep with 22 her.” 23 So Laban invited all the men of that place and But when evening came, prepared a feast. Laban took his daughter Leah and gave her to Ja- cob, and he slept with her. And Laban gave his servant girl Zilpah to his daughter Leah as her 25 maidservant. 24 When morning came, there was Leah! “What have you done to me?” Ja" + }, + { + "verseNum": 9, + "text": "Gad and Asher 9 10 When Leah saw that she had stopped having children, she gave her servant Zilpah to Jacob as 11 a wife. And Leah’s servant Zilpah bore Jacob a son. So she 12 named him Gad. Then Leah said, “How fortunate!” a b 13 c When Leah’s servant Zilpah bore Jacob a sec- Leah said, “How happy I am! For the ond son, women call me happy.” So she named him 14 Asher. Now during the wheat harvest, Reuben went out and found some mandrakes in the field. When he brought them to his mother, Rachel begged Leah, “Please give me some of your son’s 15 mandrakes.” But Leah replied, “Is it not enough that you have taken away my husband? Now you want to take my son’s mandrakes as well?” “Very well,” said Rachel, “he may sleep with you 16 tonight in exchange for your son’s mandrakes.” When Jacob came in from the field that even- ing, Leah went out to meet him and said, “You must come with me, for I have hired you with my Issachar, Zebulun, and Dinah son’s mandrakes.” So he slept with her that night. 17 18 And God listened to Leah, and she conceived Then Leah said, and bore a fifth son to Jacob. “God has rewarded me for giving my maidservant 19 to my husband.” So she named him Issachar. d 20 Again Leah conceived and bore a sixth son to “God has given me a good gift,” she said. Jacob. “This time my husband will honor me, because I e have borne him six sons.” And she named him 21 Zebulun. After that, Leah gave birth to a daughter and Joseph named her Dinah. 22 23 24 Then God remembered Rac" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 32, + "text": "| 33 14 And Rachel and Leah replied, “Do we have any 15 portion or inheritance left in our father’s house? Are we not regarded by him as outsiders? Not only has he sold us, but he has certainly squan- Surely all the dered what was paid for us. wealth that God has taken away from our father belongs to us and to our children. So do whatever 17 God has told you.” 18 16 Then Jacob got up and put his children and his wives on camels, and he drove all his livestock before him, along with all the possessions he had acquired in Paddan-aram, to go to his father 19 Isaac in the land in Canaan. b c father’s household Moreover, Jacob deceived Now while Laban was out shearing his sheep, 20 idols. Rachel stole her Laban the Aramean 21 by not telling him that he was running away. So he fled with all his possessions, crossed the and headed for the hill country of d Euphrates, Laban Pursues Jacob Gilead. 22 23 24 On the third day Laban was informed that Ja- So he took his relatives with him, cob had fled. pursued Jacob for seven days, and overtook him in the hill country of Gilead. But that night God came to Laban the Aramean in a dream and warned him, “Be careful not to say anything to Ja- 25 cob, either good or bad.” 27 Now Jacob had pitched his tent in the hill coun- try of Gilead when Laban overtook him, and La- 26 ban and his relatives camped there as well. Then Laban said to Jacob, “What have you done? You have deceived me and carried off my daughters like captives of war! Why did you r" + }, + { + "verseNum": 33, + "text": "for yourself if anything is yours, and take it back.” For Jacob did not know that Rachel had stolen 33 the idols. 34 So Laban went into Jacob’s tent, then Leah’s tent, and then the tents of the two maidservants, but he found nothing. Then he left Leah’s tent Now Rachel had and entered Rachel’s tent. taken Laban’s household idols, put them in the saddlebag of her camel, and was sitting on them. And Laban searched everything in the tent but 35 found nothing. Rachel said to her father, “Sir, do not be angry that I cannot stand up before you; for I am having my period.” So Laban searched but could not find 36 the household idols. 37 Then Jacob became incensed and challenged Laban. “What is my crime?” he said. “For what sin You of mine have you so hotly pursued me? have searched all my goods! Have you found an- ything that belongs to you? Put it here before my brothers and yours, that they may judge between 38 the two of us. 39 I have been with you for twenty years now. Your sheep and goats have not miscarried, nor have I eaten the rams of your flock. I did not bring you anything torn by wild beasts; I bore the loss myself. And you demanded payment from As it me for what was stolen by day or night. was, the heat consumed me by day and the frost 41 by night, and sleep fled from my eyes. 40 42 Thus for twenty years I have served in your household—fourteen years for your two daugh- ters and six years for your flocks—and you have If the God of my changed my wages ten times! father, th" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 30, + "text": ". 230 |" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 5, + "text": "| 35 23 He took and crossed the ford of the Jabbok. them and sent them across the stream, along c 24 with all his possessions. 25 So Jacob was left all alone, and there a man When the wrestled with him until daybreak. man saw that he could not overpower Jacob, he struck the socket of Jacob’s hip and dislocated it Then the man said, “Let me as they wrestled. go, for it is daybreak.” 26 But Jacob replied, “I will not let you go unless you 27 bless me.” “What is your name?” the man asked. 28 “Jacob,” he replied. d e Then the man said, “Your name will no longer be Jacob, because you have strug- gled with God and with men, and you have 29 prevailed.” but Israel, And Jacob requested, “Please tell me your name.” But he replied, “Why do you ask my name?” Then 30 he blessed Jacob there. f So Jacob named the place Peniel, saying, “In- deed, I have seen God face to face, and yet my life 31 was spared.” g 32 Penuel, The sun rose above him as he passed by and he was limping because of his hip. Therefore to this day the Israelites do not eat the tendon attached to the socket of the hip, be- cause the socket of Jacob’s hip was struck near Jacob Meets Esau that tendon. 33 Now Jacob looked up and saw Esau com- ing toward him with four hundred men. 2 So he divided the children among Leah, Rachel, He put the maidser- and the two maidservants. vants and their children in front, Leah and her 3 children next, and Rachel and Joseph at the rear. But Jacob himself went on ahead and bowed to the groun" + }, + { + "verseNum": 6, + "text": "6 7 Jacob answered, “These are the children God Then the has graciously given your servant.” maidservants and their children approached and Leah and her children also ap- bowed down. proached and bowed down, and then Joseph and 8 Rachel approached and bowed down. “What do you mean by sending this whole com- pany to meet me?” asked Esau. “To find favor in your sight, my lord,” Jacob 9 answered. “I already have plenty, my brother,” Esau re- 10 plied. “Keep what belongs to you.” But Jacob insisted, “No, please! If I have found favor in your sight, then receive this gift from my hand. For indeed, I have seen your face, and it is a 11 like seeing the face of God, since you have re- Please accept my gift ceived me favorably. that was brought to you, because God has been gracious to me and I have all I need.” So Jacob 12 pressed him until he accepted. Then Esau said, “Let us be on our way, and I 13 will go ahead of you.” But Jacob replied, “My lord knows that the chil- dren are frail, and I must care for sheep and cat- tle that are nursing their young. If they are driven 14 hard for even a day, all the animals will die. Please let my lord go ahead of his servant. I will continue on slowly, at a comfortable pace for the livestock and children, until I come to my lord at 15 Seir.” “Let me leave some of my people with you,” Esau said. But Jacob replied, “Why do that? Let me find fa- 16 vor in the sight of my lord.” b 17 but Jacob went on to Succoth, So that day Esau started on his way" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 18, + "text": "| 37 3 Then let us arise and go to Bethel. I garments. will build an altar there to God, who answered me in my day of distress. He has been with me 4 wherever I have gone.” a So they gave Jacob all their foreign gods and all their earrings, and Jacob buried them under the 5 oak near Shechem. 6 As they set out, a terror from God fell over the surrounding cities, so that they did not pursue Jacob’s sons. So Jacob and everyone with him 7 arrived in Luz (that is, Bethel) in the land of Ca- naan. There Jacob built an altar, and he called that place El-bethel, because it was there that God had revealed Himself to Jacob as he fled from 8 his brother. b c Now Deborah, Rebekah’s nurse, died and was d below Bethel. So Jacob e buried under the oak 9 named it Allon-bacuth. f After Jacob had returned from Paddan-aram, 10 God appeared to him again and blessed him. And God said to him, “Though your name is Ja- g you will no longer be called Jacob. Instead, ” So God named him cob, your name will be Israel. 11 Israel. h And God told him, “I am God Almighty. 12 Be fruitful and multiply. A nation—even a company of nations—shall come from you, and kings shall descend from you. The land that I gave to Abraham and Isaac I will give to you, and I will 13 give this land to your descendants after you.” Then God went up from the place where He 14 had spoken with him. 15 So Jacob set up a pillar in the place where God had spoken with him—a stone marker—and he poured out a drink offering on it and anoin" + }, + { + "verseNum": 19, + "text": "19 20 7 So Rachel died and was buried on the way to Jacob set up a pil- Ephrath (that is, Bethlehem). lar on her grave; it marks Rachel’s tomb to this The Sons of Jacob (1 Chronicles 2:1–2) day. 21 22 Israel again set out and pitched his tent be- yond the Tower of Eder. While Israel was liv- ing in that region, Reuben went in and slept with his father’s concubine Bilhah, and Israel heard about it. 23 Jacob had twelve sons: The sons of Leah were Reuben the firstborn of Jacob, Simeon, Levi, Judah, 24 Issachar, and Zebulun. The sons of Rachel were Joseph and 25 Benjamin. The sons of Rachel’s maidservant Bilhah 26 were Dan and Naphtali. And the sons of Leah’s maidservant Zilpah were Gad and Asher. These are the sons of Jacob, who were born to The Death of Isaac him in Paddan-aram. 27 Jacob returned to his father Isaac at Mamre, near Kiriath-arba (that is, Hebron), where Abra- 28 ham and Isaac had stayed. 29 And Isaac lived 180 years. Then he breathed his last and died and was gathered to his people, old and full of years. And his sons Esau and Jacob The Descendants of Esau (1 Chron. 1:35–37) buried him. 36 2 This is the account of Esau (that is, Esau took his wives from the Edom). daughters of Canaan: Adah daughter of Elon the 3 Hittite, Oholibamah daughter of Anah and grand- and Basemath daughter of Zibeon the Hivite, And daughter of Ishmael and sister of Nebaioth. Adah bore Eliphaz to Esau, Basemath gave birth and Oholibamah gave birth to Jeush, to Reuel, Jalam, and Korah. Thes" + }, + { + "verseNum": 21, + "text": "–26 ; 38:1–30) chiefs of Edom. 2 These were the sons of Israel: 2 The sons of Shobal: Alvan, Manahath, Reuben, Simeon, Levi, Judah, Issachar, Ebal, Shepho, 41 The sons of Zibeon: Aiah and Anah. and Onam. e The son f of Anah: Dishon. The sons of Dishon: Hemdan, 42 Ithran, and Cheran. g Eshban, The sons of Ezer: Bilhan, Zaavan, and Akan. The Kings of Edom" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "–19) 48 35 The sons of Esau: 36 Eliphaz, Reuel, Jeush, Jalam, and Korah. a The sons of Eliphaz: Teman, Omar, Gatam, and Kenaz; and by Timna, Zepho, 37 Amalek. The sons of Reuel: Nahath, Zerah, The Descendants of Seir" + }, + { + "verseNum": 11, + "text": "); most Hebrew manuscripts g 42 is a variant of h 43 LXX (see also" + }, + { + "verseNum": 20, + "text": "–30) Shammah, and Mizzah. 38 The sons of Seir: Lotan, Shobal, Zibeon, Anah, Dishon, Ezer, 39 and Dishan. b The sons of Lotan: Hori and Homam. 40 Timna was Lotan’s sister. d c 1 Chronicles 2:9 | 371 i When Samlah died, Shaul from Rehoboth 49 on the Euphrates reigned in his place. When Shaul died, Baal-hanan son of 50 Achbor reigned in his place. j When Baal-hanan died, Hadad reigned in and his his place. His city was named Pau, wife’s name was Mehetabel daughter of 51 Matred, the daughter of Me-zahab. Then Hadad died. 52 53 54 Oholibamah, Elah, Pinon, Now the chiefs of Edom were Timna, Alvah, Jeth- eth, Kenaz, Teman, Mibzar, Magdiel, and Iram. These were the The Sons of Israel" + }, + { + "verseNum": 22, + "text": ". Hebrew Jaakan ; also called in Joshua 7 and Joshua 22. Hebrew , a variant of ; see verse 18. 372 | 1 Chronicles 2:10 10 Ram was the father of Amminadab, and Amminadab was the father of Nahshon, a 11 leader of the descendants of Judah. a Nahshon was the father of Salmon, 12 Salmon was the father of Boaz. and Boaz was the father of Obed, and Obed 13 was the father of Jesse. b 16 15 14 Abinadab was born second, Shimea Nethanel fourth, Raddai fifth, Jesse was the father of Eliab his firstborn; third, Ozem Their sisters sixth, and David seventh. were Zeruiah and Abigail. And the three sons 17 of Zeruiah were Abishai, Joab, and Asahel. Abigail was the mother of Amasa, whose c 18 father was Jether the Ishmaelite. d Caleb son of Hezron had children by his wife Azubah and by Jerioth. These were the 19 sons of Azubah: Jesher, Shobab, and Ardon. When Azubah died, Caleb married Ephrath, Hur was who bore to him Hur. the father of Uri, and Uri was the father of 21 Bezalel. 20 23 22 Later, Hezron slept with the daughter of Machir the father of Gilead. He had married her when he was sixty years old, and she Segub was the father of bore to him Segub. Jair, who had twenty-three cities in the land e But Geshur and Aram captured of Gilead. Havvoth-jair, along with Kenath and its sixty surrounding villages. All these were de- 24 scendants of Machir the father of Gilead. g After Hezron died in Caleb-ephrathah, his f wife Abijah bore 25 of Tekoa. to him Ashhur the father The sons of Jerahmeel the" + }, + { + "verseNum": 23, + "text": "); Hebrew before an Israelite king ruled over them LXX (see also" + }, + { + "verseNum": 26, + "text": "); Hebrew l 6 most MT manuscripts troubler manuscripts, some LXX manuscripts, and Syriac (see also 1 Kings 4:31) is a variant of Achan Hebrew means Hebrew e 41 Shephi ; see" + }, + { + "verseNum": 27, + "text": "); Hebrew the River j 50 k 6 Zimri Many MT manuscripts, some LXX manuscripts, Vulgate, and Syriac (see also" + }, + { + "verseNum": 31, + "text": "–43) The sons of Dishan: Uz and Aran. 43 h These are the kings who reigned in the land of the Edom before any king reigned over Israelites: Bela son of Beor. His city was named 44 Dinhabah. When Bela died, Jobab son of Zerah from 45 Bozrah reigned in his place. When Jobab died, Husham from the land 46 of the Temanites reigned in his place. When Husham died, Hadad son of Bedad, who defeated Midian in the country of Moab, reigned in his place. And the name of 47 his city was Avith. When Hadad died, Samlah from Masrekah Zebulun, 3 Gad, and Asher. Dan, Joseph, Benjamin, Naphtali, The sons of Judah: Er, Onan, and Shelah. These three were born to him by Bath-shua the Canaanite. Er, Judah’s firstborn, was wicked in the sight of the LORD. So the LORD put him 4 to death. Tamar, Judah’s daughter-in-law, bore to him Perez and Zerah. Judah had five sons in all. 5 The sons of Perez: 6 Hezron and Hamul. k The sons of Zerah: l 7 Zimri, five in all. Ethan, Heman, Calcol, and Dara m — n The son of Carmi: 8 who brought trouble upon Israel Achar, by violating the ban on devoted things. The son of Ethan: 9 Azariah. The sons who were born to Hezron: o a 36 Zephi d 40 Hamran i 48 reigned in his place. b 39 Homam Hemam Jerahmeel, Ram, and Caleb. c 40 sons f 41 Alian Many Hebrew manuscripts, some LXX manuscripts, and Syriac (see also" + }, + { + "verseNum": 39, + "text": "); Darda ; see" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 3, + "text": ". c 27 Or When the woman from Tekoa went to the king, she fell facedown in homage and said, “Help me, O king!” But he would not punish his son Amnon, And Absalom prepared a feast fit for a king. And the spirit of the DSS and LXX include And the watchman . . . . f 39 LXX and Vulgate include Or Or LXX; Hebrew does not include MT; DSS and LXX 5 17 2 Samuel 14:29 | 293 “What troubles you?” the king asked her. 6 “Indeed,” she said, “I am a widow, for my hus- band is dead. And your maidservant had two sons who were fighting in the field with no one 7 to separate them, and one struck the other and Now the whole clan has risen up killed him. against your maidservant and said, ‘Hand over the one who struck down his brother, that we may put him to death for the life of the brother whom he killed. Then we will cut off the heir as well!’ So they would extinguish my one remain- ing ember by not preserving my husband’s name 8 or posterity on the earth.” “Go home,” the king said to the woman, “and I 9 will give orders on your behalf.” But the woman of Tekoa said to the king, “My lord the king, may any blame be on me and on my father’s house, and may the king and his throne 10 be guiltless.” “If anyone speaks to you,” said the king, “bring 11 him to me, and he will not trouble you again!” “Please,” she replied, “may the king invoke the LORD your God to prevent the avenger of blood from increasing the devastation, so that my son may not be destroyed!” “As surely as the LORD lives,” he vowed," + }, + { + "verseNum": 12, + "text": "–30) twelve patriarchs. 9 10 Because the patriarchs were jealous of Joseph, they sold him as a slave into Egypt. But God was and rescued him from all his trou- with him bles. He granted Joseph favor and wisdom in the sight of Pharaoh king of Egypt, who appointed 11 him ruler over Egypt and all his household. 12 Then famine and great suffering swept across Egypt and Canaan, and our fathers could not find food. When Jacob heard that there was grain in 13 Egypt, he sent our fathers on their first visit. e On their second visit, Joseph revealed his iden- tity to his brothers, and his family became Then Joseph sent for his fa- known to Pharaoh. Israel Oppressed in Egypt" + }, + { + "verseNum": 13, + "text": "| 39 and Iram. These were the chiefs of Edom, accord- ing to their settlements in the land they pos- Joseph’s Dreams sessed. Esau was the father of the Edomites. 37 2 Now Jacob lived in the land where his fa- ther had resided, the land of Canaan. This is the account of Jacob. When Joseph was seventeen years old, he was tending the flock with his brothers, the sons of his father’s wives Bilhah and Zilpah, and he brought their father a 3 bad report about them. Now Israel loved Joseph more than his other e sons, because Joseph had been born to him in his 4 old age; so he made him a robe of many colors. When Joseph’s brothers saw that their father loved him more than any of them, they hated him 5 and could not speak a kind word to him. 6 Then Joseph had a dream, and when he told it 7 He to his brothers, they hated him even more. said to them, “Listen to this dream I had: We were binding sheaves of grain in the field, and suddenly my sheaf rose and stood upright, while your sheaves gathered around and bowed down 8 to mine.” “Do you intend to reign over us?” his brothers asked. “Will you actually rule us?” So they hated him even more because of his dream and his 9 statements. Then Joseph had another dream and told it to his brothers. “Look,” he said, “I had another dream, and this time the sun and moon and 10 eleven stars were bowing down to me.” 11 He told his father and brothers, but his father rebuked him and said, “What is this dream that you have had? Will your mother and brot" + }, + { + "verseNum": 14, + "text": "14 Then Israel told him, “Go now and see how your brothers and the flocks are faring, and bring word back to me.” 15 So he sent him off from the Valley of Hebron. And when Joseph arrived in Shechem, a man found him wandering in the field and asked, “What are 16 you looking for?” “I am looking for my brothers,” Joseph replied. “Can you please tell me where they are pasturing 17 their flocks?” “They have moved on from here,” the man an- swered. “I heard them say, ‘Let us go to Dothan.’ ” So Joseph set out after his brothers and found 18 them at Dothan. 20 19 Now Joseph’s brothers saw him in the dis- tance, and before he arrived, they plotted to kill him. “Here comes that dreamer!” they said to one another. “Come now, let us kill him and throw him into one of the pits. We can say that a vicious animal has devoured him. Then we shall 21 see what becomes of his dreams!” 22 When Reuben heard this, he tried to rescue Jo- seph from their hands. “Let us not take his life,” “Do not shed his blood. Throw him into he said. this pit in the wilderness, but do not lay a hand on him.” Reuben said this so that he could rescue Joseph from their hands and return him to his 23 father. So when Joseph came to his brothers, they 24 stripped him of his robe—the robe of many col- ors he was wearing— and they took him and threw him into the pit. Now the pit was empty, 25 with no water in it. And as they sat down to eat a meal, they looked up and saw a caravan of Ishmaelites coming from Gilead. Their c" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 7, + "text": "| 41 “Bring her out!” Judah replied. “Let her be burned 25 to death!” As she was being brought out, Tamar sent a message to her father-in-law: “I am pregnant by the man to whom these items belong.” And she added, “Please examine them. Whose seal and 26 cord and staff are these?” Judah recognized the items and said, “She is more righteous than I, since I did not give her to my son Shelah.” And he did not have relations The Birth of Perez and Zerah with her again. 27 28 When the time came for Tamar to give birth, And as she was there were twins in her womb. giving birth, one of them put out his hand; so the midwife took a scarlet thread and tied it around his wrist. “This one came out first,” she an- But when he pulled his hand back nounced. b and his brother came out, she said, “You have 30 broken out first!” So he was named Perez. 29 c Then his brother came out with the scarlet thread around his wrist, and he was named Joseph and Potiphar’s Wife Zerah. 39 Meanwhile, Joseph had been taken down to Egypt, where an Egyptian named Pot- iphar, an officer of Pharaoh and captain of the guard, bought him from the Ishmaelites who had And the LORD was with Jo- taken him there. seph, and he became a successful man, serving in 3 the household of his Egyptian master. 2 4 When his master saw that the LORD was with Joseph him and made him prosper in all he did, found favor in his sight and became his personal attendant. 5 Potiphar put him in charge of his household and From entrusted him wit" + }, + { + "verseNum": 8, + "text": "8 3 But he refused. “Look,” he said to his master’s wife, “with me here, my master does not concern himself with anything in his house, and he has entrusted everything he owns to my care. No one in this house is greater than I am. He has withheld nothing from me except you, because you are his wife. So how could I do such a great 10 evil and sin against God?” 9 11 Although Potiphar’s wife spoke to Joseph day after day, he refused to go to bed with her or even be near her. One day, however, Joseph went into the house to attend to his work, and not a single household servant was inside. She grabbed Joseph by his cloak and said, “Sleep with me!” But leaving his cloak in her hand, he es- Joseph Falsely Imprisoned caped and ran outside. 13 12 14 When she saw that he had left his cloak in her hand and had run out of the house, she called her household servants. “Look,” she said, “this Hebrew has been brought to us to make sport of us. He came to me so he could sleep with me, but I screamed as loud as I could. When he heard me scream for help, he left his cloak beside me 16 and ran out of the house.” 15 17 So Potiphar’s wife kept Joseph’s cloak beside her until his master came home. Then she told him the same story: “The Hebrew slave you 18 brought us came to me to make sport of me, but when I screamed for help, he left his cloak 19 beside me and ran out of the house.” When his master heard the story his wife told 20 him, saying, “This is what your slave did to me,” he burned with a" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 32, + "text": "| 43 21 On the third day, which was Pharaoh’s birth- day, he held a feast for all his officials, and in their presence he lifted up the heads of the chief cupbearer and the chief baker. Pharaoh re- stored the chief cupbearer to his position, so that he once again placed the cup in Pharaoh’s hand. But Pharaoh hanged the chief baker, just as Joseph had described to them in his 23 interpretation. 22 a The chief cupbearer, however, did not remem- The Dreams of Pharaoh ber Joseph; he forgot all about him. 41 3 2 After two full years had passed, Pharaoh had a dream: He was standing beside when seven cows, sleek and well-fed, the Nile, came up from the river and began to graze After them, seven other cows, among the reeds. sickly and thin, came up from the Nile and stood 4 beside the well-fed cows on the bank of the river. And the cows that were sickly and thin de- 5 voured the seven sleek, well-fed cows. 6 Then Pharaoh woke up, but he fell back asleep and dreamed a second time: Seven heads of Af- grain, plump and ripe, came up on one stalk. ter them, seven other heads of grain sprouted, And the thin thin and scorched by the east wind. heads of grain swallowed up the seven plump, ripe ones. Then Pharaoh awoke and realized it 8 was a dream. 7 In the morning his spirit was troubled, so he summoned all the magicians and wise men of Egypt. Pharaoh told them his dreams, but no one 9 could interpret them for him. 10 Then the chief cupbearer said to Pharaoh, “To- Pharaoh was once an- day I" + }, + { + "verseNum": 33, + "text": "33 34 Now, therefore, Pharaoh should look for a dis- cerning and wise man and set him over the land Let Pharaoh take action and appoint of Egypt. a commissioners over the land to take a fifth of the 35 of Egypt during the seven years of harvest Under the authority of Pharaoh, let abundance. them collect all the excess food from these good years, that they may come and lay up the grain to This food be preserved as food in the cities. will be a reserve for the land during the seven years of famine to come upon the land of Egypt. Joseph Given Charge of Egypt Then the country will not perish in the famine.” 37 36 38 This proposal pleased Pharaoh and all his offi- b cials. So Pharaoh asked them, “Can we find an- yone like this man, in whom the Spirit of God 39 abides?” Then Pharaoh said to Joseph, “Since God has 40 made all this known to you, there is no one as dis- You shall be in charge cerning and wise as you. of my house, and all my people are to obey your commands. Only with regard to the throne will I 41 be greater than you.” 42 Pharaoh also told Joseph, “I hereby place you Then Pharaoh re- over all the land of Egypt.” moved the signet ring from his finger, put it on Joseph’s finger, clothed him in garments of fine 43 linen, and placed a gold chain around his neck. He had Joseph ride in his second chariot, with So men calling out before him, “Bow the knee!” 44 he placed him over all the land of Egypt. c And Pharaoh declared to Joseph, “I am Phar- aoh, but without your permis" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 38, + "text": "| 45 he took Simeon from them and had him bound Joseph’s Brothers Return to Canaan before their eyes. 25 a Then Joseph gave orders to fill their bags with grain, to return each man’s silver to his sack, and to give them provisions for their journey. and they loaded This order was carried out, 27 the grain on their donkeys and departed. 26 28 At the place where they lodged for the night, one of them opened his sack to get feed for his donkey, and he saw his silver in the mouth of the sack. “My silver has been returned!” he said to his brothers. “It is here in my sack.” Their hearts sank, and trembling, they turned to one another and said, “What is this that God has 29 done to us?” 30 When they reached their father Jacob in the land of Canaan, they described to him all that had happened to them: “The man who is lord of the land spoke harshly to us and accused us of spying 31 on the country. 32 But we told him, ‘We are honest men, not spies. We are twelve brothers, sons of one father. One is no more, and the youngest is now with our 33 father in the land of Canaan.’ Then the man who is lord of the land said to us, ‘This is how I will know whether you are honest: Leave one brother with me, take food to relieve the hunger of your households, and go. But bring your youngest brother back to me so I will know that you are not spies but honest men. Then I will give your brother back to you, and 35 you can trade in the land.’ 34 ” As they began emptying their sacks, there in each man’s" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "The Return to Egypt with Benjamin Joseph’s Hospitality to His Brothers 43 2 16 Now the famine was still severe in the land. So when Jacob’s sons had eaten all the grain they had brought from Egypt, their fa- ther said to them, “Go back and buy us a little 3 more food.” 4 But Judah replied, “The man solemnly warned us, ‘You will not see my face again unless your If you will send our brother brother is with you.’ 5 with us, we will go down and buy food for you. But if you will not send him, we will not go; for the man told us, ‘You will not see my face again 6 unless your brother is with you.’ ” “Why did you bring this trouble upon me?” Is- rael asked. “Why did you tell the man you had 7 another brother?” They replied, “The man questioned us in detail about ourselves and our family: ‘Is your father still alive? Do you have another brother?’ And we answered him accordingly. How could we possi- bly know that he would say, ‘Bring your brother 8 here’?” 9 And Judah said to his father Israel, “Send the boy with me, and we will go at once, so that we may live and not die—neither we, nor you, nor our children. I will guarantee his safety. You may hold me personally responsible. If I do not bring him back and set him before you, then may If we had I bear the guilt before you all my life. not delayed, we could have come and gone twice 11 by now.” 10 Then their father Israel said to them, “If it must be so, then do this: Put some of the best products of the land in your packs and carry t" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 28, + "text": "| 47 31 Joseph hurried out because he was moved to tears for his brother, and he went to a private Then he washed his face and room to weep. came back out. Regaining his composure, he said, 32 “Serve the meal.” 33 They separately served Joseph, his brothers, and the Egyptians. They ate separately because the Egyptians would not eat with the Hebrews, They were since that was detestable to them. seated before Joseph in order by age, from the firstborn to the youngest, and the men looked at When the por- one another in astonishment. tions were served to them from Joseph’s table, Benjamin’s portion was five times larger than any of the others. So they feasted and drank Benjamin and the Silver Cup freely with Joseph. 34 44 2 Then Joseph instructed his steward: “Fill the men’s sacks with as much food as they can carry, and put each one’s silver in the Put my cup, the silver one, in mouth of his sack. the mouth of the youngest one’s sack, along with the silver for his grain.” 3 So the steward did as Joseph had instructed. 4 At daybreak, the men were sent on their way They had not gone far from with their donkeys. the city when Joseph told his steward, “Pursue the men at once, and when you overtake them, Is ask, ‘Why have you repaid good with evil? this not the cup my master drinks from and uses 6 for divination? What you have done is wicked!’ ” 5 a b When the steward overtook them, he relayed 7 these words to them. 8 “Why does my lord say these things?” they asked. “Your servants co" + }, + { + "verseNum": 29, + "text": "one of them was gone, I said: “Surely he has been 29 torn to pieces.” And I have not seen him since. Now if you also take this one from me and harm comes to him, you will bring my gray hair 30 down to Sheol in sorrow.’ 31 So if the boy is not with us when I return to your servant, and if my father, whose life is sees that the boy wrapped up in the boy’s life, is not with us, he will die. Then your servants will have brought the gray hair of your servant Indeed, our father down to Sheol in sorrow. your servant guaranteed the boy’s safety to my father, saying, ‘If I do not return him to you, I will bear the guilt before you, my father, all my 33 life.’ 32 34 Now please let your servant stay here as my lord’s slave in place of the boy. Let him return For how can I go back to my with his brothers. father without the boy? I could not bear to see Joseph Reveals His Identity the misery that would overwhelm him.” 45 Then Joseph could no longer control himself before all his attendants, and he cried out, “Send everyone away from me!” 2 So none of them were with Joseph when he made But he wept so himself known to his brothers. loudly that the Egyptians heard him, and Phar- 3 aoh’s household soon heard of it. Joseph said to his brothers, “I am Joseph! Is my father still alive?” But they were unable to answer him, because 4 they were terrified in his presence. Then Joseph said to his brothers, “Please come near me.” And they did so. 5 6 “I am Joseph, your brother,” he said, “the one you" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 7, + "text": "–27) 1 2 family: These are the names of the sons of Israel who went to Egypt with Jacob, each with his 3 Reuben, Simeon, Levi, and Judah; 4 Issachar, Zebulun, and Benjamin; Dan and Naphtali; 5 Gad and Asher. a The descendants of Jacob numbered seventy in all, including Joseph, who was already in 6 Egypt. 7 Now Joseph and all his brothers and all that but the Israelites were fruitful generation died, and increased rapidly; they multiplied and be- came exceedingly numerous, so that the land was Oppression by a New King" + }, + { + "verseNum": 10, + "text": ". Job ; see" + }, + { + "verseNum": 13, + "text": ". is a variant of Abiezer ; see" + }, + { + "verseNum": 16, + "text": ". is a variant of f 30 Iezer SP, LXX, Vulgate, and Syriac is a variant of ; see" + }, + { + "verseNum": 24, + "text": "and" + }, + { + "verseNum": 26, + "text": "| 49 11 The sons of Levi: Gershon, Kohath, and 12 Merari. The sons of Judah: Er, Onan, Shelah, Perez, and Zerah; but Er and Onan died in the land of Canaan. 13 The sons of Perez: Hezron and Hamul. c d The sons of Issachar: Tola, Puvah, 14 and Shimron. Job, The sons of Zebulun: Sered, Elon, and 15 Jahleel. e These are the sons of Leah born to Jacob in addition to his in Paddan-aram, daughter Dinah. The total number of sons and daughters was thirty-three. 16 The Children of Zilpah f g The sons of Gad: Ziphion, Haggi, Shuni, 17 Ezbon, Eri, Arodi, and Areli. The children of Asher: Imnah, Ishvah, Ishvi, Beriah, and their sister Serah. 18 The sons of Beriah: Heber and Malchiel. These are the sons of Jacob born to Zilpah—whom Laban gave to his daughter The Children of Rachel Leah—sixteen in all. 19 The sons of Jacob’s wife Rachel: Joseph 20 and Benjamin. Manasseh and Ephraim were born to h Joseph in the land of Egypt by Asenath 21 daughter of Potiphera, priest of On. The sons of Benjamin: Bela, Becher, Ashbel, Gera, Naaman, Ehi, Rosh, Muppim, 22 Huppim, and Ard. These are the sons of Rachel born to The Children of Bilhah Jacob—fourteen in all. 23 24 The son of Dan: Hushim. The sons of Naphtali: Jahzeel, Guni, Jezer, 25 and Shillem. These are the sons of Jacob born to Bilhah, whom Laban gave to his daughter Rachel—seven in all. 26 a 10 Jemuel Ohad, Jachin, Zohar, Canaanite woman. c 13 and Shaul the son of a Nemuel Jashub 1 Chronicles 4:24. is another name for g 16 Arodi ; see" + }, + { + "verseNum": 27, + "text": "27 a And with the two sons who had been born to Joseph in Egypt, the members of Jacob’s family Jacob Arrives in Egypt who went to Egypt were seventy 28 in all. b 29 Now Jacob had sent Judah ahead of him to Jo- seph to get directions to Goshen. When Jacob’s family arrived in the land of Goshen, Joseph prepared his chariot and went there to meet his father Israel. Joseph presented himself to him, 30 embraced him, and wept profusely. Then Israel said to Joseph, “Finally I can die, now that I have seen your face and know that you 31 are still alive!” Joseph said to his brothers and to his father’s household, “I will go up and inform Pharaoh: ‘My brothers and my father’s household from the The men are land of Canaan have come to me. shepherds; they raise livestock, and they have brought their flocks and herds and all that they 33 own.’ 32 34 When Pharaoh summons you and asks, ‘What you are to say, ‘Your serv- is your occupation?’ ants have raised livestock ever since our youth— both we and our fathers.’ Then you will be al- lowed to settle in the land of Goshen, since all Jacob Settles in Goshen shepherds are detestable to the Egyptians.” 47 So Joseph went and told Pharaoh: “My fa- ther and my brothers, with their flocks and herds and all they own, have come from the 2 land of Canaan and are now in Goshen.” And he chose five of his brothers and presented 3 them before Pharaoh. “What is your occupation?” Pharaoh asked Jo- seph’s brothers. “Your servants are shepherds,” they replied" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 14, + "text": "| 51 Jacob Blesses Ephraim and Manasseh 48 2 Some time later Joseph was told, “Your father is ill.” So he set out with his two When Jacob was sons, Manasseh and Ephraim. told, “Your son Joseph has come to you,” Israel c 3 rallied his strength and sat up in bed. 4 Jacob said to Joseph, “God Almighty appeared to me at Luz in the land of Canaan, and there He blessed me and told me, ‘Behold, I will make you fruitful and multiply you; I will make you a multitude of peoples, and will give this land to your descendants after you as an everlasting 5 possession.’ And now your two sons born to you in Egypt be- fore I came to you here shall be reckoned as mine; Ephraim and Manasseh shall be mine, just as Reuben and Simeon are mine. Any children born to you after them shall be yours, and they shall be called by the names of their brothers in 7 the territory they inherit. 6 d Now as for me, when I was returning from Pad- dan, to my sorrow Rachel died along the way in the land of Canaan, some distance from Ephrath. So I buried her there beside the road to Ephrath” 8 (that is, Bethlehem). When Israel saw the sons of Joseph, he asked, 9 “Who are these?” Joseph said to his father, “They are the sons God has given me in this place.” So Jacob said, “Please bring them to me, that I 10 may bless them.” Now Israel’s eyesight was poor because of old age; he could hardly see. Joseph brought his sons to him, and his father kissed them and embraced 11 them. “I never expected to see your face again,” I" + }, + { + "verseNum": 15, + "text": "15 4 although Manasseh was the firstborn. blessed Joseph and said: Then he Uncontrolled as the waters, you will no longer excel, “May the God before whom my fathers because you went up to your father’s bed, 5 Abraham and Isaac walked, 16 the God who has been my shepherd all my a 6 life to this day, onto my couch, and defiled it. c Simeon and Levi are brothers; their swords are weapons of violence. the angel who has redeemed me from all May I never enter their council; harm— may He bless these boys. And may they be called by my name and the names of my fathers Abraham and Isaac, 17 and may they grow into a multitude upon the earth.” When Joseph saw that his father had placed his right hand on Ephraim’s head, he was displeased and took his father’s hand to move it from “Not so, my fa- Ephraim’s head to Manasseh’s. ther!” Joseph said. “This one is the firstborn; put 19 your right hand on his head.” 18 But his father refused. “I know, my son, I know!” he said. “He too shall become a people, and he too shall be great; nevertheless, his younger brother shall be greater than he, and his 20 offspring shall become a multitude of nations.” may I never join their assembly. For they kill men in their anger, 7 and hamstring oxen on a whim. Cursed be their anger, for it is strong, and their wrath, for it is cruel! I will disperse them in Jacob 8 and scatter them in Israel. d Judah, your brothers shall praise you. Your hand shall be on the necks of your 9 enemies; your father’s sons shall b" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 14, + "text": "| 53 19 a I await Your salvation, O LORD. 20 Gad will be attacked by raiders, but he will attack their heels. 21 22 Asher’s food will be rich; he shall provide royal delicacies. b Naphtali is a doe set free that bears beautiful fawns. Joseph is a fruitful vine— c 23 a fruitful vine by a spring, whose branches scale the wall. The archers attacked him with bitterness; 24 they aimed at him in hostility. Yet he steadied his bow, and his strong arms were tempered by the hands of the Mighty One of Jacob, 25 in the name of the Shepherd, the Rock of d Israel, by the God of your father who helps you, and by the Almighty who blesses you, with blessings of the heavens above, 26 with blessings of the depths below, with blessings of the breasts and womb. The blessings of your father have surpassed the blessings of the ancient mountains and the bounty of the everlasting hills. e May they rest on the head of Joseph, on the brow of the prince of his brothers. 27 Benjamin is a ravenous wolf; 28 in the morning he devours the prey, in the evening he divides the plunder.” These are the tribes of Israel, twelve in all, and this was what their father said to them. He blessed them, and he blessed each one with a The Death of Jacob suitable blessing. 29 31 Then Jacob instructed them, “I am about to be gathered to my people. Bury me with my fathers 30 in the cave in the field of Ephron the Hittite. The cave is in the field of Machpelah near Mamre, in the land of Canaan. This is the field Abraham purc" + }, + { + "verseNum": 15, + "text": "Joseph Comforts His Brothers 15 When Joseph’s brothers saw that their father was dead, they said, “What if Joseph bears a grudge? Then he will surely repay us for all the 16 evil that we did to him.” 17 So they sent word to Joseph, saying, “Before he died, your father commanded, ‘This is what you are to say to Joseph: I beg you, please forgive the transgression and sin of your brothers, for they did you wrong.’ So now, Joseph, please for- give the transgression of the servants of the God of your father.” 18 When their message came to him, Joseph wept. His brothers also came to him, bowed down 19 before him, and said, “We are your slaves!” 20 But Joseph replied, “Do not be afraid. Am I in As for you, what you in- the place of God? tended against me for evil, God intended for good, in order to accomplish a day like this—to a 23 born placed at birth Or or Exodus The Israelites Multiply in Egypt" + }, + { + "verseNum": 25, + "text": "Or or left the land of Egypt in the fifth generation marching out boldly ; similarly in verses 8 and 17 Or ; literally 68 |" + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) went to Egypt. 7 Jacob took with him to Egypt his sons and grandsons, and his daughters and granddaugh- The Children of Leah ters—all his offspring. 8 Now these are the names of the sons of Israel (Jacob and his descendants) who 9 went to Egypt: Reuben, Jacob’s firstborn. The sons of Reuben: Hanoch, Pallu, 10 Hezron, and Carmi. b a The sons of Simeon: Jemuel, Jamin," + }, + { + "verseNum": 5, + "text": "); LXX (see also" + }, + { + "verseNum": 8, + "text": "–22) ther Jacob and all his relatives, seventy-five in all. 15 14 16 f So Jacob went down to Egypt, where he and our fathers died. Their bones were carried back to Shechem and placed in the tomb that Abraham had bought from the sons of Hamor at 17 Shechem for a price he paid in silver. 18 As the time drew near for God to fulfill His promise to Abraham, our people in Egypt in- Then another king, creased greatly in number. 19 who knew nothing of Joseph, arose over Egypt. He exploited our people and oppressed our fa- thers, forcing them to abandon their infants so The Birth and Adoption of Moses they would die." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–10 ;" + }, + { + "verseNum": 7, + "text": "7 20 Then his sister said to Pharaoh’s daughter, “Shall I go and call one of the Hebrew women to 8 nurse the child for you?” “So where is he?” their father asked. “Why did you leave the man behind? Invite him to have 21 something to eat.” “Go ahead,” Pharaoh’s daughter told her. And 9 the girl went and called the boy’s mother. Pharaoh’s daughter said to her, “Take this child and nurse him for me, and I will pay your wages.” 10 So the woman took the boy and nursed him. a When the child had grown older, she brought him to Pharaoh’s daughter, and he became her and explained, “I son. She named him Moses The Rejection and Flight of Moses drew him out of the water.”" + }, + { + "verseNum": 11, + "text": "–22) 22 23 24 When Moses was forty years old, he decided to And visit his brothers, the children of Israel. Joseph was he was of great sta- e 13 ; the Roman Province of Asia was located in what is now western Turkey. And they were carried back g 20 f 16" + }, + { + "verseNum": 13, + "text": "–14 (see also LXX)" + }, + { + "verseNum": 14, + "text": "j 46 verse 38 k 50" + }, + { + "verseNum": 18, + "text": ". h 1 . Cited in" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": ". j 5 Angel ; see" + }, + { + "verseNum": 5, + "text": "–10 ; also in Or a dwelling place for the house of Jacob." + }, + { + "verseNum": 6, + "text": "Psalm i 15 See" + }, + { + "verseNum": 12, + "text": "Or or or Literally Or when he saw one of them being mistreated, Mo- ses went to his defense and avenged him by strik- 25 ing down the Egyptian who was oppressing him. He assumed his brothers would understand that God was using him to deliver them, but they 26 did not. The next day he came upon two Israelites who were fighting, and he tried to reconcile them, saying, ‘Men, you are brothers. Why are you mis- 27 treating each other?’ But the man who was abusing his neighbor 28 pushed Moses aside and said, ‘Who made you a Do you want to kill me ruler and judge over us? At this as you killed the Egyptian yesterday?’ remark, Moses fled to the land of Midian, where The Call of Moses he lived as a foreigner and had two sons." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 3, + "text": "19 8" + }, + { + "verseNum": 9, + "text": "| 57 spacious land, a land flowing with milk and honey—the home of the Canaanites, Hittites, 9 Amorites, Perizzites, Hivites, and Jebusites. So I will stretch out My hand and strike him. the Egyptians with all the wonders I will perform 21 among them. And after that, he will release you. 10 And now the cry of the Israelites has reached Me, and I have seen how severely the Egyptians are oppressing them. Therefore, go! I am send- ing you to Pharaoh to bring My people the Israel- 11 ites out of Egypt.” a But Moses asked God, “Who am I, that I should go to Pharaoh and bring the Israelites out of 12 Egypt?” “I will surely be with you,” God said, “and this will be the sign to you that I have sent you: When you have brought the people out of Egypt, all of 13 you will worship God on this mountain.” b Then Moses asked God, “Suppose I go to the Is- raelites and say to them, ‘The God of your fathers has sent me to you,’ and they ask me, ‘What is His 14 name?’ What should I tell them?” c God said to Moses, “I AM WHO I AM. This is what you are to say to the Israelites: ‘I AM has 15 sent me to you.’ ” God also told Moses, “Say to the Israelites, ‘The LORD, the God of your fathers—the God of Abra- ham, the God of Isaac, and the God of Jacob—has sent me to you.’ This is My name forever, and this is how I am to be remembered in every genera- 16 tion. Go, assemble the elders of Israel and say to them, ‘The LORD, the God of your fathers—the God of Abraham, Isaac, and Jacob—has appeared to me an" + }, + { + "verseNum": 10, + "text": "The Appointment of Aaron 26 10 “Please, Lord,” Moses replied, “I have never been eloquent, neither in the past nor since You have spoken to Your servant, for I am slow of 11 speech and tongue.” And the LORD said to him, “Who gave man his mouth? Or who makes the mute or the deaf, the sighted or the blind? Is it not I, the LORD? Now go! I will help you as you speak, and I will teach 13 you what to say.” 12 But Moses replied, “Please, Lord, send some- 14 one else.” 16 15 Then the anger of the LORD burned against Moses, and He said, “Is not Aaron the Levite your brother? I know that he can speak well, and he is now on his way to meet you. When he sees you, he will be glad in his heart. You are to speak to him and put the words in his mouth. I will help both of you to speak, and I will teach you what to do. He will speak to the people for you. He will be your spokesman, and it will be as if you were God to him. But take this staff in your hand so Moses Leaves for Egypt you can perform signs with it.” 18 17 So the LORD let him alone. (When she said, “bridegroom of blood,” she was referring to the The People Believe Moses and Aaron circumcision.) 27 28 Meanwhile, the LORD had said to Aaron, “Go and meet Moses in the wilderness.” So he went and met Moses at the mountain of God and kissed And Moses told Aaron everything the him. LORD had sent him to say, and all the signs He 29 had commanded him to perform. 30 Then Moses and Aaron went and assembled all and Aaron relayed the elders of" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 15, + "text": ". Tilgath-pilneser Heb.; some LXX manuscripts (see also Josh. 19:8) Tiglath-pileser 376 | 1 Chronicles 5:11 The Descendants of Gad 11 The descendants of Gad lived next to the Reubenites in the land of Bashan, as far as 12 Salecah: Joel was the chief, Shapham the second, then 13 Jaanai and Shaphat, who lived in Bashan. 14 Their kinsmen by families were Michael, Meshullam, Sheba, Jorai, Jacan, Zia, and Eber— seven in all. These were the sons of Abihail son of Huri, the son of Jaroah, the son of Gilead, the son of Michael, the son of Jeshishai, the son of Jahdo, the son of Buz. Ahi son of Abdiel, the 16 son of Guni, was head of their family. 15 They lived in Gilead, in Bashan and its towns, 17 and throughout the pasturelands of Sharon. All of them were recorded in the genealogies during the reigns of Jotham king of Judah and 18 Jeroboam king of Israel. The Reubenites, the Gadites, and the half- tribe of Manasseh had 44,760 warriors— valiant men who carried the shield and sword, 19 drew the bow, and were trained for battle. They waged war against the Hagrites, as well 20 as Jetur, Naphish, and Nodab. 21 And because they cried out to God in battle, they were helped against their enemies, and the Hagrites and all their allies were delivered into their hands. Because they put their trust in God, He answered their prayers. They seized the livestock of the Hagrites—50,000 camels, 22 250,000 sheep, and 2,000 donkeys. They also took 100,000 captives, and many others fell slain, because" + }, + { + "verseNum": 16, + "text": "| 59 So the taskmasters and foremen of the people went out and said to them, “This is what Pharaoh Go and says: ‘I am no longer giving you straw. get your own straw wherever you can find it; but 12 your workload will in no way be reduced.’ 11 ” 13 So the people scattered all over the land of The task- Egypt to gather stubble for straw. masters kept pressing them, saying, “Fulfill your quota each day, just as you did when straw was 14 provided.” Then the Israelite foremen, whom Pharaoh’s taskmasters had set over the people, were beaten and asked, “Why have you not fulfilled your quota of bricks yesterday or today, as you The Cry of the Israelites did before?” 15 16 So the Israelite foremen went and appealed to Pharaoh: “Why are you treating your servants this way? No straw has been given to your servants, yet we are told, ‘Make bricks!’ Look, your servants are being beaten, but the fault is 17 with your own people.” 18 “You are slackers!” Pharaoh replied. “Slackers! That is why you keep saying, ‘Let us go and sac- Now get to work. You will rifice to the LORD.’ be given no straw, yet you must deliver the full 19 quota of bricks.” The Israelite foremen realized they were in trouble when they were told, “You must not re- When they duce your daily quota of bricks.” left Pharaoh, they confronted Moses and Aaron, 21 who stood waiting to meet them. 20 “May the LORD look upon you and judge you,” the foremen said, “for you have made us a stench before Pharaoh and his officials; you hav" + }, + { + "verseNum": 17, + "text": "17 3 The sons of Gershon were Libni and 18 Shimei, by their clans. The sons of Kohath were Amram, Izhar, 19 Hebron, and Uzziel. Kohath lived 133 years. The sons of Merari were Mahli and Mushi. These were the clans of the Levites accord- 20 ing to their records. And Amram married his father’s sister Jochebed, and she bore him Aaron and 21 Moses. Amram lived 137 years. The sons of Izhar were Korah, Nepheg, 22 and Zichri. a The sons of Uzziel were Mishael, 23 Elzaphan, and Sithri. And Aaron married Elisheba, the daugh- ter of Amminadab and sister of Nahshon, and she bore him Nadab and Abihu, Eleazar 24 and Ithamar. b The sons of Korah were Assir, Elkanah, and Abiasaph. 25 Korahites. These were the clans of the Aaron’s son Eleazar married one of the daughters of Putiel, and she bore him Phinehas. 26 These were the heads of the Levite families by their clans. 27 It was this Aaron and Moses to whom the LORD said, “Bring the Israelites out of the land of Egypt by their divisions.” Moses and Aaron were the ones who spoke to Pharaoh king of 28 Egypt in order to bring the Israelites out of Egypt. 29 Now on the day that the LORD spoke to Moses He said to him, “I am the LORD; tell in Egypt, 30 Pharaoh king of Egypt everything I say to you.” But in the LORD’s presence Moses replied, “Since I am unskilled in speech, why would God Commands Moses and Aaron Pharaoh listen to me?” 7 2 The LORD answered Moses, “See, I have made you like God to Pharaoh, and your You are to brother Aaron will be" + }, + { + "verseNum": 24, + "text": ". is a variant of d 27 Eliab Gershon c 26 33 1 Chronicles 6:53 | 377 From the Kohathites: 34 g 36 35 Heman the singer, the son of Joel, the son of Samuel, son of Elkanah, the the son of Jeroham, the son of Eliel, the the son of Zuph, the son son of Toah, of Elkanah, the son of Mahath, the son of Amasai, the son of Elkanah, the son of Joel, the son of Azariah, the son of Zeph- aniah, the son of Tahath, the son of Assir, the son of Ebiasaph, the son of Korah, the son of Izhar, the son of Ko- hath, the son of Levi, the son of Israel. 37 38 39 Heman’s kinsman was Asaph, who served at his right hand: 40 41 the son of Malchijah, Asaph the son of Berechiah, the son of h Shimea, the son of Michael, the son of Baaseiah, the 42 son of Ethni, the son of Zerah, the son of Adaiah, the son of Ethan, the son of Zimmah, the son of Shimei, the son of Jahath, the son of Gershom, the son of Levi. 43 44 On the left were their kinsmen, the sons of Merari: 45 46 Ethan the son of Kishi, the son of Abdi, the son of Malluch, the son of Hashabiah, the son of Amaziah, the son of Hilkiah, the son of Amzi, the son of Bani, the son of Shemer, the son of Mahli, the son of Mu- shi, the son of Merari, the son of Levi. 47 The Descendants of Aaron i 49 Their fellow Levites were assigned to every kind of service of the tabernacle, the house of God. But Aaron and his sons did all the work of the Most Holy Place. They presented the offer- ings on the altar of burnt offering and on the altar of incense to make ato" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 10, + "text": "The Hebrew word traditionally translated as Hebrew was used for But I know that the king of Egypt will not b 12 a 10 allow you to go unless a mighty hand compels hand bosom Cited in" + }, + { + "verseNum": 15, + "text": "; here and in verse 10, in contrast to Moses’ staff, which became a Or ; also in verse 22 or Or or ; see" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 20, + "text": "| 61 And the LORD said to Moses, “Tell Aaron, ‘Take your staff and stretch out your hand over the wa- ters of Egypt—over their rivers and canals and ponds and all the reservoirs—that they may be- come blood.’ There will be blood throughout the land of Egypt, even in the vessels of wood and 20 stone.” a 21 Moses and Aaron did just as the LORD had commanded; in the presence of Pharaoh and his officials, Aaron raised the staff and struck the water of the Nile, and all the water was turned to The fish in the Nile died, and the river blood. smelled so bad that the Egyptians could not drink its water. And there was blood throughout the 22 land of Egypt. 23 But the magicians of Egypt did the same things by their magic arts. So Pharaoh’s heart was hard- ened, and he would not listen to Moses and Instead, Aaron, just as the LORD had said. 24 Pharaoh turned around, went into his palace, and So all the did not take any of this to heart. Egyptians dug around the Nile for water to drink, because they could not drink the water from the 25 river. And seven full days passed after the LORD had The Second Plague: Frogs struck the Nile. 8 3 2 Then the LORD said to Moses, “Go to Pharaoh and tell him that this is what the LORD says: ‘Let My people go, so that they may But if you refuse to let them go, I worship Me. The will plague your whole country with frogs. Nile will teem with frogs, and they will come into your palace and up to your bedroom and onto your bed, into the houses of your official" + }, + { + "verseNum": 21, + "text": "21 what the LORD says: ‘Let My people go, so that a But if you will not let My they may worship Me. people go, I will send swarms of flies upon you and your officials and your people and your houses. The houses of the Egyptians and even the 22 ground where they stand will be full of flies. But on that day I will give special treatment to the land of Goshen, where My people live; no swarms of flies will be found there. In this way 23 you will know that I, the LORD, am in the land. between My people and your people. This sign will take place tomor- 24 row.’ I will make a distinction ” b And the LORD did so. Thick swarms of flies poured into Pharaoh’s palace and into the houses of his officials. Throughout Egypt the land was 25 ruined by swarms of flies. Then Pharaoh summoned Moses and Aaron and said, “Go, sacrifice to your God within this 26 land.” But Moses replied, “It would not be right to do that, because the sacrifices we offer to the LORD our God would be detestable to the Egyptians. If we offer sacrifices that are detestable before the Egyptians, will they not stone us? We must make a three-day journey into the wilderness and sacrifice to the LORD our God as He com- 28 mands us.” 27 Pharaoh answered, “I will let you go and sacri- fice to the LORD your God in the wilderness, but 29 you must not go very far. Now pray for me.” “As soon as I leave you,” Moses said, “I will pray to the LORD, so that tomorrow the swarms of flies will depart from Pharaoh and his officials and h" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 16, + "text": "(see" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 63 The thunder and hail ceased, and the rain no 34 longer poured down on the land. When Pharaoh saw that the rain and hail and thunder had ceased, he sinned again and hardened his heart—he and his officials. So Pharaoh’s heart was hardened, and he would not let the Israelites go, just as the LORD had said The Eighth Plague: Locusts through Moses. 35 10 a Then the LORD said to Moses, “Go to Pharaoh, for I have hardened his heart and the hearts of his officials, that I may perform 2 these miraculous signs of Mine among them, and that you may tell your children and grand- children how severely I dealt with the Egyptians when I performed miraculous signs among them, 3 so that all of you may know that I am the LORD.” 4 So Moses and Aaron went to Pharaoh and told him, “This is what the LORD, the God of the He- brews, says: ‘How long will you refuse to humble yourself before Me? Let My people go, so that they may worship Me. But if you refuse to let My 5 people go, I will bring locusts into your territory tomorrow. They will cover the face of the land so that no one can see it. They will devour what- ever is left after the hail and eat every tree that grows in your fields. They will fill your houses and the houses of all your officials and every Egyptian—something neither your fathers nor your grandfathers have seen since the day they came into this land.’ 7 Then Moses turned and left Pharaoh’s presence. ” 6 Pharaoh’s officials asked him, “How long will this man be a snare to us?" + }, + { + "verseNum": 12, + "text": "12 Then the LORD said to Moses, “Stretch out your hand over the land of Egypt, so that the locusts may swarm over it and devour every plant in the land—everything that the hail has 13 left behind.” So Moses stretched out his staff over the land of Egypt, and throughout that day and night the LORD sent an east wind across the land. By 14 morning the east wind had brought the locusts. 15 The locusts swarmed across the land and set- tled over the entire territory of Egypt. Never be- fore had there been so many locusts, and never again will there be. They covered the face of all the land until it was black, and they consumed all the plants on the ground and all the fruit on the trees that the hail had left behind. Nothing green was left on any tree or plant in all the land of 16 Egypt. Pharaoh quickly summoned Moses and Aaron 17 and said, “I have sinned against the LORD your God and against you. Now please forgive my sin once more and appeal to the LORD your God, 18 that He may remove this death from me.” 19 So Moses left Pharaoh’s presence and ap- pealed to the LORD. And the LORD changed the wind to a very strong west wind that carried off the locusts and blew them into the Red Sea. Not 20 a single locust remained anywhere in Egypt. b a But the LORD hardened The Ninth Plague: Darkness he would not let the Israelites go. 21 Pharaoh’s heart, and Then the LORD said to Moses, “Stretch out your hand toward heaven, so that darkness may spread over the land of Egypt—a palpable 22 darkn" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–13) vites.” 9 3 In the first month of the second year after Is- rael had come out of the land of Egypt, the 2 LORD spoke to Moses in the Wilderness of Sinai: “The Israelites are to observe the Passover at its appointed time. You are to observe it at the ap- pointed time, at twilight on the fourteenth day of this month, in accordance with its statutes and 4 ordinances.” 5 a So Moses told the Israelites to observe the Pass- and they did so in the Wilderness of Sinai, over, at twilight on the fourteenth day of the first month. The Israelites did everything just as the 6 LORD had commanded Moses. But there were some men who were unclean a 3 due to a dead body, so they could not observe the between the two evenings of the fourteenth by day 7 Passover on that day. And they came before Mo- and said to Moses, ses and Aaron that same day “We are unclean because of a dead body, but why should we be excluded from presenting the LORD’s offering with the other Israelites at the 8 appointed time?” “Wait here until I find out what the LORD com- 10 9 mands concerning you,” Moses replied. 11 Then the LORD said to Moses, “Tell the Israelites: ‘When any one of you or your descend- ants is unclean because of a dead body, or is away on a journey, he may still observe the Passover to Such people are to observe it at twi- the LORD. light on the fourteenth day of the second month. They are to eat the lamb, together with unleav- they may not ened bread and bitter herbs; leave any of it until morning" + }, + { + "verseNum": 14, + "text": "–20. calendar, usually occurring within the months of March and April. to Jerusalem; it is also known as Sukkot, the autumn feast of pilgrimage to Jerusalem; it is later called the Feast of Weeks (see" + }, + { + "verseNum": 28, + "text": "| 65 leaven from your houses. Whoever eats anything leavened from the first day through the seventh 16 must be cut off from Israel. On the first day you are to hold a sacred assem- bly, and another on the seventh day. You must not do any work on those days, except to prepare 17 the meals—that is all you may do. e So you are to keep the Feast of Unleavened Bread, for on this very day I brought your divi- sions out of the land of Egypt. You must keep this 18 day as a permanent statute for the generations to In the first month you are to eat unleav- come. ened bread, from the evening of the fourteenth 19 day until the evening of the twenty-first day. For seven days there must be no leaven found in your houses. If anyone eats something leav- ened, that person, whether a foreigner or native of the land, must be cut off from the congregation You are not to eat anything leavened; of Israel. 21 eat unleavened bread in all your homes.” 20 Then Moses summoned all the elders of Israel and told them, “Go at once and select 22 for yourselves a lamb for each family, and slaugh- ter the Passover lamb. Take a cluster of hys- sop, dip it into the blood in the basin, and brush the blood on the top and sides of the doorframe. None of you shall go out the door of his house un- 23 til morning. When the LORD passes through to strike down the Egyptians, He will see the blood on the top and sides of the doorframe and will pass over that doorway; so He will not allow the destroyer 24 to enter your ho" + }, + { + "verseNum": 29, + "text": "The Tenth Plague: Death of the Firstborn Instructions for the Passover 29 43 Now at midnight the LORD struck down every firstborn male in the land of Egypt, from the firstborn of Pharaoh, who sat on his throne, to the firstborn of the prisoner in the dungeon, as 30 well as all the firstborn among the livestock. During the night Pharaoh got up—he and all his officials and all the Egyptians—and there was loud wailing in Egypt; for there was no house The Exodus Begins without someone dead. 31 32 Then Pharaoh summoned Moses and Aaron by night and said, “Get up, leave my people, both you and the Israelites! Go, worship the LORD as you Take your flocks and herds as have requested. well, just as you have said, and depart! And bless 33 me also.” And in order to send them out of the land quickly, the Egyptians urged the people on. “For 34 otherwise,” they said, “we are all going to die!” So the people took their dough before it was leavened, carrying it on their shoulders in knead- 35 ing bowls wrapped in clothing. 36 Furthermore, the Israelites acted on Moses’ word and asked the Egyptians for articles of sil- ver and gold, and for clothing. And the LORD gave the people such favor in the sight of the Egyptians that they granted their request. In this 37 way they plundered the Egyptians. a 38 The Israelites journeyed from Rameses to Suc- coth with about 600,000 men on foot, besides And a mixed multitude women and children. also went up with them, along with great droves 39 of livestock" + }, + { + "verseNum": 46, + "text": "and" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–16) LORD your God will bless you in all you do. 19 20 You must set apart to the LORD your God every firstborn male produced by your herds and flocks. You are not to put the firstborn of your oxen to work, nor are you to shear the firstborn Each year you and your house- of your flock. hold are to eat it before the LORD your God in the 21 place the LORD will choose. But if an animal has a defect, is lame or blind, 22 or has any serious flaw, you must not sacrifice it to the LORD your God. Eat it within your gates; both the ceremonially unclean and clean may eat But you it as they would a gazelle or a deer. must not eat the blood; pour it on the ground like Passover and the Feast of Unleavened Bread water. (Ex. 12:14–28 ; Lev. 23:4–8 ; Num. 28:16–25) 23 c Observe the month of Abib and cele- brate the Passover to the LORD your God, because in the month of Abib the LORD your 2 God brought you out of Egypt by night. You are to offer to the LORD your God the Pass- over sacrifice from the herd or flock in the place 3 the LORD will choose as a dwelling for His Name. You must not eat leavened bread with it; for seven days you are to eat with it unleavened bread, the bread of affliction, because you left the land of Egypt in haste—so that you may remem- ber for the rest of your life the day you left the 4 land of Egypt. No leaven is to be found in all your land for seven days, and none of the meat you sacrifice in the evening of the first day shall remain until 5 morning. 6 You are not" + }, + { + "verseNum": 2, + "text": "Or" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 14, + "text": "| 67 day nor the pillar of fire by night left its place be- Pharaoh Pursues the Israelites fore the people. 2 14 Then the LORD said to Moses, “Tell the Israelites to turn back and encamp be- fore Pi-hahiroth, between Migdol and the sea. You are to encamp by the sea, directly opposite 3 Baal-zephon. d 4 For Pharaoh will say of the Israelites, ‘They are wandering the land in confusion; the wilderness has boxed them in.’ Phar- aoh’s heart so that he will pursue them. But I will gain honor by means of Pharaoh and all his army, and the Egyptians will know that I am the LORD.” 5 So this is what the Israelites did. And I will harden When the king of Egypt was told that the people had fled, Pharaoh and his officials changed their minds about them and said, “What have we 6 done? We have released Israel from serving us.” 7 So Pharaoh prepared his chariot and took his He took 600 of the best army with him. chariots, and all the other chariots of Egypt, with 8 officers over all of them. e 9 And the LORD hardened the heart of Pharaoh king of Egypt so that he pursued the Israelites, The Egyp- who were marching out defiantly. tians—all Pharaoh’s horses and chariots, horse- men and troops—pursued the Israelites and overtook them as they camped by the sea near 10 Pi-hahiroth, opposite Baal-zephon. 11 As Pharaoh approached, the Israelites looked up and saw the Egyptians marching after them, and they were terrified and cried out to the They said to Moses, “Was it because LORD. there were no gra" + }, + { + "verseNum": 15, + "text": "Parting the Red Sea 15 17 16 Then the LORD said to Moses, “Why are you crying out to Me? Tell the Israelites to go for- And as for you, lift up your staff and ward. stretch out your hand over the sea and divide it, so that the Israelites can go through the sea on dry ground. And I will harden the hearts of the Egyptians so that they will go in after them. Then I will gain honor by means of Pharaoh and all his The Egyp- army and chariots and horsemen. tians will know that I am the LORD when I am honored through Pharaoh, his chariots, and his 19 horsemen.” 18 a 20 And the angel of God, who had gone before the camp of Israel, withdrew and went behind them. The pillar of cloud also moved from before so that it came them and stood behind them, b between the camps of Egypt and Israel. The cloud was there in the darkness, but it lit up the night. So all night long neither camp went near the 21 other. Then Moses stretched out his hand over the sea, and all that night the LORD drove back the sea with a strong east wind that turned it into dry and the Isra- land. So the waters were divided, elites went through the sea on dry ground, with 23 walls of water on their right and on their left. 22 24 And the Egyptians chased after them—all Pharaoh’s horses, chariots, and horsemen—and At morning watch, followed them into the sea. however, the LORD looked down on the army of the Egyptians from the pillar of fire and cloud, He and He threw their camp into confusion. caused their chariot wheels" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 4, + "text": ". ; that is, approximately 2.87 to 3.45 miles (4.62 to 5.55 kilometers) SBL, NA, NE, and WH 37 38 Everyone the Father gives Me will come to Me, and the one who comes to Me I will never drive For I have come down from heaven, not away. to do My own will, but to do the will of Him who 39 sent Me. 40 And this is the will of Him who sent Me, that I shall lose none of those He has given Me, but raise them up at the last day. For it is My Fa- ther’s will that everyone who looks to the Son and believes in Him shall have eternal life, and I 41 will raise him up at the last day.” 42 At this, the Jews began to grumble about Jesus because He had said, “I am the bread that came down from heaven.” They were asking, “Is this not Jesus, the son of Joseph, whose father and mother we know? How then can He say, ‘I 43 have come down from heaven?’” 44 45 “Stop grumbling among yourselves,” Jesus re- plied. “No one can come to Me unless the Fa- ther who sent Me draws him, and I will raise him up at the last day. It is written in the Prophets: ‘And they will all be taught by God.’ Everyone 46 who has heard the Father and learned from Him comes to Me— not that anyone has seen the Father except the One who is from God; only He 47 has seen the Father. a 48 49 Truly, truly, I tell you, he who believes has Your fa- I am the bread of life. eternal life. 50 thers ate the manna in the wilderness, yet they This is the bread that comes down from died. 51 heaven, so that anyone may eat of it and not die. I am" + }, + { + "verseNum": 8, + "text": "| 69 could not drink the water there because it was 24 bitter. (That is why it was named Marah.) 25 So the people grumbled against Moses, saying, “What are we to drink?” And Moses cried out to the LORD, and the LORD showed him a log. And when he cast it into the waters, they were sweetened. 26 There the LORD made for them a statute and an saying, ordinance, and there He tested them, “If you will listen carefully to the voice of the LORD your God, and do what is right in His eyes, and pay attention to His commands, and keep all His statutes, then I will not bring on you any of the diseases I inflicted on the Egyptians. For I am 27 the LORD who heals you.” Then they came to Elim, where there were twelve springs of water and seventy palm trees, Manna and Quail from Heaven and they camped there by the waters. 16 c 2 On the fifteenth day of the second month after they had left the land of Egypt, the whole congregation of Israel set out from Elim which is between and came to the Desert of Sin, And there in the desert the Elim and Sinai. 3 whole congregation of Israel grumbled against Moses and Aaron. “If only we had died by the LORD’s hand in the land of Egypt!” they said. “There we sat by pots of meat and ate our fill of bread, but you have brought us into this desert to 4 starve this whole assembly to death!” Then the LORD said to Moses, “Behold, I will rain down bread from heaven for you. Each day the people are to go out and gather enough for that day. In this way I will test w" + }, + { + "verseNum": 9, + "text": "the morning, for He has heard your grumbling against Him. Who are we? Your grumblings are 9 not against us but against the LORD.” Then Moses said to Aaron, “Tell the whole con- gregation of Israel, ‘Come before the LORD, for 10 He has heard your grumbling.’ ” And as Aaron was speaking to the whole congregation of Israel, they looked toward the desert, and there in a cloud the glory of the LORD 11 appeared. 12 a Then the LORD said to Moses, “I have heard the grumbling of the Israelites. Tell them, ‘At twi- light you will eat meat, and in the morning you will be filled with bread. Then you will know that 13 I am the LORD your God.’ ” That evening quail came and covered the 14 camp, and in the morning there was a layer of When the layer of dew dew around the camp. had evaporated, there were thin flakes on the de- When sert floor, as fine as frost on the ground. the Israelites saw it, they asked one another, “What is it?” For they did not know what it was. 15 16 So Moses told them, “It is the bread that the This is what the LORD has given you to eat. LORD has commanded: ‘Each one is to gather as for much as he needs. You may take an omer 17 each person in your tent.’ ” b 18 c So the Israelites did this. Some gathered more, When they measured it by the and some less. omer, he who gathered much had no excess, and Each one he who gathered little had no shortfall. 19 gathered as much as he needed to eat. 20 Then Moses said to them, “No one may keep But they did not listen any of it u" + }, + { + "verseNum": 16, + "text": "" + }, + { + "verseNum": 18, + "text": "See 1 Corinthians 16:3–4. Or 1040 | 2 Corinthians 9:8 a should give what he has decided in his heart to 8 give, not out of regret or compulsion. For God And God is able to make loves a cheerful giver. all grace abound to you, so that in all things, at all times, having all that you need, you will abound in every good work. As it is written: 9 “He has scattered abroad His gifts to b 10 the poor; His righteousness endures forever.” 11 righteousness. Now He who supplies seed to the sower and bread for food will supply and multiply your store of seed and will increase the harvest of your You will be enriched in every way to be generous on every occasion, and through us your generosity will produce thanks- For this ministry of service is not giving to God. only supplying the needs of the saints but is also overflowing in many expressions of thanksgiving 13 to God. 12 14 Because of the proof this ministry provides, the saints will glorify God for your obedient con- fession of the gospel of Christ, and for the gener- osity of your contribution to them and to all the And their prayers for you will express others. their affection for you, because of the surpassing grace God has given you. Thanks be to God for Paul’s Apostolic Authority His indescribable gift! 15 10 2 Now by the mildness and gentleness of Christ, I appeal to you—I, Paul, who am humble when face to face with you, but bold I beg you that when I come I may when away. not need to be as bold as I expect toward those 3 who p" + }, + { + "verseNum": 22, + "text": "–30) 4 2 Therefore, while the promise of entering His rest still stands, let us be careful that none of For we you be deemed to have fallen short of it. also received the good news just as they did; but the message they heard was of no value to them, since they did not share the faith of those who 3 comprehended it. a Now we who have believed enter that rest. As for the others, it is just as God has said: b “So I swore on oath in My anger, ‘They shall never enter My rest.’ ” 4 And yet His works have been finished since the foundation of the world. For somewhere He has spoken about the seventh day in this manner: “And on the seventh day God rested from all His works.” And again, as He says in the passage 6 above: “They shall never enter My rest.” 5 c 7 Since, then, it remains for some to enter His rest, and since those who formerly heard the good news did not enter because of their disobe- God again designated a certain day as dience, “Today,” when a long time later He spoke through David as was just stated: “Today, if you 8 hear His voice, do not harden your hearts.” 9 d 10 For if Joshua had given them rest, God would not have spoken later about another day. There remains, then, a Sabbath rest for the people of For whoever enters God’s rest also rests God. 11 from his own work, just as God did from His. Let us, therefore, make every effort to enter that rest, so that no one will fall by following the The Living Word (2 Timothy 3:10–17) same pattern of disobedience. 12 13 For" + }, + { + "verseNum": 36, + "text": "" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–7) unclean until evening.” 20 In the first month, the whole congrega- tion of Israel entered the Wilderness of Zin and stayed in Kadesh. There Miriam died and 2 was buried. 3 4 Now there was no water for the congregation, so they gathered against Moses and Aaron. The people quarreled with Moses and said, “If only we had perished with our brothers before the LORD! Why have you brought the LORD’s assembly into this wilderness for us and our livestock to die here? Why have you led us up out of Egypt to bring us to this wretched place? It is not a place of grain, figs, vines, or pomegran- 6 ates—and there is no water to drink!” 5 8 Then Moses and Aaron went from the presence of the assembly to the entrance to the Tent of 7 Meeting. They fell facedown, and the glory of the LORD appeared to them. And the LORD said to Moses, “Take the staff and assemble the congre- gation. You and your brother Aaron are to speak to the rock while they watch, and it will pour out its water. You will bring out water from the rock and provide drink for the congregation and their 9 livestock.” 10 11 So Moses took the staff from the LORD’s pres- Then ence, just as he had been commanded. Moses and Aaron gathered the assembly in front of the rock, and Moses said to them, “Listen now, you rebels, must we bring you water out of this rock?” Then Moses raised his hand and struck the rock twice with his staff, so that a great amount of water gushed out, and the congrega- 12 tion and their livestock were able t" + }, + { + "verseNum": 7, + "text": ". the Sea of Reeds destruction quarreling means d 4 b 2 means . Or moved on and camped on the other side of the Arnon, in the wilderness that extends into the Amorite territory. 14 Now the Arnon is the border between the Moab- Therefore it is stated in ites and the Amorites. the Book of the Wars of the LORD: “Waheb in Suphah 15 and the wadis of the Arnon, even the slopes of the wadis 16 that extend to the site of Ar a and lie along the border of Moab.” From there they went on to Beer, 17 the well where the LORD said to Moses, “Gather the peo- ple so that I may give them water.” Then Israel sang this song: “Spring up, O well, 18 all of you sing to it! The princes dug the well; the nobles of the people hollowed it out with their scepters and with their staffs.” 19 20 From the wilderness the Israelites went on to Mattanah, and from Mattanah to Nahaliel, and and from Bamoth to from Nahaliel to Bamoth, the valley in Moab where the top of Pisgah over- The Defeat of Sihon" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 12, + "text": "| 71 15 d 16 And Moses built an altar and named it The LORD Is My Banner. “Indeed,” he said, “a hand was lifted up toward the throne of the LORD. The LORD will war against Amalek from generation The Visit of Jethro to generation.” 18 e 3 Now Moses’ father-in-law Jethro, the priest of Midian, heard about all that God had done for Moses and His people Israel, and 2 how the LORD had brought Israel out of Egypt. f After Moses had sent back his wife Zipporah, his father-in-law Jethro had received her, along with her two sons. One son was named Ger- 4 shom, for Moses had said, “I have been a for- eigner in a foreign land.” The other son was named Eliezer, for Moses had said, “The God of my father was my helper and delivered me from 5 the sword of Pharaoh.” g Moses’ father-in-law Jethro, along with Moses’ wife and sons, came to him in the desert, where He he was encamped at the mountain of God. sent word to Moses, “I, your father-in-law Jethro, am coming to you with your wife and her two 7 sons.” 6 8 So Moses went out to meet his father-in-law and bowed down and kissed him. They greeted each other and went into the tent. Then Moses recounted to his father-in-law all that the LORD had done to Pharaoh and the Egyptians for Israel’s sake, all the hardships they had encoun- tered along the way, and how the LORD had 9 delivered them. 10 And Jethro rejoiced over all the good things the LORD had done for Israel, whom He had rescued Jethro de- from the hand of the Egyptians. clared, “Blesse" + }, + { + "verseNum": 13, + "text": "Jethro Advises Moses" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 12, + "text": "–13 ;" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–17) on the mountain. 5 At that time I was standing between the LORD and you to declare to you the word of the LORD, because you were afraid of the fire and would not “I am the go up the mountain. And He said: LORD your God, who brought you out of the land of Egypt, out of the house of slavery. 7 6 e 8 You shall have no other gods before Me. You shall not make for yourself an idol in the form of anything in the heavens above, 9 on the earth below, or in the waters beneath. You shall not bow down to them or worship them; for I, the LORD your God, am a jealous God, visiting the iniquity of the fathers on their children to the third and fourth but generations of those who hate Me, showing loving devotion to a thousand gen- erations of those who love Me and keep My 11 commandments. 10 f You shall not take the name of the LORD your God in vain, for the LORD will not leave anyone unpunished who takes His name in 12 vain. Observe the Sabbath day by keeping it holy, as the LORD your God has commanded Or e 7 ; Syriac besides Me That is, the Dead Sea Note that" + }, + { + "verseNum": 4, + "text": "–6; Deuteron- Osorkon made their sons and their daughters pass through the fire ; see also LXX. is likely an abbreviation for 21 34 2 Kings 18:8 | 359 22 23 When the LORD had torn Israel away from the house of David, they made Jeroboam son of Ne- bat king, and Jeroboam led Israel away from fol- lowing the LORD and caused them to commit a great sin. The Israelites persisted in all the sins that Jeroboam had committed and did not turn away from them. Finally, the LORD removed Israel from His presence, as He had declared through all His servants the prophets. So Israel was exiled from their homeland into Assyria, Samaria Resettled where they are to this day. 24 Then the king of Assyria brought people from Babylon, Cuthah, Avva, Hamath, and Sepharvaim and settled them in the towns of Samaria to re- place the Israelites. They took possession of Sa- 25 maria and lived in its towns. 26 Now when the settlers first lived there, they did not worship the LORD, so He sent lions among them, which killed some of them. So they spoke to the king of Assyria, saying, “The peoples that you have removed and placed in the cities of Samaria do not know the requirements of the God of the land. Because of this, He has sent lions among them, which are indeed killing them 27 off.” Then the king of Assyria commanded: “Send back one of the priests you carried off from Sa- maria, and have him go back to live there and 28 teach the requirements of the God of the land.” Thus one of the priests they had car" + }, + { + "verseNum": 12, + "text": ";" + }, + { + "verseNum": 13, + "text": ";" + }, + { + "verseNum": 14, + "text": "; Deuteronomy causes her to commit adultery Greek alms h 38 d 31 e 32 m 1 BYZ and TR ; see" + }, + { + "verseNum": 17, + "text": ";" + }, + { + "verseNum": 18, + "text": "–21 ;" + }, + { + "verseNum": 19, + "text": "| 73 “Be prepared for the washed their clothes. third day,” he said to the people. “Do not draw The LORD Visits Sinai near to a woman.” 16 On the third day, when morning came, there was thunder and lightning. A thick cloud was upon the mountain, and a very loud blast of the ram’s horn went out, so that all the people in the Then Moses brought the peo- camp trembled. ple out of the camp to meet with God, and they 18 stood at the foot of the mountain. 17 Mount Sinai was completely enveloped in smoke, because the LORD had descended on it in fire. And the smoke rose like the smoke of a fur- 19 nace, and the whole mountain quaked violently. And as the sound of the ram’s horn grew louder and louder, Moses spoke and God an- 20 swered him in the thunder. 21 The LORD descended to the top of Mount Sinai and called Moses to the summit. So Moses and the LORD said to him, “Go down went up, and warn the people not to break through to see Even the the LORD, lest many of them perish. priests who approach the LORD must consecrate themselves, or the LORD will break out against 23 them.” 22 But Moses said to the LORD, “The people can- not come up Mount Sinai, for You solemnly warned us, ‘Put a boundary around the mountain 24 ” and set it apart as holy.’ And the LORD replied, “Go down and bring Aaron with you. But the priests and the people must not break through to come up to the LORD, 25 or He will break out against them.” So Moses went down to the people and spoke The Ten Commandments (De. 5:" + }, + { + "verseNum": 20, + "text": "20 21 “Do not be afraid,” Moses replied. “For God has come to test you, so that the fear of Him may be before you, to keep you from sinning.” And the people stood at a distance as Moses approached Idolatry Forbidden (1 Corinthians 10:14–22) the thick darkness where God was. 22 23 Then the LORD said to Moses, “This is what you are to tell the Israelites: ‘You have seen for yourselves that I have spoken to you from You are not to make any gods along- heaven. side Me; you are not to make for yourselves gods 24 of silver or gold. You are to make for Me an altar of earth, and sacrifice on it your burnt offerings and peace of- ferings, your sheep and goats and cattle. In every place where I cause My name to be remembered, 25 I will come to you and bless you. Now if you make an altar of stones for Me, you must not build it with stones shaped by tools; for if you use a chisel on it, you will defile it. And you must not go up to My altar on steps, lest your Hebrew Servants" + }, + { + "verseNum": 22, + "text": "–26) you can stand up under it. 14 15 I do all this for the sake of the gospel, so that I Run Your Race to Win may share in its blessings. 24 25 Do you not know that in a race all the runners run, but only one receives the prize? Run in such a way as to take the prize. Everyone who com- petes in the games trains with strict discipline. They do it for a crown that is perishable, but we There- do it for a crown that is imperishable. fore I do not run aimlessly; I do not fight like I am No, I discipline my body and beating the air. make it my slave, so that after I have preached to Warnings from Israel’s Past others, I myself will not be disqualified." + }, + { + "verseNum": 25, + "text": ";" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–11) poor and needy in your land. 12 b If a fellow Hebrew, a man or a woman, is sold to you and serves you six years, then in the sev- 13 enth year you must set him free. 14 And when you release him, do not send him You are to furnish him away empty-handed. liberally from your flock, your threshing floor, 15 and your winepress. You shall give to him as the Remember LORD your God has blessed you. that you were slaves in the land of Egypt, and the LORD your God redeemed you; that is why I am 16 giving you this command today. 17 But if your servant says to you, ‘I do not want to leave you,’ because he loves you and your then take household and is well off with you, an awl and pierce it through his ear into the door, and he will become your servant for life. And 18 treat your maidservant the same way. Do not regard it as a hardship to set your serv- make courageous a 7 ant free, because his six years of service were make strong sells himself b 12 16" + }, + { + "verseNum": 17, + "text": ";" + }, + { + "verseNum": 24, + "text": ";" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 21, + "text": "| 75 8 If a man gives his neighbor money or goods for safekeeping and they are stolen from the neighbor’s house, the thief, if caught, must pay back double. If the thief is not found, the owner of the house must appear before the judges to determine whether he has taken his neighbor’s 9 property. c In all cases of illegal possession of an ox, a don- key, a sheep, a garment, or any lost item that someone claims, ‘This is mine,’ both parties shall bring their cases before the judges. The one whom the judges find guilty must pay back dou- 10 ble to his neighbor. d 11 If a man gives a donkey, an ox, a sheep, or any other animal to be cared for by his neighbor, but it dies or is injured or stolen while no one is watching, an oath before the LORD shall be made between the parties to determine whether or not the man has taken his neighbor’s property. The owner must accept the oath and require no 12 restitution. But if the animal was actually stolen from the 13 neighbor, he must make restitution to the owner. If the animal was torn to pieces, he shall bring it as evidence; he need not make restitution for 14 the torn carcass. If a man borrows an animal from his neighbor and it is injured or dies while its owner is not present, he must make full restitution. If the owner was present, no restitution is required. If Laws of Social Responsibility the animal was rented, the fee covers the loss. 16 15 17 If a man seduces a virgin who is not pledged in marriage and sleeps with her, he must" + }, + { + "verseNum": 22, + "text": "22 23 24 You must not mistreat any widow or orphan. If you do mistreat them, and they cry out to Me My an- in distress, I will surely hear their cry. ger will be kindled, and I will kill you with the sword; then your wives will become widows and 25 your children will be fatherless. If you lend money to one of My people among you who is poor, you must not act as a creditor to 26 him; you are not to charge him interest. 27 If you take your neighbor’s cloak as collateral, because his cloak is return it to him by sunset, the only covering he has for his body. What else will he sleep in? And if he cries out to Me, I will 28 hear, for I am compassionate. a You must not blaspheme God or curse the 29 ruler of your people. 30 You must not hold back offerings from your granaries or vats. You are to give Me the firstborn You shall do likewise with your of your sons. cattle and your sheep. Let them stay with their mothers for seven days, but on the eighth day 31 you are to give them to Me. You are to be My holy people. You must not eat the meat of a mauled animal found in the field; Justice and Mercy you are to throw it to the dogs. 23 2 witness. “You shall not spread a false report. Do not join the wicked by being a malicious You shall not follow the crowd in wrongdoing. When you testify in a lawsuit, do not pervert jus- And do not show tice by siding with the crowd. 4 favoritism to a poor man in his lawsuit. 3 If you encounter your enemy’s stray ox or don- 5 key, you must return it to" + }, + { + "verseNum": 28, + "text": "(see also LXX) Or That is, at nine tonight 35 18" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 14, + "text": "–19)" + }, + { + "verseNum": 16, + "text": ") or Jerusalem; it is later called (see" + }, + { + "verseNum": 20, + "text": "–33) 12 If you listen to these ordinances and keep them carefully, then the LORD your God will keep 13 His covenant and the loving devotion that He He will love you and swore to your fathers. bless you and multiply you. He will bless the fruit of your womb and the produce of your land— your grain, new wine, and oil, the young of your herds and the lambs of your flocks—in the land You that He swore to your fathers to give you. will be blessed above all peoples; among you there will be no barren man or woman or live- 15 stock. 14 16 And the LORD will remove from you all sick- ness. He will not lay upon you any of the terrible diseases you knew in Egypt, but He will You must de- inflict them on all who hate you. stroy all the peoples the LORD your God will deliver to you. Do not look on them with pity. Do not worship their gods, for that will be a snare to 17 you. 18 19 You may say in your heart, “These nations are greater than we are; how can we drive But do not be afraid of them. Be them out?” sure to remember what the LORD your God did to Pharaoh and all Egypt: the great trials that you saw, the signs and wonders, and the mighty hand and outstretched arm by which the LORD your God brought you out. The LORD your God 20 will do the same to all the peoples you now fear. 21 Moreover, the LORD your God will send the hornet against them until even the survivors hid- Do not be terrified ing from you have perished. by them, for the LORD your God, who is among 22 you, is a great and a" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 8, + "text": "SBL does not include Or i 19 BYZ, TR the Holy of Holies h 16 d 5 Or" + }, + { + "verseNum": 18, + "text": "| 77 20 21 Behold, I am sending an angel before you to protect you along the way and to bring you to the place I have prepared. Pay attention to him and listen to his voice; do not defy him, for he will not forgive rebellion, since My Name is in 22 him. 23 But if you will listen carefully to his voice and do everything I say, I will be an enemy to your enemies and a foe to your foes. For My angel will go before you and bring you into the land of the Amorites, Hittites, Perizzites, Canaanites, 24 Hivites, and Jebusites, and I will annihilate them. You must not bow down to their gods or serve them or follow their practices. Instead, you are to demolish them and smash their sacred stones to 25 pieces. a So you shall serve the LORD your God, and He will bless your bread and your water. And I will No take away sickness from among you. woman in your land will miscarry or be barren; I 27 will fulfill the number of your days. 26 I will send My terror ahead of you and throw into confusion every nation you encounter. I will make all your enemies turn and run. I will send the hornet before you to drive the Hivites and 29 Canaanites and Hittites out of your way. 28 I will not drive them out before you in a single year; otherwise the land would become desolate 30 and wild animals would multiply against you. Little by little I will drive them out ahead of you, until you become fruitful and possess the 31 land. b And I will establish your borders from the Red to the Sea of the Philistines," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Offerings for the Tabernacle" + }, + { + "verseNum": 5, + "text": ". 20 holy things, do this for them: Aaron and his sons are to go in and assign each man his task and But the Kohathites are not what he is to carry. to go in and look at the holy objects, even for a The Duties of the Gershonites moment, or they will die.”" + }, + { + "verseNum": 10, + "text": "–16) with gold, and their five bases were bronze. 37 Bezalel went on to construct the ark of a acacia wood, two and a half cubits long, a 2 cubit and a half wide, and a cubit and a half high. 3 4 He overlaid it with pure gold, both inside and And he out, and made a gold molding around it. cast four gold rings for its four feet, two rings on Then he made one side and two on the other. poles of acacia wood and overlaid them with gold. He inserted the poles into the rings on the The Mercy Seat" + }, + { + "verseNum": 17, + "text": "–22) sides of the ark in order to carry it. 6 5 b 8 7 He constructed a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide. He made two cherubim of hammered one cherub gold at the ends of the mercy seat, 9 on one end and one on the other, all made from one piece of gold. And the cherubim had wings that spread upward, overshadowing the mercy seat. The cherubim faced each other, looking to- The Table of Showbread ward the mercy seat." + }, + { + "verseNum": 23, + "text": "–30 ;" + }, + { + "verseNum": 25, + "text": "" + }, + { + "verseNum": 31, + "text": "–40 ; 37:17–24) 2 Then the LORD said to Moses, “Speak to Aaron and tell him: ‘When you set up the seven lamps, they are to light the area in front of 3 the lampstand.’ ” And Aaron did so; he set up the lamps facing to- ward the front of the lampstand, just as the LORD 4 had commanded Moses. This is how the lampstand was constructed: it was made of hammered gold from its base to its blossoms, fashioned according to the pattern the Cleansing the Levites LORD had shown Moses. 5 6 7 Again the LORD spoke to Moses, saying, “Take the Levites from among the Israelites and make them ceremonially clean. This is what you must do to cleanse them: Sprinkle them with the water of purification. Have them shave their whole bodies and wash their clothes, and so purify 8 themselves. 11 Then have them take a young bull with its grain offering of fine flour mixed with oil, and you are 9 to take a second young bull for a sin offering. Bring the Levites before the Tent of Meeting 10 and assemble the whole congregation of Israel. You are to present the Levites before the LORD and have the Israelites lay their hands upon Aaron is to present the Levites before them. the LORD as a wave offering from the sons of Is- rael, so that they may perform the service of the And the Levites are to lay their hands on LORD. the heads of the bulls, and offer to the LORD one as a sin offering and the other as a burnt offering, 13 to make atonement for the Levites. 12 14 You are to have the Levites stand before Aaron" + }, + { + "verseNum": 39, + "text": "" + }, + { + "verseNum": 40, + "text": "; see also" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–6) 7 8 9 All the skilled craftsmen among the workmen made the ten curtains for the tabernacle. They were made of finely spun linen, as well as blue, purple, and scarlet yarn, with cherubim skillfully Each curtain was twenty- worked into them. eight cubits long and four cubits wide; all the And he joined five curtains were the same size. of the curtains together, and the other five he 11 joined as well. 10 a 12 He made loops of blue material on the edge of the end curtain in the first set, and also on the He made fifty end curtain in the second set. loops on one curtain and fifty loops on the end curtain of the second set, so that the loops lined He also made fifty up opposite one another. gold clasps to join the curtains together, so that the tabernacle was a unit. a 9 b 15 c 19 d 21 13 The Eleven Curtains of Goat Hair" + }, + { + "verseNum": 7, + "text": "–14) 14 He then made curtains of goat hair for the tent 15 over the tabernacle—eleven curtains in all. b Each of the eleven curtains was the same 16 size—thirty cubits long and four cubits wide. 17 He joined five of the curtains into one set and He made fifty loops the other six into another. along the edge of the end curtain in the first set, 18 and fifty loops along the edge of the correspond- He also made fifty ing curtain in the second set. 19 bronze clasps to join the tent together as a unit. c Additionally, he made for the tent a covering of ram skins dyed red, and over that a covering of The Frames and Bases" + }, + { + "verseNum": 15, + "text": "–30) fine leather. 20 21 d e Next, he constructed upright frames of acacia Each frame was ten wood for the tabernacle. Two cubits long and a cubit and a half wide. tenons were connected to each other for each frame. He made all the frames of the tabernacle 23 in this way. 22 24 He constructed twenty frames for the south side of the tabernacle, with forty silver bases to put under the twenty frames—two ba- 25 ses for each frame, one under each tenon. 26 For the second side of the tabernacle, the north and forty silver side, he made twenty frames 27 bases—two bases under each frame. 28 29 He made six frames for the rear of the taber- and two frames for the nacle, the west side, coupled two back corners of the tabernacle, together from bottom to top and fitted into a 30 single ring. He made both corners in this way. So there were eight frames and sixteen silver 31 bases—two under each frame. 32 He also made five crossbars of acacia wood for five the frames on one side of the tabernacle, for those on the other side, and five for those on 33 the rear side of the tabernacle, to the west. 34 He made the central crossbar to run through the center of the frames, from one end to the And he overlaid the frames with gold other. and made gold rings to hold the crossbars. He also overlaid the crossbars with gold. Each of the ten curtains was approximately 42 feet long and 6 feet wide (12.8 meters long and 1.8 meters wide). Each of the eleven curtains was approximately 45 feet long and 6 fe" + }, + { + "verseNum": 29, + "text": "| 79 35 And on the lampstand there shall be four cups shaped like almond blossoms with buds and pet- For the six branches that extend from the als. lampstand, a bud must be under the first pair of branches, a bud under the second pair, and a bud The buds and branches under the third pair. are to be all of one piece with the lampstand, 37 hammered out of pure gold. 36 38 Make seven lamps and set them up on the lampstand so that they illuminate the area in 39 The wick trimmers and their trays front of it. The lampstand and all must be of pure gold. a these utensils shall be made from a talent of pure 40 gold. b See to it that you make everything according to The Ten Curtains for the Tabernacle the pattern shown you on the mountain." + }, + { + "verseNum": 30, + "text": "30 So you are to set up the tabernacle according The Veil" + }, + { + "verseNum": 31, + "text": "–35) 13" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–8) a 38 b 2 Bezalel constructed the altar of burnt offering from acacia wood. It was square, five cubits long, five cubits wide, and three cubits He made a horn at each of its four cor- high. ners, so that the horns and altar were of one 3 piece, and he overlaid the altar with bronze. 4 He made all the altar’s utensils of bronze—its pots, shovels, sprinkling bowls, meat forks, and He made a grate of bronze mesh for firepans. the altar under its ledge, halfway up from the 5 bottom. 6 7 At the four corners of the bronze grate he cast And he made four rings as holders for the poles. the poles of acacia wood and overlaid them with bronze. Then he inserted the poles into the rings on the sides of the altar for carrying it. He The Bronze Basin" + }, + { + "verseNum": 9, + "text": "–19) entrance to the Tent of Meeting. 9 c Then he constructed the courtyard. The south 10 11 side of the courtyard was a hundred cubits long and had curtains of finely spun linen, with twenty posts and twenty bronze bases, and with The north silver hooks and bands on the posts. side was also a hundred cubits long, with twenty posts and twenty bronze bases. The hooks and The west side bands of the posts were silver. and had curtains, with ten was fifty cubits long 13 posts and ten bases. The hooks and bands of the And the east side, toward the posts were silver. 14 sunrise, was also fifty cubits long. 12 d e 15 The curtains on one side of the entrance were fifteen cubits long, with three posts and three And the curtains on the other side were bases. 16 also fifteen cubits long, with three posts and All the curtains around the three bases as well. The courtyard were made of finely spun linen. bases for the posts were bronze, the hooks and bands were silver, and the plating for the tops of a 1 He constructed b 1 17 the posts was silver. So all the posts of the court- 18 yard were banded with silver. f g 19 The curtain for the entrance to the courtyard was embroidered with blue, purple, and scarlet yarn, and finely spun linen. It was twenty cubits and, like the curtains of the courtyard, five long with four posts and four bronze cubits high, bases. Their hooks were silver, as well as the All the tent bands and the plating of their tops. pegs for the tabernacle and for the surroun" + }, + { + "verseNum": 20, + "text": "–21) pointed feasts of the LORD. 2 24 “Com- Then the LORD said to Moses, mand the Israelites to bring you pure oil of pressed olives for the light, to keep the lamps 3 burning continually. b 4 Outside the veil of the Testimony in the Tent of Meeting, Aaron is to tend the lamps continu- ally before the LORD from evening until morning. This is to be a permanent statute for the genera- tions to come. He shall tend the lamps on the pure gold lampstand before the LORD The Showbread" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 6, + "text": "–14) courtyard. 39 From the blue, purple, and scarlet yarn they made specially woven garments for ministry in the sanctuary, as well as the holy gar- ments for Aaron, just as the LORD had com- a 2 manded Moses. 3 4 Bezalel made the ephod of finely spun linen embroidered with gold, and with blue, purple, They hammered out thin and scarlet yarn. sheets of gold and cut threads from them to interweave with the blue, purple, and scarlet yarn, and fine linen—the work of a skilled crafts- man. They made shoulder pieces for the ephod, which were attached at two of its corners, so it could be fastened. And the skillfully woven waistband of the ephod was of one piece with the ephod, of the same workmanship—with gold, with blue, purple, and scarlet yarn, and with finely spun linen, just as the LORD had com- 6 manded Moses. 5 7 They mounted the onyx stones in gold filigree settings, engraved like a seal with the names of Then they fastened them on the sons of Israel. the shoulder pieces of the ephod as memorial stones for the sons of Israel, as the LORD had The Breastpiece" + }, + { + "verseNum": 15, + "text": "–30) commanded Moses. 8 He made the breastpiece with the same work- manship as the ephod, with gold, with blue, pur- 9 ple, and scarlet yarn, and with finely spun linen. It was square when folded over double, a span b 10 long and a span wide. c And they mounted on it four rows of gem- stones: The first row had a ruby, a topaz, and an 11 emerald; the second row had a turquoise, a 12 sapphire, and a diamond; the third row had a jacinth, an agate, and 13 an amethyst; and the fourth row had a beryl, an onyx, a 2 He made b 9 and a jasper. Literally c 10 length and width. Hebrew word is uncertain; possibly ." + }, + { + "verseNum": 16, + "text": "" + }, + { + "verseNum": 31, + "text": "–43) 22 23 d They made the robe of the ephod entirely with an of blue cloth, the work of a weaver, opening in the center of the robe like that of a garment, with a collar around the opening so 24 that it would not tear. 25 They made pomegranates of blue, purple, and scarlet yarn and finely spun linen on the lower They also made bells of pure hem of the robe. 26 gold and attached them around the hem between alternating the bells and the pomegranates, pomegranates around the lower hem of the robe to be worn for ministry, just as the LORD had 27 commanded Moses. 28 For Aaron and his sons they made tunics of as well as the fine linen, the work of a weaver, turban of fine linen, the ornate headbands and and the undergarments of finely spun linen, 29 d 23 The breastpiece, when folded over, was approximately 9 inches or 22.9 centimeters in both The meaning of the The precise identification of some of these gemstones is uncertain. a coat of mail 94 |" + }, + { + "verseNum": 32, + "text": "| 81 28 “Next, have your brother Aaron brought to you from among the Israelites, along 2 with his sons Nadab, Abihu, Eleazar, and Itha- Make holy garments mar, to serve Me as priests. for your brother Aaron, to give him glory and 3 splendor. 4 You are to instruct all the skilled craftsmen, whom I have filled with a spirit of wisdom, to make garments for Aaron’s consecration, so that These are the gar- he may serve Me as priest. ments that they shall make: a breastpiece, an ephod, a robe, a woven tunic, a turban, and a sash. They are to make these holy garments for your brother Aaron and his sons, so that they They shall use gold, may serve Me as priests. along with blue, purple, and scarlet yarn, and fine The Ephod" + }, + { + "verseNum": 33, + "text": "4 a center. Around the opening shall be a woven col- lar with an opening like that of a garment, so 33 that it will not tear. 34 Make pomegranates of blue, purple, and scar- let yarn all the way around the lower hem, with alternating the gold gold bells between them, bells and pomegranates around the lower hem of 35 the robe. Aaron must wear the robe whenever he minis- ters, and its sound will be heard when he enters or exits the sanctuary before the LORD, so that he 36 will not die. You are to make a plate of pure gold and b engrave on it as on a seal: 37 HOLY TO THE LORD. 38 Fasten to it a blue cord to mount it on the tur- And ban; it shall be on the front of the turban. it will be worn on Aaron’s forehead, so that he may bear the iniquity of the holy things that the sons of Israel consecrate with regard to all their holy gifts. It shall always be on his forehead, so 39 that they may be acceptable before the LORD. 40 You are to weave the tunic with fine linen, make the turban of fine linen, and fashion an em- Make tunics, sashes, and head- broidered sash. bands for Aaron’s sons, to give them glory and 41 splendor. After you put these garments on your brother Aaron and his sons, anoint them, ordain them, and consecrate them so that they may serve Me 42 as priests. 43 Make linen undergarments to cover their bare Aaron and flesh, extending from waist to thigh. his sons must wear them whenever they enter the Tent of Meeting or approach the altar to min- ister in the Holy Place," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–9) 2 “Take Aaron Then the LORD said to Moses, and his sons, their garments, the anointing 3 oil, the bull of the sin offering, the two rams, and and assemble the basket of unleavened bread, the whole congregation at the entrance to the 4 Tent of Meeting.” 5 So Moses did as the LORD had commanded him, and the assembly gathered at the entrance to the And Moses said to them, “This Tent of Meeting. 6 is what the LORD has commanded to be done.” 7 8 Then Moses presented Aaron and his sons and He put the tunic on washed them with water. Aaron, tied the sash around him, clothed him with the robe, and put the ephod on him. He tied the woven band of the ephod around him and Then he put the breastpiece fastened it to him. 9 on him and placed the Urim and Thummim in the breastpiece. Moses also put the turban on Aaron’s head and set the gold plate, the holy dia- dem, on the front of the turban, as the LORD had 10 commanded him. a The priest is to burn the fat on the altar, but the And you breast belongs to Aaron and his sons. 33 are to give the right thigh to the priest as a con- The son of tribution from your peace offering. Aaron who presents the blood and fat of the peace offering shall have the right thigh as a por- 34 tion. I have taken from the sons of Israel the breast of the wave offering and the thigh of the contri- bution of their peace offerings, and I have given them to Aaron the priest and his sons as a per- manent portion from the sons of Israel.’ Lights and Perfections a 8" + }, + { + "verseNum": 10, + "text": "–30) manded Moses. 22 After that, Moses presented the other ram, the 23 ram of ordination, and Aaron and his sons laid their hands on its head. Moses slaughtered the ram and took some of its blood and put it on Aa- ron’s right earlobe, on the thumb of his right hand, and on the big toe of his right foot. Moses also presented Aaron’s sons and put some of the blood on their right earlobes, on the thumbs of their right hands, and on the big toes of their right feet. Then he splattered the blood on all 25 sides of the altar. 24 26 And Moses took the fat—the fat tail, all the fat that was on the entrails, the lobe of the liver, and both kidneys with their fat—as well as the right thigh. And from the basket of unleavened bread that was before the LORD, he took one cake of unleavened bread, one cake of bread made with oil, and one wafer, and he placed them on the fat portions and on the right thigh. He put all these in the hands of Aaron and his sons and waved them before the LORD as a wave of- 28 fering. 27 Then Moses took these from their hands and a 4 burned them on the altar with the burnt offering. a cow a bull Or or ; also in verses 18 and 19 29 This was an ordination offering, a pleasing aroma, a food offering to the LORD. He also took the breast—Moses’ portion of the ram of or- dination—and waved it before the LORD as a 30 wave offering, as the LORD had commanded him. Next, Moses took some of the anointing oil and some of the blood that was on the altar and sprin- kled them" + }, + { + "verseNum": 38, + "text": "–44) LORD had instructed through Moses. 23 2 28 “Com- Then the LORD said to Moses, mand the Israelites and say to them: See that you present to Me at its appointed time the food for My food offerings, as a pleasing aroma to 3 Me. 4 And tell them that this is the food offering you are to present to the LORD as a regular burnt of- fering each day: two unblemished year-old male Offer one lamb in the morning and the lambs. other at twilight, along with a tenth of an ephah of fine flour as a grain offering, mixed 6 with a quarter hin of oil from pressed olives. 5 e d f 7 This is a regular burnt offering established at Mount Sinai as a pleasing aroma, a food offering c 21 quarreling The drink offering accompanying to the LORD. e 5 A tenth of an ephah ; see" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–10) pure gold. 25 f He made the altar of incense out of acacia wood. It was square, a cubit long, a cubit wide, 26 and two cubits high. Its horns were of one piece. And he overlaid with pure gold the top and all the sides and horns. Then he made a molding of 27 gold around it. He made two gold rings below the molding on 28 opposite sides to hold the poles used to carry it. And he made the poles of acacia wood and 29 overlaid them with gold. He also made the sacred anointing oil and the pure, fragrant incense, the work of a perfumer. c 10 The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 feet high (114.3 centimeters long, 68.6 centimeters The mercy seat was approximately 3.75 feet long and 2.25 feet wide (114.3 centi- The table was approximately 3 feet long, 1.5 feet wide, and 2.25 feet high wide, and 68.6 centimeters high). meters long and 68.6 centimeters wide). (91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters high). inches or 7.4 centimeters. proximately 1.5 feet in length and width, and 3 feet high (45.7 centimeters in length and width, and 91.4 centimeters high). is approximately 75.4 pounds or 34.2 kilograms of gold. is approximately 2.9 d 12 A handbreadth The altar was ap- e 24 A talent f 25 92 |" + }, + { + "verseNum": 9, + "text": "| 83 23 Take the fat from the ram, the fat tail, the fat covering the entrails, the lobe of the liver, both kidneys with the fat on them, and the right thigh along with (since this is a ram for ordination), one loaf of bread, one cake of bread made with oil, and one wafer from the basket of unleavened Put all these in bread that is before the LORD. the hands of Aaron and his sons and wave them Then take before the LORD as a wave offering. them from their hands and burn them on the al- tar atop the burnt offering as a pleasing aroma 26 before the LORD; it is a food offering to the LORD. 25 24 27 28 Take the breast of the ram of Aaron’s ordina- tion and wave it before the LORD as a wave offer- Consecrate for ing, and it will be your portion. Aaron and his sons the breast of the wave offer- ing that is waved and the thigh of the heave offering that is lifted up from the ram of ordina- This will belong to Aaron and his sons as tion. a regular portion from the Israelites, for it is the heave offering the Israelites will make to the 29 LORD from their peace offerings. 30 The holy garments that belong to Aaron will belong to his sons after him, so they can be anointed and ordained in them. The son who succeeds him as priest and enters the Tent of Meeting to minister in the Holy Place must wear Food for the Priests them for seven days. 31 33 32 You are to take the ram of ordination and boil At the entrance to the its flesh in a holy place. Tent of Meeting, Aaron and his sons are to e" + }, + { + "verseNum": 10, + "text": "10 Once a year Aaron shall make atonement on the horns of the altar. Throughout your genera- tions he shall make atonement on it annually of atonement. with the blood of the sin offering The Census Offering The altar is most holy to the LORD.” (2 Samuel 24:1–9 ; 1 Chronicles 21:1–6) a 11 12 Then the LORD said to Moses, “When you take a census of the Israelites to number them, each man must pay the LORD a ransom for his life when he is counted. Then no plague will come Every- upon them when they are numbered. one who crosses over to those counted must pay a half shekel, according to the sanctuary shekel, which weighs twenty gerahs. This half shekel is 14 an offering to the LORD. 13 b c 16 Everyone twenty years of age or older who 15 crosses over must give this offering to the LORD. In making the offering to the LORD to atone for your lives, the rich shall not give more than a half Take the shekel, nor shall the poor give less. atonement money from the Israelites and use it for the service of the Tent of Meeting. It will serve as a memorial for the Israelites before the LORD The Bronze Basin" + }, + { + "verseNum": 11, + "text": "–16 ; 1 Chronicles 21:1–6) 24 Again the anger of the LORD burned against Israel, and He stirred up David against them, saying, “Go and take a census of 2 Israel and Judah.” n So the king said to Joab the commander of his army, who was with him, “Go now throughout the tribes of Israel from Dan to Beersheba and register the troops, so that I may know their number.” d 20 two sons of Ariel b 19 In the Thirty Heb.; Syr- Shammah the Harodite, a 18 26 Elika the Harodite, Helez the Paltite, Most Heb. manuscripts (see also 1 Chronicles 11:20); two Hebrew manuscripts and Syriac Benaiah son of Jehoiada was the son of Ishhai Sibbecai the Thirty f 27 c 20 the Thirty e 24 g 29 (were): iac Or Heb.; some LXX manuscripts i 30 Hiddai Hurai scripts and Vulgate (see also 1 Chronicles 11:30); most MT manuscripts Hashem l 33 cles 11:31. is a variant of m 33 ; see 1 Chronicles 11:32. Sachar Some LXX manuscripts (see also 1 Chronicles 11:34); Hebrew n 2 Or ; see 1 Chronicles 11:34. Hebrew; some LXX manuscripts ; see 1 Chronicles 11:35. LXX ; see 2 Samuel 21:18 and 1 Chronicles 11:29. j 30 from the ravines Or Heleb h 29 Ittai Literally Ithai Some Hebrew manu- ; see 1 Chroni- Jonathan, 33 Shammah is a variant of to Joab and the army commanders with him is a variant of k 32 Jashen 306 | 2 Samuel 24:3 3 But Joab replied to the king, “May the LORD your God multiply the troops a hundred times over, and may the eyes of my lord the king see it. But why does my lord the king want to do such a 4 thing?” Never" + }, + { + "verseNum": 13, + "text": "" + }, + { + "verseNum": 17, + "text": "–21) made the altar with boards so that it was hollow. 8 Next he made the bronze basin and its stand from the mirrors of the women who served at the The Courtyard" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "–11) the altar of burnt offering with its bronze 30 grate, its poles, and all its utensils; 17 the basin with its stand; the curtains of the courtyard with its posts and bases, and the curtain for the gate 18 of the courtyard; the tent pegs for the tabernacle and for 19 the courtyard, along with their ropes; and the woven garments for ministering in the holy place—both the holy garments for Aaron the priest and the garments for his sons to serve as priests.” The People Offer Gifts 20 Then the whole congregation of Israel with- And every- drew from the presence of Moses. a 7 one whose heart stirred him and whose spirit 21 31 Then Moses said to the Israelites, “See, the LORD has called by name Bezalel son of Uri, the And He has son of Hur, of the tribe of Judah. filled him with the Spirit of God, with skill, ability, 32 and knowledge in all kinds of craftsmanship, to design artistic works in gold, silver, and to cut gemstones for settings, and to bronze, carve wood, so that he may be a master of every 34 artistic craft. 33 35 And the LORD has given both him and Oholiab son of Ahisamach, of the tribe of Dan, the ability to teach others. He has filled them with skill to do all kinds of work as engravers, designers, em- broiderers in blue, purple, and scarlet yarn and fine linen, and as weavers—as artistic designers of every kind of craft. Possibly the hides of large aquatic mammals; also in verse 23 90 |" + }, + { + "verseNum": 12, + "text": "–17) commandment; his guilt remains on him.” 32 34 33 While the Israelites were in the wilderness, a man was found gathering wood on the Sabbath Those who found the man gathering wood day. brought him to Moses, Aaron, and the whole con- and because it had not been de- gregation, clared what should be done to him, they placed 35 him in custody. And the LORD said to Moses, “The man must surely be put to death. The whole congregation is 36 to stone him outside the camp.” So the whole congregation took the man out- side the camp and stoned him to death, as the LORD had commanded Moses. You have gone too far a 3 b 5 God has visited and knows those who are His" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–35 ;" + }, + { + "verseNum": 6, + "text": "Or Lord’s, and the fullness thereof— twice in this verse e 26 WH, NE, and Tischendorf" + }, + { + "verseNum": 16, + "text": "| 85 3 4 Then all the people took off their gold earrings and brought them to Aaron. He took the gold from their hands, and with an engraving tool he fashioned it into a molten calf. And they said, “These, O Israel, are your gods, who brought you 5 up out of the land of Egypt!” When Aaron saw this, he built an altar before the calf and proclaimed: “Tomorrow shall be a 6 feast to the LORD.” So the next day they arose, offered burnt offerings, and presented peace offerings. And the people sat down to eat and drink and got up to 7 indulge in revelry. c 8 Then the LORD said to Moses, “Go down at once, for your people, whom you brought up out of the land of Egypt, have corrupted themselves. How quickly they have turned aside from the way that I commanded them! They have made for them- selves a molten calf and have bowed down to it. They have sacrificed to it and said, ‘These, O Israel, are your gods, who brought you up out of 9 the land of Egypt.’ ” 10 The LORD also said to Moses, “I have seen this people, and they are indeed a stiff-necked peo- ple. Now leave Me alone, so that My anger may burn against them and consume them. Then I will 11 make you into a great nation.” 12 But Moses sought the favor of the LORD his God, saying, “O LORD, why does Your anger burn against Your people, whom You brought out of the land of Egypt with great power and a mighty hand? Why should the Egyptians declare, ‘He brought them out with evil intent, to kill them in the mountains and wipe them from t" + }, + { + "verseNum": 17, + "text": "17 31 When Joshua heard the sound of the people shouting, he said to Moses, “The sound of war is 18 in the camp.” But Moses replied: “It is neither the cry of victory nor the cry of 19 defeat; I hear the sound of singing!” 20 As Moses approached the camp and saw the calf and the dancing, he burned with anger and threw the tablets out of his hands, shattering Then he took them at the base of the mountain. the calf they had made, burned it in the fire, ground it to powder, and scattered the powder over the face of the water. Then he forced the 21 Israelites to drink it. “What did this people do to you,” Moses asked Aaron, “that you have led them into so great a 22 sin?” 23 “Do not be enraged, my lord,” Aaron replied. “You yourself know that the people are intent on They told me, ‘Make us gods who will go evil. before us. As for this Moses who brought us up out of the land of Egypt, we do not know what has 24 happened to him!’ So I said to them, ‘Whoever has gold, let him take it off,’ and they gave it to me. And when I 25 threw it into the fire, out came this calf!” a 26 Moses saw that the people were out of control, for Aaron had let them run wild and become a laughingstock So Moses to their enemies. stood at the entrance to the camp and said, “Whoever is for the LORD, come to me.” 27 And all the Levites gathered around him. He told them, “This is what the LORD, the God of Israel, says: ‘Each of you men is to fasten his sword to his side, go back and forth through the camp fro" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 19, + "text": "" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–9) outstretched arm.” 10 2 At that time the LORD said to me, “Chisel out two stone tablets like the originals, come up to Me on the mountain, and make an ark And I will write on the tablets the of wood. words that were on the first tablets, which you 3 broke; and you are to place them in the ark.” d So I made an ark of acacia wood, chiseled out two stone tablets like the originals, and went up 4 the mountain with the two tablets in my hands. And the LORD wrote on the tablets what had been written previously, the Ten Command- that He had spoken to you on the moun- ments tain out of the fire on the day of the assembly. and I went back The LORD gave them to me, down the mountain and placed the tablets in the ark I had made, as the LORD had commanded me; a 22 Taberah and there they have remained. burning 5 b 22 Massah 6 e The Israelites traveled from Beeroth Bene- jaakan to Moserah, where Aaron died and was 7 buried, and Eleazar his son succeeded him as priest. From there they traveled to Gudgodah, and from Gudgodah to Jotbathah, a land with 8 streams of water. 9 At that time the LORD set apart the tribe of Levi to carry the ark of the covenant of the LORD, to stand before the LORD to serve Him, and to pro- nounce blessings in His name, as they do to this That is why Levi has no portion or inher- day. itance among his brothers; the LORD is his inher- 10 itance, as the LORD your God promised him. I stayed on the mountain forty days and forty nights, like the first time, and that" + }, + { + "verseNum": 10, + "text": "–35) 7 8 Now if the ministry of death, which was engraved in letters on stone, came with such glory that the Israelites could not gaze at the face will not of Moses because of its fleeting glory, 9 the ministry of the Spirit be even more glorious? For if the ministry of condemnation was glori- ous, how much more glorious is the ministry of righteousness! Indeed, what was once glorious 11 has no glory now in comparison to the glory that For if what was fading away came surpasses it. with glory, how much greater is the glory of that 12 which endures! 10 13 Therefore, since we have such a hope, we are We are not like Moses, who would very bold. put a veil over his face to keep the Israelites from 14 gazing at the end of what was fading away. But their minds were closed. For to this day the same veil remains at the reading of the old 15 covenant. It has not been lifted, because only in And even to this day Christ can it be removed. 16 when Moses is read, a veil covers their hearts. But whenever anyone turns to the Lord, the 17 veil is taken away. 18 Now the Lord is the Spirit, and where the Spirit And we, who of the Lord is, there is freedom. with unveiled faces all reflect the glory of the Lord, are being transformed into His image with intensifying glory, which comes from the Lord, The Light of the Gospel who is the Spirit. 4 b 2 we do not lose heart. Therefore, since God in His mercy has given In- us this ministry, stead, we have renounced secret and shameful ways. We do not p" + }, + { + "verseNum": 14, + "text": "| 87 2 Be ready in the first tablets, which you broke. 3 morning, and come up on Mount Sinai to present yourself before Me on the mountaintop. No one may go up with you; in fact, no one may be seen anywhere on the mountain—not even the flocks 4 or herds may graze in front of the mountain.” So Moses chiseled out two stone tablets like the originals. He rose early in the morning, and tak- ing the two stone tablets in his hands, he went up 5 Mount Sinai as the LORD had commanded him. And the LORD descended in a cloud, stood with 6 him there, and proclaimed His name, the LORD. Then the LORD passed in front of Moses and called out: “The LORD, the LORD God, is compassionate and gracious, slow to anger, 7 abounding in loving devotion and faithfulness, b maintaining loving devotion to a thousand generations, forgiving iniquity, transgression, and sin. Yet He will by no means leave the guilty unpunished; He will visit the iniquity of the fathers on their children and grandchildren to the third and fourth generations.” 9 8 Moses immediately bowed down to the ground “O Lord,” he said, “if I have in- and worshiped. deed found favor in Your sight, my Lord, please go with us. Although this is a stiff-necked people, forgive our iniquity and sin, and take us as Your The LORD Renews the Covenant inheritance.” (2 Corinthians 3:7–18) 10 And the LORD said, “Behold, I am making a covenant. Before all your people I will perform wonders that have never been done in any nation in all the world. All" + }, + { + "verseNum": 15, + "text": "not worship any other god, for the LORD, whose 15 name is Jealous, is a jealous God. 16 Do not make a covenant with the inhabitants of the land, for when they prostitute themselves to their gods and sacrifice to them, they will in- And vite you, and you will eat their sacrifices. when you take some of their daughters as brides for your sons, their daughters will prostitute themselves to their gods and cause your sons to 17 do the same. 18 You shall make no molten gods for yourselves. a b You are to keep the Feast of Unleavened For seven days at the appointed time in Bread. you are to eat unleavened the month of Abib, bread as I commanded you. For in the month of 19 Abib you came out of Egypt. 20 The first offspring of every womb belongs to Me, including all the firstborn males among your You must livestock, whether cattle or sheep. redeem the firstborn of a donkey with a lamb; but if you do not redeem it, you are to break its neck. You must redeem all the firstborn of your sons. No one shall appear before Me empty- 21 handed. Six days you shall labor, but on the seventh day you shall rest; even in the seasons of plowing and c 22 harvesting, you must rest. d And you are to celebrate the Feast of Weeks with the firstfruits of the wheat harvest, and the 23 at the turn of the year. Feast of Ingathering Three times a year all your males are to appear For I before the Lord GOD, the God of Israel. will drive out the nations before you and enlarge your borders, and no one will covet" + }, + { + "verseNum": 22, + "text": ") or the Feast of Tabernacles was the first month of the ancient Hebrew lunar the Feast of Pentecost That is, Shavuot, the late spring feast of pilgrimage That is, (see" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 4, + "text": "–9) 2 25 “Tell the Then the LORD said to Moses, Israelites to bring Me an offering. You are to receive My offering from every man whose This is the offering you are heart compels him. to accept from them: 3 4 gold, silver, and bronze; blue, purple, and scarlet yarn; 5 fine linen and goat hair; a ram skins dyed red and fine leather; 6 acacia wood; olive oil for the light; spices for the anointing oil and for the 7 fragrant incense; 8 and onyx stones and gemstones to be mounted on the ephod and breastpiece. 9 And they are to make a sanctuary for Me, so that You must make the I may dwell among them. tabernacle and design all its furnishings accord- The Ark of the Covenant" + }, + { + "verseNum": 30, + "text": "–35) from his people.” 37 38 2 3 “See, I Then the LORD said to Moses, have called by name Bezalel son of Uri, the son of Hur, of the tribe of Judah. And I have filled him with the Spirit of God, with skill, ability, to and knowledge in all kinds of craftsmanship, 5 design artistic works in gold, silver, and bronze, to cut gemstones for settings, and to carve 6 wood, so that he may be a master of every craft. 4 Moreover, I have selected Oholiab son of Ahisamach, of the tribe of Dan, as his assistant. c 13 20 gerahs 31 Or e 23 250 shekels d 23 500 shekels is approximately 0.2 ounces or 5.7 grams; also in verse 15. is is approximately 12.6 pounds or 5.7 f 23 250 shekels equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). kilograms of myrrh. h 24 A hin proximately 6.3 pounds or 2.9 kilograms of cane. g 24 500 shekels is approximately 6.3 pounds or 2.9 kilograms of cinnamon. i 36 The Testimony is approximately 12.6 pounds or 5.7 kilograms of cassia. is ap- is approximately 0.97 gallons or 3.67 liters of olive oil. refers to the stone tablets in the ark of the covenant inscribed with the Ten Commandments. 9 8 I have also given skill to all the craftsmen, that a 7 they may fashion all that I have commanded you: the Tent of Meeting, the ark of the Testimony and the mercy seat upon it, and all the other fur- the table with its utensils, nishings of the tent— the pure gold lampstand with all its utensils, the altar of incense, the altar of burnt offering with 10 all its" + }, + { + "verseNum": 35, + "text": "| 89 6 gold, silver, and bronze; blue, purple, and scarlet yarn; 7 fine linen and goat hair; a ram skins dyed red and fine leather; 8 acacia wood; olive oil for the light; spices for the anointing oil and for the 9 fragrant incense; The Skilled Craftsmen and onyx stones and gemstones to be mounted on the ephod and breastpiece. 10 Let every skilled craftsman among you come and make everything that the LORD has com- manded: 11 the tabernacle with its tent and covering, its clasps and frames, its crossbars, posts, 12 and bases; the ark with its poles and mercy seat, and 13 the veil to shield it; the table with its poles, all its utensils, 14 and the Bread of the Presence; the lampstand for light with its 15 accessories and lamps and oil for the light; the altar of incense with its poles; the anointing oil and fragrant incense; the curtain for the doorway at the entrance 16 to the tabernacle; prompted him came and brought an offering to the LORD for the work on the Tent of Meeting, for 22 all its services, and for the holy garments. So all who had willing hearts, both men and women, came and brought brooches and ear- rings, rings and necklaces, and all kinds of gold jewelry. And they all presented their gold as a 23 wave offering to the LORD. 24 Everyone who had blue, purple, or scarlet yarn, or fine linen, goat hair, ram skins dyed red, or articles of fine leather, brought them. And all who could present an offering of silver or bronze brought it as a contribution to the LORD. A" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "The People Bring More than Enough 36 “So Bezalel, Oholiab, and every skilled person are to carry out everything com- manded by the LORD, who has given them skill and ability to know how to perform all the work 2 of constructing the sanctuary.” Then Moses summoned Bezalel, Oholiab, and every skilled person whom the LORD had 3 gifted—everyone whose heart stirred him to They received from Mo- come and do the work. ses all the contributions that the Israelites had brought to carry out the service of constructing the sanctuary. 4 Meanwhile, the people continued to bring so freewill offerings morning after morning, 5 that all the skilled craftsmen who were doing all and the work on the sanctuary left their work said to Moses, “The people are bringing more than enough for doing the work the LORD has 6 commanded us to do.” After Moses had given an order, they sent a proclamation throughout the camp: “No man or woman should make anything else as an offering for the sanctuary.” So the people were since what they restrained from bringing more, already had was more than enough to perform all The Ten Curtains for the Tabernacle the work." + }, + { + "verseNum": 8, + "text": "–13) 26 “You are to construct the tabernacle it- self with ten curtains of finely spun linen, each with blue, purple, and scarlet yarn, and Each cur- cherubim skillfully worked into them. tain shall be twenty-eight cubits long and four 3 cubits wide —all curtains the same size. 2 c 4 Five of the curtains are to be joined together, and the other five joined as well. Make loops of blue material on the edge of the end curtain in the first set, and do the same for the end curtain 5 in the second set. 6 Make fifty loops on one curtain and fifty loops on the end curtain of the second set, so that the Make fifty loops line up opposite one another. gold clasps as well, and join the curtains together with the clasps, so that the tabernacle will be a The Eleven Curtains of Goat Hair unit." + }, + { + "verseNum": 14, + "text": "–19) 7 You are to make curtains of goat hair for the 8 tent over the tabernacle—eleven curtains in all. Each of the eleven curtains is to be the same 9 size—thirty cubits long and four cubits wide. d Join five of the curtains into one set and the other six into another. Then fold the sixth curtain over double at the front of the tent. a 39 A talent Make fifty loops along the edge of the end cur- tain in the first set, and fifty loops along the edge 11 of the corresponding curtain in the second set. Make fifty bronze clasps and put them through 12 the loops to join the tent together as a unit. 13 As for the overlap that remains of the tent cur- tains, the half curtain that is left over shall hang down over the back of the tabernacle. And the tent curtains will be a cubit longer on either side, and the excess will hang over the sides of 14 the tabernacle to cover it. e f Also make a covering for the tent out of ram skins dyed red, and over that a covering of fine The Frames and Bases" + }, + { + "verseNum": 20, + "text": "–34) leather. 15 16 You are to construct upright frames of acacia g Each frame is to be wood for the tabernacle. 17 ten cubits long and a cubit and a half wide. h Two tenons must be connected to each other for each frame. Make all the frames of the taber- 18 nacle in this way. 19 Construct twenty frames for the south side of with forty silver bases under the tabernacle, the twenty frames—two bases for each frame, 20 one under each tenon. 21 For the second side of the tabernacle, the north and forty silver ba- side, make twenty frames 22 ses—two bases under each frame. 23 24 Make six frames for the rear of the tabernacle, and two frames for the two back the west side, coupled together corners of the tabernacle, 25 from bottom to top and fitted into a single ring. These will serve as the two corners. So there are to be eight frames and sixteen silver bases— 26 two under each frame. 27 You are also to make five crossbars of acacia wood for the frames on one side of the taber- five for those on the other side, and five nacle, for those on the rear side of the tabernacle, to the 28 west. The central crossbar in the middle of the 29 frames shall extend from one end to the other. Overlay the frames with gold and make gold rings to hold the crossbars. Also overlay the crossbars with gold. b 40 is approximately 75.4 pounds or 34.2 kilograms of gold. Cited in" + }, + { + "verseNum": 35, + "text": "–36) to the pattern shown you on the mountain. 31 32 Make a veil of blue, purple, and scarlet yarn, and finely spun linen, with cherubim skillfully worked into it. Hang it with gold hooks on four posts of acacia wood, overlaid with gold and And hang the veil standing on four silver bases. from the clasps and place the ark of the Testi- b behind the veil. So the veil will separate mony 34 the Holy Place from the Most Holy Place. 33 a 35 Put the mercy seat on the ark of the Testimony And place the table out- in the Most Holy Place. side the veil on the north side of the tabernacle, and put the lampstand opposite the table, on the The Curtain for the Entrance (Ex. 36:37–38) south side. 36 37 For the entrance to the tent, you are to make a curtain embroidered with blue, purple, and scar- let yarn, and finely spun linen. Make five posts of acacia wood for the curtain, overlay them with The Bronze Altar" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "–5) ing to the pattern I show you. 10 And they are to construct an ark of acacia wood, two and a half cubits long, a cubit and a Overlay half wide, and a cubit and a half high. it with pure gold both inside and out, and make a 12 gold molding around it. 11 b 13 Cast four gold rings for it and fasten them to its four feet, two rings on one side and two on the 14 And make poles of acacia wood and other. Insert the poles into overlay them with gold. 15 the rings on the sides of the ark, in order to carry it. The poles are to remain in the rings of the c And place in- ark; they must not be removed. The Mercy Seat" + }, + { + "verseNum": 6, + "text": "–9) which I will give you. side the ark the Testimony, 17 16 d e 18 And you are to construct a mercy seat of pure gold, two and a half cubits long and a cubit and a half wide. Make two cherubim of hammered gold at the ends of the mercy seat, one cherub on one end and one on the other, all made from And the cherubim are to one piece of gold. a 5 b 10 19 20 have wings that spread upward, overshadowing the mercy seat. The cherubim are to face each 21 other, looking toward the mercy seat. Set the mercy seat atop the ark and put the 22 Testimony that I will give you into the ark. f And I will meet with you there above the mercy seat, between the two cherubim that are over the ark of the Testimony; I will speak with you about all that I command you regarding the The Table of Showbread Israelites." + }, + { + "verseNum": 10, + "text": "–16 ;" + }, + { + "verseNum": 17, + "text": "–24 ;" + }, + { + "verseNum": 25, + "text": "–29) I am the LORD their God. 30 2 d Its horns must be of one piece. “You are also to make an altar of acacia It is to wood for the burning of incense. 3 be square, a cubit long, a cubit wide, and two cu- Over- bits high. lay with pure gold the top and all the sides and 4 horns, and make a molding of gold around it. And make two gold rings below the molding on 5 opposite sides to hold the poles used to carry it. Make the poles of acacia wood and overlay 6 them with gold. e f 7 Place the altar in front of the veil that is before the ark of the Testimony —before the mercy seat that is over the Testimony—where I will meet with you. And Aaron is to burn fragrant 8 incense on it every morning when he tends the When Aaron sets up the lamps at twi- lamps. light, he must burn the incense perpetually g 9 before the LORD for the generations to come. On this altar you must not offer unauthorized incense or a burnt offering or grain offering; nor are you to pour a drink offering on it. c 40 b 40 A tenth of an ephah a quarter hin of pressed oil Heb. e 6 d 2 about 2.6 pounds or 1.2 kg of flour). is approx. 2 dry quarts or 2.2 liters (probably ; that is, approx. 0.97 quarts or 0.92 liters g 9 f 8 The altar was approximately 1.5 feet in length and width, and 3 feet high (45.7 cm in length and width, and 91.4 cm between the two evenings the ark of the covenant ; also in verse 41 Hebrew strange high). That is, ; also in verse 26 Hebrew Or 84 |" + }, + { + "verseNum": 29, + "text": "| 91 35 Next, he made the veil of blue, purple, and scar- let yarn, and finely spun linen, with cherubim 36 skillfully worked into it. He also made four posts of acacia wood for it and overlaid them with gold, along with gold The Curtain for the Entrance (Ex. 26:36–37) hooks; and he cast four silver bases for the posts. 37 For the entrance to the tent, he made a curtain 38 embroidered with blue, purple, and scarlet yarn, together with five posts and finely spun linen, and their hooks. He overlaid the tops of the posts and their bands Constructing the Ark" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–7) gold hooks, and cast five bronze bases for them. 27 “You are to build an altar of acacia wood. c The altar must be square, five cubits 2 long, five cubits wide, and three cubits high. Make a horn on each of its four corners, so that the horns are of one piece, and overlay it with 3 bronze. 4 Make all its utensils of bronze—its pots for re- moving ashes, its shovels, its sprinkling bowls, its Construct for it a meat forks, and its firepans. 5 grate of bronze mesh, and make a bronze ring at each of the four corners of the mesh. Set the grate beneath the ledge of the altar, so that the 6 mesh comes halfway up the altar. 7 Additionally, make poles of acacia wood for the The poles altar and overlay them with bronze. are to be inserted into the rings so that the poles 8 are on two sides of the altar when it is carried. Construct the altar with boards so that it is hol- low. It is to be made just as you were shown on the mountain. a 33 the ark of the covenant b 33 The Courtyard" + }, + { + "verseNum": 8, + "text": ") to make atonement for your lives.” 18 17 19 And the LORD said to Moses, “You are to make a bronze basin with a bronze stand for washing. Set it between the Tent of Meeting and with which Aaron the altar, and put water in it, 20 and his sons are to wash their hands and feet. Whenever they enter the Tent of Meeting or approach the altar to minister by presenting a food offering to the LORD, they must wash with Thus they are water so that they will not die. to wash their hands and feet so that they will not die; this shall be a permanent statute for Aaron and his descendants for the generations to The Anointing Oil come.” 22 23 21 d Then the LORD said to Moses, 24 est spices: 500 shekels of liquid myrrh, amount (250 shekels) of fragrant cinnamon, 250 shekels of fragrant cane, 500 shekels of cassia —all according to the sanctuary shekel— purification offering a 10 “Take the fin- e half that b 13 A half shekel g f h 25 Prepare from these a sa- and a hin of olive oil. cred anointing oil, a fragrant blend, the work of a 26 perfumer; it will be a sacred anointing oil. 27 Use this oil to anoint the Tent of Meeting, the the table and all its uten- ark of the Testimony, 28 sils, the lampstand and its utensils, the altar of the altar of burnt offering and all its incense, You are utensils, and the basin with its stand. to consecrate them so that they will be most holy. Whatever touches them shall be holy. Anoint Aaron and his sons and consecrate them to serve 31 Me as priests. 30 29 33" + }, + { + "verseNum": 9, + "text": "–20) 9 d 10 You are also to make a courtyard for the taber- nacle. On the south side of the courtyard make curtains of finely spun linen, a hundred cubits long with twenty posts and twenty bronze bases, and silver hooks and bands 11 on the posts. on one side, Likewise there are to be curtains on the north side, a hundred cubits long, with twenty posts and twenty bronze bases, and with silver hooks The curtains on the and bands on the posts. west side of the courtyard shall be fifty cubits 13 wide, with ten posts and ten bases. 12 e 14 f 15 The east side of the courtyard, toward the sun- rise, is to be fifty cubits wide. Make the cur- tains on one side fifteen cubits long, with three and the curtains on the posts and three bases, other side fifteen cubits long, with three posts 16 and three bases. g The gate of the courtyard shall be twenty cu- bits long, with a curtain embroidered with blue, purple, and scarlet yarn, and finely spun linen. It 17 shall have four posts and four bases. 19 All the posts around the courtyard shall have 18 silver bands, silver hooks, and bronze bases. h The entire courtyard shall be a hundred cubits i long and fifty cubits wide, with curtains of finely spun linen five cubits high, and with bronze ba- ses. All the utensils of the tabernacle for every use, including all its tent pegs and the tent pegs The Oil for the Lamps" + }, + { + "verseNum": 21, + "text": "–31 ;" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "–7) linen. 6 5 8 7 They are to make the ephod of finely spun linen embroidered with gold, and with blue, purple, It shall have two shoulder and scarlet yarn. pieces attached at two of its corners, so it can be fastened. And the skillfully woven waistband of the ephod must be of one piece, of the same workmanship—with gold, with blue, purple, and 9 scarlet yarn, and with finely spun linen. 10 Take two onyx stones and engrave on them the six of their names names of the sons of Israel: 11 on one stone and the remaining six on the other, Engrave the names in the order of their birth. of the sons of Israel on the two stones the way a gem cutter engraves a seal. Then mount the Fasten both stones in gold filigree settings. stones on the shoulder pieces of the ephod as memorial stones for the sons of Israel. Aaron is to bear their names on his two shoulders as a me- 13 morial before the LORD. 14 12 Fashion gold filigree settings and two chains of pure gold, made of braided cord work; and at- The Breastpiece" + }, + { + "verseNum": 8, + "text": "–21) tach these chains to the settings. 15 You are also to make a breastpiece of judgment with the same workmanship as the ephod. Con- struct it with gold, with blue, purple, and scarlet It must be yarn, and with finely spun linen. square when folded over double, a span long and a span wide. a 16 b 17 16 a b And mount on it a setting of gemstones, four rows of stones: In the first row there shall be a ruby, a 18 topaz, and an emerald; in the second row a turquoise, a 19 sapphire, and a diamond; in the third row a jacinth, an agate, and 20 an amethyst; and in the fourth row a beryl, an onyx, and a jasper. 21 Mount these stones in gold filigree settings. The twelve stones are to correspond to the names of the sons of Israel, each engraved like a 22 seal with the name of one of the twelve tribes. 23 25 For the breastpiece, make braided chains like cords of pure gold. You are also to make two 24 gold rings and fasten them to the two corners of the breastpiece. Then fasten the two gold chains to the two gold rings at the corners of the and fasten the other ends of the breastpiece, two chains to the two filigree settings, attaching them to the shoulder pieces of the ephod at the 26 front. Make two more gold rings and attach them to the other two corners of the breastpiece, on the 27 inside edge next to the ephod. 28 Make two additional gold rings and attach them to the bottom of the two shoulder pieces of the ephod, on its front, near its seam just above its woven waistband. The ri" + }, + { + "verseNum": 29, + "text": "| 93 These stones were mounted in gold filigree set- 14 tings. The twelve stones corresponded to the names of the sons of Israel. Each stone was engraved like a seal with the name of one of the twelve 15 tribes. 16 For the breastpiece they made braided chains They also made two like cords of pure gold. gold filigree settings and two gold rings, and fas- tened the two rings to the two corners of the Then they fastened the two gold breastpiece. chains to the two gold rings at the corners of the and they fastened the other ends breastpiece, of the two chains to the two filigree settings, at- taching them to the shoulder pieces of the ephod 19 at the front. 17 18 They made two more gold rings and attached them to the other two corners of the breastpiece, 20 on the inside edge next to the ephod. 21 They made two additional gold rings and attached them to the bottom of the two shoulder pieces of the ephod, on its front, near the seam Then they tied just above its woven waistband. the rings of the breastpiece to the rings of the ephod with a cord of blue yarn, so that the breastpiece was above the waistband of the ephod and would not swing out from the ephod, Additional Priestly Garments just as the LORD had commanded Moses." + }, + { + "verseNum": 30, + "text": "sash of finely spun linen, embroidered with blue, purple, and scarlet yarn, just as the LORD had 30 commanded Moses. They also made the plate of the holy crown of pure gold, and they engraved on it, like an in- scription on a seal: 31 a HOLY TO THE LORD. Then they fastened to it a blue cord to mount it on the turban, just as the LORD had com- Moses Approves the Work manded Moses. 32 So all the work for the tabernacle, the Tent of Meeting, was completed. The Israelites did eve- 33 rything just as the LORD had commanded Moses. Then they brought the tabernacle to Moses: the tent with all its furnishings, its clasps, its frames, its crossbars, and its posts and 34 bases; b the covering of ram skins dyed red, the covering of fine leather, 35 covering; and the veil of the c the ark of the Testimony 36 and the mercy seat; with its poles the table with all its utensils and the 37 Bread of the Presence; the pure gold lampstand with its row of lamps and all its utensils, as well as the oil 38 for the light; the gold altar, the anointing oil, the fragrant incense, and the curtain for the 39 entrance to the tent; the bronze altar with its bronze grating, its poles, and all its utensils; 40 the basin with its stand; the curtains of the courtyard with its posts and bases; the curtain for the gate of the courtyard, its ropes and tent pegs, and all the equipment for the service of the tabernacle, the Tent of 41 Meeting; and the woven garments for ministering in the sanctuary, both the holy g" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–33 ;" + }, + { + "verseNum": 34, + "text": "–38) ” 15 b On the day that the tabernacle, the Tent of the Testimony, was set up, the cloud covered it and 16 appeared like fire above the tabernacle from It remained that way evening until morning. continually; the cloud would cover the taber- 17 nacle by day, and at night it would appear like Whenever the cloud was lifted from above fire. the Tent, the Israelites would set out, and wher- 18 ever the cloud settled, there the Israelites would At the LORD’s command the Israelites camp. set out, and at the LORD’s command they camped. As long as the cloud remained over the 19 tabernacle, they remained encamped. Even when the cloud lingered over the taber- nacle for many days, the Israelites kept the b 16 Sometimes LORD’s charge and did not set out. 20 Hebrew does not include ; also in verses 5 and 11 LXX, Syriac, and Vulgate; Hebrew the cloud remained over the tabernacle for only a few days, and they would camp at the LORD’s 21 command and set out at the LORD’s command. Sometimes the cloud remained only from evening until morning, and when it lifted in the morning, they would set out. Whether it was by day or by night, when the cloud was taken up, 22 they would set out. 23 Whether the cloud lingered for two days, a month, or longer, the Israelites camped and did not set out as long as the cloud remained over the tabernacle; but when it was lifted, they would set They camped at the LORD’s command, out. and they set out at the LORD’s command; they carried out the LORD’s charge ac" + }, + { + "verseNum": 38, + "text": "| 95 32 21 Moses took the Testimony and placed it in the ark, attaching the poles to the ark; and he set Then he brought the mercy seat atop the ark. the ark into the tabernacle, put up the veil for the screen, and shielded off the ark of the Testimony, 22 just as the LORD had commanded him. 23 Moses placed the table in the Tent of Meeting on the north side of the tabernacle, outside the veil. He arranged the bread on it before the 24 LORD, just as the LORD had commanded him. and from it Moses, Aaron, and his sons washed their hands and feet. They washed whenever they entered the Tent of Meeting or approached the altar, just as the LORD had commanded 33 Moses. And Moses set up the courtyard around the tabernacle and the altar, and he hung the curtain for the entrance to the courtyard. So Moses fin- The Cloud and the Glory ished the work." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–17) anything he may have done to incur guilt.” 8 9 Then the LORD said to Moses, “Command Aa- ron and his sons that this is the law of the burnt offering: The burnt offering is to remain on the hearth of the altar all night, until morning, and 10 the fire must be kept burning on the altar. And the priest shall put on his linen robe and linen undergarments, and he shall remove from the altar the ashes of the burnt offering that the 11 fire has consumed and place them beside it. Then he must take off his garments, put on other clothes, and carry the ashes outside the 12 camp to a ceremonially clean place. The fire on the altar shall be kept burning; it must not be extinguished. Every morning the priest is to add wood to the fire, arrange the burnt offering on it, and burn the fat portions of The fire shall be kept the peace offerings on it. burning on the altar continually; it must not be The Grain Offering" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–16) extinguished. 14 13 15 Now this is the law of the grain offering: Aaron’s sons shall present it before the LORD in The priest is to remove a front of the altar. handful of fine flour and olive oil, together with is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). is approximately 0.4 ounces or 11.4 grams of silver. 100 |" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–17) equally to all the sons of Aaron. 11 d e 12 Now this is the law of the peace offering that If he offers it in one may present to the LORD: thanksgiving, then along with the sacrifice of thanksgiving he shall offer unleavened cakes mixed with olive oil, unleavened wafers coated with oil, and well-kneaded cakes of fine flour 13 mixed with oil. 14 Along with his peace offering of thanksgiving he is to present an offering with cakes of leav- From the cakes he must present ened bread. one portion of each offering as a contribution to 15 the LORD. It belongs to the priest who sprinkles The meat of the the blood of the peace offering. sacrifice of his peace offering of thanksgiving must be eaten on the day he offers it; none of it 16 may be left until morning. 17 If, however, the sacrifice he offers is a vow or a freewill offering, it shall be eaten on the day he presents his sacrifice, but the remainder may But any meat of the be eaten on the next day. 18 sacrifice remaining until the third day must be burned up. If any of the meat from his peace offering is eaten on the third day, it will not be d 9 e 9 That is, a shallow pan for baking or frying Or That is, a deep pan or stew pan That is, a shal- is approximately 2 dry quarts or 2.2 liters (probably about 2.6 pounds or 1.2 kilograms of flour). low pan for baking or frying accepted. It will not be credited to the one who presented it; it shall be an abomination, and the 19 one who eats of it shall bear his iniquity. Meat that" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–35 ;" + }, + { + "verseNum": 12, + "text": "| 97 12 13 If one’s offering is a goat, he is to present it be- He must lay his hand on its fore the LORD. head and slaughter it in front of the Tent of Meet- ing. Then Aaron’s sons shall splatter its blood on 14 all sides of the altar. 16 15 And from his offering he shall present a food offering to the LORD: the fat that covers the en- both kidneys trails, all the fat that is on them, with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kid- Then the priest is to burn the food on the neys. altar as a food offering, a pleasing aroma. All the 17 fat is the LORD’s. This is a permanent statute for the generations to come, wherever you live: You must not eat any Laws for Sin Offerings (Lev. 5:1–13 ; 6:24–30) fat or any blood.” 2 Then the LORD said to Moses, “Tell the Is- raelites to do as follows with one who sins unintentionally against any of the LORD’s com- 3 mandments and does what is forbidden by them: a 7 If the anointed priest sins, bringing guilt on the people, he must bring to the LORD a young bull 4 without blemish as a sin offering for the sin he has committed. He must bring the bull to the en- trance to the Tent of Meeting before the LORD, 5 lay his hand on the bull’s head, and slaughter it before the LORD. Then the anointed priest shall 6 take some of the bull’s blood and bring it into the Tent of Meeting. The priest is to dip his finger in the blood and sprinkle some of it seven times be- fore the LORD, in front of the veil" + }, + { + "verseNum": 13, + "text": "13 16 14 15 Now if the whole congregation of Israel strays unintentionally and the matter escapes the no- tice of the assembly so that they violate any of the LORD’s commandments and incur guilt by doing when they become aware of what is forbidden, the sin they have committed, then the assembly must bring a young bull as a sin offering and pre- The elders sent it before the Tent of Meeting. of the congregation are to lay their hands on the bull’s head before the LORD, and it shall be Then the slaughtered before the LORD. 17 anointed priest is to bring some of the bull’s and he is to dip blood into the Tent of Meeting, his finger in the blood and sprinkle it seven times He is also before the LORD in front of the veil. to put some of the blood on the horns of the altar that is before the LORD in the Tent of Meeting, and he must pour out the rest of the blood at the 19 base of the altar of burnt offering at the entrance And he is to remove all to the Tent of Meeting. He shall the fat from it and burn it on the altar. offer this bull just as he did the bull for the sin offering; in this way the priest will make atone- 21 ment on their behalf, and they will be forgiven. Then he is to take the bull outside the camp and burn it, just as he burned the first bull. It is 22 the sin offering for the assembly. 18 20 23 24 When a leader sins unintentionally and does what is prohibited by any of the commandments When he of the LORD his God, he incurs guilt. becomes aware of the sin he has" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–13) 23 24 25 And the LORD said to Moses, “Tell Aaron and his sons that this is the law of the sin offering: In the place where the burnt offering is slaughtered, 26 the sin offering shall be slaughtered before the The priest who offers it LORD; it is most holy. shall eat it; it must be eaten in a holy place, in the Anything courtyard of the Tent of Meeting. that touches its flesh will become holy, and if any of the blood is spattered on a garment, you must 28 wash it in a holy place. 27 30 The clay pot in which the sin offering is boiled must be broken; if it is boiled in a bronze pot, the 29 pot must be scoured and rinsed with water. Any male among the priests may eat it; it is But no sin offering may be eaten if most holy. its blood has been brought into the Tent of Meet- ing to make atonement in the Holy Place; it must a 20 A tenth of an ephah be burned. b 21 c 21 baked The Guilt Offering (Lev. 5:14–19 ; Lev. 6:1–7) 7 2 4 3 “Now this is the law of the guilt offering, The guilt offering must which is most holy: be slaughtered in the place where the burnt of- fering is slaughtered, and the priest shall splatter And all the fat its blood on all sides of the altar. from it shall be offered: the fat tail, the fat that both kidneys with the fat on covers the entrails, them near the loins, and the lobe of the liver, The which is to be removed with the kidneys. 6 priest shall burn them on the altar as a food of- fering to the LORD; it is a guilt offering. Every male among the pri" + }, + { + "verseNum": 14, + "text": "–19 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 8, + "text": "–13) 15 1 2 Then the LORD called to Moses and spoke to him from the Tent of Meeting, saying, “Speak to the Israelites and tell them: When any of you brings an offering to the LORD, you may bring as your offering an animal from the herd or 3 the flock. If his offering is a burnt offering from the herd, he is to present an unblemished male. He must bring it to the entrance to the Tent of Meeting for its acceptance before the LORD. He is to lay his hand on the head of the burnt offering, so it can be accepted on his behalf to make atonement for 5 him. 4 And he shall slaughter the young bull before the LORD, and Aaron’s sons the priests are to pre- sent the blood and splatter it on all sides of the 6 altar at the entrance to the Tent of Meeting. Next, he is to skin the burnt offering and cut it 7 into pieces. 8 The sons of Aaron the priest shall put a fire on the altar and arrange wood on the fire. Then Aa- ron’s sons the priests are to arrange the pieces, 9 including the head and the fat, atop the burning wood on the altar. The entrails and legs must be washed with water, and the priest shall burn all of it on the altar as a burnt offering, a food offer- 10 ing, a pleasing aroma to the LORD. 11 If, however, one’s offering is a burnt offering from the flock—from the sheep or goats—he is to present an unblemished male. He shall slaughter it on the north side of the altar before the LORD, and Aaron’s sons the priests are to 12 splatter its blood against the altar on all sides. He i" + }, + { + "verseNum": 14, + "text": "–23) food offering, a pleasing aroma to the LORD. 2 2 “When anyone brings a grain offering to the LORD, his offering must consist of fine flour. He is to pour olive oil on it, put frankincense on it, and bring it to Aaron’s sons the priests. The priest shall take a handful of the flour and oil, to- gether with all the frankincense, and burn this as a memorial portion on the altar, a food offering, The remainder of a pleasing aroma to the LORD. the grain offering shall belong to Aaron and his sons; it is a most holy part of the food offerings 4 to the LORD. 3 Now if you bring an offering of grain baked in an oven, it must consist of fine flour, either un- leavened cakes mixed with oil or unleavened 5 wafers coated with oil. b If your offering is a grain offering prepared on a 6 it must be unleavened bread made of Crumble it and pour oil griddle, fine flour mixed with oil. 7 on it; it is a grain offering. c If your offering is a grain offering cooked in a 8 pan, it must consist of fine flour with oil. 9 When you bring to the LORD the grain offering made in any of these ways, it is to be presented The to the priest, and he shall take it to the altar. priest is to remove the memorial portion from the grain offering and burn it on the altar as a 10 food offering, a pleasing aroma to the LORD. But the remainder of the grain offering shall belong to Aaron and his sons; it is a most holy 11 part of the food offerings to the LORD. If, instead, one’s offering to the LORD is a burnt b 5" + }, + { + "verseNum": 15, + "text": "| 99 Sins Requiring a Guilt Offering" + }, + { + "verseNum": 16, + "text": "all the frankincense from the grain offering, and burn the memorial portion on the altar as a 16 pleasing aroma to the LORD. 18 17 Aaron and his sons are to eat the remainder. It must be eaten without leaven in a holy place; they are to eat it in the courtyard of the Tent of It must not be baked with leaven; I Meeting. have assigned it as their portion of My food offer- ings. It is most holy, like the sin offering and the Any male among the sons of Aa- guilt offering. ron may eat it. This is a permanent portion from the food offerings to the LORD for the genera- tions to come. Anything that touches them will 19 become holy.” 20 b a Then the LORD said to Moses, “This is the of- fering that Aaron and his sons must present to the LORD on the day he is anointed: a tenth of an ephah of fine flour as a regular grain offering, 21 half of it in the morning and half in the evening. you It shall be prepared with oil on a griddle; c are to bring it well-kneaded and present it as a 22 grain offering broken in pieces, a pleasing The priest, who is one of aroma to the LORD. Aaron’s sons and will be anointed to take his place, is to prepare it. As a permanent portion for Every the LORD, it must be burned completely. grain offering for a priest shall be burned com- The Sin Offering pletely; it is not to be eaten.”" + }, + { + "verseNum": 24, + "text": "–30) 35 5 “If someone sins by failing to testify when he hears a public charge about something he has witnessed, whether he has seen it or learned 2 of it, he shall bear the iniquity. Or if a person touches anything unclean— whether the carcass of any unclean wild animal or livestock or crawling creature—even if he is 3 unaware of it, he is unclean and guilty. Or if he touches human uncleanness—anything by which one becomes unclean—even if he is un- 4 aware of it, when he realizes it, he is guilty. Or if someone swears thoughtlessly with his lips to do anything good or evil—in whatever matter a man may rashly pronounce an oath— even if he is unaware of it, when he realizes it, he 5 is guilty in the matter. 6 If someone incurs guilt in one of these ways, he and he must confess the sin he has committed, must bring his guilt offering to the LORD for the sin he has committed: a female lamb or goat from the flock as a sin offering. And the priest will 7 make atonement for him concerning his sin. If, however, he cannot afford a lamb, he may bring to the LORD as restitution for his sin two turtledoves or two young pigeons—one as a sin 8 He is offering and the other as a burnt offering. to bring them to the priest, who shall first pre- sent the one for the sin offering. He is to twist its 9 head at the front of its neck without severing it; then he is to sprinkle some of the blood of the sin offering on the side of the altar, while the rest of the blood is drained out at the base of" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–10) 13 14 15 b 16 Then the LORD said to Moses, “If someone acts unfaithfully and sins unintentionally against any of the LORD’s holy things, he must bring his guilt offering to the LORD: an unblemished ram from the flock, of proper value in silver shekels according to the sanctuary shekel; it is a guilt offering. Regarding any holy thing he has harmed, he must make restitution by adding a fifth of its value to it and giving it to the priest, who will make atonement on his behalf with the 17 ram as a guilt offering, and he will be forgiven. c 18 If someone sins and violates any of the LORD’s commandments even though he was unaware, He he is guilty and shall bear his punishment. is to bring to the priest an unblemished ram of proper value from the flock as a guilt offering. Then the priest will make atonement on his be- half for the wrong he has committed in igno- It is a guilt rance, and he will be forgiven. offering; he was certainly guilty before the LORD.” a 11 A tenth of an ephah b 15 d 19 flock or its equivalence he has paid full compensation c 15 A shekel 19 d Or Or 6" + }, + { + "verseNum": 11, + "text": "–21) frankincense, as a food offering to the LORD. 16 3 2 “If one’s offering is a peace offering and he offers an animal from the herd, whether male or female, he must present it without blem- He is to lay his hand on the ish before the LORD. head of the offering and slaughter it at the en- trance to the Tent of Meeting. Then Aaron’s sons the priests shall splatter the blood on all sides of 3 the altar. 4 5 From the peace offering he is to bring a food offering to the LORD: the fat that covers the en- trails, all the fat that is on them, both kidneys with the fat on them near the loins, and the lobe of the liver, which he is to remove with the kid- neys. Then Aaron’s sons are to burn it on the altar atop the burnt offering that is on the burn- ing wood, as a food offering, a pleasing aroma to 6 the LORD. If, however, one’s peace offering to the LORD is from the flock, he must present a male or female 7 without blemish. 8 If he is presenting a lamb for his offering, he must present it before the LORD. He is to lay his hand on the head of his offering and slaughter it in front of the Tent of Meeting. Then Aaron’s sons 9 shall splatter its blood on all sides of the altar. And from the peace offering he shall bring a food offering to the LORD consisting of its fat: the entire fat tail cut off close to the backbone, the fat 10 that covers the entrails, all the fat that is on them, both kidneys with the fat on them near the 11 loins, and the lobe of the liver, which he is to re- mo" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–13) Aaron and his descendants. 29 “Now this is what you are to do to conse- crate Aaron and his sons to serve Me as 2 priests: Take a young bull and two rams without along with unleavened bread, unleav- blemish, ened cakes mixed with oil, and unleavened wa- fers anointed with oil. Make them out of fine put them in a basket, and present wheat flour, them in the basket, along with the bull and the a 32 two rams. offering 3 5 Then present Aaron and his sons at the en- trance to the Tent of Meeting and wash them Take the garments and clothe Aa- with water. ron with the tunic, the robe of the ephod, the ephod itself, and the breastplate. Fasten the Put the ephod on him with its woven waistband. turban on his head and attach the holy diadem to Then take the anointing oil and the turban. 8 anoint him by pouring it on his head. 7 6 9 Present his sons as well and clothe them with Wrap the sashes around Aaron and his tunics. sons and tie headbands on them. The priesthood shall be theirs by a permanent statute. In this The Order of the Sacrifices" + }, + { + "verseNum": 13, + "text": "| 101 35 36 This is the portion of the food offerings to the LORD for Aaron and his sons since the day they were presented to serve the LORD as On the day they were anointed, the priests. LORD commanded that this be given them by the sons of Israel. It is a permanent portion for 37 the generations to come. This is the law of the burnt offering, the grain offering, the sin offering, the guilt offering, the 38 ordination offering, and the peace offering, which the LORD gave Moses on Mount Sinai on the day He commanded the Israelites to present their offerings to the LORD in the Wilderness of Sinai. Moses Consecrates Aaron and His Sons" + }, + { + "verseNum": 14, + "text": "The Priests’ Sin Offering 14 15 Moses then brought the bull near for the sin of- fering, and Aaron and his sons laid their hands on its head. Moses slaughtered the bull, took some of the blood, and applied it with his finger to all four horns of the altar, purifying the altar. He poured out the rest of the blood at the base of the altar and consecrated it so that atonement 16 could be made on it. Moses also took all the fat that was on the en- trails, the lobe of the liver, and both kidneys and their fat, and burned it all on the altar. But the bull with its hide, flesh, and dung he burned out- The Priests’ Burnt Offering side the camp, as the LORD had commanded him. 18 17 20 21 19 Then Moses presented the ram for the burnt offering, and Aaron and his sons laid their hands on its head. Moses slaughtered the ram and splattered the blood on all sides of the altar. He cut the ram into pieces and burned the head, the pieces, and the fat. He washed the entrails and legs with water and burned the entire ram on the altar as a burnt offering, a pleasing aroma, a food offering to the LORD, just as the LORD had com- The Ram of Ordination" + }, + { + "verseNum": 22, + "text": "-36) way you are to ordain Aaron and his sons. 10 12 11 You are to present the bull at the front of the Tent of Meeting, and Aaron and his sons are to And you shall lay their hands on its head. slaughter the bull before the LORD at the en- trance to the Tent of Meeting. Take some of the blood of the bull and put it on the horns of the 13 altar with your finger; then pour out the rest of the blood at the base of the altar. Take all the fat that covers the entrails and the lobe of the liver, and both kidneys with the fat on them, and burn them on the altar. But burn the flesh of the bull and its hide and dung outside the camp; 15 it is a sin offering. 14 c 16 Take one of the rams, and Aaron and his sons You are to shall lay their hands on its head. 17 slaughter the ram, take its blood, and splatter it Cut the ram into pieces, on all sides of the altar. wash the entrails and legs, and place them with its head and other pieces. Then burn the entire ram on the altar; it is a burnt offering to the LORD, a pleasing aroma, a food offering to the 19 LORD. 18 20 21 Take the second ram, and Aaron and his sons Slaughter the are to lay their hands on its head. ram, take some of its blood, and put it on the right earlobes of Aaron and his sons, on the thumbs of their right hands, and on the big toes of their right feet. Splatter the remaining blood on all And take some of the blood sides of the altar. on the altar and some of the anointing oil and sprinkle it on Aaron and his garments, as" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–7) man with his clan and his family. 3 This is the account of Aaron and Moses at the time the LORD spoke with Moses on Mount a 4 Sinai. strange b 9 3 These are the names of the sons of Aaron: Nadab the firstborn, then Abihu, Eleazar, and Ith- amar. These were Aaron’s sons, the anointed 4 priests, who were ordained to serve as priests. a Nadab and Abihu, however, died in the pres- ence of the LORD when they offered unauthor- ized fire before the LORD in the Wilderness of Sinai. And since they had no sons, only Eleazar and Ithamar served as priests during the lifetime The Duties of the Levites of their father Aaron. 5 6 7 8 Then the LORD said to Moses, “Bring the tribe of Levi and present them to Aaron the priest to They are to perform duties for him assist him. and for the whole congregation before the Tent of Meeting, attending to the service of the taber- They shall take care of all the furnishings nacle. of the Tent of Meeting and fulfill obligations for the Israelites by attending to the service of the 9 tabernacle. b 10 Assign the Levites to Aaron and his sons; they have been given exclusively to him from among So you shall appoint Aaron and the Israelites. his sons to carry out the duties of the priesthood; but any outsider who approaches the tabernacle 11 must be put to death.” 12 Again the LORD spoke to Moses, saying, “Be- hold, I have taken the Levites from among the children of Israel in place of every firstborn Isra- 13 elite from the womb. The Levites belong to Me" + }, + { + "verseNum": 4, + "text": ". shekel (approximately 0.4 ounces or 11.4 grams). Moses, Aaron, and Aaron’s sons were to camp to the east of the tabernacle, toward the sunrise, before the Tent of Meeting. They were to per- form the duties of the sanctuary as a service on behalf of the Israelites; but any outsider who ap- 39 proached the sanctuary was to be put to death. The total number of Levites that Moses and Aaron counted by their clans at the LORD’s com- mand, including all the males a month old or The Redemption of the Firstborn more, was 22,000. 40 41 Then the LORD said to Moses, “Number every firstborn male of the Israelites a month old or more, and list their names. You are to take the Levites for Me—I am the LORD—in place of all the firstborn of Israel, and the livestock of the Le- vites in place of all the firstborn of the livestock 42 of the Israelites.” So Moses numbered all the firstborn of the 43 Israelites, as the LORD had commanded him. The total number of the firstborn males a 44 month old or more, listed by name, was 22,273. 45 46 Again the LORD spoke to Moses, saying, “Take the Levites in place of all the firstborn of Israel, and the livestock of the Levites in place of their livestock. The Levites belong to Me; I am the 47 LORD. To redeem the 273 firstborn Israelites who outnumber the Levites, you are to collect five shekels for each one, according to the sanc- Give the tuary shekel of twenty gerahs. money to Aaron and his sons as the redemption 49 price for the excess among the Israel" + }, + { + "verseNum": 11, + "text": "| 103 24 people, and the glory of the LORD appeared to all Fire came out from the presence of the people. the LORD and consumed the burnt offering and the fat portions on the altar. And when all the people saw it, they shouted for joy and fell The Sin of Nadab and Abihu" + }, + { + "verseNum": 12, + "text": "12 And Moses said to Aaron and his remaining sons, Eleazar and Ithamar, “Take the grain offer- ing that remains from the food offerings to the 13 LORD and eat it without leaven beside the altar, You shall eat it in a holy because it is most holy. place, because it is your share and your sons’ share of the food offerings to the LORD; for this 14 is what I have been commanded. 15 And you and your sons and daughters may eat the breast of the wave offering and the thigh of the contribution in a ceremonially clean place, because these portions have been assigned to you and your children from the peace offerings They are to bring the thigh of the sons of Israel. of the contribution and the breast of the wave of- fering, together with the fat portions of the food offerings, to wave as a wave offering before the LORD. It will belong permanently to you and 16 your children, as the LORD has commanded.” 17 Later, Moses searched carefully for the goat of the sin offering, and behold, it had been burned up. He was angry with Eleazar and Itha- “Why mar, Aaron’s remaining sons, and asked, didn’t you eat the sin offering in the holy place? For it is most holy; it was given to you to take away the guilt of the congregation by making Since its atonement for them before the LORD. blood was not brought inside the holy place, you should have eaten it in the sanctuary area, as I 19 commanded.” 18 But Aaron replied to Moses, “Behold, this very day they presented their sin offering and their burnt o" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–47 ;" + }, + { + "verseNum": 4, + "text": "and" + }, + { + "verseNum": 23, + "text": ", where camels and gnats are both forbidden as food. . Or NE and WH do not include . NA does not" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 8, + "text": "| 105 creature that moves along the ground, whether it crawls on its belly or walks on four or more feet; 43 for such creatures are detestable. Do not defile yourselves by any crawling crea- 44 ture; do not become unclean or defiled by them. b For I am the LORD your God; consecrate your- selves, therefore, and be holy, because I am holy. You must not defile yourselves by any creature that crawls along the ground. For I am the LORD, who brought you up out of the land of Egypt so that I would be your God; therefore be 46 holy, because I am holy. 45 This is the law regarding animals, birds, all liv- ing creatures that move in the water, and all You creatures that crawl along the ground. must distinguish between the unclean and the clean, between animals that may be eaten and Purification after Childbirth those that may not.’ 47 ” 2 “Say to Then the LORD said to Moses, the Israelites, ‘A woman who becomes pregnant and gives birth to a son will be unclean for seven days, as she is during the days of her And on the eighth day the flesh of menstruation. 4 the boy’s foreskin is to be circumcised. 3 The woman shall continue in purification from her bleeding for thirty-three days. She must not touch anything sacred or go into the sanctuary 5 until the days of her purification are complete. If, however, she gives birth to a daughter, the woman will be unclean for two weeks as she is during her menstruation. Then she must con- tinue in purification from her bleeding for sixty- 6 six days" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Laws about Skin Diseases" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–32 ;" + }, + { + "verseNum": 4, + "text": "| 107 and isolate the contaminated fabric for seven 51 days. 52 On the seventh day the priest shall reexamine it, and if the mildew has spread in the fabric, weave, knit, or leather, then regardless of how it is used, it is a harmful mildew; the article is un- He is to burn the fabric, weave, or knit, clean. whether the contaminated item is wool or linen or leather. Since the mildew is harmful, the arti- 53 cle must be burned up. 54 55 But when the priest reexamines it, if the mil- dew has not spread in the fabric, weave, knit, or the priest is to order the con- leather article, taminated article to be washed and isolated for After it has been washed, another seven days. the priest is to reexamine it, and if the mildewed article has not changed in appearance, it is un- clean. Even though the mildew has not spread, you must burn it, whether the rot is on the front 56 or back. 57 If the priest examines it and the mildew has faded after it has been washed, he must cut the contaminated section out of the fabric, leather, But if it reappears in the weave, or knit. fabric, weave, or knit, or on any leather article, it is spreading. You must burn the contaminated 58 article. If the mildew disappears from the fabric, weave, or knit, or any leather article after wash- ing, then it is to be washed again, and it will be 59 clean. This is the law concerning a mildew contami- nation in wool or linen fabric, weave, or knit, or any leather article, for pronouncing it clean or Cleansing from" + }, + { + "verseNum": 5, + "text": "5 18 a 6 Then the priest shall command that one of the birds be slaughtered over fresh water in a clay pot. And he is to take the live bird together with the cedar wood, scarlet yarn, and hyssop, and dip 7 them into the blood of the bird that was slaugh- Seven times he shall tered over the fresh water. sprinkle the one to be cleansed of the skin dis- ease. Then he shall pronounce him clean and 8 release the live bird into the open field. 9 The one being cleansed must wash his clothes, shave off all his hair, and bathe with water; then he will be ceremonially clean. Afterward, he may enter the camp, but he must remain outside his On the seventh day he must tent for seven days. shave off all his hair—his head, his beard, his eyebrows, and the rest of his hair. He must wash his clothes and bathe himself with water, and he 10 will be clean. c b 11 On the eighth day he is to bring two unblem- ished male lambs, an unblemished ewe lamb a year old, a grain offering of three-tenths of an ephah of fine flour mixed with olive oil, and one log of olive oil. The priest who performs the cleansing shall present the one to be cleansed, together with these offerings, before the LORD at 12 the entrance to the Tent of Meeting. 13 Then the priest is to take one of the male lambs and present it as a guilt offering, along with the log of olive oil; and he must wave them as a wave Then he is to slaugh- offering before the LORD. ter the lamb in the sanctuary area where the sin offering and burnt off" + }, + { + "verseNum": 10, + "text": "" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–12) sembly of the LORD. 9 10 When you are encamped against your enemies, then you shall keep yourself from every wicked If any man among you becomes unclean thing. 11 because of a nocturnal emission, he must leave the camp and stay outside. When evening ap- proaches, he must wash with water, and when 12 the sun sets he may return to the camp. 13 You must have a place outside the camp to go And you must have a dig- and relieve yourself. ging tool in your equipment so that when you re- lieve yourself you can dig a hole and cover up 14 your excrement. For the LORD your God walks throughout your camp to protect you and deliver your enemies to you. Your camp must be holy, lest He see any- thing unclean among you and turn away from you. Miscellaneous Laws 15 16 Do not return a slave to his master if he has Let him live among you taken refuge with you. wherever he chooses, in the town of his pleasing. 17 Do not oppress him. 18 e No daughter or son of Israel is to be a shrine You must not bring the wages of a prostitute. into the prostitute, whether female or male, house of the LORD your God to fulfill any vow, because both are detestable to the LORD your 19 God. 20 Do not charge your brother interest on money, You may charge food, or any other type of loan. a foreigner interest, but not your brother, so that the LORD your God may bless you in everything to which you put your hand in the land that you 21 are entering to possess. silver. the region between the Euphrates and Balih Riv" + }, + { + "verseNum": 8, + "text": "| 109 33 34 35 Then the LORD said to Moses and Aaron, “When you enter the land of Canaan, which I a am giving you as your possession, and I put a into a house in that contamination of mildew the owner of the house shall come and land, tell the priest, ‘Something like mildew has ap- 36 peared in my house.’ The priest must order that the house be cleared before he enters it to examine the mil- dew, so that nothing in the house will become un- clean. After this, the priest shall go in to inspect 37 the house. He is to examine the house, and if the mildew on the walls consists of green or red depressions 38 that appear to be beneath the surface of the wall, the priest shall go outside the doorway of the 39 house and close it up for seven days. 41 40 On the seventh day the priest is to return and inspect the house. If the mildew has spread on he must order that the contaminated the walls, stones be pulled out and thrown into an unclean place outside the city. And he shall have the in- side of the house scraped completely and the plaster that is scraped off dumped into an un- 42 clean place outside the city. So different stones must be obtained to re- place the contaminated ones, as well as addi- 43 tional mortar to replaster the house. If the mildew reappears in the house after the stones have been torn out and the house has been scraped and replastered, the priest must come and inspect it. 44 45 46 If the mildew has spread in the house, it is a de- It must structive mildew; the h" + }, + { + "verseNum": 9, + "text": "9 10 24 Any saddle on which the man with the dis- charge rides will be unclean. Whoever touches anything that was under him will be unclean until evening, and whoever carries such things must wash his clothes and bathe with water, and 11 he will be unclean until evening. 12 If the man with the discharge touches anyone without first rinsing his hands with water, the one who was touched must wash his clothes and bathe with water, and he will be unclean until evening. Any clay pot that the man with the discharge touches must be broken, and any The Cleansing of Men wooden utensil must be rinsed with water. 13 a 14 and he shall be clean. When the man has been cleansed from his dis- charge, he must count off seven days for his cleansing, wash his clothes, and bathe himself in On the fresh water, eighth day he is to take two turtledoves or two young pigeons, come before the LORD at the en- trance to the Tent of Meeting, and give them to The priest is to sacrifice them, one the priest. as a sin offering and the other as a burnt offering. In this way the priest will make atonement for the man before the LORD because of his dis- 16 charge. 15 17 When a man has an emission of semen, he must bathe his whole body with water, and he will be unclean until evening. Any clothing or leather on which there is an emission of semen 18 must be washed with water, and it will remain unclean until evening. If a man lies with a woman and there is an emission of semen, both must bathe with water, and t" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–34 ;" + }, + { + "verseNum": 31, + "text": "| 111 18 tunic, with linen undergarments. He must tie a linen sash around him and put on the linen tur- ban. These are holy garments, and he must bathe And himself with water before he wears them. he shall take from the congregation of Israel two male goats for a sin offering and one ram for a 6 burnt offering. 5 19 Then he shall go out to the altar that is before the LORD and make atonement for it. He is to take some of the bull’s blood and some of the goat’s blood and put it on all the horns of the al- He is to sprinkle some of the blood on it tar. with his finger seven times to cleanse it and con- 20 secrate it from the uncleanness of the Israelites. 7 Aaron is to present the bull for his sin offering and make atonement for himself and his house- hold. Then he shall take the two goats and pre- sent them before the LORD at the entrance to the 8 Tent of Meeting. a 9 After Aaron casts lots for the two goats, one for the LORD and the other for the scapegoat, he shall present the goat chosen by lot for the LORD But the goat and sacrifice it as a sin offering. chosen by lot as the scapegoat shall be presented alive before the LORD to make atonement by 11 sending it into the wilderness as the scapegoat. 10 13 12 When Aaron presents the bull for his sin offer- ing and makes atonement for himself and his household, he is to slaughter the bull for his own Then he must take a censer full of sin offering. burning coals from the altar before the LORD, and two handfuls of finely ground" + }, + { + "verseNum": 32, + "text": "32 33 The priest who is anointed and ordained to succeed his father as high priest shall make atonement. He will put on the sacred linen gar- a and make atonement for the Most Holy ments Place, the Tent of Meeting, and the altar, and for 34 the priests and all the people of the assembly. This is to be a permanent statute for you, to make atonement once a year for the Israelites because of all their sins.” And all this was done as the LORD had com- The Place of Sacrifice manded Moses. 2 17 b “Speak to Then the LORD said to Moses, Aaron, his sons, and all the Israelites and 3 tell them this is what the LORD has commanded: ‘Anyone from the house of Israel who slaugh- 4 ters an ox, a lamb, or a goat in the camp or out- instead of bringing it to the entrance to side of it the Tent of Meeting to present it as an offering to the LORD before His tabernacle—that man shall incur bloodguilt. He has shed blood and must be 5 cut off from among his people. 6 For this reason the Israelites will bring to the LORD the sacrifices they have been offering in the open fields. They are to bring them to the priest at the entrance to the Tent of Meeting and offer them as sacrifices of peace offerings to the LORD. The priest will then splatter the blood on the altar of the LORD at the entrance to the Tent of Meeting and burn the fat as a pleasing aroma 7 to the LORD. c They must no longer offer their sacrifices to the goat demons to which they have prostituted themselves. This will be a permanent sta" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–30) not get out until you have paid the last penny. 27 26 a b 28 29 You have heard that it was said, ‘Do not com- mit adultery.’ But I tell you that anyone who looks at a woman to lust after her has already If committed adultery with her in his heart. your right eye causes you to sin, gouge it out and throw it away. It is better for you to lose one part of your body than for your whole body to be And if your right hand thrown into hell. causes you to sin, cut it off and throw it away. It is better for you to lose one part of your body Divorce" + }, + { + "verseNum": 5, + "text": "; also in" + }, + { + "verseNum": 21, + "text": "and 1 Kings 11:7. g 31 . Milcom, also called Molech, was god of the h 3 Shimeah is approximately 75.4 pounds or 34.2 kilograms of gold. is a variant Literally , and ; see 1 Samuel 16:9, 2 Samuel 21:21, and 1 Chronicles 2:13. Shammah Literally , of 292 | 2 Samuel 13:18 18 31 a So Amnon’s attendant threw her out and bolted the door behind her. Now Tamar was because this is wearing a robe of many colors, And king’s virgin daughters wore. what the Tamar put ashes on her head and tore her robe. And putting her hand on her head, she went 20 away crying aloud. 19 Her brother Absalom said to her, “Has your brother Amnon been with you? Be quiet for now, my sister. He is your brother. Do not take this thing to heart.” So Tamar lived as a desolate woman in the house 21 of her brother Absalom. b 22 When King David heard all this, he was furi- ous. And Absalom never said a word to Am- non, either good or bad, because he hated Amnon Absalom’s Revenge on Amnon for violating his sister Tamar. 23 Two years later, when Absalom’s sheepshear- 24 ers were at Baal-hazor near Ephraim, he invited And he went to the king all the sons of the king. and said, “Your servant has just hired shearers. Will the king and his servants please come with 25 me?” “No, my son,” the king replied, “we should not all go, or we would be a burden to you.” Although Absalom urged him, he was not willing to go, but 26 gave him his blessing. “If not,” said Absalom, “please let my brother Amnon go with us.” 27 “Why should he" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 9, + "text": "–18) due. 8 9 Be indebted to no one, except to one another in love. For he who loves his neighbor has fulfilled The commandments “Do not commit the law. c adultery,” “Do not murder,” “Do not steal,” “Do and any other commandments, are not covet,” summed up in this one decree: “Love your neigh- bor as yourself.” Love does no wrong to its neighbor. Therefore love is the fulfillment of the The Day Is Near law. 11 10 d 13 12 And do this, understanding the occasion. The hour has come for you to wake up from your slumber, for our salvation is nearer now than The night is nearly when we first believed. over; the day has drawn near. So let us lay aside the deeds of darkness and put on the armor of Let us behave decently, as in the daytime, light. not in carousing and drunkenness, not in sexual e immorality and debauchery, not in dissension and jealousy. the Lord Jesus Christ, and make no provision for The Law of Liberty the desires of the flesh." + }, + { + "verseNum": 13, + "text": "and" + }, + { + "verseNum": 14, + "text": "| 113 27 28 For the men foreigner who lives among you. who were in the land before you committed all these abominations, and the land has become de- filed. So if you defile the land, it will vomit you 29 out as it spewed out the nations before you. 30 Therefore anyone who commits any of these abominations must be cut off from among his people. You must keep My charge not to prac- tice any of the abominable customs that were practiced before you, so that you do not defile Commandments for Holiness yourselves by them. I am the LORD your God.” 2 b “Speak to Then the LORD said to Moses, the whole congregation of Israel and tell them: Be holy because I, the LORD your God, am 3 holy. Each of you must respect his mother and father, and you must keep My Sabbaths. I am the LORD 4 your God. Do not turn to idols or make for yourselves mol- 5 ten gods. I am the LORD your God. 6 7 When you sacrifice a peace offering to the LORD, you shall offer it for your acceptance. It shall be eaten on the day you sacrifice it, or on the next day; but what remains on the third day must be burned up. If any of it is eaten on the 8 third day, it is tainted and will not be accepted. Whoever eats it will bear his iniquity, for he has profaned what is holy to the LORD. That person Love Your Neighbor" + }, + { + "verseNum": 15, + "text": "15 29 You must not pervert justice; you must not show partiality to the poor or favoritism to the 16 rich; you are to judge your neighbor fairly. You must not defile your daughter by making her a prostitute, or the land will be prostituted 30 and filled with depravity. You must not go about spreading slander a among your people. You must not endanger the life 17 bor. I am the LORD. of your neigh- 18 You must not harbor hatred against your brother in your heart. Directly rebuke your neighbor, so that you will not incur guilt on account of him. Do not seek revenge or bear a grudge against any of your people, but love your Keep My Statutes neighbor as yourself. 19 I am the LORD. b You are to keep My statutes. You shall not crossbreed two different kinds of livestock; you shall not sow your fields with two kinds of seed; and you shall not wear clothing made of two 20 kinds of material. 21 If a man lies carnally with a slave girl promised to another man but who has not been redeemed or given her freedom, there must be due punish- ment. But they are not to be put to death, because The man, however, she had not been freed. must bring a ram to the entrance to the Tent of The Meeting as his guilt offering to the LORD. priest shall make atonement on his behalf before the LORD with the ram of the guilt offering for the sin he has committed, and he will be forgiven 23 the sin he has committed. 22 c When you enter the land and plant any kind of tree for food, you shall regard the fruit as" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + }, + { + "verseNum": 9, + "text": "; a stadion was about 607 feet or 185 meters ; NE and WH do not include g 9 f 6 or mother 18 “Do you still not understand?” Jesus asked. “Do you not yet realize that whatever enters the mouth goes into the stomach and then is eliminated? But the things that come out of the mouth come from the heart, and these things de- For out of the heart come evil file a man. thoughts, murder, adultery, sexual immorality, d 4 That is, between three and six in the morning he need not honor his father or mother . blind guides of the blind h 14 NE and TR (see also" + }, + { + "verseNum": 10, + "text": "–21 ; 1 Corinthians 5:1–8) 5 My son, pay attention to my wisdom; incline your ear to my insight, that you may maintain discretion b 2 3 and your lips may preserve knowledge. Though the lips of the forbidden woman c drip honey and her speech is smoother than oil, 4 5 in the end she is bitter as wormwood, sharp as a double-edged sword. d Her feet go down to death; 6 her steps lead straight to Sheol. She does not consider the path of life; 7 she does not know that her ways are unstable. So now, my sons, listen to me, 8 and do not turn aside from the words of my mouth. 9 Keep your path far from her; do not go near the door of her house, 10 lest you concede your vigor to others, and your years to one who is cruel; lest strangers feast on your wealth, 11 and your labors enrich the house of a foreigner. 12 At the end of your life you will groan when your flesh and your body are spent, 13 and you will say, “How I hated discipline, and my heart despised reproof! 14 I did not listen to the voice of my teachers or incline my ear to my mentors. I am on the brink of utter ruin 15 in the midst of the whole assembly.” 16 Drink water from your own cistern, and running water from your own well. Why should your springs flow in the streets, 17 your streams of water in the public squares? Let them be yours alone, 18 never to be shared with strangers. May your fountain be blessed, A loving doe, a graceful fawn— e may her breasts satisfy you always; may you be captivated by her love 20 forever. f" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 6, + "text": "| 115 exposing one’s own kin; both shall bear their 20 iniquity. If a man lies with his uncle’s wife, he has un- covered the nakedness of his uncle. They will 21 bear their sin; they shall die childless. If a man marries his brother’s wife, it is an act of impurity. He has uncovered the nakedness of Distinguish between Clean and Unclean his brother; they shall be childless. 22 23 You are therefore to keep all My statutes and ordinances, so that the land where I am bringing You must not you to live will not vomit you out. follow the statutes of the nations I am driving out before you. Because they did all these things, I 24 abhorred them. But I have told you that you will inherit their land, since I will give it to you as an inheritance— a land flowing with milk and honey. I am the LORD your God, who has set you apart from the 25 peoples. You are therefore to distinguish between clean and unclean animals and birds. Do not become contaminated by any animal or bird, or by any- thing that crawls on the ground; I have set these You are to be holy to apart as unclean for you. Me because I, the LORD, am holy, and I have set 27 you apart from the nations to be My own. 26 A man or a woman who is a medium or spiritist must surely be put to death. They shall be stoned; Holiness Required of Priests their blood is upon them.’ ” 21 2 Then the LORD said to Moses, “Speak to Aaron’s sons, the priests, and tell them that a priest is not to defile himself for a dead except for his imme- person" + }, + { + "verseNum": 7, + "text": "7 A priest must not marry a woman defiled by 8 prostitution or divorced by her husband, for the You are to regard him priest is holy to his God. as holy, since he presents the food of your God. He shall be holy to you, because I the LORD If a priest’s am holy—I who set you apart. daughter defiles herself by prostituting herself, she profanes her father; she must be burned in 10 the fire. 9 a 11 The priest who is highest among his brothers, who has had the anointing oil poured on his head and has been ordained to wear the priestly gar- or tear ments, must not let his hair hang loose He must not go near any dead his garments. body; he must not defile himself, even for his fa- He must not leave or desecrate ther or mother. the sanctuary of his God, for the consecration of the anointing oil of his God is on him. I am the 13 LORD. 14 12 15 The woman he marries must be a virgin. He is not to marry a widow, a divorced woman, or one defiled by prostitution. He is to marry a vir- so that he does not gin from his own people, defile his offspring among his people, for I am the Restrictions against Those with Blemishes LORD who sanctifies him.” 16 17 Then the LORD said to Moses, “Say to Aaron, ‘For the generations to come, none of your de- scendants who has a physical defect may ap- 18 proach to offer the food of his God. 19 No man who has any defect may approach— no man who is blind, lame, disfigured, or de- 20 no man who has a broken foot or formed; hand, or who is a hunchback or dwarf" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 14, + "text": "| 117 17 18 Then the LORD said to Moses, “Speak to Aaron and his sons and all the Israelites and tell them, ‘Any man of the house of Israel or any foreign resident who presents a gift for a burnt 19 offering to the LORD, whether to fulfill a vow or must offer an unblem- as a freewill offering, ished male from the cattle, sheep, or goats in You order for it to be accepted on your behalf. must not present anything with a defect, because 21 it will not be accepted on your behalf. 20 When a man presents a peace offering to the LORD from the herd or flock to fulfill a vow or as 22 a freewill offering, it must be without blemish or You are not to present defect to be acceptable. to the LORD any animal that is blind, injured, or maimed, or anything with a running sore, a fes- tering rash, or a scab; you must not put any of a 23 these on the altar as a food offering to the LORD. 24 You may present as a freewill offering an ox or sheep that has a deformed or stunted limb, but You it is not acceptable in fulfillment of a vow. are not to present to the LORD an animal whose testicles are bruised, crushed, torn, or cut; you are not to sacrifice them in your land. Neither you nor a foreigner shall present food to your God from any such animal. They will not be accepted on your behalf, because they are de- b 26 formed and flawed.’ ” 25 27 Then the LORD said to Moses, “When an ox, 28 a sheep, or a goat is born, it must remain with its mother for seven days. From the eighth day on, it c will" + }, + { + "verseNum": 15, + "text": "The Feast of Weeks" + }, + { + "verseNum": 23, + "text": "–25) ished. 29 “On the first day of the seventh month, you are to hold a sacred assembly, and you must not do any regular work. This will be a 2 day for you to sound the trumpets. 8 each lamb shall be a quarter hin. Pour out the of- fering of fermented drink to the LORD in the And offer the second lamb at sanctuary area. twilight, with the same grain offering and drink offering as in the morning. It is a food offering, a The Sabbath Offerings pleasing aroma to the LORD. 9 On the Sabbath day, present two unblemished a year-old male lambs, accompanied by a grain of- fering of two-tenths of an ephah of fine flour 10 mixed with oil, as well as a drink offering. This is the burnt offering for every Sabbath, in addition to the regular burnt offering and its The Monthly Offerings drink offering. 11 12 At the beginning of every month, you are to present to the LORD a burnt offering of two young bulls, one ram, and seven male lambs a b along with three- year old, all unblemished, mixed with oil as tenths of an ephah of fine flour a grain offering with each bull, two-tenths of an ephah of fine flour mixed with oil as a grain offer- and a tenth of an ephah of ing with the ram, fine flour mixed with oil as a grain offering with each lamb. This is a burnt offering, a pleasing 14 aroma, a food offering to the LORD. 13 d c with each bull, a third of a hin Their drink offerings shall be half a hin of with the wine ram, and a quarter hin with each lamb. This is the monthly burnt offering to b" + }, + { + "verseNum": 26, + "text": "–32 ;" + }, + { + "verseNum": 33, + "text": "–36. f 9 ; see 1 Kings 7:46. Or is a variant of not from outside The That is, the Feast of Tabernacles Some Hebrew manuscripts and LXX g 10 e 9 Or Literally That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai ; see 1 Kings 8:8. 406 | 2 Chronicles 6:1 Solomon Blesses the LORD (1 Kings 8:12–21) 6 Then Solomon declared: 2 “The LORD has said that He would dwell in the thick cloud. 3 But I have built You an exalted house, a place for You to dwell forever.” And as the whole assembly of Israel stood there, 4 the king turned around and blessed them all and said: 5 “Blessed be the LORD, the God of Israel, who has fulfilled with His own hand what He spoke with His mouth to my father David, ‘Since the day I brought My people saying, out of the land of Egypt, I have not chosen a city from any tribe of Israel in which to build a house so that My Name would be there, nor have I chosen anyone to be ruler over My But now I have chosen Jeru- people Israel. salem for My Name to be there, and I have 7 chosen David to be over My people Israel.’ 6 8 Now it was in the heart of my father David to build a house for the Name of the LORD, But the LORD said to my the God of Israel. father David, ‘Since it was in your heart to build a house for My Name, you have done Neverthe- well to have this in your heart. less, you are not the one to build it; but your son, your own offspring, will build the house 10 for My Name.’ 9 Now the LORD has fulfilled the word that He spoke. I ha" + }, + { + "verseNum": 34, + "text": ". See 2 Kings 23:16. 3 15 1 Kings 13:28 | 325 That day the man of God gave a sign, saying, “The LORD has spoken this sign: ‘Surely the altar will be split apart, and the ashes upon it will 4 be poured out.’ ” 5 Now when King Jeroboam, who was at the altar in Bethel, heard the word that the man of God had cried out against it, he stretched out his hand and said, “Seize him!” But the hand he stretched out toward him withered, so that he could not And the altar was split apart, and pull it back. the ashes poured out, according to the sign that the man of God had given by the word of the 6 LORD. So the prophet said to the man of God, “Come 16 home with me and eat some bread.” 17 But the man replied, “I cannot go home with you, and I will not eat bread or drink water with For I have been told by the you in this place. word of the LORD: ‘You must not eat bread or drink water there or return by the way you 18 came.’ ” Then the prophet replied, “I too am a prophet like you, and an angel spoke to me by the word of the LORD, saying, ‘Bring him back with you to your house, so that he may eat bread and drink water.’ ” 19 Then the king responded to the man of God, “In- tercede with the LORD your God and pray for me that my hand may be restored.” The old prophet was lying to him, but the man of God went back with him, ate bread in his 20 house, and drank water. So the man of God interceded with the LORD, and the king’s hand was restored to him as it was 7 before. Then the king said to the" + }, + { + "verseNum": 37, + "text": "–40. Or Jeshua or Or ; literally 1,000 gold drachmas Or shelters 2,200 silver minas translating it , a variant of Hebrew oil tree ; that h 15 d 72 b 71 g 15 i 17 or Or Or 17 i 18 10" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–4) of the courtyard, shall be made of bronze. 20 And you are to command the Israelites to bring you pure oil of pressed olives for the light, to 21 keep the lamps burning continually. j In the Tent of Meeting, outside the veil that is in front of the Testimony, Aaron and his sons are to tend the lamps before the LORD from evening until morning. This is to be a permanent statute for the Israelites for the generations to come. the Holy of Holies c 1 That is, ; also in verse 34 Or e 12 50 cubits f 14 15 cubits h 18 i 18 5 cubits mately 7.5 feet in length and width, and 4.5 feet high (2.3 meters in length and width, and 1.4 meters high). is approximately 150 feet or 45.7 meters; also in verse 11. verse 13. or 9.1 meters. wide). the covenant inscribed with the Ten Commandments. j 21 The Testimony The courtyard was approximately 150 feet long and 75 feet wide (45.7 meters long and 22.9 meters refers to the stone tablets in the ark of is approximately 7.5 feet or 2.3 meters. is approximately 75 feet or 22.9 meters; also in is approximately 30 feet is approximately 22.5 feet or 6.9 meters; also in verse 15. ; also in verse 34 g 16 20 cubits d 9 100 cubits The altar was approxi- Garments for the Priests 17" + }, + { + "verseNum": 5, + "text": "–9) 23 g 24 You are also to make a table of acacia wood two cubits long, a cubit wide, and a cubit and a Overlay it with pure gold and make half high. h a gold molding around it. And make a rim and put a gold around it a handbreadth wide 26 molding on the rim. 25 27 Make four gold rings for the table and fasten them to the four corners at its four legs. The 28 rings are to be close to the rim, to serve as hold- Make ers for the poles used to carry the table. the poles of acacia wood and overlay them with 29 gold, so that the table may be carried with them. You are also to make the plates and dishes, as well as the pitchers and bowls for pouring drink 30 offerings. Make them out of pure gold. And place the Bread of the Presence on the ta- The Lampstand ble before Me at all times." + }, + { + "verseNum": 17, + "text": "–23 ;" + }, + { + "verseNum": 20, + "text": ";" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 7, + "text": "| 119 heard him lay their hands on his head; then have 15 the whole assembly stone him. 16 And you are to tell the Israelites, ‘If anyone curses his God, he shall bear the consequences of his sin. Whoever blasphemes the name of the LORD must surely be put to death; the whole as- sembly must surely stone him, whether he is a foreign resident or native; if he blasphemes the An Eye for an Eye" + }, + { + "verseNum": 8, + "text": "The Year of Jubilee 8 9 And you shall count off seven Sabbaths of years—seven times seven years—so that the seven Sabbaths of years amount to forty-nine years. Then you are to sound the horn far and wide on the tenth day of the seventh month, the Day of Atonement. You shall sound it throughout 10 your land. So you are to consecrate the fiftieth year and proclaim liberty in the land for all its inhabitants. It shall be your Jubilee, when each of you is to re- 11 turn to his property and to his clan. 12 The fiftieth year will be a Jubilee for you; you are not to sow the land or reap its aftergrowth or For it is a Jubilee; harvest the untended vines. it shall be holy to you. You may eat only the crops Return of Property taken directly from the field. 13 In this Year of Jubilee, each of you shall return 14 to his own property. 15 If you make a sale to your neighbor or a pur- chase from him, you must not take advantage of each other. You are to buy from your neighbor according to the number of years since the last Jubilee; he is to sell to you according to the num- ber of harvest years remaining. You shall increase the price in proportion to a greater number of years, or decrease it in proportion to a lesser number of years; for he is selling you a 17 given number of harvests. 16 Do not take advantage of each other, but fear The Blessing of Obedience (De. 28:1–14) your God; for I am the LORD your God. 18 19 You are to keep My statutes and carefully ob- serve My judgments, so that" + }, + { + "verseNum": 25, + "text": "–55. Ruth’s Redemption Assured 14" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 14, + "text": "–39 ;" + }, + { + "verseNum": 19, + "text": "| 121 Then he work for you until the Year of Jubilee. and his children are to be released, and he may return to his clan and to the property of his 42 fathers. 43 Because the Israelites are My servants, whom I brought out of the land of Egypt, they are not to be sold as slaves. You are not to rule over them 44 harshly, but you shall fear your God. 45 Your menservants and maidservants shall come from the nations around you, from whom you may purchase them. You may also pur- chase them from the foreigners residing among you or their clans living among you who are born 46 in your land. These may become your property. You may leave them to your sons after you to inherit as property; you can make them slaves for life. But as for your brothers, the Israelites, no Redemption of Servants man may rule harshly over his brother. 47 You must keep My Sabbaths and have rever- 3 ence for My sanctuary. I am the LORD. 4 If you follow My statutes and carefully keep My I will give you rains in their commandments, season, and the land will yield its produce, and Your the trees of the field will bear their fruit. threshing will continue until the grape harvest, and the grape harvest will continue until sowing time; you will have your fill of food to eat and will 6 dwell securely in your land. 5 7 And I will give peace to the land, and you will lie down with nothing to fear. I will rid the land of dangerous animals, and no sword will pass You will pursue your ene- through your land. 8 mies, and th" + }, + { + "verseNum": 20, + "text": "20 and your strength will be spent in vain. bronze, For your land will not yield its produce, and the 21 trees of the land will not bear their fruit. 22 If you walk in hostility toward Me and refuse to obey Me, I will multiply your plagues seven times, according to your sins. I will send wild animals against you to rob you of your children, destroy your livestock, and reduce your num- 23 bers, until your roads lie desolate. 24 25 And if in spite of these things you do not accept My discipline, but continue to walk in hos- tility toward Me, then I will act with hostility toward you, and I will strike you sevenfold for your sins. And I will bring a sword against you to execute the vengeance of the covenant. Though you withdraw into your cities, I will send a plague among you, and you will be delivered into the hand of the enemy. When I cut off your supply of bread, ten women will bake your bread in a single oven and dole out your bread by 27 weight, so that you will eat but not be satisfied. 26 a 28 But if in spite of all this you do not obey Me, but continue to walk in hostility toward Me, then I 29 will walk in fury against you, and I, even I, will 30 punish you sevenfold for your sins. You will eat the flesh of your own sons and daughters. I will destroy your high places, cut down your in- cense altars, and heap your lifeless bodies on the lifeless remains of your idols; and My soul will 31 despise you. 32 I will reduce your cities to rubble and lay waste your sanctuaries, a" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 16, + "text": "1 Kings 4:22" + }, + { + "verseNum": 34, + "text": "| 123 b male shall be twenty shekels, 6 ten shekels. and for the female c 7 Now if the person is from one month to five years of age, then your valuation for the male d and for the female shall be five shekels of silver, three shekels of silver. And if the person is e sixty years of age or older, then your valuation 8 shall be fifteen shekels for the male and ten But if the one making the shekels for the female. vow is too poor to pay the valuation, he is to pre- sent the person before the priest, who shall set the value according to what the one making the 9 vow can afford. f If he vows an animal that may be brought as an 10 offering to the LORD, any such animal given to He must not replace it the LORD shall be holy. or exchange it, either good for bad or bad for good. But if he does substitute one animal for an- other, both that animal and its substitute will be 11 holy. 12 But if the vow involves any of the unclean animals that may not be brought as an offering to the LORD, the animal must be presented before the priest. The priest shall set its value, whether high or low; as the priest values it, the price will be set. If, however, the owner de- cides to redeem the animal, he must add a fifth to 14 its value. 13 15 Now if a man consecrates his house as holy to the LORD, then the priest shall value it either as good or bad. The price will stand just as the priest values it. But if he who consecrated his house redeems it, he must add a fifth to the as- 16 sessed value, and" + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4) Peor.” 26 2 After the plague had ended, the LORD said to Moses and Eleazar son of Aaron “Take a census of the whole congre- the priest, gation of Israel by the houses of their fathers— all those twenty years of age or older who can 3 serve in the army of Israel.” 4 So on the plains of Moab by the Jordan, across from Jericho, Moses and Eleazar the priest issued “Take a census of the men the instruction, twenty years of age or older, as the LORD has commanded Moses.” d And these were the Israelites who came out of The Tribe of Reuben the land of Egypt: 5 Reuben was the firstborn of Israel. These were the descendants of Reuben: The Hanochite clan from Hanoch, 6 the Palluite clan from Pallu, the Hezronite clan from Hezron, Or ; also v. 24 Hebrew Or is implied; see verse 2. Acacia Grove d 4 Take a census of the men and the Carmite clan from Carmi. 152 |" + }, + { + "verseNum": 14, + "text": "); most MT manuscripts 126 |" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 15, + "text": "| 125 Levites over the tabernacle of the Testimony, all its furnishings, and everything in it. They shall carry the tabernacle and all its articles, care for 51 it, and camp around it. Whenever the tabernacle is to move, the Le- vites are to take it down, and whenever it is to be pitched, the Levites are to set it up. Any outsider 52 who goes near it must be put to death. 53 The Israelites are to camp by their divisions, each man in his own camp and under his own But the Levites are to camp around standard. the tabernacle of the Testimony and watch over it, so that no wrath will fall on the congregation of Israel. So the Levites are responsible for the 54 tabernacle of the Testimony.” Thus the Israelites did everything just as the The Order of the Camps LORD had commanded Moses. 2 2 Then the LORD said to Moses and Aaron: “The Israelites are to camp around the Tent of Meeting at a distance from it, each man under 3 his standard, with the banners of his family. On the east side, toward the sunrise, the divi- sions of Judah are to camp under their standard: 4 The leader of the Judahites is Nahshon son of Amminadab, and his division numbers 5 74,600. 6 The tribe of Issachar will camp next to it. The leader of the Issacharites is Nethanel son of Zuar, and his division numbers 7 54,400. 8 Next will be the tribe of Zebulun. The leader and of the Zebulunites is Eliab son of Helon, 9 his division numbers 57,400. The total number of men in the divisions of the camp of Judah is 186,400;" + }, + { + "verseNum": 16, + "text": "16 2 The total number of men in the divisions of the camp of Reuben is 151,450; they shall set out second. 17 In the middle of the camps, the Tent of Meeting is to travel with the camp of the Levites. They are to set out in the order they encamped, each in his 18 own place under his standard. On the west side, the divisions of Ephraim are to camp under their standard: 19 The leader of the Ephraimites is Elishama and his division numbers son of Ammihud, 20 40,500. 21 The tribe of Manasseh will be next to it. The leader of the Manassites is Gamaliel son and his division numbers of Pedahzur, 22 32,200. 23 Next will be the tribe of Benjamin. The leader of the Benjamites is Abidan son of 24 and his division numbers 35,400. Gideoni, The total number of men in the divisions of the camp of Ephraim is 108,100; they shall set out third. On the north side, the divisions of Dan are to 25 camp under their standard: 26 The leader of the Danites is Ahiezer son of and his division numbers Ammishaddai, 27 62,700. The tribe of Asher will camp next to it. The 28 leader of the Asherites is Pagiel son of Ocran, 29 and his division numbers 41,500. Next will be the tribe of Naphtali. The leader of the Naphtalites is Ahira son of 31 Enan, and his division numbers 53,400. 30 32 The total number of men in the camp of Dan is 157,600; they shall set out last, under their standards.” These are the Israelites, numbered according to their families. The total of those counted in the camps, by their division" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–4) facedown. 10 a Now Aaron’s sons Nadab and Abihu took their censers, put fire in them and added fire before incense, and offered unauthorized So fire the LORD, contrary to His command. came out from the presence of the LORD and con- sumed them, and they died in the presence of the 3 LORD. 2 Then Moses said to Aaron, “This is what the LORD meant when He said: ‘To those who come near Me I will show My holiness, and in the sight of all the people I will reveal My glory.’ ” 4 But Aaron remained silent. b Moses summoned Mishael and Elzaphan, sons of Aaron’s uncle Uzziel, and said to them, “Come 5 here; carry the bodies of your cousins outside the So camp, away from the front of the sanctuary.” they came forward and carried them, still in their 6 tunics, outside the camp, as Moses had directed. c Then Moses said to Aaron and his sons Eleazar and Ithamar, “Do not let your hair become di- and do not tear your garments, or else sheveled you will die, and the LORD will be angry with the whole congregation. But your brothers, the whole house of Israel, may mourn on account You shall of the fire that the LORD has ignited. not go outside the entrance to the Tent of Meet- ing, or you will die, for the LORD’s anointing oil is on you.” Restrictions for Priests So they did as Moses instructed. 9 8 7 10 Then the LORD said to Aaron, “You and your sons are not to drink wine or strong drink when you enter the Tent of Meeting, or else you will die; this is a permanent statute for the genera- Yo" + }, + { + "verseNum": 21, + "text": "–26 ; 1 Chronicles 23:7–11) 21 22 23 And the LORD said to Moses, “Take a census of the Gershonites as well, by their families and from thirty to fifty years old, counting clans, everyone who comes to serve in the work at the 24 Tent of Meeting. 25 This is the service of the Gershonite clans re- They are to carry garding work and transport: the curtains of the tabernacle, the Tent of Meet- ing with the covering of fine leather over it, the 26 curtains for the entrance to the Tent of Meeting, the curtains of the courtyard, and the curtains for the entrance at the gate of the courtyard that surrounds the tabernacle and altar, along with their ropes and all the equipment for their ser- vice. The Gershonites will do all that needs to be 27 done with these items. 28 All the service of the Gershonites—all their transport duties and other work—is to be done at the direction of Aaron and his sons; you are to assign to them all that they are responsible to This is the service of the Gershonite carry. clans at the Tent of Meeting, and their duties shall be under the direction of Ithamar son of Aa- The Duties of the Merarites ron the priest." + }, + { + "verseNum": 27, + "text": "–32 ; 1 Chronicles 23:12–20) 51 4 2 Then the LORD said to Moses and Aaron, “Take a census of the Kohathites among the men from Levites by their clans and families, thirty to fifty years old—everyone who is quali- fied to serve in the work at the Tent of Meeting. b 30 Elizaphan Elzaphan 3 d 47 20 gerahs ; see the total in verse 39. e 50 1,365 shekels is approximately 2 ounces or 57 grams. is a variant of ; see Exodus is equivalent to one is approximately 34.3 pounds or 15.6 kilograms. 128 |" + }, + { + "verseNum": 30, + "text": ". stiffened d 13 strengthened is a variant of e 14 nachash ; see 1 Chr. 6:23 and heavy stubborn in" + }, + { + "verseNum": 33, + "text": "–37 ; 1 Chronicles 23:21–23) 29 30 As for the sons of Merari, you are to number from thirty to them by their clans and families, fifty years old, counting everyone who comes to 31 serve in the work of the Tent of Meeting. 32 This is the duty for all their service at the Tent of Meeting: to carry the frames of the tabernacle with its crossbars, posts, and bases, and the posts of the surrounding courtyard with their ba- ses, tent pegs, and ropes, including all their equipment and everything related to their use. You shall assign by name the items that they are 33 responsible to carry. This is the service of the Merarite clans accord- ing to all their work at the Tent of Meeting, under the direction of Ithamar son of Aaron the priest.” Possibly the hides of large aquatic mammals; also in verses 8, 10, 11, 12, 14, and 25; The Numbering of the Levite Clans Confession and Restitution" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–20) 12 The sons of Kohath: Amram, Izhar, Heb- 13 ron, and Uzziel—four in all. 14 The sons of Amram: Aaron and Moses. Aaron and his descendants were set apart forever to consecrate the most holy things, to burn incense before the LORD, to minister before Him, and to pronounce blessings in As for Moses the man of His name forever. God, his sons were named among the tribe of 15 Levi. 16 The sons of Moses: Gershom and Eliezer. The descendants of Gershom: Shebuel was 17 the first. The descendants of Eliezer: Rehabiah was the first. Eliezer did not have any other sons, but the sons of Rehabiah were very 18 numerous. 19 The sons of Izhar: Shelomith was the first. The sons of Hebron: Jeriah was the first, Amariah the second, Jahaziel the third, and 20 Jekameam the fourth. The sons of Uzziel: Micah was the first and Isshiah the second. b 14 1,000,000 talents said David, d 7 Ladan Libni is approximately 3,770 tons or 3,420 metric tons of gold. Jehieli c 4 e 8 Jehiel Hebrew does not include g 10 is a variant of ; see 1 Chronicles 26:21. is approximately f 10 Shimei is a variant of ; also was possibly Most Hebrew manuscripts; one Hebrew manuscript, LXX, and Vul- 37,700 tons or 34,200 metric tons of silver. in verses 8 and 9; see 1 Chronicles 6:17. a son or grandson of the gate (see also verse 11) Shimei Zizah listed in verse 9. The Merarites" + }, + { + "verseNum": 3, + "text": "| 127 From Gershon came the Libnite clan and the 22 Shimeite clan; these were the Gershonite clans. The number of all the males a month old or 23 more was 7,500. 24 The Gershonite clans were to camp on the west, behind the tabernacle, and the leader of the families of the Gershonites was Eliasaph son 25 of Lael. 26 The duties of the Gershonites at the Tent of Meeting were the tabernacle and tent, its cover- ing, the curtain for the entrance to the Tent of Meeting, the curtains of the courtyard, the cur- tain for the entrance to the courtyard that sur- rounds the tabernacle and altar, and the cords— The Kohathites (Num. 4:1–20 ; 1 Chr. 23:12–20) all the service for these items. 27 a From Kohath came the clans of the Amramites, the Izharites, the Hebronites, and the Uzzielites; The these were the clans of the Kohathites. number of all the males a month old or more was They were responsible for the duties of 8,600. 29 the sanctuary. 28 30 The clans of the Kohathites were to camp on b and the leader the south side of the tabernacle, of the families of the Kohathites was Elizaphan 31 son of Uzziel. Their duties were the ark, the table, the lampstand, the altars, the articles of the sanctu- ary used with them, and the curtain—all the ser- 32 vice for these items. The chief of the leaders of the Levites was Eleazar son of Aaron the priest; he oversaw those The Merarites (Num. 4:29–33 ; 1 Chr. 23:21–23) responsible for the duties of the sanctuary. 33 From Merari came the clans of the" + }, + { + "verseNum": 4, + "text": "4 5 This service of the Kohathites at the Tent of When- Meeting regards the most holy things. ever the camp sets out, Aaron and his sons are to go in, take down the veil of the curtain, and cover They are to the ark of the Testimony place over this a covering of fine leather, spread 7 a solid blue cloth over it, and insert its poles. with it. 6 a b 8 Over the table of the Presence they are to spread a blue cloth and place the plates and cups on it, along with the bowls and pitchers for the drink offering. The regular bread offering is to And they shall spread a scarlet remain on it. cloth over them, cover them with fine leather, 9 and insert the poles. They are to take a blue cloth and cover the lampstand used for light, together with its lamps, 10 wick trimmers, and trays, as well as the jars of oil Then they shall wrap with which to supply it. it and all its utensils inside a covering of fine 11 leather and put it on the carrying frame. 12 Over the gold altar they are to spread a blue cloth, cover it with fine leather, and insert They are to take all the utensils for the poles. serving in the sanctuary, place them in a blue cloth, cover them with fine leather, and put them 13 on the carrying frame. 14 Then they shall remove the ashes from the bronze altar, spread a purple cloth over it, and place on it all the vessels used to serve there: the firepans, meat forks, shovels, and sprinkling bowls—all the equipment of the altar. They are to spread over it a covering of fine lea" + }, + { + "verseNum": 21, + "text": "–28) Gershon, Kohath, and Merari. 7 d 8 The Gershonites: Ladan e and Shimei. The sons of Ladan: Jehiel 9 and Joel—three in all. the first, Zetham, The sons of Shimei: Shelomoth, Haziel, and Haran—three in all. These were the heads of g 10 the families of Ladan. f Jahath, Zina, And the sons of Shimei: 11 Jeush, and Beriah. These were the sons of Jahath was the first Shimei—four in all. and Zizah was the second; but Jeush and Be- riah did not have many sons, so they were counted as one family and received a single The Kohathites assignment." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–4) 13 2 Then the LORD said to Moses and Aaron, “When someone has a swelling or rash or bright spot on his skin that may be an infec- tious skin disease, he must be brought to Aaron 3 the priest or to one of his sons who is a priest. a The priest is to examine the infection on his skin, and if the hair in the infection has turned white and the sore appears to be deeper than the skin, it is a skin disease. After the priest examines 4 him, he must pronounce him unclean. 5 If, however, the spot on his skin is white and does not appear to be deeper than the skin, and the hair in it has not turned white, the priest shall isolate the infected person for seven days. On the seventh day the priest is to reexamine him, and if he sees that the infection is unchanged and has not spread on the skin, the priest must isolate him for another seven days. The priest will ex- amine him again on the seventh day, and if the sore has faded and has not spread on the skin, the priest shall pronounce him clean; it is a rash. 7 The person must wash his clothes and be clean. 6 But if the rash spreads further on his skin after he has shown himself to the priest for his cleans- 8 ing, he must present himself again to the priest. The priest will reexamine him, and if the rash has spread on the skin, the priest must pro- 9 nounce him unclean; it is a skin disease. 10 When anyone develops a skin disease, he must The priest will exam- be brought to the priest. ine him, and if there is a white swelling on the" + }, + { + "verseNum": 5, + "text": "–10) 18" + }, + { + "verseNum": 19, + "text": "| 129 35 So Moses, Aaron, and the leaders of the congre- gation numbered the Kohathites by their clans everyone from thirty to fifty and families, 36 years old who came to serve in the work at the 37 And those numbered by their Tent of Meeting. These were counted from clans totaled 2,750. the Kohathite clans, everyone who could serve at the Tent of Meeting. Moses and Aaron numbered them according to the command of the LORD 38 through Moses. 39 Then the Gershonites were numbered by their clans and families, everyone from thirty to fifty 40 years old who came to serve in the work at the 41 And those numbered by their Tent of Meeting. These were clans and families totaled 2,630. counted from the Gershonite clans who served at the Tent of Meeting, whom Moses and Aaron 42 counted at the LORD’s command. 43 And the Merarites were numbered by their everyone from thirty to fifty clans and families, 44 years old who came to serve in the work at the The men registered by their Tent of Meeting. clans numbered 3,200. These were counted from the Merarite clans, whom Moses and Aaron numbered at the LORD’s command through 46 Moses. 45 48 47 So Moses, Aaron, and the leaders of Israel numbered by their clans and families all the Le- from thirty to fifty years old who came to vites do the work of serving and carrying the Tent of 49 And the number of men was 8,580. Meeting. At the LORD’s command through Moses they were numbered, and each one was assigned his work and burden, as the LORD had comm" + }, + { + "verseNum": 20, + "text": "20 not gone astray and become defiled while under your husband’s authority, may you be immune to But if you this bitter water that brings a curse. have gone astray while under your husband’s authority and have defiled yourself and lain 21 carnally with a man other than your husband’— and the priest shall have the woman swear un- der the oath of the curse—‘then may the LORD make you an attested curse among your people by making your thigh shrivel and your belly May this water that brings a curse enter swell. your stomach and cause your belly to swell and your thigh to shrivel.’ 23 Then the woman is to say, ‘Amen, Amen.’ 22 25 And the priest shall write these curses on a 24 scroll and wash them off into the bitter water. He is to have the woman drink the bitter water that brings a curse, and it will enter her and may The priest shall take cause her bitter suffering. from her hand the grain offering for jealousy, 26 wave it before the LORD, and bring it to the altar. Then the priest is to take a handful of the grain offering as a memorial portion and burn it on the altar; after that he is to have the woman drink the 27 water. When he has made her drink the water, if she has defiled herself and been unfaithful to her husband, then the water that brings a curse will enter her and cause bitter suffering; her belly will swell, her thigh will shrivel, and she will be- But if the come accursed among her people. woman has not defiled herself and is clean, she 29 will be unaffected and" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–21) Amalekites. 13 Again the Israelites did evil in the sight of the LORD, so He delivered them into the 2 hand of the Philistines for forty years. Now there was a man from Zorah named Manoah, from the clan of the Danites, whose wife of was barren and had no children. the LORD appeared to the woman and said to The angel 3 b LXX Or ; here and throughout chapter 13; corresponding pronouns may also be capitalized. 4 her, “It is true that you are barren and have no children; but you will conceive and give birth to Now please be careful not to drink wine a son. 5 or strong drink, and not to eat anything unclean. For behold, you will conceive and give birth to a a son. And no razor shall touch his head, because to God from the womb, the boy will be a Nazirite and he will begin the deliverance of Israel from 6 the hand of the Philistines.” 7 So the woman went and told her husband, “A man of God came to me. His appearance was like the angel of God, exceedingly awesome. I did not ask him where he came from, and he did not tell me his name. But he said to me, ‘Behold, you will conceive and give birth to a son. Now, therefore, do not drink wine or strong drink, and do not eat anything unclean, because the boy will be a Nazirite to God from the womb until the day of 8 his death.’ ” Then Manoah prayed to the LORD, “Please, O Lord, let the man of God You sent us come to us again to teach us how to raise the boy who is to 9 be born.” 10 And God listened to the voice of Manoah, and the ange" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 28, + "text": "| 131 8 and he gave the Merarites four carts and eight oxen, as their service required, all under the di- But rection of Ithamar son of Aaron the priest. he did not give any to the Kohathites, since they were to carry on their shoulders the holy objects 10 for which they were responsible. 9 11 When the altar was anointed, the leaders ap- proached with their offerings for its dedication and presented them before the altar. And the LORD said to Moses, “Each day one leader is to present his offering for the dedication of the 12 altar.” a 14 13 On the first day Nahshon son of Amminadab from the tribe of Judah drew near with his offer- ing. His offering was one silver platter weigh- b ing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for a grain offering; one gold 15 dish weighing ten shekels, filled with incense; 16 one young bull, one ram, and one male lamb a 17 one male goat for year old for a burnt offering; and a peace offering of two oxen, a sin offering; five rams, five male goats, and five male lambs a year old. This was the offering of Nahshon son of 18 Amminadab. c 19 20 On the second day Nethanel son of Zuar, the The offering he leader of Issachar, drew near. presented was one silver platter weighing a hun- dred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed one gold dish" + }, + { + "verseNum": 29, + "text": "29 and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. 30 This was the offering of Eliab son of Helon. 31 32 On the fourth day Elizur son of Shedeur, the His offer- leader of the Reubenites, drew near. ing was one silver platter weighing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for one gold dish weighing ten a grain offering; one young bull, shekels, filled with incense; one ram, and one male lamb a year old for a burnt 35 one male goat for a sin offering; offering; and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. 36 This was the offering of Elizur son of Shedeur. 33 34 37 38 On the fifth day Shelumiel son of Zurishaddai, the leader of the Simeonites, drew near. His of- fering was one silver platter weighing a hundred and thirty shekels, and one silver bowl weighing seventy shekels, both according to the sanctuary shekel and filled with fine flour mixed with oil for a grain offering; one gold dish weighing ten shekels, filled with incense; one young bull, one ram, and one male lamb a year old for a burnt 41 offering; one male goat for a sin offering; and a peace offering of two oxen, five rams, five male goats, and five male lambs a year old. This was the offering of Shelumiel son of Zur- 42 ishaddai. 39 40 43 44 On the sixth day Eliasaph son of Deuel, the leader of the Gadite" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–4) 31 Then you are to make a lampstand of pure, hammered gold. It shall be made of one piece, in- cluding its base and shaft, its cups, and its buds 32 and petals. 33 Six branches are to extend from the sides of the lampstand—three on one side and three on There are to be three cups shaped the other. like almond blossoms on the first branch, each with buds and petals, three on the next branch, and the same for all six branches that extend from the lampstand. c 16 The Testimony Possibly the hides of large aquatic mammals The ark was approximately 3.75 feet long, 2.25 feet wide, and 2.25 feet high (114.3 centimeters long, 68.6 centimeters wide, and 68.6 centimeters high). atonement cover stone tablets in the ark of the covenant inscribed with the Ten Commandments; also in verses 21 and 22. e 17 the ark of the covenant g 23 f 22 ; here and throughout Exodus The mercy seat was approximately 3.75 feet long and 2.25 feet wide h 25 A handbreadth (114.3 centimeters long and 68.6 centimeters wide). The table was approxi- mately 3 feet long, 1.5 feet wide, and 2.25 feet high (91.4 centimeters long, 45.7 centimeters wide, and 68.6 centimeters high). is approximately 2.9 inches or 7.4 centimeters. That is, an d 17 refers to the Or 34 10" + }, + { + "verseNum": 16, + "text": ") The Gershonites (Num. 4:21-28 ; 1 Chr. 23:7-11) Moses and Aaron 21 38" + }, + { + "verseNum": 17, + "text": "| 133 The Lampstand" + }, + { + "verseNum": 18, + "text": "18 19 day I struck down all the firstborn in the land of But I have taken the Levites in place of Egypt. And all the firstborn among the sons of Israel. I have given the Levites as a gift to Aaron and his sons from among the Israelites, to perform the service for the Israelites at the Tent of Meeting and to make atonement on their behalf, so that no plague will come against the Israelites when 20 they approach the sanctuary.” So Moses, Aaron, and the whole congregation of Israel did with the Levites everything that the 21 LORD had commanded Moses they should do. The Levites purified themselves and washed their clothes, and Aaron presented them as a wave offering before the LORD. Aaron also made After atonement for them to cleanse them. that, the Levites came to perform their service at the Tent of Meeting in the presence of Aaron and his sons. Thus they did with the Levites just as Retirement for Levites the LORD had commanded Moses. 23 24 22 25 And the LORD said to Moses, “This applies to the Levites: Men twenty-five years of age or older shall enter to perform the service in the work at But at the age of fifty, they the Tent of Meeting. must retire from performing the work and no 26 longer serve. After that, they may assist their brothers in ful- filling their duties at the Tent of Meeting, but they themselves are not to do the work. This is how you are to assign responsibilities to the Le- The Second Passover" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–14) 12 2 Now the LORD said to Moses and Aaron in the land of Egypt, “This month is the beginning of months for you; it shall be the first 3 month of your year. a 4 Tell the whole congregation of Israel that on the tenth day of this month each man must select a lamb If the for his family, one per household. household is too small for a whole lamb, they are to share with the nearest neighbor based on the number of people, and apportion the lamb 5 accordingly. 6 Your lamb must be an unblemished year-old male, and you may take it from the sheep or the You must keep it until the fourteenth day goats. of the month, when the whole assembly of the congregation of Israel will slaughter the animals They are to take some of the blood at twilight. and put it on the sides and tops of the door- 8 of the houses where they eat the lambs. frames 7 b c They are to eat the meat that night, roasted over the fire, along with unleavened bread and bitter 9 herbs. 10 Do not eat any of the meat raw or cooked in boiling water, but only roasted over the fire—its head and legs and inner parts. Do not leave any of it until morning; before the morning you must 11 burn up any part that is left over. d This is how you are to eat it: You must be fully dressed for travel, with your sandals on your feet and your staff in your hand. You are to eat in 12 haste; it is the LORD’s Passover. On that night I will pass through the land of Egypt and strike down every firstborn male, both man and beast, and I will exec" + }, + { + "verseNum": 9, + "text": "–12. 428 | 2 Chronicles 30:7 7 Do not be like your fathers and Assyria. brothers who were unfaithful to the LORD, the God of their fathers, so that He made 8 them an object of horror, as you can see. 9 Now do not stiffen your necks as your fa- thers did. Submit to the LORD and come to His sanctuary, which He has consecrated for- ever. Serve the LORD your God, so that His fierce anger will turn away from you. For if you return to the LORD, your brothers and sons will receive mercy in the presence of their captors and will return to this land. For the LORD your God is gracious and merciful; He will not turn His face away from you if you return to Him.” 10 12 11 And the couriers traveled from city to city through the land of Ephraim and Manasseh as far as Zebulun, but the people scorned and mocked them. Nevertheless, some from Asher, Manas- seh, and Zebulun humbled themselves and came to Jerusalem. Moreover, the power of God was on the people in Judah to give them one heart to obey the command of the king and his officials Hezekiah Celebrates the Passover according to the word of the LORD. 13 a 15 14 In the second month, a very great assembly gathered in Jerusalem to celebrate the Feast of Unleavened Bread. They proceeded to re- move the altars in Jerusalem and to take away the incense altars and throw them into the Ki- dron Valley. And on the fourteenth day of the second month they slaughtered the Passover lamb. The priests and Levites were ashamed, and they consecrated themsel" + }, + { + "verseNum": 12, + "text": ". f 16 that is, approximately 34 kilograms in Aramaic Literally d 1 Now on the first of the Sabbaths, early," + }, + { + "verseNum": 15, + "text": "–23) 25 He also placed the lampstand in the Tent of Meeting opposite the table on the south side of the tabernacle and set up the lamps before the 26 LORD, just as the LORD had commanded him. 27 29 Moses placed the gold altar in the Tent of Meeting, in front of the veil, and he burned fra- 28 grant incense on it, just as the LORD had com- manded him. Then he put up the curtain at the entrance to the tabernacle. He placed the altar of burnt offering near the entrance to the taber- nacle, the Tent of Meeting, and offered on it the burnt offering and the grain offering, just as the 30 LORD had commanded him. He placed the basin between the Tent of Meet- ing and the altar and put water in it for washing; 34 Then the cloud covered the Tent of Meeting, 35 and the glory of the LORD filled the tabernacle. Moses was unable to enter the Tent of Meeting because the cloud had settled on it, and the glory 36 of the LORD filled the tabernacle. 37 Whenever the cloud was lifted from above the tabernacle, the Israelites would set out through If the cloud was all the stages of their journey. 38 not lifted, they would not set out until the day it For the cloud of the LORD was was taken up. over the tabernacle by day, and fire was in the cloud by night, in the sight of all the house of Is- rael through all their journeys. Leviticus Laws for Burnt Offerings" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 33, + "text": "| 135 13 They set out this first the Wilderness of Paran. time according to the LORD’s command through 14 Moses. 15 16 First, the divisions of the camp of Judah set out their standard, with Nahshon son under Nethanel son of of Amminadab in command. Zuar was over the division of the tribe of Issa- 17 and Eliab son of Helon was over the char, division of the tribe of Zebulun. Then the tab- ernacle was taken down, and the Gershonites 18 and the Merarites set out, transporting it. 20 Then the divisions of the camp of Reuben 19 set out under their standard, with Elizur son of Shedeur in command. Shelumiel son of Zur- ishaddai was over the division of the tribe of Simeon, and Eliasaph son of Deuel was over the division of the tribe of Gad. Then the Koha- thites set out, transporting the holy objects; the 22 tabernacle was to be set up before their arrival. 21 24 Next, the divisions of the camp of Ephraim set 23 out under their standard, with Elishama son of Gamaliel son of Pedah- Ammihud in command. zur was over the division of the tribe of Manas- seh, and Abidan son of Gideoni was over the 25 division of the tribe of Benjamin. 26 Finally, the divisions of the camp of Dan set out under their standard, serving as the rear guard for all units, with Ahiezer son of Ammishaddai in 27 Pagiel son of Ocran was over the command. and Ahira son division of the tribe of Asher, of Enan was over the division of the tribe of 28 Naphtali. This was the order of march for the Israelite 29 divisions" + }, + { + "verseNum": 34, + "text": "covenant of the LORD traveling ahead of them for 34 those three days to seek a resting place for them. And the cloud of the LORD was over them by 35 day when they set out from the camp. Whenever the ark set out, Moses would say, “Rise up, O LORD! May Your enemies be scattered; may those who hate You flee before You.” 36 And when it came to rest, he would say: “Return, O LORD, The Complaints of the People to the countless thousands of Israel.” 11 Soon the people began to complain about their hardship in the hearing of the LORD, and when He heard them, His anger was kindled, and fire from the LORD blazed among 2 them and consumed the outskirts of the camp. And the people cried out to Moses, and he So because the fire prayed to the LORD, and the fire died down. that place was called Taberah, 4 of the LORD had burned among them. 3 a Meanwhile, the rabble among them had a strong craving for other food, and again the Isra- 5 elites wept and said, “Who will feed us meat? We remember the fish we ate freely in Egypt, along with the cucumbers, melons, leeks, onions, and garlic. But now our appetite is gone; there 7 is nothing to see but this manna!” 6 8 Now the manna resembled coriander seed, and its appearance was like that of gum resin. The people walked around and gathered it, ground it on a handmill or crushed it in a mortar, then boiled it in a cooking pot or shaped it into cakes. It tasted like pastry baked with fine oil. When the dew fell on the camp at night, the manna The Comp" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 3, + "text": ". the Ten Words means from the wells of the Bene-jaakan e 6 ; see" + }, + { + "verseNum": 34, + "text": ". Hebrew Or 22 14 b" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 7, + "text": "NE, WH, BYZ, h 6 Or For Jesus has been counted worthy of greater glory than Moses, just as the builder of a house And has greater honor than the house itself. a 10 pitiation Or just as Moses in all His house pioneer f 2 founder b 12" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–33) things you were to do. 19 20 And just as the LORD our God had commanded us, we set out from Horeb and went toward the hill country of the Amorites, through all the vast and terrifying wilderness you have seen. When we reached Kadesh-barnea, I said: “You have 21 reached the hill country of the Amorites, which the LORD our God is giving us. See, the LORD your God has placed the land before you. Go up and take possession of it as the LORD, the God of your fathers, has told you. Do not be afraid or 22 discouraged.” Then all of you approached me and said, “Let us send men ahead of us to search out the land and bring us word of what route to follow and 23 which cities to enter.” 25 24 The plan seemed good to me, so I selected twelve men from among you, one from each tribe. They left and went up into the hill coun- try, and came to the Valley of Eshcol and spied out the land. They took some of the fruit of the land in their hands, carried it down to us, and brought us word: “It is a good land that the LORD our God is giving us.” b 5 That is, Mount Sinai, or possibly a mountain in the range containing Mount Sinai; also in verses 6 and 19 c 7 Shephelah Note that" + }, + { + "verseNum": 4, + "text": "| 137 26 Two men, however, had remained in the camp—one named Eldad and the other Medad— and the Spirit rested on them. They were among those listed, but they had not gone out to the tent, A young man and they prophesied in the camp. ran and reported to Moses, “Eldad and Medad 28 are prophesying in the camp.” 27 6 came down in a pillar of cloud, stood at the en- trance to the Tent, and summoned Aaron and Miriam. When both of them had stepped for- ward, He said, “Hear now My words: If there is a prophet among you, I, the LORD, will reveal Myself to him 7 in a vision; Joshua son of Nun, the attendant to Moses since youth, spoke up and said, “Moses, my lord, 29 stop them!” I will speak to him in a dream. d But this is not so with My servant Moses; 8 he is faithful in all My house. But Moses replied, “Are you jealous on my account? I wish that all the LORD’s people were prophets and that the LORD would place His 30 Spirit on them!” Then Moses returned to the camp, along with The Quail and the Plague the elders of Israel. 31 a 32 Now a wind sent by the LORD came up, drove in quail from the sea, and brought them near the camp, about two cubits above the surface of the for a day’s journey in every direction ground, around the camp. All that day and night, and all b the next day, the people stayed up gathering the quail. No one gathered less than ten homers, 33 and they spread them out all around the camp. But while the meat was still between their teeth, before it was chewed, the an" + }, + { + "verseNum": 5, + "text": "From the tribe of Reuben, Shammua son of 5 Zaccur; from the tribe of Simeon, Shaphat son of 6 Hori; from the tribe of Judah, Caleb son of 7 Jephunneh; from the tribe of Issachar, Igal son of 8 Joseph; from the tribe of Ephraim, Hoshea son of 9 Nun; from the tribe of Benjamin, Palti son of 10 Raphu; from the tribe of Zebulun, Gaddiel son of 11 Sodi; from the tribe of Manasseh (a tribe of 12 Joseph), Gaddi son of Susi; from the tribe of Dan, Ammiel son of 13 Gemalli; from the tribe of Asher, Sethur son of 14 Michael; from the tribe of Naphtali, Nahbi son of 15 Vophsi; and from the tribe of Gad, Geuel son of 16 Machi. These were the names of the men Moses sent to spy out the land; and Moses gave to Hoshea 17 son of Nun the name Joshua. 19 18 When Moses sent them to spy out the land of Canaan, he told them, “Go up through the Negev See what the land is and into the hill country. like and whether its people are strong or weak, Is the land where they live good few or many. or bad? Are the cities where they dwell open Is the soil fertile or camps or fortifications? unproductive? Are there trees in it or not? Be courageous and bring back some of the fruit of the land.” (It was the season for the first ripe 21 grapes.) 20 22 So they went up and spied out the land from the Wilderness of Zin as far as Rehob, toward Lebo-hamath. They went up through the Negev and came to Hebron, where Ahiman, Sheshai, and Talmai, the descendants of Anak, dwelled. It had been built seven years before 23 Z" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–12) 42" + }, + { + "verseNum": 20, + "text": "–35) show you the road to travel. 34 35 36 When the LORD heard your words, He grew “Not one of angry and swore an oath, saying, the men of this evil generation shall see the good except Caleb land I swore to give your fathers, son of Jephunneh. He will see it, and I will give him and his descendants the land on which he has set foot, because he followed the LORD 37 wholeheartedly.” 38 The LORD was also angry with me on your ac- count, and He said, “Not even you shall enter the Joshua son of Nun, who stands before land. 39 you, will enter it. Encourage him, for he will ena- And the little ones ble Israel to inherit the land. you said would become captives—your children who on that day did not know good from evil— will enter the land that I will give them, and they But you are to turn back and will possess it. a head for the wilderness along the route to the The Defeat at Hormah" + }, + { + "verseNum": 35, + "text": "| 139 8 Joshua son of Nun and Caleb son of Jephunneh, 7 who were among those who had spied out the land, tore their clothes and said to the whole congregation of Israel, “The land we passed through and explored is an exceedingly good land. If the LORD delights in us, He will bring us into this land, a land flowing with milk and honey, and He will give it to us. Only do not re- bel against the LORD, and do not be afraid of the people of the land, for they will be like bread for us. Their protection has been removed, and the 10 LORD is with us. Do not be afraid of them!” 9 But the whole congregation threatened to stone Joshua and Caleb. 11 Then the glory of the LORD appeared to all the And the LORD Israelites at the Tent of Meeting. said to Moses, “How long will this people treat Me with contempt? How long will they refuse to 12 believe in Me, despite all the signs I have per- formed among them? I will strike them with a plague and destroy them—and I will make you Moses Intercedes for Israel into a nation greater and mightier than they are.” 13 14 But Moses said to the LORD, “The Egyptians will hear of it, for by Your strength You brought this people from among them. And they will tell it to the inhabitants of this land. They have already heard that You, O LORD, are in the midst of this people, that You, O LORD, have been seen face to face, that Your cloud stands over them, and that You go before them in a pillar of cloud 15 by day and a pillar of fire by night. 16 If You kill" + }, + { + "verseNum": 36, + "text": "which has conspired against Me. They will meet their end in the wilderness, and there they will The Plague on the Ten Spies die.” 36 tenth of an ephah of fine flour mixed with a quarter hin of olive oil. With the burnt offering or sacrifice of each lamb, you are to prepare a 6 quarter hin of wine as a drink offering. c a b 5 So the men Moses had sent to spy out the land, who had returned and made the whole congre- 37 gation grumble against him by bringing out a bad report about the land— those men who had brought out the bad report about the land—were struck down by a plague before the LORD. Of those men who had gone to spy out the land, only Joshua son of Nun and Caleb son of Jephunneh 39 remained alive. 38 And when Moses relayed these words to all the The Defeat at Hormah" + }, + { + "verseNum": 40, + "text": "–45) Red Sea. 41 40 ” But the LORD said to me, “Tell them not to go up and fight, for I am not with you to keep you 43 from defeat by your enemies.” So I spoke to you, but you would not listen. You rebelled against the command of the LORD and 44 presumptuously went up into the hill country. 45 Then the Amorites who lived in the hills came out against you and chased you like a swarm of bees. They routed you from Seir all the way to And you returned and wept before Hormah. the LORD, but He would not listen to your voice 46 or give ear to you. For this reason you stayed in Kadesh for a long Wanderings in the Wilderness time—a very long time. 2 b Then we turned back and headed for the wil- as the LORD derness by way of the Red Sea, had instructed me, and for many days we wan- 2 dered around Mount Seir. 3 4 5 At this time the LORD said to me, “You have been wandering around this hill country long enough; turn to the north and command the people: ‘You will pass through the territory of your brothers, the descendants of Esau, who live in Seir. They will be afraid of you, so you must be very careful. Do not provoke them, for I will not give you any of their land, not even a footprint, 6 because I have given Mount Seir to Esau as his possession. You are to pay them in silver for the 7 food you eat and the water you drink.’ ” Indeed, the LORD your God has blessed you in all the work of your hands. He has watched over your journey through this vast wilderness. The LORD your God has been" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 4, + "text": "1 Kings 5:11" + }, + { + "verseNum": 32, + "text": "–36) all that I have commanded you.” 12 11 13 14 And the LORD said to Moses, “Tell the Isra- elites, ‘Surely you must keep My Sabbaths, for this will be a sign between Me and you for the generations to come, so that you may know that I am the LORD who sanctifies you. Keep the Sabbath, for it is holy to you. Anyone who pro- fanes it must surely be put to death. Whoever does any work on that day must be cut off from among his people. For six days work may be done, but the seventh day is a Sabbath of com- plete rest, holy to the LORD. Whoever does any work on the Sabbath day must surely be put to 16 death. 15 17 The Israelites must keep the Sabbath, celebrat- ing it as a permanent covenant for the genera- tions to come. It is a sign between Me and the Israelites forever; for in six days the LORD made the heavens and the earth, but on the seventh Moses Receives the Tablets day He rested and was refreshed.’ 18 ” When the LORD had finished speaking with Moses on Mount Sinai, He gave him the two tab- lets of the Testimony, tablets of stone inscribed The Golden Calf (De. 9:7–29 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 5, + "text": "(see also LXX) or Jasher Literally is often cited as . Preach the Word 4 2 I charge you in the presence of God and of Christ Jesus, who will judge the living and the dead, and in view of His appearing and His Preach the word; be prepared in sea- kingdom: son and out of season; reprove, rebuke, and en- 3 courage with every form of patient instruction. For the time will come when men will not toler- ate sound doctrine, but with itching ears they will gather around themselves teachers to suit So they will turn their ears their own desires. 5 away from the truth and turn aside to myths. 4 8 But you, be sober in all things, endure hardship, 6 do the work of an evangelist, fulfill your ministry. For I am already being poured out like a drink 7 offering, and the time of my departure is at hand. I have fought the good fight, I have finished the race, I have kept the faith. From now on there is laid up for me the crown of righteousness, which the Lord, the righteous Judge, will award to me on that day—and not only to me, but to all who Personal Concerns crave His appearing. 9 10 2 Timothy 4:22 | 1071 Carpus at Troas, and my scrolls, especially the 14 parchments. 15 Alexander the coppersmith did great harm to me. The Lord will repay him according to his You too should beware of him, for he deeds. The Lord Remains Faithful has vigorously opposed our message. 16 17 At my first defense, no one stood with me, but everyone deserted me. May it not be charged But the Lord stood by me and agai" + }, + { + "verseNum": 11, + "text": "| 141 The Law of Tassels 37 38 39 And the LORD said to Moses, “Speak to the Israelites and tell them that throughout the gen- erations to come they are to make for themselves tassels for the corners of their garments, with a blue cord on each tassel. These will serve as tassels for you to look at, so that you may remem- ber all the commandments of the LORD, that you may obey them and not prostitute yourselves by 40 following your own heart and your own eyes. 41 Then you will remember and obey all My com- mandments, and you will be holy to your God. I am the LORD your God who brought you out of the land of Egypt to be your God. I am the LORD Korah’s Rebellion your God.” 16 2 Now Korah son of Izhar, the son of Ko- hath son of Levi, along with some Reu- benites—Dathan and Abiram, sons of Eliab, and a rebellion On son of Peleth—conducted against Moses, along with 250 men of Israel 3 renowned as leaders of the congregation and They came to- representatives in the assembly. gether against Moses and Aaron and told them, For “You have taken too much upon yourselves! everyone in the entire congregation is holy, and the LORD is in their midst. Why then do you exalt 4 yourselves above the assembly of the LORD?” 5 a b When Moses heard this, he fell facedown. Then he said to Korah and all his followers, “Tomor- row morning the LORD will reveal who belongs and who is holy, and He will bring that to Him 6 person near to Himself. The one He chooses He You, Korah, and all will bring near to H" + }, + { + "verseNum": 12, + "text": "your followers who have conspired against the LORD! As for Aaron, who is he that you should 12 grumble against him?” 13 Then Moses summoned Dathan and Abiram, the sons of Eliab, but they said, “We will not Is it not enough that you have brought come! us up out of a land flowing with milk and honey to kill us in the wilderness? Must you also ap- Moreover, you point yourself as ruler over us? have not brought us into a land flowing with milk and honey or given us an inheritance of fields and vineyards. Will you gouge out the eyes of 15 these men? No, we will not come!” 14 Then Moses became very angry and said to the LORD, “Do not regard their offering. I have not taken one donkey from them or mistreated a sin- 16 gle one of them.” And Moses said to Korah, “You and all your followers are to appear before the LORD Each tomorrow—you and they and Aaron. man is to take his censer, place incense in it, and present it before the LORD—250 censers. You 18 and Aaron are to present your censers as well.” 17 19 So each man took his censer, put fire and incense in it, and stood with Moses and Aaron When at the entrance to the Tent of Meeting. Korah had gathered his whole assembly against them at the entrance to the Tent of Meeting, the glory of the LORD appeared to the whole 20 congregation. 21 And the LORD said to Moses and Aaron, “Separate yourselves from this congregation 22 so that I may consume them in an instant.” But Moses and Aaron fell facedown and said, “O God, the God of the spir" + }, + { + "verseNum": 41, + "text": "–50 ;" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "| 143 10 The LORD said to Moses, “Put Aaron’s staff back in front of the Testimony, to be kept as a sign for the rebellious, so that you may put an 11 end to their grumbling against Me, lest they die.” So Moses did as the LORD had commanded 12 him. Then the Israelites declared to Moses, “Look, 13 we are perishing! We are lost; we are all lost! Anyone who comes near the tabernacle of the Duties of Priests and Levites LORD will die. Are we all going to perish?” 18 3 So the LORD said to Aaron, “You and your sons and your father’s house must bear the iniquity involving the sanctuary. And 2 you and your sons alone must bear the iniquity But bring with you involving your priesthood. also your brothers from the tribe of Levi, the tribe of your father, that they may join you and assist you and your sons before the Tent of the And they shall attend to your duties Testimony. and to all the duties of the Tent; but they must not come near to the furnishings of the sanctuary They or the altar, or both they and you will die. are to join you and attend to the duties of the Tent of Meeting, doing all the work at the Tent; 5 but no outsider may come near you. 4 7 6 And you shall attend to the duties of the sanctu- ary and of the altar, so that wrath may not fall on Behold, I Myself have se- the Israelites again. lected your fellow Levites from the Israelites as a gift to you, dedicated to the LORD to perform the But only you service for the Tent of Meeting. and your sons shall attend to your" + }, + { + "verseNum": 10, + "text": "10 a your sons. offering, 11 regard it as holy. You are to eat it as a most holy and every male may eat it. You shall 12 And this is yours as well: the offering of their gifts, along with all the wave offerings of the Is- raelites. I have given this to you and your sons and daughters as a permanent statute. Every cer- emonially clean person in your household may eat it. I give you all the freshest olive oil and all the finest new wine and grain that the Israelites give to the LORD as their firstfruits. The firstfruits of everything in their land that they bring to the LORD will belong to you. Every cere- monially clean person in your household may eat 14 them. 15 13 Every devoted thing in Israel belongs to you. The firstborn of every womb, whether man or beast, that is offered to the LORD belongs to you. But you must surely redeem every firstborn son 16 and every firstborn male of unclean animals. You are to pay the redemption price for a month-old male according to your valuation: five shekels of silver, according to the sanctuary 17 shekel, which is twenty gerahs. b c 18 But you must not redeem the firstborn of an ox, a sheep, or a goat; they are holy. You are to splatter their blood on the altar and burn their fat as a food offering, a pleasing aroma to the LORD. And their meat belongs to you, just as the breast and right thigh of the wave offering 19 belong to you. All the holy offerings that the Israelites pre- sent to the LORD I give to you and to your sons d and daught" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–13) (Now an omer is a tenth of an ephah.) g d 23 On the sixth day, they gathered twice as much food—two omers per person —and all the lead- ers of the congregation came and reported this to a 12 He told them, “This is what the LORD Moses. c 18 Between the two evenings b 16 An omer d 22 2 omers 17 h Then the whole congregation of Israel left the Desert of Sin, moving from place to place as the LORD commanded. They camped e 31 Manna Heb. Cited in 2 Corinthians 8:15 What is it? like the Hebrew for h 1 scribed with the Ten Commandments. liters. The geographical name Sin is approximately 2 dry quarts or 2.2 liters; also in vv. 18, 32, 33, and 36. g 36 An (see verse 15). is approximately 4 dry quarts or 4.4 liters per person. sounds refers to the stone tablets in the ark of the covenant in- was a dry measure having the capacity of about 20 dry quarts or 22 Sinai sin is related to and should not be mistaken for the English word . f 34 The Testimony ephah 2 at Rephidim, but there was no water for the So the people contended with people to drink. Moses, “Give us water to drink.” “Why do you contend with me?” Moses replied. 3 “Why do you test the LORD?” But the people thirsted for water there, and they grumbled against Moses: “Why have you brought us out of Egypt—to make us and our 4 children and livestock die of thirst?” Then Moses cried out to the LORD, “What should I do with these people? A little more and 5 they will stone me!” 6 And the LORD said to Moses, “Walk on ahead of the p" + }, + { + "verseNum": 12, + "text": "| 145 person who is unclean does not purify himself, he will be cut off from the assembly, because he has defiled the sanctuary of the LORD. The water of purification has not been sprinkled on him; he 21 is unclean. This is a permanent statute for the people: The one who sprinkles the water of purification must wash his clothes, and whoever touches the water 22 of purification will be unclean until evening. Anything the unclean person touches will be- come unclean, and anyone who touches it will be Water from the Rock" + }, + { + "verseNum": 13, + "text": "13 a 28 These were the waters of Meribah, where the Israelites quarreled with the LORD, and He Edom Refuses Passage showed His holiness among them. 14 15 From Kadesh, Moses sent messengers to tell the king of Edom, “This is what your brother Israel says: You know all the hardship that has how our fathers went down to befallen us, Egypt, where we lived many years. The Egyp- tians mistreated us and our fathers, and when we cried out to the LORD, He heard our voice, sent an angel, and brought us out of Egypt. 16 17 Now look, we are in Kadesh, a city on the edge of Please let us pass through your your territory. land. We will not go through any field or vine- yard, or drink water from any well. We will stay on the King’s Highway; we will not turn to the right or to the left until we have passed through 18 your territory.” But Edom answered, “You may not travel through our land, or we will come out and con- 19 front you with the sword.” “We will stay on the main road,” the Israelites replied, “and if we or our herds drink your water, we will pay for it. There will be no problem; only 20 let us pass through on foot.” But Edom insisted, “You may not pass through.” And they came out to confront the Is- 21 raelites with a large army and a strong hand. So Edom refused to allow Israel to pass through their territory, and Israel turned away The Death of Aaron from them. 22 23 24 After they had set out from Kadesh, the whole congregation of Israel came to Mount Hor. And at Mount Hor, near" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 21, + "text": "–30) their place.) 24 23 a “Arise, set out, and cross the Arnon Valley. See, I have delivered into your hand Sihon the Amo- rite, king of Heshbon, and his land. Begin to take This possession of it and engage him in battle. very day I will begin to put the dread and fear of you upon all the nations under heaven. They will hear the reports of you and tremble in anguish 26 because of you.” 25 27 So from the Wilderness of Kedemoth I sent messengers with an offer of peace to Sihon king of Heshbon, saying, “Let us pass through your a 23 land; we will stay on the main road. We will not cherem b 34 But Sihon king of Heshbon would not let us pass through, for the LORD your God had made his spirit stubborn and his heart obstinate, that He might deliver him into your hand, as is the 31 case this day. Then the LORD said to me, “See, I have begun to deliver Sihon and his land over to you. Now 32 begin to conquer and possess his land.” 33 So Sihon and his whole army came out for bat- And the LORD our God tle against us at Jahaz. delivered him over to us, and we defeated him 34 and his sons and his whole army. b 35 At that time we captured all his cities and devoted to destruction the people of every city, including women and children. We left no survi- We carried off for ourselves only the vors. livestock and the plunder from the cities we 36 captured. 37 From Aroer on the rim of the Arnon Valley, along with the city in the valley, even as far as Gil- ead, not one city had walls too high f" + }, + { + "verseNum": 23, + "text": ". is a 57 Hilez The Gershomites received the following: As in the parallel text at" + }, + { + "verseNum": 31, + "text": "–35) LORD our God had forbidden. 3 2 Then we turned and went up the road to Ba- shan, and Og king of Bashan and his whole But army came out to meet us in battle at Edrei. the LORD said to me, “Do not fear him, for I have delivered him into your hand, along with all his people and his land. Do to him as you did to Sihon 3 king of the Amorites, who lived in Heshbon.” So the LORD our God also delivered Og king of Bashan and his whole army into our hands. We 4 struck them down until no survivor was left. At that time we captured all sixty of his cities. There was not a single city we failed to take—the entire region of Argob, the kingdom of Og in All these cities were fortified with high Bashan. 5 That is, Crete Forms of the Hebrew refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an offering." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 5, + "text": "| 147 28 “Come to Heshbon, let it be rebuilt; let the city of Sihon be restored. For a fire went out from Heshbon, a blaze from the city of Sihon. It consumed Ar of Moab, 29 the rulers of Arnon’s heights. Woe to you, O Moab! You are destroyed, O people of Chemosh! He gave up his sons as refugees, 30 and his daughters into captivity to Sihon king of the Amorites. But we have overthrown them; Heshbon is destroyed as far as Dibon. e We demolished them as far as Nophah, The Defeat of Og" + }, + { + "verseNum": 6, + "text": "6 “Behold, a people has come out of Egypt,” said Balak. “They cover the face of the land and have settled next to me. So please come now and put a curse on this people, because they are too mighty for me. Perhaps I may be able to defeat them and drive them out of the land; for I know that those you bless are blessed, and those you 7 curse are cursed.” The elders of Moab and Midian departed with the fees for divination in hand. They came to Ba- 8 laam and relayed to him the words of Balak. “Spend the night here,” Balaam replied, “and I will give you the answer that the LORD speaks to 9 me.” So the princes of Moab stayed with Balaam. Then God came to Balaam and asked, “Who are 10 these men with you?” 11 And Balaam said to God, “Balak son of Zippor, ‘Behold, a king of Moab, sent me this message: people has come out of Egypt, and they cover the face of the land. Now come and put a curse on them for me. Perhaps I may be able to fight 12 against them and drive them away.’ ” But God said to Balaam, “Do not go with them. You are not to curse this people, for they are 13 blessed.” So Balaam got up the next morning and said to Balak’s princes, “Go back to your homeland, be- cause the LORD has refused to let me go with 14 you.” And the princes of Moab arose, returned to Ba- 15 lak, and said, “Balaam refused to come with us.” 16 Then Balak sent other princes, more numer- ous and more distinguished than the first messengers. They came to Balaam and said, “This is what Balak son of Zippor" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 21, + "text": "| 149 ‘Come,’ he said, ‘put a curse on Jacob for me; 8 come and denounce Israel!’ How can I curse those whom God has not cursed? 9 How can I denounce those whom the LORD has not denounced? For I see them from atop the rocky cliffs, and I watch them from the hills. Behold, a people dwelling apart, 10 not reckoning themselves among the nations. Who can count the dust of Jacob or number even a fourth of Israel? Let me die the death of the righteous; let my end be like theirs!” 11 Then Balak said to Balaam, “What have you done to me? I brought you here to curse my ene- 12 mies, and behold, you have only blessed them!” But Balaam replied, “Should I not speak ex- Balaam’s Second Oracle actly what the LORD puts in my mouth?” 13 Then Balak said to him, “Please come with me to another place where you can see them. You will only see the outskirts of their camp—not all 14 of them. And from there, curse them for me.” So Balak took him to the field of Zophim, to the top of Pisgah, where he built seven altars and of- 15 fered a bull and a ram on each altar. Balaam said to Balak, “Stay here beside your 16 burnt offering while I meet the LORD over there.” And the LORD met with Balaam and put a mes- sage in his mouth, saying, “Return to Balak and 17 speak what I tell you.” So he returned to Balak, who was standing there by his burnt offering with the princes of Moab. 18 “What did the LORD say?” Balak asked. Then Balaam lifted up an oracle, saying: Then the LORD put a message in Balaam’s mouth" + }, + { + "verseNum": 22, + "text": "7 The LORD their God is with them, 22 Water will flow from his buckets, and the shout of the King is among them. and his seed will have abundant 23 God brought them out of Egypt with strength like a wild ox. For there is no spell against Jacob and no divination against Israel. It will now be said of Jacob and Israel, ‘What great things God has done!’ Behold, the people rise like a lioness; they rouse themselves like a lion, not resting until they devour their prey and drink the blood of the slain.” 24 25 Now Balak said to Balaam, “Then neither curse 26 them at all nor bless them at all!” But Balaam replied, “Did I not tell you that 27 whatever the LORD says, I must do?” “Please come,” said Balak, “I will take you to another place. Perhaps it will please God that you 28 curse them for me from there.” a And Balak took Balaam to the top of Peor, 29 which overlooks the wasteland. Then Balaam said, “Build for me seven altars here, and prepare for me seven bulls and seven 30 rams.” So Balak did as Balaam had instructed, and he Balaam’s Third Oracle offered a bull and a ram on each altar. 24 And when Balaam saw that it pleased the LORD to bless Israel, he did not seek omens as on previous occasions, but he turned When Balaam his face toward the wilderness. 3 looked up and saw Israel encamped tribe by and he tribe, the Spirit of God came upon him, lifted up an oracle, saying: 2 water. His king will be greater than Agag, 8 and his kingdom will be exalted. God brought him out of Egypt" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–5) 26 27 10 2 4 I do not want you to be unaware, broth- ers, that our forefathers were all under the cloud, and that they all passed through the 3 They were all baptized into Moses in the sea. They all ate the same cloud and in the sea. spiritual food and drank the same spiritual drink; for they drank from the spiritual rock that 5 accompanied them, and that rock was Christ. Nevertheless, God was not pleased with most of them, for they were struck down in the 6 wilderness. 7 a These things took place as examples to keep us from craving evil things as they did. Do not be idolaters, as some of them were. As it is written: 8 “The people sat down to eat and drink and got up to indulge in revelry.” We should not commit sexual immorality, as some of them did, and in 9 one day twenty-three thousand of them died. 10 as some of them did, We should not test Christ, And do not com- and were killed by snakes. plain, as some of them did, and were killed by the 11 destroying angel. b c Now these things happened to them as exam- ples and were written down as warnings for us, 12 on whom the fulfillment of the ages has come. So the one who thinks he is standing firm b 9 a 7 No temptation has should be careful not to fall. are lawful,” ;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–4) 1 On the first day of the second month of the second year after the Israelites had come out of the land of Egypt, the LORD spoke to Moses in 2 the Tent of Meeting in the Wilderness of Sinai. He “Take a census of the whole congregation said: of Israel by their clans and families, listing every 3 man by name, one by one. You and Aaron are to number those who are twenty years of age or older by their divisions— And everyone who can serve in Israel’s army. one man from each tribe, the head of each family, The Leaders of the Tribes must be there with you. 5 4 These are the names of the men who are to as- sist you: From the tribe of Reuben, Elizur son of 6 Shedeur; from Simeon, Shelumiel son of 7 Zurishaddai; 8 from Judah, Nahshon son of Amminadab; from Issachar, Nethanel son of Zuar; from Zebulun, Eliab son of Helon; from the sons of Joseph: from Ephraim, Elishama son of Ammihud, and from Manasseh, Gamaliel son of Pedahzur; from Benjamin, Abidan son of Gideoni; from Dan, Ahiezer son of Ammishaddai; 9 10 11 12 13 14 15 from Asher, Pagiel son of Ocran; from Gad, Eliasaph son of Deuel; 16 and from Naphtali, Ahira son of Enan.” These men were appointed from the congrega- tion; they were the leaders of the tribes of their The Number of Every Tribe fathers, the heads of the clans of Israel. 17 18 So Moses and Aaron took these men who had and on the first day been designated by name, of the second month they assembled the whole congregation and recorded their ancestry by clans and fa" + }, + { + "verseNum": 6, + "text": "| 151 them—through the Israelite and on through the belly of the woman. 9 So the plague against the Israelites was halted, but those who died in the plague numbered 11 10 24,000. 12 Then the LORD said to Moses, “Phinehas son of Eleazar, the son of Aaron the priest, has turned My wrath away from the Israelites; for he was zealous for My sake among them, so that I did not Declare, consume the Israelites in My zeal. therefore, that I am granting him My covenant of It will be a covenant of permanent peace. priesthood for him and his descendants, because he was zealous for his God and made atonement 14 for the Israelites.” 13 15 The name of the Israelite who was slain with the Midianite woman was Zimri son of Salu, the And the name of leader of a Simeonite family. the slain Midianite woman was Cozbi, the daugh- 16 ter of Zur, a tribal chief of a Midianite family. 17 18 “Attack the And the LORD said to Moses, For they as- Midianites and strike them dead. sailed you deceitfully when they seduced you in the matter of Peor and their sister Cozbi, the daughter of the Midianite leader, the woman who was killed on the day the plague came because of The Second Census of Israel" + }, + { + "verseNum": 7, + "text": "7 22 These were the clans of Reuben, and their reg- 8 istration numbered 43,730. 9 Now the son of Pallu was Eliab, and the sons of 10 Eliab were Nemuel, Dathan, and Abiram. It was Dathan and Abiram, chosen by the congre- gation, who rebelled against Moses and Aaron with the followers of Korah who rebelled against the LORD. And the earth opened its mouth and swallowed them along with Korah, whose fol- lowers died when the fire consumed 250 men. They serve as a warning sign. However, the The Tribe of Simeon line of Korah did not die out. 12 11 These were the descendants of Simeon by a their clans: The Nemuelite clan from Nemuel, the Jaminite clan from Jamin, 13 the Jachinite clan from Jachin, the Zerahite clan from Zerah, and the Shaulite clan from Shaul. These were the clans of Simeon, and there b 14 The Tribe of Gad were 22,200 men. 15 These were the descendants of Gad by their clans: The Zephonite clan from Zephon, the Haggite clan from Haggi, 16 the Shunite clan from Shuni, the Oznite clan from Ozni, 17 the Erite clan from Eri, c These were the clans of Judah, and their regis- The Tribe of Issachar tration numbered 76,500. 23 These were the descendants of Issachar by their clans: d The Tolaite clan from Tola, 24 the Punite clan from Puvah, e the Jashubite clan from Jashub, 25 and the Shimronite clan from Shimron. These were the clans of Issachar, and their reg- The Tribe of Zebulun istration numbered 64,300. 26 These were the descendants of Zebulun by their clans: 27 The Se" + }, + { + "verseNum": 12, + "text": ". Arod e 15 All those belonging to Jacob who came to Egypt—his direct descendants, besides the wives b 10 Zohar of Jacob’s sons—numbered sixty-six persons. Zerah d 13 is a variant of f 16 ; see" + }, + { + "verseNum": 13, + "text": "and Zephon ; see 1 Chronicles 7:1. h 20 Hebrew; SP and some LXX manuscripts That is, northwest Mesopotamia SP and LXX ; see also" + }, + { + "verseNum": 15, + "text": ". is a variant of ; see" + }, + { + "verseNum": 17, + "text": ". That is, Heliopolis, as in LXX 50 |" + }, + { + "verseNum": 23, + "text": ". Hebrew ; also in verses 10 and 17 5 Their kinsmen belonging to all the families of Issachar who were mighty men of valor totaled 87,000, as listed in their genealogies. The Descendants of Benjamin 6 The three sons of Benjamin: 7 Bela, Becher, and Jediael. The sons of Bela: Ezbon, Uzzi, Uzziel, Jerimoth, and Iri, heads of their families—five in all. There were 22,034 mighty men of valor listed in their genealogies. 8 The sons of Becher: 9 Zemirah, Joash, Eliezer, Elioenai, Omri, Jer- emoth, Abijah, Anathoth, and Alemeth; all these were Becher’s sons. Their genealo- gies were recorded according to the heads of their families—20,200 mighty men of valor. 10 The son of Jediael: Bilhan. The sons of Bilhan: 11 Jeush, Benjamin, Ehud, Chenaanah, Zethan, Tarshish, and Ahishahar. All these sons of Jediael were heads of their families, 12 mighty men of valor; there were 17,200 fit for battle. The Shuppites and Huppites were descendants of Ir, and the Hushites The Descendants of Naphtali were descendants of Aher. 13 a The sons of Naphtali: b The Descendants of Manasseh Jahziel, scendants of Bilhah. Guni, Jezer, and Shallum 14 —the de- The descendants of Manasseh: Asriel through his Aramean concubine. She 15 also gave birth to Machir the father of Gilead. Machir took a wife from among the Hup- pites and Shuppites. The name of his sister was Maacah. Another descendant was named Zelophehad, 16 who had only daughters. Machir’s wife Maacah gave birth to a son, and she named him Peresh. His b" + }, + { + "verseNum": 24, + "text": "and 1 Chronicles 7:1. Hebrew; SP and Syriac Puah ; see" + }, + { + "verseNum": 49, + "text": ". g 29 Beth-shean scripts; Hebrew does not include is a variant of c 23 Beriah ; see Gen. 46:24. his son Beth-shan e 27 Non 1 Chronicles 7:31 | 379 17 Rekem. The son of Ulam: Bedan. 18 These were the sons of Gilead son of Machir, the son of Manasseh. His sister Hammo- lecheth gave birth to Ishhod, Abiezer, and 19 Mahlah. And these were the sons of Shemida: The Descendants of Ephraim Ahian, Shechem, Likhi, and Aniam. 20 The descendants of Ephraim: 21 Shuthelah, Bered his son, Tahath his son, Eleadah his son, Tahath his son, Zabad his son, and Shuthelah his son. Ezer and Elead were killed by the natives of Gath, because they went down to steal their 22 livestock. c Their father Ephraim mourned for many 23 days, and his relatives came to comfort him. And again he slept with his wife, and she conceived and gave birth to a son. So he named him Beriah, because tragedy had His daughter was come upon his house. Sheerah, who built Lower and Upper Beth- 25 horon, as well as Uzzen-sheerah. 24 d 26 his son, Additionally, Rephah was his son, Resheph Telah his son, Tahan his son, Ladan his son, Ammihud his son, Elishama his son, and Joshua his son. 28 his son, Nun 27 e f 29 Their holdings and settlements included Bethel and its villages, Naaran to the east, Gezer and its villages to the west, and She- chem and its villages as far as Ayyah and its g And along the borders of Manas- villages. seh were Beth-shean, Taanach, Megiddo, and Dor, together with their villages. The de- scendants of Jo" + }, + { + "verseNum": 62, + "text": "| 153 The Jahzeelite clan from Jahzeel, 49 the Gunite clan from Guni, the Jezerite clan from Jezer, 50 and the Shillemite clan from Shillem. These were the clans of Naphtali, and their 51 registration numbered 45,400. Inheritance by Lot These men of Israel numbered 601,730 in all. 52 53 54 Then the LORD said to Moses, “The land is to be divided among the tribes as an inheritance, according to the number of names. Increase the inheritance for a large tribe and decrease it for a small one; each tribe is to receive its inheritance according to the number of those 55 registered. Indeed, the land must be divided by lot; they shall receive their inheritance according to the Each names of the tribes of their fathers. inheritance is to be divided by lot among the The Levites Numbered larger and smaller tribes.” 57 56 Now these were the Levites numbered by their clans: The Gershonite clan from Gershon, the Kohathite clan from Kohath, 58 and the Merarite clan from Merari. These were the families of the Levites: The Libnite clan, the Hebronite clan, the Mahlite clan, the Mushite clan, and the Korahite clan. 59 60 and Now Kohath was the father of Amram, Amram’s wife was named Jochebed. She was also a daughter of Levi, born to Levi in Egypt. To Am- ram she bore Aaron, Moses, and their sister Mir- Nadab, Abihu, Eleazar, and Ithamar were iam. but Nadab and Abihu died when born to Aaron, 62 fire before the LORD. they offered unauthorized 61 c The registration of the Levites totaled 23,000, e" + }, + { + "verseNum": 63, + "text": "Only Caleb and Joshua Remain 63 These were the ones numbered by Moses and Eleazar the priest when they counted the Israel- ites on the plains of Moab by the Jordan, across 64 from Jericho. 65 Among all these, however, there was not one who had been numbered by Moses and Aaron the priest when they counted the Israelites in the For the LORD had told Wilderness of Sinai. them that they would surely die in the wilder- ness. Not one was left except Caleb son of The Daughters of Zelophehad (Num. 36:1–13) Jephunneh and Joshua son of Nun. 27 2 Now the daughters of Zelophehad son of Hepher, the son of Gilead, the son of Machir, the son of Manasseh, belonged to the clans of Manasseh son of Joseph. These were the names of his daughters: Mahlah, Noah, Hoglah, the Milcah, and Tirzah. They approached entrance to the Tent of Meeting, stood before Moses, Eleazar the priest, the leaders, and the “Our father died whole congregation, and said, in the wilderness, but he was not among the fol- lowers of Korah who gathered together against 4 the LORD. Instead, he died because of his own Why should the name sin, and he had no sons. of our father disappear from his clan because he had no sons? Give us property among our 5 father’s brothers.” 6 3 7 So Moses brought their case before the LORD, “The daughters and the LORD answered him, of Zelophehad speak correctly. You certainly must give them property as an inheritance among their father’s brothers and transfer their 8 father’s inheritance to them. 9" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–11) 36 3 2 Now the family heads of the clan of Gil- ead son of Machir son of Manasseh, one of the clans of Joseph, approached Moses and the leaders who were the heads of the Israelite families and addressed them, saying, “When the LORD commanded my lord to give the land as an inheritance to the Israelites by lot, He also commanded him to give the inheritance of our But if they brother Zelophehad to his daughters. marry any of the men from the other tribes of Israel, their inheritance will be withdrawn from the portion of our fathers and added to the tribe into which they marry. So our allotted And when inheritance would be taken away. the Jubilee for the Israelites comes, their inher- itance will be added to the tribe into which they marry and taken away from the tribe of our 5 fathers.” 4 7 6 So at the word of the LORD, Moses commanded the Israelites: “The tribe of the sons of Joseph This is what the LORD has speaks correctly. commanded concerning the daughters of Zelo- phehad: They may marry anyone they please, provided they marry within a clan of the tribe of No inheritance in Israel may be their father. transferred from tribe to tribe, because each of the Israelites is to retain the inheritance of the Every daughter who pos- tribe of his fathers. sesses an inheritance from any Israelite tribe must marry within a clan of the tribe of her fa- 9 ther, so that every Israelite will possess the in- No inheritance may be heritance of his fathers. transferred from one tribe to a" + }, + { + "verseNum": 12, + "text": "–17) 23 24 At that time I also pleaded with the LORD: “O Lord GOD, You have begun to show Your great- ness and power to Your servant. For what god in 25 heaven or on earth can perform such works and mighty acts as Yours? Please let me cross over and see the good land beyond the Jordan—that 26 pleasant hill country as well as Lebanon!” 27 But the LORD was angry with me on account of you, and He would not listen to me. “That is enough,” the LORD said to me. “Do not speak to Me again about this matter. Go to the top of Pisgah and look to the west and north and south and east. See the land with your own eyes, for you will not cross this Jordan. But commission Joshua, encourage him, and strengthen him, for he will cross over ahead of the people and enable 29 them to inherit the land that you will see.” An Exhortation to Obedience (De. 11:1–7) So we stayed in the valley opposite Beth-peor. 28 4 2 Hear now, O Israel, the statutes and ordi- nances I am teaching you to follow, so that you may live and may enter and take possession of the land that the LORD, the God of your fathers, You must not add to or subtract is giving you. from what I command you, so that you may keep the commandments of the LORD your God that I 3 am giving you. Your eyes have seen what the LORD did at Baal- peor, for the LORD your God destroyed from among you all who followed Baal of Peor. But you who held fast to the LORD your God are alive 5 to this day, every one of you. 4 See, I have taught you statutes and" + }, + { + "verseNum": 18, + "text": "–23) ham, Isaac, and Jacob.” a 2 When Moses had finished speaking these words to all Israel, he said to them, “I am now a hundred and twenty years old; I am no longer able to come and go, and the LORD 3 has said to me, ‘You shall not cross the Jordan.’ The LORD your God Himself will cross over ahead of you. He will destroy these nations be- fore you, and you will dispossess them. Joshua 4 will cross ahead of you, as the LORD has said. And the LORD will do to them as He did to Sihon and Og, the kings of the Amorites, when He de- 5 stroyed them along with their land. 6 The LORD will deliver them over to you, and you must do to them exactly as I have com- manded you. Be strong and courageous; do not be afraid or terrified of them, for it is the LORD your God who goes with you; He will never leave 7 you nor forsake you.” b 8 Then Moses called for Joshua and said to him in the presence of all Israel, “Be strong and coura- geous, for you will go with this people into the land that the LORD swore to their fathers to give them, and you shall give it to them as an inher- itance. The LORD Himself goes before you; He will be with you. He will never leave you nor for- The Reading of the Law" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "–8)" + }, + { + "verseNum": 26, + "text": "–31) 20 9 a You are to count off seven weeks from the time 10 you first put the sickle to the standing grain. And you shall celebrate the Feast of Weeks to the LORD your God with a freewill offering that 11 you give in proportion to how the LORD your and you shall rejoice be- God has blessed you, fore the LORD your God in the place He will choose as a dwelling for His Name—you, your sons and daughters, your menservants and maidservants, and the Levite within your gates, as well as the foreigner, the fatherless, and the 12 widows among you. Remember that you were slaves in Egypt, and The Feast of Tabernacles" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–6) 23 24 The LORD also said to Moses, “Speak to the Israelites and say, ‘On the first day of the seventh month you are to have a day of rest, a sacred as- sembly announced by trumpet blasts. You must not do any regular work, but you are to pre- The Day of Atonement sent a food offering to the LORD.’" + }, + { + "verseNum": 3, + "text": "| 155 20 two young bulls, one ram, and seven male lambs The grain offering a year old, all unblemished. shall consist of fine flour mixed with oil; offer three-tenths of an ephah with each bull, two- and a tenth of tenths of an ephah with the ram, Include an ephah with each of the seven lambs. one male goat as a sin offering to make atone- 23 ment for you. 21 22 24 You are to present these in addition to the reg- ular morning burnt offering. Offer the same food each day for seven days as a food offering, a pleasing aroma to the LORD. It is to be offered with its drink offering and the regular burnt of- 25 fering. On the seventh day you shall hold a sacred as- The Feast of Weeks" + }, + { + "verseNum": 4, + "text": "4 a 20 and a tenth of an ephah ram, 5 seven male lambs. 6 with each of the Include one male goat as a sin offering to make These are in addition to the atonement for you. monthly and daily burnt offerings with their pre- scribed grain offerings and drink offerings. They The Day of Atonement (Lev. 16:1-34 ; 23:26-32) are a pleasing aroma, a food offering to the LORD. 7 b On the tenth day of this seventh month, you are to hold a sacred assembly, and you shall humble 8 yourselves; you must not do any work. 9 Present as a pleasing aroma to the LORD a burnt offering of one young bull, one ram, and seven male lambs a year old, all unblemished, to- gether with their grain offerings of fine flour mixed with oil—three-tenths of an ephah with 10 the bull, two-tenths of an ephah with the ram, and a tenth of an ephah with each of the seven 11 lambs. Include one male goat for a sin offering, in ad- dition to the sin offering of atonement and the regular burnt offering with its grain offering and The Feast of Tabernacles (De. 16:13–17) drink offerings. 12 On the fifteenth day of the seventh month, you are to hold a sacred assembly; you must not do any regular work, and you shall observe a feast 13 to the LORD for seven days. 14 As a pleasing aroma to the LORD, you are to present a food offering, a burnt offering of thir- teen young bulls, two rams, and fourteen male along with lambs a year old, all unblemished, the grain offering of three-tenths of an ephah of fine flour mixed with oil wit" + }, + { + "verseNum": 7, + "text": "–11) 16 2 Now the LORD spoke to Moses after the death of two of Aaron’s sons when they approached the presence of the LORD. And the b LORD said to Moses: “Tell your brother Aaron c not to enter freely into the Most Holy Place behind the veil in front of the mercy seat on the ark, or else he will die, because I appear in the 3 cloud above the mercy seat. This is how Aaron is to enter the Holy Place: with a young bull for a sin offering and a ram for He is to wear the sacred linen a burnt offering. atonement c 2 4 ; also in verses 16, 17, 20, 23, and 27 Or" + }, + { + "verseNum": 12, + "text": "–40) carefully follow these statutes. 13 b You are to celebrate the Feast of Tabernacles for seven days after you have gathered the pro- 14 duce of your threshing floor and your winepress. And you shall rejoice in your feast—you, your sons and daughters, your menservants and maidservants, and the Levite, as well as the for- eigner, the fatherless, and the widows among 15 you. For seven days you shall celebrate a feast to the LORD your God in the place He will choose, because the LORD your God will bless you in all your produce and in all the work of your hands, 16 so that your joy will be complete. c d 17 Three times a year all your men are to appear before the LORD your God in the place He will e the choose: at the Feast of Unleavened Bread, Feast of Weeks, and the Feast of Tabernacles. No one should appear before the LORD empty- Everyone must appear with a gift as handed. he is able, according to the blessing the LORD Judges and Justice your God has given you. 18 You are to appoint judges and officials for your tribes in every town that the LORD your God is giving you. They are to judge the people with 19 righteous judgment. Do not deny justice or show partiality. Do not accept a bribe, for a bribe blinds the eyes of the a 10 wise and twists the words of the righteous. b 13 Booths Pursue justice, and justice alone, so that you may live, and you may possess the land that the Forbidden Forms of Worship LORD your God is giving you. 21 Do not set up any wooden Asherah pole next" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–16) woman commits adultery. 33 f 34 Again, you have heard that it was said to the ancients, ‘Do not break your oath, but fulfill your But I tell you not to swear vows to the Lord.’ 35 at all: either by heaven, for it is God’s throne; or by the earth, for it is His footstool; or by Je- Nor rusalem, for it is the city of the great King. should you swear by your head, for you cannot Simply let make a single hair white or black. your ‘Yes’ be ‘Yes,’ and your ‘No,’ ‘No.’ Anything Love Your Enemies more comes from the evil one." + }, + { + "verseNum": 2, + "text": "i 41 k 43 one milion" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 16, + "text": "| 157 then he confirms all the vows and pledges that bind her. He has confirmed them, because he said 15 nothing to her on the day he heard about them. But if he nullifies them after he hears of them, 16 then he will bear her iniquity.” These are the statutes that the LORD com- manded Moses concerning the relationship be- tween a man and his wife, and between a father Vengeance on Midian and a young daughter still in his home. 2 “Take And the LORD said to Moses, vengeance on the Midianites for the Isra- elites. After that, you will be gathered to your 3 people.” 4 So Moses told the people, “Arm some of your men for war, that they may go against the Midi- anites and execute the LORD’s vengeance on Send into battle a thousand men from them. 5 each tribe of Israel.” So a thousand men were recruited from each 6 tribe of Israel—twelve thousand armed for war. And Moses sent the thousand from each tribe into battle, along with Phinehas son of Eleazar the priest, who took with him the vessels of the 7 sanctuary and the trumpets for signaling. 8 Then they waged war against Midian, as the LORD had commanded Moses, and they killed every male. Among the slain were Evi, Rekem, Zur, Hur, and Reba—the five kings of Midian. They also killed Balaam son of Beor with the 9 sword. The Israelites captured the Midianite women 10 and their children, and they plundered all their herds, flocks, and goods. Then they burned all the cities where the Midianites had lived, as well as all their encampments" + }, + { + "verseNum": 17, + "text": "17 Balaam, to turn unfaithfully against the LORD at Peor, so that the plague struck the congregation So now, kill all the boys, as well as of the LORD. 18 every woman who has had relations with a man, but spare for yourselves every girl who has 19 never had relations with a man. 20 All of you who have killed a person or touched the dead are to remain outside the camp for seven days. On the third day and the seventh day you are to purify both yourselves and your cap- And purify every garment and leather tives. good, everything made of goat’s hair, and every 21 article of wood.” 23 Then Eleazar the priest said to the soldiers who had gone into battle, “This is the statute of 22 the law which the LORD has commanded Moses: Only the gold, silver, bronze, iron, tin, and lead— everything that can withstand the fire—must be put through the fire, and it will be clean. But it must still be purified with the water of purification. And everything that cannot with- On stand the fire must pass through the water. the seventh day you are to wash your clothes, and you will be clean. After that you may enter Division of the Spoils the camp.” 25 24 26 The LORD said to Moses, “You and Eleazar the priest and the family heads of the congrega- tion are to take a count of what was captured, Then divide the cap- both of man and beast. tives between the troops who went out to battle 28 and the rest of the congregation. 27 Set aside a tribute for the LORD from what be- longs to the soldiers who went in" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–42 ;" + }, + { + "verseNum": 33, + "text": "| 159 18 brought them into their place. Meanwhile, our little ones will remain in the fortified cities for We protection from the inhabitants of the land. will not return to our homes until every Israelite has taken possession of his inheritance. Yet we will not have an inheritance with them across the Jordan and beyond, because our inheritance has 20 come to us on the east side of the Jordan.” 19 21 Moses replied, “If you will do this—if you will arm yourselves before the LORD for battle, and if every one of your armed men crosses the Jor- 22 dan before the LORD, until He has driven His en- then when the land is emies out before Him, subdued before the LORD, you may return and be free of obligation to the LORD and to Israel. And this land will belong to you as a possession be- But if you do not do this, you fore the LORD. will certainly sin against the LORD—and be as- Build cit- sured that your sin will find you out. ies for your little ones and folds for your flocks, 25 but do what you have promised.” 24 23 26 The Gadites and Reubenites said to Moses, “Your servants will do just as our lord com- Our children, our wives, our livestock, mands. 27 and all our animals will remain here in the cities of Gilead. But your servants are equipped for war, and every man will cross over to the battle 28 before the LORD, just as our lord says.” 29 So Moses gave orders about them to Eleazar the priest, to Joshua son of Nun, and to the family And Moses said leaders of the tribes of Israel." + }, + { + "verseNum": 34, + "text": "34 35 36 e 11 And the Gadites built up Dibon, Ataroth, Aroer, Beth-nim- Atroth-shophan, Jazer, Jogbehah, rah, and Beth-haran as fortified cities, and they 37 built folds for their flocks. 38 The Reubenites built up Heshbon, Elealeh, Kir- as well as Nebo and Baal-meon iathaim, (whose names were changed), and Sibmah. And 39 they renamed the cities they rebuilt. 40 41 The descendants of Machir son of Manasseh went to Gilead, captured it, and drove out the So Moses gave Gil- Amorites who were there. ead to the clan of Machir son of Manasseh, and they settled there. Jair, a descendant of Manas- 42 seh, went and captured their villages and called And Nobah went and cap- them Havvoth-jair. tured Kenath and its villages and called it Nobah, Forty-Two Journeys of the Israelites after his own name. a 33 2 These are the journeys of the Israelites when they came out of the land of Egypt by their divisions under the leadership of Moses At the LORD’s command, Moses rec- and Aaron. orded the stages of their journey. These are the stages listed by their starting points: 3 b 4 On the fifteenth day of the first month, on the day after the Passover, the Israelites set out from Rameses. They marched out defi- antly who in full view of all the Egyptians, were burying all their firstborn, whom the LORD had struck down among them; for the LORD had executed judgment against their The Israelites set out from Rameses gods. 6 and camped at Succoth. 5 They set out from Succoth and camped at 7 Etham, on" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 3, + "text": ". Cited in" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–15 ;" + }, + { + "verseNum": 12, + "text": "| 161 They set out from Jotbathah and camped 35 at Abronah. They set out from Abronah and camped at 36 Ezion-geber. They set out from Ezion-geber and camped 37 at Kadesh in the Wilderness of Zin. 38 They set out from Kadesh and camped at Mount Hor, on the outskirts of the land of At the LORD’s command, Aaron the Edom. priest climbed Mount Hor and died there on the first day of the fifth month, in the fortieth year after the Israelites had come out of the Aaron was 123 years old land of Egypt. 40 when he died on Mount Hor. 39 41 Now the Canaanite king of Arad, who lived in the Negev in the land of Canaan, heard that And the Israel- the Israelites were coming. ites set out from Mount Hor and camped at 42 Zalmonah. They set out from Zalmonah and camped 43 at Punon. They set out from Punon and camped at 44 Oboth. They set out from Oboth and camped at 45 Iye-abarim on the border of Moab. a They set out from Iyim 46 Dibon-gad. and camped at They set out from Dibon-gad and camped 47 at Almon-diblathaim. b They set out from Almon-diblathaim and facing camped in the mountains of Abarim 48 Nebo. They set out from the mountains of Aba- rim and camped on the plains of Moab by the 49 Jordan across from Jericho. And there on the plains of Moab they camped by the Jordan, from Beth-jeshimoth to Abel-shittim. Instructions for Occupying Canaan c 50 51 You are to take possession of the land and set- 54 tle in it, for I have given you the land to possess. And you are to divide the land by lot ac" + }, + { + "verseNum": 13, + "text": "This will be your land, defined by its borders on 13 all sides.” 14 So Moses commanded the Israelites, “Appor- tion this land by lot as an inheritance. The LORD has commanded that it be given to the nine and a For the tribes of the Reubenites and half tribes. Gadites, along with the half-tribe of Manasseh, These have already received their inheritance. two and a half tribes have received their inher- itance across the Jordan from Jericho, toward the Leaders to Divide the Land sunrise.” 16 17 15 18 Then the LORD said to Moses, “These are the names of the men who are to assign the land as an inheritance for you: Eleazar the priest and 19 Appoint one leader from Joshua son of Nun. These are each tribe to distribute the land. their names: Caleb son of Jephunneh from the tribe of Ju- 20 dah; Shemuel son of Ammihud from the tribe 21 of Simeon; Elidad son of Chislon from the tribe of 22 Benjamin; Bukki son of Jogli, a leader from the tribe 23 of Dan; Hanniel son of Ephod, a leader from the 24 tribe of Manasseh son of Joseph; Kemuel son of Shiphtan, a leader from the 25 tribe of Ephraim; Eli-zaphan son of Parnach, a leader from 26 the tribe of Zebulun; Paltiel son of Azzan, a leader from the 27 tribe of Issachar; Ahihud son of Shelomi, a leader from the 28 tribe of Asher; and Pedahel son of Ammihud, a leader 29 from the tribe of Naphtali.” These are the ones whom the LORD com- manded to apportion the inheritance to the Isra- Forty-Eight Cities for the Levites elites in the land of Ca" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "–8 ; 1 Chronicles 6:54–81) 21 Now the family heads of the Levites ap- proached Eleazar the priest, Joshua son 2 of Nun, and the heads of the other tribes of Israel at Shiloh in the land of Canaan and said to them, “The LORD commanded through Moses that we be given cities in which to live, together with pas- 3 turelands for our livestock.” So by the command of the LORD, the Israelites gave the Levites these cities and their pas- turelands out of their own inheritance: 4 The first lot came out for the Kohathite clans. The Levites who were descendants of Aaron the priest received thirteen cities by The remaining descendants of Kohath received ten cities by lot from the tribes of Ephraim, Dan, and the half-tribe of 6 Manasseh. The descendants of Gershon received thir- teen cities by lot from the tribes of Issachar, Asher, Naphtali, and the half-tribe of Manas- 7 seh in Bashan. And the descendants of Merari received twelve cities from the tribes of Reuben, Gad, and Zebulun. 8 So the Israelites allotted to the Levites these cities, together with their pasturelands, as the 9 LORD had commanded through Moses. 10 From the tribes of Judah and Simeon, they des- to the descend- ignated these cities by name ants of Aaron from the Kohathite clans of the Levites, because the first lot fell to them: 11 12 They gave them Kiriath-arba (that is, Heb- ron), with its surrounding pasturelands, in the hill country of Judah. (Arba was the fa- But they had given the fields ther of Anak.) and villages" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 13, + "text": "| 163 Zelophehad’s Daughters Marry" + } + ] + } + ] + }, + { + "name": "Deuteronomy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 6, + "text": "through" + }, + { + "verseNum": 9, + "text": "–18) 13 14 The next day Moses took his seat to judge the people, and they stood around him from morning until evening. When his father-in-law saw all that Moses was doing for the people, he asked, “What is this that you are doing for the people? Why do you sit alone as judge, with all the people 15 standing around you from morning till evening?” 16 “Because the people come to me to inquire of “Whenever they have a God,” Moses replied. dispute, it is brought to me to judge between one man and another, and I make known to them the 17 statutes and laws of God.” 18 But Moses’ father-in-law said to him, “What Surely you and these you are doing is not good. people with you will wear yourselves out, be- cause the task is too heavy for you. You cannot 19 handle it alone. 20 Now listen to me; I will give you some advice, and may God be with you. You must be the peo- ple’s representative before God and bring their Teach them the statutes and causes to Him. laws, and show them the way to live and the 21 work they must do. Furthermore, select capable men from among the people—God-fearing, trustworthy men who are averse to dishonest gain. Appoint them over the people as leaders of thousands, of hundreds, 22 of fifties, and of tens. Have these men judge the people at all times. Then they can bring you any major issue, but all minor cases they can judge on their own, so that your load may be lightened as they share it with 23 you. If you follow this advice and God so directs you, then you w" + }, + { + "verseNum": 26, + "text": "–33) have seemed the same to them!” 14 2 Then the whole congregation lifted up their voices and cried out, and that night All the Israelites grumbled the people wept. against Moses and Aaron, and the whole congre- gation said to them, “If only we had died in the land of Egypt, or if only we had died in this wil- Why is the LORD bringing us into this derness! land to fall by the sword? Our wives and children will become plunder. Would it not be better for 4 us to go back to Egypt?” 3 So they said to one another, “Let us appoint a leader and return to Egypt.” 5 Then Moses and Aaron fell facedown before the 6 whole assembly of the congregation of Israel. devotion, just as You have forgiven them ever God’s Forgiveness and Judgment since they left Egypt.”" + }, + { + "verseNum": 34, + "text": "–40)" + }, + { + "verseNum": 41, + "text": "–46) Israelites, the people mourned bitterly. 40 Early the next morning they got up and went up toward the ridge of the hill country. “We have indeed sinned,” they said, “but we will go to the 41 place the LORD has promised.” 43 42 But Moses said, “Why are you transgressing the commandment of the LORD? This will not succeed! Do not go up, lest you be struck down by your enemies, because the LORD is not among you. For there the Amalekites and Canaanites will face you, and you will fall by the sword. Be- cause you have turned away from the LORD, He 44 will not be with you.” But they dared to go up to the ridge of the hill country, though neither Moses nor the ark of the 45 covenant of the LORD moved from the camp. Then the Amalekites and Canaanites who lived in that part of the hill country came down, attacked them, and routed them all the way to Laws about Offerings Hormah. 2 “Speak to Then the LORD said to Moses, 3 the Israelites and tell them: After you en- ter the land that I am giving you as a home and you present a food offering to the LORD from the herd or flock to produce a pleasing aroma to the LORD—either a burnt offering or a sacrifice, for a special vow or freewill offering or appointed then the one presenting his offering to feast— a 4 A tenth of an ephah the LORD shall also present a grain offering of a b 4 a quarter hin of oil 4 15 d With a ram you are to prepare a grain offering of two-tenths of an ephah of fine flour mixed with a third of a hin of olive oil, an" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 12, + "text": "| 165 26 But you were unwilling to go up; you rebelled 27 against the command of the LORD your God. You grumbled in your tents and said, “Because the LORD hates us, He has brought us out of the land of Egypt to deliver us into the hand of the Where can we go? Amorites to be annihilated. Our brothers have made our hearts melt, saying: ‘The people are larger and taller than we are; the cities are large, with walls up to the heavens. We 29 ” even saw the descendants of the Anakim there.’ 28 30 31 So I said to you: “Do not be terrified or afraid The LORD your God, who goes before of them! you, will fight for you, just as you saw Him do for and in the wilderness, where the you in Egypt LORD your God carried you, as a man carries his son, all the way by which you traveled until you 32 reached this place.” 33 But in spite of all this, you did not trust the LORD your God, who went before you on the journey, in the fire by night and in the cloud by day, to seek out a place for you to camp and to Israel’s Penalty" + }, + { + "verseNum": 13, + "text": "28 of Esau drove them out. They destroyed the Ho- rites from before them and settled in their place, just as Israel did in the land that the LORD gave 13 them as their possession.) “Now arise and cross over the Brook of Zered.” 14 So we crossed over the Brook of Zered. 29 You can sell us turn to the right or to the left. food to eat and water to drink in exchange for sil- ver. Only let us pass through on foot, just as the descendants of Esau who live in Seir and the Mo- abites who live in Ar did for us, until we cross the Jordan into the land that the LORD our God is 30 giving us.” The time we spent traveling from Kadesh-bar- nea until we crossed over the Brook of Zered was thirty-eight years, until that entire generation of fighting men had perished from the camp, as the Indeed, the LORD’s LORD had sworn to them. hand was against them, to eliminate them from 16 the camp, until they had all perished. 15 17 18 the LORD said to me, Now when all the fighting men among the peo- “Today ple had died, 19 you are going to cross the border of Moab at Ar. But when you get close to the Ammonites, do not harass them or provoke them, for I will not give you any of the land of the Ammonites. I have given it to the descendants of Lot as their posses- 20 sion.” 22 21 (That too was regarded as the land of the Rephaim, who used to live there, though the They Ammonites called them Zamzummites. were a people great and many, as tall as the Ana- kites. But the LORD destroyed them from before the A" + }, + { + "verseNum": 24, + "text": "–37) looks the wasteland. 21 b 22 Then Israel sent messengers to Sihon king of “Let us pass through the Amorites, saying, your land. We will not turn aside into any field or vineyard, or drink water from any well. We will stay on the King’s Highway until we have passed 23 through your territory.” But Sihon would not let Israel pass through his territory. Instead, he gathered his whole army c and went out to confront Israel in the wilderness. 24 he fought against Israel. When he came to Jahaz, And Israel put him to the sword and took possession of his land, from the Arnon to the Jabbok—but only up to the border of the Ammo- 25 nites, because it was fortified. d 26 Israel captured all the cities of the Amorites and occupied them, including Heshbon and all its villages. Heshbon was the city of Sihon king of the Amorites, who had fought against the former 27 king of Moab and taken all his land as far as the Arnon. a 16 Beer was rugged That is why the poets say: c 23 Jahaz Jeshimon because it was strong . Or means b 20 e 30 well" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–11) which reaches to Medeba. ” 31 32 So Israel lived in the land of the Amorites. After Moses had sent spies to Jazer, Israel cap- tured its villages and drove out the Amorites who 33 were there. Then they turned and went up the road to Ba- shan, and Og king of Bashan and his whole army 34 came out to meet them in battle at Edrei. But the LORD said to Moses, “Do not fear him, for I have delivered him into your hand, along with all his people and his land. Do to him as you did to Sihon king of the Amorites, who lived in 35 Heshbon.” So they struck down Og, along with his sons and his whole army, until no remnant was left. Balak Summons Balaam And they took possession of his land. 22 Then the Israelites traveled on and camped in the plains of Moab near the 2 Jordan, across from Jericho. 3 4 Now Balak son of Zippor saw all that Israel had and Moab was terrified of done to the Amorites, the people because they were numerous. Indeed, Moab dreaded the Israelites. So the Moabites said to the elders of Midian, “This horde will de- vour everything around us, as an ox licks up the grass of the field.” 5 Since Balak son of Zippor was king of Moab at he sent messengers to summon that time, Balaam son of Beor at Pethor, which is by the Eu- phrates in the land of his people. f ; literally Or Hebrew d 24 We demolished them until fire spread to Medeba is a variant of ; see 1 Chr. 6:78. Jahzah Or because the territory the River f 5 148 |" + }, + { + "verseNum": 12, + "text": "–22 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 5, + "text": "| 167 6 walls and gates and bars, and there were many a We devoted them to more unwalled villages. destruction, as we had done to Sihon king of Heshbon, utterly destroying the men, women, 7 and children of every city. the LORD gives rest to your brothers as He has to you, and they too have taken possession of the land that the LORD your God is giving them across the Jordan. Then each of you may return 21 to the possession I have given you.” But all the livestock and plunder of the cities we 8 carried off for ourselves. 9 10 At that time we took from the two kings of the Amorites the land across the Jordan, from the Arnon Valley as far as Mount Hermon— which the Sidonians call Sirion but the Amorites call Senir— all the cities of the plateau, all of Gil- ead, and all of Bashan as far as the cities of 11 Salecah and Edrei in the kingdom of Og. (For only Og king of Bashan had remained of the remnant of the Rephaim. His bed of iron, nine cubits long and four cubits wide, is still in Rab- Land Division East of the Jordan bah of the Ammonites.)" + }, + { + "verseNum": 6, + "text": "6 20 Observe them care- about to enter and possess. fully, for this will show your wisdom and under- standing in the sight of the peoples, who will hear of all these statutes and say, “Surely this great na- 7 tion is a wise and understanding people.” 8 For what nation is great enough to have a god as near to them as the LORD our God is to us whenever we call on Him? And what nation is great enough to have righteous statutes and ordinances like this entire law I set before you 9 today? Yet the LORD has taken nations under heaven. you and brought you out of the iron furnace, out of Egypt, to be the people of His inheritance, as 21 you are today. The LORD, however, was angry with me on ac- count of you, and He swore that I would not cross the Jordan to enter the good land that the LORD For I your God is giving you as an inheritance. will not be crossing the Jordan, because I must die in this land. But you shall cross over and take 23 possession of that good land. 22 10 Only be on your guard and diligently watch yourselves, so that you do not forget the things your eyes have seen, and so that they do not slip from your heart as long as you live. Teach them a The day to your children and grandchildren. you stood before the LORD your God at Horeb, the LORD said to me, “Gather the people before Me to hear My words, so that they may learn to fear Me all the days they live on the earth, and 11 that they may teach them to their children.” You came near and stood at the base of the moun" + }, + { + "verseNum": 15, + "text": "–31 ;" + }, + { + "verseNum": 24, + "text": "BYZ and TR" + }, + { + "verseNum": 40, + "text": "may be presented as a continuous section of unbroken speech by Moses. In lowlands place of multiple levels of nested quotes, this section has been set apart with a double space. Hebrew or ; that is, the western foothills of Judea Israel’s Rebellion" + }, + { + "verseNum": 41, + "text": "–43 ; 19:1–14 ;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "through" + }, + { + "verseNum": 12, + "text": "| 169 47 48 They took possession of the land belonging to Sihon and to Og king of Bashan—the two Amo- ex- rite kings across the Jordan to the east— tending from Aroer on the rim of the Arnon Val- 49 (that is, Hermon), ley as far as Mount Siyon including all the Arabah on the east side of the below Jordan and as far as the Sea of the Arabah, The Covenant at Horeb the slopes of Pisgah. a b 5 c Then Moses summoned all Israel and said to them: Hear, O Israel, the statutes and ordinances that I declare in your hearing this day. Learn them and The LORD our God observe them carefully. 3 made a covenant with us at Horeb. 2 d 4 He did not make this covenant with our fathers, The but with all of us who are alive here today. LORD spoke with you face to face out of the fire The Ten Commandments" + }, + { + "verseNum": 13, + "text": "13 14 Six days you shall labor and do all you. but the seventh day is a Sab- your work, bath to the LORD your God, on which you must not do any work—neither you, nor your son or daughter, nor your manservant or maidservant, nor your ox or donkey or any of your livestock, nor the foreigner within your gates, so that your manservant Re- and maidservant may rest as you do. member that you were a slave in the land of Egypt, and that the LORD your God brought you out of there with a mighty hand and an outstretched arm. That is why the LORD your God has commanded you to keep the Sab- 16 bath day. 15 Honor your father and your mother, as the LORD your God has commanded you, so that your days may be long and that it may go well with you in the land that the LORD your 17 God is giving you. 18 a b c You shall not murder. You shall not commit adultery. 19 20 You shall not steal. e 21 your neighbor. d f You shall not bear false witness against You shall not covet your neighbor’s wife. You shall not covet your neighbor’s house or field, or his manservant or maidservant, or his ox or donkey, or anything that belongs to your neighbor.” Moses Intercedes for the People" + }, + { + "verseNum": 16, + "text": "b 25 strong ; SBL, . Or 19 NA, WH, and BYZ do not include 35 20 35" + }, + { + "verseNum": 17, + "text": "BYZ and TR include is an Aramaic expression of contempt. Or Or ; Greek 25 42" + }, + { + "verseNum": 18, + "text": "Gehenna l 11 g 20 or dead h 23 Can both fresh and bitter BYZ and TR h i believed God, and it was credited to him as right- 24 eousness,” and he was called a friend of God. As you can see, a man is justified by his deeds 25 and not by faith alone. j In the same way, was not even Rahab the pros- titute justified by her actions when she wel- 26 and sent them off on another comed the spies route? As the body without the spirit is dead, Taming the Tongue" + }, + { + "verseNum": 21, + "text": "raised Christ from the dead Those being in the flesh Literally b 23 f 8 h captive to the law of sin being in my members. me d 2 c 1 e 3 in in the like- g 10 BYZ and TR yet the Spirit is life BYZ and TR Literally NA, BYZ, and TR Literally ; similarly in verse 9 Or 1014 |" + }, + { + "verseNum": 22, + "text": "–33 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–19 ;" + }, + { + "verseNum": 4, + "text": "–5" + }, + { + "verseNum": 5, + "text": "SBL, NE, and WH" + }, + { + "verseNum": 13, + "text": "" + }, + { + "verseNum": 16, + "text": "" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "| 171 25 we may always be prosperous and preserved, as we are to this day. And if we are careful to ob- serve every one of these commandments before the LORD our God, as He has commanded us, Drive Out the Nations then that will be our righteousness.” 7 When the LORD your God brings you into the land that you are entering to possess, and He drives out before you many nations—the Hittites, Girgashites, Amorites, Canaanites, Per- izzites, Hivites, and Jebusites, seven nations and when the larger and stronger than you— LORD your God has delivered them over to you d to defeat them, then you must devote them to with complete destruction. 3 them and show them no mercy. Make no treaty 2 c 4 Do not intermarry with them. Do not give your daughters to their sons or take their daughters for your sons, because they will turn your sons away from following Me to serve other gods. Then the anger of the LORD will burn against 5 you, and He will swiftly destroy you. 6 Instead, this is what you are to do to them: tear down their altars, smash their sacred pillars, cut down their Asherah poles, and burn their idols in For you are a people holy to the LORD the fire. your God. The LORD your God has chosen you to be a people for His prized possession out of all 7 peoples on the face of the earth. 8 The LORD did not set His affection on you and choose you because you were more numerous than the other peoples, for you were the fewest But because the LORD loved you of all peoples. and kept the oath He" + }, + { + "verseNum": 12, + "text": "–26) 3" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 7, + "text": "–29 ;" + }, + { + "verseNum": 21, + "text": "| 173 a At Horeb From the day you left the land of Egypt until you reached this place, you have been rebelling 8 against the LORD. 9 you provoked the LORD, and He was angry enough to destroy you. When I went up on the mountain to receive the tablets of stone, the tablets of the covenant that the LORD made with you, I stayed on the mountain forty days and 10 forty nights. I ate no bread and drank no water. 12 Then the LORD gave me the two stone tablets, inscribed by the finger of God with the exact words that the LORD spoke to you out of the fire 11 on the mountain on the day of the assembly. And at the end of forty days and forty nights, the LORD gave me the two stone tablets, the tab- lets of the covenant. And the LORD said to me, “Get up and go down from here at once, for your people, whom you brought out of Egypt, have corrupted themselves. How quickly they have turned aside from the way that I commanded them! They have made for themselves a molten 13 image.” 14 The LORD also said to me, “I have seen this people, and they are indeed a stiff-necked peo- Leave Me alone, so that I may destroy them ple. and blot out their name from under heaven. Then I will make you into a nation mightier and 15 greater than they are.” 16 So I went back down the mountain while it was blazing with fire, with the two tablets of the cov- enant in my hands. And I saw how you had sinned against the LORD your God; you had made for yourselves a molten calf. You had turned aside quickly from the way t" + }, + { + "verseNum": 22, + "text": "a had made, and burned it in the fire. Then I crushed it and ground it to powder as fine as dust, and I cast it into the stream that came down 22 from the mountain. c You continued to provoke the LORD at Tabe- and at Kibroth-hattaavah. And when the LORD sent you out from Kadesh- barnea, He said, “Go up and possess the land that I have given you.” at Massah, 23 rah, b 24 But you rebelled against the command of the LORD your God. You neither believed Him nor You have been rebelling against obeyed Him. So the LORD since the day I came to know you. I fell down before the LORD for forty days and forty nights, because the LORD had said He 26 would destroy you. 25 27 And I prayed to the LORD and said, “O Lord GOD, do not destroy Your people, Your inher- itance, whom You redeemed through Your great- ness and brought out of Egypt with a mighty Remember Your servants Abraham, hand. Isaac, and Jacob. Overlook the stubbornness of 28 this people and the wickedness of their sin. Otherwise, those in the land from which You brought us out will say, ‘Because the LORD was not able to bring them into the land He had prom- ised them, and because He hated them, He has 29 brought them out to kill them in the wilderness.’ But they are Your people, Your inheritance, whom You brought out by Your great power and New Stone Tablets" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "–11) seen.” 34 Then the LORD said to Moses, “Chisel out two stone tablets like the originals, and I c 12 b 7 a 19 will write on them the words that were on the covenant to thousands" + }, + { + "verseNum": 12, + "text": "–22) 13 14 15 Now, therefore, fear the LORD and serve Him in sincerity and truth; cast aside the gods your fa- thers served beyond the Euphrates and in Egypt, But if it is unpleasing in and serve the LORD. your sight to serve the LORD, then choose for yourselves this day whom you will serve, whether the gods your fathers served beyond the Euphrates, or the gods of the Amorites in whose land you are living. As for me and my house, we 16 will serve the LORD!” 17 The people replied, “Far be it from us to for- For the sake the LORD to serve other gods! LORD our God brought us and our fathers out of the land of Egypt, out of the house of slavery, and performed these great signs before our eyes. He also protected us throughout our journey and among all the nations through which we trav- And the LORD drove out before us all the eled. nations, including the Amorites who lived in the land. We too will serve the LORD, because He is 19 our God!” 18 20 But Joshua said to the people, “You are not able to serve the LORD, for He is a holy God; He is a jealous God; He will not forgive your rebellion or If you forsake the LORD and serve your sins. foreign gods, He will turn and bring disaster on you and consume you, even after He has been 21 good to you.” “No!” replied the people. “We will serve the LORD!” Then Joshua told them, “You are witnesses against yourselves that you have chosen to serve the LORD.” 23 “We are witnesses!” they said. “Now, therefore,” he said, “get rid of the for- eign" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 8, + "text": "–17) 1 2 Now after the death of His servant Moses, the LORD spoke to Joshua son of Nun, Moses’ “Moses My servant is dead. assistant, saying, Now therefore arise, you and all these people, and cross over the Jordan into the land that I am 3 giving to the children of Israel. I have given you every place where the sole of 4 your foot will tread, just as I promised to Moses. Your territory shall extend from the wilderness and Lebanon to the great River Euphrates—all the land of the Hittites—and west as far as the 5 Great Sea. a No one shall stand against you all the days of your life. As I was with Moses, so will I be with 6 you; I will never leave you nor forsake you. b Be strong and courageous, for you shall give these people the inheritance of the land that I 7 swore to their fathers I would give them. 8 Above all, be strong and very courageous. Be careful to observe all the law that My servant Moses commanded you. Do not turn from it to the right or to the left, so that you may prosper wherever you go. This Book of the Law must not depart from your mouth; meditate on it day and night, so that you may be careful to do everything written in it. For then you will prosper and suc- 9 ceed in all you do. Have I not commanded you to be strong and courageous? Do not be afraid; do not be discour- aged, for the LORD your God is with you wher- Joshua Takes Charge ever you go.” 10 11 Then Joshua commanded the officers of the people: “Go through the camp and tell the peo- ple, ‘Prepare yo" + }, + { + "verseNum": 29, + "text": "| 175 Your fa- wonders that your eyes have seen. thers went down to Egypt, seventy in all, and now the LORD your God has made you as numer- Obedience and Discipline (De. 4:1–14) ous as the stars in the sky. 11 You shall therefore love the LORD your God and always keep His charge, His statutes, His ordinances, and His command- 2 ments. a 4 Know this day that it is not your children who have known and seen the discipline of the LORD 3 your God: His greatness, His mighty hand, and the signs and works He His outstretched arm; did in Egypt to Pharaoh king of Egypt and all his land; what He did to the Egyptian army and horses and chariots when He made the waters of engulf them as they pursued you, the Red Sea and how He destroyed them completely, even to 6 what He did for you in the wilderness this day; until you reached this place; and what He did in the midst of all the Israelites to Dathan and Abi- ram, the sons of Eliab the Reubenite, when the earth opened its mouth and swallowed them, their households, their tents, and every living 7 thing that belonged to them. 5 For it is your own eyes that have seen every God’s Great Blessings" + }, + { + "verseNum": 30, + "text": "30 Are not these mountains curse on Mount Ebal. across the Jordan, west of the road toward the sunset, in the land of the Canaanites who live in the Arabah opposite Gilgal near the Oak of 31 Moreh? a 32 For you are about to cross the Jordan to enter and possess the land that the LORD your God is giving you. When you take possession of it and be careful to follow all the statutes settle in it, and ordinances that I am setting before you to- day. One Place for Worship 12 These are the statutes and ordinances you must be careful to follow all the days you live in the land that the LORD, the God of 2 your fathers, has given you to possess. Destroy completely all the places where the na- tions you are dispossessing have served their 3 gods—atop the high mountains, on the hills, and Tear down their altars, under every green tree. smash their sacred pillars, burn up their Asherah poles, cut down the idols of their gods, and wipe You shall not out their names from every place. 5 worship the LORD your God in this way. 4 6 Instead, you must seek the place the LORD your God will choose from among all your tribes to es- tablish as a dwelling for His Name, and there you To that place you are to bring your must go. burnt offerings and sacrifices, your tithes and heave offerings, your vow offerings and freewill offerings, as well as the firstborn of your herds There, in the presence of the LORD and flocks. your God, you and your households shall eat and rejoice in all you do, because the LO" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 29, + "text": "–32 ;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 5, + "text": ", 17:7, 19:19, 21:21, 22:21, 22:24, 24:7 Literally . Literally" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–21 ;" + }, + { + "verseNum": 2, + "text": "| 177 7 worship other gods” (which neither you nor your the gods of the peoples fathers have known, around you, whether near or far, whether from you must not one end of the earth or the other), yield to him or listen to him. Show him no pity, 9 and do not spare him or shield him. 8 10 Instead, you must surely kill him. Your hand must be the first against him to put him to death, Stone him and then the hands of all the people. to death for trying to turn you away from the 11 LORD your God, who brought you out of the land Then all of Egypt, out of the house of slavery. Israel will hear and be afraid, and will never again Idolatrous Cities to Be Destroyed do such a wicked thing among you. 12 14 If, regarding one of the cities the LORD your 13 God is giving you to inhabit, you hear it said that wicked men have arisen from among you and have led the people of their city astray, say- ing, “Let us go and serve other gods” (which you then you must inquire, in- have not known), vestigate, and interrogate thoroughly. And if it is established with certainty that this abomination you must has been committed among you, surely put the inhabitants of that city to the all its people and sword. Devote to destruction 16 livestock. 15 c And you are to gather all its plunder in the middle of the public square, and completely burn the city and all its plunder as a whole burnt offer- ing to the LORD your God. The city must remain 17 a mound of ruins forever, never to be rebuilt. 18 Nothing devote" + }, + { + "verseNum": 3, + "text": "3 4 a You must not eat any detestable thing. These are the animals that you may eat: 5 The ox, the sheep, the goat, the deer, the gazelle, the roe deer, the wild goat, the ibex, the antelope, and the mountain sheep. 6 You may eat any animal that has a split hoof di- 7 vided in two and that chews the cud. But of those that chew the cud or have a com- pletely divided hoof, you are not to eat the following: the camel, the rabbit, b or the rock badger. 8 Although they chew the cud, they do not have a divided hoof. They are unclean for as well as the pig; though it has a you, divided hoof, it does not chew the cud. It is unclean for you. You must not eat its meat or touch its carcass. 10 9 Of all the creatures that live in the water, you but you may eat anything with fins and scales, may not eat anything that does not have fins and 11 scales; it is unclean for you. 12 You may eat any clean bird, but these you may not eat: the eagle, the bearded vulture, the black 13 vulture, 14 the red kite, the falcon, any kind of kite, 15 c any kind of raven, the ostrich, 16 kind of hawk, the screech owl, the gull, any the little owl, the great owl, the white 17 owl, 18 the desert owl, the osprey, the cormorant, the stork, any kind of heron, 19 the hoopoe, or the bat. 20 All flying insects are unclean for you; they may But you may eat any clean bird. 21 not be eaten. You must not cook a young goat in its mother’s Giving Tithes milk. (Lev. 27:30–34 ; De. 26:1–15 ; Neh. 13:10–14) 22 23 You must be" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–6) 10 11 For six years you are to sow your land and but in the seventh year you gather its produce, must let it rest and lie fallow, so that the poor among your people may eat from the field and the wild animals may consume what they leave. 12 Do the same with your vineyard and olive grove. For six days you are to do your work, but on the seventh day you must cease, so that your ox and your donkey may rest and the son of your maidservant may be refreshed, as well as the for- 13 eign resident. Pay close attention to everything I have said to you. You must not invoke the names of other The Three Feasts of Pilgrimage (Lev. 23:1–3) gods; they must not be heard on your lips. 14 Three times a year you are to celebrate a feast 15 to Me. b You are to keep the Feast of Unleavened c Bread as I commanded you: At the appointed time in the month of Abib you are to eat unleav- ened bread for seven days, because that was the month you came out of Egypt. No one may ap- 16 pear before Me empty-handed. d You are also to keep the Feast of Harvest with the firstfruits of the produce from what you sow in the field. e at the end of And keep the Feast of Ingathering the year, when you gather your produce from the 17 field. Three times a year all your males are to appear 18 before the Lord GOD. You must not offer the blood of My sacrifices with anything leavened, nor may the fat of My 19 feast remain until morning. Bring the best of the firstfruits of your soil to the house of the LORD your God. Do" + }, + { + "verseNum": 7, + "text": "–11) 6 m “Be careful not to perform your righteous before men to be seen by them. If you acts do, you will have no reward from your Father in 2 heaven. 3 So when you give to the needy, do not sound a trumpet before you, as the hypocrites do in the synagogues and on the streets, to be honored by men. Truly I tell you, they already have their full But when you give to the needy, do not reward. 4 let your left hand know what your right hand is so that your giving may be in secret. And doing, your Father, who sees what is done in secret, will The Lord’s Prayer" + }, + { + "verseNum": 11, + "text": ". Aware of this, Jesus asked, “Why are you both- b 11 a 6 ering this woman? She has done a beautiful deed the Twelve Unleavened or Aramaic Simon the Jar Maker Simon the Potter d 20 ; see" + }, + { + "verseNum": 12, + "text": "–18) nakedness be exposed on it.’ 26 21 2 “These are the ordinances that you are to set before them: 3 If you buy a Hebrew servant, he is to serve you for six years. But in the seventh year, he shall go free without paying anything. If he arrived alone, he is to leave alone; if he arrived with a wife, she is to leave with him. If his master gives him a wife and she bears him sons or daughters, the woman and her children shall belong to her 5 master, and only the man shall go free. 4 6 But if the servant declares, ‘I love my master and my wife and children; I do not want to go a free,’ then his master is to bring him before the judges. And he shall take him to the door or doorpost and pierce his ear with an awl. Then he 7 shall serve his master for life. 8 11 marital rights of his first wife. If, however, he does not provide her with these three things, she Personal Injury Laws is free to go without monetary payment. 12 13 Whoever strikes and kills a man must surely be put to death. If, however, he did not lie in wait, but God allowed it to happen, then I will ap- 14 point for you a place where he may flee. But if a man schemes and acts willfully against his neighbor to kill him, you must take him away 15 from My altar to be put to death. Whoever strikes his father or mother must 16 surely be put to death. Whoever kidnaps another man must be put to death, whether he sells him or the man is found 17 in his possession. c d his father or mother must Anyone who curses 18 surely be" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 8, + "text": "| 179 worth twice the wages of a hired hand. And the Firstborn Animals" + }, + { + "verseNum": 9, + "text": "–12) sembly; you must not do any regular work. 26 e On the day of firstfruits, when you present an offering of new grain to the LORD during the Feast of Weeks, you are to hold a sacred assem- 27 bly; you must not do any regular work. 28 Present a burnt offering of two young bulls, one ram, and seven male lambs a year old as a pleasing aroma to the LORD, together with their grain offerings of fine flour mixed with oil— three-tenths of an ephah with each bull, two- tenths of an ephah with the ram, and a tenth of 30 an ephah with each of the seven lambs. 29 31 Include one male goat to make atonement for you. Offer them with their drink offerings in addition to the regular burnt offering and its grain offering. The animals must be unblem- The Feast of Trumpets" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 9, + "text": "–14) 9 10 Prior to that time, a man named Simon had practiced sorcery in the city and astounded the people of Samaria. He claimed to be someone and all the people, from the least to the great, greatest, heeded his words and said, “This man is 11 the divine power called the Great Power.” They paid close attention to him because he had astounded them for a long time with his sor- 12 cery. 13 But when they believed Philip as he preached the gospel of the kingdom of God and the name of Jesus Christ, they were baptized, both men and women. Even Simon himself believed and was baptized. He followed Philip closely and was astounded by the great signs and miracles he ob- 14 served. 16 When the apostles in Jerusalem heard that Sa- 15 maria had received the word of God, they sent On their arrival, they Peter and John to them. prayed for them to receive the Holy Spirit. For the Holy Spirit had not yet fallen upon any of them; they had simply been baptized into the Then Peter and John name of the Lord Jesus. laid their hands on them, and they received the 18 Holy Spirit. 17 When Simon saw that the Spirit was given 19 through the laying on of the apostles’ hands, he “Give me this power as offered them money. well,” he said, “so that everyone on whom I lay 20 my hands may receive the Holy Spirit.” 22 21 But Peter replied, “May your silver perish with you, because you thought you could buy the gift You have no part or share of God with money! in our ministry, because your heart is not right" + }, + { + "verseNum": 15, + "text": "–22) 11 h 12 While the man clung to Peter and John, all the people were astonished and ran to them in the walkway called Solomon’s Colonnade. And when Peter saw this, he addressed the people: “Men of Israel, why are you surprised by this? Why do you stare at us as if by our own power or 13 godliness we had made this man walk? i 14 The God of Abraham, Isaac, and Jacob, the God of our fathers, has glorified His servant Jesus. You handed Him over and rejected Him before Pilate, even though he had decided to release You rejected the Holy and Righteous One Him. 15 and asked that a murderer be released to you. You killed the Author of life, but God raised Him from the dead, and we are witnesses of this 16 fact. By faith in the name of Jesus, this man whom you see and know has been made strong. It is Jesus’ name and the faith that comes through Him that has given him this complete healing in fear your presence. the temple In the name of Jesus Christ d 46 c 43 i 13 His child Or Literally about three thousand souls were added that day g 6 f 2 in the colonnade called Solomon’s the temple That is, three in the afternoon Literally Literally ; also in verse 8 SBL, NE, and WH Or ; also in verse 26 17 10" + }, + { + "verseNum": 19, + "text": ". ; also in verses 27 and 30" + }, + { + "verseNum": 20, + "text": "| 181 4 5 jowls, and the stomach. You are to give them the firstfruits of your grain, new wine, and oil, and the first wool sheared from your flock. For the LORD your God has chosen Levi and his sons out of all your tribes to stand and minister in His 6 name for all time. 8 7 Now if a Levite moves from any town of resi- dence throughout Israel and comes in all ear- nestness to the place the LORD will choose, then he shall serve in the name of the LORD his God like all his fellow Levites who stand there before the LORD. They shall eat equal portions, even though he has received money from the sale of Sorcery Forbidden" + }, + { + "verseNum": 21, + "text": "21 You may ask in your heart, “How can we rec- 22 ognize a message that the LORD has not spoken?” When a prophet speaks in the name of the LORD and the message does not come to pass or come true, that is a message the LORD has not spoken. The prophet has spoken presumptu- Cities of Refuge ously. Do not be afraid of him. (Num. 35:9–34 ; De. 4:41–43 ; Josh. 20:1–9) 19 When the LORD your God has cut off the nations whose land He is giving you, and 2 when you have driven them out and settled in their cities and houses, then you are to set apart for yourselves three cities within the land that a You the LORD your God is giving you to possess. are to build roads for yourselves and divide into three regions the land that the LORD your God is giving you as an inheritance, so that any 4 manslayer can flee to these cities. 3 5 Now this is the situation regarding the manslayer who flees to one of these cities to save his life, having killed his neighbor accidentally, If he goes into without intending to harm him: the forest with his neighbor to cut timber and swings his axe to chop down a tree, but the blade flies off the handle and strikes and kills his neigh- bor, he may flee to one of these cities to save his 6 life. 7 Otherwise, the avenger of blood might pursue the manslayer in a rage, overtake him if the dis- tance is great, and strike him dead though he did not deserve to die, since he did not intend any This is why I am commanding you to set harm. 8 apart for yourselves three ci" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 15, + "text": "–21) perish. 15 14 f 18 At that time the disciples came to Jesus and asked, “Who then is the greatest in a 20 the kingdom of heaven?” didrachma BYZ and TR include of fire f 15 ; twice in this verse the Gehenna of fire c 27 a stater e 10 against you Greek g 16 21 But this kind does not come out except by prayer and fasting If your brother sins against you, go and con- 16 front him privately. If he listens to you, you have But if he will not listen, won your brother over. take one or two others along, so that ‘every mat- 17 ter may be established by the testimony of two the If he refuses to listen to or three witnesses.’ the hell b 24 g 11 For the Son of Man came to save the lost ; that is, a silver coin worth approximately one shekel ; see" + }, + { + "verseNum": 21, + "text": "Literally charitable acts" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 15, + "text": "| 183 Has any man planted a vineyard and not begun to enjoy its fruit? Let him return home, or he may die in battle and another man enjoy its fruit. Has any man become pledged to a woman and not married her? Let him return home, or he may die 8 in battle and another man marry her.” 7 Then the officers shall speak further to the army, saying, “Is any man afraid or fainthearted? Let him return home, so that the hearts of his 9 brothers will not melt like his own.” When the officers have finished addressing the 10 army, they are to appoint commanders to lead it. 11 When you approach a city to fight against it, If they ac- you are to make an offer of peace. cept your offer of peace and open their gates, all the people there will become forced laborers to 12 serve you. 14 But if they refuse to make peace with you and 13 wage war against you, lay siege to that city. When the LORD your God has delivered it into your hand, you must put every male to the sword. But the women, children, livestock, and whatever else is in the city—all its spoil—you may take as plunder, and you shall use the spoil of your enemies that the LORD your God gives This is how you are to treat all the cities you. that are far away from you and do not belong to 16 the nations nearby. 15 a However, in the cities of the nations that the LORD your God is giving you as an inheritance, 17 you must not leave alive anything that breathes. For you must devote them to complete de- struction —the Hittites, Amorites, Canaa" + }, + { + "verseNum": 16, + "text": "16 6 when that unloved wife has the firstborn son, man assigns his inheritance to his sons he must not appoint the son of the beloved wife as the 17 firstborn over the son of the unloved wife. Instead, he must acknowledge the firstborn, the son of his unloved wife, by giving him a dou- ble portion of all that he has. For that son is the firstfruits of his father’s strength; the right of the A Rebellious Son" + }, + { + "verseNum": 18, + "text": "–21) 10 11 12 Then Jesus said, “There was a man who had two sons. The younger son said to him, ‘Father, give me my share of the estate.’ So he divided his 13 property between them. After a few days, the younger son got every- thing together and journeyed to a distant coun- try, where he squandered his wealth in wild 14 living. 15 After he had spent all he had, a severe famine swept through that country, and he began to be in need. So he went and hired himself out to a citizen of that country, who sent him into his fields to feed the pigs. He longed to fill his belly with the pods the pigs were eating, but no one 17 would give him a thing. 16 18 Finally he came to his senses and said, ‘How many of my father’s hired servants have plenty of food, but here I am, starving to death! I will get up and go back to my father and say to him, “Father, I have sinned against heaven and against you. I am no longer worthy to be called your 20 son. Make me like one of your hired servants.” ’ 19 So he got up and went to his father. But while he was still in the distance, his father saw him and was filled with compassion. He ran to his 21 son, embraced him, and kissed him. The son declared, ‘Father, I have sinned against heaven and against you. I am no longer ten drachmas a 8 worthy to be called your son. ’ b c 6 ‘A hundred baths of oil’ 23 But the father said to his servants, ‘Quick! Bring the best robe and put it on him. Put a ring Bring the on his finger and sandals on his feet. 24 fattened" + }, + { + "verseNum": 23, + "text": "(see also LXX) 19 Why then was the law given? It was added be- cause of transgressions, until the arrival of the seed to whom the promise referred. It was ad- ministered through angels by a mediator. A mediator is unnecessary, however, for only one 21 party; but God is one. 20 Is the law, then, opposed to the promises of God? Certainly not! For if a law had been given that could impart life, then righteousness would certainly have come from the law. But the Scripture pronounces all things confined by sin, so that by faith in Jesus Christ the promise might 23 be given to those who believe. 22 24 Before this faith came, we were held in custody under the law, locked up until faith should be re- vealed. So the law became our guardian to lead 25 us to Christ, that we might be justified by faith. Now that faith has come, we are no longer un- Sons through Faith in Christ der a guardian. 26 27 29 You are all sons of God through faith in Christ For all of you who were baptized into Jesus. 28 Christ have clothed yourselves with Christ. There is neither Jew nor Greek, slave nor free, male nor female, for you are all one in Christ Jesus. And if you belong to Christ, then you are Abraham’s seed and heirs according to the Sons and Heirs promise. 4 What I am saying is that as long as the heir is a child, he is no different from a slave, alt- hough he is the owner of everything. He is sub- ject to guardians and trustees until the date set 3 by his father. 2 a 5 6 4 slaved under the basic pri" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 3, + "text": "–6. 6 19" + }, + { + "verseNum": 9, + "text": "–14) ” b 15 2 3 And the LORD said to Moses and “Say to the Israelites, ‘When any Aaron, man has a bodily discharge, the discharge is un- This uncleanness is from his discharge, clean. whether his body allows the discharge to flow or blocks it. So his discharge will bring about un- 4 cleanness. Any bed on which the man with the discharge 5 lies will be unclean, and any furniture on which he sits will be unclean. Anyone who touches his bed must wash his clothes and bathe with water, Whoever and he will be unclean until evening. sits on furniture on which the man with the dis- charge was sitting must wash his clothes and bathe with water, and he will be unclean until 7 evening. 6 8 Whoever touches the body of the man with a discharge must wash his clothes and bathe with If water, and he will be unclean until evening. the man with the discharge spits on one who is clean, that person must wash his clothes and bathe with water, and he will be unclean until leprosy evening. mil- Forms of the Hebrew regarding blemishes on garments, utensils, or buildings; here and throughout the remainder of this chapter. The Hebrew translated here as is one singular term; see the footnotes for verses regarding skin diseases, are translated as , traditionally translated as skin diseases and mildew 2 and 34. 110 |" + }, + { + "verseNum": 21, + "text": "| 185 stone her to death. For she has committed an out- rage in Israel by being promiscuous in her fa- ther’s house. So you must purge the evil from 22 among you. a 6 the LORD your God turned the curse into a bless- ing for you, because the LORD your God loves You are not to seek peace or prosperity you. 7 from them as long as you live. If a man is found lying with another man’s wife, both the man who slept with her and the woman must die. You must purge the evil from 23 Israel. If there is a virgin pledged in marriage to a 24 man, and another man encounters her in the city you must take both of and sleeps with her, them out to the gate of that city and stone them to death—the young woman because she did not cry out in the city, and the man because he has violated his neighbor’s wife. So you must purge 25 the evil from among you. 26 But if the man encounters a betrothed woman in the open country, and he overpowers her and lies with her, only the man who has done this Do nothing to the young woman, be- must die. cause she has committed no sin worthy of death. This case is just like one in which a man attacks When he found his neighbor and murders him. her in the field, the betrothed woman cried out, 28 but there was no one to save her. 27 29 If a man encounters a virgin who is not pledged in marriage, and he seizes her and lies with her, and they are discovered, then the man who lay with her must pay the young woman’s father fifty shekels of silver, and she must be- come his w" + }, + { + "verseNum": 22, + "text": "22 require it of you, and you will be guilty of sin. 23 But if you refrain from making a vow, you will Be careful to follow not be guilty of sin. through on what comes from your lips, because you have freely vowed to the LORD your God 24 with your own mouth. When you enter your neighbor’s vineyard, you may eat your fill of grapes, but you must not put 25 any in your basket. When you enter your neighbor’s grainfield, you may pluck the heads of grain with your hand, but you must not put a sickle to your neighbor’s Marriage and Divorce Laws grain." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 14, + "text": "–15; cited in 1 Timothy 5:18." + }, + { + "verseNum": 16, + "text": "see 2 Chronicles 26:1. some LXX manuscripts include d 22 Elath Eloth e 25 and he was buried in Samaria with is approximately 600 feet or 182.9 meters. ; see 1 Kings 9:26. is a variant of f 29 is also called ; That is, the Dead Sea Hebrew; 356 | 2 Kings 15:1 Azariah Reigns in Judah (2 Chron. 26:3–23) 15 15 a 2 In the twenty-seventh year of Jero- boam’s reign over Israel, Azariah son of Amaziah became king of Judah. He was sixteen years old when he became king, and he reigned 3 in Jerusalem fifty-two years. His mother’s name And he was Jecoliah; she was from Jerusalem. did what was right in the eyes of the LORD, just 4 as his father Amaziah had done. Nevertheless, the high places were not taken away; the people continued sacrificing and burn- b 5 ing incense there. And the LORD afflicted the king with leprosy until the day he died, so that he lived in a sepa- rate house while his son Jotham had charge of 6 the palace and governed the people of the land. As for the rest of the acts of Azariah, along with all his accomplishments, are they not written in 7 the Book of the Chronicles of the Kings of Judah? c And Azariah rested with his fathers and was in the City of David. And his buried near them Zechariah Reigns in Israel son Jotham reigned in his place. 8 In the thirty-eighth year of Azariah’s reign over Judah, Zechariah son of Jeroboam became king of 9 Israel, and he reigned in Samaria six months. And he did evil in the sight of the LORD, as his fathers had done. He did not tur" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 4, + "text": "1028 | 1 Corinthians 9:22 22 the law (though I am not outside the law of God but am under the law of Christ), to win those To the weak I became weak, without the law. to win the weak. I have become all things to all people so that by all possible means I might save 23 some. seized you except what is common to man. And God is faithful; He will not let you be tempted be- yond what you can bear. But when you are tempted, He will also provide an escape, so that Flee from Idolatry" + }, + { + "verseNum": 5, + "text": "26 46" + }, + { + "verseNum": 13, + "text": "–16 ;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 12, + "text": "| 187 on your journey when you were tired and weary, and they attacked all your stragglers; they had no 19 fear of God. When the LORD your God gives you rest from the enemies around you in the land that He is giv- ing you to possess as an inheritance, you are to blot out the memory of Amalek from under Offering Firstfruits and Tithes heaven. Do not forget! (Lev. 27:30–34 ; De. 14:22–29 ; Neh. 13:10–14) 26 2 When you enter the land that the LORD your God is giving you as an inheritance, you and you take possession of it and settle in it, are to take some of the firstfruits of all your pro- duce from the soil of the land that the LORD your God is giving you and put them in a basket. Then go to the place the LORD your God will choose as to the priest who is a dwelling for His Name, serving at that time, and say to him, “I declare to- day to the LORD your God that I have entered the land that the LORD swore to our fathers to give 4 us.” 3 7 5 6 Then the priest shall take the basket from your hands and place it before the altar of the LORD and you are to declare before the your God, LORD your God, “My father was a wandering Aramean, and he went down to Egypt few in number and lived there and became a great na- But the Egyptians tion, mighty and numerous. mistreated us and afflicted us, putting us to hard So we called out to the LORD, the God of labor. our fathers; and the LORD heard our voice and Then the saw our affliction, toil, and oppression. LORD brought us out of Egypt with" + }, + { + "verseNum": 13, + "text": "13 14 Then you shall declare in the presence of the LORD your God, “I have removed from my house the sacred portion and have given it to the Levite, the foreigner, the fatherless, and the widow, ac- cording to all the commandments You have given me. I have not transgressed or forgotten Your I have not eaten any of the sa- commandments. cred portion while in mourning, or removed any of it while unclean, or offered any of it for the dead. I have obeyed the LORD my God; I have Look done everything You commanded me. down from Your holy habitation, from heaven, and bless Your people Israel and the land You have given us as You swore to our fathers—a Obey the LORD’s Commands land flowing with milk and honey.” 16 15 The LORD your God commands you this day to follow these statutes and ordinances. You must be careful to follow them with all your heart and 17 with all your soul. Today you have proclaimed that the LORD is your God and that you will walk in His ways, keep His statutes and commandments and ordi- 18 nances, and listen to His voice. 19 And today the LORD has proclaimed that you are His people and treasured possession as He promised, that you are to keep all His command- that He will set you high in praise and ments, name and honor above all the nations He has made, and that you will be a holy people to the The Altar on Mount Ebal" + }, + { + "verseNum": 19, + "text": "may be presented as a continuous section of unbroken speech by Moses. In place of multiple levels of nested quotes, this section has been set apart with a double space. faithful- kindness Sinai Hebrew are translated here and ness loyalty to a covenant in most cases throughout the Scriptures as , as well as That is, Mount Sinai, or possibly a mountain in the range containing Mount d 2 loving devotion to thousands ; the range of meaning includes ; forms of the Hebrew loving devotion goodness Or mercy chesed , and f 10 love . , , , 170 |" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 26, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 15, + "text": "–68) 2 20 Then the LORD said to Moses, Israelites, “Tell the ‘Any Israelite or foreigner living in Israel who gives any of his children to 3 Molech must be put to death. The people of the And I will set My face land are to stone him. against that man and cut him off from his people, because by giving his offspring to Molech, he has defiled My sanctuary and profaned My holy 4 name. And if the people of the land ever hide their eyes 5 and fail to put to death the man who gives one of then I will set My face his children to Molech, against that man and his family and cut off from among their people both him and all who follow 6 him in prostituting themselves with Molech. Whoever turns to mediums or spiritists to prostitute himself with them, I will also set My face against that person and cut him off from his people. d 36 An ephah Literally" + }, + { + "verseNum": 23, + "text": "| 189 the earth will see that you are called by the name 11 of the LORD, and they will stand in awe of you. The LORD will make you prosper abundantly— in the fruit of your womb, the offspring of your livestock, and the produce of your land—in the land that the LORD swore to your fathers to give 12 you. The LORD will open the heavens, His abundant storehouse, to send rain on your land in season and to bless all the work of your hands. You will 13 lend to many nations, but borrow from none. 14 The LORD will make you the head and not the tail; you will only move upward and never down- ward, if you hear and carefully follow the com- mandments of the LORD your God, which I am Do not turn aside to the right giving you today. or to the left from any of the words I command you today, and do not go after other gods to serve The Curses of Disobedience them." + }, + { + "verseNum": 24, + "text": "24 The LORD will turn the rain of your land into dust and powder; it will descend on you from the 25 sky until you are destroyed. 26 The LORD will cause you to be defeated before your enemies. You will march out against them in one direction but flee from them in seven. You will be an object of horror to all the kingdoms of the earth. Your corpses will be food for all the birds of the air and beasts of the earth, with no 27 one to scare them away. The LORD will afflict you with the boils of Egypt, with tumors and scabs and itch from 28 which you cannot be cured. 29 The LORD will afflict you with madness, blind- ness, and confusion of mind, and at noon you will grope about like a blind man in the darkness. You will not prosper in your ways. Day after day you will be oppressed and plundered, with no 30 one to save you. 31 You will be pledged in marriage to a woman, but another man will violate her. You will build a house but will not live in it. You will plant a vine- yard but will not enjoy its fruit. Your ox will be slaughtered before your eyes, but you will not eat any of it. Your donkey will be taken away and not returned to you. Your flock will be given to your 32 enemies, and no one will save you. 33 Your sons and daughters will be given to an- other nation, while your eyes grow weary look- ing for them day after day, with no power in your hand. A people you do not know will eat the produce of your land and of all your toil. All your days you will be oppressed and crushed" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 4, + "text": ", Isaiah 874 |" + }, + { + "verseNum": 17, + "text": "| 191 a 57 The most gentle and refined woman among you, so gentle and refined she would not venture to set the sole of her foot on the ground, will be- grudge the husband she embraces and her son the afterbirth that comes from and daughter between her legs and the children she bears, because she will secretly eat them for lack of anything else in the siege and distress that your 58 enemy will inflict on you within your gates. If you are not careful to observe all the words of this law which are written in this book, that 59 you may fear this glorious and awesome name— He will bring upon you the LORD your God— and your descendants extraordinary disasters, severe and lasting plagues, and terrible and He will afflict you again chronic sicknesses. with all the diseases you dreaded in Egypt, and 61 they will cling to you. 60 62 The LORD will also bring upon you every sick- ness and plague not recorded in this Book of the You who were as Law, until you are destroyed. numerous as the stars in the sky will be left few in number, because you would not obey the voice 63 of the LORD your God. Just as it pleased the LORD to make you pros- per and multiply, so also it will please Him to annihilate you and destroy you. And you will be uprooted from the land you are entering to 64 possess. 65 Then the LORD will scatter you among all the nations, from one end of the earth to the other, and there you will worship other gods, gods of wood and stone, which neither you nor your fa- Among those n" + }, + { + "verseNum": 18, + "text": "18 a 19 Make sure there is no man or woman, clan or tribe among you today whose heart turns away from the LORD our God to go and worship the gods of those nations. Make sure there is no root among you that bears such poisonous and bitter fruit, because when such a person hears the words of this oath, he invokes a blessing on him- self, saying, ‘I will have peace, even though I walk in the stubbornness of my own heart.’ 20 b This will bring disaster on the watered land as well as the dry. The LORD will never be will- ing to forgive him. Instead, His anger and jeal- ousy will burn against that man, and every curse written in this book will fall upon him. The LORD will blot out his name from under heaven and single him out from all the tribes of Israel for dis- aster, according to all the curses of the covenant 22 written in this Book of the Law. 21 23 Then the generation to come—your sons who follow you and the foreigner who comes from a distant land—will see the plagues of the land and All the sicknesses the LORD has inflicted on it. its soil will be a burning waste of sulfur and salt, unsown and unproductive, with no plant grow- ing on it, just like the destruction of Sodom and Gomorrah, Admah and Zeboiim, which the LORD 24 overthrew in His fierce anger. So all the nations will ask, ‘Why has the LORD done such a thing to this land? Why this great 25 outburst of anger?’ 26 And the people will answer, ‘It is because they abandoned the covenant of the LORD, the God of their fath" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–10) 10 1 These are the words of Nehemiah son of Hacaliah: a 2 in the twentieth year, In the month of Chislev, Hanani, one while I was in the citadel of Susa, of my brothers, arrived with men from Judah. So I questioned them about the remnant of the Jews who had survived the exile, and also about 3 Jerusalem. And they told me, “The remnant who survived the exile are there in the province, in great trou- ble and disgrace. The wall of Jerusalem is broken 4 down, and its gates have been burned with fire.” When I heard these words, I sat down and wept. I mourned for days, fasting and praying before 5 the God of heaven. Then I said: b “O LORD, God of heaven, the great and awe- some God who keeps His covenant of loving 6 with those who love Him and keep devotion His commandments, let Your eyes be open and Your ears attentive to hear the prayer that I, Your servant, now pray before You day and night for Your servants, the Israelites. 7 I confess the sins that we Israelites have committed against You. Both I and my fa- ther’s house have sinned. We have behaved corruptly against You and have not kept the commandments, statutes, and ordinances 8 that You gave Your servant Moses. e 11 They are Your servants and Your people. You redeemed them by Your great power O Lord, may Your ear be and mighty hand. attentive to my prayer and to the prayers of who delight to revere Your Your servants name. Give Your servant success this day, I pray, and grant him mercy in the sight of this man.” Nehem" + }, + { + "verseNum": 12, + "text": "" + }, + { + "verseNum": 13, + "text": ". j 20 Literally k 21 b 7 see, The Ingrafting of the Gentiles and their backs be bent forever.” 11 q I ask then, did they stumble so as to fall Certainly not! However, be- beyond recovery? cause of their trespass, salvation has come to the But if their Gentiles to make Israel jealous. trespass means riches for the world, and their How beautiful are the feet of those who bring good news d 11 12 c 8 n 6 onomy 32:21 (see also LXX)" + }, + { + "verseNum": 14, + "text": "g 16 ; BYZ and TR h 18 l 3 failure means riches for the Gentiles, how much 13 greater riches will their fullness bring! 15 14 I am speaking to you Gentiles. Inasmuch as I am the apostle to the Gentiles, I magnify my min- in the hope that I may provoke my own istry people to jealousy and save some of them. For if their rejection is the reconciliation of the world, what will their acceptance be but life from If the first part of the dough is holy, the dead? so is the whole batch; if the root is holy, so are 17 the branches. 16 18 Now if some branches have been broken off, and you, a wild olive shoot, have been grafted in among the others to share in the nourishment do not boast over those of the olive root, branches. If you do, remember this: You do not 19 support the root, but the root supports you. 20 You will say then, “Branches were broken off so that I could be grafted in.” That is correct: They were broken off because of unbelief, but you stand by faith. Do not be arrogant, but be For if God did not spare the natural afraid. 22 branches, He will certainly not spare you either. 21 a 23 Take notice, therefore, of the kindness and severity of God: severity to those who fell, but kindness to you, if you continue in His kindness. And if they Otherwise you also will be cut off. 24 do not persist in unbelief, they will be grafted in, For if you for God is able to graft them in again. were cut from a wild olive tree, and contrary to nature were grafted into one that is cultivated" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 6, + "text": ", 8;" + }, + { + "verseNum": 9, + "text": "–13) elites had settled in their towns. 8 At that time all the people gathered together in the square before the Water Gate, and they asked Ezra the scribe to bring out the Book of the Law of Moses, which the LORD had com- 2 manded for Israel. 3 On the first day of the seventh month, Ezra the priest brought the Law before the assembly of men and women and all who could listen and un- So Ezra read it aloud from daybreak derstand. until noon as he faced the square before the Water Gate, in front of the men and women and those who could understand. And all the people listened attentively to the 4 Book of the Law. Ezra the scribe stood on a high wooden platform built for this occasion. At his right side stood Mattithiah, Shema, Anaiah, Uriah, Hilkiah, and Maaseiah, and at his left were Pedaiah, Mis- hael, Malchijah, Hashum, Hash-baddanah, Zecha- 5 riah, and Meshullam. 8 Jozabad, Hanan, and Pelaiah— Azariah, instructed the people in the Law as they stood in So they read from the Book of the their places. Law of God, explaining it and giving insight, so that the people could understand what was being 9 read. e Nehemiah the governor, Ezra the priest and scribe, and the Levites who were instructing the people said to all of them, “This day is holy to the LORD your God. Do not mourn or weep.” For all the people were weeping as they heard 10 the words of the Law. Then Nehemiah told them, “Go and eat what is rich, drink what is sweet, and send out portions to those who have nothing prep" + }, + { + "verseNum": 21, + "text": "| 193 10 c 11 Then Moses commanded them, “At the end of every seven years, at the appointed time in the year of remission of debt, during the Feast of when all Israel comes before the Tabernacles, LORD your God at the place He will choose, you 12 are to read this law in the hearing of all Israel. 13 Assemble the people—men, women, children, and the foreigners within your gates—so that they may listen and learn to fear the LORD your God and to follow carefully all the words of this Then their children who do not know the law. law will listen and learn to fear the LORD your God, as long as you live in the land that you are God Commissions Joshua crossing the Jordan to possess.” 14 Then the LORD said to Moses, “Behold, the time of your death is near. Call Joshua and pre- sent yourselves at the Tent of Meeting, so that I may commission him.” 15 So Moses and Joshua went and presented them- Then the LORD selves at the Tent of Meeting. appeared at the tent in a pillar of cloud, and the 16 cloud stood over the entrance to the tent. And the LORD said to Moses, “You will soon rest with your fathers, and these people will rise up and prostitute themselves with the foreign gods of the land they are entering. They will for- sake Me and break the covenant I have made 17 with them. On that day My anger will burn against them, and I will abandon them and hide My face from them, so that they will be consumed, and many troubles and afflictions will befall them. On that day they will say, ‘Have" + }, + { + "verseNum": 22, + "text": "testify against them, because it will not be forgot- ten from the lips of their descendants. For I know their inclination, even before I bring them into 22 the land that I swore to give them.” So that very day Moses wrote down this song 23 and taught it to the Israelites. Then the LORD commissioned Joshua son of Nun and said, “Be strong and courageous, for you will bring the Israelites into the land that I swore The Law Placed in the Ark to give them, and I will be with you.” 24 25 26 When Moses had finished writing in a book the he words of this law from beginning to end, gave this command to the Levites who carried “Take this the ark of the covenant of the LORD: Book of the Law and place it beside the ark of the covenant of the LORD your God, so that it may re- For I main there as a witness against you. know how rebellious and stiff-necked you are. If you are already rebelling against the LORD while I am still alive, how much more will you rebel 28 after my death! 27 29 Assemble before me all the elders of your tribes and all your officers so that I may speak these words in their hearing and call heaven and earth to witness against them. For I know that after my death you will become utterly corrupt and turn from the path I have commanded you. And in the days to come, disaster will befall you because you will do evil in the sight of the LORD to provoke Him to anger by the work of your Moses Begins His Song hands.” 30 Then Moses recited aloud to the whole assem- bly of Israe" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–47) e 15 Then I saw another great and marvelous sign in heaven: seven angels with the seven final plagues, with which the wrath of God 2 is completed. And I saw something like a sea of glass mixed with fire, beside which stood those who had con- quered the beast and its image and the number 3 of its name. They were holding harps from God, and they sang the song of God’s servant Moses and of the Lamb: “Great and wonderful are Your works, Here is a call for the perseverance of the saints, who keep the commandments of God and the a 18 faith of Jesus. d 14 f 3 616 one like a son of man King of the saints King of the ages TR includes b 5 before the throne of God e 20 1,600 stadia O Lord God Almighty! f Just and true are Your ways, O King of the nations! . c 8 Some manuscripts Or ; see" + }, + { + "verseNum": 5, + "text": "But even if I am being poured out like a drink offering on the sacrifice and service of your faith, So you too I am glad and rejoice with all of you. Timothy and Epaphroditus (1 Cor. 16:10–12) should be glad and rejoice with me. 19 18 22 20 Now I hope in the Lord Jesus to send Timothy to you soon, that I also may be cheered when I learn how you are doing. I have nobody else 21 like him who will genuinely care for your needs. For all the others look after their own inter- But you know ests, not those of Jesus Christ. Timothy’s proven worth, that as a child with his father he has served with me to advance the gos- So I hope to send him as soon as I see what pel. And I trust in the Lord that I happens with me. 25 myself will come soon. 24 23 27 But I thought it necessary to send back to you Epaphroditus, my brother, fellow worker, and 26 fellow soldier, who is also your messenger and For he has been longing minister to my needs. for all of you and is distressed because you heard He was sick indeed, nearly unto he was ill. death. But God had mercy on him, and not only on him but also on me, to spare me sorrow upon 28 sorrow. 29 Therefore I am all the more eager to send him, so that when you see him again you may rejoice, Welcome him in the and I may be less anxious. 30 Lord with great joy, and honor men like him, because he nearly died for the work of Christ, risking his life to make up for your deficit of ser- Righteousness through Faith in Christ vice to me." + }, + { + "verseNum": 8, + "text": ";" + }, + { + "verseNum": 35, + "text": "(see also LXX)" + }, + { + "verseNum": 36, + "text": ";" + }, + { + "verseNum": 42, + "text": "| 195 to newly arrived gods, 18 which your fathers did not fear. 19 You ignored the Rock who brought you forth; you forgot the God who gave you birth. When the LORD saw this, He rejected them, 20 provoked to anger by His sons and daughters. He said: “I will hide My face from them; I will see what will be their end. For they are a perverse generation— 21 children of unfaithfulness. They have provoked My jealousy by that which is not God; they have enraged Me with their a worthless idols. So I will make them jealous by those who are not a people; b 22 I will make them angry by a nation without understanding. For a fire has been kindled by My anger, and it burns to the depths of Sheol; it consumes the earth and its produce, and scorches the foundations of the 23 mountains. I will heap disasters upon them; 24 I will spend My arrows against them. They will be wasted from hunger and ravaged by pestilence and bitter plague; I will send the fangs of wild beasts against them, 25 with the venom of vipers that slither in the dust. Outside, the sword will take their children, and inside, terror will strike 26 the young man and the young woman, the infant and the gray-haired man. I would have said that I would cut them to 27 pieces and blot out their memory from mankind, if I had not dreaded the taunt of the enemy, lest their adversaries misunderstand and say: ‘Our own hand has prevailed; 28 it was not the LORD who did all this.’ ” Israel is a nation devoid of counsel, they would comprehe" + }, + { + "verseNum": 43, + "text": "43 a Rejoice, O heavens, with Him, b and let all God’s angels worship Him. Rejoice, O nations, with His people; c for He will avenge the blood of His children. d h 4 and they sit down at Your feet; each receives Your words— 5 the law that Moses gave us, i the possession of the assembly of Jacob. So the LORD became King in Jeshurun He will take vengeance on His adversaries 6 and repay those who hate Him; 44 He will cleanse His land and His people. e 45 47 son of Nun and Then Moses came with Joshua recited all the words of this song in the hearing 46 of the people. When Moses had finished recit- ing all these words to all Israel, he said to them, “Take to heart all the words I have solemnly de- clared to you this day, so that you may command your children to carefully follow all the words of this law. For they are not idle words to you, be- cause they are your life, and by them you will live long in the land that you are crossing the Jordan Moses’ Death Foretold to possess.” 48 49 On that same day the LORD said to Moses, “Go up into the Abarim Range to Mount Nebo, in the land of Moab across from Jericho, and view the land of Canaan, which I am giving to the Isra- 50 elites as their own possession. And there on the mountain that you climb, you will die and be gathered to your people, just as your brother Aaron died on Mount Hor and was 51 gathered to his people. For at the waters of Meribah-kadesh in the Wilderness of Zin, both of you broke faith with 52 Me among the Israelites" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 12, + "text": "| 197 16 with the choice gifts of the land and and underneath are the everlasting arms. everything in it, 28 He drives out the enemy before you, and with the favor of Him who dwelt in giving the command, ‘Destroy him!’ the burning bush. So Israel dwells securely; May these rest on the head of Joseph the fountain of Jacob lives untroubled 17 and crown the brow of the prince of his 29 in a land of grain and new wine, brothers. where even the heavens drip with dew. His majesty is like a firstborn bull, Blessed are you, O Israel! and his horns are like those of a wild ox. Who is like you, a people saved by the With them he will gore the nations, even to the ends of the earth. Such are the myriads of Ephraim, 18 and such are the thousands of Manasseh.” Concerning Zebulun he said: “Rejoice, Zebulun, in your journeys, 19 and Issachar, in your tents. They will call the peoples to a mountain; there they will offer sacrifices of righteousness. For they will feast on the abundance of 20 the seas and the hidden treasures of the sand.” Concerning Gad he said: “Blessed is he who enlarges the domain of Gad! He lies down like a lion 21 and tears off an arm or a head. He chose the best land for himself, because a ruler’s portion was reserved for him there. He came with the leaders of the people; he administered the LORD’s justice and His ordinances for Israel.” 22 Concerning Dan he said: “Dan is a lion’s cub, 23 leaping out of Bashan.” Concerning Naphtali he said: “Naphtali is abounding with" + } + ] + } + ] + }, + { + "name": "Joshua", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–9) great work that the LORD has done. 8 You shall therefore keep every commandment I am giving you today, so that you may have the strength to go in and possess the land that you and so that are crossing the Jordan to possess, you may live long in the land that the LORD swore to your fathers to give them and their de- 10 scendants, a land flowing with milk and honey. 9 11 For the land that you are entering to possess is not like the land of Egypt, from which you have come, where you sowed your seed and irrigated But the land on foot, like a vegetable garden. that you are crossing the Jordan to possess is a land of mountains and valleys that drinks in the It is a land for which the rain from heaven. LORD your God cares; the eyes of the LORD your God are always on it, from the beginning to the 13 end of the year. 12 then I will provide rain for your your soul, land in season, the autumn and spring rains, that 15 you may gather your grain, new wine, and oil. And I will provide grass in the fields for your 16 livestock, and you will eat and be satisfied. But be careful that you are not enticed to turn 17 aside to worship and bow down to other gods, or the anger of the LORD will be kindled against you. He will shut the heavens so that there will be no rain, nor will the land yield its produce, and you will soon perish from the good Remember God’s Words land that the LORD is giving you. 18 19 Fix these words of mine in your hearts and minds; tie them as reminders on your hands and" + }, + { + "verseNum": 5, + "text": "BYZ and TR include" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 10, + "text": "| 199 So the king’s men set out in pursuit of the spies along the road to the fords of the Jordan, and as The Promise to Rahab soon as they had gone out, the gate was shut. 8 9 a 10 Before the spies lay down for the night, Rahab and said to them, “I know went up on the roof that the LORD has given you this land and that the fear of you has fallen on us, so that all who For dwell in the land are melting in fear of you. we have heard how the LORD dried up the wa- ters of the Red Sea before you when you came out of Egypt, and what you did to Sihon and Og, b the two kings of the Amorites across the Jordan, When we whom you devoted to destruction. heard this, our hearts melted and everyone’s courage failed because of you, for the LORD your God is God in the heavens above and on the earth 12 below. 11 13 Now therefore, please swear to me by the LORD that you will indeed show kindness to my family, because I showed kindness to you. Give that you will spare the lives of me a sure sign my father and mother, my brothers and sisters, and all who belong to them, and that you will de- 14 liver us from death.” “Our lives for your lives!” the men agreed. “If you do not report our mission, we will show you kindness and faithfulness when the LORD gives 15 us the land.” 16 Then Rahab let them down by a rope through the window, since the house where she lived was “Go to the hill built into the wall of the city. country,” she said, “so that your pursuers will not find you. Hide yourselves there" + }, + { + "verseNum": 11, + "text": "11 8 Behold, the ark of the covenant of Jebusites. the Lord of all the earth will go ahead of you into 12 the Jordan. 13 Now choose twelve men from the tribes of Is- rael, one from each tribe. When the feet of the priests who carry the ark of the LORD—the Lord of all the earth—touch down in the waters of the Jordan, its flowing waters will be cut off and will 14 stand up in a heap.” So when the people broke camp to cross the Jordan, the priests carried the ark of the cove- 15 nant ahead of them. a 16 Now the Jordan overflows its banks through- out the harvest season. But as soon as the priests carrying the ark reached the Jordan and their the flowing wa- feet touched the water’s edge, ter stood still. It backed up as far upstream as Adam, a city in the area of Zarethan, while the water flowing toward the Sea of the Arabah (the ) was completely cut off. So the people Salt Sea The priests car- crossed over opposite Jericho. rying the ark of the covenant of the LORD stood firm on dry ground in the middle of the Jordan, while all Israel crossed over the dry ground, until Twelve Stones from the Jordan the entire nation had crossed the Jordan. 17 4 2 3 When the whole nation had finished cross- ing the Jordan, the LORD said to Joshua, “Choose twelve men from among the people, and command them: ‘Take one from each tribe, up for yourselves twelve stones from the middle of the Jordan where the priests were standing, carry them with you, and set them down in the 4 place where you spend" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 8, + "text": "| 201 24 which He dried up just as He did to the Red Sea, He did before us until we had crossed over. this so that all the peoples of the earth may know that the hand of the LORD is mighty, and so that The Circumcision and Passover at Gilgal you may always fear the LORD your God.” 5 Now when all the Amorite kings west of the b Jordan and all the Canaanite kings along the heard how the LORD had dried up the wa- coast ters of the Jordan before the Israelites until they their hearts melted and their had crossed over, 2 spirits failed for fear of the Israelites. c d 3 At that time the LORD said to Joshua, “Make flint knives and circumcise the sons of Israel once again. So Joshua made flint knives and circum- 4 cised the sons of Israel at Gibeath-haaraloth. ” e 5 Now this is why Joshua circumcised them: All those who came out of Egypt—all the men of war—had died on the journey in the wilderness Though all who had after they had left Egypt. come out were circumcised, none of those born in the wilderness on the journey from Egypt had 6 been circumcised. 7 For the Israelites had wandered in the wilder- ness forty years, until all the nation’s men of war who had come out of Egypt had died, since they did not obey the LORD. So the LORD vowed never to let them see the land He had sworn to their fathers to give us, a land flowing with milk and And He raised up their sons in their honey. place, and these were the ones Joshua circum- cised. Until this time they were still uncircum- cised," + }, + { + "verseNum": 9, + "text": "9 of the covenant of the LORD followed them. While the horns continued to sound, the armed troops marched ahead of the priests who blew 10 the horns, and the rear guard followed the ark. But Joshua had commanded the people: “Do not give a battle cry or let your voice be heard; do not let one word come out of your mouth until 11 the day I tell you to shout. Then you are to shout!” So he had the ark of the LORD carried around the city, circling it once. And the people returned 12 to the camp and spent the night there. 13 Joshua got up early the next morning, and the priests took the ark of the LORD. And the seven priests carrying seven rams’ horns kept march- ing ahead of the ark of the LORD and blowing the horns. The armed troops went in front of them and the rear guard followed the ark of the LORD, while the horns kept sounding. So on the sec- ond day they marched around the city once and 15 returned to the camp. They did this for six days. 14 a Then on the seventh day, they got up at dawn and marched around the city seven times in the 16 same manner. That was the only day they circled the city seven times. After the seventh time around, the priests blew the horns, and Joshua 17 commanded the people, “Shout! For the LORD has given you the city! Now the city and every- thing in it must be devoted to the LORD for destruction. Only Rahab the prostitute and all those with her in her house will live, because she hid the spies we sent. But keep away from the things devoted to destr" + }, + { + "verseNum": 26, + "text": ". b 1 Literally 14 out to me. Afterward, make some for yourself for this is what the LORD, the and your son, God of Israel, says: ‘The jar of flour will not be ex- hausted and the jug of oil will not run dry until the day the LORD sends rain upon the face of the 15 earth.’ ” 16 So she went and did according to the word of Elijah, and there was food every day for Elijah The jar of and the woman and her household. flour was not exhausted and the jug of oil did not run dry, according to the word that the LORD had Elijah Raises the Widow’s Son spoken through Elijah. 17 18 Later, the son of the woman who owned the house became ill, and his sickness grew worse “O and worse, until no breath remained in him. man of God,” said the woman to Elijah, “what have you done to me? Have you come to remind me of my iniquity and cause the death of my 19 son?” But Elijah said to her, “Give me your son.” 20 So he took him from her arms, carried him to the upper room where he was staying, and laid him Then he cried out to the LORD, on his own bed. “O LORD my God, have You also brought tragedy on this widow who has opened her home to me, Then he stretched by causing her son to die?” himself out over the child three times and cried out to the LORD, “O LORD my God, please let this 22 boy’s life return to him!” 21 And the LORD listened to the voice of Elijah, 23 and the child’s life returned to him, and he lived. Then Elijah took the child, brought him down from the upper room into the house, and gave" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": ". Most Hebrew manuscripts; many Hebrew Chelubai n 7 Achar Zabdi Caleb sons m 7 o 9 Or LXX (see also" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 2, + "text": "| 203 18 of Judah come forward, and the clan of the Zerahites was selected. He had the clan of the Zerahites come forward, and the family of Zabdi was selected. And he had the family of Zabdi come forward man by man, and Achan son of Carmi, the son of Zabdi, the son of Zerah, of the 19 tribe of Judah, was selected. So Joshua said to Achan, “My son, give glory to the LORD, the God of Israel, and make a confes- sion to Him. I urge you to tell me what you have 20 done; do not hide it from me.” a 21 “It is true,” Achan replied, “I have sinned against the LORD, the God of Israel. This is what I did: When I saw among the spoils a beautiful b cloak from Shinar, two hundred shekels of sil- I and a bar of gold weighing fifty shekels, ver, coveted them and took them. They are hidden in the ground inside my tent, with the silver under- 22 neath.” c 23 So Joshua sent messengers who ran to the tent, and there it all was, hidden in his tent, with the silver underneath. They took the things from inside the tent, brought them to Joshua and all the Israelites, and spread them out before the 24 LORD. Then Joshua, together with all Israel, took Achan son of Zerah, the silver, the cloak, the bar of gold, his sons and daughters, his oxen and don- keys and sheep, his tent, and everything else he 25 owned, and brought them to the Valley of Achor. 26 “Why have you brought this trouble upon us?” said Joshua. “Today the LORD will bring trouble upon you!” And all Israel stoned him to death. Then they s" + }, + { + "verseNum": 3, + "text": "3 6 4 5 So Joshua and the whole army set out to attack Ai. Joshua chose 30,000 mighty men of with these or- valor and sent them out at night ders: “Pay attention. You are to lie in ambush be- hind the city, not too far from it. All of you must be ready. Then I and all the troops with me will advance on the city. When they come out against us as they did the first time, we will flee from They will pursue us until we have drawn them. them away from the city, for they will say, ‘The Israelites are running away from us as they did before.’ So as we flee from them, you are to rise from the ambush and seize the city, for the LORD And your God will deliver it into your hand. when you have taken the city, set it on fire. Do as the LORD has commanded! See, I have given you 9 orders.” 8 7 So Joshua sent them out, and they went to the place of ambush and lay in wait between Bethel and Ai, to the west of Ai. But Joshua spent that 10 night among the people. 11 Joshua got up early the next morning and mo- bilized his men, and he and the elders of Israel Then all the marched before them up to Ai. troops who were with him marched up and approached the city. They arrived in front of Ai and camped to the north of it, with the valley 12 between them and the city. 13 Now Joshua had taken about five thousand men and set up an ambush between Bethel and Ai, to the west of the city. So the forces were stationed with the main camp to the north of the city and the rear guard to the west of the city. 1" + }, + { + "verseNum": 30, + "text": "–35) LORD your God, as He has promised. 27 Then Moses and the elders of Israel com- manded the people: “Keep all the com- 2 mandments I am giving you today. 3 And on the day you cross the Jordan into the land that the LORD your God is giving you, set up large stones and coat them with plaster. Write on them all the words of this law when you have crossed over to enter the land that the LORD your God is giving you, a land flowing with milk and honey, just as the LORD, the God of your fa- And when you have thers, has promised you. crossed the Jordan, you are to set up these stones on Mount Ebal, as I am commanding you today, 5 and you are to coat them with plaster. 4 Moreover, you are to build there an altar to the LORD your God, an altar of stones. You must not uncovered his father’s skirt a 20 You shall build the use any iron tool on them. 6 Or 7 altar of the LORD your God with uncut stones and offer upon it burnt offerings to the LORD your There you are to sacrifice your peace offer- God. ings, eating them and rejoicing in the presence of the LORD your God. And you shall write dis- tinctly upon these stones all the words of this 9 law.” 8 10 Then Moses and the Levitical priests spoke to all Israel: “Be silent, O Israel, and listen! This day you have become the people of the You shall therefore obey the LORD your God. voice of the LORD your God and follow His com- Curses Pronounced from Ebal mandments and statutes I am giving you today.” 11 12 On that day Moses commanded the" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 24, + "text": "| 205 32 33 And there in the presence of the Israelites, Joshua inscribed on the stones a copy of the law All Israel, for- of Moses, which he had written. eigners and citizens alike, with their elders, officers, and judges, stood on both sides of the ark of the covenant of the LORD facing the Levit- ical priests who carried it. Half of the people stood in front of Mount Gerizim and half of them in front of Mount Ebal, as Moses the servant of the LORD had commanded earlier, to bless the 34 people of Israel. 35 Afterward, Joshua read aloud all the words of the law—the blessings and the curses— according to all that is written in the Book of the There was not a word of all that Moses Law. had commanded that Joshua failed to read before the whole assembly of Israel, including the women, the little ones, and the foreigners who The Deceit of the Gibeonites lived among them. 11 He did to the two kings of the Amorites beyond the Jordan—Sihon king of Heshbon and Og king So the el- of Bashan, who reigned in Ashtaroth. ders and inhabitants of our land told us, ‘Take provisions for your journey; go to meet them and say to them: We are your servants. Please make 12 a treaty with us.’ 13 This bread of ours was warm when we packed it at home on the day we left to come to you. But These wineskins look, it is now dry and moldy. were new when we filled them, but look, they are cracked. And these clothes and sandals are worn 14 out from our very long journey.” Then the men of Israel sampled the" + }, + { + "verseNum": 25, + "text": "25 Now we are and that is why we have done this. in your hands. Do to us whatever seems good and 26 right to you.” 27 So Joshua did this and delivered them from the hands of the Israelites, and they did not kill the On that day he made them wood- Gibeonites. cutters and water carriers, as they are to this day for the congregation of the LORD and for the al- The Day the Sun Stood Still tar at the place He would choose. 10 a Now Adoni-zedek king of Jerusalem heard that Joshua had captured Ai and —doing to Ai and its devoted it to destruction king as he had done to Jericho and its king—and 2 that the people of Gibeon had made peace with So Adoni- Israel and were living near them. zedek and his people were greatly alarmed, be- cause Gibeon was a great city, like one of the royal cities; it was larger than Ai, and all its men 3 were mighty. 4 Therefore Adoni-zedek king of Jerusalem sent word to Hoham king of Hebron, Piram king of Jarmuth, Japhia king of Lachish, and Debir king of “Come up and help me. We will Eglon, saying, attack Gibeon, because they have made peace 5 with Joshua and the Israelites.” So the five kings of the Amorites—the kings of Jerusalem, Hebron, Jarmuth, Lachish, and Eglon—joined forces and advanced with all their armies. They camped before Gibeon and made 6 war against it. Then the men of Gibeon sent word to Joshua in the camp at Gilgal: “Do not abandon your serv- ants. Come quickly and save us! Help us, because all the kings of the Amorites from the hill cou" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 2, + "text": ". Hebrew; LXX 210 |" + }, + { + "verseNum": 6, + "text": "| 207 When they had brought the kings to Joshua, he summoned all the men of Israel and said to the army commanders who had accompanied him, “Come here and put your feet on the necks of these kings.” So the commanders came forward and put their 25 feet on their necks. “Do not be afraid or discouraged,” Joshua said. “Be strong and courageous, for the LORD will do 26 this to all the enemies you fight.” a 27 After this, Joshua struck down and killed the and kings, and he hung their bodies on five trees At sunset Joshua left them there until evening. ordered that they be taken down from the trees and thrown into the cave in which they had hid- den. Then large stones were placed against the mouth of the cave, and the stones are there to 28 this day. On that day Joshua captured Makkedah and put it to the sword, along with its king. He de- voted to destruction everyone in the city, leaving no survivors. So he did to the king of Makkedah Conquest of the Southern Cities as he had done to the king of Jericho. 29 30 Then Joshua and all Israel with him moved on from Makkedah to Libnah and fought against And the LORD also delivered that city Libnah. and its king into the hand of Israel, and Joshua put all the people to the sword, leaving no survi- vors. And he did to the king of Libnah as he had 31 done to the king of Jericho. 32 And Joshua and all Israel with him moved on from Libnah to Lachish. They laid siege to it and And the LORD delivered fought against it. Lachish into the hand of I" + }, + { + "verseNum": 7, + "text": "7 21 8 So by the waters of Merom, Joshua and his whole army came upon them suddenly and at- tacked them, and the LORD delivered them into the hand of Israel, who struck them down and pursued them all the way to Greater Sidon and Misrephoth-maim, and eastward as far as the Valley of Mizpeh. They struck them down, leav- ing no survivors. Joshua treated them as the LORD had told him; he hamstrung their horses 10 and burned up their chariots. 9 11 At that time Joshua turned back and captured Hazor and put its king to the sword, because Hazor was formerly the head of all these king- doms. The Israelites put everyone in Hazor to the sword, devoting them to destruction. Noth- ing that breathed remained, and Joshua burned 12 down Hazor itself. a 13 Joshua captured all these kings and their cities and put them to the sword. He devoted them to destruction, as Moses the LORD’s servant had commanded. Yet Israel did not burn any of the cities built on their mounds, except Hazor, which 14 Joshua burned. 15 The Israelites took for themselves all the plun- der and livestock of these cities, but they put all the people to the sword until they had com- pletely destroyed them, not sparing anyone who breathed. As the LORD had commanded His servant Moses, so Moses commanded Joshua. That is what Joshua did, leaving nothing undone Joshua Takes the Whole Land of all that the LORD had commanded Moses. 16 17 So Joshua took this entire region: the hill coun- try, all the Negev, all the land of Goshen," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 23, + "text": ". 208 |" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–7) 1 After the death of Joshua, the Israelites in- quired of the LORD, “Who will be the first to 2 go up and fight for us against the Canaanites?” “Judah shall go up,” answered the LORD. “In- 3 deed, I have delivered the land into their hands.” Then the men of Judah said to their brothers the Simeonites, “Come up with us to our allotted territory, and let us fight against the Canaanites. And we likewise will go with you to your terri- 4 tory.” So the Simeonites went with them. When Judah attacked, the LORD delivered the Canaanites and Perizzites into their hands, and 5 they struck down ten thousand men at Bezek. And there they found Adoni-bezek and fought against him, striking down the Canaanites and 6 Perizzites. 7 As Adoni-bezek fled, they pursued him, seized him, and cut off his thumbs and big toes. Then Adoni-bezek said, “Seventy kings with their thumbs and big toes cut off have gathered the scraps under my table. As I have done to them, so God has repaid me.” And they brought him to Je- The Capture of Jerusalem and Hebron rusalem, where he died." + }, + { + "verseNum": 8, + "text": "–14) 32 3 2 Now the Reubenites and Gadites, who had very large herds and flocks, sur- veyed the lands of Jazer and Gilead, and they saw So the that the region was suitable for livestock. Gadites and Reubenites came to Moses, Eleazar the priest, and the leaders of the congregation, “Ataroth, Dibon, Jazer, Nimrah, Hesh- and said, bon, Elealeh, Sebam, which the LORD conquered before the congregation of Israel, are suitable for livestock—and your serv- 5 ants have livestock.” Nebo, and Beon, 4 a “If we have found favor in your sight,” they said, “let this land be given to your servants as a pos- 6 session. Do not make us cross the Jordan.” But Moses asked the Gadites and Reubenites, 7 “Shall your brothers go to war while you sit here? Why are you discouraging the Israelites from crossing into the land that the LORD has given This is what your fathers did when I sent them? 9 them from Kadesh-barnea to inspect the land. 8 10 For when your fathers went up to the Valley of Eshcol and saw the land, they discouraged the Is- raelites from entering the land that the LORD had So the anger of the LORD was kin- given them. 11 dled that day, and He swore an oath, saying, ‘Because they did not follow Me wholeheart- edly, not one of the men twenty years of age or older who came out of Egypt will see the land 12 that I swore to give Abraham, Isaac, and Jacob— not one except Caleb son of Jephunneh the Kenizzite and Joshua son of Nun—because they The an- did follow the LORD wholeheartedly.’ ger o" + }, + { + "verseNum": 14, + "text": "| 209 the territory of Ekron on the north (consid- ered to be Canaanite territory)—that of the five Philistine rulers of Gaza, Ashdod, Ashkelon, Gath, and Ekron, as well as that of 4 the Avvites; c to the south, all the land of the Canaanites, of the Sidonians to Aphek, as from Mearah 5 far as the border of the Amorites; d the land of the Gebalites; and all Lebanon to the east, from Baal-gad below Mount Hermon to Lebo-hamath. 6 All the inhabitants of the hill country from Leb- anon to Misrephoth-maim—all the Sidonians—I Myself will drive out before the Israelites. Be sure to divide it by lot as an inheritance to Israel, Now therefore di- as I have commanded you. vide this land as an inheritance to the nine tribes The Inheritance East of the Jordan and the half-tribe of Manasseh.”" + }, + { + "verseNum": 15, + "text": "Reuben’s Inheritance 15 This is what Moses had given to the clans of the 16 tribe of Reuben: 17 19 20 18 The territory from Aroer on the rim of the Arnon Valley, along with the city in the middle of the valley, to the whole plateau to Heshbon and all its cit- beyond Medeba, ies on the plateau, including Dibon, Bamoth- Jahaz, Kedemoth, baal, Beth-baal-meon, Mephaath, Kiriathaim, Sibmah, Zereth- Beth-peor, shahar on the hill in the valley, 21 the slopes of Pisgah, and Beth-jeshimoth— all the cities of the plateau and all the king- dom of Sihon king of the Amorites, who reigned in Heshbon until Moses killed him and the chiefs of Midian (Evi, Rekem, Zur, Hur, and Reba), the princes of Sihon who 22 lived in the land. 23 The Israelites also killed the diviner Ba- laam son of Beor along with the others they And the border of the put to the sword. Reubenites was the bank of the Jordan. This was the inheritance of the clans of the Reu- Gad’s Inheritance benites, including the cities and villages. 24 This is what Moses had given to the clans of the 25 tribe of Gad: The territory of Jazer, all the cities of Gil- ead, and half the land of the Ammonites as 26 far as Aroer, near Rabbah; the territory from Heshbon to Ramath- mizpeh and Betonim, and from Mahanaim to 27 the border of Debir; a and in the valley, Beth-haram, Beth-nim- rah, Succoth, and Zaphon, with the rest of the kingdom of Sihon king of Heshbon (the terri- tory on the east side of the Jordan up to the edge of the Sea of Chinn" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 13, + "text": "–19) 8 9 Then the men of Judah fought against Jerusalem and captured it. They put the city to the sword Afterward, the men of Judah and set it on fire. marched down to fight against the Canaanites a living in the hill country, in the Negev, and in the 10 foothills. Judah also marched against the Canaanites who were living in Hebron (formerly known as Kiriath-arba), and they struck down Sheshai, 11 Ahiman, and Talmai. 12 From there they marched against the inhabitants of Debir (formerly known as lowlands a 9 And Caleb said, “To the man Kiriath-sepher). d 17 c 16 Shephelah cherem ; the western foothills of Judea e 17 Hormah Heb. or That is, Jericho Forms of the Heb. destroying or by giving as an offering. 13 who strikes down Kiriath-sepher and captures it, So I will give my daughter Acsah in marriage.” Othniel son of Caleb’s younger brother Kenaz captured the city, and Caleb gave his daughter b 14 Acsah to him in marriage. One day Acsah came to Othniel and urged him to ask her father for a field. When she got off her 15 donkey, Caleb asked her, “What do you desire?” “Give me a blessing,” she answered. “Since you have given me land in the Negev, give me springs of water as well.” So Caleb gave her both the upper and lower 16 springs. c Now the descendants of Moses’ father-in-law, the Kenite, went up with the men of Judah from to the Wilderness of Judah in the City of Palms the Negev near Arad. They went to live among 17 the people. f e d 19 18 So it was called Hormah. Then the m" + }, + { + "verseNum": 21, + "text": "| 211 9 10 slope of the Jebusites (that is, Jerusalem) and ascended to the top of the hill that faces the Valley of Hinnom on the west, at the north- ern end of the Valley of Rephaim. From the hilltop the border curved to the spring of the Waters of Nephtoah, proceeded to the cities of Mount Ephron, and then bent around to- ward Baalah (that is, Kiriath-jearim). The border curled westward from Baalah to Mount Seir, ran along the northern slope of Mount Jearim (that is, Chesalon), went down 11 to Beth-shemesh, and crossed to Timnah. Then it went out to the northern slope of Ekron, curved toward Shikkeron, proceeded to Mount Baalah, went on to Jabneel, and 12 ended at the Sea. And the western border was the coastline of the Great Sea. These are the boundaries around the clans of the Caleb’s Portion and Conquest" + }, + { + "verseNum": 22, + "text": "60 22 24 27 25 Kedesh, Hazor, Ithnan, of the tribe of Judah in the Negev toward the bor- der of Edom: 23 Kabzeel, Eder, Jagur, Adadah, Telem, Bealoth, hezron (that is, Hazor), 28 Moladah, 29 pelet, Baalah, 32 Hormah, Kinah, Dimonah, Ziph, 26 Hazor-hadattah, Kerioth- Amam, Shema, Hazar-gaddah, Heshmon, Beth- 30 Hazar-shual, Beersheba, Biziothiah, 31 Iim, Ezem, Eltolad, Chesil, Ziklag, Madmannah, Sansannah, Lebaoth, Shilhim, Ain, and Rimmon— twenty-nine cities in all, along with their villages. 33 a These were in the foothills: 34 35 36 Eshtaol, Zorah, Ashnah, Zanoah, Jarmuth, En-gannim, Tappuah, Enam, Shaaraim, Adullam, Socoh, Azekah, Adithaim, and Gederah (or Gederothaim)— 37 fourteen cities, along with their villages. 40 Mizpeh, Joktheel, 39 Zenan, Hadashah, Migdal-gad, Dilan, 41 Lachish, Bozkath, Eglon, Gederoth, Beth-dagon, Naamah, and Makkedah— 42 sixteen cities, along with their villages. Cabbon, Lahmas, Chitlish, 38 43 44 Libnah, Ether, Ashan, Iphtah, Ashnah, Keilah, Achzib, and Mareshah— Nezib, 45 nine cities, along with their villages. 46 47 Ekron, with its towns and villages; from Ekron to the sea, all the cities near Ashdod, Ashdod, with its along with their villages; towns and villages; Gaza, with its towns and villages, as far as the Brook of Egypt and the coastline of the Great Sea. 48 49 51 These were in the hill country: 50 Dannah, Kiriath-san- Anab, Eshtemoh, Goshen, Holon, and Giloh—eleven Shamir, Jattir, Socoh, nah (that is, Debir), Anim, 52 cities, along wi" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 2, + "text": ". 36 and the Tahanite clan from Tahan. And the descendants of Shuthelah were 37 the Eranite clan from Eran. These were the clans of Ephraim, and their registration numbered 32,500. The Tribe of Benjamin These clans were the descendants of Joseph. 38 These were the descendants of Benjamin by their clans: The Belaite clan from Bela, the Ashbelite clan from Ashbel, 39 the Ahiramite clan from Ahiram, a the Shuphamite clan from Shupham, 40 and the Huphamite clan from Hupham. b And the descendants of Bela from Ard and Naaman were the Ardite clan from Ard and the Naamite clan from Naaman. 41 These were the clans of Benjamin, and their The Tribe of Dan registration numbered 45,600. 42 These were the descendants of Dan by their clans: The Shuhamite clan from Shuham. 43 All of them were These were the clans of Dan. Shuhamite clans, and their registration num- The Tribe of Asher bered 64,400. 44 These were the descendants of Asher by their clans: The Imnite clan from Imnah, the Ishvite clan from Ishvi, 45 and the Beriite clan from Beriah. And these were the descendants of Beriah: the Heberite clan from Heber 46 and the Malchielite clan from Malchiel. And the name of Asher’s daughter was 47 Serah. These were the clans of Asher, and their regis- The Tribe of Naphtali tration numbered 53,400. 48 These were the descendants of Naphtali by their clans: a 39" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 8, + "text": "| 213 15 Joshua answered them, “If you have so many people that the hill country of Ephraim is too small for you, go to the forest and clear for your- self an area in the land of the Perizzites and the 16 Rephaim.” “The hill country is not enough for us,” they replied, “and all the Canaanites who live in the valley have iron chariots, both in Beth-shean 17 with its towns and in the Valley of Jezreel.” 18 So Joshua said to the house of Joseph—to Ephraim and Manasseh—“You have many peo- ple and great strength. You shall not have just because the hill country will be one allotment, yours as well. It is a forest; clear it, and its far- thest limits will be yours. Although the Canaan- ites have iron chariots and although they are The Remainder Divided strong, you can drive them out.” 18 Then the whole congregation of Israel assembled at Shiloh and set up the Tent 2 of Meeting there. And though the land was there were still seven subdued before them, tribes of Israel who had not yet received their 3 inheritance. 5 So Joshua said to the Israelites, “How long will you put off entering and possessing the land that 4 the LORD, the God of your fathers, has given you? Appoint three men from each tribe, and I will send them out to survey the land and map it out, according to the inheritance of each. Then they and divide the land into seven will return to me portions. Judah shall remain in their territory in the south, and the house of Joseph shall remain When you have in their territory i" + }, + { + "verseNum": 9, + "text": "9 So the men departed and went throughout the land, mapping it city by city into seven portions. Then they returned with the document to Joshua 10 at the camp in Shiloh. And Joshua cast lots for them in the presence of the LORD at Shiloh, where he distributed the Benjamin’s Inheritance land to the Israelites according to their divisions. 11 The first lot came up for the clans of the tribe of Benjamin. Their allotted territory lay between the tribes of Judah and Joseph: 12 13 On the north side their border began at the Jordan, went up past the northern slope of Jericho, headed west through the hill coun- try, and came out at the wilderness of Beth- From there the border crossed over aven. to the southern slope of Luz (that is, Bethel) and went down to Ataroth-addar on the hill 14 south of Lower Beth-horon. On the west side the border curved south- ward from the hill facing Beth-horon on the south and came out at Kiriath-baal (that is, Kiriath-jearim), a city of the sons of Judah. 15 This was the western side. 17 16 On the south side the border began at the outskirts of Kiriath-jearim and extended westward to the spring at the Waters of Then it went down to the foot Nephtoah. of the hill that faces the Valley of Ben- hinnom at the northern end of the Valley of Rephaim and ran down the Valley of Hinnom toward the southern slope of the Jebusites From there it and downward to En-rogel. curved northward and proceeded to En- shemesh and on to Geliloth facing the Ascent of Adummim, a" + }, + { + "verseNum": 13, + "text": "); Hebrew That is, the Mediterranean Sea, also called the Great Sea; also in verses 6 and 8 2 and Bashan because Machir was a man of war. a So this allotment was for the rest of the de- scendants of Manasseh—the clans of Abiezer, Helek, Asriel, Shechem, Hepher, and Shemida. These are the other male descendants of the 3 clans of Manasseh son of Joseph. 4 But Zelophehad son of Hepher (the son of Gil- ead, the son of Machir, the son of Manasseh) had no sons but only daughters. These are the names of his daughters: Mahlah, Noah, Hoglah, Milcah, and Tirzah. They approached Eleazar the priest, Joshua son of Nun, and the leaders, and said, “The LORD commanded Moses to give us an inher- itance among our brothers.” 5 6 So Joshua gave them an inheritance among their father’s brothers, in keeping with the command of the LORD. Thus ten shares fell to Manasseh, in addition to the land of Gilead and Bashan beyond the Jordan, because the daughters of Manasseh received an inheritance among his sons. And the land of Gilead belonged to the rest of the sons of Manasseh. 7 8 Now the border of Manasseh went from Asher to Michmethath near Shechem, then southward to include the inhabitants of En- The region of Tappuah belonged tappuah. to Manasseh, but Tappuah itself, on the bor- 9 der of Manasseh, belonged to Ephraim. From there the border continued south- ward to the Brook of Kanah. There were cities belonging to Ephraim among the cities of Manasseh, but the border of Manasseh was on the north si" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 50, + "text": "and" + }, + { + "verseNum": 51, + "text": "| 215 34 c 35 nekeb and Jabneel as far as Lakkum and end- Then the border turned ing at the Jordan. westward to Aznoth-tabor and ran from there to Hukkok, touching Zebulun on the south side, Asher on the west, and Judah at the Jordan The fortified cit- ies were Ziddim, Zer, Hammath, Rakkath, 37 Adamah, Ramah, Hazor, Chinnereth, Iron, Migdal-el, Horem, Beth-anath, and Beth-shemesh. There were nineteen cities, along with their villages. Kedesh, Edrei, En-hazor, on the east. 36 38 39 This was the inheritance of the clans of the tribe of Naphtali, including these cities and their Dan’s Inheritance villages. 40 The seventh lot came out for the clans of the 41 tribe of Dan: 42 43 Zorah, Eshtaol, Ir-shemesh, 44 Aijalon, Ithlah, The territory of their inheritance included Shaalabbin, Elon, Timnah, Ekron, Jehud, Me-jarkon, and Bene-berak, Gath-rimmon, Rakkon, including the territory across from Joppa. Eltekeh, Gibbethon, Baalath, 45 46 47 (Later, when the territory of the Danites was lost to them, they went up and fought against Leshem, captured it, and put it to the sword. So they took possession of Leshem, settled there, 48 and renamed it after their father Dan.) This was the inheritance of the clans of the tribe of Dan, including these cities and their vil- Joshua’s Inheritance lages. 49 50 When they had finished distributing the land into its territories, the Israelites gave Joshua son as the of Nun an inheritance among them, LORD had commanded. They gave him the city of in the hi" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "–9) 9 10 11 Then the LORD said to Moses, “Speak to the Israelites and tell them: When you cross the Jor- designate cities to dan into the land of Canaan, serve as your cities of refuge, so that a person who kills someone unintentionally may flee You are to have these cities as a refuge there. from the avenger, so that the manslayer will not 13 die until he stands trial before the assembly. 12 14 The cities you select will be your six cities of Select three cities across the Jordan refuge. 15 and three in the land of Canaan as cities of refuge. These six cities will serve as a refuge for the Is- raelites and for the foreigner or stranger among them, so that anyone who kills a person uninten- 16 tionally may flee there. 17 If, however, anyone strikes a person with an iron object and kills him, he is a murderer; the Or if an- murderer must surely be put to death. yone has in his hand a stone of deadly size, and he strikes and kills another, he is a murderer; the If any- murderer must surely be put to death. one has in his hand a deadly object of wood, and he strikes and kills another, he is a murderer; the b 5 2,000 cubits murderer must surely be put to death. 18 is approximately 1,500 feet or 457.2 meters. is approximately 3,000 feet or 914.4 meters. 19 The avenger of blood is to put the murderer to 20 death; when he finds him, he is to kill him. 21 Likewise, if anyone maliciously pushes an- other or intentionally throws an object at him and kills him, or if in hostility he str" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–45 ; 1 Chronicles 6:54–81) 35 Again the LORD spoke to Moses on the 2 plains of Moab by the Jordan across from “Command the Israelites to give, from a 4 1,000 cubits Jericho: 3 the inheritance they will possess, cities for the Levites to live in and pasturelands around the The cities will be for them to live in, and cities. the pasturelands will be for their herds, their 4 flocks, and all their other livestock. a The pasturelands around the cities you are to 5 give the Levites will extend a thousand cubits b You are also to from the wall on every side. measure two thousand cubits outside the city on the east, two thousand on the south, two thou- sand on the west, and two thousand on the north, with the city in the center. These areas will serve 6 as larger pasturelands for the cities. 7 Six of the cities you give the Levites are to be appointed as cities of refuge, to which a manslayer may flee. In addition to these, give the The total number Levites forty-two other cities. 8 of cities you give the Levites will be forty-eight, with their corresponding pasturelands. The cit- ies that you apportion from the territory of the Israelites should be given to the Levites in pro- portion to the inheritance of each tribe: more Six Cities of Refuge from a larger tribe and less from a smaller one.”" + }, + { + "verseNum": 13, + "text": "; Hebrew ; parallel text at" + }, + { + "verseNum": 15, + "text": "manuscripts; MT and the parallel text at" + }, + { + "verseNum": 16, + "text": ". Jahaz g 67 sons is a variant of LXX ; see" + }, + { + "verseNum": 17, + "text": "; MT (they were given) Jok- As in j 1 Puah ; also in verse 71; see 1 Chronicles 23:7. ; see" + }, + { + "verseNum": 21, + "text": "; Hebrew Puvah f 62 Gershomites Gibeon, c 59 Ashan e 60 Juttah, Gershonites i 78 Jahzah k 3 ; see" + }, + { + "verseNum": 30, + "text": ". Timnath-heres That is, the Mediterranean Sea, also called the Great Sea is also known as ; see" + }, + { + "verseNum": 34, + "text": ". were given the cities of refuge: Hebron, Libnah Holon Ain They were given the cities of refuge: Shechem h 77 a variant of ; see" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 10, + "text": "| 217 42 Each within the territory of the Israelites. of these cities had its own surrounding pas- 43 turelands; this was true for all the cities. Thus the LORD gave Israel all the land He had sworn to give their fathers, and they took posses- 44 sion of it and settled in it. And the LORD gave them rest on every side, just as He had sworn to their fathers. None of their enemies could stand against them, for the 45 LORD delivered all their enemies into their hand. Not one of all the LORD’s good promises to the house of Israel had failed; everything was The Eastern Tribes Return Home fulfilled. 22 2 Then Joshua summoned the Reubenites, the Gadites, and the half-tribe of Manas- and told them, “You have done all that Mo- seh ses the servant of the LORD commanded you, and you have obeyed my voice in all that I com- All this time you have not deserted manded you. your brothers, up to this very day, but have kept 4 the charge given you by the LORD your God. 3 5 And now that the LORD your God has given your brothers rest as He promised them, you may return to your homes in the land that Moses the servant of the LORD gave you across the But be very careful to observe the com- Jordan. mandment and the law that Moses the servant of the LORD gave you: to love the LORD your God, to walk in all His ways, to keep His command- ments, to hold fast to Him, and to serve Him with 6 all your heart and with all your soul.” 7 8 So Joshua blessed them and sent them on their (To the half- way, and th" + }, + { + "verseNum": 11, + "text": "a near the Jordan in when they came to Geliloth the land of Canaan, the Reubenites, the Gadites, and the half-tribe of Manasseh built an imposing 11 altar there by the Jordan. Then the Israelites received the report: “Behold, the Reubenites, the Gadites, and the half-tribe of Manasseh have built an altar on the border of the land of Canaan, at Geliloth near the Jordan on the Israelite side.” And when they heard this, the whole congregation of Israel 13 assembled at Shiloh to go to war against them. 12 The Israelites sent Phinehas son of Eleazar the priest to the land of Gilead, to the Reubenites, the Gadites, and the half-tribe of Manasseh. With him they sent ten chiefs—one family leader from each tribe of Israel, each the head of a family 15 among the clans of Israel. 14 16 They went to the Reubenites, the Gadites, and the half-tribe of Manasseh in the land of Gilead and said to them, “This is what the whole con- gregation of the LORD says: ‘What is this breach of faith you have committed today against the God of Israel by turning away from the LORD and building for yourselves an altar, that you might 17 rebel against the LORD this day? 18 Was not the sin of Peor enough for us, from which we have not cleansed ourselves to this day? It even brought a plague upon the congre- gation of the LORD. And now, would you turn away from the LORD? If you rebel today against the LORD, tomorrow He will be angry with the 19 whole congregation of Israel. If indeed the land of your inheritan" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 10, + "text": "| 219 15 that not one of the good promises the LORD your God made to you has failed. Everything was ful- filled for you; not one promise has failed. But just as every good thing the LORD your God promised you has come to pass, likewise the LORD will bring upon you the calamity He has threatened, until He has destroyed you from this If you transgress good land He has given you. the covenant of the LORD your God, which He commanded you, and go and serve other gods and bow down to them, then the anger of the LORD will burn against you, and you will quickly Joshua Reviews Israel’s History perish from this good land He has given you.” 16 24 Then Joshua assembled all the tribes of Israel at Shechem. He summoned the el- ders, leaders, judges, and officers of Israel, and 2 they presented themselves before God. c And Joshua said to all the people, “This is what the LORD, the God of Israel, says: ‘Long ago your fathers, including Terah the father of Abraham 3 and and Nahor, lived beyond the Euphrates But I took your father worshiped other gods. Abraham from beyond the Euphrates and led him through all the land of Canaan, and I multi- and to plied his descendants. I gave him Isaac, Isaac I gave Jacob and Esau. I gave Esau Mount Seir to possess, but Jacob and his sons went 5 down to Egypt. 4 d 6 Then I sent Moses and Aaron, and I afflicted the Egyptians by what I did there, and afterward I When I brought your fathers brought you out. out of Egypt and you reached the Red Sea, the Egyptian" + }, + { + "verseNum": 11, + "text": "11 22 12 After this, you crossed the Jordan and came to Jericho. The people of Jericho fought against you, as did the Amorites, Perizzites, Canaanites, Hit- tites, Girgashites, Hivites, and Jebusites, and I de- I sent the hornet livered them into your hand. ahead of you, and it drove out the two Amorite kings before you, but not by your own sword or So I gave you a land on which you did not bow. toil and cities that you did not build, and now you live in them and eat from vineyards and olive Choose Whom You Will Serve groves that you did not plant.’" + }, + { + "verseNum": 14, + "text": "–28) fathers to give them.” 12 13 And now, O Israel, what does the LORD your God ask of you but to fear the LORD your God by walking in all His ways, to love Him, to serve the LORD your God with all your heart and with all and to keep the commandments and your soul, statutes of the LORD that I am giving you this day 14 for your own good? 15 Behold, to the LORD your God belong the heav- ens, even the highest heavens, and the earth and everything in it. Yet the LORD has set His affec- tion on your fathers and loved them. And He has chosen you, their descendants after them, above 16 all the peoples, even to this day. 17 18 Circumcise your hearts, therefore, and stiffen your necks no more. For the LORD your God is God of gods and Lord of lords, the great, mighty, and awesome God, showing no partiality and ac- He executes justice for the fa- cepting no bribe. therless and widow, and He loves the foreigner, So you also must giving him food and clothing. love the foreigner, since you yourselves were for- 20 eigners in the land of Egypt. 19 21 You are to fear the LORD your God and serve Him. Hold fast to Him and take your oaths in His He is your praise and He is your God, name. who has done for you these great and awesome c 22 Kibroth-hattaavah testing graves of craving means d 4 ; see" + }, + { + "verseNum": 29, + "text": "–33) LORD. 6 7 After Joshua had dismissed the people, the Isra- elites went out to take possession of the land, each to his own inheritance. And the people served the LORD throughout the days of Joshua and of the elders who outlived him, who had seen all the great works that the LORD had done for 8 Israel. 9 And Joshua son of Nun, the servant of the LORD, They buried him in the in the died at the age of 110. land of his inheritance, at Timnath-heres Israel’s Unfaithfulness hill country of Ephraim, north of Mount Gaash." + }, + { + "verseNum": 30, + "text": ". ; here and throughout the book of Judges Literally 17 Israel, however, did not listen to their judges. Instead, they prostituted themselves with other gods and bowed down to them. They quickly turned from the way of their fathers, who had walked in obedience to the LORD’s command- 18 ments; they did not do as their fathers had done. 19 Whenever the LORD raised up a judge for the Israelites, He was with that judge and saved them from the hands of their enemies while the judge was still alive; for the LORD was moved to pity by their groaning under those who oppressed them and afflicted them. But when the judge died, the Israelites became even more corrupt than their fathers, going after other gods to serve them and bow down to them. They would not 20 give up their evil practices and stubborn ways. 21 So the anger of the LORD burned against Israel, and He said, “Because this nation has transgressed the covenant I laid down for their I will no fathers and has not heeded My voice, longer drive out before them any of the nations In this way I will test Joshua left when he died. whether Israel will keep the way of the LORD by 23 walking in it as their fathers did.” 22 That is why the LORD had left those nations in place and had not driven them out immediately Nations Left to Test Israel by delivering them into the hand of Joshua. 3 3 2 These are the nations that the LORD left to test all the Israelites who had not known any of the wars in Canaan, if only to teach warfare to the su" + } + ] + } + ] + }, + { + "name": "Judges", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) So there were thirty-one kings in all. 13 Now Joshua was old and well along in years, and the LORD said to him, “You are old and well along in years, but very much of the This is the land land remains to be possessed. that remains: 2 3" + }, + { + "verseNum": 8, + "text": "–26) descendants of Judah. 13 According to the LORD’s command to him, Joshua gave Caleb son of Jephunneh a portion among the sons of Judah—Kiriath-arba, that is, 14 Hebron. (Arba was the forefather of Anak.) And Caleb drove out from there the three sons of Anak—the descendants of Sheshai, Ahiman, 15 and Talmai, the children of Anak. 16 From there he marched against the inhabit- ants of Debir (formerly known as Kiriath- And Caleb said, “To the man who sepher). strikes down Kiriath-sepher and captures it, I So will give my daughter Acsah in marriage.” Othniel son of Caleb’s brother Kenaz captured the city, and Caleb gave his daughter Acsah to e 18 him in marriage. 17 One day Acsah came to Othniel and urged him to ask her father for a field. When she got off her 19 donkey, Caleb asked her, “What do you desire?” “Give me a blessing,” she answered. “Since you have given me land in the Negev, give me springs of water as well.” So Caleb gave her both the upper and lower The Cities of Judah springs. 20 21 Sea, also called the Great Sea; also in verses 11, 12, and 47 scripts; other LXX manuscripts ; see" + }, + { + "verseNum": 14, + "text": ". LXX; Hebrew Hebrew and some LXX manu- the Ascent of Scorpions This is the inheritance of the clans of the tribe c 4 These were the southernmost cities your That is, the Mediterranean of Judah. d 4 or Scorpion Pass e 18 212 |" + }, + { + "verseNum": 25, + "text": "25 26 So the man showed them the entrance to the city, and they put the city to the sword but re- leased that man and all his family. And the man went to the land of the Hittites, built a city, and The Failure to Complete the Conquest called it Luz, which is its name to this day. 27 At that time Manasseh failed to drive out the inhabitants of Beth-shean, Taanach, Dor, Ibleam, Megiddo, and their villages; for the Canaanites When were determined to dwell in that land. Israel became stronger, they pressed the Ca- naanites into forced labor, but they never drove 29 them out completely. 28 Ephraim also failed to drive out the Canaanites living in Gezer; so the Canaanites continued to 30 dwell among them in Gezer. Zebulun failed to drive out the inhabitants of Kitron and Nahalol; so the Canaanites lived 31 among them and served as forced laborers. 32 Asher failed to drive out the inhabitants of Acco, Sidon, Ahlab, Achzib, Helbah, Aphik, and Rehob. So the Asherites lived among the Ca- naanite inhabitants of the land, because they did 33 not drive them out. Naphtali failed to drive out the inhabitants of Beth-shemesh and Beth-anath. So the Naphta- lites also lived among the Canaanite inhabitants of the land, but the inhabitants of Beth-shemesh 34 and Beth-anath served them as forced laborers. 35 The Amorites forced the Danites into the hill country and did not allow them to come down And the Amorites were deter- into the plain. mined to dwell in Mount Heres, Aijalon, and Shaalbim. Bu" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–9) own inheritance. 29 30 b Some time later, Joshua son of Nun, the servant And they of the LORD, died at the age of 110. buried him in the land of his inheritance, at 31 in the hill country of Ephraim, Timnath-serah Israel had served the north of Mount Gaash. LORD throughout the days of Joshua and of the elders who outlived him and who had experi- enced all the works that the LORD had done for 32 Israel. And the bones of Joseph, which the Israelites had brought up out of Egypt, were buried at She- chem in the plot of land that Jacob had purchased c from the sons of Hamor, Shechem’s father, for a hundred pieces of silver. So it became an inher- 33 itance for Joseph’s descendants. Eleazar son of Aaron also died, and they buried him at Gibeah, which had been given to his son Phinehas in the hill country of Ephraim. a 26 terebinth b 30 Timnath-serah Timnath-heres c 32 a hundred kesitahs Or is also known as ; see" + }, + { + "verseNum": 9, + "text": ". 2 lot from the tribes of Judah, Simeon, and Ben- 5 jamin. 216 |" + }, + { + "verseNum": 10, + "text": "–15 ;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 21, + "text": "| 223 8 Then the served the Baals and the Asherahs. anger of the LORD burned against Israel, and He sold them into the hand of Cushan-rishathaim king of Aram-naharaim, and the Israelites 9 served him eight years. a 10 But when the Israelites cried out to the LORD, He raised up Othniel son of Caleb’s younger The brother Kenaz as a deliverer to save them. Spirit of the LORD came upon him, and he became Israel’s judge and went out to war. And the LORD delivered Cushan-rishathaim king of Aram into the hand of Othniel, who prevailed 11 against him. So the land had rest for forty years, until Oth- Ehud niel son of Kenaz died. 12 13 Once again the Israelites did evil in the sight of the LORD. So He gave Eglon king of Moab power over Israel, because they had done evil in the After enlisting the Ammo- sight of the LORD. nites and Amalekites to join forces with him, Eglon attacked and defeated Israel, taking pos- 14 session of the City of Palms. 15 b The Israelites served Eglon king of Moab eight- And again they cried out to the een years. LORD, and He raised up Ehud son of Gera, a left- handed Benjamite, as their deliverer. So they 16 sent him with tribute to Eglon king of Moab. c Now Ehud had made for himself a double- He strapped it to his edged sword a cubit long. and brought the right thigh under his cloak tribute to Eglon king of Moab, who was an obese 18 man. 17 19 After Ehud had finished presenting the tribute, But he ushered out those who had carried it. upon reaching the idol" + }, + { + "verseNum": 22, + "text": "22 Even the handle sank in into Eglon’s belly. after the blade, and Eglon’s fat closed in over it, so that Ehud did not withdraw the sword from Then his belly. And Eglon’s bowels emptied. Ehud went out through the porch, closing and 24 locking the doors of the upper room behind him. 23 25 After Ehud was gone, Eglon’s servants came in and found the doors of the upper room locked. “He must be relieving himself in the cool room,” So they waited until they became they said. worried and saw that he had still not opened the doors of the upper room. Then they took the key and opened the doors—and there was their lord 26 lying dead on the floor. Ehud, however, had escaped while the serv- ants waited. He passed by the idols and escaped 27 to Seirah. On arriving in Seirah, he blew the ram’s horn throughout the hill country of Ephraim. The Isra- 28 elites came down with him from the hills, and he “Follow me,” he told became their leader. them, “for the LORD has delivered your enemies the Moabites into your hand.” 29 So they followed him down and seized the fords of the Jordan leading to Moab, and they did not At that time they allow anyone to cross over. struck down about ten thousand Moabites, all ro- 30 bust and valiant men. Not one of them escaped. So Moab was subdued under the hand of Israel that day, and the land had rest for eighty Shamgar years. 31 After Ehud came Shamgar son of Anath. And he too saved Israel, striking down six hundred Phil- Deborah and Barak istines with an oxgo" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–31) Moses. 31 15 Then Moses and the Israelites sang this song to the LORD: “I will sing to the LORD, for He is highly exalted. The horse and rider 2 He has thrown into the sea. The LORD is my strength and my song, and He has become my salvation. He is my God, and I will praise Him, 3 my father’s God, and I will exalt Him. The LORD is a warrior, 4 the LORD is His name. Pharaoh’s chariots and army He has cast into the sea; d the finest of his officers 5 are drowned in the Red Sea. The depths have covered them; they sank there like a stone. 6 Your right hand, O LORD, is majestic in power; Your right hand, O LORD, 7 has shattered the enemy. You overthrew Your adversaries by Your great majesty. 8 You unleashed Your burning wrath; it consumed them like stubble. At the blast of Your nostrils the waters piled up; like a wall the currents stood firm; 9 the depths congealed in the heart of the sea. The enemy declared, ‘I will pursue, I will overtake. I will divide the spoils; I will gorge myself on them. 10 I will draw my sword; my hand will destroy them.’ But You blew with Your breath, to bind to come off and the sea covered them. to swerve Or Or LXX ; also in verse 22 Or or or ; see also SP, LXX, and Syriac. They sank like lead 11 in the mighty waters. Who among the gods is like You, O LORD? Who is like You—majestic in holiness, 12 revered with praises, performing wonders? 13 You stretched out Your right hand, a and the earth swallowed them up. With loving devotion You will lead the" + }, + { + "verseNum": 18, + "text": "| 225 Sisera said to her, “Please give me a little water to drink, for I am thirsty.” So she opened a con- tainer of milk, gave him a drink, and covered him 20 again. “Stand at the entrance to the tent,” he said, “and if anyone comes and asks you, ‘Is there a 21 man here?’ say, ‘No.’ ” But as he lay sleeping from exhaustion, Heber’s wife Jael took a tent peg, grabbed a ham- mer, and went silently to Sisera. She drove the peg through his temple and into the ground, and 22 he died. When Barak arrived in pursuit of Sisera, Jael went out to greet him and said to him, “Come, and I will show you the man you are seeking.” So he went in with her, and there lay Sisera dead, 23 with a tent peg through his temple. 24 On that day God subdued Jabin king of Canaan And the hand of the Isra- before the Israelites. elites grew stronger and stronger against Jabin The Song of Deborah and Barak (Ex. 15:1–21) king of Canaan until they destroyed him. 5 2 On that day Deborah and Barak son of Abi- noam sang this song: “When the princes take the lead in Israel, 3 when the people volunteer, bless the LORD. Listen, O kings! Give ear, O princes! I will sing to the LORD; I will sing praise to the LORD, 4 the God of Israel. O LORD, when You went out from Seir, when You marched from the land of Edom, When they chose new gods, then war came to their gates. Not a shield or spear was found 9 among forty thousand in Israel. My heart is with the princes of Israel, 10 with the volunteers among the people. Bless" + }, + { + "verseNum": 19, + "text": "19 Kings came and fought; then the kings of Canaan fought at Taanach by the waters of Megiddo, 20 but they took no plunder of silver. From the heavens the stars fought; 21 from their courses they fought against Sisera. The River Kishon swept them away, the ancient river, the River Kishon. 22 March on, O my soul, in strength! 23 Then the hooves of horses thundered— the mad galloping of his stallions. ‘Curse Meroz,’ says the angel of the LORD. ‘Bitterly curse her inhabitants; 24 for they did not come to help the LORD, to help the LORD against the mighty.’ Most blessed among women is Jael, the wife of Heber the Kenite, most blessed of tent-dwelling women. He asked for water, and she gave him milk. In a magnificent bowl she brought him 25 26 curds. She reached for the tent peg, her right hand for the workman’s hammer. 27 She struck Sisera and crushed his skull; she shattered and pierced his temple. At her feet he collapsed, he fell, there he lay still; at her feet he collapsed, he fell; 28 where he collapsed, there he fell dead. Sisera’s mother looked through the window; she peered through the lattice and lamented: ‘Why is his chariot so long in coming? What has delayed the clatter of his 29 chariots?’ Her wisest ladies answer; 30 indeed she keeps telling herself, ‘Are they not finding and dividing the spoil— a girl or two for each warrior, a plunder of dyed garments for Sisera, the spoil of embroidered garments for the neck of the looter?’ 31 So may all Your enemies perish, O LO" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 32, + "text": ". Literally Some Hebrew manuscripts 24 25 Gideon sent messengers throughout the hill country of Ephraim to say, “Come down against the Midianites and seize the waters of the Jordan ahead of them as far as Beth-barah.” So all the men of Ephraim were called out, and they cap- tured the waters of the Jordan as far as Beth- They also captured Oreb and Zeeb, the barah. two princes of Midian; and they killed Oreb at the rock of Oreb and Zeeb at the winepress of Zeeb. So they pursued the Midianites and brought the heads of Oreb and Zeeb to Gideon on the other Gideon Defeats Zebah and Zalmunna side of the Jordan. 8 Then the men of Ephraim said to Gideon, “Why have you done this to us? Why did you fail to call us when you went to fight against Mid- 2 ian?” And they contended with him violently. 3 But Gideon answered them, “Now what have I accomplished compared to you? Are not the gleanings of Ephraim better than the grape har- God has delivered Oreb and vest of Abiezer? Zeeb, the two princes of Midian, into your hand. What was I able to do compared to you?” When against him sub- he had said this, their anger 4 sided. a 5 Then Gideon and his three hundred men came to the Jordan and crossed it, exhausted yet still in So Gideon said to the men of Succoth, pursuit. “Please give my troops some bread, for they are exhausted, and I am still pursuing Zebah and Zal- 6 munna, the kings of Midian.” But the leaders of Succoth asked, “Are the hands of Zebah and Zalmunna already in your posses- 7 s" + }, + { + "verseNum": 39, + "text": "| 227 15 “Please, my Lord,” Gideon replied, “how can I save Israel? Indeed, my clan is the weakest in Ma- nasseh, and I am the youngest in my father’s 16 house.” “Surely I will be with you,” the LORD replied, “and you will strike down all the Midianites as 17 one man.” of the city, he did it by night rather than in the 28 daytime. When the men of the city got up in the morn- ing, there was Baal’s altar torn down, with the Asherah pole cut down beside it and the second “Who bull offered up on the newly built altar. did this?” they said to one another. 29 18 Gideon answered, “If I have found favor in Your sight, give me a sign that it is You speaking with me. Please do not depart from this place until I return to You. Let me bring my offering and set it before You.” 19 And the LORD said, “I will stay until you return.” a So Gideon went in and prepared a young goat and unleavened bread and an ephah of flour. He placed the meat in a basket and the broth in a pot and brought them out to present to Him under 20 the oak. And the angel of God said to him, “Take the meat and the unleavened bread, lay them on this 21 rock, and pour out the broth.” And Gideon did so. Then the angel of the LORD extended the tip of the staff that was in his hand and touched the meat and the unleavened bread. And fire flared from the rock and consumed the meat and the unleavened bread. Then the angel of the LORD 22 vanished from his sight. When Gideon realized that it was the angel of the LORD, he said, “O" + }, + { + "verseNum": 40, + "text": "40 12 7 And that night God did so. Only the fleece was Gideon’s Army of Three Hundred dry, and dew covered the ground. a (that is, Gid- Early in the morning Jerubbaal eon) and all the men with him camped be- side the spring of Harod. And the camp of Midian was north of them in the valley near the hill of 2 Moreh. Then the LORD said to Gideon, “You have too many men for Me to deliver Midian into their hands, lest Israel glorify themselves over Me, saying, ‘My own hand has saved me.’ Now, therefore, proclaim in the hearing of the men: ‘Whoever is fearful and trembling may turn back and leave Mount Gilead.’ ” 3 So twenty-two thousand of them turned back, 4 but ten thousand remained. Then the LORD said to Gideon, “There are still too many men. Take them down to the water, and I will sift them for you there. If I say to you, ‘This one shall go with you,’ he shall go. But if I say, 5 ‘This one shall not go with you,’ he shall not go.” 6 So Gideon brought the men down to the water, and the LORD said to him, “Separate those who lap the water with their tongues like a dog from those who kneel to drink.” And the number of those who lapped the water with their hands to their mouths was three hundred men; all the oth- 7 ers knelt to drink. Then the LORD said to Gideon, “With the three hundred men who lapped the water I will save you and deliver the Midianites into your hand. 8 But all the others are to go home.” So Gideon sent the rest of the Israelites to their tents but kept the three" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 25, + "text": "| 229 12 Jogbehah, and he attacked their army, taking When Zebah and Zalmunna them by surprise. fled, Gideon pursued and captured these two 13 kings of Midian, routing their entire army. 14 After this, Gideon son of Joash returned from There he the battle along the Ascent of Heres. captured a young man of Succoth and interro- gated him. The young man wrote down for him the names of the seventy-seven leaders and el- 15 ders of Succoth. And Gideon went to the men of Succoth and said, “Here are Zebah and Zalmunna, about whom you taunted me, saying, ‘Are the hands of Zebah and Zalmunna already in your possession, 16 ” that we should give bread to your weary men?’ Then he took the elders of the city, and using the thorns and briers of the wilderness, he disci- He also pulled plined the men of Succoth. down the tower of Penuel and killed the men of 18 the city. 17 Next, Gideon asked Zebah and Zalmunna, “What kind of men did you kill at Tabor?” “Men like you,” they answered, “each one resem- 19 bling the son of a king.” “They were my brothers,” Gideon replied, “the sons of my mother! As surely as the LORD lives, 20 if you had let them live, I would not kill you.” So he said to Jether, his firstborn, “Get up and kill them.” But the young man did not draw his sword; he was fearful because he was still a 21 youth. Then Zebah and Zalmunna said, “Get up and kill us yourself, for as the man is, so is his strength.” So Gideon got up and killed Zebah and Zalmunna, and he took the crescent o" + }, + { + "verseNum": 26, + "text": "26 4 a So they spread out a garment, and each man threw an earring from his plunder onto it. The weight of the gold earrings he had requested was 1,700 shekels, in addition to the crescent orna- ments, the pendants, the purple garments of the kings of Midian, and the chains from the necks of 27 their camels. From all this Gideon made an ephod, which he placed in Ophrah, his hometown. But soon all Is- rael prostituted themselves by worshiping it there, and it became a snare to Gideon and his Forty Years of Peace household. 28 e 5 follow Abimelech, for they said, “He is our So they gave him seventy shekels of brother.” silver from the temple of Baal-berith, with which Abimelech hired some worthless and reckless men to follow him. He went to his father’s house in Ophrah, and on one stone mur- dered his seventy brothers, the sons of Jerubbaal. But Jotham, the youngest son of Jerubbaal, sur- 6 vived, because he hid himself. f Then all the leaders of Shechem and Beth-millo at the pillar in Shechem gathered beside the oak Jotham’s Parable and proceeded to make Abimelech their king. 7 29 In this way Midian was subdued before the Israelites and did not raise its head again. So the land had rest for forty years in the days of Gideon, son of Joash— c 30 returned home and settled down. and he—Jerubbaal b 31 Gideon had seventy sons of his own, since he had many wives. His concubine, who dwelt in Shechem, also bore him a son, and he named him Gideon’s Death Abimelech. 32 Later, Gideon son" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 44, + "text": "| 231 The Fall of Shechem 30 d 32 When Zebul the governor of the city heard the c 31 words of Gaal son of Ebed, he burned with anger. So he covertly sent messengers to Abimelech to say, “Look, Gaal son of Ebed and his brothers have come to Shechem and are stirring up the city against you. Now then, tonight you and the people with you are to come and lie in wait in the fields. And in the morning at sunrise, get up and advance against the city. When Gaal and his men come out against you, do to them whatever 34 you are able.” 33 So Abimelech and all his troops set out by night and lay in wait against Shechem in four 35 companies. Now Gaal son of Ebed went out and stood at the entrance of the city gate just as Abimelech 36 and his men came out from their hiding places. When Gaal saw the people, he said to Zebul, “Look, people are coming down from the moun- tains!” But Zebul replied, “The shadows of the moun- 37 tains look like men to you.” e f Then Gaal spoke up again, “Look, people are coming down from the center of the land, and one company is coming by way of the Diviners’ 38 Oak. ” “Where is your gloating now?” Zebul replied. “You said, ‘Who is Abimelech that we should serve him?’ Are these not the people you ridi- 39 culed? Go out now and fight them!” 40 So Gaal went out before the leaders of but Shechem and fought against Abimelech, Abimelech pursued him, and Gaal fled before him. And many Shechemites fell wounded all the way to the entrance of the gate. Abimelech stayed in" + }, + { + "verseNum": 45, + "text": "45 rushed against all who were in the fields and struck them down. And all that day Abimelech fought against the city until he had captured it and killed its people. Then he demolished the city 46 and sowed it with salt. a 47 On hearing of this, all the leaders in the tower of Shechem entered the inner chamber of the And when Abimelech was temple of El-berith. 48 told that all the leaders in the tower of Shechem were gathered there, he and all his men went up to Mount Zalmon. Abimelech took his axe in his hand and cut a branch from the trees, which he lifted to his shoulder, saying to his men, 49 “Hurry and do what you have seen me do.” So each man also cut his own branch and fol- lowed Abimelech. Then they piled the branches against the inner chamber and set it on fire above them, killing everyone in the tower of Shechem, Abimelech’s Punishment about a thousand men and women. 50 51 Then Abimelech went to Thebez, encamped against it, and captured it. But there was a strong tower inside the city, and all the men, women, and leaders of the city fled there. They locked themselves in and went up to the roof of 52 the tower. 53 When Abimelech came to attack the tower, he approached its entrance to set it on fire. But a woman dropped an upper millstone on He Abimelech’s head, crushing his skull. quickly called his armor-bearer, saying, “Draw your sword and kill me, lest they say of me, ‘A woman killed him.’ 54 ” 55 So Abimelech’s armor-bearer ran his sword through him, and he died." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 29, + "text": "| 233 11 2 Now Jephthah the Gileadite was a mighty man of valor; he was the son of a prosti- tute, and Gilead was his father. And Gilead’s wife bore him sons who grew up, drove Jephthah out, and said to him, “You shall have no inher- itance in our father’s house, because you are the 3 son of another woman.” So Jephthah fled from his brothers and settled in the land of Tob, where worthless men gath- 4 ered around him and traveled with him. 5 6 Some time later, when the Ammonites fought against Israel and made war with them, the el- ders of Gilead went to get Jephthah from the land of Tob. “Come,” they said, “be our commander, 7 so that we can fight against the Ammonites.” Jephthah replied to the elders of Gilead, “Did you not hate me and expel me from my father’s house? Why then have you come to me now, 8 when you are in distress?” They answered Jephthah, “This is why we now turn to you, that you may go with us, fight the Ammonites, and become leader over all of us 9 who live in Gilead.” But Jephthah asked them, “If you take me back to fight the Ammonites and the LORD gives them 10 to me, will I really be your leader?” And the elders of Gilead said to Jephthah, “The 11 LORD is our witness if we do not do as you say.” So Jephthah went with the elders of Gilead, and the people made him their leader and com- mander. And Jephthah repeated all his terms in 12 the presence of the LORD at Mizpah. Then Jephthah sent messengers to the king of the Ammonites, saying, “What do you have ag" + }, + { + "verseNum": 30, + "text": "30 31 Jephthah made this vow to the LORD: “If in- deed You will deliver the Ammonites into my hand, then whatever comes out the door of my house to greet me on my triumphant return from the Ammonites will belong to the LORD, and I 32 will offer it up as a burnt offering.” 33 So Jephthah crossed over to the Ammonites to fight against them, and the LORD delivered them into his hand. With a great blow he devastated twenty cities from Aroer to the vicinity of Min- nith, as far as Abel-keramim. So the Ammonites 34 were subdued before the Israelites. And when Jephthah returned home to Mizpah, there was his daughter coming out to meet him with tambourines and dancing! She was his only 35 child; he had no son or daughter besides her. As soon as Jephthah saw her, he tore his clothes and said, “No! Not my daughter! You have brought me to my knees! You have brought great misery upon me, for I have given my word to the 36 LORD and cannot take it back.” 37 “My father,” she replied, “you have given your word to the LORD. Do to me as you have said, for the LORD has avenged you of your enemies, the Ammonites.” She also said to her father, “Let me do this one thing: Let me wander for two months through the mountains with my friends 38 and mourn my virginity.” “Go,” he said. And he sent her away for two months. 39 So she left with her friends and mourned her vir- ginity upon the mountains. After two months, she returned to her father, and he did to her as he had vowed. And she had never had re" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–25) woman shall bear her iniquity.” 2 3 to separate himself to the LORD, “Speak to the And the LORD said to Moses, Israelites and tell them that if a man or a woman makes a special vow, the vow of a Nazi- rite, he is to abstain from wine and strong drink. He must not drink vinegar made from wine or strong drink, and he must not drink any grape juice or eat b 11 one separated a 2 Nazirite All the days of his fresh grapes or raisins. or means one consecrated . 4 6 separation, he is not to eat anything that comes 5 from the grapevine, not even the seeds or skins. For the entire period of his vow of separation, no razor shall touch his head. He must be holy until the time of his separation to the LORD is complete; he must let the hair of his head grow 6 long. 7 Throughout the days of his separation to the LORD, he must not go near a dead body. Even if his father or mother or brother or sister should die, he is not to defile himself, because the sym- 8 bol of consecration to his God is upon his head. Throughout the time of his separation, he is 9 holy to the LORD. 10 If someone suddenly dies in his presence and defiles his consecrated head of hair, he must shave his head on the day of his cleansing—the On the eighth day he must bring seventh day. two turtledoves or two young pigeons to the b 11 priest at the entrance to the Tent of Meeting. And the priest is to offer one as a sin offering and the other as a burnt offering to make atone- ment for him, because he has sinned by bein" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 5, + "text": "| 235 17 Then Manoah said to the angel of the LORD, “What is your name, so that we may honor you 18 when your word comes to pass?” “Why do you ask my name,” said the angel of 19 the LORD, “since it is beyond comprehension?” Then Manoah took a young goat and a grain of- fering and offered them on a rock to the LORD. 20 And as Manoah and his wife looked on, the LORD When the flame went did a marvelous thing. up from the altar to the sky, the angel of the LORD ascended in the flame. 21 When Manoah and his wife saw this, they fell And when the angel facedown to the ground. of the LORD did not appear again to Manoah and his wife, Manoah realized that it had been the an- 22 gel of the LORD. “We are going to die,” he said to his wife, “for 23 we have seen God!” But his wife replied, “If the LORD had intended to kill us, He would not have accepted the burnt offering and the grain offering from our hands, nor would He have shown us all these things or 24 spoken to us this way.” 25 So the woman gave birth to a son and named him Samson. The boy grew, and the LORD And the Spirit of the LORD began blessed him. to stir him at Mahaneh-dan, between Zorah and Samson’s Marriage Eshtaol. b 14 2 One day Samson went down to Timnah, where he saw a young Philistine woman. So he returned and told his father and mother, “I have seen a daughter of the Philistines in Tim- 3 nah. Now get her for me as a wife.” But his father and mother replied, “Can’t you find a young woman among your relatives or among" + }, + { + "verseNum": 6, + "text": "6 7 and the Spirit of the LORD came power- him, fully upon him, and he tore the lion apart with his bare hands as one would tear a young goat. But he did not tell his father or mother what he had Then Samson continued on his way down done. and spoke to the woman, because she was pleas- Samson’s Riddle ing to his eyes. 8 9 When Samson returned later to take her, he left the road to see the lion’s carcass, and in it was a So he swarm of bees, along with their honey. scooped some honey into his hands and ate it as he went along. And when he returned to his fa- ther and mother, he gave some to them and they ate it. But he did not tell them that he had taken 10 the honey from the lion’s carcass. 11 Then his father went to visit the woman, and Samson prepared a feast there, as was customary a And when the Philistines for the bridegroom. saw him, they selected thirty men to accompany 12 him. 13 “Let me tell you a riddle,” Samson said to them. “If you can solve it for me within the seven days of the feast, I will give you thirty linen garments But if you cannot and thirty sets of clothes. solve it, you must give me thirty linen garments and thirty sets of clothes.” 14 “Tell us your riddle,” they replied. “Let us hear it.” So he said to them: “Out of the eater came something to eat, and out of the strong came something sweet.” 15 b So on the fourth For three days they were unable to explain the riddle. day they said to Sam- son’s wife, “Entice your husband to explain the riddle to us," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 11, + "text": "| 237 d why he named it En-hakkore, 20 Lehi to this day. and it remains in And Samson judged Israel for twenty years in Samson Escapes Gaza the days of the Philistines. 16 2 night with her. One day Samson went to Gaza, where he saw a prostitute and went in to spend the When the Gazites heard that Samson was there, they surrounded that place and lay in wait for him all night at the city gate. They were quiet throughout the night, saying, “Let us wait until 3 dawn; then we will kill him.” But Samson lay there only until midnight, when he got up, took hold of the doors of the city gate and both gateposts, and pulled them out, bar and all. Then he put them on his shoulders and took them to the top of the mountain overlooking Samson and Delilah Hebron. 4 5 Some time later, Samson fell in love with a woman in the Valley of Sorek, whose name was Delilah. The lords of the Philistines went to her and said, “Entice him and find out the source of his great strength and how we can overpower him to tie him up and subdue him. Then each one of us will give you eleven hundred shekels of 6 silver. ” e So Delilah said to Samson, “Please tell me the source of your great strength and how you can be 7 tied up and subdued.” Samson told her, “If they tie me up with seven fresh bowstrings that have not been dried, I will 8 become as weak as any other man.” 9 So the lords of the Philistines brought her seven fresh bowstrings that had not been dried, and While the men were she tied him up with them. h" + }, + { + "verseNum": 12, + "text": "that have never been used, I will become as weak 12 as any other man.” free.” But he did not know that the LORD had de- 21 parted from him. So Delilah took new ropes, tied him up with them, and called out, “Samson, the Philistines are here!” But while the men were hidden in her room, he snapped the ropes off his arms like they were 13 threads. Then Delilah said to Samson, “You have mocked me and lied to me all along! Tell me how you can be tied up.” He told her, “If you weave the seven braids of my head into the web of a loom and tighten it with a 14 pin, I will become as weak as any other man. ” a b So while he slept, Delilah took the seven braids Then of his hair and wove them into the web. she tightened it with a pin and called to him, “Samson, the Philistines are here!” But he awoke from his sleep and pulled out the Delilah Learns the Secret pin with the loom and the web. 15 “How can you say, ‘I love you,’ ” she asked, “when your heart is not with me? This is the third time you have mocked me and failed to reveal to 16 me the source of your great strength!” Finally, after she had pressed him daily with 17 her words and pleaded until he was sick to death, Samson told her all that was in his heart: “My hair has never been cut, because I have been a Nazirite to God from my mother’s womb. If I am shaved, my strength will leave me, and I will be- 18 come as weak as any other man.” When Delilah realized that he had revealed to her all that was in his heart, she sent this mes- s" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 13, + "text": "| 239 17 2 Now a man named Micah from the hill said to his mother, country of Ephraim that were “The eleven hundred shekels of silver taken from you and about which I heard you ut- ter a curse—I have the silver here with me; I took it.” a Then his mother said, “Blessed be my son by the 3 LORD!” And when he had returned the eleven hundred shekels of silver to his mother, she said, “I wholly dedicate the silver to the LORD for my son’s ben- efit, to make a graven image and a molten idol. 4 Therefore I will now return it to you.” b So he returned the silver to his mother, and she took two hundred shekels of silver and gave them to a silversmith, who made them into a graven image and a molten idol. And they were 5 placed in the house of Micah. c Now this man Micah had a shrine, and he made an ephod and some household idols, and or- dained In those one of his sons as his priest. days there was no king in Israel; everyone did 7 what was right in his own eyes. 6 8 And there was a young Levite from Bethlehem in Judah who had been residing within the clan This man left the city of Bethlehem in of Judah. Judah to settle where he could find a place. And as he traveled, he came to Micah’s house in the 9 hill country of Ephraim. “Where are you from?” Micah asked him. “I am a Levite from Bethlehem in Judah,” he re- plied, “and I am on my way to settle wherever I 10 can find a place.” d “Stay with me,” Micah said to him, “and be my father and priest, and I will give you ten shekels per year" + }, + { + "verseNum": 14, + "text": "26 there they traveled to the hill country of Ephraim The Danites Take Micah’s Idols and came to Micah’s house. 14 So the Danites went on their way, and Micah turned to go back home, because he saw that 27 they were too strong for him. Then the five men who had gone to spy out the land of Laish said to their brothers, “Did you know that one of these houses has an ephod, household gods, a graven image, and a molten 15 idol? Now think about what you should do.” So they turned aside there and went to the home of the young Levite, the house of Micah, 16 and greeted him. The six hundred Danites stood at the entrance 17 of the gate, armed with their weapons of war. And the five men who had gone to spy out the land went inside and took the graven image, the ephod, the household idols, and the molten idol, while the priest stood at the entrance of the gate 18 with the six hundred armed men. When they entered Micah’s house and took the graven image, the ephod, the household idols, and the molten idol, the priest said to them, 19 “What are you doing?” “Be quiet,” they told him. “Put your hand over your mouth and come with us and be a father and a priest to us. Is it better for you to be a priest for the house of one person or a priest for a tribe and 20 family in Israel?” 21 So the priest was glad and took the ephod, the household idols, and the graven image, and went Putting their small children, with the people. their livestock, and their possessions in front of 22 them, they turned" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "–30) home. 19 2 Now the two angels arrived at Sodom in the evening, and Lot was sitting in the gateway of the city. When Lot saw them, he got and said, up to meet them, bowed facedown, “My lords, please turn aside into the house of your servant; wash your feet and spend the night. Then you can rise early and go on your way.” “No,” they answered, “we will spend the night in the square.” 20 |" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 3, + "text": "| 241 house and fed his donkeys. And they washed 22 their feet and ate and drank. While they were enjoying themselves, sud- denly the wicked men of the city surrounded the house. Pounding on the door, they said to the old man who owned the house, “Bring out the man who came to your house, so we can have rela- 23 tions with him!” 24 The owner of the house went out and said to them, “No, my brothers, do not do this wicked thing! After all, this man is a guest in my house. Look, let me bring Do not commit this outrage. out my virgin daughter and the man’s concubine, and you can use them and do with them as you 25 wish. But do not do such a vile thing to this man.” But the men would not listen to him. So the Le- vite took his concubine and sent her outside to them, and they raped her and abused her 26 throughout the night, and at dawn they let her go. Early that morning, the woman went back to the house where her master was staying, col- lapsed at the doorway, and lay there until it was 27 light. 28 In the morning, when her master got up and opened the doors of the house to go out on his journey, there was his concubine, collapsed in the doorway of the house, with her hands on the “Get up,” he told her. “Let us go.” But threshold. there was no response. So the man put her on his 29 donkey and set out for home. When he reached his house, he picked up a knife, took hold of his concubine, cut her limb by 30 limb into twelve pieces, and sent her throughout And everyone who saw the te" + }, + { + "verseNum": 4, + "text": "4 6 5 So the Levite, the husband of the murdered woman, answered: “I and my concubine came to Gibeah in Benjamin to spend the night. And dur- ing the night, the men of Gibeah rose up against me and surrounded the house. They intended to kill me, but they abused my concubine, and she Then I took my concubine, cut her into died. pieces, and sent her throughout the land of Is- rael’s inheritance, because they had committed a Behold, all lewd and disgraceful act in Israel. you Israelites, give your advice and verdict here 8 and now.” 7 9 10 Then all the people stood as one man and said, “Not one of us will return to his tent or to his Now this is what we will do to Gibeah: house. We will We will go against it as the lot dictates. take ten men out of every hundred from all the tribes of Israel, and a hundred out of every thou- sand, and a thousand out of every ten thousand, to supply provisions for the army when they go to Gibeah in Benjamin to punish them for the 11 atrocity they have committed in Israel.” a 12 13 So all the men of Israel gathered as one man, And the tribes of Israel united against the city. sent men throughout the tribe of Benjamin, say- ing, “What is this wickedness that has occurred Hand over the wicked men of among you? Gibeah so we can put them to death and purge Israel of this evil.” 14 But the Benjamites refused to heed the voice of their fellow Israelites. And from their cities 15 they came together at Gibeah to go out and fight On that day the Benja- aga" + }, + { + "verseNum": 45, + "text": ", 20:47, and 21:13. in the pomegranate cave LXX; Heb. e 21 or Or f 2 4 5 Now there were cliffs on both sides of the pass that Jonathan intended to cross to reach the Phil- istine outpost. One was named Bozez and the One cliff stood to the north toward other Seneh. Michmash, and the other to the south toward 6 Geba. Jonathan said to the young man bearing his ar- mor, “Come, let us cross over to the outpost of these uncircumcised men. Perhaps the LORD will work on our behalf. Nothing can hinder the LORD 7 from saving, whether by many or by few.” His armor-bearer replied, “Do all that is in your 8 heart. Go ahead; I am with you heart and soul.” “Very well,” said Jonathan, “we will cross over 9 toward these men and show ourselves to them. If they say, ‘Wait until we come to you,’ then we 10 will stay where we are and will not go up to them. But if they say, ‘Come on up,’ then we will go up, because this will be our sign that the LORD 11 has delivered them into our hands.” So the two of them showed themselves to the outpost of the Philistines, who exclaimed, “Look, the Hebrews are coming out of the holes in which 12 they were hiding!” So the men of the outpost called out to Jona- than and his armor-bearer, “Come on up, and we will teach you a lesson!” “Follow me,” Jonathan told his armor-bearer, “for the LORD has delivered them into the hand 13 of Israel.” So Jonathan climbed up on his hands and feet, with his armor-bearer behind him. And the Phil- istines fell before Jonathan, an" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 15, + "text": "| 243 Wives for the Benjamites 21 Now the men of Israel had sworn an oath at Mizpah, saying, “Not one of us will give 2 his daughter in marriage to a Benjamite.” 3 So the people came to Bethel and sat there be- fore God until evening, lifting up their voices and weeping bitterly. “Why, O LORD God of Israel,” they cried out, “has this happened in Israel? To- 4 day in Israel one tribe is missing!” 5 The next day the people got up early, built an altar there, and presented burnt offerings and The Israelites asked, “Who peace offerings. among all the tribes of Israel did not come to the assembly before the LORD?” For they had taken a solemn oath that anyone who failed to come up before the LORD at Mizpah would surely be put 6 to death. 7 And the Israelites grieved for their brothers, the Benjamites, and said, “Today a tribe is cut off What should we do about wives for from Israel. the survivors, since we have sworn by the LORD 8 not to give them our daughters in marriage?” So they asked, “Which one of the tribes of Israel failed to come up before the LORD at Mizpah?” And, in fact, no one from Jabesh-gilead had come For when the to the camp for the assembly. people were counted, none of the residents of 10 Jabesh-gilead were there. 9 So the congregation sent 12,000 of their most valiant men and commanded them: “Go and put 11 to the sword those living in Jabesh-gilead, includ- a This is what you are ing women and children. to do: Devote to destruction every male, as well as every f" + }, + { + "verseNum": 16, + "text": "16 17 Then the elders of the congregation said, “What should we do about wives for those who remain, since the women of Benjamin have been They added, “There must be heirs destroyed?” 18 for the survivors of Benjamin, so that a tribe of But we cannot Israel will not be wiped out. give them our daughters as wives.” For the Israelites had sworn, “Cursed is he who 19 gives a wife to a Benjamite.” “But look,” they said, “there is a yearly feast to the LORD in Shiloh, which is north of Bethel east of the road that goes up from Bethel to Shechem, 20 and south of Lebonah.” 21 So they commanded the Benjamites: “Go, hide and watch. When you see the in the vineyards daughters of Shiloh come out to perform their dances, each of you is to come out of the vine- yards, catch for himself a wife from the daugh- 22 ters of Shiloh, and go to the land of Benjamin. When their fathers or brothers come to us to complain, we will tell them, ‘Do us a favor by helping them, since we did not get wives for each of them in the war. Since you did not actually give 23 them your daughters, you have no guilt.’ ” 24 The Benjamites did as instructed and carried away the number of women they needed from the dancers they caught. They went back to their own inheritance, rebuilt their cities, and settled in them. And at that time, each of the Israelites returned from there to his own tribe and clan, 25 each to his own inheritance. In those days there was no king in Israel; everyone did what was right in his own e" + } + ] + } + ] + }, + { + "name": "Ruth", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) solute purity. 3 4 Honor the widows who are truly widows. But if a widow has children or grandchildren, they must first learn to show godliness to their own family and repay their parents, for this is pleas- 5 ing in the sight of God. The widow who is truly in need and left all alone puts her hope in God and continues night But she and day in her petitions and prayers. who lives for pleasure is dead even while she is 7 still alive. 6 8 Give these instructions to the believers, so that If anyone does not they will be above reproach. provide for his own, and especially his own household, he has denied the faith and is worse 9 than an unbeliever. 10 A widow should be enrolled if she is at least sixty years old, faithful to her husband, and well known for good deeds such as bringing up children, entertaining strangers, washing the feet of the saints, imparting relief to the afflicted, 11 and devoting herself to every good work. 13 12 But refuse to enroll younger widows. For when their passions draw them away from and thus will Christ, they will want to marry, incur judgment because they are setting aside At the same time they will their first faith. also learn to be idle, going from house to house and being not only idle, but also gossips and busybodies, discussing things they should not mention. b 18 a 18 1 Timothy 6:2 | 1067 14 So I advise the younger widows to marry, have children, and manage their households, denying For some the adversary occasion for slander. 16 have al" + }, + { + "verseNum": 22, + "text": "22 12 So Naomi returned from the land of Moab with her daughter-in-law Ruth the Moabitess. And they arrived in Bethlehem at the beginning of the Boaz Meets Ruth barley harvest. May the LORD repay your work, and before. may you receive a rich reward from the LORD, the God of Israel, under whose wings you have 13 taken refuge.” 2 Now Naomi had a relative on her husband’s side, a prominent man of noble character from the clan of Elimelech, whose name was 2 Boaz. And Ruth the Moabitess said to Naomi, “Please let me go into the fields and glean heads of grain after someone in whose sight I may find favor.” 3 “Go ahead, my daughter,” Naomi replied. So Ruth departed and went out into the field and gleaned after the harvesters. And she hap- pened to come to the part of the field belonging 4 to Boaz, who was from the clan of Elimelech. Just then Boaz arrived from Bethlehem and said to the harvesters, “The LORD be with you.” 5 “The LORD bless you,” they replied. And Boaz asked the foreman of his harvesters, 6 “Whose young woman is this?” The foreman answered, “She is the Moabitess 7 who returned with Naomi from the land of Moab. She has said, ‘Please let me glean and gather among the sheaves after the harvesters.’ So she came out and has continued from morning until now, except that she rested a short time in the 8 shelter.” 9 Then Boaz said to Ruth, “Listen, my daughter. Do not go and glean in another field, and do not go away from this place, but stay here close to my Let your eyes b" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 12, + "text": ". kinsman-redeemer d 15 e 15 f 1 verses 12 and 13; see" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 5, + "text": "| 247 3 3 One day Ruth’s mother-in-law Naomi said to her, “My daughter, should I not seek a rest- 2 ing place for you, that it may be well with you? Now is not Boaz, with whose servant girls you have been working, a relative of ours? In fact, to- night he is winnowing barley on the threshing Therefore wash yourself, put on perfume, floor. and wear your best clothes. Go down to the threshing floor, but do not let the man know you are there until he has finished eating and drink- When he lies down, note the place where he ing. lies. Then go in and uncover his feet, and lie down, and he will explain to you what you should 5 do.” 6 4 “I will do everything you say,” Ruth answered. So she went down to the threshing floor and did everything her mother-in-law had instructed her 7 to do. After Boaz had finished eating and drinking and was in good spirits, he went to lie down at the end of the heap of grain. Then Ruth went in se- 8 cretly, uncovered his feet, and lay down. At midnight, Boaz was startled, turned over, 9 and there lying at his feet was a woman! So she lay down at his feet until morning, but she got up before anyone else could recognize her. 15 Then Boaz said, “Do not let it be known that a And he woman came to the threshing floor.” told her, “Bring the shawl you are wearing and d hold it out.” When she did so, he poured in six and placed it on her. Then measures of barley 16 he went into the city. e When Ruth returned to her mother-in-law, Na- omi asked her, “How did it" + }, + { + "verseNum": 6, + "text": "6 The kinsman-redeemer replied, “I cannot re- deem it myself, or I would jeopardize my own in- heritance. Take my right of redemption, because 7 I cannot redeem it.” Now in former times in Israel, concerning the redemption or exchange of property, to make any matter legally binding a man would remove his sandal and give it to the other party, and this So the kinsman-re- was a confirmation in Israel. deemer removed his sandal and said to Boaz, 9 “Buy it for yourself.” 8 10 At this, Boaz said to the elders and all the peo- ple, “You are witnesses today that I am buying from Naomi all that belonged to Elimelech, Chil- ion, and Mahlon. Moreover, I have acquired Ruth the Moabitess, Mahlon’s widow, as my wife, to raise up the name of the deceased through his inheritance, so that his name will not disappear from among his brothers or from the gate of his 11 home. You are witnesses today.” “We are witnesses,” said the elders and all the people at the gate. “May the LORD make the woman entering your home like Rachel and Leah, who together built up the house of Israel. May you be prosperous in Ephrathah and famous And may your house become in Bethlehem. like the house of Perez, whom Tamar bore to Ju- dah, because of the offspring the LORD will give you by this young woman.” 12 Boaz Marries Ruth 13 So Boaz took Ruth, and she became his wife. And when he had relations with her, the LORD enabled her to conceive, and she gave birth to a 14 son. 15 Then the women said to Naomi, “Blessed be" + }, + { + "verseNum": 18, + "text": "–22 ;" + }, + { + "verseNum": 19, + "text": "and" + }, + { + "verseNum": 20, + "text": "–21); Hebrew Salma Ephrathah d 19 Ephrath and relations with Ephrathah, the wife of Hezron his father, and she bore ; see 1 Samuel 16:9, 2 Samuel 13:3, and 2 Samuel 21:21. ; see verse 50. sons h 31 is a variant of e 23 Or ; twice in this verse 42, 45, 49, and possibly elsewhere Hebrew ; see also LXX. ; three times in this verse Shema was the father of Raham the Shimeah b 13 Shimea father of Jorkeam, and Rekem was the c 17 Jether the villages of Jair Shammah Ithra , After Hezron died, Caleb had the founder ; see 2 Samuel 17:25. , is a variant of f 24 is a variant of g 24 i 42 Or Or Hebrew; LXX Mareshah ; also in verses 45 father of Shammai. was Maon, and Maon was the father of Beth-zur. The son of Shammai 46 Caleb’s concubine Ephah was the mother of Haran, Moza, and Gazez. Haran was the 47 father of Gazez. The sons of Jahdai: 48 Regem, Jotham, Geshan, Pelet, Ephah, and Shaaph. 49 Caleb’s concubine Maacah was the mother of Sheber and Tirhanah. She was also the mother of Shaaph father of Madmannah, and of Sheva father of Machbenah and Gibea. Caleb’s daughter was Acsah. These were the descendants of Caleb. 50 a b of Hur the firstborn of The sons Ephrathah: 51 Shobal the father of Kiriath-jearim, 52 Salma the father of Bethlehem, and Hareph the father of Beth-gader. These were the descendants of Shobal the 53 father of Kiriath-jearim: and the Haroeh, half the Manahathites, clans of Kiriath-jearim—the Ithrites, Puthites, Shumathites, and Mishraites. From these descended the Zorathi" + } + ] + } + ] + }, + { + "name": "Ezra", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–4 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–67) their posts and some at their own homes.” 4 5 Now the city was large and spacious, but there were few people in it, and the houses had not yet Then my God put it into my heart been rebuilt. to assemble the nobles, the officials, and the peo- ple to be enrolled by genealogy. I found the gene- alogical register of those who had first returned, 6 and I found the following written in it: 7 These are the people of the province who came up from the captivity of the exiles carried away to Babylon by Nebuchadnezzar its king. They re- turned to Jerusalem and Judah, each to his own accompanied by Zerubbabel, Jeshua, Ne- town, a hemiah, Azariah, Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum, and Baanah. 8 9 10 11 This is the count of the men of Israel: the descendants of Parosh, 2,172; the descendants of Shephatiah, 372; the descendants of Arah, 652; the descendants of Pahath-moab 12 (through the line of Jeshua and Joab), 2,818; 14 15 16 17 18 19 20 21 24 25 26 the descendants of Zattu, 845; b the descendants of Zaccai, 760; the descendants of Binnui, 648; the descendants of Bebai, 628; the descendants of Azgad, 2,322; the descendants of Adonikam, 667; the descendants of Bigvai, 2,067; the descendants of Adin, 655; the descendants of Ater (through 22 Hezekiah), 98; 23 the descendants of Hashum, 328; the descendants of Bezai, 324; the descendants of Hariph, the descendants of Gibeon, 95; c d 112; the men of Bethlehem and Netophah, 27 188; 28 29 e the men of Anathoth" + }, + { + "verseNum": 2, + "text": "d 25 Gibeon Nebo of West Elam g 34 is a variant of Or b 15 Binnui Gibbar Bani e 28 Beth-azmaveth c 24 Hariph Azmaveth Jorah h 36 is a variant of the sons ; see" + }, + { + "verseNum": 10, + "text": ". i 43 Hodevah ; see" + }, + { + "verseNum": 18, + "text": ". Literally ; here and in v. 37 is a variant of ; see" + }, + { + "verseNum": 20, + "text": ". is a variant of is a variant of Hodaviah ; see" + }, + { + "verseNum": 24, + "text": ". Or of West f 33 ; see" + }, + { + "verseNum": 39, + "text": ". is a variant of i 5 Bilgah k 14 Malluchi Malluch is a variant of ; see verse 11. Or or Or 460 |" + }, + { + "verseNum": 40, + "text": "and Neh. Ahasuerus ; Ashurbanipal Heb. . c 6 440 |" + }, + { + "verseNum": 44, + "text": ". Addan Peruda is a h 65 ; see" + }, + { + "verseNum": 50, + "text": ". i 68 b 47 Sia ; also in verses 60 and 73 d 54 Bazlith Ami is a variant of ; see" + }, + { + "verseNum": 52, + "text": ". is a variant of is a variant of ; ; see" + }, + { + "verseNum": 55, + "text": ". ally clude this verse. Some Hebrew manuscripts (see also" + }, + { + "verseNum": 56, + "text": "| 437 44 the descendants of Tabbaoth, the descendants of Keros, h the descendants of Siaha, 45 the descendants of Padon, the descendants of Lebanah, the descendants of Hagabah, 46 the descendants of Akkub, i the descendants of Hagab, the descendants of Shalmai, 47 the descendants of Hanan, the descendants of Giddel, the descendants of Gahar, 48 the descendants of Reaiah, the descendants of Rezin, the descendants of Nekoda, 49 the descendants of Gazzam, the descendants of Uzza, the descendants of Paseah, 50 the descendants of Besai, the descendants of Asnah, the descendants of Meunim, 51 the descendants of Nephusim, j the descendants of Bakbuk, the descendants of Hakupha, k 52 the descendants of Harhur, the descendants of Bazluth, the descendants of Mehida, 53 the descendants of Harsha, the descendants of Barkos, the descendants of Sisera, 54 the descendants of Temah, 55 the descendants of Neziah, and the descendants of Hatipha. The descendants of the servants of Solomon: the descendants of Sotai, l the descendants of Hassophereth, 56 the descendants of Peruda, the descendants of Jaala, The temple servants: the descendants of Ziha, Gibeon the descendants of Hasupha, a 20 Gibbar c 24 Azmaveth arim e 31 is a variant of of West Elam is a variant of h 44 Siaha Or also in verses 58 and 70 k 52 Bazluth miah 7:48); the other alternate reads is a variant of Bazlith b 21 the sons the descendants of Darkon, Beth-azmaveth ; see" + }, + { + "verseNum": 57, + "text": "57 the descendants of Giddel, the descendants of Shephatiah, the descendants of Hattil, a the descendants of Pochereth-hazzebaim, 58 and the descendants of Ami. The temple servants and descendants of the servants of Solomon numbered 392 in all. 59 b 70 So the priests, the Levites, the singers, the gatekeepers, and the temple servants, along with some of the people, settled in their own towns; settled in their and the rest of the Israelites Sacrifices Restored towns. f 3 By the seventh month, the Israelites had set- tled in their towns, and the people assem- 2 bled as one man in Jerusalem. g The following came up from Tel-melah, Tel-harsha, Cherub, Addan, and Immer, but they could not prove that their families were de- scended from Israel: 60 the descendants of Delaiah, the descendants of Tobiah, and the descendants of Nekoda, 61 652 in all. And from among the priests: the descend- ants of Hobaiah, the descendants of Hakkoz, and the descendants of Barzillai (who had married a daughter of Barzillai the Gileadite 62 and was called by their name). 63 These men searched for their family rec- ords, but they could not find them and so were excluded from the priesthood as un- The governor ordered them not to clean. eat the most holy things until there was a 65 priest to consult the Urim and Thummim. c 64 66 The whole assembly numbered 42,360, in addition to their 7,337 menservants and maid- servants, as well as their 200 male and female 67 They had 736 horses, 245 mules, singers. Off" + }, + { + "verseNum": 59, + "text": ". Liter- the descendants of Sisera, The Nethinim the descendants of Temah, a 46 Nephusim Hebrew f 59 Amon Lights and Perfections ; see" + }, + { + "verseNum": 66, + "text": "); most Hebrew manuscripts do not in- 454 |" + }, + { + "verseNum": 68, + "text": "–70 ;" + }, + { + "verseNum": 69, + "text": "" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 2, + "text": ". 26 So the God of Israel stirred up the spirit of Pul king of Assyria (that is, Tiglath-pileser king of Assyria) to take the Reubenites, the Gadites, and the half-tribe of Manasseh into exile. And he brought them to Halah, Habor, Hara, and the The Descendants of Levi river of Gozan, where they remain to this day. 6 The sons of Levi: 2 Gershon, Kohath, and Merari. The sons of Kohath: 3 Amram, Izhar, Hebron, and Uzziel. The children of Amram: Aaron, Moses, and Miriam. The sons of Aaron: 4 Nadab, Abihu, Eleazar, and Ithamar. Eleazar was the father of Phinehas, 5 Phinehas was the father of Abishua, Abishua was the father of Bukki, 6 Bukki was the father of Uzzi, Uzzi was the father of Zerahiah, 7 Zerahiah was the father of Meraioth, Meraioth was the father of Amariah, 8 Amariah was the father of Ahitub, Ahitub was the father of Zadok, 9 Zadok was the father of Ahimaaz, Ahimaaz was the father of Azariah, 10 Azariah was the father of Johanan, Johanan was the father of Azariah, who served as priest in the temple that Solo- 11 mon built in Jerusalem, Azariah was the father of Amariah, 12 Amariah was the father of Ahitub, Ahitub was the father of Zadok, 13 Zadok was the father of Shallum, Shallum was the father of Hilkiah, 14 Hilkiah was the father of Azariah, Azariah was the father of Seraiah, b 15 and Seraiah was the father of Jehozadak. Jehozadak went into captivity when the LORD sent Judah and Jerusalem into exile by the hand of Nebuchadnezzar. is a variant of b 14 Jehozadak ; al" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 8, + "text": "through" + }, + { + "verseNum": 16, + "text": "| 439 Opposition under Xerxes and Artaxerxes 6 c At the beginning of the reign of Xerxes, an ac- cusation was lodged against the people of Judah 7 and Jerusalem. And in the days of Artaxerxes king of Persia, Bishlam, Mithredath, Tabeel, and the rest of his associates wrote a letter to Artaxerxes. It was 8 written in Aramaic and then translated. d Rehum the commander and Shimshai the scribe wrote the letter against Jerusalem to King Arta- xerxes as follows: 9 From Rehum the commander, Shimshai the scribe, and the rest of their associates—the judges and officials over Tripolis, Persia, 10 Erech and Babylon, the Elamites of Susa, and the rest of the peoples whom the great deported and and honorable Ashurbanipal f settled in the cities of Samaria and elsewhere 11 west of the Euphrates. e (This is the text of the letter they sent to him.) To King Artaxerxes, From your servants, the men west of the Eu- 12 phrates: Let it be known to the king that the Jews who came from you to us have returned to Jerusalem and are rebuilding that rebellious and wicked city. They are restoring its walls 13 and repairing its foundations. Let it now be known to the king that if that city is rebuilt and its walls are re- stored, they will not pay tribute, duty, or toll, 14 and the royal treasury will suffer. g 15 Now because we are in the service of the palace and it is not fitting for us to allow the king to be dishonored, we have sent to in- that a search should be form the king made of the record boo" + }, + { + "verseNum": 17, + "text": "The Decree of Artaxerxes 5 17 Then the king sent this reply: To Rehum the commander, Shimshai the scribe, and the rest of your associates living in Samaria and elsewhere in the region west of the Euphrates: 18 Greetings. 19 20 The letter you sent us has been translated and read in my presence. I issued a decree, and a search was conducted. It was discov- ered that this city has revolted against kings from ancient times, engaging in rebellion And mighty kings have ruled and sedition. over Jerusalem and exercised authority over the whole region west of the Euphrates; and 21 tribute, duty, and toll were paid to them. Now, therefore, issue an order for these 22 men to stop, so that this city will not be re- See that you do not built until I so order. neglect this matter. Why allow this threat to increase and the royal interests to suffer? 23 When the text of the letter from King Arta- xerxes was read to Rehum, Shimshai the scribe, and their associates, they went immediately to 24 the Jews in Jerusalem and forcibly stopped them. Thus the construction of the house of God in Jerusalem ceased, and it remained at a standstill until the second year of the reign of Darius king of Persia. Temple Rebuilding Resumes" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–5) 10 1 In the second year of the reign of Darius, on the first day of the sixth month, the word of the LORD came through Haggai the prophet to Zerubbabel son of Shealtiel, governor of Judah, and to Joshua son of Jehozadak, the high priest, that this is what the LORD of Hosts says: stating 2 a “These people say, ‘The time has not yet come to rebuild the house of the LORD.’ ” 3 Then the word of the LORD came through Hag- 4 gai the prophet, saying: “Is it a time for you yourselves 5 to live in your paneled houses, while this house lies in ruins?” Now this is what the LORD of Hosts says: 6 “Consider carefully your ways. You have planted much but harvested little. You eat but never have enough. You drink but never have your fill. You put on clothes but never get warm. 7 You earn wages to put into a bag pierced through.” This is what the LORD of Hosts says: 8 “Consider carefully your ways. Go up into the hills, bring down lumber, and build the house, so that I may take pleasure in it and 9 be glorified, says the LORD. You expected much, but behold, it amounted to little. And what you brought home, I blew away. Why? declares the LORD of Hosts. Because My house still lies in ruins, a 1 Jehozadak while each of you is busy with his own house. Jozadak Therefore, on account of you the heavens have withheld their dew 11 and the earth has withheld its crops. I have summoned a drought on the fields and on the mountains, on the grain, new wine, and oil, and on whatever the ground yields, o" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 18, + "text": "is in Aramaic. ; also in verses 11, 16, 17, and 20 Aramaic , , , and Aramaic Literally goodness kindness faithfulness , another name for mercy are translated here and in most cases throughout the Scriptures as e 10 , g 14 or loyalty to a covenant Osnappar because the salt of the palace is our salt , another name for ; see" + }, + { + "verseNum": 19, + "text": "The Returned Exiles Keep the Passover Artaxerxes’ Letter for Ezra 19 11 20 On the fourteenth day of the first month, the exiles kept the Passover. All the priests and Levites had purified themselves and were cere- monially clean. This is the text of the letter King Artaxerxes had given to Ezra the priest and scribe, an expert in the commandments and statutes of the LORD to Israel: 12 e 21 And the Levites slaughtered the Passover lamb for all the exiles, for their priestly brothers, and for themselves. The Israelites who had re- turned from exile ate it, together with all who had separated themselves from the uncleanness of the peoples of the land to seek the LORD, the 22 God of Israel. b a For seven days they kept the Feast of Unleav- with joy, because the LORD had ened Bread made them joyful and turned the heart of the king of Assyria toward them to strengthen their hands in the work on the house of the God of Is- Ezra Arrives in Jerusalem rael. 7 c 4 2 5 3 during the reign of Arta- Many years later, xerxes king of Persia, Ezra son of Seraiah, the the son of son of Azariah, the son of Hilkiah, the Shallum, the son of Zadok, the son of Ahitub, son of Amariah, the son of Azariah, the son of Me- raioth, the son of Zerahiah, the son of Uzzi, the the son of Abishua, the son of son of Bukki, 6 Phinehas, the son of Eleazar, the son of Aaron the this Ezra came up from Babylon. chief priest— He was a scribe skilled in the Law of Moses, which the LORD, the God of Israel, had given. 7" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 12, + "text": "–26 is in Aramaic. verse 25 bushels or 22,000 liters (probably about 19.2 tons or 17.4 metric tons of wheat). gallons or 2,200 liters of wine. is approximately 3.77 tons or 3.42 metric tons of silver. (probably a greeting) 100 baths of oil Aramaic Hebrew k 22 Or ; also in verse 24 i 22 100 cors Aramaic j 22 100 baths The original text of ; also in is approximately 624 is approximately 580 ; that is, approximately 580 gallons or 2,200 liters 23 6" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 20, + "text": "| 443 24 Whatever is com- and salt without limit. manded by the God of heaven must be done diligently for His house. For why should wrath fall on the realm of the king and his And be advised that you have no sons? authority to impose tribute, duty, or toll on any of the priests, Levites, singers, door- keepers, temple servants, or other servants 25 of this house of God. And you, Ezra, according to the wisdom of your God, which you possess, are to appoint magistrates and judges to judge all the peo- ple west of the Euphrates—all who know the laws of your God. And you are to teach these 26 laws to anyone who does not know them. If anyone does not keep the law of your God and the law of the king, let a strict judg- ment be executed against him, whether death, banishment, confiscation of property, or imprisonment. Ezra Blesses God 27 Blessed be the LORD, the God of our fathers, who has put into the heart of the king to so honor the house of the LORD in Jerusalem, and who has shown me favor before the king, his counse- lors, and all his powerful officials. 28 And because the hand of the LORD my God was upon me, I took courage and gathered the leaders The Exiles Who Returned with Ezra of Israel to return with me. 8 2 These are the family heads and genealogical records of those who returned with me from Babylon during the reign of King Artaxerxes: from the descendants of Phinehas, Gershom; 3 from the descendants of Ithamar, Daniel; from the descendants of David, Hattush the descenda" + }, + { + "verseNum": 21, + "text": "Fasting for Protection 21 22 And there by the Ahava Canal I proclaimed a fast, so that we might humble ourselves before our God and ask Him for a safe journey for us and For I our children, with all our possessions. was ashamed to ask the king for an escort of sol- diers and horsemen to protect us from our ene- mies on the road, since we had told him, “The hand of our God is gracious to all who seek Him, but His great anger is against all who forsake 23 Him.” So we fasted and petitioned our God about Priests to Guard the Offerings this, and He granted our request. 24 25 Then I set apart twelve of the leading priests, together with Sherebiah, Hashabiah, and ten of and I weighed out to them the their brothers, contribution of silver and gold and the articles that the king, his counselors, his leaders, and all the Israelites there had offered for the house of 26 our God. b I weighed out into their hands 650 talents of a c 27 articles of silver weighing 100 talents, d silver, 100 talents of gold, 1,000 darics, 28 bronze, as precious as gold. 20 gold bowls valued at and two articles of fine polished 29 Then I told them, “You are holy to the LORD, and these articles are holy. The silver and gold are a freewill offering to the LORD, the God of Guard them carefully until you your fathers. weigh them out in the chambers of the house of the LORD in Jerusalem before the leading priests, 30 Levites, and heads of the Israelite families.” So the priests and Levites took charge of the silve" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–4) ing devotion. 23 24 In those days I also saw Jews who had married women from Ashdod, Ammon, and Moab. Half of their children spoke the language of Ashdod or of the other peoples, but could not speak the lan- guage of Judah. I rebuked them and called down curses on them. I beat some of these men and pulled out their hair. 25 26 Then I made them take an oath before God and said, “You must not give your daughters in mar- riage to their sons or take their daughters as wives for your sons or for yourselves! Did not King Solomon of Israel sin in matters like this? There was not a king like him among many na- tions, and he was loved by his God, who made him king over all Israel—yet foreign women drew him into sin. Must we now hear that you too are doing all this terrible evil and acting un- faithfully against our God by marrying foreign 28 women?” 27 Even one of the sons of Jehoiada son of Eliashib the high priest had become a son-in-law to San- ballat the Horonite. Therefore I drove him away 29 from me. Remember them, O my God, because they have defiled the priesthood and the covenant of the 30 priesthood and of the Levites. Thus I purified the priests and Levites from everything foreign, and I assigned specific duties to each of the priests and Levites. I also arranged for contributions of wood at the ap- pointed times, and for the firstfruits. 31 Remember me, O my God, with favor. Artaxerxes king of Persia is identified here as the king of Babylon because Persia had conquered" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 445 Shecaniah’s Encouragement 10 While Ezra prayed and made this confes- sion, weeping and falling facedown be- fore the house of God, a very large assembly of Israelites—men, women, and children—gath- ered around him, and the people wept bitterly as 2 well. Then Shecaniah son of Jehiel, an Elamite, said to Ezra: “We have been unfaithful to our God by marrying foreign women from the people of the 3 land, yet in spite of this, there is hope for Israel. So now let us make a covenant before our God to send away all the foreign wives and their chil- dren, according to the counsel of my lord and of those who tremble at the command of our God. Get up, for Let it be done according to the Law. this matter is your responsibility, and we will 5 support you. Be strong and take action!” 4 So Ezra got up and made the leading priests, Le- vites, and all Israel take an oath to do what had The People’s Confession of Sin been said. And they took the oath. 6 b Then Ezra withdrew from before the house of God and walked to the chamber of Jehohanan son there, he ate no of Eliashib. And while he stayed food and drank no water, because he was mourn- 7 ing over the unfaithfulness of the exiles. 8 And a proclamation was issued throughout Ju- dah and Jerusalem that all the exiles should Whoever failed to appear gather at Jerusalem. within three days would forfeit all his property, according to the counsel of the leaders and el- ders, and would himself be expelled from the 9 assembly of the exiles. S" + }, + { + "verseNum": 12, + "text": "12 13 14 And the whole assembly responded in a loud But there voice: “Truly we must do as you say! are many people here, and it is the rainy season. We are not able to stay out in the open. Nor is this the work of one or two days, for we have trans- Let our leaders gressed greatly in this matter. represent the whole assembly. Then let everyone in our towns who has married a foreign woman come at an appointed time, together with the el- ders and judges of each town, until the fierce anger of our God in this matter is turned away 15 from us.” (Only Jonathan son of Asahel and Jahzeiah son of Tikvah, supported by Meshullam and Shab- 16 bethai the Levite, opposed this plan.) So the exiles did as proposed. Ezra the priest selected men who were family heads, each of them identified by name, to represent their fam- ilies. On the first day of the tenth month they and by the first day launched the investigation, of the first month they had dealt with all the men Those Guilty of Intermarriage who had married foreign women. 18 17 Among the descendants of the priests who had married foreign women were found these de- and his scendants of Jeshua son of Jozadak brothers: a 19 Maaseiah, Eliezer, Jarib, and Gedaliah. They pledged to send their wives away, 20 and for their guilt they presented a ram from the flock as a guilt offering. From the descendants of Immer: 21 Hanani and Zebadiah. From the descendants of Harim: 22 Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah. From the descendants of" + } + ] + } + ] + }, + { + "name": "Nehemiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 8, + "text": "–9 Or Cited in" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 9, + "text": "of the citadel to the temple, for the city wall, and for the house I will occupy.” And because the gracious hand of my God was 9 upon me, the king granted my requests. Then I went to the governors west of the Euphrates and gave them the king’s letters. The king had also sent army officers and cavalry with 10 me. But when Sanballat the Horonite and Tobiah the Ammonite official heard about this, they were deeply disturbed that someone had come Nehemiah Inspects the Walls to seek the well-being of the Israelites. 11 12 After I had arrived in Jerusalem and had been I set out at night with a few there three days, men. I did not tell anyone what my God had laid on my heart to do for Jerusalem. The only animal 13 with me was the one on which I was riding. a So I went out at night through the Valley Gate and the Dung toward the Well of the Serpent Gate, and I inspected the walls of Jerusalem that had been broken down and the gates that had 14 been destroyed by fire. 15 Then I went on to the Fountain Gate and the King’s Pool, but there was no room for the animal so I went up the val- under me to get through; ley by night and inspected the wall. Then I headed back and reentered through the Valley 16 Gate. 17 The officials did not know where I had gone or what I was doing, for I had not yet told the Jews or priests or nobles or officials or any other Then I said to them, “You see the workers. trouble we are in. Jerusalem lies in ruins, and its gates have been burned down. Come, let us r" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 24, + "text": "); most Hebrew manuscripts also in verse 31 Or Or Hebrew ; 450 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 9, + "text": "| 449 Zadok son of Immer made repairs opposite his house, and next to him, Shemaiah son of She- 30 caniah, the guard of the East Gate, made repairs. 31 Next to him, Hananiah son of Shelemiah, as well as Hanun the sixth son of Zalaph, repaired another section. Next to them, Meshullam son of Berechiah made repairs opposite his own quar- Next to him, Malchijah, one of the gold- ters. smiths, made repairs as far as the house of the temple servants and the merchants, opposite the Inspection Gate, and as far as the upper room And between the upper above the corner. room above the corner and the Sheep Gate, the The Work Ridiculed goldsmiths and merchants made repairs. 32 c 18 Next to him, the Levites made repairs under Rehum son of Bani, and next to him, Hashabiah, ruler of a half-district of Keilah, made repairs for his district. Next to him, their countrymen made repairs under Binnui son of Henadad, ruler of the other half-district of Keilah. And next to him, Ezer son of Jeshua, ruler of Mizpah, repaired another section opposite the ascent to 20 the armory, near the angle in the wall. 19 Next to him, Baruch son of Zabbai diligently re- paired another section, from the angle to the 21 doorway of the house of Eliashib the high priest. Next to him, Meremoth son of Uriah, the son of Hakkoz, repaired another section, from the door- way of the house of Eliashib to the end of the house. And next to him, the priests from the 23 surrounding area made repairs. 22 25 24 Beyond them, Benjamin" + }, + { + "verseNum": 10, + "text": "10 a Meanwhile, the people of Judah said: “The strength of the laborer fails, and there is so much rubble 11 that we will never be able to rebuild the wall.” And our enemies said, “Before they know or see a thing, we will come into their midst, kill 12 them, and put an end to the work.” At that time the Jews who lived nearby came and told us ten times over, “Wherever you turn, 13 they will attack us.” So I stationed men behind the lowest sections of the wall, at the vulnerable areas. I stationed them by families with their swords, spears, and 14 bows. After I had made an inspection, I stood up and said to the nobles, the officials, and the rest of the people, “Do not be afraid of them. Remember the Lord, who is great and awesome, and fight for your brothers, your sons and your daughters, 15 your wives and your homes.” When our enemies heard that we were aware of their scheme and that God had frustrated it, 16 each of us returned to his own work on the wall. And from that day on, half of my servants did the work while the other half held spears, shields, bows, and armor. 17 The officers stationed themselves behind all the who were rebuilding the wall. people of Judah The laborers who carried materials worked with 18 one hand and held a weapon with the other. And each of the builders worked with his sword strapped at his side. But the trumpeter 19 stayed beside me. 20 Then I said to the nobles, the officials, and the rest of the people: “The work is great and exten- sive, and w" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 16, + "text": "| 451 5 The fifth time, Sanballat sent me this same mes- sage by his young servant, who had in his hand that read: an unsealed letter 6 d 7 “It is reported among the nations—and Ge- agrees—that you and the Jews are shem plotting to revolt, and this is why you are building the wall. According to these reports, and you have you are to become their king, even appointed prophets in Jerusalem to proclaim on your behalf: ‘There is a king in Judah.’ Soon these rumors will reach the ears of the king. So come, let us confer together.” 8 Then I sent him this reply: “There is nothing to these rumors you are spreading; you are invent- 9 ing them in your own mind.” For they were all trying to frighten us, saying, “Their hands will be weakened in the work, and it will never be finished.” 10 But now, my God, strengthen my hands. e Later, I went to the house of Shemaiah son of Delaiah, the son of Mehetabel, who was confined to his house. He said: “Let us meet at the house of God inside the temple. Let us shut the temple doors 11 because they are coming to kill you— by night they are coming to kill you!” But I replied, “Should a man like me run away? Should one like me go into the temple to save his 12 own life? I will not go!” 13 I realized that God had not sent him, but that he had uttered this prophecy against me because He had Tobiah and Sanballat had hired him. been hired to intimidate me so that I would sin by doing as he suggested, so they could give me a 14 bad name in order to discre" + }, + { + "verseNum": 17, + "text": "17 13 18 Also in those days, the nobles of Judah sent many letters to Tobiah, and Tobiah’s letters kept For many in Judah were coming to them. bound by oath to him, since he was a son-in-law of Shecaniah son of Arah, and his son Jehohanan had married the daughter of Meshullam son of 19 Berechiah. Moreover, these nobles kept reporting to me Tobiah’s good deeds, and they relayed my words Securing the City to him. And Tobiah sent letters to intimidate me. 7 When the wall had been rebuilt and I had set the doors in place, the gatekeepers, singers, 2 and Levites were appointed. 3 Then I put my brother Hanani in charge of Jeru- salem, along with Hananiah the commander of the fortress, because he was a faithful man who And I told them, feared God more than most. “Do not open the gates of Jerusalem until the sun is hot. While the guards are on duty, keep the doors shut and securely fastened. And appoint the residents of Jerusalem as guards, some at The List of Returning Exiles" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 15, + "text": ". is a variant of ; see Nehe- 20 21 22 23 24 25 a 95; b the descendants of Gibbar, of Bethlehem, 123; the men the men of Netophah, 56; the men of Anathoth, 128; d the descendants of Azmaveth, c 42; the men of Kiriath-jearim, Chephirah, 26 and Beeroth, 743; 27 28 29 30 31 the men of Ramah and Geba, 621; the men of Michmash, 122; the men of Bethel and Ai, 223; the descendants of Nebo, 52; the descendants of Magbish, 156; e the descendants of the other Elam, 32 1,254; 33 34 35 the descendants of Harim, 320; the men of Lod, Hadid, and Ono, 725; the men of Jericho, 345; and the descendants of Senaah, 3,630. 36 The priests: The descendants of Jedaiah (through the 37 house of Jeshua), 973; 38 the descendants of Immer, 1,052; the descendants of Pashhur, 1,247; and the descendants of Harim, 1,017. 39 40 41 42 f ), 74. The Levites: the descendants of Jeshua and Kadmiel (through the line of Hodaviah The singers: the descendants of Asaph, 128. The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai, 43 139 in all. g" + }, + { + "verseNum": 25, + "text": ". f 40 Hodaviah Literally Hodevah ; see" + }, + { + "verseNum": 28, + "text": ". j 50 Nephusim Sia is a variant of Shamlai is a variant of d 25 g 43 Kiriath- ; here and in verses 25, 26, 33, and 34 The Nethinim i 46 ; see" + }, + { + "verseNum": 29, + "text": "); Hebrew ; Hebrew Nephushesim Alternate MT reading (see also Nehe- Perida ; see" + }, + { + "verseNum": 42, + "text": ", and" + }, + { + "verseNum": 43, + "text": ". LXX (see also" + }, + { + "verseNum": 47, + "text": ". l 55 Peruda is a variant of ; see" + }, + { + "verseNum": 52, + "text": ". ; see" + }, + { + "verseNum": 54, + "text": ". 438 |" + }, + { + "verseNum": 57, + "text": ". is a variant of ; see" + }, + { + "verseNum": 59, + "text": ". Or Literally ; that is, approximately 1,129.7 pounds or 512.4 kilograms of gold ; see" + }, + { + "verseNum": 61, + "text": ". is a variant of g 2 Jozadak all Israel f 70 h 4 the Feast of Booths is approximately 3.14 tons or 2.85 metric tons of silver. the Feast of Shelters is a vari- That is, Sukkot, the autumn feast of pilgrimage to Jerusalem; the Feast of Ingathering Or ; also in verse 8; see 1 Chronicles 6:14. or and originally called (see" + }, + { + "verseNum": 69, + "text": "| 453 The gatekeepers: the descendants of Shallum, the descendants of Ater, the descendants of Talmon, the descendants of Akkub, the descendants of Hatita, and the descendants of Shobai, a 46 138 in all. The temple servants: the descendants of Ziha, the descendants of Hasupha, 47 the descendants of Tabbaoth, b the descendants of Keros, the descendants of Sia, 48 the descendants of Padon, the descendants of Lebanah, the descendants of Hagabah, 49 the descendants of Shalmai, the descendants of Hanan, the descendants of Giddel, 50 the descendants of Gahar, the descendants of Reaiah, the descendants of Rezin, 51 the descendants of Nekoda, the descendants of Gazzam, the descendants of Uzza, 52 the descendants of Paseah, the descendants of Besai, the descendants of Meunim, 53 the descendants of Nephushesim, c the descendants of Bakbuk, the descendants of Hakupha, d 54 the descendants of Harhur, the descendants of Bazlith, the descendants of Mehida, 55 the descendants of Harsha, the descendants of Barkos, 57 the descendants of Neziah, and the descendants of Hatipha. The descendants of the servants of Solomon: the descendants of Sotai, e the descendants of Sophereth, 58 the descendants of Perida, the descendants of Jaala, the descendants of Darkon, 59 the descendants of Giddel, the descendants of Shephatiah, the descendants of Hattil, f the descendants of Pochereth-hazzebaim, 60 and the descendants of Amon. The temple servants and descendants of the servants of Solomon numbered 392 i" + }, + { + "verseNum": 70, + "text": "–73) 20 21 22 23 This is the inventory for the tabernacle, the tabernacle of the Testimony, as recorded at Mo- ses’ command by the Levites under the direction Bezalel son of Ithamar son of Aaron the priest. of Uri, the son of Hur, of the tribe of Judah, made everything that the LORD had commanded Mo- With him was Oholiab son of Ahisamach, ses. of the tribe of Dan, an engraver, designer, and embroiderer in blue, purple, and scarlet yarn and 24 fine linen. h All the gold from the wave offering used for the work on the sanctuary totaled 29 talents and 730 25 shekels, according to the sanctuary shekel. The silver from those numbered among the i 26 congregation totaled 100 talents and 1,775 shek- a according to the sanctuary shekel— els, according beka per person, that is, half a shekel, to the sanctuary shekel, from everyone twenty years of age or older who had crossed over to be 27 numbered, a total of 603,550 men. k j The hundred talents of silver were used to cast the bases of the sanctuary and the bases of the veil—100 bases from the 100 talents, one tal- 28 ent per base. l With the 1,775 shekels of silver he made the hooks for the posts, overlaid their tops, and sup- 29 plied bands for them. m The bronze from the wave offering totaled 70 He used it to make talents and 2,400 shekels. the bases for the entrance to the Tent of Meeting, 30 Literally g 18 5 cubits length and width, and 1.4 meters high). proximately 75 feet or 22.9 meters. mately 30 feet or 9.1 meters. j 26 A beka" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–8) sake you. Do not be afraid or discouraged.” 9 So Moses wrote down this law and gave it to the priests, the sons of Levi, who carried the ark of the covenant of the LORD, and to all the elders of a 1 Israel. When Moses went out and spoke b 6 DSS and LXX; MT the Feast of Ingathering" + }, + { + "verseNum": 13, + "text": "–18 ;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 18, + "text": "| 455 Day after day, from the first day to the last, Ezra read from the Book of the Law of God. The Israelites kept the feast for seven days, and on the eighth day they held an assembly, according The People Confess Their Sins to the ordinance. 9 2 On the twenty-fourth day of the same month, the Israelites gathered together, fast- ing and wearing sackcloth, with dust on their Those of Israelite descent separated heads. themselves from all the foreigners, and they stood and confessed their sins and the iniquities 3 of their fathers. While they stood in their places, they read from the Book of the Law of the LORD their God for a quarter of the day, and they spent another quar- ter of the day in confession and worship of the 4 LORD their God. 5 And the Levites—Jeshua, Bani, Kadmiel, She- baniah, Bunni, Sherebiah, Bani, and Chenani— stood on the raised platform and cried out in a loud voice to the LORD their God. Then the Levites—Jeshua, Kadmiel, Bani, Hashabneiah, Sherebiah, Hodiah, Shebaniah, and Pethahiah— said, “Stand up and bless the LORD your God from everlasting to everlasting: Blessed be Your glorious name, 6 and may it be exalted above all blessing and praise. You alone are the LORD. You created the heavens, You performed signs and wonders against Pharaoh, all his officials, and all the people of his land, for You knew they had acted with arrogance against our fathers. 11 You made a name for Yourself that endures to this day. You divided the sea before them, and they cro" + }, + { + "verseNum": 19, + "text": "19 You in Your great compassion From heaven You heard them, did not forsake them in the wilderness. By day the pillar of cloud never turned away and in Your great compassion You gave them deliverers from guiding them on their path; 28 who saved them from the hands of their 20 and by the night the pillar of fire illuminated the way they should go. You gave Your good Spirit to instruct them. You did not withhold Your manna from 21 their mouths, and You gave them water for their thirst. For forty years You sustained them in the wilderness, so that they lacked nothing. Their clothes did not wear out and their feet did not swell. 22 You gave them kingdoms and peoples and allotted to them every corner of the a land. So they took the land of Sihon king of 23 Heshbon and of Og king of Bashan. You multiplied their descendants like the stars of heaven and brought them to the land 24 You had told their fathers to enter and possess. So their descendants went in and possessed the land; enemies. But as soon as they had rest, they again did evil in Your sight. So You abandoned them to the hands of their enemies, who had dominion over them. When they cried out to You again, You heard from heaven, and You delivered them many times 29 in Your compassion. You admonished them to turn back to Your law, but they were arrogant and disobeyed Your commandments. They sinned against Your ordinances, by which a man will live if he practices them. They turned a stubborn shoulder; 30 they stiffened their" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 8, + "text": ". oth ; see verse 17. ; see verse 17. is a variant of j 11 Jonathan Shecaniah ; see" + }, + { + "verseNum": 35, + "text": "| 457 For even while they were in their kingdom, with the abundant goodness that You had given them, and in the spacious and fertile land that You had set before them, they would not serve You 36 or turn from their wicked ways. So here we are today as slaves in the land You gave our fathers to enjoy 37 its fruit and goodness— here we are as slaves! Its abundant harvest goes to the kings You have set over us because of our sins. And they rule over our bodies and our livestock as they please. 38 We are in great distress. a In view of all this, we make a binding agree- ment, putting it in writing and sealing it with the Signers of the Covenant names of our leaders, Levites, and priests.” 10 Now these were the ones who sealed the document: Nehemiah the governor, son of Hacaliah, 2 and also Zedekiah, 3 4 5 6 7 8 Seraiah, Azariah, Jeremiah, Pashhur, Amariah, Malchijah, Hattush, Shebaniah, Malluch, Harim, Meremoth, Obadiah, Daniel, Ginnethon, Baruch, Meshullam, Abijah, Mijamin, Maaziah, Bilgai, These were the priests. b and Shemaiah. 9 The Levites: Jeshua son of Azaniah, 10 Binnui of the sons of Henadad, Kadmiel, and their associates: Shebaniah, Hodiah, 11 Kelita, Pelaiah, Hanan, 12 14 13 Mica, Rehob, Hashabiah, Zaccur, Sherebiah, Shebaniah, Hodiah, Bani, and Beninu. And the leaders of the people: 15 Parosh, Pahath-moab, Elam, Zattu, Bani, 16 17 Bunni, Azgad, Bebai, Adonijah, Bigvai, Adin, Ater, Hezekiah, Azzur, Hebrew does not include a 38 d 32 A third of a shekel 19 20 23 22 21 Ho" + }, + { + "verseNum": 36, + "text": "36 7 And we will bring the firstborn of year by year. our sons and our livestock, as it is written in the Law, and will bring the firstborn of our herds and flocks to the house of our God, to the priests who 37 minister in the house of our God. 38 Moreover, we will bring to the priests at the storerooms of the house of our God the firstfruits of our dough, of our grain offerings, of the fruit of all our trees, and of our new wine and oil. A tenth of our produce belongs to the Levites, so that they shall receive tithes in all the towns where A priest of Aaron’s line is to accom- we labor. pany the Levites when they collect the tenth, and the Levites are to bring a tenth of these tithes to the storerooms of the treasury in the house of our God. For the Israelites and the Levites are to bring the contributions of grain, new wine, and oil to the storerooms where the articles of the sanctuary are kept and where the minister- ing priests, the gatekeepers, and the singers stay. Jerusalem’s New Settlers Thus we will not neglect the house of our God.” 39 11 Now the leaders of the people settled in Jerusalem, and the rest of the people cast lots to bring one out of ten to live in the holy city of Jerusalem, while the remaining nine were to dwell in their own towns. And the people blessed all the men who volunteered to live in 3 Jerusalem. 2 a b These are the heads of the provinces who set- tled in Jerusalem. (In the villages of Judah, how- ever, each lived on his own property in their" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 13, + "text": ". 382 | 1 Chronicles 9:22 22 The number of those chosen to be gate- keepers at the thresholds was 212. They were registered by genealogy in their villages. David and Samuel the seer had appointed them to their positions of trust. 23 25 So they and their descendants were assigned 24 to guard the gates of the house of the LORD—the The gatekeepers were house called the Tent. stationed on the four sides: east, west, north, and Their relatives came from their villages south. 26 at fixed times to serve with them for seven-day But the four chief gatekeepers, who periods. were Levites, were entrusted with the rooms and the treasuries of the house of God. They would spend the night stationed around the house of God, because they were responsible for guarding 28 it and opening it every morning. 27 29 Some of them were in charge of the articles used in worship, to count them whenever they Others were put were brought in or taken out. in charge of the furnishings and other articles of the sanctuary, as well as the fine flour, wine, oil, And some of the sons frankincense, and spices. 31 of the priests mixed the spices. 30 32 A Levite named Mattithiah, the firstborn son of Shallum the Korahite, was entrusted with baking Some of their Kohathite relatives the bread. were responsible for preparing the rows of the 33 showbread every Sabbath. Those who were musicians, the heads of Levite families, stayed in the temple chambers and were exempt from other duties because they All these were were o" + }, + { + "verseNum": 22, + "text": ". Or See" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 5, + "text": ". Hebrew is approximately 0.13 ounces or 3.8 grams, probably of silver. 458 |" + }, + { + "verseNum": 24, + "text": "| 459 a Now the overseer of the Levites in Jerusalem was Uzzi son of Bani, the son of Hashabiah, the son of Mattaniah, the son of Mica. He was one of Asaph’s descendants, who were the singers in charge of the service of the house of God. For there was a command from the king concerning the singers, an ordinance regulating their daily activities. Pethahiah son of Meshezabel, a de- b scendant of Zerah son of Judah, was the king’s 25 agent in every matter concerning the people. 24 23 29 26 27 28 As for the villages with their fields, some of the people of Judah lived in Kiriath-arba, Dibon, Jek- abzeel, and their villages; in Jeshua, Moladah, and Beth-pelet; in Hazar-shual; in Beersheba and its villages; in Ziklag; in Meconah and its villages; Za- noah, Adullam, and their villages; in Lachish and its fields; and in Azekah and its villages. So they settled from Beersheba all the way to the Valley 31 of Hinnom. in En-rimmon, Zorah, Jarmuth, 30 33 34 The descendants of Benjamin from Geba lived 32 in Michmash, Aija, and Bethel with its villages; 35 Hazor, Ramah, c Lod, and in Anathoth, Nob, Ananiah, Gittaim, 36 Ono; and in the Valley of the Craftsmen. Hadid, Zeboim, Neballat, And some divisions of the Levites of Judah set- The Priests and Levites Who Returned tled in Benjamin. 12 Now these are the priests and Levites who went up with Zerubbabel son of Shealtiel and with Jeshua: 2 Seraiah, Jeremiah, Ezra, 3 d 4 5 6 7 e Hattush, Meremoth, h Amariah, Malluch, f Shecaniah, Rehum, g Iddo" + }, + { + "verseNum": 25, + "text": "25 42 26 Mattaniah, Bakbukiah, Obadiah, Meshullam, Talmon, and Akkub were gatekeepers who They guarded the storerooms at the gates. served in the days of Joiakim son of Jeshua, the son of Jozadak, and in the days of Nehemiah the The Dedication of the Wall governor and Ezra the priest and scribe. 27 a 28 At the dedication of the wall of Jerusalem, the Levites were sought out from all their homes and brought to Jerusalem to celebrate the joyous dedication with thanksgiving and singing, ac- The companied by cymbals, harps, and lyres. singers were also assembled from the region around Jerusalem, from the villages of the from Beth-gilgal, and from the Netophathites, fields of Geba and Azmaveth, for they had built Af- villages for themselves around Jerusalem. ter the priests and Levites had purified them- selves, they purified the people, the gates, and 31 the wall. 30 29 c b 35 33 36 Judah, Benjamin, Shemaiah, Jeremiah, Then I brought the leaders of Judah up on the wall, and I appointed two great thanksgiving choirs. One was to proceed along the top of the 32 wall to the right, toward the Dung Gate. Hoshaiah and half the leaders of Judah fol- 34 lowed, along with Azariah, Ezra, Meshullam, and some of the priests with trumpets, and also Zech- ariah son of Jonathan, the son of Shemaiah, the son of Mattaniah, the son of Micaiah, the son of and his associates— Zaccur, the son of Asaph, Shemaiah, Azarel, Milalai, Gilalai, Maai, Nethanel, Judah, and Hanani—with the musical instru- ments" + }, + { + "verseNum": 35, + "text": ". is a variant of Moadiah Johanan Meremoth is a variant of o 20 Sallai is a variant of Book of the Annals verse 5. Sallu the Book of the Historical Events ; see verse 7. is a variant of ; see verse 22. p 22 Johanan ; see verse 3; see also Syriac and some Hebrew and LXX manuscripts. ; see verse 3 and also some LXX manuscripts. Sherebiah, Jeshua, Binnui, and Kadmiel is a variant of r 24 is a variant of is a variant of n 17 Moadiah Jonathan ; also in verse 18; see m 15 Merai- ; see verse 2. Maadiah q 23 the ; see Ginnethoi Hebrew g 5 Mijamin Bilgai ; see verse 15," + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 10, + "text": "–14) 30 Thus any tithe from the land, whether from the seed of the land or the fruit of the trees, belongs to the LORD; it is holy to the LORD. If a man wishes to redeem part of his tithe, he must add a 32 fifth to its value. 31 33 Every tenth animal from the herd or flock that passes under the shepherd’s rod will be holy to the LORD. He must not inspect whether it is good or bad, and he shall not make any substitu- tion. But if he does make a substitution, both the animal and its substitute shall become holy; they 34 cannot be redeemed.’ ” These are the commandments that the LORD gave to Moses for the Israelites on Mount Sinai. b 5 10 shekels d 6 3 shekels is approximately 8 ounces or 228 grams of silver. e 7 15 shekels is approximately 2 ounces or 57 grams of silver. is approximately 4 ounces or 114 grams of f 8 is approximately 1.2 present himself cherem barley seed). Hebrew is a dry measure of approximately 6.24 bushels or 220 liters (probably about 291 pounds or 132 kilograms of is equivalent to one shekel (approximately 0.4 ounces or 11.4 grams). Forms of the refer to the giving over of things or persons to the LORD; similarly in verse 29. is approximately 6 ounces or 171 grams of silver. Or i 28 silver; also in verse 7. g 16 A homer ounces or 34.2 grams of silver. h 25 20 gerahs Numbers The First Census of Israel" + }, + { + "verseNum": 15, + "text": "–22) whose confidence is in Him. He is like a tree planted by the waters 19 that sends out its roots toward the stream. It does not fear when the heat comes, and its leaves are always green. It does not worry in a year of drought, nor does it cease to produce fruit. 9 The heart is deceitful above all things 10 and beyond cure. Who can understand it? I, the LORD, search the heart; b I examine the mind 11 to reward a man according to his way, by what his deeds deserve. Like a partridge hatching eggs it did not lay is the man who makes a fortune unjustly. In the middle of his days his riches will desert him, Jeremiah’s Prayer for Deliverance and in the end he will be the fool.” 12 A glorious throne, exalted from the 13 beginning, is the place of our sanctuary. O LORD, the hope of Israel, all who abandon You will be put to shame. All who turn away will be written in the dust, 14 for they have abandoned the LORD, the fountain of living water. Heal me, O LORD, and I will be healed; 15 save me, and I will be saved, for You are my praise. Behold, they keep saying to me, 16 “Where is the word of the LORD? Let it come now!” But I have not run away from being Your This is what the LORD said to me: “Go and stand at the gate of the people, through which the kings of Judah go in and out; and stand at all the 20 other gates of Jerusalem. 22 21 Say to them, ‘Hear the word of the LORD, O kings of Judah, all people of Judah and Jerusa- This is lem who enter through these gates. what the LORD s" + }, + { + "verseNum": 23, + "text": "–31) 9 After these things had been accomplished, the leaders approached me and said, “The people of Israel, including the priests and Le- vites, have not kept themselves separate from the surrounding peoples whose abominations like those of the Canaanites, Hittites, are 2 Jebusites, Ammonites, Moabites, Perizzites, Indeed, the Israelites Egyptians, and Amorites. have taken some of their daughters as wives for themselves and their sons, so that the holy seed has been mixed with the people of the land. And the leaders and officials have taken the lead in 3 this unfaithfulness!” When I heard this report, I tore my tunic and cloak, pulled out some hair from my head and 4 beard, and sat down in horror. Then everyone who trembled at the words of the God of Israel gathered around me because of the unfaithfulness of the exiles, while I sat there Ezra’s Prayer of Confession in horror until the evening offering. 5 6 At the evening offering, I got up from my humil- iation with my tunic and cloak torn, and I fell on my knees, spread out my hands to the LORD my God, and said: “O my God, I am ashamed and embarrassed to lift up my face to You, my God, because our worth b 26 100 talents d 27 1,000 drachmas 3.42 metric tons of silver articles. f 36 governors beyond the River is approximately 24.5 tons or 22.2 metric tons of silver. e 36 is approximately 3.77 tons or 3.42 metric tons of gold. satrap is approximately 3.77 tons or Or was a Persian official. ; that is, approximately 18.5 pounds o" + }, + { + "verseNum": 31, + "text": "| 461 a While all this was happening, I was not in Jeru- salem, because I had returned to Artaxerxes king of Babylon in the thirty-second year of his reign. 7 Some time later I obtained leave from the king to return to Jerusalem. Then I discovered the evil that Eliashib had done on behalf of Tobiah by providing him a room in the courts of the house 8 of God. 9 And I was greatly displeased and threw all of Then Tobiah’s household goods out of the room. I ordered that the rooms be purified, and I had the articles of the house of God restored to them, Tithes Restored along with the grain offerings and frankincense. (Lev. 27:30–34 ; De. 14:22–29 ; 26:1–15) 10 12 11 I also learned that because the portions for the Levites had not been given to them, all the Le- vites and singers responsible for performing the service had gone back to their own fields. So I rebuked the officials and asked, “Why has the house of God been neglected?” Then I gathered the Levites and singers together and stationed them at their posts, and all Judah brought a tenth of the grain, new wine, and oil into the storerooms. I appointed as treasurers over the storerooms Shelemiah the priest, Zadok the scribe, and Pedaiah of the Levites, with Hanan son of Zaccur, the son of Mattaniah, to as- sist them, because they were considered trust- worthy. They were responsible for distributing 14 the supplies to their fellow Levites. 13 Remember me for this, O my God, and do not blot out my deeds of loving devotion for th" + } + ] + } + ] + }, + { + "name": "Esther", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 22, + "text": "| 463 2 Some time later, when the anger of King Xerxes had subsided, he remembered Vashti and what she had done, and what had been de- 2 creed against her. , 3 Then the king’s attendants proposed, “Let a search be made for beautiful young virgins for and let the king appoint commission- the king ers in each province of his kingdom to assemble all the beautiful young women into the harem at the citadel of Susa. Let them be placed under the care of Hegai, the king’s eunuch in charge of the women, and let them be given beauty treat- Then let the young woman who pleases ments. the king become queen in place of Vashti.” 4 This suggestion pleased the king, and he acted Esther Finds Favor accordingly. 5 Now there was at the citadel of Susa a Jewish man from the tribe of Benjamin named Mordecai He son of Jair, the son of Shimei, the son of Kish. had been carried into exile from Jerusalem by Nebuchadnezzar king of Babylon among those 7 taken captive with Jeconiah king of Judah. 6 a And Mordecai had brought up Hadassah (that is, Esther), the daughter of his uncle, because she did not have a father or mother. The young woman was lovely in form and appearance, and when her father and mother had died, Mordecai 8 had taken her as his own daughter. 9 When the king’s command and edict had been proclaimed, many young women gathered at the citadel of Susa under the care of Hegai. Esther was also taken to the palace and placed under the And care of Hegai, the custodian of the women. the young w" + }, + { + "verseNum": 23, + "text": "23 After the report had been investigated and verified, both officials were hanged on the gal- lows. And all this was recorded in the Book of the Haman’s Plot against the Jews Chronicles in the presence of the king. a 3 2 After these events, King Xerxes honored Haman son of Hammedatha, the Agagite, el- evating him to a position above all the princes All the royal servants at the who were with him. king’s gate bowed down and paid homage to Haman, because the king had commanded that this be done for him. But Mordecai would not 3 bow down or pay homage. Then the royal servants at the king’s gate asked Mordecai, “Why do you disobey the command of 4 the king?” Day after day they warned him, but he would not comply. So they reported it to Haman to see whether Mordecai’s behavior would be toler- 5 ated, since he had told them he was a Jew. When Haman saw that Mordecai would not bow 6 down or pay him homage, he was filled with rage. And when he learned the identity of Mordecai’s people, he scorned the notion of laying hands on Mordecai alone. Instead, he sought to destroy all of Mordecai’s people, the Jews, throughout the 7 kingdom of Xerxes. b c In the twelfth year of King Xerxes, in the first month, the month of Nisan, the Pur (that is, the lot) was cast before Haman to determine a day and month. And the lot fell on the twelfth month, 8 the month of Adar. d Then Haman informed King Xerxes, “There is a certain people scattered and dispersed among the peoples of every province of you" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 2, + "text": ". e 21 Bigthan ; see 2 Kings 24:12. Or Bigthana 464 |" + }, + { + "verseNum": 3, + "text": "14 a was found recorded that Mordecai had exposed Bigthana and Teresh, two of the eunuchs who guarded the king’s entrance, when they had con- 3 spired to assassinate King Xerxes. The king inquired, “What honor or dignity has been bestowed on Mordecai for this act?” “Nothing has been done for him,” replied the 4 king’s attendants. “Who is in the court?” the king asked. 5 Now Haman had just entered the outer court of the palace to ask the king to hang Mordecai on the So the king’s gallows he had prepared for him. attendants answered him, “Haman is there, standing in the court.” 6 “Bring him in,” ordered the king. Haman entered, and the king asked him, “What should be done for the man whom the king is de- lighted to honor?” Now Haman thought to himself, “Whom would 7 the king be delighted to honor more than me?” 8 9 And Haman told the king, “For the man whom have them bring the king is delighted to honor, a royal robe that the king himself has worn and a horse on which the king himself has ridden— Let one with a royal crest placed on its head. the robe and the horse be entrusted to one of the king’s most noble princes. Let them array the man the king wants to honor and parade him on the horse through the city square, proclaiming before him, ‘This is what is done for the man 10 whom the king is delighted to honor!’ ” “Hurry,” said the king to Haman, “and do just as you proposed. Take the robe and the horse to Mordecai the Jew, who is sitting at the king’s gate. Do not neglect any" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 6, + "text": "| 467 12 defend themselves, to destroy, kill, and annihi- late all the forces of any people or province hos- tile to them, including women and children, and to plunder their possessions. The single day appointed throughout all the provinces of King Xerxes was the thirteenth day of the twelfth 13 month, the month of Adar. c A copy of the text of the edict was to be issued in every province and published to all the people, so that the Jews would be ready on that day to avenge themselves on their enemies. The cou- riers rode out in haste on their royal horses, pressed on by the command of the king. And the 15 edict was also issued in the citadel of Susa. 14 Mordecai went out from the presence of the king in royal garments of blue and white, with a large gold crown and a purple robe of fine linen. 16 And the city of Susa shouted and rejoiced. 17 For the Jews it was a time of light and gladness, In every province and every of joy and honor. city, wherever the king’s edict and decree reached, there was joy and gladness among the Jews, with feasting and celebrating. And many of the people of the land themselves became Jews, because the fear of the Jews had fallen upon The Jews Destroy Their Enemies them. 9 d On the thirteenth day of the twelfth month, the month of Adar, the king’s command and edict were to be executed. On this day the ene- mies of the Jews had hoped to overpower them, but their plan was overturned and the Jews over- In each of the powered those who hated them. provi" + }, + { + "verseNum": 7, + "text": "7 8 9 including Parshandatha, Dal- hundred men, 10 Par- Poratha, Adalia, Aridatha, phon, Aspatha, mashta, Arisai, Aridai, and Vaizatha. They killed these ten sons of Haman son of Hammeda- tha, the enemy of the Jews, but they did not lay a Haman’s Sons Hanged hand on the plunder. 11 12 On that day the number of those killed in the who citadel of Susa was reported to the king, said to Queen Esther, “In the citadel of Susa the Jews have killed and destroyed five hundred men, including Haman’s ten sons. What have they done in the rest of the royal provinces? Now what is your petition? It will be given to you. And 13 what further do you request? It will be fulfilled.” Esther replied, “If it pleases the king, may the Jews in Susa also have tomorrow to carry out to- day’s edict, and may the bodies of Haman’s ten 14 sons be hanged on the gallows.” 15 So the king commanded that this be done. An edict was issued in Susa, and they hanged the ten On the fourteenth day of the sons of Haman. month of Adar, the Jews in Susa came together again and put to death three hundred men there, 16 but they did not lay a hand on the plunder. 17 The rest of the Jews in the royal provinces also assembled to defend themselves and rid them- selves of their enemies. They killed 75,000 who hated them, but they did not lay a hand on the This was done on the thirteenth day plunder. of the month of Adar, and on the fourteenth day The Feast of Purim Instituted they rested, making it a day of feasting and joy. 1" + } + ] + } + ] + }, + { + "name": "Job", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) murdered the righteous, who did not resist you. 7 g 8 Be patient, then, brothers, until the Lord’s com- ing. See how the farmer awaits the precious fruit of the soil—how patient he is for the fall and too, be patient and spring rains. strengthen your hearts, because the Lord’s com- Do not complain about one another, ing is near. brothers, so that you will not be judged. Look, the 10 Judge is standing at the door! You, 9 11 Brothers, as an example of patience in afflic- tion, take the prophets who spoke in the name of See how blessed we consider those the Lord. who have persevered. You have heard of Job’s perseverance and have seen the outcome from the Lord. The Lord is full of compassion and mercy. passions warring among b 1 But the fruit of righteousness is sown in peace by those making peace. e 5 the spirit f 6 Literally Literally See" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Job Loses His Health Job Laments His Birth 2 On another day the sons of God came to a present themselves before the LORD, and also came with them to present himself Satan 2 before Him. “Where have you come from?” said the LORD to Satan. “From roaming through the earth,” he replied, 3 “and walking back and forth in it.” Then the LORD said to Satan, “Have you consid- ered My servant Job? For there is no one on earth like him, a man who is blameless and upright, who fears God and shuns evil. He still retains his integrity, even though you incited Me against 4 him to ruin him without cause.” 5 “Skin for skin!” Satan replied. “A man will give up all he owns in exchange for his life. But stretch out Your hand and strike his flesh and 6 bones, and he will surely curse You to Your face.” “Very well,” said the LORD to Satan. “He is in 7 your hands, but you must spare his life.” So Satan went out from the presence of the LORD and infected Job with terrible boils from 8 the soles of his feet to the crown of his head. And Job took a piece of broken pottery to scrape 9 himself as he sat among the ashes. b Then Job’s wife said to him, “Do you still retain 10 your integrity? Curse God and die!” “You speak as a foolish woman speaks,” he told her. “Should we accept from God only good and not adversity?” Job’s Three Friends In all this, Job did not sin in what he said. 11 Now when Job’s three friends—Eliphaz the Te- manite, Bildad the Shuhite, and Zophar the Naamathite—heard about all this adv" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 12, + "text": "| 471 21 Why is light given to the miserable, and life to the bitter of soul, 15 fear and trembling came over me a and made all my bones shudder. 22 who long for death that does not come, 16 Then a spirit glided past my face, and search for it like hidden treasure, and the hair on my body bristled. 23 who rejoice and greatly exult when they reach the grave? Why is life given to a man whose way is 24 hidden, whom God has hedged in? I sigh when food is put before me, 25 26 and my groans pour out like water. For the thing I feared has overtaken me, and what I dreaded has befallen me. I am not at ease or quiet; Eliphaz: The Innocent Prosper I have no rest, for trouble has come.” 4 2 Then Eliphaz the Temanite replied: “If one ventures a word with you, will you 3 be wearied? Yet who can keep from speaking? Surely you have instructed many, 4 and have strengthened their feeble hands. Your words have steadied those who stumbled; 5 you have braced the knees that were buckling. But now trouble has come upon you, and you 6 are weary. It strikes you, and you are dismayed. Is your reverence not your confidence, 7 and the uprightness of your ways your hope? Consider now, I plead: Who, being innocent, has ever perished? Or where have the upright been 8 destroyed? 7 As I have observed, those who plow iniquity 9 and those who sow trouble reap the same. By the breath of God they perish, 10 and by the blast of His anger they are consumed. The lion may roar, and the fierce lion may 11 growl, yet" + }, + { + "verseNum": 13, + "text": "13 a 5 14 He catches the wise in their craftiness, Does a wild donkey bray over fresh grass, 6 and sweeps away the plans of the cunning. 15 They encounter darkness by day and grope at noon as in the night. He saves the needy from the sword in their 16 mouth and from the clutches of the powerful. So the poor have hope, 17 and injustice shuts its mouth. Blessed indeed is the man whom God corrects; b or an ox low over its fodder? Is tasteless food eaten without salt, or is there flavor in the white of c 7 an egg ? My soul refuses to touch them; they are loathsome food to me. 8 If only my request were granted 9 10 and God would fulfill my hope: that God would be willing to crush me, to unleash His hand and cut me off! 18 so do not despise the discipline of the It still brings me comfort, Almighty. and joy through unrelenting pain, 19 For He wounds, but He also binds; 20 He strikes, but His hands also heal. He will rescue you from six calamities; no harm will touch you in seven. 21 In famine He will redeem you from death, and in battle from the stroke of the sword. You will be hidden from the scourge of the 22 tongue, and will not fear havoc when it comes. You will laugh at destruction and famine, 23 and need not fear the beasts of the earth. For you will have a covenant with the stones of the field, 24 and the wild animals will be at peace with 15 you. You will know that your tent is secure, 25 and find nothing amiss when inspecting your home. You will know that your offspring wi" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 13, + "text": "| 473 27 Do you intend to correct my words, and treat as wind my cry of despair? You would even cast lots for an orphan 28 and barter away your friend. 29 But now, please look at me. Would I lie to your face? Reconsider; do not be unjust. 30 Reconsider, for my righteousness is at stake. Is there iniquity on my tongue? Job Continues: Life Seems Futile Can my mouth not discern malice? 7 2 “Is not man consigned to labor on earth? Are not his days like those of a hired hand? Like a slave he longs for shade; 3 like a hireling he waits for his wages. So I am allotted months of futility, 4 and nights of misery are appointed to me. When I lie down I think: ‘When will I get up?’ But the night drags on, 5 and I toss and turn until dawn. My flesh is clothed with worms and encrusted with dirt; my skin is cracked and festering. 6 7 My days are swifter than a weaver’s shuttle; they come to an end without hope. Remember that my life is but a breath. 8 My eyes will never again see happiness. The eye that beholds me will no longer 9 see me. You will look for me, but I will be no more. As a cloud vanishes and is gone, I loathe my life! I would not live forever. Leave me alone, for my days are but a 17 breath. 18 What is man that You should exalt him, that You should set Your heart upon him, 19 that You attend to him every morning, and test him every moment? Will You never look away from me, 20 or leave me alone to swallow my spittle? If I have sinned, what have I done to You, O watcher of mank" + }, + { + "verseNum": 14, + "text": "14 13 15 His confidence is fragile; his security is in a spider’s web. He leans on his web, but it gives way; 16 he holds fast, but it does not endure. He is a well-watered plant in the sunshine, 17 spreading its shoots over the garden. 18 His roots wrap around the rock heap; he looks for a home among the stones. If he is uprooted from his place, 19 it will disown him, saying, ‘I never saw you.’ 20 Surely this is the joy of his way; yet others will spring from the dust. Behold, God does not reject the blameless, nor will He strengthen the hand of 21 evildoers. 22 He will yet fill your mouth with laughter, and your lips with a shout of joy. Your enemies will be clothed in shame, and the tent of the wicked will be no Job: How Can I Contend with God? more.” 9 2 Then Job answered: “Yes, I know that it is so, but how can a mortal be righteous before a 3 God? If one wished to contend with God, 4 he could not answer Him one time out of a thousand. God is wise in heart and mighty in strength. Who has resisted Him and prospered? He moves mountains without their knowledge 5 6 and overturns them in His anger. He shakes the earth from its place, b so that its foundations tremble. He commands the sun not to shine; 7 8 He seals off the stars. He alone stretches out the heavens 9 and treads on the waves of the sea. He is the Maker of the Bear and Orion, 10 of the Pleiades and the constellations of the south. 11 He does great things beyond searching out, and wonders without number. Were He t" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 11, + "text": "| 475 Then I would speak without fear of Him. Job’s Plea to God But as it is, I am on my own. 10 2 “I loathe my own life; I will express my complaint and speak in the bitterness of my soul. I will say to God: 3 Do not condemn me! Let me know why You prosecute me. Does it please You to oppress me, 4 to reject the work of Your hands and favor the schemes of the wicked? Do You have eyes of flesh? 5 Do You see as man sees? 6 Are Your days like those of a mortal, or Your years like those of a man, 7 that You should seek my iniquity and search out my sin— though You know that I am not guilty, 8 and there is no deliverance from Your hand? Your hands shaped me and altogether formed 9 me. Would You now turn and destroy me? Please remember that You molded me like 10 clay. Would You now return me to dust? 11 Did You not pour me out like milk, and curdle me like cheese? You clothed me with skin and flesh, 12 and knit me together with bones and sinews. a You have granted me life and loving 13 devotion, and Your care has preserved my spirit. 14 Yet You concealed these things in Your heart, and I know that this was in Your mind: If I sinned, You would take note, 15 and would not acquit me of my iniquity. If I am guilty, woe to me! 18 Hardships assault me in wave after wave. Why then did You bring me from the womb? Oh, that I had died, and no eye had seen 19 me! If only I had never come to be, 20 but had been carried from the womb to the grave. Are my days not few? 21 Withdraw from me, that" + }, + { + "verseNum": 12, + "text": "12 But a witless man can no more become wise than the colt of a wild donkey can be born a 13 a man! 14 As for you, if you direct your heart and lift up your hands to Him, if you put away the iniquity in your hand, and allow no injustice to dwell in your 15 tents, then indeed you will lift up your face without 16 blemish; you will stand firm and unafraid. 17 For you will forget your misery, 18 recalling it only as waters gone by. Your life will be brighter than noonday; its darkness will be like the morning. You will be secure, because there is hope, 19 and you will look around and lie down in safety. 20 You will lie down without fear, and many will court your favor. But the eyes of the wicked will fail, and escape will elude them; they will hope for their last breath.” Job Presents His Case 12 2 Then Job answered: 3 “Truly then you are the people with whom wisdom itself will die! But I also have a mind; 4 I am not inferior to you. Who does not know such things as these? I am a laughingstock to my friends, though I called on God, and He answered. The righteous and upright man is a 5 laughingstock. The one at ease scorns misfortune 6 as the fate of those whose feet are slipping. The tents of robbers are safe, b and those who provoke God are secure— those who carry their god in their hands. 7 But ask the animals, and they will instruct you; 8 ask the birds of the air, and they will tell you. Or speak to the earth, and it will teach you; 9 let the fish of the sea inform you. 10 W" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 20, + "text": "| 477 your defenses are defenses of clay. and the number of his months is with You, Surely He would rebuke you 11 if you secretly showed partiality. Would His majesty not terrify you? Would the dread of Him not fall 12 upon you? Your maxims are proverbs of ashes; 13 Be silent, and I will speak. a 14 Then let come to me what may. Why do I put myself at risk b and take my life in my own hands? Though He slay me, I will hope in Him. 15 16 Moreover, this will be my salvation, 17 for no godless man can appear before Him. Listen carefully to my words; 18 let my declaration ring in your ears. 19 See now, I have prepared my case; I know that I will be vindicated. Can anyone indict me? 20 If so, I will be silent and die. Only grant these two things to me, 21 so that I need not hide from You: Withdraw Your hand from me, 22 I will still defend my ways to His face. 8 and do not let Your terror frighten me. 13 Then call me, and I will answer, 23 or let me speak, and You can reply. How many are my iniquities and sins? 24 Reveal to me my transgression and sin. Why do You hide Your face 25 and consider me as Your enemy? Would You frighten a windblown leaf? Would You chase after dry chaff? 26 For You record bitter accusations against me 27 and bequeath to me the iniquities of my youth. You put my feet in the stocks and stand watch over all my paths; You set a limit 28 for the soles of my feet. So man wastes away like something rotten, Job Laments the Finality of Death like a moth-eaten garmen" + }, + { + "verseNum": 21, + "text": "21 20 22 If his sons receive honor, he does not know it; if they are brought low, he is unaware. A wicked man writhes in pain all his days; only a few years are reserved for the 21 He feels only the pain of his own body and mourns only for himself.” Eliphaz: Job Does Not Fear God 15 2 Then Eliphaz the Temanite replied: 3 “Does a wise man answer with empty counsel or fill his belly with the hot east wind? Should he argue with useless words 4 or speeches that serve no purpose? But you even undermine the fear of God and hinder meditation before Him. For your iniquity instructs your mouth, 5 6 and you choose the language of the crafty. Your own mouth, not mine, condemns you; 7 your own lips testify against you. ruthless. Sounds of terror fill his ears; 22 in his prosperity the destroyer attacks him. He despairs of his return from darkness; 23 he is marked for the sword. He wanders about as food for vultures; 24 he knows the day of darkness is at hand. Distress and anguish terrify him, 25 overwhelming him like a king poised to attack. For he has stretched out his hand against God 26 and has vaunted himself against the Almighty, rushing headlong at Him 27 with a thick, studded shield. Were you the first man ever born? 8 Were you brought forth before the hills? Do you listen in on the council of God 9 or limit wisdom to yourself? What do you know that we do not? 10 What do you understand that is not clear to us? Both the gray-haired and the aged are on our 11 side— men much older th" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 4, + "text": "| 479 Is there no end to your long-winded 4 speeches? What provokes you to continue testifying? I could also speak like you if you were in my place; 5 I could heap up words against you and shake my head at you. But I would encourage you with my mouth, and the consolation of my lips would 6 bring relief. Even if I speak, my pain is not relieved, 7 and if I hold back, how will it go away? Surely He has now exhausted me; 8 You have devastated all my family. You have bound me, and it has become a witness; 9 my frailty rises up and testifies against me. His anger has torn me and opposed me; 10 He gnashes His teeth at me. My adversary pierces me with His eyes. They open their mouths against me 11 and strike my cheeks with contempt; they join together against me. God has delivered me to unjust men; 12 He has thrown me to the clutches of the wicked. I was at ease, but He shattered me; 13 He seized me by the neck and crushed me. He has set me up as His target; His archers surround me. 14 15 He pierces my kidneys without mercy and spills my gall on the ground. He breaks me with wound upon wound; He rushes me like a mighty warrior. 16 I have sewn sackcloth over my skin; I have buried my horn in the dust. 17 My face is red with weeping, and deep shadows ring my eyes; 18 yet my hands are free of violence and my prayer is pure. O earth, do not cover my blood; 19 may my cry for help never be laid to rest. 20 Even now my witness is in heaven, and my advocate is on high. 21 My friends are my" + }, + { + "verseNum": 5, + "text": "5 7 Indeed, the lamp of the wicked is Though I cry out, ‘Violence!’ I get no 6 extinguished; the flame of his fire does not glow. The light in his tent grows dark, 7 and the lamp beside him goes out. His vigorous stride is shortened, 8 and his own schemes trip him up. For his own feet lead him into a net, and he wanders into its mesh. 9 10 A trap seizes his heel; a snare grips him. 11 A noose is hidden in the ground, and a trap lies in his path. 12 Terrors frighten him on every side and harass his every step. 13 His strength is depleted, and calamity is ready at his side. It devours patches of his skin; 14 the firstborn of death devours his limbs. 15 He is torn from the shelter of his tent and is marched off to the king of terrors. 16 Fire resides in his tent; burning sulfur rains down on his dwelling. 17 The roots beneath him dry up, and the branches above him wither away. The memory of him perishes from the earth, 18 and he has no name in the land. He is driven from light into darkness 19 and is chased from the inhabited world. He has no offspring or posterity among his 20 people, no survivor where he once lived. 21 Those in the west are appalled at his fate, while those in the east tremble in horror. Surely such is the dwelling of the wicked and the place of one who does not know Job: My Redeemer Lives God.” 19 2 Then Job answered: 3 “How long will you torment me and crush me with your words? Ten times now you have reproached me; 4 you shamelessly mistreat me. 5 Even if I" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 10, + "text": "| 481 If you say, ‘Let us persecute him, a 29 since the root of the matter lies ’ with him, then you should fear the sword yourselves, because wrath brings punishment by the sword, so that you may know there is a Zophar: Destruction Awaits the Wicked judgment.” 20 2 Then Zophar the Naamathite replied: “So my anxious thoughts compel me to answer, 3 because of the turmoil within me. I have heard a rebuke that insults me, and my understanding prompts a reply. 4 Do you not know that from antiquity, since man was placed on the earth, the triumph of the wicked has been brief 5 6 and the joy of the godless momentary? Though his arrogance reaches the heavens, 7 and his head touches the clouds, he will perish forever, like his own dung; 8 those who had seen him will ask, ‘Where is he?’ He will fly away like a dream, never to be found; 9 he will be chased away like a vision in the night. 10 The eye that saw him will see him no more, and his place will no longer behold him. 11 His sons will seek the favor of the poor, for his own hands must return his wealth. 12 The youthful vigor that fills his bones will lie down with him in the dust. 13 Though evil is sweet in his mouth and he conceals it under his tongue, 14 15 though he cannot bear to let it go and keeps it in his mouth, yet in his stomach his food sours into the venom of cobras within him. 16 He swallows wealth but vomits it out; God will force it from his stomach. 17 He will suck the poison of cobras; the fangs of a viper will ki" + }, + { + "verseNum": 11, + "text": "11 29 12 They send forth their little ones like a flock; Have you never asked those who travel their children skip about, singing to the tambourine and lyre 30 the roads? Do you not accept their reports? 13 and making merry at the sound of the Indeed, the evil man is spared from the day of flute. a 14 15 They spend their days in prosperity and go down to Sheol in peace. Yet they say to God: ‘Leave us alone! For we have no desire to know Your ways. Who is the Almighty, that we should serve Him, 16 and what would we gain if we pray to Him?’ Still, their prosperity is not in their own hands, 31 calamity, delivered from the day of wrath. Who denounces his behavior to his face? 32 Who repays him for what he has done? He is carried to the grave, 33 and watch is kept over his tomb. The clods of the valley are sweet to him; 34 everyone follows behind him, and those before him are without number. So how can you comfort me with empty so I stay far from the counsel of the words? 17 wicked. How often is the lamp of the wicked put out? Does disaster come upon them? Does God, in His anger, apportion 18 destruction? For your answers remain full of Eliphaz: Can a Man Be of Use to God? falsehood.” 22 2 Then Eliphaz the Temanite replied: 19 Are they like straw before the wind, like chaff swept away by a storm? It is said that God lays up one’s punishment 3 “Can a man be of use to God? Can even a wise man benefit Him? Does it delight the Almighty that you are for his children. 20 Let God repay" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 8, + "text": "| 483 16 Will you stay on the ancient path that wicked men have trod? They were snatched away before their time, and their foundations were swept away 17 by a flood. 18 They said to God, ‘Depart from us. What can the Almighty do to us?’ But it was He who filled their houses with good things; 19 so I stay far from the counsel of the wicked. The righteous see it and are glad; the innocent mock them: ‘Surely our foes are destroyed, 20 21 and fire has consumed their excess.’ 22 Reconcile now and be at peace with Him; thereby good will come to you. Receive instruction from His mouth, 23 and lay up His words in your heart. If you return to the Almighty, you will be 24 restored. If you remove injustice from your tents and consign your gold to the dust 25 and the gold of Ophir to the stones of the ravines, 26 then the Almighty will be your gold and the finest silver for you. 27 Surely then you will delight in the Almighty and lift up your face to God. 28 You will pray to Him, and He will hear you, and you will fulfill your vows. Your decisions will be carried out, 29 and light will shine on your ways. When men are brought low and you say, ‘Lift 30 them up!’ then He will save the lowly. He will deliver even one who is not innocent, rescuing him through the cleanness of Job Longs for God your hands.” 23 2 Then Job answered: 3 “Even today my complaint is bitter. His hand is heavy despite my groaning. If only I knew where to find Him, so that I could go to His seat. I would plead my case" + }, + { + "verseNum": 9, + "text": "9 The fatherless infant is snatched from the they are brought low and gathered up like all breast; 25 others; 10 the nursing child of the poor is seized for a debt. Without clothing, they wander about naked. 11 They carry the sheaves, but still go hungry. They crush olives within their walls; 12 they tread the winepresses, but go thirsty. From the city, men groan, 13 and the souls of the wounded cry out, yet God charges no one with wrongdoing. 3 they are cut off like heads of grain. If this is not so, then who can prove me a liar Bildad: Man Cannot Be Righteous and reduce my words to nothing?” 25 2 Then Bildad the Shuhite replied: “Dominion and awe belong to God; He establishes harmony in the heights of heaven. Then there are those who rebel against the light, 14 not knowing its ways or staying on its paths. When daylight is gone, the murderer rises 15 to kill the poor and needy; in the night he is like a thief. The eye of the adulterer watches for twilight. Thinking, ‘No eye will see me,’ he covers 16 his face. In the dark they dig through houses; by day they shut themselves in, never to experience the light. 17 For to them, deep darkness is their morning; surely they are friends with the terrors of 18 darkness! They are but foam on the surface of the water; their portion of the land is cursed, so that no one turns toward their 19 vineyards. As drought and heat consume the melting 20 snow, so Sheol steals those who have sinned. The womb forgets them; the worm feeds on them;" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 17, + "text": "| 485 For what is the hope of the godless when he 6 Who then can understand Job Affirms His Integrity the thunder of His power?” 27 2 Job continued his discourse: “As surely as God lives, who has deprived me of justice— 3 the Almighty, who has embittered my soul— as long as my breath is still within me 4 and the breath of God remains in my nostrils, my lips will not speak wickedness, 5 and my tongue will not utter deceit. I will never say that you are right; 6 I will maintain my integrity until I die. I will cling to my righteousness and never let go. As long as I live, my conscience will not The Wicked Man’s Portion accuse me. 7 May my enemy be like the wicked 8 and my opponent like the unjust. 9 is cut off, when God takes away his life? Will God hear his cry 10 when distress comes upon him? 11 Will he delight in the Almighty? Will he call upon God at all times? I will instruct you in the power of God. I will not conceal the ways of the 12 Almighty. 13 Surely all of you have seen it for yourselves. Why then do you keep up this empty talk? This is the wicked man’s portion from God— the heritage the ruthless receive from the 14 Almighty. Though his sons are many, they are destined for the sword; 15 and his offspring will never have enough food. 16 His survivors will be buried by the plague, and their widows will not weep for them. 17 Though he heaps up silver like dust and piles up a wardrobe like clay, what he lays up, the righteous will wear, and his silver will be divided b" + }, + { + "verseNum": 18, + "text": "18 11 19 20 Coral and quartz are unworthy of mention; the price of wisdom is beyond rubies. cannot compare to it, Topaz from Cush a nor can it be valued in pure gold. 21 From where, then, does wisdom come, and where does understanding dwell? It is hidden from the eyes of every living 22 thing b and concealed from the birds of the air. 23 Abaddon and Death say, ‘We have heard a rumor about it.’ 24 But God understands its way, and He knows its place. 25 For He looks to the ends of the earth and sees everything under the heavens. 26 When God fixed the weight of the wind and measured out the waters, 27 when He set a limit for the rain and a path for the thunderbolt, 28 then He looked at wisdom and appraised it; He established it and searched it out. And He said to man, ‘Behold, the fear of the Lord, that is wisdom, and to turn away from evil is Job’s Former Blessings understanding.’ ” 29 2 And Job continued his discourse: 3 “How I long for the months gone by, for the days when God watched over me, when His lamp shone above my head, 4 and by His light I walked through the c darkness, when I was in my prime, 5 when the friendship of God rested on my tent, 6 when the Almighty was still with me and my children were around me, when my steps were bathed in cream 7 and the rock poured out for me streams of oil! When I went out to the city gate 8 and took my seat in the public square, 9 the young men saw me and withdrew, and the old men rose to their feet. The princes refrained from spea" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 12, + "text": "| 487 ground. They cried out among the shrubs 8 and huddled beneath the nettles. 9 A senseless and nameless brood, they were driven off the land. And now they mock me in song; 10 I have become a byword among them. They abhor me and keep far from me; 11 they do not hesitate to spit in my face. Because God has unstrung my bow and a afflicted me, 12 they have cast off restraint in my presence. The rabble arises at my right; they lay snares for my feet and build siege ramps against me. 13 They tear up my path; b 14 they profit from my destruction, with no one to restrain them. Job’s Prosperity Becomes Calamity They advance as through a wide breach; through the ruins they keep rolling in. 15 Terrors are turned loose against me; they drive away my dignity as by the wind, when he cries for help in his distress. Have I not wept for those in trouble? 26 Has my soul not grieved for the needy? But when I hoped for good, evil came; 27 when I looked for light, darkness fell. 28 I am churning within and cannot rest; days of affliction confront me. I go about blackened, but not by the sun. I stand up in the assembly and cry for e 29 help. f I have become a brother of jackals, 30 a companion of ostriches. My skin grows black and peels, 31 and my bones burn with fever. My harp is tuned to mourning Job’s Final Appeal and my flute to the sound of weeping. 31 2 “I have made a covenant with my eyes. How then could I gaze with desire at a virgin? For what is the allotment of God from above, or the" + }, + { + "verseNum": 13, + "text": "13 33 c If I have rejected the cause of my manservant if I have covered my transgressions like 14 or maidservant 34 Adam when they made a complaint against me, what will I do when God rises to judge? 15 by hiding my guilt in my heart, because I greatly feared the crowds How will I answer when called to account? and the contempt of the clans terrified me, Did not He who made me in the womb also make them? Did not the same One form us in the womb? 16 17 If I have denied the desires of the poor or allowed the widow’s eyes to fail, if I have eaten my morsel alone, 18 not sharing it with the fatherless— though from my youth I reared him as would a father, 19 and from my mother’s womb I guided the widow— if I have seen one perish for lack of clothing, a 20 or a needy man without a cloak, if his heart has not blessed me 21 for warming him with the fleece of my sheep, if I have lifted up my hand against the fatherless 22 because I saw that I had support in the gate, then may my arm fall from my shoulder 23 and be torn from its socket. For calamity from God terrifies me, 24 and His splendor I cannot overpower. If I have put my trust in gold 25 or called pure gold my security, if I have rejoiced in my great wealth b because my hand had gained so much, 26 if I have beheld the sun 27 in its radiance or the moon moving in splendor, so that my heart was secretly enticed 28 and my hand threw a kiss from my mouth, 29 this would also be an iniquity to be judged, for I would have denied God on" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 27, + "text": "| 489 10 It is not only the old who are wise, or the elderly who understand justice. 11 Therefore I say, ‘Listen to me; I too will declare what I know.’ Indeed, I waited while you spoke; I listened to your reasoning; 12 as you searched for words, I paid you full attention. But no one proved Job wrong; 13 not one of you rebutted his arguments. So do not claim, ‘We have found wisdom; 14 9 Surely you have spoken in my hearing, and I have heard these very words: ‘I am pure, without transgression; 10 I am clean, with no iniquity in me. 11 Yet God finds occasions against me; He counts me as His enemy. 12 He puts my feet in the stocks; He watches over all my paths.’ Behold, you are not right in this matter. 13 I will answer you, for God is greater than man. b let God, not man, refute him.’ 14 Why do you complain to Him But Job has not directed his words against me, that He answers nothing a man asks? For God speaks in one way and in another, 15 15 and I will not answer him with your yet no one notices. arguments. In a dream, Job’s friends are dismayed, with no more to 16 say; words have escaped them. 17 Must I wait, now that they are silent, now that they stand and no longer reply? 18 I too will answer; yes, I will declare what I know. 19 For I am full of words, and my spirit within me compels me. Behold, my belly is like unvented wine; 20 in a vision in the night, when deep sleep falls upon men 16 as they slumber on their beds, 17 He opens their ears and terrifies them with warning" + }, + { + "verseNum": 28, + "text": "28 16 He redeemed my soul from going down to the 17 If you have understanding, hear this; 29 Pit, and I will live to see the light.’ 30 Behold, all these things God does to a man, two or even three times, to bring back his soul from the Pit, 31 that he may be enlightened with the light of life. 32 Pay attention, Job, and listen to me; be silent, and I will speak. 33 But if you have something to say, answer me; speak up, for I would like to vindicate you. But if not, then listen to me; Elihu Confirms God’s Justice be quiet, and I will teach you wisdom.” 34 2 Then Elihu continued: 3 “Hear my words, O wise men; give ear to me, O men of learning. For the ear tests words 4 as the mouth tastes food. 5 6 Let us choose for ourselves what is right; let us learn together what is good. For Job has declared, ‘I am righteous, yet God has deprived me of justice. Would I lie about my case? My wound is incurable, though I am without transgression.’ 7 What man is like Job, 8 who drinks up derision like water? 9 He keeps company with evildoers and walks with wicked men. For he has said, ‘It profits a man nothing 10 that he should delight in God.’ Therefore listen to me, O men of understanding. Far be it from God to do wrong, 11 and from the Almighty to act unjustly. For according to a man’s deeds He repays him; 12 according to a man’s ways He brings consequences. Indeed, it is true that God does not act 13 wickedly, and the Almighty does not pervert justice. Who gave Him charge over the earth?" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 18, + "text": "| 491 Elihu Describes God’s Power 36 2 And Elihu continued: “Bear with me a little longer, and I will show you 3 that there is more to be said on God’s behalf. a I get my knowledge from afar, 4 and I will ascribe justice to my Maker. For truly my words are free of falsehood; one perfect in knowledge is with you. 5 Indeed, God is mighty, but He despises no 6 one; He is mighty in strength of understanding. He does not keep the wicked alive, 7 but He grants justice to the afflicted. He does not take His eyes off the righteous, but He enthrones them with kings and exalts them forever. 8 9 And if men are bound with chains, caught in cords of affliction, then He tells them their deeds 10 and how arrogantly they have transgressed. He opens their ears to correction 11 and commands that they turn from iniquity. If they obey and serve Him, 12 then they end their days in prosperity and their years in happiness. b But if they do not obey, then they perish by the sword and die without knowledge. The godless in heart harbor resentment; 14 even when He binds them, they do not cry for help. They die in their youth, 15 c among the male shrine prostitutes. God rescues the afflicted by their affliction and opens their ears in oppression. 16 Indeed, He drew you from the jaws of distress to a spacious and broad place, to a table full of richness. 18 the wicked; judgment and justice have seized you. Be careful that no one lures you with riches; do not let a large bribe lead you astray. in their af" + }, + { + "verseNum": 19, + "text": "19 a 6 Can your wealth 20 or all your mighty effort keep you from distress? Do not long for the night, 21 For He says to the snow, ‘Fall on the earth,’ and to the gentle rain, ‘Pour out a mighty 7 downpour.’ when people vanish from their homes. He seals up the hand of every man, 8 Be careful not to turn to iniquity, 22 for this you have preferred to affliction. Behold, God is exalted in His power. 23 Who is a teacher like Him? Who has appointed His way for Him, 24 or told Him, ‘You have done wrong’? Remember to magnify His work, 25 which men have praised in song. All mankind has seen it; 26 men behold it from afar. Indeed, God is great—beyond our 27 knowledge; the number of His years is unsearchable. For He draws up drops of water 28 which distill the rain from the mist, which the clouds pour out 29 and shower abundantly on mankind. Furthermore, who can understand how the 30 clouds spread out, how the thunder roars from His pavilion? See how He scatters His lightning around 31 Him b For by these He judges and covers the depths of the sea. the nations and provides food in abundance. 32 He fills His hands with lightning 33 and commands it to strike its mark. The thunder declares His presence; Elihu Proclaims God’s Majesty even the cattle regard the rising storm. 37 2 “At this my heart also pounds and leaps from its place. Listen closely to the thunder of His voice and the rumbling that comes from His 3 mouth. He unleashes His lightning beneath the whole 4 sky so that all men ma" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 2, + "text": "" + }, + { + "verseNum": 3, + "text": "and" + }, + { + "verseNum": 41, + "text": "| 493 38 2 Then the LORD answered Job out of the whirlwind and said: a “Who is this who obscures My counsel b 3 by words without knowledge? like a man; Now brace yourself c 4 I will question you, and you shall inform Me. Where were you when I laid the foundations 5 of the earth? Tell Me, if you have understanding. Who fixed its measurements? Surely you know! 21 so you can lead it back to its border? Do you know the paths to its home? 22 Surely you know, for you were already born! And the number of your days is great! 23 24 Have you entered the storehouses of snow or observed the storehouses of hail, which I hold in reserve for times of trouble, for the day of war and battle? 25 In which direction is the lightning dispersed, or the east wind scattered over the earth? 26 Who cuts a channel for the flood or clears a path for the thunderbolt, 27 to bring rain on a barren land, 6 Or who stretched a measuring line across on a desert where no man lives, it? d 28 to satisfy the parched wasteland 7 On what were its foundations set, or who laid its cornerstone, and make it sprout with tender grass? 29 Does the rain have a father? while the morning stars sang together and all the sons of God shouted for joy? 8 Who has begotten the drops of dew? From whose womb does the ice emerge? 30 Who enclosed the sea behind doors 9 when it burst forth from the womb, 10 when I made the clouds its garment and thick darkness its blanket, 11 when I fixed its boundaries and set in place its bars and door" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "The LORD Speaks of His Creation 20 39 “Do you know when mountain goats 2 give birth? Have you watched the doe bear her fawn? Can you count the months they are pregnant? Do you know the time they give birth? 3 They crouch down and bring forth their 4 young; they deliver their newborn. Their young ones thrive and grow up in the 5 open field; they leave and do not return. 21 Do you make him leap like a locust, striking terror with his proud snorting? He paws in the valley and rejoices in his 22 strength; he charges into battle. 23 He laughs at fear, frightened of nothing; he does not turn back from the sword. b 24 A quiver rattles at his side, along with a flashing spear and lance. Trembling with excitement, he devours the distance; 25 he cannot stand still when the ram’s horn sounds. c Who set the wild donkey free? At the blast of the horn, he snorts with 6 Who released the swift donkey from the fervor. harness? 7 I made the wilderness his home and the salt flats his dwelling. He scorns the tumult of the city 8 and never hears the shouts of a driver. 9 He roams the mountains for pasture, searching for any green thing. Will the wild ox consent to serve you? 10 Will he stay by your manger at night? Can you hold him to the furrow with a 11 harness? Will he plow the valleys behind you? Can you rely on his great strength? 12 Will you leave your hard work to him? Can you trust him to bring in your grain and gather it to your threshing floor? 13 a The wings of the ostrich flap joyfull" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 7, + "text": "Hebrew ; the value or weight of the kesitah is no longer known. Psalms Psalm 1 The Two Paths" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 11, + "text": "Or ; BYZ and TR your reasonable service" + }, + { + "verseNum": 26, + "text": "| 495 8 4 Would you really annul My justice? 9 Would you condemn Me to justify yourself? Do you have an arm like God’s? 10 5 Will he make a covenant with you to take him as a slave for life? Can you pet him like a bird 6 or put him on a leash for your maidens? Can you thunder with a voice like His? Will traders barter for him 7 Then adorn yourself with majesty and or divide him among the merchants? 11 splendor, and clothe yourself with honor and glory. Unleash the fury of your wrath; 12 look on every proud man and bring him low. 8 Can you fill his hide with harpoons or his head with fishing spears? If you lay a hand on him, 9 you will remember the battle and never repeat it! 13 14 Look on every proud man and humble him; trample the wicked where they stand. a Bury them together in the dust; imprison them in the grave. Then I will confess to you 15 that your own right hand can save you. Look at Behemoth, which I made along with 12 10 Surely hope of overcoming him is false. 11 Is not the sight of him overwhelming? No one is so fierce as to rouse Leviathan. Then who is able to stand against Me? e Who has given to Me that I should repay him? Everything under heaven is Mine. 16 you. He feeds on grass like an ox. See the strength of his loins 17 and the power in the muscles of his belly. His tail sways like a cedar; 18 the sinews of his thighs are tightly knit. 19 His bones are tubes of bronze; his limbs are rods of iron. He is the foremost of God’s works; b 20 only his Maker can dr" + }, + { + "verseNum": 27, + "text": "27 28 He regards iron as straw and bronze as rotten wood. 29 No arrow can make him flee; slingstones become like chaff to him. a 30 A club is regarded as straw, and he laughs at the sound of the lance. His undersides are jagged potsherds, 31 spreading out the mud like a threshing sledge. 32 He makes the depths seethe like a cauldron; he makes the sea like a jar of ointment. 33 He leaves a glistening wake behind him; one would think the deep had white hair! 34 Nothing on earth is his equal— a creature devoid of fear! He looks down on all the haughty; Job Submits Himself to the LORD he is king over all the proud.” 42 2 Then Job replied to the LORD: 3 “I know that You can do all things and that no plan of Yours can be thwarted. You asked, ‘Who is this b who conceals My counsel without knowledge?’ Surely I spoke of things I did not understand, 4 things too wonderful for me to know. You said, ‘Listen now, and I will speak. c 5 I will question you, and you shall inform Me.’ My ears had heard of You, 6 but now my eyes have seen You. Therefore I despise myself, The LORD Rebukes Job’s Friends and I repent in dust and ashes.” 7 8 kindled against you and your two friends. For you have not spoken about Me accurately, as My So now, take seven bulls and servant Job has. seven rams, go to My servant Job, and sacrifice a burnt offering for yourselves. Then My servant Job will pray for you, for I will accept his prayer and not deal with you according to your folly. For you have not spoken acc" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 3, + "text": "f 32 Leo b 3 c 3 Arcturus about the flooding of the Nile Or or or lead out the Bear and her cubs? Do you know the laws of the heavens? Can you set their dominion over the 34 earth? 35 Can you command the clouds so that a flood of water covers you? Can you send the lightning bolts on their 36 way? g Do they report to you, ‘Here we are’? 37 Who has put wisdom in the heart or given understanding to the mind? Who has the wisdom to count the clouds? Or who can tilt the water jars of the 38 heavens when the dust hardens into a mass and the clods of earth stick together? 39 41 40 Can you hunt the prey for a lioness or satisfy the hunger of young lions when they crouch in their dens and lie in wait in the thicket? Who provides food for the raven when its young cry out to God who set its core in place as they wander about for lack of food? Who has given the ibis wisdom Or , that is, wisdom e 32 d 6 Or Or g 36 Cited in" + }, + { + "verseNum": 4, + "text": "494 |" + } + ] + } + ] + }, + { + "name": "Psalms", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–12) healed was over forty years old. 23 On their release, Peter and John returned to their own people and reported everything that 24 the chief priests and elders had said to them. When the believers heard this, they lifted up their voices to God with one accord. “Sovereign Lord,” they said, “You made the heaven and the You earth and the sea and everything in them. spoke by the Holy Spirit through the mouth of c 25 our father David: Your servant, d 11 25 f" + }, + { + "verseNum": 7, + "text": "; literally ;" + }, + { + "verseNum": 9, + "text": "(see also LXX) Therefore repent! Otherwise I will come to you shortly and wage war against them with 17 the sword of My mouth. He who has an ear, let him hear what the Spirit says to the churches. To the one who overcomes, I will give the hidden manna. I will also give him a white stone inscribed with a new name, known only to the one who To the Church in Thyatira receives it." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–8) 13 Then a messenger came to David and reported, “The hearts of the men of Israel are with Absa- 14 lom.” And David said to all the servants with him in Jerusalem, “Arise and let us flee, or we will not escape from Absalom! We must leave quickly, or he will soon overtake us, heap disaster on us, and 15 put the city to the sword.” The king’s servants replied, “Whatever our 16 lord the king decides, we are your servants.” Then the king set out, and his entire household followed him. But he left behind ten concubines 17 to take care of the palace. 18 So the king set out with all the people follow- and all ing him. He stopped at the last house, his servants marched past him—all the Chere- thites and Pelethites, and six hundred Gittites 19 who had followed him from Gath. 20 Then the king said to Ittai the Gittite, “Why should you also go with us? Go back and stay with the new king, since you are both a foreigner In fact, you and an exile from your homeland. arrived only yesterday; should I make you wan- der around with us today while I do not know where I am going? Go back and take your broth- ers with you. May the LORD show you loving 21 devotion and faithfulness. ” d But Ittai answered the king, “As surely as the LORD lives, and as my lord the king lives, wher- ever my lord the king may be, whether it means life or death, there will your servant be!” “Go in peace,” said the king. So Absalom got up and went to Hebron. a 30 b 7 set your field on fire.” LXX includes in Hebron d" + }, + { + "verseNum": 4, + "text": "4 To the LORD I cry aloud, and He answers me from His holy mountain. 5 Psalm 5 Give Ear to My Words Selah For the choirmaster, to be accompanied by flutes. A Psalm of David. I lie down and sleep; 6 I wake again, for the LORD sustains me. I will not fear the myriads 7 set against me on every side. Arise, O LORD! Save me, O my God! Strike all my enemies on the jaw; 8 break the teeth of the wicked. Salvation belongs to the LORD; may Your blessing be on Your people. Selah Psalm 4 Answer Me When I Call! For the choirmaster. With stringed instruments. A Psalm of David. 1 Answer me when I call, O God of my righteousness! You have relieved my distress; 2 show me grace and hear my prayer. How long, O men, will my honor be maligned? How long will you love vanity and seek a Selah after lies ? 3 Know that the LORD has set apart the godly 4 for Himself; b the LORD hears when I call to Him. Be angry, yet do not sin; on your bed, search your heart and be Selah 5 still. Offer the sacrifices of the righteous and trust in the LORD. 6 1 2 Give ear to my words, O LORD; consider my groaning. Attend to the sound of my cry, 3 my King and my God, for to You I pray. In the morning, O LORD, You hear my voice; at daybreak I lay my plea before You and wait in expectation. 4 For You are not a God who delights in 5 wickedness; no evil can dwell with You. The boastful cannot stand in Your presence; 6 You hate all workers of iniquity. You destroy those who tell lies; 7 the LORD abhors the man of bloodshed a" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 4, + "text": "NE and WH 20 21 But this is not the way you came to know Christ. Surely you heard of Him and were 22 taught in Him—in keeping with the truth that is to put off your former way of life, in Jesus— your old self, which is being corrupted by its de- 24 ceitful desires; to be renewed in the spirit of and to put on the new self, created your minds; 25 to be like God in true righteousness and holiness. 23 d 26 Therefore each of you must put off falsehood and speak truthfully to his neighbor, for we are all members of one another. “Be angry, yet do 27 not sin.” Do not let the sun set upon your anger, 28 and do not give the devil a foothold. He who has been stealing must steal no longer, but must work, doing good with his own hands, that he may have something to share with the 29 one in need. Let no unwholesome talk come out of your mouths, but only what is helpful for building up the one in need and bringing grace to those who 30 listen. And do not grieve the Holy Spirit of God, in whom you were sealed for the day of redemp- 31 tion. Get rid of all bitterness, rage and anger, outcry 32 and slander, along with every form of malice. Be kind and tenderhearted to one another, for- giving each other just as in Christ God forgave Imitators of God you. 5 2 Be imitators of God, therefore, as beloved e and walk in love, just as Christ children, and gave Himself up for us as a fragrant loved us 3 sacrificial offering to God. 5 4 But among you, as is proper among the saints, there must not be e" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 9, + "text": "Or 23 God comes through faith in Jesus Christ to all for all who believe. There is no distinction, 24 have sinned and fall short of the glory of God, and are justified freely by His grace through 25 the redemption that is in Christ Jesus. h God presented Him as an atoning sacrifice in His blood through faith, in order to demonstrate His righteousness, because in His forbearance He 26 had passed over the sins committed beforehand. He did this to demonstrate His righteousness at the present time, so as to be just and to justify 27 the one who has faith in Jesus. 28 Where, then, is boasting? It is excluded. On what principle? On that of works? No, but on that For we maintain that a man is justified of faith. 29 by faith apart from works of the law. 30 Is God the God of Jews only? Is He not the God of Gentiles too? Yes, of Gentiles too, since there is only one God, who will justify the circumcised by faith and the uncircumcised through that 31 same faith. Do we, then, nullify the law by this faith? Cer- Abraham Justified by Faith tainly not! Instead, we uphold the law." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "and" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 2, + "text": "| 499 may he trample me to the ground and leave my honor in the dust. Selah 6 Arise, O LORD, in Your anger; rise up against the fury of my enemies. Awake, my God, and ordain judgment. Let the assembled peoples gather around You; 7 8 take Your seat over them on high. The LORD judges the peoples; vindicate me, O LORD, according to my righteousness and 9 integrity. Put an end to the evil of the wicked, but establish the righteous, O righteous God who searches hearts and d 10 minds. My shield is with God, 11 who saves the upright in heart. 12 God is a righteous judge and a God who feels indignation each day. If one does not repent, 13 14 God will sharpen His sword; He has bent and strung His bow. He has prepared His deadly weapons; He ordains His arrows with fire. 15 Behold, the wicked man travails with evil; he conceives trouble and births falsehood. 16 He has dug a hole and hollowed it out; he has fallen into a pit of his own making. His trouble recoils on himself, 17 and his violence falls on his own head. I will thank the LORD for His righteousness and sing praise to the name of the LORD Most High. Psalm 8 How Majestic Is Your Name! For the choirmaster. According to Gittith.e A Psalm of David. O LORD my God, I take refuge in You; save me and deliver me from all my 2 1 pursuers, or they will shred my soul like a lion O LORD, our Lord, and tear me to pieces with no one to how majestic is Your name in all 3 rescue me. 4 O LORD my God, if I have done this, if injustice is on my h" + }, + { + "verseNum": 3, + "text": "3 When I behold Your heavens, the work of Your fingers, the moon and the stars, 4 which You have set in place— 5 6 what is man that You are mindful of him, a or the son of man that You care for him? You made him a little lower than the angels; You crowned him with glory and honor. You made him ruler of the works of Your hands; b 7 You have placed everything under his feet: all sheep and oxen, 8 and even the beasts of the field, the birds of the air and the fish of the sea, all that swim the paths of the seas. 9 O LORD, our Lord, how majestic is Your name in all the earth! Psalm 9 I Will Give Thanks to the LORD 10 Those who know Your name trust in You, 11 for You, O LORD, have not forsaken those who seek You. 12 13 Sing praises to the LORD, who dwells in Zion; proclaim His deeds among the nations. For the Avenger of bloodshed remembers; He does not ignore the cry of the afflicted. Be merciful to me, O LORD; 14 see how my enemies afflict me! Lift me up from the gates of death, that I may declare all Your praises— that within the gates of Daughter Zion I may rejoice in Your salvation. 15 The nations have fallen into a pit of their making; 16 their feet are caught in the net they have hidden. The LORD is known by the justice He brings; the wicked are ensnared by the work of Higgaion Selah d their hands. For the choirmaster. To the tune of “The Death of the Son.” A Psalm of David.c 17 1 I will give thanks to the LORD with all my 2 heart; I will recount all Your wonders. I will be" + }, + { + "verseNum": 4, + "text": "–6 (see also LXX) 1076 |" + }, + { + "verseNum": 6, + "text": "" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 7, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–7) their own strength is their god.” 12 Are You not from everlasting, O LORD, my God, my Holy One? We will not die. O LORD, You have appointed them to execute judgment; 13 O Rock, You have established them for correction. Your eyes are too pure to look upon evil, and You cannot tolerate wrongdoing. So why do You tolerate the faithless? Why are You silent 14 while the wicked swallow up 15 those more righteous than themselves? You have made men like the fish of the sea, like creeping things that have no ruler. with a hook; The foe pulls all of them up d he catches them in his dragnet, and gathers them in his fishing net; 16 so he rejoices gladly. Therefore he sacrifices to his dragnet and burns incense to his fishing net, for by these things his portion is sumptuous 17 and his food is rich. Will he, therefore, empty his net and continue to slay nations without The LORD Answers Again mercy? 2 2 I will stand at my guard post and station myself on the ramparts. I will watch to see what He will say to me, and how I should answer when corrected. Then the LORD answered me: they gather prisoners like sand. “Write down this vision They scoff at kings a 5 pulls all of them up Look, you scoffers, wonder and perish! b 5 and make rulers an object of scorn. LXX Cited in" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": ". Literally ; also in verse 24 388 | 1 Chronicles 15:25 Moving the Ark to Jerusalem 8 25 26 So David, the elders of Israel, and the com- manders of thousands went with rejoicing to bring the ark of the covenant of the LORD from And because God the house of Obed-edom. helped the Levites who were carrying the ark of the covenant of the LORD, they sacrificed seven 27 bulls and seven rams. 28 Now David was dressed in a robe of fine linen, as were all the Levites who were carrying the ark, as well as the singers and Chenaniah, the di- rector of music for the singers. David also wore a So all Israel brought up the ark of linen ephod. the covenant of the LORD with shouting, with the sounding of rams’ horns and trumpets, and with Michal’s Contempt for David (2 Samuel 6:16) cymbals and the music of harps and lyres. 29 As the ark of the covenant of the LORD was en- tering the City of David, Saul’s daughter Michal looked down from a window and saw King David dancing and celebrating, and she despised him in A Tent for the Ark (2 Samuel 6:17–19) her heart. 16 2 So they brought the ark of God and placed it inside the tent that David had pitched for it. And they presented burnt offerings When David and peace offerings before God. had finished sacrificing the burnt offerings and peace offerings, he blessed the people in the Then he distributed to every name of the LORD. man and woman of Israel a loaf of bread, a date 4 cake, and a raisin cake. 3 a David appointed some of the Levites to minis" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "| 501 7 He says to himself, “I will not be moved; from age to age I am free of distress.” a 4 If the foundations are destroyed, what can the righteous do?” His mouth is full of cursing, deceit, and The LORD is in His holy temple; 8 violence; the LORD is on His heavenly throne. trouble and malice are under his tongue. His eyes are watching closely; 5 He lies in wait near the villages; they examine the sons of men. 9 in ambush he slays the innocent; his eyes watch in stealth for the helpless. He lies in wait like a lion in a thicket; he lurks to seize the oppressed; b he catches the lowly in his net. They are crushed and beaten down; 10 11 the helpless fall prey to his strength. He says to himself, “God has forgotten; He hides His face and never sees.” 12 13 Arise, O LORD! Lift up Your hand, O God! Do not forget the helpless. Why has the wicked man renounced God? 14 He says to himself, “You will never call me to account.” But You have regarded trouble and grief; You see to repay it by Your hand. The victim entrusts himself to You; 15 You are the helper of the fatherless. Break the arm of the wicked and evildoer; call him to account for his wickedness until none is left to be found. 16 17 The LORD is King forever and ever; the nations perish from His land. You have heard, O LORD, the desire of the humble; 18 You will strengthen their hearts. You will incline Your ear, to vindicate the fatherless and oppressed, that the men of the earth may strike terror no more. Psalm 11 In the" + }, + { + "verseNum": 2, + "text": "2 2 How long must I wrestle in my soul, He who walks with integrity 3 with sorrow in my heart each day? How long will my enemy dominate me? 3 and practices righteousness, who speaks the truth from his heart, Consider me and respond, O LORD my God. 4 Give light to my eyes, lest I sleep in death, lest my enemy say, “I have overcome him,” 5 and my foes rejoice when I fall. 6 But I have trusted in Your loving devotion; my heart will rejoice in Your salvation. I will sing to the LORD, for He has been good to me. Psalm 14 The Fool Says There Is No God (Ps. 53:1–6 ; Isa. 59:1–17 ; Rom. 3:9–20) For the choirmaster. Of David. 1 a The fool says in his heart, “There is no God.” 2 They are corrupt; their acts are vile. There is no one who does good. The LORD looks down from heaven upon the sons of men to see if any understand, 3 if any seek God. All have turned away, b who has no slander on his tongue, 4 who does no harm to his neighbor, who casts no scorn on his friend, who despises the vile 5 but honors those who fear the LORD, who does not revise a costly oath, who lends his money without interest and refuses a bribe against the innocent. He who does these things will never be shaken. Psalm 16 The Presence of the LORD" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 8, + "text": "–11 (see also LXX) h 30 g 28 e 21 ; similarly in verse 14 staying b 5 d 15 ; BYZ and TR ;" + }, + { + "verseNum": 10, + "text": "‘You will not let Your Holy One see decay.’ c 33 to- 36 51" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "–50) 22 2 And David sang this song to the LORD on the day the LORD had delivered him from the hand of all his enemies and from the hand of Saul. Michal e 18 Saph Two Hebrew manuscripts, some LXX manuscripts, and Syriac He said: Sippai ; also in verses 18, 20, and 22 ; see 1 Chronicles 20:4. . is a variant of the brother of the giant c 16 Or See 1 Chronicles 20:5; Hebrew does not include ; see 1 Samuel 16:9, 2 Samuel 13:3, and 1 Chronicles 2:13. 2 Samuel 22:37 | 303 20 “The LORD is my rock, 3 my fortress, and my deliverer. My God is my rock, in whom I take refuge, my shield, and the horn of my salvation. My stronghold, my refuge, and my Savior, 4 You save me from violence. I will call upon the LORD, who is worthy to be 5 praised; so shall I be saved from my enemies. He brought me out into the open; 21 He rescued me because He delighted in me. The LORD has rewarded me according to my righteousness; 22 He has repaid me according to the cleanness of my hands. For I have kept the ways of the LORD 23 and have not wickedly departed from For the waves of death engulfed me; 6 the torrents of chaos overwhelmed me. The cords of Sheol entangled me; 7 the snares of death confronted me. In my distress I called upon the LORD; my God. 24 For all His ordinances are before me; 25 I have not disregarded His statutes. And I have been blameless before Him and kept myself from iniquity. I cried out to my God. So the LORD has repaid me according to my And from His temple He heard my voice, 8 and my" + }, + { + "verseNum": 7, + "text": ") according to the cleanness of my hands e 36 brew manuscripts (see also" + }, + { + "verseNum": 10, + "text": "); most Hebrew manuscripts stoop down to make me great LXX and Vulgate (see also" + }, + { + "verseNum": 13, + "text": "| 503 15 As for me, I will behold Your face in righteousness; when I awake, I will be satisfied in Your presence. Psalm 18 The LORD Is My Rock (2 Samuel 22:1–51) For the choirmaster. Of David the servant of the LORD, who sang this song to the LORD on the day the LORD had delivered him from the hand of all his enemies and from the hand of Saul. He said: 1 2 I love You, O LORD, my strength. The LORD is my rock, my fortress, and my deliverer. My God is my rock, in whom I take refuge, my shield, and the horn of my salvation, 3 my stronghold. I will call upon the LORD, who is worthy to be 4 praised; so shall I be saved from my enemies. The cords of death encompassed me; 5 the torrents of chaos overwhelmed me. The cords of Sheol entangled me; 6 the snares of death confronted me. In my distress I called upon the LORD; I cried to my God for help. From His temple He heard my voice, 7 and my cry for His help reached His ears. Then the earth shook and quaked, and the foundations of the mountains trembled; 8 they were shaken because He burned with anger. Smoke rose from His nostrils, 9 and consuming fire came from His mouth; glowing coals blazed forth. 10 He parted the heavens and came down with dark clouds beneath His feet. 11 He mounted a cherub and flew; He soared on the wings of the wind. 12 He made darkness His hiding place, and storm clouds a canopy around Him. From the brightness of His presence c 13 His clouds advanced— hailstones and coals of fire. ones and satisfy their sons, T" + }, + { + "verseNum": 14, + "text": "14 32 15 He shot His arrows and scattered the foes; He hurled lightning and routed them. The channels of the sea appeared, and the foundations of the world were 33 It is God who arms me with strength and makes my way clear. 34 He makes my feet like those of a deer and stations me upon the heights. exposed, at Your rebuke, O LORD, 16 35 He trains my hands for battle; my arms can bend a bow of bronze. at the blast of the breath of Your nostrils. You have given me Your shield of salvation; a He reached down from on high and took hold 17 of me; He drew me out of deep waters. 18 He rescued me from my powerful enemy, from foes too mighty for me. 19 They confronted me in my day of calamity, but the LORD was my support. He brought me out into the open; 20 He rescued me because He delighted in me. The LORD has rewarded me according to my righteousness; 21 He has repaid me according to the cleanness of my hands. For I have kept the ways of the LORD 22 and have not wickedly departed from my God. 23 For all His ordinances are before me; 24 I have not disregarded His statutes. And I have been blameless before Him and kept myself from iniquity. So the LORD has repaid me according to my righteousness, according to the cleanness of my hands in His sight. 25 To the faithful You show Yourself faithful, to the blameless You show Yourself 26 blameless; to the pure You show Yourself pure, 27 but to the crooked You show Yourself shrewd. 28 For You save an afflicted people, but You humble those wit" + }, + { + "verseNum": 24, + "text": ") and Your gentleness exalts me. You broaden the path beneath me so that my ankles do not give way. d 25 He was seen c 13 b 11 mountains bolts of lightning and Your help exalts me Or Or or Many He- and You Hebrew; 304 | 2 Samuel 22:38 38 2 I pursued my enemies and destroyed them; The Spirit of the LORD spoke through me; 3 39 I did not turn back until they were consumed. I devoured and crushed them so they could 40 not rise; they have fallen under my feet. 41 You have armed me with strength for battle; You have subdued my foes beneath me. You have made my enemies retreat before 42 me; I destroyed those who hated me. They looked, but there was no one to save 43 them— to the LORD, but He did not answer. I ground them as the dust of the earth; 44 I crushed and trampled them like mud in the streets. You have delivered me from the strife of my people; You have preserved me as the head of nations; 45 a people I had not known shall serve me. 46 Foreigners cower before me; when they hear me, they obey me. a Foreigners lose heart and come trembling strongholds. 47 from their The LORD lives, and blessed be my Rock! 48 And may God, the Rock of my salvation, be exalted— the God who avenges me 49 and brings down nations beneath me, who frees me from my enemies. 50 You exalt me above my foes; You rescue me from violent men. b Therefore I will praise You, O LORD, among 51 the nations; I will sing praises to Your name. Great salvation He brings to His king. David’s Last Song He shows loving d" + }, + { + "verseNum": 45, + "text": "); MT chief among the captains or He was called Adino the Eznite because of g 9 Dodo Or the favorite of the Strong One of Israel f 8 e 8 ; see 1 Chronicles 11:11. Or 11:11); Hebrew Some LXX manuscripts (see also 1 Chronicles is a variant of ; see 1 Chronicles 27:4. 13 2 Samuel 24:2 | 305 14 At harvest time, three of the thirty chief men went down to David at the cave of Adullam, while a company of Philistines was encamped in the Valley of Rephaim. At that time David was in the stronghold, and the garrison of the Philis- tines was at Bethlehem. David longed for wa- ter and said, “Oh, that someone would get me a drink of water from the well near the gate of 16 Bethlehem!” 15 17 So the three mighty men broke through the Philistine camp, drew water from the well near the gate of Bethlehem, and brought it back to Da- vid. But he refused to drink it; instead, he poured it out to the LORD, saying, “Far be it from me, O LORD, to do this! Is this not the blood of the men who risked their lives?” So he refused to drink it. 18 Such were the exploits of the three mighty men. a Now Abishai, the brother of Joab and son of Ze- ruiah, was chief of the Three, and he wielded his 19 spear against three hundred men, killed them, Was he and won a name along with the Three. not more honored than the Three? And he be- came their commander, even though he was not 20 included among the Three. b c d 21 And Benaiah son of Jehoiada was a man of valor from Kabzeel, a man of many exploits. He of Moab, and" + }, + { + "verseNum": 49, + "text": "De. 32:43" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 4, + "text": "(see also LXX) But if it is by works, then it is no longer grace; otherwise work is no longer work. 1 Kings 19:10, 14 did they stumble so as to lose their share?" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–13) and beatings cleanse the inmost parts. 21 The king’s heart is a waterway in the 2 hand of the LORD; He directs it where He pleases. 3 All a man’s ways seem right to him, but the LORD weighs the heart. To do righteousness and justice 4 is more desirable to the LORD than sacrifice. Haughty eyes and a proud heart— the guides of the wicked—are sin. 6 The plans of the diligent bring plenty, as surely as haste leads to poverty. Making a fortune by a lying tongue is a vanishing mist, a deadly pursuit. The violence of the wicked will sweep them 8 away because they refuse to do what is just. The way of a guilty man is crooked, but the conduct of the innocent is upright. Better to live on a corner of the roof He who loves pleasure will become poor; 18 the one who loves wine and oil will never be rich. The wicked become a ransom for the 19 righteous, and the faithless for the upright. Better to live in the desert 20 than with a contentious and ill-tempered wife. Precious treasures and oil are in the dwelling 21 of the wise, but a foolish man consumes them. He who pursues righteousness and loving 22 devotion finds life, righteousness, and honor. A wise man scales the city of the mighty 23 and pulls down the stronghold in which they trust. 24 He who guards his mouth and tongue keeps his soul from distress. Mocker is the name of the proud and 25 arrogant man— of him who acts with excessive pride. 26 The craving of the slacker kills him because his hands refuse to work. All day long he" + }, + { + "verseNum": 6, + "text": "| 505 Psalm 19 The Heavens Declare the Glory of God Psalm 20 The Day of Trouble For the choirmaster. A Psalm of David. For the choirmaster. A Psalm of David. 1 1 The heavens declare the glory of God; 2 May the LORD answer you in the day of the skies proclaim the work of His hands. trouble; Day after day they pour forth speech; 3 night after night they reveal knowledge. a Without speech or language, b 4 without a sound to be heard, c their voice has gone out into all the earth, their words to the ends of the world. In the heavens He has pitched 5 a tent for the sun. Like a bridegroom emerging from his chamber, 6 like a champion rejoicing to run his course, it rises at one end of the heavens 7 and runs its circuit to the other; nothing is deprived of its warmth. The Law of the LORD is perfect, reviving the soul; the testimony of the LORD is trustworthy, 8 making wise the simple. The precepts of the LORD are right, bringing joy to the heart; the commandments of the LORD are radiant, 9 giving light to the eyes. The fear of the LORD is pure, enduring forever; 10 the judgments of the LORD are true, being altogether righteous. They are more precious than gold, than much pure gold; they are sweeter than honey, than honey from the comb. 11 By them indeed Your servant is warned; in keeping them is great reward. 12 Who can discern his own errors? 13 Cleanse me from my hidden faults. Keep Your servant also from willful sins; may they not rule over me. Then I will be blameless 14 and clea" + }, + { + "verseNum": 7, + "text": "7 8 For the king trusts in the LORD; “He trusts in the LORD, through the loving devotion of the Most let the LORD deliver him; b 8 High, he will not be shaken. Your hand will apprehend all Your enemies; Your right hand will seize those who hate 9 You. You will place them in a fiery furnace at the time of Your appearing. 10 In His wrath the LORD will engulf them, and the fire will consume them. You will wipe their descendants from the 11 earth, and their offspring from the sons of men. 12 Though they intend You harm, the schemes they devise will not prevail. For You will put them to flight 13 when Your bow is trained upon them. Be exalted, O LORD, in Your strength; we will sing and praise Your power. Psalm 22 The Psalm of the Cross" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "–31 ; they led Him away to crucify Him." + }, + { + "verseNum": 7, + "text": ". 948 |" + }, + { + "verseNum": 8, + "text": "and pierced His side, and water and blood flowed out i 48 That is, from noon until three in the afternoon NE and WH" + }, + { + "verseNum": 15, + "text": ". Jesus’ Side Is Pierced" + }, + { + "verseNum": 18, + "text": "; TR includes j 49 filled it with wine vinegar h 48 g 46 in verse 44" + }, + { + "verseNum": 22, + "text": "(see also LXX) 4 i 11 or to the end Literally and TR include ." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "to play f 28 13 16 Therefore, my beloved, flee from idolatry. I speak to reasonable people; judge for yourselves Is not the cup of blessing that we what I say. bless a participation in the blood of Christ? And is not the bread that we break a participation in Because there is one loaf, the body of Christ? we who are many are one body; for we all par- 18 take of the one loaf. 17 19 21 Consider the people of Israel: Are not those who eat the sacrifices fellow partakers in the al- tar? Am I suggesting, then, that food sacrificed 20 to an idol is anything, or that an idol is anything? No, but the sacrifices of pagans are offered to demons, not to God. And I do not want you to be You cannot drink participants with demons. the cup of the Lord and the cup of demons too; 22 you cannot partake in the table of the Lord and Are we trying to pro- the table of demons too. voke the Lord to jealousy? Are we stronger than He? All to God’s Glory" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 3, + "text": "| 507 6 Surely goodness and mercy will follow me My praise for You resounds in the great assembly; 26 I will fulfill my vows before those who fear You. and I will dwell in the house of the LORD forever. Psalm 24 The Earth Is the LORD’s A Psalm of David. The poor will eat and be satisfied; 1 27 those who seek the LORD will praise Him. May your hearts live forever! All the ends of the earth will remember and turn to the LORD. 28 29 All the families of the nations will bow down before Him. For dominion belongs to the LORD and He rules over the nations. All the rich of the earth will feast and worship; all who go down to the dust will kneel 30 before Him— even those unable to preserve their lives. Posterity will serve Him; 31 they will declare the Lord to a new generation. They will come and proclaim His righteousness to a people yet unborn— Psalm 23 all that He has done. The LORD Is My Shepherd" + }, + { + "verseNum": 4, + "text": "4 5 Show me Your ways, O LORD; teach me Your paths. Guide me in Your truth and teach me, 1 Psalm 26 Vindicate Me, O LORD Of David. 6 for You are the God of my salvation; all day long I wait for You. Remember, O LORD, Your compassion and 7 loving devotion, for they are from age to age. Remember not the sins of my youth, nor my rebellious acts; remember me according to Your loving devotion, 8 because of Your goodness, O LORD. Good and upright is the LORD; 9 therefore He shows sinners the way. He guides the humble in what is right 10 and teaches them His way. All the LORD’s ways are loving and faithful 11 to those who keep His covenant and His decrees. For the sake of Your name, O LORD, forgive my iniquity, for it is great. 12 Who is the man who fears the LORD? 13 He will instruct him in the path chosen for him. His soul will dwell in prosperity, 14 and his descendants will inherit the land. 15 The LORD confides in those who fear Him, and reveals His covenant to them. My eyes are always on the LORD, 16 for He will free my feet from the mesh. Turn to me and be gracious, 17 for I am lonely and afflicted. The troubles of my heart increase; 18 free me from my distress. Consider my affliction and trouble, 19 and take away all my sins. Consider my enemies, for they are many, and they hate me with vicious hatred. 20 Guard my soul and deliver me; let me not be put to shame, for I take refuge in You. a 21 May integrity and uprightness preserve me, 22 because I wait for You. Vindicate me," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 10, + "text": "| 509 who speak peace to their neighbors 4 while malice is in their hearts. Repay them according to their deeds and for their works of evil. Repay them for what their hands have done; 5 bring back on them what they deserve. Since they show no regard for the works of the LORD or what His hands have done, He will tear them down 6 and never rebuild them. Blessed be the LORD, 7 for He has heard my cry for mercy. The LORD is my strength and my shield; my heart trusts in Him, and I am helped. Therefore my heart rejoices, 8 and I give thanks to Him with my song. The LORD is the strength of His people, 9 a stronghold of salvation for His anointed. Save Your people and bless Your inheritance; Psalm 29 shepherd them and carry them forever. Ascribe Glory to the LORD A Psalm of David. 1 b Ascribe to the LORD, O heavenly beings, 2 ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; worship the LORD in the splendor of His c 3 holiness. The voice of the LORD is over the waters; 4 the God of glory thunders; the LORD is heard over many waters. The voice of the LORD is powerful; 5 the voice of the LORD is majestic. The voice of the LORD breaks the cedars; 6 the LORD shatters the cedars of Lebanon. d 7 He makes Lebanon skip like a calf, and Sirion like a young wild ox. To You, O LORD, I call; be not deaf to me, O my Rock. For if You remain silent, 2 The voice of the LORD 8 strikes with flames of fire. The voice of the LORD shakes the wilderness; I will be like th" + }, + { + "verseNum": 11, + "text": "11 The LORD gives His people strength; the LORD blesses His people with peace. Psalm 30 You Turned My Mourning into Dancing A Psalm. A song for the dedication of the temple. Of David. 1 I will exalt You, O LORD, for You have lifted me up and have not allowed my foes 2 to rejoice over me. and You healed me. O LORD, You pulled me up from Sheol; 4 You spared me from descending into the Pit. a Sing to the LORD, O you His saints, 5 and praise His holy name. For His anger is fleeting, but His favor lasts a lifetime. 6 Weeping may stay the night, but joy comes in the morning. In prosperity I said, 7 “I will never be shaken.” O LORD, You favored me; You made my mountain stand strong. When You hid Your face, 8 I was dismayed. To You, O LORD, I called, 9 b and I begged my Lord for mercy: “What gain is there in my bloodshed, c in my descent to the Pit? 10 Will the dust praise You? Will it proclaim Your faithfulness? Hear me, O LORD, and have mercy; 11 O LORD, be my helper.” You turned my mourning into dancing; 12 You peeled off my sackcloth and clothed me with joy, that my heart may sing Your praises and not be silent. Psalm 31 O LORD my God, I will give thanks forever. Into Your Hands I Commit My Spirit" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "–24 ; you will be with Me in Paradise.” Matt. 27:45–56 ;" + }, + { + "verseNum": 5, + "text": "Greek 17 He asked them, “What are you discussing so in- tently as you walk along?” 18 They stood still, with sadness on their faces. One of them, named Cleopas, asked Him, “Are You the only visitor to Jerusalem who does not know the things that have happened there in 19 recent days?” “What things?” He asked. “The events involving Jesus of Nazareth,” they answered. “This man was a prophet, powerful in 20 speech and action before God and all the people. Our chief priests and rulers delivered Him up 21 to the sentence of death, and they crucified Him. But we were hoping He was the One who would redeem Israel. And besides all this, it is the 22 third day since these things took place. Furthermore, some of our women astounded 23 us. They were at the tomb early this morning, but they did not find His body. They came and told us they had seen a vision of angels, who said Then some of our com- that Jesus was alive. panions went to the tomb and found it just as the 25 women had described. But Him they did not see.” 24 26 27 Then Jesus said to them, “O foolish ones, and slow of heart to believe all that the prophets Was it not necessary for the have spoken! Christ to suffer these things and then to enter His And beginning with Moses and all the glory?” Prophets, He explained to them what was writ- 28 ten in all the Scriptures about Himself. As they approached the village where they 29 were headed, He seemed to be going farther. But they pleaded with Him, “Stay with us, for it is nearly" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "–11 ; Heb. 11:8–19) 4 2 3 What then shall we say that Abraham, our forefather according to the flesh, has dis- If Abraham was indeed justified by covered? works, he had something to boast about, but not For what does the Scripture say? before God. “Abraham believed God, and it was credited to 4 him as righteousness.” i 5 6 Now the wages of the worker are not credited However, to the as a gift, but as an obligation. one who does not work, but believes in Him who justifies the ungodly, his faith is credited as right- And David speaks likewise of the eousness. blessedness of the man to whom God credits 7 righteousness apart from works: “Blessed are they whose lawless acts are 8 forgiven, whose sins are covered. Blessed is the man j whose sin the Lord will never count against him.” 9 Is this blessing only on the circumcised, or also on the uncircumcised? We have been saying that g 18" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "–22) 1 d Hallelujah! e Praise the LORD from the heavens; 2 praise Him in the highest places. Praise Him, all His angels; 3 praise Him, all His heavenly hosts. Praise Him, O sun and moon; 4 praise Him, all you shining stars. Praise Him, O highest heavens, 5 and you waters above the skies. Let them praise the name of the LORD, for He gave the command and they 6 were created. He established them forever and ever; He issued a decree that will never like morsels like crumbs c 20 pass away. b 17 d 1 Hallelu YAH ; also in verse 20 Or Or , meaning Praise the LORD or MT; DSS and LXX ; also in verse 14 576 |" + }, + { + "verseNum": 7, + "text": "| 511 lips that speak with arrogance against the LORD,” and You forgave the guilt of my sin. 6 Selah 19 righteous, full of pride and contempt. How great is Your goodness which You have laid up for those who fear You, which You have bestowed before the sons of 20 men on those who take refuge in You! You hide them in the secret place of Your presence from the schemes of men. You conceal them in Your shelter from accusing tongues. 21 Blessed be the LORD, 22 for He has shown me His loving devotion in a city under siege. In my alarm I said, “I am cut off from Your sight!” But You heard my plea for mercy when I called to You for help. 23 Love the LORD, all His saints. 24 The LORD preserves the faithful, but fully repays the arrogant. Be strong and courageous, Psalm 32 all you who hope in the LORD. The Joy of Forgiveness" + }, + { + "verseNum": 8, + "text": "8 3 Let all the earth fear the LORD; 9 let all the people of the world revere Him. 4 Magnify the LORD with me; let us exalt His name together. 10 For He spoke, and it came to be; He commanded, and it stood firm. 11 The LORD frustrates the plans of the nations; He thwarts the devices of the peoples. The counsel of the LORD stands forever, 12 the purposes of His heart to all generations. 5 I sought the LORD, and He answered me; He delivered me from all my fears. Those who look to Him are radiant with joy; 6 their faces shall never be ashamed. This poor man called out, and the LORD 7 heard him; He saved him from all his troubles. Blessed is the nation whose God is the LORD, The angel of the LORD encamps around those 13 the people He has chosen as His inheritance! 8 who fear Him, and he delivers them. 14 The LORD looks down from heaven; He sees all the sons of men. 15 From His dwelling place He gazes on all who inhabit the earth. He shapes the hearts of each; 16 He considers all their works. No king is saved by his vast army; 17 no warrior is delivered by his great strength. A horse is a vain hope for salvation; even its great strength cannot save. 18 20 Surely the eyes of the LORD are on those who fear Him, 19 on those whose hope is in His loving devotion to deliver them from death and keep them alive in famine. Our soul waits for the LORD; 21 He is our help and our shield. For our hearts rejoice in Him, 22 since we trust in His holy name. May Your loving devotion rest on us, O" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "–22 ;" + }, + { + "verseNum": 12, + "text": "–16 (see also LXX) died d 18 i 8 to those who are dead NE and WH us see" + }, + { + "verseNum": 20, + "text": "; see also" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "" + }, + { + "verseNum": 2, + "text": "| 513 17 How long, O Lord, will You look on? 18 Rescue my soul from their ravages, my precious life from these lions. Then I will give You thanks in the great 19 assembly; I will praise You among many people. Let not my enemies gloat over me without d nor those who hate me without reason cause, 20 wink in malice. For they do not speak peace, 21 but they devise deceitful schemes against those who live quietly in the land. 22 They gape at me and say, “Aha, aha! Our eyes have seen!” O LORD, You have seen it; be not silent. 23 O Lord, be not far from me. Awake and rise to my defense, 24 to my cause, my God and my Lord! Vindicate me by Your righteousness, 25 O LORD my God, and do not let them gloat over me. Let them not say in their hearts, “Aha, just what we wanted!” Let them not say, 26 “We have swallowed him up!” May those who gloat in my distress be ashamed and confounded; 27 may those who exalt themselves over me be clothed in shame and reproach. May those who favor my vindication shout for joy and gladness; may they always say, “Exalted be the LORD 28 who delights in His servant’s well-being.” Then my tongue will proclaim Your righteousness and Your praises all day long. Psalm 36 The Transgression of the Wicked For the choirmaster. A Psalm of David, the servant of the LORD. 1 like one mourning for his mother. An oracle is in my heart But when I stumbled, they assembled in glee; regarding the transgression of the wicked they gathered together against me. Assailants I did not" + }, + { + "verseNum": 3, + "text": "3 6 The words of his mouth are wicked and He will bring forth your righteousness like deceitful; 4 he has ceased to be wise and well-doing. Even on his bed he plots wickedness; 5 he sets himself on a path that is not good; he fails to reject evil. Your loving devotion, O LORD, reaches to the 6 heavens, Your faithfulness to the clouds. Your righteousness is like the highest mountains; 7 Your judgments are like the deepest sea. O LORD, You preserve man and beast. How precious is Your loving devotion, O God, 8 that the children of men take refuge in the shadow of Your wings! They feast on the abundance of Your house, and You give them drink from Your river 9 of delights. For with You is the fountain of life; 10 in Your light we see light. Extend Your loving devotion to those who know You, 11 and Your righteousness to the upright in heart. Let not the foot of the proud come against 12 me, nor the hand of the wicked drive me away. There the evildoers lie fallen, Psalm 37 thrown down and unable to rise. Delight Yourself in the LORD (1 Kings 2:1–9) Of David.a 1 Do not fret over those who do evil; 2 do not envy those who do wrong. For they wither quickly like grass and wilt like tender plants. 3 Trust in the LORD and do good; 4 dwell in the land and cultivate faithfulness. Delight yourself in the LORD, 7 the dawn, your justice like the noonday sun. Be still before the LORD and wait patiently for Him; do not fret when men prosper in their ways, 8 when they carry out wicked schemes. 9" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "–40) home.” 2 2 As the time drew near for David to die, he “I am about to go charged his son Solomon, 3 the way of all the earth. So be strong and prove And keep the charge of the yourself a man. LORD your God to walk in His ways and to keep His statutes, commandments, ordinances, and decrees, as written in the Law of Moses, so that 4 you may prosper in all you do and wherever you and so that the LORD may fulfill His prom- turn, ise to me: ‘If your descendants take heed to walk faithfully before Me with all their heart and soul, you will never fail to have a man on the throne of 5 Israel.’ a Moreover, you know what Joab son of Zeruiah did to me—what he did to Abner son of Ner and Amasa son of Jether, the two commanders of the armies of Israel. He killed them in peacetime to avenge the blood of war. He stained with the blood of war the belt around his waist and the sandals on his feet. So act according to your wisdom, and do not let his gray head go down to 7 Sheol in peace. 6 b c But show loving devotion to the sons of Barzil- lai the Gileadite, and let them be among those who eat at your table, because they stood by me 8 when I fled from your brother Absalom. Keep an eye on Shimei the son of Gera, the Ben- jamite from Bahurim who is with you. He called down bitter curses against me on the day I went to Mahanaim, but when he came down to meet me at the Jordan, I swore to him by the LORD: ‘I will never put you to the sword.’ Now therefore, do not hold him guiltless, for you ar" + }, + { + "verseNum": 11, + "text": ". . 12 Blessed are you when people insult you, per- secute you, and falsely say all kinds of evil against you because of Me. Rejoice and be glad, be- cause great is your reward in heaven, for in the same way they persecuted the prophets before Salt and Light" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–22) For the choirmaster. With stringed instruments, according to Sheminith.a A Psalm of David. 1 O LORD, do not rebuke me in Your anger 2 or discipline me in Your wrath. Be merciful to me, O LORD, for I am frail; heal me, O LORD, for my bones are in 3 agony. 4 My soul is deeply distressed. How long, O LORD, how long? Turn, O LORD, and deliver my soul; 5 save me because of Your loving devotion. 6 For there is no mention of You in death; who can praise You from Sheol? I am weary from groaning; 7 all night I flood my bed with weeping and drench my couch with tears. My eyes fail from grief; they grow dim because of all my foes. Depart from me, all you workers of iniquity, for the LORD has heard my weeping. The LORD has heard my cry for mercy; the LORD accepts my prayer. All my enemies will be ashamed and dismayed; Psalm 7 they will turn back in sudden disgrace. I Take Refuge in You A Shiggaion b of David, which he sang to the LORD concerning the words of Cush, a Benjamite. 1 8 9 10" + }, + { + "verseNum": 17, + "text": "| 515 Though he falls, he will not be overwhelmed, 25 for the LORD is holding his hand. I once was young and now am old, yet never have I seen the righteous 26 abandoned or their children begging for bread. They are ever generous and quick to lend, 27 and their children are a blessing. 28 Turn away from evil and do good, so that you will abide forever. For the LORD loves justice and will not forsake His saints. They are preserved forever, 29 but the offspring of the wicked will be cut off. The righteous will inherit the land 30 and dwell in it forever. The mouth of the righteous man utters 31 wisdom, and his tongue speaks justice. The law of his God is in his heart; 32 his steps do not falter. Though the wicked lie in wait for the 33 righteous, and seek to slay them, the LORD will not leave them in their power 34 or let them be condemned under judgment. Wait for the LORD and keep His way, and He will raise you up to inherit the land. When the wicked are cut off, 35 you will see it. I have seen a wicked, ruthless man 36 flourishing like a well-rooted native tree, 37 yet he passed away and was no more; though I searched, he could not be found. Consider the blameless and observe the b 38 upright, for posterity awaits the man of peace. But the transgressors will all be destroyed; the future of the wicked will be cut off. 39 The salvation of the righteous is from the wicked, because they take refuge in Him. Psalm 38 Do Not Rebuke Me in Your Anger" + }, + { + "verseNum": 18, + "text": "18 11 19 Yes, I confess my iniquity; I am troubled by my sin. a b 20 21 Many are my enemies without cause, and many hate me without reason. Those who repay my good with evil attack me for pursuing the good. 22 Do not forsake me, O LORD; be not far from me, O my God. Come quickly to help me, O Lord my Savior. Psalm 39 I Will Watch My Ways For the choirmaster. For Jeduthun. A Psalm of David. 1 I said, “I will watch my ways so that I will not sin with my tongue; I will guard my mouth with a muzzle 2 as long as the wicked are present.” I was speechless and still; I remained silent, even from speaking 3 good, and my sorrow was stirred. My heart grew hot within me; as I mused, the fire burned. 4 Then I spoke with my tongue: “Show me, O LORD, my end 5 and the measure of my days. Let me know how fleeting my life is. You, indeed, have made my days as handbreadths, and my lifetime as nothing before You. Truly each man at his best exists as but a breath. 6 Selah Surely every man goes about like a phantom; surely he bustles in vain; he heaps up riches 7 not knowing who will haul them away. And now, O Lord, for what do I wait? 8 My hope is in You. Deliver me from all my transgressions; 9 do not make me the reproach of fools. I have become mute; 10 I do not open my mouth because of what You have done. Remove Your scourge from me; My enemies are vigorous and strong a 19 gods I am perishing by the force of Your hand. d 6 who run after lies One DSS manuscript; MT or 10:5–7 Hebrew; some LXX ma" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 6, + "text": "–8 (see also LXX) ber when you were first enlightened. 21 22 e But we are not of those who shrink back and are destroyed, but of those who have faith and through the Holy Place preserve their souls. Remem- d 19 e 20 g 30 Or" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "–13) things, you will be blessed if you do them. 18 17 b c 19 I am not speaking about all of you; I know whom I have chosen. But this is to fulfill the Scripture: ‘The one who shares My bread has I am telling you lifted up his heel against Me.’ now before it happens, so that when it comes to Truly, truly, pass, you will believe that I am He. I tell you, whoever receives the one I send re- ceives Me, and whoever receives Me receives the 21 One who sent Me.” 20 After Jesus had said this, He became troubled in spirit and testified, “Truly, truly, I tell you, one 22 of you will betray Me.” 23 d 24 The disciples looked at one another, perplexed as to which of them He meant. One of His dis- ciples, the one whom Jesus loved, was reclining at His side. So Simon Peter motioned to him 25 to ask Jesus which one He was talking about. Leaning back against Jesus, he asked, “Lord, 26 who is it?” 27 Jesus answered, “It is the one to whom I give this morsel after I have dipped it.” Then He dipped the morsel and gave it to Judas son of Si- And when Judas had taken the mon Iscariot. morsel, Satan entered into him. 28 Then Jesus said to Judas, “What you are about to do, do quickly.” But no one at the table knew Since Judas why Jesus had said this to him. kept the money bag, some thought that Jesus was was reclining d 23 c 18 29 Or Cited in" + }, + { + "verseNum": 9, + "text": "Greek" + }, + { + "verseNum": 13, + "text": "| 517 Psalm 41 Victory over Betrayal" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "–26) interceding for us. 35 Who shall separate us from the love of Christ? Shall trouble or distress or persecution or famine As it is or nakedness or danger or sword? written: 36 “For Your sake we face death all day long; a we are considered as sheep to be 37 slaughtered.” 38 No, in all these things we are more than con- For I am querors through Him who loved us. convinced that neither death nor life, neither an- gels nor principalities, neither the present nor neither height nor the future, nor any powers, depth, nor anything else in all creation, will be able to separate us from the love of God that is in Paul’s Concern for the Jews Christ Jesus our Lord. 39 9 3 4 2 I speak the truth in Christ; I am not lying, as confirmed by my conscience in the Holy I have deep sorrow and unceasing an- Spirit. guish in my heart. For I could wish that I myself were cursed and cut off from Christ for the sake the of my brothers, my own flesh and blood, people of Israel. Theirs is the adoption as sons; theirs the divine glory and the covenants; theirs the giving of the law, the temple worship, and the Theirs are the patriarchs, and from promises. them proceeds the human descent of Christ, who God’s Sovereign Choice is God over all, forever worthy of praise! Amen." + }, + { + "verseNum": 22, + "text": "Or a 8 “Through Isaac your offspring will be reck- oned.” So it is not the children of the flesh who are God’s children, but it is the children of the promise who are regarded as offspring. For this b is what the promise stated: “At the appointed 10 time I will return, and Sarah will have a son.” 9 11 12 Not only that, but Rebecca’s children were conceived by one man, our father Isaac. Yet be- fore the twins were born or had done anything good or bad, in order that God’s plan of election not by works but by Him who might stand, 13 calls, she was told, “The older will serve the d So it is written: “Jacob I loved, but younger.” 14 Esau I hated.” 15 c What then shall we say? Is God unjust? Cer- For He says to Moses: tainly not! “I will have mercy on whom I have mercy, and I will have compassion on whom e 16 I have compassion.” 17 f So then, it does not depend on man’s desire or effort, but on God’s mercy. For the Scripture says to Pharaoh: “I raised you up for this very purpose, that I might display My power in you, and that My name might be proclaimed in all the earth.” Therefore God has mercy on whom He wants to have mercy, and He hardens whom He 19 wants to harden. 18 20 One of you will say to me, “Then why does God But still find fault? For who can resist His will?” who are you, O man, to talk back to God? Shall what is formed say to Him who formed it, “Why did You make me like this?” Does not the pot- ter have the right to make from the same lump of clay one vessel for spec" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 6, + "text": "–7 Or" + }, + { + "verseNum": 7, + "text": "| 519 It was by Your right hand, 4 Your arm, and the light of Your face, because You favored them. You are my King, O God, 5 who ordains victories for Jacob. Through You we repel our foes; since He knows the secrets of the heart? Yet for Your sake we face death all day long; d we are considered as sheep to be 23 slaughtered. 24 Wake up, O Lord! Why are You sleeping? Arise! Do not reject us forever. 6 through Your name we trample our 25 Why do You hide Your face enemies. a For I do not trust in my bow, 7 nor does my sword save me. For You save us from our enemies; 8 and forget our affliction and oppression? 26 For our soul has sunk to the dust; our bodies cling to the earth. Rise up; be our help! You put those who hate us to shame. In God we have boasted all day long, and Your name we will praise forever. Selah 9 Redeem us on account of Your loving devotion. Psalm 45 My Heart Is Stirred by a Noble Theme (1 Kings 3:1–15 ; 2 Chr. 1:1–13 ; Ps. 72:1–20) 10 But You have rejected and humbled us; You no longer go forth with our armies. 11 You have made us retreat from the foe, For the choirmaster. To the tune of “The Lilies.” A Maskil e of the sons of Korah. A love song. and those who hate us have plundered us. 1 You have given us up as sheep to be 12 devoured; You have scattered us among the nations. 13 You sell Your people for nothing; no profit do You gain from their sale. You have made us a reproach to our neighbors, 14 a mockery and derision to those around us. You have made us" + }, + { + "verseNum": 8, + "text": "8 5 All your garments are fragrant with myrrh and aloes and cassia; from palaces of ivory the harps make you 9 glad. God is within her; she will not be moved. God will help her when morning 6 dawns. Nations rage, kingdoms crumble; 7 The daughters of kings are among your the earth melts when He lifts His voice. honored women; 10 the queen stands at your right hand, adorned with the gold of Ophir. Listen, O daughter! Consider and incline your ear: 11 Forget your people and your father’s house, 12 and the king will desire your beauty; bow to him, for he is your lord. 13 The Daughter of Tyre will come with a gift; men of wealth will seek your favor. 14 All glorious is the princess in her chamber; her gown is embroidered with gold. In colorful garments she is led to the king; 15 her virgin companions are brought before you. 16 They are led in with joy and gladness; they enter the palace of the king. The LORD of Hosts is with us; 8 the God of Jacob is our fortress. Selah Come, see the works of the LORD, 9 who brings devastation upon the earth. He makes wars to cease throughout the earth; b He breaks the bow and shatters the spear; He burns the shields in the fire. 10 “Be still and know that I am God; 11 I will be exalted among the nations, I will be exalted over the earth.” The LORD of Hosts is with us; Selah the God of Jacob is our fortress. Psalm 47 Clap Your Hands, All You Peoples For the choirmaster. A Psalm of the sons of Korah. Your sons will succeed your fathers; 17 you will" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "–11) 13 14 In the fourteenth year of Hezekiah’s reign, Sen- nacherib king of Assyria attacked and captured So Hezekiah all the fortified cities of Judah. king of Judah sent word to the king of Assyria at Lachish, saying, “I have done wrong; withdraw from me, and I will pay whatever you demand from me.” a And the king of Assyria exacted from Hezekiah king of Judah three hundred talents of silver Hezekiah gave him and thirty talents of gold. all the silver that was found in the house of the 16 LORD and in the treasuries of the royal palace. 15 b At that time Hezekiah stripped the gold with which he had plated the doors and doorposts of the temple of the LORD, and he gave it to the king Sennacherib Threatens Jerusalem of Assyria. (2 Chronicles 32:9–19 ;" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "–20) words. Therefore, fear God. 8 If you see the oppression of the poor and the de- nial of justice and righteousness in the province, do not be astonished at the matter; for one offi- cial is watched by a superior, and others higher still are over them. The produce of the earth is taken by all; the king himself profits from the fields. 9 606 |" + }, + { + "verseNum": 20, + "text": "| 521 2 both low and high, 3 rich and poor alike. My mouth will impart wisdom, 4 and the meditation of my heart will bring understanding. I will incline my ear to a proverb; 5 I will express my riddle with the harp: Why should I fear in times of trouble, 6 when wicked usurpers surround me? e They trust in their wealth 7 and boast in their great riches. No man can possibly redeem his brother 8 or pay his ransom to God. 9 For the redemption of his soul is costly, and never can payment suffice, that he should live on forever 10 and not see decay. For it is clear that wise men die, and the foolish and the senseless both 11 perish f and leave their wealth to others. Their graves are their eternal homes— their dwellings for endless generations— even though their lands were their 12 Selah namesakes. 13 But a man, despite his wealth, cannot endure; he is like the beasts that perish. g 10 Within Your temple, O God, we contemplate Your loving devotion. 11 Your name, O God, like Your praise, reaches to the ends of the earth; Your right hand is full of righteousness. c Mount Zion is glad, the daughters of Judah rejoice, on account of Your judgments. 12 13 March around Zion, encircle her, count her towers, 14 consider her ramparts, tour her citadels, that you may tell the next generation. For this God is our God forever and ever; He will be our guide even till death. Psalm 49 The Evanescence of Wealth" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 50 The Mighty One Calls A Psalm of Asaph. 1 The Mighty One, God the LORD, 2 speaks and summons the earth from where the sun rises to where it sets. From Zion, perfect in beauty, 3 God shines forth. Our God approaches and will not be silent! 4 Consuming fire precedes Him, and a tempest rages around Him. He summons the heavens above, 5 and the earth, that He may judge His people: “Gather to Me My saints, 6 who made a covenant with Me by sacrifice.” a And the heavens proclaim His righteousness, Selah 7 for God Himself is Judge. “Hear, O My people, and I will speak, 8 O Israel, and I will testify against you: I am God, your God. I do not rebuke you for your sacrifices, 9 and your burnt offerings are ever before Me. 10 I have no need for a bull from your stall or goats from your pens, 11 12 for every beast of the forest is Mine— the cattle on a thousand hills. I know every bird in the mountains, and the creatures of the field are Mine. If I were hungry, I would not tell you, 13 for the world is Mine, and the fullness thereof. 14 Do I eat the flesh of bulls, or drink the blood of goats? Sacrifice a thank offering to God, 15 and fulfill your vows to the Most High. Call upon Me in the day of trouble; 16 I will deliver you, and you will honor Me.” To the wicked, however, God says, 17 “What right have you to recite My statutes and to bear My covenant on your lips? 18 For you hate My instruction and cast My words behind you. When you see a thief, you befriend him, 19 and throw in" + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "–19) sight of the LORD. 12 3 2 Then the LORD sent Nathan to David, and when he arrived, he said, “There were two men in a certain city, one rich and the The rich man had a great number of other poor. but the poor man had nothing sheep and cattle, except one small ewe lamb that he had bought. He raised it, and it grew up with him and his chil- dren. It shared his food and drank from his cup; and was like a daughter to it slept in his arms 4 him. a Now a traveler came to the rich man, who refrained from taking one of his own sheep or cattle to prepare for the traveler who had come to him. Instead, he took the poor man’s lamb and 5 prepared it for his guest.” David burned with anger against the man and said to Nathan: “As surely as the LORD lives, the Because he man who did this deserves to die! has done this thing and has shown no pity, he 7 must pay for the lamb four times over.” 6 8 Then Nathan said to David, “You are that man! This is what the LORD, the God of Israel, says: ‘I anointed you king over Israel, and I delivered I gave your master’s you from the hand of Saul. house to you and your master’s wives into your arms. I gave you the house of Israel and Judah, and if that was not enough, I would have given 9 you even more. Why then have you despised the command of the LORD by doing evil in His sight? You put Uriah the Hittite to the sword and took his wife as your own. You have slain him with the sword Now, therefore, the sword of the Ammonites. in his bosom a 3 will neve" + }, + { + "verseNum": 4, + "text": "(see also LXX) i 3" + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "–9) est of Hereth. 6 Soon Saul learned that David and his men had been discovered. At that time Saul was sitting un- der the tamarisk tree on the hill at Gibeah, with his spear in hand and all his servants standing 7 around him. Then Saul said to his servants, “Listen, men of Benjamin! Is the son of Jesse giving all of you fields and vineyards and making you command- Is that why all of ers of thousands or hundreds? a 3 you have conspired against me? Not one of you go forth 8 Syriac and Vulgate; Hebrew 10 But Doeg the Edomite, who had stationed him- self with Saul’s servants, answered: “I saw the son of Jesse come to Ahimelech son of Ahitub at Nob. Ahimelech inquired of the LORD for him and gave him provisions. He also gave him the 11 sword of Goliath the Philistine.” Then the king sent messengers to summon Ahimelech the priest, the son of Ahitub, and his father’s whole family, who were priests at Nob. And all of them came to the king. “Listen now, son of Ahitub,” said Saul. 13 “Here I am, my lord,” he replied. 12 And Saul asked him, “Why have you and the son of Jesse conspired against me? You gave him bread and a sword and inquired of God for him so that he could rise up against me to lie in wait, 14 as he is doing today.” Ahimelech answered the king, “Who among all your servants is as faithful as David, the king’s 15 son-in-law, the captain of your bodyguard and honored in your house? Was that day the first time I inquired of God for him? Far be it from me! Let not the king" + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": ". is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. 544 |" + }, + { + "verseNum": 6, + "text": "| 523 Then I will teach transgressors Your ways, “Look at the man 14 and sinners will return to You. Deliver me from bloodguilt, O God, the God of my salvation, and my tongue will sing of Your 15 righteousness. O Lord, open my lips, 16 who did not make God his refuge, but trusted in the abundance of his wealth 8 and strengthened himself by destruction.” But I am like an olive tree flourishing in the house of God; I trust in the loving devotion of God 9 and my mouth will declare Your praise. For You do not delight in sacrifice, or I would forever and ever. I will praise You forever, 17 bring it; because You have done it. You take no pleasure in burnt offerings. I will wait on Your name— The sacrifices of God are a broken spirit; 18 a broken and a contrite heart, O God, You will not despise. 19 In Your good pleasure, cause Zion to prosper; build up the walls of Jerusalem. Then You will delight in righteous sacrifices, in whole burnt offerings; Psalm 52 then bulls will be offered on Your altar. Why Do You Boast of Evil? (1 Samuel 22:6–23) For the choirmaster. A Maskil a of David. After Doeg the Edomite went to Saul and told him, “David has gone to the house of Ahimelech.” 1 Why do you boast of evil, O mighty man? The loving devotion of God endures all 2 day long. Your tongue devises destruction 3 like a sharpened razor, O worker of deceit. You love evil more than good, falsehood more than speaking truth. Selah 4 You love every word that devours, 5 O deceitful tongue. Surely God" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "–7) Keilah.) 7 When Saul was told that David had gone to Kei- lah, he said, “God has delivered him into my hand, for he has trapped himself by entering a 8 town with gates and bars.” Then Saul summoned all his troops to go to war 9 at Keilah and besiege David and his men. When David learned that Saul was plotting evil against him, he said to Abiathar the priest, “Bring 10 the ephod.” a 11 And David said, “O LORD, God of Israel, Your servant has heard that Saul intends to come to Keilah and destroy the city on my account. Will the citizens of Keilah surrender me into his hand? Will Saul come down, as Your servant has heard? O LORD, God of Israel, please tell Your a 11 servant.” Some manuscripts omit this question. 12 “He will,” said the LORD. So David asked, “Will the citizens of Keilah sur- render me and my men into the hand of Saul?” 13 “They will,” said the LORD. Then David and his men, about six hundred strong, set out and departed from Keilah, moving from place to place. When Saul was told that Da- vid had escaped from Keilah, he declined to go 14 forth. And David stayed in the wilderness strong- holds and in the hill country of the Wilderness of Ziph. Day after day Saul searched for him, but 15 God would not deliver David into his hand. 16 While David was in Horesh in the Wilderness of Ziph, he saw that Saul had come out to take his And Saul’s son Jonathan came to David in life. Horesh and strengthened his hand in God, say- ing, “Do not be afraid, for my father Saul will" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "–13) 8 But the boy did not know anything; only Jona- Then than and David knew the arrangement. Jonathan gave his equipment to the boy and said, 41 “Go, take it back to the city.” a Then David asked Ahimelech, “Is there not a spear or sword on hand here? For I have brought neither my sword nor my weapons with me, be- 9 cause the king’s mission was urgent.” When the young man had gone, David got up fell facedown, from the south side of the stone, and bowed three times. Then he and Jonathan kissed each other and wept together—though 42 David wept more. The priest replied, “The sword of Goliath the Philistine, whom you killed in the Valley of Elah, is here; it is wrapped in a cloth behind the ephod. If you want, you may take it. For there is no other but this one here.” And Jonathan said to David, “Go in peace, for a 41 the two of us have sworn in the name of the from beside the stone from the south side And David said, “There is none like it; give it to me.” Hebrew ; LXX 1 Samuel 22:20 | 271 10 11 That day David fled from Saul and went to But the servants of Achish Achish king of Gath. said to him, “Is this not David, the king of the land? Did they not sing about him in their dances, saying: told me that my own son had made a covenant with the son of Jesse. Not one of you has shown concern for me or revealed to me that my son has stirred up my own servant to lie in wait against 9 me, as is the case today.” ‘Saul has slain his thousands, 12 and David his tens of thousands’?” 13 N" + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 11, + "text": "| 525 Psalm 57 In You My Soul Takes Refuge (1 Samuel 22:1–5 ;" + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 58 God Judges the Earth For the choirmaster. To the tune of “Do Not Destroy.” A Miktam a of David. 1 Do you indeed speak justly, O rulers? 2 Do you judge uprightly, O sons of men? No, in your hearts you devise injustice; 3 with your hands you mete out violence on the earth. The wicked are estranged from the womb; 4 the liars go astray from birth. Their venom is like the venom of a snake, 5 like a cobra that shuts its ears, refusing to hear the tune of the charmer 6 who skillfully weaves his spell. 7 O God, shatter their teeth in their mouths; O LORD, tear out the fangs of the lions. May they vanish like water that runs off; b when they draw the bow, 8 may their arrows be blunted. Like a slug that dissolves in its slime, like a woman’s stillborn child, may they never see the sun. Before your pots can feel the burning 9 thorns— 10 whether green or dry— He will sweep them away. The righteous will rejoice when they see they are avenged; 11 they will wash their feet in the blood of the wicked. Then men will say, “There is surely a reward for the righteous! There is surely a God who judges the Psalm 59 earth!” Deliver Me from My Enemies (1 Samuel 19:1–24) For the choirmaster. To the tune of “Do Not Destroy.” A Miktam c of David, when Saul sent men to watch David’s house in order to kill him. 1 Deliver me from my enemies, O my God; 2 protect me from those who rise against me. Deliver me from workers of iniquity, and save me from men of bloodshed. a 1 Miktam may they wither lik" + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "–17) esteemed. 19 Then Saul ordered his son Jonathan and all his servants to kill David. 2 3 so he But Jonathan delighted greatly in David, warned David, saying, “My father Saul intends to kill you. Be on your guard in the morning; find a secret place and hide there. I will go out and stand beside my father in the field where you are, so I can ask about you. And if I find out anything, 4 I will tell you.” 5 Then Jonathan spoke well of David to his father Saul and said to him, “The king should not sin against his servant David; he has not sinned against you. In fact, his actions have been highly beneficial to you. He took his life in his hands when he struck down the Philistine, and the LORD worked a great salvation for all Israel. You saw it and rejoiced, so why would you sin against 6 innocent blood by killing David for no reason?” Saul listened to the voice of Jonathan and swore an oath: “As surely as the LORD lives, David will 7 not be put to death.” So Jonathan summoned David and told him all these things. Then Jonathan brought David to 8 Saul, and David was with Saul as before. 9 a 10 But as Saul was sitting in his house with his spear in his hand, a spirit of distress from the LORD came upon him. While David was play- Saul tried to pin him to the wall ing the harp, with his spear. But David eluded him and the spear struck the wall. And David fled and es- 11 caped that night. Then Saul sent messengers to David’s house to watch him and kill him in the morning. But Da- vid" + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "–12) 18 Some time later, David defeated the Phil- istines, subdued them, and took Gath and 2 its villages from the hand of the Philistines. David also defeated the Moabites, and they be- 3 came subject to David and brought him tribute. c As far as Hamath, David also defeated King Hadadezer of Zobah, who had marched out to es- 4 along the Euphrates River. tablish his dominion David captured from him a thousand chariots, seven thousand charioteers, and twenty thou- sand foot soldiers, and he hamstrung all the 5 horses except a hundred he kept for the chariots. d 6 When the Arameans of Damascus came to help King Hadadezer of Zobah, David struck down Then he twenty-two thousand of their men. in Aram of Damascus, and the placed garrisons e Arameans became subject to David and brought him tribute. So the LORD made David victorious 7 wherever he went. f 8 And David took the gold shields that belonged to the officers of Hadadezer and brought them to and Cun, cities of Jerusalem. Hadadezer, David took a large amount of bronze, with which Solomon made the bronze Sea, the g 9 pillars, and various bronze articles. And from Tibhath h 10 When King Tou of Hamath heard that David had defeated the entire army of Hadadezer king to greet he sent his son Hadoram of Zobah, King David and bless him for fighting and defeat- ing Hadadezer, who had been at war with Tou. Hadoram brought all kinds of articles of gold and and King David dedicated silver and bronze, these to the LORD, along with the silv" + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 4, + "text": "| 527 Psalm 61 You Have Heard My Vows For the choirmaster. With stringed instruments. Of David. 1 Hear my cry, O God; 2 attend to my prayer. From the ends of the earth I call out to You whenever my heart is faint. Lead me to the rock 3 that is higher than I. For You have been my refuge, 4 a tower of strength against the enemy. Let me dwell in Your tent forever and take refuge in the shelter of Your Selah 5 wings. For You have heard my vows, O God; You have given me the inheritance reserved for those who fear Your name. 6 Increase the days of the king’s life; 7 may his years span many generations. May he sit enthroned in God’s presence forever; 8 appoint Your loving devotion and Your faithfulness to guard him. Then I will ever sing praise to Your name and fulfill my vows day by day. Psalm 62 Waiting on God God has spoken from His sanctuary: “I will triumph! I will parcel out Shechem 7 and apportion the Valley of Succoth. Gilead is Mine, and Manasseh is Mine; Ephraim is My helmet, Judah is My 8 scepter. Moab is My washbasin; upon Edom I toss My sandal; over Philistia I shout in triumph.” 9 Who will bring me to the fortified city? 10 Who will lead me to Edom? Have You not rejected us, O God? For the choirmaster. According to Jeduthun. A Psalm of David. 1 In God alone my soul finds rest; 2 my salvation comes from Him. He alone is my rock and my salvation. 3 He is my fortress; I will never be shaken. How long will you threaten a man? Will all of you throw him down like a leaning w" + }, + { + "verseNum": 5, + "text": "5 7 Rest in God alone, O my soul, 6 for my hope comes from Him. He alone is my rock and my salvation; 7 For You are my help; 8 I will sing for joy in the shadow of Your wings. He is my fortress; I will not be shaken. My salvation and my honor rest on God, my My soul clings to You; 9 Your right hand upholds me. 8 strong rock; my refuge is in God. Trust in Him at all times, O people; pour out your hearts before Him. God is our refuge. Selah 9 Lowborn men are but a vapor; the exalted are but a lie. 10 Weighed on the scale, they go up; together they are but a vapor. Place no trust in extortion or false hope in stolen goods. If your riches increase, 11 do not set your heart upon them. God has spoken once; 12 I have heard this twice: that power belongs to God, a and loving devotion to You, O Lord. For You will repay each man according to his deeds. Psalm 63 Thirsting for God (2 Samuel 15:30–37) 10 11 But those who seek my life to destroy it will go into the depths of the earth. They will fall to the power of the sword; they will become a portion for foxes. But the king will rejoice in God; all who swear by Him will exult, for the mouths of liars will be shut. Psalm 64 The Hurtful Tongue" + }, + { + "verseNum": 12, + "text": "BYZ and TR" + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "–10) so faith without deeds is dead. 3 2 Not many of you should become teachers, my brothers, because you know that we who We all stum- teach will be judged more strictly. ble in many ways. If anyone is never at fault in what he says, he is a perfect man, able to control 3 his whole body. 4 When we put bits into the mouths of horses to make them obey us, we can guide the whole ani- Consider ships as well. Although they are mal. so large and are driven by strong winds, they are steered by a very small rudder wherever the 5 pilot is inclined. 6 In the same way, the tongue is a small part of the body, but it boasts of great things. Consider The how small a spark sets a great forest ablaze. tongue also is a fire, a world of wickedness among the parts of the body. It pollutes the whole person, sets the course of his life on fire, 7 and is itself set on fire by hell. k 8 All kinds of animals, birds, reptiles, and crea- tures of the sea are being tamed and have been tamed by man, but no man can tame the tongue. 9 It is a restless evil, full of deadly poison. 10 With the tongue we bless our Lord and Father, and with it we curse men, who have been made in God’s likeness. Out of the same mouth come l 11 blessing and cursing. My brothers, this should not be! My brothers, can a flow from the same spring? fig tree grow olives, or a grapevine bear figs? Nei- The Wisdom from Above ther can a salt spring 13 12 Can both fresh water and salt water produce fresh water. m Who is wise and underst" + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "–20) 8 Every morning I will remove all the wicked of the land, A Psalm of thanksgiving. that I may cut off every evildoer from the 1 2 Make a joyful noise to the LORD, all the earth. Serve the LORD with gladness; 3 come into His presence with joyful songs. a Know that the LORD is God. It is He who made us, and we are His; we are His people, and the sheep of His 4 pasture. Enter His gates with thanksgiving and His courts with praise; give thanks to Him and bless His name. 5 For the LORD is good, and His loving devotion endures forever; His faithfulness continues to all generations. Psalm 101 I Will Set No Worthless Thing before My Eyes A Psalm of David. 1 I will sing of Your loving devotion and justice; 2 to You, O LORD, I will sing praises. I will ponder the way that is blameless— when will You come to me? I will walk in my house 3 with integrity of heart. I will set no worthless thing before my eyes. I hate the work of those who fall away; 4 it shall not cling to me. A perverse heart shall depart from me; 5 I will know nothing of evil. city of the LORD. Psalm 102 The Prayer of the Afflicted A prayer of one who is afflicted, when he grows faint and pours out his lament before the LORD. 1 Hear my prayer, O LORD; 2 let my cry for help come before You. Do not hide Your face from me in my day of distress. Incline Your ear to me; 3 answer me quickly when I call. For my days vanish like smoke, 4 and my bones burn like glowing embers. My heart is afflicted, and withered like grass;" + }, + { + "verseNum": 15, + "text": "| 529 Psalm 66 Make a Joyful Noise" + }, + { + "verseNum": 16, + "text": "16 3 Come and listen, all you who fear God, and I will declare what He has done 17 for me. a 18 I cried out to Him with my mouth 19 and praised Him with my tongue. If I had cherished iniquity in my heart, the Lord would not have listened. But God has surely heard; 20 He has attended to the sound of my prayer. Blessed be God, who has not rejected my prayer or withheld from me His loving devotion! Psalm 67 May God Cause His Face to Shine upon Us For the choirmaster. With stringed instruments. A Psalm. A song. 1 May God be gracious to us and bless us, and cause His face to shine upon us, Selah 2 3 that Your ways may be known on earth, Your salvation among all nations. 4 Let the peoples praise You, O God; let all the peoples praise You. Let the nations be glad and sing for joy, for You judge the peoples justly and lead the nations of the earth. 5 Selah Let the peoples praise You, O God; let all the peoples praise You. 6 7 The earth has yielded its harvest; God, our God, blesses us. God blesses us, that all the ends of the earth shall fear Psalm 68 Him. God’s Enemies Are Scattered For the choirmaster. A Psalm of David. A song. 1 God arises. His enemies are 2 scattered, and those who hate Him flee His presence. As smoke is blown away, You will drive them out; as wax melts before the fire, the wicked will perish in the presence and His praise was on my tongue of God. b 4 a 17 But the righteous will be glad and rejoice before God; they will celebrate with joy. 4 Sing to God! b Sing p" + } + ] + }, + { + "chapterNum": 68, + "verses": [ + { + "verseNum": 18, + "text": "BYZ and TR" + } + ] + }, + { + "chapterNum": 69, + "verses": [ + { + "verseNum": 7, + "text": "| 531 This is the mountain God chose for 31 until it submits, bringing bars of silver. His dwelling, Scatter the nations who delight in war. d where the LORD will surely dwell forever. Envoys will arrive from Egypt; 17 The chariots of God are tens of thousands— a thousands of thousands are they; 32 Cush will stretch out her hands to God. the Lord is in His sanctuary 18 as He was at Sinai. You have ascended on high; b You have led captives away. You have received gifts from men, even from the rebellious, that the LORD God may dwell there. 19 Blessed be the Lord, who daily bears our burden, the God of our salvation. Selah 20 Our God is a God of deliverance; 21 the Lord GOD is our rescuer from death. Surely God will crush the heads of His enemies, 22 the hairy crowns of those who persist in guilty ways. The Lord said, “I will retrieve them from 1 Sing to God, O kingdoms of the earth; sing praises to the Lord— 33 Selah to Him who rides upon the highest heavens 34 of old; behold, His mighty voice resounds. Ascribe the power to God, 35 whose majesty is over Israel, whose strength is in the skies. O God, You are awesome in Your sanctuary; the God of Israel Himself gives strength and power to His people. Blessed be God! Psalm 69 The Waters Are up to My Neck For the choirmaster. To the tune of “Lilies.” Of David. Bashan, 23 I will bring them up from the depths of the sea, that your foot may be dipped in the blood of your foes— the tongues of your dogs in the 24 same.” They have seen Y" + }, + { + "verseNum": 8, + "text": "8 9 I have become a stranger to my brothers and a foreigner to my mother’s sons, because zeal for Your house has consumed a me, b 25 May their place be deserted; 26 let there be no one to dwell in their tents. For they persecute the one You struck and recount the pain of those You 27 e 10 and the insults of those who insult You wounded. have fallen on me. I wept and fasted, 11 but it brought me reproach. I made sackcloth my clothing, and I was sport to them. 12 Those who sit at the gate mock me, and I am the song of drunkards. 13 But my prayer to You, O LORD, is for a time of favor. 14 In Your abundant loving devotion, O God, answer me with Your sure salvation. Rescue me from the mire and do not let me sink; deliver me from my foes 15 and out of the deep waters. Do not let the floods engulf me 16 or the depths swallow me up; let not the Pit close its mouth over me. Answer me, O LORD, for Your loving devotion is good; turn to me in keeping with Your great 17 compassion. Hide not Your face from Your servant, 36 18 for I am in distress. Answer me quickly! Draw near to my soul and redeem me; ransom me because of my foes. 19 You know my reproach, my shame and 20 disgrace. All my adversaries are before You. Insults have broken my heart, and I am in despair. 21 I looked for sympathy, but there was none, for comforters, but I found no one. 1 They poisoned my food with gall Add iniquity to their iniquity; 28 let them not share in Your righteousness. May they be blotted out of the Book" + }, + { + "verseNum": 9, + "text": "unique BYZ and TR include e 13 d must be born again.’ Flesh is born of flesh, but water and the Spirit. 8 spirit is born of the Spirit. Do not be amazed that I said, ‘You The wind blows where it wishes. You hear its sound, but you do not know where it comes from or where it is going. So it is with everyone born of the 9 Spirit.” 10 “How can this be?” Nicodemus asked. 11 “You are Israel’s teacher,” said Jesus, “and you Truly, truly, I do not understand these things? tell you, we speak of what we know, and we tes- tify to what we have seen, and yet you people do 12 not accept our testimony. e If I have told you about earthly things and you 13 do not believe, how will you believe if I tell you No one has ascended about heavenly things? 14 into heaven except the One who descended from Just as Moses lifted heaven—the Son of Man. up the snake in the wilderness, so the Son of Man f must be lifted up, that everyone who believes 16 in Him may have eternal life. g 15 17 18 For God so loved the world that He gave His one and only Son, that everyone who believes in For Him shall not perish but have eternal life. God did not send His Son into the world to con- demn the world, but to save the world through Whoever believes in Him is not con- Him. demned, but whoever does not believe has already been condemned, because he has not 19 believed in the name of God’s one and only Son. And this is the verdict: The Light has come into the world, but men loved the darkness rather 20 than the Light" + }, + { + "verseNum": 21, + "text": ". WH includes ; see" + }, + { + "verseNum": 22, + "text": "–23 (see also LXX) Or" + } + ] + }, + { + "chapterNum": 70, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + } + ] + }, + { + "chapterNum": 72, + "verses": [ + { + "verseNum": 1, + "text": "–20) 1 Now Solomon son of David established him- self securely over his kingdom, and the LORD his God was with him and highly exalted 2 him. Then Solomon spoke to all Israel, to the com- manders of thousands and of hundreds, to the 3 judges, and to every leader in all Israel—the And Solomon and the heads of the families. whole assembly went to the high place at Gibeon because it was the location of God’s Tent of Meet- ing, which Moses the servant of the LORD had 4 made in the wilderness. Now David had brought the ark of God from Kir- iath-jearim to the place he had prepared for it, 5 because he had pitched a tent for it in Jerusalem. But the bronze altar made by Bezalel son of Uri, the taber- the son of Hur, was in Gibeon before nacle of the LORD. So Solomon and the assembly 6 inquired of Him there. a Solomon offered sacrifices there before the LORD on the bronze altar at the Tent of Meeting, 7 where he offered a thousand burnt offerings. That night God appeared to Solomon and said, 8 “Ask, and I will give it to you!” b Solomon replied to God: “You have shown much 9 loving devotion to my father David, and You Now, O LORD have made me king in his place. God, let Your promise to my father David be ful- 10 filled. For You have made me king over a people Now as numerous as the dust of the earth. grant me wisdom and knowledge, so that I may For who is able to govern this lead this people. 11 great people of Yours?” c 12 honor for yourself or death for your enemies— and since you h" + }, + { + "verseNum": 2, + "text": "| 533 May all who seek You rejoice and be glad in You; may those who love Your salvation 5 always say, “Let God be magnified!” But I am poor and needy; hurry to me, O God. You are my help and my deliverer; O LORD, do not delay. Psalm 71 Be My Rock of Refuge 1 In You, O LORD, I have taken refuge; let me never be put to shame. In Your justice, rescue and deliver me; 2 3 incline Your ear and save me. Be my rock of refuge, where I can always go. Give the command to save me, 4 for You are my rock and my fortress. Deliver me, O my God, from the hand of the 5 wicked, from the grasp of the unjust and ruthless. 6 For You are my hope, O Lord GOD, my confidence from my youth. I have leaned on You since birth; You pulled me from my mother’s womb. My praise is always for You. I have become a portent to many, but You are my strong refuge. My mouth is filled with Your praise 7 8 9 My mouth will declare Your righteousness 16 and Your salvation all day long, though I cannot know their full measure. I will come in the strength of the Lord GOD; 17 I will proclaim Your righteousness—Yours alone. O God, You have taught me from my youth, 18 and to this day I proclaim Your marvelous deeds. Even when I am old and gray, do not forsake me, O God, until I proclaim Your power to the next 19 generation, Your might to all who are to come. Your righteousness reaches to the heavens, O God, 20 You who have done great things. Who, O God, is like You? Though You have shown me many troubles and misfortunes, 21" + }, + { + "verseNum": 3, + "text": "3 13 May the mountains bring peace to the people, 4 and the hills bring righteousness. May he vindicate the afflicted among the 14 He will take pity on the poor and needy and save the lives of the oppressed. He will redeem them from oppression people; may he save the children of the a needy 5 and crush the oppressor. May they fear him as long as the sun shines, 6 as long as the moon remains, through all generations. May he be like rain that falls on freshly 7 cut grass, like spring showers that water the earth. righteous flourish in his days May the and prosperity abound until the moon is no more. 8 b May he rule from sea to sea, and from the Euphrates 9 to the ends of the earth. 10 May the nomads bow before him, and his enemies lick the dust. May the kings of Tarshish and distant shores bring tribute; 11 may the kings of Sheba and Seba offer gifts. May all kings bow down to him and all nations serve him. 12 15 and violence, for their blood is precious in his sight. Long may he live! May gold from Sheba be given him. May people ever pray for him; 16 may they bless him all day long. May there be an abundance of grain in the land; may it sway atop the hills. May its fruit trees flourish like the forests of Lebanon, 17 the people of its cities like the grass of the field. c May his name endure forever; may his name continue as long as the sun shines. In him may all nations be blessed; may they call him blessed. 18 19 Blessed be the LORD God, the God of Israel, who alone does mar" + } + ] + }, + { + "chapterNum": 74, + "verses": [ + { + "verseNum": 1, + "text": "–23 ;" + }, + { + "verseNum": 7, + "text": "7 They have burned Your sanctuary to the ground; 8 they have defiled the dwelling place of Your Name. They said in their hearts, “We will crush them completely.” They burned down every place 9 where God met us in the land. There are no signs for us to see. Psalm 75 God’s Righteous Judgment" + } + ] + }, + { + "chapterNum": 75, + "verses": [ + { + "verseNum": 1, + "text": "–10) but also approve of those who practice them. 2 3 2 You, therefore, have no excuse, you who pass judgment on another. For on whatever grounds you judge the other, you are condemn- ing yourself, because you who pass judgment do And we know that God’s judg- the same things. ment against those who do such things is based So when you, O man, pass judgment on on truth. 4 others, yet do the same things, do you think you Or do you disre- will escape God’s judgment? gard the riches of His kindness, tolerance, and patience, not realizing that God’s kindness leads 5 you to repentance? 7 But because of your hard and unrepentant heart, you are storing up wrath against yourself 6 for the day of wrath, when God’s righteous judg- a God “will repay each one ment will be revealed. To those who by per- according to his deeds.” severance in doing good seek glory, honor, and But for immortality, He will give eternal life. those who are self-seeking and who reject the truth and follow wickedness, there will be wrath 9 and anger. 8 10 There will be trouble and distress for every hu- man being who does evil, first for the Jew, then but glory, honor, and peace for for the Greek; everyone who does good, first for the Jew, then For God does not show favorit- for the Greek. 12 ism. 11 All who sin apart from the law will also perish 13 apart from the law, and all who sin under the law For it is not the hear- will be judged by the law. ers of the law who are righteous before God, but it is the doers" + } + ] + }, + { + "chapterNum": 78, + "verses": [ + { + "verseNum": 1, + "text": "–72) 34 35 Jesus spoke all these things to the crowds in parables. He did not tell them anything without using a parable. So was fulfilled what was spo- ken through the prophet: “I will open My mouth in parables; c I will utter things hidden since the The Parable of the Weeds Explained" + }, + { + "verseNum": 2, + "text": "(see also . 43 throw them into the fiery furnace, where there Then will be weeping and gnashing of teeth. a the righteous will shine like the sun in the king- dom of their Father. The Parables of the Treasure and the Pearl He who has ears, let him hear. 44 The kingdom of heaven is like treasure hidden in a field. When a man found it, he hid it again, and in his joy he went and sold all he had and 45 bought that field. 46 Again, the kingdom of heaven is like a mer- chant in search of fine pearls. When he found one very precious pearl, he went away and sold The Parable of the Net all he had and bought it. 47 48 Once again, the kingdom of heaven is like a net that was cast into the sea and caught all kinds of fish. When it was full, the men pulled it ashore. Then they sat down and sorted the good fish into 49 containers, but threw the bad away. 50 So will it be at the end of the age: The angels will come and separate the wicked from the righteous and throw them into the fiery fur- nace, where there will be weeping and gnashing 51 of teeth. Have you understood all these things?” 52 “Yes,” they answered. Then He told them, “For this reason, every scribe who has been discipled in the kingdom of heaven is like a homeowner who brings out of his The Rejection at Nazareth storeroom new treasures as well as old.”" + }, + { + "verseNum": 4, + "text": "| 537 The valiant lie plundered; they sleep their 6 last sleep. No men of might could lift a hand. At Your rebuke, O God of Jacob, both horse and rider lie stunned. 7 You alone are to be feared. 8 When You are angry, who can stand before You? 9 From heaven You pronounced judgment, and the earth feared and was still when God rose up to judge, 10 to save all the lowly of the earth. Selah Even the wrath of man shall praise You; with the survivors of wrath You will a 11 clothe Yourself. Make and fulfill your vows to the LORD your God; 12 let all the neighboring lands bring tribute to Him who is to be feared. He breaks the spirits of princes; Psalm 77 He is feared by the kings of the earth. In the Day of Trouble I Sought the Lord For the choirmaster. According to Jeduthun. A Psalm of Asaph. 1 I cried out to God; 2 I cried aloud to God to hear me. In the day of trouble I sought the Lord; through the night my outstretched hands 3 did not grow weary; my soul refused to be comforted. I remembered You, O God, and I groaned; I mused and my spirit grew faint. Selah 4 You have kept my eyes from closing; 5 I am too troubled to speak. 6 I considered the days of old, the years long in the past. At night I remembered my song; 7 in my heart I mused, and my spirit pondered: “Will the Lord spurn us forever 8 and never show His favor again? Is His loving devotion gone forever? Has God forgotten to be gracious? Selah Has His anger shut off His compassion?” 10 So I said, “I am grieved b 11 that the" + }, + { + "verseNum": 5, + "text": "5 23 For He established a testimony in Jacob 24 and appointed a law in Israel, which He commanded our fathers to teach to their children, 6 Yet He commanded the clouds above a and opened the doors of the heavens. He rained down manna for them to eat; He gave them grain from heaven. 25 that the coming generation would know 26 Man ate the bread of angels; them— 7 even children yet to be born— to arise and tell their own children He sent them food in abundance. 27 He stirred the east wind from the heavens and drove the south wind by His might. that they should put their confidence in God, 28 He rained meat on them like dust, 8 not forgetting His works, but keeping His commandments. Then they will not be like their fathers, a stubborn and rebellious generation, whose heart was not loyal, 9 whose spirit was not faithful to God. The archers of Ephraim 10 11 turned back on the day of battle. They failed to keep God’s covenant and refused to live by His law. 12 They forgot what He had done, the wonders He had shown them. He worked wonders before their fathers 13 in the land of Egypt, in the region of Zoan. 14 He split the sea and brought them through; He set the waters upright like a wall. 15 He led them with a cloud by day and with a light of fire all night. He split the rocks in the wilderness 16 and gave them drink as abundant as the seas. He brought streams from the stone 17 and made water flow down like rivers. But they continued to sin against Him, 18 rebelling in the desert ag" + }, + { + "verseNum": 24, + "text": "; see also" + } + ] + }, + { + "chapterNum": 79, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 6, + "text": "| 539 drink. 46 He sent swarms of flies that devoured them, 47 and frogs that devastated them. He gave their crops to the grasshopper, the fruit of their labor to the locust. a 48 49 He killed their vines with hailstones and their sycamore-figs with sleet. He abandoned their cattle to the hail and their livestock to bolts of lightning. He unleashed His fury against them, 50 wrath, indignation, and calamity— a band of destroying angels. He cleared a path for His anger; 51 He did not spare them from death but delivered their lives to the plague. He struck all the firstborn of Egypt, the virility in the tents of Ham. 52 He led out His people like sheep 53 and guided them like a flock in the wilderness. 54 He led them safely, so they did not fear, but the sea engulfed their enemies. He brought them to His holy land, to the mountain His right hand had acquired. 1 55 wedding songs. His priests fell by the sword, 65 but their widows could not lament. 66 Then the Lord awoke as from sleep, like a mighty warrior overcome by wine. 67 He beat back His foes; He put them to everlasting shame. 68 He rejected the tent of Joseph and refused the tribe of Ephraim. 69 But He chose the tribe of Judah, Mount Zion, which He loved. 70 He built His sanctuary like the heights, like the earth He has established forever. 71 He chose David His servant and took him from the sheepfolds; from tending the ewes He brought him to be shepherd of His people Jacob, of Israel His inheritance. 72 So David shepherde" + }, + { + "verseNum": 7, + "text": "7 6 for they have devoured Jacob 8 and devastated his homeland. Do not hold past sins against us; 9 let Your compassion come quickly, for we are brought low. Help us, O God of our salvation, for the glory of Your name; deliver us and atone for our sins, for the sake of Your name. Why should the nations ask, “Where is their God?” 10 Before our eyes, make known among the nations 11 Your vengeance for the bloodshed of Your servants. 12 May the groans of the captives reach You; by the strength of Your arm preserve those condemned to death. Pay back into the laps of our neighbors 13 sevenfold the reproach they hurled at You, O Lord. Then we Your people, the sheep of Your pasture, will thank You forever; from generation to generation we will declare Your praise. Psalm 80 Hear Us, O Shepherd of Israel For the choirmaster. To the tune of “The Lilies of the Covenant.” A Psalm of Asaph. 1 Hear us, O Shepherd of Israel, who leads Joseph like a flock; You who sit enthroned between the 2 cherubim, shine forth before Ephraim, Benjamin, and Manasseh. Rally Your mighty power and come to save us. 3 Restore us, O God, 4 and cause Your face to shine upon us, that we may be saved. O LORD God of Hosts, 5 how long will Your anger smolder against the prayers of Your people? You fed them with the bread of tears and made them drink the full measure of a 11 their tears. You make us contend with our neighbors; 7 our enemies mock us. Restore us, O God of Hosts, 8 and cause Your face to shine upon us, th" + } + ] + }, + { + "chapterNum": 82, + "verses": [ + { + "verseNum": 6, + "text": "the temple e 34 Some manuscripts do not include 37 38 If I am not doing the works of My Father, then do not believe Me. But if I am doing them, even though you do not believe Me, believe the works themselves, so that you may know and under- stand that the Father is in Me, and I am in the 39 Father.” At this, they tried again to seize Him, but He es- John’s Testimony Confirmed caped their grasp. 40 41 Then Jesus went back across the Jordan to the place where John had first been baptizing, and He stayed there. Many came to Him and said, “Although John never performed a sign, every- thing he said about this man was true.” And The Death of Lazarus many in that place believed in Jesus. 42 11 2 At this time a man named Lazarus was sick. He lived in Bethany, the village of Mary and her sister Martha. (Mary, whose brother Lazarus was sick, was to anoint the Lord 3 with perfume and wipe His feet with her hair.) So the sisters sent word to Jesus, “Lord, the one a 4 You love is sick.” When Jesus heard this, He said, “This sickness will not end in death. No, it is for the glory of God, so that the Son of God may be glorified through 5 it.” 6 Now Jesus loved Martha and her sister and Laz- So on hearing that Lazarus was sick, He and then He arus. stayed where He was for two days, 8 said to the disciples, “Let us go back to Judea.” 7 “Rabbi,” they replied, “the Jews just tried to 9 stone You, and You are going back there?” 10 Jesus answered, “Are there not twelve hours of daylight? If anyon" + } + ] + }, + { + "chapterNum": 83, + "verses": [ + { + "verseNum": 15, + "text": "| 541 For this is a statute for Israel, 5 a an ordinance of the God of Jacob. He ordained it as a testimony for Joseph 6 when he went out over the land of Egypt, where I heard an unfamiliar language: They do not know or understand; they wander in the darkness; all the foundations of the earth are d shaken. 6 I have said, ‘You are gods; 7 “I relieved his shoulder of the burden; 7 his hands were freed from the basket. You called out in distress, and I rescued you; b 8 you are all sons of the Most High.’ But like mortals you will die, and like rulers you will fall.” I answered you from the cloud of thunder; Selah I tested you at the waters of Meribah. 8 Hear, O My people, and I will warn you: 9 10 O Israel, if only you would listen to Me! There must be no strange god among you, nor shall you bow to a foreign god. I am the LORD your God, who brought you up out of Egypt. 11 Open wide your mouth, and I will fill it. 12 But My people would not listen to Me, and Israel would not obey Me. 13 So I gave them up to their stubborn hearts to follow their own devices. 14 If only My people would listen to Me, if Israel would follow My ways, 15 how soon I would subdue their enemies and turn My hand against their foes! Those who hate the LORD would feign 16 obedience, and their doom would last forever. But I would feed you the finest wheat; with honey from the rock I would satisfy you.” Psalm 82 God Presides in the Divine Assembly Arise, O God, judge the earth, for all the nations are Your inh" + }, + { + "verseNum": 16, + "text": "16 11 Cover their faces with shame, 17 that they may seek Your name, O LORD. For the LORD God is a sun and a shield; the LORD gives grace and glory; May they be ever ashamed and terrified; 18 may they perish in disgrace. May they know that You alone, whose name is the LORD, are Most High over all the earth. Psalm 84 Better Is One Day in Your Courts" + } + ] + }, + { + "chapterNum": 84, + "verses": [ + { + "verseNum": 1, + "text": "–12) of the desire or will of man, but born of God. 14 11 13 b c The Word became flesh and made His dwelling We have seen His glory, the glory of from the Father, full of among us. the one and only Son 15 grace and truth. John testified concerning Him. He cried out, saying, “This is He of whom I said, ‘He who comes after me has surpassed me because He was be- 16 fore me.’ ” 17 From His fullness we have all received grace For the law was given through Mo- upon grace. 18 ses; grace and truth came through Jesus Christ. No one has ever seen God, but the one and only is at the Father’s d e Son, who is Himself God and comprehended a 5 side, has made Him known. only begotten God, who g 26 b 14 Or in Or ; BYZ and TR Or 19 20 And this was John’s testimony when the Jews of Jerusalem sent priests and Levites to ask him, “Who are you?” He did not refuse to confess, 21 but openly declared, “I am not the Christ.” “Then who are you?” they inquired. “Are you Elijah?” He said, “I am not.” “Are you the Prophet?” 22 He answered, “No.” So they said to him, “Who are you? We need an answer for those who sent us. What do you say 23 about yourself?” John replied in the words of Isaiah the prophet: “I am a voice of one calling in the wilderness, f ‘Make straight the way for the Lord.’ ” 24 25 Then the Pharisees who had been sent asked him, “Why then do you baptize, if you are not the g 26 Christ, nor Elijah, nor the Prophet?” 27 “I baptize with water,” John replied, “but He is among you stands One yo" + } + ] + }, + { + "chapterNum": 88, + "verses": [ + { + "verseNum": 1, + "text": ". the fortunes of His people is probably a musical or liturgical LXX Cited in" + }, + { + "verseNum": 5, + "text": "| 543 Show me a sign of Your goodness, that my enemies may see and be ashamed; for You, O LORD, have helped me and Psalm 87 The LORD Loves the Gates of Zion comforted me. A Psalm of the sons of Korah. A song. 1 He has founded His city 2 on the holy mountains. a The LORD loves the gates of Zion 3 more than all the dwellings of Jacob. Glorious things are ascribed to you, 4 O city of God. b Selah “I will mention Rahab and Babylon c among those who know Me— along with Philistia, Tyre, and Cush 5 — when I say, ‘This one was born in Zion.’ ” And it will be said of Zion: “This one and that one were born in her, and the Most High Himself will establish her.” 6 The LORD will record in the register of the peoples: 7 “This one was born in Zion.” Selah Singers and pipers will proclaim, “All my springs of joy are in You.” Psalm 88 I Cry Out before You A song. A Psalm of the sons of Korah. For the choirmaster. According to Mahalath Leannoth.d A Maskil e of Heman the Ezrahite. 1 O LORD, the God of my salvation, 2 day and night I cry out before You. May my prayer come before You; incline Your ear to my cry. For my soul is full of troubles, 3 4 and my life draws near to Sheol. But You, O Lord, are a compassionate and I am counted among those descending to the gracious God, 16 slow to anger, abounding in loving devotion and faithfulness. Turn to me and have mercy; grant Your strength to Your servant; His foundation is on the holy mountains save the son of Your maidservant. b 4 Rahab a 1 d 1 Ma" + }, + { + "verseNum": 6, + "text": "6 3 8 10 11 7 You have laid me in the lowest Pit, in the darkest of the depths. Your wrath weighs heavily upon me; all Your waves have submerged me. Selah You said, “I have made a covenant with 4 My chosen one, I have sworn to David My servant: ‘I will establish your offspring forever and build up your throne for all Selah You have removed my friends from me; 5 generations.’ ” You have made me repulsive 9 to them; I am confined and cannot escape. The heavens praise Your wonders, O LORD— My eyes grow dim with grief. I call to You daily, O LORD; I spread out my hands to You. Do You work wonders for the dead? Selah Do departed spirits rise up to praise You? 6 Your faithfulness as well— in the assembly of the holy ones. c For who in the skies can compare with the LORD? 7 Who among the heavenly beings is like the LORD? Can Your loving devotion be proclaimed a 12 in the grave, Your faithfulness in Abaddon ? Will Your wonders be known in the darkness, 8 In the council of the holy ones, God is greatly feared, and awesome above all who surround Him. 13 or Your righteousness in the land of oblivion? But to You, O LORD, I cry for help; 14 in the morning my prayer comes before You. Why, O LORD, do You reject me? Why do You hide Your face 15 from me? From my youth I was afflicted and near 16 death. I have borne Your terrors; I am in despair. 17 Your wrath has swept over me; 18 Your terrors have destroyed me. All day long they engulf me like water; they enclose me on every side. You have r" + } + ] + }, + { + "chapterNum": 89, + "verses": [ + { + "verseNum": 52, + "text": "| 545 20 “I have bestowed help on a warrior; Now, however, You have spurned and I have exalted one chosen from the people. 39 rejected him; 21 I have found My servant David; You are enraged by Your anointed one. with My sacred oil I have anointed him. You have renounced the covenant with My hand will sustain him; 22 surely My arm will strengthen him. 23 No enemy will exact tribute; no wicked man will oppress him. 24 I will crush his foes before him and strike down those who hate him. My faithfulness and loving devotion will be with him, 40 Your servant and sullied his crown in the dust. You have broken down all his walls; 41 You have reduced his strongholds to rubble. All who pass by plunder him; 42 he has become a reproach to his neighbors. 25 and through My name his horn will be You have exalted the right hand of his exalted. 43 foes; 26 I will set his hand over the sea, and his right hand upon the rivers. He will call to Me, ‘You are my Father, my God, the Rock of my salvation.’ 27 28 I will indeed appoint him as My firstborn, the highest of the kings of the earth. I will forever preserve My loving devotion for 29 him, and My covenant with him will stand fast. I will establish his line forever, 30 his throne as long as the heavens endure. 31 If his sons forsake My law and do not walk in My judgments, 32 if they violate My statutes and fail to keep My commandments, I will attend to their transgression with the 33 rod, and to their iniquity with stripes. But I will not withd" + } + ] + }, + { + "chapterNum": 90, + "verses": [ + { + "verseNum": 4, + "text": ". the Lord and Savior Jesus Christ j 10 will be found Or dissolved will be unable to hide f 22 Or . BYZ and TR ; SBL, NE, and WH , i.e., . ; also in verses 11 and 12. Or k 10" + } + ] + }, + { + "chapterNum": 91, + "verses": [ + { + "verseNum": 11, + "text": "–12" + } + ] + }, + { + "chapterNum": 93, + "verses": [ + { + "verseNum": 1, + "text": "–5) 1 The LORD reigns; let the nations tremble! He is enthroned above the cherubim; 2 let the earth quake! Great is the LORD in Zion; 3 He is exalted above all the peoples. Let them praise Your great and awesome b name— 4 He is holy! c The mighty King loves justice. You have established equity; You have exercised justice 5 and righteousness in Jacob. Exalt the LORD our God, 6 and worship at His footstool; He is holy! A Psalm. 1 Sing to the LORD a new song, for He has done wonders; His right hand and holy arm 2 have gained Him the victory. The LORD has proclaimed His salvation and revealed His righteousness to the 3 nations. He has remembered His love and faithfulness Moses and Aaron were among His priests; Samuel was among those who called on His name. 7 They called to the LORD and He answered. He spoke to them from the pillar of cloud; 8 they kept His decrees and the statutes He gave them. O LORD our God, You answered them. You were a forgiving God to them, yet an avenger of their misdeeds. 9 to the house of Israel; Exalt the LORD our God all the ends of the earth a 11 c 4 have seen the salvation of our God. The might of the King loves justice. and worship at His holy mountain, it is holy! Light is sown for the LORD our God is holy. b 3 One Hebrew manuscript, LXX, Syriac, and Vulgate; most Hebrew manuscripts Or Or 550 |" + } + ] + }, + { + "chapterNum": 94, + "verses": [ + { + "verseNum": 11, + "text": "That is, Peter BYZ and TR BYZ and TR Or Expel the Immoral Brother 12 1 Corinthians 7:7 | 1025 9 10 11 I wrote you in my letter not to associate with sexually immoral people. I was not including the sexually immoral of this world, or the greedy and swindlers, or idolaters. In that case you would have to leave this But now I am writing you not to associate with anyone who claims to be a brother but is sexually immoral or greedy, an idolater or a verbal abuser, a drunk- ard or a swindler. With such a man do not even 12 eat. world. 13 What business of mine is it to judge those out- side the church? Are you not to judge those in- side? God will judge those outside. “Expel the Lawsuits among Believers wicked man from among you.” a 6 2 If any of you has a grievance against another, how dare he go to law before the unright- eous instead of before the saints! Do you not know that the saints will judge the world? And if you are to judge the world, are you not compe- Do you not know that tent to judge trivial cases? we will judge angels? How much more the things 4 of this life! 3 5 So if you need to settle everyday matters, do you appoint as judges those of no standing in I say this to your shame. Is there re- the church? 6 ally no one among you wise enough to arbitrate between his brothers? Instead, one brother goes to law against another, and this in front of 7 unbelievers! 8 The very fact that you have lawsuits among you means that you are thoroughly defeated already. Why not rather" + }, + { + "verseNum": 13, + "text": "| 547 Psalm 93 The LORD Reigns!" + }, + { + "verseNum": 14, + "text": "14 10 For the LORD will not forsake His people; He will never abandon His heritage. Surely judgment will again be righteous, 15 16 For forty years I was angry with that generation, d and I said, “They are a people whose and all the upright in heart will follow it. 11 hearts go astray, 20 21 22 23 Who will rise up for me against the wicked? 17 Who will stand for me against the workers of iniquity? Unless the LORD had been my helper, 18 I would soon have dwelt in the abode of silence. If I say, “My foot is slipping,” 19 Your loving devotion, O LORD, supports me. When anxiety overwhelms me, Your consolation delights my soul. Can a corrupt throne be Your ally— one devising mischief by decree? They band together against the righteous and condemn the innocent to death. But the LORD has been my stronghold, and my God is my rock of refuge. a He will bring upon them their own iniquity and destroy them for their wickedness. Psalm 95 The LORD our God will destroy them. Do Not Harden Your Hearts" + } + ] + }, + { + "chapterNum": 95, + "verses": [ + { + "verseNum": 1, + "text": "–11) 7 Therefore, as the Holy Spirit says: 8 “Today, if you hear His voice, do not harden your hearts, as you did in the rebellion, 9 in the day of testing in the wilderness, 10 where your fathers tested and tried Me, and for forty years saw My works. Therefore I was angry with that generation, and I said, ‘Their hearts are always going astray, 11 and they have not known My ways.’ i So I swore on oath in My anger, The Peril of Unbelief ‘They shall never enter My rest.’ ” 12 13 See to it, brothers, that none of you has a wicked heart of unbelief that turns away from But exhort one another daily, as the living God. long as it is called today, so that none of you may 14 be hardened by sin’s deceitfulness. We have come to share in Christ if we hold 15 firmly to the end the assurance we had at first. As it has been said: “Today, if you hear His voice, do not harden your hearts, j as you did in the rebellion.” 16 17 For who were the ones who heard and re- belled? Were they not all those Moses led out of And with whom was God angry for Egypt? forty years? Was it not with those who sinned, whose bodies fell in the wilderness? And to whom did He swear that they would never enter His rest? Was it not to those who diso- So we see that it was because of their beyed? unbelief that they were unable to enter. c 13 to make pro- e 17 18 19 just as Moses in His house d 13 g 5 ; SBL j 15" + }, + { + "verseNum": 7, + "text": "–11 (see also LXX)" + }, + { + "verseNum": 11, + "text": "; also in verse 5 g 12 of the oracles of God" + } + ] + }, + { + "chapterNum": 96, + "verses": [ + { + "verseNum": 1, + "text": "–13) 23 Sing to the LORD, all the earth. 24 Proclaim His salvation day after day. 25 Declare His glory among the nations, His wonders among all peoples. For great is the LORD, and greatly to be 26 praised; He is to be feared above all gods. For all the gods of the nations are idols, 27 but it is the LORD who made the heavens. Splendor and majesty are before Him; strength and joy fill His dwelling. He remembers Or Hebrew; some LXX manuscripts ; see" + } + ] + }, + { + "chapterNum": 98, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + } + ] + }, + { + "chapterNum": 99, + "verses": [ + { + "verseNum": 1, + "text": "–9) 1 The LORD reigns! He is robed in majesty; the LORD has clothed and armed Himself with strength. The world indeed is firmly established; 2 it cannot be moved. 3 Your throne was established long ago; You are from all eternity. The floodwaters have risen, O LORD; the rivers have raised their voice; the seas lift up their pounding waves. 4 Above the roar of many waters— 5 the mighty breakers of the sea— the LORD on high is majestic. Your testimonies are fully confirmed; holiness adorns Your house, O LORD, Psalm 94 for all the days to come. The LORD Will Not Forget His People 1 O LORD, God of vengeance, 2 O God of vengeance, shine forth. Rise up, O Judge of the earth; 3 render a reward to the proud. How long will the wicked, O LORD, how long will the wicked exult? 4 5 6 They pour out arrogant words; all workers of iniquity boast. They crush Your people, O LORD; they oppress Your heritage. They kill the widow and the foreigner; 7 they murder the fatherless. They say, “The LORD does not see; the God of Jacob pays no heed.” 8 Take notice, O senseless among the people! 9 O fools, when will you be wise? 10 He who affixed the ear, can He not hear? He who formed the eye, can He not see? He who admonishes the nations, does He not discipline? 11 He who teaches man, does He lack knowledge? b The LORD knows the thoughts of man, 12 that they are futile. 13 Blessed is the man You discipline, O LORD, and teach from Your law, a 11 Rock, my ears hear evildoers when they rise against me and i" + }, + { + "verseNum": 9, + "text": "| 549 4 Make a joyful noise to the LORD, all the earth; break forth—let your cry ring out, and 5 sing praises! 6 Sing praises to the LORD with the lyre, in melodious song with the harp. Clouds and darkness surround Him; 3 righteousness and justice are His throne’s With trumpets and the blast of the ram’s horn shout for joy before the LORD, the King. 7 foundation. Fire goes before Him 4 and consumes His foes on every side. 5 His lightning illuminates the world; the earth sees and trembles. The mountains melt like wax 6 at the presence of the LORD, before the Lord of all the earth. The heavens proclaim His righteousness; 7 all the peoples see His glory. All worshipers of images are put to shame— 8 those who boast in idols. Worship Him, all you gods! Zion hears and rejoices, 9 and the towns of Judah exult because of Your judgments, O LORD. For You, O LORD, are Most High over all 10 the earth; You are exalted far above all gods. Hate evil, O you who love the LORD! He preserves the souls of His saints; He delivers them from the hand of the a 11 wicked. 12 Light shines on the righteous, gladness on the upright in heart. Rejoice in the LORD, you righteous ones, and praise His holy name. Psalm 98 Sing to the LORD a New Song" + } + ] + }, + { + "chapterNum": 100, + "verses": [ + { + "verseNum": 1, + "text": "–5) For the choirmaster. A song. A Psalm. 1 1 Praise awaits You, O God, in Zion; 2 to You our vows will be fulfilled. O You who listen to prayer, 3 all people will come to You. When iniquities prevail against me, 4 You atone for our transgressions. Blessed is the one You choose and bring near to dwell in Your courts! We are filled with the goodness of Your house, Make a joyful noise to God, 2 all the earth! Sing the glory of His name; 3 make His praise glorious. Say to God, “How awesome are Your deeds! 4 So great is Your power that Your enemies cower before You. All the earth bows down to You; they sing praise to You; they sing praise to Your name.” Selah 5 the holiness of Your temple. 5 With awesome deeds of righteousness You answer us, O God of our salvation, the hope of all the ends of the earth 6 and of the farthest seas. 7 You formed the mountains by Your power, having girded Yourself with might. 8 You stilled the roaring of the seas, the pounding of their waves, and the tumult of the nations. Those who live far away fear Your wonders; a Come and see the works of God; 6 how awesome are His deeds toward mankind. He turned the sea into dry land; 7 they passed through the waters on foot; there we rejoiced in Him. He rules forever by His power; His eyes watch the nations. Do not let the rebellious exalt Selah themselves. 8 You make the dawn and sunset shout 9 for joy. b Bless our God, O peoples; 9 let the sound of His praise be heard. You attend to the earth and water it; wi" + } + ] + }, + { + "chapterNum": 102, + "verses": [ + { + "verseNum": 25, + "text": "–27 f 7" + } + ] + }, + { + "chapterNum": 103, + "verses": [ + { + "verseNum": 22, + "text": "| 551 Let this be written for the generation to come, 19 so that a people not yet created may praise the LORD. For He looked down from the heights of His 20 sanctuary; the LORD gazed out from heaven to earth to hear a prisoner’s groaning, 21 to release those condemned to death, that they may proclaim the name of the LORD 22 in Zion and praise Him in Jerusalem, when peoples and kingdoms assemble 23 The LORD executes righteousness 7 and justice for all the oppressed. He made known His ways to Moses, His deeds to the people of Israel. 8 The LORD is compassionate and gracious, slow to anger, abounding in loving 9 devotion. 10 He will not always accuse us, nor harbor His anger forever. 11 He has not dealt with us according to our sins or repaid us according to our iniquities. For as high as the heavens are above the earth, to serve the LORD. 12 so great is His loving devotion for those He has broken my strength on the way; 24 He has cut short my days. I say: “O my God, do not take me in the midst 25 of my days! Your years go on through all generations. In the beginning You laid the foundations of the earth, 26 and the heavens are the work of Your hands. They will perish, but You remain; they will all wear out like a garment. 27 Like clothing You will change them, and they will be passed on. a But You remain the same, 28 and Your years will never end. The children of Your servants will dwell securely, and their descendants will be established before You.” Psalm 103 Bless the LORD," + } + ] + }, + { + "chapterNum": 104, + "verses": [ + { + "verseNum": 1, + "text": "Psalm 104 How Many Are Your Works, O LORD! 1 Bless the LORD, O my soul! O LORD my God, You are very great; 2 You are clothed with splendor and majesty. 3 He wraps Himself in light as with a garment; He stretches out the heavens like a tent, laying the beams of His chambers in the waters above, making the clouds His chariot, 4 a walking on the wings of the wind. He makes the winds His messengers, 5 flames of fire His servants. He set the earth on its foundations, 6 never to be moved. 7 You covered it with the deep like a garment; the waters stood above the mountains. At Your rebuke the waters fled; 8 at the sound of Your thunder they hurried away— 9 the mountains rose and the valleys sank to the place You assigned for them— You set a boundary they cannot cross, 10 that they may never again cover the earth. He sends forth springs in the valleys; they flow between the mountains. They give drink to every beast of the field; the wild donkeys quench their thirst. The birds of the air nest beside the springs; 11 12 13 they sing among the branches. He waters the mountains from His chambers; the earth is satisfied by the fruit of His 14 works. He makes the grass grow for the livestock and provides crops for man to cultivate, bringing forth food from the earth: 15 wine that gladdens the heart of man, oil that makes his face to shine, and bread that sustains his heart. The trees of the LORD have their fill, 16 17 19 20 He made the moon to mark the seasons; the sun knows when to set. 21" + }, + { + "verseNum": 4, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 105, + "verses": [ + { + "verseNum": 1, + "text": "–15) 6 7 On that day David first committed to Asaph and his associates this song of thanksgiving to the LORD: a 3 a portion of meat b 15 “Give thanks to the LORD; call upon His name; 9 make known His deeds among the nations. Sing to Him, sing praises to Him; 10 tell of all His wonders. Glory in His holy name; 11 let the hearts of those who seek the LORD rejoice. Seek out the LORD and His strength; 12 seek His face always. Remember the wonders He has done, His marvels, and the judgments He 13 has pronounced, O offspring of His servant Israel, 14 O sons of Jacob, His chosen ones. He is the LORD our God; b 15 His judgments carry throughout the earth. His covenant forever, Remember 16 the word He ordained for a thousand generations— the covenant He made with Abraham, and the oath He swore to Isaac. He confirmed it to Jacob as a decree, 17 18 to Israel as an everlasting covenant: ‘I will give you the land of Canaan 19 as the portion of your inheritance.’ When they were few in number, 20 few indeed, and strangers in the land, 21 they wandered from nation to nation, from one kingdom to another. He let no man oppress them; 22 He rebuked kings on their behalf: ‘Do not touch My anointed ones! Do no harm to My prophets!’ Sing to the LORD, All the Earth" + }, + { + "verseNum": 8, + "text": ". 28 42 1 Chronicles 17:13 | 389 Ascribe to the LORD, O families of the 29 nations, ascribe to the LORD glory and strength. Ascribe to the LORD the glory due His name; bring an offering and come before Him. 30 Worship the LORD in the splendor of His holiness; tremble before Him, all the earth. The world is firmly established; 31 it cannot be moved. Let the heavens be glad, and the earth rejoice. 32 Let them say among the nations, ‘The LORD reigns!’ Let the sea resound, and all that fills it; 33 let the fields exult, and all that is in them. Then the trees of the forest will sing for joy 34 before the LORD, 35 for He is coming to judge the earth. Give thanks to the LORD, for He is good; endures forever. His loving devotion a Then cry out: ‘Save us, O God of our salvation; gather and deliver us from the nations, that we may give thanks to Your holy name, that we may glory in Your praise.’ 36 Blessed be the LORD, the God of Israel, from everlasting to everlasting.” Then all the people said, “Amen!” and “Praise the Worship before the Ark LORD!” 37 38 So David left Asaph and his associates there before the ark of the covenant of the LORD, to minister there regularly according to the daily along with Obed-edom and his requirements, sixty-eight relatives. Obed-edom son of Jedu- 39 thun, and also Hosah, were to be gatekeepers. b Heman and Jeduthun had with them trumpets and cymbals for the music and instruments for And the sons of Jeduthun were the songs of God. 43 stationed at the g" + }, + { + "verseNum": 44, + "text": "| 553 22 b to instruct his princes as he pleased 23 and teach his elders wisdom. Then Israel entered Egypt; 24 Give thanks to the LORD, call upon His name; Jacob dwelt in the land of Ham. 2 make known His deeds among the And the LORD made His people very fruitful, 25 nations. Sing to Him, sing praises to Him; 3 tell of all His wonders. Glory in His holy name; more numerous than their foes, whose hearts He turned to hate His people, 26 to conspire against His servants. He sent Moses His servant, 27 4 let the hearts of those who seek the LORD and Aaron, whom He had chosen. rejoice. Seek out the LORD and His strength; 5 seek His face always. Remember the wonders He has done, They performed His miraculous signs among 28 them, and wonders in the land of Ham. He sent darkness, and it became dark— c 6 His marvels, and the judgments He has 29 yet they defied His words. pronounced, 7 O offspring of His servant Abraham, O sons of Jacob, His chosen ones. He is the LORD our God; 8 His judgments carry throughout the earth. He remembers His covenant forever, 9 the word He ordained for a thousand generations— 10 11 the covenant He made with Abraham, and the oath He swore to Isaac. He confirmed it to Jacob as a decree, to Israel as an everlasting covenant: 12 “I will give you the land of Canaan as the portion of your inheritance.” 13 When they were few in number, few indeed, and strangers in the land, 14 they wandered from nation to nation, from one kingdom to another. 15 He let no man oppre" + }, + { + "verseNum": 45, + "text": "45 16 that they might keep His statutes a and obey His laws. Hallelujah! Psalm 106 Give Thanks to the LORD, for He Is Good 1 b Hallelujah! Give thanks to the LORD, for He is good; 2 His loving devotion endures forever. Who can describe the mighty acts of the 3 LORD or fully proclaim His praise? Blessed are those who uphold justice, who practice righteousness at all times. 4 Remember me, O LORD, in Your favor to Your 5 people; In the camp they envied Moses, 17 as well as Aaron, the holy one of the LORD. 18 The earth opened up and swallowed Dathan; it covered the assembly of Abiram. Then fire blazed through their company; 19 d flames consumed the wicked. 20 At Horeb they made a calf e and worshiped a molten image. 21 They exchanged their Glory for the image of a grass-eating ox. 22 They forgot God their Savior, who did great things in Egypt, wondrous works in the land of Ham, 23 and awesome deeds by the Red Sea. So He said He would destroy them— had not Moses His chosen one visit me with Your salvation, 24 stood before Him in the breach that I may see the prosperity of Your chosen to divert His wrath from destroying them. ones, 6 and rejoice in the gladness of Your nation, and give glory with Your inheritance. We have sinned like our fathers; 7 we have done wrong and acted wickedly. Our fathers in Egypt did not grasp Your wonders or remember Your abundant kindness; c but they rebelled by the sea, 8 there at the Red Sea. 25 They despised the pleasant land; they did not believe H" + } + ] + }, + { + "chapterNum": 106, + "verses": [ + { + "verseNum": 48, + "text": "| 555 37 They worshiped their idols, which became a snare to them. 38 They sacrificed their sons and their daughters to demons. They shed innocent blood— the blood of their sons and daughters, whom they sacrificed to the idols of Canaan, and the land was polluted with blood. They defiled themselves by their actions and prostituted themselves by their 39 40 deeds. So the anger of the LORD burned against His 41 people, and He abhorred His own inheritance. He delivered them into the hand of the nations, 42 and those who hated them ruled over them. Their enemies oppressed them Many times He rescued them, 44 but they were bent on rebellion and sank down in their iniquity. 45 Nevertheless He heard their cry; He took note of their distress. And He remembered His covenant with them, 46 and relented by the abundance of His loving devotion. 47 He made them objects of compassion to all who held them captive. Save us, O LORD our God, and gather us from the nations, that we may give thanks to Your holy name, 48 that we may glory in Your praise. Blessed be the LORD, the God of Israel, from everlasting to everlasting. Let all the people say, “Amen!” and subdued them under their hand. Hallelujah! BOOK V Psalms 107–150 Psalm 107 Thanksgiving for Deliverance (Matt. 8:23–27 ;" + } + ] + }, + { + "chapterNum": 107, + "verses": [ + { + "verseNum": 1, + "text": "–43 ;" + } + ] + }, + { + "chapterNum": 108, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + } + ] + }, + { + "chapterNum": 109, + "verses": [ + { + "verseNum": 8, + "text": "Or ; cited in is 2,000 cubits (approximately 3,000 feet or 914.4 meters) Psalm The Holy Spirit at Pentecost" + }, + { + "verseNum": 15, + "text": "| 557 35 10 36 He turns a desert into pools of water 11 Who will bring me to the fortified city? and a dry land into flowing springs. He causes the hungry to settle there, Who will lead me to Edom? Have You not rejected us, O God? 37 that they may establish a city in which to 12 Will You no longer march out, O God, with dwell. our armies? 38 They sow fields and plant vineyards 13 Give us aid against the enemy, that yield a fruitful harvest. 39 40 He blesses them, and they multiply greatly; He does not let their herds diminish. When they are decreased and humbled by oppression, evil, and sorrow, He pours out contempt on the nobles 41 and makes them wander in a trackless wasteland. 42 But He lifts the needy from affliction and increases their families like flocks. The upright see and rejoice, 43 and all iniquity shuts its mouth. Let him who is wise pay heed to these things and consider the loving devotion of the LORD. Psalm 108 Israel’s Kingdom Blessing" + }, + { + "verseNum": 16, + "text": "16 For he never thought to show kindness, but pursued the poor and needy and 17 brokenhearted, even to their death. The cursing that he loved, may it fall on him; the blessing in which he refused to delight, 18 may it be far from him. The cursing that he wore like a coat, 19 may it soak into his body like water, and into his bones like oil. 20 May it be like a robe wrapped about him, like a belt tied forever around him. May this be the LORD’s reward to my accusers, 21 to those who speak evil against me. But You, O GOD, the Lord, deal kindly with me for the sake of Your name; 22 deliver me by the goodness of Your loving devotion. For I am poor and needy; 23 my heart is wounded within me. I am fading away like a lengthening shadow; 24 I am shaken off like a locust. My knees are weak from fasting, 25 and my body grows lean and gaunt. I am an object of scorn to my accusers; when they see me, they shake their 26 heads. Help me, O LORD my God; 27 save me according to Your loving devotion. 28 Let them know that this is Your hand, that You, O LORD, have done it. Though they curse, You will bless. Psalm 110 God’s Faithful Messiah" + } + ] + }, + { + "chapterNum": 110, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + }, + { + "verseNum": 4, + "text": "Or 1078 |" + } + ] + }, + { + "chapterNum": 112, + "verses": [ + { + "verseNum": 1, + "text": "–10) 2 A song of ascents. 3 O Lord, hear my voice; let Your ears be attentive to my plea for mercy. 1 2 Blessed are all who fear the LORD, who walk in His ways! 3 For when you eat the fruit of your labor, blessings and prosperity will be yours. Your wife will be like a fruitful vine flourishing within your house, your sons like olive shoots 4 sitting around your table. 5 In this way indeed shall blessing come to the man who fears the LORD. May the LORD bless you from Zion, that you may see the prosperity of 6 Jerusalem all the days of your life, that you may see your children’s children. Psalm 129 The Cords of the Wicked Peace be upon Israel! A song of ascents. 1 Many a time they have persecuted me from 2 my youth— let Israel now declare— many a time they have persecuted me from 3 my youth, but they have not prevailed against me. 4 The plowmen plowed over my back; they made their furrows long. The LORD is righteous; 5 He has cut me from the cords of the wicked. 6 May all who hate Zion be turned back in shame. 7 8 May they be like grass on the rooftops, which withers before it can grow, unable to fill the hands of the reaper, or the arms of the binder of sheaves. May none who pass by say to them, “The blessing of the LORD be on you; Psalm 130 we bless you in the name of the LORD.” Out of the Depths A song of ascents. 4 5 If You, O LORD, kept track of iniquities, then who, O Lord, could stand? But with You there is forgiveness, so that You may be feared. 6 I wait for the LORD;" + }, + { + "verseNum": 9, + "text": "" + } + ] + }, + { + "chapterNum": 113, + "verses": [ + { + "verseNum": 1, + "text": "–9) 12 1 a b Now there was a man named Elkanah who in the hill was from Ramathaim-zophim country of Ephraim. He was the son of Jeroham, 2 the son of Tohu, the son of the son of Elihu, He had two wives, one Zuph, an Ephraimite. named Hannah and the other Peninnah. And 3 Peninnah had children, but Hannah had none. 4 Year after year Elkanah would go up from his city to worship and sacrifice to the LORD of Hosts at Shiloh, where Eli’s two sons, Hophni and And when- Phinehas, were priests to the LORD. ever the day came for Elkanah to present his sacrifice, he would give portions to his wife But Peninnah and to all her sons and daughters. to Hannah he would give a double portion, for he loved her even though the LORD had closed 6 her womb. 5 c 7 Because the LORD had closed Hannah’s womb, her rival would provoke her viciously to taunt her. And this went on year after year. Whenever Hannah went up to the house of the LORD, her rival taunted her until she wept and would not 8 eat. “Hannah, why are you crying?” her husband Elkanah asked. “Why won’t you eat? Why is your heart so grieved? Am I not better to you than ten Hannah Prays for a Son sons?” 9 So after they had finished eating and drinking in Shiloh, Hannah stood up. Now Eli the priest was sitting on a chair by the doorpost of the temple of 10 the LORD. 11 In her bitter distress, Hannah prayed to the LORD and wept with many tears. And she made a vow, saying, “O LORD of Hosts, if only You will look upon the affliction of Your maid" + } + ] + }, + { + "chapterNum": 115, + "verses": [ + { + "verseNum": 1, + "text": "| 559 Psalm 113 The LORD Exalts the Humble (1 Samuel 1:1–8) 1 c Hallelujah! 2 3 Give praise, O servants of the LORD; praise the name of the LORD. Blessed be the name of the LORD both now and forevermore. From where the sun rises to where it sets, 4 the name of the LORD is praised. The fear of the LORD is the beginning of The LORD is exalted over all the nations, 5 wisdom; all who follow His precepts gain rich understanding. Psalm 112 His praise endures forever! The Blessed Fear of the LORD" + }, + { + "verseNum": 2, + "text": "2 because of Your loving devotion, because of Your faithfulness. 3 Why should the nations say, “Where is their God?” Our God is in heaven; He does as He pleases. 4 8 9 14 15 16 5 Their idols are silver and gold, made by the hands of men. 6 They have mouths, but cannot speak; they have eyes, but cannot see; they have ears, but cannot hear; 7 they have noses, but cannot smell; they have hands, but cannot feel; a they have feet, but cannot walk; they cannot even clear their throats. Those who make them become like them, b as do all who trust in them. O Israel, 10 trust in the LORD! He is their help and shield. O house of Aaron, trust in the LORD! 11 He is their help and shield. You who fear the LORD, trust in the LORD! 12 He is their help and shield. The LORD is mindful of us; He will bless us. He will bless the house of Israel; 13 He will bless the house of Aaron; He will bless those who fear the LORD— small and great alike. May the LORD give you increase, both you and your children. May you be blessed by the LORD, the Maker of heaven and earth. 17 The highest heavens belong to the LORD, but the earth He has given to mankind. 18 It is not the dead who praise the LORD, nor any who descend into silence. But it is we who will bless the LORD, c both now and forevermore. 3 The ropes of death entangled me; 4 the anguish of Sheol overcame me; I was confronted by trouble and sorrow. 5 Then I called on the name of the LORD: “O LORD, deliver my soul!” 6 The LORD is gracious and righteous" + } + ] + }, + { + "chapterNum": 116, + "verses": [ + { + "verseNum": 10, + "text": "(see also LXX) SBL 1038 | 2 Corinthians 6:1 Paul’s Hardships and God’s Grace 18 6 a 2 And: As God’s fellow workers, not to receive God’s grace in vain. then, we urge you For He says: b “In the time of favor I heard you, and in the day of salvation I helped you.” Behold, now is the time of favor; now is the day 3 of salvation! We put no obstacle in anyone’s way, so that no 4 one can discredit our ministry. 7 5 Rather, as servants of God we commend our- selves in every way: in great endurance; in trou- bles, hardships, and calamities; in beatings, 6 imprisonments, and riots; in labor, sleepless nights, and hunger; in purity, knowledge, patience, and kindness; in the Holy Spirit and in sincere love; in truthful speech and in the power of God; with the weapons of righteous- ness in the right hand and in the left; through glory and dishonor, slander and praise; viewed as imposters, yet genuine; unknown, yet well- 10 known; dying, and yet we live on; punished, yet not killed; sorrowful, yet always rejoicing; poor, yet making many rich; having nothing, and 11 yet possessing everything. 8 9 12 We have spoken freely to you, Corinthians. 13 Our hearts are open wide. It is not our affec- tion, but yours, that is restrained. As a fair exchange—I speak as to my children—open Do Not Be Unequally Yoked wide your hearts also. 14 c 15 Do not be unequally yoked with unbelievers. For what partnership can righteousness have with wickedness? Or what fellowship does light What harmony is there hav" + } + ] + }, + { + "chapterNum": 117, + "verses": [ + { + "verseNum": 1, + "text": "" + } + ] + }, + { + "chapterNum": 118, + "verses": [ + { + "verseNum": 6, + "text": "(see also LXX) Grace be with all of you. d 6 Amen. g 25 James 16 17 A Greeting from James" + }, + { + "verseNum": 22, + "text": "–23 A denarius was customarily a day’s wage for a laborer; see" + }, + { + "verseNum": 25, + "text": "; also in verse 15. BYZ and TR include f 9 is a transliteration of the Hebrew e 9 Hosanna TR is similar. When Jesus had entered Jerusalem, the whole b 22 or be baptized with the baptism with city was stirred and asked, “Who is this?” and be baptized with the baptism with which I am baptized Hosia-na BYZ includes Save, we pray Save now g 9 “Hosanna in the highest . , meaning or , which" + }, + { + "verseNum": 26, + "text": "Or See" + } + ] + }, + { + "chapterNum": 119, + "verses": [ + { + "verseNum": 6, + "text": "| 561 19 Open to me the gates of righteousness, that I may enter and give thanks to 20 the LORD. 21 This is the gate of the LORD; the righteous shall enter through it. I will give You thanks, for You have answered 22 me, 23 and You have become my salvation. d The stone the builders rejected has become the cornerstone. e 24 This is from the LORD, and it is marvelous in our eyes. 25 This is the day that the LORD has made; we will rejoice and be glad in it. f O LORD, save us, we pray. We beseech You, O LORD, cause us to prosper! g Blessed is he who comes in the name of the 27 LORD. From the house of the LORD we bless you. The LORD is God; He has made His light to shine upon us. h but in the name of the LORD I cut them off. 28 Bind the festal sacrifice with cords They surrounded me on every side, but in the name of the LORD I cut 12 them off. They swarmed around me like bees, but they were extinguished like burning 13 thorns; in the name of the LORD I cut them off. 14 I was pushed so hard I was falling, but the LORD helped me. 15 The LORD is my strength and my song, and He has become my salvation. to the horns of the altar. 29 You are my God, and I will give You thanks. You are my God, and I will exalt You. Give thanks to the LORD, for He is good; His loving devotion endures forever. Psalm 119 Your Word Is a Lamp to My Feet א ALEPH 1 i Blessed 2 are those whose way is blameless, Shouts of joy and salvation resound in the who walk in the Law of the LORD. tents of the righteous: Bl" + }, + { + "verseNum": 7, + "text": "7 27 I will praise You with an upright heart 8 when I learn Your righteous judgments. 28 Make clear to me the way of Your precepts; then I will meditate on Your wonders. I will keep Your statutes; do not utterly forsake me. ב BETH 9 10 How can a young man keep his way pure? By guarding it according to Your word. With all my heart I have sought You; do not let me stray from Your 11 commandments. 12 I have hidden Your word in my heart that I might not sin against You. 13 Blessed are You, O LORD; teach me Your statutes. 14 With my lips I proclaim all the judgments of Your mouth. I rejoice in the way of Your testimonies 15 as much as in all riches. 16 I will meditate on Your precepts and regard Your ways. I will delight in Your statutes; I will not forget Your word. ג GIMEL 17 18 Deal bountifully with Your servant, that I may live and keep Your word. 19 Open my eyes that I may see wondrous things from Your law. I am a stranger on the earth; 20 do not hide Your commandments from me. 21 My soul is consumed with longing for Your judgments at all times. You rebuke the arrogant— 22 the cursed who stray from Your commandments. Remove my scorn and contempt, 23 for I have kept Your testimonies. 24 Though rulers sit and slander me, 29 My soul melts with sorrow; strengthen me according to Your word. 30 Remove me from the path of deceit and graciously grant me Your law. 31 I have chosen the way of truth; I have set Your ordinances before me. 32 I cling to Your testimonies, O LORD; let me no" + }, + { + "verseNum": 84, + "text": "| 563 which I love, and I meditate on Your statutes. ז ZAYIN 49 50 Remember Your word to Your servant, upon which You have given me hope. 51 This is my comfort in affliction, that Your promise has given me life. 52 The arrogant utterly deride me, but I do not turn from Your law. I remember Your judgments of old, 53 O LORD, and in them I find comfort. Rage has taken hold of me 54 because of the wicked who reject Your law. 55 Your statutes are songs to me in the house of my pilgrimage. 56 In the night, O LORD, I remember Your name, that I may keep Your law. This is my practice, for I obey Your precepts. ח HETH 57 58 The LORD is my portion; I have promised to keep Your words. I have sought Your face with all my heart; be gracious to me according to Your 59 promise. I considered my ways 60 and turned my steps to Your testimonies. 61 I hurried without hesitating to keep Your commandments. 62 Though the ropes of the wicked bind me, I do not forget Your law. 63 64 At midnight I rise to give You thanks for Your righteous judgments. I am a friend to all who fear You, and to those who keep Your precepts. The earth is filled with Your loving devotion, O LORD; ט teach me Your statutes. TETH 65 but now I keep Your word. 69 You are good, and You do what is good; teach me Your statutes. Though the arrogant have smeared me with 70 lies, a I keep Your precepts with all my heart. 71 Their hearts are callous and insensitive, but I delight in Your law. 72 It was good for me to be afflicted, that" + }, + { + "verseNum": 85, + "text": "85 The arrogant have dug pits for me 86 in violation of Your law. All Your commandments are faithful; 87 I am persecuted without cause—help me! They almost wiped me from the earth, 88 but I have not forsaken Your precepts. Revive me according to Your loving devotion, that I may obey the testimony of Your ל LAMEDH mouth. 89 90 Your word, O LORD, is everlasting; it is firmly fixed in the heavens. Your faithfulness continues through all 91 generations; a You established the earth, and it endures. Your ordinances stand to this day, 92 for all things are servants to You. If Your law had not been my delight, then I would have perished in my 93 affliction. I will never forget Your precepts, 94 for by them You have revived me. I am Yours; save me, 95 for I have sought Your precepts. The wicked wait to destroy me, 96 but I will ponder Your testimonies. I have seen a limit to all perfection, but Your commandment is without מ MEM limit. 97 Oh, how I love Your law! 98 All day long it is my meditation. Your commandments make me wiser than 99 my enemies, for they are always with me. I have more insight than all my teachers, 100 for Your testimonies are my meditation. 101 I discern more than the elders, for I obey Your precepts. נ NUN 105 106 Your word is a lamp to my feet and a light to my path. I have sworn and confirmed 107 that I will keep Your righteous judgments. 108 I am severely afflicted, O LORD; revive me through Your word. Accept the freewill offerings of my mouth, O 109 LORD, an" + }, + { + "verseNum": 163, + "text": "| 565 ק KOPH 145 I call with all my heart; answer me, 146 O LORD! I will obey Your statutes. 147 I call to You; save me, 148 that I may keep Your testimonies. I rise before dawn and cry for help; in Your word I have put my hope. 149 My eyes anticipate the watches of night, that I may meditate on Your word. Hear my voice, O LORD, according to Your 150 loving devotion; give me life according to Your justice. Those who follow after wickedness draw 151 near; they are far from Your law. 152 You are near, O LORD, and all Your commandments are true. Long ago I learned from Your testimonies ר that You have established them forever. RESH 153 154 Look upon my affliction and rescue me, for I have not forgotten Your law. 155 Defend my cause and redeem me; revive me according to Your word. 156 Salvation is far from the wicked because they do not seek Your statutes. 157 Great are Your mercies, O LORD; 158 revive me according to Your ordinances. Though my persecutors and foes are many, I have not turned from Your testimonies. 159 I look on the faithless with loathing because they do not keep Your word. Consider how I love Your precepts, O LORD; 160 give me life according to Your loving devotion. The entirety of Your word is truth, and all Your righteous judgments endure ש SIN and SHIN forever. 161 162 Rulers persecute me without cause, but my heart fears only Your word. 144 Trouble and distress have found me, 163 I rejoice in Your promise but Your commandments are my delight. like one who f" + }, + { + "verseNum": 164, + "text": "164 165 Seven times a day I praise You for Your righteous judgments. Abundant peace belongs to those who love 166 Your law; nothing can make them stumble. I wait for Your salvation, O LORD, 167 and I carry out Your commandments. 168 I obey Your testimonies and love them greatly. I obey Your precepts and Your testimonies, ת TAW for all my ways are before You. 169 May my cry come before You, O LORD; 170 give me understanding according to Your word. 171 May my plea come before You; rescue me according to Your promise. 172 My lips pour forth praise, for You teach me Your statutes. 173 My tongue sings of Your word, for all Your commandments are righteous. 174 175 May Your hand be ready to help me, for I have chosen Your precepts. I long for Your salvation, O LORD, and Your law is my delight. 176 Let me live to praise You; may Your judgments sustain me. I have strayed like a lost sheep; seek Your servant, for I have not forgotten Your commandments. Psalm 120 In My Distress I Cried to the LORD A song of ascents. 1 In my distress I cried to the LORD, 2 and He answered me. Deliver my soul, O LORD, from lying lips and a deceitful tongue. 3 What will He do to you, 4 and what will be added to you, O deceitful tongue? 5 Sharp arrows will come from the warrior, with burning coals of the broom tree! Woe to me that I dwell in Meshech, 6 that I live among the tents of Kedar! Too long have I dwelt 7 among those who hate peace. I am in favor of peace; a 6 be secure but when I speak, they want w" + } + ] + }, + { + "chapterNum": 127, + "verses": [ + { + "verseNum": 5, + "text": "| 567 As the eyes of servants look to the hand of their master, as the eyes of a maidservant look to the hand of her mistress, so our eyes are on the LORD our God 3 until He shows us mercy. 4 Have mercy on us, O LORD, have mercy, for we have endured much contempt. We have endured much scorn from the arrogant, Psalm 124 much contempt from the proud. Our Help Is in the Name of the LORD A song of ascents. Of David. 1 If the LORD had not been on our side— 2 let Israel now declare— if the LORD had not been on our side 3 when men attacked us, when their anger flared against us, 4 then they would have swallowed us alive, then the floods would have engulfed us, 5 then the torrent would have overwhelmed us, then the raging waters 6 would have swept us away. Blessed be the LORD, 7 who has not given us as prey to their teeth. Do good, O LORD, to those who are good, 5 and to the upright in heart. But those who turn to crooked ways the LORD will banish with the evildoers. Peace be upon Israel. Psalm 126 Zion’s Captives Restored A song of ascents. 1 a When the LORD restored the captives of b 2 Zion, we were like dreamers. Then our mouths were filled with laughter, our tongues with shouts of joy. Then it was said among the nations, 3 “The LORD has done great things for them.” 4 The LORD has done great things for us; we are filled with joy. c Restore our captives, 5 O LORD, like streams in the Negev. Those who sow in tears 6 will reap with shouts of joy. He who goes out weeping, bearing a tr" + } + ] + }, + { + "chapterNum": 128, + "verses": [ + { + "verseNum": 1, + "text": "–6) 1 a Hallelujah! Blessed is the man who fears the LORD, 2 who greatly delights in His commandments. His glory above the heavens. 6 7 Who is like the LORD our God, the One enthroned on high? He humbles Himself to behold the heavens and the earth. He raises the poor from the dust 8 and lifts the needy from the dump to seat them with nobles, 9 with the princes of His people. He settles the barren woman in her home as a joyful mother to her children. Hallelujah! Psalm 114 A Psalm of Exodus His descendants will be mighty in the land; the generation of the upright will be 3 1 blessed. Wealth and riches are in his house, 4 and his righteousness endures forever. Light dawns in the darkness for the upright— for the gracious, compassionate, and righteous. 5 It is well with the man who is generous and 6 lends freely, whose affairs are guided by justice. Surely he will never be shaken; 7 the righteous man will be remembered forever. He does not fear bad news; 8 his heart is steadfast, trusting in the LORD. 9 His heart is assured; he does not fear, b until he looks in triumph on his foes. He has scattered abroad his gifts to the poor; 10 his righteousness endures forever; his horn will be lifted high in honor. When Israel departed from Egypt, 2 the house of Jacob from a people of foreign tongue, Judah became God’s sanctuary, Israel His dominion. 4 The sea observed and fled; the Jordan turned back; the mountains skipped like rams, 5 the hills like lambs. Why was it, O sea, that you fled" + } + ] + }, + { + "chapterNum": 132, + "verses": [ + { + "verseNum": 5, + "text": "; ECM and NE" + }, + { + "verseNum": 11, + "text": "978 |" + } + ] + }, + { + "chapterNum": 135, + "verses": [ + { + "verseNum": 1, + "text": "–21) The wicked man will see and be grieved; he will gnash his teeth and waste 1 a 1 away; Hallelu YAH the desires of the wicked will perish. b 9 Praise the LORD c 1 Not to us, O LORD, not to us, but to Your name be the glory, Praise the LORD Hallelu YAH Or , meaning . This psalm is an acrostic poem, each line beginning with the successive letters of the Hebrew alphabet. Cited in 2 Corinthians 9:9 Or , meaning ; also in verse 9 560 |" + }, + { + "verseNum": 14, + "text": "h 32 Literally Or" + }, + { + "verseNum": 15, + "text": "| 569 who serve by night 2 in the house of the LORD! Lift up your hands to the sanctuary 3 and bless the LORD! May the LORD, the Maker of heaven and earth, Psalm 135 bless you from Zion. Give Praise, O Servants of the LORD" + }, + { + "verseNum": 16, + "text": "16 14 17 They have mouths, but cannot speak; they have eyes, but cannot see; they have ears, but cannot hear; 18 nor is there breath in their mouths. Those who make them become like them, 19 as do all who trust in them. O house of Israel, bless the LORD; 20 O house of Aaron, bless the LORD; O house of Levi, bless the LORD; 21 you who fear the LORD, bless the LORD! Blessed be the LORD from Zion— He who dwells in Jerusalem. Hallelujah! Psalm 136 His Loving Devotion Endures Forever (2 Chronicles 7:1–3) 1 Give thanks to the LORD, for He is good. His loving devotion endures forever. 2 Give thanks to the God of gods. His loving devotion endures forever. 3 Give thanks to the Lord of lords. His loving devotion endures forever. 4 He alone does great wonders. His loving devotion endures forever. 5 By His insight He made the heavens. His loving devotion endures forever. 6 He spread out the earth upon the waters. His loving devotion endures forever. 7 He made the great lights— His loving devotion endures forever. 8 the sun to rule the day, His loving devotion endures forever. 9 and led Israel through the midst, His loving devotion endures forever. 15 b but swept Pharaoh and his army into the His loving devotion endures forever. Red Sea. 16 He led His people through the wilderness. His loving devotion endures forever. 17 He struck down great kings His loving devotion endures forever. 18 and slaughtered mighty kings— His loving devotion endures forever. 19 Sihon king of the Amorites His lo" + } + ] + }, + { + "chapterNum": 136, + "verses": [ + { + "verseNum": 1, + "text": "–26) servant David.” And as for the foreigner who is not of Your people Israel but has come from a distant land because of Your great name and Your mighty hand and outstretched arm—when 33 he comes and prays toward this temple, then may You hear from heaven, Your dwelling place, and do according to all for which the foreigner calls to You. Then all the peoples of the earth will know Your name and fear You, as do Your people Israel, and they will know that this house I have built is 34 called by Your Name. When Your people go to war against their enemies, wherever You send them, and when they pray to You in the direction of this 35 city You have chosen and the house I have then may You hear built for Your Name, from heaven their prayer and their plea, and 36 may You uphold their cause. 37 When they sin against You—for there is no one who does not sin—and You become an- gry with them and deliver them to an enemy who takes them as captives to a land far or and when they come to their senses near, in the land to which they were taken, and 7 When Solomon had finished praying, fire came down from heaven and consumed the 2 burnt offering and the sacrifices, and the glory of the LORD filled the temple. The priests were un- able to enter the house of the LORD, because the 3 glory of the LORD had filled it. When all the Israelites saw the fire coming down and the glory of the LORD above the tem- ple, they bowed down on the pavement with their faces to the ground, and they worshiped and" + } + ] + }, + { + "chapterNum": 137, + "verses": [ + { + "verseNum": 1, + "text": "–9) 1 In the thirtieth year, on the fifth day of the fourth month, while I was among the exiles by the River Kebar, the heavens opened and I 2 saw visions of God. a 3 On the fifth day of the month—it was the fifth the word year of the exile of King Jehoiachin— b of the LORD came directly to Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by the River Kebar. And there the LORD’s hand was The Four Living Creatures upon him. 4 I looked and saw a whirlwind coming from the north, a great cloud with fire flashing back and forth and brilliant light all around it. In the center and within of the fire was a gleam like amber, it was the form of four living creatures. 5 c 6 7 And this was their appearance: They had a hu- but each had four faces and four man form, wings. Their legs were straight, and the soles of their feet were like the hooves of a calf, gleaming 8 like polished bronze. 9 Under their wings on their four sides they had human hands. All four living creatures had faces and wings, and their wings were touching one another. They did not turn as they moved; each 10 one went straight ahead. The form of their faces was that of a man, and each of the four had the face of a lion on the right side, the face of an ox on the left side, and also the face of an eagle. Such were their faces. 11 Their wings were spread upward; each had two wings touching the wings of the creature on 12 either side, and two wings covering its body. Each creature went straight ahead. Whe" + } + ] + }, + { + "chapterNum": 139, + "verses": [ + { + "verseNum": 18, + "text": "| 571 Psalm 139 You Have Searched Me and Known Me For the choirmaster. A Psalm of David. 1 O LORD, You have searched me 2 and known me. You know when I sit and when I rise; 3 You understand my thoughts from afar. You search out my path and my lying down; 4 You are aware of all my ways. Even before a word is on my tongue, You know all about it, O LORD. You hem me in behind and before; 5 6 You have laid Your hand upon me. Such knowledge is too wonderful for me, too lofty for me to attain. 7 Where can I go to escape Your Spirit? 8 Where can I flee from Your presence? If I ascend to the heavens, You are there; 9 if I make my bed in Sheol, You are there. 10 11 12 If I rise on the wings of the dawn, if I settle by the farthest sea, even there Your hand will guide me; Your right hand will hold me fast. If I say, “Surely the darkness will hide me, and the light become night around me”— even the darkness is not dark to You, but the night shines like the day, b for darkness is as light to You. 13 For You formed my inmost being; 14 You knit me together in my mother’s womb. I praise You, for I am fearfully and wonderfully made. 15 Marvelous are Your works, and I know this very well. My frame was not hidden from You when I was made in secret, 16 when I was woven together in the depths of the earth. Your eyes saw my unformed body; all my days were written in Your book and ordained for me 17 before one of them came to be. c How precious to me are Your thoughts, 18 O God, how vast is their s" + }, + { + "verseNum": 19, + "text": "19 11 20 O God, that You would slay the wicked— a away from me, you bloodthirsty men— who speak of You deceitfully; 21 Your enemies take Your name in vain. Do I not hate those who hate You, O LORD, and detest those who rise against You? 22 23 I hate them with perfect hatred; I count them as my enemies. 24 Search me, O God, and know my heart; test me and know my concerns. See if there is any offensive way in me; lead me in the way everlasting. Psalm 140 Rescue Me from Evil Men For the choirmaster. A Psalm of David. 1 Rescue me, O LORD, from evil men. 2 Protect me from men of violence, 3 who devise evil in their hearts and stir up war all day long. b They sharpen their tongues like snakes; the venom of vipers is on their lips. Selah 4 Guard me, O LORD, from the hands of the wicked. Keep me safe from men of violence 5 who scheme to make me stumble. The proud hide a snare for me; the cords of their net are spread along the path, and lures are set out for me. Selah 6 7 I say to the LORD, “You are my God.” Hear, O LORD, my cry for help. May no slanderer be established in the land; 12 may calamity hunt down the man of violence. I know that the LORD upholds justice for the 13 poor and defends the cause of the needy. Surely the righteous will praise Your name; Psalm 141 the upright will dwell in Your presence. Come Quickly to Me" + } + ] + }, + { + "chapterNum": 140, + "verses": [ + { + "verseNum": 3, + "text": "as a propitiation e 14 j 8 b 12 Or" + } + ] + }, + { + "chapterNum": 141, + "verses": [ + { + "verseNum": 1, + "text": "–10) For the choirmaster. Of David. To bring remembrance. 22 and gave me vinegar to quench my thirst. c May their table become a snare; 23 may it be a retribution and a trap. d May their eyes be darkened so they cannot 24 see, and their backs be bent forever. Pour out Your wrath upon them, Make haste, O God, to deliver me! Hurry, O LORD, to help me! 2 May those who seek my life be ashamed and confounded; may those who wish me harm 3 be repelled and humiliated. May those who say, “Aha, aha!” a 9 and let Your burning anger overtake them. c 22 b 9 Cited in" + } + ] + }, + { + "chapterNum": 142, + "verses": [ + { + "verseNum": 1, + "text": "–7) 22 2 So David left Gath and took refuge in the cave of Adullam. When his brothers and the rest of his father’s household heard about it, And all who were they went down to him there. distressed or indebted or discontented rallied around him, and he became their leader. About 3 four hundred men were with him. From there David went to Mizpeh of Moab, a where he said to the king of Moab, “Please let my 4 with you until I learn father and mother stay what God will do for me.” So he left them in the care of the king of Moab, and they stayed with 5 him the whole time David was in the stronghold. Then the prophet Gad said to David, “Do not stay in the stronghold. Depart and go into the land of Judah.” So David left and went to the for- Saul Slays the Priests of Nob" + } + ] + }, + { + "chapterNum": 144, + "verses": [ + { + "verseNum": 7, + "text": "| 573 7 Answer me quickly, O LORD; my spirit fails. Do not hide Your face from me, 8 or I will be like those who descend to the Pit. Let me hear Your loving devotion in the morning, for I have put my trust in You. Teach me the way I should walk, 9 for to You I lift up my soul. b Although my spirit grows faint within me, Deliver me from my enemies, O LORD; 10 You know my way. Along the path I travel 4 they have hidden a snare for me. Look to my right and see; no one attends to me. There is no refuge for me; 5 no one cares for my soul. 6 I cry to You, O LORD: “You are my refuge, my portion in the land of the living.” Listen to my cry, for I am brought quite low. Rescue me from my pursuers, 7 for they are too strong for me. Free my soul from prison, that I may praise Your name. The righteous will gather around me because of Your goodness to me. Psalm 143 I Stretch Out My Hands to You A Psalm of David. 1 O LORD, hear my prayer. In Your faithfulness, give ear to my plea; in Your righteousness, answer me. Do not bring Your servant into judgment, for no one alive is righteous before You. For the enemy has pursued my soul, crushing my life to the ground, making me dwell in darkness 4 like those long since dead. My spirit grows faint within me; my heart is dismayed inside me. 2 3 5 I remember the days of old; 6 I meditate on all Your works; I consider the work of Your hands. I stretch out my hands to You; my soul thirsts for You like a parched Selah land. a 1 Maskil b 9 I flee to You" + }, + { + "verseNum": 8, + "text": "8 8 9 whose mouths speak falsehood, whose right hands are deceitful. The LORD is gracious and compassionate, slow to anger and abounding in loving 9 I will sing to You a new song, O God; 10 on a harp of ten strings I will make music to You— to Him who gives victory to kings, 11 who frees His servant David from the deadly sword. Set me free and rescue me from the grasp of foreigners, whose mouths speak falsehood, 12 whose right hands are deceitful. Then our sons will be like plants 13 nurtured in their youth, our daughters like corner pillars carved to adorn a palace. Our storehouses will be full, 14 supplying all manner of produce; our flocks will bring forth thousands, tens of thousands in our fields. a Our oxen will bear great loads. There will be no breach in the walls, no going into captivity, 15 and no cry of lament in our streets. Blessed are the people of whom this is so; blessed are the people whose God is the LORD. Psalm 145 I Will Exalt You, My God and King A Psalm of praise. Of David.b 1 I will exalt You, my God and King; 2 I will bless Your name forever and ever. Every day I will bless You, 3 and I will praise Your name forever and ever. Great is the LORD and greatly to be praised; 4 His greatness is unsearchable. One generation will commend Your works to 5 the next, and will proclaim Your mighty acts— the glorious splendor of Your majesty. 6 And I will meditate on Your wondrous works. 3 They will proclaim the power of Your 7 awesome deeds, and I will declare Your" + } + ] + }, + { + "chapterNum": 148, + "verses": [ + { + "verseNum": 1, + "text": "–14) Rejoice in the LORD, O righteous ones; 2 it is fitting for the upright to praise Him. Praise the LORD with the harp; 3 make music to Him with ten strings. 4 Sing to Him a new song; play skillfully with a shout of joy. 5 For the word of the LORD is upright, and all His work is trustworthy. 6 The LORD loves righteousness and justice; the earth is full of His loving devotion. By the word of the LORD the heavens were Selah made, Then I acknowledged my sin to You and did not hide my iniquity. a 1 Maskil b 1 man whose sin the LORD does not count against him LXX Blessed is he whose lawless acts are forgiven, whose sins are covered c 2 Blessed is the is probably a musical or liturgical term; used for Psalms 32, 42, 44–45, 52–55, 74, 78, 88–89, and 142. my vitality was turned d 4 ; cited in" + }, + { + "verseNum": 6, + "text": "| 575 6 Blessed is he whose help is the God of Jacob, whose hope is in the LORD his God, the Maker of heaven and earth, 7 the sea, and everything in them. He remains faithful forever. 8 He executes justice for the oppressed and gives food to the hungry. The LORD sets the prisoners free, the LORD opens the eyes of the blind, the LORD lifts those who are weighed down, 9 the LORD loves the righteous. The LORD protects foreigners; The LORD is pleased with those who 12 fear Him, who hope in His loving devotion. 13 Exalt the LORD, O Jerusalem; praise your God, O Zion! For He strengthens the bars of your gates 14 and blesses the children within you. He makes peace at your borders; He fills you with the finest wheat. 15 He sends forth His command to the 10 He sustains the fatherless and the widow, but the ways of the wicked He frustrates. 16 earth; His word runs swiftly. The LORD reigns forever, your God, O Zion, for all generations. Hallelujah! Psalm 147 It Is Good to Sing Praises 1 a Hallelujah! 2 How good it is to sing praises to our God, how pleasant and lovely to praise Him! The LORD builds up Jerusalem; 3 He gathers the exiles of Israel. He heals the brokenhearted 4 and binds up their wounds. He determines the number of the stars; 5 He calls them each by name. 6 Great is our Lord, and mighty in power; His understanding has no limit. The LORD sustains the humble, but casts the wicked to the ground. 7 Sing to the LORD with thanksgiving; 8 make music on the harp to our God, who co" + }, + { + "verseNum": 7, + "text": "7 4 Praise the LORD from the earth, 8 all great sea creatures and ocean depths, lightning and hail, snow and clouds, 9 powerful wind fulfilling His word, 10 mountains and all hills, fruit trees and all cedars, wild animals and all cattle, 11 crawling creatures and flying birds, 12 kings of the earth and all peoples, princes and all rulers of the earth, 13 young men and maidens, old and young together. Let them praise the name of the LORD, for His name alone is exalted; His splendor is above the earth and 14 the heavens. He has raised up a horn for His people, the praise of all His saints, of Israel, a people near to Him. Hallelujah! Psalm 149 Sing to the LORD a New Song" + } + ] + }, + { + "chapterNum": 149, + "verses": [ + { + "verseNum": 1, + "text": "–9 ;" + } + ] + } + ] + }, + { + "name": "Proverbs", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) all who hate me love death.” 9 2 a Wisdom has built her house; she has carved out her seven pillars. She has prepared her meat and mixed her 3 wine; she has also set her table. She has sent out her maidservants; 4 she calls out from the heights of the city. 5 “Whoever is simple, let him turn in here!” she says to him who lacks judgment. “Come, eat my bread 6 and drink the wine I have mixed. Leave your folly behind, and you will live; walk in the way of understanding.” 7 He who corrects a mocker brings shame on himself; 8 he who rebukes a wicked man taints himself. 9 Do not rebuke a mocker, or he will hate you; rebuke a wise man, and he will love you. Instruct a wise man, and he will be wiser still; 10 teach a righteous man, and he will increase his learning. The fear of the LORD is the beginning of wisdom, 11 and knowledge of the Holy One is b understanding. For through wisdom your days will be 12 multiplied, and years will be added to your life. If you are wise, you are wise to your own advantage; on a seat in the heights of the city, 16 calling out to those who pass by, who make their paths straight. 17 “Whoever is simple, let him turn in here!” she says to him who lacks judgment. 18 “Stolen water is sweet, c and bread eaten in secret is tasty!” But they do not know that the dead are there, Solomon’s Proverbs: The Wise Son that her guests are in the depths of Sheol. 10 The proverbs of Solomon: 2 A wise son brings joy to his father, but a foolish son grief to his mother." + }, + { + "verseNum": 33, + "text": "33 21 But whoever listens to me will dwell in 22 For the upright will inhabit the land, safety, The Benefits of Wisdom secure from the fear of evil.” 2 2 My son, if you accept my words and hide my commandments within you, 3 if you incline your ear to wisdom 3 2 and direct your heart to understanding, and the blameless will remain in it; but the wicked will be cut off from the land, Trust in the LORD with All Your Heart and the unfaithful will be uprooted. My son, do not forget my teaching, but let your heart keep my commandments; if you truly call out to insight 4 and lift your voice to understanding, if you seek it like silver 5 and search it out like hidden treasure, then you will discern the fear of the LORD and discover the knowledge of God. 6 For the LORD gives wisdom; 7 from His mouth come knowledge and understanding. He stores up sound wisdom for the upright; He is a shield to those who walk with 8 integrity, to guard the paths of justice 9 and protect the way of His saints. Then you will discern righteousness 10 and justice and equity—every good path. 11 For wisdom will enter your heart, and knowledge will delight your soul. 12 Discretion will watch over you, and understanding will guard you, 13 to deliver you from the way of evil, 14 from the man who speaks perversity, from those who leave the straight paths to walk in the ways of darkness, 15 from those who enjoy doing evil and rejoice in the twistedness of evil, whose paths are crooked 16 and whose ways are devious" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 34, + "text": "(see also LXX) 1088 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 579 21 broken open, and the clouds dripped with dew. My son, do not lose sight of this: Preserve sound judgment and 22 discernment. They will be life to your soul 23 and adornment to your neck. 24 Then you will go on your way in safety, and your foot will not stumble. 25 When you lie down, you will not be afraid; when you rest, your sleep will be sweet. 26 Do not fear sudden danger or the ruin that overtakes the wicked, 27 for the LORD will be your confidence a and will keep your foot from the snare. 28 Do not withhold good from the deserving when it is within your power to act. Do not tell your neighbor, “Come back tomorrow and I will 29 provide”— 30 when you already have the means. Do not devise evil against your neighbor, for he trustfully dwells beside you. 31 Do not accuse a man without cause, when he has done you no harm. 32 Do not envy a violent man 33 or choose any of his ways; for the LORD detests the perverse, but He is a friend to the upright. The curse of the LORD is on the house of the 34 wicked, but He blesses the home of the righteous. b 35 He mocks the mockers, but gives grace to the humble. The wise will inherit honor, A Father’s Instruction but fools are held up to shame. 4 2 Listen, my sons, to a father’s instruction; pay attention and gain understanding. For I give you sound teaching; 3 do not abandon my directive. When I was a son to my father, 4 tender and the only child of my mother, he taught me and said, a 27 “Let your heart lay hold of my words; b" + }, + { + "verseNum": 25, + "text": "25 19 26 Let your eyes look forward; a fix your gaze straight ahead. 27 Make a level path for your feet, and all your ways will be sure. Do not swerve to the right or to the left; Avoiding Immorality turn your feet away from evil." + }, + { + "verseNum": 26, + "text": "(see De. 9:19 In your struggle against sin, you have not yet 5 resisted to the point of shedding your blood. And you have forgotten the exhortation that ad- b 2 a 37 dresses you as sons: they were put to the test, NE, WH, BYZ, TR include g 15 h 18 Prov. 3:11–12 (see also LXX) also LXX) See De. 29:18 Or Literally d 11 founder it yields the peaceful fruit of righteousness or Or i 20 to what can be touched and c 6 e 12 1084 |" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–23 ; 1 Corinthians 5:1–8) his father or mother, he must He has cursed his father or 10 If a man commits adultery with another man’s wife—with the wife of his neighbor—both the adulterer and the adulteress must surely be put 11 to death. If a man lies with his father’s wife, he has un- covered his father’s nakedness. Both must surely 12 be put to death; their blood is upon them. If a man lies with his daughter-in-law, both must surely be put to death. They have acted per- 13 versely; their blood is upon them. If a man lies with a man as with a woman, they have both committed an abomination. They must 14 surely be put to death; their blood is upon them. If a man marries both a woman and her mother, it is depraved. Both he and they must be burned in the fire, so that there will be no de- 15 pravity among you. If a man lies carnally with an animal, he must be put to death. And you are also to kill the ani- 16 mal. If a woman approaches any animal to mate with it, you must kill both the woman and the animal. They must surely be put to death; their 17 blood is upon them. c If a man marries his sister, whether the daugh- ter of his father or of his mother, and they have sexual relations, it is a disgrace. They must be cut off in the sight of their people. He has uncov- ered the nakedness of his sister; he shall bear his 18 iniquity. d If a man lies with a menstruating woman and has sexual relations with her, he has exposed the source of her flow, and she has uncovered the source of" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 16, + "text": "| 581 suddenly; in an instant he will be shattered beyond recovery. 16 There are six things that the LORD hates, 17 seven that are detestable to Him: haughty eyes, a lying tongue, 18 hands that shed innocent blood, a heart that devises wicked schemes, 19 feet that run swiftly to evil, a false witness who gives false testimony, Warnings against Adultery and one who stirs up discord among brothers. 20 My son, keep your father’s commandment, 21 and do not forsake your mother’s teaching. 22 Bind them always upon your heart; tie them around your neck. When you walk, they will guide you; when you lie down, they will watch over 23 you; when you awake, they will speak to you. For this commandment is a lamp, this teaching is a light, 24 and the reproofs of discipline are the way to life, to keep you from the evil woman, a from the smooth tongue of the 25 33 He who commits adultery lacks judgment; whoever does so destroys himself. Wounds and dishonor will befall him, 34 and his reproach will never be wiped away. For jealousy enrages a husband, 35 and he will show no mercy in the day of vengeance. He will not be appeased by any ransom, Warnings about the Adulteress or persuaded by lavish gifts. 7 2 My son, keep my words and treasure my commandments within you. d Keep my commandments and live; guard my teachings as the apple 3 of your eye. Tie them to your fingers; 4 write them on the tablet of your heart. Say to wisdom, “You are my sister,” 5 and call understanding your kinsman, that th" + }, + { + "verseNum": 17, + "text": "17 12 18 I have perfumed my bed with myrrh, with aloes, and with cinnamon. 13 I, wisdom, dwell together with prudence, and I find knowledge and discretion. 19 Come, let us take our fill of love till morning. To fear the LORD is to hate evil; Let us delight in loving caresses! 20 For my husband is not at home; he has gone on a long journey. He took with him a bag of money 21 14 I hate arrogant pride, evil conduct, and perverse speech. Counsel and sound judgment are mine; 15 I have insight and strength. and will not return till the moon is full.” By me kings reign, 16 22 With her great persuasion she entices him; with her flattering lips she lures him. 23 He follows her on impulse, a like an ox going to the slaughter, like a deer bounding into a trap, until an arrow pierces his liver, 24 like a bird darting into a snare— not knowing it will cost him his life. 25 Now, my sons, listen to me, and attend to the words of my mouth. Do not let your heart turn aside to her ways; 26 do not stray into her paths. and rulers enact just laws; c By me princes rule, 17 and all nobles who govern justly. I love those who love me, 18 and those who seek me early shall find me. With me are riches and honor, 19 enduring wealth and righteousness. My fruit is better than gold, pure gold, 20 and my harvest surpasses choice silver. I walk in the way of righteousness, 21 along the paths of justice, 27 For she has brought many down to death; her slain are many in number. bestowing wealth on those who lov" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 11, + "text": "| 583 The Way of Folly 13 14 The woman named Folly is loud; she is naive and knows nothing. for blessed are those who keep my ways. 15 She sits at the door of her house, 34 Listen to instruction and be wise; do not ignore it. Blessed is the man who listens to me, 35 watching daily at my doors, waiting at the posts of my doorway. 36 For whoever finds me finds life and obtains the favor of the LORD. But he who fails to find me harms himself; The Way of Wisdom" + }, + { + "verseNum": 12, + "text": "12 Hatred stirs up dissension, 13 but love covers all transgressions. 30 29 a The way of the LORD is a refuge to the Wisdom is found on the lips of the discerning, but a rod is for the back of him who lacks judgment. 14 The wise store up knowledge, 15 but the mouth of the fool invites destruction. The wealth of the rich man is his fortified 16 city, but poverty is the ruin of the poor. The labor of the righteous leads to life, but the gain of the wicked brings 17 punishment. Whoever heeds instruction is on the path to 18 life, but he who ignores reproof goes astray. 19 The one who conceals hatred has lying lips, and whoever spreads slander is a fool. 20 When words are many, sin is unavoidable, but he who restrains his lips is wise. The tongue of the righteous is choice silver, but the heart of the wicked has little 21 worth. 22 The lips of the righteous feed many, but fools die for lack of judgment. 23 The blessing of the LORD enriches, and He adds no sorrow to it. upright, but destruction awaits those who do evil. 31 The righteous will never be shaken, but the wicked will not inhabit the land. The mouth of the righteous brings forth 32 wisdom, but a perverse tongue will be cut out. The lips of the righteous know what is fitting, but the mouth of the wicked is perverse. Dishonest Scales" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 31, + "text": "(see also LXX) . That is, Silas WH, BYZ, and TR Literally I appeal therefore to the el- Literally g 5" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 11, + "text": "| 585 17 18 19 20 Whoever shows contempt for his neighbor lacks judgment, but a man of understanding remains silent. 13 A gossip reveals a secret, 14 but a trustworthy person keeps a 30 confidence. For lack of guidance, a nation falls, but with many counselors comes deliverance. 15 He who puts up security for a stranger will surely suffer, but the one who hates indebtedness is secure. 16 A gracious woman attains honor, but ruthless men gain only wealth. A kind man benefits himself, but a cruel man brings trouble on himself. The wicked man earns an empty wage, 29 31 He who trusts in his riches will fall, but the righteous will thrive like foliage. He who brings trouble on his house will inherit the wind, and the fool will be servant to the wise of heart. The fruit of the righteous is a tree of life, and he who wins souls is wise. If the righteous receive their due on earth, how much more the ungodly and the a Loving Discipline and Knowledge sinner! 12 Whoever loves discipline loves 2 knowledge, but he who hates correction is stupid. The good man obtains favor from the LORD, but the LORD condemns a man who devises evil. 3 but he who sows righteousness reaps a A man cannot be established through true reward. Genuine righteousness leads to life, 4 wickedness, but the righteous cannot be uprooted. but the pursuit of evil brings death. A wife of noble character is her husband’s The perverse in heart are an abomination to crown, the LORD, 5 but she who causes shame is like decay in" + }, + { + "verseNum": 12, + "text": "12 13 The wicked desire the plunder of evil men, but the root of the righteous flourishes. 3 things, but the desire of the faithless is violence. An evil man is trapped by his rebellious He who guards his mouth protects his life, 14 speech, but a righteous man escapes from trouble. 4 but the one who opens his lips invites his own ruin. By fruitful speech a man is filled with good The slacker craves yet has nothing, 15 things, and the work of his hands returns to him. 5 but the soul of the diligent is fully satisfied. The way of a fool is right in his own eyes, The righteous hate falsehood, but a wise man listens to counsel. but the wicked bring shame and disgrace. 6 16 18 19 20 22 25 26 27 28 17 A fool’s anger is known at once, but a prudent man overlooks an insult. He who speaks the truth declares what is right, but a false witness speaks deceit. 8 Speaking rashly is like a piercing sword, but the tongue of the wise brings healing. 9 Truthful lips endure forever, but a lying tongue lasts only a moment. Deceit is in the hearts of those who devise 21 evil, but the counselors of peace have joy. No harm befalls the righteous, but the wicked are filled with trouble. Lying lips are detestable to the LORD, 12 23 but those who deal faithfully are His delight. A shrewd man keeps his knowledge to 24 himself, but a foolish heart proclaims its folly. The hand of the diligent will rule, but laziness ends in forced labor. Anxiety weighs down the heart of a man, but a good word cheers it u" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 28, + "text": "| 587 He who walks with the wise will become wise, 21 but the companion of fools will be destroyed. Disaster pursues sinners, 22 but prosperity is the reward of the righteous. A good man leaves an inheritance to his children’s children, but the sinner’s wealth is passed to the righteous. 15 23 Abundant food is in the fallow ground of the 24 poor, but without justice it is swept away. He who spares the rod hates his son, 25 but he who loves him disciplines him diligently. The Wise Woman A righteous man eats to his heart’s content, but the stomach of the wicked is empty. 14 Every wise woman builds her house, but a foolish one tears it down with her own hands. He who walks in uprightness fears the LORD, but the one who is devious in his ways despises Him. The proud speech of a fool brings a rod to his 4 back, but the lips of the wise protect them. Where there are no oxen, the manger is empty, 5 but an abundant harvest comes through the strength of the ox. An honest witness does not deceive, but a dishonest witness pours forth lies. A mocker seeks wisdom and finds none, but knowledge comes easily to the discerning. 2 3 6 7 8 14 16 17 18 11 The heart knows its own bitterness, and no stranger shares in its joy. 12 The house of the wicked will be destroyed, but the tent of the upright will flourish. 13 There is a way that seems right to a man, but its end is the way of death. Even in laughter the heart may ache, and joy may end in sorrow. The backslider in heart receives the fill of" + }, + { + "verseNum": 29, + "text": "29 11 b A patient man has great understanding, but a quick-tempered man promotes folly. 30 Sheol and Abaddon lie open before the 12 LORD— how much more the hearts of men! 31 A tranquil heart is life to the body, but envy rots the bones. A mocker does not love to be reproved, nor will he consult the wise. Whoever oppresses the poor taunts their Maker, but whoever is kind to the needy honors Him. 32 The wicked man is thrown down by his own sin, 33 but the righteous man has a refuge even in death. a Wisdom rests in the heart of the discerning; even among fools she is known. Righteousness exalts a nation, but sin is a disgrace to any people. A king delights in a wise servant, A Gentle Answer Turns Away Wrath but his anger falls on the shameful. 15 2 A gentle answer turns away wrath, but a harsh word stirs up anger. The tongue of the wise commends 3 knowledge, but the mouth of the fool spouts folly. 4 The eyes of the LORD are in every place, observing the evil and the good. A soothing tongue is a tree of life, but a perverse tongue crushes the spirit. A fool rejects his father’s discipline, but whoever heeds correction is prudent. The house of the righteous has great treasure, 7 but the income of the wicked is trouble. The lips of the wise spread knowledge, but not so the hearts of fools. The sacrifice of the wicked is detestable to 9 the LORD, but the prayer of the upright is His delight. The LORD detests the way of the wicked, 10 but He loves those who pursue righteousness. 34 3" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 31, + "text": "| 589 30 32 33 2 3 4 5 6 The LORD is far from the wicked, Righteous lips are a king’s delight, but He hears the prayer of the righteous. and he who speaks honestly is beloved. 31 The light of the eyes cheers the heart, and good news nourishes the bones. The wrath of a king is a messenger of death, but a wise man will pacify it. 14 15 He who listens to life-giving reproof will dwell among the wise. He who ignores discipline despises himself, but whoever heeds correction gains understanding. The fear of the LORD is the instruction of wisdom, The Reply of the Tongue Is from the LORD and humility comes before honor. 16 The plans of the heart belong to man, but the reply of the tongue is from the 19 All a man’s ways are pure in his own eyes, but his motives are weighed out by the LORD. LORD. Commit your works to the LORD and your plans will be achieved. The LORD has made everything for His purpose— 16 When a king’s face brightens, there is life; his favor is like a rain cloud in spring. How much better to acquire wisdom than gold! 17 To gain understanding is more desirable than silver. The highway of the upright leads away from 18 evil; he who guards his way protects his life. Pride goes before destruction, and a haughty spirit before a fall. It is better to be lowly in spirit among the 20 humble than to divide the spoil with the proud. a 21 Whoever heeds instruction will find success, and blessed is he who trusts in the LORD. 22 The wise in heart are called discerning, and pleasa" + }, + { + "verseNum": 32, + "text": "32 16 He who is slow to anger is better than a warrior, 17 Why should the fool have money in his hand with no intention of buying wisdom? 33 and he who controls his temper is greater than one who captures a city. The lot is cast into the lap, Better a Dry Morsel in Quietness but its every decision is from the LORD. 17 a 19 A friend loves at all times, 18 and a brother is born for adversity. A man lacking judgment strikes hands in pledge and puts up security for his neighbor. Better a dry morsel in quietness than a house full of feasting with He who loves transgression loves strife; he who builds his gate high invites strife. destruction. 2 5 6 8 9 14 15 A wise servant will rule over a disgraceful son 3 and share his inheritance as one of the brothers. 4 A crucible for silver and a furnace for gold, but the LORD is the tester of hearts. A wicked man listens to evil lips; a liar gives ear to a destructive tongue. He who mocks the poor insults their Maker; whoever gloats over calamity will not go unpunished. 7 Grandchildren are the crown of the aged, and the glory of a son is his father. Eloquent words are unfit for a fool; how much worse are lying lips to a ruler! A bribe is a charm to its giver; wherever he turns, he succeeds. 10 Whoever conceals an offense promotes love, but he who brings it up separates friends. A rebuke cuts into a man of discernment 11 deeper than a hundred lashes cut into a fool. An evil man seeks only rebellion; 12 a cruel messenger will be sent against" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 18, + "text": "| 591 7 A fool’s lips bring him strife, and his mouth invites a beating. A fool’s mouth is his ruin, and his lips are a snare to his soul. 19 Better a poor man who walks with 2 integrity than a fool whose lips are perverse. The words of a gossip are like choice morsels that go down into the inmost being. 3 Even zeal is no good without knowledge, and he who hurries his footsteps misses the mark. the righteous run to it and are safe. Wealth attracts many friends, Whoever is slothful in his work is brother to him who destroys. a The name of the LORD is a strong tower; 12 A rich man’s wealth is his fortified city; it is like a high wall in his imagination. Before his downfall a man’s heart is proud, but humility comes before honor. 13 He who answers a matter before he 14 hears it— this is folly and disgrace to him. 15 The spirit of a man can endure his sickness, but who can survive a broken spirit? A man’s own folly subverts his way, yet his heart rages against the LORD. but a poor man is deserted by his friend. A false witness will not go unpunished, and one who utters lies will not escape. Many seek the favor of the prince, and everyone is a friend of the gift giver. All the brothers of a poor man hate him— how much more do his friends avoid him! He may pursue them with pleading, but they are nowhere to be found. The heart of the discerning acquires He who acquires wisdom loves himself; 16 knowledge, and the ear of the wise seeks it out. 9 one who safeguards understanding will" + }, + { + "verseNum": 19, + "text": "19 6 20 21 22 23 25 26 28 29 3 4 5 A man of great anger must pay the penalty; if you rescue him, you will have to do so 7 Many a man proclaims his loving devotion, but who can find a trustworthy man? again. Listen to counsel and accept discipline, that you may be wise the rest of your days. Many plans are in a man’s heart, but the purpose of the LORD will prevail. The desire of a man is loving devotion; better to be poor than a liar. The fear of the LORD leads to life, 24 that one may rest content, without visitation from harm. The slacker buries his hand in the dish; 8 The righteous man walks with integrity; blessed are his children after him. 9 A king who sits on a throne to judge sifts out all evil with his eyes. 10 Who can say, “I have kept my heart pure; b I am cleansed from my sin”? 11 Differing weights and unequal measures both are detestable to the LORD. — 12 Even a young man is known by his actions— whether his conduct is pure and upright. 13 Ears that hear and eyes that see— the LORD has made them both. he will not even bring it back to his mouth. Do not love sleep, or you will grow poor; Strike a mocker, and the simple will beware; rebuke the discerning man, and he will 14 open your eyes, and you will have plenty of food. gain knowledge. He who assaults his father or evicts his 27 mother is a son who brings shame and disgrace. If you cease to hear instruction, my son, you will stray from the words of knowledge. A corrupt witness mocks justice, and a wicked mouth sw" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–31) For the choirmaster. A Psalm of David. 1 2 O LORD, the king rejoices in Your strength. How greatly he exults in Your salvation! You have granted his heart’s desire and have not withheld the request of Selah 3 his lips. For You welcomed him with rich blessings; You placed on his head a crown of pure 4 gold. He asked You for life, and You granted it— 5 length of days, forever and ever. Great is his glory in Your salvation; 6 You bestow on him splendor and majesty. For You grant him blessings forever; a 3 line There is no speech or language where their voice is not heard O LORD, my Rock and my Redeemer. c 4 give victory to d 9 Or Cited in" + }, + { + "verseNum": 31, + "text": "| 593 27 28 A wise king separates out the wicked a and drives the threshing wheel over them. The spirit of a man is the lamp of the LORD, searching out his inmost being. c 15 A gift in secret soothes anger, and a covert bribe pacifies great wrath. 16 Justice executed is a joy to the righteous, but a terror to the workers of iniquity. Loving devotion and faithfulness preserve a The man who strays from the path of 29 king; by these he maintains his throne. 17 understanding will rest in the assembly of the dead. 30 The glory of young men is their strength, and gray hair is the splendor of the old. Lashes and wounds scour evil, The King’s Heart" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "A Good Name 22 A good name is more desirable than 2 great riches; favor is better than silver and gold. 3 The rich and the poor have this in common: LORD is Maker of them all. The The prudent see danger and take cover, 4 but the simple keep going and suffer the consequences. The rewards of humility and the fear of the 5 LORD are wealth and honor and life. Thorns and snares lie on the path of the Thirty Sayings of the Wise Saying 1 17 Incline your ear and hear the words of the 18 wise— apply your mind to my knowledge— for it is pleasing when you keep them within 19 you 20 and they are constantly on your lips. So that your trust may be in the LORD, c I instruct you today—yes, you. 21 Have I not written for you thirty sayings about counsel and knowledge, to show you true and reliable words, that you may soundly answer those who Saying 2 sent you? perverse; he who guards his soul stays far from 22 them. 6 8 9 10 Train up a child in the way he should go, and when he is old he will not depart from it. 7 The rich rule over the poor, and the borrower is slave to the lender. He who sows injustice will reap disaster, and the rod of his fury will be destroyed. b A generous man will be blessed, for he shares his bread with the poor. 26 23 Do not rob a poor man because he is poor, and do not crush the afflicted at the gate, Saying 3 for the LORD will take up their case and will plunder those who rob them. 24 a Do not make friends with an angry man, 25 and do not associate with a hot-tempe" + }, + { + "verseNum": 8, + "text": ", LXX addition." + }, + { + "verseNum": 9, + "text": "Literally ; a cubit was approximately 18 inches or 45 centimeters. ; see also" + }, + { + "verseNum": 28, + "text": "and" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 6, + "text": "10 11 seeks finds; and to him who knocks, the door will 9 be opened. Which of you, if his son asks for bread, will give Or if he asks for a fish, will give him a stone? him a snake So if you who are evil know how ? to give good gifts to your children, how much more will your Father in heaven give good things 12 to those who ask Him! In everything, then, do to others as you would have them do to you. For this is the essence of the The Narrow Gate" + }, + { + "verseNum": 10, + "text": ". . This is a derogatory term i 11 restore the fortunes of Or That is, the northern kingdom of Israel; also in verse 10 Cited in" + }, + { + "verseNum": 35, + "text": "| 595 Saying 16 19 20 Listen, my son, and be wise, and guide your heart on the right course. Do not join those who drink too much wine 21 or gorge themselves on meat. For the drunkard and the glutton will come Saying 17 to poverty, and drowsiness will clothe them in rags. Listen to your father who gave you life, 23 and do not despise your mother when she is old. Invest in truth and never sell it— in wisdom and instruction and 24 understanding. The father of a righteous man will greatly rejoice, 25 and he who fathers a wise son will delight in him. May your father and mother be glad, Saying 18 and may she who gave you birth rejoice! 26 27 My son, give me your heart, and let your eyes delight in my ways. d For a prostitute is a deep pit, 28 and an adulteress is a narrow well. Like a robber she lies in wait Saying 19 and multiplies the faithless among men. 29 Who has woe? Who has sorrow? Who has contentions? Who has complaints? 30 Who has needless wounds? Who has bloodshot eyes? Those who linger over wine, 31 who go to taste mixed drinks. Do not gaze at wine while it is red, when it sparkles in the cup and goes down smoothly. In the end it bites like a snake and stings like a viper. 32 33 34 Your eyes will see strange things, and your mind will utter perversities. You will be like one sleeping on the high seas 35 or lying on the top of a mast: “They struck me, but I feel no pain! They beat me, but I did not know it! For surely there is a future, a 6 d 27 of him whose eye is evil" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Do Not Envy Saying 20 24 2 Do not envy wicked men or desire their company; for their hearts devise violence, Saying 21 and their lips declare trouble. 3 By wisdom a house is built 4 and by understanding it is established; through knowledge its rooms are filled with every precious and beautiful Saying 22 treasure. 5 a A wise man is strong, 6 and a man of knowledge enhances his strength. Only with sound guidance should you wage war, and victory lies in a multitude of Saying 23 counselors. 7 Wisdom is too high for a fool; he does not open his mouth in the meeting Saying 24 place. 8 He who plots evil 9 will be called a schemer. A foolish scheme is sin, Saying 25 and a mocker is detestable to men. 10 11 If you faint in the day of distress, how small is your strength! Rescue those being led away to death, 12 and restrain those stumbling toward the slaughter. If you say, “Behold, we did not know about this,” does not He who weighs hearts consider it? Does not the One who guards your life know? Will He not repay a man according to his Saying 26 deeds? 13 Eat honey, my son, for it is good, and the honeycomb is sweet to your a 5 taste. The wise are mightier than the strong LXX 14 Know therefore that wisdom is sweet to your soul. If you find it, there is a future for you, Saying 27 and your hope will never be cut off. 15 Do not lie in wait, O wicked man, near the dwelling of the righteous; do not destroy his resting place. 16 For though a righteous man may fall seven times, he still get" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 21, + "text": "–22 (see also LXX) ; see verse 12. without quarreling over disputable matters" + }, + { + "verseNum": 28, + "text": "| 597 28 11 Do not testify against your neighbor without 12 A word fitly spoken 29 cause, and do not deceive with your lips. Do not say, “I will do to him as he has done to me; 30 I will repay the man according to his work.” is like apples of gold in settings of silver. Like an earring of gold or an ornament of fine 13 gold is a wise man’s rebuke to a listening ear. Like the cold of snow in the time of harvest is a trustworthy messenger to those who I went past the field of a slacker 31 and by the vineyard of a man lacking 14 send him; he refreshes the soul of his masters. judgment. 32 Thorns had grown up everywhere, thistles had covered the ground, and the stone wall was broken down. 33 I observed and took it to heart; I looked and received instruction: 34 A little sleep, a little slumber, a little folding of the hands to rest, and poverty will come upon you like a robber, More Proverbs of Solomon and need like a bandit. 25 These are additional proverbs of Sol- omon, which were copied by the men of 2 Hezekiah king of Judah: 3 It is the glory of God to conceal a matter and the glory of kings to search it out. As the heavens are high and the earth is 4 deep, so the hearts of kings cannot be searched. Remove the dross from the silver, 5 and a vessel for a silversmith will come forth. Remove the wicked from the king’s presence, 6 and his throne will be established in 23 righteousness. Do not exalt yourself in the presence of the 7 king, and do not stand in the place of great men" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Similitudes and Instructions 21 26 Like snow in summer and rain at 2 harvest, honor does not befit a fool. Like a fluttering sparrow or darting swallow, an undeserved curse does not come to 3 rest. A whip for the horse, a bridle for the donkey, 4 and a rod for the backs of fools! Do not answer a fool according to his folly, 5 or you yourself will be like him. Answer a fool according to his folly, 6 lest he become wise in his own eyes. Like cutting off one’s own feet or drinking violence 7 is the sending of a message by the hand of a fool. Like lame legs hanging limp 8 is a proverb in the mouth of a fool. Like binding a stone into a sling 9 is the giving of honor to a fool. Like a thorn that goes into the hand of a 10 drunkard 11 is a proverb in the mouth of a fool. Like an archer who wounds at random is he who hires a fool or passerby. a 12 As a dog returns to its vomit, so a fool repeats his folly. Do you see a man who is wise in his own eyes? There is more hope for a fool than for him. 4 13 15 17 The slacker says, “A lion is in the road! 14 A fierce lion roams the public square!” As a door turns on its hinges, so the slacker turns on his bed. The slacker buries his hand in the dish; it wearies him to bring it back to his 16 mouth. The slacker is wiser in his own eyes than seven men who answer discreetly. Like one who grabs a dog by the ears 18 is a passerby who meddles in a quarrel not his own. 19 Like a madman shooting firebrands 10 and deadly arrows, Like charcoal for emb" + }, + { + "verseNum": 11, + "text": "g 3 will not be See 11 Since everything will be destroyed in this way, what kind of people ought you to be? You ought 12 to conduct yourselves in holiness and godliness as you anticipate and hasten the coming of the day of God, when the heavens will be destroyed 13 by fire and the elements will melt in the heat. But in keeping with God’s promise, we are looking forward to a new heaven and a new Final Exhortations earth, where righteousness dwells. 14 Therefore, beloved, as you anticipate these things, make every effort to be found at peace— 15 spotless and blameless in His sight. a" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": ") 13 14 Come now, you who say, “Today or tomorrow we will go to this or that city, spend a year there, You do carry on business, and make a profit.” not even know what will happen tomorrow! What is your life? You are a mist that appears for 15 a little while and then vanishes. 16 17 Instead, you ought to say, “If the Lord is will- As it is, you ing, we will live and do this or that.” boast in your proud intentions. All such boasting Anyone, then, who knows the right is evil. A Warning to the Rich thing to do, yet fails to do it, is guilty of sin." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 16, + "text": "| 599 The Boldness of the Righteous 28 2 The wicked flee when no one pursues, but the righteous are as bold as a lion. A land in rebellion has many rulers, but a man of understanding and knowledge maintains order. 3 4 A destitute leader who oppresses the poor is like a driving rain that leaves no food. 5 Those who forsake the law praise the wicked, but those who keep the law resist them. If one blesses his neighbor with a loud voice Evil men do not understand justice, 15 early in the morning, it will be counted to him as a curse. 6 but those who seek the LORD comprehend fully. so one man sharpens another. He who increases his wealth by interest and A constant dripping on a rainy day 16 and a contentious woman are alike— restraining her is like holding back the wind or grasping oil with one’s right hand. b As iron sharpens iron, 17 18 Whoever tends a fig tree will eat its fruit, 19 and he who looks after his master will be honored. 20 As water reflects the face, c so the heart reflects the true man. 21 Sheol and Abaddon are never satisfied; so the eyes of man are never satisfied. A crucible for silver and a furnace for gold, 22 but a man is tested by the praise accorded him. Though you grind a fool like grain with 23 mortar and a pestle, yet his folly will not depart from him. 24 Be sure to know the state of your flocks, and pay close attention to your herds; for riches are not forever, 25 nor does a crown endure to every generation. When hay is removed and new growth 26 appea" + }, + { + "verseNum": 17, + "text": "17 a 3 A man burdened by bloodguilt will flee into A man who loves wisdom brings joy to his 18 the Pit; let no one support him. He who walks with integrity will be kept safe, but whoever is perverse in his ways will suddenly fall. The one who works his land will have plenty of food, 20 but whoever chases fantasies will have his fill of poverty. A faithful man will abound with blessings, but one eager to be rich will not go unpunished. To show partiality is not good, 22 yet a man will do wrong for a piece of b bread. A stingy man hastens after wealth 23 and does not know that poverty awaits him. He who rebukes a man will later find more 24 favor than one who flatters with his tongue. He who robs his father or mother, saying, “It 25 is not wrong,” is a companion to the man who destroys. A greedy man stirs up strife, father, 4 but a companion of prostitutes squanders his wealth. c By justice a king brings stability to the land, 5 but a man who exacts tribute demolishes it. 6 A man who flatters his neighbor spreads a net for his feet. An evil man is caught by his own sin, but a righteous one sings and rejoices. The righteous consider the cause of the poor, but the wicked have no regard for such concerns. Mockers inflame a city, but the wise turn away anger. If a wise man goes to court with a fool, 10 there will be raving and laughing with no resolution. d Men of bloodshed hate a blameless man, but the upright care for his life. A fool vents all his anger, but a wise man holds it" + }, + { + "verseNum": 22, + "text": "SBL, WH, and NE c 22 If your eye is sound a single cubit to his height ; BYZ and TR include e 27 Literally Or seek first His kingdom For Yours is the kingdom and the power and the glory, forever. Amen. 8 Ask, and it will be given to you; seek, and you will find; knock, and the door will be opened to you. For everyone who asks receives; he who worm b 19 d 23 if your eye is evil ; see" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 24, + "text": "| 601 A servant pampered from his youth will bring grief in the end. 11 An angry man stirs up dissension, Do not slander a servant to his master, or he will curse you, and you will bear the guilt. and a hot-tempered man abounds in There is a generation of those who curse transgression. A man’s pride will bring him low, but a humble spirit will obtain honor. A partner to a thief hates his own soul; he receives the oath but does not testify. The fear of man is a snare, 26 but whoever trusts in the LORD is set securely on high. Many seek the ruler’s favor, but a man receives justice from the LORD. An unjust man is detestable to the righteous, The Words of Agur and one whose way is upright is detestable to the wicked. 30 These are the words of Agur son of Jakeh—the burden that this man de- clared to Ithiel: a “I am weary, O God, 2 and worn out. Surely I am the most ignorant of men, 3 and I lack the understanding of a man. I have not learned wisdom, 4 and I have no knowledge of the Holy One. Who has ascended to heaven and come down? Who has gathered the wind in His hands? Who has bound up the waters in His cloak? Who has established all the ends of the earth? What is His name, and what is the name of 5 His Son— surely you know! Every word of God is flawless; 6 He is a shield to those who take refuge in Him. Do not add to His words, 7 lest He rebuke you and prove you a liar. Two things I ask of You— 8 do not refuse me before I die: Keep falsehood and deceitful words far from me. 9" + }, + { + "verseNum": 25, + "text": "25 The ants are creatures of little strength, 26 yet they store up their food in the summer; a the rock badgers are creatures of little power, yet they make their homes in the 27 rocks; the locusts have no king, yet they all 28 advance in formation; 29 and the lizard can be caught in one’s hands, yet it is found in the palaces of kings. There are three things that are stately in their stride, and four that are impressive in their 30 walk: a lion, mighty among beasts, refusing to 31 retreat before anything; a strutting rooster; a he-goat; 32 and a king with his army around him. If you have foolishly exalted yourself 33 or if you have plotted evil, put your hand over your mouth. For as the churning of milk yields butter, The Sayings for King Lemuel and the twisting of the nose draws blood, so the stirring of anger brings forth strife.” 31 2 These are the words of King Lemuel— the burden that his mother taught him: c What shall I say, O my son? 3 What, O son of my womb? What, O son of my vows? Do not spend your strength on women 4 or your vigor on those who ruin kings. It is not for kings, O Lemuel, 5 6 it is not for kings to drink wine, or for rulers to crave strong drink, lest they drink and forget what is decreed, depriving all the oppressed of justice. Give strong drink to one who is perishing, 7 and wine to the bitter in soul. Let him drink and forget his poverty, and remember his misery no more. 8 9 Open your mouth for those with no voice, for the cause of all the disposse" + } + ] + } + ] + }, + { + "name": "Ecclesiastes", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 9, + "text": "and gold and the treasure of kings and provinces. I gathered to myself male and female singers, and the delights of the sons of men—many concu- 9 bines. 10 So I became great and surpassed all in Jerusa- lem who had preceded me; and my wisdom re- mained with me. Anything my eyes desired, I did not deny myself. I refused my heart no pleas- ure. For my heart took delight in all my work, and 11 this was the reward for all my labor. Yet when I considered all the works that my hands had accomplished and what I had toiled to achieve, I found everything to be futile, a pursuit of the wind; there was nothing to be gained un- The Wise and the Foolish der the sun. 12 13 Then I turned to consider wisdom and madness and folly; for what more can the king’s successor do than what has already been accom- plished? And I saw that wisdom exceeds folly, 14 just as light exceeds darkness: The wise man has eyes in his head, but the fool walks in darkness. 15 Yet I also came to realize that one fate overcomes So I said to myself, “The fate of the them both. fool will also befall me. What then have I gained by being wise?” 16 And I said to myself that this too is futile. 17 For there is no lasting remembrance of the wise, just as with the fool, seeing that both will be forgotten in the days to come. Alas, the wise man will die just like the fool! So I hated life, because the work that is done under the sun was grievous to me. For everything is futile and a pur- The Futility of Work suit of the wind." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 8, + "text": "–20) d For the choirmaster. A Psalm of the sons of Korah. 1 This is the fate of the foolish and their followers who endorse their Selah 14 sayings. Like sheep they are destined for Sheol. Death will be their shepherd. 15 The upright will rule them in the morning, and their form will decay in Sheol, far from their lofty abode. But God will redeem my life from Sheol, for He will surely take me to Himself. Selah 16 17 Do not be afraid when a man grows rich, when the splendor of his house increases. For when he dies, he will carry nothing away; his abundance will not follow him down. Though in his lifetime he blesses his soul— 18 19 and men praise you when you prosper— 20 he will join the generation of his fathers, who will never see the light of day. Hear this, all you peoples; a 2 c 11 in the far north listen, all inhabitants of the world, the villages Or Or He will guide us beyond death d 14 ; the most sacred mountain of the Canaanites was the way of the foolish g 13 e 7 Their inward thoughts Or Targum; Hebrew Or A man who has riches without understanding Zaphon b 7 a fleet of trading ships is like the beasts that perish. redeem another Or f 11 Or LXX, Syriac, and Aramaic 522 |" + }, + { + "verseNum": 9, + "text": "| 605 down, his companion can lift him up; but pity the 11 one who falls without another to help him up! Again, if two lie down together, they will keep warm; but how can one keep warm alone? And though one may be overpowered, two can resist. Moreover, a cord of three strands is not quickly The Futility of Power broken. 13 12 14 Better is a poor but wise youth than an old but foolish king who no longer knows how to take a warning. For the youth has come from the prison to the kingship, though he was born poor 15 in his own kingdom. 16 I saw that all who lived and walked under the sun followed this second one, the youth who suc- ceeded the king. There is no limit to all the peo- ple who were before them. Yet the successor will not be celebrated by those who come even later. Approaching God with Awe This too is futile and a pursuit of the wind. 5 2 Guard your steps when you go to the house of God. Draw near to listen rather than to of- fer the sacrifice of fools, who do not know that Do not be quick to speak, and do they do wrong. not be hasty in your heart to utter a word before God. For God is in heaven and you are on earth. 3 So let your words be few. As a dream comes through many cares, so the speech of a fool comes with many words. 4 5 When you make a vow to God, do not delay in fulfilling it, because He takes no pleasure in fools. It is better not to vow than to Fulfill your vow. 6 make a vow and not fulfill it. b Do not let your mouth cause your flesh to sin, and do not" + }, + { + "verseNum": 10, + "text": "10 11 He who loves money is never satisfied by money, and he who loves wealth is never satis- When good fied by income. This too is futile. things increase, so do those who consume them; what then is the profit to the owner, except to be- 12 hold them with his eyes? The sleep of the worker is sweet, whether he eats little or much, but the abundance of the rich 13 man permits him no sleep. There is a grievous evil I have seen under the 14 sun: wealth hoarded to the harm of its owner, or wealth lost in a failed venture, so when that 15 man has a son there is nothing to pass on. 16 As a man came from his mother’s womb, so he will depart again, naked as he arrived. He takes nothing for his labor to carry in his hands. This too is a grievous affliction: Exactly as a man is 17 born, so he will depart. What does he gain as he toils for the wind? Moreover, all his days he eats in darkness, with much sorrow, sickness, 18 and anger. Here is what I have seen to be good and fitting: to eat and drink, and to find satisfaction in all the labor one does under the sun during the few days 19 of life that God has given him—for this is his lot. Furthermore, God has given riches and wealth to every man, and He has enabled him to enjoy 20 them, to accept his lot, and to rejoice in his labor. This is a gift from God. For a man seldom con- siders the days of his life, because God keeps him The Futility of Life occupied with the joy of his heart. 6 2 There is another evil I have seen under the sun," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 10, + "text": "–13) 11 For this is what the LORD has spoken to me with a strong hand, instructing me not to walk in 12 the way of this people: “Do not call conspiracy everything these people regard as c conspiracy. Do not fear what they fear; do not live in dread. d 13 The LORD of Hosts is the One you shall regard as holy. Only He should be feared; 14 only He should be dreaded. And He will be a sanctuary— e but to both houses of Israel a stone of stumbling and a rock of offense, to the dwellers of Jerusalem 15 a trap and a snare. Many will stumble over these; they will fall and be broken; they will be ensnared and captured.” 16 Bind up the testimony 17 and seal the law among my disciples. I will wait for the LORD, who is hiding His face from the house f of Jacob. I will put my trust in Him. 18 g Here am I, and the children the LORD has given as signs and symbols in Israel from the me Darkness and Light LORD of Hosts, who dwells on Mount Zion. 19 20 When men tell you to consult mediums and spiritists who whisper and mutter, shouldn’t a people consult their God instead? Why consult To the law and the dead on behalf of the living? to the testimony! If they do not speak according to this word, they have no light of dawn. Be evil a 9 threats Or eagerly look for Him LXX g 18 ; cited in" + }, + { + "verseNum": 13, + "text": "| 607 Wisdom, like an inheritance, is good, 12 and it benefits those who see the sun. For wisdom, like money, is a shelter, and the advantage of knowledge is that wisdom preserves the life of its 13 owner. Consider the work of God: 14 Who can straighten what He has bent? In the day of prosperity, be joyful, but in the day of adversity, consider this: God has made one of these along with the other, The Limits of Human Wisdom so that a man cannot discover anything that will come after him. 15 In my futile life I have seen both of these: A righteous man perishing in his righteousness, 16 and a wicked man living long in his wickedness. 17 Do not be overly righteous, and do not make yourself too wise. Why should you destroy your- self? Do not be excessively wicked, and do not 18 be a fool. Why should you die before your time? It is good to grasp the one and not let the other slip from your hand. For he who fears God will 19 follow both warnings. a Wisdom makes the wise man 20 stronger than ten rulers in a city. Surely there is no righteous man on earth 21 who does good and never sins. Do not pay attention to every word that is spo- 22 ken, or you may hear your servant cursing you. For you know in your heart that many times 23 you yourself have cursed others. 24 All this I tested by wisdom, saying, “I resolve to What exists is be wise.” But it was beyond me. 25 out of reach and very deep. Who can fathom it? 26 I directed my mind to understand, to explore, to search out wisdom and e" + }, + { + "verseNum": 14, + "text": "God’s Ways Are Mysterious Enjoy Your Portion in This Life 14 7 There is a futility that is done on the earth: There are righteous men who get what the ac- tions of the wicked deserve, and there are wicked men who get what the actions of the righteous 15 deserve. I say that this too is futile. So I commended the enjoyment of life, because there is nothing better for a man under the sun than to eat and drink and be merry. For this joy will accompany him in his labor during the days of his life that God gives him under the 16 sun. 17 When I applied my mind to know wisdom and to observe the task that one performs on the earth—though his eyes do not see sleep in the I saw every work of day or even in the night— God, and that a man is unable to comprehend the work that is done under the sun. Despite his ef- forts to search it out, he cannot find its meaning; even if the wise man claims to know, he is unable Death Comes to Good and Bad to comprehend. 9 So I took all this to heart and concluded that the righteous and the wise, as well as their deeds, are in God’s hands. Man does not know 2 what lies ahead, whether love or hate. a It is the same for all: There is a common fate for the righteous and the wicked, for the good and the bad, for the clean and the unclean, for the one who sacrifices and the one who does not. As it is for the good, so it is for the sinner; as it is for the one who makes a vow, so it is for the one who 3 refuses to take a vow. This is an evil in everything tha" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "| 609 for a bird of the air may carry your words, and a winged creature may report your Cast Your Bread upon the Waters speech. 11 2 Cast your bread upon the waters, for after many days you will find it again. Divide your portion among seven, or even eight, 3 for you do not know what disaster may befall the land. If the clouds are full, they will pour out rain upon the earth; whether a tree falls to the south or to the 4 north, in the place where it falls, there it will lie. He who watches the wind will fail to sow, 5 and he who observes the clouds will fail to reap. b As you do not know the path of the wind, or how the bones are formed in a mother’s womb, so you cannot understand the work of God, 6 the Maker of all things. Sow your seed in the morning, and do not rest your hands in the evening, for you do not know which will succeed, whether this or that, or if both will Enjoy Your Years equally prosper. 7 Light is sweet, 8 17 Woe to you, O land whose king is a youth, and whose princes feast in the morning. Blessed are you, O land whose king is a son of nobles, and whose princes feast at the proper 18 time— for strength and not for drunkenness. Through laziness the roof caves in, 19 and in the hands of the idle, the house leaks. A feast is prepared for laughter, and wine 20 makes life merry, but money is the answer for everything. and it pleases the eyes to see the sun. So if a man lives many years, let him rejoice in them all. But let him remember the days of darkness, 9 fo" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Remember Your Creator 12 Remember your Creator in the days of your youth, before the days of adversity come and the years approach of which you will say, 2 “I find no pleasure in them,” 8 before the light of the sun, moon, and stars is before the pitcher is shattered at the 7 spring and the wheel is broken at the well, before the dust returns to the ground from which it came and the spirit returns to God who gave it. 3 darkened, and the clouds return after the rain, on the day the keepers of the house tremble and the strong men stoop, when those grinding cease because they are few 4 and those watching through windows see dimly, when the doors to the street are shut and the sound of the mill fades away, when one rises at the sound of a bird 5 and all the daughters of song grow faint, when men fear the heights and dangers of the road, when the almond tree blossoms, the grasshopper loses its spring, and the caper berry shrivels— for then man goes to his eternal home and mourners walk the streets. 6 Remember Him before the silver cord is snapped and the golden bowl is crushed, “Futility of futilities,” says the Teacher. The Whole Duty of Man “Everything is futile!” 9 Not only was the Teacher wise, but he also taught the people knowledge; he pondered, 10 searched out, and arranged many proverbs. The Teacher searched to find delightful say- a 11 ings and to record accurate words of truth. b 12 The words of the wise are like goads, and the anthologies of the masters are like firmly" + } + ] + } + ] + }, + { + "name": "Isaiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–9) tree. 5 So the LORD his God delivered Ahaz into the hand of the king of Aram, who attacked him and took many captives to Damascus. 6 Ahaz was also delivered into the hand of the king of Israel, who struck him with great force. For in one day Pekah son of Remaliah killed 120,000 valiant men in Judah. This happened because they had forsaken the LORD, the God of their fa- thers. Zichri, a mighty man of Ephraim, killed a 5 100 talents Maaseiah the son of the king, Azrikam the 7 But a prophet of the LORD named Oded was there, and he went out to meet the army that returned to Samaria. “Look,” he said to them, “because of His wrath against Judah, the LORD, the God of your fathers, has delivered them into your hand. But you have slaughtered them in a rage that reaches up to heaven. And now you intend to reduce to slavery the men and women 11 of Judah and Jerusalem. But are you not also guilty before the LORD your God? Now there- fore, listen to me and return the captives you took from your kinsmen, for the fierce anger of 12 the LORD is upon you.” 10 e f Then some of the leaders of the Ephraim- —Azariah son of Jehohanan, Berechiah son ites Jehizkiah son of Shallum, and of Meshillemoth, 13 Amasa son of Hadlai—stood in opposition to those arriving from the war. “You must not bring the captives here,” they said, “for you are proposing to bring guilt upon us from the LORD and to add to our sins and our guilt. For our guilt 14 is great, and fierce anger is upon Israel.” So the armed m" + }, + { + "verseNum": 9, + "text": "(see also LXX)" + }, + { + "verseNum": 19, + "text": "19 If you are willing and obedient, 20 you will eat the best of the land. But if you resist and rebel, For the mouth of the LORD has spoken. you will be devoured by the sword.” The Corruption of Zion 21 See how the faithful city has become a harlot! She once was full of justice; righteousness resided within her, but now only murderers! Your silver has become dross; 22 23 your fine wine is diluted with water. Your rulers are rebels, friends of thieves. They all love bribes and chasing after rewards. They do not defend the fatherless, 24 and the plea of the widow never comes before them. Therefore the Lord GOD of Hosts, the Mighty One of Israel, declares: “Ah, I will be relieved of My foes 25 and avenge Myself on My enemies. I will turn My hand against you; 26 I will thoroughly purge your dross; I will remove all your impurities. I will restore your judges as at first, The Mountain of the House of the LORD" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–4) and the temple mount a wooded ridge. 4 In the last days the mountain of the house I will assemble the outcast, 7 even those whom I have afflicted. And I will make the lame into a remnant, the outcast into a strong nation. Then the LORD will rule over them in Mount 8 Zion from that day and forever. a And you, O watchtower of the flock, O stronghold of the Daughter of Zion— the former dominion will be restored to you; sovereignty will come to the Daughter of 9 Jerusalem.” Why do you now cry aloud? Is there no king among you? Has your counselor perished 10 so that anguish grips you like a woman in of the LORD labor? will be established as the chief of the Writhe in agony, O Daughter of Zion, mountains; 2 it will be raised above the hills, and the peoples will stream to it. And many nations will come and say: “Come, let us go up to the mountain of the LORD, to the house of the God of Jacob. He will teach us His ways, so that we may walk in His paths.” For the law will go forth from Zion 3 and the word of the LORD from Jerusalem. Then He will judge between many peoples and arbitrate for strong nations far and wide. Then they will beat their swords into plowshares and their spears into pruning hooks. Nation will no longer take up the sword 4 against nation, nor will they train anymore for war. And each man will sit under his own vine and under his own fig tree, with no one to frighten him. 5 For the mouth of the LORD of Hosts has spoken. Though all the nations may walk in the n" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 15, + "text": "| 619 The proud look of man will be humbled, and the loftiness of men brought low; the LORD alone will be exalted in that day. 12 For the Day of the LORD of Hosts will come against all the proud and lofty, 13 against all that is exalted— it will be humbled— against all the cedars of Lebanon, lofty and 14 lifted up, against all the oaks of Bashan, 15 against all the tall mountains, against all the high hills, against every high tower, a against every fortified wall, against every ship of Tarshish, 16 17 and against every stately vessel. “I will make mere lads their leaders, and children will rule over them.” 5 The people will oppress one another, man against man, neighbor against neighbor; the young will rise up against the old, and the base against the honorable. A man will seize his brother within his father’s house: “You have a cloak—you be our leader! 7 Take charge of this heap of rubble.” c On that day he will cry aloud: “I am not a healer. I have no food or clothing in my house. 6 8 Do not make me leader of the people!” So the pride of man will be brought low, 18 and the loftiness of men will be humbled; 19 the LORD alone will be exalted in that day, and the idols will vanish completely. Men will flee to caves in the rocks and holes in the ground, away from the terror of the LORD 20 and from the splendor of His majesty, when He rises to shake the earth. In that day men will cast away to the moles and bats their idols of silver and gold— 21 the idols they made to worship." + }, + { + "verseNum": 16, + "text": "A Warning to the Daughters of Zion 4 16 The LORD also says: “Because the daughters of Zion are haughty— walking with heads held high and wanton eyes, 17 prancing and skipping as they go, when the Lord has washed away the filth of the daughters of Zion and cleansed the bloodstains from the heart of Jerusalem 5 by a spirit of judgment and a spirit of fire. Then the LORD will create over all of Mount Zion jingling the bracelets on their ankles— and over her assemblies the Lord will bring sores a on the heads of the daughters of Zion, and the LORD will make their foreheads 18 bare. ” In that day the Lord will take away their finery: 19 20 their anklets and headbands and crescents; their pendants, bracelets, and veils; their headdresses, ankle chains, and sashes; their perfume bottles and charms; their signet rings and nose rings; their festive robes, capes, cloaks, and purses; and their mirrors, linen garments, tiaras, 21 22 23 24 and shawls. Instead of fragrance there will be a stench; instead of a belt, a rope; instead of styled hair, baldness; instead of fine clothing, sackcloth; b 25 instead of beauty, shame. 3 a cloud of smoke by day and a glowing flame of fire by night. For over all the glory 6 there will be a canopy, a shelter to give shade from the heat by day, and a refuge and hiding place The Song of the Vineyard" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–7) 4 5 49 50 6 I have come to ignite a fire on the earth, and But I have how I wish it were already kindled! a baptism to undergo, and how distressed I am 51 until it is accomplished! 52 Do you think that I have come to bring peace to the earth? No, I tell you, but division. From b 39 a 38 now on, five in one household will be divided, That is, between 9 at night and 3 in the morning lepton d 59 7 Then Jesus told this parable: “A man had a fig tree that was planted in his vineyard. He went to So he look for fruit on it but did not find any. said to the keeper of the vineyard, ‘Look, for the past three years I have come to search for fruit on this fig tree and haven’t found any. Therefore cut it down! BYZ and TR include he would have stayed awake, and c 53 Why should it use up the soil?’ Cut it down! e 7 See e Mic. 7:6. Greek ; that is, a bronze or copper coin worth about 1/128 of a denarius SBL, NE, WH 8 9 ‘Sir,’ the man replied, ‘leave it alone again this year, until I dig around it and fertilize it. If it bears fruit next year, fine. But if not, you can cut Jesus Heals a Disabled Woman it down.’ 10 ” 11 One Sabbath Jesus was teaching in one of the synagogues, and a woman there had been dis- abled by a spirit for eighteen years. She was 12 hunched over and could not stand up straight. When Jesus saw her, He called her over and said, “Woman, you are set free from your disabil- ity.” Then He placed His hands on her, and immediately she straightened up and began to 14 glorify" + }, + { + "verseNum": 28, + "text": "| 621 I heard the LORD of Hosts declare: Woe to those who are heroes in drinking is the house of Israel, and the men of Judah are the plant of His delight. He looked for justice, but saw bloodshed; for righteousness, Woes to the Wicked but heard a cry of distress. 8 Woe to you who add house to house and join field to field until no place is left 9 and you live alone in the land. 10 “Surely many houses will become desolate, great mansions left unoccupied. a For ten acres of vineyard b will yield but a bath of wine, and a homer of seed 11 only an ephah of grain. ” Woe to those who rise early in the morning 12 in pursuit of strong drink, who linger into the evening, to be inflamed by wine. At their feasts are the lyre and harp, tambourines and flutes and wine. They disregard the actions of the LORD and fail to see the work of His hands. 13 Therefore My people will go into exile for their lack of understanding; 14 their dignitaries are starving 22 24 His work so that we may see it! Let the plan of the Holy One of Israel come 20 so that we may know it!” Woe to those who call evil good and good evil, who turn darkness to light and light to darkness, who replace bitter with sweet and sweet with bitter. 21 Woe to those who are wise in their own eyes and clever in their own sight. 23 wine and champions in mixing strong drink, who acquit the guilty for a bribe and deprive the innocent of justice. Therefore, as a tongue of fire consumes the straw, and as dry grass shrivels in the flame," + }, + { + "verseNum": 29, + "text": "29 9 Their roaring is like that of a lion; they roar like young lions. They growl and seize their prey; 30 they carry it away, and no one can rescue it. In that day they will roar over it, like the roaring of the sea. If one looks over the land, he will see darkness and distress; Isaiah’s Commission even the light will be obscured by clouds. (Matt. 13:10–17 ;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–13 ;" + }, + { + "verseNum": 9, + "text": "–10 (see also LXX) LXX); SBL, NE, and WH do not include ; also in verses 20, 22, and 23" + }, + { + "verseNum": 10, + "text": ", meaning or , which became a shout of 966 |" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 10, + "text": "–16 ;" + }, + { + "verseNum": 14, + "text": "(see also DSS) See" + }, + { + "verseNum": 17, + "text": "–25) 9 1 This is the word of the LORD that came to Micah the Moreshite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah—what he 2 saw regarding Samaria and Jerusalem: Hear, O peoples, all of you; listen, O earth, and everyone in it! May the Lord GOD bear witness against you, 3 the Lord from His holy temple. For behold, the LORD comes forth from His dwelling place; He will come down and tread 4 on the high places of the earth. The mountains will melt beneath Him, and the valleys will split apart, like wax before the fire, 5 like water rushing down a slope. All this is for the transgression of Jacob and the sins of the house of Israel. What is the transgression of Jacob? Is it not Samaria? And what is the high place of Judah? 6 Is it not Jerusalem? Therefore I will make Samaria a heap of rubble in the open field, a planting area for a vineyard. I will pour her stones into the valley 7 and expose her foundations. All her carved images will be smashed to pieces; all her wages will be burned in the fire, and I will destroy all her idols. Weeping and Mourning Since she collected the wages of a prostitute, they will be used again on a prostitute. 8 Because of this I will lament and wail; I will walk barefoot and naked. a b For her wound is incurable; it has reached even Judah; it has approached the gate of my people, c 10 as far as Jerusalem itself. d 11 Do not tell it in Gath; do not weep at all. Roll in the dust in Beth-leaphrah. e Depart in shameful nakedness, f O dwelle" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 8, + "text": "| 623 d On that day the Lord will use a razor hired from beyond the Euphrates —the king of 21 Assyria—to shave your head and the hair of your legs, and to remove your beard as well. On that 22 day a man will raise a young cow and two sheep, and from the abundance of milk they give, he will eat curds; for all who remain in the land will 23 eat curds and honey. e And on that day, in every place that had a thou- sand vines worth a thousand shekels of silver, Men will only briers and thorns will be found. go there with bow and arrow, for the land will be For fear of the covered with briers and thorns. briers and thorns, you will no longer traverse the hills once tilled by the hoe; they will become Assyrian Invasion Prophesied places for oxen to graze and sheep to trample. 24 25 8 f g 2 Then the LORD said to me, “Take a large sty- scroll and write on it with an ordinary lus: Maher-shalal-hash-baz. And I will appoint for Myself trustworthy witnesses—Uriah the 3 priest and Zechariah son of Jeberekiah.” And I had relations with the prophetess, and she conceived and gave birth to a son. The LORD 4 said to me, “Name him Maher-shalal-hash-baz. For before the boy knows how to cry ‘Father’ or ‘Mother,’ the wealth of Damascus and the plun- der of Samaria will be carried off by the king of 5 Assyria.” 6 And the LORD spoke to me further: “Because this people has rejected the gently flowing waters of Shiloah and rejoiced in Rezin 7 and the son of Remaliah, the Lord will surely bring against t" + }, + { + "verseNum": 9, + "text": "9 a 21 Huddle together, O peoples, and be shattered; pay attention, all you distant lands; prepare for battle, and be shattered; 10 Devise a plan, but it will be thwarted; prepare for battle, and be shattered! b it will not happen. state a proposal, but ” For God is with us. A Call to Fear God" + }, + { + "verseNum": 10, + "text": ". 862 |" + }, + { + "verseNum": 11, + "text": "–15) detriment. 10 b 11 Then too, I saw the burial of the wicked who used to go in and out of the holy place, and they were praised in the city where they had done so. This too is futile. When the sentence for a crime is not speedily executed, the hearts of men 12 become fully set on doing evil. 13 Although a sinner does evil a hundred times and still lives long, yet I also know that it will go well with those who fear God, who are reverent Yet because the wicked do not in His presence. fear God, it will not go well with them, and their days will not lengthen like a shadow. were soon Or Some Hebrew manuscripts, LXX, and Vulgate; most Hebrew manuscripts 608 |" + }, + { + "verseNum": 12, + "text": "g 1 BYZ and TR for This sentence may also be included with the quotation from the previous verse; BYZ and TR include Or Or 1092 |" + }, + { + "verseNum": 13, + "text": ". Or e 19 b 14 h 6 . Or See" + }, + { + "verseNum": 14, + "text": "" + }, + { + "verseNum": 17, + "text": "" + }, + { + "verseNum": 18, + "text": "" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "–7 ;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 9, + "text": "| 625 8 The Lord has sent a message against Jacob, 9 and it has fallen upon Israel. a All the people will know it— Ephraim and the dwellers of Samaria. 21 They carve out what is on the right, but they are still hungry; they eat what is on the left, but they are still not satisfied. Each one devours the flesh of his own c offspring. With pride and arrogance of heart 10 they will say: “The bricks have fallen, but we will rebuild with finished stone; the sycamores have been felled, 11 but we will replace them with cedars.” The LORD has raised up the foes of Rezin 12 b against him and joined his enemies together. Aram from the east and Philistia from the west have devoured Israel with open mouths. Despite all this, His anger is not turned away; Judgment against Israel’s Hypocrisy His hand is still upraised. 13 But the people did not return to Him who 14 struck them; they did not seek the LORD of Hosts. 15 So the LORD will cut off Israel’s head and tail, both palm branch and reed in a single day. The head is the elder and honorable man, and the tail is the prophet who teaches 16 lies. For those who guide this people mislead Manasseh devours Ephraim, and Ephraim Manasseh; together they turn against Judah. Despite all this, His anger is not turned away; Woe to Tyrants His hand is still upraised. 10 Woe to those who enact unjust 2 statutes and issue oppressive decrees, to deprive the poor of fair treatment and withhold justice from the oppressed of My people, to make widows their pre" + }, + { + "verseNum": 10, + "text": "10 As my hand seized the idolatrous kingdoms 11 whose images surpassed those of Jerusalem and Samaria, and as I have done to Samaria and its idols, will I not also do to Jerusalem and her 12 idols?” So when the Lord has completed all His work against Mount Zion and Jerusalem, He will say, “I will punish the king of Assyria for the fruit of his 13 arrogant heart and the proud look in his eyes. For he says: ‘By the strength of my hand I have done this, and by my wisdom, for I am clever. I have removed the boundaries of nations 14 and plundered their treasures; like a mighty one I subdued their rulers. My hand reached as into a nest to seize the wealth of the nations. Like one gathering abandoned eggs, I gathered all the earth. No wing fluttered, 15 no beak opened or chirped.’ ” Does an axe raise itself above the one who swings it? Does a saw boast over him who saws with it? It would be like a rod waving the one who 16 lifts it, or a staff lifting him who is not wood! Therefore the Lord GOD of Hosts will send a wasting disease among Assyria’s stout warriors, and under his pomp will be kindled 17 a fire like a burning flame. And the Light of Israel will become a fire, and its Holy One a flame. 18 In a single day it will burn and devour Assyria’s thorns and thistles. The splendor of its forests and orchards, both soul and body, it will completely destroy, 19 as a sickness consumes a man. The remaining trees of its forests will be so few A Remnant Shall Return that a child could co" + }, + { + "verseNum": 22, + "text": "–23 (see also LXX) e 15 f 17 j 28 n 5 d 13" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "(see also LXX) 1020 |" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "| 627 33 Zion, at the hill of Jerusalem. Behold, the Lord GOD of Hosts will lop off the branches with terrifying power. 34 The tall trees will be cut down, the lofty ones will be felled. He will clear the forest thickets with an axe, and Lebanon will fall before the Mighty The Root of Jesse One. 11 2 Then a shoot will spring up from the stump of Jesse, and a Branch from his roots will bear fruit. The Spirit of the LORD will rest on Him— the Spirit of wisdom and understanding, the Spirit of counsel and strength, the Spirit of knowledge and fear of 3 the LORD. And He will delight in the fear of the LORD. He will not judge by what His eyes see, 4 and He will not decide by what His ears hear, but with righteousness He will judge the poor, and with equity He will decide for the lowly of the earth. He will strike the earth with the rod of His mouth 5 and slay the wicked with the breath of His lips. Righteousness will be the belt around His 6 hips, and faithfulness the sash around His waist. The wolf will live with the lamb, and the leopard will lie down with the goat; a the calf and young lion and fatling will be 7 together, and a little child will lead them. The cow will graze with the bear, 8 their young will lie down together, and the lion will eat straw like the ox. for the earth will be full of the knowledge of 10 the LORD as the sea is full of water. b 11 On that day the Root of Jesse will stand as a banner for the peoples. The nations will seek Him, On and His place of rest" + }, + { + "verseNum": 2, + "text": "2 Surely God is my salvation; I will trust and not be afraid. 10 to make the earth a desolation and to destroy the sinners within it. For the LORD GOD is my strength and my For the stars of heaven and their 3 song, and He also has become my salvation.” 4 With joy you will draw water from the springs of salvation, and on that day you will say: “Give praise to the LORD; proclaim His name! Make His works known among the peoples; 5 declare that His name is exalted. Sing to the LORD, for He has done glorious 6 things. Let this be known in all the earth. Cry out and sing, O citizen of Zion, for great among you is the Holy One of The Burden against Babylon Israel.” 13 2 This is the burden against Babylon that Isaiah son of Amoz received: Raise a banner on a barren hilltop; call aloud to them. Wave your hand, 3 that they may enter the gates of the nobles. I have commanded My sanctified ones; I have even summoned My warriors to execute My wrath 4 and exult in My triumph. Listen, a tumult on the mountains, like that of a great multitude! Listen, an uproar among the kingdoms, like nations gathered together! The LORD of Hosts is mobilizing 5 an army for war. They are coming from faraway lands, from the ends of the heavens— the LORD and the weapons of His wrath— 6 to destroy the whole country. Wail, for the Day of the LORD is near; a 7 it will come as destruction from the Almighty. Therefore all hands will fall limp, 8 and every man’s heart will melt. Terror, pain, and anguish will seize" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 10, + "text": "," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 24, + "text": "| 629 14 For the LORD will have compassion on Jacob; once again He will choose Israel and settle them in their own land. The foreigner 2 will join them and unite with the house of Jacob. The nations will escort Israel and bring it to its homeland. Then the house of Israel will possess the nations as menservants and maidservants in the LORD’s land. They will make captives of their captors The Fall of the King of Babylon and rule over their oppressors. 3 On the day that the LORD gives you rest from your pain and torment, and from the hard labor into which you were forced, you will sing this song of contempt against the king of Babylon: 4 a How the oppressor has ceased, 5 and how his fury has ended! The LORD has broken the staff of the wicked, 6 the scepter of the rulers. It struck the peoples in anger with unceasing blows; it subdued the nations in rage 7 with relentless persecution. All the earth is at peace and at rest; b 8 they break out in song. Even the cypresses and cedars of Lebanon exult over you: “Since you have been laid low, 9 no woodcutter comes against us.” Sheol beneath is eager to meet you upon your arrival. It stirs the spirits of the dead to greet you— all the rulers of the earth. 10 It makes all the kings of the nations rise from their thrones. They will all respond to you, saying, 11 “You too have become weak, as we are; you have become like us!” You said in your heart: “I will ascend to the heavens; I will raise my throne above the stars of God. d 14 I will" + }, + { + "verseNum": 25, + "text": "25 3 I will break Assyria in My land; I will trample him on My mountain. His yoke will be taken off My people, In its streets they wear sackcloth; 4 on the rooftops and in the public squares they all wail, falling down weeping. 26 and his burden removed from their shoul- Heshbon and Elealeh cry out; ders.” This is the plan devised for the whole earth, and this is the hand stretched out over all 27 the nations. The LORD of Hosts has purposed, and who can thwart Him? His hand is outstretched, Philistia Will Be Destroyed can turn it back? so who 28 In the year that King Ahaz died, this burden 29 was received: Do not rejoice, all you Philistines, that the rod that struck you is broken. For a viper will spring from the root of the 30 snake, and a flying serpent from its egg. Then the firstborn of the poor will find pas- ture, and the needy will lie down in safety, but I will kill your root by famine, and your remnant will be slain. 31 Wail, O gate! Cry out, O city! Melt away, all you Philistines! 32 For a cloud of smoke comes from the north, and there are no stragglers in its ranks. What answer will be given to the envoys of that nation? “The LORD has founded Zion, where His afflicted people will find The Burden against Moab" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "–9) 48 Concerning Moab, this is what the LORD of Hosts, the God of Israel, says: “Woe to Nebo, for it will be devastated. Kiriathaim will be captured and disgraced; 2 the fortress will be shattered and dismantled. c There is no longer praise for Moab; in Heshbon they devise evil against her: d ‘Come, let us cut her off from nationhood.’ You too, O people of Madmen, 3 silenced; will be the sword will pursue you. A voice cries out from Horonaim: 4 ‘Devastation and great destruction!’ e Moab will be shattered; her little ones will cry out. For on the ascent to Luhith they weep bitterly as they go, and on the descent to Horonaim cries of distress resound over the destruction: ‘Flee! Run for your lives! 5 6 7 f Become like a juniper in the desert. ’ Because you trust in your works and treasures, you too will be captured, and Chemosh will go into exile 8 with his priests and officials. The destroyer will move against every city, and not one town will escape. The valley will also be ruined, 9 and the high plain will be destroyed, as the LORD has said. g Put salt on Moab, for she will be laid waste; her cities will become desolate, 10 with no one to dwell in them. Cursed is the one who is remiss in doing the work of the LORD, 11 and cursed is he who withholds his sword from bloodshed. Moab has been at ease from youth, settled like wine on its dregs; he has not been poured from vessel to vessel when the LORD has commanded it? or gone into exile. He has appointed it against Ashkelon an" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "–14 ;" + }, + { + "verseNum": 7, + "text": ". Probably the Dead Sea Two Hebrew manuscripts and LXX; most Hebrew manuscripts 728 |" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–14) in labor. 23 Concerning Damascus: “Hamath and Arpad are put to shame, for they have heard a bad report; d 24 they are agitated like the sea; their anxiety cannot be calmed. Damascus has become feeble; she has turned to flee. Panic has gripped her; 25 anguish and pain have seized her like a woman in labor. 26 How is the city of praise not forsaken, the town that brings Me joy? For her young men will fall in the streets, and all her warriors will be silenced in declares the LORD of Hosts. that day,” 27 18 “Edom will become an object of horror. All who pass by will be appalled and will scoff at all her wounds. of Sela b 20 a 16 As Sodom and Gomorrah were overthrown their pasture will be appalled at their fate “I will set fire to the walls of Damascus; it will consume the fortresses of Ben-hadad.” d 23 Sea of Reeds c 21 on the sea by the sea Or Or Or Hebrew or 730 |" + }, + { + "verseNum": 11, + "text": "| 631 in loving devotion a throne will be established in the tent of David. A judge seeking justice and hastening 6 righteousness will sit on it in faithfulness. We have heard of Moab’s pomposity, his exceeding pride and conceit, his overflowing arrogance. 7 But his boasting is empty. Therefore let Moab wail; let them wail together for Moab. Moan for the raisin cakes of Kir-hareseth, 8 you who are utterly stricken. For the fields of Heshbon have withered, along with the grapevines of Sibmah. The rulers of the nations have trampled its choicest vines, which had reached as far as Jazer and spread toward the desert. b Their shoots had spread out and passed over the sea. 9 So I weep with Jazer for the vines of Sibmah; I drench Heshbon and Elealeh with my tears. Triumphant shouts have fallen silent 10 over your summer fruit and your harvest. Joy and gladness are removed from the orchard; no one sings or shouts in the vineyards. No one tramples the grapes in the 11 winepresses; I have put an end to the cheering. Therefore my heart laments for Moab like a c 12 harp, my inmost being for Kir-heres. When Moab appears on the high place, when he wearies himself and enters his sanctuary to pray, 13 it will do him no good. 14 This is the message that the LORD spoke And now the LORD earlier concerning Moab. says, “In three years, as a hired worker counts the years, Moab’s splendor will become an object of contempt, with all her many people. And those who are left will be few and feeble.” a" + }, + { + "verseNum": 12, + "text": "yet the harvest will vanish 12 from a people tall and smooth-skinned, on the day of disease and incurable pain. from a people widely feared, Alas, the tumult of many peoples; they rage like the roaring seas and clamoring nations; 13 they rumble like the crashing of mighty waters. The nations rage like the rush of many waters. He rebukes them, and they flee far away, driven before the wind like chaff on the hills, 14 like tumbleweeds before a gale. In the evening, there is sudden terror! Before morning, they are no more! This is the portion of those who loot us and the lot of those who plunder us. A Message to Cush from a powerful nation of strange speech, whose land is divided by rivers— to Mount Zion, the place of the Name of the LORD The Burden against Egypt of Hosts. 19 This is the burden against Egypt: Behold, the LORD rides on a swift cloud; He is coming to Egypt. The idols of Egypt will tremble before Him, and the hearts of the Egyptians will melt 2 within them. a “So I will incite Egyptian against Egyptian; 18 b 2 Woe to the land of whirring wings, along the rivers of Cush, which sends couriers by sea, in papyrus vessels on the waters. Go, swift messengers, to a people tall and smooth-skinned, to a people widely feared, to a powerful nation of strange speech, 3 whose land is divided by rivers. All you people of the world and dwellers of the earth, when a banner is raised on the mountains, you will see it; 4 when a ram’s horn sounds, you will hear it. For this is what t" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "–10) earth.” 18 18 After this I saw another angel descend- ing from heaven with great authority, And and the earth was illuminated by his glory. he cried out in a mighty voice: 2 a “Fallen, fallen is Babylon the great! She has become a lair for demons and a haunt for every unclean spirit, 3 every unclean bird, and every detestable beast. b c All the nations have drunk the wine of the passion of her immorality. The kings of the earth were immoral with her, and the merchants of the earth have grown wealthy from the extravagance of her luxury.” 4 Then I heard another voice from heaven say: d “Come out of her, My people, 5 so that you will not share in her sins or contract any of her plagues. For her sins are piled up to heaven, 6 and God has remembered her iniquities. Give back to her as she has done to others; pay her back double for what she has 7 done; mix her a double portion in her own cup. As much as she has glorified herself and lived in luxury, give her the same measure of torment and grief. In her heart she says, ‘I sit as queen; 8 I am not a widow and will never see grief.’ Therefore her plagues will come in one day— death and grief and famine— and she will be consumed by fire, for mighty is the Lord God who a haunt for every unclean spirit and every unclean and judges her.” See" + }, + { + "verseNum": 3, + "text": "| 633 heart. The princes of Zoan are mere fools; Pharaoh’s wise counselors give senseless advice. How can you say to Pharaoh, “I am one of the wise, a son of eastern kings”? Where are your wise men now? Let them tell you and reveal what the LORD of Hosts has planned 12 13 against Egypt. b The princes of Zoan have become fools; 14 the princes of Memphis The cornerstones of her tribes have led Egypt astray. The LORD has poured into her are deceived. a spirit of confusion. Egypt has been led astray in all she does, 15 as a drunkard staggers through his own vomit. A Blessing upon the Earth There is nothing Egypt can do— head or tail, palm or reed. 16 17 In that day the Egyptians will be like women. They will tremble with fear beneath the uplifted hand of the LORD of Hosts, when He brandishes The land of Judah will bring it against them. terror to Egypt; whenever Judah is mentioned, Egypt will tremble over what the LORD of Hosts 18 has planned against it. In that day five cities in the land of Egypt will speak the language of Canaan and swear alle- c giance to the LORD of Hosts. One of them will be 19 called the City of the Sun. 20 In that day there will be an altar to the LORD in the center of the land of Egypt, and a pillar to the LORD near her border. It will be a sign and a witness to the LORD of Hosts in the land of Egypt. When they cry out to the LORD because of their oppressors, He will send them a savior and The LORD will make defender to rescue them. Himself known to Egyp" + }, + { + "verseNum": 4, + "text": "I am bewildered to hear, 4 I am dismayed to see. My heart falters; fear makes me tremble. The twilight I desired 5 has turned to horror. They prepare a table, they lay out a carpet, they eat, they drink! 6 Rise up, O princes, oil the shields! For this is what the Lord says to me: “Go, post a lookout 7 and have him report what he sees. When he sees chariots with teams of horse- men, 8 riders on donkeys, riders on camels, a he must be alert, fully alert.” Then the lookout shouted: “Day after day, my lord, I stand on the watchtower; night after night 9 I stay at my post. Look, here come the riders, horsemen in pairs.” And one answered, saying: b “Fallen, fallen is Babylon! 10 All the images of her gods lie shattered on the ground!” O my people, crushed on the threshing floor, I tell you what I have heard The Burden against Edom" + }, + { + "verseNum": 9, + "text": "and" + }, + { + "verseNum": 11, + "text": "–12) like foliage from the fig tree. 5 When My sword has drunk its fill in the heavens, then it will come down upon Edom, upon the people I have devoted to 6 destruction. The sword of the LORD is bathed in blood. It drips with fat— with the blood of lambs and goats, with the fat of the kidneys of rams. For the LORD has a sacrifice in Bozrah, 7 a great slaughter in the land of Edom. And the wild oxen will fall with them, the young bulls with the strong ones. Their land will be drenched with blood, 8 and their soil will be soaked with fat. For the LORD has a day of vengeance, b 9 a year of recompense for the cause of Zion. Edom’s streams will be turned to tar, 10 and her soil to sulfur; her land will become a blazing pitch. It will not be quenched—day or night. Its smoke will ascend forever. they cannot secure the mast or spread the From generation to generation it will lie sail. 11 desolate; 24 Then an abundance of spoils will be divided, and even the lame will carry off plunder. And no resident of Zion will say, “I am sick.” Judgment on the Nations The people who dwell there will be forgiven of iniquity. no one will ever again pass through it. The desert owl and screech owl will possess it, c and the great owl and raven will dwell in it. 34 Come near, O nations, to listen; pay attention, O peoples. Let the earth hear, and all that fills it, a 2 cherem the world and all that springs from it. Forms of the Hebrew The LORD will stretch out over Edom 12 a measuring line of chaos a" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 13, + "text": "“Let us eat and drink, 33 for tomorrow we die.” f 34 Do not be deceived: “Bad company corrupts good character.” Sober up as you ought, and stop sinning; for some of you are ignorant of God. The Resurrection Body I say this to your shame. 35 But someone will ask, “How are the dead raised? With what kind of body will they come?” b 38 let him be ignorant Thais c 5 BYZ and TR That is, Peter Probably a quote from the Greek comedy by Menander 36 37 You fool! What you sow does not come to life And what you sow is not the unless it dies. body that will be, but just a seed, perhaps of But God gives it a wheat or something else. body as He has designed, and to each kind of seed 39 He gives its own body. 38 40 Not all flesh is the same: Men have one kind of flesh, animals have another, birds another, and There are also heavenly bodies fish another. and earthly bodies. But the splendor of the heav- enly bodies is of one degree, and the splendor of the earthly bodies is of another. The sun has one degree of splendor, the moon another, and the stars another; and star differs from star in 42 splendor. 41 44 43 So will it be with the resurrection of the dead: What is sown is perishable; it is raised imperish- It is sown in dishonor; it is raised in glory. able. It is sown in weakness; it is raised in power. It is sown a natural body; it is raised a spiritual body. If there is a natural body, there is also a So it is written: “The first man spiritual body. Adam became a living being”; the las" + }, + { + "verseNum": 22, + "text": ". Or or Or or 1106 |" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "–18) LORD, when I lay My vengeance upon them.’ 17 ” 26 c 2 3 4 In the eleventh month of the twelfth year, on the first day of the month, the “Son of word of the LORD came to me, saying, man, because Tyre has said of Jerusalem, ‘Aha! The gate to the nations is broken; it has swung open to me; now that she lies in ruins I will be therefore this is what the Lord GOD says: filled,’ ‘Behold, O Tyre, I am against you, and I will raise up many nations against you, as the sea brings up They will destroy the walls of Tyre its waves. and demolish her towers. I will scrape the soil She will be- from her and make her a bare rock. come a place to spread nets in the sea, for I have 6 spoken, declares the Lord GOD. She will become and the villages on her plunder for the nations, mainland will be slain by the sword. Then they 7 will know that I am the LORD.’ 5 d 8 For this is what the Lord GOD says: ‘Behold, I will bring against Tyre from the north Nebuchad- nezzar king of Babylon, king of kings, with horses and chariots, with cavalry and a great company of troops. He will slaughter the vil- lages of your mainland with the sword; he will set up siege works against you, build a ramp to your walls, and raise his shields against you. He will direct the blows of his battering rams against your walls and tear down your towers with his axes. His multitude of horses will cover you in c 1 their dust. Nebuchadnezzar . Likely reading of the original Hebrew text; MT 10 In 9 and Seir throughout Ezekiel" + }, + { + "verseNum": 11, + "text": "| 635 On that day the Lord GOD of Hosts called for weeping and wailing, 13 for shaven heads and the wearing of sackcloth. But look, there is joy and gladness, butchering of cattle and slaughtering of sheep, a eating of meat and drinking of wine: 14 “Let us eat and drink, for tomorrow we die!” The LORD of Hosts has revealed in my hearing: “Until your dying day, says the Lord GOD of Hosts. this sin of yours will never be atoned for,” A Message for Shebna 15 16 This is what the Lord GOD of Hosts says: “Go, say to Shebna, the steward in charge of the pal- What are you doing here, and who author- ace: ized you to carve out a tomb for yourself here— to chisel your tomb in the height and cut your 17 resting place in the rock? Look, O mighty man! The LORD is about to 18 shake you violently. He will take hold of you, roll you into a ball, and sling you into a wide land. There you will die, and there your glorious chariots will remain—a disgrace to the house of I will remove you from office, and your master. 20 you will be ousted from your position. 19 21 On that day I will summon My servant, Eliakim I will clothe him with your robe son of Hilkiah. and tie your sash around him. I will put your au- thority in his hand, and he will be a father to the 22 dwellers of Jerusalem and to the house of Judah. I will place on his shoulder the key to the house of David. What he opens no one can shut, and I will drive what he shuts no one can open. him like a peg into a firm place, and he will be a" + }, + { + "verseNum": 12, + "text": "12 6 He said, “You shall rejoice no more, O oppressed Virgin Daughter of Sidon. Therefore a curse has consumed the earth, and its inhabitants must bear the guilt; 13 Get up and cross over to Cyprus— a even there you will find no rest.” Look at the land of the Chaldeans a people now of no account. — The Assyrians destined it for the desert creatures; they set up their siege towers and 14 stripped its palaces. They brought it to ruin. Wail, O ships of Tarshish, 15 for your harbor has been destroyed! At that time Tyre will be forgotten for seventy years—the span of a king’s life. But at the end of seventy years, it will happen to Tyre as in the 16 song of the harlot: “Take up your harp, stroll through the city, O forgotten harlot. Make sweet melody, sing many a song, so you will be remembered.” 17 18 And at the end of seventy years, the LORD will restore Tyre. Then she will return to hire as a prostitute and sell herself to all the kingdoms on Yet her profits and wages the face of the earth. will be set apart to the LORD; they will not be stored or saved, for her profit will go to those who live before the LORD, for abundant food and God’s Judgment on the Earth fine clothing. 24 Behold, the LORD lays waste the earth and leaves it in ruins. the earth’s dwellers have been burned, and only a few survive. The new wine dries up, the vine withers. All the merrymakers now groan. The joyful tambourines have ceased; the noise of revelers has stopped; the joyful harp is silent. They no lo" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "–12) and they will shout in triumph over you.” 15 The LORD made the earth by His power; He established the world by His wisdom and stretched out the heavens by His 16 understanding. When He thunders, the waters in the heavens roar; He causes the clouds to rise from the ends of the earth. He generates the lightning with the rain and brings forth the wind from His b 3 storehouses. cherem c 4 is a code name for Chaldea, that is, Babylonia. d 11 Forms of the Hebrew Fill the hand with the shields! things or persons to the LORD, either by destroying them or by giving them as an offering. also in v. 54 LXX and some translations of the Hebrew; literally or refer to the giving over of Take up the shields! That is, the Babylonians; 734 |" + }, + { + "verseNum": 8, + "text": "the That is, (see" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 8, + "text": "| 637 and remove the disgrace of His people For the LORD has spoken. from the whole earth. 9 And in that day it will be said, “Surely this is our God; we have waited for Him, and He has saved us. This is the LORD for whom we have waited. 10 Let us rejoice and be glad in His salvation.” For the hand of the LORD will rest on this mountain. 11 But Moab will be trampled in his place as straw is trodden into the dung pile. He will spread out his hands within it, as a swimmer spreads his arms to swim. c 12 His pride will be brought low, despite the skill of his hands. The high-walled fortress will be brought down, A Song of Salvation cast to the ground, into the dust. 26 In that day this song will be sung in the land of Judah: We have a strong city; 2 salvation is established as its walls and ramparts. Open the gates so a righteous nation may 3 enter— one that remains faithful. You will keep in perfect peace the steadfast of 4 mind, because he trusts in You. Trust in the LORD forever, 5 because GOD the LORD is the Rock eternal. You subdue the uproar of foreigners. For He has humbled those who dwell As the shade of a cloud cools the heat, 6 so the song of the ruthless is silenced. On this mountain the LORD of Hosts will prepare a lavish banquet for all the peoples, a feast of aged wine, of choice meat, 7 of finely aged wine. On this mountain He will swallow up 8 the shroud that enfolds all peoples, the sheet that covers all nations; a He will swallow up death forever. b The Lord GOD" + }, + { + "verseNum": 9, + "text": "9 a My soul longs for You in the night; indeed, my spirit seeks You at dawn. For when Your judgments come upon the 21 Hide yourselves a little while until the wrath has passed. For behold, the LORD is coming out of His earth, 10 the people of the world learn righteousness. dwelling to punish the inhabitants of the earth for their iniquity. Though grace is shown to the wicked man, he does not learn righteousness. The earth will reveal her bloodshed The LORD’s Vineyard" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "–13) Get up! Let us go on from here. 15 2 “I am the true vine, and My Father is the He cuts off keeper of the vineyard. every branch in Me that bears no fruit, and every 3 branch that does bear fruit, He prunes to make it You are already clean be- even more fruitful. cause of the word I have spoken to you. Remain in Me, and I will remain in you. Just as no branch can bear fruit by itself unless it remains in the vine, neither can you bear fruit unless you re- 5 main in Me. 4 6 7 I am the vine and you are the branches. The one who remains in Me, and I in him, will bear much fruit. For apart from Me you can do nothing. If anyone does not remain in Me, he is like a branch that is thrown away and withers. Such branches are gathered up, thrown into the fire, and If you remain in Me and My words re- burned. main in you, ask whatever you wish, and it will be done for you. This is to My Father’s glory, that you bear much fruit, proving yourselves to No Greater Love be My disciples. 9 8 10 As the Father has loved Me, so have I loved you. If you keep My command- Remain in My love. ments, you will remain in My love, just as I have a 20 kept My Father’s commandments and remain in b 25 11 His love. I have told you these things so that My 12 joy may be in you and your joy may be complete. 13 This is My commandment, that you love one another as I have loved you. Greater love has no one than this, that he lay down his life for his 14 friends. 15 16 You are My friends if you do what I command" + }, + { + "verseNum": 9, + "text": "and" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 11, + "text": "–12 Or 1032 | 1 Corinthians 14:36 husbands at home; for it is dishonorable for a 36 woman to speak in the church. 37 a Did the word of God originate with you? Or are If anyone you the only ones it has reached? considers himself a prophet or spiritual person, 38 let him acknowledge that what I am writing you But if anyone ignores is the Lord’s command. 39 this, he himself will be ignored. b 40 So, my brothers, be eager to prophesy, and do But everything not forbid speaking in tongues. The Resurrection of Christ must be done in a proper and orderly manner. 15 2 Now, brothers, I want to remind you of the gospel I preached to you, which you By this received, and in which you stand firm. gospel you are saved, if you hold firmly to the word I preached to you. Otherwise, you have be- 3 lieved in vain. 5 4 and that He appeared to Cephas For what I received I passed on to you as of first importance: that Christ died for our sins accord- ing to the Scriptures, that He was buried, that c He was raised on the third day according to the 6 Scriptures, and then to the Twelve. After that, He appeared to more than five hundred brothers at once, most of whom are still living, though some have fallen asleep. Then He appeared to James, then to all the apostles. And last of all He appeared to me 9 also, as to one of untimely birth. 8 7 10 For I am the least of the apostles and am unwor- thy to be called an apostle, because I persecuted the church of God. But by the grace of God I am what I am, an" + }, + { + "verseNum": 14, + "text": "–22 ; workers; you are God’s field, God’s building." + }, + { + "verseNum": 16, + "text": "(see also LXX) Lev. 18:5; see also Ezek. 20:11, 13, 21. 1016 |" + }, + { + "verseNum": 17, + "text": "| 639 When its limbs are dry, they are broken off. Women come and use them for kindling; for this is a people without understanding. Therefore their Maker has no compassion 12 on them, and their Creator shows them no favor. a 13 In that day the LORD will thresh from the flow- to the Wadi of Egypt, and you, O ing Euphrates Israelites, will be gathered one by one. And in that day a great ram’s horn will sound, and those who were perishing in Assyria will come forth with those who were exiles in Egypt. And they will worship the LORD on the holy mountain in The Captivity of Ephraim Jerusalem. 28 b Woe to the majestic crown of Ephraim’s drunkards, to the fading flower of his glorious splendor, 2 set on the summit above the fertile valley, the pride of those overcome by wine. Behold, the Lord has one who is strong and mighty. Like a hailstorm or destructive tempest, like a driving rain or flooding downpour, he will smash that crown to the ground. The majestic crown of Ephraim’s drunkards 3 4 will be trampled underfoot. The fading flower of his beautiful splendor, set on the summit above the fertile valley, will be like a ripe fig before the summer harvest: 5 Whoever sees it will take it in his hand and swallow it. On that day the LORD of Hosts will be a crown of glory, 6 a diadem of splendor to the remnant of His people, a spirit of justice to him who sits in judgment, and a strength to those who repel the 16 7 onslaught at the gate. These also stagger from wine and stumble from st" + }, + { + "verseNum": 18, + "text": "28 18 Hail will sweep away your refuge of lies, Grain for bread must be ground, and water will flood your hiding place. Your covenant with death will be dissolved, and your agreement with Sheol will not stand. When the overwhelming scourge passes 19 through, you will be trampled by it. As often as it passes through, it will carry you away; it will sweep through morning after morning, by day and by night.” 20 The understanding of this message will bring sheer terror. Indeed, the bed is too short to stretch out on, 21 and the blanket too small to wrap around you. For the LORD will rise up as at Mount Perazim. He will rouse Himself as in the Valley of Gibeon, to do His work, His strange work, 22 and to perform His task, His disturbing task. So now, do not mock, or your shackles will become heavier. Indeed, I have heard from the Lord GOD of Hosts a decree of destruction against the whole Listen and Hear land. 23 24 Listen and hear my voice. Pay attention and hear what I say. Does the plowman plow for planting every day? 25 Does he continuously loosen and harrow the soil? but it is not endlessly threshed. 29 Though the wheels of the cart roll over it, the horses do not crush it. This also comes from the LORD of Hosts, who is wonderful in counsel Woe to David’s City" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "–16) the very stones will cry out.” 41 42 44 43 As Jesus approached Jerusalem and saw the city, He wept over it and said, “If only you had known on this day what would bring you peace! For the But now it is hidden from your eyes. days will come upon you when your enemies will barricade you and surround you and hem you in They will level you to the on every side. ground—you and the children within your walls. They will not leave one stone on another, because you did not recognize the time of your Jesus Cleanses the Temple visitation from God. (Matt. 21:12–17 ;" + }, + { + "verseNum": 10, + "text": ". ally" + }, + { + "verseNum": 13, + "text": "(see also LXX)" + }, + { + "verseNum": 14, + "text": "(see also LXX) BYZ and TR Literally ; twice in this verse" + }, + { + "verseNum": 16, + "text": ";" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 6, + "text": "| 641 11 He has shut your eyes, O prophets; He has covered your heads, O seers. and who with false charges 22 deprive the innocent of justice. And the entire vision will be to you like the words sealed in a scroll. If it is handed to someone 12 to read, he will say, “I cannot, because it is sealed.” Or if the scroll is handed to one unable to read, 13 he will say, “I cannot read.” Therefore the LORD who redeemed Abraham says of the house of Jacob: 23 “No longer will Jacob be ashamed and no more will his face grow pale. For when he sees his children around him, Therefore the Lord said: “These people draw near to Me with their mouths and honor Me with their lips, but their hearts are far from Me. a 14 Their worship of Me is but rules taught by men. Therefore I will again confound these people with wonder upon wonder. The wisdom of the wise will vanish, b 15 and the intelligence of the intelligent will be hidden. ” Woe to those who dig deep 16 to hide their plans from the LORD. In darkness they do their works and say, “Who sees us, and who will know?” You have turned things upside down, as if the potter were regarded as clay. Shall what is formed say to him who formed c it, “He did not make me”? Can the pottery say of the potter, “He has no understanding”? Sanctification for the Godly 17 In a very short time, 18 will not Lebanon become an orchard, and the orchard seem like a forest? On that day the deaf will hear the words of the scroll, 19 and out of the deep darkness the eyes" + }, + { + "verseNum": 7, + "text": "7 Egypt’s help is futile and empty; therefore I have called her Rahab Who Sits Still. a 8 God Will Be Gracious 18 Therefore the LORD longs to be gracious to you; Go now, write it on a tablet in their presence therefore He rises to show you compassion, and inscribe it on a scroll; it will be for the days to come, 9 a witness forever and ever. These are rebellious people, deceitful children, 10 children unwilling to obey the LORD’s instruction. They say to the seers, “Stop seeing visions!” and to the prophets, “Do not prophesy to us the truth! 11 Speak to us pleasant words; prophesy illusions. 12 Get out of the way; turn off the road. Rid us of the Holy One of Israel!” Therefore this is what the Holy One of Israel says: “Because you have rejected this message, trusting in oppression and relying on 13 deceit, this iniquity of yours is like a breach about to fail, a bulge in a high wall, 14 whose collapse will come suddenly— in an instant! It will break in pieces like a potter’s jar, shattered so that no fragment can be found. Not a shard will be found in the dust large enough to scoop the coals from a 15 hearth for the LORD is a just God. 19 Blessed are all who wait for Him. 20 O people in Zion who dwell in Jerusalem, you will weep no more. He will surely be gracious when you cry for help; when He hears, He will The Lord will give you the bread answer you. of adversity and the water of affliction, but your Teacher will no longer hide Himself—with your 21 own eyes you will see Hi" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 7, + "text": "| 643 be heard and His mighty arm to be revealed, striking in angry wrath with a flame of consuming fire, and with cloudburst, storm, and hailstones. 31 For Assyria will be shattered at the voice of 32 the LORD; He will strike them with His scepter. a And with every stroke of the rod of punishment that the LORD brings down on them, 33 the tambourines and lyres will sound as He battles with weapons brandished. For Topheth has long been prepared; it has been made ready for the king. Its funeral pyre is deep and wide, with plenty of fire and wood. The breath of the LORD, like a torrent of burning sulfur, Woe to Those Who Rely on Egypt sets it ablaze. 31 Woe to those who go down to Egypt for help, who rely on horses, who trust in their abundance of chariots and in their multitude of horsemen. They do not look to the Holy One of Israel; 2 they do not seek the LORD. Yet He too is wise and brings disaster; He does not call back His words. He will rise up against the house of the 3 wicked and against the allies of evildoers. But the Egyptians are men, not God; their horses are flesh, not spirit. When the LORD stretches out His hand, the helper will stumble, and the one he helps will fall; both will perish together. 4 For this is what the LORD has said to me: “Like a lion roaring or a young lion over its prey— and though a band of shepherds is called out against it, it is not terrified by their shouting or subdued by their clamor— so the LORD of Hosts will protect Jerusalem. 6 He will" + }, + { + "verseNum": 8, + "text": "8 But a noble man makes honorable plans; The Women of Jerusalem he stands up for worthy causes. 9 Stand up, you complacent women; listen to me. Give ear to my word, 10 you overconfident daughters. In a little more than a year you will tremble, O secure ones. For the grape harvest will fail 11 and the fruit harvest will not arrive. Shudder, you ladies of leisure; tremble, you daughters of complacency. 12 Strip yourselves bare and put sackcloth around your waists. Beat your breasts for the pleasant fields, 13 for the fruitful vines, and for the land of my people, overgrown with thorns and briers— even for every house of merriment 14 in this city of revelry. 7 a For the palace will be forsaken, the busy city abandoned. The hill and the watchtower will become caves forever— 15 the delight of wild donkeys and a pasture for flocks— until the Spirit is poured out upon us from on high. 16 Then the desert will be an orchard, and the orchard will seem like a forest. Then justice will inhabit the wilderness, 17 and righteousness will dwell in the fertile field. The work of righteousness will be peace; the service of righteousness will be quiet 11 confidence forever. 18 20 Then my people will dwell in a peaceful 19 place, in safe and secure places of rest. But hail will level the forest, and the city will sink to the depths. Blessed are those who sow beside abundant waters, The LORD Is Exalted who let the ox and donkey range freely. 33 Woe to you, O destroyer never destroyed, The Ophel a" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 4, + "text": ", and" + }, + { + "verseNum": 5, + "text": "–17) from the LORD of Hosts, the God of Israel. 11 c This is the burden against Dumah: d One calls to me from Seir, 12 “Watchman, what is left of the night? Watchman, what is left of the night?” The watchman replies, “Morning has come, but also the night. If you would inquire, then inquire. The Burden against Arabia Come back yet again.” 13 This is the burden against Arabia: 14 In the thickets of Arabia you must lodge, O caravans of Dedanites. Bring water for the thirsty, O dwellers of Tema; b 9 lion meet the refugees with food. d 11 Seir a 8 silence 15 For they flee from the sword— the sword that is drawn— from the bow that is bent, 16 and from the stress of battle. 17 For this is what the Lord says to me: “Within one year, as a hired worker would count it, all the glory of Kedar will be gone. The remaining archers, the warriors of Kedar, will be few.” The Valley of Vision For the LORD, the God of Israel, has spoken. 22 This is the burden against the Valley of Vision: What ails you now, 2 that you have all gone up to the rooftops, O city of commotion, O town of revelry? Your slain did not die by the sword, 3 nor were they killed in battle. All your rulers have fled together, captured without a bow. All your fugitives were captured together, 4 having fled to a distant place. Therefore I said, “Turn away from me, let me weep bitterly! Do not try to console me 5 over the destruction of the daughter of my people.” For the Lord GOD of Hosts has set a day of tumult and trampling a" + }, + { + "verseNum": 12, + "text": "| 645 He who walks righteously and speaks with sincerity, who refuses gain from extortion, whose hand never takes a bribe, 16 who stops his ears against murderous plots and shuts his eyes tightly against evil— he will dwell on the heights; the mountain fortress will be his refuge; 17 his food will be provided and his water assured. 18 Your eyes will see the King in His beauty and behold a land that stretches afar. Your mind will ponder the former terror: “Where is he who tallies? Where is he who 19 weighs? Where is he who counts the towers?” You will no longer see the insolent, a people whose speech is unintelligible, who stammer in a language you cannot understand. 20 Look upon Zion, the city of our appointed feasts. Your eyes will see Jerusalem, a peaceful pasture, a tent that does not wander; 21 its tent pegs will not be pulled up, nor will any of its cords be broken. But there the Majestic One, our LORD, will be for us a place of rivers and wide canals, 22 where no galley with oars will row, and no majestic vessel will pass. For the LORD is our Judge, the LORD is our lawgiver, the LORD is our King. 23 It is He who will save us. Your ropes are slack; The LORD is angry with all the nations a and furious with all their armies. He will devote them to destruction; 3 He will give them over to slaughter. Their slain will be left unburied, 4 and the stench of their corpses will rise; the mountains will flow with their blood. All the stars of heaven will be dissolved. The skies wi" + }, + { + "verseNum": 13, + "text": "13 7 Her towers will be overgrown with thorns, her fortresses with thistles and briers. a b She will become a haunt for jackals, 14 an abode for ostriches. c The desert creatures will meet with hyenas, and one wild goat will call to another. There the night creature 15 will settle and find her place of repose. There the owl will make her nest; she will lay and hatch her eggs and gather her brood under her shadow. Even there the birds of prey will gather, 16 each with its mate. Search and read the scroll of the LORD: Not one of these will go missing, not one will lack her mate, 17 because He has ordered it by His mouth, and He will gather them by His Spirit. He has allotted their portion; His hand has distributed it by measure. They will possess it forever; they will dwell in it from generation The Glory of Zion to generation. 35 The wilderness and the dry land will be glad; 2 the desert will rejoice and blossom like a rose. It will bloom profusely and rejoice with joy and singing. The glory of Lebanon will be given to it, the splendor of Carmel and Sharon. They will see the glory of the LORD, 3 5 the splendor of our God. d Strengthen the limp hands 4 and steady the feeble knees! Say to those with anxious hearts: “Be strong, do not fear! Behold, your God will come with vengeance. With divine retribution He will come to save you.” 6 Then the eyes of the blind will be opened and the ears of the deaf unstopped. Then the lame will leap like a deer The parched ground will become a" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "–22) 17 c d e the Rabsaris, and the Rabshakeh, Nevertheless, the king of Assyria sent the Tar- tan, along with a great army, from Lachish to King Hezekiah at Jerusalem. They advanced up to Jerusalem and stationed themselves by the aqueduct of the up- 18 per pool, on the road to the Launderer’s Field. Then they called for the king. And Eliakim son of Hilkiah the palace administrator, Shebnah the scribe, and Joah son of Asaph the recorder, went a 14 300 talents out to them. c 17 Tartan 20 The Rabshakeh said to them, “Tell Hezekiah that this is what the great king, the king of As- syria, says: What is the basis of this confidence of You claim to have a strategy and yours? strength for war, but these are empty words. In whom are you now trusting, that you have re- 21 belled against me? 22 Look now, you are trusting in Egypt, that splin- tered reed of a staff that will pierce the hand of anyone who leans on it. Such is Pharaoh king of But if you say to Egypt to all who trust in him. me, ‘We trust in the LORD our God,’ is He not the One whose high places and altars Hezekiah has removed, saying to Judah and Jerusalem: ‘You 23 must worship before this altar in Jerusalem’? Now, therefore, make a bargain with my mas- ter, the king of Assyria. I will give you two thou- 24 sand horses—if you can put riders on them! For how can you repel a single officer among the least of my master’s servants when you de- pend on Egypt for chariots and horsemen? So now, was it apart from the LORD that I" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 8, + "text": "–13) 8 When the Rabshakeh heard that the king of Assyria had left Lachish, he withdrew and found 9 the king fighting against Libnah. a Now Sennacherib had been warned about “Look, he has set out to Tirhakah king of Cush: fight against you.” 10 So Sennacherib again sent messengers to Heze- “Give this message to Hezekiah kiah, saying, king of Judah: 11 ‘Do not let your God, in whom you trust, deceive you by saying that Jerusalem will not be delivered into the hand of the king Surely you have heard what the of Assyria. b kings of Assyria have done to all the other 12 countries, devoting them to destruction. Did the gods Will you then be spared? of the nations destroyed by my fathers rescue those nations—the gods of Gozan, Haran, and Rezeph, and of the people of Eden Where are the kings of in Telassar? Hamath, Arpad, Sepharvaim, Hena, and Ivvah?’ 13 Hezekiah’s Prayer ”" + }, + { + "verseNum": 11, + "text": "| 647 Then Hilkiah’s son Eliakim the palace adminis- trator, Shebna the scribe, and Asaph’s son Joah the recorder came to Hezekiah with their clothes torn, and they relayed to him the words of the Isaiah’s Message of Deliverance Rabshakeh. (2 Kings 19:1–7) 37 2 3 On hearing this report, King Hezekiah tore his clothes, put on sackcloth, and en- tered the house of the LORD. And he sent Eli- akim the palace administrator, Shebna the scribe, and the leading priests, all wearing sack- to tell cloth, to the prophet Isaiah son of Amoz him, “This is what Hezekiah says: Today is a day of distress, rebuke, and disgrace; for children have come to the point of birth, but there is no Perhaps the LORD strength to deliver them. your God will hear the words of the Rabshakeh, whom his master the king of Assyria has sent to defy the living God, and He will rebuke him for the words that the LORD your God has heard. Therefore lift up a prayer for the remnant that 5 still survives.” 6 4 So the servants of King Hezekiah went to Isaiah, who replied, “Tell your master that this is what the LORD says: ‘Do not be afraid of the words you have heard, with which the servants of the king of Assyria have blasphemed Me. Behold, I will put a spirit in him so that he will hear a rumor and return to his own land, where I will cause Sennacherib’s Blasphemous Letter him to fall by the sword.’ (2 Kings 19:8–13) ” 7 8 When the Rabshakeh heard that the king of As- syria had left Lachish, he withdrew and found the 9" + }, + { + "verseNum": 12, + "text": "12 Did the gods of Will you then be spared? the nations destroyed by my fathers rescue those nations—the gods of Gozan, Haran, and Rezeph, and of the people of Eden in Telassar? Where are the kings of Hamath, Hezekiah’s Prayer (2 Kings 19:14–19) Arpad, Sepharvaim, Hena, and Ivvah?’ 13 ” 14 So Hezekiah received the letter from the mes- sengers, read it, and went up to the house of the And LORD and spread it out before the LORD. Hezekiah prayed to the LORD: 15 16 “O LORD of Hosts, God of Israel, enthroned above the cherubim, You alone are God over 17 all the kingdoms of the earth. You made the Incline Your ear, O heavens and the earth. LORD, and hear; open Your eyes, O LORD, and see. Listen to all the words that Sennach- 18 erib has sent to defy the living God. Truly, O LORD, the kings of Assyria have 19 laid waste all these countries and their lands. They have cast their gods into the fire and destroyed them, for they were not gods, but only wood and stone—the work of human 20 hands. And now, O LORD our God, save us from his hand, so that all the kingdoms of the earth ” may know that You alone, O LORD, are God. Sennacherib’s Fall Prophesied (2 Kings 19:20–34) a 21 Then Isaiah son of Amoz sent a message to Hezekiah: “This is what the LORD, the God of Is- rael, says: Because you have prayed to Me con- this is the cerning Sennacherib king of Assyria, word that the LORD has spoken against him: 22 ‘The Virgin Daughter of Zion despises you and mocks you; the Daughter of Jerusalem 23" + }, + { + "verseNum": 14, + "text": "–20) 14 So Hezekiah received the letter from the mes- sengers, read it, and went up to the house of the And LORD and spread it out before the LORD. Hezekiah prayed before the LORD: 15 “O LORD, God of Israel, enthroned between the cherubim, You alone are God over all the 16 kingdoms of the earth. You made the heav- ens and the earth. Incline Your ear, O LORD, and hear; open Your eyes, O LORD, and see. Listen to the words that Sennach- 17 erib has sent to defy the living God. Truly, O LORD, the kings of Assyria have 18 laid waste these nations and their lands. They have cast their gods into the fire and destroyed them, for they were not gods, but only wood and stone—the work of human 19 hands. And now, O LORD our God, please save us from his hand, so that all the kingdoms of the earth may know that You alone, O LORD, are God.” cherem That is, the upper Nile region Forms of the Hebrew refer to the giving over of things or persons to the LORD, either by destroying them or by giving them as an offering. 362 | 2 Kings 19:20 Sennacherib’s Fall Prophesied" + }, + { + "verseNum": 21, + "text": "–35) 20 Then Isaiah son of Amoz sent a message to Hezekiah: “This is what the LORD, the God of Is- rael, says: I have heard your prayer concerning This is the word Sennacherib king of Assyria. that the LORD has spoken against him: 21 ‘The Virgin Daughter of Zion despises you and mocks you; 22 the Daughter of Jerusalem shakes her head behind you. Whom have you taunted and blasphemed? Against whom have you raised your voice 23 and lifted your eyes in pride? Against the Holy One of Israel! Through your servants you have taunted the Lord, and you have said: “With my many chariots I have ascended to the heights of the mountains, to the remote peaks of Lebanon. a I have cut down its tallest cedars, the finest of its cypresses. 24 I have reached its farthest outposts, the densest of its forests. I have dug wells and drunk foreign waters. Have you not heard? Long ago I ordained it; in days of old I planned it. Now I have brought it to pass, that you should crush fortified cities 26 into piles of rubble. Therefore their inhabitants, devoid of power, are dismayed and ashamed. They are like plants in the field, tender green shoots, 27 grass on the rooftops, scorched before it is grown. But I know your sitting down, 28 your going out and coming in, and your raging against Me. Because your rage and arrogance against Me have reached My ears, a 23 pines I will put My hook in your nose b 31 and My bit in your mouth; The zeal of the LORD or junipers c 37 or firs Or With the soles of my feet 2" + }, + { + "verseNum": 36, + "text": "–38) ” 35 And that very night the angel of the LORD went out and struck down 185,000 men in the camp of the Assyrians. When the people got up the next So morning, there were all the dead bodies! Sennacherib king of Assyria broke camp and withdrew. He returned to Nineveh and stayed 37 there. 36 c One day, while he was worshiping in the tem- ple of his god Nisroch, his sons Adrammelech and Sharezer put him to the sword and escaped to the land of Ararat. And his son Esar-haddon reigned in his place. his sons reads . LXX and an alternate MT reading (see also" + }, + { + "verseNum": 38, + "text": "); MT lacks . LXX, many Hebrew manuscripts, and an alternate MT reading; the other alternate Hezekiah’s Illness and Recovery (2 Chronicles 32:24–31 ;" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "–8) 20 In those days Hezekiah became mortally ill. The prophet Isaiah son of Amoz came to him and said, “This is what the LORD says: ‘Put your house in order, for you are about to die; you 2 will not recover.’ ” 3 Then Hezekiah turned his face to the wall and prayed to the LORD, saying, “Please, O LORD, re- member how I have walked before You faithfully and with wholehearted devotion; I have done what is good in Your sight.” And Hezekiah wept a 4 bitterly. 5 Before Isaiah had left the middle courtyard, “Go the word of the LORD came to him, saying, back and tell Hezekiah the leader of My people that this is what the LORD, the God of your father David, says: ‘I have heard your prayer; I have seen your tears. I will surely heal you. On the third day from now you will go up to the house of the LORD. I will add fifteen years to your life. And I will deliver you and this city from the hand of the king of Assyria. I will defend this city for 7 My sake and for the sake of My servant David.’ ” 6 Then Isaiah said, “Prepare a poultice of figs.” So they brought it and applied it to the boil, and Hez- 8 ekiah recovered. Now Hezekiah had asked Isaiah, “What will be the sign that the LORD will heal me and that I will 9 go up to the house of the LORD on the third day?” And Isaiah had replied, “This will be a sign to you from the LORD that He will do what He has promised: Would you like the shadow to go for- 10 ward ten steps, or back ten steps?” “It is easy for the shadow to lengthen ten ste" + }, + { + "verseNum": 18, + "text": "| 649 33 So this is what the LORD says about the king of Assyria: ‘He will not enter this city or shoot an arrow into it. 34 He will not come before it with a shield or build up a siege ramp against it. shadow that falls on the stairway of Ahaz go back ten steps.’ ” So the sunlight went back the ten steps it had de- Hezekiah’s Song of Thanksgiving scended. 9 He will go back the way he came, and he will not enter this city,’ declares the LORD. 35 ‘I will defend this city and save it for My own sake Jerusalem Delivered from the Assyrians and for the sake of My servant David.’ (2 Kings 19:35–37 ; 2 Chronicles 32:20–23) ” 36 Then the angel of the LORD went out and struck down 185,000 men in the camp of the As- syrians. When the people got up the next morn- 37 ing, there were all the dead bodies! a 38 So Sennacherib king of Assyria broke camp and withdrew. He returned to Nineveh and One day, while he was worship- stayed there. ing in the temple of his god Nisroch, his sons Adrammelech and Sharezer put him to the sword and escaped to the land of Ararat. And his son Hezekiah’s Illness and Recovery Esar-haddon reigned in his place. (2 Kings 20:1–11 ; 2 Chronicles 32:24–31) 38 In those days Hezekiah became mortally ill. The prophet Isaiah son of Amoz came to him and said, “This is what the LORD says: ‘Put your house in order, for you are about to die; you 2 will not recover.’ ” 3 Then Hezekiah turned his face to the wall and saying, “Please, O LORD, re- prayed to the LORD, member how" + }, + { + "verseNum": 19, + "text": "19 The living, only the living, can thank You, as I do today; 20 fathers will tell their children about Your faithfulness. The LORD will save me; we will play songs on stringed instruments all the days of our lives 21 in the house of the LORD. Now Isaiah had said, “Prepare a lump of pressed figs and apply it to the boil, and he will 22 recover.” And Hezekiah had asked, “What will be the Hezekiah Shows His Treasures sign that I will go up to the house of the LORD?” (2 Kings 20:12–19) 39 At that time Merodach-baladan son of Baladan king of Babylon sent letters and 2 a gift to Hezekiah, for he had heard about Heze- And Hezekiah wel- kiah’s illness and recovery. comed the envoys gladly and showed them what was in his treasure house—the silver, the gold, the spices, and the precious oil, as well as his entire armory—all that was found in his store- houses. There was nothing in his palace or in all 3 his dominion that Hezekiah did not show them. Then the prophet Isaiah went to King Hezekiah and asked, “Where did those men come from, and what did they say to you?” “They came to me from a distant land,” Hezekiah 4 replied, “from Babylon.” “What have they seen in your palace?” Isaiah asked. “They have seen everything in my palace,” an- swered Hezekiah. “There is nothing among my 5 treasures that I did not show them.” 6 7 Then Isaiah said to Hezekiah, “Hear the word of The time will surely come the LORD of Hosts: when everything in your palace and all that your fathers have stored up u" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "); MT Or or 364 | 2 Kings 21:5 5 18 In both courtyards of the I will put My Name.” a 6 house of the LORD, he built altars to all the host of heaven. practiced sorcery and divination, and consulted mediums and spiritists. He did great evil in the 7 sight of the LORD He sacrificed his own son in the fire, , provoking Him to anger. 8 Manasseh even took the carved Asherah pole he had made and set it up in the temple, of which the LORD had said to David and his son Solomon, “In this temple and in Jerusalem, which I have cho- sen out of all the tribes of Israel, I will establish My Name forever. I will never again cause the feet of the Israelites to wander from the land that I gave to their fathers, if only they are careful to do all I have commanded them—the whole Law 9 that My servant Moses commanded them.” But the people did not listen and Manasseh led them astray, so that they did greater evil than the nations that the LORD had destroyed before the Manasseh’s Idolatries Rebuked Israelites. (2 Chronicles 33:10–20) 10 11 12 And the LORD spoke through His servants the prophets, saying, “Since Manasseh king of Judah has committed all these abominations, act- ing more wickedly than the Amorites who pre- ceded him, and with his idols has caused Judah to sin, this is what the LORD, the God of Israel, says: ‘Behold, I am bringing such calamity upon Jerusalem and Judah that the news will reverber- 13 ate in the ears of all who hear it. 14 I will stretch out over Jerusalem the measuring" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 3, + "text": "(see also LXX) Or 15 So he got up, took the Child and His mother by where he stayed night, and withdrew to Egypt, until the death of Herod. This fulfilled what the Lord had spoken through the prophet: “Out of Weeping and Great Mourning (Jer. 31:1–25) Egypt I called My Son.” 16 d When Herod saw that he had been outwitted by the Magi, he was filled with rage. Sending or- ders, he put to death all the boys in Bethlehem and its vicinity who were two years old and un- der, according to the time he had learned from Then what was spoken through the the Magi. 18 prophet Jeremiah was fulfilled: 17 “A voice is heard in Ramah, weeping and great mourning, Rachel weeping for her children and refusing to be comforted, The Return to Nazareth" + }, + { + "verseNum": 6, + "text": "–8) your faith and hope are in God. 22 e 23 Since you have purified your souls by obedi- ence to the truth so that you have a genuine love for your brothers, love one another deeply, from For you have been born again, a pure heart. not of perishable seed, but of imperishable, 24 through the living and enduring word of God. For, “All flesh is like grass, and all its glory like the flowers of the 25 field; f the grass withers and the flowers fall, but the word of the Lord stands forever.” It was revealed to them that they were not a 1 serving themselves, but you, when they foretold To the elect sojourners of the Diaspora of Pontus, Galatia, Cappadocia, Asia, and Bithynia has caused us to be born again has begotten us again And this is the word that was proclaimed to you. Literally gird up the loins of your mind located in what is now Turkey. b 3 d 16 Or Lev. 11:44–45; Lev. 19:2 e 22 or from the heart Wherefore c 13 . These provinces were f 25 Literally SBL, NE, and WH" + }, + { + "verseNum": 9, + "text": "–31) 33 O, the depth of the riches of the wisdom and knowledge of God! How unsearchable are His judgments, 34 and untraceable His ways! d 35 “Who has known the mind of the Lord? Or who has been His counselor?” e “Who has first given to God, 36 that God should repay him?” For from Him and through Him and to Him are all things. Living Sacrifices To Him be the glory forever! Amen. (1 Corinthians 3:16–23 ; 1 Corinthians 6:18–20) 12 Therefore I urge you, brothers, on account of God’s mercy, to offer your f bodies as living sacrifices, holy and pleasing to 2 God, which is your spiritual service of worship. Do not be conformed to this world, but be trans- formed by the renewing of your mind. Then you will be able to test and approve what is the good, 3 pleasing, and perfect will of God. 4 For by the grace given me I say to every one of you: Do not think of yourself more highly than you ought, but think of yourself with sober judg- ment, according to the measure of faith God has Just as each of us has one body with given you. many members, and not all members have the so in Christ we who are many same function, are one body, and each member belongs to one 6 another. 5 We have different gifts according to the grace 7 given us. If one’s gift is prophecy, let him use it in 8 if it is serving, let him proportion to his faith; serve; if it is teaching, let him teach; if it is en- couraging, let him encourage; if it is giving, let him give generously; if it is leading, let him lead with di" + }, + { + "verseNum": 13, + "text": "(see also LXX)" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 2, + "text": "| 651 He tends His flock like a shepherd; He gathers the lambs in His arms and carries them close to His heart. He gently leads the nursing ewes. 12 Who has measured the waters in the hollow of his hand, or marked off the heavens with the span of his hand? 25 Who has held the dust of the earth in a basket, 13 or weighed the mountains on a scale a and the hills with a balance? b 14 Who has directed the Spirit of the LORD, or informed Him as His counselor? Whom did He consult to enlighten Him, and who taught Him the paths of justice? Who imparted knowledge to Him and showed Him the way of 15 understanding? Surely the nations are like a drop in a bucket; they are considered a speck of dust on the c 16 scales; He lifts up the islands like fine dust. Lebanon is not sufficient for fuel, 17 nor its animals enough for a burnt offering. All the nations are as nothing before Him; He regards them as nothingness and 18 emptiness. 19 To whom will you liken God? To what image will you compare Him? To an idol that a craftsman casts 20 and a metalworker overlays with gold and fits with silver chains? One lacking such an offering chooses wood that will not rot. He seeks a skilled craftsman to set up an idol 21 that will not topple. Do you not know? Have you not heard? Has it not been declared to you from the beginning? 22 Have you not understood since the foundation of the earth? He sits enthroned above the circle of the earth; mind of the LORD its dwellers are like grasshoppers. coastlands j" + }, + { + "verseNum": 3, + "text": "He hands nations over to him and subdues kings before him. He turns them to dust with his sword, to windblown chaff with his bow. 3 He pursues them, going on safely, 4 hardly touching the path with his feet. Who has performed this and carried it out, calling forth the generations from the beginning? You will thresh the mountains and crush 16 them, and reduce the hills to chaff. You will winnow them, and a wind will carry them away; a gale will scatter them. But you will rejoice in the LORD; 17 you will glory in the Holy One of Israel. The poor and needy seek water, but there is I, the LORD—the first and the last— 5 none; I am He.” The islands see and fear; 6 the ends of the earth tremble. They approach and come forward. Each one helps the other 7 and says to his brother, “Be strong!” The craftsman encourages the goldsmith, and he who wields the hammer cheers him who strikes the anvil, saying of the welding, “It is good.” 8 He nails it down so it will not be toppled. 9 “But you, O Israel, My servant, Jacob, whom I have chosen, descendant of Abraham My friend— I brought you from the ends of the earth their tongues are parched with thirst. 18 I, the LORD, will answer them; I, the God of Israel, will not forsake them. I will open rivers on the barren heights, and fountains in the middle of the valleys. 19 I will turn the desert into a pool of water, and the dry land into flowing springs. I will plant cedars in the wilderness, a acacias, myrtles, and olive trees. 20 I will set cyp" + }, + { + "verseNum": 8, + "text": ". Literally Greek Literally Literally 15 ambition in your hearts, do not boast in it or deny Such wisdom does not come from the truth. For above, but is earthly, unspiritual, demonic. where jealousy and selfish ambition exist, there 17 will be disorder and every evil practice. 16 But the wisdom from above is first of all pure, then peace-loving, gentle, accommodating, full of 18 mercy and good fruit, impartial, and sincere. Peacemakers who sow in peace reap the fruit a A Warning against Pride of righteousness. 4 b 2 What causes conflicts and quarrels among you? Don’t they come from the passions at You crave what you do not war within you? have; you kill and covet, but are unable to obtain 3 it. You quarrel and fight. You do not have, be- And when you do ask, cause you do not ask. you do not receive, because you ask with wrong motives, that you may squander it on your 4 pleasures. c d You adulteresses! Do you not know that friendship with the world is hostility toward God? Therefore, whoever chooses to be a friend 5 an enemy of God. of the world renders himself Or do you think the Scripture says without rea- He caused to dwell in us But He gives us more grace. 6 son that the Spirit yearns with envy? This is why it says: e f “God opposes the proud, Drawing Near to God but gives grace to the humble.” 7 8 9 Submit yourselves, then, to God. Resist the Draw near to devil, and he will flee from you. God, and He will draw near to you. Cleanse your hands, you sinners, and purify your" + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "–9) went out and plotted how they might kill Jesus. 15 16 Aware of this, Jesus withdrew from that place. Large crowds followed Him, and He healed them 17 warning them not to make Him known. all, This was to fulfill what was spoken through b 7 c 21 the Bread of the Presence a 4 the prophet Isaiah: Beelzebub Or ; also in verse 27 18 “Here is My Servant, whom I have chosen, My beloved, in whom My soul delights. I will put My Spirit on Him, 19 and He will proclaim justice to the nations. 20 He will not quarrel or cry out; no one will hear His voice in the streets. A bruised reed He will not break, and a smoldering wick He will not 21 till He leads justice to victory. extinguish, c In His name the nations will put A House Divided (Mk. 3:20–27 ; Lk. 11:14–23) their hope.” 22 Then a demon-possessed man who was blind and mute was brought to Jesus, and He healed The the man so that he could speak and see. crowds were astounded and asked, “Could this 24 be the Son of David?” 23 d But when the Pharisees heard this, they said, the prince of demons, does “Only by Beelzebul, 25 this man drive out demons.” 26 Knowing their thoughts, Jesus said to them, “Every kingdom divided against itself will be laid waste, and every city or household divided If Satan drives out against itself will not stand. 27 Satan, he is divided against himself. How then And if I drive out de- can his kingdom stand? mons by Beelzebul, by whom do your sons drive 28 them out? So then, they will be your judges. But if I" + }, + { + "verseNum": 10, + "text": "–17) 8 Let the sea resound, and all that fills it, the world, and all who dwell in it. Let the rivers clap their hands, 9 let the mountains sing together for joy before the LORD, for He comes to judge the earth. He will judge the world with righteousness Psalm 99 and the peoples with equity. The LORD Reigns!" + }, + { + "verseNum": 19, + "text": "| 653 I will not yield My glory to another 9 or My praise to idols. Behold, the former things have happened, and now I declare new things. Before they spring forth A New Song of Praise (Ps. 98:1–9 ; Ps. 149:1–9) I proclaim them to you.” 10 Sing to the LORD a new song— His praise from the ends of the earth— you who go down to the sea, and all that is d 11 in it, you islands, and all who dwell in them. Let the desert and its cities raise their voices; let the villages of Kedar cry aloud. Let the people of Sela sing for joy; 12 let them cry out from the mountaintops. Let them give glory to the LORD 13 and declare His praise in the islands. The LORD goes forth like a mighty one; He stirs up His zeal like a warrior. He shouts; yes, He roars 14 in triumph over His enemies: “I have kept silent from ages past; I have remained quiet and restrained. But now I will groan like a woman in labor; 15 I will at once gasp and pant. I will lay waste the mountains and hills e and dry up all their vegetation. I will turn the rivers into dry land 16 and drain the marshes. I will lead the blind by a way they did not know; I will guide them on unfamiliar paths. I will turn darkness into light before them and rough places into level ground. 17 These things I will do for them, and I will not forsake them. But those who trust in idols and say to molten images, ‘You are our gods!’ Israel Is Deaf and Blind will be turned back in utter shame. 18 Listen, you deaf ones; 19 look, you blind ones, that you ma" + }, + { + "verseNum": 20, + "text": "20 5 Though seeing many things, you do not keep Do not be afraid, for I am with you; watch. Though your ears are open, you do not hear.” 21 The LORD was pleased, for the sake of His 22 righteousness, to magnify His law and make it glorious. But this is a people plundered and looted, all trapped in caves or imprisoned in dungeons. They have become plunder with no one to rescue them, 23 and loot with no one to say, “Send them back!” 24 Who among you will pay attention to this? Who will listen and obey hereafter? Who gave Jacob up for spoil, and Israel to the plunderers? Was it not the LORD, against whom we have sinned? 25 They were unwilling to walk in His ways, and they would not obey His law. So He poured out on them His furious anger and the fierceness of battle. It enveloped them in flames, but they did not understand; it consumed them, Israel’s Only Savior but they did not take it to heart. 43 But now, this is what the LORD says— He who created you, O Jacob, and He who formed you, O Israel: “Do not fear, for I have redeemed you; 2 I have called you by your name; you are Mine! When you pass through the waters, I will be with you; and when you go through the rivers, they will not overwhelm you. When you walk through the fire, you will not be scorched; the flames will not set you ablaze. 3 For I am the LORD your God, the Holy One of Israel, your Savior; a I give Egypt for your ransom, 4 Cush and Seba in your place. Because you are precious and honored in My sight, and because" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 22, + "text": "–28 ;" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 11, + "text": "| 655 who brings out the chariots and horses, the armies and warriors together, to lie down, never to rise again; 18 to be extinguished, snuffed out like a wick: 19 “Do not call to mind the former things; pay no attention to the things of old. Behold, I am about to do something new; even now it is coming. Do you not see it? Indeed, I will make a way in the wilderness 20 and streams in the desert. a b The beasts of the field will honor Me, the jackals and the ostriches, because I provide water in the wilderness 21 and rivers in the desert, to give drink to My chosen people. The people I formed for Myself Israel’s Unfaithfulness will declare My praise." + }, + { + "verseNum": 12, + "text": "Let them all assemble and take their stand; they will all be brought to terror and 12 shame. The blacksmith takes a tool and labors over the coals; he fashions an idol with hammers and forges it with his strong arms. 13 Yet he grows hungry and loses his strength; he fails to drink water and grows faint. The woodworker extends a measuring line; he marks it out with a stylus; he shapes it with chisels and outlines it with a compass. He fashions it in the likeness of man, 14 like man in all his glory, that it may dwell in a shrine. a He cuts down cedars or retrieves a cypress or oak. Shall I make something detestable with the 20 rest of it? Shall I bow down to a block of wood?” He feeds on ashes. His deluded heart has led him astray, and he cannot deliver himself or say, “Is not this thing in my right hand Jerusalem to Be Restored a lie?” 21 Remember these things, O Jacob, for you are My servant, O Israel. I have made you, and you are My servant; 22 O Israel, I will never forget you. I have blotted out your transgressions like a cloud, 23 and your sins like a mist. Return to Me, for I have redeemed you. Sing for joy, O heavens, for the LORD has He lets it grow strong among the trees of the done this; forest. 15 He plants a laurel, and the rain makes it grow. It serves as fuel for man. He takes some of it to warm himself, shout aloud, O depths of the earth. Break forth in song, O mountains, you forests and all your trees. For the LORD has redeemed Jacob, and revealed His glory in" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "–25) 22 In the first year of Cyrus king of Persia, to fulfill the word of the LORD spoken through Jeremiah, the LORD stirred the spirit of Cyrus king of Persia to send a proclamation throughout his kingdom and to put it in writing as follows: 23 “This is what Cyrus king of Persia says: ‘The LORD, the God of heaven, who has given me all the kingdoms of the earth, has ap- pointed me to build a house for Him at Jeru- salem in Judah. Whoever among you belongs to His people, may the LORD his God be with him, and may he go up.’ ” eight a 9 b 10 e 15 g 21 uncle One Hebrew manuscript, some LXX manuscripts, and Syriac (see also 2 Kings 24:8); most Hebrew manuscripts At the turn of the year Rising up early and sending (it), made courageous brother f 17 made strong d 13 c 10 Literally Literally See" + }, + { + "verseNum": 9, + "text": "l 33 h 25" + }, + { + "verseNum": 19, + "text": "| 657 Thus says the LORD, the Holy One of Israel, and its Maker: “Concerning things to come, do you question His anointed, 12 Me about My sons, whose right hand I have grasped to subdue nations before him, to disarm kings, to open the doors before him, so that the gates will not be shut: a 2 “I will go before you and level the mountains; I will break down the gates of bronze 3 and cut through the bars of iron. I will give you the treasures of darkness and the riches hidden in secret places, so that you may know that I am the LORD, 4 the God of Israel, who calls you by name. For the sake of Jacob My servant and Israel My chosen one, I call you by name; 5 I have given you a title of honor, though you have not known Me. I am the LORD, and there is no other; there is no God but Me. I will equip you for battle, 6 though you have not known Me, so that all may know, from where the sun rises to where it sets, that there is none but Me; 7 I am the LORD, and there is no other. I form the light and create the darkness; 8 I bring prosperity and create calamity. I, the LORD, do all these things. Drip down, O heavens, from above, and let the skies pour down righteousness. Let the earth open up that salvation may sprout 9 and righteousness spring up with it; I, the LORD, have created it. Woe to him who quarrels with his Maker— one clay pot among many. b Does the clay ask the potter, ‘What are you making?’ Does your work say, 10 ‘He has no hands’? Woe to him who says to his father, ‘What hav" + }, + { + "verseNum": 20, + "text": "I, the LORD, speak the truth; 20 I say what is right. Come, gather together, and draw near, you fugitives from the nations. 21 Ignorant are those who carry idols of wood and pray to a god that cannot save. Speak up and present your case— yes, let them take counsel together. Who foretold this long ago? Who announced it from ancient times? Was it not I, the LORD? There is no other God but Me, 22 a righteous God and Savior; there is none but Me. Turn to Me and be saved, all the ends of the earth; for I am God, 23 and there is no other. By Myself I have sworn; truth has gone out from My mouth, a word that will not be revoked: a Every knee will bow before Me, 24 every tongue will swear allegiance. Surely they will say of Me, ‘In the LORD alone are righteousness ” and strength.’ All who rage against Him 25 will come to Him and be put to shame. In the LORD all descendants of Israel will be justified and will exult. Babylon’s Idols 46 Bel crouches; Nebo cowers. Their idols weigh down beasts and cattle. The images you carry are burdensome, 2 a load to the weary animal. The gods cower; they crouch together, 3 unable to relieve the burden; but they themselves go into captivity. “Listen to Me, O house of Jacob, all the remnant of the house of Israel, who have been sustained from the womb, 4 carried along since birth. Even to your old age, I will be the same, and I will bear you up when you turn gray. 5 To whom will you liken Me or count Me equal? 6 To whom will you compare Me, that we sh" + }, + { + "verseNum": 23, + "text": "(see also LXX) g 9 will acknowledge God BYZ and TR include Lit. Gentiles; he who does not regard the day, to the Lord he does not regard it; will give praise to God in Him the Gentiles will put their hope.” b 11 or to be hindered or weakened e 23 SBL, BYZ, and TR include i 11 Or j 12 . Some manuscripts place the text of" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 8, + "text": "| 659 I will take vengeance; 4 I will spare no one. ” Our Redeemer—the LORD of Hosts is His 5 name— is the Holy One of Israel. 6 “Sit in silence and go into darkness, O Daughter of the Chaldeans. For you will no longer be called the queen of kingdoms. I was angry with My people; I profaned My heritage, and I placed them under your control. You showed them no mercy; 7 even on the elderly you laid a most heavy yoke. You said, ‘I will be queen forever.’ 8 You did not take these things to heart or consider their outcome. So now hear this, O lover of luxury who sits securely, who says to herself, ‘I am, and there is none besides me. I will never be a widow 9 or know the loss of children.’ These two things will overtake you in a moment, in a single day: loss of children, and widowhood. They will come upon you in full measure, 10 in spite of your many sorceries and the potency of your spells. You were secure in your wickedness; you said, ‘No one sees me.’ Your wisdom and knowledge led you astray; you told yourself, ‘I am, and there is none 11 besides me.’ But disaster will come upon you; you will not know how to charm it away. A calamity will befall you that you will be unable to ward off. 12 Devastation will happen to you suddenly and unexpectedly. So take your stand with your spells and with your many sorceries, with which you have wearied yourself from your youth. 13 Perhaps you will succeed; perhaps you will inspire terror! You are wearied by your many counselors; let them come" + }, + { + "verseNum": 9, + "text": "9 19 For the sake of My name I will delay My wrath; 10 for the sake of My praise I will restrain it, so that you will not be cut off. See, I have refined you, but not as silver; I have tested you in the furnace of 11 affliction. For My own sake, My very own sake, I will act; Deliverance Promised to Israel for how can I let Myself be defamed? I will not yield My glory to another. 12 Listen to Me, O Jacob, and Israel, whom I have called: 13 I am He; I am the first, and I am the last. Surely My own hand founded the earth, and My right hand spread out the heavens; when I summon them, 14 they stand up together. Come together, all of you, and listen: Which of the idols has foretold these things? The LORD’s chosen ally will carry out His desire against Babylon, a and His arm will be against the 15 Chaldeans. I, even I, have spoken; yes, I have called him. I have brought him, 16 and he will succeed in his mission. Come near to Me and listen to this: From the beginning I have not spoken in secret; from the time it happened, I was there.” And now the Lord GOD has sent me, 17 accompanied by His Spirit. Thus says the LORD your Redeemer, the Holy One of Israel: “I am the LORD your God, Your descendants would have been as countless as the sand, b and your offspring as numerous as its grains; 20 their name would never be cut off or eliminated from My presence.” Leave Babylon! Flee from the Chaldeans! Declare it with a shout of joy, proclaim it, let it go out to the ends of the earth, saying" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "–6) even if someone told you.’ ” a 42 43 As Paul and Barnabas were leaving the syna- gogue, the people urged them to continue this After the syna- message on the next Sabbath. gogue was dismissed, many of the Jews and devout converts to Judaism followed Paul and Barnabas, who spoke to them and urged them to 44 continue in the grace of God. 45 On the following Sabbath, nearly the whole city gathered to hear the word of the Lord. But when the Jews saw the crowds, they were filled with jealousy, and they blasphemously contra- 46 dicted what Paul was saying. Then Paul and Barnabas answered them boldly: “It was necessary to speak the word of God to you first. But since you reject it and do not consider yourselves worthy of eternal life, we now turn to the Gentiles. For this is what the Lord has commanded us: 47 ‘I have made you a light for the Gentiles, to bring salvation to the ends of the b 48 earth.’ ” district. So they shook the dust off their feet in And protest against them and went to Iconium. the disciples were filled with joy and with the Paul and Barnabas at Iconium Holy Spirit. 52 14 2 At Iconium, Paul and Barnabas went as usual into the Jewish synagogue, where they spoke so well that a great number of Jews But the unbelieving Jews and Greeks believed. 3 stirred up the Gentiles and poisoned their minds against the brothers. So Paul and Barnabas spent considerable time there, speaking boldly for the Lord, who affirmed the message of His grace by enabling them to perform" + }, + { + "verseNum": 6, + "text": "15 But when the apostles Barnabas and Paul found out about this, they tore their clothes and “Men, why rushed into the crowd, shouting, are you doing this? We too are only men, human like you. We are bringing you good news that you should turn from these worthless things to the living God, who made heaven and earth and sea In past generations, and everything in them. Yet He has He let all nations go their own way. 16 17 992 |" + }, + { + "verseNum": 8, + "text": "(see also LXX) Scrivener’s TR and GOC; many Greek sources Lev. 26:12; Jer. 32:38; Ezek. 37:27" + }, + { + "verseNum": 10, + "text": "See" + }, + { + "verseNum": 12, + "text": "15 and 16 Hebrew Hebrew ; also in verse 16 the day of Egypt f 13 By the hands of foreigners I will bring desolation upon the land and everything in it. I, the LORD, have spoken. 13 This is what the Lord GOD says: f I will destroy the idols and put an end to the images in Memphis. There will no longer be a prince in Egypt, 14 and I will instill fear in that land. 15 I will lay waste Pathros, set fire to Zoan, and execute judgment on Thebes. I will pour out My wrath on Pelusium, g h 16 the stronghold of Egypt, and cut off the crowds of Thebes. I will set fire to Egypt, Pelusium will writhe in anguish, Thebes will be split open, 17 and Memphis will face daily distress. i The young men of On and Pi-beseth 18 will fall by the sword, and those cities will go into captivity. The day will be darkened in Tahpanhes when I break the yoke of Egypt and her proud strength comes to an end. A cloud will cover her, 19 and her daughters will go into captivity. So I will execute judgment on Egypt, Pharaoh’s Power Broken and they will know that I am the LORD.” 20 21 In the eleventh year, on the seventh day of the first month, the word of the LORD came to me, “Son of man, I have broken the arm of saying, Pharaoh king of Egypt. See, it has not been bound up for healing, or splinted for strength to hold the 22 sword. Therefore this is what the Lord GOD says: Be- hold, I am against Pharaoh king of Egypt. I will break his arms, both the strong one and the one already broken, and will make the sword f" + }, + { + "verseNum": 25, + "text": "| 661 16 Behold, I have inscribed you on the palms of 17 My hands; f your walls are ever before Me. Your builders hasten back; your destroyers and wreckers depart 18 from you. Lift up your eyes and look around. They all gather together; they come to you. 19 As surely as I live,” declares the LORD, “you will wear them all as jewelry and put them on like a bride. For your ruined and desolate places and your ravaged land will now indeed be too small for your people, and those who devoured you will be far 20 away. Yet the children of your bereavement will say in your hearing, ‘This place is too small for us; make room for us to live here.’ 21 Then you will say in your heart, ‘Who has begotten these for me? I was bereaved and barren; I was exiled and rejected. So who has reared them? Look, I was left all alone, 22 so where did they come from?’ ” nor will scorching heat or sun beat down This is what the Lord GOD says: on them. For He who has compassion on them will 11 guide them and lead them beside springs of water. 12 13 I will turn all My mountains into roads, and My highways will be raised up. d Behold, they will come from far away, from the north and from the west, and from the land of Aswan. ” e Shout for joy, O heavens; rejoice, O earth; break forth in song, O mountains! For the LORD has comforted His people, and He will have compassion on His afflicted ones. But Zion said, “The LORD has forsaken me; the Lord has forgotten me!” 14 15 “Can a woman forget her nursing child, or" + }, + { + "verseNum": 26, + "text": "8 I will contend with those who contend with The One who vindicates Me is near. 26 you, and I will save your children. I will make your oppressors eat their own flesh; they will be drunk on their own blood, as with wine. Then all mankind will know that I, the LORD, Israel’s Sin am your Savior and your Redeemer, the Mighty One of Jacob.” 50 This is what the LORD says: Who will dare to contend with Me? Let us confront each other! 9 Who has a case against Me? Let him approach Me! Surely the Lord GOD helps Me. Who is there to condemn Me? 10 See, they will all wear out like a garment; the moths will devour them. Who among you fears the LORD and obeys the voice of His Servant? Who among you walks in darkness and has no light? “Where is your mother’s certificate 11 Let him trust in the name of the LORD; of divorce with which I sent her away? Or to which of My creditors did I sell you? Look, you were sold for your iniquities, 2 and for your transgressions your mother was sent away. Why was no one there when I arrived? Why did no one answer when I called? Is My hand too short to redeem you? Or do I lack the strength to deliver you? Behold, My rebuke dries up the sea; I turn the rivers into a desert; the fish rot for lack of water 3 and die of thirst. I clothe the heavens in black and make sackcloth their covering.” The Servant’s Obedience" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 4, + "text": "–11 ; crucified." + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 2, + "text": "| 663 Lift up your eyes to the heavens, and look at the earth below; to establish the heavens, to found the earth, God’s Fury Removed and to say to Zion, ‘You are My people.’ ” for the heavens will vanish like smoke, 17 the earth will wear out like a garment, and its people will die like gnats. But My salvation will last forever, and My righteousness will never fail. Listen to Me, you who know what is right, you people with My law in your hearts: Do not fear the scorn of men; 8 do not be broken by their insults. For the moth will devour them like a garment, and the worm will eat them like wool. But My righteousness will last forever, My salvation through all generations.” 7 9 Awake, awake, put on strength, O arm of the LORD. Wake up as in days past, as in generations of old. 10 Was it not You who cut Rahab to pieces, who pierced through the dragon? Was it not You who dried up the sea, the waters of the great deep, 11 who made a road in the depths of the sea for the redeemed to cross over? So the redeemed of the LORD will return 12 and enter Zion with singing, crowned with everlasting joy. Gladness and joy will overtake them, and sorrow and sighing will flee. “I, even I, am He who comforts you. Awake, awake! Rise up, O Jerusalem, you who have drunk from the hand of the LORD the cup of His fury; you who have drained the goblet to the 18 dregs— the cup that makes men stagger. Among all the sons she bore, 19 there is no one to guide her; among all the sons she brought up, there i" + }, + { + "verseNum": 3, + "text": "3 Remove the chains from your neck, O captive Daughter of Zion. For this is what the LORD says: “You were sold for nothing, and without money you will be redeemed.” 4 For this is what the Lord GOD says: “At first My people went down to Egypt to live, 5 then Assyria oppressed them without cause. And now what have I here? declares the LORD. For My people have been taken without a cause; those who rule them taunt, declares the LORD, b and My name is blasphemed continually 6 all day long. Therefore My people will know My name; therefore they will know on that day that I am He who speaks. 7 Here I am!” How beautiful on the mountains c are the feet of those who bring good news, who proclaim peace, who bring good tidings, 8 who proclaim salvation, who say to Zion, “Your God reigns!” Listen! Your watchmen lift up their voices, together they shout for joy. For every eye will see 9 when the LORD returns to Zion. Break forth in joy, sing together, O ruins of Jerusalem, 10 for the LORD has comforted His people; He has redeemed Jerusalem. The LORD has bared His holy arm in the sight of all the nations; all the ends of the earth will see the salvation of our God. d 11 Depart, depart, go out from there! Touch no unclean thing; for the LORD goes before you, The Servant Exalted" + }, + { + "verseNum": 5, + "text": "(see also LXX) Or 1010 |" + }, + { + "verseNum": 7, + "text": "" + }, + { + "verseNum": 11, + "text": "; see also" + }, + { + "verseNum": 13, + "text": "–15) the interests of others. 5 Let this mind be in you which was also in Christ 6 Jesus: Who, existing in the form of God, a 7 did not consider equality with God something to be grasped, but emptied Himself, 8 taking the form of a servant, being made in human likeness. And being found in appearance as a man, He humbled Himself 9 and became obedient to death— even death on a cross. Therefore God exalted Him to the highest 10 place and gave Him the name above all names, that at the name of Jesus every knee should bow, 11 in heaven and on earth and under the earth, and every tongue confess that Jesus Christ is Lord, Lights in the World" + }, + { + "verseNum": 15, + "text": "(see also LXX) in Asia g 5 TR and Some translators 12 20" + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "" + }, + { + "verseNum": 4, + "text": "That is, the Sea of Galilee; Greek to the other side manuscripts Literally NA, BYZ, and TR 12 13 a On hearing this, Jesus said, “It is not the healthy But go and who need a doctor, but the sick. learn what this means: ‘I desire mercy, not sacri- For I have not come to call the righteous, fice.’ Questions about Fasting ” but sinners." + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 6, + "text": "4" + }, + { + "verseNum": 7, + "text": "–8 (see also LXX) Kandakē Greek c 36 d 5 e 8 “It 19 2 Literally or TR includes 986 |" + }, + { + "verseNum": 9, + "text": "–12 ;" + }, + { + "verseNum": 12, + "text": "and" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "c 27 c Or ; similarly in verse 9 See" + }, + { + "verseNum": 9, + "text": "| 665 He was oppressed and afflicted, yet He did not open His mouth. He was led like a lamb to the slaughter, and as a sheep before her shearers is 8 silent, so He did not open His mouth. By oppression and judgment He was taken away, and who can recount His descendants? a For He was cut off from the land of the living; He was stricken for the transgression of My people. A Grave Assigned" + }, + { + "verseNum": 10, + "text": "10 Though the mountains may be removed I will make with you an everlasting c and the hills may be shaken, 4 covenant— My loving devotion will not depart from you, and My covenant of peace will not be My loving devotion promised to David. Behold, I have made him a witness to the broken,” says the LORD, who has compassion on you. 11 5 nations, a leader and commander of the peoples. Surely you will summon a nation you do not “O afflicted city, lashed by storms, without solace, a 12 surely I will set your stones in antimony and lay your foundations with sapphires. 13 I will make your pinnacles of rubies, your gates of sparkling jewels, and all your walls of precious stones. Then all your sons will be taught by the b 14 LORD, and great will be their prosperity. In righteousness you will be established, far from oppression, for you will have no fear. Terror will be far removed, 15 for it will not come near you. 16 If anyone attacks you, it is not from Me; whoever assails you will fall before you. Behold, I have created the craftsman who fans the coals into flame and forges a weapon fit for its task; 17 and I have created the destroyer to wreak havoc. No weapon formed against you shall prosper, and you will refute every tongue that accuses you. This is the heritage of the servants of the LORD, and their vindication is from Me,” Invitation to the Needy declares the LORD. 55 “Come, all you who are thirsty, come to the waters; and you without money, come, buy, and eat! Come, buy wine a" + }, + { + "verseNum": 13, + "text": "b 69 gathering pilgrimage to Jerusalem; also translated as (see" + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 3, + "text": "" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 7, + "text": "" + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 8, + "text": "| 667 56 This is what the LORD says: “Maintain justice and do what is right, 2 for My salvation is coming soon, and My righteousness will be revealed. Blessed is the man who does this, and the son of man who holds it fast, who keeps the Sabbath without profaning it and keeps his hand from doing any evil.” 3 Let no foreigner who has joined himself to the LORD say, “The LORD will utterly exclude me from His people.” 4 And let the eunuch not say, “I am but a dry tree.” For this is what the LORD says: “To the eunuchs who keep My Sabbaths, 5 who choose what pleases Me and hold fast to My covenant— I will give them, in My house and within My walls, a memorial and a name better than that of sons and daughters. I will give them an everlasting name 6 that will not be cut off. And the foreigners who join themselves to the LORD to minister to Him, to love the name of the LORD, and to be His servants— all who keep the Sabbath without profaning it 7 and who hold fast to My covenant— I will bring them to My holy mountain and make them joyful in My house of prayer. Their burnt offerings and sacrifices will be accepted on My altar, a for My house will be called a house of prayer 8 for all the nations.” Thus declares the Lord GOD, who gathers the dispersed of Israel: “I will gather to them still others Israel’s Sinful Leaders besides those already gathered.” 9 Israel’s watchmen are blind, they are all oblivious; they are all mute dogs, they cannot bark; they are dreamers lying around, 11 lovi" + }, + { + "verseNum": 9, + "text": "Forsaking Me, you uncovered your bed; you climbed up and opened it wide. And you have made a pact with those whose 9 bed you have loved; a 18 yet he kept turning back to the desires of his heart. I have seen his ways, but I will heal him; you have gazed upon their nakedness. 19 I will guide him and restore comfort You went to Molech with oil b and multiplied your perfumes. You have sent your envoys 10 a great distance; you have descended even to Sheol itself. You are wearied by your many journeys, but you did not say, “There is no hope!” 11 You found renewal of your strength; therefore you did not grow weak. to him and his mourners, bringing praise to their lips. Peace, peace to those far and near,” says the 20 LORD, “and I will heal them.” But the wicked are like the storm-tossed sea, 21 for it cannot be still, and its waves churn up mire and muck. Whom have you dreaded and feared, so that you lied and failed to remember Me or take this to heart? Is it not because I have long been silent 12 that you do not fear Me? I will expose your righteousness and your 13 works, and they will not profit you. When you cry out, let your companies of idols deliver you! Yet the wind will carry off all of them, a breath will take them away. But he who seeks refuge in Me will inherit the land Healing for the Repentant and possess My holy mountain.” 14 And it will be said, “Build it up, build it up, prepare the way, 15 take every obstacle out of the way of My people.” “There is no peace,” says" + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "–17 ;" + }, + { + "verseNum": 7, + "text": "–8 (see also LXX)" + }, + { + "verseNum": 13, + "text": "| 669 and not to turn away 8 from your own flesh and blood? For your hands are stained with blood, and your fingers with iniquity; Then your light will break forth like the dawn, and your healing will come quickly. Your righteousness will go before you, 9 and the glory of the LORD will be your rear guard. Then you will call, and the LORD will answer; you will cry out, and He will say, ‘Here I am.’ If you remove the yoke from your midst, 10 the pointing of the finger and malicious talk, and if you give yourself to the hungry and satisfy the afflicted soul, 11 then your light will go forth in the darkness, and your night will be like noonday. The LORD will always guide you; He will satisfy you in a sun-scorched land and strengthen your frame. 12 You will be like a well-watered garden, like a spring whose waters never fail. Your people will rebuild the ancient ruins; you will restore the age-old foundations; 13 you will be called Repairer of the Breach, Restorer of the Streets of Dwelling. If you turn your foot from breaking the Sabbath, from doing as you please on My holy day, if you call the Sabbath a delight, and the LORD’s holy day honorable, if you honor it by not going your own way 14 or seeking your own pleasure or speaking idle words, then you will delight yourself in the LORD, and I will make you ride on the heights of the land and feed you with the heritage of your For the mouth of the LORD has spoken. father Jacob.” Sin Separates Us from God" + }, + { + "verseNum": 14, + "text": "speaking oppression and revolt, 14 conceiving and uttering lies from the but the LORD will rise upon you, 3 and His glory will appear over you. heart. So justice is turned away, and righteousness stands at a distance. For truth has stumbled in the public square, 15 and honesty cannot enter. Truth is missing, and whoever turns from evil becomes a prey. 16 The LORD looked and was displeased that there was no justice. He saw that there was no man; Nations will come to your light, 4 and kings to the brightness of your dawn. Lift up your eyes and look around: They all gather and come to you; your sons will come from afar, 5 and your daughters will be carried on the arm. Then you will look and be radiant, and your heart will tremble and swell with joy, because the riches of the sea will be brought He was amazed that there was no one to to you, intercede. 6 and the wealth of the nations will come to 17 So His own arm brought salvation, you. and His own righteousness sustained Him. He put on righteousness like a breastplate, and the helmet of salvation on His head; Caravans of camels will cover your land, young camels of Midian and Ephah, and all from Sheba will come, He put on garments of vengeance The Covenant of the Redeemer and wrapped Himself in a cloak of zeal. 18 So He will repay according to their deeds: 19 fury to His enemies, retribution to His foes, and recompense to the islands. b So shall they fear the name of the LORD where the sun sets, and His glory where it rises. c" + }, + { + "verseNum": 20, + "text": "–21; see also LXX 1018 |" + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "–11 ;" + }, + { + "verseNum": 9, + "text": "| 671 61 The Spirit of the Lord GOD is on Me, because the LORD has anointed Me to preach good news to the poor. He has sent Me to bind up the brokenhearted, 2 to proclaim liberty to the captives and freedom to the prisoners, d c 3 to proclaim the year of the LORD’s favor and the day of our God’s vengeance, to comfort all who mourn, to console the mourners in Zion— to give them a crown of beauty for ashes, the oil of joy for mourning, and a garment of praise for a spirit of despair. So they will be called oaks of righteousness, the planting of the LORD, that He may be 4 glorified. They will rebuild the ancient ruins; they will restore the places long devastated; they will renew the ruined cities, 5 the desolations of many generations. Strangers will stand and feed your flocks, 6 and foreigners will be your plowmen and vinedressers. But you will be called the priests of the LORD; they will speak of you as ministers of our God; you will feed on the wealth of nations, 7 and you will boast in their riches. Instead of shame, My people will have a double portion, and instead of humiliation, they will rejoice in their share; and so they will inherit a double portion 8 in their land, and everlasting joy will be theirs. For I, the LORD, love justice; I hate robbery and iniquity; in My faithfulness I will give them their recompense 9 and make an everlasting covenant with them. Their descendants will be known among the nations, and their offspring among the peoples. All who see them will" + }, + { + "verseNum": 10, + "text": "10 I will rejoice greatly in the LORD, my soul will exult in my God; for He has clothed me with garments of salvation and wrapped me in a robe of righteousness, 11 as a bridegroom wears a priestly headdress, as a bride adorns herself with her jewels. For as the earth brings forth its growth, and as a garden enables seed to spring up, so the Lord GOD will cause righteousness and praise Zion’s Salvation and New Name to spring up before all the nations. 62 For Zion’s sake I will not keep silent, and for Jerusalem’s sake I will not keep still, until her righteousness shines like a bright 2 light, her salvation like a blazing torch. Nations will see your righteousness, and all kings your glory. You will be called by a new name 3 that the mouth of the LORD will bestow. You will be a crown of glory in the hand 4 of the LORD, a a royal diadem in the palm of your God. b No longer will you be called Forsaken, c nor your land named Desolate; but you will be called Hephzibah, d and your land Beulah; 5 for the LORD will take delight in you, and your land will be His bride. For as a young man marries a young woman, so your sons will marry you; and as a bridegroom rejoices over his bride, 6 so your God will rejoice over you. On your walls, O Jerusalem, I have posted watchmen; they will never be silent day or night. You who call on the LORD 7 shall take no rest for yourselves, nor give Him any rest 8 until He establishes Jerusalem and makes her the praise of the earth. The LORD has sworn by" + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 15, + "text": "–19) travel to a land they do not know.’ ” 19 Have You rejected Judah completely? Do You despise Zion? Why have You stricken us so that we are beyond healing? We hoped for peace, but no good has come, and for the time of healing, 20 but there was only terror. We acknowledge our wickedness, O LORD, 21 the guilt of our fathers; indeed, we have sinned against You. For the sake of Your name do not despise us; do not disgrace Your glorious throne. Remember Your covenant with us; 22 do not break it. Can the worthless idols of the nations bring rain? Do the skies alone send showers? Is this not by You, O LORD our God? Judgment to Continue So we put our hope in You, for You have done all these things. 15 Then the LORD said to me: “Even if Mo- ses and Samuel should stand before Me, My heart would not go out to this people. Send If they them from My presence, and let them go! ask you, ‘Where shall we go?’ you are to tell them that this is what the LORD says: 2 694 |" + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 4, + "text": "3 3 2 Brothers, I could not address you as spir- itual, but as worldly—as infants in Christ. I gave you milk, not solid food, for you were not yet ready for solid food. In fact, you are still not for you are still worldly. For since there ready, is jealousy and dissension among you, are you 4 not worldly? Are you not walking in the way of For when one of you says, “I follow Paul,” man? and another, “I follow Apollos,” are you not mere 5 men? 6 7 What then is Apollos? And what is Paul? They are servants through whom you believed, as the Lord has assigned to each his role. I planted the seed and Apollos watered it, but God made it So neither he who plants nor he who wa- grow. 8 ters is anything, but only God, who makes things He who plants and he who waters are one grow. in purpose, and each will be rewarded accord- ing to his own labor. For we are God’s fellow Christ Our Foundation" + }, + { + "verseNum": 7, + "text": "| 673 7 I will make known the LORD’s loving devotion and His praiseworthy acts, because of all that the LORD has done for 17 us— Yet You are our Father, though Abraham does not know us and Israel does not acknowledge us. You, O LORD, are our Father; our Redeemer from Everlasting is Your name. the many good things for the house of Why, O LORD, do You make us stray from Israel Your ways according to His great compassion and and harden our hearts from fearing You? 8 loving devotion. For He said, “They are surely My people, 9 sons who will not be disloyal.” So He became their Savior. a In all their distress, He too was afflicted, saved and the Angel of His Presence them. In His love and compassion He redeemed them; 10 He lifted them up and carried them all the days of old. But they rebelled and grieved His Holy Spirit. 11 So He turned and became their enemy, and He Himself fought against them. Then His people remembered the days of old, the days of Moses. Where is He who brought them through the sea with the shepherds of His flock? Where is the One who set 12 His Holy Spirit among them, who sent His glorious arm to lead them by the right hand of Moses, who divided the waters before them 13 14 who led them through the depths like a horse in the wilderness, so that they did not stumble? Like cattle going down to the valley, the Spirit of the LORD gave them rest. You led Your people this way A Prayer for Mercy" + }, + { + "verseNum": 8, + "text": "For You have hidden Your face from us both for your iniquities a 7 8 and delivered us into the hand of our iniquity. and for those of your fathers,” says the LORD. But now, O LORD, You are our Father; 9 we are the clay, and You are the potter; we are all the work of Your hand. Do not be angry, O LORD, beyond measure; do not remember our iniquity forever. 8 “Because they burned incense on the mountains and scorned Me on the hills, I will measure into their laps full payment for their former deeds.” Oh, look upon us, we pray; we are all Your people! 10 Your holy cities have become a wilderness. 11 Zion has become a wasteland and Jerusalem a desolation. Our holy and beautiful temple, where our fathers praised You, 12 has been burned with fire, and all that was dear to us lies in ruins. After all this, O LORD, will You restrain Yourself? Will You keep silent Judgments and Promises" + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "–16) 10 2 Brothers, my heart’s desire and prayer to God for the Israelites is for their salva- For I testify about them that they are zeal- tion. 3 ous for God, but not on the basis of knowledge. Because they were ignorant of God’s righteous- ness and sought to establish their own, they did not submit to God’s righteousness. For Christ is the end of the law, to bring righteousness to eve- 5 ryone who believes. 4 n 6 For concerning the righteousness that is by the law, Moses writes: “The man who does these things will live by them.” But the righteous- ness that is by faith says: “Do not say in your i 26" + }, + { + "verseNum": 2, + "text": "(see also LXX) ;" + }, + { + "verseNum": 17, + "text": "and" + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "–2 984 |" + }, + { + "verseNum": 7, + "text": "| 675 b 16 but to His servants He will give another name. Whoever invokes a blessing in the land will do so by the God of truth, and whoever takes an oath in the land will swear by the God of truth. For the former troubles will be forgotten A New Heaven and a New Earth" + }, + { + "verseNum": 8, + "text": "8 17 Who has heard of such as this? Who has seen such things? Can a country be born in a day or a nation be delivered in an instant? Yet as soon as Zion was in labor, 9 she gave birth to her children. Shall I bring a baby to the point of birth and not deliver it?” says the LORD. “Or will I who deliver close the womb?” 10 says your God. Be glad for Jerusalem and rejoice over her, all who love her. Rejoice greatly with her, 11 all who mourn over her, so that you may nurse and be satisfied at her comforting breasts; you may drink deeply and delight yourselves 12 in her glorious abundance. For this is what the LORD says: “I will extend peace to her like a river, and the wealth of nations like a flowing stream; 13 you will nurse and be carried on her arm, and bounced upon her knees. As a mother comforts her son, 14 so will I comfort you, and you will be consoled over Jerusalem.” When you see, you will rejoice, and you will flourish like grass; then the hand of the LORD will be revealed to His servants, but His wrath will be shown to His Final Judgments against the Wicked 15 enemies. For behold, the LORD will come with fire— His chariots are like a whirlwind— 16 to execute His anger with fury and His rebuke with flames of fire. For by fire and by His sword, the LORD will execute judgment on all flesh, “Those who consecrate and purify themselves to enter the groves—to follow one in the center of those who eat the flesh of swine and vermin and rats—will perish together,” declares the" + }, + { + "verseNum": 22, + "text": "and" + }, + { + "verseNum": 24, + "text": ". g 6 verse 48 and" + } + ] + } + ] + }, + { + "name": "Jeremiah", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 3, + "text": "3 Israel was holy to the LORD, the firstfruits of His harvest. All who devoured her were found guilty; disaster came upon them,’ declares the LORD. ” 4 13 “For My people have committed two evils: They have forsaken Me, the fountain of living water, and they have dug their own cisterns— The Consequence of Israel’s Sin broken cisterns that cannot hold water. 5 14 Hear the word of the LORD, O house of Jacob, This and all you families of the house of Israel. is what the LORD says: “What fault did your fathers find in Me that they strayed so far from Me? They followed worthless idols, 6 and became worthless themselves. They did not ask, ‘Where is the LORD who brought us up from the land of Egypt, who led us through the wilderness, through a land of deserts and pits, a land of drought and darkness, 7 a land where no one travels and no one lives?’ I brought you into a fertile land to eat its fruit and bounty, but you came and defiled My land 8 and made My inheritance detestable. The priests did not ask, ‘Where is the LORD?’ The experts in the law no longer knew Me, and the leaders rebelled against Me. The prophets prophesied by Baal and followed useless idols. 9 Therefore, I will contend with you again, declares the LORD, and I will bring a case 10 a against your children’s children. Cross over to the coasts of Cyprus and take a look; send to Kedar and consider carefully; see if there has ever been anything 11 like this: Has a nation ever changed its gods? (Yet they are not gods at" + }, + { + "verseNum": 23, + "text": "–37) d 10 After that whole generation had also been gathered to their fathers, another generation rose up who did not know the LORD or the works And the Israelites that He had done for Israel. did evil in the sight of the LORD and served the 12 Baals. 11 Thus they forsook the LORD, the God of their fathers, who had brought them out of the land of Egypt, and they followed after various gods of the peoples around them. They bowed 13 down to them and provoked the LORD to anger, for they forsook Him and served Baal and the 14 Ashtoreths. e Then the anger of the LORD burned against Is- rael, and He delivered them into the hands of those who plundered them. He sold them into the hands of their enemies all around, whom they were no longer able to resist. Wherever Israel marched out, the hand of the LORD was against them to bring calamity, just as He had Judges Raised Up sworn to them. So they were greatly distressed. 16 15 f Then the LORD raised up judges, who saved them from the hands of those who plundered them. ; also in verse 4 of plunderers . c 5 Bochim weepers means e 14 Or or ; see" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 5, + "text": "| 679 32 Does a maiden forget her jewelry or a bride her wedding sash? Yet My people have forgotten Me for days without number. 33 How skillfully you pursue love! 34 Even the most immoral of women could learn from your ways. Moreover, your skirts are stained with the blood of the innocent poor, though you did not find them breaking in. 35 But in spite of all these things you say, ‘I am innocent. Surely His anger will turn from me.’ Behold, I will judge you, 36 because you say, ‘I have not sinned.’ How impulsive you are, 37 constantly changing your ways! You will be disappointed by Egypt just as you were by Assyria. Moreover, you will leave that place with your hands on your head, The Wages of the Harlot for the LORD has rejected those you trust; you will not prosper by their help.” 3 “If a man divorces his wife and she leaves him to marry another, can he ever return to her? Would not such a land be completely defiled? But you have played the harlot with many lovers— and you would return to Me?” declares the LORD. 2 “Lift up your eyes to the barren heights and see. Is there any place where you have not been violated? You sat beside the highways waiting for your lovers, like a nomad in the desert. You have defiled the land 3 with your prostitution and wickedness. Therefore the showers have been withheld, You people of this generation, consider the and no spring rains have fallen. word of the LORD: “Have I been a wilderness to Israel or a land of dense darkness? Why do My people" + }, + { + "verseNum": 6, + "text": "This you have spoken, Judah Follows Israel’s Example but you keep doing all the evil you can.” 6 Now in the days of King Josiah, the LORD said to me, “Have you seen what faithless Israel has done? She has gone up on every high hill and un- 7 der every green tree to prostitute herself there. I thought that after she had done all these things, she would return to Me. But she did not 8 return, and her unfaithful sister Judah saw it. a She saw that because faithless Israel had com- mitted adultery, I gave her a certificate of divorce and sent her away. Yet that unfaithful sister Ju- 9 dah had no fear and prostituted herself as well. Indifferent to her own infidelity, Israel had de- filed the land and committed adultery with Yet in spite of all this, her un- stones and trees. faithful sister Judah did not return to Me with all her heart, but only in pretense,” declares the A Call to Repentance (Hos. 14:1–3 ; Zech. 1:1–6) LORD. 11 10 12 And the LORD said to me, “Faithless Israel has shown herself more righteous than unfaithful Go, proclaim this message toward the Judah. north: ‘Return, O faithless Israel,’ declares the LORD. ‘I will no longer look on you with anger, 13 for I am merciful,’ declares the LORD. ‘I will not be angry forever. Only acknowledge your guilt, that you have rebelled against the LORD your God. You have scattered your favors to foreign gods under every green tree and have not obeyed My voice,’ declares the LORD. ” 14 “Return, O faithless children,” declares the" + }, + { + "verseNum": 11, + "text": "–25 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 681 2 12 and if you can swear, ‘As surely as the LORD lives,’ a wind too strong for that comes from Me. sift; 13 Now I also pronounce judgments against them.” in truth, in justice, and in righteousness, then the nations will be blessed by Him, and in Him they will glory.” 3 For this is what the LORD says to the men of Judah and Jerusalem: “Break up your unplowed ground, 4 and do not sow among the thorns. Circumcise yourselves to the LORD, and remove the foreskins of your hearts, O men of Judah and people of Jerusalem. Otherwise, My wrath will break out like fire Disaster from the North and burn with no one to extinguish it, because of your evil deeds.” 5 Announce in Judah, proclaim in Jerusalem, and say: Behold, he advances like the clouds, his chariots like the whirlwind. His horses are swifter than eagles. Woe to us, for we are ruined! 14 Wash the evil from your heart, O Jerusalem, so that you may be saved. 15 How long will you harbor wicked thoughts within you? For a voice resounds from Dan, 16 proclaiming disaster from the hills of Ephraim. Warn the nations now! Proclaim to Jerusalem: “A besieging army comes from a distant land; they raise their voices against the cities of 17 Judah. They surround her like men guarding a field, “Blow the ram’s horn throughout the land. 18 because she has rebelled against Me,” Cry aloud and say, ‘Assemble yourselves 6 and let us flee to the fortified cities.’ Raise a signal flag toward Zion. Seek refuge! Do not delay! For I am bringing d" + }, + { + "verseNum": 25, + "text": "25 26 I looked, and no man was left; all the birds of the air had fled. I looked, and the fruitful land was a desert. All its cities were torn down before the LORD, 27 before His fierce anger. For this is what the LORD says: 28 “The whole land will be desolate, but I will not finish its destruction. Therefore the earth will mourn They have made their faces harder than stone 4 and refused to repent. Then I said, “They are only the poor; they have played the fool, for they do not know the way of the LORD, 5 the justice of their God. I will go to the powerful and speak to them. Surely they know the way of the LORD, the justice of their God.” and the heavens above will grow dark. But they too, with one accord, had broken the I have spoken, I have planned, 29 and I will not relent or turn back.” Every city flees at the sound of the horseman and archer. They enter the thickets and climb among the rocks. 30 Every city is abandoned; no inhabitant is left. And you, O devastated one, what will you do, though you dress yourself in scarlet, though you adorn yourself with gold jewelry, though you enlarge your eyes with paint? You adorn yourself in vain; your lovers 31 despise you; they want to take your life. For I hear a cry like a woman in labor, a cry of anguish like one bearing her first child— the cry of the Daughter of Zion gasping for breath, stretching out her hands to say, “Woe is me, No One Is Just for my soul faints before the murderers!” 5 “Go up and down the streets of Jerusa" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 21, + "text": ", and" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 5, + "text": "| 683 25 who keeps for us the appointed weeks of harvest.’ 26 Your iniquities have diverted these from you; your sins have deprived you of My bounty. For among My people are wicked men; they watch like fowlers lying in wait; they set a trap to catch men. 27 Like cages full of birds, so their houses are full of deceit. Therefore they have become powerful and rich. 28 They have grown fat and sleek, and have excelled in the deeds of the wicked. They have not taken up the cause of the fatherless, that they might prosper; nor have they defended 29 the rights of the needy. Should I not punish them for these things?” declares the LORD. “Should I not avenge Myself on such a nation as this? 30 31 A horrible and shocking thing has happened in the land. The prophets prophesy falsely, and the priests rule by their own authority. My people love it so, Jerusalem’s Final Warning but what will you do in the end? 6 “Run for cover, O sons of Benjamin; flee from Jerusalem! Sound the ram’s horn in Tekoa; send up a signal over Beth-haccherem, for disaster looms from the north, 2 even great destruction. a 3 Though she is beautiful and delicate, I will destroy the Daughter of Zion. Shepherds and their flocks will come against her; they will pitch their tents all around her, 4 each tending his own portion: ‘Prepare for battle against her; rise up, let us attack at noon. Woe to us, for the daylight is fading; the evening shadows grow long. 5 who gives the rains, both autumn and spring, a 2 To a lovel" + }, + { + "verseNum": 6, + "text": "6 For this is what the LORD of Hosts says: “Cut down the trees and raise a siege ramp against Jerusalem. This city must be punished; 7 there is nothing but oppression in her midst. As a well gushes its water, so she pours out her evil. Violence and destruction resound in her; 8 sickness and wounds are ever before Me. Be forewarned, O Jerusalem, or I will turn away from you; 9 I will make you a desolation, a land without inhabitant.” This is what the LORD of Hosts says: “Glean the remnant of Israel as thoroughly as a vine. Pass your hand once more like a grape 10 gatherer over the branches.” To whom can I give this warning? a Who will listen to me? Look, their ears are closed, so they cannot hear. See, the word of the LORD has become 11 offensive to them; they find no pleasure in it. But I am full of the LORD’s wrath; I am tired of holding it back. “Pour it out on the children in the street, and on the young men gathered together. For both husband and wife will be captured, 12 the old and the very old alike. No, they have no shame at all; they do not even know how to blush. So they will fall among the fallen; when I punish them, they will collapse,” says the LORD. 16 This is what the LORD says: “Stand at the crossroads and look. Ask for the ancient paths: ‘Where is the good way?’ Then walk in it, and you will find rest for 17 your souls. But they said, ‘We will not walk in it!’ I appointed watchmen over you and said, ‘Listen for the sound of the ram’s horn.’ But they answered," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 11, + "text": "884 |" + }, + { + "verseNum": 24, + "text": "| 685 26 Do not go out to the fields; do not walk the road. For the enemy has a sword; terror is on every side. O daughter of my people, dress yourselves in sackcloth and roll in ashes. Mourn with bitter wailing, as you would for an only son, 27 for suddenly the destroyer will come upon us. a “I have appointed you to examine My people 28 like ore, so you may know and try their ways. All are hardened rebels, walking around as slanderers. 29 They are bronze and iron; all of them are corrupt. The bellows blow fiercely, blasting away the lead with fire. 30 The refining proceeds in vain, for the wicked are not purged. They are called rejected silver, Jeremiah’s Message at the Temple Gate because the LORD has rejected them.” 7 2 3 This is the word that came to Jeremiah from “Stand in the gate of the the LORD, saying, house of the LORD and proclaim this message: Hear the word of the LORD, all you people of Ju- dah who enter through these gates to worship Thus says the LORD of Hosts, the God the LORD. of Israel: Correct your ways and deeds, and I will Do not trust in decep- let you live in this place. tive words, saying: 4 ‘This is the temple of the LORD, the temple of the LORD, the temple of the LORD.’ 5 6 For if you really correct your ways and deeds, if if you no you act justly toward one another, longer oppress the foreigner and the fatherless and the widow, and if you no longer shed inno- cent blood in this place or follow other gods to then I will let you live in this your own" + }, + { + "verseNum": 25, + "text": "25 From the day your fathers came out forward. a of the land of Egypt until this day, I have sent you 26 all My servants the prophets again and again. Yet they would not listen to Me or incline their ear, but they stiffened their necks and did more 27 evil than their fathers. 28 When you tell them all these things, they will not listen to you. When you call to them, they will not answer. Therefore you must say to them, ‘This is the nation that would not listen to the voice of the LORD their God and would not receive correction. Truth has perished; it has dis- appeared from their lips. Cut off your hair and throw it away. Raise up a lamentation on the barren heights, for the LORD has rejected and The Valley of Slaughter forsaken the generation of His wrath.’ 30 29 31 For the people of Judah have done evil in My sight, declares the LORD. They have set up their abominations in the house that bears My Name, They have built the high and so have defiled it. places of Topheth in the Valley of Ben-hinnom so they could burn their sons and daughters in the fire—something I never commanded, nor did it 32 even enter My mind. So behold, the days are coming, declares the LORD, when this place will no longer be called Topheth and the Valley of Ben-hinnom, but the Valley of Slaughter. For they will bury the 33 dead in Topheth until there is no more room. The corpses of this people will become food for the birds of the air and the beasts of the earth, 34 and there will be no one to scare them" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 10, + "text": "| 687 Whatever I have given them will be lost The People Respond to them.” 14 9 Oh, that my head were a spring of water, and my eyes a fountain of tears! Why are we just sitting here? Gather together, I would weep day and night 2 over the slain daughter of my people. let us flee to the fortified cities and perish If only I had a traveler’s lodge in the there, for the LORD our God has doomed us. He has given us poisoned water to drink, 15 because we have sinned against the LORD. We hoped for peace, but no good has come, for a time of healing, 16 but there was only terror. The snorting of enemy horses is heard from Dan. At the sound of the neighing of mighty steeds, the whole land quakes. They come to devour the land and everything 17 in it, the city and all who dwell in it. “For behold, I will send snakes among you, wilderness, I would abandon my people and depart from them, for they are all adulterers, 3 a crowd of faithless people. “They bend their tongues like bows; lies prevail over truth in the land. For they proceed from evil to evil, and they do not take Me into account,” declares the LORD. 4 “Let everyone guard against his neighbor; do not trust any brother, for every brother deals craftily, 5 and every friend spreads slander. Each one betrays his friend; no one tells the truth. They have taught their tongues to lie; 6 they wear themselves out committing b vipers that cannot be charmed, and they will bite you,” Jeremiah Weeps for His People declares the LORD. 18 a 7 in" + }, + { + "verseNum": 11, + "text": "21 for they have been scorched so no one passes For death has climbed in through our through, and the lowing of cattle is not heard. Both the birds of the air and the beasts have 11 fled; they have gone away. a “And I will make Jerusalem a heap of rubble, a haunt for jackals; and I will make the cities of Judah a 12 desolation, without inhabitant.” Who is the man wise enough to understand this? To whom has the mouth of the LORD spoken, that he may explain it? Why is the land destroyed and scorched like a desert, so no one 13 can pass through it? And the LORD answered, “It is because they have forsaken My law, which I set before them; 14 they have not walked in it or obeyed My voice. Instead, they have followed the stubbornness of their hearts and gone after the Baals, as their 15 fathers taught them.” 16 Therefore this is what the LORD of Hosts, the God of Israel, says: “Behold, I will feed this people wormwood and give them poisoned water to I will scatter them among the nations drink. that neither they nor their fathers have known, and I will send a sword after them until I have 17 finished them off.” This is what the LORD of Hosts says: 18 “Take note, and summon the wailing women; send for the most skillful among them. Let them come quickly and take up a lament over us, that our eyes may overflow with tears, 19 and our eyelids may gush with water. For the sound of wailing is heard from Zion: ‘How devastated we are! How great is our shame! For we have abandoned the land 20" + }, + { + "verseNum": 24, + "text": "Paul’s Message by the Spirit’s Power God’s Fellow Workers" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 25, + "text": "| 689 16 Do not fear them, for they can do no harm, 6 and neither can they do any good.” The Portion of Jacob is not like these, for He is the Maker of all things, There is none like You, O LORD. 7 You are great, and Your name is mighty in power. Who would not fear You, O King of nations? This is Your due. For among all the wise men of the nations, 8 and in all their kingdoms, there is none like You. But they are altogether senseless and foolish, instructed by worthless idols made of 9 wood! Hammered silver is brought from Tarshish, and gold from Uphaz— the work of a craftsman from the hands of a goldsmith. Their clothes are blue and purple, 10 all fashioned by skilled workers. But the LORD is the true God; He is the living God and eternal King. The earth quakes at His wrath, 11 and the nations cannot endure His indignation. Thus you are to tell them: “These gods, who have made neither the heavens nor the earth, will perish from this earth and from under these 12 heavens.” a The LORD made the earth by His power; He established the world by His wisdom 13 and stretched out the heavens by His understanding. When He thunders, the waters in the heavens roar; He causes the clouds to rise from the ends of the earth. He generates the lightning with the rain and brings forth the wind from His 14 storehouses. Every man is senseless and devoid of knowledge; every goldsmith is put to shame by his idols. 15 For his molten images are a fraud, and there is no breath in them. and Israel is t" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The Broken Covenant 11 2 3 4 This is the word that came to Jeremiah from the LORD: “Listen to the words of this covenant and tell them to the men of Judah You must tell and the residents of Jerusalem. them that this is what the LORD, the God of Israel, says: Cursed is the man who does not obey the which I commanded words of this covenant, your forefathers when I brought them out of the land of Egypt, out of the iron furnace, saying, ‘Obey Me, and do everything I command you, and 5 you will be My people, and I will be your God.’ This was in order to establish the oath I swore to your forefathers, to give them a land flowing with milk and honey, as it is to this day.” 6 “Amen, LORD,” I answered. a 7 Then the LORD said to me, “Proclaim all these words in the cities of Judah and in the streets of Jerusalem, saying: Hear the words of this cove- For from the time I nant and carry them out. brought your fathers out of the land of Egypt un- til today, I strongly warned them again and Yet they would again, not obey or incline their ears, but each one fol- lowed the stubbornness of his evil heart. So I brought on them all the curses of this covenant I had commanded them to follow but they did not 9 keep.” saying, ‘Obey My voice.’ 8 10 And the LORD told me, “There is a conspiracy among the men of Judah and the residents of Je- They have returned to the sins of rusalem. their forefathers who refused to obey My words. They have followed other gods to serve them. The house of the house of" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 7, + "text": "| 691 You are ever on their lips, 3 but far from their hearts. But You know me, O LORD; You see me and test my heart toward You. Drag away the wicked like sheep to the 4 slaughter and set them apart for the day of carnage. How long will the land mourn and the grass of every field be withered? Because of the evil of its residents, the animals and birds have been swept away, for the people have said, God’s Answer to Jeremiah “He cannot see what our end will be.” 5 “If you have raced with men on foot and they have worn you out, how can you compete with horses? If you stumble in a peaceful land, 6 how will you do in the thickets of the Jordan? Even your brothers— your own father’s household— even they have betrayed you; even they have cried aloud against you. Do not trust them, 7 though they speak well of you. I have forsaken My house; I have abandoned My inheritance. I have given the beloved of My soul 8 into the hands of her enemies. My inheritance has become to Me like a lion in the forest. She has roared against Me; 9 therefore I hate her. Is not My inheritance to Me b like a speckled bird of prey with other birds of prey circling against her? 10 Go, gather all the beasts of the field; bring them to devour her. Many shepherds have destroyed My vineyard; they have trampled My plot of ground. 11 They have turned My pleasant field into a desolate wasteland. They have made it a desolation; their kidneys b 9 desolate before Me, it mourns. a 2 Over all the barren heights in the wil" + }, + { + "verseNum": 8, + "text": "8 9 19 10 Then the word of the LORD came to me: “This is what the LORD says: In the same way I will ruin the pride of Judah and the great pride of Jerusa- These evil people, who refuse to listen to lem. My words, who follow the stubbornness of their own hearts, and who go after other gods to serve and worship them, they will be like this loin- 11 cloth—of no use at all. For just as a loincloth clings to a man’s waist, so I have made the whole house of Israel and the whole house of Judah cling to Me, declares the LORD, so that they might be My people for My renown and praise and glory. But they did not The Wineskins listen. 12 Therefore you are to tell them that this is what the LORD, the God of Israel, says: ‘Every wineskin shall be filled with wine.’ And when they reply, ‘Don’t we surely know that 13 every wineskin should be filled with wine?’ then you are to tell them that this is what the LORD says: ‘I am going to fill with drunkenness all who live in this land—the kings who sit on Da- vid’s throne, the priests, the prophets, and all the I will smash them against people of Jerusalem. one another, fathers and sons alike, declares the LORD. I will allow no mercy or pity or compas- Captivity Threatened sion to keep Me from destroying them.’ 15 14 ” 16 Listen and give heed. Do not be arrogant, for the LORD has spoken. Give glory to the LORD your God before He brings darkness, before your feet stumble on the dusky mountains. You wait for light, 17 but He turns it into deep gloo" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 19, + "text": "–22) to make for Yourself a glorious name. 15 to gain for Himself everlasting renown, 5 18 Return, for the sake of Your servants, the tribes of Your heritage. For a short while Your people possessed Your holy place, 19 but our enemies have trampled Your sanctuary. We have become like those You never ruled, A Prayer for God’s Power like those not called by Your name. 64 If only You would rend the heavens and come down, 2 so that mountains would quake at Your presence, as fire kindles the brushwood and causes the water to boil, to make Your name known to Your enemies, so that the nations will tremble at Your 3 presence! When You did awesome works that we did not expect, 4 You came down, and the mountains trembled at Your presence. From ancient times no one has heard, no ear has perceived, no eye has seen any God besides You, b who acts on behalf of those who wait for Him. You welcome those who gladly do right, who remember Your ways. Surely You were angry, for we sinned. 6 How can we be saved if we remain in our sins? Each of us has become like something unclean, c and all our righteous acts are like filthy rags; Look down from heaven and see, we all wither like a leaf, from Your holy and glorious habitation. 7 and our iniquities carry us away like the Where are Your zeal and might? wind. Your yearning and compassion for me are restrained. b 4 angel of His presence No one calls on Your name like a stained menstrual garment or strives to take hold of You. c 6 a 9 Or Cited in 1 C" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 2, + "text": "| 693 16 By sword and famine these very prophets will And the people to whom they meet their end! prophesy will be thrown into the streets of Jeru- salem because of famine and sword. There will be no one to bury them or their wives, their sons or their daughters. I will pour out their own evil 17 upon them. You are to speak this word to them: ‘My eyes overflow with tears; day and night they do not cease, for the virgin daughter of my people 18 has been shattered by a crushing blow, a severely grievous wound. If I go out to the country, I see those slain by the sword; if I enter the city, I see those ravaged by famine! For both prophet and priest A Prayer for Mercy" + }, + { + "verseNum": 3, + "text": "‘Those destined for death, to death; a those destined for the sword, to the sword; those destined for famine, to famine; and those destined for captivity, to captivity.’ 3 I will appoint over them four kinds of destroy- ers, declares the LORD: the sword to kill, the dogs to drag away, and the birds of the air and beasts I will make of the earth to devour and destroy. them a horror to all the kingdoms of the earth because of what Manasseh son of Hezekiah king 5 of Judah did in Jerusalem. 4 Who will have pity on you, O Jerusalem? Who will mourn for you? Who will turn aside 6 to ask about your welfare? You have forsaken Me, declares the LORD. You have turned your back. So I will stretch out My hand against you 7 and I will destroy you; I am weary of showing compassion. I will scatter them with a winnowing fork at the gates of the land. I will bereave and destroy My people 8 who have not turned from their ways. I will make their widows more numerous than the sand of the sea. I will bring a destroyer at noon 12 in your time of trouble, in your time of distress. 13 Can anyone smash iron— iron from the north—or bronze? Your wealth and your treasures I will give up as plunder, without charge for all your sins within all your borders. b 14 Then I will enslave you to your enemies in a land you do not know, for My anger will kindle a fire that will burn against you.” 15 You understand, O LORD; remember me and attend to me. Avenge me against my persecutors. In Your patience, do not take" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 4, + "text": "); most Hebrew manuscripts Disaster Predicted 16 2 Then the word of the LORD came to me, saying, “You must not marry or have 3 sons or daughters in this place.” 4 For this is what the LORD says concerning the sons and daughters born in this place, and the mothers who bore them, and the fathers who fa- “They will die from thered them in this land: deadly diseases. They will not be mourned or buried, but will lie like dung on the ground. They will be finished off by sword and famine, and their corpses will become food for the birds of 5 the air and beasts of the earth.” Indeed, this is what the LORD says: “Do not en- ter a house where there is a funeral meal. Do not go to mourn or show sympathy, for I have re- moved from this people My peace, My loving de- 6 votion, and My compassion,” declares the LORD. 7 “Both great and small will die in this land. They will not be buried or mourned, nor will anyone No food cut himself or shave his head for them. will be offered to comfort those who mourn the dead; not even a cup of consolation will be given 8 for the loss of a father or mother. You must not enter a house where there is 9 feasting and sit down with them to eat and drink. For this is what the LORD of Hosts, the God of Israel, says: I am going to remove from this place, before your very eyes and in your days, the sounds of joy and gladness, the voices of the 10 bride and bridegroom. When you tell these people all these things, they will ask you, ‘Why has the LORD pro- nounced a" + }, + { + "verseNum": 5, + "text": "5 This is what the LORD says: a “Cursed is the man who trusts in mankind, who makes mere flesh his strength 6 and turns his heart from the LORD. He will be like a shrub in the desert; he will not see when prosperity comes. He will dwell in the parched places of the 7 desert, in a salt land where no one lives. But blessed is the man who trusts in the 8 LORD, You know that the utterance of my lips 17 was spoken in Your presence. 18 Do not become a terror to me; You are my refuge in the day of disaster. Let my persecutors be put to shame, but do not let me be put to shame. Let them be terrified, but do not let me be terrified. Bring upon them the day of disaster and shatter them with double destruction. Restoring the Sabbath" + }, + { + "verseNum": 19, + "text": "–27) house of my God and for its services. 15 In those days I saw people in Judah treading winepresses on the Sabbath and bringing in grain and loading it on donkeys, along with wine, grapes, and figs. All kinds of goods were being brought into Jerusalem on the Sabbath day. So I 16 warned them against selling food on that day. Additionally, men of Tyre who lived there were importing fish and all kinds of merchandise and selling them on the Sabbath to the people of 17 Judah in Jerusalem. 18 Then I rebuked the nobles of Judah and asked, “What is this evil you are doing—profaning the Sabbath day? Did not your forefathers do the same things, so that our God brought all this dis- aster on us and on this city? And now you are re- kindling His wrath against Israel by profaning a 6 the Sabbath!” When the evening shadows began to fall on the gates of Jerusalem, just before the Sabbath, I or- dered that the gates be shut and not opened until after the Sabbath. I posted some of my servants at the gates so that no load could enter on the 20 Sabbath day. Once or twice, the merchants and those who 21 sell all kinds of goods camped outside Jerusalem, but I warned them, “Why are you camping in front of the wall? If you do it again, I will lay 22 hands on you.” From that time on, they did not return on the Sabbath. Then I instructed the Levites to purify themselves and guard the gates in order to keep the Sabbath day holy. Remember me for this as well, O my God, and show me mercy according to" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 18, + "text": "–23) anger by burning incense to Baal.” 18 19 And the LORD informed me, so I knew. Then You showed me their deeds. For I was like a gentle lamb led to slaughter; I did not know that they had plotted against me: “Let us destroy the tree with its fruit; let us cut him off from the land of the living, 20 that his name may be remembered no more.” b O LORD of Hosts, who judges righteously, who examines the heart and mind, let me see Your vengeance upon them, for to You I have committed my cause. 21 22 Therefore this is what the LORD says concerning the people of Anathoth who are seek- ing your life and saying, “You must not prophesy in the name of the LORD, or you will die by our hand.” So this is what the LORD of Hosts says: “I will punish them. Their young men will die by 23 the sword, their sons and daughters by famine. There will be no remnant, for I will bring dis- aster on the people of Anathoth in the year of The Prosperity of the Wicked their punishment.” 12 Righteous are You, O LORD, when I plead before You. Yet about Your judgments I wish to contend with You: As for you, do not pray for these people. Do not a 7 raise up a cry or a prayer on their behalf, for I will I earnestly warned them, rising up early and warning (them), Why does the way of the wicked prosper? the kidneys Why do all the faithless live at ease? b 20 Literally Hebrew 2 You planted them, and they have taken root. They have grown and produced fruit. a 12 All the land is laid waste, but no man takes it to" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 3, + "text": "| 697 18 2 4 This is the word that came to Jeremiah from the LORD: “Go down at once to the potter’s house, and there I will give you My mes- 3 sage.” So I went down to the potter’s house and saw But the vessel that he him working at the wheel. was shaping from the clay became flawed in his hand; so he formed it into another vessel, as it 5 seemed best for him to do. 6 Then the word of the LORD came to me, saying, “O house of Israel, declares the LORD, can I not treat you as this potter treats his clay? Just like clay in the potter’s hand, so are you in My hand, 7 O house of Israel. 8 At any time I might announce that a nation or kingdom will be uprooted, torn down, and de- But if that nation I warned turns from stroyed. its evil, then I will relent of the disaster I had 9 planned to bring. And if at another time I announce that I will 10 build up and establish a nation or kingdom, and if it does evil in My sight and does not lis- ten to My voice, then I will relent of the good I 11 had intended for it. Now therefore, tell the men of Judah and the residents of Jerusalem that this is what the LORD says: ‘Behold, I am planning a disaster for you and devising a plan against you. Turn now, each of you, from your evil ways, and correct your 12 ways and deeds.’ But they will reply, ‘It is hopeless. We will fol- low our own plans, and each of us will act accord- 13 ing to the stubbornness of his evil heart.’ ” Therefore this is what the LORD says: “Inquire among the nations: Who has" + }, + { + "verseNum": 4, + "text": "4 Hosts, the God of Israel, says: I am going to bring such disaster on this place that the ears of all who because they have aban- hear of it will ring, doned Me and made this a foreign place. They have burned incense in this place to other gods that neither they nor their fathers nor the kings of Judah have ever known. They have filled this They have place with the blood of the innocent. built high places to Baal on which to burn their children in the fire as offerings to Baal—some- thing I never commanded or mentioned, nor did 6 it even enter My mind. 5 7 So behold, the days are coming, declares the LORD, when this place will no longer be called a Topheth or the Valley of Ben-hinnom, but the Valley of Slaughter. the plans of Judah and Jerusalem. I will make them fall by the sword before their enemies, by the hands of those who seek their lives, and I will give their carcasses as food to the birds of the air 8 and the beasts of the earth. And in this place I will ruin b 9 I will make this city a desolation and an object of scorn. All who pass by will be appalled and will scoff at all her wounds. I will make them eat the flesh of their sons and daughters, and they will eat one another’s flesh in the siege and dis- tress inflicted on them by their enemies who 10 seek their lives.’ 11 Then you are to shatter the jar in the presence and you are to of the men who accompany you, proclaim to them that this is what the LORD of Hosts says: I will shatter this nation and this city, li" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 13, + "text": "| 699 something like all His past wonders, so that Neb- 3 uchadnezzar will withdraw from us.” 4 But Jeremiah answered, “You are to tell Zedekiah that this is what the LORD, the God of Israel, says: ‘I will turn against you the weap- c ons of war in your hands, with which you are fighting the king of Babylon and the Chaldeans who besiege you outside the wall, and I will 5 assemble their forces in the center of this city. And I Myself will fight against you with an out- stretched hand and a mighty arm, with anger, fury, and great wrath. I will strike down the res- idents of this city, both man and beast. They will 7 die in a terrible plague.’ 6 ‘After that,’ declares the LORD, ‘I will hand over Zedekiah king of Judah, his officers, and the peo- ple in this city who survive the plague and sword and famine, to Nebuchadnezzar king of Babylon and to their enemies who seek their lives. He will put them to the sword; he will not spare them or 8 show pity or compassion.’ 9 Furthermore, you are to tell this people that this is what the LORD says: ‘Behold, I set before you the way of life and the way of death. Whoever stays in this city will die by sword and famine and plague, but whoever goes out and surren- ders to the Chaldeans who besiege you will live; For I he will retain his life like a spoil of war. have set My face against this city to bring disaster and not good, declares the LORD. It will be deliv- ered into the hand of the king of Babylon, who A Message to the House of David" + }, + { + "verseNum": 14, + "text": "14 I will punish you as your deeds deserve, declares the LORD. I will kindle a fire in your forest that will consume everything around A Warning to Judah’s Kings ” you.’ 22 3 2 This is what the LORD says: “Go down to the palace of the king of Judah and pro- saying, ‘Hear the word claim this message there, of the LORD, O king of Judah, who sits on the throne of David—you and your officials and your This is what the people who enter these gates. LORD says: Administer justice and righteous- ness. Rescue the victim of robbery from the hand of his oppressor. Do no wrong or violence to the foreigner, the fatherless, or the widow. Do not 4 shed innocent blood in this place. 5 For if you will indeed carry out these com- mands, then kings who sit on David’s throne will enter through the gates of this palace riding on chariots and horses—they and their officials and But if you do not obey these words, their people. then I swear by Myself, declares the LORD, that A Warning about the Palace this house will become a pile of rubble.’ 6 ” 11 a For this is what the LORD says concerning Shallum son of Josiah, king of Judah, who suc- ceeded his father Josiah but has gone forth from this place: “He will never return, but he will die in the place to which he was exiled; he will never A Warning about Jehoiakim see this land again.” 13 12 “Woe to him who builds his palace by unrighteousness, and his upper rooms without justice, who makes his countrymen serve without 14 pay, and fails to pay their" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 12, + "text": "| 701 dismayed, nor will any go missing, declares the 5 LORD. Behold, the days are coming, d declares the LORD, when I will raise up for David a righteous Branch, and He will reign wisely as King 6 and will administer justice and righteousness in the land. In His days Judah will be saved, and Israel will dwell securely. And this is His name by which He will e 7 be called: The LORD Our Righteousness. 8 So behold, the days are coming, declares the LORD, when they will no longer say, ‘As surely as the LORD lives, who brought the Israelites up out Instead they will say, ‘As of the land of Egypt.’ surely as the LORD lives, who brought and led the descendants of the house of Israel up out of the land of the north and all the other lands to which He had banished them.’ Then they will Lying Prophets dwell once more in their own land.” 9 As for the prophets: My heart is broken within me, and all my bones tremble. I have become like a drunkard, like a man overcome by wine, because of the LORD, 10 because of His holy words. For the land is full of adulterers— because of the curse, the land mourns and the pastures of the wilderness have dried up— their course is evil 11 and their power is misused. “For both prophet and priest are ungodly; even in My house I have found their declares the LORD. wickedness,” 12 “Therefore their path will become slick; they will be driven away into the darkness and fall into it. For I will bring disaster upon them in the year of their punishment,” declares t" + }, + { + "verseNum": 13, + "text": "13 22 “Among the prophets of Samaria I saw an offensive thing: They prophesied by Baal 14 And and led My people Israel astray. among the prophets of Jerusalem I have seen a horrible thing: They commit adultery and walk in lies. They strengthen the hands of evildoers, so that no one turns his back on wickedness. They are all like Sodom to Me; 15 the people of Jerusalem are like Gomorrah.” Therefore this is what the LORD of Hosts says concerning the prophets: “I will feed them wormwood and give them poisoned water to drink, for from the prophets of Jerusalem 16 ungodliness has spread throughout the land.” This is what the LORD of Hosts says: “Do not listen to the words of the prophets who prophesy to you. They are filling you with false hopes. They speak visions from their own minds, 17 not from the mouth of the LORD. They keep saying to those who despise Me, ‘The LORD says that you will have peace,’ and to everyone who walks in the 18 stubbornness of his own heart, ‘No harm will come to you.’ But which of them has stood in the council of the LORD to see and hear His word? Who has given heed to His word 19 and obeyed it? Behold, the storm of the LORD has gone out with fury, a whirlwind swirling down 20 upon the heads of the wicked. The anger of the LORD will not turn back until He has fully accomplished the purposes of His heart. In the days to come 21 you will understand this clearly. I did not send these prophets, yet they have run with their message; I did not speak to them," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 10, + "text": "| 703 9 10 of Jerusalem—those remaining in this land and those living in the land of Egypt. I will make them a horror and an offense to all the kingdoms of the earth, a disgrace and an object of scorn, ridicule, and cursing wherever I have banished And I will send against them sword and them. famine and plague, until they have perished from Seventy Years of Captivity the land that I gave to them and their fathers.’ ” 25 This is the word that came to Jeremiah concerning all the people of Judah in the fourth year of Jehoiakim son of Josiah king of Ju- dah, which was the first year of Nebuchadnezzar So the prophet Jeremiah spoke king of Babylon. to all the people of Judah and all the residents of 3 Jerusalem as follows: 2 24 a After Nebuchadnezzar king of Babylon had carried away Jeconiah son of Jehoi- akim king of Judah, as well as the officials of Ju- dah and the craftsmen and metalsmiths from Je- the rusalem, and had brought them to Babylon, LORD showed me two baskets of figs placed in One basket had front of the temple of the LORD. very good figs, like those that ripen early, but the other basket contained very poor figs, so bad 3 they could not be eaten. 2 b “Jeremiah,” the LORD asked, “what do you see?” “Figs!” I replied. “The good figs are very good, but the bad figs are very bad, so bad they cannot be 4 eaten.” 5 c 6 Then the word of the LORD came to me, saying, “This is what the LORD, the God of Israel, says: ‘Like these good figs, so I regard as good the ex- iles from" + }, + { + "verseNum": 11, + "text": "11 28 And this whole land will be- light of the lamp. come a desolate wasteland, and these nations 12 will serve the king of Babylon for seventy years. But when seventy years are complete, I will a punish the king of Babylon and that nation, the for their guilt, declares land of the Chaldeans, the LORD, and I will make it an everlasting deso- 13 lation. 14 I will bring upon that land all the words I have pronounced against it, all that is written in this book, which Jeremiah has prophesied against all For many nations and great kings the nations. will enslave them, and I will repay them accord- ing to their deeds and according to the work of The Cup of God’s Wrath ” their hands.’ 15 This is what the LORD, the God of Israel, said to me: “Take from My hand this cup of the wine 16 of wrath, and make all the nations to whom I And they will drink and send you drink from it. stagger and go out of their minds, because of the 17 sword that I will send among them.” 21 19 18 20 So I took the cup from the LORD’s hand and made all the nations drink from it, each one to to make them a whom the LORD had sent me, ruin, an object of horror and contempt and curs- ing, as they are to this day—Jerusalem and the Pharaoh cities of Judah, its kings and officials; king of Egypt, his officials, his leaders, and all his all the mixed tribes; all the kings of Uz; people; all the kings of the Philistines: Ashkelon, Gaza, Edom, Ekron, and the remnant of Ashdod; Moab, and the Ammonites; all the kings of" + }, + { + "verseNum": 12, + "text": "and" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 23, + "text": "| 705 He has left His den like a lion, for their land has been made a a desolation by the sword of the oppressor, and because of the fierce anger of A Warning to the Cities of Judah the LORD. 26 2 At the beginning of the reign of Jehoia- kim son of Josiah king of Judah, this word “This is what the LORD came from the LORD: says: Stand in the courtyard of the house of the LORD and speak all the words I have commanded you to speak to all the cities of Judah who come Perhaps to worship there. Do not omit a word. they will listen and turn—each from his evil way of life—so that I may relent of the disaster I am planning to bring upon them because of the evil 4 of their deeds. 3 5 And you are to tell them that this is what the LORD says: ‘If you do not listen to Me and walk in and if you My law, which I have set before you, b do not listen to the words of My servants the prophets, whom I have sent you again and again then I will make even though you did not listen, this house like Shiloh, and I will make this city an object of cursing among all the nations of the Jeremiah Threatened with Death earth.’ 7 ” 6 8 Now the priests and prophets and all the people heard Jeremiah speaking these words in the house of the LORD, and as soon as he had fin- ished telling all the people everything the LORD had commanded him to say, the priests and prophets and all the people seized him, shouting, How dare you prophesy “You must surely die! in the name of the LORD that this house will be- come like" + }, + { + "verseNum": 24, + "text": "and his body thrown into the burial place of the 24 common people. Nevertheless, Ahikam son of Shaphan sup- ported Jeremiah, so he was not handed over to The Yoke of Nebuchadnezzar the people to be put to death. 27 a At the beginning of the reign of Zede- kiah son of Josiah king of Judah, this This is 2 b word came to Jeremiah from the LORD. what the LORD said to me: 3 “Make for yourself a yoke out of leather straps Send word to the kings and put it on your neck. of Edom, Moab, Ammon, Tyre, and Sidon through the envoys who have come to Jerusalem to Zede- Give them a message from kiah king of Judah. the LORD of Hosts, the God of Israel, to relay to 5 their masters: 4 6 7 By My great power and outstretched arm, I made the earth and the men and beasts on the So now face of it, and I give it to whom I please. I have placed all these lands under the authority of My servant Nebuchadnezzar king of Babylon. I have even made the beasts of the field subject to All nations will serve him and his son and him. grandson, until the time of his own land comes; then many nations and great kings will enslave 8 him. As for the nation or kingdom that does not serve Nebuchadnezzar king of Babylon and does not place its neck under his yoke, I will punish that nation by sword and famine and plague, declares 9 the LORD, until I have destroyed it by his hand. 10 But as for you, do not listen to your prophets, your diviners, your interpreters of dreams, your mediums, or your sorcerers who declare, ‘Yo" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "); most Hebrew manuscripts Jehoiachin 24:12. is a variant of ; see 2 Kings 24:12. Most LXX manuscripts do not include this verse. is a variant of ; see 2 Kings declares the LORD, ‘for I will break the yoke of 5 the king of Babylon.’ ” Then the prophet Jeremiah replied to the prophet Hananiah in the presence of the priests 6 and all the people who were standing in the “Amen!” Jeremiah said. house of the LORD. “May the LORD do so! May the LORD fulfill the words you have prophesied, and may He restore the articles of His house and all the exiles back to 7 this place from Babylon. 8 Nevertheless, listen now to this message I am speaking in your hearing and in the hearing of all The prophets of old who preceded the people. you and me prophesied war, disaster, and plague As for against many lands and great kingdoms. the prophet who prophesies peace, only if the word of the prophet comes true will the prophet 10 be recognized as one the LORD has truly sent.” 9 Then the prophet Hananiah took the yoke off 11 the neck of Jeremiah the prophet and broke it. And in the presence of all the people Hananiah proclaimed, “This is what the LORD says: ‘In this way, within two years I will break the yoke of Nebuchadnezzar king of Babylon off the neck of all the nations.’ 12 At this, Jeremiah the prophet went on his way. But shortly after Hananiah the prophet had 13 broken the yoke off his neck, the word of the “Go and tell Hananiah LORD came to Jeremiah: that this is what the LORD says: ‘You have" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 10, + "text": ". Or or Or or That is, the Babylonians; also clarified in verse 19 Ezra The Proclamation of Cyrus (2 Chronicles 36:22–23 ;" + }, + { + "verseNum": 14, + "text": "| 707 Jeremiah’s Letter to the Exiles 29 a 2 This is the text of the letter that Jeremiah the prophet sent from Jerusalem to the surviving elders among the exiles and to the priests, the prophets, and all the others Nebu- chadnezzar had carried into exile from Jerusalem the to Babylon. queen mother, the court officials, the officials of Judah and Jerusalem, the craftsmen, and the met- The alsmiths had been exiled from Jerusalem.) letter was entrusted to Elasah son of Shaphan and Gemariah son of Hilkiah, whom Zedekiah king of Judah sent to King Nebuchadnezzar in Babylon. It stated: (This was after King Jeconiah, 3 4 6 5 This is what the LORD of Hosts, the God of Israel, says to all the exiles who were carried away from Jerusalem to Babylon: “Build houses and settle down. Plant gardens and eat their produce. Take wives and have sons and daughters. Take wives for your sons and give your daughters in marriage, so that they too may have sons and daughters. Seek the Multiply there; do not decrease. prosperity of the city to which I have sent you as exiles. Pray to the LORD on its behalf, 8 for if it prospers, you too will prosper.” 7 For this is what the LORD of Hosts, the God of Israel, says: “Do not be deceived by the prophets and diviners among you, and do 9 not listen to the dreams you elicit from them. For they are falsely prophesying to you in My name; I have not sent them, declares the LORD.” b 10 13 11 For this is what the LORD says: “When Baby- lon’s seventy years are comp" + }, + { + "verseNum": 15, + "text": "15 16 Because you may say, “The LORD has raised up this is what the for us prophets in Babylon,” LORD says about the king who sits on David’s throne and all the people who remain in this city, your brothers who did not go with you into ex- ile— this is what the LORD of Hosts says: 17 18 “I will send against them sword and famine and plague, and I will make them like rotten figs, so I will pursue them bad they cannot be eaten. with sword and famine and plague. I will make them a horror to all the kingdoms of the earth— a curse, a desolation, and an object of scorn and reproach among all the nations to which I banish I will do this because they have not lis- them. tened to My words, declares the LORD, which I sent to them again and again through My serv- ants the prophets. And neither have you exiles 20 listened, declares the LORD.” 19 a 22 So hear the word of the LORD, all you exiles I 21 have sent away from Jerusalem to Babylon. This is what the LORD of Hosts, the God of Is- rael, says about Ahab son of Kolaiah and Zede- kiah son of Maaseiah, who are prophesying to you lies in My name: “I will deliver them to Neb- uchadnezzar king of Babylon, and he will kill Because of them, them before your very eyes. all the exiles of Judah who are in Babylon will use this curse: ‘May the LORD make you like Zede- kiah and Ahab, whom the king of Babylon For they have committed roasted in the fire!’ an outrage in Israel by committing adultery with the wives of their neighbors and speaking li" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "–17) will know that I am the Lord GOD.’ 25 This is what the Lord GOD says: ‘When I gather the house of Israel from the peoples among lapis lazuli b 13 The precise identification of some of these gemstones is uncertain. Or whom they have been scattered, I will show My- self holy among them in the sight of the nations. 26 Then they will dwell in their own land, which I have given to My servant Jacob. And there they will dwell securely, build houses, and plant vine- yards. They will dwell securely when I execute judgments against all those around them who treat them with contempt. Then they will know A Prophecy against Pharaoh ” that I am the LORD their God.’ 29 2 In the tenth year, on the twelfth day of the tenth month, the word of the LORD “Son of man, set your face came to me, saying, 3 against Pharaoh king of Egypt and prophesy Speak to him against him and against all Egypt. and tell him that this is what the Lord GOD says: Behold, I am against you, O Pharaoh king of Egypt, O great monster who lies among his rivers, who says, ‘The Nile is mine; 4 I made it myself.’ But I will put hooks in your jaws and cause the fish of your streams to cling to your scales. 5 I will haul you up out of your rivers, and all the fish of your streams will cling to your scales. I will leave you in the desert, you and all the fish of your streams. You will fall on the open field and will not be taken away or gathered for burial. I have given you as food 6 to the beasts of the earth and the birds o" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 3, + "text": "| 709 18 because they call you an outcast, Zion, for whom no one cares.” a This is what the LORD says: “I will restore the fortunes of Jacob’s tents and have compassion on his dwellings. And the city will be rebuilt on her own ruins, and the palace will stand in its rightful 19 place. Thanksgiving will proceed from them, a sound of celebration. I will multiply them, and they will not be decreased; 20 I will honor them, and they will not be belittled. Their children will be as in days of old, and their congregation will be established 21 before Me; and I will punish all their oppressors. Their leader will be one of their own, and their ruler will arise from their midst. And I will bring him near, and he will approach Me, for who would dare on his own to declares the LORD. 22 approach Me?” 23 “And you will be My people, and I will be your God.” Behold, the storm of the LORD has gone out with fury, a whirlwind swirling down 24 upon the heads of the wicked. The fierce anger of the LORD will not turn back until He has fully accomplished the purposes of His heart. In the days to come Mourning Turned to Joy" + }, + { + "verseNum": 4, + "text": "4 13 Again I will build you, and you will be rebuilt, Then the maidens will rejoice with dancing, O Virgin Israel. Again you will take up your tambourines 5 young men and old as well. I will turn their mourning into joy, and go out in joyful dancing. 14 and give them comfort and joy for their Again you will plant vineyards on the hills of sorrow. 6 Samaria; the farmers will plant and enjoy the fruit. For there will be a day when watchmen will I will fill the souls of the priests abundantly, declares the LORD. and will fill My people with My goodness,” 15 call out on the hills of Ephraim, ‘Arise, let us go up to Zion, ” to the LORD our God!’ 7 For this is what the LORD says: “Sing with joy for Jacob; shout for the foremost of the nations! Make your praises heard, and say, ‘O LORD, save Your people, the remnant of Israel!’ 8 Behold, I will bring them from the land of the north and gather them from the farthest parts of the earth, including the blind and the lame, 9 expectant mothers and women in labor. They will return as a great assembly! They will come with weeping, and by their supplication I will lead them; I will make them walk beside streams of waters, on a level path where they will not stumble. For I am Israel’s Father, 10 Hear, O nations, the word of the LORD, and proclaim it in distant coastlands: “The One who scattered Israel will gather 11 them and keep them as a shepherd keeps his flock. For the LORD has ransomed Jacob 12 and redeemed him from the hand that had ove" + }, + { + "verseNum": 26, + "text": "–40) d 6 Now, however, Jesus has received a much more excellent ministry, just as the covenant He medi- 7 ates is better and is founded on better promises. For if that first covenant had been without fault, 8 no place would have been sought for a second. But God found fault with the people and said: “Behold, the days are coming, declares the Lord, when I will make a new covenant with the house of Israel 9 and with the house of Judah. It will not be like the covenant I made with their fathers when I took them by the hand to lead them out of the land of Egypt, because they did not abide by My covenant, and I disregarded them, declares the Lord. 10 For this is the covenant I will make with the house of Israel after those days, declares the Lord. I will put My laws in their minds and inscribe them on their hearts. And I will be their God, 11 and they will be My people. No longer will each one teach his neighbor or his brother, saying, ‘Know the Lord,’ because they will all know Me, 12 from the least of them to the greatest. e For I will forgive their iniquities f and will remember their sins no more.” 13 By speaking of a new covenant, He has made the first one obsolete; and what is obsolete and aging will soon disappear. e 12" + }, + { + "verseNum": 31, + "text": "– is included for clarity but is not . covenant tabernacle 1080 |" + }, + { + "verseNum": 33, + "text": "" + }, + { + "verseNum": 34, + "text": "But the righteous will live by faith j 38" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 2, + "text": "| 711 I will put My law in their minds and inscribe it on their hearts. 34 And I will be their God, and they will be My people. No longer will each man teach his neighbor or his brother, saying, ‘Know the LORD,’ because they will all know Me, from the least of them to the greatest, declares the LORD. For I will forgive their iniquities 35 and will remember their sins no more.” d Thus says the LORD, who gives the sun for light by day, who sets in order the moon and stars for light by night, who stirs up the sea so that its waves roar—the LORD of Hosts is His 36 name: “Only if this fixed order departed from My presence, declares the LORD, would Israel’s descendants ever cease 37 to be a nation before Me.” This is what the LORD says: “Only if the heavens above could be measured and the foundations of the earth below ‘The fathers have eaten sour grapes, searched out 30 and the teeth of the children are set on edge.’ Instead, each will die for his own iniquity. If anyone eats the sour grapes, his own teeth will 31 be set on edge. Behold, the days are coming, declares the LORD, when I will make a new covenant with the house of Israel 32 and with the house of Judah. It will not be like the covenant I made with their fathers when I took them by the hand to lead them out of the land of Egypt— c a covenant they broke, though I was a husband to them, ” declares the LORD. 33 “But this is the covenant I will make with the house of Israel would I reject all of Israel’s descendants declares" + }, + { + "verseNum": 3, + "text": "courtyard of the guard, which was in the palace 3 of the king of Judah. a 4 For Zedekiah king of Judah had imprisoned him, saying: “Why are you prophesying like this? You claim that the LORD says, ‘Behold, I am about to deliver this city into the hand of the king of Bab- Zedekiah king of ylon, and he will capture it. Judah will not escape from the hands of the Chal- deans, but he will surely be delivered into the hand of the king of Babylon, and will speak with him face to face and see him eye to eye. He will take Zedekiah to Babylon, where he will stay un- til I attend to him, declares the LORD. If you fight 6 against the Chaldeans, you will not succeed.’ ” 5 7 8 Jeremiah replied, “The word of the LORD came to me, saying: Behold! Hanamel, the son of your uncle Shallum, is coming to you to say, ‘Buy for yourself my field in Anathoth, for you have the Then, as the right of redemption to buy it.’ LORD had said, my cousin Hanamel came to me in the courtyard of the guard and urged me, ‘Please buy my field in Anathoth in the land of Benjamin, for you own the right of inheritance and redemption. Buy it for yourself.’ 9 Then I knew that this was the word of the LORD. ” b 11 10 So I bought the field in Anathoth from my cousin Hanamel, and I weighed out seventeen shekels of silver. I signed and sealed the deed, called in witnesses, and weighed out the silver on Then I took the deed of purchase— the scales. 12 the sealed copy with its terms and conditions, as and I gave this deed to we" + }, + { + "verseNum": 36, + "text": "–44) around you.” 13 Now as I was prophesying, Pelatiah son of Benaiah died. Then I fell facedown and cried out in a loud voice, “Oh, Lord GOD, will You bring the 14 remnant of Israel to a complete end?” 15 Then the word of the LORD came to me, say- “Son of man, your brothers—your rela- ing, tives, your fellow exiles, and the whole house of Israel—are those of whom the people of Jerusa- lem have said, ‘They are far away from the LORD; 16 this land has been given to us as a possession.’ Therefore declare that this is what the Lord GOD says: ‘Although I sent them far away among the nations and scattered them among the 752 |" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 11, + "text": "| 713 44 about which you are saying, ‘It is a desolation, without man or beast; it has been delivered into Fields will be pur- the hands of the Chaldeans.’ chased with silver, and deeds will be signed, sealed, and witnessed in the land of Benjamin, in the areas surrounding Jerusalem, and in the cit- ies of Judah—the cities of the hill country, the and the Negev—because I will restore foothills, The Excellence of the Restored Nation them from captivity, declares the LORD.” d c 33 e 2 While Jeremiah was still confined in the courtyard of the guard, the word of the “Thus says LORD came to him a second time: the LORD who made the earth, the LORD who formed it and established it, the LORD is His Call to Me, and I will answer and show name: you great and unsearchable things you do not 4 know. 3 For this is what the LORD, the God of Israel, says about the houses of this city and the palaces of the kings of Judah that have been torn down for 5 defense against the siege ramps and the sword: and to fill those places with the corpses of the men I will strike down in My anger and in My wrath. I have hidden My face from this city because of all its 6 wickedness. The Chaldeans are coming to fight f g 7 Nevertheless, I will bring to it health and heal- ing, and I will heal its people and reveal to them the abundance of peace and truth. I will restore 8 Judah and Israel from captivity and will rebuild And I will cleanse them them as in former times. from all the iniquity they have committed" + }, + { + "verseNum": 12, + "text": "‘Give thanks to the LORD of Hosts, for the LORD is good; a His loving devotion endures forever.’ For I will restore the land from captivity 12 former times, says the LORD. as in 13 This is what the LORD of Hosts says: In this desolate place, without man or beast, and in all its cities, there will once more be pastures for b In the cities of shepherds to rest their flocks. the hill country, the foothills, and the Negev, in the land of Benjamin and the cities surrounding Jerusalem, and in the cities of Judah, the flocks will again pass under the hands of the one who The Covenant with David counts them, says the LORD. 14 Behold, the days are coming, declares the LORD, when I will fulfill the gracious promise that I have spoken to the house of Israel 15 and the house of Judah. In those days and at that time I will cause to sprout for David a righteous Branch, and He will administer justice 16 and righteousness in the land. In those days Judah will be saved, and Jerusalem will dwell securely, and this is the name by which it will c 17 be called: The LORD Our Righteousness. 18 For this is what the LORD says: David will never lack a man to sit on the throne of the house nor will the priests who are Levites of Israel, ever fail to have a man before Me to offer burnt offerings, to burn grain offerings, and to present 19 sacrifices.” 20 And the word of the LORD came to Jeremiah: “This is what the LORD says: If you can break My covenant with the day and My covenant with 21 the night, so" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 13, + "text": "| 715 22 Behold, I am going to give the command, de- clares the LORD, and I will bring them back to this city. They will fight against it, capture it, and burn it down. And I will make the cities of Judah The Obedience of the Rechabites a desolation, without inhabitant.” 35 This is the word that came to Jeremiah 2 from the LORD in the days of Jehoiakim son of Josiah king of Judah: “Go to the house of the Rechabites, speak to them, and bring them to one of the chambers of the house of the LORD to 3 offer them a drink of wine.” 4 So I took Jaazaniah son of Jeremiah, the son of Habazziniah, and his brothers and all his sons— the entire house of the Rechabites— and I brought them into the house of the LORD, to a chamber occupied by the sons of Hanan son of Igdaliah, a man of God. This room was near the chamber of the officials, which was above the chamber of Maaseiah son of Shallum the door- 5 keeper. Then I set pitchers full of wine and some cups before the men of the house of the Rechabites, 6 and I said to them, “Drink some wine.” a 7 “We do not drink wine,” they replied, “for our forefather Jonadab son of Rechab commanded us, ‘Neither you nor your descendants are ever to Nor are you ever to build a house or drink wine. sow seed or plant a vineyard. Those things are not for you. Instead, you must live in tents all your lives, so that you may live a long time in the 8 land where you wander.’ And we have obeyed the voice of our forefather Jonadab son of Rechab in all he commande" + }, + { + "verseNum": 14, + "text": "Israel, says: Go and tell the men of Judah and the residents of Jerusalem: ‘Will you not accept dis- 14 cipline and obey My words?’ declares the LORD. The words of Jonadab son of Rechab have been carried out. He commanded his sons not to drink wine, and they have not drunk it to this very day because they have obeyed the command of their forefather. But I have spoken to you again and 15 again, and you have not obeyed Me! b a Again and again I have sent you all My serv- ants the prophets, proclaiming: ‘Turn now, each of you, from your wicked ways, and correct your actions. Do not go after other gods to serve them. Live in the land that I have given to you and your fathers.’ But you have not inclined your ear or lis- tened to Me. Yes, the sons of Jonadab son of Rechab carried out the command their forefather gave them, but these people have not listened to 17 Me. 16 Therefore this is what the LORD God of Hosts, the God of Israel, says: ‘Behold, I will bring to Judah and to all the residents of Jerusalem all the disaster I have pronounced against them, be- cause I have spoken to them but they have not obeyed, and I have called to them but they have 18 not answered.’ ” Then Jeremiah said to the house of the Recha- bites: “This is what the LORD of Hosts, the God of Israel, says: ‘Because you have obeyed the com- mand of your forefather Jonadab and have kept 19 all his commandments and have done all that he charged you to do, this is what the LORD of Hosts, the God of Israel, says:" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 3, + "text": ". That is, the Babylonians; also in e 7 c 2 Jehucal Literally is a variant of verses 18, 19, and 23 Probably from the upper Nile region Or" + }, + { + "verseNum": 10, + "text": "| 717 written on it that the king of Babylon would surely come and destroy this land and deprive it 30 of man and beast?’ Therefore this is what the LORD says about Je- hoiakim king of Judah: He will have no one to sit on David’s throne, and his body will be thrown 31 out and exposed to heat by day and frost by night. I will punish him and his descendants and servants for their iniquity. I will bring on them, on the residents of Jerusalem, and on the men of Judah, all the calamity about which I warned 32 them but they did not listen.” Then Jeremiah took another scroll and gave it to the scribe Baruch son of Neriah, and at Jere- miah’s dictation he wrote on it all the words of the scroll that Jehoiakim king of Judah had burned in the fire. And many similar words were Jeremiah Warns Zedekiah added to them. 37 a 2 Nebuchadnezzar king of Babylon made Zedekiah son of Josiah the king of Judah, and he reigned in place of Coniah son of Jehoia- kim. But he and his officers and the people of the land refused to obey the words that the LORD 3 had spoken through Jeremiah the prophet. b Yet King Zedekiah sent Jehucal son of Shele- miah and Zephaniah the priest, the son of Maaseiah, to Jeremiah the prophet with the mes- 4 sage, “Please pray to the LORD our God for us!” c Now Jeremiah was free to come and go among 5 the people, for they had not yet put him in prison. Pharaoh’s army had left Egypt, and when the who were besieging Jerusalem heard Chaldeans 6 the report, they withdrew from Jer" + }, + { + "verseNum": 11, + "text": "Jeremiah Imprisoned 11 12 13 When the Chaldean army withdrew from Jeru- salem for fear of Pharaoh’s army, Jeremiah a started to leave Jerusalem to go to the land of Benjamin to claim his portion there among the people. But when he reached the Gate of Ben- jamin, the captain of the guard, whose name was Irijah son of Shelemiah, the son of Hananiah, seized him and said, “You are deserting to the 14 Chaldeans!” “That is a lie,” Jeremiah replied. “I am not deserting to the Chaldeans!” But Irijah would not listen to him; instead, he 15 arrested Jeremiah and took him to the officials. The officials were angry with Jeremiah, and they beat him and placed him in jail in the house of Jonathan the scribe, for it had been made into 16 a prison. So Jeremiah went into a cell in the dungeon 17 and remained there a long time. Later, King Zedekiah sent for Jeremiah and received him in his palace, where he asked him privately, “Is there a word from the LORD?” “There is,” Jeremiah replied. “You will be deliv- 18 ered into the hand of the king of Babylon.” Then Jeremiah asked King Zedekiah, “How have I sinned against you or your servants or 19 these people, that you have put me in prison? Where are your prophets who prophesied to you, claiming, ‘The king of Babylon will not come against you or this land’? But now please lis- ten, O my lord the king. May my petition come before you. Do not send me back to the house of 21 Jonathan the scribe, or I will die there.” 20 So King Zedekiah gave orders f" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": ". That is, the Babylonians; also in verses 8, 9, 13, and 14 718 |" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "–10) 25 So in the ninth year of Zedekiah’s reign, on the tenth day of the tenth month, Neb- uchadnezzar king of Babylon marched against Je- a rusalem with his entire army. They encamped a siege wall all around outside the city and built And the city was kept under siege until King it. 3 Zedekiah’s eleventh year. 2 b c By the ninth day of the fourth month, 4 the fam- ine in the city was so severe that the people of the Then the city was breached; land had no food. had surrounded the and though the Chaldeans city, all the men of war fled by night by way of the gate between the two walls near the king’s garden. 5 d And they slaughtered the sons of Zedekiah be- fore his eyes. Then they put out his eyes, bound him with bronze shackles, and took him to Baby- lon. The Temple Destroyed" + }, + { + "verseNum": 10, + "text": "| 719 15 27 “If I tell you,” Jeremiah replied, “you will surely put me to death. And even if I give you advice, 16 you will not listen to me.” But King Zedekiah swore secretly to Jeremiah, “As surely as the LORD lives, who has given us this life, I will not kill you, nor will I deliver you into the hands of these men who are seeking 17 your life.” When all the officials came to Jeremiah and questioned him, he relayed to them the exact words the king had commanded him to say. So they said no more to him, for no one had over- And Jeremiah re- heard the conversation. mained in the courtyard of the guard until the day Jerusalem was captured. The Fall of Jerusalem (2 Kings 25:1–12 ; 2 Chronicles 36:15–21) 28 18 Then Jeremiah said to Zedekiah, “This is what the LORD God of Hosts, the God of Israel, says: ‘If you indeed surrender to the officers of the king of Babylon, then you will live, this city will not be burned down, and you and your household will But if you do not surrender to the of- survive. ficers of the king of Babylon, then this city will be delivered into the hands of the Chaldeans. They will burn it down, and you yourself will not es- 19 cape their grasp.’ ” But King Zedekiah said to Jeremiah, “I am afraid of the Jews who have deserted to the Chal- deans, for the Chaldeans may deliver me into 20 their hands to abuse me.” 21 “They will not hand you over,” Jeremiah re- plied. “Obey the voice of the LORD in what I am telling you, that it may go well with you and you But" + }, + { + "verseNum": 11, + "text": "Jeremiah Delivered 11 Now Nebuchadnezzar king of Babylon had given orders about Jeremiah through Nebuzara- “Take him, dan captain of the guard, saying, look after him, and do not let any harm come to 13 him; do for him whatever he says.” 12 a shazban 14 mag So Nebuzaradan captain of the guard, Nebu- the Rabsaris, Nergal-sharezer the Rab- , and all the captains of the king of Babylon had Jeremiah brought from the courtyard of the guard, and they turned him over to Gedaliah son of Ahikam, the son of Shaphan, to take him home. So Jeremiah remained among his own 15 people. 16 And while Jeremiah had been confined in the courtyard of the guard, the word of the LORD had come to him: “Go and tell Ebed-melech the Cushite that this is what the LORD of Hosts, the God of Israel, says: ‘I am about to fulfill My words against this city for harm and not for good, and 17 on that day they will be fulfilled before your eyes. But I will deliver you on that day, declares the LORD, and you will not be delivered into the For I will hands of the men whom you fear. surely rescue you so that you do not fall by the sword. Because you have trusted in Me, you will escape with your life like a spoil of war, declares Jeremiah Remains in Judah the LORD.’ ” 18 40 This is the word that came to Jeremiah from the LORD after Nebuzaradan cap- tain of the guard had released him at Ramah, having found him bound in chains among all the captives of Jerusalem and Judah who were being 2 exiled to Babylon. 4 The captai" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–16) 22 Nebuchadnezzar king of Babylon appointed Gedaliah son of Ahikam, the son of Shaphan, over 23 the people he had left behind in the land of Judah. When all the commanders of the armies and their men heard that the king of Babylon had appointed Gedaliah as governor, they came to Gedaliah at Mizpah—Ishmael son of Nethaniah, Johanan son of Kareah, Seraiah son of Tanhumeth 24 son of the the Netophathite, and Jaazaniah And Gedaliah Maacathite, as well as their men. took an oath before them and their men, assuring them, “Do not be afraid of the servants of the Chaldeans. Live in the land and serve the king of Babylon, and it will be well with you.” a 2 Kings 25:30 | 369 The Murder of Gedaliah" + }, + { + "verseNum": 8, + "text": ". Literally 1 Chronicles From Adam to Abraham" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "–10) 25 26 In the seventh month, however, Ishmael son of Nethaniah, the son of Elishama, who was a member of the royal family, came with ten men and struck down and killed Gedaliah, along with the Judeans and Chaldeans who were with Then all the people small him at Mizpah. and great, together with the commanders of the army, arose and fled to Egypt for fear of the Jehoiachin Released from Prison Chaldeans." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 4, + "text": "| 721 along with all the others who remained in Mizpah—over whom Nebuzaradan captain of the guard had appointed Gedaliah son of Ahikam. Ishmael son of Nethaniah took them captive and Johanan Rescues the Captives set off to cross over to the Ammonites. 11 12 When Johanan son of Kareah and all the com- manders of the armies with him heard of all the crimes that Ishmael son of Nethaniah had com- they took all their men and went to mitted, fight Ishmael son of Nethaniah. And they found 13 him near the great pool in Gibeon. 14 When all the people with Ishmael saw Johanan son of Kareah and all the commanders of the army with him, they rejoiced, and all the peo- ple whom Ishmael had taken captive at Mizpah 15 turned and went over to Johanan son of Kareah. But Ishmael son of Nethaniah and eight of his men escaped from Johanan and went to the 16 Ammonites. b Then Johanan son of Kareah and all the com- manders of the armies with him took the whole remnant of the people from Mizpah whom he had recovered from Ishmael son of Nethaniah after Ishmael had killed Gedaliah son of Ahikam: the soldiers, women, children, and court offi- And he had brought back from Gibeon. cials 18 they went and stayed in Geruth Chimham, near c to Bethlehem, in order to proceed into Egypt escape the Chaldeans. For they were afraid of the Chaldeans because Ishmael son of Nethaniah had struck down Gedaliah son of Ahikam, whom A Warning against Going to Egypt the king of Babylon had appointed over the land. 17 42 d" + }, + { + "verseNum": 5, + "text": "5 19 6 Then they said to Jeremiah, “May the LORD be a true and faithful witness against us if we do not act upon every word that the LORD your God Whether it is pleasant or sends you to tell us. unpleasant, we will obey the voice of the LORD our God to whom we are sending you, so that it may go well with us when we obey the voice of 7 the LORD our God!” 8 After ten days the word of the LORD came to Jeremiah, and he summoned Johanan son of Ka- reah, all the commanders of the forces who were with him, and all the people from the least to the 9 greatest. 10 Jeremiah told them, “Thus says the LORD, the God of Israel, to whom you sent me to present ‘If you will indeed stay in this your petition: land, then I will build you up and not tear you down; I will plant you and not uproot you, for I will relent of the disaster I have brought upon 11 you. Do not be afraid of the king of Babylon, whom you now fear; do not be afraid of him, declares 12 the LORD, for I am with you to save you and deliver you from him. And I will show you compassion, and he will have compassion on you 13 and restore you to your own land.’ 15 14 But if you say, ‘We will not stay in this land,’ and you thus disobey the voice of the LORD your and if you say, ‘No, but we will go to the God, land of Egypt and live there, where we will not see war or hear the sound of the ram’s horn or then hear the word of the hunger for bread,’ LORD, O remnant of Judah! This is what the LORD of Hosts, the God of Israel, says: ‘If y" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 2, + "text": ". Hebrew; LXX Azariah d 1 722 |" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 18, + "text": "| 723 9 As a result, you will be cut off and will become an object of cursing and reproach among all the Have you forgotten the nations of the earth. wickedness of your fathers and of the kings of Ju- dah and their wives, as well as the wickedness that you and your wives committed in the land of To this Judah and in the streets of Jerusalem? day they have not humbled themselves or shown reverence, nor have they followed My instruc- tion or the statutes that I set before you and your 11 fathers. 10 12 Therefore this is what the LORD of Hosts, the God of Israel, says: I will set My face to bring dis- And I will take aster and to cut off all Judah. away the remnant of Judah who have resolved to go to the land of Egypt to reside there; they will meet their end. They will all fall by the sword or be consumed by famine. From the least to the greatest, they will die by sword or famine; and they will become an object of cursing and horror, 13 of vilification and reproach. 14 I will punish those who live in the land of Egypt, just as I punished Jerusalem, by sword and famine and plague, so that none of the remnant of Judah who have gone to reside in Egypt will escape or survive to return to the land of Judah, where they long to return and live; for none will The Stubbornness of the People return except a few fugitives.” 15 g 16 said to Jeremiah, 17 Then all the men who knew that their wives were burning incense to other gods, and all the women standing by—a great assembly—along with a" + }, + { + "verseNum": 19, + "text": "19 30 “Moreover,” said the women, “when we burned incense to the Queen of Heaven and poured out drink offerings to her, was it without our husbands’ knowledge that we made sacrifi- cial cakes in her image and poured out drink of- Calamity for the Jews ferings to her?” 20 know that My threats of harm against you will This is what the LORD says: Be- surely stand. hold, I will deliver Pharaoh Hophra king of Egypt into the hands of his enemies who seek his life, just as I delivered Zedekiah king of Judah into the hand of Nebuchadnezzar king of Babylon, the en- Jeremiah’s Message to Baruch emy who was seeking his life.” 21 22 Then Jeremiah said to all the people, both men and women, who were answering him, “As for the incense you burned in the cities of Judah and in the streets of Jerusalem—you, your fathers, your kings, your officials, and the people of the land—did the LORD not remember and bring this to mind? So the LORD could no longer endure the evil deeds and detestable acts you committed, and your land became a desolation, a horror, and an object of cursing, without inhab- itant, as it is this day. Because you burned incense and sinned against the LORD and did not obey the voice of the LORD or walk in His in- struction, His statutes, and His testimonies, this 24 disaster has befallen you, as you see today.” 23 Then Jeremiah said to all the people, including all the women, “Hear the word of the LORD, all 25 those of Judah who are in the land of Egypt. This is what the LORD o" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 27, + "text": "| 725 and the warrior cannot escape! In the north by the River Euphrates they stumble and fall. Who is this, rising like the Nile, 8 like rivers whose waters churn? Egypt rises like the Nile, and its waters churn like rivers, boasting, ‘I will rise and cover the earth; 7 9 18 ‘Pharaoh king of Egypt was all noise; he has let the appointed time pass him by.’ As surely as I live, declares the King, whose name is the LORD of Hosts, there will come one who is like Tabor among 19 the mountains and like Carmel by the sea. Pack your bags for exile, I will destroy the cities and their people.’ O daughter dwelling in Egypt! Advance, O horses! Race furiously, a O chariots! 20 For Memphis will be laid waste, destroyed and uninhabited. Let the warriors come forth— Egypt is a beautiful heifer, Cush 10 and Put carrying their shields, 21 but a gadfly from the north is coming men of Lydia drawing the bow. For that day belongs to the Lord GOD of Hosts, a day of vengeance against His foes. The sword will devour until it is satisfied, until it is quenched with their blood. For the Lord GOD of Hosts will hold a sacrifice 11 in the land of the north by the River Euphrates. Go up to Gilead for balm, O Virgin Daughter of Egypt! In vain you try many remedies, 12 but for you there is no healing. The nations have heard of your shame, and your outcry fills the earth, because warrior stumbles over warrior 13 against her. Even the mercenaries among her are like fattened calves. They too will turn back; to" + }, + { + "verseNum": 28, + "text": "28 Jacob will return to quiet and ease, with no one to make him afraid. And you, My servant Jacob, do not be afraid, declares the LORD, for I am with you. Though I will completely destroy all the nations to which I have banished you, I will not completely destroy you. Yet I will discipline you justly, and will by no means leave you Judgment on the Philistines (Zeph. 2:4–7) unpunished.” 47 This is the word of the LORD that came to Jeremiah the prophet about the 2 Philistines before Pharaoh struck down Gaza. This is what the LORD says: “See how the waters are rising from the north and becoming an overflowing torrent. They will overflow the land and its fullness, the cities and their inhabitants. The people will cry out, 3 and all who dwell in the land will wail at the sound of the galloping hooves of stallions, the rumbling of chariots, and the clatter of their wheels. The fathers will not turn back for their sons; 4 their hands will hang limp. For the day has come to destroy all the Philistines, to cut off from Tyre and Sidon every remaining ally. Indeed, the LORD is about to destroy the 5 Philistines, a the remnant from the coasts of Caphtor. The people of Gaza will shave their heads in mourning; b Ashkelon will be silenced. O remnant of their valley, 6 how long will you gash yourself? ‘Alas, O sword of the LORD, how long until you rest? Return to your sheath; cease and be still!’ 7 How can it rest Judgment on Moab" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 4, + "text": "and" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "–47) refuge.” 15 This is the burden against Moab: Ar in Moab is ruined, 2 destroyed in a night! Kir in Moab is devastated, destroyed in a night! Dibon goes up to its temple to weep at its high places. Moab wails over Nebo, as well as over Medeba. Every head is shaved, a 5 every beard is cut off. Zoar, like a heifer three years of age. b 7 Poplars Dibon Or Or wordplay on (see verse 2), sounds like the Hebrew for their voices are heard as far as Jahaz. Therefore the soldiers of Moab cry out; 5 their souls tremble within. My heart cries out over Moab; a her fugitives flee as far as Zoar, as far as Eglath-shelishiyah. With weeping they ascend the slope of Luhith; 6 they lament their destruction on the road to Horonaim. The waters of Nimrim are dried up, and the grass is withered; the vegetation is gone, 7 and the greenery is no more. b So they carry their wealth and belongings 8 over the Brook of the Willows. For their outcry echoes to the border of Moab. 9 Their wailing reaches Eglaim; it is heard in Beer-elim. c The waters of Dimon are full of blood, but I will bring more upon Dimon— a lion upon the fugitives of Moab Moab’s Destruction" + }, + { + "verseNum": 35, + "text": "| 727 13 who will pour him out. They will empty his vessels and shatter his jars. Then Moab will be ashamed of Chemosh, 14 just as the house of Israel was ashamed when they trusted in Bethel. 27 so Moab will wallow in his own vomit, and he will also become a laughingstock. Was not Israel your object of ridicule? Was he ever found among thieves? 28 For whenever you speak of him you shake your head. 15 How can you say, ‘We are warriors, mighty men ready for battle’? Moab has been destroyed Abandon the towns and settle among the rocks, O dwellers of Moab! and its towns have been invaded; 29 Be like a dove the best of its young men have gone down in the slaughter, 16 declares the King, whose name is the LORD of Hosts. 17 Moab’s calamity is at hand, and his affliction is rushing swiftly. Mourn for him, all you who surround him, everyone who knows his name; tell how the mighty scepter is shattered— 18 the glorious staff! Come down from your glory; sit on parched ground, O daughter dwelling in Dibon, for the destroyer of Moab has come against 19 you; he has destroyed your fortresses. Stand by the road and watch, O dweller of Aroer! 20 Ask the man fleeing or the woman escaping, ‘What has happened?’ Moab is put to shame, for it has been shattered. Wail and cry out! Declare by the Arnon that Moab is destroyed. a 21 22 23 Judgment has come upon the high plain— upon Holon, Jahzah, and Mephaath, upon Dibon, Nebo, and Beth-diblathaim, 24 upon Kiriathaim, Beth-gamul, and Beth- meon, upon Ke" + }, + { + "verseNum": 36, + "text": "36 Therefore My heart laments like a flute The people of Chemosh have perished; for Moab; it laments like a flute for the men of Kir-heres, because the wealth they acquired has perished. 37 For every head is shaved and every beard is clipped; 38 on every hand is a gash, and around every waist is sackcloth. On all the rooftops of Moab and in the public squares, everyone is mourning; for I have shattered Moab like an unwanted jar,” 39 declares the LORD. “How shattered it is! How they wail! How Moab has turned his back in shame! Moab has become an object of ridicule 40 and horror to all those around him.” For this is what the LORD says: 41 “Behold, an eagle swoops down and spreads his wings against Moab. Kirioth has been taken, and the strongholds seized. 42 In that day the heart of Moab’s warriors will be like the heart of a woman in labor. Moab will be destroyed as a nation 43 because he vaunted himself against the LORD. Terror and pit and snare await you, O dweller of Moab,” declares the LORD. 44 “Whoever flees the panic will fall into the pit, and whoever climbs from the pit will be caught in the snare. For I will bring upon Moab the year of their punishment,” declares the LORD. 45 “Those who flee will stand helpless in Heshbon’s shadow, because fire has gone forth from Heshbon and a flame from within Sihon. It devours the foreheads of Moab 46 a 47 and the skulls of the sons of tumult. restore the fortunes of Moab c 4 Woe to you, O Moab! b 1 their king d 6 your valleys flowi" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 7, + "text": "–22) 9 1 This is the vision of Obadiah: This is what the Lord GOD says about Edom— We have heard a message from the LORD; an envoy has been sent among the nations to say, “Rise up, 2 and let us go to battle against her!”— “Behold, I will make you small among the 3 nations; you will be deeply despised. a The pride of your heart has deceived you, O dwellers in the clefts of the rocks whose habitation is the heights, who say in your heart, 4 ‘Who can bring me down to the ground?’ Though you soar like the eagle and make your nest among the stars, even from there I will bring you declares the LORD. 5 down,” “If thieves came to you, if robbers by night— oh, how you will be ruined— would they not steal only what they wanted? If grape gatherers came to you, 6 would they not leave some gleanings? But how Esau will be pillaged, 7 his hidden treasures sought out! All the men allied with you will drive you to the border; the men at peace with you b will deceive and overpower you. Those who eat your bread will set a trap for you without your awareness of it. 8 In that day, declares the LORD, will I not destroy the wise men of Edom and the men of understanding in the retreats of Sela in the mountains of Esau? b 7 a 3 Then your mighty men, O Teman, will be terrified, 10 so that everyone in the mountains of Esau will be cut down in the slaughter. Because of the violence against your brother Jacob, 11 you will be covered with shame and cut off forever. On the day you stood aloof while strange" + }, + { + "verseNum": 27, + "text": "| 729 7 Concerning Edom, this is what the LORD of Hosts says: “Is there no longer wisdom in Teman? 8 Has counsel perished from the prudent? Has their wisdom decayed? Turn and run! Lie low, O dwellers of Dedan, for I will bring disaster on Esau at the time I punish him. 9 If grape gatherers came to you, along with their neighbors,” says the LORD, 19 “no one will dwell there; no man will abide there. Behold, one will come up like a lion from the thickets of the Jordan to the watered pasture. For in an instant I will chase Edom from her land. Who is the chosen one I will appoint for this? would they not leave some gleanings? For who is like Me, and who can challenge Were thieves to come in the night, 10 would they not steal only what they 20 Me? What shepherd can stand against Me?” wanted? But I will strip Esau bare; I will uncover his hiding places, and he will be unable to conceal himself. His descendants will be destroyed 11 along with his relatives and neighbors, and he will be no more. Abandon your orphans; I will preserve their 12 lives. Let your widows trust in Me.” 13 For this is what the LORD says: “If those who do not deserve to drink the cup must drink it, can you possibly remain unpunished? You will not go For by unpunished, for you must drink it too. Myself I have sworn, declares the LORD, that Bozrah will become a desolation, a disgrace, a ruin, and a curse, and all her cities will be in ruins 14 forever.” I have heard a message from the LORD; an envoy has been sen" + }, + { + "verseNum": 28, + "text": "Judgment on Kedar and Hazor 28 Concerning Kedar and the kingdoms of Hazor, which Nebuchadnezzar king of Babylon de- feated, this is what the LORD says: 29 “Rise up, advance against Kedar, and destroy the people of the east! They will take their tents and flocks, their tent curtains and all their goods. They will take their camels for themselves. They will shout to them: ‘Terror is on 30 every side!’ Run! Escape quickly! Lie low, O residents of Hazor,” declares the LORD, “for Nebuchadnezzar king of Babylon has drawn up a plan against you; he has devised a strategy against you. 31 Rise up, advance against a nation at ease, declares the LORD. one that dwells securely,” “They have no gates or bars; 32 they live alone. Their camels will become plunder, and their large herds will be spoil. I will scatter to the wind in every direction those who shave their temples; I will bring calamity on them declares the LORD. 33 from all sides,” I will bring disaster upon them, even My fierce anger,” declares the LORD. “I will send out the sword after them 38 until I finish them off. I will set My throne in Elam, and destroy its king and officials,” declares the LORD. 39 “Yet in the last days, b I will restore Elam from captivity, ” declares the LORD. A Prophecy against Babylon 50 This is the word that the LORD spoke through Jeremiah the prophet concern- c 2 ing Babylon and the land of the Chaldeans: “Announce and declare to the nations; lift up a banner and proclaim it; hold nothing back when" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 24, + "text": "| 731 and their enemies said, ‘We are not guilty, for they have sinned against the LORD, 8 their true pasture, the LORD, the hope of their fathers.’ Flee from the midst of Babylon; 9 depart from the land of the Chaldeans; be like the he-goats that lead the flock. For behold, I stir up and bring against Babylon an assembly of great nations from the land of the north. They will line up against her; from the north she will be captured. Their arrows will be like skilled warriors who do not return empty-handed. a 10 Chaldea will be plundered; all who plunder her will have their fill,” declares the LORD. Babylon’s Fall Is Certain 11 “Because you rejoice, because you sing in triumph— you who plunder My inheritance— and the one who wields the sickle at harvest time. In the face of the oppressor’s sword, each will turn to his own people, each will flee to his own land. Redemption for God’s People 17 Israel is a scattered flock, chased away by lions. The first to devour him was the king of Assyria; the last to crush his bones 18 was Nebuchadnezzar king of Babylon.” Therefore this is what the LORD of Hosts, the God of Israel, says: “I will punish the king of Babylon and 19 his land as I punished the king of Assyria. I will return Israel to his pasture, and he will graze on Carmel and Bashan; his soul will be satisfied 20 on the hills of Ephraim and Gilead. In those days and at that time, 12 because you frolic like a heifer treading grain declares the LORD, and neigh like stallions, your" + }, + { + "verseNum": 25, + "text": "25 35 The LORD has opened His armory A sword is against the Chaldeans, and brought out His weapons of wrath, declares the LORD, for this is the work of the Lord GOD 36 against those who live in Babylon, 26 of Hosts in the land of the Chaldeans. Come against her from the farthest border. Break open her granaries; pile her up like mounds of grain. 27 Devote her to destruction; leave her no survivors. Kill all her young bulls; let them go down to the slaughter. Woe to them, for their day has come— the time of their punishment. 28 Listen to the fugitives and refugees from the land of Babylon, declaring in Zion the vengeance of the LORD 29 our God, the vengeance for His temple. Summon the archers against Babylon, all who string the bow. Encamp all around her; let no one escape. Repay her according to her deeds; do to her as she has done. For she has defied the LORD, the Holy One of Israel. 30 Therefore, her young men will fall in the streets, and all her warriors will be silenced in declares the LORD. 31 that day,” “Behold, I am against you, O arrogant one,” declares the Lord GOD of Hosts, 32 “for your day has come, the time when I will punish you. The arrogant one will stumble and fall with no one to pick him up. And I will kindle a fire in his cities to consume all those around him.” 33 and against her officials and wise men. A sword is against her false prophets, and they will become fools. A sword is against her warriors, 37 and they will be filled with terror. A sword is agai" + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 16, + "text": "| 733 45 9 Therefore hear the plans “We tried to heal Babylon, that the LORD has drawn up against but she could not be healed. Babylon Abandon her! and the strategies He has devised against the land of the Chaldeans: Surely the little ones of the flock will be Let each of us go to his own land, for her judgment extends to the sky and reaches to the clouds.” 10 dragged away; 46 certainly their pasture will be made desolate because of them. At the sound of Babylon’s capture the earth 11 “The LORD has brought forth our vindication; come, let us tell in Zion what the LORD our God has accomplished.” d will quake; Judgment on Babylon a cry will be heard among the nations. 51 This is what the LORD says: a “Behold, I will stir up against Babylon 2 and against the people of Leb-kamai the spirit of a destroyer. I will send strangers to Babylon to winnow her and empty her land; for they will come against her from every side 3 in her day of disaster. Do not let the archer bend his bow or put on his armor. Do not spare her young men; 4 b devote all her army to destruction! And they will fall slain in the land of the c 5 Chaldeans, and pierced through in her streets. For Israel and Judah have not been abandoned by their God, the LORD of Hosts, though their land is full of guilt 6 before the Holy One of Israel.” Flee from Babylon! Escape with your lives! Do not be destroyed in her punishment. For this is the time of the LORD’s vengeance; 7 He will pay her what she deserves. Babylon was a go" + }, + { + "verseNum": 17, + "text": "17 Every man is senseless and devoid of 28 Appoint a captain against her; knowledge; every goldsmith is put to shame by his bring up horses like swarming locusts. Prepare the nations for battle against her— idols. 18 For his molten images are a fraud, and there is no breath in them. They are worthless, a work to be mocked. 19 In the time of their punishment they will perish. The Portion of Jacob is not like these, for He is the Maker of all things, and of the tribe of His inheritance— the LORD of Hosts is His name. Babylon’s Punishment 20 “You are My war club, My weapon for battle. With you I shatter nations; 21 with you I bring kingdoms to ruin. With you I shatter the horse and rider; 22 with you I shatter the chariot and driver. With you I shatter man and woman; with you I shatter the old man and the youth; 23 with you I shatter the young man and the maiden. With you I shatter the shepherd and his flock; with you I shatter the farmer and his the kings of the Medes, 29 their governors and all their officials, and all the lands they rule. The earth quakes and writhes because the LORD’s intentions against Babylon stand: 30 to make the land of Babylon a desolation, without inhabitant. The warriors of Babylon have stopped fighting; they sit in their strongholds. Their strength is exhausted; 31 they have become like women. Babylon’s homes have been set ablaze, the bars of her gates are broken. One courier races to meet another, and messenger follows messenger, to announce to the" + }, + { + "verseNum": 45, + "text": ". Lament over Babylon 20" + }, + { + "verseNum": 58, + "text": "| 735 37 I will dry up her sea and make her springs run dry. Babylon will become a heap of rubble, a 49 because the destroyers from the north declares the LORD. will come against her,” a haunt for jackals, 38 an object of horror and scorn, without inhabitant. 39 They will roar together like young lions; they will growl like lion cubs. While they are flushed with heat, I will serve them a feast, and I will make them drunk so that they may revel; then they will fall asleep forever and never 40 wake up, declares the LORD. I will bring them down like lambs to the 41 slaughter, b like rams with male goats. “Babylon must fall on account of the slain of Israel, 50 just as the slain of all the earth have fallen because of Babylon. You who have escaped the sword, depart and do not linger! 51 Remember the LORD from far away, and let Jerusalem come to mind.” “We are ashamed because we have heard reproach; disgrace has covered our faces, 52 because foreigners have entered the holy places of the LORD’s house.” “Therefore, behold, the days are coming,” How Sheshach has been captured! The praise of all the earth has been seized. declares the LORD, “when I will punish her idols, 42 What a horror Babylon has become among the nations! 43 The sea has come up over Babylon; she is covered in turbulent waves. Her cities have become a desolation, a dry and arid land, a land where no one lives, 44 where no son of man passes through. I will punish Bel in Babylon. I will make him spew out what he swal" + }, + { + "verseNum": 59, + "text": "6 So the labor of the people will be for nothing; the nations will exhaust themselves to fuel Jeremiah’s Message to Seraiah the flames.” 59 60 This is the message that Jeremiah the prophet gave to the quartermaster Seraiah son of Neriah, the son of Mahseiah, when he went to Babylon with King Zedekiah of Judah in the fourth year of Jeremiah had written on a Zedekiah’s reign. single scroll about all the disaster that would come upon Babylon—all these words that had 61 been written concerning Babylon. And Jeremiah said to Seraiah, “When you get to 62 Babylon, see that you read all these words aloud, and say, ‘O LORD, You have promised to cut off this place so that no one will remain—neither man nor beast. Indeed, it will be desolate 63 forever.’ 64 When you finish reading this scroll, tie a stone Then you to it and cast it into the Euphrates. are to say, ‘In the same way Babylon will sink and never rise again, because of the disaster I will bring upon her. And her people will grow weary.’ The Fall of Jerusalem Recounted Here end the words of Jeremiah." + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "–3) 18 Zedekiah was twenty-one years old when he became king, and he reigned in Jerusalem eleven years. His mother’s name was Hamutal daughter 19 of Jeremiah; she was from Libnah. 20 And Zedekiah did evil in the sight of the LORD, For because of the just as Jehoiakim had done. anger of the LORD, all this happened in Jerusalem and Judah, until He finally banished them from His presence. And Zedekiah also rebelled against the king of Nebuchadnezzar Besieges Jerusalem Babylon. (2 Chronicles 36:15–21 ;" + }, + { + "verseNum": 6, + "text": "); MT does not include e 17 18 cubits d 4 . Or is approxi- mately 27 feet or 8.2 meters. is approximately 4.5 feet or 1.4 meters. the captain of the army, who had enlisted the people of the land, and sixty men who were 20 found in the city. 21 Nebuzaradan captain of the guard took them and brought them to the king of Babylon at Rib- lah. There at Riblah in the land of Hamath, the king of Babylon struck them down and put them to death. So Judah was taken into exile, away Gedaliah Governs in Judah from its own land." + }, + { + "verseNum": 12, + "text": "–23) 8 9 On the seventh day of the fifth month, in the nineteenth year of Nebuchadnezzar’s reign over Babylon, Nebuzaradan captain of the guard, a servant of the king of Babylon, entered Jerusa- He burned down the house of the LORD, lem. the royal palace, and all the houses of Jerusa- And the whole lem—every significant building. army of the Chaldeans under the captain of the 11 guard broke down the walls around Jerusalem. 10 12 Then Nebuzaradan captain of the guard carried into exile the people who remained in the city, along with the deserters who had defected to the king of Babylon and the rest of the popula- But the captain of the guard left behind tion. some of the poorest of the land to tend the vine- 13 yards and fields. 14 Moreover, the Chaldeans broke up the bronze pillars and stands and the bronze Sea in the house of the LORD, and they carried the bronze They also took away the pots, to Babylon. shovels, wick trimmers, dishes, and all the arti- The cles of bronze used in the temple service. captain of the guard also took away the censers and sprinkling bowls—anything made of pure 16 gold or fine silver. 15 e 17 As for the two pillars, the Sea, and the movable stands that Solomon had made for the house of the LORD, the weight of the bronze from all these Each pillar was articles was beyond measure. eighteen cubits tall. The bronze capital atop one with a network of pillar was three cubits high, bronze pomegranates all around. The second pil- Captives Carried to Babyl" + }, + { + "verseNum": 21, + "text": "" + }, + { + "verseNum": 24, + "text": "–30) f 18 but the army They headed toward the Arabah, of the Chaldeans pursued the king and overtook 6 him in the plains of Jericho, and his whole army deserted him. The Chaldeans seized the king and brought him up to the king of Babylon at Rib- He encamped outside it and they built a 1 lah, where they pronounced judgment on him. c 4 b 3 The captain of the guard also took away Seraiah the chief priest, Zephaniah the priest of second rank, and the three doorkeepers. Of those still in the city, he took a court official who had been appointed over the men of war, as well as five royal advisors. He also took the scribe of fourth 19 Literally f 17 3 cubits That is, the Babylonians; also in verses 5, 6, 10, 13, 24, 25, and 26 the Jordan Valley Probable reading (see" + }, + { + "verseNum": 31, + "text": "–34) 27 On the twenty-seventh day of the twelfth month of the thirty-seventh year of the exile of Judah’s King Jehoiachin, in the year Evil-mer- King odach became king of Babylon, he released And he spoke Jehoiachin of Judah from prison. kindly to Jehoiachin and set his throne above the thrones of the other kings who were with him in 29 Babylon. 28 b So Jehoiachin changed out of his prison 30 clothes, and he dined regularly at the king’s table And the king provided for the rest of his life. Jehoiachin a daily portion for the rest of his life. a 23 Jaazaniah Jezaniah b 27 lifted up the head of is a variant of ; see" + }, + { + "verseNum": 34, + "text": "| 737 27 There at Riblah in the land of Hamath, Riblah. the king of Babylon struck them down and put them to death. So Judah was taken into exile, 28 away from its own land. These are the people Nebuchadnezzar carried away: 29 in the seventh year, 3,023 Jews; in Nebuchadnezzar’s eighteenth year, 832 30 people from Jerusalem; in Nebuchadnezzar’s twenty-third year, Nebuzaradan captain of the guard carried away 745 Jews. Jehoiachin Released from Prison So in all, 4,600 people were taken away. (2 Kings 25:27–30) 31 a On the twenty-fifth day of the twelfth month of the thirty-seventh year of the exile of Jehoiachin king of Judah, in the first year of the reign of Evil- Jehoi- merodach king of Babylon, he pardoned achin king of Judah and released him from prison. And he spoke kindly to Jehoiachin and set his throne above the thrones of the other 33 kings who were with him in Babylon. 32 34 So Jehoiachin changed out of his prison clothes, and he dined regularly at the king’s table for the rest of his life. And the king of Babylon provided Jehoiachin a daily portion for the rest of his life, until the day of his death. a 21 b 21 4 fingers c 22 5 cubits Each pillar was approximately 27 feet high and 18 feet in circumference (8.2 meters high and 5.5 meters in circumference). or 2.3 meters. is approximately 2.9 inches or 7.4 centimeters. is approximately 7.5 feet Lamentations How Lonely Lies the City! (2 Kings 24:10–17) a 1 lonely lies the city, How once so full of people! 8 Her enemies" + } + ] + } + ] + }, + { + "name": "Lamentations", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 8, + "text": "| 739 The Lord has rejected a all the mighty men in my midst; He has summoned an army against me to crush my young warriors. Like grapes in a winepress, 16 the Lord has trampled the Virgin Daughter of Judah. For these things I weep; my eyes flow with tears. For there is no one nearby to comfort me, no one to revive my soul. My children are destitute 17 because the enemy has prevailed. Zion stretches out her hands, but there is no one to comfort her. The LORD has decreed against Jacob that his neighbors become his foes. Jerusalem has become 18 an unclean thing among them. The LORD is righteous, yet I rebelled against His command. Listen, all you people; look upon my suffering. My young men and maidens have gone into captivity. 19 I called out to my lovers, but they have betrayed me. My priests and elders perished in the city 20 while they searched for food to keep themselves alive. See, O LORD, how distressed I am! I am churning within; my heart is pounding within me, for I have been most rebellious. 21 Outside, the sword bereaves; inside, there is death. People have heard my groaning, but there is no one to comfort me. All my enemies have heard of my trouble; they are glad that You have caused it. May You bring the day You have announced, so that they may become like me. 22 Let all their wickedness come before You, and deal with them as You have dealt with me because of all my transgressions. For my groans are many, b 1 has set a time for me and my heart is faint. a 15 b 2 Ho" + }, + { + "verseNum": 9, + "text": "He stretched out a measuring line and did not withdraw His hand from destroying. He made the ramparts and walls lament; 9 together they waste away. Her gates have sunk into the ground; He has destroyed and shattered their bars. Her king and her princes are exiled among the nations, the law is no more, and even her prophets 10 11 find no vision from the LORD. The elders of the Daughter of Zion sit on the ground in silence. They have thrown dust on their heads and put on sackcloth. The young women of Jerusalem have bowed their heads to the ground. My eyes fail from weeping; I am churning within. My heart is poured out in grief over the destruction of the daughter of my people, 12 because children and infants faint in the streets of the city. They cry out to their mothers: “Where is the grain and wine?” as they faint like the wounded in the streets of the city, as their lives fade away 13 in the arms of their mothers. What can I say for you? To what can I compare you, O Daughter of Jerusalem? To what can I liken you, that I may console you, O Virgin Daughter of Zion? For your wound is as deep as the sea. 14 Who can ever heal you? The visions of your prophets were empty and deceptive; they did not expose your guilt to ward off your captivity. 15 The burdens they envisioned for you were empty and misleading. All who pass by clap their hands at you in scorn. “Is this the city that was called the perfection of beauty, the joy of all the earth?” 16 All your enemies open their mouths" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 44, + "text": "| 741 a 3 2 am the man who has seen affliction I under the rod of God’s wrath. He has driven me away and made me walk 3 in darkness instead of light. Indeed, He keeps turning His hand against me all day long. He has worn away my flesh and skin; 5 He has shattered my bones. He has besieged me and surrounded me 6 with bitterness and hardship. He has made me dwell in darkness like those dead for ages. 4 7 He has walled me in so I cannot escape; 8 He has weighed me down with chains. Even when I cry out and plead for help, 9 He shuts out my prayer. 10 He has barred my ways with cut stones; He has made my paths crooked. 11 He is a bear lying in wait, a lion hiding in ambush. He forced me off my path and tore me 12 to pieces; He left me without help. He bent His bow 13 and set me as the target for His arrow. 14 He pierced my kidneys with His arrows. 15 I am a laughingstock to all my people; they mock me in song all day long. He has filled me with bitterness; 16 He has intoxicated me with wormwood. 17 18 He has ground my teeth with gravel and trampled me in the dust. My soul has been deprived of peace; I have forgotten what prosperity is. So I say, “My strength has perished, The Prophet’s Hope along with my hope from the LORD.” 19 20 Remember my affliction and wandering, the wormwood and the gall. 21 Surely my soul remembers and is humbled within me. 25 28 24 They are new every morning; great is Your faithfulness! “The LORD is my portion,” says my soul, “therefore I will hope in Him." + }, + { + "verseNum": 45, + "text": "45 The Distress of Zion You have made us scum and refuse 46 among the nations. 47 All our enemies open their mouths against us. Panic and pitfall have come upon us— 48 devastation and destruction. Streams of tears flow from my eyes 49 over the destruction of the daughter of my people. 50 My eyes overflow unceasingly, without relief, 51 until the LORD looks down from heaven and sees. My eyes bring grief to my soul because of all the daughters of my city. 52 54 55 58 53 Without cause my enemies hunted me like a bird. They dropped me alive into a pit and cast stones upon me. The waters flowed over my head, and I thought I was going to die. 56 I called on Your name, O LORD, out of the depths of the Pit. 57 You heard my plea: “Do not ignore my cry for relief.” You drew near when I called on You; You said, “Do not be afraid.” 59 You defend my cause, O Lord; You redeem my life. You have seen, O LORD, the wrong done 60 to me; vindicate my cause! 61 You have seen all their malice, all their plots against me. 62 O LORD, You have heard their insults, all their plots against me— the slander and murmuring of my 63 assailants against me all day long. 64 When they sit and when they rise, see how they mock me in song. You will pay them back what they deserve, O 65 LORD, a 4 2 the gold has become tarnished, How the pure gold has become dull! The gems of the temple lie scattered on every street corner. How the precious sons of Zion, once worth their weight in pure gold, are now esteemed as jar" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 22, + "text": "| 743 The presence of the LORD has scattered 9 there is no one to deliver us from their 13 14 16 17 18 19 20 The kings of the earth did not believe, nor any people of the world, that an enemy or a foe could enter the gates of Jerusalem. But this was for the sins of her prophets and the guilt of her priests, who shed the blood of the righteous in her midst. They wandered blind in the streets, defiled by this blood, so that no one dared 15 to touch their garments. “Go away! Unclean!” men shouted at them. “Away, away! Do not touch us!” So they fled and wandered. Among the nations it was said, “They can stay here no longer.” them; He regards them no more. The priests are shown no honor; the elders find no favor. All the while our eyes were failing as we looked in vain for help. We watched from our towers They stalked our every step, so that we could not walk in our streets. Our end drew near, our time ran out, for our end had come! Those who chased us were swifter than the eagles in the sky; they pursued us over the mountains and ambushed us in the wilderness. The LORD’s anointed, the breath of our life, was captured in their pits. We had said of him, 21 “Under his shadow we will live among the nations.” So rejoice and be glad, O Daughter of Edom, you who dwell in the land of Uz. Yet the cup will pass to you as well; 22 you will get drunk and expose yourself. O Daughter of Zion, your punishment is a complete; He will not prolong your exile. But He will punish your iniquity, a 22" + } + ] + } + ] + }, + { + "name": "Ezekiel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) the moon and stars to govern the night. His loving devotion endures forever. 1 10 He struck down the firstborn of Egypt His loving devotion endures forever. 11 and brought Israel out from among them His loving devotion endures forever. 12 His loving devotion endures forever. with a mighty hand and an outstretched arm. a 13 His loving devotion endures forever. in two He divided the Red Sea the Sea of Reeds a 13 By the rivers of Babylon we sat and wept c 2 when we remembered Zion. There on the willows 3 we hung our harps, for there our captors requested a song; our tormentors demanded songs of joy: 4 “Sing us a song of Zion.” How can we sing a song of the LORD 5 in a foreign land? If I forget you, O Jerusalem, b 15 shook off c 2 poplars may my right hand cease to function. Or ; also in verse 15 Hebrew Or 6 May my tongue cling to the roof of my mouth if I do not remember you, 7 if I do not exalt Jerusalem as my greatest joy! Remember, O LORD, the sons of Edom on the day Jerusalem fell: “Destroy it,” they said, 8 “tear it down to its foundations!” O Daughter of Babylon, doomed to destruction, blessed is he who repays you 9 as you have done to us. Blessed is he who seizes your infants and dashes them against the rocks. Psalm 138 A Thankful Heart Of David. 1 I give You thanks with all my heart; 2 before the gods I sing Your praises. I bow down toward Your holy temple and give thanks to Your name for Your loving devotion and Your faithfulness; You have exalted Your name 3 and Yo" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 17, + "text": "| 745 2 3 So I opened my mouth, and He fed me the scroll. “Son of man,” He said to me, “eat and fill your stomach with this scroll I am giving you.” So I ate, and it was as sweet as honey in my 4 mouth. 6 Then He said to me, “Son of man, go now to the 5 house of Israel and speak My words to them. For you are not being sent to a people of unfa- miliar speech or difficult language, but to the house of Israel— not to the many peoples of unfamiliar speech and difficult language whose words you cannot understand. Surely if I had sent you to them, they would have listened to 7 you. But the house of Israel will be unwilling to listen to you, since they are unwilling to listen to Me. For the whole house of Israel is hard-headed and 8 hard-hearted. 9 Behold, I will make your face as hard as their faces, and your forehead as hard as their fore- heads. I will make your forehead like a dia- mond, harder than flint. Do not be afraid of them or dismayed at their presence, even though they 10 are a rebellious house.” “Son of man,” He added, “listen carefully to all 11 the words I speak to you, and take them to heart. Go to your people, the exiles; speak to them and tell them, ‘This is what the Lord GOD says,’ 12 whether they listen or refuse to listen.” b Then the Spirit lifted me up, and I heard a great rumbling sound behind me: “Blessed be the glory of the LORD in His dwelling place! It was the sound of the wings of the living creatures brushing against one another and the sound of 14 the" + }, + { + "verseNum": 18, + "text": "18 4 a If I say to the wicked man, ‘You will surely die,’ but you do not warn him or speak out to warn him from his wicked way to save his life, that wicked man will die in his iniquity, and I will But if you hold you responsible for his blood. warn a wicked man and he does not turn from his wickedness and his wicked way, he will die in his 20 iniquity, but you will have saved yourself. 19 b Now if a righteous man turns from his right- eousness and commits iniquity, and I put a stumbling block before him, he will die. If you did and the not warn him, he will die in his sin, righteous acts he did will not be remembered. 21 And I will hold you responsible for his blood. But if you warn the righteous man not to sin, and he does not sin, he will indeed live because he heeded your warning, and you will have saved 22 yourself.” And there the hand of the LORD was upon me, and He said to me, “Get up, go out to the plain, 23 and there I will speak with you.” So I got up and went out to the plain, and be- hold, the glory of the LORD was present there, like the glory I had seen by the River Kebar, and 24 I fell facedown. Then the Spirit entered me and set me on my 25 feet. He spoke with me and said, “Go, shut your- self inside your house. And you, son of man, they will tie with ropes, and you will be bound so that you cannot go out among the people. I will make your tongue stick to the roof of your mouth, and you will be silent and unable to re- 27 buke them, though they are a rebelliou" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7) 15 16 So since you saw no form of any kind on the day the LORD spoke to you out of the fire at Ho- reb, be careful that you do not act corruptly and make an idol for yourselves of any form or 17 shape, whether in the likeness of a male or fe- male, of any beast that is on the earth or bird that flies in the air, or of any creature that crawls on the ground or fish that is in the waters 19 below. 18 When you look to the heavens and see the sun and moon and stars—all the host of heaven—do not be enticed to bow down and worship what a 10 the LORD your God has apportioned to all the b 13 the Ten Words c 24 Be careful that you do not forget the covenant of the LORD your God that He made with you; do not make an idol for yourselves in the form of an- For the LORD ything He has forbidden you. 25 your God is a consuming fire, a jealous God. 24 c 26 After you have children and grandchildren and you have been in the land a long time, if you then act corruptly and make an idol of any form—do- ing evil in the sight of the LORD your God and provoking Him to anger— I call heaven and earth as witnesses against you this day that you will quickly perish from the land that you are crossing the Jordan to possess. You will not live 27 long upon it, but will be utterly destroyed. Then the LORD will scatter you among the peoples, and only a few of you will survive among 28 the nations to which the LORD will drive you. And there you will serve man-made gods of wood and stone, which cannot see o" + }, + { + "verseNum": 9, + "text": "| 747 5 2 “As for you, son of man, take a sharp sword, use it as a barber’s razor, and shave your head and beard. Then take a set of scales and di- When the days of the siege have vide the hair. ended, you are to burn up a third of the hair in- side the city; you are also to take a third and slash it with the sword all around the city; and you are to scatter a third to the wind. For I will unleash a 3 sword behind them. 4 But you are to take a few strands of hair and se- cure them in the folds of your garment. Again, take a few of these, throw them into the fire, and burn them. From there a fire will spread to the 5 whole house of Israel. 6 This is what the Lord GOD says: ‘This is Jerusa- lem, which I have set in the center of the nations, with countries all around her. But she has rebelled against My ordinances more wick- edly than the nations, and against My statutes worse than the countries around her. For her people have rejected My ordinances and have 7 not walked in My statutes.’ a Therefore this is what the Lord GOD says: ‘You have been more insubordinate than the nations around you; you have not walked in My statutes or kept My ordinances, nor have you even con- formed to the ordinances of the nations around 8 you.’ 9 10 Therefore this is what the Lord GOD says: ‘Be- hold, I Myself am against you, Jerusalem, and I will execute judgments among you in the sight of the nations. Because of all your abominations, I will do to you what I have never done before and will neve" + }, + { + "verseNum": 10, + "text": "Me—how I have been grieved by their adulter- ous hearts that turned away from Me, and by their eyes that lusted after idols. So they will loathe themselves for the evil they have done and for all their abominations. And they will know that I am the LORD; I did not declare in vain that 11 I would bring this calamity upon them. 10 12 This is what the Lord GOD says: Clap your hands, stomp your feet, and cry out “Alas!” be- cause of all the wicked abominations of the house of Israel, who will fall by sword and famine and plague. He who is far off will die by the plague, he who is near will fall by the sword, and he who remains will die by famine. So I will vent 13 My fury upon them. 14 Then you will know that I am the LORD, when their slain lie among their idols around their al- tars, on every high hill, on all the mountaintops, and under every green tree and leafy oak—the places where they offered fragrant incense to all their idols. I will stretch out My hand against a them, and wherever they live I will make the land a desolate waste, from the wilderness to Diblah. The Hour of Doom Then they will know that I am the LORD.’ ” 7 2 And the word of the LORD came to me, say- “O son of man, this is what the Lord ing, GOD says to the land of Israel: ‘The end! The end has come 3 upon the four corners of the land. The end is now upon you, The time has come; the day is near; there is panic on the mountains 8 instead of shouts of joy. Very soon I will pour out My wrath upon you and vent M" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 11, + "text": "| 749 I will deal with them according to their conduct, and I will judge them by their own standards. The Vision of Idolatry in the Temple Then they will know that I am the LORD.’ ” 8 In the sixth year, on the fifth day of the sixth month, I was sitting in my house, and the el- ders of Judah were sitting before me; and there 2 the hand of the Lord GOD fell upon me. Then I looked and saw a figure like that of a man. From His waist down His appearance was a 3 like fire, and from His waist up He was as bright He stretched out what as the gleam of amber. looked like a hand and took me by the hair of my head. Then the Spirit lifted me up between earth and heaven and carried me in visions of God to Jerusalem, to the entrance of the north gate of the inner court, where the idol that provokes jeal- 4 ousy was seated. 5 And there I saw the glory of the God of Israel, like the vision I had seen in the plain. “Son of man,” He said to me, “now lift up your eyes to the north.” b So I lifted up my eyes to the north, and in the entrance north of the Altar Gate I saw this idol 6 of jealousy. “Son of man,” He said to me, “do you see what they are doing—the great abominations that the house of Israel is committing—to drive Me far from My sanctuary? Yet you will see even greater 7 abominations.” Then He brought me to the entrance to the 8 court, and I looked and saw a hole in the wall. “Son of man,” He told me, “dig through the wall.” So I dug through the wall and discovered a 9 doorway. Then H" + }, + { + "verseNum": 12, + "text": "12 5 “Son of man,” He said to me, “do you see what the elders of the house of Israel are doing in the darkness , each at the shrine of his own idol? For they are saying, ‘The LORD does not see us; the 13 LORD has forsaken the land.’ ” Again, He told me, “You will see them commit- 14 ting even greater abominations.” Then He brought me to the entrance of the north gate of the house of the LORD, and I saw 15 women sitting there, weeping for Tammuz. a “Son of man,” He said to me, “do you see this? Yet you will see even greater abominations than 16 these.” So He brought me to the inner court of the house of the LORD, and there at the entrance to the temple of the LORD, between the portico and the altar, were about twenty-five men with their backs to the temple of the LORD and their faces toward the east; and they were bowing to the 17 east in worship of the sun. “Son of man,” He said to me, “do you see this? Is it not enough for the house of Judah to commit the abominations they are practicing here, that they must also fill the land with violence and con- tinually provoke Me to anger? Look, they are There- even putting the branch to their nose! fore I will respond with wrath. I will not look on them with pity, nor will I spare them. Although they shout loudly in My ears, I will not listen to Execution of the Idolaters them.” 18 9 Then I heard Him call out in a loud voice, saying, “Draw near, O executioners of the 2 city, each with a weapon of destruction in hand.” And I saw six me" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 13, + "text": "–21) such an abomination and cause Judah to sin. 36 37 Now therefore, about this city of which you say, ‘It will be delivered into the hand of the king of Babylon by sword and famine and plague,’ this I will is what the LORD, the God of Israel, says: surely gather My people from all the lands to which I have banished them in My furious anger 38 and great wrath, and I will return them to this b They will place and make them dwell in safety. be My people, and I will be their God. I will give them one heart and one way, so that they will always fear Me for their own good and for 40 the good of their children after them. 39 I will make an everlasting covenant with them: I will never turn away from doing good to them, and I will put My fear in their hearts, so that they Yes, I will re- will never turn away from Me. joice in doing them good, and I will faithfully plant them in this land with all My heart and with 42 all My soul. 41" + }, + { + "verseNum": 16, + "text": "| 751 Evil in High Places 11 Then the Spirit lifted me up and brought me to the gate of the house of the LORD that faces east. And there at the entrance of the gate were twenty-five men. Among them I saw Jaazaniah son of Azzur and Pelatiah son of And Benaiah, who were leaders of the people. the LORD said to me, “Son of man, these are the men who plot evil and give wicked counsel in this They are saying, ‘Is not the time near to city. build houses? The city is the cooking pot, and we are the meat.’ Therefore prophesy against 5 them; prophesy, O son of man!” 4 2 3 a And the Spirit of the LORD fell upon me and told me to declare that this is what the LORD says: “That is what you are thinking, O house of Israel; 6 and I know the thoughts that arise in your minds. You have multiplied those you killed in this city 7 and filled its streets with the dead. 8 9 Therefore this is what the Lord GOD says: The slain you have laid within this city are the meat, and the city is the pot; but I will remove you from it. You fear the sword, so I will bring the sword against you, declares the Lord GOD. I will bring you out of the city and deliver you into the hands of foreigners, and I will execute judgments against you. You will fall by the sword, and I will judge you even to the borders of Israel. Then 11 you will know that I am the LORD. 10 12 The city will not be a pot for you, nor will you be the meat within it. I will judge you even to the borders of Israel. Then you will know that I am the" + }, + { + "verseNum": 17, + "text": "countries, yet for a little while I have been a sanc- tuary for them in the countries to which they 17 have gone.’ Therefore declare that this is what the Lord GOD says: ‘I will gather you from the peoples and assemble you from the countries to which you have been scattered, and I will give back to you 18 the land of Israel.’ 19 When they return to it, they will remove all its detestable things and all its abominations. And I will give them singleness of heart and put a 20 new spirit within them; I will remove their heart of stone and give them a heart of flesh, so that they may follow My statutes, keep My ordi- nances, and practice them. Then they will be My 21 people, and I will be their God. But as for those whose hearts pursue detesta- ble things and abominations, I will bring their conduct down upon their own heads, declares God’s Glory Leaves Jerusalem the Lord GOD.” 22 23 Then the cherubim, with the wheels beside them, spread their wings, and the glory of the God of Israel was above them. And the glory of the LORD rose up from within the city and stood 24 over the mountain east of the city. a And the Spirit lifted me up and carried me back to the exiles in the vision given by to Chaldea, 25 the Spirit of God. After the vision had gone up from me, I told the exiles everything the LORD Signs of the Coming Captivity had shown me. 12 2 Then the word of the LORD came to me, saying, “Son of man, you are living in a rebellious house. They have eyes to see but do not see, and" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 2, + "text": ". BYZ and TR ; also in verse 43 See" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "–16) to divide the land by lot. 6 “Do not preach,” they preach. 7 “Do not preach these things; disgrace will not overtake us.” Should it be said, O house of Jacob, “Is the Spirit of the LORD impatient? Are these the things He does?” Do not My words bring good 8 to him who walks uprightly? But of late My people have risen up like an enemy: You strip off the splendid robe 9 from unsuspecting passersby like men returning from battle. You drive the women of My people from their pleasant homes. 10 You take away My blessing from their children forever. Arise and depart, for this is not your place of rest, 11 because its defilement brings destruction— a grievous destruction! If a man of wind were to come and say falsely, a “I will preach to you of wine and strong drink,” he would be just the preacher for this The Remnant of Israel" + }, + { + "verseNum": 23, + "text": "| 753 Therefore tell them that this is what the Lord GOD says: ‘I will put an end to this proverb, and in Israel they will no longer recite it.’ 24 But say to them: ‘The days are at hand when For there will be every vision will be fulfilled. 25 no more false visions or flattering divinations because I, the LORD, within the house of Israel, will speak whatever word I speak, and it will be fulfilled without delay. For in your days, O rebel- lious house, I will speak a message and bring it to 26 pass, declares the Lord GOD.’ 27 ” Furthermore, the word of the LORD came to “Son of man, take note that the me, saying, house of Israel is saying, ‘The vision that he sees is for many years from now; he prophesies about 28 the distant future.’ Therefore tell them that this is what the Lord GOD says: ‘None of My words will be delayed any longer. The message I speak will be fulfilled, de- Reproof of False Prophets" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "false visions or practice divination. I will deliver My people from your hands. Then you will know Idolatrous Elders Condemned that I am the LORD.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 29, + "text": "| 755 7 Therefore this is what the Lord GOD says: ‘Like the wood of the vine among the trees of the for- est, which I have given to the fire for fuel, so I will And I will set give up the people of Jerusalem. My face against them. Though they may have es- caped the fire, yet another fire will consume them. And when I set My face against them, you 8 will know that I am the LORD. Thus I will make the land desolate, because they Jerusalem’s Unfaithfulness have acted unfaithfully,’ declares the Lord GOD.” 16 2 4 3 Again the word of the LORD came to me, saying, “Son of man, confront Jerusalem and tell her that this is with her abominations what the Lord GOD says to Jerusalem: Your origin and your birth were in the land of the Canaanites. Your father was an Amorite and your On the day of your birth your mother a Hittite. cord was not cut, nor were you washed with wa- ter for cleansing. You were not rubbed with salt No one cared enough for or wrapped in cloths. you to do even one of these things out of compas- sion for you. Instead, you were thrown out into the open field, because you were despised on the 6 day of your birth. 5 7 Then I passed by and saw you wallowing in your blood, and as you lay there in your blood I said to you, ‘Live!’ There I said to you, ‘Live!’ I made you thrive like a plant of the field. You grew up and matured and became very beautiful. Your breasts were formed and your hair grew, but you 8 were naked and bare. 10 Then I passed by and saw you, and you were" + }, + { + "verseNum": 30, + "text": "30 a your heart, 31 How weak-willed is declares the Lord GOD, while you do all these things, the acts But when you built of a shameless prostitute! your mounds at the head of every street and made your lofty shrines in every public square, you were not even like a prostitute, because you 32 scorned payment. 33 34 You adulterous wife! You receive strangers instead of your own husband! Men give gifts to all their prostitutes, but you gave gifts to all your lovers. You bribed them to come to you So your from everywhere for your illicit favors. prostitution is the opposite of that of other women: No one solicited your favors, and you paid a fee instead of receiving one; so you are the Judgment on Jerusalem very opposite! 35 36 own head, declares the Lord GOD. Have you not committed this lewdness on top of all your other 44 abominations? Behold, all who speak in proverbs will quote this proverb about you: 45 ‘Like mother, like daughter.’ 46 You are the daughter of your mother, who despised her husband and children. You are the sister of your sisters, who despised their hus- bands and children. Your mother was a Hittite and your father an Amorite. Your older sister was Samaria, who lived with her daughters to your north; and your younger sister was Sodom, 47 who lived with her daughters to your south. And you not only walked in their ways and practiced their abominations, but soon you were 48 more depraved than they were. 37 Therefore, O prostitute, hear the word of the LORD! This" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "–10) 24 25 Jesus put before them another parable: “The kingdom of heaven is like a man who sowed good seed in his field. But while everyone was asleep, his enemy came and sowed weeds among When the wheat the wheat, and slipped away. sprouted and bore grain, then the weeds also 27 appeared. 26 The owner’s servants came to him and said, ‘Sir, didn’t you sow good seed in your field? 28 Where then did the weeds come from?’ ‘An enemy did this,’ he replied. 30 ‘No,’ he said, ‘if you pull the weeds now, you Let both might uproot the wheat with them. grow together until the harvest. At that time I will tell the harvesters: First collect the weeds and tie them in bundles to be burned; then gather The Parable of the Mustard Seed ” the wheat into my barn.’" + }, + { + "verseNum": 18, + "text": "| 757 It stretched out its branches to him from 8 its planting bed, so that he might water it. It had been planted in good soil by abundant waters 9 in order to yield branches and bear fruit and become a splendid vine.’ So you are to tell them that this is what the Lord GOD says: ‘Will it flourish? Will it not be uprooted and stripped of its fruit so that it shrivels? All its foliage will wither! It will not take a strong arm or many people 10 to pull it up by its roots. Even if it is transplanted, will it flourish? Will it not completely wither when the east wind strikes? It will wither on the bed where it The Parable Explained sprouted.’ ” 11 12 Then the word of the LORD came to me, saying, “Now say to this rebellious house: ‘Do you not know what these things mean?’ c 13 Tell them, ‘Behold, the king of Babylon came to Jerusalem, carried off its king and officials, and He brought them back with him to Babylon. took a member of the royal family and made a covenant with him, putting him under oath. Then he carried away the leading men of the land, so that the kingdom would be brought low, unable to lift itself up, surviving only by keeping his cov- 15 enant. 14 But this king rebelled against Babylon by send- ing his envoys to Egypt to ask for horses and a large army. Will he flourish? Will the one who does such things escape? Can he break a cove- 16 nant and yet escape?’ 17 ‘As surely as I live,’ declares the Lord GOD, ‘he will die in Babylon, in the land of the king who enthr" + }, + { + "verseNum": 19, + "text": "5 gave his hand in pledge yet did all these things, 19 he will not escape!’ Now suppose a man is righteous and does what 6 is just and right: 20 Therefore this is what the Lord GOD says: ‘As surely as I live, I will bring down upon his head My oath that he despised and My covenant I will spread My net over him that he broke. and catch him in My snare. I will bring him to Babylon and execute judgment upon him there All for the treason he committed against Me. will fall by the sword, and his choice troops those who survive will be scattered to every wind. Then you will know that I, the LORD, have 22 spoken.’ 21 a This is what the Lord GOD says: ‘I will take a shoot from the lofty top of the cedar, and I will set it out. I will pluck a tender sprig from its topmost shoots, 23 and I will plant it on a high and lofty mountain. I will plant it on the mountain heights of Israel so that it will bear branches; it will yield fruit and become a majestic cedar. Birds of every kind will nest under it, 24 Then all the trees of the field will know that I am the LORD. I bring the tall tree down and make the low tree tall. I dry up the green tree and make the withered tree flourish. I, the LORD, have spoken, The Soul Who Sins Will Die and I have done it.’ ” 18 2 Then the word of the LORD came to me, “What do you people mean by saying, quoting this proverb about the land of Israel: ‘The fathers have eaten sour grapes, and the teeth of the children are set on edge’? 4 3 As surely as I live, dec" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 10, + "text": "| 759 31 Therefore, O house of Israel, I will judge you, each according to his ways, declares the Lord GOD. Repent and turn from all your transgres- sions, so that your iniquity will not become your Cast away from yourselves all the downfall. transgressions you have committed, and fashion for yourselves a new heart and a new spirit. Why 32 should you die, O house of Israel? For I take no pleasure in anyone’s death, de- A Lament for the Princes of Israel clares the Lord GOD. So repent and live! 19 2 “As for you, take up a lament for the princes of Israel and say: ‘What was your mother? A lioness among the lions! She lay down among the young lions; 3 she reared her cubs. She brought up one of her cubs, and he became a young lion. After learning to tear his prey, 4 he devoured men. When the nations heard of him, he was trapped in their pit. With hooks they led him away 5 to the land of Egypt. When she saw that she had waited in vain, that her hope was lost, she took another of her cubs 6 and made him a young lion. He prowled among the lions, and became a young lion. After learning to tear his prey, 7 a he devoured men. He broke down their strongholds and devastated their cities. The land and everything in it 8 shuddered at the sound of his roaring. Then the nations set out against him from the provinces on every side. 9 They spread their net over him; he was trapped in their pit. With hooks they caged him and brought him to the king of Babylon. They brought him into captivity 10" + }, + { + "verseNum": 11, + "text": "11 it was fruitful and full of branches because of the abundant waters. It had strong branches, fit for a ruler’s scepter. It towered high above the thick branches, conspicuous for its height and for its dense foliage. 12 But it was uprooted in fury, cast down to the ground, and the east wind dried up its fruit. Its strong branches were stripped off 13 and they withered; the fire consumed them. 14 Now it is planted in the wilderness, in a dry and thirsty land. Fire has gone out from its main branch and devoured its fruit; on it no strong branch remains fit for a ruler’s scepter.’ Israel’s Rebellion in Egypt This is a lament and shall be used as a lament.” 20 In the seventh year, on the tenth day of the fifth month, some of the elders of Is- rael came to inquire of the LORD, and they sat 2 down before me. 3 Then the word of the LORD came to me, saying, “Son of man, speak to the elders of Israel and tell them that this is what the Lord GOD says: Have you come to inquire of Me? As surely as I live, I will not be consulted by you, declares the 4 Lord GOD. 5 Will you judge them, will you judge them, son of man? Confront them with the abominations of their fathers and tell them that this is what the Lord GOD says: On the day I chose Israel, I swore an oath to the descendants of the house of Jacob and made Myself known to them in the land of Egypt. With an uplifted hand I said to them, ‘I am 6 the LORD your God.’ 7 On that day I swore to bring them out of the land of Egypt into a la" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 11, + "text": ", 13, and 21. Or here and throughout this chapter 11 You must not have sexual relations with the daughter of your father’s wife, born to your 12 father; she is your sister. You must not have sexual relations with your 13 father’s sister; she is your father’s close relative. You must not have sexual relations with your mother’s sister, for she is your mother’s close 14 relative. You must not dishonor your father’s brother by approaching his wife to have sexual relations 15 with her; she is your aunt. You must not have sexual relations with your daughter-in-law. She is your son’s wife; you are 16 not to have sexual relations with her. You must not have sexual relations with your 17 brother’s wife; that would shame your brother. You must not have sexual relations with both a woman and her daughter. You are not to marry her son’s daughter or her daughter’s daughter and have sexual relations with her. They are 18 close relatives; it is depraved. You must not take your wife’s sister as a rival wife and have sexual relations with her while 19 your wife is still alive. You must not approach a woman to have sex- ual relations with her during her menstrual pe- 20 riod. You must not lie carnally with your neighbor’s 21 wife and thus defile yourself with her. a You must not give any of your children to be to Molech, for you must not profane sacrificed 22 the name of your God. I am the LORD. You must not lie with a man as with a woman; 23 that is an abomination. You must not lie carnally" + }, + { + "verseNum": 13, + "text": "and 21. 9 before their eyes, and they did not forsake the idols of Egypt. So I resolved to pour out My wrath upon them and vent My anger against them in the land of Egypt. But I acted for the sake of My name, that it should not be profaned in the eyes of the nations among whom they were living, in whose sight I had revealed Myself to Israel by Israel’s Rebellion in the Wilderness bringing them out of the land of Egypt. 10 11 a So I brought them out of the land of Egypt and And I gave them led them into the wilderness. My statutes and made known to them My ordi- 12 nances—for the man who does these things will live by them. I also gave them My Sabbaths as a sign between us, so that they would know that 13 I am the LORD who sanctifies them. Yet the house of Israel rebelled against Me in follow My the wilderness. They did not statutes and they rejected My ordinances— though the man who does these things will live by them—and they utterly profaned My Sab- baths. Then I resolved to pour out My wrath upon them and put an end to them in the wilder- But I acted for the sake of My name, so ness. that it would not be profaned in the eyes of the 15 nations in whose sight I had brought them out. 14 16 Moreover, with an uplifted hand I swore to them in the wilderness that I would not bring them into the land that I had given them—a land flowing with milk and honey, the glory of all because they kept rejecting My ordi- lands— nances, refusing to walk in My statutes, and pro- 17 faning My S" + }, + { + "verseNum": 34, + "text": ", including LXX. See 2 Samuel 7:14. 14 In addition to our own encouragement, we were even more delighted by the joy of Titus. For his Indeed, spirit has been refreshed by all of you. I was not embarrassed by anything I had boasted to him about you. But just as everything we said to you was true, so our boasting to Titus has And his affection for proved to be true as well. you is even greater when he remembers that you were all obedient as you welcomed him with fear I rejoice that I can have com- and trembling. Generosity Commended plete confidence in you." + }, + { + "verseNum": 47, + "text": "| 761 c outpoured wrath I will bring you out from the from the lands to which peoples and gather you And I will bring you you have been scattered. into the wilderness of the nations, where I will 36 enter into judgment with you face to face. 35 d 37 Just as I entered into judgment with your fa- thers in the wilderness of the land of Egypt, so I will enter into judgment with you, declares the I will make you pass under the rod Lord GOD. 38 and will bring you into the bond of the covenant. And I will purge you of those who rebel and transgress against Me. I will bring them out of the land in which they dwell, but they will not enter the land of Israel. Then you will know that I am 39 the LORD. And as for you, O house of Israel, this is what the Lord GOD says: Go and serve your idols, every one of you. But afterward, you will surely listen to Me, and you will no longer defile My holy 40 name with your gifts and idols. For on My holy mountain, the high mountain of Israel, declares the Lord GOD, there the whole house of Israel, all of them, will serve Me in the land. There I will accept them and will require your offerings and choice gifts, along with all 41 your holy sacrifices. When I bring you from the peoples and gather you from the lands to which you have been scat- tered, I will accept you as a pleasing aroma. And I will show My holiness through you in the sight of the nations. Then you will know that I am the LORD, when I bring you into the land of Is- 43 rael, the land tha" + }, + { + "verseNum": 48, + "text": "48 every face from south to north will be scorched. Then all people will see that I, the LORD, have 49 kindled it; it will not be quenched.” Then I said, “Ah, Lord GOD, they are saying of God’s Sword of Judgment me, ‘Is he not just telling parables?’ ” 21 2 3 And the word of the LORD came to me, “Son of man, set your face saying, against Jerusalem and preach against the sanctu- and aries. Prophesy against the land of Israel tell her that this is what the LORD says: ‘I am against you, and I will draw My sword from its sheath and cut off from you both the righteous Because I will cut off both the and the wicked. righteous and the wicked, My sword will be un- 5 sheathed against everyone from south to north. Then all flesh will know that I, the LORD, have taken My sword from its sheath, not to return it 6 again.’ 4 7 But you, son of man, groan! Groan before their And eyes with a broken heart and bitter grief. when they ask, ‘Why are you groaning?’ you are to say, ‘Because of the news that is coming. Every heart will melt, and every hand will go limp. Every spirit will faint, and every knee will turn to water.’ Yes, it is coming and it will surely happen, 8 declares the Lord GOD.” 9 Again the word of the LORD came to me, saying, “Son of man, prophesy and tell them that this is what the Lord says: ‘A sword, a sword, 10 sharpened and polished— it is sharpened for the slaughter, polished to flash like lightning! 11 Should we rejoice in the scepter of My son? The sword despises every" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 20, + "text": "| 763 you have made. You have brought your days to a close and have come to the end of your years. Therefore I have made you a reproach to the Those nations and a mockery to all the lands. near and far will mock you, O infamous city, full 6 of turmoil. 5 7 See how every prince of Israel within you has used his power to shed blood. Father and mother are treated with contempt. Within your walls the foreign resident is exploited, the father- 8 less and the widow are oppressed. 9 You have despised My holy things and profaned My Sabbaths. Among you are slanderous men bent on bloodshed; within you are those who eat on the mountain shrines and commit acts of in- 10 decency. 11 In you they have uncovered the nakedness of their fathers; in you they violate women during their menstrual impurity. One man commits an abomination with his neighbor’s wife; an- other wickedly defiles his daughter-in-law; and yet another violates his sister, his own father’s 12 daughter. In you they take bribes to shed blood. You en- gage in usury, take excess interest, and extort your neighbors. But Me you have forgotten, de- 13 clares the Lord GOD. 15 14 Now look, I strike My hands together against your unjust gain and against the blood you have shed in your midst. Will your courage endure or your hands be strong in the day I deal with you? I, the LORD, have spoken, and I will act. I will disperse you among the nations and scatter you throughout the lands; I will purge your un- cleanness. And when you have" + }, + { + "verseNum": 21, + "text": "21 22 Yes, I will gather you together and blow on you with the fire of My wrath, and you will be melted within the city. As silver is melted in a furnace, so you will be melted within the city. Then you will know that I, the LORD, have poured out My Israel’s Wicked Leaders wrath upon you.’ 23 ” 24 And the word of the LORD came to me, saying, “Son of man, say to her, ‘In the day of indignation, you are a land that has not been 25 cleansed, upon which no rain has fallen.’ a The conspiracy of the princes in her midst is lion tearing its prey. They like a roaring devour the people, seize the treasures and pre- 26 cious things, and multiply the widows within her. Her priests do violence to My law and profane My holy things. They make no distinction be- tween the holy and the common, and they fail to distinguish between the clean and the unclean. They disregard My Sabbaths, so that I am pro- 27 faned among them. Her officials within her are like wolves tearing their prey, shedding blood, and destroying lives 28 for dishonest gain. Her prophets whitewash these deeds by false visions and lying divinations, saying, ‘This is what the Lord GOD says,’ when the LORD has not 29 spoken. The people of the land have practiced extor- tion and committed robbery. They have op- pressed the poor and needy and have exploited 30 the foreign resident without justice. 31 I searched for a man among them to repair the wall and stand in the gap before Me on behalf of the land, so that I should not destro" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 47, + "text": "| 765 34 You will drink it and drain it; you will dash it to pieces, and tear your breasts. For I have spoken,’ declares the Lord GOD. 35 Therefore this is what the Lord GOD says: ‘Be- cause you have forgotten Me and have cast Me behind your back, you must bear the conse- Judgment on Both Sisters quences of your indecency and prostitution.’ 36 ” 37 Then the LORD said to me: “Son of man, will you pass judgment against Oholah and Oholibah? Then declare to them their abomina- For they have committed adultery, and tions. blood is on their hands. They have committed adultery with their idols. They have even sacri- ficed their children, whom they bore to Me, in the 38 fire as food for their idols. b They have also done this to Me: On that very 39 same day, they defiled My sanctuary and pro- faned My Sabbaths. On the very day they slaughtered their children for their idols, they entered My sanctuary to profane it. Yes, they did 40 this inside My house. c 41 Furthermore, you sisters sent messengers for men who came from afar; and behold, when they arrived, you bathed for them, painted your eyes, You sat on and adorned yourself with jewelry. 42 a couch of luxury with a table spread before it, on ac- which you had set My incense and My oil, companied by the sound of a carefree crowd. Drunkards were brought in from the desert along with men from the rabble, who put brace- lets on your wrists and beautiful crowns on your 43 head. d Then I said of her who had grown old in adul- teries: ‘N" + }, + { + "verseNum": 48, + "text": "49 48 sons and daughters and burn down their houses. So I will put an end to indecency in the land, and all the women will be admonished not to im- They will repay you for itate your behavior. your indecency, and you will bear the conse- quences of your sins of idolatry. Then you will The Parable of the Cooking Pot ” know that I am the Lord GOD.’ 24 2 In the ninth year, on the tenth day of the tenth month, the word of the LORD came “Son of man, write down today’s to me, saying, 3 date, for on this very day the king of Babylon has Now speak a parable to laid siege to Jerusalem. this rebellious house and tell them that this is what the Lord GOD says: ‘Put the pot on the fire; 4 put it on and pour in the water. Put in the pieces of meat, every good piece— thigh and shoulder— 5 fill it with choice bones. Take the choicest of the flock and pile the fuel beneath it. Bring it to a boil and cook the bones in it.’ 6 Therefore this is what the Lord GOD says: ‘Woe to the city of bloodshed, to the pot now rusted, whose rust will not come off! a Empty it piece by piece; 7 cast no lots for its contents. For the blood she shed is still within her; she poured it out on the bare rock; she did not pour it on the ground 8 to cover it with dust. In order to stir up wrath and take vengeance, 9 I have placed her blood on the bare rock, so that it would not be covered.’ Yes, this is what the Lord GOD says: ‘Woe to the city of bloodshed! 10 I, too, will pile the kindling high. Pile on the logs and k" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "–21)" + }, + { + "verseNum": 10, + "text": "| 767 14 stretch out My hand against Edom and cut off from it both man and beast. I will make it a wasteland, and from Teman to Dedan they will fall by the sword. I will take My vengeance on Edom by the hand of My people Israel, and they will deal with Edom according to My anger and wrath. Then they will know My vengeance, de- A Prophecy against the Philistines clares the Lord GOD.’ 15 16 This is what the Lord GOD says: ‘Because the Philistines acted in vengeance, taking vengeance with malice of soul to destroy Judah with ancient therefore this is what the Lord GOD hostility, says: Behold, I will stretch out My hand against the Philistines, and I will cut off the Cherethites I will and destroy the remnant along the coast. execute great vengeance against them with furi- ous reproof. Then they will know that I am the A Prophecy against Tyre" + }, + { + "verseNum": 11, + "text": "A Lament for Tyre 11 When he enters your gates as an army entering a breached city, your walls will shake from the The noise of cavalry, wagons, and chariots. hooves of his horses will trample all your streets. He will slaughter your people with the sword, 12 and your mighty pillars will fall to the ground. They will plunder your wealth and pillage your merchandise. They will demolish your walls, tear down your beautiful homes, and throw your 13 stones and timber and soil into the water. So I will silence the sound of your songs, and 14 the music of your lyres will no longer be heard. I will make you a bare rock, and you will be- come a place to spread the fishing nets. You will never be rebuilt, for I, the LORD, have spoken, 15 declares the Lord GOD.’ This is what the Lord GOD says to Tyre: ‘Will not the coastlands quake at the sound of your downfall, when the wounded groan at the 16 slaughter in your midst? All the princes of the sea will descend from their thrones, remove their robes, and strip off their embroidered garments. Clothed with ter- ror, they will sit on the ground, trembling every Then they will moment, appalled over you. lament for you, saying, 17 “How you have perished, O city of renown inhabited by seafaring men— she who was powerful on the sea, a 18 along with her people, who imposed terror on all peoples! Now the coastlands tremble on the day of your downfall; the islands in the sea 19 are dismayed by your demise.” ’ 20 For this is what the Lord GOD says:" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 2, + "text": "| 769 28 will sink into the heart of the sea on the day of your downfall. 29 The countryside will shake when your sailors cry out. All who handle the oars will abandon their ships. 30 The sailors and all the captains of the sea will stand on the shore. They will raise their voices for you and cry out bitterly. 31 They will throw dust on their heads and roll in ashes. They will shave their heads for you and wrap themselves in sackcloth. They will weep over you 32 with anguish of soul and bitter mourning. As they wail and mourn over you, they will take up a lament for you: 33 ‘Who was ever like Tyre, silenced in the middle of the sea? When your wares went out to sea, you satisfied many nations. You enriched the kings of the earth with your abundant wealth and 34 merchandise. Now you are shattered by the seas in the depths of the waters; 35 your merchandise and the people among you have gone down with you. All the people of the coastlands 36 are appalled over you. Their kings shudder with fear; their faces are contorted. Those who trade among the nations hiss at you; you have come to a horrible end A Prophecy against the Ruler of Tyre and will be no more.’ ” 28 2 And the word of the LORD came to me, “Son of man, tell the ruler of saying, Tyre that this is what the Lord GOD says: Your heart is proud, and you have said, ‘I am a god; I sit in the seat of gods in the heart of the sea.’ Yet you are a man and not a god, a 15 Rhodes b 16 you, with all the other people on board, —and Da" + }, + { + "verseNum": 3, + "text": "3 15 4 Behold, you are wiser than Daniel; no secret is hidden from you! By your wisdom and understanding you have gained your wealth 5 and amassed gold and silver for your treasuries. By your great skill in trading you have increased your wealth, but your heart has grown proud 6 because of it. Therefore this is what the Lord GOD says: Because you regard your heart 7 as the heart of a god, behold, I will bring foreigners against you, the most ruthless of nations. They will draw their swords 8 9 against the beauty of your wisdom and will defile your splendor. They will bring you down to the Pit, and you will die a violent death in the heart of the seas. Will you still say, ‘I am a god,’ in the presence of those who slay you? You will be only a man, not a god, 10 in the hands of those who wound you. You will die the death of the uncircumcised at the hands of foreigners. declares the Lord GOD.” For I have spoken, A Lament for the King of Tyre 11 12 Again the word of the LORD came to me, say- ing, “Son of man, take up a lament for the king of Tyre and tell him that this is what the Lord GOD says: From the day you were created 16 you were blameless in your ways— until wickedness was found in you. By the vastness of your trade, you were filled with violence, and you sinned. So I drove you in disgrace from the mountain of God, 17 and I banished you, O guardian cherub, from among the fiery stones. Your heart grew proud of your beauty; you corrupted your wisdom because of your splendor" + }, + { + "verseNum": 25, + "text": "–26) ” 30 2 3 This is the word that came to Jeremiah “This is what the LORD, from the LORD: the God of Israel, says: ‘Write in a book all the words that I have spoken to you. For behold, the c days are coming, declares the LORD, when I will My people Israel and restore from captivity Judah, declares the LORD. I will restore them to the land that I gave to their fathers, and they will 4 possess it.’ ” 5 These are the words that the LORD spoke con- Yes, this is what the cerning Israel and Judah. LORD says: “A cry of panic is heard— 6 a cry of terror, not of peace. Ask now, and see: Can a male give birth? Why then do I see every man with his hands on his stomach like 7 a woman in labor and every face turned pale? How awful that day will be! None will be like it! It is the time of Jacob’s distress, 8 but he will be saved out of it. On that day, declares the LORD of Hosts, I will break the yoke off their necks and tear off their bonds, You said and no longer will strangers enslave them. Zephaniah b 25 Literally added for clarity. Or Hebrew ; the addressee is 9 Instead, they will serve the LORD their God 10 and David their king, whom I will raise up for them. As for you, O Jacob My servant, do not be afraid, declares the LORD, and do not be dismayed, O Israel. For I will surely save you out of a distant place, your descendants from the land of their captivity! 11 Jacob will return to quiet and ease, with no one to make him afraid. For I am with you to save you, declares the LORD. T" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 21, + "text": "| 771 9 The land of Egypt will become a man and beast. desolate wasteland. Then they will know that I am the LORD. 10 Because you said, ‘The Nile is mine; I made it,’ therefore I am against you and against your rivers. I will turn the land of Egypt into a ruin, a b desolate wasteland from Migdol to Syene, and as No foot of man or far as the border of Cush. beast will pass through, and it will be uninhab- 12 ited for forty years. 11 I will make the land of Egypt a desolation among desolate lands, and her cities will lie des- olate for forty years among the ruined cities. And I will disperse the Egyptians among the nations 13 and scatter them throughout the countries. 14 For this is what the Lord GOD says: At the end of forty years I will gather the Egyptians from the c I will re- nations to which they were scattered. store Egypt from captivity and bring them back to the land of Pathros, the land of their origin. 15 There they will be a lowly kingdom. 16 Egypt will be the lowliest of kingdoms and will never again exalt itself above the nations. For I will diminish Egypt so that it will never again Egypt will never again be rule over the nations. an object of trust for the house of Israel, but will remind them of their iniquity in turning to the Egyptians. Then they will know that I am the Egypt the Reward of Nebuchadnezzar Lord GOD.” 17 18 In the twenty-seventh year, on the first day of the first month, the word of the LORD came to “Son of man, Nebuchadnezzar king me, saying, o" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "A Lament for Egypt 30 2 Again the word of the LORD came to me, “Son of man, prophesy and de- saying, clare that this is what the Lord GOD says: Wail, ‘Alas 3 for that day!’ For the day is near, the Day of the LORD is near. a It will be a day of clouds, 4 a time of doom for the nations. b A sword will come against Egypt, and there will be anguish in Cush when the slain fall in Egypt, its wealth is taken away, 5 and its foundations are torn down. c Cush, Put, and Lud, and all the various peoples, as well as Libya and the men of the 6 covenant land, will fall with Egypt by the sword. For this is what the LORD says: The allies of Egypt will fall, d and her proud strength will collapse. From Migdol to Syene they will fall by the sword within her, declares the Lord GOD. 7 8 They will be desolate among desolate lands, and their cities will lie among ruined cities. Then they will know that I am the LORD 9 when I set fire to Egypt and all her helpers are shattered. On that day messengers will go out from Me in ships to frighten Cush out of complacency. Anguish will come upon them on the day of Egypt’s doom. For it is indeed coming. e 10 This is what the Lord GOD says: I will put an end to the hordes of Egypt 11 by the hand of Nebuchadnezzar king of Babylon. He and his people with him, the most ruthless of the nations, will be brought in to destroy the land. They will draw their swords against Egypt 12 and fill the land with the slain. a 3 I will make the streams dry up and sell the la" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 2, + "text": "| 773 10 c d 11 Therefore this is what the Lord GOD says: ‘Since it became great in height and set its top among the clouds, and it grew proud on account I delivered it into the hand of the of its height, ruler of the nations, for him to deal with it ac- 12 cording to its wickedness. I have banished it. Foreigners, the most ruthless of the nations, cut it down and left it. Its branches have fallen on the mountains and in every valley; its boughs lay broken in all the earth’s ravines. And all the peo- 13 ples of the earth left its shade and abandoned it. 14 All the birds of the air nested on its fallen trunk, and all the beasts of the field lived among This happened so that no other its boughs. trees by the waters would become great in height and set their tops among the clouds, and no other well-watered trees would reach them in height. For they have all been consigned to death, to the depths of the earth, among the mortals who de- 15 scend to the Pit.’ This is what the Lord GOD says: ‘On the day it was brought down to Sheol, I caused mourning. I covered the deep because of it; I held back its riv- ers; its abundant waters were restrained. I made Lebanon mourn for it, and all the trees of the field fainted because of it. I made the nations quake at the sound of its downfall, when I cast it down to Sheol with those who descend to the Pit. 16 17 Then all the trees of Eden, the choicest and best of Lebanon, all the well-watered trees, were con- soled in the earth below. They too" + }, + { + "verseNum": 3, + "text": "3 14 This is what the Lord GOD says: ‘I will spread My net over you 4 with a company of many peoples, and they will draw you up in My net. I will abandon you on the land and hurl you into the open field. I will cause all the birds of the air to settle upon you, and all the beasts of the earth 5 to eat their fill of you. a I will put your flesh on the mountains 6 and fill the valleys with your remains. I will drench the land with the flow of your blood, all the way to the mountains— 7 the ravines will be filled. When I extinguish you, I will cover the heavens and darken their stars. Then I will let her waters settle and will make her rivers flow like oil,’ declares the Lord GOD. 15 ‘When I make the land of Egypt a desolation and empty it of all that filled it, when I strike down all who live there, 16 then they will know that I am the LORD.’ This is the lament they will chant for her; the daughters of the nations will chant it. Over Egypt and all her multitudes they will chant it, declares Egypt Cast into the Pit the Lord GOD.” 17 c In the twelfth year, on the fifteenth day of the 18 month, the word of the LORD came to me, say- “Son of man, wail for the multitudes of ing, Egypt, and consign her and the daughters of the mighty nations to the depths of the earth with 19 those who descend to the Pit: I will cover the sun with a cloud, 8 and the moon will not give its light. All the shining lights in the heavens Whom do you surpass in beauty? 20 Go down and be placed with the unci" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 8, + "text": "–9. See" + }, + { + "verseNum": 11, + "text": "| 775 25 They bear their disgrace with those who descend to the Pit. For I will spread My terror in the land of the living, Among the slain they prepare a resting place for Elam with all her hordes, with her graves all around her. All of them are uncircumcised, slain by the sword, although their terror was once spread in the land of the living. They bear their disgrace 26 with those who descend to the Pit. They are placed among the slain. Meshech and Tubal are there with all their multitudes, with their graves all around them. All of them are uncircumcised, slain by the sword, 27 because they spread their terror in the land of the living. a They do not lie down with the fallen warriors of old, who went down to Sheol with their weapons of war, b whose swords were placed under their heads, whose shields rested on their bones, 28 although the terror of the mighty was once in the land of the living. But you too will be shattered 29 and lie down among the uncircumcised, with those slain by the sword. Edom is there, and all her kings and princes, who despite their might are laid among those slain by the sword. 30 They lie down with the uncircumcised, with those who descend to the Pit. All the leaders of the north and all the Sidonians are there; they went down in disgrace with the slain, despite the terror of their might. They lie uncircumcised with those slain by the sword and bear their shame 31 with those who descend to the Pit. Pharaoh will see them and be comforted over all hi" + }, + { + "verseNum": 12, + "text": "turn from their ways and live. Turn! Turn from your evil ways! For why should you die, O house 12 of Israel?’ Therefore, son of man, say to your people: ‘The righteousness of the righteous man will not de- liver him in the day of his transgression; neither will the wickedness of the wicked man cause him to stumble on the day he turns from his wicked- ness. Nor will the righteous man be able to sur- 13 vive by his righteousness on the day he sins.’ If I tell the righteous man that he will surely live, but he then trusts in his righteousness and commits iniquity, then none of his righteous works will be remembered; he will die because 14 of the iniquity he has committed. 15 But if I tell the wicked man, ‘You will surely die,’ and he turns from his sin and does what is just and right— if he restores a pledge, makes restitution for what he has stolen, and walks in the statutes of life without practicing iniquity— None of then he will surely live; he will not die. the sins he has committed will be held against him. He has done what is just and right; he will 17 surely live. 16 18 Yet your people say, ‘The way of the Lord is not If a just.’ But it is their way that is not just. righteous man turns from his righteousness and commits iniquity, he will die for it. But if a wicked man turns from his wickedness and does 20 what is just and right, he will live because of this. 19 Yet you say, ‘The way of the Lord is not just.’ But I will judge each of you according to his ways, Word of J" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 11, + "text": "–24 ;" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 4, + "text": "| 777 My flock went astray on all the wild beasts. mountains and every high hill. They were scat- tered over the face of all the earth, with no one to 7 search for them or seek them out.’ 8 Therefore, you shepherds, hear the word of the ‘As surely as I live, declares the Lord LORD: GOD, because My flock lacks a shepherd and has become prey and food for every wild beast, and because My shepherds did not search for My flock but fed themselves instead, therefore, you 10 shepherds, hear the word of the LORD!’ 9 This is what the Lord GOD says: ‘Behold, I am against the shepherds, and I will demand from them My flock and remove them from tending the flock, so that they can no longer feed them- selves. For I will deliver My flock from their The Good Shepherd mouths, and it will no longer be food for them.’" + }, + { + "verseNum": 5, + "text": "5 6 Because you harbored an ancient hatred and delivered the Israelites over to the sword in the time of their disaster at the final stage of their therefore as surely as I live, de- punishment, clares the Lord GOD, I will give you over to blood- shed and it will pursue you. Since you did not 7 hate bloodshed, it will pursue you. 8 I will make Mount Seir a desolate waste and will I will fill cut off from it those who come and go. its mountains with the slain; those killed by the 9 sword will fall on your hills, in your valleys, and I will make you a perpetual in all your ravines. desolation, and your cities will not be inhabited. 10 Then you will know that I am the LORD. 11 Because you have said, ‘These two nations and countries will be ours, and we will possess them,’ even though the LORD was there, therefore as surely as I live, declares the Lord GOD, I will treat you according to the anger and jealousy you showed in your hatred against them, and I will make Myself known among them when I judge 12 you. 13 Then you will know that I, the LORD, have heard every contemptuous word you uttered against the mountains of Israel when you said, ‘They are desolate; they are given to us to de- You boasted against Me with your vour!’ mouth and multiplied your words against Me. I 14 heard it Myself! This is what the Lord GOD says: While the 15 whole earth rejoices, I will make you desolate. As you rejoiced when the inheritance of the house of Israel became desolate, so will I do to you. Y" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 16, + "text": "–38 ;" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 9, + "text": "| 779 So like the uncleanness of a woman’s impurity. I poured out My wrath upon them because of the blood they had shed on the land, and because 19 they had defiled it with their idols. 20 I dispersed them among the nations, and they were scattered throughout the lands. I judged them according to their ways and deeds. And wherever they went among the nations, they profaned My holy name, because it was said of them, ‘These are the people of the LORD, yet they But I had concern for My had to leave His land.’ holy name, which the house of Israel had pro- 22 faned among the nations to which they had gone. 21 23 Therefore tell the house of Israel that this is what the Lord GOD says: It is not for your sake that I will act, O house of Israel, but for My holy name, which you profaned among the nations to I will show the holiness of My which you went. great name, which has been profaned among the nations—the name you have profaned among them. Then the nations will know that I am the LORD, declares the Lord GOD, when I show My 24 holiness in you before their eyes. 26 25 For I will take you from among the nations and gather you out of all the countries, and I will I will also bring you back into your own land. sprinkle clean water on you, and you will be clean. I will cleanse you from all your impurities I will give you a new heart and all your idols. and put a new spirit within you; I will remove 27 your heart of stone and give you a heart of flesh. And I will put My Spirit within you" + }, + { + "verseNum": 10, + "text": "four winds, O breath, and breathe into these 10 slain, so that they may live!” So I prophesied as He had commanded me, and the breath entered them, and they came to life 11 and stood on their feet—a vast army. Then He said to me, “Son of man, these bones are the whole house of Israel. Look, they are say- ing, ‘Our bones are dried up, and our hope has 12 perished; we are cut off.’ 13 14 Therefore prophesy and tell them that this is what the Lord GOD says: ‘O My people, I will open your graves and bring you up from them, and I Then will bring you back to the land of Israel. you, My people, will know that I am the LORD, when I open your graves and bring you up from I will put My Spirit in you and you will them. live, and I will settle you in your own land. Then you will know that I, the LORD, have spoken, and One Nation with One King I will do it, declares the LORD.’ 15 ” 16 a Again the word of the LORD came to me, say- ing, “And you, son of man, take a single stick and write on it: ‘Belonging to Judah and to the Is- raelites associated with him.’ Then take another stick and write on it: ‘Belonging to Joseph—the stick of Ephraim—and to all the house of Israel Then join them together associated with him.’ into one stick, so that they become one in your 18 hand. 17 19 When your people ask you, ‘Won’t you explain you are to tell to us what you mean by these?’ them that this is what the Lord GOD says: ‘I will take the stick of Joseph, which is in the hand of Ephraim, and the tribes" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 14, + "text": "| 781 23 and on the many nations with him. I will mag- nify and sanctify Myself, and I will reveal Myself in the sight of many nations. Then they will know The Slaughter of Gog’s Armies that I am the LORD. 39 c 2 “As for you, O son of man, prophesy against Gog and declare that this is what the Lord GOD says: Behold, I am against you, O I will Gog, chief prince of Meshech and Tubal. turn you around, drive you along, bring you up from the far north, and send you against the Then I will strike the bow mountains of Israel. from your left hand and dash down the arrows 4 from your right hand. 3 On the mountains of Israel you will fall—you and all your troops and the nations with you. I will give you as food to every kind of ravenous bird and wild beast. You will fall in the open 6 field, for I have spoken, declares the Lord GOD. 5 I will send fire on Magog and on those who 7 dwell securely in the coastlands, and they will know that I am the LORD. So I will make My holy name known among My people Israel and will no longer allow it to be profaned. Then the nations will know that I am the LORD, the Holy One in Is- rael. Yes, it is coming, and it will surely happen, declares the Lord GOD. This is the day of which I 9 have spoken. 8 10 Then those who dwell in the cities of Israel will go out, kindle fires, and burn up the weapons— the bucklers and shields, the bows and arrows, the clubs and spears. For seven years they will use them for fuel. They will not gather wood from the countrysi" + }, + { + "verseNum": 15, + "text": "29 invaders who remain on the ground. At the end 15 of the seven months they will begin their search. As they pass through the land, anyone who sees a human bone will set up a pillar next to it, until the gravediggers have buried it in the Valley (Even the city will be named of Hamon-gog. 17 Hamonah. ) And so they will cleanse the land. 16 a 18 And as for you, son of man, this is what the Lord GOD says: Call out to every kind of bird and to every beast of the field: ‘Assemble and come together from all around to the sacrificial feast that I am preparing for you, a great feast on the mountains of Israel. There you will eat flesh and You will eat the flesh of the mighty drink blood. and drink the blood of the princes of the earth as though they were rams, lambs, goats, and bulls— At the sac- all the fattened animals of Bashan. rifice I am preparing, you will eat fat until you are 20 gorged and drink blood until you are drunk. And at My table you will eat your fill of horses and riders, of mighty men and warriors of every Israel to Be Restored kind,’ declares the Lord GOD. 21 19 22 23 I will display My glory among the nations, and all the nations will see the judgment that I exe- From cute and the hand that I lay upon them. that day forward the house of Israel will know And the nations that I am the LORD their God. will know that the house of Israel went into exile for their iniquity, because they were unfaithful to Me. So I hid My face from them and delivered them into the hand" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "–4) 2 2 Then I lifted up my eyes and saw a man with a measuring line in his hand. “Where are you going?” I asked. “To measure Jerusalem,” he replied, “and to de- 3 termine its width and length.” 4 5 Then the angel who was speaking with me went forth, and another angel came forward to meet him and said to him, “Run and tell that young man: ‘Jerusalem will be a city without walls be- cause of the multitude of men and livestock For I will be a wall of fire around it, within it. declares the LORD, and I will be the glory within ” The Redemption of Zion" + }, + { + "verseNum": 5, + "text": "" + }, + { + "verseNum": 39, + "text": "| 783 25 measurements as the others. Both the gateway and its portico had windows all around, like the other windows. It was fifty cubits long and Seven steps led up to twenty-five cubits wide. it, and its portico was opposite them; it had palm 27 trees on its side pillars, one on each side. 26 The inner court also had a gate facing south, and he measured the distance from gateway to The Gates of the Inner Court gateway toward the south to be a hundred cubits. 28 29 Next he brought me into the inner court through the south gate, and he measured the south gate; it had the same measurements as the Its gate chambers, side pillars, and por- others. tico had the same measurements as the others. Both the gateway and its portico had windows all around; it was fifty cubits long and twenty-five (The porticoes around the inner cubits wide. court were twenty-five cubits long and five cu- bits deep. Its portico faced the outer court, and its side pillars were decorated with palm 32 trees. Eight steps led up to it. 31 30 ) f 33 And he brought me to the inner court on the east side, and he measured the gateway; it had Its gate the same measurements as the others. chambers, side pillars, and portico had the same measurements as the others. Both the gateway and its portico had windows all around. It was 34 fifty cubits long and twenty-five cubits wide. Its portico faced the outer court, and its side pillars were decorated with palm trees on each 35 side. Eight steps led up to it. 36 Then he" + }, + { + "verseNum": 40, + "text": "40 Inside the Temple 41 Outside, as one goes up to the entrance of the north gateway, there were two tables on one side and two more tables on the other side of the So there were four tables inside gate’s portico. the gateway and four outside—eight tables in all—on which the sacrifices were to be slaugh- 42 tered. There were also four tables of dressed stone for the burnt offering, each a cubit and a half long, a cubit and a half wide, and a cubit high. On these were placed the utensils used to slaughter 43 the burnt offerings and the other sacrifices. a b c The double-pronged hooks, each a hand- were fastened all around the breadth long, inside of the room, and the flesh of the offering Chambers for Ministry was to be placed on the tables. 44 d e Outside the inner gate, within the inner court, were two chambers, one beside the north gate and facing south, and another beside the south 45 gate and facing north. 46 Then the man said to me: “The chamber that faces south is for the priests who keep charge of the temple, and the chamber that faces north is for the priests who keep charge of the altar. These are the sons of Zadok, the only Levites who The Inner Court may approach the LORD to minister before Him.” 47 Next he measured the court. It was square, a hundred cubits long and a hundred cubits wide. 48 And the altar was in front of the temple. f h 49 Then he brought me to the portico of the tem- ple and measured the side pillars of the portico to be five cubits on each side." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 12, + "text": "| 785 25 26 swinging panels. There were two panels for one door and two for the other. Cherubim and palm trees like those on the walls were carved on the doors of the outer sanctuary, and there was a wooden canopy outside, on the front of the por- There were beveled windows and palm tico. trees on the sidewalls of the portico. The side Chambers for the Priests rooms of the temple also had canopies. 42 2 Then the man led me out northward into the outer court, and he brought me to the group of chambers opposite the temple court- The yard and the outer wall on the north side. building with the door facing north was a hun- dred cubits long and fifty cubits wide. Gallery faced gallery in three levels opposite the twenty that belonged to the inner court and op- cubits posite the pavement that belonged to the outer 4 court. 3 e f g In front of the chambers was an inner walkway Their ten cubits wide and a hundred cubits long. 5 doors were on the north. 7 Now the upper chambers were smaller because the galleries took more space from the chambers 6 on the lower and middle floors of the building. For they were arranged in three stories, and un- like the courts, they had no pillars. So the upper chambers were set back further than the lower An outer wall in front of the and middle floors. chambers was fifty cubits long and ran parallel to For the the chambers and the outer court. chambers on the outer court were fifty cubits 9 long, while those facing the temple were a hun- And below the" + }, + { + "verseNum": 13, + "text": "13 6 14 Then the man said to me, “The north and south chambers facing the temple courtyard are the holy chambers where the priests who approach the LORD will eat the most holy offerings. There they will place the most holy offerings—the grain offerings, the sin offerings, and the guilt of- ferings—for the place is holy. Once the priests have entered the holy area, they must not go out into the outer court until they have left behind the garments in which they minister, for these are holy. They are to put on other clothes before The Outer Measurements they approach the places that are for the people.” 15 Now when the man had finished measuring the interior of the temple area, he led me out by the gate that faced east, and he measured the area all around: 16 a With a measuring rod he measured the 17 east side to be five hundred cubits long. He measured the north side to be five 18 hundred cubits long. He measured the south side to be five 19 hundred cubits long. 20 And he came around and measured the west side to be five hundred cubits long. So he measured the area on all four sides. It had a wall all around, five hundred cubits long and five hundred cubits wide, to separate the The Glory of the LORD Returns to the Temple holy from the common. 43 2 Then the man brought me back to the and I saw the glory gate that faces east, of the God of Israel coming from the east. His voice was like the roar of many waters, and the 3 earth shone with His glory. b 4 The vision I saw was like" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 14, + "text": "| 787 eat in the presence of the LORD. He must enter by way of the portico of the gateway and go out 4 the same way.” 5 Then the man brought me to the front of the temple by way of the north gate. I looked and saw the glory of the LORD filling His temple, and I fell The LORD said to me: “Son of man, facedown. pay attention; look carefully with your eyes and listen closely with your ears to everything I tell you concerning all the statutes and laws of the house of the LORD. Take careful note of the en- trance to the temple, along with all the exits of Reproof of the Levites the sanctuary. 6 7 Tell the rebellious house of Israel that this is what the Lord GOD says: ‘I have had enough of all In addi- your abominations, O house of Israel. tion to all your other abominations, you brought in foreigners uncircumcised in both heart and flesh to occupy My sanctuary; you defiled My temple when you offered My food—the fat and And you the blood; you broke My covenant. have not kept charge of My holy things, but have appointed others to keep charge of My sanctuary 9 for you.’ 8 This is what the Lord GOD says: No foreigner uncircumcised in heart and flesh may enter My sanctuary—not even a foreigner who lives 10 among the Israelites. 11 Surely the Levites who wandered away from Me when Israel went astray, and who wandered away from Me after their idols, will bear the con- Yet they shall be sequences of their iniquity. ministers in My sanctuary, having charge of the gates of the temple and m" + }, + { + "verseNum": 15, + "text": "The Duties of the Priests 28 15 But the Levitical priests, who are descended from Zadok and who kept charge of My sanctu- ary when the Israelites went astray from Me, are to approach Me to minister before Me. They will stand before Me to offer Me fat and blood, de- They alone shall enter My clares the Lord GOD. sanctuary and draw near to My table to minister 17 before Me. They will keep My charge. 16 18 When they enter the gates of the inner court, they are to wear linen garments; they must not wear anything made of wool when they minister at the gates of the inner court or inside the tem- They are to wear linen turbans on their ple. heads and linen undergarments around their waists. They must not wear anything that makes 19 them perspire. When they go out to the outer court, to the people, they are to take off the garments in which they have ministered, leave them in the holy chambers, and dress in other clothes so that they do not transmit holiness to the people with their 20 garments. 22 They must not shave their heads or let their 21 hair grow long, but must carefully trim their hair. No priest may drink wine before he enters the And they shall not marry a widow inner court. or a divorced woman, but must marry a virgin of the descendants of the house of Israel, or a They are to teach My people widow of a priest. the difference between the holy and the common and show them how to discern between the clean 24 and the unclean. 23 In any dispute, they shall officiate as judge" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 10, + "text": "–12) 13 14 You shall not have two differing weights in your bag, one heavy and one light. You shall not have two differing measures in your house, 15 one large and one small. You must maintain accurate and honest weights and measures, so that you may live long 16 in the land that the LORD your God is giving you. For everyone who behaves dishonestly in re- gard to these things is detestable to the LORD Revenge on the Amalekites your God. 17 18 Remember what the Amalekites did to you how they met you a 4 along your way from Egypt, b 5" + }, + { + "verseNum": 11, + "text": "" + }, + { + "verseNum": 14, + "text": "" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 5, + "text": "| 789 sin offering and put it on the doorposts of the temple, on the four corners of the ledge of the al- 20 tar, and on the gateposts of the inner court. You must do the same thing on the seventh day of the month for anyone who strays unintention- ally or in ignorance. In this way you will make 21 atonement for the temple. 23 On the fourteenth day of the first month you are to observe the Passover, a feast of seven days, 22 during which unleavened bread shall be eaten. On that day the prince shall provide a bull as a sin offering for himself and for all the people of Each day during the seven days of the the land. feast, he shall provide seven bulls and seven rams without blemish as a burnt offering to the LORD, He along with a male goat for a sin offering. shall also provide as a grain offering an ephah for 25 each bull and an ephah for each ram, along with Dur- a hin of olive oil for each ephah of grain. ing the seven days of the feast that begins on the fifteenth day of the seventh month, he is to make the same provision for sin offerings, burnt offer- The Prince’s Offerings ings, grain offerings, and oil.’ 24 i j 46 2 “This is what the Lord GOD says: ‘The gate of the inner court that faces east must be kept shut during the six days of work, but on the Sabbath day and on the day of the New The prince is to enter Moon it shall be opened. from the outside through the portico of the gate- way and stand by the gatepost, while the priests sacrifice his burnt offerings and peac" + }, + { + "verseNum": 6, + "text": "6 7 On the day of the New hin of oil per ephah. Moon he shall offer a young, unblemished bull, He is to six lambs, and a ram without blemish. provide a grain offering of an ephah with the bull, an ephah with the ram, and as much as he is able 8 with the lambs, along with a hin of oil per ephah. When the prince enters, he shall go in through the portico of the gateway, and he shall go out the 9 same way. When the people of the land come before the LORD at the appointed feasts, whoever enters by the north gate to worship must go out by the south gate, and whoever enters by the south gate must go out by the north gate. No one is to return through the gate by which he entered, but each 10 must go out by the opposite gate. When the people enter, the prince shall go in 11 with them, and when they leave, he shall leave. At the festivals and appointed feasts, the grain offering shall be an ephah with a bull, an ephah with a ram, and as much as one is able to give 12 with the lambs, along with a hin of oil per ephah. When the prince makes a freewill offering to the LORD, whether a burnt offering or a peace offering, the gate facing east must be opened for him. He is to offer his burnt offering or peace of- fering just as he does on the Sabbath day. Then he shall go out, and the gate must be closed after 13 he goes out. a 14 And you shall provide an unblemished year- old lamb as a daily burnt offering to the LORD; You are also you are to offer it every morning. b to provide with it eve" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 9, + "text": ". g 6 their possession, twenty chambers is approximately 87.5 feet or 26.7 meters. The portion was to be approximately 8.3 miles long and 3.3 miles wide (13.3 kilometers long and 5.3 kilometers wide); similarly in verse 5. LXX; Hebrew the city was to be approximately 1.7 miles wide and 8.3 miles long (2.7 kilometers wide and 13.3 kilometers long). The property of Or 9 And My princes will no longer oppress My peo- ple, but will give the rest of the land to the house For this is of Israel according to their tribes. what the Lord GOD says: ‘Enough, O princes of Israel! Cease your violence and oppression, and do what is just and right. Stop dispossessing My Honest Scales (De. 25:13–16 ; Prov. 11:1–3) people, declares the Lord GOD.’ a 10 b You must use honest scales, a just ephah, 11 a just bath. and The ephah and the bath shall be the same quantity so that the bath will contain a tenth of a homer, and the ephah a tenth of a homer; the d 12 homer will be the standard measure for both. c The shekel will consist of twenty gerahs. Twenty shekels plus twenty-five shekels plus fif- Offerings and Feasts teen shekels will equal one mina. 13 e g This is the contribution you are to offer: a sixth f of an ephah from each homer of wheat, and a 14 sixth of an ephah from each homer of barley. The prescribed portion of oil, measured by the bath, is a tenth of a bath from each cor (a cor 15 consists of ten baths or one homer, since ten baths are equivalent to a homer). And one sheep shall be giv" + }, + { + "verseNum": 10, + "text": "10 This will be the holy portion for the priests. It will be 25,000 cubits long on the north side, 10,000 cubits wide on the west side, 10,000 cubits wide on the east side , and 25,000 cubits 11 long on the south side. In the center will be the sanctuary of the LORD. It will be for the conse- crated priests, the descendants of Zadok, who kept My charge and did not go astray as the Levites did when the Israelites went astray. It will be a special portion for them set apart from the land, a most holy portion adjacent to the ter- 13 ritory of the Levites. 12 a Bordering the territory of the priests, the Le- vites shall have an area 25,000 cubits long and 10,000 cubits wide. The whole length will be 14 25,000 cubits, and the width 10,000 cubits. They must not sell or exchange any of it, and they must not transfer this best part of the land, The Common Portion for it is holy to the LORD. 15 b 16 The remaining area, 5,000 cubits wide and 25,000 cubits long, will be for common use by the city, for houses, and for pastureland. The city will c be in the center of it and will have these meas- on the north side, 4,500 urements: 4,500 cubits cubits on the south side, 4,500 cubits on the east 17 side, and 4,500 cubits on the west side. d The pastureland of the city will extend 250 cu- to the north, 250 cubits to the south, 250 bits 18 cubits to the east, and 250 cubits to the west. The remainder of the length bordering the holy portion and running adjacent to it will be 10,000 cubits on t" + } + ] + } + ] + }, + { + "name": "Daniel", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "through" + }, + { + "verseNum": 5, + "text": "5 The king replied to the astrologers, “My word is final: If you do not tell me the dream and its in- terpretation, you will be cut into pieces and your houses will be reduced to rubble. But if you tell me the dream and its interpretation, you will re- ceive from me gifts and rewards and great honor. 7 So tell me the dream and its interpretation.” 6 “Blessed be the name of God forever and ever, 21 for wisdom and power belong to Him. He changes the times and seasons; He removes kings and establishes them. They answered a second time, “Let the king tell the dream to his servants, and we will give the 8 interpretation.” 22 He gives wisdom to the wise and knowledge to the discerning. He reveals the deep and hidden 9 The king replied, “I know for sure that you are stalling for time because you see that my word is final. If you do not tell me the dream, there is only one decree for you. You have conspired to speak before me false and fraudulent words, hoping the situation will change. Therefore tell me the dream, and I will know that you can give 10 me its interpretation.” 11 The astrologers answered the king, “No one on earth can do what the king requests! No king, however great and powerful, has ever asked an- ything like this of any magician, enchanter, or as- trologer. What the king requests is so difficult that no one can tell it to him except the gods, 12 whose dwelling is not with mortals.” 13 This response made the king so angry and fu- rious that he gave orders to destroy" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 7, + "text": "| 795 without human hands, and it shattered the iron, bronze, clay, silver, and gold, so the great God has told the king what will happen in the future. The dream is true, and its interpretation is trust- Nebuchadnezzar Promotes Daniel worthy.” 46 47 At this, King Nebuchadnezzar fell on his face, paid homage to Daniel, and ordered that an offer- The king ing and incense be presented to him. said to Daniel, “Your God is truly the God of gods and Lord of kings, the Revealer of Mysteries, 48 since you were able to reveal this mystery.” 49 Then the king promoted Daniel and gave him many generous gifts. He made him ruler over the entire province of Babylon and chief administra- And at tor over all the wise men of Babylon. Daniel’s request, the king appointed Shadrach, Meshach, and Abednego to manage the province of Babylon, while Daniel remained in the king’s Nebuchadnezzar’s Golden Statue court. 3 d 2 King Nebuchadnezzar made a golden e statue sixty cubits high and six cubits wide, and he set it up on the plain of Dura in the Then King Nebuchadnez- province of Babylon. zar sent word to assemble the satraps, prefects, governors, advisers, treasurers, judges, magis- trates, and all the other officials of the provinces to attend the dedication of the statue he had 3 set up. So the satraps, prefects, governors, advisers, treasurers, judges, magistrates, and all the rulers of the provinces assembled for the dedication of the statue that King Nebuchadnezzar had set up, 4 and they stood" + }, + { + "verseNum": 8, + "text": "language would fall down and worship the golden statue that King Nebuchadnezzar had Shadrach, Meshach, and Abednego Accused set up. 8 a 9 10 At this time some astrologers came forward saying to and maliciously accused the Jews, King Nebuchadnezzar, “O king, may you live for- You, O king, have issued a decree that ever! everyone who hears the sound of the horn, flute, zither, lyre, harp, pipes, and all kinds of music 11 must fall down and worship the golden statue, and that whoever does not fall down and wor- 12 ship will be thrown into the blazing fiery furnace. But there are some Jews you have appointed to manage the province of Babylon—Shadrach, Meshach, and Abednego—who have ignored you, O king, and have refused to serve your gods 13 or worship the golden statue you have set up.” 15 14 Then Nebuchadnezzar, furious with rage, sum- moned Shadrach, Meshach, and Abednego. So and these men were brought before the king, Nebuchadnezzar said to them, “Shadrach, Me- shach, and Abednego, is it true that you do not serve my gods or worship the golden statue I Now when you hear the sound of have set up? the horn, flute, zither, lyre, harp, pipes, and all kinds of music, if you are ready to fall down and worship the statue I have made, very good. But if you refuse to worship, you will be thrown at once into the blazing fiery furnace. Then what god will 16 be able to deliver you from my hands?” 18 Shadrach, Meshach, and Abednego replied to 17 the king, “O Nebuchadnezzar, we have no need" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 24, + "text": "| 797 His dominion endures from generation to Nebuchadnezzar’s Dream of a Great Tree generation. 4 5 I, Nebuchadnezzar, was at ease in my house and I had a dream, and it flourishing in my palace. 6 frightened me; while I was in my bed, the images So I issued and visions in my mind alarmed me. a decree that all the wise men of Babylon be a 7 brought before me to interpret the dream for me. When the magicians, enchanters, astrologers, and diviners came in, I told them the dream, but 8 they could not interpret it for me. 9 But at last, into my presence came Daniel (whose name is Belteshazzar after the name of my god, and in whom is the spirit of the holy “O Belteshaz- gods). And I told him the dream: zar, chief of the magicians, I know that the spirit of the holy gods is in you and that no mystery baf- fles you. So explain to me the visions I saw in my In these vi- dream, and their interpretation. sions of my mind as I was lying in bed, I saw this come to pass: 10 There was a tree in the midst of the land, 11 and its height was great. The tree grew large and strong; its top reached the sky, and it was visible 12 to the ends of the earth. Its leaves were beautiful, its fruit was abundant, and upon it was food for all. Under it the beasts of the field found shelter, in its branches the birds of the air nested, and from it every creature was fed. 13 b As I lay on my bed, I also saw in the visions of a holy one, coming down 14 my mind a watcher, from heaven. He called out in a loud" + }, + { + "verseNum": 25, + "text": "25 You will be driven away from mankind, and your dwelling will be with the beasts of the field. You will feed on grass like an ox and be drenched with the dew of heaven, and seven times shall pass you by, until you acknowledge that the Most High rules over the kingdom of mankind and 26 gives it to whom He wishes. 27 As for the command to leave the stump of the tree with its roots, your kingdom will be restored to you as soon as you acknowledge that Heaven Therefore, may my advice be pleasing to rules. you, O king. Break away from your sins by doing what is right, and from your iniquities by show- ing mercy to the oppressed. Perhaps there will be The Second Dream Fulfilled an extension of your prosperity.” 28 29 30 All this happened to King Nebuchadnezzar. Twelve months later, as he was walking on the roof of the royal palace of Babylon, the king ex- claimed, “Is this not Babylon the Great, which I myself have built as a royal residence by the might of my power and for the glory of my maj- 31 esty?” 32 While the words were still in the king’s mouth, a voice came from heaven: “It is decreed to you, King Nebuchadnezzar, that the kingdom has de- You will be driven away from parted from you. mankind to live with the beasts of the field, and you will feed on grass like an ox. And seven times will pass you by, until you acknowledge that the Most High rules over the kingdom of mankind 33 and gives it to whom He wishes.” At that moment the sentence against Nebu- chadnezzar was fulfil" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 3, + "text": "| 799 10 a 21 Hearing the outcry of the king and his nobles, the queen entered the banquet hall. “O king, may you live forever!” she said. “Do not let 11 your thoughts terrify you, or your face grow pale. There is a man in your kingdom who has the spirit of the holy gods in him. In the days of your father he was found to have insight, intelligence, and wisdom like that of the gods. from his royal throne, and his glory was taken He was driven away from mankind, from him. and his mind was like that of a beast. He lived with the wild donkeys and ate grass like an ox, and his body was drenched with the dew of heaven until he acknowledged that the Most High God rules over the kingdom of mankind, 22 setting over it whom He wishes. b Your father, King Nebuchadnezzar, appointed him chief of the magicians, enchanters, astrolo- 12 gers, and diviners. Your own father, the king, did this because Daniel, the one he named Belteshazzar, was found to have an extraordi- nary spirit, as well as knowledge, understanding, and the ability to interpret dreams, explain riddles, and solve difficult problems. Summon Daniel, therefore, and he will give you the inter- Daniel Interprets the Handwriting pretation.” 13 14 So Daniel was brought before the king, who asked him, “Are you Daniel, one of the exiles my father the king brought from Judah? I have heard that the spirit of the gods is in you, and that you have insight, intelligence, and extraordinary 15 wisdom. 16 Now the wise men and enchanters wer" + }, + { + "verseNum": 4, + "text": "4 16 Thus the administrators and satraps sought a charge against Daniel concerning the kingdom, but they could find no charge or corruption, be- cause he was trustworthy, and no negligence or Finally these men corruption was found in him. said, “We will never find any charge against this Daniel unless we find something against him 6 concerning the law of his God.” 5 7 So the administrators and satraps went to- gether to the king and said, “O King Darius, may All the royal administrators, you live forever! prefects, satraps, advisers, and governors have agreed that the king should establish an ordi- nance and enforce a decree that for thirty days anyone who petitions any god or man except 8 you, O king, will be thrown into the den of lions. Therefore, O king, establish the decree and sign the document so that it cannot be changed—in accordance with the law of the Medes and Per- 9 sians, which cannot be repealed.” Therefore King Darius signed the written Daniel in the Lions’ Den decree. 10 11 Now when Daniel learned that the document had been signed, he went into his house, where the windows of his upper room opened toward Jerusalem, and three times a day he got down on his knees, prayed, and gave thanks to his God, Then these men just as he had done before. went as a group and found Daniel petitioning and imploring his God. So they approached the king and asked about his royal decree: “Did you not sign a decree that for thirty days any man who petitions any god or man except y" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–8) And the dragon stood on the shore of the sea. a 13 Then I saw a beast with ten horns and seven heads rising out of the sea. There 2 were ten royal crowns on its horns and blasphe- The beast I saw was mous names on its heads. like a leopard, with the feet of a bear and the mouth of a lion. And the dragon gave the beast 3 his power and his throne and great authority. 4 One of the heads of the beast appeared to have been mortally wounded. But the mortal wound was healed, and the whole world marveled and They worshiped the dragon followed the beast. who had given authority to the beast, and they worshiped the beast, saying, “Who is like the And he stood on the sand of the sea. a 17 beast, and who can wage war against it?”" + }, + { + "verseNum": 13, + "text": "–14. Or Or BYZ and TR do not include ; see" + }, + { + "verseNum": 20, + "text": "| 801 A river of fire was flowing, coming out from His presence. Thousands upon thousands attended Him, and myriads upon myriads stood before Him. The court was convened, 11 and the books were opened. Then I kept watching because of the arrogant words the horn was speaking. As I continued to watch, the beast was slain, and its body was As destroyed and thrown into the blazing fire. for the rest of the beasts, their dominion was removed, but they were granted an extension of Daniel’s Vision of the Son of Man life for a season and a time. 13 12 In my vision in the night I continued to watch, b c and I saw One like the Son of Man 14 coming with the clouds of heaven. He approached the Ancient of Days and was led into His presence. And He was given dominion, glory, and kingship, that the people of every nation and language should serve Him. His dominion is an everlasting dominion that will not pass away, and His kingdom is one Daniel’s Visions Interpreted that will never be destroyed. 15 16 I, Daniel, was grieved in my spirit, and the vi- sions in my mind alarmed me. I approached one of those who were standing there, and I asked him the true meaning of all this. 17 So he told me the interpretation of these things: ‘These four great beasts are four kings who will arise from the earth. But the saints of the Most High will receive the kingdom and possess 19 it forever—yes, forever and ever.’ 18 20 Then I wanted to know the true meaning of the fourth beast, which was different from al" + }, + { + "verseNum": 21, + "text": "21 As I watched, this horn was waging war 22 against the saints and prevailing against them, until the Ancient of Days arrived and pro- nounced judgment in favor of the saints of the Most High, and the time came for them to possess 23 the kingdom. 24 This is what he said: ‘The fourth beast is a fourth kingdom that will appear on the earth, dif- ferent from all the other kingdoms, and it will devour the whole earth, trample it down, and crush it. And the ten horns are ten kings who will rise from this kingdom. After them another king, different from the earlier ones, will rise and subdue three kings. He will speak out against the Most High and oppress the saints of the Most High, intending to change the appointed times and laws; and the saints will be given into his 26 hand for a time, and times, and half a time. 25 27 But the court will convene, and his dominion will be taken away and completely destroyed forever. Then the sovereignty, dominion, and greatness of the kingdoms under all of heaven will be given to the people, the saints of the Most High. His kingdom will be an everlasting king- 28 dom, and all rulers will serve and obey Him.’ Thus ends the matter. As for me, Daniel, my thoughts troubled me greatly, and my face Daniel’s Vision of the Ram and the Goat turned pale. But I kept the matter to myself.” 8 2 In the third year of the reign of King Belshazzar, a vision appeared to me, Daniel, subsequent to the one that had appeared to me And in the vision I saw myself in t" + }, + { + "verseNum": 28, + "text": "is in Aramaic. Hebrew That is, the Babylonians Or ; also in 794 |" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 18, + "text": "| 803 Judah, the people of Jerusalem, and all Israel near and far, in all the countries to which You have 8 driven us because of our unfaithfulness to You. O LORD, we are covered with shame—our kings, our leaders, and our fathers—because we 9 have sinned against You. 10 To the Lord our God belong compassion and forgiveness, even though we have rebelled and have not obeyed the voice of against Him the LORD our God to walk in His laws, which He 11 set before us through His servants the prophets. 12 All Israel has transgressed Your law and turned away, refusing to obey Your voice; so the oath and the curse written in the Law of Moses the servant of God has been poured out on us, You have because we have sinned against You. carried out the words spoken against us and against our rulers by bringing upon us a great disaster. For under all of heaven, nothing has ever been done like what has been done to 13 Jerusalem. 14 Just as it is written in the Law of Moses, all this disaster has come upon us, yet we have not sought the favor of the LORD our God by turning from our iniquities and giving attention to Your Therefore the LORD has kept the calam- truth. ity in store and brought it upon us. For the LORD our God is righteous in all He does; yet we have 15 not obeyed His voice. 16 Now, O Lord our God, who brought Your peo- ple out of the land of Egypt with a mighty hand, and who made for Yourself a name renowned to this day, we have sinned; we have acted wick- O Lord, in keeping with a" + }, + { + "verseNum": 19, + "text": "19 O Lord, listen! O Lord, forgive! O Lord, hear and act! For Your sake, O my God, do not delay, because Your city and Your people bear Your Gabriel’s Prophecy of the Seventy Weeks name.” 20 22 21 While I was speaking, praying, confessing my sin and that of my people Israel, and presenting my petition before the LORD my God concerning while I was still praying, His holy mountain— Gabriel, the man I had seen in the earlier vision, came to me in swift flight about the time of the He instructed me and spoke evening sacrifice. with me, saying: “O Daniel, I have come now to At the be- give you insight and understanding. ginning of your petitions, an answer went out, and I have come to tell you, for you are highly precious. So consider the message and under- a 24 stand the vision: 23 Seventy weeks are decreed for your people and your holy city to stop their transgression, to put an end to sin, to make atonement for iniquity, to bring in everlasting righteousness, to seal up vision and prophecy, and to anoint the 25 Most Holy Place. b c Know and understand this: From the issuance of the decree to restore and rebuild Jerusalem until the Messiah, the Prince, there will be seven weeks and sixty-two weeks. It will be rebuilt 26 with streets and a trench, but in times of distress. d Then after the sixty-two weeks will be cut off and will have nothing. the Messiah e 27 Then the people of the prince who is to come will destroy the city and the sanctuary. The end will come like a flood, and" + }, + { + "verseNum": 27, + "text": "," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 19, + "text": "| 805 e she will be given up, along with her royal escort 7 and the one who supported her. and her father f 8 But one from her family line will rise up in his place, come against the army of the king of the North, and enter his fortress, fighting and pre- He will take even their gods captive to vailing. Egypt, with their metal images and their precious vessels of silver and gold. For some years he will stay away from the king of the North, who will invade the realm of the king of the South and 10 then return to his own land. 9 But his sons will stir up strife and assemble a great army, which will advance forcefully, sweeping through like a flood, and will again carry the battle as far as his fortress. In a rage, the king of the South will march out to fight the king of the North, who will raise a large army, but 12 it will be delivered into the hand of his enemy. 11 13 When the army is carried off, the king of the South will be proud in heart and will cast down tens of thousands, but he will not triumph. For g the king of the North will raise another army, larger than the first, and after some years he will advance with a great army and many sup- 14 plies. In those times many will rise up against the king of the South. Violent ones among your own people will exalt themselves in fulfillment of the 15 vision, but they will fail. 16 Then the king of the North will come, build up a siege ramp, and capture a fortified city. The forces of the South will not stand; even their best t" + }, + { + "verseNum": 20, + "text": "20 35 In his place one will arise who will send out a tax collector for the glory of the kingdom; but within a few days he will be destroyed, though 21 not in anger or in battle. 22 In his place a despicable person will arise; royal honors will not be given to him, but he will come in a time of peace and seize the kingdom by Then a flood of forces will be swept intrigue. away before him and destroyed, along with a 23 prince of the covenant. 24 After an alliance is made with him, he will act deceitfully; for he will rise to power with only a In a time of peace, he will invade few people. the richest provinces and do what his fathers and forefathers never did. He will lavish plunder, loot, and wealth on his followers, and he will plot 25 against the strongholds—but only for a time. 26 And with a large army he will stir up his power and his courage against the king of the South, who will mobilize a very large and powerful army but will not withstand the plots devised Those who eat from his provi- against him. sions will seek to destroy him; his army will be 27 swept away, and many will fall slain. 28 And the two kings, with their hearts bent on evil, will speak lies at the same table, but to no avail, for still the end will come at the appointed The king of the North will return to his time. land with great wealth, but his heart will be set against the holy covenant; so he will do damage 29 and return to his own land. a Ships of Kittim At the appointed time he will invade the So" + }, + { + "verseNum": 31, + "text": ", and" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "–13) 1 a This is the revelation of Jesus Christ, which God gave Him to show His servants what must soon come to pass. He made it known by who tes- sending His angel to His servant John, tifies to everything he saw. This is the word of 3 God and the testimony of Jesus Christ. 2 Blessed is the one who reads aloud the words of this prophecy, and blessed are those who hear and obey what is written in it, because the time John Greets the Seven Churches is near. 4 John, b To the seven churches in the province of Asia: c 5 Grace and peace to you from Him who is and was before and is to come, and from the seven spirits and from Jesus Christ, the faithful His throne, witness, the firstborn from the dead, and the ruler of the kings of the earth. 6 To Him who loves us and has released us from who has made us to be a our sins by His blood, kingdom, priests to His God and Father—to Him 7 be the glory and power forever and ever! Amen. Behold, He is coming with the clouds, and every eye will see Him—even those who pierced Him. And all the tribes of the earth will mourn because 8 of Him. So shall it be! Amen. d “I am the Alpha and the Omega, ” says the Lord God, who is and was and is to come—the John’s Vision on Patmos Almighty. 9 seven churches: to Ephesus, Smyrna, Pergamum, 12 Thyatira, Sardis, Philadelphia, and Laodicea.” f 13 14 Then I turned to see the voice that was speak- ing with me. And having turned, I saw seven golden lampstands, and among the lampstands was One like the Son of Ma" + }, + { + "verseNum": 2, + "text": ". 29 Do not be amazed at this, for the hour is com- ing when all who are in their graves will hear His voice and come out—those who have done a good to the resurrection of life, and those who 30 have done evil to the resurrection of judgment. I can do nothing by Myself; I judge only as I hear. And My judgment is just, because I do not seek My own will, but the will of Him who sent Testimonies about Jesus Me. 31 32 If I testify about Myself, My testimony is not There is another who testifies about Me, valid. 33 and I know that His testimony about Me is valid. 34 You have sent to John, and he has testified to Even though I do not accept human the truth. testimony, I say these things so that you may be 35 saved. 37 36 John was a lamp that burned and gave light, and you were willing for a season to bask in his light. But I have testimony more substantial than that of John. For the works that the Father has given Me to accomplish—the very works I am doing—testify about Me that the Father has And the Father who sent Me has Him- sent Me. self testified about Me. You have never heard His nor does His word voice nor seen His form, abide in you, because you do not believe the One The Witness of Scripture" + }, + { + "verseNum": 3, + "text": ". BYZ and TR ; see" + }, + { + "verseNum": 11, + "text": ". 16 17" + }, + { + "verseNum": 13, + "text": "| 807 be for a time, and times, and half a time. When the power of the holy people has finally been 8 shattered, all these things will be completed.” I heard, but I did not understand. So I asked, “My lord, what will be the outcome of these 9 things?” 10 “Go on your way, Daniel,” he replied, “for the words are closed up and sealed until the time of the end. Many will be purified, made spotless, and refined, but the wicked will continue to act wickedly. None of the wicked will understand, 11 but the wise will understand. And from the time the daily sacrifice is abol- ished and the abomination of desolation set up, there will be 1,290 days. Blessed is he who 13 waits and reaches the end of the 1,335 days. 12 But as for you, go on your way until the end. You will rest, and then you will arise to your inheritance at the end of the days.” a 2 b 3 expanse firmament c 3 See" + } + ] + } + ] + }, + { + "name": "Hosea", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 10, + "text": "" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 23, + "text": "" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–5) it.’ 6 “Get up! Get up! Flee from the land of the north,” declares the LORD, “for I have scattered you like 7 the four winds of heaven,” declares the LORD. “Get up, O Zion! Escape, you who dwell with the 8 Daughter of Babylon!” a b For this is what the LORD of Hosts says: “After against the nations that His Glory has sent Me 9 have plundered you—for whoever touches you I will surely touches the apple wave My hand over them, so that they will be- come plunder for their own servants. Then you 10 will know that the LORD of Hosts has sent Me.” of His eye— 11 “Shout for joy and be glad, O Daughter of Zion, for I am coming to dwell among you,” declares “On that day many nations will join the LORD. themselves to the LORD, and they will become My people. I will dwell among you, and you will 12 know that the LORD of Hosts has sent Me to you. And the LORD will take possession of Judah as 13 His portion in the Holy Land, and He will once Be silent before the again choose Jerusalem. LORD, all people, for He has roused Himself from The Vision of Joshua the High Priest His holy dwelling.” 3 c d Then the angel showed me Joshua the high of the priest standing before the angel standing at his right hand to LORD, with Satan 2 accuse him. And the LORD said to Satan: “The LORD rebukes a 8 you, Satan! Indeed, the LORD, who has chosen After the Glorious One has sent Me e Jerusalem, rebukes you! Is not this man a fire- 3 brand snatched from the fire?” 4 Now Joshua was dressed in filthy garments" + }, + { + "verseNum": 2, + "text": "" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "| 809 in the sight of her lovers, and no one will deliver her 11 out of My hands. I will put an end to all her exultation: 12 her feasts, New Moons, and Sabbaths— all her appointed feasts. I will destroy her vines and fig trees, which she thinks are the wages paid by her lovers. So I will make them into a thicket, 13 and the beasts of the field will devour them. I will punish her for the days of the Baals when she burned incense to them, when she adorned herself with rings and jewelry, and went after her lovers. declares the LORD. But Me she forgot,” God’s Mercy to Israel 14 “Therefore, behold, I will allure her and lead her to the wilderness, and speak to her tenderly. a 15 There I will give back her vineyards and make the Valley of Achor into a gateway of hope. There she will respond as she did 16 in the days of her youth, as in the day she came up out of Egypt. In that day,” declares the LORD, b c “you will call Me ‘my Husband,’ 17 and no longer call Me ‘my Master.’ For I will remove from her lips the names of 18 the Baals; no longer will their names be invoked. On that day I will make a covenant for them with the beasts of the field and the birds of the air and the creatures that crawl on the ground. And I will abolish bow and sword I will betroth you in righteousness and d 20 justice, in loving devotion and compassion. 21 And I will betroth you in faithfulness, and you will know the LORD.” “On that day I will respond—” declares the LORD— 22 “I will respond to the heavens" + }, + { + "verseNum": 2, + "text": "2 Cursing and lying, murder and stealing, and adultery are rampant; 3 one act of bloodshed follows another. Therefore the land mourns, and all who dwell in it will waste away with the beasts of the field and the birds 4 of the air; even the fish of the sea disappear. But let no man contend; let no man offer reproof; a for your people are like those who contend with a priest. 5 You will stumble by day, and the prophet will stumble with you by 6 night; so I will destroy your mother— My people are destroyed for lack of knowledge. Because you have rejected knowledge, I will also reject you as My priests. Since you have forgotten the law of your God, 7 I will also forget your children. The more they multiplied, b the more they sinned against Me; they exchanged their Glory 8 for a thing of disgrace. c 9 They feed on the sins of My people and set their hearts on iniquity. And it shall be like people, like priest. 10 I will punish both of them for their ways and repay them for their deeds. They will eat but not be satisfied; they will be promiscuous but not multiply. 11 For they have abandoned the LORD to give themselves to promiscuity, wine, and new wine, which take away understanding. 12 My people consult their wooden idols, and their divining rods inform them. For a spirit of prostitution leads them astray and they have played the harlot against 13 their God. They sacrifice on the mountaintops and burn offerings on the hills, under oak, poplar, and terebinth, b 7 for My case is ag" + }, + { + "verseNum": 15, + "text": ". 21 “I hate, I despise your feasts! 22 I cannot stand the stench of your solemn assemblies. Even though you offer Me burnt offerings and grain offerings, I will not accept them; 23 for your peace offerings of fattened cattle I will have no regard. 24 Take away from Me the noise of your songs! I will not listen to the music of your harps. But let justice roll on like a river, 25 and righteousness like an ever-flowing stream. Did you bring Me sacrifices and offerings 26 forty years in the wilderness, O house of Israel? a You have taken along Sakkuth your king 27 and Kaiwan your star god, the idols you made for yourselves. Therefore I will send you into exile beyond b Damascus,” says the LORD, whose name is the God of Woe to Those at Ease in Zion" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 6, + "text": "BYZ and TR ; see" + }, + { + "verseNum": 11, + "text": "| 811 Israel’s arrogance testifies against them; Israel and Ephraim stumble in their 6 iniquity; even Judah stumbles with them. They go with their flocks and herds to seek the LORD, but they do not find Him; 7 He has withdrawn Himself from them. They have been unfaithful to the LORD; a for they have borne illegitimate children. Now the New Moon 8 along with their land. will devour them Blow the ram’s horn in Gibeah, the trumpet in Ramah; raise the battle cry in Beth-aven: b 9 Lead on, O Benjamin! Ephraim will be laid waste on the day of rebuke. Among the tribes of Israel 10 I proclaim what is certain. The princes of Judah c are like those who move boundary stones; I will pour out My fury 11 upon them like water. Ephraim is oppressed, crushed in judgment, for he is determined to follow worthless d 12 idols. So I am like a moth to Ephraim, 13 and like decay to the house of Judah. When Ephraim saw his sickness and Judah his wound, e then Ephraim turned to Assyria and sent to the great king. 14 But he cannot cure you or heal your wound. For I am like a lion to Ephraim and like a young lion to the house of Judah. I, even I, will tear them to pieces and then go away. 15 I will carry them off where no one can rescue them. Then I will return to My place until they admit their guilt and seek My face; 6 Come, let us return to the LORD. For He has torn us to pieces, but He will heal us; He has wounded us, 2 but He will bind up our wounds. After two days He will revive us; on the third d" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Ephraim’s Iniquity 13 7 a When I heal Israel, the iniquity of Ephraim as well as the crimes of Samaria. will be exposed, For they practice deceit and thieves break in; 2 bandits raid in the streets. But they fail to consider in their hearts that I remember all their evil. Now their deeds are all around them; 3 they are before My face. 4 They delight the king with their evil, and the princes with their lies. They are all adulterers, like an oven heated by a baker who needs not stoke the fire 5 from the kneading to the rising of the dough. The princes are inflamed with wine on the day of our king; so he joins hands 6 with those who mock him. b For they prepare their heart like an oven while they lie in wait; all night their anger smolders; 7 Woe to them, for they have strayed from Me! Destruction to them, for they have rebelled against Me! 14 Though I would redeem them, they speak lies against Me. They do not cry out to Me from their hearts d when they wail upon their beds. They slash themselves for grain and 15 new wine, but turn away from Me. Although I trained and strengthened 16 their arms, they plot evil against Me. They turn, but not to the Most High; they are like a faulty bow. Their leaders will fall by the sword for the cursing of their tongue; for this they will be ridiculed Israel Will Reap the Whirlwind in the land of Egypt. 8 Put the ram’s horn to your lips! An eagle looms over the house of the LORD, because the people have transgressed 2 My covenant in the morning" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 15, + "text": "| 813 Israel is swallowed up! 9 Now they are among the nations like a worthless vessel. 10 a For they have gone up to Assyria like a wild donkey on its own. Ephraim has hired lovers. Though they hire allies among the nations, I will now round them up, and they will begin to diminish under the oppression of the king of princes. 11 For even if they flee destruction, Egypt will gather them and Memphis will bury them. Their precious silver will be taken over 7 by thistles, and thorns will overrun their tents. The days of punishment have come; the days of retribution have arrived— let Israel know it. The prophet is called a fool, and the inspired man insane, 12 Though Ephraim multiplied the altars for sin, because of the greatness 8 they became his altars for sinning. Though I wrote for them the great things of of your iniquity and hostility. The prophet is Ephraim’s watchman, c 13 My law, they regarded them as something strange. Though they offer sacrifices as gifts to Me, and though they eat the meat, the LORD does not accept them. Now He will remember their iniquity and 14 punish their sins: They will return to Egypt. Israel has forgotten his Maker and built palaces; Judah has multiplied its fortified cities. But I will send fire upon their cities, and it will consume their citadels. Israel’s Punishment 9 Do not rejoice, O Israel, with exultation like the nations, for you have played the harlot against your God; 2 you have made love for hire on every threshing floor. The thresh" + }, + { + "verseNum": 16, + "text": "16 Ephraim is struck down; their root is withered; they cannot bear fruit. Even if they bear children, 17 I will slay the darlings of their wombs. My God will reject them 9 Since the days of Gibeah you have sinned, O Israel, and there you have remained. g 10 Did not the battle in Gibeah overtake the sons of iniquity? I will chasten them when I please; because they have not obeyed Him; nations will be gathered against them and they shall be wanderers Retribution for Israel’s Sin among the nations. 11 to put them in bondage for their double transgression. 10 Israel was a luxuriant vine, yielding fruit for himself. The more his fruit increased, the more he increased the altars. The better his land produced, 2 the better he made the sacred pillars. Their hearts are devious; now they must bear their guilt. The LORD will break down their altars 3 and demolish their sacred pillars. Surely now they will say, “We have no king, 4 for we do not revere the LORD. What can a king do for us?” They speak mere words; Ephraim is a well-trained heifer that loves to thresh; but I will place a yoke on her fair neck. 12 I will harness Ephraim, Judah will plow, and Jacob will break the hard ground. Sow for yourselves righteousness and reap the fruit of loving devotion; break up your unplowed ground. For it is time to seek the LORD 13 until He comes and sends righteousness upon you like rain. You have plowed wickedness and reaped injustice; you have eaten the fruit of lies. 14 Because you have trust" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 8, + "text": "17 Now Pilate was obligated to release to the people one prisoner at the feast , rendered in some translations as See" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "–7) another route. 13 When the Magi had gone, an angel of the Lord appeared to Joseph in a dream. “Get up!” he said. “Take the Child and His mother and flee to Egypt. Stay there until I tell you, for Herod is going to a 25 search for the Child to kill Him.” he did not know her as it rose b 2 c 6 f 3 Literally 31:15" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 2, + "text": "| 815 with ropes of love; I lifted the yoke from their necks 5 and bent down to feed them. Will they not return to the land of Egypt 6 and be ruled by Assyria because they refused to repent? A sword will flash through their cities; 7 it will destroy the bars of their gates and consume them in their own plans. My people are bent on turning from Me. Though they call to the Most High, He will by no means exalt them. God’s Love for Israel 8 How could I give you up, O Ephraim? How could I surrender you, O Israel? How could I make you like Admah? How could I treat you like Zeboiim? My heart is turned within Me; 9 My compassion is stirred! prevailed; he wept and sought His favor; e he found Him at Bethel 5 and spoke with Him there — the LORD God of Hosts, 6 the LORD is His name of renown. But you must return to your God; maintain love and justice, and always wait on your God. 7 A merchant loves to defraud 8 with dishonest scales in his hands. And Ephraim boasts: “How rich I have become! I have found wealth for myself. In all my labors, they can find in me 9 no iniquity that is sinful.” But I am the LORD your God ever since the land of Egypt. I will again make you dwell in tents, 10 as in the days of the appointed feast. I will not execute the full fury of My anger; I spoke through the prophets I will not destroy Ephraim again. For I am God and not man— 10 the Holy One among you— and I will not come in wrath. They will walk after the LORD; He will roar like a lion. When He roars, 11" + }, + { + "verseNum": 3, + "text": "3 Therefore they will be like the morning mist, His fountain will fail, like the early dew that vanishes, like chaff blown from a threshing floor, like smoke through an open window. 4 Yet I am the LORD your God ever since the land of Egypt; 5 you know no God but Me, for there is no Savior besides Me. 6 I knew you in the wilderness, in the land of drought. When they had pasture, they became satisfied; when they were satisfied, 7 8 their hearts became proud, and as a result they forgot Me. So like a lion I will pounce on them; like a leopard I will lurk by the path. Like a bear robbed of her cubs I will attack them, and I will tear open their chests. There I will devour them like a lion, Death and Resurrection (1 Cor. 15:50–58) 9 like a wild beast tearing them apart. You are destroyed, O Israel, 10 because you are against Me— a against your helper. Where is your king now to save you in all your cities, and the rulers to whom you said, “Give me a king and princes”? So in My anger I gave you a king, 11 12 14 13 The iniquity of Ephraim is bound up; his sin is stored up. Labor pains come upon him, but he is an unwise son. When the time arrives, he fails to present himself at the opening 8 of the womb. b I will ransom them from the power of Sheol; I will redeem them from Death. c Where, O Death, are your plagues? Where, O Sheol, is your sting? Judgment on Samaria Compassion is hidden from My eyes. 15 Although he flourishes among his brothers, an east wind will come— and his spring w" + }, + { + "verseNum": 9, + "text": "–14) 49 50 Now I declare to you, brothers, that flesh and blood cannot inherit the kingdom of God, nor 51 does the perishable inherit the imperishable. 52 Listen, I tell you a mystery: We will not all in an in- sleep, but we will all be changed— stant, in the twinkling of an eye, at the last trum- pet. For the trumpet will sound, the dead will be 53 raised imperishable, and we will be changed. with the imperishable, and the mortal with immortality. a 45 e 55 For the perishable must be clothed clothe itself b 53 c 54 b 1 Corinthians 16:12 | 1033 54 c When the perishable has been clothed with the imperishable and the mortal with immortality, then the saying that is written will come to pass: 55 “Death has been swallowed up in victory.” d e “Where, O Death, is your victory? Where, O Death, is your sting?” 56 57 The sting of death is sin, and the power of sin But thanks be to God, who gives us is the law. 58 the victory through our Lord Jesus Christ! Therefore, my beloved brothers, be steadfast and immovable. Always excel in the work of the Lord, because you know that your labor in the The Collection for the Saints Lord is not in vain. (2 Corinthians 9:1–15) 16 3 2 Now about the collection for the saints, you are to do as I directed the churches On the first day of every week, each of Galatia: of you should set aside a portion of his income, saving it up, so that when I come no collections Then, on my arrival, I will send will be needed. 4 letters with those you recommend to carr" + }, + { + "verseNum": 14, + "text": "(see also LXX); BYZ and TR Feast of Weeks Shavuot, the late spring feast of pilgrimage to Jerusalem; it is also known as (see" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "–3) 1 In the eighth month of the second year of Da- rius, the word of the LORD came to the prophet Zechariah son of Berechiah, the son of 2 Iddo, saying: 3 “The LORD was very angry with your fathers. So tell the people that this is what the LORD of Hosts says: ‘Return to Me, declares the LORD of Hosts, and I will return to you, says the LORD 4 of Hosts.’ Do not be like your fathers, to whom the former prophets proclaimed that this is what the LORD of Hosts says: ‘Turn now from your evil ways and deeds.’ But they did not listen or pay attention to Me, de- 5 clares the LORD. 6 Where are your fathers now? And the prophets, But did not My words and do they live forever? My statutes, which I commanded My servants the prophets, overtake your fathers? They repented and said, ‘Just as the LORD of Hosts purposed to do to us according to our ways and deeds, so He The Vision of the Horses has done to us.’ 7 ” a On the twenty-fourth day of the eleventh month, the month of Shebat, in the second year of Darius, the word of the LORD came to the prophet Zechariah son of Berechiah, the son of 8 Iddo. I looked out into the night and saw a man riding on a red horse. He was standing among the myr- tle trees in the hollow, and behind him were red, 9 sorrel, and white horses. “What are these, my lord?” I asked. And the angel who was speaking with me replied, 10 “I will show you what they are.” Then the man standing among the myrtle trees explained, “They are the ones the LORD has sent a 7 Shebat t" + } + ] + } + ] + }, + { + "name": "Joel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 13, + "text": "–20 ;" + }, + { + "verseNum": 20, + "text": "20 Even the beasts of the field pant for You, Indeed, His camp is very large, The Army of Locusts" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 10, + "text": ". Or 888 |" + }, + { + "verseNum": 28, + "text": "–32) 14 Then Peter stood up with the Eleven, lifted up his voice, and addressed the crowd: “Men of Ju- dea and all who dwell in Jerusalem, let this be 15 known to you, and listen carefully to my words. These men are not drunk, as you suppose. It is No, this is what only the third hour of the day! 17 was spoken by the prophet Joel: 16 d ‘In the last days, God says, I will pour out My Spirit on all people. Your sons and daughters will prophesy, your young men will see visions, your old men will dream dreams. a 1 the Feast of Weeks" + }, + { + "verseNum": 32, + "text": "good news of good things See" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 8, + "text": "| 819 The northern army I will drive away from you, a banishing it to a barren and desolate land, b its front ranks into the Eastern Sea, and its rear guard into the Western Sea. And its stench will rise; its foul odor will ascend. 21 For He has done great things. 22 Do not be afraid, O land; rejoice and be glad, for the LORD has done great things. Do not be afraid, O beasts of the field, for the open pastures have turned green, c 23 the trees bear their fruit, and the fig tree and vine yield their best. Be glad, O children of Zion, and rejoice in the LORD your God, for He has given you the autumn rains for your vindication. He sends you showers, 24 both autumn and spring rains, as before. The threshing floors will be full of grain, 25 and the vats will overflow with new wine and oil. I will repay you for the years eaten by locusts— the swarming locust, the young locust, d the destroying locust, and the devouring 26 locust — My great army that I sent against you. You will have plenty to eat, until you are satisfied. You will praise the name of the LORD your God, who has worked wonders for you. 27 My people will never again be put to shame. Then you will know that I am present in Israel and that I am the LORD your God, and there is no other. My people will never again I Will Pour Out My Spirit" + }, + { + "verseNum": 9, + "text": "9 Proclaim this among the nations: But the LORD will be a refuge for His “Prepare for war; rouse the mighty men; let all the men of war 10 advance and attack! Beat your plowshares into swords 11 and your pruning hooks into spears. Let the weak say, ‘I am strong!’ Come quickly, all you surrounding nations, and gather yourselves. Bring down Your mighty ones, O LORD. 12 Let the nations be roused and advance to the Valley of Jehoshaphat, 13 for there I will sit down to judge all the nations on every side. a Swing the sickle, for the harvest is ripe. Come, trample the grapes, for the winepress is full; the wine vats overflow because their wickedness is great. 14 Multitudes, multitudes 15 in the valley of decision! For the Day of the LORD is near in the valley of decision. 16 The sun and moon will grow dark, and the stars will no longer shine. The LORD will roar from Zion and raise His voice from Jerusalem; heaven and earth will tremble. people, a stronghold for the people Blessings for God’s People of Israel. 17 Then you will know that I am the LORD your God, who dwells in Zion, My holy mountain. Jerusalem will be holy, 18 never again to be overrun by foreigners. And in that day the mountains will drip with sweet wine, and the hills will flow with milk. All the streams of Judah will run with water, and a spring will flow from the house b 19 of the LORD to water the Valley of Acacias. Egypt will become desolate, and Edom a desert wasteland, because of the violence done to the peopl" + }, + { + "verseNum": 13, + "text": ", including LXX. BYZ and TR ; GOC Literally 16 34" + } + ] + } + ] + }, + { + "name": "Amos", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–15) the LORD.” 14 This is what the LORD says: “As for all My evil neighbors who attack the inheritance that I be- queathed to My people Israel, I am about to uproot them from their land, and I will uproot the house of Judah from among them. But after I have uprooted them, I will once again have com- passion on them and return each one to his 16 inheritance and to his land. 15 And if they will diligently learn the ways of My people and swear by My name, saying, ‘As surely as the LORD lives’—just as they once taught My people to swear by Baal—then they will be es- tablished among My people. But if they will not obey, then I will uproot that nation; I will uproot The Linen Loincloth it and destroy it, declares the LORD.” 17 13 This is what the LORD said to me: “Go and buy yourself a linen loincloth and put it around your waist, but do not let it touch 2 water.” So I bought a loincloth in accordance with the 3 word of the LORD, and I put it around my waist. 4 Then the word of the LORD came to me a second “Take the loincloth that you bought and and hide time: are wearing, and go at once to Perath 5 it there in a crevice of the rocks.” c So I went and hid it at Perath, as the LORD had 6 commanded me. 7 Many days later the LORD said to me, “Arise, go to Perath, and get the loincloth that I commanded you to hide there.” So I went to Perath and dug up the loincloth, and I took it from the place where I had hidden it. But now it was ruined—of no use at all. to the Euphrates c 4 like a" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 2, + "text": "2 12 So I will send fire against Moab to consume the citadels of Kerioth. Moab will die in tumult, 3 amid war cries and the sound of the ram’s horn. I will cut off the ruler of Moab and kill all the officials with him,” says the LORD. 4 This is what the LORD says: “For three transgressions of Judah, even four, I will not revoke My judgment, because they reject the Law of the LORD and fail to keep His statutes; they are led astray by the lies 5 in which their fathers walked. 6 So I will send fire upon Judah to consume the citadels of Jerusalem.” This is what the LORD says: “For three transgressions of Israel, even four, I will not revoke My judgment, because they sell the righteous for silver 7 and the needy for a pair of sandals. They trample on the heads of the poor as on the dust of the earth; they push the needy out of their way. A man and his father 8 have relations with the same girl and so profane My holy name. They lie down beside every altar on garments taken in pledge. a b And in the house of their God, 9 they drink wine obtained through fines. Yet it was I who destroyed the Amorite before them, though his height was like that of the cedars, and he was as strong as the oaks. 10 Yet I destroyed his fruit above and his roots below. And I brought you up from the land of Egypt and led you forty years in the wilderness, 11 that you might take possession of the land of the Amorite. I raised up prophets from your sons and Nazirites from your young men. Is this not true, dec" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 12, + "text": "| 823 d Bring your sacrifices every morning, 5 your tithes every three days. Offer leavened bread as a thank offering, and loudly proclaim your freewill offerings. For that is what you children of Israel love declares the Lord GOD. to do,” 6 e “I afflicted all your cities with cleanness of This is what the LORD says: teeth “As the shepherd snatches from the mouth of the lion two legs or a piece of an ear, so the Israelites dwelling in Samaria will be rescued b 13 having just the corner of a bed or the cushion of a couch. 14 Hear and testify against the house of Jacob, declares the Lord GOD, the God of Hosts. On the day I punish Israel for their transgressions, I will visit destruction on the altars of Bethel; 15 the horns of the altar will be cut off, and they will fall to the ground. I will tear down the winter house along with the summer house; the houses of ivory will also perish, declares the LORD. and the great houses will come to an end,” Punishment Brings No Repentance 4 Hear this word, you cows of Bashan on Mount Samaria, you women who oppress the poor and crush the needy, who say to your husbands, “Bring us more to drink.” 2 The Lord GOD has sworn by His holiness: “Behold, the days are coming 3 when you will be taken away with hooks, and your posterity with fishhooks. You will go out through broken walls, each one straight ahead of her, and you will be cast out toward Harmon, declares the LORD. c ” 4 and all your towns with lack of bread, yet you did not return to Me" + }, + { + "verseNum": 13, + "text": "13 10 For behold, He who forms the mountains, There are those who hate the one who who creates the wind and reveals His thoughts to man, who turns the dawn to darkness reproves in the gate 11 and despise him who speaks with integrity. A Lamentation against Israel and strides on the heights of the earth— the LORD, the God of Hosts, is His name.” Therefore, because you trample on the poor and exact from him a tax of grain, 5 2 Hear this word, O house of Israel, this lamentation I take up against you: “Fallen is Virgin Israel, never to rise again. 3 She lies abandoned on her land, with no one to raise her up.” This is what the Lord GOD says: “The city that marches out a thousand strong will have but a hundred left, and the one that marches out a hundred strong will have but ten left in the house of A Call to Repentance" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 4, + "text": "–15 ;" + }, + { + "verseNum": 16, + "text": "–27) 39 40 But our fathers refused to obey him. Instead, they rejected him and in their hearts turned back They said to Aaron, ‘Make us gods to Egypt. who will go before us! As for this Moses who led us out of the land of Egypt, we do not know what 41 has happened to him.’ h 42 At that time they made a calf and offered a sacrifice to the idol, rejoicing in the works of But God turned away from them their hands. and gave them over to the worship of the host of heaven, as it is written in the book of the prophets: ‘Did you bring Me sacrifices and offerings 43 forty years in the wilderness, O house of Israel? You have taken along the tabernacle of Molech and the star of your god Rephan, the idols you made to worship. i Therefore I will send you into exile The Tabernacle of the Testimony" + }, + { + "verseNum": 25, + "text": "–27 (see also LXX) SBL, WH, BYZ, and TR; see also LXX for" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "–7)" + }, + { + "verseNum": 13, + "text": ". 10 11 Now behold, as the LORD promised, He has kept me alive these forty-five years since He spoke this word to Moses, while Israel wandered in the wilderness. So here I am today, eighty-five years old, still as strong today as I was the day Moses sent me out. As my strength was then, so 12 it is now for war, for going out, and for coming in. Now therefore give me this hill country that the LORD promised me on that day, for you your- self heard then that the Anakim were there, with great and fortified cities. Perhaps with the LORD’s help I will drive them out, as the LORD 13 has spoken.” 15 14 and gave him Hebron as his Then Joshua blessed Caleb son of Jephunneh inheritance. Therefore Hebron belongs to Caleb son of Jephunneh the Kenizzite as an inheritance to this day, because he wholly followed the LORD, the God of Israel. (Hebron used to be called Kir- iath-arba, after Arba, the greatest man among the Anakim.) Judah’s Inheritance Then the land had rest from war. 15 Now the allotment for the clans of the tribe of Judah extended to the border of Edom, to the Wilderness of Zin at the extreme southern boundary: 2 a 3 b Their southern border started at the bay on the southern tip of the Salt Sea, proceeded continued south of the Ascent of Akrabbim, on to Zin, went over to the south of Kadesh- barnea, ran past Hezron up to Addar, and curved toward Karka. It proceeded to d Azmon, joined the Brook of Egypt, and ended 5 at the Sea. southern border. This was their 4 c The eastern b" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–9) for the streams of water have dried up, and fire has consumed the open pastures. for mighty are those who obey His command. 2 Blow the ram’s horn in Zion; sound the alarm on My holy mountain! Let all who dwell in the land tremble, for the Day of the LORD is coming; indeed, it is near— 2 a day of darkness and gloom, a day of clouds and blackness. Like the dawn overspreading the mountains a great and strong army appears, such as never was of old, 3 nor will ever be in ages to come. Before them a fire devours, and behind them a flame scorches. The land before them is like the Garden of Eden, but behind them, it is like a desert 4 wasteland— surely nothing will escape them. a Their appearance is like that of horses, and they gallop like swift steeds. 5 With a sound like that of chariots they bound over the mountaintops, like the crackling of fire consuming stubble, like a mighty army deployed for battle. 6 Nations writhe in horror before them; 7 every face turns pale. They charge like mighty men; they scale the walls like men of war. Each one marches in formation, 8 not swerving from the course. They do not jostle one another; each proceeds in his path. They burst through the defenses, 9 never breaking ranks. They storm the city; they run along the wall; they climb into houses, 10 entering through windows like thieves. Before them the earth quakes; the heavens tremble. The sun and moon grow dark, 11 and the stars lose their brightness. a 4 The LORD raises His voice like caval" + }, + { + "verseNum": 4, + "text": "| 825 The Pride of Israel 8 The Lord GOD has sworn by Himself—the LORD, the God of Hosts, has declared: “I abhor Jacob’s pride and detest his citadels, so I will deliver up the city and everything in it.” 10 9 And if there are ten men left in one house, they c too will die. And when the relative who is to burn the bodies picks them up to remove them from the house, he will call to one inside, “Is any- one else with you?” “None,” that person will answer. “Silence,” the relative will retort, “for the name of 11 the LORD must not be invoked.” For the LORD gives a command: “The great house will be smashed to pieces, 12 and the small house to rubble.” d “Do horses gallop on the cliffs? Does one plow the sea with oxen? But you have turned justice into poison and the fruit of righteousness into e 13 wormwood— you who rejoice in Lo-debar ‘Did we not take Karnaim 14 f and say, by our own strength?’ For behold, I will raise up a nation against you, O house of Israel,” declares the LORD, the God of Hosts, Are you better than these kingdoms? 3 Is their territory larger than yours? “and they will oppress you You dismiss the day of calamity 4 and bring near a reign of violence. You lie on beds inlaid with ivory, and lounge upon your couches. You dine on lambs from the flock 5 and calves from the stall. You improvise songs on the harp like David 6 and invent your own musical instruments. You drink wine by the bowlful and anoint yourselves with the finest oils, but you fail to grieve 7 over" + }, + { + "verseNum": 5, + "text": "5 Then I said, “Lord GOD, please stop! How will 6 Jacob survive, since he is so small?” Your land will be divided by a measuring line, and you yourself will die on pagan soil. c So the LORD relented from this plan. “It will not 7 happen either,” said the Lord GOD. This is what He showed me: Behold, the Lord was standing by a wall true to plumb, with a plumb line in His hand. “Amos, what do you see?” asked the LORD. 8 “A plumb line,” I replied. “Behold,” said the Lord, “I am setting a plumb line among My people Israel; I will no longer spare 9 them: The high places of Isaac will be deserted, and the sanctuaries of Israel will be laid waste; and I will rise up against the house of Amaziah Accuses Amos Jeroboam with My sword.” 10 Then Amaziah the priest of Bethel sent word to Jeroboam king of Israel, saying, “Amos has conspired against you in the midst of the house 11 of Israel. The land cannot bear all his words, for this is what Amos has said: ‘Jeroboam will die by the sword, 12 and Israel will surely go into exile, away from their homeland.’ ” And Amaziah said to Amos, “Go away, you seer! Flee to the land of Judah; earn your bread there and do your prophesying there. But never prophesy at Bethel again, because it is the sanctuary of the king and the temple of the 14 kingdom.” 13 a b “I was not a prophet,” Amos replied, “nor was I the son of a prophet; rather, I was a herdsman But the and a tender of sycamore-fig trees. LORD took me from following the flock and said 16 to me," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 7, + "text": ". k 2 Hebrew; LXX and 1 Chronicles 1:17 in the east Babylon Or Babel Or from the east j 2 also" + }, + { + "verseNum": 11, + "text": "–15 ;" + }, + { + "verseNum": 15, + "text": "| 827 “Are you not like the Cushites O children of Israel?” declares the LORD. to Me, “Did I not bring Israel d up from the land of Egypt, the Philistines from Caphtor, 8 and the Arameans from Kir? Surely the eyes of the Lord GOD are on the sinful kingdom, and I will destroy it from the face of the earth. Yet I will not utterly destroy the house of declares the LORD. Jacob,” 9 “For surely I will give the command, and I will shake the house of Israel among all the nations 10 as grain is sifted in a sieve; but not a pebble will reach the ground. All the sinners among My people will die by the sword— all those who say, ‘Disaster will never draw near or confront A Promise of Restoration" + } + ] + } + ] + }, + { + "name": "Obadiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–14) declares the LORD. Milcom restore the fortunes of the Ammonites Molech ; Or is a variant of ; also in verse 3; see" + }, + { + "verseNum": 21, + "text": "| 829 They will occupy the fields of Ephraim and 20 Samaria, and Benjamin will possess Gilead. And the exiles of this host of the Israelites will possess the land of the Canaanites as far as Zarephath; and the exiles from Jerusalem who are in 21 Sepharad b will possess the cities of the Negev. The deliverers will ascend Mount Zion to rule over the mountains of Esau. land of the Philistines. And the kingdom will belong to the LORD. a 19 Those being delivered will go up Shephelah lowlands b 21 The deliverers will go up from Hebrew or ; that is, the western foothills of Judea Or ; LXX Jonah Jonah Flees from the LORD" + } + ] + } + ] + }, + { + "name": "Jonah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–3) 12 1 This is what the LORD says: 2 This is the burden against Nineveh, the book of the vision of Nahum the Elkoshite: “Though they are allied and numerous, yet they will be cut down and pass away. The LORD is a jealous and avenging God; the LORD is avenging and full of wrath. The LORD takes vengeance on His foes 3 and reserves wrath for His enemies. The LORD is slow to anger and great in power; the LORD will by no means leave the guilty unpunished. His path is in the whirlwind and storm, 4 and clouds are the dust beneath His feet. He rebukes the sea and dries it up; He makes all the rivers run dry. Bashan and Carmel wither, 5 and the flower of Lebanon wilts. The mountains quake before Him, and the hills melt away; the earth trembles at His presence— 6 the world and all its dwellers. Who can withstand His indignation? Who can endure His burning anger? His wrath is poured out like fire; 7 even rocks are shattered before Him. The LORD is good, 8 a stronghold in the day of distress; He cares for those who trust in Him. a But with an overwhelming flood 9 He will make an end of Nineveh and pursue His enemies into darkness. Whatever you plot against the LORD, He will bring to an end. Affliction will not rise up 10 a second time. For they will be entangled as with thorns and consumed like the drink of a 11 drunkard— like stubble that is fully dry. From you, O Nineveh, comes forth 13 Though I have afflicted you, O Judah, I will afflict you no longer. For I will now break their yok" + }, + { + "verseNum": 4, + "text": "–10) both southwest and northwest. 13 14 When a gentle south wind began to blow, they thought they had their opportunity. So they weighed anchor and sailed along, hugging the But it was not long before a cy- coast of Crete. 15 clone called the Northeaster swept down across Unable to head into the wind, the the island. ship was caught up. So we gave way and let our- 16 selves be driven along. a Passing to the lee of a small island called 17 Cauda, we barely managed to secure the life- After hoisting it up, the crew used ropes boat. to undergird the ship. And fearing that they would run aground on the sandbars of Syrtis, they lowered the sea anchor and were driven 18 along. b 19 We were tossed so violently that the next day On the the men began to jettison the cargo. 20 third day, they threw the ship’s tackle overboard When neither sun nor with their own hands. stars appeared for many days and the great storm continued to batter us, we abandoned all 21 hope of being saved. 22 After the men had gone a long time without food, Paul stood up among them and said, “Men, you should have followed my advice not to sail from Crete. Then you would have averted this But now I urge you to keep disaster and loss. 23 up your courage, because you will not experience any loss of life, but only of the ship. For just last 24 night an angel of the God to whom I belong and and said, ‘Do whom I serve stood beside me not be afraid, Paul; you must stand before Caesar. And look, God has granted you the" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–10 ; Lk. 11:29–32) ted, and by your words you will be condemned.” 38 36 37 Then some of the scribes and Pharisees said to 39 Him, “Teacher, we want to see a sign from You.” 40 Jesus replied, “A wicked and adulterous gener- ation demands a sign, but none will be given it For as Jo- except the sign of the prophet Jonah. nah was three days and three nights in the belly of the great fish, so the Son of Man will be three 41 days and three nights in the heart of the earth. 42 The men of Nineveh will stand at the judgment with this generation and condemn it; for they re- pented at the preaching of Jonah, and now One The Queen of the greater than Jonah is here. South will rise at the judgment with this genera- tion and condemn it; for she came from the ends of the earth to hear the wisdom of Solomon, and An Unclean Spirit Returns" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 11, + "text": "| 831 9 call out earnestly to God. Let each one turn from his evil ways and from the violence in his hands. Who knows? God may turn and relent; He may turn from His fierce anger, so that we will not perish.” 10 When God saw their actions—that they had turned from their evil ways—He relented from the disaster He had threatened to bring upon Jonah’s Anger at the LORD’s Compassion them. 4 d 2 Jonah, however, was greatly displeased, and he became angry. So he prayed to the LORD, saying, “O LORD, is this not what I said while I was still in my own country? This is why I was so quick to flee toward Tarshish. I knew that You are a gracious and compassionate God, slow to anger, abounding in loving devotion— And One who relents from sending disaster. now, O LORD, please take my life from me, for it 4 is better for me to die than to live.” 3 But the LORD replied, “Have you any right to be 5 angry?” e 6 Then Jonah left the city and sat down east of it, where he made himself a shelter and sat in its shade to see what would happen to the city. So the LORD God appointed a vine, and it grew up to provide shade over Jonah’s head to ease his discomfort, and Jonah was greatly pleased with 7 the plant. When dawn came the next day, God appointed a worm that attacked the plant so that it 8 withered. As the sun was rising, God appointed a scorch- ing east wind, and the sun beat down on Jonah’s head so that he grew faint and wished to die, say- 9 ing, “It is better for me to die than to live.” Then" + } + ] + } + ] + }, + { + "name": "Micah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–7) laid waste. 17 16 The LORD will bring on you and on your people and on the house of your father a time un- like any since the day Ephraim separated from 18 Judah—He will bring the king of Assyria.” On that day the LORD will whistle to the flies at the farthest streams of the Nile and to the bees 19 in the land of Assyria. And they will all come and settle in the steep ravines and clefts of the 20" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 6, + "text": "–11) ” clares the Lord GOD.’ 13 2 4 3 Then the word of the LORD came to me, “Son of man, prophesy against saying, the prophets of Israel who are now prophesying. Tell those who prophesy out of their own imagi- This is what nation: Hear the word of the LORD! the Lord GOD says: Woe to the foolish prophets who follow their own spirit yet have seen noth- Your prophets, O Israel, are like foxes ing. You did not go up to the gaps among the ruins. or restore the wall around the house of Israel so that it would stand in the battle on the Day of the 6 LORD. 5 They see false visions and speak lying divina- tions. They claim, ‘Thus declares the LORD,’ when the LORD did not send them; yet they wait 7 for the fulfillment of their message. Haven’t you seen a false vision and spoken a lying divination when you proclaim, ‘Thus declares the LORD,’ even though I have not spo- 8 ken? 9 Therefore this is what the Lord GOD says: Because you have uttered vain words and seen false visions, I am against you, declares the Lord My hand will be against the prophets who GOD. see false visions and speak lying divinations. They will not belong to the council of My people or be recorded in the register of the house of Is- rael, nor will they enter the land of Israel. Then you will know that I am the Lord GOD. 11 Because they have led My people astray, say- ing, ‘Peace,’ when there is no peace, and white- tell those washing any flimsy wall that is built, whitewashing the wall that it will fall. Rain will 12" + }, + { + "verseNum": 12, + "text": "–13) and marches into our borders. 7 Then the remnant of Jacob will be in the midst of many peoples like dew from the LORD, like showers on the grass, which do not wait for man 8 or linger for mankind. Then the remnant of Jacob will be among the nations, in the midst of many peoples, like a lion among the beasts of the forest, like a young lion among flocks of sheep, which tramples and tears as it passes 9 through, with no one to rescue them. 10 Your hand will be lifted over your foes, and all your enemies will be cut off. “In that day,” declares the LORD, 11 “I will remove your horses from among you and wreck your chariots. 12 I will remove the cities of your land 13 and tear down all your strongholds. I will cut the sorceries from your hand, and you will have no fortune-tellers. I will also cut off the carved images a 5 their peace and sacred pillars from among you, Acacia Grove b 5 Or Or you! For I brought you up from the land of Egypt and redeemed you from the house of slavery. I sent Moses before you, 5 as well as Aaron and Miriam. My people, remember what Balak king of Moab counseled b and what Balaam son of Beor answered. Remember your journey from Shittim to Gilgal, 6 so that you may acknowledge the ” righteousness of the LORD.’ With what shall I come before the LORD when I bow before the God on high? Should I come to Him with burnt offerings, 7 with year-old calves? Would the LORD be pleased with thousands of rams, with ten thousand rivers of oil? Shall I present my" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 9, + "text": "| 833 Therefore this is what the LORD says: “I am planning against this nation a disaster from which you cannot free your necks. Then you will not walk so proudly, 4 for it will be a time of calamity. In that day they will take up a proverb against you and taunt you with this bitter lamentation: ‘We are utterly ruined! He has changed the portion of my people. How He has removed it from me! 5 He has allotted our fields to traitors.’ ” Therefore, you will have no one in the assembly of the LORD Reproof of False Prophets" + }, + { + "verseNum": 10, + "text": "10 11 who build Zion with bloodshed and Jerusalem with iniquity. Her leaders judge for a bribe, her priests teach for a price, and her prophets practice divination for money. Yet they lean upon the LORD, saying, 12 “Is not the LORD among us? No disaster can come upon us.” Therefore, because of you, Zion will be plowed like a field, Jerusalem will become a heap of rubble, The Mountain of the House of the LORD" + }, + { + "verseNum": 12, + "text": "Literally 706 |" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–5) 2 2 Jerusalem: This is the message that was revealed to Isaiah son of Amoz concerning Judah and In the last days the mountain of the house of the LORD will be established as the chief of the mountains; it will be raised above the hills, 3 and all nations will stream to it. And many peoples will come and say: “Come, let us go up to the mountain of the LORD, to the house of the God of Jacob. He will teach us His ways so that we may walk in His paths.” For the law will go forth from Zion, 4 and the word of the LORD from Jerusalem. Then He will judge between the nations and arbitrate for many peoples. They will beat their swords into plowshares and their spears into pruning hooks. Nation will no longer take up the sword against nation, The Day of Reckoning nor train anymore for war. 5 and your counselors as at the beginning. Come, O house of Jacob, 6 After that you will be called the City of 27 Righteousness, the Faithful City.” Zion will be redeemed with justice, 28 her repentant ones with righteousness. But rebels and sinners will together be shattered, 29 and those who forsake the LORD will perish. Surely you will be ashamed of the sacred oaks in which you have delighted; you will be embarrassed by the gardens 30 that you have chosen. let us walk in the light of the LORD. For You have abandoned Your people, the house of Jacob, because they are filled with influences from the east; they are soothsayers like the Philistines; they strike hands with the children of 7 foreigner" + }, + { + "verseNum": 6, + "text": "–13) turned the pleasant land into a desolation.” 8 2 Again the word of the LORD of Hosts came to me, saying: This is what the LORD of Hosts says: “I am jealous for Zion with great zeal; I am 3 jealous for her with great fervor.” This is what the LORD says: “I will return to Zion and dwell in Jerusalem. Then Jerusalem will be called the City of Truth, and the mountain of the LORD of Hosts will be called the Holy Moun- 4 tain.” 5 This is what the LORD of Hosts says: “Old men and old women will again sit along the streets of Jerusalem, each with a staff in hand because of great age. And the streets of the city will be 6 filled with boys and girls playing there.” j This is what the LORD of Hosts says: “If this is in the eyes of the remnant of this impossible people in these days, should it also be impossible 7 in My eyes?” declares the LORD of Hosts. 8 This is what the LORD of Hosts says: “I will save My people from the land of the east and from the land of the west. I will bring them back to dwell in Jerusalem, where they will be My people, and I will be their faithful and righteous God.” And there will be a priest on His throne c 14 e 1 Chislev f 2 Hebrew; Syriac Bethel-sharezer had sent Regem-melech, is the ninth month of the Hebrew lunar h 9 ; see verse 10. g 7 along with his men, Shephelah calendar, usually occurring within the months of November and December. chesed love goodness heavy to hear are translated here and in most cases throughout the Scriptures as kindness j 6" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "–6) Him the name Jesus. 2 After Jesus was born in Bethlehem in Judea, 2 during the time of King Herod, Magi from the east arrived in Jerusalem, asking, “Where is the One who has been born King of the Jews? We saw His star in the east and have come to worship 3 Him.” b 4 When King Herod heard this, he was disturbed, and all Jerusalem with him. And when he had assembled all the chief priests and scribes of the people, he asked them where the Christ was to be 5 born. “In Bethlehem in Judea,” they replied, “for this 6 is what the prophet has written: ‘But you, Bethlehem, in the land of Judah, are by no means least among the rulers of Judah, c for out of you will come a ruler who will be the shepherd of My people Israel.’ ” 7 Then Herod called the Magi secretly and learned 8 from them the exact time the star had appeared. And sending them to Bethlehem, he said: “Go and search carefully for the Child, and when you find Him, report to me, so that I too may go and 9 worship Him.” 10 11 After they had heard the king, they went on their way, and the star they had seen in the east went ahead of them until it stood over the place where the Child was. When they saw the star, they rejoiced with great delight. On coming to the house, they saw the Child with His mother Mary, and they fell down and worshiped Him. Then they opened their treasures and presented Him with gifts of gold and frankincense and 12 myrrh. And having been warned in a dream not to re- turn to Herod, they withdrew to thei" + }, + { + "verseNum": 2, + "text": "; see also 2 Samuel 5:2." + }, + { + "verseNum": 7, + "text": "–15) people! 12 I will surely gather all of you, O Jacob; I will collect the remnant of Israel. One who breaks open the way will go up before them; they will break through the gate, and go out by it. Their King will pass through before them, Rulers and Prophets Condemned the LORD as their leader. 3 Then I said: 2 “Hear now, O leaders of Jacob, you rulers of the house of Israel. Should you not know justice? You hate good and love evil. 3 You tear the skin from my people and strip the flesh from their bones. You eat the flesh of my people after stripping off their skin and breaking their bones. You chop them up like flesh for the 4 cooking pot, like meat in a cauldron.” Then they will cry out to the LORD, but He will not answer them. 5 At that time He will hide His face from them because of the evil they have done. This is what the LORD says: “As for the prophets who lead My people astray, who proclaim peace while they chew with their teeth, but declare war against one 6 who puts nothing in their mouths: Therefore night will come over you without visions, and darkness without divination. The sun will set on these prophets, 7 and the daylight will turn black over them. Then the seers will be ashamed and the diviners will be disgraced. They will all cover their mouths 8 because there is no answer from God.” As for me, however, I am filled with power by the Spirit of the LORD, with justice and courage, 9 to declare to Jacob his transgression and to Israel his sin. Now hear this, O" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 9, + "text": "| 835 One whose origins are of old, 3 from the days of eternity. 14 so that you will no longer bow down to the work of your own hands. Therefore Israel will be abandoned I will root out the Asherah poles from your until she who is in labor has given birth; 15 midst then the rest of His brothers will return 4 to the children of Israel. He will stand and shepherd His flock in the strength of the LORD, in the majestic name of the LORD His God. And they will dwell securely, 5 for then His greatness will extend to the ends of the earth. a And He will be our peace when Assyria invades our land and tramples our citadels. We will raise against it seven shepherds, 6 even eight leaders of men. And they will rule the land of Assyria with the sword, and demolish your cities. I will take vengeance in anger and wrath upon the nations that have not obeyed The Case against Israel Me.” 6 Hear now what the LORD says: “Arise, plead your case before the 2 mountains, and let the hills hear your voice. Hear, O mountains, the LORD’s indictment, you enduring foundations of the earth. For the LORD has a case against His people, 3 and He will argue it against Israel: ‘My people, what have I done to you? and the land of Nimrod with the blade 4 Testify against Me how I have wearied drawn. So He will deliver us when Assyria invades our land The Remnant of Jacob" + }, + { + "verseNum": 10, + "text": "“Heed the rod 10 and the One who ordained it. Can I forget any longer, O house of the wicked, the treasures of wickedness 11 and the short ephah, which is accursed? 12 Can I excuse dishonest scales or bags of false weights? For the wealthy of the city are full of violence, and its residents speak lies; 13 their tongues are deceitful in their mouths. 14 Therefore I am striking you severely, to ruin you because of your sins. You will eat but not be satisfied, and your hunger will remain with you. What you acquire, you will not preserve; and what you save, I will give to the 15 sword. You will sow but not reap; you will press olives but not anoint yourselves with oil; 16 you will tread grapes but not drink the wine. You have kept the statutes of Omri and all the practices of Ahab’s house; you have followed their counsel. Therefore I will make you a desolation, and your inhabitants an object of contempt; a you will bear the scorn of the Israel’s Great Misery ”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "–6 ;" + }, + { + "verseNum": 6, + "text": "Greek Greek The Reward of Service (2 Kings 4:8–17) 14" + }, + { + "verseNum": 20, + "text": "| 837 They will come trembling from their strongholds 18 in the presence of the LORD our God; they will tremble in fear of You. Who is a God like You, who pardons iniquity and passes over the transgression of the remnant of His inheritance— who does not retain His anger forever, 19 b because He delights in loving devotion? He will again have compassion on us; He will vanquish our iniquities. 20 You will cast out all our sins into the depths of the sea. You will show faithfulness to Jacob and loving devotion to Abraham, as You swore to our fathers from the days of old. a 14 in a woodland, in the midst of Carmel loving devotion b 18 chesed love goodness kindness faithfulness Or mercy throughout the Scriptures as loyalty to a covenant Forms of the Hebrew ; the range of meaning includes , as well as . are translated here and in most cases , and , , , Nahum The Burden against Nineveh" + } + ] + } + ] + }, + { + "name": "Nahum", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–15) Jonah Cast into the Sea 11 1 2 Now the word of the LORD came to Jonah “Get up! Go to the son of Amittai, saying, great city of Nineveh and preach against it, be- 3 cause its wickedness has come up before Me.” Jonah, however, got up to flee to Tarshish, away from the presence of the LORD. He went down to Joppa and found a ship bound for Tarshish. So he paid the fare and went aboard to sail for Tar- The Great Storm shish, away from the presence of the LORD." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 12, + "text": "| 839 they rush around the plazas, appearing like torches, 5 darting about like lightning. He summons his nobles; they stumble as they advance. They race to its wall; 6 the protective shield is set in place. 7 The river gates are thrown open and the palace collapses. It is decreed that the city be exiled and carried away; her maidservants moan like doves, 8 and beat upon their breasts. Nineveh has been like a pool of water throughout her days, but now it is draining away. “Stop! Stop!” they cry, 9 but no one turns back. “Plunder the silver! Plunder the gold!” There is no end to the treasure, 10 an abundance of every precious thing. She is emptied! Yes, she is desolate and laid waste! Hearts melt, knees knock, bodies tremble, and every face grows pale! 11 Where is the lions’ lair or the feeding ground of the young lions, where the lion and lioness prowled with 12 their cubs, with nothing to frighten them away? The lion mauled enough for its cubs and strangled prey for the lioness. 13 It filled its dens with the kill, and its lairs with mauled prey. “Behold, I am against you,” declares the LORD of Hosts. “I will reduce your chariots to cinders, and the sword will devour your young lions. I will cut off your prey from the earth, and the voices of your messengers will no longer be heard.” Judgment on Nineveh 3 Woe to the city of blood, full of lies, full of plunder, No-amon never without prey. b 9 a 8 Hebrew That is, the upper Nile region the rumble of the wheel, galloping horse" + }, + { + "verseNum": 13, + "text": "13 Look at your troops— they are like your women! The gates of your land 14 are wide open to your enemies; fire consumes their bars. Draw your water for the siege; strengthen your fortresses. 17 The young locust strips the land a and flies away. b Your guards are like the swarming locust, like clouds of locusts and your scribes that settle on the walls on a cold day. 18 When the sun rises, they fly away, and no one knows where. 15 Work the clay and tread the mortar; O king of Assyria, your shepherds repair the brick kiln! There the fire will devour you; the sword will cut you down and consume you like a young locust. Make yourself many like the young locust; 16 make yourself many like the swarming locust! You have multiplied your merchants more than the stars of the sky. slumber; your officers sleep. 19 Your people are scattered on the mountains with no one to gather them. There is no healing for your injury; your wound is severe. All who hear the news of you applaud your downfall, for who has not experienced your constant cruelty? a 17 princes b 17 marshals Or Or Habakkuk Habakkuk’s First Complaint 1 2 This is the burden that Habakkuk the prophet received in a vision: How long, O LORD, must I call for help but You do not hear, or cry out to You, “Violence!” 3 but You do not save? Why do You make me see iniquity? Why do You tolerate wrongdoing? Destruction and violence are before me. 4 Strife is ongoing, and conflict abounds. Therefore the law is paralyzed, and justice never" + } + ] + } + ] + }, + { + "name": "Habakkuk", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 5, + "text": "(see also LXX)" + }, + { + "verseNum": 12, + "text": "–17) For the choirmaster. Of David. 1 In the LORD I take refuge. How then can you say to me: 2 “Flee like a bird to your mountain! The LORD tests the righteous and the wicked; 6 His soul hates the lover of violence. On the wicked He will rain down fiery coals 7 and sulfur; a scorching wind will be their portion. For the LORD is righteous; He loves justice. Psalm 12 The Godly Are No More The upright will see His face. For the choirmaster. According to Sheminith.c A Psalm of David. 1 Help, O LORD, for the godly are no more; the faithful have vanished from among 2 men. They lie to one another; 3 they speak with flattering lips and a double heart. May the LORD cut off all flattering lips 4 and every boastful tongue. They say, “With our tongues we will prevail. We own our lips—who can be our master?” 5 “For the cause of the oppressed and for the groaning of the needy, I will now arise,” says the LORD. 6 “I will bring safety to him who yearns.” The words of the LORD are flawless, like silver refined in a furnace, like gold purified sevenfold. d 7 You, O LORD, will keep us; 8 You will forever guard us from this generation. The wicked wander freely, Psalm 13 and vileness is exalted among men. How Long, O LORD? For the choirmaster. A Psalm of David. 1 For behold, the wicked bend their bows. How long, O LORD? They set their arrow on the string to shoot from the shadows at the upright a 7 bitterness in heart. LXX sevenfold here and in 1 Chronicles 15:21 and" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 3, + "text": "3 14 For the vision awaits an appointed time; it testifies of the end and does not lie. Though it lingers, wait for it, a 4 since it will surely come and will not For the earth will be filled with the knowledge of the glory of the 15 LORD as the waters cover the sea. delay. b Look at the proud one; his soul is not c 5 upright d — but the righteous will live by faith — and wealth indeed betrays him. He is an arrogant man never at rest. He enlarges his appetite like Sheol, and like Death, he is never satisfied. He gathers all the nations to himself Woe to the Chaldeans and collects all the peoples as his own. 6 Will not all of these take up a taunt against him, speaking with mockery and derision: ‘Woe to him who amasses what is not his 7 and makes himself rich with many loans! How long will this go on?’ 18 Will not your creditors suddenly arise 8 and those who disturb you awaken? Then you will become their prey. Because you have plundered many nations, the remnant of the people will plunder you— because of your bloodshed against man and your violence against the land, the 9 city, and all their dwellers. Woe to him who builds his house by unjust gain, to place his nest on high 10 and escape the hand of disaster! You have plotted shame for your house e 11 by cutting off many peoples and forfeiting your life. For the stones will cry out from the wall, and the rafters will echo it from the 12 woodwork. 13 Woe to him who builds a city with bloodshed and establishes a town by iniquit" + }, + { + "verseNum": 4, + "text": "Or 29" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 19, + "text": "| 843 You crushed the head of the house of the Selah wicked and stripped him from head to toe. 14 With his own spear You pierced his head, when his warriors stormed out to scatter us, gloating as though ready 15 to secretly devour the weak. You trampled the sea with Your horses, 16 churning the great waters. I heard and trembled within; my lips quivered at the sound. Decay entered my bones; I trembled where I stood. Yet I must wait patiently for the day of distress to come upon the people who Habakkuk Rejoices invade us. 17 Though the fig tree does not bud and no fruit is on the vines, though the olive crop fails and the fields produce no food, 18 though the sheep are cut off from the fold and no cattle are in the stalls, yet I will exult in the LORD; 19 I will rejoice in the God of my salvation! GOD the Lord is my strength; He makes my feet like those of a deer; For the choirmaster. He makes me walk upon the heights! With stringed instruments. Zephaniah Zephaniah Prophesies Judgment on Judah" + } + ] + } + ] + }, + { + "name": "Zephaniah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–6) foundation of the world.” 36 Then Jesus dismissed the crowds and went into the house. His disciples came to Him and said, “Explain to us the parable of the weeds in 37 the field.” 38 He replied, “The One who sows the good seed The field is the world, and is the Son of Man. the good seed represents the sons of the king- 39 dom. The weeds are the sons of the evil one, and the enemy who sows them is the devil. The harvest is the end of the age, and the harvesters 40 are angels. 41 As the weeds are collected and burned in the The Son fire, so will it be at the end of the age. of Man will send out His angels, and they will weed out of His kingdom every cause of sin And they will and all who practice lawlessness. c 35 42 So the servants asked him, ‘Do you want us to go a 15 and pull them up?’ the one sown b 19 of the world Literally" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "–3 ;" + }, + { + "verseNum": 8, + "text": "–11) and upon the remnant of the land. 16 Send the tribute lambs to the ruler of the land, from Sela in the desert 2 to the mount of Daughter Zion. Like fluttering birds pushed out of the nest, so are the daughters of Moab at the fords of the Arnon: 3 “Give us counsel; render a decision. Shelter us at noonday with shade as dark as night. Hide the refugees; 4 do not betray the one who flees. Let my fugitives stay with you; be a refuge for Moab from the destroyer.” When the oppressor has gone, destruction has ceased, and the oppressors have vanished from Dimon the land, Dibon c 9 blood MT, twice in this verse; DSS and Vulgate . ; , a 5 a The Burden against Damascus (Jer. 49:23–27)" + }, + { + "verseNum": 15, + "text": "| 845 Judgment on Moab and Ammon" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Judgment on Jerusalem 11 3 2 Woe to the city of oppressors, rebellious and defiled! She heeded no voice; she accepted no correction. She does not trust in the LORD; 3 she has not drawn near to her God. Her princes are roaring lions; 4 her judges are evening wolves, leaving nothing for the morning. Her prophets are reckless, faithless men. Her priests profane the sanctuary; 5 they do violence to the law. The LORD within her is righteous; He does no wrong. He applies His justice morning by morning; Purification of the Nations He does not fail at dawn, yet the unjust know no shame. 6 “I have cut off the nations; their corner towers are destroyed. I have made their streets deserted with no one to pass through. Their cities are laid waste, 7 with no man, no inhabitant. I said, ‘Surely you will fear Me and accept correction.’ Then her dwelling place would not be cut off despite all for which I punished her. But they rose early 8 to corrupt all their deeds. Therefore wait for Me,” declares the LORD, a “until the day I rise to testify. For My decision is to gather nations, to assemble kingdoms, to pour out upon them My indignation— all My burning anger. A Faithful Remnant For all the earth will be consumed by the fire of My jealousy. 9 For then I will restore pure lips to the peoples, 10 that all may call upon the name of the LORD and serve Him shoulder to shoulder. b From beyond the rivers of Cush a 8 My worshipers, My scattered people, b 10 will bring Me an offering. rise up to plu" + } + ] + } + ] + }, + { + "name": "Haggai", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–11) 5 2 Later, the prophets Haggai and Zechariah son of Iddo prophesied to the Jews in Judah and Jerusalem in the name of the God of Israel, a Then Zerubbabel son of who was over them. Shealtiel and Jeshua son of Jozadak rose up and began to rebuild the house of God in Jerusalem. And the prophets of God were with them, helping 3 them. b At that time Tattenai the governor of the region west of the Euphrates, Shethar-bozenai, and their associates went to the Jews and asked, “Who authorized you to rebuild this temple and 4 restore this structure?” c They also asked, “What are the names of the men who are constructing this building?” a 2 Jozadak c 4 Then we told them, Jehozadak d 10 But the eye of their God was on the elders of the Jews, so that they were not stopped until a report was sent to Darius and written instructions Tattenai’s Letter to Darius about this matter were returned. 6 This is the text of the letter that Tattenai the governor of the region west of the Euphrates, Shethar-bozenai, and their associates, the offi- The re- cials in the region, sent to King Darius. port they sent him read as follows: 7 To King Darius: 8 All peace. Let it be known to the king that we went into the province of Judah, to the house of the great God. The people are rebuilding it with large stones and placing timbers in the walls. This work is being carried out diligently and 9 is prospering in their hands. So we questioned the elders and asked, “Who authorized you to rebuild this temple 1" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 4, + "text": "4 But now be strong, O Zerubbabel, declares the LORD. Be strong, O Joshua son of Jehozadak, the high priest. And be strong, all you people of the land, declares the LORD. Work! For I am with you, 5 declares the LORD of Hosts. This is the promise I made to you when you came out of Egypt. And My Spirit remains among you; do not be afraid.” 6 For this is what the LORD of Hosts says: “Once more, in a little while, a I will shake the heavens and the 7 earth, the sea and the dry land. I will shake all the nations, and they will come with all their treasures, and I will fill this house with glory, 8 says the LORD of Hosts. The silver is Mine, and the gold is Mine, 9 declares the LORD of Hosts. The latter glory of this house will be greater than the former, says the LORD of Hosts. Blessings for a Defiled People And in this place I will provide peace, declares the LORD of Hosts.” 10 12 On the twenty-fourth day of the ninth month, in the second year of Darius, the word of the 11 LORD came to Haggai the prophet, saying, “This is what the LORD of Hosts says: ‘Ask the If a man carries conse- priests for a ruling. crated meat in the fold of his garment, and it touches bread, stew, wine, oil, or any other food, does that item become holy?’ 13 “No,” replied the priests. ” 14 “Yes, it becomes defiled,” the priests answered. Then Haggai replied, “So it is with this people and this nation before Me, declares the LORD, and so it is with every work of their hands; what- 15 ever they offer there i" + }, + { + "verseNum": 6, + "text": "BYZ and TR" + } + ] + } + ] + }, + { + "name": "Zechariah", + "chapters": [ + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The Vision of the Measuring Line" + }, + { + "verseNum": 6, + "text": "–13) ” ‘You are my God.’ 3 Then the LORD said to me, “Go show love to i your wife again, though she is loved by an- other and is an adulteress. Love her as the LORD loves the Israelites, though they turn to other 2 gods and love to offer raisin cakes to idols. k ” j l 3 So I bought her for fifteen shekels of silver and a homer and a lethech of barley. Then I said to her, “You must live with me for many days; you must not be promiscuous or belong to another, 4 and I will do the same for you.” 5 For the Israelites must live many days without king or prince, without sacrifice or sacred pillar, Afterward, the peo- and without ephod or idol. ple of Israel will return and seek the LORD their God and David their king. They will come trem- bling to the LORD and to His goodness in the last God’s Case against His People days. 4 Hear the word of the LORD, O children of Israel, for the LORD has a case against the people of the land: a 15 Achor and battle in the land, c 16 b 16 trouble and will make them lie down in safety. loving devotion Hebrew loyalty to a covenant means faithfulness my Ishi . kindness mercy here and in most cases throughout the Scriptures as ruhamah , i 1 ; LXX g 23 I will love her who was not loved Go show love to a woman who is loved by another , as well as Hebrew , and l 2 Lo-ammi . a homer and a half of barley Literally j 1 Hebrew Or “There is no truth, no loving devotion, my Baal and no knowledge of God in the land! chesed d 19 love Forms of the Hebrew f 23 God s" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 8, + "text": "| 851 7 So he said to me, “This is the word of the LORD to Zerubbabel: Not by might nor by power, but What are by My Spirit, says the LORD of Hosts. you, O great mountain? Before Zerubbabel you will become a plain. Then he will bring forth the capstone accompanied by shouts of ‘Grace, grace 8 to it!’ 9 ” 10 Then the word of the LORD came to me, saying, “The hands of Zerubbabel have laid the founda- tion of this house, and his hands will complete it. Then you will know that the LORD of Hosts has For who has despised the day sent me to you. of the of small things? But these seven eyes LORD, which scan the whole earth, will rejoice in the hand of when they see the plumb line 11 Zerubbabel.” a b Then I asked the angel, “What are the two olive 12 trees on the right and left of the lampstand?” And I questioned him further, “What are the c two olive branches beside the two gold pipes 13 from which the golden oil pours?” “Do you not know what these are?” he inquired. 14 “No, my lord,” I replied. d e So he said, “These are the two anointed ones who are standing beside the Lord of all the The Vision of the Flying Scroll earth.” 5 2 Again I lifted up my eyes and saw before me a flying scroll. “What do you see?” asked the angel. f “I see a flying scroll,” I replied, “twenty cubits 3 long and ten cubits wide. ” 4 Then he told me, “This is the curse that is going out over the face of all the land, for according to one side of the scroll, every thief will be re- moved; and according to the" + }, + { + "verseNum": 9, + "text": "The Crown and the Temple 9 10 The word of the LORD also came to me, saying, “Take an offering from the exiles—from Heldai, Tobijah, and Jedaiah, who have arrived from Babylon—and go that same day to the Take silver house of Josiah son of Zephaniah. a and gold, make an ornate crown, and set it on the 12 head of the high priest, Joshua son of Jehozadak. 11 13 And you are to tell him that this is what the LORD of Hosts says: ‘Here is a man whose name is the Branch, and He will branch out from His Yes, He place and build the temple of the LORD. the LORD; He will be will build the temple of clothed in splendor and will sit on His throne and and rule. And He will be a priest on His throne, 14 there will be peaceful counsel between the two.’ b c d 15 The crown will reside in the temple of the LORD as a memorial to Helem, Tobijah, Jedaiah, and the gracious Even those far away will come and build the temple of the LORD, and you will know that the LORD of Hosts has sent Me to you. This will happen if you A Call to Justice and Mercy diligently obey the voice of the LORD your God.” son of Zephaniah. 7 In the fourth year of King Darius, the word of e the LORD came to Zechariah on the fourth 2 day of the ninth month, the month of Chislev. f Now the people of Bethel had sent Sharezer and 3 Regem-melech, along with their men, to plead before the LORD by asking the priests of the house of the LORD of Hosts, as well as the proph- ets, “Should I weep and fast in the fifth month, as 4 I have don" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "–23) forever and ever. 6 a 8 “On that day,” declares the LORD, hill “I will gather the lame; And you, Migdal-eder, the Ophel b 13 Or ; Hebrew Or like a woman in labor. For now you will leave the city and camp in the open fields. You will go to Babylon; there you will be rescued; there the LORD will redeem you 11 from the hand of your enemies! But now many nations have assembled against you, 12 saying, “Let her be defiled, and let us feast our eyes on Zion.” But they do not know the thoughts of the LORD or understand His plan, 13 for He has gathered them like sheaves to the threshing floor. Rise and thresh, O Daughter of Zion, for I will give you horns of iron and hooves of bronze b to break to pieces many peoples. Then you will devote their gain to the LORD, A Ruler from Bethlehem" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 9, + "text": "| 853 10 This is what the LORD of Hosts says: “Let your hands be strong, you who now hear these words spoken by the prophets who were present when the foundations were laid to rebuild the temple, the house of the LORD of Hosts. For before those days neither man nor beast received wages, nor was there safety from the enemy for anyone who came or went, for I had turned every man against his neighbor. But now I will not treat the remnant of this people as I did in the 12 past,” declares the LORD of Hosts. 11 9 This is the burden of the word of the LORD against the land of Hadrach and Damascus its resting place— for the eyes of men a and of all the tribes of Israel — are upon the LORD and also against Hamath, which borders it, as well as Tyre and Sidon, 2 3 though they are very shrewd. 13 “For the seed will be prosperous, the vine will yield its fruit, the ground will yield its produce, and the skies will give their dew. To the remnant of this people I will give all these things as an in- heritance. As you have been a curse among the nations, O house of Judah and house of Israel, so I will save you, and you will be a blessing. Do not 14 be afraid; let your hands be strong.” 15 16 For this is what the LORD of Hosts says: “Just as I resolved to bring disaster upon you when your fathers provoked Me to anger, and I did not relent,” says the LORD of Hosts, “so now I have resolved to do good again to Jerusalem and Ju- dah. Do not be afraid. These are the things you 17 must do: Speak tr" + }, + { + "verseNum": 10, + "text": "10 a 2 And I will cut off the chariot from Ephraim the horse from Jerusalem, and and the bow of war will be broken. Then He will proclaim peace to the nations. b His dominion will extend from sea to sea, and from the Euphrates 11 to the ends of the earth. As for you, because of the blood of My covenant, 12 I will release your prisoners from the waterless pit. Return to your stronghold, O prisoners of hope; even today I declare 13 that I will restore to you double. For I will bend Judah as My bow and fit it with Ephraim. c I will rouse your sons, O Zion, against the sons of Greece. I will make you like the sword The LORD Will Save His People of a mighty man. 14 Then the LORD will appear over them, and His arrow will go forth like lightning. The Lord GOD will sound the ram’s horn and advance in the whirlwinds of the 15 south. The LORD of Hosts will shield them. They will destroy and conquer with slingstones; 16 they will drink and roar as with wine. And they will be filled like sprinkling bowls, drenched like the corners of the altar. On that day the LORD their God will save them as the flock of His people; for like jewels in a crown 17 they will sparkle over His land. How lovely they will be, and how beautiful! Judah and Israel Will Be Restored Grain will make the young men flourish, and new wine, the young women. 10 Ask the LORD for rain in springtime; the LORD makes the storm clouds, and He will give everyone showers of rain For idols speak deceit and diviners see illusions;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 10, + "text": "–17)" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 6, + "text": "| 855 They will pass through the sea of distress and strike the waves of the sea; all the depths of the Nile will dry up. The pride of Assyria will be brought 12 down, and the scepter of Egypt will depart. I will strengthen them in the LORD, and in His name they will walk,” declares the LORD. The Doomed Flock 11 2 Open your doors, O Lebanon, that the fire may consume your cedars! a Wail, O cypress, for the cedar has fallen; the majestic trees are ruined! Wail, O oaks of Bashan, 3 for the dense forest has been cut down! Listen to the wailing of the shepherds, for their glory is in ruins. Listen to the roaring of the young lions, for the thickets of the Jordan are destroyed. 5 4 This is what the LORD my God says: “Pasture whose buyers the flock marked for slaughter, slaughter them without remorse. Those who sell them say, ‘Blessed be the LORD, for I am rich!’ Even their own shepherds have no compassion 6 on them. For I will no longer have compassion on the people of the land, declares the LORD, but behold, I will cause each man to fall into the hands of his neighbor and his king, who will dev- astate the land, and I will not deliver it from their 7 hands.” 8 So I pastured the flock marked for slaughter, es- pecially the afflicted of the flock. Then I took for myself two staffs, calling one Favor and the other And in one Union, and I pastured the flock. month I dismissed three shepherds. 9 My soul grew impatient with the flock, and their Then I said, “I will no souls also detest" + }, + { + "verseNum": 7, + "text": "around them on the right and on the left, while 7 the people of Jerusalem remain secure there. 8 The LORD will save the tents of Judah first, so that the glory of the house of David and of the people of Jerusalem may not be greater than that On that day the LORD will defend the of Judah. people of Jerusalem, so that the weakest among a them will be like David, and the house of David will be like God, like the angel of the LORD going 9 before them. So on that day I will set out to destroy all the Mourning the One They Pierced nations that come against Jerusalem." + }, + { + "verseNum": 10, + "text": "–14) 3" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 7, + "text": "–9 ;" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 16, + "text": "–21) 33 34 c And the LORD said to Moses, “Speak to the Israelites and say, ‘On the fifteenth day of the sev- enth month the Feast of Tabernacles to the 35 LORD begins, and it continues for seven days. 36 On the first day there shall be a sacred assem- bly. You must not do any regular work. For seven days you are to present a food offering to the LORD. On the eighth day you are to hold a sa- cred assembly and present a food offering to the LORD. It is a solemn assembly; you must not do 37 any regular work. These are the LORD’s appointed feasts, which you are to proclaim as sacred assemblies for presenting food offerings to the LORD—burnt of- ferings and grain offerings, sacrifices and drink offerings, each on its designated day. These offerings are in addition to the offerings for the LORD’s Sabbaths, and in addition to your gifts, to all your vow offerings, and to all the freewill 39 offerings you give to the LORD. 38 On the fifteenth day of the seventh month, af- ter you have gathered the produce of the land, you are to celebrate a feast to the LORD for seven days. There shall be complete rest on the first 40 day and also on the eighth day. d 41 On the first day you are to gather the fruit of majestic trees, the branches of palm trees, and the boughs of leafy trees and of willows of the brook. And you are to rejoice before the LORD your God for seven days. You are to cel- ebrate this as a feast to the LORD for seven days each year. This is a permanent statute for the generat" + }, + { + "verseNum": 21, + "text": "| 857 horses and mules, camels and donkeys, and all All Nations Will Worship the King the animals in those camps." + } + ] + } + ] + }, + { + "name": "Malachi", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "–5) 5 b 29 And we know that God works all things to- gether for the good of those who love Him, who For those are called according to His purpose. God foreknew, He also predestined to be con- 30 formed to the image of His Son, so that He would a 36 And be the firstborn among many brothers. forever blessed b 5 6 It is not as though God’s word has failed. For not 7 all who are descended from Israel are Israel. Nor because they are Abraham’s descendants are they all his children. On the contrary," + }, + { + "verseNum": 2, + "text": "–3" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "–5 ;" + }, + { + "verseNum": 10, + "text": "| 859 7 True instruction was in his mouth, and nothing false was found on his lips. He walked with Me in peace and uprightness, and he turned many from For the lips of a priest should preserve iniquity. knowledge, and people should seek instruction from his mouth, because he is the messenger of 8 the LORD of Hosts. 9 But you have departed from the way, and your instruction has caused many to stumble. You have violated the covenant of Levi,” says the “So I in turn have made you des- LORD of Hosts. pised and humiliated before all the people, be- cause you have not kept My ways, but have Judah’s Unfaithfulness shown partiality in matters of the law.” 10 Do we not all have one Father? Did not one God create us? Why then do we break faith with one another so as to profane the covenant of our 11 fathers? Judah has broken faith; an abomination has been committed in Israel and in Jerusalem. For Judah has profaned the LORD’s beloved sanctu- 12 ary by marrying the daughter of a foreign god. As for the man who does this, may the LORD cut off from the tents of Jacob everyone who is awake and aware—even if he brings an offering 13 to the LORD of Hosts. And this is another thing you do: You cover the altar of the LORD with tears, with weeping and groaning, because He no longer regards your of- 14 ferings or receives them gladly from your hands. Yet you ask, “Why?” It is because the LORD has been a witness be- tween you and the wife of your youth, against whom you have broken faith, though" + }, + { + "verseNum": 11, + "text": "a 11 18 b I will out for you blessing without measure. rebuke the devourer for you, so that it will not destroy the fruits of your land, and the vine in your field will not fail to produce fruit,” says the 12 LORD of Hosts. “Then all the nations will call you blessed, for you will be a land of delight,” says the LORD of The Book of Remembrance Hosts. 13 “Your words against Me have been harsh,” says the LORD. “Yet you ask, ‘What have we spo- 14 ken against You?’ You have said, ‘It is futile to serve God. What have we gained by keeping His requirements and 15 walking mournfully before the LORD of Hosts? So now we call the arrogant blessed. Not only do evildoers prosper, they even test God and es- 16 cape.’ ” At that time those who feared the LORD spoke with one another, and the LORD listened and heard them. So a scroll of remembrance was written before Him regarding those who feared 17 the LORD and honored His name. “They will be Mine,” says the LORD of Hosts, “on the day when I prepare My treasured posses- sion. And I will spare them as a man spares his So you will again dis- own son who serves him. tinguish between the righteous and the wicked, between those who serve God and those who do The Day of the LORD not.” (Zeph. 1:7–18 ; 1 Thess. 5:1–11 ;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "–6 ; 1 Thess. 5:1–11 ;" + }, + { + "verseNum": 5, + "text": ". Or BYZ and TR Come to Me, all you who are weary and bur- dened, and I will give you rest. Take My yoke c 5 he sent two of his disciples upon you and learn from Me, for I am gentle and f 12 e 10 has been forcefully advancing leper" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_SAMPLES/new_testament.json b/data/en_bible/BSB_SAMPLES/new_testament.json new file mode 100644 index 0000000..69a090a --- /dev/null +++ b/data/en_bible/BSB_SAMPLES/new_testament.json @@ -0,0 +1,4 @@ +{ + "testament": "New Testament", + "books": [] +} \ No newline at end of file diff --git a/data/en_bible/BSB_SAMPLES/old_testament.json b/data/en_bible/BSB_SAMPLES/old_testament.json new file mode 100644 index 0000000..c1111da --- /dev/null +++ b/data/en_bible/BSB_SAMPLES/old_testament.json @@ -0,0 +1,19 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 20, + "text": "until you return to the ground— because out of it were you taken. “I do not know!” he answered. “Am I my brother’s" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/BSB_VALIDATION/report.json b/data/en_bible/BSB_VALIDATION/report.json new file mode 100644 index 0000000..33cdaf3 --- /dev/null +++ b/data/en_bible/BSB_VALIDATION/report.json @@ -0,0 +1,1517 @@ +{ + "file": "bibles/bible-bsb.md", + "totals": { + "versesTagged": 2030 + }, + "books": [ + { + "name": "Genesis", + "testament": "OT", + "expectedChapters": 50, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 7, + 9, + 11, + 12, + 14, + 15, + 17, + 18, + 19, + 21, + 22, + 23, + 24, + 25, + 26, + 28, + 30, + 31, + 33, + 35, + 36, + 37, + 39, + 41, + 42, + 44, + 46, + 48, + 50 + ], + "detectedCount": 34, + "coverage": 68, + "verseMarkers": 81 + }, + { + "name": "Exodus", + "testament": "OT", + "expectedChapters": 40, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 8, + 9, + 10, + 12, + 13, + 14, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40 + ], + "detectedCount": 36, + "coverage": 90, + "verseMarkers": 123 + }, + { + "name": "Leviticus", + "testament": "OT", + "expectedChapters": 27, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 23, + 24, + 25, + 26, + 27 + ], + "detectedCount": 24, + "coverage": 88.89, + "verseMarkers": 58 + }, + { + "name": "Numbers", + "testament": "OT", + "expectedChapters": 36, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 12, + 13, + 14, + 15, + 16, + 18, + 20, + 21, + 22, + 23, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 34, + 35, + 36 + ], + "detectedCount": 30, + "coverage": 83.33, + "verseMarkers": 61 + }, + { + "name": "Deuteronomy", + "testament": "OT", + "expectedChapters": 34, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 18, + 19, + 21, + 23, + 24, + 25, + 27, + 30, + 31, + 32 + ], + "detectedCount": 25, + "coverage": 73.53, + "verseMarkers": 68 + }, + { + "name": "Joshua", + "testament": "OT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 3, + 6, + 8, + 9, + 11, + 13, + 15, + 18, + 19, + 21, + 22, + 24 + ], + "detectedCount": 13, + "coverage": 54.17, + "verseMarkers": 18 + }, + { + "name": "Judges", + "testament": "OT", + "expectedChapters": 21, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 8, + 9, + 11, + 13, + 14, + 16, + 18, + 19, + 20, + 21 + ], + "detectedCount": 15, + "coverage": 71.43, + "verseMarkers": 19 + }, + { + "name": "Ruth", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 4 + ], + "detectedCount": 2, + "coverage": 50, + "verseMarkers": 4 + }, + { + "name": "1 Samuel", + "testament": "OT", + "expectedChapters": 31, + "detectedChapters": [ + 1, + 2, + 3, + 6, + 8, + 10, + 13, + 14, + 15, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 26, + 28, + 31 + ], + "detectedCount": 20, + "coverage": 64.52, + "verseMarkers": 32 + }, + { + "name": "2 Samuel", + "testament": "OT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 21, + 22, + 23, + 24 + ], + "detectedCount": 23, + "coverage": 95.83, + "verseMarkers": 42 + }, + { + "name": "1 Kings", + "testament": "OT", + "expectedChapters": 22, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 22 + ], + "detectedCount": 21, + "coverage": 95.45, + "verseMarkers": 65 + }, + { + "name": "2 Kings", + "testament": "OT", + "expectedChapters": 25, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 6, + 8, + 9, + 11, + 12, + 13, + 14, + 15, + 16, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ], + "detectedCount": 21, + "coverage": 84, + "verseMarkers": 77 + }, + { + "name": "1 Chronicles", + "testament": "OT", + "expectedChapters": 29, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 24, + 26, + 28, + 29 + ], + "detectedCount": 25, + "coverage": 86.21, + "verseMarkers": 48 + }, + { + "name": "2 Chronicles", + "testament": "OT", + "expectedChapters": 36, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 14, + 16, + 17, + 18, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 33, + 34, + 35, + 36 + ], + "detectedCount": 30, + "coverage": 83.33, + "verseMarkers": 66 + }, + { + "name": "Ezra", + "testament": "OT", + "expectedChapters": 10, + "detectedChapters": [ + 1, + 2, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ], + "detectedCount": 9, + "coverage": 90, + "verseMarkers": 12 + }, + { + "name": "Nehemiah", + "testament": "OT", + "expectedChapters": 13, + "detectedChapters": [ + 4, + 6, + 7, + 8, + 9, + 10, + 12, + 13 + ], + "detectedCount": 8, + "coverage": 61.54, + "verseMarkers": 12 + }, + { + "name": "Esther", + "testament": "OT", + "expectedChapters": 10, + "detectedChapters": [ + 2, + 6, + 9 + ], + "detectedCount": 3, + "coverage": 30, + "verseMarkers": 3 + }, + { + "name": "Job", + "testament": "OT", + "expectedChapters": 42, + "detectedChapters": [ + 1, + 5, + 8, + 11, + 14, + 18, + 21, + 24, + 28, + 31, + 33, + 36, + 38, + 41 + ], + "detectedCount": 14, + "coverage": 33.33, + "verseMarkers": 18 + }, + { + "name": "Psalms", + "testament": "OT", + "expectedChapters": 150, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 8, + 10, + 11, + 13, + 14, + 16, + 18, + 19, + 21, + 22, + 23, + 24, + 25, + 29, + 31, + 32, + 33, + 34, + 36, + 37, + 38, + 40, + 41, + 44, + 45, + 49, + 51, + 52, + 53, + 54, + 57, + 59, + 62, + 64, + 66, + 68, + 69, + 70, + 72, + 74, + 75, + 78, + 79, + 82, + 83, + 84, + 88, + 89, + 91, + 93, + 94, + 95, + 96, + 98, + 99, + 100, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 112, + 113, + 115, + 116, + 117, + 118, + 119, + 127, + 128, + 135, + 136, + 137, + 139, + 140, + 142, + 144, + 148, + 149 + ], + "detectedCount": 88, + "coverage": 58.67, + "verseMarkers": 178 + }, + { + "name": "Proverbs", + "testament": "OT", + "expectedChapters": 31, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 7, + 10, + 11, + 12, + 14, + 16, + 19, + 21, + 23, + 25, + 26, + 27, + 28, + 30 + ], + "detectedCount": 18, + "coverage": 58.06, + "verseMarkers": 26 + }, + { + "name": "Ecclesiastes", + "testament": "OT", + "expectedChapters": 12, + "detectedChapters": [ + 5, + 8, + 11 + ], + "detectedCount": 3, + "coverage": 25, + "verseMarkers": 5 + }, + { + "name": "Song of Songs", + "testament": "OT", + "expectedChapters": 8, + "detectedChapters": [ + 1, + 5, + 8 + ], + "detectedCount": 3, + "coverage": 37.5, + "verseMarkers": 4 + }, + { + "name": "Isaiah", + "testament": "OT", + "expectedChapters": 66, + "detectedChapters": [ + 1, + 2, + 3, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 14, + 15, + 16, + 17, + 21, + 22, + 23, + 25, + 26, + 27, + 28, + 29, + 30, + 32, + 34, + 35, + 37, + 38, + 40, + 41, + 42, + 43, + 44, + 45, + 48, + 49, + 50, + 52, + 53, + 54, + 56, + 57, + 59, + 61, + 63, + 64, + 65, + 66 + ], + "detectedCount": 49, + "coverage": 74.24, + "verseMarkers": 137 + }, + { + "name": "Jeremiah", + "testament": "OT", + "expectedChapters": 52, + "detectedChapters": [ + 3, + 4, + 6, + 7, + 9, + 10, + 13, + 14, + 15, + 17, + 18, + 19, + 21, + 23, + 25, + 26, + 29, + 30, + 31, + 32, + 33, + 35, + 37, + 39, + 40, + 41, + 42, + 44, + 46, + 48, + 49, + 50, + 51, + 52 + ], + "detectedCount": 34, + "coverage": 65.38, + "verseMarkers": 53 + }, + { + "name": "Lamentations", + "testament": "OT", + "expectedChapters": 5, + "detectedChapters": [ + 2, + 3, + 5 + ], + "detectedCount": 3, + "coverage": 60, + "verseMarkers": 3 + }, + { + "name": "Ezekiel", + "testament": "OT", + "expectedChapters": 48, + "detectedChapters": [ + 1, + 3, + 6, + 8, + 11, + 13, + 14, + 16, + 17, + 19, + 20, + 22, + 23, + 26, + 28, + 29, + 32, + 33, + 34, + 35, + 36, + 37, + 39, + 40, + 42, + 44, + 45, + 46, + 48 + ], + "detectedCount": 29, + "coverage": 60.42, + "verseMarkers": 40 + }, + { + "name": "Daniel", + "testament": "OT", + "expectedChapters": 12, + "detectedChapters": [ + 3, + 4, + 6, + 7, + 9, + 11, + 12 + ], + "detectedCount": 7, + "coverage": 58.33, + "verseMarkers": 10 + }, + { + "name": "Hosea", + "testament": "OT", + "expectedChapters": 14, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 9, + 10, + 11, + 13 + ], + "detectedCount": 9, + "coverage": 64.29, + "verseMarkers": 16 + }, + { + "name": "Joel", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2, + 3 + ], + "detectedCount": 3, + "coverage": 100, + "verseMarkers": 6 + }, + { + "name": "Amos", + "testament": "OT", + "expectedChapters": 9, + "detectedChapters": [ + 1, + 4, + 5, + 6, + 7, + 9 + ], + "detectedCount": 6, + "coverage": 66.67, + "verseMarkers": 10 + }, + { + "name": "Obadiah", + "testament": "OT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 2 + }, + { + "name": "Jonah", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 3, + 4 + ], + "detectedCount": 3, + "coverage": 75, + "verseMarkers": 5 + }, + { + "name": "Micah", + "testament": "OT", + "expectedChapters": 7, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ], + "detectedCount": 7, + "coverage": 100, + "verseMarkers": 15 + }, + { + "name": "Nahum", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 2 + }, + { + "name": "Habakkuk", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2, + 3 + ], + "detectedCount": 3, + "coverage": 100, + "verseMarkers": 6 + }, + { + "name": "Zephaniah", + "testament": "OT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 2 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 3 + }, + { + "name": "Haggai", + "testament": "OT", + "expectedChapters": 2, + "detectedChapters": [ + 1, + 2 + ], + "detectedCount": 2, + "coverage": 100, + "verseMarkers": 2 + }, + { + "name": "Zechariah", + "testament": "OT", + "expectedChapters": 14, + "detectedChapters": [ + 2, + 6, + 8, + 9, + 11, + 12, + 13, + 14 + ], + "detectedCount": 8, + "coverage": 57.14, + "verseMarkers": 17 + }, + { + "name": "Malachi", + "testament": "OT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 3, + 4 + ], + "detectedCount": 3, + "coverage": 75, + "verseMarkers": 9 + }, + { + "name": "Matthew", + "testament": "NT", + "expectedChapters": 28, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ], + "detectedCount": 28, + "coverage": 100, + "verseMarkers": 207 + }, + { + "name": "Mark", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "detectedCount": 16, + "coverage": 100, + "verseMarkers": 99 + }, + { + "name": "Luke", + "testament": "NT", + "expectedChapters": 24, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24 + ], + "detectedCount": 24, + "coverage": 100, + "verseMarkers": 78 + }, + { + "name": "John", + "testament": "NT", + "expectedChapters": 21, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5, + 7, + 8, + 9, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ], + "detectedCount": 19, + "coverage": 90.48, + "verseMarkers": 37 + }, + { + "name": "Acts", + "testament": "NT", + "expectedChapters": 28, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 6, + 7, + 8, + 9, + 10, + 11, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 25, + 27, + 28 + ], + "detectedCount": 24, + "coverage": 85.71, + "verseMarkers": 58 + }, + { + "name": "Romans", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ], + "detectedCount": 14, + "coverage": 87.5, + "verseMarkers": 35 + }, + { + "name": "1 Corinthians", + "testament": "NT", + "expectedChapters": 16, + "detectedChapters": [ + 1, + 2, + 3, + 7, + 9, + 10, + 12, + 14, + 16 + ], + "detectedCount": 9, + "coverage": 56.25, + "verseMarkers": 20 + }, + { + "name": "2 Corinthians", + "testament": "NT", + "expectedChapters": 13, + "detectedChapters": [ + 3, + 5, + 8, + 9, + 11, + 12 + ], + "detectedCount": 6, + "coverage": 46.15, + "verseMarkers": 9 + }, + { + "name": "Galatians", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 3, + 4, + 5, + 6 + ], + "detectedCount": 4, + "coverage": 66.67, + "verseMarkers": 5 + }, + { + "name": "Ephesians", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 1, + 2, + 4, + 5, + 6 + ], + "detectedCount": 5, + "coverage": 83.33, + "verseMarkers": 15 + }, + { + "name": "Philippians", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 12 + }, + { + "name": "Colossians", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 11 + }, + { + "name": "1 Thessalonians", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 4 + ], + "detectedCount": 2, + "coverage": 40, + "verseMarkers": 2 + }, + { + "name": "2 Thessalonians", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 33.33, + "verseMarkers": 1 + }, + { + "name": "1 Timothy", + "testament": "NT", + "expectedChapters": 6, + "detectedChapters": [ + 1, + 3, + 5, + 6 + ], + "detectedCount": 4, + "coverage": 66.67, + "verseMarkers": 8 + }, + { + "name": "2 Timothy", + "testament": "NT", + "expectedChapters": 4, + "detectedChapters": [ + 1, + 2, + 3, + 4 + ], + "detectedCount": 4, + "coverage": 100, + "verseMarkers": 5 + }, + { + "name": "Titus", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 5 + }, + { + "name": "Philemon", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 0 + }, + { + "name": "Hebrews", + "testament": "NT", + "expectedChapters": 13, + "detectedChapters": [ + 1, + 3, + 4, + 5, + 7, + 8, + 10, + 11, + 12 + ], + "detectedCount": 9, + "coverage": 69.23, + "verseMarkers": 18 + }, + { + "name": "James", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 2, + 3, + 5 + ], + "detectedCount": 4, + "coverage": 80, + "verseMarkers": 6 + }, + { + "name": "1 Peter", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 5 + ], + "detectedCount": 5, + "coverage": 100, + "verseMarkers": 8 + }, + { + "name": "2 Peter", + "testament": "NT", + "expectedChapters": 3, + "detectedChapters": [ + 1, + 3 + ], + "detectedCount": 2, + "coverage": 66.67, + "verseMarkers": 3 + }, + { + "name": "1 John", + "testament": "NT", + "expectedChapters": 5, + "detectedChapters": [ + 1, + 3, + 5 + ], + "detectedCount": 3, + "coverage": 60, + "verseMarkers": 3 + }, + { + "name": "2 John", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 3 + }, + { + "name": "3 John", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1, + 13, + 20 + ], + "detectedCount": 3, + "coverage": 300, + "verseMarkers": 4 + }, + { + "name": "Jude", + "testament": "NT", + "expectedChapters": 1, + "detectedChapters": [ + 1 + ], + "detectedCount": 1, + "coverage": 100, + "verseMarkers": 5 + }, + { + "name": "Revelation", + "testament": "NT", + "expectedChapters": 22, + "detectedChapters": [ + 1, + 2, + 3, + 4, + 7, + 10, + 11, + 13, + 15, + 17, + 18, + 19, + 21, + 22 + ], + "detectedCount": 14, + "coverage": 63.64, + "verseMarkers": 17 + } + ] +} \ No newline at end of file diff --git a/data/en_bible/WEB/new_testament.json b/data/en_bible/WEB/new_testament.json new file mode 100644 index 0000000..93227f1 --- /dev/null +++ b/data/en_bible/WEB/new_testament.json @@ -0,0 +1,33272 @@ +{ + "testament": "New Testament", + "books": [ + { + "name": "Matthew", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2424\"* book of|strong=\"G5207\"* the|strong=\"G2424\"* genealogy|strong=\"G1078\"* of|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 Messiah (Hebrew) and Christ (Greek) both mean “Anointed One”* the|strong=\"G2424\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, the|strong=\"G2424\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Abraham." + }, + { + "verseNum": 2, + "text": "Abraham became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Isaac|strong=\"G2464\"*. Isaac|strong=\"G2464\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Jacob|strong=\"G2384\"*. Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Judah|strong=\"G2455\"* and|strong=\"G2532\"* his|strong=\"G2532\"* brothers." + }, + { + "verseNum": 3, + "text": "Judah|strong=\"G2455\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Perez|strong=\"G5329\"* and|strong=\"G2532\"* Zerah|strong=\"G2196\"* by|strong=\"G1537\"* Tamar|strong=\"G2283\"*. Perez|strong=\"G5329\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Hezron|strong=\"G2074\"*. Hezron|strong=\"G2074\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Ram." + }, + { + "verseNum": 4, + "text": "Ram became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Amminadab. Amminadab became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Nahshon|strong=\"G3476\"*. Nahshon|strong=\"G3476\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Salmon|strong=\"G4533\"*." + }, + { + "verseNum": 5, + "text": "Salmon|strong=\"G4533\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Boaz|strong=\"G1003\"* by|strong=\"G1537\"* Rahab|strong=\"G4477\"*. Boaz|strong=\"G1003\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Obed|strong=\"G5601\"* by|strong=\"G1537\"* Ruth|strong=\"G4503\"*. Obed|strong=\"G5601\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Jesse|strong=\"G2421\"*." + }, + { + "verseNum": 6, + "text": "Jesse|strong=\"G2421\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* King|strong=\"G3588\"* David|strong=\"G1138\"*. David|strong=\"G1138\"* the|strong=\"G1537\"* king|strong=\"G3588\"*+ 1:6 NU omits “the king”.* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Solomon|strong=\"G4672\"* by|strong=\"G1537\"* her|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been Uriah|strong=\"G3774\"*’s wife." + }, + { + "verseNum": 7, + "text": "Solomon|strong=\"G4672\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Rehoboam|strong=\"G4497\"*. Rehoboam|strong=\"G4497\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Abijah. Abijah became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Asa." + }, + { + "verseNum": 8, + "text": "Asa became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jehoshaphat|strong=\"G2498\"*. Jehoshaphat|strong=\"G2498\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Joram|strong=\"G2496\"*. Joram|strong=\"G2496\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Uzziah|strong=\"G3604\"*." + }, + { + "verseNum": 9, + "text": "Uzziah|strong=\"G3604\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jotham|strong=\"G2488\"*. Jotham|strong=\"G2488\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Ahaz. Ahaz became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Hezekiah|strong=\"G1478\"*." + }, + { + "verseNum": 10, + "text": "Hezekiah|strong=\"G1478\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Manasseh|strong=\"G3128\"*. Manasseh|strong=\"G3128\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Amon. Amon became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Josiah|strong=\"G2502\"*." + }, + { + "verseNum": 11, + "text": "Josiah|strong=\"G2502\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2532\"* Jechoniah and|strong=\"G2532\"* his|strong=\"G1909\"* brothers at|strong=\"G1909\"* the|strong=\"G2532\"* time|strong=\"G1909\"* of|strong=\"G2532\"* the|strong=\"G2532\"* exile to|strong=\"G2532\"* Babylon." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* the|strong=\"G1161\"* exile to|strong=\"G1161\"* Babylon, Jechoniah became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Shealtiel|strong=\"G4528\"*. Shealtiel|strong=\"G4528\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Zerubbabel|strong=\"G2216\"*." + }, + { + "verseNum": 13, + "text": "Zerubbabel|strong=\"G2216\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Abiud. Abiud became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eliakim|strong=\"G1662\"*. Eliakim|strong=\"G1662\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Azor." + }, + { + "verseNum": 14, + "text": "Azor became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Zadok|strong=\"G4524\"*. Zadok|strong=\"G4524\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Achim. Achim became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eliud|strong=\"G1664\"*." + }, + { + "verseNum": 15, + "text": "Eliud|strong=\"G1664\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Eleazar|strong=\"G1648\"*. Eleazar|strong=\"G1648\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Matthan|strong=\"G3157\"*. Matthan|strong=\"G3157\"* became|strong=\"G1080\"* the|strong=\"G1161\"* father|strong=\"G1080\"* of|strong=\"G1080\"* Jacob|strong=\"G2384\"*." + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G1537\"* father|strong=\"G1080\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*, the|strong=\"G1537\"* husband of|strong=\"G1537\"* Mary|strong=\"G3137\"*, from|strong=\"G1537\"* whom|strong=\"G3739\"* was|strong=\"G3588\"* born|strong=\"G1080\"* Jesus|strong=\"G2424\"*,+ 1:16 “Jesus” means “Salvation”.* who|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* all|strong=\"G3956\"* the|strong=\"G2532\"* generations|strong=\"G1074\"* from|strong=\"G2532\"* Abraham to|strong=\"G2532\"* David|strong=\"G1138\"* are|strong=\"G3588\"* fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*; from|strong=\"G2532\"* David|strong=\"G1138\"* to|strong=\"G2532\"* the|strong=\"G2532\"* exile to|strong=\"G2532\"* Babylon fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*; and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* carrying away to|strong=\"G2532\"* Babylon to|strong=\"G2532\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, fourteen|strong=\"G1180\"* generations|strong=\"G1074\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* birth|strong=\"G1078\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* was|strong=\"G1510\"* like|strong=\"G3779\"* this|strong=\"G3588\"*: After|strong=\"G1161\"* his|strong=\"G1438\"* mother|strong=\"G3384\"*, Mary|strong=\"G3137\"*, was|strong=\"G1510\"* engaged|strong=\"G3423\"* to|strong=\"G1722\"* Joseph|strong=\"G2501\"*, before|strong=\"G4250\"* they|strong=\"G1161\"* came|strong=\"G4905\"* together|strong=\"G4905\"*, she|strong=\"G1161\"* was|strong=\"G1510\"* found|strong=\"G2147\"* pregnant|strong=\"G1064\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 19, + "text": "Joseph|strong=\"G2501\"*, her|strong=\"G1438\"* husband, being|strong=\"G1510\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* willing|strong=\"G2309\"* to|strong=\"G2532\"* make|strong=\"G2532\"* her|strong=\"G1438\"* a|strong=\"G2532\"* public example, intended|strong=\"G1014\"* to|strong=\"G2532\"* put|strong=\"G2532\"* her|strong=\"G1438\"* away secretly|strong=\"G2977\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* thought|strong=\"G1760\"* about|strong=\"G2596\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* an|strong=\"G1722\"* angel of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G2596\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G1722\"* dream|strong=\"G3677\"*, saying|strong=\"G3004\"*, “Joseph|strong=\"G2501\"*, son|strong=\"G5207\"* of|strong=\"G1537\"* David|strong=\"G1138\"*, don’t|strong=\"G3588\"* be|strong=\"G1510\"* afraid|strong=\"G5399\"* to|strong=\"G2596\"* take|strong=\"G3880\"* to|strong=\"G2596\"* yourself|strong=\"G4771\"* Mary|strong=\"G3137\"* as|strong=\"G1722\"* your|strong=\"G2962\"* wife|strong=\"G1135\"*, for|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* conceived|strong=\"G1080\"* in|strong=\"G1722\"* her|strong=\"G3708\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"G2532\"* shall|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*. You|strong=\"G2564\"* shall|strong=\"G2532\"* name|strong=\"G3686\"* him|strong=\"G3588\"* Jesus|strong=\"G2424\"*,+ 1:21 “Jesus” means “Salvation”.* for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* shall|strong=\"G2532\"* save|strong=\"G4982\"* his|strong=\"G2532\"* people|strong=\"G2992\"* from|strong=\"G2532\"* their|strong=\"G2532\"* sins.”" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G1161\"* all|strong=\"G3650\"* this|strong=\"G3778\"* has|strong=\"G2962\"* happened|strong=\"G1096\"* that|strong=\"G2443\"* it|strong=\"G1161\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1096\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* through|strong=\"G1223\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 23, + "text": "“Behold|strong=\"G2400\"*, the|strong=\"G1722\"* virgin|strong=\"G3933\"* shall|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* child|strong=\"G1064\"*," + }, + { + "verseNum": 24, + "text": "Joseph|strong=\"G2501\"* arose|strong=\"G1453\"* from|strong=\"G2532\"* his|strong=\"G4160\"* sleep|strong=\"G5258\"*, and|strong=\"G2532\"* did|strong=\"G4160\"* as|strong=\"G5613\"* the|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* commanded|strong=\"G4367\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G3880\"* his|strong=\"G4160\"* wife|strong=\"G1135\"* to|strong=\"G2532\"* himself;" + }, + { + "verseNum": 25, + "text": "and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* her|strong=\"G1438\"* sexually until|strong=\"G2193\"* she|strong=\"G2532\"* had|strong=\"G2424\"* given|strong=\"G2564\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* her|strong=\"G1438\"* firstborn son|strong=\"G5207\"*. He|strong=\"G2532\"* named|strong=\"G3686\"* him|strong=\"G3588\"* Jesus|strong=\"G2424\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* born|strong=\"G1080\"* in|strong=\"G1722\"* Bethlehem of|strong=\"G2250\"* Judea|strong=\"G2449\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* King|strong=\"G3588\"* Herod|strong=\"G2264\"*, behold|strong=\"G2400\"*, wise|strong=\"G3854\"* men|strong=\"G3097\"*+ 2:1 The word for “wise men” (magoi) can also mean teachers, scientists, physicians, astrologers, seers, interpreters of dreams, or sorcerers.* from|strong=\"G3588\"* the|strong=\"G1722\"* east came|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, saying," + }, + { + "verseNum": 2, + "text": "“Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* born|strong=\"G5088\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* saw|strong=\"G3708\"* his|strong=\"G1722\"* star in|strong=\"G1722\"* the|strong=\"G1722\"* east, and|strong=\"G2532\"* have|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* King|strong=\"G3588\"* Herod|strong=\"G2264\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* Jerusalem|strong=\"G2414\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Gathering|strong=\"G4863\"* together|strong=\"G4863\"* all|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* scribes|strong=\"G1122\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, he|strong=\"G2532\"* asked|strong=\"G4441\"* them|strong=\"G3588\"* where|strong=\"G4226\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* would|strong=\"G2532\"* be|strong=\"G2532\"* born|strong=\"G1080\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “In|strong=\"G1722\"* Bethlehem of|strong=\"G1223\"* Judea|strong=\"G2449\"*, for|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"* through|strong=\"G1223\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*," + }, + { + "verseNum": 6, + "text": "‘You|strong=\"G4771\"* Bethlehem, land|strong=\"G1093\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 7, + "text": "Then|strong=\"G5119\"* Herod|strong=\"G2264\"* secretly|strong=\"G2977\"* called|strong=\"G2564\"* the|strong=\"G3588\"* wise men|strong=\"G3097\"*, and|strong=\"G3588\"* learned from|strong=\"G3844\"* them|strong=\"G3588\"* exactly what|strong=\"G3588\"* time|strong=\"G5550\"* the|strong=\"G3588\"* star appeared|strong=\"G5316\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* sent|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Bethlehem, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Go|strong=\"G4198\"* and|strong=\"G2532\"* search|strong=\"G1833\"* diligently for|strong=\"G1519\"* the|strong=\"G2532\"* young child|strong=\"G3813\"*. When|strong=\"G1161\"* you|strong=\"G3004\"* have|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"*, bring|strong=\"G2532\"* me|strong=\"G1473\"* word|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* I|strong=\"G1473\"* also|strong=\"G2532\"* may|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"*, having|strong=\"G2532\"* heard the|strong=\"G1722\"* king|strong=\"G3588\"*, went|strong=\"G4198\"* their|strong=\"G1438\"* way|strong=\"G4198\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G1722\"* star, which|strong=\"G3739\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* the|strong=\"G1722\"* east, went|strong=\"G4198\"* before|strong=\"G4254\"* them|strong=\"G3588\"* until|strong=\"G2193\"* it|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* over|strong=\"G1883\"* where|strong=\"G3757\"* the|strong=\"G1722\"* young|strong=\"G3739\"* child|strong=\"G3813\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* the|strong=\"G1161\"* star, they|strong=\"G1161\"* rejoiced|strong=\"G5463\"* with|strong=\"G3588\"* exceedingly|strong=\"G4970\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* young|strong=\"G4374\"* child|strong=\"G3813\"* with|strong=\"G3326\"* Mary|strong=\"G3137\"*, his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*. Opening their|strong=\"G2532\"* treasures|strong=\"G2344\"*, they|strong=\"G2532\"* offered|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* gifts|strong=\"G1435\"*: gold|strong=\"G5557\"*, frankincense|strong=\"G3030\"*, and|strong=\"G2532\"* myrrh|strong=\"G4666\"*." + }, + { + "verseNum": 12, + "text": "Being|strong=\"G2532\"* warned|strong=\"G5537\"* in|strong=\"G1519\"* a|strong=\"G2532\"* dream|strong=\"G3677\"* not|strong=\"G3361\"* to|strong=\"G1519\"* return to|strong=\"G1519\"* Herod|strong=\"G2264\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* back|strong=\"G1519\"* to|strong=\"G1519\"* their|strong=\"G2532\"* own country|strong=\"G5561\"* another|strong=\"G2596\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* departed, behold|strong=\"G2400\"*, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* Joseph|strong=\"G2501\"* in|strong=\"G1519\"* a|strong=\"G2532\"* dream|strong=\"G3677\"*, saying|strong=\"G3004\"*, “Arise|strong=\"G1453\"* and|strong=\"G2532\"* take|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* flee|strong=\"G5343\"* into|strong=\"G1519\"* Egypt, and|strong=\"G2532\"* stay there|strong=\"G1563\"* until|strong=\"G2193\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G4771\"*, for|strong=\"G1063\"* Herod|strong=\"G2264\"* will|strong=\"G3195\"* seek|strong=\"G2212\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* to|strong=\"G1519\"* destroy him|strong=\"G3588\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"* by|strong=\"G2532\"* night|strong=\"G3571\"* and|strong=\"G2532\"* departed into|strong=\"G1519\"* Egypt," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"* until|strong=\"G2193\"* the|strong=\"G2532\"* death|strong=\"G5054\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1510\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* through|strong=\"G1223\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*, “Out|strong=\"G1537\"* of|strong=\"G1537\"* Egypt I|strong=\"G1473\"* called|strong=\"G2564\"* my|strong=\"G1473\"* son|strong=\"G5207\"*.”+ 2:15 Hosea 11:1*" + }, + { + "verseNum": 16, + "text": "Then|strong=\"G2532\"* Herod|strong=\"G2264\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* mocked|strong=\"G1702\"* by|strong=\"G1722\"* the|strong=\"G1722\"* wise men|strong=\"G3956\"*, was|strong=\"G3588\"* exceedingly|strong=\"G3029\"* angry, and|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* killed all|strong=\"G3956\"* the|strong=\"G1722\"* male|strong=\"G3816\"* children|strong=\"G3816\"* who|strong=\"G3739\"* were|strong=\"G3588\"* in|strong=\"G1722\"* Bethlehem and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* surrounding countryside, from|strong=\"G3844\"* two|strong=\"G1332\"* years|strong=\"G1332\"* old|strong=\"G1332\"* and|strong=\"G2532\"* under|strong=\"G5259\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* exact|strong=\"G5550\"* time|strong=\"G5550\"* which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* learned from|strong=\"G3844\"* the|strong=\"G1722\"* wise men|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G5119\"* that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G1223\"* Jeremiah|strong=\"G2408\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 18, + "text": "“A|strong=\"G2532\"* voice|strong=\"G5456\"* was|strong=\"G1510\"* heard in|strong=\"G1722\"* Ramah|strong=\"G4471\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"* was|strong=\"G3588\"* dead|strong=\"G5053\"*, behold|strong=\"G2400\"*, an|strong=\"G1722\"* angel of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* in|strong=\"G1722\"* a|strong=\"G1722\"* dream|strong=\"G3677\"* to|strong=\"G2596\"* Joseph|strong=\"G2501\"* in|strong=\"G1722\"* Egypt, saying," + }, + { + "verseNum": 20, + "text": "“Arise|strong=\"G1453\"* and|strong=\"G2532\"* take|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* go|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, for|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sought|strong=\"G2212\"* the|strong=\"G2532\"* young child|strong=\"G3813\"*’s life|strong=\"G5590\"* are|strong=\"G3588\"* dead|strong=\"G2348\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* young child|strong=\"G3813\"* and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* came|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* heard that|strong=\"G3754\"* Archelaus was|strong=\"G3588\"* reigning over|strong=\"G2596\"* Judea|strong=\"G2449\"* in|strong=\"G1519\"* the|strong=\"G1519\"* place|strong=\"G1563\"* of|strong=\"G3962\"* his|strong=\"G1519\"* father|strong=\"G3962\"*, Herod|strong=\"G2264\"*, he|strong=\"G1161\"* was|strong=\"G3588\"* afraid|strong=\"G5399\"* to|strong=\"G1519\"* go|strong=\"G1519\"* there|strong=\"G1563\"*. Being|strong=\"G1161\"* warned|strong=\"G5537\"* in|strong=\"G1519\"* a|strong=\"G1519\"* dream|strong=\"G3677\"*, he|strong=\"G1161\"* withdrew into|strong=\"G1519\"* the|strong=\"G1519\"* region of|strong=\"G3962\"* Galilee|strong=\"G1056\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1519\"* a|strong=\"G2532\"* city|strong=\"G4172\"* called|strong=\"G2564\"* Nazareth|strong=\"G3478\"*; that|strong=\"G3754\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* that|strong=\"G3754\"* he|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* a|strong=\"G2532\"* Nazarene|strong=\"G3480\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer came|strong=\"G3854\"*, preaching|strong=\"G2784\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* of|strong=\"G2250\"* Judea|strong=\"G2449\"*, saying," + }, + { + "verseNum": 2, + "text": "“Repent|strong=\"G3340\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* Kingdom of|strong=\"G2532\"* Heaven|strong=\"G3772\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1448\"*!”" + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G3778\"* who|strong=\"G3588\"* was|strong=\"G1510\"* spoken|strong=\"G3004\"* of|strong=\"G1223\"* by|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* John|strong=\"G2491\"* himself wore|strong=\"G2192\"* clothing|strong=\"G1742\"* made|strong=\"G1161\"* of|strong=\"G4012\"* camel|strong=\"G2574\"*’s|strong=\"G2192\"* hair|strong=\"G2359\"* with|strong=\"G2532\"* a|strong=\"G2192\"* leather|strong=\"G1193\"* belt|strong=\"G2223\"* around|strong=\"G4012\"* his|strong=\"G4012\"* waist|strong=\"G3751\"*. His|strong=\"G4012\"* food|strong=\"G5160\"* was|strong=\"G1510\"* locusts and|strong=\"G2532\"* wild|strong=\"G2532\"* honey|strong=\"G3192\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* people|strong=\"G3956\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2414\"*, all|strong=\"G3956\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* region|strong=\"G4066\"* around|strong=\"G4314\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* went|strong=\"G2532\"* out|strong=\"G1607\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* baptized by|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*, confessing|strong=\"G1843\"* their|strong=\"G2532\"* sins." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"* coming|strong=\"G2064\"* for|strong=\"G1909\"* his|strong=\"G1909\"* baptism, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* offspring|strong=\"G1081\"* of|strong=\"G2532\"* vipers|strong=\"G2191\"*, who|strong=\"G5101\"* warned|strong=\"G5263\"* you|strong=\"G5210\"* to|strong=\"G2532\"* flee|strong=\"G5343\"* from|strong=\"G2064\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* to|strong=\"G2532\"* come|strong=\"G2064\"*?" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* produce|strong=\"G4160\"* fruit|strong=\"G2590\"* worthy of|strong=\"G3588\"* repentance|strong=\"G3341\"*!" + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* think|strong=\"G1380\"* to|strong=\"G2532\"* yourselves|strong=\"G1438\"*, ‘We|strong=\"G3754\"* have|strong=\"G2192\"* Abraham for|strong=\"G1063\"* our|strong=\"G2316\"* father|strong=\"G3962\"*,’ for|strong=\"G1063\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* children|strong=\"G5043\"* to|strong=\"G2532\"* Abraham from|strong=\"G1537\"* these|strong=\"G3778\"* stones|strong=\"G3037\"*." + }, + { + "verseNum": 10, + "text": "Even|strong=\"G2532\"* now|strong=\"G1161\"* the|strong=\"G2532\"* ax lies|strong=\"G2749\"* at|strong=\"G1519\"* the|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* the|strong=\"G2532\"* trees|strong=\"G1186\"*. Therefore|strong=\"G3767\"* every|strong=\"G3956\"* tree|strong=\"G1186\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* produce|strong=\"G4160\"* good|strong=\"G2570\"* fruit|strong=\"G2590\"* is|strong=\"G3588\"* cut|strong=\"G1581\"* down|strong=\"G1581\"*, and|strong=\"G2532\"* cast|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"G1473\"* indeed|strong=\"G2532\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* water|strong=\"G5204\"* for|strong=\"G1519\"* repentance|strong=\"G3341\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G1519\"* carry. He|strong=\"G2532\"* will|strong=\"G1510\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.+ 3:11 TR and NU add “and with fire” *" + }, + { + "verseNum": 12, + "text": "His|strong=\"G1519\"* winnowing|strong=\"G4425\"* fork|strong=\"G4425\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* thoroughly|strong=\"G1245\"* cleanse his|strong=\"G1519\"* threshing floor. He|strong=\"G2532\"* will|strong=\"G2532\"* gather|strong=\"G4863\"* his|strong=\"G1519\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* the|strong=\"G1722\"* barn, but|strong=\"G1161\"* the|strong=\"G1722\"* chaff he|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* up|strong=\"G1519\"* with|strong=\"G1722\"* unquenchable fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* came|strong=\"G3854\"* from|strong=\"G5259\"* Galilee|strong=\"G1056\"* to|strong=\"G4314\"* the|strong=\"G1909\"* Jordan|strong=\"G2446\"*+ 3:13 i.e., the Jordan River* to|strong=\"G4314\"* John|strong=\"G2491\"*, to|strong=\"G4314\"* be|strong=\"G3588\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* John|strong=\"G2491\"* would|strong=\"G2532\"* have|strong=\"G2192\"* hindered him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “I|strong=\"G1473\"* need|strong=\"G5532\"* to|strong=\"G4314\"* be|strong=\"G2532\"* baptized by|strong=\"G5259\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, answering, said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Allow \\+w it|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w fitting|strong=\"G4241\"\\+w* \\+w way|strong=\"G3779\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w fulfill|strong=\"G4137\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*.”* Then|strong=\"G5119\"* he|strong=\"G1161\"* allowed him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* baptized, went|strong=\"G2064\"* up|strong=\"G2532\"* directly from|strong=\"G2064\"* the|strong=\"G2532\"* water|strong=\"G5204\"*: and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G2532\"* heavens|strong=\"G3772\"* were|strong=\"G3588\"* opened to|strong=\"G2532\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"* descending|strong=\"G2597\"* as|strong=\"G1161\"* a|strong=\"G2532\"* dove|strong=\"G4058\"*, and|strong=\"G2532\"* coming|strong=\"G2064\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G3708\"* beloved Son|strong=\"G5207\"*, with|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* led|strong=\"G2424\"* up|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* the|strong=\"G1519\"* wilderness|strong=\"G2048\"* to|strong=\"G1519\"* be|strong=\"G1519\"* tempted|strong=\"G3985\"* by|strong=\"G5259\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* fasted|strong=\"G3522\"* forty|strong=\"G5062\"* days|strong=\"G2250\"* and|strong=\"G2532\"* forty|strong=\"G5062\"* nights|strong=\"G3571\"*, he|strong=\"G2532\"* was|strong=\"G2532\"* hungry|strong=\"G3983\"* afterward|strong=\"G5305\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G2532\"* tempter|strong=\"G3985\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, command|strong=\"G3004\"* that|strong=\"G2443\"* these|strong=\"G3778\"* stones|strong=\"G3037\"* become|strong=\"G1096\"* bread.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Man|strong=\"G3956\"\\+w* \\+w shall|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w by|strong=\"G1223\"\\+w* bread \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w word|strong=\"G4487\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1607\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w mouth|strong=\"G4750\"\\+w*.’”*+ 4:4 Deuteronomy 8:3*" + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* took|strong=\"G3880\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* holy|strong=\"G2413\"* city|strong=\"G4172\"*. He|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* pinnacle|strong=\"G4419\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, throw yourself|strong=\"G4572\"* down|strong=\"G2736\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G5346\"* to|strong=\"G3756\"* him|strong=\"G3588\"*, “\\+w Again|strong=\"G3825\"\\+w*, \\+w it|strong=\"G3825\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w test|strong=\"G1598\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*+ 4:7 Deuteronomy 6:16*" + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"* took|strong=\"G3880\"* him|strong=\"G3588\"* to|strong=\"G1519\"* an|strong=\"G2532\"* exceedingly|strong=\"G3029\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* showed|strong=\"G1166\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G2532\"* kingdoms of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* and|strong=\"G2532\"* their|strong=\"G2532\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G1325\"*, “I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G4771\"* all|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* will|strong=\"G2532\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* me|strong=\"G1325\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G5217\"\\+w* behind \\+w me|strong=\"G3004\"\\+w*,*+ 4:10 TR and NU read “Go away” instead of “Get behind me”* \\+w Satan|strong=\"G4567\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w serve|strong=\"G3000\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w only|strong=\"G3441\"\\+w*.’”* + 4:10 Deuteronomy 6:13*" + }, + { + "verseNum": 11, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* left him|strong=\"G3588\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, angels came|strong=\"G4334\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus heard that|strong=\"G3754\"* John|strong=\"G2491\"* was|strong=\"G3588\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"*, he|strong=\"G1161\"* withdrew into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 13, + "text": "Leaving|strong=\"G2641\"* Nazareth|strong=\"G3478\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Capernaum|strong=\"G2584\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G3864\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* region|strong=\"G3725\"* of|strong=\"G2532\"* Zebulun|strong=\"G2194\"* and|strong=\"G2532\"* Naphtali|strong=\"G3508\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* it|strong=\"G1223\"* might be|strong=\"G2443\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 15, + "text": "“The|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Zebulun|strong=\"G2194\"* and|strong=\"G2532\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Naphtali|strong=\"G3508\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"G1722\"* people|strong=\"G2992\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G3173\"* light|strong=\"G5457\"*;" + }, + { + "verseNum": 17, + "text": "From|strong=\"G2532\"* that|strong=\"G3588\"* time|strong=\"G5119\"*, Jesus|strong=\"G2424\"* began|strong=\"G5119\"* to|strong=\"G2532\"* preach|strong=\"G2784\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, “\\+w Repent|strong=\"G3340\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Walking|strong=\"G4043\"* by|strong=\"G3844\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"*+ 4:18 TR reads “Jesus” instead of “he” * saw|strong=\"G3708\"* two|strong=\"G1417\"* brothers: Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* Andrew, his|strong=\"G1519\"* brother, casting a|strong=\"G2532\"* net into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fishermen." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G4160\"*, “\\+w Come|strong=\"G1205\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* fishers \\+w for|strong=\"G2532\"\\+w* men.”*" + }, + { + "verseNum": 20, + "text": "They|strong=\"G1161\"* immediately|strong=\"G2112\"* left their|strong=\"G3588\"* nets|strong=\"G1350\"* and|strong=\"G1161\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "Going|strong=\"G2532\"* on|strong=\"G1722\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* two|strong=\"G1417\"* other|strong=\"G1438\"* brothers, James|strong=\"G2385\"* the|strong=\"G1722\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* Zebedee|strong=\"G2199\"* their|strong=\"G1438\"* father|strong=\"G3962\"*, mending|strong=\"G2675\"* their|strong=\"G1438\"* nets|strong=\"G1350\"*. He|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* immediately|strong=\"G2112\"* left the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* their|strong=\"G2532\"* father|strong=\"G3962\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2532\"* went|strong=\"G2532\"* about|strong=\"G1722\"* in|strong=\"G1722\"* all|strong=\"G3956\"* Galilee|strong=\"G1056\"*, teaching|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"*, preaching|strong=\"G2784\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom, and|strong=\"G2532\"* healing|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* report about|strong=\"G1519\"* him|strong=\"G3588\"* went|strong=\"G2532\"* out|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* Syria|strong=\"G4947\"*. They|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*, afflicted|strong=\"G4912\"* with|strong=\"G2532\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* torments, possessed|strong=\"G2192\"* with|strong=\"G2532\"* demons, epileptics|strong=\"G4583\"*, and|strong=\"G2532\"* paralytics|strong=\"G3885\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"*, Decapolis|strong=\"G1179\"*, Jerusalem|strong=\"G2414\"*, Judea|strong=\"G2449\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* followed him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Seeing|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, he|strong=\"G2532\"* went|strong=\"G4334\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* opened his|strong=\"G1438\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 3, + "text": "“\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w in|strong=\"G3588\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*,*" + }, + { + "verseNum": 4, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w mourn|strong=\"G3996\"\\+w*,*" + }, + { + "verseNum": 5, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w gentle|strong=\"G4239\"\\+w*,*" + }, + { + "verseNum": 6, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hunger|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, *" + }, + { + "verseNum": 7, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w merciful|strong=\"G1655\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w pure|strong=\"G2513\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w heart|strong=\"G2588\"\\+w*,*" + }, + { + "verseNum": 9, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w peacemakers|strong=\"G1518\"\\+w*,*" + }, + { + "verseNum": 10, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*’ \\+w sake|strong=\"G1752\"\\+w*, *" + }, + { + "verseNum": 11, + "text": "“\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w people|strong=\"G3956\"\\+w* \\+w reproach|strong=\"G3679\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w kinds|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w falsely|strong=\"G5574\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Rejoice|strong=\"G5463\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* exceedingly \\+w glad|strong=\"G5463\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w how|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w has|strong=\"G5101\"\\+w* lost \\+w its|strong=\"G5259\"\\+w* flavor, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w* salted? \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w then|strong=\"G1161\"\\+w* \\+w good|strong=\"G2480\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* cast \\+w out|strong=\"G1854\"\\+w* \\+w and|strong=\"G1161\"\\+w* trodden \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* feet \\+w of|strong=\"G5259\"\\+w* \\+w men|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G4172\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w A|strong=\"G1510\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w located|strong=\"G2928\"\\+w* \\+w on|strong=\"G1883\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w hill|strong=\"G3735\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hidden|strong=\"G2928\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w light|strong=\"G3088\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* measuring \\+w basket|strong=\"G3426\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* stand; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w shines|strong=\"G2989\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w shine|strong=\"G2989\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 17, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w destroy|strong=\"G2647\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. \\+w I|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w destroy|strong=\"G2647\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w fulfill|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w For|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G1063\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w smallest|strong=\"G1520\"\\+w* \\+w letter|strong=\"G2762\"\\+w**+ 5:18 literally, iota* \\+w or|strong=\"G2228\"\\+w* \\+w one|strong=\"G1520\"\\+w* tiny pen \\+w stroke|strong=\"G2762\"\\+w**+ 5:18 or, serif* \\+w shall|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w any|strong=\"G3956\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w break|strong=\"G3089\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w* exceeds \\+w that|strong=\"G3754\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w no|strong=\"G3756\"\\+w* way \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“\\+w You|strong=\"G3739\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w said|strong=\"G2046\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* ancient \\+w ones|strong=\"G3748\"\\+w*, ‘\\+w You|strong=\"G3739\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w murder|strong=\"G5407\"\\+w*;’*+ 5:21 Exodus 20:13* \\+w and|strong=\"G1161\"\\+w* ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w murders|strong=\"G5407\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G3756\"\\+w* danger \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*.’ *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w angry|strong=\"G3710\"\\+w* \\+w with|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* brother \\+w without|strong=\"G2920\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w cause|strong=\"G3739\"\\+w* *+ 5:22 NU omits “without a cause”.* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* brother, ‘\\+w Raca|strong=\"G4469\"\\+w*!’ *+ 5:22 “Raca” is an Aramaic insult, related to the word for “empty” and conveying the idea of empty-headedness.* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w council|strong=\"G4892\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w fool|strong=\"G3474\"\\+w*!’ \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1519\"\\+w* danger \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w of|strong=\"G3956\"\\+w* Gehenna.*+ 5:22 or, Hell*" + }, + { + "verseNum": 23, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w offering|strong=\"G1435\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w and|strong=\"G3767\"\\+w* \\+w there|strong=\"G2546\"\\+w* \\+w remember|strong=\"G3403\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w your|strong=\"G2192\"\\+w* brother \\+w has|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 24, + "text": "leave \\+w your|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w First|strong=\"G4413\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w reconciled|strong=\"G1259\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Agree|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversary \\+w quickly|strong=\"G5035\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*; \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w the|strong=\"G1722\"\\+w* prosecutor \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G5257\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G2193\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3361\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w there|strong=\"G1564\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G3588\"\\+w* paid \\+w the|strong=\"G3588\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w penny|strong=\"G2835\"\\+w*.*+ 5:26 literally, kodrantes. A kodrantes was a small copper coin worth about 2 lepta (widow’s mites)—not enough to buy very much of anything.*" + }, + { + "verseNum": 27, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G3748\"\\+w* \\+w said|strong=\"G2046\"\\+w*, *+ 5:27 TR adds “to the ancients”.* ‘\\+w You|strong=\"G3754\"\\+w* \\+w shall|strong=\"G3748\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*;’*+ 5:27 Exodus 20:14*" + }, + { + "verseNum": 28, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* gazes \\+w at|strong=\"G1722\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w lust|strong=\"G1937\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w committed|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w already|strong=\"G2235\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w pluck|strong=\"G1807\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G4624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w profitable|strong=\"G4851\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w members|strong=\"G3196\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 5:29 or, Hell*" + }, + { + "verseNum": 30, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w off|strong=\"G1581\"\\+w*, \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G4624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w profitable|strong=\"G4851\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w members|strong=\"G3196\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish, \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 5:30 or, Hell*" + }, + { + "verseNum": 31, + "text": "“\\+w It|strong=\"G1161\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w also|strong=\"G1161\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w put|strong=\"G1325\"\\+w* away \\+w his|strong=\"G1325\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w a|strong=\"G1325\"\\+w* writing \\+w of|strong=\"G3588\"\\+w* divorce,’*+ 5:31 Deuteronomy 24:1*" + }, + { + "verseNum": 32, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w puts|strong=\"G4160\"\\+w* away \\+w his|strong=\"G1438\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w except|strong=\"G1437\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cause|strong=\"G4160\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*, \\+w makes|strong=\"G4160\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w an|strong=\"G2532\"\\+w* adulteress; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w put|strong=\"G4160\"\\+w* away \\+w commits|strong=\"G4160\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w Again|strong=\"G3825\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G3748\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w said|strong=\"G2046\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* ancient \\+w ones|strong=\"G3748\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w make|strong=\"G3756\"\\+w* \\+w false|strong=\"G1964\"\\+w* \\+w vows|strong=\"G1964\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w shall|strong=\"G2962\"\\+w* perform \\+w to|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w vows|strong=\"G1964\"\\+w*,’*+ 5:33 Numbers 30:2; Deuteronomy 23:21; Ecclesiastes 5:4*" + }, + { + "verseNum": 34, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w swear|strong=\"G3660\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w all|strong=\"G1722\"\\+w*: \\+w neither|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*; *" + }, + { + "verseNum": 35, + "text": "\\+w nor|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w footstool|strong=\"G5286\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w feet|strong=\"G4228\"\\+w*; \\+w nor|strong=\"G3383\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w King|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Neither|strong=\"G3756\"\\+w* \\+w shall|strong=\"G3748\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w swear|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w head|strong=\"G2776\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w black|strong=\"G3189\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G3588\"\\+w* ‘\\+w Yes|strong=\"G3483\"\\+w*’ \\+w be|strong=\"G1510\"\\+w* ‘\\+w Yes|strong=\"G3483\"\\+w*’ \\+w and|strong=\"G1161\"\\+w* \\+w your|strong=\"G3588\"\\+w* ‘\\+w No|strong=\"G3756\"\\+w*’ \\+w be|strong=\"G1510\"\\+w* ‘\\+w No|strong=\"G3756\"\\+w*.’ Whatever \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4053\"\\+w* \\+w than|strong=\"G4053\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 38, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w An|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tooth|strong=\"G3599\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tooth|strong=\"G3599\"\\+w*.’*+ 5:38 Exodus 21:24; Leviticus 24:20; Deuteronomy 19:21*" + }, + { + "verseNum": 39, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* resist \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evil|strong=\"G4190\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w strikes|strong=\"G4474\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w cheek|strong=\"G4600\"\\+w*, \\+w turn|strong=\"G4762\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w If|strong=\"G2532\"\\+w* anyone sues \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* away \\+w your|strong=\"G2532\"\\+w* \\+w coat|strong=\"G2440\"\\+w*, \\+w let|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cloak|strong=\"G2440\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* compels \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w mile|strong=\"G3400\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* turn away \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w borrow|strong=\"G1155\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*.*" + }, + { + "verseNum": 43, + "text": "“\\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w said|strong=\"G2046\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w your|strong=\"G2532\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* *+ 5:43 Leviticus 19:18* \\+w and|strong=\"G2532\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w enemy|strong=\"G2190\"\\+w*.’*+ 5:43 not in the Bible, but see Qumran Manual of Discipline Ix, 21-26*" + }, + { + "verseNum": 44, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, love \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, bless \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* curse \\+w you|strong=\"G5210\"\\+w*, \\+w do|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hate \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* mistreat \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 45, + "text": "\\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* makes \\+w his|strong=\"G1909\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w to|strong=\"G2532\"\\+w* rise \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sends|strong=\"G1026\"\\+w* \\+w rain|strong=\"G1026\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w just|strong=\"G1342\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* unjust. *" + }, + { + "verseNum": 46, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* love \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w only|strong=\"G3440\"\\+w* greet \\+w your|strong=\"G1437\"\\+w* friends, \\+w what|strong=\"G5101\"\\+w* \\+w more|strong=\"G4053\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w than|strong=\"G4053\"\\+w* \\+w others|strong=\"G3588\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* tax collectors*+ 5:47 NU reads “Gentiles” instead of “tax collectors”.* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 48, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*, \\+w just|strong=\"G5613\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G3588\"\\+w* \\+w heaven|strong=\"G3770\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*.*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w Be|strong=\"G3756\"\\+w* \\+w careful|strong=\"G4337\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w your|strong=\"G2192\"\\+w* charitable \\+w giving|strong=\"G4337\"\\+w**+ 6:1 NU reads “acts of righteousness” instead of “charitable giving”* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w seen|strong=\"G2300\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w or|strong=\"G1161\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* merciful \\+w deeds|strong=\"G4160\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w sound|strong=\"G4537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w trumpet|strong=\"G4537\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w yourself|strong=\"G4771\"\\+w*, \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w streets|strong=\"G4505\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1392\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* received \\+w their|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w do|strong=\"G4160\"\\+w* merciful \\+w deeds|strong=\"G4160\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G4160\"\\+w* left \\+w hand|strong=\"G1188\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w does|strong=\"G4160\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* merciful deeds \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w will|strong=\"G1510\"\\+w* reward \\+w you|strong=\"G4771\"\\+w* openly.*" + }, + { + "verseNum": 5, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w corners|strong=\"G1137\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w streets|strong=\"G4116\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* received \\+w their|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w room|strong=\"G5009\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w having|strong=\"G2532\"\\+w* \\+w shut|strong=\"G2808\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w pray|strong=\"G4336\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w will|strong=\"G2532\"\\+w* reward \\+w you|strong=\"G4771\"\\+w* openly. *" + }, + { + "verseNum": 7, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w use|strong=\"G3588\"\\+w* vain repetitions \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Gentiles|strong=\"G1482\"\\+w* \\+w do|strong=\"G1380\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w heard|strong=\"G1522\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G1722\"\\+w* much speaking. *" + }, + { + "verseNum": 8, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G5210\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w like|strong=\"G3779\"\\+w* \\+w this|strong=\"G3588\"\\+w*: *" + }, + { + "verseNum": 10, + "text": "\\+w Let|strong=\"G1096\"\\+w* \\+w your|strong=\"G2532\"\\+w* Kingdom \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w today|strong=\"G4594\"\\+w* our \\+w daily|strong=\"G1967\"\\+w* bread. *" + }, + { + "verseNum": 12, + "text": "Forgive \\+w us|strong=\"G2249\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w debts|strong=\"G3783\"\\+w*,*" + }, + { + "verseNum": 13, + "text": "\\+w Bring|strong=\"G1533\"\\+w* \\+w us|strong=\"G1519\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*,*" + }, + { + "verseNum": 14, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* forgive \\+w men|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* forgive \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* forgive \\+w men|strong=\"G3588\"\\+w* \\+w their|strong=\"G3588\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w Father|strong=\"G3962\"\\+w* forgive \\+w your|strong=\"G1437\"\\+w* \\+w trespasses|strong=\"G3900\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w Moreover|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fast|strong=\"G3522\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w with|strong=\"G3588\"\\+w* \\+w sad|strong=\"G4659\"\\+w* \\+w faces|strong=\"G4383\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* disfigure \\+w their|strong=\"G3588\"\\+w* \\+w faces|strong=\"G4383\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fasting|strong=\"G3522\"\\+w*. Most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w have|strong=\"G5210\"\\+w* received \\+w their|strong=\"G3588\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w fast|strong=\"G3522\"\\+w*, anoint \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w face|strong=\"G4383\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w fasting|strong=\"G3522\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w who|strong=\"G3588\"\\+w* sees \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*, \\+w will|strong=\"G2532\"\\+w* reward \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w lay|strong=\"G2343\"\\+w* \\+w up|strong=\"G2343\"\\+w* \\+w treasures|strong=\"G2344\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rust|strong=\"G1035\"\\+w* consume, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* \\+w break|strong=\"G1358\"\\+w* \\+w through|strong=\"G1909\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w steal|strong=\"G2813\"\\+w*; *" + }, + { + "verseNum": 20, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w lay|strong=\"G2343\"\\+w* \\+w up|strong=\"G2343\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w treasures|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w rust|strong=\"G1035\"\\+w* consume, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* don’t \\+w break|strong=\"G1358\"\\+w* \\+w through|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w steal|strong=\"G2813\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "“\\+w The|strong=\"G3588\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* sound, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w light|strong=\"G3088\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w full|strong=\"G4652\"\\+w* \\+w of|strong=\"G4983\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w great|strong=\"G4214\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*! *" + }, + { + "verseNum": 24, + "text": "“\\+w No|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w masters|strong=\"G2962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w either|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w else|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* devoted \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*. \\+w You|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Mammon|strong=\"G3126\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w life|strong=\"G5590\"\\+w*: \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w drink|strong=\"G2532\"\\+w*; \\+w nor|strong=\"G3366\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* wear. Isn’\\+w t|strong=\"G3588\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w food|strong=\"G5160\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*? *" + }, + { + "verseNum": 26, + "text": "\\+w See|strong=\"G1689\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w into|strong=\"G1519\"\\+w* barns. \\+w Your|strong=\"G2532\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w feeds|strong=\"G5142\"\\+w* \\+w them|strong=\"G3588\"\\+w*. Aren’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w much|strong=\"G3123\"\\+w* \\+w more|strong=\"G3123\"\\+w* value \\+w than|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w*?*" + }, + { + "verseNum": 27, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w being|strong=\"G1161\"\\+w* \\+w anxious|strong=\"G3309\"\\+w*, \\+w can|strong=\"G1410\"\\+w* \\+w add|strong=\"G4369\"\\+w* \\+w one|strong=\"G1520\"\\+w* moment*+ 6:27 literally, cubit* \\+w to|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* lifespan? *" + }, + { + "verseNum": 28, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G4459\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*? \\+w Consider|strong=\"G2648\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lilies|strong=\"G2918\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* field, \\+w how|strong=\"G4459\"\\+w* \\+w they|strong=\"G2532\"\\+w* grow. \\+w They|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w toil|strong=\"G2872\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w spin|strong=\"G3514\"\\+w*, *" + }, + { + "verseNum": 29, + "text": "\\+w yet|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w dressed|strong=\"G4016\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w these|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w so|strong=\"G3779\"\\+w* clothes \\+w the|strong=\"G2532\"\\+w* \\+w grass|strong=\"G5528\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* field, \\+w which|strong=\"G3588\"\\+w* \\+w today|strong=\"G4594\"\\+w* exists \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w is|strong=\"G1510\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* oven, won’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w more|strong=\"G3123\"\\+w* clothe \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*?*" + }, + { + "verseNum": 31, + "text": "“\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w eat|strong=\"G2068\"\\+w*?’, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w drink|strong=\"G4095\"\\+w*?’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w With|strong=\"G4016\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w we|strong=\"G3767\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w clothed|strong=\"G4016\"\\+w*?’ *" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w seek|strong=\"G1934\"\\+w* \\+w after|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5535\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w God|strong=\"G2532\"\\+w*’s Kingdom \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w well|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1063\"\\+w* tomorrow, \\+w for|strong=\"G1063\"\\+w* tomorrow \\+w will|strong=\"G2250\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w itself|strong=\"G1438\"\\+w*. \\+w Each|strong=\"G1438\"\\+w* \\+w day|strong=\"G2250\"\\+w*’s \\+w own|strong=\"G1438\"\\+w* \\+w evil|strong=\"G2549\"\\+w* \\+w is|strong=\"G3588\"\\+w* sufficient.*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Don’t \\+w judge|strong=\"G2919\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3361\"\\+w* won’t \\+w be|strong=\"G3361\"\\+w* \\+w judged|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w judgment|strong=\"G2917\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w judge|strong=\"G2919\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w judged|strong=\"G2919\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w own|strong=\"G4674\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 4, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, ‘\\+w Let|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1722\"\\+w* beam \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w hypocrite|strong=\"G5273\"\\+w*! \\+w First|strong=\"G4413\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* beam \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* can \\+w see|strong=\"G1227\"\\+w* \\+w clearly|strong=\"G1227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*.*" + }, + { + "verseNum": 6, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* holy \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dogs|strong=\"G2965\"\\+w*, \\+w neither|strong=\"G3366\"\\+w* throw \\+w your|strong=\"G2532\"\\+w* \\+w pearls|strong=\"G3135\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w pigs|strong=\"G5519\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w trample|strong=\"G2662\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w under|strong=\"G1722\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w turn|strong=\"G4762\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tear|strong=\"G4486\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pieces|strong=\"G4486\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“Ask, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Seek|strong=\"G2212\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*. \\+w Knock|strong=\"G2925\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened \\+w for|strong=\"G2212\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w receives|strong=\"G2983\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w finds|strong=\"G2147\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knocks|strong=\"G2925\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened. *" + }, + { + "verseNum": 9, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G1510\"\\+w* \\+w among|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w*, if \\+w his|strong=\"G3739\"\\+w* \\+w son|strong=\"G5207\"\\+w* asks \\+w him|strong=\"G3588\"\\+w* \\+w for|strong=\"G1537\"\\+w* bread, \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w stone|strong=\"G3037\"\\+w*? *" + }, + { + "verseNum": 10, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w who|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w serpent|strong=\"G3789\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w gifts|strong=\"G1390\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*! *" + }, + { + "verseNum": 12, + "text": "\\+w Therefore|strong=\"G3767\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w narrow|strong=\"G4728\"\\+w* \\+w gate|strong=\"G4439\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gate|strong=\"G4439\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w wide|strong=\"G4116\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w broad|strong=\"G2149\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w leads|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* destruction, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w How|strong=\"G3754\"\\+w**+ 7:14 TR reads “Because” instead of “How”* \\+w narrow|strong=\"G4728\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gate|strong=\"G4439\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w is|strong=\"G1510\"\\+w* restricted \\+w that|strong=\"G3754\"\\+w* \\+w leads|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*! \\+w There|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 15, + "text": "“\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*’s \\+w clothing|strong=\"G1742\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w are|strong=\"G1510\"\\+w* ravening \\+w wolves|strong=\"G3074\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w By|strong=\"G2228\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w fruits|strong=\"G2590\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w will|strong=\"G3385\"\\+w* \\+w know|strong=\"G1921\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Do|strong=\"G2228\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w grapes|strong=\"G4718\"\\+w* \\+w from|strong=\"G3588\"\\+w* thorns \\+w or|strong=\"G2228\"\\+w* \\+w figs|strong=\"G4810\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w thistles|strong=\"G5146\"\\+w*? *" + }, + { + "verseNum": 17, + "text": "\\+w Even|strong=\"G1161\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w every|strong=\"G3956\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w A|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w produce|strong=\"G4160\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w produce|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Every|strong=\"G3956\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G3956\"\\+w* doesn’t grow \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w is|strong=\"G3956\"\\+w* \\+w cut|strong=\"G1581\"\\+w* \\+w down|strong=\"G1581\"\\+w* \\+w and|strong=\"G2532\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "Therefore \\+w by|strong=\"G1438\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w fruits|strong=\"G2590\"\\+w* \\+w you|strong=\"G1438\"\\+w* will \\+w know|strong=\"G1921\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "“\\+w Not|strong=\"G3756\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*,’ \\+w will|strong=\"G2307\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G3962\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, didn’\\+w t|strong=\"G3588\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w*?’ *" + }, + { + "verseNum": 23, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* tell \\+w them|strong=\"G3588\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Depart \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w work|strong=\"G2038\"\\+w* iniquity.’*" + }, + { + "verseNum": 24, + "text": "“\\+w Everyone|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* liken \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w rain|strong=\"G1028\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w floods|strong=\"G4215\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* winds \\+w blew|strong=\"G4154\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4154\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w fall|strong=\"G4098\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w founded|strong=\"G2311\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w foolish|strong=\"G3474\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* sand. *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w rain|strong=\"G1028\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w floods|strong=\"G4215\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* winds \\+w blew|strong=\"G4154\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4154\"\\+w* \\+w on|strong=\"G2597\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w fell|strong=\"G4098\"\\+w*—\\+w and|strong=\"G2532\"\\+w* its \\+w fall|strong=\"G4098\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* saying|strong=\"G3056\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*," + }, + { + "verseNum": 29, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* with|strong=\"G2532\"* authority|strong=\"G1849\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* like|strong=\"G5613\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G1161\"* mountain|strong=\"G3735\"*, great|strong=\"G4183\"* multitudes|strong=\"G3793\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* leper|strong=\"G3015\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3708\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3708\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G2532\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G3004\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* touched him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”* Immediately|strong=\"G2112\"* his|strong=\"G2532\"* leprosy|strong=\"G3014\"* was|strong=\"G3588\"* cleansed|strong=\"G2511\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w nobody|strong=\"G3367\"\\+w*; \\+w but|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G4367\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G4334\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, a|strong=\"G1519\"* centurion|strong=\"G1543\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3870\"*, asking him|strong=\"G3870\"* for|strong=\"G1519\"* help," + }, + { + "verseNum": 6, + "text": "saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, my|strong=\"G1722\"* servant|strong=\"G3816\"* lies in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* paralyzed|strong=\"G3885\"*, grievously|strong=\"G1171\"* tormented.”" + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G2532\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w heal|strong=\"G2323\"\\+w* \\+w him|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* centurion|strong=\"G1543\"* answered|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, I|strong=\"G1473\"*’m not|strong=\"G3756\"* worthy|strong=\"G2425\"* for|strong=\"G1161\"* you|strong=\"G3004\"* to|strong=\"G2443\"* come|strong=\"G1525\"* under|strong=\"G5259\"* my|strong=\"G1525\"* roof|strong=\"G4721\"*. Just|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* my|strong=\"G1525\"* servant|strong=\"G3816\"* will|strong=\"G1510\"* be|strong=\"G1510\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2192\"* man|strong=\"G3778\"* under|strong=\"G5259\"* authority|strong=\"G1849\"*, having|strong=\"G2192\"* under|strong=\"G5259\"* myself|strong=\"G1683\"* soldiers|strong=\"G4757\"*. I|strong=\"G1473\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* one|strong=\"G3588\"*, ‘Go|strong=\"G4198\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G4198\"*; and|strong=\"G2532\"* tell|strong=\"G3004\"* another|strong=\"G3588\"*, ‘Come|strong=\"G2064\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*; and|strong=\"G2532\"* tell|strong=\"G3004\"* my|strong=\"G1473\"* servant|strong=\"G1401\"*, ‘Do|strong=\"G4160\"* this|strong=\"G3778\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* does|strong=\"G4160\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* marveled|strong=\"G2296\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G2532\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w great|strong=\"G5118\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*, \\+w not|strong=\"G3761\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* east \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* sit down \\+w with|strong=\"G3326\"\\+w* Abraham, \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w thrown|strong=\"G1544\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* centurion|strong=\"G1543\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G1722\"\\+w*. \\+w Let|strong=\"G1096\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*.”* His|strong=\"G1722\"* servant|strong=\"G3816\"* was|strong=\"G1096\"* healed|strong=\"G2390\"* in|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Peter|strong=\"G4074\"*’s house|strong=\"G3614\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G1519\"* wife’s mother lying sick with|strong=\"G2532\"* a|strong=\"G2532\"* fever|strong=\"G4445\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* touched her|strong=\"G1438\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fever|strong=\"G4446\"* left her|strong=\"G1438\"*. So|strong=\"G2532\"* she|strong=\"G2532\"* got|strong=\"G1453\"* up|strong=\"G1453\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*.+ 8:15 TR reads “them” instead of “him”*" + }, + { + "verseNum": 16, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* came|strong=\"G1096\"*, they|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"* many|strong=\"G4183\"* possessed|strong=\"G2192\"* with|strong=\"G2532\"* demons. He|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* spirits|strong=\"G4151\"* with|strong=\"G2532\"* a|strong=\"G2192\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* healed|strong=\"G2323\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G3588\"* it|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* took|strong=\"G2983\"* our|strong=\"G2532\"* infirmities|strong=\"G3554\"* and|strong=\"G2532\"* bore our|strong=\"G2532\"* diseases|strong=\"G3554\"*.”+ 8:17 Isaiah 53:4 *" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* gave|strong=\"G2753\"* the|strong=\"G1519\"* order|strong=\"G2753\"* to|strong=\"G1519\"* depart to|strong=\"G1519\"* the|strong=\"G1519\"* other|strong=\"G4008\"* side|strong=\"G4008\"*." + }, + { + "verseNum": 19, + "text": "A|strong=\"G2532\"* scribe|strong=\"G1122\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G2532\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* follow you|strong=\"G4771\"* wherever|strong=\"G3699\"* you|strong=\"G4771\"* go|strong=\"G2532\"*.”" + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* foxes \\+w have|strong=\"G2192\"\\+w* \\+w holes|strong=\"G5454\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nests|strong=\"G2682\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w nowhere|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2827\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w head|strong=\"G2776\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Another|strong=\"G2087\"* of|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, allow|strong=\"G2010\"* me|strong=\"G1473\"* first|strong=\"G4413\"* to|strong=\"G2532\"* go|strong=\"G2010\"* and|strong=\"G2532\"* bury|strong=\"G2290\"* my|strong=\"G1473\"* father|strong=\"G3962\"*.”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* leave \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w bury|strong=\"G2290\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* got|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G1096\"* violent storm|strong=\"G4578\"* came|strong=\"G1096\"* up|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, so|strong=\"G2532\"* much|strong=\"G3173\"* that|strong=\"G3588\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* covered|strong=\"G2572\"* with|strong=\"G1722\"* the|strong=\"G1722\"* waves|strong=\"G2949\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1096\"* asleep|strong=\"G2518\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G2532\"* disciples came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G2532\"* and|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G2532\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Save|strong=\"G4982\"* us|strong=\"G3004\"*, Lord|strong=\"G2962\"*! We|strong=\"G2532\"* are|strong=\"G2532\"* dying!”" + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w fearful|strong=\"G1169\"\\+w*, O \\+w you|strong=\"G3004\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*?” * Then|strong=\"G2532\"* he|strong=\"G2532\"* got|strong=\"G1453\"* up|strong=\"G1453\"*, rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* great|strong=\"G3173\"* calm|strong=\"G1055\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"G2532\"* men|strong=\"G3778\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “What|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G2532\"* man|strong=\"G3778\"* is|strong=\"G1510\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, into|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Gergesenes,+ 8:28 NU reads “Gadarenes”* two|strong=\"G1417\"* people|strong=\"G3361\"* possessed by|strong=\"G1223\"* demons met|strong=\"G5221\"* him|strong=\"G3588\"* there|strong=\"G2532\"*, coming|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tombs|strong=\"G3419\"*, exceedingly|strong=\"G3029\"* fierce|strong=\"G5467\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* nobody could|strong=\"G2480\"* pass|strong=\"G3928\"* that|strong=\"G3588\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"G2400\"*, they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G3004\"*, Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* here|strong=\"G5602\"* to|strong=\"G2532\"* torment us|strong=\"G3004\"* before|strong=\"G4253\"* the|strong=\"G2532\"* time|strong=\"G2540\"*?”" + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1510\"* herd of|strong=\"G4183\"* many|strong=\"G4183\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"* far|strong=\"G3112\"* away|strong=\"G3112\"* from|strong=\"G1510\"* them|strong=\"G4183\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"G1519\"* demons|strong=\"G1142\"* begged|strong=\"G3870\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* cast|strong=\"G1544\"* us|strong=\"G3004\"* out|strong=\"G1544\"*, permit us|strong=\"G3004\"* to|strong=\"G1519\"* go|strong=\"G1519\"* away|strong=\"G1544\"* into|strong=\"G1519\"* the|strong=\"G1519\"* herd of|strong=\"G3588\"* pigs|strong=\"G5519\"*.”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*!”*" + }, + { + "verseNum": 33, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* fed|strong=\"G1006\"* them|strong=\"G3588\"* fled|strong=\"G5343\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away|strong=\"G5343\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* told everything|strong=\"G3956\"*, including|strong=\"G2532\"* what|strong=\"G3588\"* happened|strong=\"G3588\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* possessed with|strong=\"G2532\"* demons." + }, + { + "verseNum": 34, + "text": "Behold|strong=\"G2400\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* city|strong=\"G4172\"* came|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* meet|strong=\"G5222\"* Jesus|strong=\"G2424\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* begged|strong=\"G3870\"* that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G2532\"* depart|strong=\"G1831\"* from|strong=\"G2532\"* their|strong=\"G2532\"* borders|strong=\"G3725\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1276\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, they|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"* a|strong=\"G2532\"* man who|strong=\"G3588\"* was|strong=\"G3588\"* paralyzed|strong=\"G3885\"*, lying on|strong=\"G1909\"* a|strong=\"G2532\"* bed|strong=\"G2825\"*. Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*, “\\+w Son|strong=\"G5043\"\\+w*, cheer \\+w up|strong=\"G4374\"\\+w*! \\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"G2400\"*, some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* said|strong=\"G3004\"* to|strong=\"G2532\"* themselves|strong=\"G1438\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* blasphemes.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"*, knowing their|strong=\"G2532\"* thoughts|strong=\"G1761\"*, said|strong=\"G3004\"*, “\\+w Why|strong=\"G2444\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1760\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven;’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G1519\"\\+w* forgive sins—”* (then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*), “\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2192\"\\+w* mat, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w house|strong=\"G3624\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* given|strong=\"G1325\"* such|strong=\"G5108\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* men|strong=\"G5108\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* Jesus|strong=\"G2424\"* passed|strong=\"G2424\"* by|strong=\"G1909\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* man called|strong=\"G3004\"* Matthew|strong=\"G3156\"* sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5058\"* collection office. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”* He|strong=\"G2532\"* got up|strong=\"G2532\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"*, behold|strong=\"G2400\"*, many|strong=\"G4183\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners came|strong=\"G2064\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* down with|strong=\"G1722\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, “Why|strong=\"G5101\"* does|strong=\"G2068\"* your|strong=\"G1223\"* teacher|strong=\"G1320\"* eat|strong=\"G2068\"* with|strong=\"G3326\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G3004\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w healthy|strong=\"G2480\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w* \\+w do|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G1510\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w this|strong=\"G2532\"\\+w* \\+w means|strong=\"G1510\"\\+w*: ‘\\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w sacrifice|strong=\"G2378\"\\+w*,’*+ 9:13 Hosea 6:6* \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1161\"\\+w* sinners \\+w to|strong=\"G2532\"\\+w* repentance.”*+ 9:13 NU omits “to repentance”.*" + }, + { + "verseNum": 14, + "text": "Then|strong=\"G2532\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* fast|strong=\"G3522\"* often|strong=\"G4183\"*, but|strong=\"G1161\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* don’t|strong=\"G3588\"* fast|strong=\"G3522\"*?”" + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G2532\"\\+w* friends \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w mourn|strong=\"G3996\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w long|strong=\"G2250\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? \\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* taken \\+w away|strong=\"G3326\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fast|strong=\"G3522\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w puts|strong=\"G1911\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w of|strong=\"G2532\"\\+w* unshrunk \\+w cloth|strong=\"G4470\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w patch|strong=\"G1915\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w tear|strong=\"G4978\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* hole \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w people|strong=\"G3761\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w would|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spilled|strong=\"G1632\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins ruined. \\+w No|strong=\"G3361\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins, \\+w and|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w preserved|strong=\"G4933\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* told|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, behold|strong=\"G2400\"*, a|strong=\"G2532\"* ruler came|strong=\"G2064\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “My|strong=\"G3708\"* daughter|strong=\"G2364\"* has|strong=\"G3778\"* just|strong=\"G2532\"* died|strong=\"G5053\"*, but|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* lay|strong=\"G2007\"* your|strong=\"G2532\"* hand|strong=\"G5495\"* on|strong=\"G1909\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* will|strong=\"G2532\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* got|strong=\"G1453\"* up|strong=\"G1453\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"*, as|strong=\"G2532\"* did|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* a|strong=\"G2532\"* discharge of|strong=\"G2532\"* blood for|strong=\"G2532\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* came|strong=\"G4334\"* behind|strong=\"G3693\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* touched the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 9:20 or, tassel* of|strong=\"G2532\"* his|strong=\"G3708\"* garment|strong=\"G2440\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"G1063\"* she|strong=\"G1437\"* said|strong=\"G3004\"* within|strong=\"G1722\"* herself|strong=\"G1438\"*, “If|strong=\"G1437\"* I|strong=\"G1063\"* just|strong=\"G3440\"* touch his|strong=\"G1438\"* garment|strong=\"G2440\"*, I|strong=\"G1063\"* will|strong=\"G3004\"* be|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*.”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, turning|strong=\"G4762\"* around and|strong=\"G2532\"* seeing|strong=\"G3708\"* her|strong=\"G1438\"*, said|strong=\"G3004\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, cheer \\+w up|strong=\"G2532\"\\+w*! \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*.”* And|strong=\"G2532\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* was|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* ruler’s house|strong=\"G3614\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* flute players and|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* in|strong=\"G1519\"* noisy|strong=\"G2350\"* disorder|strong=\"G2350\"*," + }, + { + "verseNum": 24, + "text": "he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Make|strong=\"G2532\"\\+w* room, \\+w because|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w girl|strong=\"G2877\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* dead, \\+w but|strong=\"G2532\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* was|strong=\"G3588\"* sent|strong=\"G1544\"* out|strong=\"G1544\"*, he|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, took|strong=\"G2902\"* her|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* girl|strong=\"G2877\"* arose|strong=\"G1453\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* report of|strong=\"G2532\"* this|strong=\"G3778\"* went|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* all|strong=\"G3650\"* that|strong=\"G3588\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"G2532\"* Jesus|strong=\"G2424\"* passed|strong=\"G2424\"* by|strong=\"G2532\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, two|strong=\"G1417\"* blind|strong=\"G5185\"* men|strong=\"G5185\"* followed him|strong=\"G3588\"*, calling|strong=\"G3004\"* out|strong=\"G2896\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, the|strong=\"G2532\"* blind|strong=\"G5185\"* men|strong=\"G3778\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G4160\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 29, + "text": "Then|strong=\"G5119\"* he|strong=\"G3588\"* touched|strong=\"G5119\"* their|strong=\"G2596\"* eyes|strong=\"G3788\"*, saying|strong=\"G3004\"*, “\\+w According|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w it|strong=\"G5119\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "Then|strong=\"G2532\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened. Jesus|strong=\"G2424\"* strictly commanded them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w about|strong=\"G2424\"\\+w* \\+w this|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* spread|strong=\"G1831\"* abroad|strong=\"G1831\"* his|strong=\"G1722\"* fame|strong=\"G1310\"* in|strong=\"G1722\"* all|strong=\"G3650\"* that|strong=\"G3588\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, behold|strong=\"G2400\"*, a|strong=\"G3708\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* who|strong=\"G2974\"* was|strong=\"G1161\"* demon possessed was|strong=\"G1161\"* brought|strong=\"G4374\"* to|strong=\"G1161\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* demon|strong=\"G1140\"* was|strong=\"G3588\"* cast|strong=\"G1544\"* out|strong=\"G1544\"*, the|strong=\"G1722\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* spoke|strong=\"G2980\"*. The|strong=\"G1722\"* multitudes|strong=\"G3793\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “Nothing|strong=\"G3763\"* like|strong=\"G3779\"* this|strong=\"G3588\"* has|strong=\"G2532\"* ever|strong=\"G3763\"* been|strong=\"G2532\"* seen|strong=\"G5316\"* in|strong=\"G1722\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"*, “By|strong=\"G1722\"* the|strong=\"G1722\"* prince of|strong=\"G1722\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*, he|strong=\"G1161\"* casts|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G2424\"* about|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* the|strong=\"G1722\"* villages|strong=\"G2968\"*, teaching|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"* and|strong=\"G2532\"* preaching|strong=\"G2784\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom, and|strong=\"G2532\"* healing|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G3956\"*." + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"* for|strong=\"G3754\"* them|strong=\"G3588\"* because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* harassed+ 9:36 TR reads “weary” instead of “harassed” * and|strong=\"G2532\"* scattered|strong=\"G3588\"*, like|strong=\"G5616\"* sheep|strong=\"G4263\"* without|strong=\"G3361\"* a|strong=\"G2192\"* shepherd|strong=\"G4166\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"G5119\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w plentiful|strong=\"G4183\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w few|strong=\"G3641\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w Pray|strong=\"G1189\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w send|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G2532\"* himself his|strong=\"G3956\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* authority|strong=\"G1849\"* over|strong=\"G1849\"* unclean spirits|strong=\"G4151\"*, to|strong=\"G2532\"* cast|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* heal|strong=\"G2323\"* every|strong=\"G3956\"* disease|strong=\"G3119\"* and|strong=\"G2532\"* every|strong=\"G3956\"* sickness|strong=\"G3119\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* names|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* apostles are|strong=\"G1510\"* these|strong=\"G3778\"*. The|strong=\"G2532\"* first|strong=\"G4413\"*, Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*; Andrew, his|strong=\"G2532\"* brother; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*; John|strong=\"G2491\"*, his|strong=\"G2532\"* brother;" + }, + { + "verseNum": 3, + "text": "Philip|strong=\"G5376\"*; Bartholomew; Thomas|strong=\"G2381\"*; Matthew|strong=\"G3156\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collector|strong=\"G5057\"*; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Lebbaeus|strong=\"G3002\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G3588\"*+ 10:3 NU omits “Lebbaeus, who was also called”* Thaddaeus|strong=\"G2280\"*;" + }, + { + "verseNum": 4, + "text": "Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot|strong=\"G2581\"*; and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* also|strong=\"G2532\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* sent|strong=\"G2532\"* these|strong=\"G3778\"* twelve|strong=\"G1427\"* out|strong=\"G2532\"* and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Samaritans|strong=\"G4541\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Rather|strong=\"G3123\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* lost \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w As|strong=\"G1161\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w go|strong=\"G4198\"\\+w*, \\+w preach|strong=\"G2784\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G1161\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1161\"\\+w* \\+w hand|strong=\"G1448\"\\+w*!’ *" + }, + { + "verseNum": 8, + "text": "\\+w Heal|strong=\"G2323\"\\+w* \\+w the|strong=\"G2983\"\\+w* sick, \\+w cleanse|strong=\"G2511\"\\+w* \\+w the|strong=\"G2983\"\\+w* \\+w lepers|strong=\"G3015\"\\+w*,*+ 10:8 TR adds “raise the dead,”* \\+w and|strong=\"G2983\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*. \\+w Freely|strong=\"G1432\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w received|strong=\"G2983\"\\+w*, so \\+w freely|strong=\"G1432\"\\+w* \\+w give|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w take|strong=\"G2932\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w gold|strong=\"G5557\"\\+w*, silver, \\+w or|strong=\"G3366\"\\+w* \\+w brass|strong=\"G5475\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w money|strong=\"G5475\"\\+w* \\+w belts|strong=\"G2223\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Take \\+w no|strong=\"G3361\"\\+w* \\+w bag|strong=\"G4082\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w journey|strong=\"G3598\"\\+w*, \\+w neither|strong=\"G3366\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w coats|strong=\"G5509\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w staff|strong=\"G4464\"\\+w*: \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G3598\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w food|strong=\"G5160\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, find \\+w out|strong=\"G1831\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* worthy, \\+w and|strong=\"G1161\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w on|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w As|strong=\"G1519\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w household|strong=\"G3614\"\\+w*, greet \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w household|strong=\"G3614\"\\+w* \\+w is|strong=\"G1510\"\\+w* worthy, \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w it|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy, \\+w let|strong=\"G1161\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w or|strong=\"G2228\"\\+w* hear \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w*, \\+w as|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w shake|strong=\"G1621\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w off|strong=\"G1621\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Gomorrah|strong=\"G1116\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w wolves|strong=\"G3074\"\\+w*. \\+w Therefore|strong=\"G3767\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w serpents|strong=\"G3789\"\\+w* \\+w and|strong=\"G2532\"\\+w* harmless \\+w as|strong=\"G5613\"\\+w* \\+w doves|strong=\"G4058\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w councils|strong=\"G4892\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Yes|strong=\"G1161\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w governors|strong=\"G2232\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“Brother \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* brother \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w child|strong=\"G5043\"\\+w*. \\+w Children|strong=\"G5043\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1881\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w parents|strong=\"G1118\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w them|strong=\"G1438\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w flee|strong=\"G5343\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w next|strong=\"G2087\"\\+w*, \\+w for|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G5210\"\\+w* gone \\+w through|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w cities|strong=\"G4172\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w come|strong=\"G2064\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w A|strong=\"G1510\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G5228\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G5228\"\\+w* \\+w lord|strong=\"G2962\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* enough \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w called|strong=\"G1941\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w* Beelzebul,*+ 10:25 Literally, Lord of the Flies, or the devil* \\+w how|strong=\"G5613\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w household|strong=\"G3615\"\\+w*! *" + }, + { + "verseNum": 26, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G1438\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w covered|strong=\"G2572\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* revealed, \\+w or|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w known|strong=\"G1097\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*, \\+w speak|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear whispered \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w proclaim|strong=\"G2784\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetops|strong=\"G1430\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* kill \\+w the|strong=\"G1722\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill \\+w the|strong=\"G1722\"\\+w* \\+w soul|strong=\"G5590\"\\+w*. \\+w Rather|strong=\"G3123\"\\+w*, \\+w fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* destroy \\+w both|strong=\"G2532\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w in|strong=\"G1722\"\\+w* Gehenna.*+ 10:28 or, Hell.*" + }, + { + "verseNum": 29, + "text": "“Aren’\\+w t|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w* \\+w sold|strong=\"G4453\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* assarion coin?*+ 10:29 An assarion is a small coin worth one tenth of a drachma or a sixteenth of a denarius. An assarion is approximately the wages of one half hour of agricultural labor.* \\+w Not|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ground|strong=\"G1093\"\\+w* apart \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w will|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w hairs|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w all|strong=\"G3956\"\\+w* numbered. *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* don’t \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G4183\"\\+w* \\+w of|strong=\"G5399\"\\+w* \\+w more|strong=\"G4183\"\\+w* value \\+w than|strong=\"G4183\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w confesses|strong=\"G3670\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3956\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* denies \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1909\"\\+w* send \\+w peace|strong=\"G1515\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1909\"\\+w* send \\+w peace|strong=\"G1515\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w set|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w at|strong=\"G2596\"\\+w* odds \\+w against|strong=\"G2596\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w her|strong=\"G2596\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w her|strong=\"G2596\"\\+w* \\+w mother-in-law|strong=\"G3994\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w A|strong=\"G2532\"\\+w* man’s \\+w foes|strong=\"G2190\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* own \\+w household|strong=\"G3615\"\\+w*.*+ 10:36 Micah 7:6*" + }, + { + "verseNum": 37, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w more|strong=\"G5228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* worthy \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w more|strong=\"G5228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w me|strong=\"G1473\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w cross|strong=\"G4716\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* seeks \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2532\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* loses \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*’s \\+w reward|strong=\"G3408\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w man|strong=\"G1342\"\\+w*’s \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w gives|strong=\"G4222\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w just|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w water|strong=\"G4222\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w drink|strong=\"G4222\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*, most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3739\"\\+w* lose \\+w his|strong=\"G1519\"\\+w* \\+w reward|strong=\"G3408\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* directing his|strong=\"G1722\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* departed|strong=\"G3327\"* from|strong=\"G2532\"* there|strong=\"G2532\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* and|strong=\"G2532\"* preach|strong=\"G2784\"* in|strong=\"G1722\"* their|strong=\"G2532\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* John|strong=\"G2491\"* heard in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G1201\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, he|strong=\"G1161\"* sent|strong=\"G3992\"* two of|strong=\"G1223\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2064\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* he|strong=\"G3588\"* who|strong=\"G3588\"* comes|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G3588\"* we|strong=\"G1510\"* look|strong=\"G4328\"* for|strong=\"G4328\"* another|strong=\"G2087\"*?”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear \\+w and|strong=\"G2532\"\\+w* see: *" + }, + { + "verseNum": 5, + "text": "\\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* receive \\+w their|strong=\"G2532\"\\+w* sight, \\+w the|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* hear,*+ 11:5 Isaiah 35:5* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w preached|strong=\"G2097\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G2532\"\\+w*.*+ 11:5 Isaiah 61:1-4*" + }, + { + "verseNum": 6, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* finds \\+w no|strong=\"G3361\"\\+w* occasion \\+w for|strong=\"G1722\"\\+w* \\+w stumbling|strong=\"G4624\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "As|strong=\"G1519\"* these|strong=\"G3778\"* went|strong=\"G1831\"* their|strong=\"G4012\"* way|strong=\"G4198\"*, Jesus|strong=\"G2424\"* began|strong=\"G1161\"* to|strong=\"G1519\"* say|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* multitudes|strong=\"G3793\"* concerning|strong=\"G4012\"* John|strong=\"G2491\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w see|strong=\"G2300\"\\+w*? \\+w A|strong=\"G1519\"\\+w* \\+w reed|strong=\"G2563\"\\+w* \\+w shaken|strong=\"G4531\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G1519\"\\+w* wind? *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G1722\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w soft|strong=\"G3120\"\\+w* clothing? \\+w Behold|strong=\"G2400\"\\+w*, \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w wear|strong=\"G5409\"\\+w* \\+w soft|strong=\"G3120\"\\+w* clothing \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w kings|strong=\"G3588\"\\+w*’ \\+w houses|strong=\"G3624\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w why|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*? \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* much \\+w more|strong=\"G2532\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3739\"\\+w*, \\+w of|strong=\"G4012\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w my|strong=\"G3708\"\\+w* messenger \\+w before|strong=\"G4253\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w face|strong=\"G4383\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w prepare|strong=\"G2680\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w you|strong=\"G4771\"\\+w*.’*+ 11:10 Malachi 3:1 *" + }, + { + "verseNum": 11, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w born|strong=\"G1084\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w women|strong=\"G1135\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w has|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w arisen|strong=\"G1453\"\\+w* anyone \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G1722\"\\+w* Baptizer; \\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w From|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* Baptizer \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2250\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* suffers violence, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* violent \\+w take|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* force.*+ 11:12 or, plunder it. *" + }, + { + "verseNum": 13, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w prophesied|strong=\"G4395\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w John|strong=\"G2491\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w willing|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2192\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.*" + }, + { + "verseNum": 16, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*? \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w who|strong=\"G3739\"\\+w* \\+w call|strong=\"G4377\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w companions|strong=\"G3588\"\\+w* *" + }, + { + "verseNum": 17, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2532\"\\+w* played \\+w the|strong=\"G2532\"\\+w* flute \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’t \\+w dance|strong=\"G3738\"\\+w*. \\+w We|strong=\"G2532\"\\+w* mourned \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’t \\+w lament|strong=\"G2875\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w neither|strong=\"G3383\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w nor|strong=\"G3383\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w gluttonous|strong=\"G5314\"\\+w* \\+w man|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drunkard|strong=\"G3630\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinners!’ \\+w But|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w by|strong=\"G1344\"\\+w* \\+w her|strong=\"G3708\"\\+w* \\+w children|strong=\"G5207\"\\+w*.”*+ 11:19 NU reads “actions” instead of “children”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G5119\"* he|strong=\"G3739\"* began|strong=\"G1096\"* to|strong=\"G1722\"* denounce|strong=\"G3679\"* the|strong=\"G1722\"* cities|strong=\"G4172\"* in|strong=\"G1722\"* which|strong=\"G3739\"* most|strong=\"G4183\"* of|strong=\"G1411\"* his|strong=\"G1722\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* had|strong=\"G3739\"* been|strong=\"G1096\"* done|strong=\"G1096\"*, because|strong=\"G3754\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"*." + }, + { + "verseNum": 21, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w Chorazin|strong=\"G5523\"\\+w*! \\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, Bethsaida! \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w long|strong=\"G3819\"\\+w* \\+w ago|strong=\"G3819\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sackcloth|strong=\"G4526\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ashes|strong=\"G4700\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w You|strong=\"G4771\"\\+w*, \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w exalted|strong=\"G5312\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G2532\"\\+w* Hades. *+ 11:23 or, Hell* \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w remained|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w today|strong=\"G4594\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G4133\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* more tolerable \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "At|strong=\"G1722\"* that|strong=\"G3754\"* time|strong=\"G2540\"*, Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G1843\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G4680\"\\+w* \\+w and|strong=\"G2532\"\\+w* understanding, \\+w and|strong=\"G2532\"\\+w* revealed \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w infants|strong=\"G3516\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Yes|strong=\"G3483\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w well-pleasing|strong=\"G2107\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w sight|strong=\"G1715\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w knows|strong=\"G1921\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w neither|strong=\"G3761\"\\+w* \\+w does|strong=\"G3761\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w know|strong=\"G1921\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w desires|strong=\"G1014\"\\+w* \\+w to|strong=\"G2532\"\\+w* reveal \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w Come|strong=\"G1205\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w labor|strong=\"G2872\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* heavily \\+w burdened|strong=\"G5412\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* rest. *" + }, + { + "verseNum": 29, + "text": "\\+w Take|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w yoke|strong=\"G2218\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w gentle|strong=\"G4239\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w humble|strong=\"G5011\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w heart|strong=\"G2588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w rest|strong=\"G1510\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w souls|strong=\"G5590\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w yoke|strong=\"G2218\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easy|strong=\"G5543\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w burden|strong=\"G5413\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w light|strong=\"G1645\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"G1722\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, Jesus|strong=\"G2424\"* went|strong=\"G4198\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*. His|strong=\"G1223\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* hungry|strong=\"G3983\"* and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* pluck|strong=\"G5089\"* heads|strong=\"G4719\"* of|strong=\"G1223\"* grain|strong=\"G4719\"* and|strong=\"G2532\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G3708\"* disciples|strong=\"G3101\"* do|strong=\"G4160\"* what|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* do|strong=\"G4160\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* read \\+w what|strong=\"G5101\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*: *" + }, + { + "verseNum": 4, + "text": "\\+w how|strong=\"G4459\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* show bread, \\+w which|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w*?*+ 12:4 1 Samuel 21:3-6*" + }, + { + "verseNum": 5, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w not|strong=\"G3756\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w priests|strong=\"G2409\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w profane|strong=\"G2228\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* guiltless? *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w means|strong=\"G1510\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w sacrifice|strong=\"G2378\"\\+w*,’*+ 12:7 Hosea 6:6* \\+w you|strong=\"G1487\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w condemned|strong=\"G2613\"\\+w* \\+w the|strong=\"G2532\"\\+w* guiltless. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* departed|strong=\"G3327\"* from|strong=\"G2064\"* there|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* their|strong=\"G2532\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 10, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2192\"* man with|strong=\"G2532\"* a|strong=\"G2192\"* withered|strong=\"G3584\"* hand|strong=\"G5495\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* to|strong=\"G2443\"* heal|strong=\"G2323\"* on|strong=\"G5495\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?” so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w falls|strong=\"G1510\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w pit|strong=\"G2532\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w*, won’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* grab \\+w on|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lift|strong=\"G1453\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G1537\"\\+w*? *" + }, + { + "verseNum": 12, + "text": "\\+w Of|strong=\"G3588\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G1308\"\\+w* value \\+w then|strong=\"G3767\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w man|strong=\"G4160\"\\+w* \\+w than|strong=\"G1308\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*! \\+w Therefore|strong=\"G3767\"\\+w* \\+w it|strong=\"G4160\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1832\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G2573\"\\+w* \\+w on|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* man, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.”* He|strong=\"G2532\"* stretched|strong=\"G1614\"* it|strong=\"G2532\"* out|strong=\"G2532\"*; and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* restored|strong=\"G5199\"* whole|strong=\"G5199\"*, just|strong=\"G5613\"* like|strong=\"G5613\"* the|strong=\"G2532\"* other|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* conspired|strong=\"G4824\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, how|strong=\"G3704\"* they|strong=\"G1161\"* might destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1097\"* that|strong=\"G3588\"*, withdrew|strong=\"G2424\"* from|strong=\"G2532\"* there|strong=\"G2532\"*. Great|strong=\"G4183\"* multitudes|strong=\"G4183\"* followed him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* commanded|strong=\"G2008\"* them|strong=\"G4160\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* not|strong=\"G3361\"* make|strong=\"G4160\"* him|strong=\"G4160\"* known|strong=\"G5318\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* it|strong=\"G1223\"* might be|strong=\"G2443\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 18, + "text": "“Behold|strong=\"G2400\"*, my|strong=\"G3708\"* servant|strong=\"G3816\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2532\"* chosen|strong=\"G2106\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"G3588\"* will|strong=\"G5100\"* not|strong=\"G3756\"* strive|strong=\"G2051\"*, nor|strong=\"G3761\"* shout|strong=\"G2905\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* won’t|strong=\"G3588\"* break|strong=\"G2608\"* a|strong=\"G2532\"* bruised|strong=\"G4937\"* reed|strong=\"G2563\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"G2532\"* his|strong=\"G2532\"* name|strong=\"G3686\"*, the|strong=\"G2532\"* nations|strong=\"G1484\"* will|strong=\"G2532\"* hope|strong=\"G1679\"*.”+ 12:21 Isaiah 42:1-4*" + }, + { + "verseNum": 22, + "text": "Then|strong=\"G2532\"* one|strong=\"G3588\"* possessed by|strong=\"G2532\"* a|strong=\"G2532\"* demon, blind|strong=\"G5185\"* and|strong=\"G2532\"* mute|strong=\"G2974\"*, was|strong=\"G3588\"* brought|strong=\"G4374\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* and|strong=\"G2532\"* mute|strong=\"G2974\"* man|strong=\"G5185\"* both|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* saw." + }, + { + "verseNum": 23, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*?”" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* heard it|strong=\"G1161\"*, they|strong=\"G1161\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* does|strong=\"G3004\"* not|strong=\"G3756\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* except|strong=\"G1487\"* by|strong=\"G1722\"* Beelzebul, the|strong=\"G1722\"* prince of|strong=\"G1722\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 25, + "text": "Knowing|strong=\"G1492\"* their|strong=\"G1438\"* thoughts|strong=\"G1761\"*, Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Every|strong=\"G3956\"\\+w* kingdom \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* desolation, \\+w and|strong=\"G2532\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w casts|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* kingdom \\+w stand|strong=\"G2476\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w by|strong=\"G1223\"\\+w* Beelzebul \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*? \\+w Therefore|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w judges|strong=\"G2923\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G5348\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w goods|strong=\"G4632\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G5100\"\\+w*? \\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*.*" + }, + { + "verseNum": 30, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w scatters|strong=\"G4650\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w every|strong=\"G3956\"\\+w* sin \\+w and|strong=\"G2532\"\\+w* blasphemy \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w men|strong=\"G3956\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* blasphemy \\+w against|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w men|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w him|strong=\"G3588\"\\+w*, \\+w either|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* age, \\+w or|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G3195\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w Either|strong=\"G2228\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w corrupt|strong=\"G4550\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w offspring|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w vipers|strong=\"G2191\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G1510\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w speak|strong=\"G2980\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w abundance|strong=\"G4051\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w speaks|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w man|strong=\"G4190\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w treasure|strong=\"G2344\"\\+w**+ 12:35 TR adds “of the heart”* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w man|strong=\"G4190\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w things|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w every|strong=\"G3956\"\\+w* idle \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G3004\"\\+w* \\+w account|strong=\"G3056\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w justified|strong=\"G1344\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w condemned|strong=\"G2613\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* certain|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* Pharisees|strong=\"G5330\"* answered|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w An|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w seeks|strong=\"G1934\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w nights|strong=\"G3571\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* huge fish, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G2588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w nights|strong=\"G3571\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Nineveh|strong=\"G3536\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w preaching|strong=\"G2782\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, someone \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w The|strong=\"G1722\"\\+w* Queen \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w South|strong=\"G3558\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ends|strong=\"G4009\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, someone \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w an|strong=\"G2532\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3756\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w passes|strong=\"G1330\"\\+w* \\+w through|strong=\"G1223\"\\+w* waterless \\+w places|strong=\"G5117\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* rest, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w*;’ \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2064\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w back|strong=\"G1994\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w empty|strong=\"G4980\"\\+w*, \\+w swept|strong=\"G4563\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w order|strong=\"G2885\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w takes|strong=\"G3880\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w there|strong=\"G1563\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* state \\+w of|strong=\"G4151\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*. \\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.”*" + }, + { + "verseNum": 46, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* yet|strong=\"G2089\"* speaking|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, behold|strong=\"G2400\"*, his|strong=\"G3708\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* his|strong=\"G3708\"* brothers stood|strong=\"G2476\"* outside|strong=\"G1854\"*, seeking|strong=\"G2212\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 47, + "text": "One|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* your|strong=\"G2532\"* brothers stand|strong=\"G2476\"* outside|strong=\"G1854\"*, seeking|strong=\"G2212\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 48, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"* who|strong=\"G5101\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w*? \\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers?”*" + }, + { + "verseNum": 49, + "text": "He|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* toward|strong=\"G1909\"* his|strong=\"G1909\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w my|strong=\"G3708\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers! *" + }, + { + "verseNum": 50, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1722\"\\+w* brother, \\+w and|strong=\"G2532\"\\+w* sister, \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"* Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* house|strong=\"G3614\"* and|strong=\"G2250\"* sat|strong=\"G2521\"* by|strong=\"G1722\"* the|strong=\"G1722\"* seaside." + }, + { + "verseNum": 2, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* sat|strong=\"G2521\"*; and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* beach." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* many|strong=\"G4183\"* things|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, saying|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* seeds \\+w fell|strong=\"G4098\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* roadside, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w soil|strong=\"G1093\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w sprang|strong=\"G1816\"\\+w* \\+w up|strong=\"G3361\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* depth \\+w of|strong=\"G1223\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w scorched|strong=\"G2739\"\\+w*. \\+w Because|strong=\"G1223\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w root|strong=\"G4491\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1909\"\\+w* thorns. \\+w The|strong=\"G2532\"\\+w* thorns grew \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w choked|strong=\"G4155\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w soil|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*: \\+w some|strong=\"G3739\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1161\"\\+w* much, \\+w some|strong=\"G3739\"\\+w* \\+w sixty|strong=\"G1835\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w thirty|strong=\"G5144\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2192\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.”*" + }, + { + "verseNum": 10, + "text": "The|strong=\"G1722\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1722\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w To|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w mysteries|strong=\"G3466\"\\+w* \\+w of|strong=\"G3466\"\\+w* \\+w the|strong=\"G1161\"\\+w* Kingdom \\+w of|strong=\"G3466\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G1722\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w seeing|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’t see, \\+w and|strong=\"G2532\"\\+w* hearing, \\+w they|strong=\"G2532\"\\+w* don’t hear, \\+w neither|strong=\"G3761\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w In|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophecy|strong=\"G4394\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w is|strong=\"G3588\"\\+w* fulfilled, \\+w which|strong=\"G3588\"\\+w* \\+w says|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w*’s \\+w heart|strong=\"G2588\"\\+w* \\+w has|strong=\"G3778\"\\+w* grown callous,*" + }, + { + "verseNum": 16, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* see; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* hear. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w most|strong=\"G4183\"\\+w* \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w men|strong=\"G1342\"\\+w* \\+w desired|strong=\"G1937\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t \\+w see|strong=\"G3708\"\\+w* \\+w them|strong=\"G3739\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear, \\+w and|strong=\"G2532\"\\+w* didn’t hear \\+w them|strong=\"G3739\"\\+w*.*" + }, + { + "verseNum": 18, + "text": "“Hear, \\+w then|strong=\"G3767\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* farmer. *" + }, + { + "verseNum": 19, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w anyone|strong=\"G3956\"\\+w* hears \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w understand|strong=\"G4920\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* snatches away \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* roadside. *" + }, + { + "verseNum": 20, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* places, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* endures \\+w for|strong=\"G1223\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w while|strong=\"G1722\"\\+w*. \\+w When|strong=\"G1161\"\\+w* oppression \\+w or|strong=\"G2228\"\\+w* \\+w persecution|strong=\"G1375\"\\+w* \\+w arises|strong=\"G1096\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G1161\"\\+w* stumbles. *" + }, + { + "verseNum": 22, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w this|strong=\"G3778\"\\+w* age \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* deceitfulness \\+w of|strong=\"G3056\"\\+w* \\+w riches|strong=\"G4149\"\\+w* \\+w choke|strong=\"G4846\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* unfruitful. *" + }, + { + "verseNum": 23, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* hears \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w understands|strong=\"G4920\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w who|strong=\"G3739\"\\+w* most \\+w certainly|strong=\"G1909\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w fruit|strong=\"G2592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produces|strong=\"G4160\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1161\"\\+w* much, \\+w some|strong=\"G3739\"\\+w* \\+w sixty|strong=\"G1835\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w thirty|strong=\"G5144\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G3588\"* set|strong=\"G3908\"* another|strong=\"G3588\"* parable|strong=\"G3850\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G1722\"\\+w* man \\+w who|strong=\"G3588\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* field, *" + }, + { + "verseNum": 25, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w people|strong=\"G3588\"\\+w* \\+w slept|strong=\"G2518\"\\+w*, \\+w his|strong=\"G1722\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w**+ 13:25 darnel is a weed grass (probably bearded darnel or lolium temulentum) that looks very much like wheat until it is mature, when the difference becomes very apparent.* \\+w also|strong=\"G2532\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2064\"\\+w* away. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blade|strong=\"G5528\"\\+w* sprang \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produced|strong=\"G4160\"\\+w* \\+w grain|strong=\"G2590\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w appeared|strong=\"G5316\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w householder|strong=\"G3617\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Sir|strong=\"G2962\"\\+w*, didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w sow|strong=\"G4687\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* field? \\+w Where|strong=\"G4159\"\\+w* \\+w did|strong=\"G3767\"\\+w* \\+w these|strong=\"G3588\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w come|strong=\"G4334\"\\+w* \\+w from|strong=\"G3588\"\\+w*?’*" + }, + { + "verseNum": 28, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w An|strong=\"G4160\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*.’*" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G5346\"\\+w*, ‘\\+w No|strong=\"G3756\"\\+w*, \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w while|strong=\"G1161\"\\+w* you \\+w gather|strong=\"G4816\"\\+w* \\+w up|strong=\"G4816\"\\+w* \\+w the|strong=\"G1161\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w*, you root \\+w up|strong=\"G4816\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w Let|strong=\"G1161\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w grow|strong=\"G4885\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w reapers|strong=\"G2327\"\\+w*, “\\+w First|strong=\"G4413\"\\+w*, \\+w gather|strong=\"G4863\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w the|strong=\"G1722\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w bundles|strong=\"G1197\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w burn|strong=\"G2618\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G1722\"\\+w* barn.”’”*" + }, + { + "verseNum": 31, + "text": "He|strong=\"G3739\"* set|strong=\"G3908\"* another|strong=\"G3739\"* parable|strong=\"G3850\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w took|strong=\"G2983\"\\+w*, \\+w and|strong=\"G3772\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* field, *" + }, + { + "verseNum": 32, + "text": "\\+w which|strong=\"G3739\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w smaller|strong=\"G3398\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w seeds|strong=\"G4690\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w grown|strong=\"G3173\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w herbs|strong=\"G3001\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w tree|strong=\"G1186\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w air|strong=\"G3772\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lodge|strong=\"G2681\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w branches|strong=\"G2798\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G3739\"* spoke|strong=\"G2980\"* another|strong=\"G3739\"* parable|strong=\"G3850\"* to|strong=\"G1519\"* them|strong=\"G3588\"*. “\\+w The|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G3772\"\\+w* \\+w hid|strong=\"G1470\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w measures|strong=\"G4568\"\\+w**+ 13:33 literally, three sata. Three sata is about 39 liters or a bit more than a bushel* \\+w of|strong=\"G3588\"\\+w* meal, \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w leavened|strong=\"G2220\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* in|strong=\"G1722\"* parables|strong=\"G3850\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*; and|strong=\"G2532\"* without|strong=\"G5565\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 35, + "text": "that|strong=\"G3588\"* it|strong=\"G1223\"* might|strong=\"G1473\"* be|strong=\"G3588\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G3004\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away, and|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*. His|strong=\"G1519\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Explain|strong=\"G1285\"* to|strong=\"G1519\"* us|strong=\"G3004\"* the|strong=\"G2532\"* parable|strong=\"G3850\"* of|strong=\"G2532\"* the|strong=\"G2532\"* darnel weeds|strong=\"G2215\"* of|strong=\"G2532\"* the|strong=\"G2532\"* field.”" + }, + { + "verseNum": 37, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seed|strong=\"G4690\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 38, + "text": "\\+w the|strong=\"G1161\"\\+w* field \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w seeds|strong=\"G4690\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* Kingdom, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w enemy|strong=\"G2190\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sowed|strong=\"G4687\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w devil|strong=\"G1228\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* age, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w reapers|strong=\"G2327\"\\+w* \\+w are|strong=\"G1510\"\\+w* angels. *" + }, + { + "verseNum": 40, + "text": "\\+w As|strong=\"G5618\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* darnel \\+w weeds|strong=\"G2215\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gathered|strong=\"G4816\"\\+w* \\+w up|strong=\"G2618\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w burned|strong=\"G2618\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w*; \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* age. *" + }, + { + "verseNum": 41, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* Kingdom \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w cause|strong=\"G4160\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* iniquity, *" + }, + { + "verseNum": 42, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w furnace|strong=\"G2575\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w shine|strong=\"G1584\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G3962\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1722\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.*" + }, + { + "verseNum": 44, + "text": "“\\+w Again|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field, \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w*. \\+w In|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w joy|strong=\"G5479\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sells|strong=\"G4453\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* buys \\+w that|strong=\"G3739\"\\+w* field.*" + }, + { + "verseNum": 45, + "text": "“\\+w Again|strong=\"G3825\"\\+w*, \\+w the|strong=\"G3588\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1510\"\\+w* man \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w merchant|strong=\"G1713\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* \\+w fine|strong=\"G2570\"\\+w* \\+w pearls|strong=\"G3135\"\\+w*, *" + }, + { + "verseNum": 46, + "text": "\\+w who|strong=\"G3956\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w pearl|strong=\"G3135\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w great|strong=\"G3956\"\\+w* price, \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sold|strong=\"G4097\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3956\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* bought \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 47, + "text": "“\\+w Again|strong=\"G3825\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w dragnet|strong=\"G4522\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w some|strong=\"G3588\"\\+w* fish \\+w of|strong=\"G1537\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w kind|strong=\"G3956\"\\+w*, *" + }, + { + "verseNum": 48, + "text": "\\+w which|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w filled|strong=\"G4137\"\\+w*, fishermen \\+w drew|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* beach. \\+w They|strong=\"G2532\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4816\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w into|strong=\"G1519\"\\+w* containers, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bad|strong=\"G4550\"\\+w* \\+w they|strong=\"G2532\"\\+w* threw \\+w away|strong=\"G1854\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* world.*+ 13:49 or, end of the age.* \\+w The|strong=\"G1722\"\\+w* angels \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* separate \\+w the|strong=\"G1722\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w furnace|strong=\"G2575\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w Have|strong=\"G3956\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understood|strong=\"G4920\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*?” *" + }, + { + "verseNum": 52, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Therefore|strong=\"G1223\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w scribe|strong=\"G1122\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w disciple|strong=\"G3100\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w householder|strong=\"G3617\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w things|strong=\"G3956\"\\+w*.”*" + }, + { + "verseNum": 53, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* these|strong=\"G3778\"* parables|strong=\"G3850\"*, he|strong=\"G2532\"* departed|strong=\"G3332\"* from|strong=\"G2532\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 54, + "text": "Coming|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* country|strong=\"G3968\"*, he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G1438\"* synagogue|strong=\"G4864\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Where|strong=\"G4159\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G2532\"* this|strong=\"G3778\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* these|strong=\"G3778\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"*?" + }, + { + "verseNum": 55, + "text": "Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* the|strong=\"G2532\"* carpenter|strong=\"G5045\"*’s son|strong=\"G5207\"*? Isn’t|strong=\"G3588\"* his|strong=\"G2532\"* mother|strong=\"G3384\"* called|strong=\"G3004\"* Mary|strong=\"G3137\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* brothers James|strong=\"G2385\"*, Joses, Simon|strong=\"G4613\"*, and|strong=\"G2532\"* Judas|strong=\"G2455\"*?+ 13:55 or, Judah*" + }, + { + "verseNum": 56, + "text": "Aren’t|strong=\"G3588\"* all|strong=\"G3956\"* of|strong=\"G2532\"* his|strong=\"G3956\"* sisters with|strong=\"G4314\"* us|strong=\"G2249\"*? Where|strong=\"G4159\"* then|strong=\"G3767\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*?”" + }, + { + "verseNum": 57, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* offended|strong=\"G4624\"* by|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 58, + "text": "He|strong=\"G2532\"* didn’t|strong=\"G3588\"* do|strong=\"G4160\"* many|strong=\"G4183\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* there|strong=\"G1563\"* because|strong=\"G1223\"* of|strong=\"G1223\"* their|strong=\"G2532\"* unbelief." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"G1722\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, Herod|strong=\"G2264\"* the|strong=\"G1722\"* tetrarch|strong=\"G5076\"* heard the|strong=\"G1722\"* report concerning|strong=\"G1722\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1223\"* servants|strong=\"G3816\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer. He|strong=\"G2532\"* is|strong=\"G1510\"* risen|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. That|strong=\"G3588\"* is|strong=\"G1510\"* why|strong=\"G1223\"* these|strong=\"G3778\"* powers|strong=\"G1411\"* work|strong=\"G1754\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* arrested|strong=\"G2902\"* John|strong=\"G2491\"*, bound|strong=\"G1210\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1063\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* Herodias|strong=\"G2266\"*, his|strong=\"G1223\"* brother Philip|strong=\"G5376\"*’s wife|strong=\"G1135\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* John|strong=\"G2491\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “It|strong=\"G1063\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G1063\"* you|strong=\"G4771\"* to|strong=\"G3004\"* have|strong=\"G2192\"* her|strong=\"G1438\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2192\"* put|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death, he|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* counted|strong=\"G2192\"* him|strong=\"G3588\"* as|strong=\"G5613\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"*’s birthday|strong=\"G1077\"* came|strong=\"G1096\"*, the|strong=\"G1722\"* daughter|strong=\"G2364\"* of|strong=\"G2532\"* Herodias|strong=\"G2266\"* danced|strong=\"G3738\"* among|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* pleased Herod|strong=\"G2264\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3606\"* he|strong=\"G3739\"* promised|strong=\"G3670\"* with|strong=\"G3326\"* an|strong=\"G1325\"* oath|strong=\"G3727\"* to|strong=\"G1325\"* give|strong=\"G1325\"* her|strong=\"G1437\"* whatever|strong=\"G3739\"* she|strong=\"G1437\"* should|strong=\"G1325\"* ask." + }, + { + "verseNum": 8, + "text": "She|strong=\"G1161\"*, being|strong=\"G1161\"* prompted|strong=\"G4264\"* by|strong=\"G5259\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*, said|strong=\"G5346\"*, “Give|strong=\"G1325\"* me|strong=\"G1325\"* here|strong=\"G5602\"* on|strong=\"G1909\"* a|strong=\"G1909\"* platter|strong=\"G4094\"* the|strong=\"G1161\"* head|strong=\"G2776\"* of|strong=\"G5259\"* John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* was|strong=\"G3588\"* grieved|strong=\"G3076\"*, but|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* his|strong=\"G1223\"* oaths|strong=\"G3727\"* and|strong=\"G2532\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2532\"* at|strong=\"G1223\"* the|strong=\"G2532\"* table|strong=\"G4873\"* with|strong=\"G1223\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* commanded|strong=\"G2753\"* it|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G3992\"* and|strong=\"G2532\"* beheaded John|strong=\"G2491\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"G1909\"* head|strong=\"G2776\"* was|strong=\"G3588\"* brought|strong=\"G5342\"* on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* young lady; and|strong=\"G2532\"* she|strong=\"G2532\"* brought|strong=\"G5342\"* it|strong=\"G2532\"* to|strong=\"G2532\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"*, took|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4430\"*, and|strong=\"G2532\"* buried|strong=\"G2290\"* it|strong=\"G2532\"*. Then|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2064\"* and|strong=\"G2532\"* told Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard this|strong=\"G3588\"*, he|strong=\"G2532\"* withdrew|strong=\"G2424\"* from|strong=\"G2532\"* there|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"* apart|strong=\"G2398\"*. When|strong=\"G1161\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* followed him|strong=\"G3588\"* on|strong=\"G1722\"* foot|strong=\"G3979\"* from|strong=\"G2532\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G1831\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*. He|strong=\"G2532\"* had|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* them|strong=\"G3588\"* and|strong=\"G2532\"* healed|strong=\"G2323\"* their|strong=\"G2532\"* sick." + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, his|strong=\"G1438\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “This|strong=\"G3588\"* place|strong=\"G5117\"* is|strong=\"G1510\"* deserted|strong=\"G2048\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* is|strong=\"G1510\"* already|strong=\"G2235\"* late|strong=\"G3928\"*. Send the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away|strong=\"G3928\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G3928\"* into|strong=\"G1519\"* the|strong=\"G2532\"* villages|strong=\"G2968\"*, and|strong=\"G2532\"* buy themselves|strong=\"G1438\"* food|strong=\"G1033\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w They|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w go|strong=\"G2192\"\\+w* away. \\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* something \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* only|strong=\"G1487\"* have|strong=\"G2192\"* here|strong=\"G5602\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Bring|strong=\"G5342\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* to|strong=\"G1519\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* grass|strong=\"G5528\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"*, broke|strong=\"G2806\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* the|strong=\"G2532\"* loaves to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* full|strong=\"G4134\"* of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* remained|strong=\"G4052\"* left|strong=\"G4052\"* over|strong=\"G4052\"* from|strong=\"G2532\"* the|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"*." + }, + { + "verseNum": 21, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* were|strong=\"G1510\"* about|strong=\"G5616\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*, in|strong=\"G2532\"* addition to|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G3813\"*." + }, + { + "verseNum": 22, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2532\"* made|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* get|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* go|strong=\"G4254\"* ahead|strong=\"G4254\"* of|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, while|strong=\"G2193\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away." + }, + { + "verseNum": 23, + "text": "After|strong=\"G2596\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* away, he|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* by|strong=\"G2596\"* himself|strong=\"G2398\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*. When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"* alone|strong=\"G3441\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* boat|strong=\"G4143\"* was|strong=\"G1510\"* now|strong=\"G1161\"* in|strong=\"G1161\"* the|strong=\"G1161\"* middle|strong=\"G3319\"* of|strong=\"G5259\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*, distressed by|strong=\"G5259\"* the|strong=\"G1161\"* waves|strong=\"G2949\"*, for|strong=\"G1063\"* the|strong=\"G1161\"* wind was|strong=\"G1510\"* contrary|strong=\"G1727\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"G1909\"* the|strong=\"G1161\"* fourth|strong=\"G5067\"* watch|strong=\"G5438\"* of|strong=\"G1909\"* the|strong=\"G1161\"* night|strong=\"G3571\"*,+ 14:25 The night was equally divided into four watches, so the fourth watch is approximately 3:00 a.m. to sunrise. * Jesus|strong=\"G2064\"* came|strong=\"G2064\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*.+ 14:25 See Job 9:8*" + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* troubled|strong=\"G5015\"*, saying|strong=\"G3004\"*, “It|strong=\"G2532\"*’s a|strong=\"G2532\"* ghost|strong=\"G5326\"*!” and|strong=\"G2532\"* they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* for|strong=\"G3754\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Cheer \\+w up|strong=\"G3361\"\\+w*! \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*! *+ 14:27 or, I AM!* Don’t \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G1510\"* you|strong=\"G4771\"*, command|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"* on|strong=\"G1909\"* the|strong=\"G1161\"* waters|strong=\"G5204\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Come|strong=\"G2064\"\\+w*!”*" + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* saw that|strong=\"G3588\"* the|strong=\"G2532\"* wind was|strong=\"G3588\"* strong|strong=\"G2478\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* afraid|strong=\"G5399\"*, and|strong=\"G2532\"* beginning to|strong=\"G2532\"* sink|strong=\"G2670\"*, he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, save|strong=\"G4982\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 31, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w doubt|strong=\"G1365\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* got up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, the|strong=\"G2532\"* wind ceased|strong=\"G2869\"*." + }, + { + "verseNum": 33, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* came|strong=\"G3588\"* and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “You|strong=\"G1722\"* are|strong=\"G1510\"* truly|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 34, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1909\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Gennesaret|strong=\"G1082\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G3956\"* of|strong=\"G2532\"* that|strong=\"G3588\"* place|strong=\"G5117\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* that|strong=\"G3588\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"* and|strong=\"G2532\"* brought|strong=\"G4374\"* to|strong=\"G1519\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"*;" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* just|strong=\"G2532\"* touch the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 14:36 or, tassel* of|strong=\"G2532\"* his|strong=\"G2532\"* garment|strong=\"G2440\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* touched it|strong=\"G2532\"* were|strong=\"G3588\"* made whole|strong=\"G1295\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2414\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 2, + "text": "“Why|strong=\"G5101\"* do|strong=\"G5101\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* disobey|strong=\"G3845\"* the|strong=\"G1223\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* the|strong=\"G1223\"* elders|strong=\"G4245\"*? For|strong=\"G1063\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* wash|strong=\"G3538\"* their|strong=\"G2068\"* hands|strong=\"G5495\"* when|strong=\"G3752\"* they|strong=\"G3588\"* eat|strong=\"G2068\"* bread.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w disobey|strong=\"G3845\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*? *" + }, + { + "verseNum": 4, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w commanded|strong=\"G1781\"\\+w*, ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*,’*+ 15:4 Exodus 20:12; Deuteronomy 5:16* \\+w and|strong=\"G2532\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w let|strong=\"G1063\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5053\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*+ 15:4 Exodus 21:17; Leviticus 20:9*" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, “\\+w Whatever|strong=\"G3739\"\\+w* \\+w help|strong=\"G5623\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w otherwise|strong=\"G1161\"\\+w* \\+w have|strong=\"G1473\"\\+w* gotten \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w gift|strong=\"G1435\"\\+w* devoted \\+w to|strong=\"G3004\"\\+w* \\+w God|strong=\"G3004\"\\+w*,” *" + }, + { + "verseNum": 6, + "text": "\\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2532\"\\+w* mother.’ \\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* void \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w Well|strong=\"G2573\"\\+w* \\+w did|strong=\"G2573\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "‘\\+w These|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w* draw near \\+w to|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w with|strong=\"G2588\"\\+w* \\+w their|strong=\"G3588\"\\+w* mouth,*" + }, + { + "verseNum": 9, + "text": "\\+w And|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w worship|strong=\"G4576\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1161\"\\+w* \\+w vain|strong=\"G3155\"\\+w*,*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* summoned|strong=\"G4341\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Hear, \\+w and|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3778\"\\+w*; \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w defiles|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* and|strong=\"G4334\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Do|strong=\"G1492\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3588\"* Pharisees|strong=\"G5330\"* were|strong=\"G3588\"* offended|strong=\"G4624\"* when|strong=\"G1492\"* they|strong=\"G3588\"* heard this|strong=\"G3588\"* saying|strong=\"G3004\"*?”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w Every|strong=\"G3956\"\\+w* \\+w plant|strong=\"G5451\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w plant|strong=\"G5451\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w uprooted|strong=\"G1610\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "Leave \\+w them|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w They|strong=\"G1161\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w* \\+w of|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guide|strong=\"G3595\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w blind|strong=\"G5185\"\\+w*, \\+w both|strong=\"G1161\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* pit.”*" + }, + { + "verseNum": 15, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Explain|strong=\"G5419\"* the|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G3004\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* still \\+w not|strong=\"G1510\"\\+w* understand? *" + }, + { + "verseNum": 17, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w understand|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whatever|strong=\"G3956\"\\+w* \\+w goes|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w passes|strong=\"G5562\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G1519\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceed|strong=\"G1607\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w thoughts|strong=\"G1261\"\\+w*, \\+w murders|strong=\"G5408\"\\+w*, \\+w adulteries|strong=\"G3430\"\\+w*, \\+w sexual|strong=\"G4202\"\\+w* sins, \\+w thefts|strong=\"G2829\"\\+w*, \\+w false|strong=\"G5577\"\\+w* \\+w testimony|strong=\"G5577\"\\+w*, \\+w and|strong=\"G1831\"\\+w* blasphemies. *" + }, + { + "verseNum": 20, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w man|strong=\"G3778\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w with|strong=\"G5495\"\\+w* unwashed \\+w hands|strong=\"G5495\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* there|strong=\"G2532\"* and|strong=\"G2532\"* withdrew|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* region of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* Canaanite|strong=\"G5478\"* woman|strong=\"G1135\"* came|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* those|strong=\"G3588\"* borders|strong=\"G3725\"* and|strong=\"G2532\"* cried|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*, Lord|strong=\"G2962\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*! My|strong=\"G3708\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* severely possessed by|strong=\"G2532\"* a|strong=\"G2532\"* demon!”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* her|strong=\"G1438\"* not|strong=\"G3756\"* a|strong=\"G2532\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G1161\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* sent \\+w to|strong=\"G1519\"\\+w* anyone \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* lost \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G3624\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* came|strong=\"G2064\"* and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, help me|strong=\"G1473\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*’s bread \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2952\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* she|strong=\"G2532\"* said|strong=\"G3004\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*, but|strong=\"G1161\"* even|strong=\"G2532\"* the|strong=\"G2532\"* dogs|strong=\"G2952\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* crumbs|strong=\"G5589\"* which|strong=\"G3588\"* fall|strong=\"G4098\"* from|strong=\"G2532\"* their|strong=\"G2532\"* masters|strong=\"G2962\"*’ table|strong=\"G5132\"*.”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w great|strong=\"G3173\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*! \\+w Be|strong=\"G1096\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.”* And|strong=\"G2532\"* her|strong=\"G3588\"* daughter|strong=\"G2364\"* was|strong=\"G1096\"* healed|strong=\"G2390\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* departed|strong=\"G3327\"* from|strong=\"G3844\"* there|strong=\"G1563\"* and|strong=\"G2532\"* came|strong=\"G2064\"* near|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* up|strong=\"G1519\"* on|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 30, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, having|strong=\"G2192\"* with|strong=\"G3326\"* them|strong=\"G3588\"* the|strong=\"G2532\"* lame|strong=\"G5560\"*, blind|strong=\"G5185\"*, mute|strong=\"G2974\"*, maimed|strong=\"G2948\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* others|strong=\"G2087\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* put|strong=\"G2532\"* them|strong=\"G3588\"* down|strong=\"G4496\"* at|strong=\"G3844\"* his|strong=\"G1438\"* feet|strong=\"G4228\"*. He|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 31, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* wondered|strong=\"G2296\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw the|strong=\"G2532\"* mute|strong=\"G2974\"* speaking|strong=\"G2980\"*, the|strong=\"G2532\"* injured healed|strong=\"G5199\"*, the|strong=\"G2532\"* lame|strong=\"G5560\"* walking|strong=\"G4043\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* seeing—and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w compassion|strong=\"G4697\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w multitude|strong=\"G3793\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* continued \\+w with|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w* away \\+w fasting|strong=\"G3523\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w faint|strong=\"G1590\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "The|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Where|strong=\"G4159\"* could|strong=\"G3588\"* we|strong=\"G2249\"* get|strong=\"G2532\"* so|strong=\"G2532\"* many|strong=\"G5118\"* loaves in|strong=\"G1722\"* a|strong=\"G2532\"* deserted place|strong=\"G2047\"* as|strong=\"G1722\"* to|strong=\"G2532\"* satisfy|strong=\"G5526\"* so|strong=\"G2532\"* great|strong=\"G5118\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*;" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G2486\"*. He|strong=\"G2532\"* gave|strong=\"G1325\"* thanks|strong=\"G2168\"* and|strong=\"G2532\"* broke|strong=\"G2806\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* seven|strong=\"G2033\"* baskets|strong=\"G4711\"* full|strong=\"G4134\"* of|strong=\"G2532\"* the|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G3588\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G4052\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* were|strong=\"G1510\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"* men|strong=\"G3588\"*, in|strong=\"G2532\"* addition to|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G3813\"*." + }, + { + "verseNum": 39, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* away the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, got|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Magdala|strong=\"G3093\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"* came|strong=\"G4334\"*, and|strong=\"G2532\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, asked|strong=\"G1905\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1925\"* them|strong=\"G3588\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G1161\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evening|strong=\"G3798\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w It|strong=\"G1161\"\\+w* \\+w will|strong=\"G1096\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fair|strong=\"G2105\"\\+w* \\+w weather|strong=\"G2105\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w red|strong=\"G4449\"\\+w*.’ *" + }, + { + "verseNum": 3, + "text": "\\+w In|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w morning|strong=\"G4404\"\\+w*, ‘\\+w It|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* foul weather \\+w today|strong=\"G4594\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w red|strong=\"G4449\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threatening|strong=\"G4768\"\\+w*.’ Hypocrites! \\+w You|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w how|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w discern|strong=\"G1252\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w appearance|strong=\"G4383\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w discern|strong=\"G1252\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w times|strong=\"G2540\"\\+w*! *" + }, + { + "verseNum": 4, + "text": "\\+w An|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w seeks|strong=\"G1934\"\\+w* \\+w after|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* prophet \\+w Jonah|strong=\"G2495\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* and|strong=\"G2532\"* had|strong=\"G2532\"* forgotten|strong=\"G1950\"* to|strong=\"G1519\"* take|strong=\"G2983\"* bread." + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Take|strong=\"G1161\"\\+w* \\+w heed|strong=\"G4337\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sadducees|strong=\"G4523\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* reasoned|strong=\"G1260\"* among|strong=\"G1722\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* brought|strong=\"G1161\"* no|strong=\"G3756\"* bread.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1097\"* it|strong=\"G3754\"*, said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w no|strong=\"G3756\"\\+w* bread? *" + }, + { + "verseNum": 9, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* loaves \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w thousand|strong=\"G4000\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G2894\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w up|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 10, + "text": "\\+w or|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* loaves \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5070\"\\+w* \\+w thousand|strong=\"G5070\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G4711\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w up|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* bread? \\+w But|strong=\"G1161\"\\+w* \\+w beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sadducees|strong=\"G4523\"\\+w*.” *" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* understood|strong=\"G4920\"* that|strong=\"G3754\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* tell|strong=\"G3004\"* them|strong=\"G3588\"* to|strong=\"G2532\"* beware|strong=\"G4337\"* of|strong=\"G2532\"* the|strong=\"G2532\"* yeast|strong=\"G2219\"* of|strong=\"G2532\"* bread, but|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* teaching|strong=\"G1322\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* parts|strong=\"G3313\"* of|strong=\"G5207\"* Caesarea|strong=\"G2542\"* Philippi|strong=\"G5376\"*, he|strong=\"G1161\"* asked|strong=\"G2065\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, saying|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1161\"\\+w*, \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5101\"\\+w*, \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 14, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Some|strong=\"G3588\"* say|strong=\"G3004\"* John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer, some|strong=\"G3588\"*, Elijah|strong=\"G2243\"*, and|strong=\"G1161\"* others|strong=\"G2087\"*, Jeremiah|strong=\"G2408\"* or|strong=\"G2228\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3004\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"*, the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1161\"* living|strong=\"G2198\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Simon|strong=\"G4613\"\\+w* Bar Jonah, \\+w for|strong=\"G3754\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* blood \\+w has|strong=\"G3962\"\\+w* \\+w not|strong=\"G3756\"\\+w* revealed \\+w this|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Peter|strong=\"G4074\"\\+w*,*+ 16:18 Peter’s name, Petros in Greek, is the word for a specific rock or stone.* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w rock|strong=\"G4073\"\\+w* *+ 16:18 Greek, petra, a rock mass or bedrock.* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w assembly|strong=\"G1577\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gates|strong=\"G4439\"\\+w* \\+w of|strong=\"G2532\"\\+w* Hades*+ 16:18 or, Hell* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w prevail|strong=\"G2729\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w keys|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w release|strong=\"G3089\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w released|strong=\"G3089\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G5119\"* he|strong=\"G3754\"* commanded|strong=\"G1291\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* they|strong=\"G3588\"* should|strong=\"G3588\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* that|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* Jesus|strong=\"G3004\"* the|strong=\"G3588\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 21, + "text": "From|strong=\"G2532\"* that|strong=\"G3754\"* time|strong=\"G2250\"*, Jesus|strong=\"G2424\"* began|strong=\"G5119\"* to|strong=\"G1519\"* show|strong=\"G1166\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* he|strong=\"G2532\"* must|strong=\"G1163\"* go|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* suffer|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, chief|strong=\"G2532\"* priests, and|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* killed, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* be|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"*." + }, + { + "verseNum": 22, + "text": "Peter|strong=\"G4074\"* took|strong=\"G4355\"* him|strong=\"G3588\"* aside|strong=\"G4355\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* rebuke|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Far|strong=\"G2436\"* be|strong=\"G1510\"* it|strong=\"G2532\"* from|strong=\"G2532\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*! This|strong=\"G3778\"* will|strong=\"G1510\"* never|strong=\"G3756\"* be|strong=\"G1510\"* done|strong=\"G3361\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* turned|strong=\"G4762\"* and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Peter|strong=\"G4074\"*, “\\+w Get|strong=\"G5217\"\\+w* \\+w behind|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w*! \\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w block|strong=\"G4625\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w setting|strong=\"G5426\"\\+w* \\+w your|strong=\"G5426\"\\+w* \\+w mind|strong=\"G5426\"\\+w* \\+w on|strong=\"G5426\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w on|strong=\"G5426\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G1161\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w gains|strong=\"G2770\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w forfeits|strong=\"G2210\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w a|strong=\"G1437\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w in|strong=\"G1161\"\\+w* exchange \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1538\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w his|strong=\"G1722\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w give|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G1538\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w deeds|strong=\"G4234\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w standing|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5100\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* Kingdom.” *" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* six|strong=\"G1803\"* days|strong=\"G2250\"*, Jesus|strong=\"G2424\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, and|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* into|strong=\"G1519\"* a|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"* by|strong=\"G2596\"* themselves|strong=\"G1438\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* was|strong=\"G1096\"* changed|strong=\"G3339\"*+ 17:2 or, transfigured* before|strong=\"G1715\"* them|strong=\"G3588\"*. His|strong=\"G2532\"* face|strong=\"G4383\"* shone|strong=\"G2989\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* garments|strong=\"G2440\"* became|strong=\"G1096\"* as|strong=\"G5613\"* white|strong=\"G3022\"* as|strong=\"G5613\"* the|strong=\"G2532\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"G2400\"*, Moses|strong=\"G3475\"* and|strong=\"G2532\"* Elijah|strong=\"G2243\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* them|strong=\"G3708\"* talking|strong=\"G4814\"* with|strong=\"G3326\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 4, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G1161\"* us|strong=\"G3004\"* to|strong=\"G2532\"* be|strong=\"G1510\"* here|strong=\"G5602\"*. If|strong=\"G1487\"* you|strong=\"G4771\"* want|strong=\"G2309\"*, let|strong=\"G1161\"*’s|strong=\"G2962\"* make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"* here|strong=\"G5602\"*: one|strong=\"G1520\"* for|strong=\"G1161\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G1161\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G1161\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 5, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, behold|strong=\"G2400\"*, a|strong=\"G2532\"* bright|strong=\"G5460\"* cloud|strong=\"G3507\"* overshadowed|strong=\"G1982\"* them|strong=\"G3588\"*. Behold|strong=\"G2400\"*, a|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G3708\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*. Listen|strong=\"G2400\"* to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* came|strong=\"G4334\"* and|strong=\"G2532\"* touched them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.” *" + }, + { + "verseNum": 8, + "text": "Lifting|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"*, they|strong=\"G1161\"* saw|strong=\"G3708\"* no|strong=\"G3762\"* one|strong=\"G3762\"*, except|strong=\"G1487\"* Jesus|strong=\"G2424\"* alone|strong=\"G3441\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, Jesus|strong=\"G2424\"* commanded|strong=\"G1781\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w anyone|strong=\"G3367\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w saw|strong=\"G2424\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3367\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w risen|strong=\"G1453\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Then|strong=\"G3767\"* why|strong=\"G5101\"* do|strong=\"G5101\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* say|strong=\"G3004\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* must|strong=\"G1163\"* come|strong=\"G2064\"* first|strong=\"G4413\"*?”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Elijah|strong=\"G2243\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w first|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* restore \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*; *" + }, + { + "verseNum": 12, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w already|strong=\"G2235\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w recognize|strong=\"G1921\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* disciples|strong=\"G3101\"* understood|strong=\"G4920\"* that|strong=\"G3754\"* he|strong=\"G3754\"* spoke|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* of|strong=\"G4012\"* John|strong=\"G2491\"* the|strong=\"G3588\"* Baptizer." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, a|strong=\"G2532\"* man came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, kneeling|strong=\"G2532\"* down|strong=\"G1120\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying," + }, + { + "verseNum": 15, + "text": "“Lord|strong=\"G2962\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1519\"* my|strong=\"G1473\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G3588\"* epileptic and|strong=\"G2532\"* suffers|strong=\"G3958\"* grievously|strong=\"G2560\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* often|strong=\"G4178\"* falls|strong=\"G4098\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* often|strong=\"G4178\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* I|strong=\"G2532\"* brought|strong=\"G4374\"* him|strong=\"G3588\"* to|strong=\"G2532\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* cure|strong=\"G2323\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Faithless \\+w and|strong=\"G2532\"\\+w* \\+w perverse|strong=\"G1294\"\\+w* \\+w generation|strong=\"G1074\"\\+w*! \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* demon|strong=\"G1140\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* boy|strong=\"G3816\"* was|strong=\"G3588\"* cured|strong=\"G2323\"* from|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"G5119\"* the|strong=\"G1223\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2596\"* Jesus|strong=\"G2424\"* privately|strong=\"G2398\"*, and|strong=\"G4334\"* said|strong=\"G3004\"*, “Why|strong=\"G5101\"* weren’t|strong=\"G3588\"* we|strong=\"G2249\"* able|strong=\"G1410\"* to|strong=\"G2596\"* cast|strong=\"G1544\"* it|strong=\"G5101\"* out|strong=\"G1544\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* unbelief. \\+w For|strong=\"G1063\"\\+w* most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Move|strong=\"G3327\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w move|strong=\"G3327\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* impossible \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "But this kind doesn’t go out except by prayer and fasting.” *+ 17:21 NU omits verse 21.*" + }, + { + "verseNum": 22, + "text": "While|strong=\"G1722\"* they|strong=\"G1161\"* were|strong=\"G3588\"* staying in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G3195\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.” *" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* collected|strong=\"G2983\"* the|strong=\"G2532\"* didrachma coins+ 17:24 A didrachma is a Greek silver coin worth 2 drachmas, about as much as 2 Roman denarii, or about 2 days’ wages. It was commonly used to pay the half-shekel temple tax, because 2 drachmas were worth one half shekel of silver. A shekel is about 10 grams or about 0.35 ounces.* came|strong=\"G2064\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Doesn’t|strong=\"G3588\"* your|strong=\"G2532\"* teacher|strong=\"G1320\"* pay|strong=\"G5055\"* the|strong=\"G2532\"* didrachma?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Yes|strong=\"G3483\"*.”" + }, + { + "verseNum": 26, + "text": "Peter said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “From|strong=\"G3588\"* strangers.”" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G1161\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*, \\+w cast|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* hook, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w fish|strong=\"G2486\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w comes|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* opened \\+w its|strong=\"G1325\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* stater coin.*+ 17:27 A stater is a silver coin equivalent to four Attic or two Alexandrian drachmas, or a Jewish shekel: just exactly enough to cover the half-shekel temple tax for two people. A shekel is about 10 grams or about 0.35 ounces, usually in the form of a silver coin.* \\+w Take|strong=\"G2983\"\\+w* \\+w that|strong=\"G2443\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* then|strong=\"G2424\"* is|strong=\"G1510\"* greatest|strong=\"G3173\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Kingdom of|strong=\"G1722\"* Heaven|strong=\"G3772\"*?”" + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2532\"* called|strong=\"G4341\"* a|strong=\"G2532\"* little child|strong=\"G3813\"* to|strong=\"G2532\"* himself, and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G1722\"*" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w turn|strong=\"G4762\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w as|strong=\"G5613\"\\+w* little \\+w children|strong=\"G3813\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w greatest|strong=\"G3173\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w of|strong=\"G1722\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w such|strong=\"G5108\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, *" + }, + { + "verseNum": 6, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w better|strong=\"G4851\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* huge \\+w millstone|strong=\"G3458\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w hung|strong=\"G2910\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* sunk \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* depths \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* occasions \\+w of|strong=\"G1223\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w must|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G1223\"\\+w* occasions \\+w come|strong=\"G2064\"\\+w*, \\+w but|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w person|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w occasion|strong=\"G1223\"\\+w* \\+w comes|strong=\"G2064\"\\+w*! *" + }, + { + "verseNum": 8, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w foot|strong=\"G4228\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w off|strong=\"G1581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w maimed|strong=\"G2948\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w crippled|strong=\"G2948\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w pluck|strong=\"G1807\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Gehenna*+ 18:9 or, Hell* \\+w of|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w their|strong=\"G1722\"\\+w* angels \\+w always|strong=\"G3956\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w face|strong=\"G4383\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "For the Son of Man came to save that which was lost.*+ 18:11 NU omits verse 11.*" + }, + { + "verseNum": 12, + "text": "“\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w*? \\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w leave|strong=\"G4198\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w gone|strong=\"G4198\"\\+w* \\+w astray|strong=\"G4105\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w most|strong=\"G3123\"\\+w* \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w rejoices|strong=\"G5463\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w gone|strong=\"G4105\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Even|strong=\"G3779\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w should|strong=\"G3588\"\\+w* perish.*" + }, + { + "verseNum": 15, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother sins \\+w against|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w go|strong=\"G5217\"\\+w*, \\+w show|strong=\"G1651\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w fault|strong=\"G1651\"\\+w* \\+w between|strong=\"G3342\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w alone|strong=\"G3441\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* listens \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother. *" + }, + { + "verseNum": 16, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w he|strong=\"G1161\"\\+w* doesn’t listen, \\+w take|strong=\"G3880\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w more|strong=\"G2089\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w word|strong=\"G4487\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w established|strong=\"G2476\"\\+w*.*+ 18:16 Deuteronomy 19:15*" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w refuses|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w listen|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w tell|strong=\"G3004\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assembly|strong=\"G1577\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w refuses|strong=\"G3878\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Gentile|strong=\"G1482\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w bind|strong=\"G1210\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w release|strong=\"G3089\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w released|strong=\"G3089\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Again|strong=\"G3825\"\\+w*, assuredly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w agree|strong=\"G4856\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w anything|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w ask|strong=\"G3004\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w where|strong=\"G3757\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w middle|strong=\"G3319\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, how|strong=\"G2193\"* often|strong=\"G4212\"* shall|strong=\"G2532\"* my|strong=\"G1473\"* brother sin against|strong=\"G1519\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* forgive him|strong=\"G3588\"*? Until|strong=\"G2193\"* seven|strong=\"G2034\"* times|strong=\"G2034\"*?”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G2193\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w times|strong=\"G2034\"\\+w*, \\+w but|strong=\"G3588\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w seventy|strong=\"G1441\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w seven|strong=\"G2033\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1223\"\\+w* Kingdom \\+w of|strong=\"G3056\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G3739\"\\+w* certain \\+w king|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w settle|strong=\"G4868\"\\+w* \\+w accounts|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w servants|strong=\"G1401\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* had begun \\+w to|strong=\"G1161\"\\+w* \\+w settle|strong=\"G4868\"\\+w*, \\+w one|strong=\"G1520\"\\+w* \\+w was|strong=\"G1161\"\\+w* \\+w brought|strong=\"G4374\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w him|strong=\"G4374\"\\+w* \\+w who|strong=\"G1520\"\\+w* \\+w owed|strong=\"G3781\"\\+w* \\+w him|strong=\"G4374\"\\+w* \\+w ten|strong=\"G3463\"\\+w* \\+w thousand|strong=\"G3463\"\\+w* \\+w talents|strong=\"G5007\"\\+w*.*+ 18:24 Ten thousand talents (about 300 metric tons of silver) represents an extremely large sum of money, equivalent to about 60,000,000 denarii, where one denarius was typical of one day’s wages for agricultural labor.*" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* couldn’\\+w t|strong=\"G3588\"\\+w* pay, \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w commanded|strong=\"G2753\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w sold|strong=\"G4097\"\\+w*, \\+w with|strong=\"G2532\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w his|strong=\"G3956\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w*, \\+w and|strong=\"G2532\"\\+w* payment \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w and|strong=\"G2532\"\\+w* knelt \\+w before|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G3588\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G3956\"\\+w*!’ *" + }, + { + "verseNum": 27, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w being|strong=\"G2532\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, released \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* forgave \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w debt|strong=\"G1156\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w owed|strong=\"G3784\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*,*+ 18:28 100 denarii was about one sixtieth of a talent, or about 500 grams (1.1 pounds) of silver.* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* grabbed \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2902\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* throat, \\+w saying|strong=\"G3004\"\\+w*, ‘Pay \\+w me|strong=\"G3004\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w owe|strong=\"G3784\"\\+w*!’*" + }, + { + "verseNum": 29, + "text": "“\\+w So|strong=\"G3767\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servant|strong=\"G4889\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* feet \\+w and|strong=\"G2532\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Have|strong=\"G2532\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w*!’ *" + }, + { + "verseNum": 30, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w cast|strong=\"G3756\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w should|strong=\"G3784\"\\+w* pay \\+w back|strong=\"G1519\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w due|strong=\"G3784\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w So|strong=\"G3767\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G4889\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w exceedingly|strong=\"G4970\"\\+w* \\+w sorry|strong=\"G3076\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* told \\+w their|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G3956\"\\+w* \\+w and|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w I|strong=\"G1473\"\\+w* forgave \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w debt|strong=\"G3782\"\\+w* \\+w because|strong=\"G1893\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "Shouldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1653\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servant|strong=\"G4889\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1653\"\\+w* \\+w you|strong=\"G4771\"\\+w*?’ *" + }, + { + "verseNum": 34, + "text": "\\+w His|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* tormentors \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3784\"\\+w* pay \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w due|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w heavenly|strong=\"G3770\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w each|strong=\"G1538\"\\+w* forgive \\+w your|strong=\"G1437\"\\+w* brother \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w his|strong=\"G4160\"\\+w* misdeeds.”*" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* departed|strong=\"G3332\"* from|strong=\"G2064\"* Galilee|strong=\"G1056\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G3056\"* Judea|strong=\"G2449\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*." + }, + { + "verseNum": 2, + "text": "Great|strong=\"G4183\"* multitudes|strong=\"G3793\"* followed him|strong=\"G2532\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G1438\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 3, + "text": "Pharisees|strong=\"G5330\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, testing|strong=\"G3985\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G3956\"* to|strong=\"G2532\"* divorce his|strong=\"G3956\"* wife|strong=\"G1135\"* for|strong=\"G2532\"* any|strong=\"G3956\"* reason?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* read \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* male \\+w and|strong=\"G2532\"\\+w* \\+w female|strong=\"G2338\"\\+w*,*+ 19:4 Genesis 1:27*" + }, + { + "verseNum": 5, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w For|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1752\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w joined|strong=\"G2853\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wife|strong=\"G1135\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w become|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*’?*+ 19:5 Genesis 2:24*" + }, + { + "verseNum": 6, + "text": "\\+w So|strong=\"G3767\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w What|strong=\"G3739\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w joined|strong=\"G4801\"\\+w* \\+w together|strong=\"G4801\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5563\"\\+w* \\+w man|strong=\"G1520\"\\+w* tear apart.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G1325\"*, “Why|strong=\"G5101\"* then|strong=\"G3767\"* did|strong=\"G2532\"* Moses|strong=\"G3475\"* command|strong=\"G1781\"* us|strong=\"G1325\"* to|strong=\"G2532\"* give|strong=\"G1325\"* her|strong=\"G1325\"* a|strong=\"G2532\"* certificate of|strong=\"G2532\"* divorce and|strong=\"G2532\"* divorce her|strong=\"G1325\"*?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Moses|strong=\"G3475\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w hardness|strong=\"G4641\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hearts|strong=\"G4641\"\\+w*, \\+w allowed|strong=\"G2010\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* divorce \\+w your|strong=\"G3588\"\\+w* \\+w wives|strong=\"G1135\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* beginning \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* divorces \\+w his|strong=\"G1909\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w except|strong=\"G3361\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G3739\"\\+w*, \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w her|strong=\"G3754\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* divorced \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "His|strong=\"G3326\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* this|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G3588\"* case|strong=\"G3588\"* of|strong=\"G3101\"* the|strong=\"G3588\"* man|strong=\"G3756\"* with|strong=\"G3326\"* his|strong=\"G3326\"* wife|strong=\"G1135\"*, it|strong=\"G1487\"* is|strong=\"G1510\"* not|strong=\"G3756\"* expedient|strong=\"G4851\"* to|strong=\"G3004\"* marry|strong=\"G1060\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Not|strong=\"G3756\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w saying|strong=\"G3004\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w way|strong=\"G3779\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w mother|strong=\"G3384\"\\+w*’s \\+w womb|strong=\"G2836\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w made|strong=\"G2134\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w men|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G2134\"\\+w* \\+w themselves|strong=\"G1438\"\\+w* \\+w eunuchs|strong=\"G2135\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G1537\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w receive|strong=\"G5562\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* little children|strong=\"G3813\"* were|strong=\"G3588\"* brought|strong=\"G4374\"* to|strong=\"G2443\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* lay|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"* and|strong=\"G2532\"* pray|strong=\"G4336\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* Kingdom \\+w of|strong=\"G2532\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* ones \\+w like|strong=\"G5108\"\\+w* \\+w these|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* departed|strong=\"G4198\"* from|strong=\"G2532\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"G2400\"*, one|strong=\"G1520\"* came|strong=\"G4334\"* to|strong=\"G2443\"* him|strong=\"G3708\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Good|strong=\"G5101\"* teacher|strong=\"G1320\"*, what|strong=\"G5101\"* good|strong=\"G5101\"* thing|strong=\"G1520\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*?*+ 19:17 So MT and TR. NU reads “Why do you ask me about what is good?”* \\+w No|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w good|strong=\"G5101\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w God|strong=\"G3004\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*.” *" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Which|strong=\"G3588\"* ones|strong=\"G4169\"*?”" + }, + { + "verseNum": 19, + "text": "‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’*+ 19:19 Exodus 20:12-16; Deuteronomy 5:16-20* \\+w And|strong=\"G2532\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w your|strong=\"G5091\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’”*+ 19:19 Leviticus 19:18*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G3956\"* young|strong=\"G3495\"* man|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “All|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* I|strong=\"G3778\"* have|strong=\"G3956\"* observed|strong=\"G5442\"* from|strong=\"G3588\"* my|strong=\"G3956\"* youth. What|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G3778\"* still|strong=\"G2089\"* lack|strong=\"G5302\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfect|strong=\"G5046\"\\+w*, \\+w go|strong=\"G5217\"\\+w*, \\+w sell|strong=\"G4453\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, follow \\+w me|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* young|strong=\"G3495\"* man|strong=\"G3495\"* heard this|strong=\"G3588\"*, he|strong=\"G1161\"* went|strong=\"G3588\"* away sad|strong=\"G3076\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* great|strong=\"G4183\"* possessions|strong=\"G2933\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “Most certainly \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G2424\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w with|strong=\"G1519\"\\+w* difficulty. *" + }, + { + "verseNum": 24, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w needle|strong=\"G4476\"\\+w*’s eye \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* heard it|strong=\"G1161\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* exceedingly|strong=\"G4970\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* then|strong=\"G1161\"* can|strong=\"G1410\"* be|strong=\"G1410\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 26, + "text": "Looking|strong=\"G1689\"* at|strong=\"G3844\"* them|strong=\"G3588\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w With|strong=\"G3844\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* impossible, \\+w but|strong=\"G1161\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* left everything|strong=\"G3956\"* and|strong=\"G2532\"* followed you|strong=\"G4771\"*. What|strong=\"G5101\"* then|strong=\"G2532\"* will|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"*?”" + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* followed \\+w me|strong=\"G1473\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w regeneration|strong=\"G3824\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w thrones|strong=\"G2362\"\\+w*, \\+w judging|strong=\"G2919\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* left \\+w houses|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* sisters, \\+w or|strong=\"G2228\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w or|strong=\"G2228\"\\+w* lands, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G4179\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w inherit|strong=\"G2816\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*. *" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w man|strong=\"G1519\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w the|strong=\"G1519\"\\+w* master \\+w of|strong=\"G3588\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w household|strong=\"G3617\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w early|strong=\"G4404\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w morning|strong=\"G4404\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w hire|strong=\"G3409\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1519\"\\+w* vineyard. *" + }, + { + "verseNum": 2, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G3588\"\\+w* \\+w agreed|strong=\"G4856\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w denarius|strong=\"G1220\"\\+w**+ 20:2 A denarius is a silver Roman coin worth 1/25th of a Roman aureus. This was a common wage for a day of farm labor.* \\+w a|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G1161\"\\+w* sent \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* vineyard. *" + }, + { + "verseNum": 3, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w hour|strong=\"G5610\"\\+w*,*+ 20:3 Time was measured from sunrise to sunset, so the third hour would be about 9:00 a.m.* \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w standing|strong=\"G2476\"\\+w* idle \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplace. *" + }, + { + "verseNum": 4, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard, \\+w and|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w right|strong=\"G1342\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ \\+w So|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sixth|strong=\"G1623\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ninth|strong=\"G1766\"\\+w* \\+w hour|strong=\"G5610\"\\+w*,*+ 20:5 noon and 3:00 p.m.* \\+w and|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w likewise|strong=\"G5615\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w About|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eleventh|strong=\"G1734\"\\+w* hour*+ 20:6 5:00 p.m.* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w others|strong=\"G3588\"\\+w* \\+w standing|strong=\"G2476\"\\+w* idle. \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w day|strong=\"G2250\"\\+w* idle?’ *" + }, + { + "verseNum": 7, + "text": "“\\+w They|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Because|strong=\"G3754\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3762\"\\+w* \\+w hired|strong=\"G3409\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*" + }, + { + "verseNum": 8, + "text": "“\\+w When|strong=\"G1161\"\\+w* \\+w evening|strong=\"G3798\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w come|strong=\"G1096\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w manager|strong=\"G2012\"\\+w*, ‘\\+w Call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pay|strong=\"G3408\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w wages|strong=\"G3408\"\\+w*, \\+w beginning|strong=\"G4413\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*.’*" + }, + { + "verseNum": 9, + "text": "“\\+w When|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* hired \\+w at|strong=\"G4012\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eleventh|strong=\"G1734\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w they|strong=\"G2532\"\\+w* each \\+w received|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w supposed|strong=\"G3543\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w more|strong=\"G4119\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w likewise|strong=\"G2532\"\\+w* each \\+w received|strong=\"G2983\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w it|strong=\"G1161\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w murmured|strong=\"G1111\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w the|strong=\"G1161\"\\+w* master \\+w of|strong=\"G2596\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w household|strong=\"G3617\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w saying|strong=\"G3004\"\\+w*, ‘\\+w These|strong=\"G3778\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spent|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w equal|strong=\"G2470\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* borne \\+w the|strong=\"G2532\"\\+w* burden \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scorching|strong=\"G2742\"\\+w* \\+w heat|strong=\"G2742\"\\+w*!’ *" + }, + { + "verseNum": 13, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Friend|strong=\"G2083\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* doing \\+w you|strong=\"G4771\"\\+w* \\+w no|strong=\"G3756\"\\+w* wrong. Didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w agree|strong=\"G4856\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*? *" + }, + { + "verseNum": 14, + "text": "\\+w Take|strong=\"G1161\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w just|strong=\"G5613\"\\+w* \\+w as|strong=\"G5613\"\\+w* much \\+w as|strong=\"G5613\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w own|strong=\"G1699\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w good|strong=\"G3756\"\\+w*?’ *" + }, + { + "verseNum": 16, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w last|strong=\"G2078\"\\+w*. \\+w For|strong=\"G2532\"\\+w* many \\+w are|strong=\"G1510\"\\+w* \\+w called|strong=\"G3588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* few \\+w are|strong=\"G1510\"\\+w* chosen.”*" + }, + { + "verseNum": 17, + "text": "As|strong=\"G1519\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* going|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, he|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"* aside|strong=\"G3880\"*, and|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 18, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chief|strong=\"G2532\"\\+w* priests \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w hand|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w mock|strong=\"G1702\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w scourge|strong=\"G3146\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w crucify|strong=\"G4717\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* with|strong=\"G3326\"* her|strong=\"G3588\"* sons|strong=\"G5207\"*, kneeling|strong=\"G2532\"* and|strong=\"G2532\"* asking a|strong=\"G2532\"* certain|strong=\"G5100\"* thing|strong=\"G5100\"* of|strong=\"G5207\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* her|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w You|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w asking|strong=\"G3004\"\\+w*. \\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w*?”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w cup|strong=\"G4221\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* baptized \\+w with|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* baptized \\+w with|strong=\"G1537\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* indignant with|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* brothers." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* rulers \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w ones|strong=\"G3748\"\\+w* \\+w exercise|strong=\"G2715\"\\+w* \\+w authority|strong=\"G2715\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w It|strong=\"G1437\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w but|strong=\"G1437\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w**+ 20:26 TR reads “let him be” instead of “shall be” * \\+w your|strong=\"G1437\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* bondservant, *" + }, + { + "verseNum": 28, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w served|strong=\"G1247\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ransom|strong=\"G3083\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1607\"* from|strong=\"G2532\"* Jericho|strong=\"G2410\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G2532\"*." + }, + { + "verseNum": 30, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* blind|strong=\"G5185\"* men|strong=\"G5185\"* sitting|strong=\"G2521\"* by|strong=\"G3844\"* the|strong=\"G2532\"* road|strong=\"G3598\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* passing|strong=\"G3855\"* by|strong=\"G3844\"*, cried|strong=\"G2896\"* out|strong=\"G2896\"*, “Lord|strong=\"G2962\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, you|strong=\"G3754\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 31, + "text": "The|strong=\"G1161\"* multitude|strong=\"G3793\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*, telling|strong=\"G3004\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G1161\"* should|strong=\"G3588\"* be|strong=\"G2443\"* quiet|strong=\"G4623\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* even|strong=\"G1161\"* more|strong=\"G3173\"*, “Lord|strong=\"G2962\"*, have|strong=\"G1653\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!”" + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* still|strong=\"G2476\"* and|strong=\"G2532\"* called|strong=\"G3004\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* asked|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 33, + "text": "They|strong=\"G3588\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, that|strong=\"G2443\"* our|strong=\"G2962\"* eyes|strong=\"G3788\"* may|strong=\"G2443\"* be|strong=\"G2443\"* opened.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"*, being|strong=\"G2532\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"*, touched their|strong=\"G2532\"* eyes|strong=\"G3659\"*; and|strong=\"G2532\"* immediately|strong=\"G2112\"* their|strong=\"G2532\"* eyes|strong=\"G3659\"* received their|strong=\"G2532\"* sight|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethsphage,+ 21:1 TR & NU read “Bethphage” instead of “Bethsphage”* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, then|strong=\"G2532\"* Jesus|strong=\"G2424\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w opposite|strong=\"G2713\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w donkey|strong=\"G3688\"\\+w* \\+w tied|strong=\"G1210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w colt|strong=\"G4454\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w her|strong=\"G1519\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w them|strong=\"G3588\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "All|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* that|strong=\"G2443\"* it|strong=\"G1161\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* was|strong=\"G1096\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“Tell|strong=\"G3004\"* the|strong=\"G2532\"* daughter|strong=\"G2364\"* of|strong=\"G5207\"* Zion|strong=\"G4622\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* went|strong=\"G4198\"* and|strong=\"G2532\"* did|strong=\"G4160\"* just|strong=\"G2531\"* as|strong=\"G2531\"* Jesus|strong=\"G2424\"* commanded|strong=\"G4367\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* brought|strong=\"G2532\"* the|strong=\"G2532\"* donkey|strong=\"G3688\"* and|strong=\"G2532\"* the|strong=\"G2532\"* colt|strong=\"G4454\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* on|strong=\"G1909\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"G2532\"* very|strong=\"G4183\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* spread|strong=\"G4766\"* their|strong=\"G1438\"* clothes|strong=\"G2440\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*. Others|strong=\"G3588\"* cut|strong=\"G2532\"* branches|strong=\"G2798\"* from|strong=\"G2532\"* the|strong=\"G1722\"* trees|strong=\"G1186\"* and|strong=\"G2532\"* spread|strong=\"G4766\"* them|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1722\"* multitudes|strong=\"G3793\"* who|strong=\"G3588\"* went|strong=\"G2064\"* in|strong=\"G1722\"* front|strong=\"G4254\"* of|strong=\"G5207\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed, kept|strong=\"G2532\"* shouting|strong=\"G2896\"*, “Hosanna|strong=\"G5614\"*+ 21:9 “Hosanna” means “save us” or “help us, we pray”.* to|strong=\"G2532\"* the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*! Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*! Hosanna|strong=\"G5614\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!” + 21:9 Psalms 118:26*" + }, + { + "verseNum": 10, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* into|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"*?”" + }, + { + "verseNum": 11, + "text": "The|strong=\"G1161\"* multitudes|strong=\"G3793\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"*, Jesus|strong=\"G2424\"*, from|strong=\"G3588\"* Nazareth|strong=\"G3478\"* of|strong=\"G2424\"* Galilee|strong=\"G1056\"*.”" + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* drove|strong=\"G1544\"* out|strong=\"G1544\"* all|strong=\"G3956\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* and|strong=\"G2532\"* bought in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* overthrew|strong=\"G2690\"* the|strong=\"G1722\"* money|strong=\"G2855\"* changers|strong=\"G2855\"*’ tables|strong=\"G5132\"* and|strong=\"G2532\"* the|strong=\"G1722\"* seats|strong=\"G2515\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G1722\"* doves|strong=\"G4058\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*,’*+ 21:13 Isaiah 56:7* \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*!”*+ 21:13 Jeremiah 7:11*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* lame|strong=\"G5560\"* and|strong=\"G2532\"* the|strong=\"G1722\"* blind|strong=\"G5185\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* wonderful|strong=\"G2297\"* things|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5207\"* who|strong=\"G3739\"* were|strong=\"G3588\"* crying|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Hosanna|strong=\"G5614\"* to|strong=\"G2532\"* the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*!” they|strong=\"G2532\"* were|strong=\"G3588\"* indignant," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Do|strong=\"G5101\"* you|strong=\"G3754\"* hear|strong=\"G5101\"* what|strong=\"G5101\"* these|strong=\"G3778\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* left|strong=\"G2641\"* them|strong=\"G3588\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* to|strong=\"G1519\"* Bethany, and|strong=\"G2532\"* camped there|strong=\"G1563\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* in|strong=\"G1519\"* the|strong=\"G1519\"* morning|strong=\"G4404\"*, as|strong=\"G1519\"* he|strong=\"G1161\"* returned|strong=\"G1877\"* to|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"*, he|strong=\"G1161\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 19, + "text": "Seeing|strong=\"G3708\"* a|strong=\"G1096\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* by|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* it|strong=\"G2532\"* and|strong=\"G2532\"* found|strong=\"G2147\"* nothing|strong=\"G3762\"* on|strong=\"G1909\"* it|strong=\"G2532\"* but|strong=\"G2532\"* leaves|strong=\"G5444\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* it|strong=\"G2532\"*, “\\+w Let|strong=\"G1096\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w forever|strong=\"G1519\"\\+w*!” *" + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* did|strong=\"G2532\"* the|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* immediately|strong=\"G3916\"* wither|strong=\"G3583\"* away|strong=\"G3583\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w doubt|strong=\"G1252\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w only|strong=\"G3440\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Be|strong=\"G1096\"\\+w* \\+w taken|strong=\"G1096\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G1722\"\\+w* ask \\+w in|strong=\"G1722\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*, \\+w believing|strong=\"G4100\"\\+w*, \\+w you|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* as|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G3588\"* teaching|strong=\"G1321\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “By|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Who|strong=\"G5101\"* gave|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"*?”" + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w question|strong=\"G2065\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w likewise|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w The|strong=\"G1722\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w where|strong=\"G4159\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w from|strong=\"G1537\"\\+w*? \\+w From|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*?” *" + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3956\"*,’ we|strong=\"G2249\"* fear|strong=\"G5399\"* the|strong=\"G3956\"* multitude|strong=\"G3793\"*, for|strong=\"G1063\"* all|strong=\"G3956\"* hold|strong=\"G2192\"* John|strong=\"G2491\"* as|strong=\"G5613\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “We|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*.”" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w*? \\+w A|strong=\"G2192\"\\+w* \\+w man|strong=\"G4413\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sons|strong=\"G5043\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w work|strong=\"G2038\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* vineyard.’ *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*,’ \\+w but|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G5305\"\\+w* \\+w he|strong=\"G1161\"\\+w* changed \\+w his|strong=\"G3588\"\\+w* \\+w mind|strong=\"G3338\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w second|strong=\"G1208\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w thing|strong=\"G5615\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w*’m \\+w going|strong=\"G2532\"\\+w*, \\+w sir|strong=\"G2962\"\\+w*,’ \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w father|strong=\"G3962\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prostitutes|strong=\"G4204\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3338\"\\+w* \\+w afterward|strong=\"G5305\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "“Hear \\+w another|strong=\"G1722\"\\+w* \\+w parable|strong=\"G3850\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w who|strong=\"G3748\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* master \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w household|strong=\"G3617\"\\+w* \\+w who|strong=\"G3748\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard, \\+w set|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* hedge \\+w about|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w dug|strong=\"G3736\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3025\"\\+w* \\+w press|strong=\"G3025\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, \\+w leased|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w another|strong=\"G1722\"\\+w* country. *" + }, + { + "verseNum": 34, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w season|strong=\"G2540\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w came|strong=\"G3588\"\\+w* \\+w near|strong=\"G1448\"\\+w*, \\+w he|strong=\"G1161\"\\+w* sent \\+w his|strong=\"G2983\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1161\"\\+w* farmers \\+w to|strong=\"G4314\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w The|strong=\"G2532\"\\+w* farmers \\+w took|strong=\"G2983\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w beat|strong=\"G1194\"\\+w* \\+w one|strong=\"G3739\"\\+w*, killed \\+w another|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w stoned|strong=\"G3036\"\\+w* \\+w another|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Again|strong=\"G3825\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w other|strong=\"G4183\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w treated|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G5305\"\\+w* \\+w he|strong=\"G1161\"\\+w* sent \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w They|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’ *" + }, + { + "verseNum": 38, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* farmers, \\+w when|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w said|strong=\"G3004\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1205\"\\+w*, \\+w let|strong=\"G1161\"\\+w*’\\+w s|strong=\"G2192\"\\+w* kill \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w seize|strong=\"G2192\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w*.’ *" + }, + { + "verseNum": 39, + "text": "\\+w So|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard, \\+w then|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G3588\"\\+w* vineyard \\+w comes|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w those|strong=\"G3588\"\\+w* farmers?”*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “He|strong=\"G2532\"* will|strong=\"G2532\"* miserably|strong=\"G2560\"* destroy those|strong=\"G3588\"* miserable men|strong=\"G3588\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* lease out|strong=\"G2532\"* the|strong=\"G1722\"* vineyard to|strong=\"G2532\"* other|strong=\"G1438\"* farmers who|strong=\"G3588\"* will|strong=\"G2532\"* give|strong=\"G3004\"* him|strong=\"G3588\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* in|strong=\"G1722\"* its season|strong=\"G2540\"*.”" + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w never|strong=\"G3763\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, *" + }, + { + "verseNum": 43, + "text": "“\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w producing|strong=\"G4160\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G2532\"\\+w* falls \\+w on|strong=\"G1909\"\\+w* \\+w this|strong=\"G2532\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* broken \\+w to|strong=\"G2532\"\\+w* pieces, \\+w but|strong=\"G1161\"\\+w* \\+w on|strong=\"G1909\"\\+w* whomever \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* fall, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scatter|strong=\"G3039\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w dust|strong=\"G3039\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* heard|strong=\"G1097\"* his|strong=\"G4012\"* parables|strong=\"G3850\"*, they|strong=\"G2532\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"* about|strong=\"G4012\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 46, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, because|strong=\"G1893\"* they|strong=\"G2532\"* considered|strong=\"G2192\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"* again|strong=\"G3825\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 2, + "text": "“\\+w The|strong=\"G3588\"\\+w* Kingdom \\+w of|strong=\"G5207\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w a|strong=\"G4160\"\\+w* certain \\+w king|strong=\"G3588\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w* \\+w for|strong=\"G4160\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w son|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 3, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Again|strong=\"G3825\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w other|strong=\"G3825\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w my|strong=\"G3708\"\\+w* dinner. \\+w My|strong=\"G3708\"\\+w* cattle \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w fatlings|strong=\"G4619\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w killed|strong=\"G2380\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. \\+w Come|strong=\"G1205\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*!”’ *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w made|strong=\"G1161\"\\+w* light \\+w of|strong=\"G1909\"\\+w* \\+w it|strong=\"G1161\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w went|strong=\"G3588\"\\+w* \\+w their|strong=\"G1519\"\\+w* ways, \\+w one|strong=\"G3739\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* farm, \\+w another|strong=\"G3739\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w merchandise|strong=\"G1711\"\\+w*; *" + }, + { + "verseNum": 6, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rest|strong=\"G3062\"\\+w* grabbed \\+w his|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, treated \\+w them|strong=\"G3588\"\\+w* shamefully, \\+w and|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w king|strong=\"G3588\"\\+w* heard \\+w that|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w armies|strong=\"G4753\"\\+w*, destroyed \\+w those|strong=\"G3588\"\\+w* \\+w murderers|strong=\"G5406\"\\+w*, \\+w and|strong=\"G2532\"\\+w* burned \\+w their|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w his|strong=\"G2564\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, ‘\\+w The|strong=\"G1161\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w ready|strong=\"G2092\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* weren’\\+w t|strong=\"G3588\"\\+w* worthy. *" + }, + { + "verseNum": 9, + "text": "\\+w Go|strong=\"G4198\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* intersections \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*, \\+w invite|strong=\"G2564\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w*, \\+w both|strong=\"G2532\"\\+w* \\+w bad|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w good|strong=\"G3956\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w filled|strong=\"G4130\"\\+w* \\+w with|strong=\"G2532\"\\+w* guests. *" + }, + { + "verseNum": 11, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w came|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1161\"\\+w* guests, \\+w he|strong=\"G1161\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w a|strong=\"G3708\"\\+w* \\+w man|strong=\"G3756\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G3588\"\\+w* \\+w on|strong=\"G1746\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Friend|strong=\"G2083\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w not|strong=\"G3361\"\\+w* wearing \\+w wedding|strong=\"G1062\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*?’ \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w speechless|strong=\"G5392\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1249\"\\+w*, ‘\\+w Bind|strong=\"G1210\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w foot|strong=\"G4228\"\\+w*, \\+w take|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1544\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* grinding \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w*.’ *" + }, + { + "verseNum": 14, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w called|strong=\"G2822\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w chosen|strong=\"G1588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "Then|strong=\"G5119\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* went|strong=\"G4198\"* and|strong=\"G4198\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"* how|strong=\"G3704\"* they|strong=\"G3588\"* might entrap him|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* talk|strong=\"G3056\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* sent|strong=\"G2316\"* their|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, along|strong=\"G2532\"* with|strong=\"G3326\"* the|strong=\"G1722\"* Herodians|strong=\"G2265\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* honest, and|strong=\"G2532\"* teach|strong=\"G1321\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G4012\"* God|strong=\"G2316\"* in|strong=\"G1722\"* truth, no|strong=\"G3756\"* matter whom|strong=\"G3588\"* you|strong=\"G4771\"* teach|strong=\"G1321\"*; for|strong=\"G1063\"* you|strong=\"G4771\"* aren’t|strong=\"G3588\"* partial to|strong=\"G1519\"* anyone|strong=\"G3762\"*." + }, + { + "verseNum": 17, + "text": "Tell|strong=\"G3004\"* us|strong=\"G1325\"* therefore|strong=\"G3767\"*, what|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* think|strong=\"G1380\"*? Is|strong=\"G5101\"* it|strong=\"G5101\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* pay|strong=\"G1325\"* taxes|strong=\"G2778\"* to|strong=\"G3004\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?”" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* perceived|strong=\"G1097\"* their|strong=\"G3588\"* wickedness|strong=\"G4189\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w test|strong=\"G3985\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w Show|strong=\"G1925\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w the|strong=\"G1161\"\\+w* tax \\+w money|strong=\"G3546\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Whose|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w image|strong=\"G1504\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w inscription|strong=\"G1923\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Caesar|strong=\"G2541\"*’s.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, and|strong=\"G2532\"* left him|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away." + }, + { + "verseNum": 23, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"* Sadducees|strong=\"G4523\"* (those|strong=\"G3588\"* who|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G3588\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection) came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* said|strong=\"G3004\"*, ‘If|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* dies, having|strong=\"G2192\"* no|strong=\"G3361\"* children|strong=\"G5043\"*, his|strong=\"G2192\"* brother shall|strong=\"G2532\"* marry|strong=\"G1918\"* his|strong=\"G2192\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G3361\"* offspring+ 22:24 or, seed* for|strong=\"G2532\"* his|strong=\"G2192\"* brother.’" + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* were|strong=\"G1510\"* with|strong=\"G3844\"* us|strong=\"G2249\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* married|strong=\"G1060\"* and|strong=\"G2532\"* died|strong=\"G5053\"*, and|strong=\"G2532\"* having|strong=\"G2192\"* no|strong=\"G3361\"* offspring left his|strong=\"G2192\"* wife|strong=\"G1135\"* to|strong=\"G2532\"* his|strong=\"G2192\"* brother." + }, + { + "verseNum": 26, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, the|strong=\"G2532\"* second|strong=\"G1208\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* seventh|strong=\"G2033\"*." + }, + { + "verseNum": 27, + "text": "After|strong=\"G1161\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, the|strong=\"G3956\"* woman|strong=\"G1135\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* resurrection therefore|strong=\"G3767\"*, whose|strong=\"G5101\"* wife|strong=\"G1135\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1510\"* of|strong=\"G1722\"* the|strong=\"G1722\"* seven|strong=\"G2033\"*? For|strong=\"G1063\"* they|strong=\"G3588\"* all|strong=\"G3956\"* had|strong=\"G2192\"* her|strong=\"G1438\"*.”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w knowing|strong=\"G1492\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* resurrection \\+w they|strong=\"G3588\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* resurrection \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* read \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w spoken|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abraham, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*’?*+ 22:32 Exodus 3:6* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* heard that|strong=\"G3754\"* he|strong=\"G1161\"* had|strong=\"G3588\"* silenced|strong=\"G5392\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"*, gathered|strong=\"G4863\"* themselves|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 35, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G1905\"*, a|strong=\"G2532\"* lawyer|strong=\"G3544\"*, asked|strong=\"G1905\"* him|strong=\"G1905\"* a|strong=\"G2532\"* question|strong=\"G1905\"*, testing|strong=\"G3985\"* him|strong=\"G1905\"*." + }, + { + "verseNum": 36, + "text": "“Teacher|strong=\"G1320\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"* commandment|strong=\"G1785\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*?”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w mind|strong=\"G1271\"\\+w*.’*+ 22:37 Deuteronomy 6:5 *" + }, + { + "verseNum": 38, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w A|strong=\"G5613\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w likewise|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3588\"\\+w* love \\+w your|strong=\"G3588\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’*+ 22:39 Leviticus 19:18*" + }, + { + "verseNum": 40, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w depend|strong=\"G2910\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*.” *" + }, + { + "verseNum": 41, + "text": "Now|strong=\"G1161\"* while|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, Jesus|strong=\"G2424\"* asked|strong=\"G1905\"* them|strong=\"G3588\"* a|strong=\"G1161\"* question|strong=\"G1905\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*? \\+w Whose|strong=\"G5101\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3588\"\\+w*?” *" + }, + { + "verseNum": 43, + "text": "He|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G1722\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w does|strong=\"G3004\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 44, + "text": "‘\\+w The|strong=\"G1537\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*,*" + }, + { + "verseNum": 45, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w calls|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G1487\"\\+w* \\+w his|strong=\"G2564\"\\+w* \\+w son|strong=\"G5207\"\\+w*?”*" + }, + { + "verseNum": 46, + "text": "No|strong=\"G3762\"* one|strong=\"G5100\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* answer|strong=\"G3056\"* him|strong=\"G3588\"* a|strong=\"G2532\"* word|strong=\"G3056\"*, neither|strong=\"G3761\"* did|strong=\"G2532\"* any|strong=\"G5100\"* man|strong=\"G5100\"* dare|strong=\"G5111\"* ask|strong=\"G1905\"* him|strong=\"G3588\"* any|strong=\"G5100\"* more|strong=\"G3765\"* questions|strong=\"G1905\"* from|strong=\"G2532\"* that|strong=\"G3588\"* day|strong=\"G2250\"* forward." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* and|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*’ \\+w seat|strong=\"G2523\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w observe|strong=\"G5083\"\\+w*, \\+w observe|strong=\"G5083\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w For|strong=\"G1909\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bind|strong=\"G2532\"\\+w* heavy \\+w burdens|strong=\"G5413\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* grievous \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* borne, \\+w and|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2007\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w men|strong=\"G3588\"\\+w*’s \\+w shoulders|strong=\"G5606\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* themselves \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* lift \\+w a|strong=\"G2532\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w to|strong=\"G2532\"\\+w* help \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w seen|strong=\"G2300\"\\+w* \\+w by|strong=\"G4314\"\\+w* \\+w men|strong=\"G3956\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w phylacteries|strong=\"G5440\"\\+w**+ 23:5 phylacteries (tefillin in Hebrew) are small leather pouches that some Jewish men wear on their forehead and arm in prayer. They are used to carry a small scroll with some Scripture in it. See Deuteronomy 6:8.* broad \\+w and|strong=\"G2532\"\\+w* \\+w enlarge|strong=\"G3170\"\\+w* \\+w the|strong=\"G2532\"\\+w* fringes*+ 23:5 or, tassels* \\+w of|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* garments, *" + }, + { + "verseNum": 6, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w place|strong=\"G4411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w honor|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*, \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, *" + }, + { + "verseNum": 7, + "text": "\\+w the|strong=\"G1722\"\\+w* salutations \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w Rabbi|strong=\"G4461\"\\+w*, \\+w Rabbi|strong=\"G4461\"\\+w*’*+ 23:7 NU omits the second “Rabbi”. * \\+w by|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w Rabbi|strong=\"G4461\"\\+w*’, \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w the|strong=\"G3956\"\\+w* \\+w Christ|strong=\"G1520\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* brothers. *" + }, + { + "verseNum": 9, + "text": "\\+w Call|strong=\"G2564\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w man|strong=\"G1520\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w heaven|strong=\"G3770\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Neither|strong=\"G3366\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w masters|strong=\"G2519\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w master|strong=\"G2519\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greatest|strong=\"G3173\"\\+w* \\+w among|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G5210\"\\+w* devour widows’ houses, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* pretense \\+w you|strong=\"G5210\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w long|strong=\"G3756\"\\+w* prayers. \\+w Therefore|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* receive \\+w greater|strong=\"G4771\"\\+w* condemnation.*" + }, + { + "verseNum": 14, + "text": "“But woe to you, scribes and Pharisees, hypocrites! Because you shut up the Kingdom of Heaven against men; for you don’t enter in yourselves, neither do you allow those who are entering in to enter.*+ 23:14 Some Greek texts reverse the order of verses 13 and 14, and some omit verse 13, numbering verse 14 as 13. NU omits verse 14.*" + }, + { + "verseNum": 15, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w travel|strong=\"G4013\"\\+w* \\+w around|strong=\"G4013\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w land|strong=\"G3584\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w proselyte|strong=\"G4339\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w twice|strong=\"G1362\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w much|strong=\"G1362\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Gehenna*+ 23:15 or, Hell* \\+w as|strong=\"G2532\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w gold|strong=\"G5557\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w obligated|strong=\"G3784\"\\+w*.’ *" + }, + { + "verseNum": 17, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w fools|strong=\"G3474\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w gold|strong=\"G5557\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w temple|strong=\"G3485\"\\+w* \\+w that|strong=\"G3588\"\\+w* sanctifies \\+w the|strong=\"G2532\"\\+w* \\+w gold|strong=\"G5557\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w And|strong=\"G2532\"\\+w*, ‘\\+w Whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w gift|strong=\"G1435\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w obligated|strong=\"G3784\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "\\+w You|strong=\"G5101\"\\+w* \\+w blind|strong=\"G5185\"\\+w* fools! \\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w gift|strong=\"G1435\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w altar|strong=\"G2379\"\\+w* \\+w that|strong=\"G3588\"\\+w* sanctifies \\+w the|strong=\"G3588\"\\+w* \\+w gift|strong=\"G1435\"\\+w*? *" + }, + { + "verseNum": 20, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w altar|strong=\"G2379\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w everything|strong=\"G3956\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w living|strong=\"G2730\"\\+w**+ 23:21 NU reads “lives”* \\+w in|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w swears|strong=\"G3660\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sits|strong=\"G2521\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 23, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* tithe \\+w mint|strong=\"G2238\"\\+w*, dill, \\+w and|strong=\"G2532\"\\+w* cumin,*+ 23:23 cumin is an aromatic seed from Cuminum cyminum, resembling caraway in flavor and appearance. It is used as a spice.* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* undone \\+w the|strong=\"G2532\"\\+w* weightier matters \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*: \\+w justice|strong=\"G2920\"\\+w*, \\+w mercy|strong=\"G1656\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3361\"\\+w* undone. *" + }, + { + "verseNum": 24, + "text": "\\+w You|strong=\"G5185\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guides|strong=\"G3595\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w strain|strong=\"G1368\"\\+w* out \\+w a|strong=\"G1161\"\\+w* \\+w gnat|strong=\"G2971\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w swallow|strong=\"G2666\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w camel|strong=\"G2574\"\\+w*! *" + }, + { + "verseNum": 25, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w clean|strong=\"G2511\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G3953\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G1537\"\\+w* extortion \\+w and|strong=\"G2532\"\\+w* unrighteousness.*+ 23:25 TR reads “self-indulgence” instead of “unrighteousness”*" + }, + { + "verseNum": 26, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w*, \\+w first|strong=\"G4413\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inside|strong=\"G1787\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G3953\"\\+w*, \\+w that|strong=\"G2443\"\\+w* its \\+w outside|strong=\"G1622\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w also|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 27, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w like|strong=\"G3945\"\\+w* whitened \\+w tombs|strong=\"G5028\"\\+w*, \\+w which|strong=\"G3748\"\\+w* \\+w outwardly|strong=\"G1855\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w beautiful|strong=\"G5611\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w men|strong=\"G3956\"\\+w*’s \\+w bones|strong=\"G3747\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* uncleanness. *" + }, + { + "verseNum": 28, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w outwardly|strong=\"G1855\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w men|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w inwardly|strong=\"G2081\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w full|strong=\"G3324\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w hypocrisy|strong=\"G5272\"\\+w* \\+w and|strong=\"G2532\"\\+w* iniquity.*" + }, + { + "verseNum": 29, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w scribes|strong=\"G1122\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w decorate|strong=\"G2885\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w If|strong=\"G1487\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w lived|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*, \\+w we|strong=\"G2249\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w partakers|strong=\"G2844\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* blood \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.’ *" + }, + { + "verseNum": 31, + "text": "\\+w Therefore|strong=\"G5620\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w to|strong=\"G1438\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w killed|strong=\"G5407\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Fill|strong=\"G4137\"\\+w* \\+w up|strong=\"G2532\"\\+w*, \\+w then|strong=\"G2532\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w You|strong=\"G4459\"\\+w* \\+w serpents|strong=\"G3789\"\\+w*, \\+w you|strong=\"G4459\"\\+w* \\+w offspring|strong=\"G1081\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w vipers|strong=\"G2191\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G4459\"\\+w* \\+w you|strong=\"G4459\"\\+w* \\+w escape|strong=\"G5343\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w of|strong=\"G3588\"\\+w* Gehenna?*+ 23:33 or, Hell*" + }, + { + "verseNum": 34, + "text": "\\+w Therefore|strong=\"G1223\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* send \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w wise|strong=\"G4680\"\\+w* \\+w men|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*. \\+w Some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w and|strong=\"G2532\"\\+w* \\+w crucify|strong=\"G4717\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w city|strong=\"G4172\"\\+w*, *" + }, + { + "verseNum": 35, + "text": "\\+w that|strong=\"G3739\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* blood \\+w shed|strong=\"G1632\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G5207\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* Abel \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G5207\"\\+w* Zachariah \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Barachiah, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w killed|strong=\"G5407\"\\+w* \\+w between|strong=\"G3342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sanctuary|strong=\"G3485\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.*" + }, + { + "verseNum": 37, + "text": "“\\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w who|strong=\"G3739\"\\+w* kills \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3036\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w her|strong=\"G1438\"\\+w*! \\+w How|strong=\"G4212\"\\+w* \\+w often|strong=\"G4212\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w gathered|strong=\"G1996\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w together|strong=\"G1996\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hen|strong=\"G3733\"\\+w* \\+w gathers|strong=\"G1996\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w chicks|strong=\"G3556\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w wings|strong=\"G4420\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w*! *" + }, + { + "verseNum": 38, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G3708\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G3588\"\\+w* left \\+w to|strong=\"G3708\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desolate|strong=\"G2048\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w now|strong=\"G3756\"\\+w* \\+w on|strong=\"G1722\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G2127\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*!’”*+ 23:39 Psalms 118:26 *" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G4198\"* on|strong=\"G4198\"* his|strong=\"G2532\"* way|strong=\"G4198\"*. His|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1925\"* him|strong=\"G3588\"* the|strong=\"G2532\"* buildings|strong=\"G3619\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* see \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Most|strong=\"G3037\"\\+w* \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1161\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* left \\+w here|strong=\"G5602\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, the|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, saying|strong=\"G3004\"*, “Tell|strong=\"G3004\"* us|strong=\"G3004\"*, when|strong=\"G1161\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1510\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* of|strong=\"G2532\"* your|strong=\"G4674\"* coming|strong=\"G3952\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G4930\"* of|strong=\"G2532\"* the|strong=\"G2532\"* age?”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Be|strong=\"G2532\"\\+w* careful \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w leads|strong=\"G4105\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w You|strong=\"G3708\"\\+w* \\+w will|strong=\"G3195\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* rumors \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w*. \\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3708\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w troubled|strong=\"G2360\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w yet|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G2596\"\\+w* kingdom; \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w famines|strong=\"G3042\"\\+w*, plagues, \\+w and|strong=\"G2532\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* beginning \\+w of|strong=\"G3956\"\\+w* \\+w birth|strong=\"G5604\"\\+w* \\+w pains|strong=\"G5604\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* oppression \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* kill \\+w you|strong=\"G5210\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w one|strong=\"G3404\"\\+w* another, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w one|strong=\"G3404\"\\+w* another. *" + }, + { + "verseNum": 11, + "text": "\\+w Many|strong=\"G4183\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Because|strong=\"G1223\"\\+w* iniquity \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w multiplied|strong=\"G4129\"\\+w*, \\+w the|strong=\"G2532\"\\+w* love \\+w of|strong=\"G1223\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w grow|strong=\"G5594\"\\+w* \\+w cold|strong=\"G5594\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* Kingdom \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G3625\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w*.*" + }, + { + "verseNum": 15, + "text": "“\\+w When|strong=\"G3752\"\\+w*, \\+w therefore|strong=\"G3767\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* abomination \\+w of|strong=\"G1223\"\\+w* \\+w desolation|strong=\"G2050\"\\+w*,*+ 24:15 Daniel 9:27; 11:31; 12:11* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w spoken|strong=\"G3004\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w Daniel|strong=\"G1158\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*, \\+w standing|strong=\"G2476\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy \\+w place|strong=\"G5117\"\\+w* (\\+w let|strong=\"G3767\"\\+w* \\+w the|strong=\"G1722\"\\+w* reader \\+w understand|strong=\"G3539\"\\+w*), *" + }, + { + "verseNum": 16, + "text": "\\+w then|strong=\"G5119\"\\+w* let \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "Let \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1909\"\\+w* take \\+w out|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field \\+w not|strong=\"G3361\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w child|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w nursing|strong=\"G2337\"\\+w* mothers \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! *" + }, + { + "verseNum": 20, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G3366\"\\+w* \\+w flight|strong=\"G5437\"\\+w* \\+w will|strong=\"G1096\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w winter|strong=\"G5494\"\\+w* \\+w nor|strong=\"G3366\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w then|strong=\"G5119\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w suffering|strong=\"G2347\"\\+w*,*+ 24:21 or, oppression* \\+w such|strong=\"G3634\"\\+w* \\+w as|strong=\"G3634\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w the|strong=\"G3588\"\\+w* beginning \\+w of|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G3568\"\\+w*, \\+w no|strong=\"G3756\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w ever|strong=\"G3756\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Unless|strong=\"G1487\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w*, \\+w no|strong=\"G3756\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1223\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones, \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* tells \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*!’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w There|strong=\"G3004\"\\+w*!’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w christs|strong=\"G5580\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G1325\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* \\+w ones|strong=\"G3173\"\\+w*.*" + }, + { + "verseNum": 25, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G3708\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w told|strong=\"G4302\"\\+w* \\+w you|strong=\"G5210\"\\+w* beforehand. *" + }, + { + "verseNum": 26, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w*,’ don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*; \\+w or|strong=\"G3361\"\\+w* ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w rooms|strong=\"G5009\"\\+w*,’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* lightning \\+w flashes|strong=\"G5316\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* east, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w seen|strong=\"G5316\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w coming|strong=\"G3952\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G4430\"\\+w* \\+w wherever|strong=\"G3699\"\\+w* \\+w the|strong=\"G3588\"\\+w* carcass \\+w is|strong=\"G1510\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G3588\"\\+w* vultures*+ 24:28 or, eagles* \\+w gather|strong=\"G4863\"\\+w* \\+w together|strong=\"G4863\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w suffering|strong=\"G2347\"\\+w**+ 24:29 or, oppression* \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w darkened|strong=\"G4654\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w moon|strong=\"G4582\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w light|strong=\"G5338\"\\+w*, \\+w the|strong=\"G2532\"\\+w* stars \\+w will|strong=\"G2532\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*;*+ 24:29 Isaiah 13:10; 34:4 *" + }, + { + "verseNum": 30, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w appear|strong=\"G5316\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w mourn|strong=\"G2875\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* angels \\+w with|strong=\"G3326\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* sound \\+w of|strong=\"G1537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w trumpet|strong=\"G4536\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w together|strong=\"G1996\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* \\+w ones|strong=\"G3173\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5064\"\\+w* winds, \\+w from|strong=\"G1537\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w end|strong=\"G3326\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 32, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w* \\+w learn|strong=\"G3129\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w*: \\+w When|strong=\"G3752\"\\+w* \\+w its|strong=\"G1631\"\\+w* \\+w branch|strong=\"G2798\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w become|strong=\"G1096\"\\+w* tender \\+w and|strong=\"G2532\"\\+w* produces \\+w its|strong=\"G1631\"\\+w* \\+w leaves|strong=\"G5444\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doors|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 24:34 The word for “generation” (genea) can also be translated as “race.”* \\+w will|strong=\"G3956\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*,*+ 24:36 NU adds “nor the son”* \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w only|strong=\"G3441\"\\+w*.*" + }, + { + "verseNum": 37, + "text": "\\+w As|strong=\"G5618\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w were|strong=\"G1510\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w coming|strong=\"G3952\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w eating|strong=\"G5176\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w marrying|strong=\"G1060\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w giving|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* ship, *" + }, + { + "verseNum": 39, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w all|strong=\"G2532\"\\+w* away, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w men|strong=\"G1417\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field: \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left. *" + }, + { + "verseNum": 41, + "text": "\\+w Two|strong=\"G1417\"\\+w* \\+w women|strong=\"G1417\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* grinding \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mill|strong=\"G3458\"\\+w*: \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* left. *" + }, + { + "verseNum": 42, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w what|strong=\"G4169\"\\+w* hour \\+w your|strong=\"G2962\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w this|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* master \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w night|strong=\"G5438\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G1439\"\\+w* \\+w have|strong=\"G2532\"\\+w* watched, \\+w and|strong=\"G2532\"\\+w* \\+w would|strong=\"G1439\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w allowed|strong=\"G1439\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w broken|strong=\"G1358\"\\+w* \\+w into|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ready|strong=\"G2092\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G1380\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*.*" + }, + { + "verseNum": 45, + "text": "“\\+w Who|strong=\"G3739\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w household|strong=\"G3610\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w food|strong=\"G5160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w due|strong=\"G1722\"\\+w* \\+w season|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 46, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w when|strong=\"G2064\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w has|strong=\"G3748\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w evil|strong=\"G2556\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, ‘\\+w My|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w delaying|strong=\"G5549\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w coming|strong=\"G5549\"\\+w*,’ *" + }, + { + "verseNum": 49, + "text": "\\+w and|strong=\"G2532\"\\+w* begins \\+w to|strong=\"G2532\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w fellow|strong=\"G4889\"\\+w* \\+w servants|strong=\"G4889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w drunkards|strong=\"G3184\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w the|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G4328\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w it|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 51, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cut|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w pieces|strong=\"G1371\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w appoint|strong=\"G5087\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w portion|strong=\"G3313\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w where|strong=\"G5087\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* grinding \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w*. *" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1519\"\\+w* Kingdom \\+w of|strong=\"G3588\"\\+w* \\+w Heaven|strong=\"G3772\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w like|strong=\"G3666\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w* \\+w and|strong=\"G3772\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G5222\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Five|strong=\"G4002\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w foolish|strong=\"G3474\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w wise|strong=\"G5429\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w foolish|strong=\"G3474\"\\+w*, \\+w when|strong=\"G3326\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*, \\+w took|strong=\"G2983\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G1438\"\\+w* vessels \\+w with|strong=\"G3326\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Now|strong=\"G1161\"\\+w* \\+w while|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* delayed, \\+w they|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w slumbered|strong=\"G3573\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w slept|strong=\"G2518\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w midnight|strong=\"G3319\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w cry|strong=\"G2906\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*! \\+w The|strong=\"G1519\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1831\"\\+w*! \\+w Come|strong=\"G1096\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w*!’ *" + }, + { + "verseNum": 7, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w arose|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w trimmed|strong=\"G2885\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lamps|strong=\"G2985\"\\+w*.*+ 25:7 The end of the wick of an oil lamp needs to be cut off periodically to avoid having it become clogged with carbon deposits. The wick height is also adjusted so that the flame burns evenly and gives good light without producing a lot of smoke.*" + }, + { + "verseNum": 8, + "text": "\\+w The|strong=\"G1537\"\\+w* \\+w foolish|strong=\"G3474\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w wise|strong=\"G5429\"\\+w*, ‘\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w oil|strong=\"G1637\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w our|strong=\"G1537\"\\+w* \\+w lamps|strong=\"G2985\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G4570\"\\+w* \\+w out|strong=\"G1537\"\\+w*.’ *" + }, + { + "verseNum": 9, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G3588\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* enough \\+w for|strong=\"G4314\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w You|strong=\"G5210\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w rather|strong=\"G3123\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sell|strong=\"G4453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* buy \\+w for|strong=\"G4314\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w While|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w went|strong=\"G2064\"\\+w* \\+w away|strong=\"G3326\"\\+w* \\+w to|strong=\"G1519\"\\+w* buy, \\+w the|strong=\"G2532\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w went|strong=\"G2064\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w shut|strong=\"G2808\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Afterward|strong=\"G5305\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3062\"\\+w* \\+w virgins|strong=\"G3933\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, open \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’ *" + }, + { + "verseNum": 12, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 13, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* Son \\+w of|strong=\"G2250\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w is|strong=\"G3588\"\\+w* coming.*" + }, + { + "verseNum": 14, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w going|strong=\"G2532\"\\+w* \\+w into|strong=\"G3860\"\\+w* \\+w another|strong=\"G3588\"\\+w* country, \\+w who|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w entrusted|strong=\"G3860\"\\+w* \\+w his|strong=\"G2398\"\\+w* goods \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w To|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*,*+ 25:15 A talent is about 30 kilograms or 66 pounds (usually used to weigh silver unless otherwise specified)* \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w ability|strong=\"G1411\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w his|strong=\"G2398\"\\+w* journey. *" + }, + { + "verseNum": 16, + "text": "Immediately \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w traded|strong=\"G2038\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w In|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*, \\+w he|strong=\"G3588\"\\+w* also \\+w who|strong=\"G3588\"\\+w* got \\+w the|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* talent \\+w went|strong=\"G2532\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w dug|strong=\"G3736\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w his|strong=\"G2983\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* money.*" + }, + { + "verseNum": 19, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G4183\"\\+w* \\+w time|strong=\"G5550\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w settled|strong=\"G4868\"\\+w* \\+w accounts|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w brought|strong=\"G4374\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w in|strong=\"G2532\"\\+w* addition \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 21, + "text": "“\\+w His|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G5346\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G2095\"\\+w*, \\+w good|strong=\"G2095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w Enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* got \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w gained|strong=\"G2770\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w talents|strong=\"G5007\"\\+w* \\+w in|strong=\"G2532\"\\+w* addition \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’ *" + }, + { + "verseNum": 23, + "text": "“\\+w His|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G5346\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G2095\"\\+w*, \\+w good|strong=\"G2095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w Enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*" + }, + { + "verseNum": 24, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w came|strong=\"G4334\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hard|strong=\"G4642\"\\+w* \\+w man|strong=\"G1520\"\\+w*, \\+w reaping|strong=\"G2325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gathering|strong=\"G4863\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w scatter|strong=\"G1287\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w Behold|strong=\"G2396\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w yours|strong=\"G4771\"\\+w*.’*" + }, + { + "verseNum": 26, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G3754\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w slothful|strong=\"G3636\"\\+w* \\+w servant|strong=\"G1401\"\\+w*. \\+w You|strong=\"G3754\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w scatter|strong=\"G1287\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* deposited \\+w my|strong=\"G1699\"\\+w* money \\+w with|strong=\"G4862\"\\+w* \\+w the|strong=\"G2532\"\\+w* bankers, \\+w and|strong=\"G2532\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G1163\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2865\"\\+w* \\+w back|strong=\"G2865\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w with|strong=\"G4862\"\\+w* \\+w interest|strong=\"G5110\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Take|strong=\"G2532\"\\+w* away \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w talent|strong=\"G5007\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w talents|strong=\"G5007\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away. *" + }, + { + "verseNum": 30, + "text": "\\+w Throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w the|strong=\"G2532\"\\+w* unprofitable \\+w servant|strong=\"G1401\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outer|strong=\"G1857\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*, \\+w where|strong=\"G1519\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w teeth|strong=\"G3599\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Before|strong=\"G1715\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w gathered|strong=\"G4863\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* separate \\+w them|strong=\"G3588\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w another|strong=\"G1438\"\\+w*, \\+w as|strong=\"G5618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* separates \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w goats|strong=\"G2056\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w set|strong=\"G2476\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w goats|strong=\"G2055\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w left|strong=\"G2176\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w Then|strong=\"G5119\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w King|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1537\"\\+w* \\+w his|strong=\"G3588\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, ‘\\+w Come|strong=\"G1205\"\\+w*, \\+w blessed|strong=\"G2127\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w inherit|strong=\"G2816\"\\+w* \\+w the|strong=\"G1537\"\\+w* Kingdom \\+w prepared|strong=\"G2090\"\\+w* \\+w for|strong=\"G2090\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*; *" + }, + { + "verseNum": 35, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w food|strong=\"G5315\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4222\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w naked|strong=\"G1131\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w clothed|strong=\"G4016\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* sick \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w visited|strong=\"G1980\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 37, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w will|strong=\"G2532\"\\+w* answer \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hungry|strong=\"G3983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w feed|strong=\"G5142\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G4222\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4222\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G2532\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w naked|strong=\"G1131\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clothe|strong=\"G4016\"\\+w* \\+w you|strong=\"G4771\"\\+w*? *" + }, + { + "verseNum": 39, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* sick \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*?’*" + }, + { + "verseNum": 40, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w King|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* answer \\+w them|strong=\"G3588\"\\+w*, ‘Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers,*+ 25:40 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* \\+w you|strong=\"G5210\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 41, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G2176\"\\+w*, ‘\\+w Depart|strong=\"G4198\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w cursed|strong=\"G2672\"\\+w*, \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w fire|strong=\"G4442\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w prepared|strong=\"G2090\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* angels; *" + }, + { + "verseNum": 42, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* didn’t \\+w give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w food|strong=\"G5315\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*; \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4222\"\\+w*; *" + }, + { + "verseNum": 43, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w take|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w*; \\+w naked|strong=\"G1131\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w clothe|strong=\"G4016\"\\+w* \\+w me|strong=\"G1473\"\\+w*; sick, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’t \\+w visit|strong=\"G1980\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 44, + "text": "“\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* answer, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stranger|strong=\"G3581\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w naked|strong=\"G1131\"\\+w*, \\+w or|strong=\"G2228\"\\+w* sick, \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t help \\+w you|strong=\"G4771\"\\+w*?’*" + }, + { + "verseNum": 45, + "text": "“\\+w Then|strong=\"G5119\"\\+w* \\+w he|strong=\"G3778\"\\+w* \\+w will|strong=\"G1473\"\\+w* answer \\+w them|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘Most \\+w certainly|strong=\"G1909\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 46, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w go|strong=\"G1519\"\\+w* away \\+w into|strong=\"G1519\"\\+w* eternal \\+w punishment|strong=\"G2851\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w into|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* finished|strong=\"G5055\"* all|strong=\"G3956\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 2, + "text": "“\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1096\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w crucified|strong=\"G4717\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* scribes, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* in|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Caiaphas|strong=\"G2533\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* took|strong=\"G2902\"* counsel|strong=\"G4823\"* together|strong=\"G4823\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* take|strong=\"G2902\"* Jesus|strong=\"G2424\"* by|strong=\"G2532\"* deceit|strong=\"G1388\"* and|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* said|strong=\"G3004\"*, “Not|strong=\"G3361\"* during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, lest|strong=\"G3361\"* a|strong=\"G1096\"* riot|strong=\"G2351\"* occur|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* was|strong=\"G1096\"* in|strong=\"G1722\"* Bethany, in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G1722\"* Simon|strong=\"G4613\"* the|strong=\"G1722\"* leper|strong=\"G3015\"*," + }, + { + "verseNum": 7, + "text": "a|strong=\"G2192\"* woman|strong=\"G1135\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* having|strong=\"G2192\"* an|strong=\"G2192\"* alabaster jar of|strong=\"G2532\"* very|strong=\"G2532\"* expensive|strong=\"G3464\"* ointment|strong=\"G3464\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* poured|strong=\"G2532\"* it|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* as|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1909\"* the|strong=\"G2532\"* table." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* this|strong=\"G3778\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* indignant, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* this|strong=\"G3778\"* waste?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* ointment might|strong=\"G1410\"* have|strong=\"G2532\"* been|strong=\"G2532\"* sold|strong=\"G4097\"* for|strong=\"G1063\"* much|strong=\"G4183\"* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*.”" + }, + { + "verseNum": 10, + "text": "However|strong=\"G1161\"*, knowing|strong=\"G1097\"* this|strong=\"G3588\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w trouble|strong=\"G2873\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w*? \\+w She|strong=\"G1161\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w done|strong=\"G2038\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G1438\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1909\"\\+w* pouring \\+w this|strong=\"G3778\"\\+w* \\+w ointment|strong=\"G3464\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w she|strong=\"G1063\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w prepare|strong=\"G1779\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w burial|strong=\"G1779\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w wherever|strong=\"G3699\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w what|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w memorial|strong=\"G3422\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1437\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "Then|strong=\"G5119\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G4314\"* twelve|strong=\"G1427\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, went|strong=\"G4198\"* to|strong=\"G4314\"* the|strong=\"G4314\"* chief priests" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G4771\"* willing|strong=\"G2309\"* to|strong=\"G2532\"* give|strong=\"G1325\"* me|strong=\"G1325\"* if|strong=\"G2532\"* I|strong=\"G1473\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G4771\"*?” So|strong=\"G2532\"* they|strong=\"G2532\"* weighed|strong=\"G2476\"* out|strong=\"G2532\"* for|strong=\"G1161\"* him|strong=\"G3588\"* thirty|strong=\"G5144\"* pieces of|strong=\"G2532\"* silver." + }, + { + "verseNum": 16, + "text": "From|strong=\"G2532\"* that|strong=\"G2443\"* time|strong=\"G5119\"* he|strong=\"G2532\"* sought|strong=\"G2212\"* opportunity|strong=\"G2120\"* to|strong=\"G2443\"* betray|strong=\"G3860\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* day|strong=\"G3588\"* of|strong=\"G2424\"* unleavened bread, the|strong=\"G1161\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G3004\"* you|strong=\"G4771\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G3004\"* prepare|strong=\"G2090\"* for|strong=\"G1161\"* you|strong=\"G4771\"* to|strong=\"G3004\"* eat|strong=\"G2068\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G2532\"\\+w* person, \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w*, “\\+w My|strong=\"G1473\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w hand|strong=\"G1451\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w keep|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* house \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*.”’”*" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* did|strong=\"G4160\"* as|strong=\"G5613\"* Jesus|strong=\"G2424\"* commanded|strong=\"G4929\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G3588\"* come|strong=\"G1096\"*, he|strong=\"G1161\"* was|strong=\"G1096\"* reclining at|strong=\"G1161\"* the|strong=\"G1161\"* table with|strong=\"G3326\"* the|strong=\"G1161\"* twelve|strong=\"G1427\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G2532\"* eating|strong=\"G2068\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* exceedingly|strong=\"G4970\"* sorrowful|strong=\"G3076\"*, and|strong=\"G2532\"* each|strong=\"G1538\"* began to|strong=\"G2532\"* ask|strong=\"G3004\"* him|strong=\"G2532\"*, “It|strong=\"G2532\"* isn’t me|strong=\"G1473\"*, is|strong=\"G1510\"* it|strong=\"G2532\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dipped|strong=\"G1686\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* dish \\+w will|strong=\"G1473\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*! \\+w It|strong=\"G1161\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, answered|strong=\"G3004\"*, “It|strong=\"G1161\"* isn’t|strong=\"G3588\"* me|strong=\"G1473\"*, is|strong=\"G1510\"* it|strong=\"G1161\"*, Rabbi|strong=\"G4461\"*?”" + }, + { + "verseNum": 26, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* eating|strong=\"G2068\"*, Jesus|strong=\"G2424\"* took|strong=\"G2983\"* bread, gave|strong=\"G1325\"* thanks for|strong=\"G1161\"*+ 26:26 TR reads “blessed” instead of “gave thanks for”* it|strong=\"G2532\"*, and|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"*. He|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w*, \\+w eat|strong=\"G2068\"\\+w*; \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w body|strong=\"G4983\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*, gave|strong=\"G1325\"* thanks|strong=\"G2168\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G1325\"*, saying|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G2532\"\\+w*, *" + }, + { + "verseNum": 28, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1519\"\\+w* new \\+w covenant|strong=\"G1242\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* remission \\+w of|strong=\"G4012\"\\+w* sins. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine \\+w from|strong=\"G1537\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w on|strong=\"G1722\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G1161\"\\+w* anew \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s Kingdom.” *" + }, + { + "verseNum": 30, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* sung a|strong=\"G2532\"* hymn|strong=\"G5214\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3956\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w* \\+w because|strong=\"G1063\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w tonight|strong=\"G3571\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w strike|strong=\"G3960\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flock|strong=\"G4167\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w scattered|strong=\"G1287\"\\+w*.’*+ 26:31 Zechariah 13:7*" + }, + { + "verseNum": 32, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w go|strong=\"G4254\"\\+w* \\+w before|strong=\"G4254\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Even|strong=\"G1161\"* if|strong=\"G1487\"* all|strong=\"G3956\"* will|strong=\"G1473\"* be|strong=\"G3956\"* made|strong=\"G1161\"* to|strong=\"G3004\"* stumble|strong=\"G4624\"* because|strong=\"G1722\"* of|strong=\"G1722\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* never|strong=\"G3763\"* be|strong=\"G3956\"* made|strong=\"G1161\"* to|strong=\"G3004\"* stumble|strong=\"G4624\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Most certainly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w tonight|strong=\"G3571\"\\+w*, \\+w before|strong=\"G4250\"\\+w* \\+w the|strong=\"G1722\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Even|strong=\"G2532\"* if|strong=\"G2579\"* I|strong=\"G1473\"* must|strong=\"G1163\"* die with|strong=\"G4862\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* deny|strong=\"G3588\"* you|strong=\"G4771\"*.” All|strong=\"G3956\"* of|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* said|strong=\"G3004\"* likewise|strong=\"G3668\"*." + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* with|strong=\"G3326\"* them|strong=\"G3588\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G1563\"* called|strong=\"G3004\"* Gethsemane|strong=\"G1068\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Sit|strong=\"G2523\"\\+w* \\+w here|strong=\"G1519\"\\+w*, \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w go|strong=\"G2064\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G2532\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* sorrowful|strong=\"G3076\"* and|strong=\"G2532\"* severely troubled." + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exceedingly|strong=\"G1510\"\\+w* \\+w sorrowful|strong=\"G4036\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*. \\+w Stay|strong=\"G3306\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* went|strong=\"G4334\"* forward|strong=\"G4334\"* a|strong=\"G5613\"* little|strong=\"G3398\"*, fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w nevertheless|strong=\"G4133\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"*, “\\+w What|strong=\"G3588\"\\+w*, couldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*? *" + }, + { + "verseNum": 41, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w willing|strong=\"G4289\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G3588\"\\+w* weak.”*" + }, + { + "verseNum": 42, + "text": "Again|strong=\"G3825\"*, a|strong=\"G1096\"* second|strong=\"G1208\"* time|strong=\"G1208\"* he|strong=\"G3778\"* went|strong=\"G3588\"* away|strong=\"G3928\"* and|strong=\"G3962\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G1410\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G1487\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w desire|strong=\"G2307\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, for|strong=\"G1063\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* were|strong=\"G1510\"* heavy." + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* left them|strong=\"G3588\"* again|strong=\"G3825\"*, went|strong=\"G2532\"* away, and|strong=\"G2532\"* prayed|strong=\"G4336\"* a|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, saying|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G2532\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 45, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w still|strong=\"G2064\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w* \\+w and|strong=\"G2532\"\\+w* resting? \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* sinners. *" + }, + { + "verseNum": 46, + "text": "\\+w Arise|strong=\"G1453\"\\+w*, let’s \\+w be|strong=\"G3588\"\\+w* going. \\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.” *" + }, + { + "verseNum": 47, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, behold|strong=\"G2400\"*, Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, came|strong=\"G2064\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* with|strong=\"G3326\"* swords|strong=\"G3162\"* and|strong=\"G2532\"* clubs|strong=\"G3586\"*, from|strong=\"G2064\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 48, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"* had|strong=\"G1510\"* given|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G1510\"* sign|strong=\"G4592\"*, saying|strong=\"G3004\"*, “Whoever|strong=\"G3739\"* I|strong=\"G3739\"* kiss|strong=\"G5368\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1161\"* one|strong=\"G3739\"*. Seize|strong=\"G2902\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 49, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Greetings|strong=\"G5463\"*, Rabbi|strong=\"G4461\"*!” and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Friend|strong=\"G2083\"\\+w*, \\+w why|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w here|strong=\"G3918\"\\+w*?”*" + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G3708\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* drew|strong=\"G2532\"* his|strong=\"G3708\"* sword|strong=\"G3162\"*, and|strong=\"G2532\"* struck|strong=\"G3960\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G3708\"* ear|strong=\"G5621\"*." + }, + { + "verseNum": 52, + "text": "Then|strong=\"G5119\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Put|strong=\"G3956\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w will|strong=\"G3956\"\\+w* die \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 53, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* couldn’\\+w t|strong=\"G3588\"\\+w* \\+w ask|strong=\"G3870\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* send \\+w me|strong=\"G1473\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w legions|strong=\"G3003\"\\+w* \\+w of|strong=\"G2532\"\\+w* angels? *" + }, + { + "verseNum": 54, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w*?” *" + }, + { + "verseNum": 55, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w seize|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w sat|strong=\"G2516\"\\+w* \\+w daily|strong=\"G2250\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w teaching|strong=\"G1321\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w arrest|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w happened|strong=\"G1096\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w might|strong=\"G3778\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2424\"* taken Jesus|strong=\"G2424\"* led|strong=\"G2424\"* him|strong=\"G3588\"* away to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, where|strong=\"G3699\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 58, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"* to|strong=\"G2532\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* with|strong=\"G3326\"* the|strong=\"G2532\"* officers|strong=\"G5257\"*, to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 59, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* elders, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"* sought|strong=\"G2212\"* false|strong=\"G5577\"* testimony|strong=\"G5577\"* against|strong=\"G2596\"* Jesus|strong=\"G2424\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death|strong=\"G2289\"*," + }, + { + "verseNum": 60, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*. Even|strong=\"G2532\"* though|strong=\"G2532\"* many|strong=\"G4183\"* false|strong=\"G4183\"* witnesses|strong=\"G5575\"* came|strong=\"G4334\"* forward|strong=\"G4334\"*, they|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*. But|strong=\"G1161\"* at|strong=\"G1161\"* last|strong=\"G5305\"* two|strong=\"G1417\"* false|strong=\"G4183\"* witnesses|strong=\"G5575\"* came|strong=\"G4334\"* forward|strong=\"G4334\"*" + }, + { + "verseNum": 61, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* said|strong=\"G3004\"*, ‘I|strong=\"G2532\"* am|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* destroy|strong=\"G2647\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*.’”" + }, + { + "verseNum": 62, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest stood|strong=\"G3588\"* up|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Have|strong=\"G2532\"* you|strong=\"G4771\"* no|strong=\"G3762\"* answer? What|strong=\"G5101\"* is|strong=\"G3588\"* this|strong=\"G3778\"* that|strong=\"G3588\"* these|strong=\"G3778\"* testify|strong=\"G2649\"* against|strong=\"G2649\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 63, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* stayed|strong=\"G1510\"* silent|strong=\"G4623\"*. The|strong=\"G2532\"* high|strong=\"G2532\"* priest answered|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* adjure|strong=\"G1844\"* you|strong=\"G4771\"* by|strong=\"G2596\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"* that|strong=\"G2443\"* you|strong=\"G4771\"* tell|strong=\"G3004\"* us|strong=\"G3004\"* whether|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 64, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w so|strong=\"G2532\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w after|strong=\"G1909\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 65, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* high priest tore|strong=\"G1284\"* his|strong=\"G3708\"* clothing|strong=\"G2440\"*, saying|strong=\"G3004\"*, “He|strong=\"G3588\"* has|strong=\"G2192\"* spoken|strong=\"G3004\"* blasphemy! Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2192\"* need|strong=\"G5532\"* any|strong=\"G2089\"* more|strong=\"G2089\"* witnesses|strong=\"G3144\"*? Behold|strong=\"G2396\"*, now|strong=\"G3568\"* you|strong=\"G3004\"* have|strong=\"G2192\"* heard his|strong=\"G3708\"* blasphemy." + }, + { + "verseNum": 66, + "text": "What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G1380\"*?”" + }, + { + "verseNum": 67, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* spat|strong=\"G1716\"* in|strong=\"G1519\"* his|strong=\"G1519\"* face|strong=\"G4383\"* and|strong=\"G2532\"* beat|strong=\"G2852\"* him|strong=\"G3588\"* with|strong=\"G2532\"* their|strong=\"G2532\"* fists|strong=\"G2852\"*, and|strong=\"G2532\"* some|strong=\"G3588\"* slapped|strong=\"G4474\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 68, + "text": "saying|strong=\"G3004\"*, “Prophesy|strong=\"G4395\"* to|strong=\"G3004\"* us|strong=\"G3004\"*, you|strong=\"G4771\"* Christ|strong=\"G5547\"*! Who|strong=\"G5101\"* hit|strong=\"G3817\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 69, + "text": "Now|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* sitting|strong=\"G2521\"* outside|strong=\"G1854\"* in|strong=\"G1722\"* the|strong=\"G1722\"* court, and|strong=\"G2532\"* a|strong=\"G2532\"* maid|strong=\"G3814\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “You|strong=\"G4771\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* Galilean|strong=\"G1057\"*!”" + }, + { + "verseNum": 70, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* denied it|strong=\"G1161\"* before|strong=\"G1715\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, saying|strong=\"G3004\"*, “I|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G3588\"* talking|strong=\"G3004\"* about|strong=\"G3588\"*.”" + }, + { + "verseNum": 71, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* porch|strong=\"G4440\"*, someone else|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* there|strong=\"G1563\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*.”" + }, + { + "verseNum": 72, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* denied it|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* oath|strong=\"G3727\"*, “I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* man|strong=\"G3756\"*.”" + }, + { + "verseNum": 73, + "text": "After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G1537\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “Surely you|strong=\"G4771\"* are|strong=\"G1510\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* your|strong=\"G2532\"* speech|strong=\"G2981\"* makes|strong=\"G4160\"* you|strong=\"G4771\"* known.”" + }, + { + "verseNum": 74, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* began|strong=\"G5119\"* to|strong=\"G2532\"* curse|strong=\"G2653\"* and|strong=\"G2532\"* to|strong=\"G2532\"* swear|strong=\"G3660\"*, “I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* man|strong=\"G3756\"*!”" + }, + { + "verseNum": 75, + "text": "Peter|strong=\"G4074\"* remembered|strong=\"G3403\"* the|strong=\"G2532\"* word|strong=\"G4487\"* which|strong=\"G3588\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”* Then|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* wept|strong=\"G2799\"* bitterly|strong=\"G4090\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* morning|strong=\"G4405\"* had|strong=\"G2424\"* come|strong=\"G1096\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"* against|strong=\"G2596\"* Jesus|strong=\"G2424\"* to|strong=\"G2532\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death|strong=\"G2289\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*, led him|strong=\"G3588\"* away, and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* Pontius Pilate|strong=\"G4091\"*, the|strong=\"G2532\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* Jesus|strong=\"G2532\"* was|strong=\"G3588\"* condemned|strong=\"G2632\"*, felt|strong=\"G3338\"* remorse|strong=\"G3338\"*, and|strong=\"G2532\"* brought|strong=\"G3748\"* back|strong=\"G4762\"* the|strong=\"G2532\"* thirty|strong=\"G5144\"* pieces of|strong=\"G2532\"* silver to|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"*," + }, + { + "verseNum": 4, + "text": "saying|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G1473\"* sinned in|strong=\"G4314\"* that|strong=\"G3588\"* I|strong=\"G1473\"* betrayed|strong=\"G3860\"* innocent blood.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* threw|strong=\"G4496\"* down|strong=\"G4496\"* the|strong=\"G2532\"* pieces of|strong=\"G2532\"* silver in|strong=\"G1519\"* the|strong=\"G2532\"* sanctuary|strong=\"G3485\"* and|strong=\"G2532\"* departed. Then|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* hanged himself|strong=\"G1519\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1519\"* chief priests took|strong=\"G2983\"* the|strong=\"G1519\"* pieces of|strong=\"G3588\"* silver and|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"*’s not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G1519\"* put|strong=\"G1519\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* treasury|strong=\"G2878\"*, since|strong=\"G1893\"* it|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1519\"* price|strong=\"G5092\"* of|strong=\"G3588\"* blood.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* took|strong=\"G2983\"* counsel|strong=\"G4824\"*, and|strong=\"G1161\"* bought the|strong=\"G1519\"* potter|strong=\"G2763\"*’s field with|strong=\"G1537\"* them|strong=\"G3588\"* to|strong=\"G1519\"* bury|strong=\"G5027\"* strangers|strong=\"G3581\"* in|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* that|strong=\"G3588\"* field has been called|strong=\"G2564\"* “The|strong=\"G3588\"* Field of|strong=\"G3588\"* Blood” to|strong=\"G2193\"* this|strong=\"G3588\"* day|strong=\"G4594\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G2532\"* that|strong=\"G3739\"* which|strong=\"G3739\"* was|strong=\"G3588\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* Jeremiah|strong=\"G2408\"*+ 27:9 some manuscripts omit “Jeremiah”* the|strong=\"G2532\"* prophet|strong=\"G4396\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G2532\"* potter|strong=\"G2763\"*’s|strong=\"G2962\"* field," + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* before|strong=\"G1715\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* accused|strong=\"G2723\"* by|strong=\"G1722\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* elders|strong=\"G4245\"*, he|strong=\"G2532\"* answered nothing|strong=\"G3762\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"G5119\"* Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* you|strong=\"G4771\"* hear how|strong=\"G4214\"* many|strong=\"G4214\"* things|strong=\"G3588\"* they|strong=\"G3588\"* testify|strong=\"G2649\"* against|strong=\"G2649\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* gave|strong=\"G2532\"* him|strong=\"G3588\"* no|strong=\"G3756\"* answer, not|strong=\"G3756\"* even|strong=\"G2532\"* one|strong=\"G1520\"* word|strong=\"G4487\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* marveled|strong=\"G2296\"* greatly|strong=\"G3029\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* at|strong=\"G2596\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* the|strong=\"G1161\"* governor|strong=\"G2232\"* was|strong=\"G3588\"* accustomed|strong=\"G1486\"* to|strong=\"G2596\"* release to|strong=\"G2596\"* the|strong=\"G1161\"* multitude|strong=\"G3793\"* one|strong=\"G1520\"* prisoner|strong=\"G1198\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G1161\"* had|strong=\"G2192\"* then|strong=\"G5119\"* a|strong=\"G2192\"* notable|strong=\"G1978\"* prisoner|strong=\"G1198\"* called|strong=\"G3004\"* Barabbas." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* they|strong=\"G3588\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Whom|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"*? Barabbas, or|strong=\"G2228\"* Jesus|strong=\"G2424\"* who|strong=\"G5101\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* envy|strong=\"G5355\"* they|strong=\"G3754\"* had|strong=\"G3748\"* delivered|strong=\"G3860\"* him|strong=\"G3860\"* up|strong=\"G3860\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat, his|strong=\"G1223\"* wife|strong=\"G1135\"* sent|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Have|strong=\"G2532\"* nothing|strong=\"G3367\"* to|strong=\"G4314\"* do|strong=\"G2532\"* with|strong=\"G4314\"* that|strong=\"G3588\"* righteous|strong=\"G1342\"* man|strong=\"G3367\"*, for|strong=\"G1063\"* I|strong=\"G2532\"* have|strong=\"G2532\"* suffered|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"* today|strong=\"G4594\"* in|strong=\"G1909\"* a|strong=\"G2532\"* dream|strong=\"G3677\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* persuaded|strong=\"G3982\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* to|strong=\"G2443\"* ask for|strong=\"G1161\"* Barabbas and|strong=\"G2532\"* destroy Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* governor|strong=\"G2232\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Which|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* two|strong=\"G1417\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 22, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* shall|strong=\"G5101\"* I|strong=\"G3767\"* do|strong=\"G4160\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"* who|strong=\"G5101\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* governor said|strong=\"G3004\"*, “Why|strong=\"G5101\"*? What|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* he|strong=\"G1161\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G1161\"* when|strong=\"G1161\"* Pilate|strong=\"G4091\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* nothing|strong=\"G3762\"* was|strong=\"G1510\"* being|strong=\"G1510\"* gained, but|strong=\"G1161\"* rather|strong=\"G3123\"* that|strong=\"G3754\"* a|strong=\"G1096\"* disturbance was|strong=\"G1510\"* starting|strong=\"G1096\"*, he|strong=\"G1161\"* took|strong=\"G2983\"* water|strong=\"G5204\"* and|strong=\"G1161\"* washed his|strong=\"G2983\"* hands|strong=\"G5495\"* before|strong=\"G3588\"* the|strong=\"G1161\"* multitude|strong=\"G3793\"*, saying|strong=\"G3004\"*, “I|strong=\"G1161\"* am|strong=\"G1510\"* innocent of|strong=\"G5495\"* the|strong=\"G1161\"* blood of|strong=\"G5495\"* this|strong=\"G3778\"* righteous person|strong=\"G3778\"*. You|strong=\"G5210\"* see|strong=\"G3708\"* to|strong=\"G3004\"* it|strong=\"G3754\"*.”" + }, + { + "verseNum": 25, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* answered|strong=\"G3004\"*, “May|strong=\"G2532\"* his|strong=\"G3956\"* blood be|strong=\"G2532\"* on|strong=\"G1909\"* us|strong=\"G3004\"* and|strong=\"G2532\"* on|strong=\"G1909\"* our|strong=\"G2532\"* children|strong=\"G5043\"*!”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* he|strong=\"G1161\"* released|strong=\"G5119\"* Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G2424\"* he|strong=\"G1161\"* flogged|strong=\"G5417\"* and|strong=\"G1161\"* delivered|strong=\"G3860\"* to|strong=\"G2443\"* be|strong=\"G2443\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"G5119\"* the|strong=\"G1519\"* governor|strong=\"G2232\"*’s soldiers|strong=\"G4757\"* took|strong=\"G3880\"* Jesus|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G1519\"* Praetorium|strong=\"G4232\"*, and|strong=\"G2424\"* gathered|strong=\"G4863\"* the|strong=\"G1519\"* whole|strong=\"G3650\"* garrison together|strong=\"G4863\"* against|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* stripped|strong=\"G1562\"* him|strong=\"G2532\"* and|strong=\"G2532\"* put|strong=\"G4060\"* a|strong=\"G2532\"* scarlet|strong=\"G2847\"* robe|strong=\"G5511\"* on|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* braided|strong=\"G4120\"* a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G1537\"* thorns and|strong=\"G2532\"* put|strong=\"G2007\"* it|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G2007\"* head|strong=\"G2776\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* in|strong=\"G1722\"* his|strong=\"G2007\"* right|strong=\"G1188\"* hand|strong=\"G1188\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* kneeled|strong=\"G1120\"* down|strong=\"G1120\"* before|strong=\"G1715\"* him|strong=\"G3588\"* and|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*!”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* spat|strong=\"G1716\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* struck|strong=\"G5180\"* him|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G2532\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G2532\"* robe|strong=\"G2440\"* off|strong=\"G1562\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G1746\"* his|strong=\"G1519\"* clothes|strong=\"G2440\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* led him|strong=\"G3588\"* away to|strong=\"G1519\"* crucify|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, they|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G2147\"* man|strong=\"G3778\"* of|strong=\"G3686\"* Cyrene|strong=\"G2956\"*, Simon|strong=\"G4613\"* by|strong=\"G3686\"* name|strong=\"G3686\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* compelled him|strong=\"G3588\"* to|strong=\"G2443\"* go|strong=\"G1831\"* with|strong=\"G3588\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* might|strong=\"G3778\"* carry his|strong=\"G3588\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “Golgotha|strong=\"G1115\"*”, that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G1519\"* say|strong=\"G3004\"*, “The|strong=\"G2532\"* place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* skull|strong=\"G2898\"*,”" + }, + { + "verseNum": 34, + "text": "they|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G1325\"* sour wine|strong=\"G3631\"*+ 27:34 or, vinegar* to|strong=\"G2532\"* drink|strong=\"G4095\"* mixed|strong=\"G3396\"* with|strong=\"G3326\"* gall|strong=\"G5521\"*.+ 27:34 Gall is a bitter-tasting, dark green oil from a wormwood plant that is alcoholic in its effect.* When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* tasted|strong=\"G1089\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* would|strong=\"G2309\"* not|strong=\"G3756\"* drink|strong=\"G4095\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* divided|strong=\"G1266\"* his|strong=\"G3588\"* clothing|strong=\"G2440\"* among|strong=\"G1266\"* them|strong=\"G3588\"*, casting lots|strong=\"G2819\"*,+ 27:35 TR adds “that it might be fulfilled which was spoken by the prophet: ‘They divided my garments among them, and for my clothing they cast lots;’” [see Psalms 22:18 and John 19:24]*" + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2521\"* and|strong=\"G2532\"* watched|strong=\"G5083\"* him|strong=\"G2532\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* set|strong=\"G2532\"* up|strong=\"G2532\"* over|strong=\"G1883\"* his|strong=\"G2007\"* head|strong=\"G2776\"* the|strong=\"G2532\"* accusation against him|strong=\"G3588\"* written|strong=\"G1125\"*, “THIS|strong=\"G3778\"* IS|strong=\"G1510\"* JESUS|strong=\"G2424\"*, THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G2532\"* two|strong=\"G1417\"* robbers|strong=\"G3027\"* crucified|strong=\"G4717\"* with|strong=\"G4862\"* him|strong=\"G2532\"*, one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* one|strong=\"G1520\"* on|strong=\"G1537\"* the|strong=\"G2532\"* left|strong=\"G2176\"*." + }, + { + "verseNum": 39, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* passed|strong=\"G3588\"* by|strong=\"G3899\"* blasphemed him|strong=\"G3588\"*, wagging|strong=\"G2795\"* their|strong=\"G3588\"* heads|strong=\"G2776\"*" + }, + { + "verseNum": 40, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “You|strong=\"G1487\"* who|strong=\"G3588\"* destroy|strong=\"G2647\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* and|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"*! If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*!”" + }, + { + "verseNum": 41, + "text": "Likewise|strong=\"G3668\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests also|strong=\"G2532\"* mocking|strong=\"G1702\"* with|strong=\"G3326\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, the|strong=\"G2532\"* Pharisees,+ 27:41 TR omits “the Pharisees”* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 42, + "text": "“He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*. If|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* now|strong=\"G3568\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* will|strong=\"G1510\"* believe|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G3754\"* trusts|strong=\"G3982\"* in|strong=\"G1909\"* God|strong=\"G2316\"*. Let|strong=\"G1510\"* God|strong=\"G2316\"* deliver|strong=\"G4506\"* him|strong=\"G3588\"* now|strong=\"G3568\"*, if|strong=\"G1487\"* he|strong=\"G3754\"* wants|strong=\"G2309\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, ‘I|strong=\"G1063\"* am|strong=\"G1510\"* the|strong=\"G1909\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.’”" + }, + { + "verseNum": 44, + "text": "The|strong=\"G2532\"* robbers|strong=\"G3027\"* also|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4862\"* him|strong=\"G3588\"* cast|strong=\"G2532\"* on|strong=\"G1161\"* him|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2532\"* reproach|strong=\"G3679\"*." + }, + { + "verseNum": 45, + "text": "Now|strong=\"G1161\"* from|strong=\"G3588\"* the|strong=\"G3956\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*+ 27:45 noon* there|strong=\"G1161\"* was|strong=\"G1096\"* darkness|strong=\"G4655\"* over|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G3956\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G3956\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 27:45 3:00 p.m.*" + }, + { + "verseNum": 46, + "text": "About|strong=\"G4012\"* the|strong=\"G1161\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* cried|strong=\"G5610\"* with|strong=\"G2316\"* a|strong=\"G1510\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “\\+w Eli|strong=\"G2241\"\\+w*, \\+w Eli|strong=\"G2241\"\\+w*, lima*+ 27:46 TR reads “lama” instead of “lima”* \\+w sabachthani|strong=\"G4518\"\\+w*?” * That|strong=\"G3588\"* is|strong=\"G1510\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w why|strong=\"G2444\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w forsaken|strong=\"G1459\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*+ 27:46 Psalms 22:1*" + }, + { + "verseNum": 47, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* them|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* there|strong=\"G1563\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* heard it|strong=\"G3754\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 48, + "text": "Immediately|strong=\"G2112\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* sponge|strong=\"G4699\"*, filled|strong=\"G4130\"* it|strong=\"G2532\"* with|strong=\"G1537\"* vinegar|strong=\"G3690\"*, put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G1537\"* a|strong=\"G2532\"* reed|strong=\"G2563\"*, and|strong=\"G2532\"* gave|strong=\"G4222\"* him|strong=\"G2532\"* a|strong=\"G2532\"* drink|strong=\"G4222\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"G1161\"* rest|strong=\"G3062\"* said|strong=\"G3004\"*, “Let|strong=\"G1161\"* him|strong=\"G3588\"* be|strong=\"G3588\"*. Let|strong=\"G1161\"*’s see|strong=\"G3708\"* whether|strong=\"G1487\"* Elijah|strong=\"G2243\"* comes|strong=\"G2064\"* to|strong=\"G3004\"* save|strong=\"G4982\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2896\"* again|strong=\"G3825\"* with|strong=\"G4151\"* a|strong=\"G1161\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, and|strong=\"G1161\"* yielded up his|strong=\"G3588\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*, the|strong=\"G2532\"* veil|strong=\"G2665\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1519\"* two|strong=\"G1417\"* from|strong=\"G2532\"* the|strong=\"G2532\"* top to|strong=\"G1519\"* the|strong=\"G2532\"* bottom|strong=\"G2736\"*. The|strong=\"G2532\"* earth|strong=\"G1093\"* quaked and|strong=\"G2532\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"* were|strong=\"G3588\"* split|strong=\"G4977\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"G2532\"* tombs|strong=\"G3419\"* were|strong=\"G3588\"* opened, and|strong=\"G2532\"* many|strong=\"G4183\"* bodies|strong=\"G4983\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* had|strong=\"G2532\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* were|strong=\"G3588\"* raised|strong=\"G1453\"*;" + }, + { + "verseNum": 53, + "text": "and|strong=\"G2532\"* coming|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tombs|strong=\"G3419\"* after|strong=\"G3326\"* his|strong=\"G1519\"* resurrection|strong=\"G1454\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"* and|strong=\"G2532\"* appeared|strong=\"G1718\"* to|strong=\"G1519\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 54, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* watching|strong=\"G5083\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* earthquake|strong=\"G4578\"* and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* done|strong=\"G1096\"*, were|strong=\"G1510\"* terrified|strong=\"G5399\"*, saying|strong=\"G3004\"*, “Truly|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 55, + "text": "Many|strong=\"G4183\"* women|strong=\"G1135\"* were|strong=\"G1510\"* there|strong=\"G1563\"* watching|strong=\"G2334\"* from|strong=\"G3588\"* afar|strong=\"G3113\"*, who|strong=\"G3588\"* had|strong=\"G2424\"* followed Jesus|strong=\"G2424\"* from|strong=\"G3588\"* Galilee|strong=\"G1056\"*, serving|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 56, + "text": "Among|strong=\"G1722\"* them|strong=\"G3588\"* were|strong=\"G1510\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, Mary|strong=\"G3137\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* James|strong=\"G2385\"* and|strong=\"G2532\"* Joses, and|strong=\"G2532\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G5207\"* the|strong=\"G1722\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*." + }, + { + "verseNum": 57, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* had|strong=\"G2424\"* come|strong=\"G2064\"*, a|strong=\"G1096\"* rich|strong=\"G4145\"* man|strong=\"G4145\"* from|strong=\"G2064\"* Arimathaea named|strong=\"G5122\"* Joseph|strong=\"G2501\"*, who|strong=\"G3739\"* himself was|strong=\"G1096\"* also|strong=\"G2532\"* Jesus|strong=\"G2424\"*’ disciple|strong=\"G3100\"*, came|strong=\"G2064\"*." + }, + { + "verseNum": 58, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* went|strong=\"G4334\"* to|strong=\"G4334\"* Pilate|strong=\"G4091\"* and|strong=\"G4334\"* asked for|strong=\"G3778\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*. Then|strong=\"G5119\"* Pilate|strong=\"G4091\"* commanded|strong=\"G2753\"* the|strong=\"G3588\"* body|strong=\"G4983\"* to|strong=\"G4334\"* be|strong=\"G3588\"* given up|strong=\"G4334\"*." + }, + { + "verseNum": 59, + "text": "Joseph|strong=\"G2501\"* took|strong=\"G2983\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* wrapped|strong=\"G1794\"* it|strong=\"G2532\"* in|strong=\"G2532\"* a|strong=\"G2532\"* clean|strong=\"G2513\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*" + }, + { + "verseNum": 60, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own new|strong=\"G2537\"* tomb|strong=\"G3419\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* cut|strong=\"G2532\"* out|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* rock|strong=\"G4073\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* rolled|strong=\"G4351\"* a|strong=\"G2532\"* large|strong=\"G3173\"* stone|strong=\"G3037\"* against|strong=\"G1722\"* the|strong=\"G1722\"* door|strong=\"G2374\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* departed." + }, + { + "verseNum": 61, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* was|strong=\"G1510\"* there|strong=\"G1563\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* Mary|strong=\"G3137\"*, sitting|strong=\"G2521\"* opposite the|strong=\"G2532\"* tomb." + }, + { + "verseNum": 62, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, which|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G2532\"* day|strong=\"G1887\"* after|strong=\"G3326\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G1887\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* Pilate|strong=\"G4091\"*," + }, + { + "verseNum": 63, + "text": "saying|strong=\"G3004\"*, “Sir|strong=\"G2962\"*, we|strong=\"G3754\"* remember|strong=\"G3403\"* what|strong=\"G3588\"* that|strong=\"G3754\"* deceiver|strong=\"G4108\"* said|strong=\"G3004\"* while|strong=\"G2250\"* he|strong=\"G3754\"* was|strong=\"G3588\"* still|strong=\"G2089\"* alive|strong=\"G2198\"*: ‘After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* I|strong=\"G3754\"* will|strong=\"G2962\"* rise|strong=\"G1453\"* again|strong=\"G1453\"*.’" + }, + { + "verseNum": 64, + "text": "Command|strong=\"G3004\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G2532\"* tomb be|strong=\"G1510\"* made|strong=\"G4413\"* secure until|strong=\"G2193\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"*, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* come|strong=\"G2064\"* at|strong=\"G2250\"* night and|strong=\"G2532\"* steal|strong=\"G2813\"* him|strong=\"G3588\"* away|strong=\"G2813\"*, and|strong=\"G2532\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, ‘He|strong=\"G2532\"* is|strong=\"G1510\"* risen|strong=\"G1453\"* from|strong=\"G2064\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*;’ and|strong=\"G2532\"* the|strong=\"G2532\"* last|strong=\"G2078\"* deception|strong=\"G4106\"* will|strong=\"G1510\"* be|strong=\"G1510\"* worse|strong=\"G5501\"* than|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"*.”" + }, + { + "verseNum": 65, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G5346\"* to|strong=\"G2192\"* them|strong=\"G3588\"*, “You|strong=\"G5613\"* have|strong=\"G2192\"* a|strong=\"G2192\"* guard|strong=\"G2892\"*. Go|strong=\"G5217\"*, make it|strong=\"G5613\"* as|strong=\"G5613\"* secure as|strong=\"G5613\"* you|strong=\"G5613\"* can|strong=\"G1492\"*.”" + }, + { + "verseNum": 66, + "text": "So|strong=\"G1161\"* they|strong=\"G1161\"* went|strong=\"G4198\"* with|strong=\"G3326\"* the|strong=\"G1161\"* guard|strong=\"G2892\"* and|strong=\"G1161\"* made|strong=\"G1161\"* the|strong=\"G1161\"* tomb secure, sealing|strong=\"G4972\"* the|strong=\"G1161\"* stone|strong=\"G3037\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* after|strong=\"G1161\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*, as|strong=\"G1519\"* it|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G1519\"* dawn|strong=\"G2020\"* on|strong=\"G1519\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G2532\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* Mary|strong=\"G3137\"* came|strong=\"G2064\"* to|strong=\"G1519\"* see|strong=\"G2334\"* the|strong=\"G2532\"* tomb." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, for|strong=\"G1063\"* an|strong=\"G2532\"* angel|strong=\"G2597\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* descended|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* and|strong=\"G2532\"* came|strong=\"G4334\"* and|strong=\"G2532\"* rolled|strong=\"G3037\"* away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G1537\"* the|strong=\"G2532\"* door and|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G2532\"* appearance|strong=\"G2397\"* was|strong=\"G1510\"* like|strong=\"G5613\"* lightning, and|strong=\"G2532\"* his|strong=\"G2532\"* clothing|strong=\"G1742\"* white|strong=\"G3022\"* as|strong=\"G5613\"* snow|strong=\"G5510\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1161\"* fear|strong=\"G5401\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, the|strong=\"G2532\"* guards|strong=\"G5083\"* shook|strong=\"G4579\"*, and|strong=\"G2532\"* became|strong=\"G1096\"* like|strong=\"G5613\"* dead|strong=\"G3498\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G1161\"* angel answered|strong=\"G3004\"* the|strong=\"G1161\"* women|strong=\"G1135\"*, “Don’t|strong=\"G3588\"* be|strong=\"G3361\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* I|strong=\"G1161\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* seek|strong=\"G2212\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* has|strong=\"G3748\"* been|strong=\"G3361\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3588\"* is|strong=\"G1510\"* not|strong=\"G3756\"* here|strong=\"G5602\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* has|strong=\"G3708\"* risen|strong=\"G1453\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* he|strong=\"G3588\"* said|strong=\"G3004\"*. Come|strong=\"G1205\"*, see|strong=\"G3708\"* the|strong=\"G3588\"* place|strong=\"G5117\"* where|strong=\"G3699\"* the|strong=\"G3588\"* Lord|strong=\"G3588\"* was|strong=\"G1510\"* lying|strong=\"G2749\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"G4198\"* quickly|strong=\"G5035\"* and|strong=\"G2532\"* tell|strong=\"G3004\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, ‘He|strong=\"G2532\"* has|strong=\"G3708\"* risen|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, he|strong=\"G2532\"* goes|strong=\"G4198\"* before|strong=\"G4254\"* you|strong=\"G5210\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*; there|strong=\"G1563\"* you|strong=\"G5210\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*.’ Behold|strong=\"G2400\"*, I|strong=\"G2532\"* have|strong=\"G2532\"* told|strong=\"G3004\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* departed quickly|strong=\"G5035\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* ran|strong=\"G5143\"* to|strong=\"G2532\"* bring|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* word|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* went|strong=\"G4334\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* his|strong=\"G3708\"* disciples|strong=\"G3588\"*, behold|strong=\"G2400\"*, Jesus|strong=\"G2424\"* met|strong=\"G5221\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Rejoice|strong=\"G5463\"\\+w*!”*" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w Go|strong=\"G5217\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers *+ 28:10 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* while|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* going|strong=\"G4198\"*, behold|strong=\"G2400\"*, some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1519\"* guards came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* and|strong=\"G1161\"* told the|strong=\"G1519\"* chief priests all|strong=\"G1161\"* the|strong=\"G1519\"* things|strong=\"G3588\"* that|strong=\"G3588\"* had|strong=\"G3588\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* assembled|strong=\"G4863\"* with|strong=\"G3326\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* counsel|strong=\"G4824\"*, they|strong=\"G2532\"* gave|strong=\"G1325\"* a|strong=\"G2532\"* large|strong=\"G2425\"* amount of|strong=\"G2532\"* silver to|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*," + }, + { + "verseNum": 13, + "text": "saying|strong=\"G3004\"*, “Say|strong=\"G3004\"* that|strong=\"G3754\"* his|strong=\"G3754\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* by|strong=\"G3004\"* night|strong=\"G3571\"* and|strong=\"G2064\"* stole|strong=\"G2813\"* him|strong=\"G3588\"* away|strong=\"G2813\"* while|strong=\"G2837\"* we|strong=\"G2249\"* slept|strong=\"G2837\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1437\"* this|strong=\"G3778\"* comes|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*’s ears, we|strong=\"G2249\"* will|strong=\"G2532\"* persuade|strong=\"G3982\"* him|strong=\"G3588\"* and|strong=\"G2532\"* make|strong=\"G4160\"* you|strong=\"G5210\"* free of|strong=\"G2532\"* worry.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"G2532\"* they|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* money and|strong=\"G2532\"* did|strong=\"G4160\"* as|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G3588\"* told. This|strong=\"G3778\"* saying|strong=\"G3056\"* was|strong=\"G3588\"* spread|strong=\"G1310\"* abroad|strong=\"G1310\"* among|strong=\"G3844\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* continues until|strong=\"G3360\"* today|strong=\"G4594\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* the|strong=\"G1519\"* eleven|strong=\"G1733\"* disciples|strong=\"G3101\"* went|strong=\"G4198\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* mountain|strong=\"G3735\"* where|strong=\"G3757\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* sent|strong=\"G2424\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* bowed|strong=\"G4352\"* down|strong=\"G4352\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; but|strong=\"G1161\"* some|strong=\"G3588\"* doubted|strong=\"G1365\"*." + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* came|strong=\"G4334\"* to|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Go|strong=\"G4198\"\\+w**+ 28:19 TR and NU add “therefore”* \\+w and|strong=\"G2532\"\\+w* \\+w make|strong=\"G1519\"\\+w* \\+w disciples|strong=\"G3100\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, baptizing \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, *" + }, + { + "verseNum": 20, + "text": "\\+w teaching|strong=\"G1321\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w observe|strong=\"G5083\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w always|strong=\"G3956\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G4930\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* age.”* Amen." + } + ] + } + ] + }, + { + "name": "Mark", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G3588\"* beginning of|strong=\"G2098\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2098\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G3588\"* Son of|strong=\"G2098\"* God|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* one|strong=\"G3588\"* crying in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*," + }, + { + "verseNum": 4, + "text": "John|strong=\"G2491\"* came|strong=\"G1096\"* baptizing+ 1:4 or, immersing* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* and|strong=\"G2532\"* preaching|strong=\"G2784\"* the|strong=\"G1722\"* baptism of|strong=\"G2532\"* repentance|strong=\"G3341\"* for|strong=\"G1519\"* forgiveness of|strong=\"G2532\"* sins." + }, + { + "verseNum": 5, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G5259\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* of|strong=\"G5259\"* Jerusalem|strong=\"G2415\"* went|strong=\"G2532\"* out|strong=\"G1607\"* to|strong=\"G4314\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* baptized by|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"* river|strong=\"G4215\"*, confessing|strong=\"G1843\"* their|strong=\"G2532\"* sins." + }, + { + "verseNum": 6, + "text": "John|strong=\"G2491\"* was|strong=\"G1510\"* clothed|strong=\"G1746\"* with|strong=\"G2532\"* camel|strong=\"G2574\"*’s hair|strong=\"G2359\"* and|strong=\"G2532\"* a|strong=\"G2532\"* leather|strong=\"G1193\"* belt|strong=\"G2223\"* around|strong=\"G4012\"* his|strong=\"G4012\"* waist|strong=\"G3751\"*. He|strong=\"G2532\"* ate|strong=\"G2068\"* locusts and|strong=\"G2532\"* wild|strong=\"G2532\"* honey|strong=\"G3192\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* preached|strong=\"G2784\"*, saying|strong=\"G3004\"*, “After|strong=\"G3694\"* me|strong=\"G1473\"* comes|strong=\"G2064\"* he|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, the|strong=\"G2532\"* strap of|strong=\"G2532\"* whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G2532\"* stoop|strong=\"G2955\"* down|strong=\"G3089\"* and|strong=\"G2532\"* loosen." + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* baptized you|strong=\"G5210\"* in|strong=\"G1722\"*+ 1:8 The Greek word (en) translated here as “in” could also be translated as “with” in some contexts.* water|strong=\"G5204\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* will|strong=\"G1473\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 9, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* from|strong=\"G2064\"* Nazareth|strong=\"G3478\"* of|strong=\"G5259\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* was|strong=\"G1096\"* baptized by|strong=\"G1722\"* John|strong=\"G2491\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*." + }, + { + "verseNum": 10, + "text": "Immediately|strong=\"G2112\"* coming|strong=\"G2597\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* parting and|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* on|strong=\"G1519\"* him|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dove|strong=\"G4058\"*." + }, + { + "verseNum": 11, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* my|strong=\"G1722\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1722\"* whom|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + }, + { + "verseNum": 12, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* drove|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* forty|strong=\"G5062\"* days|strong=\"G2250\"*, tempted|strong=\"G3985\"* by|strong=\"G1722\"* Satan|strong=\"G4567\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* the|strong=\"G1722\"* wild|strong=\"G2342\"* animals; and|strong=\"G2532\"* the|strong=\"G1722\"* angels were|strong=\"G1510\"* serving|strong=\"G1247\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* John|strong=\"G2491\"* was|strong=\"G3588\"* taken|strong=\"G3860\"* into|strong=\"G1519\"* custody|strong=\"G3860\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, preaching|strong=\"G2784\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “\\+w The|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w hand|strong=\"G1448\"\\+w*! \\+w Repent|strong=\"G3340\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "Passing|strong=\"G3855\"* along|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Simon|strong=\"G4613\"* and|strong=\"G2532\"* Andrew, the|strong=\"G1722\"* brother of|strong=\"G2532\"* Simon|strong=\"G4613\"*, casting a|strong=\"G2532\"* net into|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fishermen." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G1096\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1096\"\\+w* fishers \\+w for|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "Immediately|strong=\"G2112\"* they|strong=\"G2532\"* left their|strong=\"G2532\"* nets|strong=\"G1350\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "Going|strong=\"G2532\"* on|strong=\"G1722\"* a|strong=\"G2532\"* little|strong=\"G3641\"* further|strong=\"G3641\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* James|strong=\"G2385\"* the|strong=\"G1722\"* son of|strong=\"G2532\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* his|strong=\"G1438\"* brother, who|strong=\"G3588\"* were|strong=\"G3588\"* also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* mending|strong=\"G2675\"* the|strong=\"G1722\"* nets|strong=\"G1350\"*." + }, + { + "verseNum": 20, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* left their|strong=\"G1438\"* father|strong=\"G3962\"*, Zebedee|strong=\"G2199\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* the|strong=\"G1722\"* hired|strong=\"G3411\"* servants|strong=\"G3411\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* after|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* he|strong=\"G2532\"* entered|strong=\"G1531\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G1438\"* teaching|strong=\"G1321\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* as|strong=\"G5613\"* having|strong=\"G2192\"* authority|strong=\"G1849\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G5613\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*." + }, + { + "verseNum": 23, + "text": "Immediately|strong=\"G2112\"* there|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogue|strong=\"G4864\"* a|strong=\"G2532\"* man with|strong=\"G1722\"* an|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, “Ha! What|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Nazarene|strong=\"G3479\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G2532\"* destroy us|strong=\"G3004\"*? I|strong=\"G1473\"* know|strong=\"G1492\"* who|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G1510\"*: the|strong=\"G2532\"* Holy One|strong=\"G3588\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Be|strong=\"G2532\"\\+w* \\+w quiet|strong=\"G5392\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w him|strong=\"G3588\"\\+w*!” *" + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, convulsing him|strong=\"G3588\"* and|strong=\"G2532\"* crying|strong=\"G5455\"* with|strong=\"G1537\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* amazed|strong=\"G2284\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* questioned|strong=\"G4802\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"*? A|strong=\"G2532\"* new|strong=\"G2537\"* teaching|strong=\"G1322\"*? For|strong=\"G4314\"* with|strong=\"G4314\"* authority|strong=\"G1849\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* even|strong=\"G2532\"* the|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 28, + "text": "The|strong=\"G2532\"* report of|strong=\"G2532\"* him|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"* immediately|strong=\"G2112\"* everywhere|strong=\"G3837\"* into|strong=\"G1519\"* all|strong=\"G3650\"* the|strong=\"G2532\"* region|strong=\"G4066\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"* and|strong=\"G2532\"* its surrounding|strong=\"G4066\"* area." + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G1537\"* Simon|strong=\"G4613\"* and|strong=\"G2532\"* Andrew, with|strong=\"G3326\"* James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* Simon|strong=\"G4613\"*’s wife’s mother lay|strong=\"G2621\"* sick|strong=\"G2621\"* with|strong=\"G2532\"* a|strong=\"G2532\"* fever|strong=\"G4445\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* they|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"* about|strong=\"G4012\"* her|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* came|strong=\"G4334\"* and|strong=\"G2532\"* took|strong=\"G2902\"* her|strong=\"G1438\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* her|strong=\"G1438\"* up|strong=\"G1453\"*. The|strong=\"G2532\"* fever|strong=\"G4446\"* left her|strong=\"G1438\"* immediately,+ 1:31 NU omits “immediately”.* and|strong=\"G2532\"* she|strong=\"G2532\"* served|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "At|strong=\"G4314\"* evening|strong=\"G3798\"*, when|strong=\"G3753\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* had|strong=\"G2192\"* set|strong=\"G2532\"*, they|strong=\"G2532\"* brought|strong=\"G5342\"* to|strong=\"G4314\"* him|strong=\"G3588\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* possessed|strong=\"G2192\"* by|strong=\"G4314\"* demons." + }, + { + "verseNum": 33, + "text": "All|strong=\"G3650\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* gathered|strong=\"G1996\"* together|strong=\"G1996\"* at|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* healed|strong=\"G2323\"* many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2560\"* with|strong=\"G2532\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* many|strong=\"G4183\"* demons|strong=\"G1140\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow the|strong=\"G2532\"* demons|strong=\"G1140\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* knew|strong=\"G1492\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 35, + "text": "Early|strong=\"G4404\"* in|strong=\"G1519\"* the|strong=\"G2532\"* morning|strong=\"G4404\"*, while|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G2532\"* still|strong=\"G3029\"* dark|strong=\"G1773\"*, he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* departed|strong=\"G1831\"* into|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 36, + "text": "Simon|strong=\"G4613\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G3326\"* him|strong=\"G3588\"* searched|strong=\"G2614\"* for|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G2532\"* and|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G2532\"*, “Everyone|strong=\"G3956\"* is|strong=\"G3956\"* looking|strong=\"G2212\"* for|strong=\"G3754\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G2443\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w go|strong=\"G1831\"\\+w* elsewhere \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w next|strong=\"G2192\"\\+w* \\+w towns|strong=\"G2969\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w preach|strong=\"G2784\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w because|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* reason.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"* throughout|strong=\"G1519\"* all|strong=\"G3650\"* Galilee|strong=\"G1056\"*, preaching|strong=\"G2784\"* and|strong=\"G2532\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 40, + "text": "A|strong=\"G2532\"* leper|strong=\"G3015\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, begging|strong=\"G3870\"* him|strong=\"G2532\"*, kneeling|strong=\"G2532\"* down|strong=\"G1120\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, “If|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G4314\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 41, + "text": "Being|strong=\"G2532\"* moved|strong=\"G4697\"* with|strong=\"G2532\"* compassion|strong=\"G4697\"*, he|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* touched him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G2532\"* this|strong=\"G3588\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* leprosy|strong=\"G3014\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* made clean|strong=\"G2511\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* strictly warned|strong=\"G1690\"* him|strong=\"G2532\"* and|strong=\"G2532\"* immediately|strong=\"G2112\"* sent|strong=\"G1544\"* him|strong=\"G2532\"* out|strong=\"G1544\"*," + }, + { + "verseNum": 44, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w See|strong=\"G3708\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w nothing|strong=\"G3367\"\\+w* \\+w to|strong=\"G1519\"\\+w* anybody, \\+w but|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cleansing|strong=\"G2512\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G4367\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G1519\"* proclaim|strong=\"G2784\"* it|strong=\"G2532\"* much|strong=\"G4183\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* spread|strong=\"G1831\"* about|strong=\"G1909\"* the|strong=\"G2532\"* matter|strong=\"G3056\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* Jesus|strong=\"G1525\"* could|strong=\"G1410\"* no|strong=\"G3371\"* more|strong=\"G4183\"* openly|strong=\"G5320\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* city|strong=\"G4172\"*, but|strong=\"G1161\"* was|strong=\"G1510\"* outside|strong=\"G1854\"* in|strong=\"G1519\"* desert|strong=\"G2048\"* places|strong=\"G5117\"*. People|strong=\"G1510\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* from|strong=\"G2064\"* everywhere|strong=\"G3840\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"* after|strong=\"G1223\"* some|strong=\"G1722\"* days|strong=\"G2250\"*, it|strong=\"G2532\"* was|strong=\"G1510\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* home|strong=\"G3624\"*." + }, + { + "verseNum": 2, + "text": "Immediately many|strong=\"G4183\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* there|strong=\"G2532\"* was|strong=\"G3588\"* no|strong=\"G3371\"* more|strong=\"G4183\"* room|strong=\"G5562\"*, not|strong=\"G3366\"* even|strong=\"G2532\"* around|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Four|strong=\"G5064\"* people came|strong=\"G2064\"*, carrying|strong=\"G5342\"* a|strong=\"G2532\"* paralytic|strong=\"G3885\"* to|strong=\"G4314\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3361\"* come|strong=\"G1510\"* near to|strong=\"G2532\"* him|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, they|strong=\"G2532\"* removed the|strong=\"G2532\"* roof|strong=\"G4721\"* where|strong=\"G3699\"* he|strong=\"G2532\"* was|strong=\"G1510\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* broken|strong=\"G1846\"* it|strong=\"G2532\"* up|strong=\"G4374\"*, they|strong=\"G2532\"* let|strong=\"G5465\"* down|strong=\"G5465\"* the|strong=\"G2532\"* mat|strong=\"G2895\"* that|strong=\"G3588\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"* was|strong=\"G1510\"* lying|strong=\"G2621\"* on|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* paralytic|strong=\"G3885\"*, “\\+w Son|strong=\"G5043\"\\+w*, \\+w your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* there|strong=\"G1563\"* were|strong=\"G1510\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sitting|strong=\"G2521\"* there|strong=\"G1563\"* and|strong=\"G2532\"* reasoning|strong=\"G1260\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 7, + "text": "“Why|strong=\"G5101\"* does|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* speak|strong=\"G2980\"* blasphemies like|strong=\"G3779\"* that|strong=\"G3588\"*? Who|strong=\"G5101\"* can|strong=\"G1410\"* forgive sins but|strong=\"G1487\"* God|strong=\"G2316\"* alone|strong=\"G1520\"*?”" + }, + { + "verseNum": 8, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* in|strong=\"G1722\"* his|strong=\"G1438\"* spirit|strong=\"G4151\"* that|strong=\"G3754\"* they|strong=\"G2532\"* so|strong=\"G3779\"* reasoned|strong=\"G1260\"* within|strong=\"G1722\"* themselves|strong=\"G1438\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 9, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w paralytic|strong=\"G3885\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven;’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Arise|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2443\"\\+w* forgive sins”*—he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G2443\"* the|strong=\"G1161\"* paralytic|strong=\"G3885\"*—" + }, + { + "verseNum": 11, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w*.” *" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* arose|strong=\"G1453\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* took|strong=\"G2532\"* up|strong=\"G1453\"* the|strong=\"G2532\"* mat|strong=\"G2895\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* in|strong=\"G2532\"* front|strong=\"G1715\"* of|strong=\"G2316\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, so|strong=\"G3779\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* amazed|strong=\"G1839\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* never|strong=\"G3763\"* saw|strong=\"G3708\"* anything|strong=\"G3956\"* like|strong=\"G3779\"* this|strong=\"G3588\"*!”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* again|strong=\"G3825\"* by|strong=\"G3844\"* the|strong=\"G2532\"* seaside. All|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* passed|strong=\"G3855\"* by|strong=\"G1909\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Levi|strong=\"G3018\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5058\"* office. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”* And|strong=\"G2532\"* he|strong=\"G2532\"* arose and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* reclining|strong=\"G2621\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3614\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners sat|strong=\"G2532\"* down|strong=\"G2621\"* with|strong=\"G1722\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* were|strong=\"G1510\"* many|strong=\"G4183\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed|strong=\"G1096\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* eating|strong=\"G2068\"* with|strong=\"G3326\"* the|strong=\"G2532\"* sinners and|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"*, “Why|strong=\"G3754\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* with|strong=\"G3326\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* heard it|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w healthy|strong=\"G2480\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G2532\"\\+w* sinners \\+w to|strong=\"G2532\"\\+w* repentance.”*" + }, + { + "verseNum": 18, + "text": "John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* were|strong=\"G1510\"* fasting|strong=\"G3522\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* fast|strong=\"G3522\"*, but|strong=\"G1161\"* your|strong=\"G4674\"* disciples|strong=\"G3101\"* don’t|strong=\"G3588\"* fast|strong=\"G3522\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G1722\"\\+w* groomsmen \\+w fast|strong=\"G3522\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? \\+w As|strong=\"G3745\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w fast|strong=\"G3522\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w sews|strong=\"G1976\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w of|strong=\"G2532\"\\+w* unshrunk \\+w cloth|strong=\"G4470\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w patch|strong=\"G1915\"\\+w* shrinks \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* tears away \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* hole \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* puts \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w* pours \\+w out|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* destroyed; \\+w but|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* was|strong=\"G1096\"* going|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*; and|strong=\"G2532\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* began|strong=\"G1096\"*, as|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G2532\"*, to|strong=\"G2532\"* pluck|strong=\"G5089\"* the|strong=\"G1722\"* ears of|strong=\"G1223\"* grain|strong=\"G4719\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, why|strong=\"G5101\"* do|strong=\"G4160\"* they|strong=\"G2532\"* do|strong=\"G4160\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* on|strong=\"G4160\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Did|strong=\"G4160\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w never|strong=\"G3763\"\\+w* read \\+w what|strong=\"G5101\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*—\\+w he|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 26, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G1909\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abiathar \\+w the|strong=\"G2532\"\\+w* \\+w high|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w show|strong=\"G1325\"\\+w* bread, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G4862\"\\+w* \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w man|strong=\"G3756\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w man|strong=\"G3756\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Therefore|strong=\"G5620\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*, and|strong=\"G2532\"* there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G2192\"* man|strong=\"G1519\"* there|strong=\"G1563\"* whose|strong=\"G3588\"* hand|strong=\"G5495\"* was|strong=\"G1510\"* withered|strong=\"G3583\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* watched|strong=\"G3906\"* him|strong=\"G3588\"*, whether|strong=\"G1487\"* he|strong=\"G2532\"* would|strong=\"G2532\"* heal|strong=\"G2323\"* him|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"* whose|strong=\"G3588\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* withered|strong=\"G3584\"*, “\\+w Stand|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G4521\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w harm|strong=\"G2554\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill?”* But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4623\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1909\"* them|strong=\"G3588\"* with|strong=\"G3326\"* anger|strong=\"G3709\"*, being|strong=\"G2532\"* grieved|strong=\"G4818\"* at|strong=\"G1909\"* the|strong=\"G2532\"* hardening|strong=\"G4457\"* of|strong=\"G2532\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G2588\"*, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.” * He|strong=\"G2532\"* stretched|strong=\"G1614\"* it|strong=\"G2532\"* out|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* restored as|strong=\"G2532\"* healthy as|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1438\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* conspired|strong=\"G4824\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Herodians|strong=\"G2265\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, how|strong=\"G3704\"* they|strong=\"G2532\"* might|strong=\"G2532\"* destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* withdrew|strong=\"G2424\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"*, from|strong=\"G2532\"* Judea|strong=\"G2449\"*," + }, + { + "verseNum": 8, + "text": "from|strong=\"G2064\"* Jerusalem|strong=\"G2414\"*, from|strong=\"G2064\"* Idumaea|strong=\"G2401\"*, beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* from|strong=\"G2064\"* around|strong=\"G4012\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*. A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"*, hearing what|strong=\"G3588\"* great|strong=\"G4183\"* things|strong=\"G3588\"* he|strong=\"G2532\"* did|strong=\"G4160\"*, came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* that|strong=\"G2443\"* a|strong=\"G2532\"* little|strong=\"G4142\"* boat|strong=\"G4142\"* should|strong=\"G3588\"* stay near him|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* press|strong=\"G3793\"* on|strong=\"G4342\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G1063\"* had|strong=\"G2192\"* healed|strong=\"G2323\"* many|strong=\"G4183\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* as|strong=\"G3745\"* many|strong=\"G4183\"* as|strong=\"G3745\"* had|strong=\"G2192\"* diseases pressed|strong=\"G1968\"* on|strong=\"G1968\"* him|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G1063\"* might|strong=\"G2192\"* touch him|strong=\"G2443\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*, whenever|strong=\"G3752\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* him|strong=\"G3588\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"* and|strong=\"G2532\"* cried|strong=\"G2896\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* sternly|strong=\"G2008\"* warned|strong=\"G2008\"* them|strong=\"G4160\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* not|strong=\"G3361\"* make|strong=\"G4160\"* him|strong=\"G4160\"* known|strong=\"G5318\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* those|strong=\"G3588\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* wanted|strong=\"G2309\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* appointed|strong=\"G4160\"* twelve|strong=\"G1427\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G4160\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* send them|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G2443\"* preach|strong=\"G2784\"*" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* have|strong=\"G2192\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* heal sicknesses and|strong=\"G2532\"* to|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"*:" + }, + { + "verseNum": 16, + "text": "Simon|strong=\"G4613\"* (to|strong=\"G2532\"* whom|strong=\"G3588\"* he|strong=\"G2532\"* gave|strong=\"G4160\"* the|strong=\"G2532\"* name|strong=\"G3686\"* Peter|strong=\"G4074\"*);" + }, + { + "verseNum": 17, + "text": "James|strong=\"G2385\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*; and|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G2532\"* brother of|strong=\"G5207\"* James|strong=\"G2385\"*, (whom|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G3686\"* Boanerges, which|strong=\"G3739\"* means|strong=\"G1510\"*, Sons|strong=\"G5207\"* of|strong=\"G5207\"* Thunder|strong=\"G1027\"*);" + }, + { + "verseNum": 18, + "text": "Andrew; Philip|strong=\"G5376\"*; Bartholomew; Matthew|strong=\"G3156\"*; Thomas|strong=\"G2381\"*; James|strong=\"G2385\"*, the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Thaddaeus|strong=\"G2280\"*; Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot|strong=\"G2581\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* betrayed|strong=\"G3860\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G2064\"* together|strong=\"G4905\"* again|strong=\"G3825\"*, so|strong=\"G2532\"* that|strong=\"G5620\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3361\"* so|strong=\"G2532\"* much as|strong=\"G1519\"* eat|strong=\"G2068\"* bread." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* his|strong=\"G2532\"* friends|strong=\"G3844\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G2532\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G3588\"* insane.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* who|strong=\"G3588\"* came|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2414\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2192\"* Beelzebul,” and|strong=\"G2532\"*, “By|strong=\"G1722\"* the|strong=\"G1722\"* prince of|strong=\"G2532\"* the|strong=\"G1722\"* demons|strong=\"G1140\"* he|strong=\"G2532\"* casts|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* summoned|strong=\"G4341\"* them|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1438\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* kingdom \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w*, \\+w that|strong=\"G3588\"\\+w* kingdom \\+w cannot|strong=\"G1410\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w cannot|strong=\"G1410\"\\+w* \\+w stand|strong=\"G2476\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w* \\+w up|strong=\"G2476\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G3307\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w stand|strong=\"G2476\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w end|strong=\"G5056\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w binds|strong=\"G1210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G3762\"\\+w*; \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w plunder|strong=\"G1283\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "“Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* sins \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w descendants|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven, \\+w including|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* blasphemies \\+w with|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* blaspheme; *" + }, + { + "verseNum": 29, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G2192\"\\+w* blaspheme \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* forgiveness, \\+w but|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w subject|strong=\"G1777\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal condemnation.”*+ 3:29 NU reads, guilty of an eternal sin.*" + }, + { + "verseNum": 30, + "text": "—because|strong=\"G3754\"* they|strong=\"G3754\"* said|strong=\"G3004\"*, “He|strong=\"G3754\"* has|strong=\"G2192\"* an|strong=\"G2192\"* unclean spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 31, + "text": "His|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* his|strong=\"G2532\"* brothers came|strong=\"G2064\"*, and|strong=\"G2532\"* standing|strong=\"G4739\"* outside|strong=\"G1854\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, calling|strong=\"G2564\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "A|strong=\"G2532\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* sitting|strong=\"G2521\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, your|strong=\"G2532\"* mother|strong=\"G3384\"*, your|strong=\"G2532\"* brothers, and|strong=\"G2532\"* your|strong=\"G2532\"* sisters+ 3:32 TR omits “your sisters”* are|strong=\"G3588\"* outside|strong=\"G1854\"* looking|strong=\"G2212\"* for|strong=\"G4012\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers?”*" + }, + { + "verseNum": 34, + "text": "Looking|strong=\"G4017\"* around|strong=\"G4012\"* at|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* around|strong=\"G4012\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w my|strong=\"G3708\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* brothers! *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* brother, \\+w my|strong=\"G1473\"\\+w* sister, \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G1519\"* teach|strong=\"G1321\"* by|strong=\"G1722\"* the|strong=\"G1722\"* seaside. A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G1510\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G2532\"* boat|strong=\"G4143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* sat|strong=\"G2521\"* down|strong=\"G2521\"*. All|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* were|strong=\"G1510\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"* many|strong=\"G4183\"* things|strong=\"G3588\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*, and|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1438\"* teaching|strong=\"G1321\"*," + }, + { + "verseNum": 3, + "text": "“\\+w Listen|strong=\"G2400\"\\+w*! \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G3588\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G3708\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w seed|strong=\"G4098\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w**+ 4:4 TR adds “of the air”* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* little \\+w soil|strong=\"G1093\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w sprang|strong=\"G1816\"\\+w* \\+w up|strong=\"G3361\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* depth \\+w of|strong=\"G1223\"\\+w* \\+w soil|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w risen|strong=\"G2532\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w scorched|strong=\"G2739\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w root|strong=\"G4491\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns grew \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w choked|strong=\"G4846\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w yielded|strong=\"G1325\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, growing \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* increasing. \\+w Some|strong=\"G3588\"\\+w* \\+w produced|strong=\"G1325\"\\+w* \\+w thirty|strong=\"G5144\"\\+w* times, \\+w some|strong=\"G3588\"\\+w* \\+w sixty|strong=\"G1835\"\\+w* times, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times \\+w as|strong=\"G1519\"\\+w* much.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3739\"\\+w* hear.”*" + }, + { + "verseNum": 10, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1096\"* alone|strong=\"G3441\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* around|strong=\"G4012\"* him|strong=\"G3588\"* with|strong=\"G4862\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* about|strong=\"G4012\"* the|strong=\"G2532\"* parables|strong=\"G3850\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w To|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mystery|strong=\"G3466\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w outside|strong=\"G1854\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w that|strong=\"G2443\"\\+w* ‘\\+w seeing|strong=\"G3708\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w perceive|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hearing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* hear \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w understand|strong=\"G4920\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G2532\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w again|strong=\"G1994\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G2532\"\\+w* sins \\+w should|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven \\+w them|strong=\"G3708\"\\+w*.’”*+ 4:12 Isaiah 6:9-10*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w parable|strong=\"G3850\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w parables|strong=\"G3850\"\\+w*? *" + }, + { + "verseNum": 14, + "text": "\\+w The|strong=\"G3588\"\\+w* farmer \\+w sows|strong=\"G4687\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w The|strong=\"G1722\"\\+w* ones \\+w by|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* ones \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard, \\+w immediately|strong=\"G2112\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* takes away \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3778\"\\+w* \\+w way|strong=\"G3668\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rocky|strong=\"G4075\"\\+w* places, \\+w who|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* short-lived. \\+w When|strong=\"G2532\"\\+w* oppression \\+w or|strong=\"G2228\"\\+w* \\+w persecution|strong=\"G1375\"\\+w* \\+w arises|strong=\"G1096\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Others|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns. \\+w These|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w this|strong=\"G3588\"\\+w* age, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* deceitfulness \\+w of|strong=\"G4012\"\\+w* \\+w riches|strong=\"G4149\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lusts|strong=\"G1939\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w other|strong=\"G3062\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w entering|strong=\"G1531\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w choke|strong=\"G4846\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* unfruitful. *" + }, + { + "verseNum": 20, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w accept|strong=\"G3858\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G2592\"\\+w* \\+w fruit|strong=\"G2592\"\\+w*, \\+w some|strong=\"G3588\"\\+w* \\+w thirty|strong=\"G5144\"\\+w* times, \\+w some|strong=\"G3588\"\\+w* \\+w sixty|strong=\"G1835\"\\+w* times, \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* times.”*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w brought|strong=\"G2064\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w basket|strong=\"G3426\"\\+w* *+ 4:21 literally, a modion, a dry measuring basket containing about a peck (about 9 liters)* \\+w or|strong=\"G2228\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2825\"\\+w*? Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w put|strong=\"G5087\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* stand? *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w except|strong=\"G1437\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w known|strong=\"G5318\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w secret|strong=\"G2927\"\\+w* \\+w but|strong=\"G3361\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5318\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G5100\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* him hear.”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1722\"*, “\\+w Take|strong=\"G2532\"\\+w* heed \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hear|strong=\"G5101\"\\+w*. \\+w With|strong=\"G1722\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w hear|strong=\"G5101\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w if|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G2316\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, *" + }, + { + "verseNum": 27, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w should|strong=\"G1492\"\\+w* \\+w sleep|strong=\"G2518\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w should|strong=\"G1492\"\\+w* spring \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* grow, \\+w though|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G5613\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w bears|strong=\"G2592\"\\+w* \\+w fruit|strong=\"G2592\"\\+w* \\+w by|strong=\"G1722\"\\+w* itself: \\+w first|strong=\"G4413\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w blade|strong=\"G5528\"\\+w*, \\+w then|strong=\"G1534\"\\+w* \\+w the|strong=\"G1722\"\\+w* ear, \\+w then|strong=\"G1534\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w full|strong=\"G4134\"\\+w* \\+w grain|strong=\"G4621\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* ear. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w is|strong=\"G3588\"\\+w* ripe, \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G1161\"\\+w* puts \\+w in|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sickle|strong=\"G1407\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G3936\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w we|strong=\"G2532\"\\+w* liken \\+w God|strong=\"G2316\"\\+w*’s Kingdom? \\+w Or|strong=\"G2228\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w we|strong=\"G2532\"\\+w* illustrate \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 31, + "text": "\\+w It|strong=\"G3739\"\\+w*’s \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G4690\"\\+w*, \\+w which|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sown|strong=\"G4687\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w though|strong=\"G5613\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w less|strong=\"G3398\"\\+w* \\+w than|strong=\"G3398\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w seeds|strong=\"G4690\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "\\+w yet|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w sown|strong=\"G4687\"\\+w*, \\+w grows|strong=\"G4160\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w herbs|strong=\"G3001\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w puts|strong=\"G4160\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w branches|strong=\"G2798\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w lodge|strong=\"G2681\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w shadow|strong=\"G4639\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "With|strong=\"G2532\"* many|strong=\"G4183\"* such|strong=\"G5108\"* parables|strong=\"G3850\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, as|strong=\"G2531\"* they|strong=\"G2532\"* were|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* hear it|strong=\"G2532\"*." + }, + { + "verseNum": 34, + "text": "Without|strong=\"G5565\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2596\"* them|strong=\"G3588\"*; but|strong=\"G1161\"* privately|strong=\"G2398\"* to|strong=\"G2596\"* his|strong=\"G3956\"* own|strong=\"G2398\"* disciples|strong=\"G3101\"* he|strong=\"G1161\"* explained everything|strong=\"G3956\"*." + }, + { + "verseNum": 35, + "text": "On|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*, when|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G1096\"\\+w*’s \\+w go|strong=\"G1330\"\\+w* \\+w over|strong=\"G4008\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G4008\"\\+w* \\+w side|strong=\"G4008\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "Leaving|strong=\"G3588\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"*, they|strong=\"G2532\"* took|strong=\"G3880\"* him|strong=\"G3588\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* he|strong=\"G2532\"* was|strong=\"G1510\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*. Other|strong=\"G3588\"* small boats|strong=\"G4143\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "A|strong=\"G1096\"* big|strong=\"G3173\"* wind storm|strong=\"G2978\"* arose|strong=\"G1096\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* waves|strong=\"G2949\"* beat|strong=\"G1911\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, so|strong=\"G2532\"* much|strong=\"G3173\"* that|strong=\"G3588\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* already|strong=\"G2235\"* filled|strong=\"G1072\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* himself was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* stern|strong=\"G4403\"*, asleep|strong=\"G2518\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cushion|strong=\"G4344\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"* and|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, don’t|strong=\"G3588\"* you|strong=\"G4771\"* care|strong=\"G3199\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* dying?”" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* awoke|strong=\"G1326\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, “\\+w Peace|strong=\"G4623\"\\+w*! \\+w Be|strong=\"G1096\"\\+w* \\+w still|strong=\"G5392\"\\+w*!”* The|strong=\"G2532\"* wind ceased|strong=\"G2869\"* and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* calm|strong=\"G1055\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w afraid|strong=\"G1169\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w faith|strong=\"G4102\"\\+w*?”*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* greatly|strong=\"G3173\"* afraid|strong=\"G5399\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Who|strong=\"G5101\"* then|strong=\"G2532\"* is|strong=\"G1510\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, into|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*, immediately|strong=\"G2112\"* a|strong=\"G2532\"* man with|strong=\"G1722\"* an|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* met|strong=\"G5221\"* him|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tombs|strong=\"G3419\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* lived|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"*. Nobody|strong=\"G3762\"* could|strong=\"G1410\"* bind|strong=\"G1210\"* him|strong=\"G3588\"* any|strong=\"G3762\"* more|strong=\"G3765\"*, not|strong=\"G3761\"* even|strong=\"G2532\"* with|strong=\"G1722\"* chains|strong=\"G1210\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"G1223\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* often|strong=\"G4178\"* bound|strong=\"G1210\"* with|strong=\"G1223\"* fetters|strong=\"G3976\"* and|strong=\"G2532\"* chains|strong=\"G1210\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chains|strong=\"G1210\"* had|strong=\"G2532\"* been|strong=\"G2532\"* torn|strong=\"G1288\"* apart|strong=\"G1288\"* by|strong=\"G1223\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fetters|strong=\"G3976\"* broken|strong=\"G4937\"* in|strong=\"G2532\"* pieces|strong=\"G4937\"*. Nobody|strong=\"G3762\"* had|strong=\"G2532\"* the|strong=\"G2532\"* strength|strong=\"G2480\"* to|strong=\"G2532\"* tame|strong=\"G1150\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Always|strong=\"G3956\"*, night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* mountains|strong=\"G3735\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* crying|strong=\"G2896\"* out|strong=\"G2896\"*, and|strong=\"G2532\"* cutting|strong=\"G2629\"* himself|strong=\"G1438\"* with|strong=\"G1722\"* stones|strong=\"G3037\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"* from|strong=\"G2532\"* afar|strong=\"G3113\"*, he|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* bowed|strong=\"G4352\"* down|strong=\"G4352\"* to|strong=\"G2532\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* crying|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* have|strong=\"G2532\"* I|strong=\"G1473\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*? I|strong=\"G1473\"* adjure|strong=\"G3726\"* you|strong=\"G4771\"* by|strong=\"G2532\"* God|strong=\"G2316\"*, don’t|strong=\"G3588\"* torment me|strong=\"G1473\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* man, \\+w you|strong=\"G3004\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w*!” *" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*?”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* much|strong=\"G4183\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3361\"* send them|strong=\"G3588\"* away|strong=\"G1854\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* country|strong=\"G5561\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* on|strong=\"G1161\"* the|strong=\"G1161\"* mountainside there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1510\"* great|strong=\"G3173\"* herd of|strong=\"G3735\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"*." + }, + { + "verseNum": 12, + "text": "All|strong=\"G2532\"* the|strong=\"G2532\"* demons begged|strong=\"G3870\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Send|strong=\"G3992\"* us|strong=\"G3004\"* into|strong=\"G1519\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 13, + "text": "At|strong=\"G1722\"* once Jesus|strong=\"G1525\"* gave|strong=\"G2010\"* them|strong=\"G3588\"* permission|strong=\"G2010\"*. The|strong=\"G1722\"* unclean spirits|strong=\"G4151\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* pigs|strong=\"G5519\"*. The|strong=\"G1722\"* herd of|strong=\"G4151\"* about|strong=\"G5613\"* two|strong=\"G5613\"* thousand|strong=\"G1367\"* rushed|strong=\"G3729\"* down|strong=\"G2596\"* the|strong=\"G1722\"* steep|strong=\"G2911\"* bank|strong=\"G2911\"* into|strong=\"G1519\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* drowned|strong=\"G4155\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 14, + "text": "Those|strong=\"G3588\"* who|strong=\"G5101\"* fed|strong=\"G1006\"* the|strong=\"G2532\"* pigs fled|strong=\"G5343\"*, and|strong=\"G2532\"* told it|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* country." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* saw|strong=\"G2334\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* possessed|strong=\"G2192\"* by|strong=\"G4314\"* demons sitting|strong=\"G2521\"*, clothed|strong=\"G2439\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G2192\"* right|strong=\"G4993\"* mind|strong=\"G4993\"*, even|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* legion|strong=\"G3003\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G2532\"* declared|strong=\"G1334\"* to|strong=\"G2532\"* them|strong=\"G3588\"* what|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1096\"* possessed by|strong=\"G2532\"* demons, and|strong=\"G2532\"* about|strong=\"G4012\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* beg|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G2532\"* depart from|strong=\"G2532\"* their|strong=\"G2532\"* region|strong=\"G3725\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G1510\"* entering|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1510\"* possessed by|strong=\"G2532\"* demons begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow him|strong=\"G3588\"*, but|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G4674\"\\+w* friends, \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w great|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* went|strong=\"G2424\"* his|strong=\"G3956\"* way|strong=\"G1722\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* proclaim|strong=\"G2784\"* in|strong=\"G1722\"* Decapolis|strong=\"G1179\"* how|strong=\"G3745\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"* great|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* everyone|strong=\"G3956\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* crossed|strong=\"G1276\"* back|strong=\"G3825\"* over|strong=\"G1909\"* in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* the|strong=\"G1722\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G1510\"* gathered|strong=\"G4863\"* to|strong=\"G1519\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"G3708\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, Jairus|strong=\"G2383\"* by|strong=\"G4314\"* name|strong=\"G3686\"*, came|strong=\"G2064\"*; and|strong=\"G2532\"* seeing|strong=\"G3708\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* at|strong=\"G4314\"* his|strong=\"G3708\"* feet|strong=\"G4228\"*" + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* much|strong=\"G4183\"*, saying|strong=\"G3004\"*, “My|strong=\"G1473\"* little|strong=\"G2365\"* daughter|strong=\"G2365\"* is|strong=\"G3588\"* at|strong=\"G3588\"* the|strong=\"G2532\"* point|strong=\"G2079\"* of|strong=\"G2532\"* death|strong=\"G2079\"*. Please come|strong=\"G2064\"* and|strong=\"G2532\"* lay|strong=\"G2007\"* your|strong=\"G2192\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* her|strong=\"G3754\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G4982\"* healthy, and|strong=\"G2532\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G2532\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* pressed|strong=\"G3793\"* upon|strong=\"G3326\"* him|strong=\"G2532\"* on|strong=\"G3326\"* all|strong=\"G2532\"* sides." + }, + { + "verseNum": 25, + "text": "A|strong=\"G2532\"* certain|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G2532\"* had|strong=\"G2532\"* a|strong=\"G2532\"* discharge of|strong=\"G2532\"* blood for|strong=\"G1722\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* had|strong=\"G2532\"* suffered|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3956\"* by|strong=\"G5259\"* many|strong=\"G4183\"* physicians|strong=\"G2395\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* spent|strong=\"G1159\"* all|strong=\"G3956\"* that|strong=\"G3588\"* she|strong=\"G2532\"* had|strong=\"G2532\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* no|strong=\"G3367\"* better|strong=\"G3123\"*, but|strong=\"G2532\"* rather|strong=\"G3123\"* grew|strong=\"G2064\"* worse|strong=\"G5501\"*," + }, + { + "verseNum": 27, + "text": "having heard the|strong=\"G1722\"* things|strong=\"G3588\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, came|strong=\"G2064\"* up|strong=\"G1722\"* behind|strong=\"G3693\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"* and|strong=\"G2064\"* touched his|strong=\"G4012\"* clothes|strong=\"G2440\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* she|strong=\"G3754\"* said|strong=\"G3004\"*, “If|strong=\"G1437\"* I|strong=\"G1063\"* just|strong=\"G2579\"* touch his|strong=\"G4982\"* clothes|strong=\"G2440\"*, I|strong=\"G1063\"* will|strong=\"G3748\"* be|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*.”" + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* flow|strong=\"G4077\"* of|strong=\"G2532\"* her|strong=\"G3754\"* blood was|strong=\"G3588\"* dried|strong=\"G3583\"* up|strong=\"G3583\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* felt|strong=\"G1097\"* in|strong=\"G2532\"* her|strong=\"G3754\"* body|strong=\"G4983\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G3588\"* healed|strong=\"G2390\"* of|strong=\"G2532\"* her|strong=\"G3754\"* affliction|strong=\"G3148\"*." + }, + { + "verseNum": 30, + "text": "Immediately|strong=\"G2112\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* that|strong=\"G3588\"* the|strong=\"G1722\"* power|strong=\"G1411\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* him|strong=\"G3588\"*, turned|strong=\"G1994\"* around|strong=\"G1994\"* in|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"* and|strong=\"G2532\"* asked|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* touched \\+w my|strong=\"G1722\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*?”*" + }, + { + "verseNum": 31, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* see the|strong=\"G2532\"* multitude|strong=\"G3793\"* pressing|strong=\"G4918\"* against you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘Who|strong=\"G5101\"* touched me|strong=\"G1473\"*?’”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* looked|strong=\"G3708\"* around|strong=\"G4017\"* to|strong=\"G2532\"* see|strong=\"G3708\"* her|strong=\"G3708\"* who|strong=\"G3588\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, fearing|strong=\"G5399\"* and|strong=\"G2532\"* trembling|strong=\"G5141\"*, knowing|strong=\"G1492\"* what|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G2532\"* her|strong=\"G3956\"*, came|strong=\"G2064\"* and|strong=\"G2532\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*. \\+w Go|strong=\"G5217\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cured|strong=\"G4982\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w disease|strong=\"G3148\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "While|strong=\"G2980\"* he|strong=\"G3754\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, people|strong=\"G3004\"* came|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G3588\"* synagogue ruler’s house, saying|strong=\"G3004\"*, “Your|strong=\"G3588\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* dead. Why|strong=\"G5101\"* bother the|strong=\"G3588\"* Teacher|strong=\"G1320\"* any|strong=\"G2089\"* more|strong=\"G2089\"*?”" + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* heard the|strong=\"G1161\"* message|strong=\"G3056\"* spoken|strong=\"G2980\"*, immediately said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G1161\"* ruler of|strong=\"G3056\"* the|strong=\"G1161\"* synagogue, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w only|strong=\"G3440\"\\+w* \\+w believe|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* allowed no|strong=\"G3756\"* one|strong=\"G3762\"* to|strong=\"G2532\"* follow|strong=\"G4870\"* him|strong=\"G3588\"* except|strong=\"G1487\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"* the|strong=\"G2532\"* brother of|strong=\"G2532\"* James|strong=\"G2385\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* synagogue ruler’s house|strong=\"G3624\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G2334\"* an|strong=\"G2532\"* uproar|strong=\"G2351\"*, weeping|strong=\"G2799\"*, and|strong=\"G2532\"* great|strong=\"G4183\"* wailing|strong=\"G2799\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w uproar|strong=\"G2350\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w weep|strong=\"G2799\"\\+w*? \\+w The|strong=\"G2532\"\\+w* \\+w child|strong=\"G3813\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* dead, \\+w but|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w asleep|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* ridiculed him|strong=\"G3588\"*. But|strong=\"G1161\"* he|strong=\"G2532\"*, having|strong=\"G2532\"* put|strong=\"G1544\"* them|strong=\"G3588\"* all|strong=\"G3956\"* out|strong=\"G1544\"*, took|strong=\"G3880\"* the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* child|strong=\"G3813\"*, her|strong=\"G3956\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* in|strong=\"G2532\"* where|strong=\"G3699\"* the|strong=\"G2532\"* child|strong=\"G3813\"* was|strong=\"G1510\"* lying." + }, + { + "verseNum": 41, + "text": "Taking|strong=\"G2902\"* the|strong=\"G2532\"* child|strong=\"G3813\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Talitha|strong=\"G5008\"\\+w* \\+w cumi|strong=\"G2891\"\\+w*!” * which|strong=\"G3739\"* means|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “\\+w Girl|strong=\"G2877\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*!” *" + }, + { + "verseNum": 42, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G2532\"* girl|strong=\"G2877\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*, for|strong=\"G1063\"* she|strong=\"G2532\"* was|strong=\"G1510\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* old|strong=\"G2094\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"* with|strong=\"G2532\"* great|strong=\"G3173\"* amazement|strong=\"G1611\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* strictly|strong=\"G4183\"* ordered|strong=\"G1291\"* them|strong=\"G1325\"* that|strong=\"G2443\"* no|strong=\"G3367\"* one|strong=\"G3367\"* should|strong=\"G2532\"* know|strong=\"G1097\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* commanded|strong=\"G1291\"* that|strong=\"G2443\"* something|strong=\"G4183\"* should|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2443\"* her|strong=\"G1325\"* to|strong=\"G2443\"* eat|strong=\"G2068\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2064\"* there|strong=\"G2532\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G3968\"* country|strong=\"G3968\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* began|strong=\"G1096\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* hearing him|strong=\"G3588\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"*, “Where|strong=\"G4159\"* did|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* get|strong=\"G1096\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?” and|strong=\"G2532\"*, “What|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* that|strong=\"G3588\"* is|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, that|strong=\"G3588\"* such|strong=\"G5108\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* come|strong=\"G1096\"* about|strong=\"G1722\"* by|strong=\"G1223\"* his|strong=\"G1223\"* hands|strong=\"G5495\"*?" + }, + { + "verseNum": 3, + "text": "Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* the|strong=\"G1722\"* carpenter|strong=\"G5045\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* brother of|strong=\"G5207\"* James|strong=\"G2385\"*, Joses|strong=\"G2500\"*, Judah|strong=\"G2455\"*, and|strong=\"G2532\"* Simon|strong=\"G4613\"*? Aren’t|strong=\"G3588\"* his|strong=\"G1722\"* sisters here|strong=\"G5602\"* with|strong=\"G1722\"* us|strong=\"G2249\"*?” So|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* offended|strong=\"G4624\"* at|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w without|strong=\"G3361\"\\+w* honor, \\+w except|strong=\"G1487\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w country|strong=\"G3968\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w relatives|strong=\"G4773\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w house|strong=\"G3614\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* could|strong=\"G1410\"* do|strong=\"G4160\"* no|strong=\"G3756\"* mighty|strong=\"G1411\"* work|strong=\"G1411\"* there|strong=\"G1563\"*, except|strong=\"G1487\"* that|strong=\"G3588\"* he|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* a|strong=\"G2532\"* few|strong=\"G3641\"* sick|strong=\"G3641\"* people|strong=\"G4160\"* and|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* marveled|strong=\"G2296\"* because|strong=\"G1223\"* of|strong=\"G1223\"* their|strong=\"G2532\"* unbelief." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* called|strong=\"G4341\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* send them|strong=\"G3588\"* out|strong=\"G2532\"* two|strong=\"G1417\"* by|strong=\"G2532\"* two|strong=\"G1417\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* authority|strong=\"G1849\"* over|strong=\"G1849\"* the|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* take|strong=\"G2532\"* nothing|strong=\"G3367\"* for|strong=\"G1519\"* their|strong=\"G2532\"* journey|strong=\"G3598\"*, except|strong=\"G1487\"* a|strong=\"G2532\"* staff|strong=\"G4464\"* only|strong=\"G3440\"*: no|strong=\"G3361\"* bread, no|strong=\"G3361\"* wallet, no|strong=\"G3361\"* money|strong=\"G5475\"* in|strong=\"G1519\"* their|strong=\"G2532\"* purse|strong=\"G2223\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"G2532\"* to|strong=\"G2532\"* wear|strong=\"G5265\"* sandals|strong=\"G4547\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* put|strong=\"G1746\"* on|strong=\"G1746\"* two|strong=\"G1417\"* tunics|strong=\"G5509\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3004\"*, “\\+w Wherever|strong=\"G3699\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w nor|strong=\"G3366\"\\+w* hear \\+w you|strong=\"G5210\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w depart|strong=\"G1607\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w*, \\+w shake|strong=\"G1621\"\\+w* \\+w off|strong=\"G1621\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G5522\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w under|strong=\"G5270\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*. Assuredly, \\+w I|strong=\"G3739\"\\+w* tell \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1519\"\\+w* Sodom \\+w and|strong=\"G2532\"\\+w* Gomorrah \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* judgment \\+w than|strong=\"G2532\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w that|strong=\"G3739\"\\+w* city!”*" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* that|strong=\"G2443\"* people should|strong=\"G2532\"* repent|strong=\"G3340\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* many|strong=\"G4183\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* anointed many|strong=\"G4183\"* with|strong=\"G2532\"* oil|strong=\"G1637\"* who|strong=\"G2532\"* were|strong=\"G2532\"* sick and|strong=\"G2532\"* healed|strong=\"G2323\"* them|strong=\"G1544\"*." + }, + { + "verseNum": 14, + "text": "King|strong=\"G3588\"* Herod|strong=\"G2264\"* heard this|strong=\"G3778\"*, for|strong=\"G1063\"* his|strong=\"G1223\"* name|strong=\"G3686\"* had|strong=\"G2532\"* become|strong=\"G1096\"* known|strong=\"G5318\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* the|strong=\"G1722\"* Baptizer has|strong=\"G1096\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* therefore|strong=\"G1223\"* these|strong=\"G3778\"* powers|strong=\"G1411\"* are|strong=\"G3588\"* at|strong=\"G1722\"* work|strong=\"G1754\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* others|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* Elijah|strong=\"G2243\"*.” Others|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"*, or|strong=\"G1161\"* like|strong=\"G5613\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Herod|strong=\"G2264\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* heard this|strong=\"G3778\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G3588\"* John|strong=\"G2491\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* beheaded. He|strong=\"G1161\"* has|strong=\"G3739\"* risen|strong=\"G1453\"* from|strong=\"G3588\"* the|strong=\"G1161\"* dead.”" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* Herod|strong=\"G2264\"* himself|strong=\"G1438\"* had|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* arrested|strong=\"G2902\"* John|strong=\"G2491\"* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1063\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* Herodias|strong=\"G2266\"*, his|strong=\"G1438\"* brother Philip|strong=\"G5376\"*’s wife|strong=\"G1135\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2532\"* married|strong=\"G1060\"* her|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* John|strong=\"G2491\"* had|strong=\"G2192\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Herod|strong=\"G2264\"*, “It|strong=\"G3754\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G1063\"* you|strong=\"G4771\"* to|strong=\"G3004\"* have|strong=\"G2192\"* your|strong=\"G2192\"* brother’s|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 19, + "text": "Herodias|strong=\"G2266\"* set|strong=\"G2532\"* herself against|strong=\"G1758\"* him|strong=\"G3588\"* and|strong=\"G2532\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*, but|strong=\"G1161\"* she|strong=\"G2532\"* couldn’t|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* Herod|strong=\"G2264\"* feared|strong=\"G5399\"* John|strong=\"G2491\"*, knowing|strong=\"G1492\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* and|strong=\"G2532\"* holy man|strong=\"G1342\"*, and|strong=\"G2532\"* kept|strong=\"G4933\"* him|strong=\"G3588\"* safe|strong=\"G4933\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* heard him|strong=\"G3588\"*, he|strong=\"G2532\"* did|strong=\"G2532\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* heard him|strong=\"G3588\"* gladly|strong=\"G2234\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* a|strong=\"G1096\"* convenient|strong=\"G2121\"* day|strong=\"G2250\"* came|strong=\"G1096\"* when|strong=\"G3753\"* Herod|strong=\"G2264\"* on|strong=\"G4160\"* his|strong=\"G4160\"* birthday|strong=\"G1077\"* made|strong=\"G4160\"* a|strong=\"G1096\"* supper|strong=\"G1173\"* for|strong=\"G2532\"* his|strong=\"G4160\"* nobles, the|strong=\"G2532\"* high|strong=\"G2532\"* officers, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* men|strong=\"G4413\"* of|strong=\"G2250\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* daughter|strong=\"G2364\"* of|strong=\"G2532\"* Herodias|strong=\"G2266\"* herself came|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* danced|strong=\"G3738\"*, she|strong=\"G2532\"* pleased Herod|strong=\"G2264\"* and|strong=\"G2532\"* those|strong=\"G3588\"* sitting|strong=\"G2532\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* king|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* young|strong=\"G3739\"* lady, “Ask|strong=\"G3004\"* me|strong=\"G1325\"* whatever|strong=\"G3739\"* you|strong=\"G4771\"* want|strong=\"G2309\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2309\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* swore|strong=\"G3660\"* to|strong=\"G2532\"* her|strong=\"G1437\"*, “Whatever|strong=\"G3739\"* you|strong=\"G4771\"* ask of|strong=\"G2532\"* me|strong=\"G1325\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G4771\"*, up|strong=\"G1325\"* to|strong=\"G2532\"* half|strong=\"G2255\"* of|strong=\"G2532\"* my|strong=\"G1325\"* kingdom.”" + }, + { + "verseNum": 24, + "text": "She|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"* mother|strong=\"G3384\"*, “What|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* ask|strong=\"G3004\"*?”" + }, + { + "verseNum": 25, + "text": "She|strong=\"G2532\"* came|strong=\"G1525\"* in|strong=\"G1909\"* immediately|strong=\"G2112\"* with|strong=\"G3326\"* haste|strong=\"G4710\"* to|strong=\"G4314\"* the|strong=\"G2532\"* king|strong=\"G3588\"* and|strong=\"G2532\"* requested, “I|strong=\"G1473\"* want|strong=\"G2309\"* you|strong=\"G1325\"* to|strong=\"G4314\"* give|strong=\"G1325\"* me|strong=\"G1325\"* right|strong=\"G2117\"* now|strong=\"G2532\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* John|strong=\"G2491\"* the|strong=\"G2532\"* Baptizer on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* was|strong=\"G1096\"* exceedingly sorry|strong=\"G4036\"*, but|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* his|strong=\"G1438\"* oaths|strong=\"G3727\"* and|strong=\"G2532\"* of|strong=\"G1223\"* his|strong=\"G1438\"* dinner guests, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* wish|strong=\"G2309\"* to|strong=\"G2532\"* refuse|strong=\"G3756\"* her|strong=\"G1438\"*." + }, + { + "verseNum": 27, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G1722\"* king|strong=\"G3588\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* a|strong=\"G2532\"* soldier of|strong=\"G2532\"* his|strong=\"G1722\"* guard|strong=\"G2532\"* and|strong=\"G2532\"* commanded|strong=\"G2004\"* to|strong=\"G2532\"* bring|strong=\"G5342\"* John|strong=\"G2532\"*’s head|strong=\"G2776\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* and|strong=\"G2532\"* beheaded him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* brought|strong=\"G5342\"* his|strong=\"G1438\"* head|strong=\"G2776\"* on|strong=\"G1909\"* a|strong=\"G2532\"* platter|strong=\"G4094\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* young lady; and|strong=\"G2532\"* the|strong=\"G1722\"* young lady gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* her|strong=\"G1325\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* his|strong=\"G1722\"* corpse|strong=\"G4430\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* apostles gathered|strong=\"G4863\"* themselves|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G4314\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, whatever|strong=\"G3745\"* they|strong=\"G2532\"* had|strong=\"G2424\"* done|strong=\"G4160\"*, and|strong=\"G2532\"* whatever|strong=\"G3745\"* they|strong=\"G2532\"* had|strong=\"G2424\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G2064\"\\+w* \\+w away|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w deserted|strong=\"G2048\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w rest|strong=\"G1510\"\\+w* awhile.”* For|strong=\"G1063\"* there|strong=\"G2532\"* were|strong=\"G1510\"* many|strong=\"G4183\"* coming|strong=\"G2064\"* and|strong=\"G2532\"* going|strong=\"G5217\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3761\"* leisure|strong=\"G2119\"* so|strong=\"G2532\"* much|strong=\"G4183\"* as|strong=\"G1519\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* to|strong=\"G1519\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"* by|strong=\"G1722\"* themselves|strong=\"G2398\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"*+ 6:33 TR reads “The multitudes” instead of “They”* saw|strong=\"G3708\"* them|strong=\"G3588\"* going|strong=\"G5217\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"* and|strong=\"G2532\"* ran|strong=\"G4936\"* there|strong=\"G1563\"* on|strong=\"G4281\"* foot|strong=\"G3979\"* from|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* cities|strong=\"G4172\"*. They|strong=\"G2532\"* arrived before|strong=\"G4281\"* them|strong=\"G3588\"* and|strong=\"G2532\"* came|strong=\"G2532\"* together|strong=\"G4936\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G1510\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, saw|strong=\"G3708\"* a|strong=\"G2192\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2192\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* them|strong=\"G1438\"* because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* like|strong=\"G5613\"* sheep|strong=\"G4263\"* without|strong=\"G3361\"* a|strong=\"G2192\"* shepherd|strong=\"G4166\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* them|strong=\"G1438\"* many|strong=\"G4183\"* things|strong=\"G4183\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* late|strong=\"G5610\"* in|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G5610\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “This|strong=\"G3588\"* place|strong=\"G5117\"* is|strong=\"G1510\"* deserted|strong=\"G2048\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G1510\"* late|strong=\"G5610\"* in|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G5610\"*." + }, + { + "verseNum": 36, + "text": "Send them|strong=\"G3588\"* away, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* surrounding|strong=\"G2945\"* country and|strong=\"G2532\"* villages|strong=\"G2968\"* and|strong=\"G2532\"* buy themselves|strong=\"G1438\"* bread, for|strong=\"G1519\"* they|strong=\"G2532\"* have|strong=\"G2532\"* nothing|strong=\"G5101\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* something \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*? \\+w Go|strong=\"G5217\"\\+w* \\+w see|strong=\"G3708\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2004\"* them|strong=\"G3588\"* that|strong=\"G3588\"* everyone|strong=\"G3956\"* should|strong=\"G3588\"* sit|strong=\"G3956\"* down in|strong=\"G1909\"* groups|strong=\"G4849\"* on|strong=\"G1909\"* the|strong=\"G2532\"* green|strong=\"G5515\"* grass|strong=\"G5528\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* sat|strong=\"G2532\"* down|strong=\"G2596\"* in|strong=\"G2596\"* ranks|strong=\"G4237\"*, by|strong=\"G2596\"* hundreds|strong=\"G1540\"* and|strong=\"G2532\"* by|strong=\"G2596\"* fifties|strong=\"G4004\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*; and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"* and|strong=\"G2532\"* broke|strong=\"G2622\"* the|strong=\"G2532\"* loaves, and|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* set|strong=\"G3908\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* divided|strong=\"G3307\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"* among|strong=\"G1519\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G2532\"* filled|strong=\"G5526\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G4138\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* full|strong=\"G4138\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* and|strong=\"G2532\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G2486\"*." + }, + { + "verseNum": 44, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* ate|strong=\"G2068\"* the|strong=\"G2532\"* loaves were|strong=\"G1510\"*+ 6:44 TR adds “about”* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 45, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* made|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* get|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* go|strong=\"G4254\"* ahead|strong=\"G4254\"* to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*, to|strong=\"G1519\"* Bethsaida, while|strong=\"G2193\"* he|strong=\"G2532\"* himself|strong=\"G1519\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* away." + }, + { + "verseNum": 46, + "text": "After|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* taken leave of|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, the|strong=\"G1722\"* boat|strong=\"G4143\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* alone|strong=\"G3441\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 48, + "text": "Seeing|strong=\"G3708\"* them|strong=\"G3588\"* distressed in|strong=\"G1722\"* rowing|strong=\"G1643\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* wind was|strong=\"G1510\"* contrary|strong=\"G1727\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, about|strong=\"G4012\"* the|strong=\"G1722\"* fourth|strong=\"G5067\"* watch|strong=\"G5438\"* of|strong=\"G4012\"* the|strong=\"G1722\"* night|strong=\"G3571\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*;+ 6:48 See Job 9:8* and|strong=\"G2532\"* he|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2309\"* passed|strong=\"G3588\"* by|strong=\"G1722\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 49, + "text": "but|strong=\"G1161\"* they|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, supposed|strong=\"G1380\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* ghost|strong=\"G5326\"*, and|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*;" + }, + { + "verseNum": 50, + "text": "for|strong=\"G1063\"* they|strong=\"G2532\"* all|strong=\"G3956\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G1510\"* troubled|strong=\"G5015\"*. But|strong=\"G1161\"* he|strong=\"G2532\"* immediately|strong=\"G2112\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Cheer \\+w up|strong=\"G3361\"\\+w*! \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*!*+ 6:50 or, “I AM!”* Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "He|strong=\"G2532\"* got into|strong=\"G1519\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G1722\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* wind ceased|strong=\"G2869\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G3029\"* amazed|strong=\"G1839\"* among|strong=\"G1722\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* marveled;" + }, + { + "verseNum": 52, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* hadn’t|strong=\"G3588\"* understood|strong=\"G4920\"* about|strong=\"G1909\"* the|strong=\"G1909\"* loaves, but|strong=\"G1063\"* their|strong=\"G3588\"* hearts|strong=\"G2588\"* were|strong=\"G1510\"* hardened|strong=\"G4456\"*." + }, + { + "verseNum": 53, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* crossed|strong=\"G1276\"* over|strong=\"G1909\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* land|strong=\"G1093\"* at|strong=\"G1909\"* Gennesaret|strong=\"G1082\"* and|strong=\"G2532\"* moored|strong=\"G4358\"* to|strong=\"G1519\"* the|strong=\"G2532\"* shore|strong=\"G1093\"*." + }, + { + "verseNum": 54, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* people|strong=\"G3588\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 55, + "text": "and|strong=\"G2532\"* ran|strong=\"G4063\"* around|strong=\"G1909\"* that|strong=\"G3754\"* whole|strong=\"G3650\"* region|strong=\"G5561\"*, and|strong=\"G2532\"* began|strong=\"G1909\"* to|strong=\"G2532\"* bring|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* sick|strong=\"G2560\"* on|strong=\"G1909\"* their|strong=\"G2532\"* mats|strong=\"G2895\"* to|strong=\"G2532\"* where|strong=\"G3699\"* they|strong=\"G2532\"* heard he|strong=\"G2532\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 56, + "text": "Wherever|strong=\"G3699\"* he|strong=\"G2532\"* entered|strong=\"G1531\"*—into|strong=\"G1519\"* villages|strong=\"G2968\"*, or|strong=\"G2228\"* into|strong=\"G1519\"* cities|strong=\"G4172\"*, or|strong=\"G2228\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country—they|strong=\"G2532\"* laid|strong=\"G5087\"* the|strong=\"G1722\"* sick in|strong=\"G1722\"* the|strong=\"G1722\"* marketplaces and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* just|strong=\"G2532\"* touch the|strong=\"G1722\"* fringe|strong=\"G2899\"*+ 6:56 or, tassel* of|strong=\"G2532\"* his|strong=\"G1519\"* garment|strong=\"G2440\"*; and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* touched him|strong=\"G3588\"* were|strong=\"G3588\"* made|strong=\"G4982\"* well|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* come|strong=\"G2064\"* from|strong=\"G2064\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* some|strong=\"G5100\"* of|strong=\"G2532\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* eating|strong=\"G2068\"* bread with|strong=\"G2532\"* defiled|strong=\"G2839\"*, that|strong=\"G3754\"* is|strong=\"G1510\"* unwashed, hands|strong=\"G5495\"*, they|strong=\"G2532\"* found|strong=\"G1510\"* fault." + }, + { + "verseNum": 3, + "text": "(For|strong=\"G1063\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* don’t|strong=\"G3588\"* eat|strong=\"G2068\"* unless|strong=\"G1437\"* they|strong=\"G2532\"* wash|strong=\"G3538\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* forearms, holding|strong=\"G2902\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* don’t eat|strong=\"G2068\"* when|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* marketplace unless|strong=\"G1437\"* they|strong=\"G2532\"* bathe themselves|strong=\"G1510\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* many|strong=\"G4183\"* other|strong=\"G4183\"* things|strong=\"G4183\"* which|strong=\"G3739\"* they|strong=\"G2532\"* have|strong=\"G2532\"* received|strong=\"G3880\"* to|strong=\"G2532\"* hold|strong=\"G2902\"* to|strong=\"G2532\"*: washings of|strong=\"G2532\"* cups|strong=\"G4221\"*, pitchers|strong=\"G3582\"*, bronze vessels|strong=\"G5473\"*, and|strong=\"G2532\"* couches.)" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* don’t|strong=\"G3588\"* your|strong=\"G1223\"* disciples|strong=\"G3101\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, but|strong=\"G2532\"* eat|strong=\"G2068\"* their|strong=\"G2532\"* bread with|strong=\"G1223\"* unwashed hands|strong=\"G5495\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Well|strong=\"G2573\"\\+w* \\+w did|strong=\"G2573\"\\+w* \\+w Isaiah|strong=\"G2268\"\\+w* \\+w prophesy|strong=\"G4395\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 7, + "text": "\\+w They|strong=\"G1161\"\\+w* \\+w worship|strong=\"G4576\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1161\"\\+w* \\+w vain|strong=\"G3155\"\\+w*,*" + }, + { + "verseNum": 8, + "text": "“\\+w For|strong=\"G2316\"\\+w* you set aside \\+w the|strong=\"G3588\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2316\"\\+w* \\+w hold|strong=\"G2902\"\\+w* tightly \\+w to|strong=\"G2316\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w tradition|strong=\"G3862\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*—\\+w the|strong=\"G3588\"\\+w* washing \\+w of|strong=\"G2316\"\\+w* pitchers \\+w and|strong=\"G2316\"\\+w* cups, \\+w and|strong=\"G2316\"\\+w* you \\+w do|strong=\"G3588\"\\+w* many \\+w other|strong=\"G3588\"\\+w* \\+w such|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “Full \\+w well|strong=\"G2573\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* reject \\+w the|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w tradition|strong=\"G3862\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*;’*+ 7:10 Exodus 20:12; Deuteronomy 5:16* \\+w and|strong=\"G2532\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w let|strong=\"G1063\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G5053\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*+ 7:10 Exodus 21:17; Leviticus 20:9*" + }, + { + "verseNum": 11, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1510\"\\+w* \\+w man|strong=\"G3739\"\\+w* tells \\+w his|strong=\"G3739\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G3739\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, “\\+w Whatever|strong=\"G3739\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w have|strong=\"G1473\"\\+w* received \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w Corban|strong=\"G2878\"\\+w*,”’”*+ 7:11 Corban is a Hebrew word for an offering devoted to God.* that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G3004\"* say|strong=\"G3004\"*, given|strong=\"G1435\"* to|strong=\"G3004\"* God|strong=\"G3004\"*," + }, + { + "verseNum": 12, + "text": "“\\+w then|strong=\"G3765\"\\+w* \\+w you|strong=\"G4160\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w longer|strong=\"G3765\"\\+w* allow \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2228\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w anything|strong=\"G3762\"\\+w* \\+w for|strong=\"G2228\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, *" + }, + { + "verseNum": 13, + "text": "\\+w making|strong=\"G4160\"\\+w* void \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w tradition|strong=\"G3862\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w down|strong=\"G3860\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w like|strong=\"G5108\"\\+w* \\+w this|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* himself and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Hear \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w There|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w going|strong=\"G1607\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G3762\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w proceed|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w man|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "If anyone has ears to hear, let him hear!”*+ 7:16 NU omits verse 16.*" + }, + { + "verseNum": 17, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* house|strong=\"G3624\"* away from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* about|strong=\"G1519\"* the|strong=\"G2532\"* parable|strong=\"G3850\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w without|strong=\"G2532\"\\+w* \\+w understanding|strong=\"G3539\"\\+w*? Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w whatever|strong=\"G3956\"\\+w* \\+w goes|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3956\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "\\+w because|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G1607\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w stomach|strong=\"G2836\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* latrine, \\+w making|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w foods|strong=\"G1033\"\\+w* \\+w clean|strong=\"G2511\"\\+w*?”*+ 7:19 NU ends Jesus’ direct quote and question after “latrine”, ending the verse with “Thus he declared all foods clean. *" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w That|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G1565\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w defiles|strong=\"G2840\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w man|strong=\"G1565\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w within|strong=\"G2081\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w proceed|strong=\"G1607\"\\+w* \\+w evil|strong=\"G2556\"\\+w* \\+w thoughts|strong=\"G1261\"\\+w*, adulteries, \\+w sexual|strong=\"G4202\"\\+w* sins, \\+w murders|strong=\"G5408\"\\+w*, \\+w thefts|strong=\"G2829\"\\+w*, *" + }, + { + "verseNum": 22, + "text": "covetings, \\+w wickedness|strong=\"G4189\"\\+w*, \\+w deceit|strong=\"G1388\"\\+w*, lustful desires, \\+w an|strong=\"G3788\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, blasphemy, \\+w pride|strong=\"G5243\"\\+w*, \\+w and|strong=\"G3788\"\\+w* foolishness. *" + }, + { + "verseNum": 23, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w come|strong=\"G1607\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w defile|strong=\"G2840\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w*.” *" + }, + { + "verseNum": 24, + "text": "From|strong=\"G2532\"* there|strong=\"G2532\"* he|strong=\"G2532\"* arose|strong=\"G1525\"* and|strong=\"G2532\"* went|strong=\"G1525\"* away into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon. He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* house|strong=\"G3614\"* and|strong=\"G2532\"* didn’t|strong=\"G3588\"* want|strong=\"G2309\"* anyone|strong=\"G3762\"* to|strong=\"G1519\"* know|strong=\"G1097\"* it|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* couldn’t|strong=\"G3588\"* escape|strong=\"G2990\"* notice|strong=\"G2990\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G4012\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* whose|strong=\"G3739\"* little|strong=\"G2365\"* daughter|strong=\"G2365\"* had|strong=\"G2192\"* an|strong=\"G2192\"* unclean spirit|strong=\"G4151\"*, having|strong=\"G2192\"* heard of|strong=\"G4012\"* him|strong=\"G3588\"*, came|strong=\"G2064\"* and|strong=\"G2064\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* at|strong=\"G4314\"* his|strong=\"G4012\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1674\"*, a|strong=\"G2532\"* Syrophoenician|strong=\"G4949\"* by|strong=\"G1537\"* race|strong=\"G1085\"*. She|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* cast|strong=\"G1544\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* out|strong=\"G1537\"* of|strong=\"G1537\"* her|strong=\"G3588\"* daughter|strong=\"G2364\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G2532\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Let|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w filled|strong=\"G5526\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*’s bread \\+w and|strong=\"G2532\"\\+w* throw \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2952\"\\+w*.” *" + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* she|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*. Yet|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* dogs|strong=\"G2952\"* under|strong=\"G5270\"* the|strong=\"G2532\"* table|strong=\"G5132\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* children|strong=\"G3813\"*’s|strong=\"G2962\"* crumbs|strong=\"G5589\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w For|strong=\"G1223\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w saying|strong=\"G3004\"\\+w*, \\+w go|strong=\"G5217\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w way|strong=\"G5217\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w demon|strong=\"G1140\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w daughter|strong=\"G2364\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "She|strong=\"G2532\"* went|strong=\"G1831\"* away|strong=\"G1831\"* to|strong=\"G1519\"* her|strong=\"G1519\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* child|strong=\"G3813\"* having|strong=\"G2532\"* been|strong=\"G2532\"* laid|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* bed|strong=\"G2825\"*, with|strong=\"G2532\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*." + }, + { + "verseNum": 31, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* departed|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G1537\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"* through|strong=\"G1223\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G1537\"* the|strong=\"G2532\"* region|strong=\"G3725\"* of|strong=\"G1537\"* Decapolis|strong=\"G1179\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* to|strong=\"G2443\"* him|strong=\"G3588\"* one|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* deaf|strong=\"G2974\"* and|strong=\"G2532\"* had|strong=\"G2532\"* an|strong=\"G2532\"* impediment in|strong=\"G2532\"* his|strong=\"G2007\"* speech|strong=\"G3424\"*. They|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G2443\"* lay|strong=\"G2007\"* his|strong=\"G2007\"* hand|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* him|strong=\"G3588\"* aside|strong=\"G2596\"* from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* privately|strong=\"G2398\"* and|strong=\"G2532\"* put|strong=\"G2532\"* his|strong=\"G1519\"* fingers|strong=\"G1147\"* into|strong=\"G1519\"* his|strong=\"G1519\"* ears|strong=\"G3775\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* spat|strong=\"G4429\"* and|strong=\"G2532\"* touched his|strong=\"G1519\"* tongue|strong=\"G1100\"*." + }, + { + "verseNum": 34, + "text": "Looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* sighed|strong=\"G4727\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Ephphatha|strong=\"G2188\"\\+w*!” * that|strong=\"G3739\"* is|strong=\"G1510\"*, “\\+w Be|strong=\"G1510\"\\+w* \\+w opened|strong=\"G1272\"\\+w*!”*" + }, + { + "verseNum": 35, + "text": "Immediately|strong=\"G2112\"* his|strong=\"G2532\"* ears were|strong=\"G3588\"* opened, and|strong=\"G2532\"* the|strong=\"G2532\"* impediment|strong=\"G1199\"* of|strong=\"G2532\"* his|strong=\"G2532\"* tongue|strong=\"G1100\"* was|strong=\"G3588\"* released|strong=\"G3089\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* clearly." + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3004\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* more|strong=\"G3123\"* he|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3004\"*, so|strong=\"G2443\"* much|strong=\"G3745\"* the|strong=\"G2532\"* more|strong=\"G3123\"* widely they|strong=\"G2532\"* proclaimed|strong=\"G2784\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"* beyond|strong=\"G1605\"* measure|strong=\"G5249\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2532\"* done|strong=\"G4160\"* all|strong=\"G3956\"* things|strong=\"G3956\"* well|strong=\"G2573\"*. He|strong=\"G2532\"* makes|strong=\"G4160\"* even|strong=\"G2532\"* the|strong=\"G2532\"* deaf|strong=\"G2974\"* hear and|strong=\"G2532\"* the|strong=\"G2532\"* mute|strong=\"G2974\"* speak|strong=\"G2980\"*!”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, when|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* very|strong=\"G4183\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2192\"* nothing|strong=\"G3361\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*, Jesus|strong=\"G3004\"* called|strong=\"G3004\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* to|strong=\"G2532\"* himself|strong=\"G1565\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w compassion|strong=\"G4697\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w multitude|strong=\"G3793\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* stayed \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G2532\"\\+w* send \\+w them|strong=\"G3588\"\\+w* \\+w away|strong=\"G3113\"\\+w* \\+w fasting|strong=\"G3523\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w home|strong=\"G3624\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w faint|strong=\"G1590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w a|strong=\"G2532\"\\+w* long \\+w way|strong=\"G3598\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "His|strong=\"G1909\"* disciples|strong=\"G3101\"* answered him|strong=\"G3588\"*, “From|strong=\"G2532\"* where|strong=\"G4159\"* could|strong=\"G1410\"* one|strong=\"G5100\"* satisfy|strong=\"G5526\"* these|strong=\"G3778\"* people|strong=\"G3588\"* with|strong=\"G2532\"* bread here|strong=\"G5602\"* in|strong=\"G1909\"* a|strong=\"G2532\"* deserted place|strong=\"G2047\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"*, “\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* loaves \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2443\"* sit down on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* loaves. Having|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* them|strong=\"G3588\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G2443\"* his|strong=\"G1909\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* serve|strong=\"G3908\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* served|strong=\"G3908\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* few|strong=\"G3641\"* small|strong=\"G3641\"* fish|strong=\"G2485\"*. Having|strong=\"G2192\"* blessed|strong=\"G2127\"* them|strong=\"G3004\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* serve|strong=\"G3908\"* these|strong=\"G3004\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G2532\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* seven|strong=\"G2033\"* baskets|strong=\"G4711\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G2532\"* were|strong=\"G2532\"* left|strong=\"G4051\"* over|strong=\"G4051\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"G1161\"* who|strong=\"G2532\"* had|strong=\"G2532\"* eaten were|strong=\"G1510\"* about|strong=\"G5613\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G1438\"* away." + }, + { + "verseNum": 10, + "text": "Immediately|strong=\"G2112\"* he|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* region of|strong=\"G2532\"* Dalmanutha|strong=\"G1148\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* question|strong=\"G4802\"* him|strong=\"G3588\"*, seeking|strong=\"G2212\"* from|strong=\"G3844\"* him|strong=\"G3588\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* from|strong=\"G3844\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* sighed deeply in|strong=\"G2532\"* his|strong=\"G2532\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 8:12 The word translated “generation” here (genea) could also be translated “people”, “race”, or “family”.* \\+w seek|strong=\"G2212\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*? Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* left them|strong=\"G3588\"*, and|strong=\"G2532\"* again|strong=\"G3825\"* entering|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat, departed to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* forgot to|strong=\"G2532\"* take|strong=\"G2983\"* bread; and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* have|strong=\"G2192\"* more|strong=\"G2192\"* than|strong=\"G2532\"* one|strong=\"G1520\"* loaf in|strong=\"G1722\"* the|strong=\"G1722\"* boat|strong=\"G4143\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* warned them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w heed|strong=\"G3708\"\\+w*: \\+w beware|strong=\"G3708\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Herod|strong=\"G2264\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* reasoned|strong=\"G1260\"* with|strong=\"G4314\"* one|strong=\"G2532\"* another, saying|strong=\"G3754\"*, “It|strong=\"G2532\"*’s|strong=\"G2192\"* because|strong=\"G3754\"* we|strong=\"G3754\"* have|strong=\"G2192\"* no|strong=\"G3756\"* bread.”" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G3004\"*, perceiving|strong=\"G1097\"* it|strong=\"G2532\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reason|strong=\"G1260\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* bread? Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w perceive|strong=\"G3539\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w understand|strong=\"G4920\"\\+w*? \\+w Is|strong=\"G3588\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w hardened|strong=\"G4456\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w Having|strong=\"G2192\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, don’t \\+w you|strong=\"G2532\"\\+w* see? \\+w Having|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, don’t \\+w you|strong=\"G2532\"\\+w* hear? Don’t \\+w you|strong=\"G2532\"\\+w* \\+w remember|strong=\"G3421\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w When|strong=\"G3753\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w broke|strong=\"G2806\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* loaves \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w thousand|strong=\"G4000\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G2894\"\\+w* \\+w full|strong=\"G4134\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "“\\+w When|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* loaves fed \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5070\"\\+w* \\+w thousand|strong=\"G5070\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w baskets|strong=\"G4711\"\\+w* \\+w full|strong=\"G4138\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* them|strong=\"G3004\"*, “Don’t \\+w you|strong=\"G3004\"\\+w* \\+w understand|strong=\"G4920\"\\+w* \\+w yet|strong=\"G2532\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethsaida. They|strong=\"G2532\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* blind|strong=\"G5185\"* man|strong=\"G5185\"* to|strong=\"G1519\"* him|strong=\"G2532\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G2532\"* to|strong=\"G1519\"* touch him|strong=\"G2532\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* the|strong=\"G2532\"* blind|strong=\"G5185\"* man|strong=\"G5100\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* village|strong=\"G2968\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spat|strong=\"G4429\"* on|strong=\"G1519\"* his|strong=\"G2007\"* eyes|strong=\"G3659\"*, and|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1519\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* if|strong=\"G1487\"* he|strong=\"G2532\"* saw anything|strong=\"G5100\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* looked|strong=\"G3708\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* see|strong=\"G3708\"* men|strong=\"G3588\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* see|strong=\"G3708\"* them|strong=\"G3588\"* like|strong=\"G5613\"* walking|strong=\"G4043\"* trees|strong=\"G1186\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"G2532\"* again|strong=\"G3825\"* he|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* his|strong=\"G2007\"* eyes|strong=\"G3788\"*. He|strong=\"G2532\"* looked|strong=\"G1689\"* intently|strong=\"G1227\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* restored, and|strong=\"G2532\"* saw|strong=\"G1689\"* everyone clearly|strong=\"G5081\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* away to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, saying|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w tell|strong=\"G3004\"\\+w* anyone \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, with|strong=\"G1722\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, into|strong=\"G1519\"* the|strong=\"G1722\"* villages|strong=\"G2968\"* of|strong=\"G2532\"* Caesarea|strong=\"G2542\"* Philippi|strong=\"G5376\"*. On|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?” *" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “John|strong=\"G2491\"* the|strong=\"G2532\"* Baptizer, and|strong=\"G2532\"* others|strong=\"G3588\"* say|strong=\"G3004\"* Elijah|strong=\"G2243\"*, but|strong=\"G1161\"* others|strong=\"G3588\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 30, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2008\"* them|strong=\"G3004\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* about|strong=\"G4012\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* began to|strong=\"G2532\"* teach|strong=\"G1321\"* them|strong=\"G3588\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* Man|strong=\"G5207\"* must|strong=\"G1163\"* suffer|strong=\"G3958\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* rejected by|strong=\"G5259\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* be|strong=\"G2532\"* killed, and|strong=\"G2532\"* after|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* rise|strong=\"G2250\"* again|strong=\"G2532\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* openly|strong=\"G3954\"*. Peter|strong=\"G4074\"* took|strong=\"G4355\"* him|strong=\"G3588\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* rebuke|strong=\"G2008\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, turning|strong=\"G1994\"* around|strong=\"G1994\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"*, rebuked|strong=\"G2008\"* Peter|strong=\"G4074\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Get|strong=\"G5217\"\\+w* \\+w behind|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w mind|strong=\"G5426\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* with|strong=\"G4862\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3748\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w gain|strong=\"G2770\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w forfeit|strong=\"G2210\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w a|strong=\"G1325\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w in|strong=\"G1063\"\\+w* exchange \\+w for|strong=\"G1063\"\\+w* \\+w his|strong=\"G1325\"\\+w* \\+w life|strong=\"G5590\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w adulterous|strong=\"G3428\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinful \\+w generation|strong=\"G1074\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w glory|strong=\"G1391\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels.”*" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w standing|strong=\"G2476\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w come|strong=\"G2064\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w*.”*" + }, + { + "verseNum": 2, + "text": "After|strong=\"G3326\"* six|strong=\"G1803\"* days|strong=\"G2250\"* Jesus|strong=\"G2424\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* a|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"* privately|strong=\"G2398\"* by|strong=\"G2596\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* changed|strong=\"G3339\"* into|strong=\"G1519\"* another|strong=\"G1438\"* form in|strong=\"G1519\"* front|strong=\"G1715\"* of|strong=\"G2250\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1909\"* clothing|strong=\"G2440\"* became|strong=\"G1096\"* glistening, exceedingly|strong=\"G3029\"* white|strong=\"G3022\"*, like|strong=\"G3779\"* snow, such|strong=\"G3779\"* as|strong=\"G2532\"* no|strong=\"G3756\"* launderer|strong=\"G1102\"* on|strong=\"G1909\"* earth|strong=\"G1093\"* can|strong=\"G1410\"* whiten|strong=\"G3021\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Elijah|strong=\"G2243\"* and|strong=\"G2532\"* Moses|strong=\"G3475\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* talking|strong=\"G4814\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 5, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Rabbi|strong=\"G4461\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G1520\"* us|strong=\"G3004\"* to|strong=\"G2532\"* be|strong=\"G1510\"* here|strong=\"G5602\"*. Let|strong=\"G1510\"*’s make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"*: one|strong=\"G1520\"* for|strong=\"G1520\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G1520\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G1520\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* he|strong=\"G1063\"* didn’t know|strong=\"G1492\"* what|strong=\"G5101\"* to|strong=\"G3756\"* say|strong=\"G5101\"*, for|strong=\"G1063\"* they|strong=\"G1063\"* were|strong=\"G1096\"* very|strong=\"G1096\"* afraid|strong=\"G1630\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"G1096\"* cloud|strong=\"G3507\"* came|strong=\"G1096\"*, overshadowing|strong=\"G1982\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*. Listen to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 8, + "text": "Suddenly|strong=\"G1819\"* looking|strong=\"G4017\"* around|strong=\"G4017\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* no|strong=\"G3762\"* one|strong=\"G3762\"* with|strong=\"G3326\"* them|strong=\"G3588\"* any|strong=\"G3762\"* more|strong=\"G3765\"*, except Jesus|strong=\"G2424\"* only|strong=\"G3441\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G1537\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, he|strong=\"G2532\"* commanded|strong=\"G1291\"* them|strong=\"G3588\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* tell|strong=\"G1334\"* no|strong=\"G3361\"* one|strong=\"G3367\"* what|strong=\"G3739\"* things|strong=\"G3588\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"*, until|strong=\"G2532\"* after|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G3367\"* had|strong=\"G2532\"* risen|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* kept|strong=\"G2532\"* this|strong=\"G3588\"* saying|strong=\"G3056\"* to|strong=\"G4314\"* themselves|strong=\"G1438\"*, questioning|strong=\"G4802\"* what|strong=\"G5101\"* the|strong=\"G2532\"* “rising|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*” meant|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Why|strong=\"G3754\"* do|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* say|strong=\"G3004\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* must|strong=\"G1163\"* come|strong=\"G2064\"* first|strong=\"G4413\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Elijah|strong=\"G2243\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* restores \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w despised|strong=\"G1848\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G4160\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3748\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G1909\"\\+w* \\+w him|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "Coming|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* around|strong=\"G4012\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* scribes|strong=\"G1122\"* questioning|strong=\"G4802\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Immediately|strong=\"G2112\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, were|strong=\"G3588\"* greatly amazed|strong=\"G1568\"*, and|strong=\"G2532\"* running|strong=\"G4370\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, greeted him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* the|strong=\"G2532\"* scribes, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w asking|strong=\"G1905\"\\+w* \\+w them|strong=\"G1438\"\\+w*?”*" + }, + { + "verseNum": 17, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* answered, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* brought|strong=\"G5342\"* to|strong=\"G4314\"* you|strong=\"G4771\"* my|strong=\"G1473\"* son|strong=\"G5207\"*, who|strong=\"G3588\"* has|strong=\"G2192\"* a|strong=\"G2192\"* mute spirit|strong=\"G4151\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* wherever|strong=\"G3699\"* it|strong=\"G2532\"* seizes|strong=\"G2638\"* him|strong=\"G3588\"*, it|strong=\"G2532\"* throws|strong=\"G1544\"* him|strong=\"G3588\"* down|strong=\"G4486\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* foams at|strong=\"G3756\"* the|strong=\"G2532\"* mouth, grinds|strong=\"G5149\"* his|strong=\"G2532\"* teeth|strong=\"G3599\"*, and|strong=\"G2532\"* becomes rigid. I|strong=\"G2532\"* asked|strong=\"G3004\"* your|strong=\"G1437\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Unbelieving \\+w generation|strong=\"G1074\"\\+w*, \\+w how|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w How|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, immediately|strong=\"G2112\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* convulsed him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, wallowing and|strong=\"G2532\"* foaming at|strong=\"G1909\"* the|strong=\"G2532\"* mouth." + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* asked|strong=\"G1905\"* his|strong=\"G2532\"* father|strong=\"G3962\"*, “\\+w How|strong=\"G5613\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w since|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w happening|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 22, + "text": "Often|strong=\"G4178\"* it|strong=\"G2532\"* has|strong=\"G5100\"* cast|strong=\"G2532\"* him|strong=\"G2532\"* both|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"* to|strong=\"G1519\"* destroy him|strong=\"G2532\"*. But|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G1487\"* can|strong=\"G1410\"* do|strong=\"G2532\"* anything|strong=\"G5100\"*, have|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* us|strong=\"G1519\"* and|strong=\"G2532\"* help us|strong=\"G1519\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "Immediately|strong=\"G2112\"* the|strong=\"G3588\"* father|strong=\"G3962\"* of|strong=\"G3962\"* the|strong=\"G3588\"* child|strong=\"G3813\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2896\"* tears, “I|strong=\"G1473\"* believe|strong=\"G4100\"*. Help my|strong=\"G1473\"* unbelief!”" + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"* came|strong=\"G1831\"* running|strong=\"G2532\"* together|strong=\"G1998\"*, he|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w mute|strong=\"G2974\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w command|strong=\"G2004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w never|strong=\"G3371\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w again|strong=\"G3371\"\\+w*!”*" + }, + { + "verseNum": 26, + "text": "After|strong=\"G2532\"* crying|strong=\"G2896\"* out|strong=\"G1831\"* and|strong=\"G2532\"* convulsing him|strong=\"G3588\"* greatly|strong=\"G4183\"*, it|strong=\"G2532\"* came|strong=\"G1096\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* boy became|strong=\"G1096\"* like|strong=\"G5616\"* one|strong=\"G3588\"* dead|strong=\"G3498\"*, so|strong=\"G2532\"* much|strong=\"G4183\"* that|strong=\"G3754\"* most|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G3588\"* dead|strong=\"G3498\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* took|strong=\"G2902\"* him|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* arose|strong=\"G1453\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, “Why|strong=\"G1519\"* couldn’t|strong=\"G3588\"* we|strong=\"G2249\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*?”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w kind|strong=\"G1085\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w prayer|strong=\"G4335\"\\+w* \\+w and|strong=\"G2532\"\\+w* fasting.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* there|strong=\"G2532\"* and|strong=\"G2532\"* passed|strong=\"G3588\"* through|strong=\"G1223\"* Galilee|strong=\"G1056\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* want|strong=\"G2309\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* know|strong=\"G1097\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 31, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* teaching|strong=\"G1321\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w being|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* killed, \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* third \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand the|strong=\"G2532\"* saying|strong=\"G4487\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* to|strong=\"G2532\"* ask|strong=\"G1905\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w you|strong=\"G1722\"\\+w* arguing \\+w among|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w*?”*" + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* silent|strong=\"G4623\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* had|strong=\"G3588\"* disputed|strong=\"G1256\"* with|strong=\"G1722\"* one|strong=\"G3588\"* another|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"* about|strong=\"G1722\"* who|strong=\"G5101\"* was|strong=\"G3588\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1249\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* little child|strong=\"G3813\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G1722\"*. Taking|strong=\"G2983\"* him|strong=\"G2476\"* in|strong=\"G1722\"* his|strong=\"G1722\"* arms|strong=\"G1723\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G1722\"*," + }, + { + "verseNum": 37, + "text": "“\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w such|strong=\"G5108\"\\+w* little \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "John|strong=\"G2491\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2249\"* saw|strong=\"G3708\"* someone|strong=\"G5100\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* follow us|strong=\"G2249\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* in|strong=\"G1722\"* your|strong=\"G2532\"* name|strong=\"G3686\"*; and|strong=\"G2532\"* we|strong=\"G2249\"* forbade him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* follow us|strong=\"G2249\"*.”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w work|strong=\"G1411\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w quickly|strong=\"G5035\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w evil|strong=\"G2551\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w on|strong=\"G5228\"\\+w* \\+w our|strong=\"G2596\"\\+w* side. *" + }, + { + "verseNum": 41, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G4222\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*’s, most \\+w certainly|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G1722\"\\+w* lose \\+w his|strong=\"G1722\"\\+w* \\+w reward|strong=\"G3408\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "“\\+w Whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* thrown \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w millstone|strong=\"G3458\"\\+w* \\+w hung|strong=\"G4029\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* off. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w maimed|strong=\"G2948\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna, *+ 9:43 or, Hell* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* unquenchable \\+w fire|strong=\"G4442\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "‘where their worm doesn’t die, and the fire is not quenched.’ *+ 9:44 Isaiah 66:24*+ 9:44 NU omits verse 44.*" + }, + { + "verseNum": 45, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w foot|strong=\"G4228\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w cut|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* off. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w lame|strong=\"G5560\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna, *+ 9:45 or, Hell* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* fire \\+w that|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* never \\+w be|strong=\"G1510\"\\+w* quenched—*" + }, + { + "verseNum": 46, + "text": "‘where their worm doesn’t die, and the fire is not quenched.’ *+ 9:46 NU omits verse 46.*" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w causes|strong=\"G4624\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*, \\+w throw|strong=\"G1544\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom \\+w with|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Gehenna*+ 9:47 or, Hell* \\+w of|strong=\"G2316\"\\+w* fire, *" + }, + { + "verseNum": 48, + "text": "‘\\+w where|strong=\"G3699\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w worm|strong=\"G4663\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w die|strong=\"G5053\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w quenched|strong=\"G4570\"\\+w*.’ *+ 9:48 Isaiah 66:24*" + }, + { + "verseNum": 49, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* salted \\+w with|strong=\"G3956\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w and|strong=\"G3956\"\\+w* \\+w every|strong=\"G3956\"\\+w* sacrifice \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* seasoned \\+w with|strong=\"G3956\"\\+w* salt. *" + }, + { + "verseNum": 50, + "text": "Salt \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt \\+w has|strong=\"G2192\"\\+w* lost its saltiness, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w you|strong=\"G1437\"\\+w* season \\+w it|strong=\"G2532\"\\+w*? \\+w Have|strong=\"G2192\"\\+w* salt \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w peace|strong=\"G1514\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w another|strong=\"G1438\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* arose from|strong=\"G2064\"* there|strong=\"G2532\"* and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* borders|strong=\"G3725\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*. Multitudes|strong=\"G3793\"* came|strong=\"G2064\"* together|strong=\"G4314\"* to|strong=\"G1519\"* him|strong=\"G3588\"* again|strong=\"G3825\"*. As|strong=\"G5613\"* he|strong=\"G2532\"* usually did|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* again|strong=\"G3825\"* teaching|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Pharisees|strong=\"G5330\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* a|strong=\"G2532\"* man to|strong=\"G2532\"* divorce his|strong=\"G2532\"* wife|strong=\"G1135\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Moses|strong=\"G3475\"* allowed|strong=\"G2010\"* a|strong=\"G2532\"* certificate of|strong=\"G2532\"* divorce to|strong=\"G2532\"* be|strong=\"G2532\"* written|strong=\"G1125\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* divorce her|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w For|strong=\"G4314\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hardness|strong=\"G4641\"\\+w* \\+w of|strong=\"G2424\"\\+w* \\+w heart|strong=\"G4641\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w wrote|strong=\"G1125\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w creation|strong=\"G2937\"\\+w*, \\+w God|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w them|strong=\"G1438\"\\+w* male \\+w and|strong=\"G2532\"\\+w* \\+w female|strong=\"G2338\"\\+w*.*+ 10:6 Genesis 1:27*" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G4314\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1752\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w join|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, *" + }, + { + "verseNum": 8, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w become|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*,*+ 10:8 Genesis 2:24* \\+w so|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w joined|strong=\"G4801\"\\+w* \\+w together|strong=\"G4801\"\\+w*, \\+w let|strong=\"G5563\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w separate|strong=\"G5563\"\\+w*.” *" + }, + { + "verseNum": 10, + "text": "In|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, his|strong=\"G1519\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* again|strong=\"G3825\"* about|strong=\"G4012\"* the|strong=\"G2532\"* same|strong=\"G3778\"* matter." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3739\"\\+w* divorces \\+w his|strong=\"G1438\"\\+w* \\+w wife|strong=\"G1135\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G1438\"\\+w* \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* woman herself divorces \\+w her|strong=\"G1437\"\\+w* husband \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w she|strong=\"G2532\"\\+w* \\+w commits|strong=\"G3429\"\\+w* \\+w adultery|strong=\"G3429\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* bringing|strong=\"G4374\"* to|strong=\"G2443\"* him|strong=\"G3588\"* little children|strong=\"G3813\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* touch them|strong=\"G3588\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* rebuked|strong=\"G2008\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* bringing|strong=\"G4374\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* moved|strong=\"G3361\"* with|strong=\"G4314\"* indignation and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*! Don’\\+w t|strong=\"G3588\"\\+w* \\+w forbid|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w these|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* little \\+w child|strong=\"G3813\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1909\"* his|strong=\"G1909\"* arms|strong=\"G1723\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, laying|strong=\"G5087\"* his|strong=\"G1909\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G2532\"* going|strong=\"G1607\"* out|strong=\"G1607\"* into|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, one|strong=\"G1520\"* ran|strong=\"G4370\"* to|strong=\"G1519\"* him|strong=\"G1905\"*, knelt|strong=\"G1120\"* before|strong=\"G1519\"* him|strong=\"G1905\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, “Good|strong=\"G5101\"* Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 18, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*? \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G5101\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w*—\\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*: ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w murder|strong=\"G5407\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w steal|strong=\"G2813\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w give|strong=\"G5576\"\\+w* \\+w false|strong=\"G5576\"\\+w* \\+w testimony|strong=\"G5576\"\\+w*,’ ‘\\+w Do|strong=\"G1492\"\\+w* \\+w not|strong=\"G3361\"\\+w* defraud,’ ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’”*+ 10:19 Exodus 20:12-16; Deuteronomy 5:16-20 *" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G5346\"* to|strong=\"G1161\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* observed|strong=\"G5442\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* from|strong=\"G1537\"* my|strong=\"G3956\"* youth|strong=\"G3503\"*.”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* looking|strong=\"G1689\"* at|strong=\"G1722\"* him|strong=\"G3588\"* loved him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w One|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w lack|strong=\"G5302\"\\+w*. \\+w Go|strong=\"G5217\"\\+w*, \\+w sell|strong=\"G4453\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, \\+w follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w taking|strong=\"G1325\"\\+w* \\+w up|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* cross.”*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* his|strong=\"G1909\"* face fell|strong=\"G3056\"* at|strong=\"G1909\"* that|strong=\"G3588\"* saying|strong=\"G3056\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* went|strong=\"G3588\"* away sorrowful|strong=\"G3076\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* great|strong=\"G4183\"* possessions|strong=\"G2933\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w How|strong=\"G4459\"\\+w* difficult \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w riches|strong=\"G5536\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom!”*" + }, + { + "verseNum": 24, + "text": "The|strong=\"G1519\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* amazed|strong=\"G2284\"* at|strong=\"G1909\"* his|strong=\"G1519\"* words|strong=\"G3056\"*. But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* again|strong=\"G3825\"*, “\\+w Children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w hard|strong=\"G1422\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* trust \\+w in|strong=\"G1519\"\\+w* riches \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom! *" + }, + { + "verseNum": 25, + "text": "\\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w needle|strong=\"G4476\"\\+w*’s \\+w eye|strong=\"G5168\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* exceedingly|strong=\"G4057\"* astonished|strong=\"G1605\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Then|strong=\"G2532\"* who|strong=\"G5101\"* can|strong=\"G1410\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"*, looking|strong=\"G1689\"* at|strong=\"G3844\"* them|strong=\"G3588\"*, said|strong=\"G3004\"*, “\\+w With|strong=\"G3844\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w impossible|strong=\"G3756\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* began to|strong=\"G2532\"* tell|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* left all|strong=\"G3956\"* and|strong=\"G2532\"* have|strong=\"G2532\"* followed you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G3962\"\\+w* left \\+w house|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* sisters, \\+w or|strong=\"G2228\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w mother|strong=\"G3384\"\\+w*, \\+w or|strong=\"G2228\"\\+w* wife, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w or|strong=\"G2228\"\\+w* land, \\+w for|strong=\"G1752\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*: \\+w houses|strong=\"G3614\"\\+w*, brothers, sisters, \\+w mothers|strong=\"G3384\"\\+w*, \\+w children|strong=\"G5043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* land, \\+w with|strong=\"G3326\"\\+w* \\+w persecutions|strong=\"G1375\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w age|strong=\"G2540\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w first|strong=\"G4413\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, going|strong=\"G3195\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*; and|strong=\"G2532\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* going|strong=\"G3195\"* in|strong=\"G1722\"* front|strong=\"G4254\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* amazed|strong=\"G2284\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed were|strong=\"G1510\"* afraid|strong=\"G5399\"*. He|strong=\"G2532\"* again|strong=\"G3825\"* took|strong=\"G3880\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"*, and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* them|strong=\"G3588\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* were|strong=\"G1510\"* going|strong=\"G3195\"* to|strong=\"G1519\"* happen|strong=\"G1510\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G3754\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chief|strong=\"G2532\"\\+w* priests \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w mock|strong=\"G1702\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w spit|strong=\"G1716\"\\+w* \\+w on|strong=\"G3326\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w scourge|strong=\"G3146\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G2532\"\\+w*. \\+w On|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* third \\+w day|strong=\"G2250\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, came|strong=\"G2532\"* near to|strong=\"G2443\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G2249\"* want|strong=\"G2309\"* you|strong=\"G4771\"* to|strong=\"G2443\"* do|strong=\"G4160\"* for|strong=\"G2532\"* us|strong=\"G3004\"* whatever|strong=\"G3739\"* we|strong=\"G2249\"* will|strong=\"G2309\"* ask|strong=\"G3004\"*.”" + }, + { + "verseNum": 36, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Grant|strong=\"G1325\"* to|strong=\"G2443\"* us|strong=\"G1325\"* that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* sit|strong=\"G2523\"*, one|strong=\"G1520\"* at|strong=\"G1722\"* your|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* one|strong=\"G1520\"* at|strong=\"G1722\"* your|strong=\"G2532\"* left hand|strong=\"G1188\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* glory|strong=\"G1391\"*.”" + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w asking|strong=\"G3004\"\\+w*. \\+w Are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w* \\+w the|strong=\"G1161\"\\+w* baptism \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* baptized \\+w with|strong=\"G3756\"\\+w*?”*" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G3739\"* are|strong=\"G3588\"* able|strong=\"G1410\"*.”" + }, + { + "verseNum": 40, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w left|strong=\"G2176\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* indignant toward James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w recognized|strong=\"G1380\"\\+w* \\+w as|strong=\"G2532\"\\+w* rulers \\+w over|strong=\"G2634\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w ones|strong=\"G3748\"\\+w* \\+w exercise|strong=\"G2715\"\\+w* \\+w authority|strong=\"G2715\"\\+w* \\+w over|strong=\"G2634\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G3739\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w servant|strong=\"G1249\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* bondservant \\+w of|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w served|strong=\"G1247\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ransom|strong=\"G3083\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w*.”*" + }, + { + "verseNum": 46, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Jericho|strong=\"G2410\"*. As|strong=\"G1519\"* he|strong=\"G2532\"* went|strong=\"G2064\"* out|strong=\"G1607\"* from|strong=\"G3844\"* Jericho|strong=\"G2410\"* with|strong=\"G3844\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G2532\"* multitude|strong=\"G3793\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Timaeus|strong=\"G5090\"*, Bartimaeus, a|strong=\"G2532\"* blind|strong=\"G5185\"* beggar|strong=\"G4319\"*, was|strong=\"G3588\"* sitting|strong=\"G2521\"* by|strong=\"G3844\"* the|strong=\"G2532\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* heard that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"* the|strong=\"G2532\"* Nazarene|strong=\"G3479\"*, he|strong=\"G2532\"* began to|strong=\"G2532\"* cry|strong=\"G2896\"* out|strong=\"G2896\"* and|strong=\"G2532\"* say|strong=\"G3004\"*, “Jesus|strong=\"G2424\"*, you|strong=\"G3754\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 48, + "text": "Many|strong=\"G4183\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* quiet|strong=\"G4623\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* much|strong=\"G4183\"* more|strong=\"G3123\"*, “You|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 49, + "text": "Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* still|strong=\"G2476\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Call|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 50, + "text": "He|strong=\"G1161\"*, casting away his|strong=\"G4314\"* cloak|strong=\"G2440\"*, sprang up|strong=\"G2064\"*, and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 51, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 52, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*.” * Immediately|strong=\"G2112\"* he|strong=\"G2532\"* received his|strong=\"G1722\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* followed Jesus|strong=\"G2424\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, to|strong=\"G1519\"* Bethsphage+ 11:1 TR & NU read “Bethphage” instead of “Bethsphage”* and|strong=\"G2532\"* Bethany, at|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w opposite|strong=\"G2713\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Immediately|strong=\"G2112\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w young|strong=\"G3739\"\\+w* donkey \\+w tied|strong=\"G1210\"\\+w*, \\+w on|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w sat|strong=\"G2523\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G5342\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* asks \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*?’ \\+w say|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w him|strong=\"G3588\"\\+w*;’ \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* send \\+w him|strong=\"G3588\"\\+w* \\+w back|strong=\"G3825\"\\+w* \\+w here|strong=\"G5602\"\\+w*.”*" + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"* away|strong=\"G1854\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* young donkey tied|strong=\"G1210\"* at|strong=\"G1909\"* the|strong=\"G2532\"* door|strong=\"G2374\"* outside|strong=\"G1854\"* in|strong=\"G1909\"* the|strong=\"G2532\"* open street, and|strong=\"G2532\"* they|strong=\"G2532\"* untied|strong=\"G3089\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G5101\"* stood|strong=\"G2476\"* there|strong=\"G1563\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* doing|strong=\"G4160\"*, untying|strong=\"G3089\"* the|strong=\"G2532\"* young|strong=\"G5100\"* donkey?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"* just|strong=\"G2531\"* as|strong=\"G2531\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* the|strong=\"G2532\"* young donkey to|strong=\"G4314\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* threw|strong=\"G1911\"* their|strong=\"G2532\"* garments|strong=\"G2440\"* on|strong=\"G1909\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "Many|strong=\"G4183\"* spread|strong=\"G4766\"* their|strong=\"G2532\"* garments|strong=\"G2440\"* on|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* others|strong=\"G3588\"* were|strong=\"G3588\"* cutting|strong=\"G2875\"* down|strong=\"G2875\"* branches|strong=\"G4746\"* from|strong=\"G1537\"* the|strong=\"G2532\"* trees and|strong=\"G2532\"* spreading|strong=\"G4766\"* them|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G2532\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* went|strong=\"G2064\"* in|strong=\"G1722\"* front|strong=\"G4254\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed cried|strong=\"G2896\"* out|strong=\"G2896\"*, “Hosanna|strong=\"G5614\"*!+ 11:9 “Hosanna” means “save us” or “help us, we pray”.* Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!+ 11:9 Psalms 118:25-26*" + }, + { + "verseNum": 10, + "text": "Blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* kingdom of|strong=\"G3962\"* our|strong=\"G1722\"* father|strong=\"G3962\"* David|strong=\"G1138\"* that|strong=\"G3588\"* is|strong=\"G3588\"* coming|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name of|strong=\"G3962\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*! Hosanna|strong=\"G5614\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G1525\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* in|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1519\"* everything|strong=\"G3956\"*, it|strong=\"G2532\"* being|strong=\"G1510\"* now|strong=\"G2532\"* evening|strong=\"G3796\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Bethany with|strong=\"G3326\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G2532\"* Bethany, he|strong=\"G2532\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 13, + "text": "Seeing|strong=\"G3708\"* a|strong=\"G2192\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* afar|strong=\"G3113\"* off|strong=\"G3113\"* having|strong=\"G2192\"* leaves|strong=\"G5444\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* see|strong=\"G3708\"* if|strong=\"G1487\"* perhaps he|strong=\"G2532\"* might|strong=\"G2532\"* find|strong=\"G2147\"* anything|strong=\"G5100\"* on|strong=\"G1909\"* it|strong=\"G2532\"*. When|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* found|strong=\"G2147\"* nothing|strong=\"G3762\"* but|strong=\"G2532\"* leaves|strong=\"G5444\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1722\"* season|strong=\"G2540\"* for|strong=\"G1063\"* figs|strong=\"G4810\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G3004\"* told|strong=\"G3004\"* it|strong=\"G2532\"*, “\\+w May|strong=\"G2532\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w ever|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w again|strong=\"G3371\"\\+w*!” * and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* heard it|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* Jesus|strong=\"G1525\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* throw|strong=\"G1544\"* out|strong=\"G1544\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* bought in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* overthrew|strong=\"G2690\"* the|strong=\"G1722\"* money|strong=\"G2855\"* changers|strong=\"G2855\"*’ tables|strong=\"G5132\"* and|strong=\"G2532\"* the|strong=\"G1722\"* seats|strong=\"G2515\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G1722\"* doves|strong=\"G4058\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3756\"* allow anyone|strong=\"G5100\"* to|strong=\"G2443\"* carry|strong=\"G1308\"* a|strong=\"G2532\"* container|strong=\"G4632\"* through|strong=\"G1223\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G3956\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*’?*+ 11:17 Isaiah 56:7* \\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*!”*+ 11:17 Jeremiah 7:11*" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* heard it|strong=\"G2532\"*, and|strong=\"G2532\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* destroy him|strong=\"G3588\"*. For|strong=\"G1063\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* him|strong=\"G3588\"*, because|strong=\"G1063\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* his|strong=\"G3956\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G3752\"* evening|strong=\"G3796\"* came|strong=\"G1096\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* passed|strong=\"G3588\"* by|strong=\"G1537\"* in|strong=\"G2532\"* the|strong=\"G2532\"* morning|strong=\"G4404\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* withered|strong=\"G3583\"* away|strong=\"G3583\"* from|strong=\"G1537\"* the|strong=\"G2532\"* roots|strong=\"G4491\"*." + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"*, remembering, said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, look|strong=\"G3708\"*! The|strong=\"G2532\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* which|strong=\"G3739\"* you|strong=\"G3739\"* cursed|strong=\"G2672\"* has|strong=\"G3739\"* withered|strong=\"G3583\"* away|strong=\"G3583\"*.”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Have|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w For|strong=\"G3754\"\\+w* most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w*, ‘\\+w Be|strong=\"G1096\"\\+w* \\+w taken|strong=\"G1096\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w doubt|strong=\"G1252\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w happening|strong=\"G1096\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ask|strong=\"G3004\"\\+w* \\+w for|strong=\"G3754\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w them|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w them|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Whenever|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w stand|strong=\"G4739\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, forgive, \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w anyone|strong=\"G5100\"\\+w*; \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w may|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* forgive \\+w you|strong=\"G5210\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w transgressions|strong=\"G3900\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "But if you do not forgive, neither will your Father in heaven forgive your transgressions.”*+ 11:26 NU omits verse 26.*" + }, + { + "verseNum": 27, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* as|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, the|strong=\"G1722\"* chief|strong=\"G2532\"* priests, the|strong=\"G1722\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* began saying|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “By|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* gave|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"* to|strong=\"G2443\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G1905\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w question|strong=\"G1905\"\\+w*. \\+w Answer|strong=\"G3056\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w The|strong=\"G1537\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*—\\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*? Answer \\+w me|strong=\"G1473\"\\+w*.” *" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* reasoned|strong=\"G1260\"* with|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* we|strong=\"G1437\"* should|strong=\"G2532\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* heaven|strong=\"G3772\"*;’ he|strong=\"G2532\"* will|strong=\"G5101\"* say|strong=\"G3004\"*, ‘Why|strong=\"G5101\"* then|strong=\"G3767\"* did|strong=\"G2532\"* you|strong=\"G1437\"* not|strong=\"G3756\"* believe|strong=\"G4100\"* him|strong=\"G2532\"*?’" + }, + { + "verseNum": 32, + "text": "If|strong=\"G3748\"* we|strong=\"G3754\"* should|strong=\"G3588\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3588\"*’”—they|strong=\"G3588\"* feared|strong=\"G5399\"* the|strong=\"G1537\"* people|strong=\"G2992\"*, for|strong=\"G1063\"* all|strong=\"G3588\"* held|strong=\"G2192\"* John|strong=\"G2491\"* to|strong=\"G3004\"* really|strong=\"G3689\"* be|strong=\"G1510\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “We|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*.”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G1722\"* in|strong=\"G1722\"* parables|strong=\"G3850\"*. “\\+w A|strong=\"G2532\"\\+w* man \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard, \\+w put|strong=\"G4060\"\\+w* \\+w a|strong=\"G2532\"\\+w* hedge \\+w around|strong=\"G4060\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w dug|strong=\"G3736\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pit|strong=\"G2532\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wine|strong=\"G5276\"\\+w* \\+w press|strong=\"G5276\"\\+w*, \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, \\+w rented|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w another|strong=\"G1722\"\\+w* country. *" + }, + { + "verseNum": 2, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w* \\+w his|strong=\"G2983\"\\+w* share \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. *" + }, + { + "verseNum": 3, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w* away \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Again|strong=\"G3825\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w another|strong=\"G1438\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G1438\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* threw stones \\+w at|strong=\"G4314\"\\+w* \\+w him|strong=\"G2532\"\\+w*, \\+w wounded|strong=\"G2775\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w head|strong=\"G2775\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w* away shamefully treated. *" + }, + { + "verseNum": 5, + "text": "\\+w Again|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w another|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w others|strong=\"G3739\"\\+w*, \\+w beating|strong=\"G1194\"\\+w* \\+w some|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* killing \\+w some|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Therefore|strong=\"G3754\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w having|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w his|strong=\"G1438\"\\+w* beloved \\+w son|strong=\"G5207\"\\+w*, \\+w he|strong=\"G3754\"\\+w* sent \\+w him|strong=\"G3588\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w They|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’ *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* farmers \\+w said|strong=\"G3004\"\\+w* \\+w among|strong=\"G4314\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1205\"\\+w*, \\+w let|strong=\"G1161\"\\+w*’s kill \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w ours|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 8, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w*, killed \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. *" + }, + { + "verseNum": 9, + "text": "\\+w What|strong=\"G5101\"\\+w* \\+w therefore|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w do|strong=\"G4160\"\\+w*? \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroy \\+w the|strong=\"G2532\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w to|strong=\"G2532\"\\+w* \\+w others|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w even|strong=\"G3761\"\\+w* read \\+w this|strong=\"G3778\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w*:*" + }, + { + "verseNum": 11, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* tried|strong=\"G2212\"* to|strong=\"G4314\"* seize|strong=\"G2902\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"* the|strong=\"G2532\"* parable|strong=\"G3850\"* against|strong=\"G4314\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* left him|strong=\"G3588\"* and|strong=\"G2532\"* went|strong=\"G2532\"* away." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* sent|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Herodians|strong=\"G2265\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* trap him|strong=\"G3588\"* with|strong=\"G4314\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"*, they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* honest, and|strong=\"G2532\"* don’t|strong=\"G3588\"* defer|strong=\"G3199\"* to|strong=\"G1519\"* anyone|strong=\"G3762\"*; for|strong=\"G1063\"* you|strong=\"G4771\"* aren’t|strong=\"G3588\"* partial to|strong=\"G1519\"* anyone|strong=\"G3762\"*, but|strong=\"G2532\"* truly|strong=\"G1909\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G4012\"* God|strong=\"G2316\"*. Is|strong=\"G1510\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* to|strong=\"G1519\"* pay|strong=\"G1325\"* taxes|strong=\"G2778\"* to|strong=\"G1519\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?" + }, + { + "verseNum": 15, + "text": "Shall|strong=\"G5101\"* we|strong=\"G1161\"* give|strong=\"G3004\"*, or|strong=\"G1161\"* shall|strong=\"G5101\"* we|strong=\"G1161\"* not|strong=\"G3708\"* give|strong=\"G3004\"*?”" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Give|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w*’s, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s.”*" + }, + { + "verseNum": 18, + "text": "Some|strong=\"G3748\"* Sadducees|strong=\"G4523\"*, who|strong=\"G3748\"* say|strong=\"G3004\"* that|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection, came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1905\"*. They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G1905\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 19, + "text": "“Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* us|strong=\"G2249\"*, ‘If|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"*’s brother dies and|strong=\"G2532\"* leaves|strong=\"G2641\"* a|strong=\"G2532\"* wife|strong=\"G1135\"* behind|strong=\"G2641\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* leaves|strong=\"G2641\"* no|strong=\"G3361\"* children|strong=\"G5043\"*, that|strong=\"G3754\"* his|strong=\"G2983\"* brother should|strong=\"G5100\"* take|strong=\"G2983\"* his|strong=\"G2983\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G1817\"* offspring for|strong=\"G3754\"* his|strong=\"G2983\"* brother.’" + }, + { + "verseNum": 20, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* took|strong=\"G2983\"* a|strong=\"G2532\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* dying left no|strong=\"G3756\"* offspring." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* took|strong=\"G2983\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* died|strong=\"G3588\"*, leaving|strong=\"G2641\"* no|strong=\"G3361\"* children|strong=\"G4690\"* behind|strong=\"G2641\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* third|strong=\"G5154\"* likewise|strong=\"G5615\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* took|strong=\"G2532\"* her|strong=\"G3956\"* and|strong=\"G2532\"* left no|strong=\"G3756\"* children|strong=\"G4690\"*. Last|strong=\"G2078\"* of|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* also|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* resurrection, when|strong=\"G3752\"* they|strong=\"G3588\"* rise, whose|strong=\"G5101\"* wife|strong=\"G1135\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1510\"* of|strong=\"G1722\"* them|strong=\"G3588\"*? For|strong=\"G1063\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* had|strong=\"G2192\"* her|strong=\"G1438\"* as|strong=\"G1722\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G5346\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w you|strong=\"G3778\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w knowing|strong=\"G1492\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w nor|strong=\"G3366\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w God|strong=\"G2316\"\\+w*? *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* rise \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w raised|strong=\"G1453\"\\+w*, haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* read \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* Bush, \\+w how|strong=\"G4459\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w spoke|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* Abraham, \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*’?*+ 12:26 Exodus 3:6*" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G2316\"\\+w* \\+w living|strong=\"G2198\"\\+w*. \\+w You|strong=\"G1510\"\\+w* \\+w are|strong=\"G1510\"\\+w* therefore \\+w badly|strong=\"G4183\"\\+w* \\+w mistaken|strong=\"G4105\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "One|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4334\"* and|strong=\"G2532\"* heard them|strong=\"G3588\"* questioning|strong=\"G1905\"* together|strong=\"G4802\"*, and|strong=\"G2532\"* knowing that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* answered them|strong=\"G3588\"* well|strong=\"G2573\"*, asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Which|strong=\"G3588\"* commandment|strong=\"G1785\"* is|strong=\"G1510\"* the|strong=\"G2532\"* greatest of|strong=\"G2532\"* all|strong=\"G3956\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w The|strong=\"G3588\"\\+w* greatest \\+w is|strong=\"G1510\"\\+w*: ‘Hear, \\+w Israel|strong=\"G2474\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w our|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w mind|strong=\"G1271\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w strength|strong=\"G2479\"\\+w*.’*+ 12:30 Deuteronomy 6:4-5* \\+w This|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G3588\"\\+w* commandment. *" + }, + { + "verseNum": 31, + "text": "\\+w The|strong=\"G3588\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w*: ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G3778\"\\+w* love \\+w your|strong=\"G3588\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*.’*+ 12:31 Leviticus 19:18* \\+w There|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w other|strong=\"G3588\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* scribe|strong=\"G1122\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Truly|strong=\"G1909\"*, teacher|strong=\"G1320\"*, you|strong=\"G3754\"* have|strong=\"G2532\"* said|strong=\"G3004\"* well|strong=\"G2573\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* one|strong=\"G1520\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* none|strong=\"G3756\"* other|strong=\"G1520\"* but|strong=\"G2532\"* he|strong=\"G2532\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* love him|strong=\"G3588\"* with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* understanding|strong=\"G4907\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* soul, and|strong=\"G2532\"* with|strong=\"G1537\"* all|strong=\"G3956\"* the|strong=\"G2532\"* strength|strong=\"G2479\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* love his|strong=\"G1438\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* himself|strong=\"G1438\"*, is|strong=\"G1510\"* more|strong=\"G2532\"* important than|strong=\"G2532\"* all|strong=\"G3956\"* whole|strong=\"G3650\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"*.”" + }, + { + "verseNum": 34, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* wisely, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* responded|strong=\"G3004\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w David|strong=\"G1138\"\\+w*? *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1722\"\\+w* \\+w David|strong=\"G1138\"\\+w* himself \\+w said|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*,*" + }, + { + "verseNum": 37, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w David|strong=\"G1138\"\\+w* himself \\+w calls|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w how|strong=\"G4159\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*?” *" + }, + { + "verseNum": 38, + "text": "In|strong=\"G1722\"* his|strong=\"G1722\"* teaching|strong=\"G1322\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Beware \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w like|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w long|strong=\"G4749\"\\+w* \\+w robes|strong=\"G4749\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, *" + }, + { + "verseNum": 39, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w places|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*, *" + }, + { + "verseNum": 40, + "text": "\\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w devour|strong=\"G2719\"\\+w* \\+w widows|strong=\"G5503\"\\+w*’ \\+w houses|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pretense|strong=\"G4392\"\\+w* \\+w make|strong=\"G4336\"\\+w* \\+w long|strong=\"G3117\"\\+w* \\+w prayers|strong=\"G4336\"\\+w*. \\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* greater \\+w condemnation|strong=\"G2917\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* opposite|strong=\"G2713\"* the|strong=\"G2532\"* treasury|strong=\"G1049\"* and|strong=\"G2532\"* saw|strong=\"G2334\"* how|strong=\"G4459\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* cast|strong=\"G2532\"* money|strong=\"G5475\"* into|strong=\"G1519\"* the|strong=\"G2532\"* treasury|strong=\"G1049\"*. Many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* rich|strong=\"G4145\"* cast|strong=\"G2532\"* in|strong=\"G1519\"* much|strong=\"G4183\"*." + }, + { + "verseNum": 42, + "text": "A|strong=\"G2532\"* poor|strong=\"G4434\"* widow|strong=\"G5503\"* came|strong=\"G2064\"* and|strong=\"G2532\"* she|strong=\"G2532\"* cast|strong=\"G2532\"* in|strong=\"G2532\"* two|strong=\"G1417\"* small|strong=\"G3016\"* brass coins|strong=\"G3016\"*,+ 12:42 literally, lepta (or widow’s mites). Lepta are very small brass coins worth half a quadrans each, which is a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.* which|strong=\"G3739\"* equal a|strong=\"G2532\"* quadrans coin.+ 12:42 A quadrans is a coin worth about 1/64 of a denarius. A denarius is about one day’s wages for an agricultural laborer.*" + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G4183\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w gave|strong=\"G2532\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* giving \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w treasury|strong=\"G1049\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w gave|strong=\"G3956\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w their|strong=\"G3956\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G3956\"\\+w* \\+w poverty|strong=\"G5304\"\\+w*, \\+w gave|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w to|strong=\"G1161\"\\+w* \\+w live|strong=\"G2192\"\\+w* \\+w on|strong=\"G1537\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, one|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, see|strong=\"G3708\"* what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G1537\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G1537\"* buildings|strong=\"G3619\"*!”" + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* see \\+w these|strong=\"G3778\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w buildings|strong=\"G3619\"\\+w*? \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* left \\+w here|strong=\"G5602\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 3, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"* opposite|strong=\"G2713\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, John|strong=\"G2491\"*, and|strong=\"G2532\"* Andrew asked|strong=\"G1905\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*," + }, + { + "verseNum": 4, + "text": "“Tell|strong=\"G3004\"* us|strong=\"G3004\"*, when|strong=\"G3752\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3956\"* be|strong=\"G1510\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3956\"* are|strong=\"G1510\"* all|strong=\"G3956\"* about|strong=\"G3195\"* to|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4931\"*?”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"*, answering|strong=\"G3361\"*, began|strong=\"G1161\"* to|strong=\"G3004\"* tell|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Be|strong=\"G3361\"\\+w* careful \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w leads|strong=\"G4105\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w astray|strong=\"G4105\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*!’*+ 13:6 or, “I AM!”* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w astray|strong=\"G4105\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* rumors \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w troubled|strong=\"G2360\"\\+w*. \\+w For|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w yet|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G2596\"\\+w* kingdom. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w famines|strong=\"G3042\"\\+w* \\+w and|strong=\"G2532\"\\+w* troubles. \\+w These|strong=\"G2532\"\\+w* things \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2532\"\\+w* \\+w birth|strong=\"G5604\"\\+w* \\+w pains|strong=\"G5604\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "“\\+w But|strong=\"G1161\"\\+w* watch \\+w yourselves|strong=\"G1438\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w councils|strong=\"G4892\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w rulers|strong=\"G2232\"\\+w* \\+w and|strong=\"G2532\"\\+w* kings \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w lead|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* away \\+w and|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* anxious \\+w beforehand|strong=\"G4305\"\\+w* \\+w or|strong=\"G2532\"\\+w* premeditate \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G2980\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w hour|strong=\"G5610\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“Brother \\+w will|strong=\"G2532\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* brother \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w child|strong=\"G5043\"\\+w*. \\+w Children|strong=\"G5043\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1881\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w parents|strong=\"G1118\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w them|strong=\"G1438\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w endures|strong=\"G5278\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* abomination \\+w of|strong=\"G1722\"\\+w* \\+w desolation|strong=\"G2050\"\\+w*,*+ 13:14 Daniel 9:17; 11:31; 12:11* spoken \\+w of|strong=\"G1722\"\\+w* \\+w by|strong=\"G1722\"\\+w* Daniel \\+w the|strong=\"G1722\"\\+w* prophet, \\+w standing|strong=\"G2476\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w not|strong=\"G3756\"\\+w*”* (let|strong=\"G1161\"* the|strong=\"G1722\"* reader understand|strong=\"G3539\"*), “\\+w then|strong=\"G5119\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w and|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G1525\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1909\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Let|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* field \\+w not|strong=\"G3361\"\\+w* \\+w return|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w child|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* nurse \\+w babies|strong=\"G2337\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! *" + }, + { + "verseNum": 18, + "text": "\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G1096\"\\+w* flight won’t \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1096\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w winter|strong=\"G5494\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1096\"\\+w* oppression, \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w like|strong=\"G5108\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w creation|strong=\"G2937\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w created|strong=\"G2936\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w now|strong=\"G3568\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Unless|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w no|strong=\"G3756\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*; \\+w but|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sake|strong=\"G1223\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones, \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* picked \\+w out|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w shortened|strong=\"G2856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* tells \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Look|strong=\"G3708\"\\+w*, \\+w here|strong=\"G5602\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*!’ \\+w or|strong=\"G2532\"\\+w*, ‘\\+w Look|strong=\"G3708\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w christs|strong=\"G5580\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w false|strong=\"G5578\"\\+w* \\+w prophets|strong=\"G5578\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G4160\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* astray, \\+w if|strong=\"G1487\"\\+w* \\+w possible|strong=\"G1415\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* watch.*" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*, \\+w after|strong=\"G3326\"\\+w* \\+w that|strong=\"G3588\"\\+w* oppression, \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w darkened|strong=\"G4654\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w moon|strong=\"G4582\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w light|strong=\"G5338\"\\+w*, *" + }, + { + "verseNum": 25, + "text": "\\+w the|strong=\"G1722\"\\+w* stars \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w falling|strong=\"G4098\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*.*+ 13:25 Isaiah 13:10; 34:4*" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* send \\+w out|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* angels, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w together|strong=\"G1996\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w four|strong=\"G5064\"\\+w* winds, \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* ends \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* ends \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.*" + }, + { + "verseNum": 28, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w learn|strong=\"G3129\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w parable|strong=\"G3850\"\\+w*. \\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w branch|strong=\"G2798\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w become|strong=\"G1096\"\\+w* tender \\+w and|strong=\"G2532\"\\+w* produces \\+w its|strong=\"G1631\"\\+w* \\+w leaves|strong=\"G5444\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*; *" + }, + { + "verseNum": 29, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w coming|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pass|strong=\"G1096\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*, \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doors|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w**+ 13:30 The word translated “generation” (genea) could also be translated “race”, “family”, or “people”.* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w happen|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w*—\\+w not|strong=\"G3361\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w the|strong=\"G1722\"\\+w* angels \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "Watch, keep alert, \\+w and|strong=\"G3588\"\\+w* pray; \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G1510\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "“\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G1538\"\\+w* traveling \\+w to|strong=\"G2443\"\\+w* \\+w another|strong=\"G3588\"\\+w* country, \\+w having|strong=\"G2532\"\\+w* left \\+w his|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w work|strong=\"G2041\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w doorkeeper|strong=\"G2377\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w keep|strong=\"G1127\"\\+w* \\+w watch|strong=\"G1127\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G3767\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*—\\+w whether|strong=\"G2228\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w evening|strong=\"G3796\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w midnight|strong=\"G3317\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w when|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* rooster crows, \\+w or|strong=\"G2228\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w morning|strong=\"G4404\"\\+w*; *" + }, + { + "verseNum": 36, + "text": "\\+w lest|strong=\"G3361\"\\+w*, \\+w coming|strong=\"G2064\"\\+w* \\+w suddenly|strong=\"G1810\"\\+w*, \\+w he|strong=\"G2064\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w What|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w*: \\+w Watch|strong=\"G1127\"\\+w*!”*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G1161\"* two|strong=\"G1417\"* days|strong=\"G2250\"* before|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Feast of|strong=\"G2250\"* Unleavened Bread, and|strong=\"G2532\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* seize|strong=\"G2902\"* him|strong=\"G3588\"* by|strong=\"G1722\"* deception and|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* said|strong=\"G3004\"*, “Not|strong=\"G3361\"* during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, because|strong=\"G1063\"* there|strong=\"G1063\"* might|strong=\"G2351\"* be|strong=\"G1510\"* a|strong=\"G1722\"* riot|strong=\"G2351\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 3, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Bethany, in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Simon|strong=\"G4613\"* the|strong=\"G1722\"* leper|strong=\"G3015\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table, a|strong=\"G2192\"* woman|strong=\"G1135\"* came|strong=\"G2064\"* having|strong=\"G2192\"* an|strong=\"G2192\"* alabaster jar of|strong=\"G2532\"* ointment|strong=\"G3464\"* of|strong=\"G2532\"* pure|strong=\"G4101\"* nard|strong=\"G3487\"*—very|strong=\"G2532\"* costly|strong=\"G4185\"*. She|strong=\"G2532\"* broke|strong=\"G4937\"* the|strong=\"G1722\"* jar and|strong=\"G2532\"* poured|strong=\"G2532\"* it|strong=\"G2532\"* over|strong=\"G1722\"* his|strong=\"G1722\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* some|strong=\"G5100\"* who|strong=\"G5101\"* were|strong=\"G1510\"* indignant among|strong=\"G1519\"* themselves|strong=\"G1438\"*, saying, “Why|strong=\"G5101\"* has|strong=\"G5101\"* this|strong=\"G3778\"* ointment|strong=\"G3464\"* been|strong=\"G1510\"* wasted?" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* might|strong=\"G1410\"* have|strong=\"G2532\"* been|strong=\"G2532\"* sold|strong=\"G4097\"* for|strong=\"G1063\"* more|strong=\"G2532\"* than|strong=\"G2532\"* three|strong=\"G5145\"* hundred|strong=\"G5145\"* denarii|strong=\"G1220\"*+ 14:5 300 denarii was about a year’s wages for an agricultural laborer. * and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*.” So|strong=\"G2532\"* they|strong=\"G2532\"* grumbled against|strong=\"G1690\"* her|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Leave \\+w her|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w trouble|strong=\"G2873\"\\+w* \\+w her|strong=\"G1438\"\\+w*? \\+w She|strong=\"G1161\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w done|strong=\"G2038\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G3752\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whenever|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w good|strong=\"G2095\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w She|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w she|strong=\"G3739\"\\+w* \\+w could|strong=\"G2192\"\\+w*. \\+w She|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w anointed|strong=\"G3462\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w beforehand|strong=\"G4301\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w burying|strong=\"G1780\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w wherever|strong=\"G3699\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Good|strong=\"G3588\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w throughout|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w memorial|strong=\"G3422\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1437\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, went|strong=\"G2532\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, were|strong=\"G3588\"* glad|strong=\"G5463\"*, and|strong=\"G2532\"* promised|strong=\"G1861\"* to|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* money. He|strong=\"G2532\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* he|strong=\"G2532\"* might|strong=\"G2532\"* conveniently|strong=\"G2122\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"G2443\"* the|strong=\"G2532\"* first|strong=\"G4413\"* day|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread, when|strong=\"G3753\"* they|strong=\"G2532\"* sacrificed|strong=\"G2380\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G2532\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G2443\"* go|strong=\"G2309\"* and|strong=\"G2532\"* prepare|strong=\"G2090\"* that|strong=\"G2443\"* you|strong=\"G3004\"* may|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G1519\"\\+w* carrying \\+w a|strong=\"G2532\"\\+w* \\+w pitcher|strong=\"G2765\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Follow \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 14, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w wherever|strong=\"G3699\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w*, “\\+w Where|strong=\"G3699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w guest|strong=\"G2646\"\\+w* \\+w room|strong=\"G2646\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*?”’ *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* himself \\+w show|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w large|strong=\"G3173\"\\+w* upper room \\+w furnished|strong=\"G4766\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. \\+w Get|strong=\"G2090\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w there|strong=\"G1563\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "His|strong=\"G1519\"* disciples|strong=\"G3101\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* things|strong=\"G3588\"* as|strong=\"G2531\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1096\"* evening|strong=\"G3798\"* he|strong=\"G2532\"* came|strong=\"G2064\"* with|strong=\"G3326\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2532\"* and|strong=\"G2532\"* were|strong=\"G3588\"* eating|strong=\"G2068\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*—\\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* sorrowful|strong=\"G3076\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* ask|strong=\"G3004\"* him|strong=\"G2532\"* one|strong=\"G1520\"* by|strong=\"G2596\"* one|strong=\"G1520\"*, “Surely|strong=\"G3385\"* not|strong=\"G3385\"* I|strong=\"G1473\"*?” And|strong=\"G2532\"* another|strong=\"G2596\"* said|strong=\"G3004\"*, “Surely|strong=\"G3385\"* not|strong=\"G3385\"* I|strong=\"G1473\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1520\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w twelve|strong=\"G1427\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dips|strong=\"G1686\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* dish. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w goes|strong=\"G5217\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*! \\+w It|strong=\"G3754\"\\+w* \\+w would|strong=\"G3860\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w better|strong=\"G2570\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w had|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G3756\"\\+w* \\+w born|strong=\"G1080\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "As|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* eating|strong=\"G2068\"*, Jesus|strong=\"G3004\"* took|strong=\"G2983\"* bread, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* blessed|strong=\"G2127\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w*, \\+w eat|strong=\"G2068\"\\+w*. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w body|strong=\"G4983\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G1325\"*. They|strong=\"G2532\"* all|strong=\"G3956\"* drank|strong=\"G4095\"* of|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* new \\+w covenant|strong=\"G1242\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w many|strong=\"G4183\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G3754\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine \\+w until|strong=\"G2193\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G3754\"\\+w* anew \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* sung a|strong=\"G2532\"* hymn|strong=\"G5214\"*, they|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 27, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3956\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w stumble|strong=\"G4624\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* tonight, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w strike|strong=\"G3960\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w scattered|strong=\"G1287\"\\+w*.’*+ 14:27 Zechariah 13:7*" + }, + { + "verseNum": 28, + "text": "However, \\+w after|strong=\"G3326\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w go|strong=\"G4254\"\\+w* \\+w before|strong=\"G4254\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Galilee|strong=\"G1056\"\\+w*.” *" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G5346\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Although|strong=\"G1161\"* all|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* offended|strong=\"G4624\"*, yet|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"*.”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w today|strong=\"G4594\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w twice|strong=\"G1364\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.” *" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* the|strong=\"G2532\"* more|strong=\"G4057\"*, “If|strong=\"G1437\"* I|strong=\"G1473\"* must|strong=\"G1163\"* die|strong=\"G4880\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* deny|strong=\"G3588\"* you|strong=\"G4771\"*.” They|strong=\"G2532\"* all|strong=\"G3956\"* said|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G5615\"* thing|strong=\"G3956\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5564\"* which|strong=\"G3739\"* was|strong=\"G3588\"* named|strong=\"G3686\"* Gethsemane|strong=\"G1068\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Sit|strong=\"G2523\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w pray|strong=\"G4336\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, James|strong=\"G2385\"*, and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* greatly troubled and|strong=\"G2532\"* distressed|strong=\"G1568\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exceedingly|strong=\"G1510\"\\+w* \\+w sorrowful|strong=\"G4036\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2288\"\\+w*. \\+w Stay|strong=\"G3306\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w watch|strong=\"G1127\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* forward|strong=\"G4281\"* a|strong=\"G2532\"* little|strong=\"G3398\"*, and|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G1093\"*, and|strong=\"G2532\"* prayed|strong=\"G4336\"* that|strong=\"G2443\"* if|strong=\"G1487\"* it|strong=\"G2532\"* were|strong=\"G1510\"* possible|strong=\"G1415\"*, the|strong=\"G2532\"* hour|strong=\"G5610\"* might|strong=\"G2532\"* pass|strong=\"G3928\"* away|strong=\"G3928\"* from|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Abba,*+ 14:36 Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. * \\+w Father|strong=\"G3962\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w Please|strong=\"G2309\"\\+w* \\+w remove|strong=\"G3911\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. However, \\+w not|strong=\"G3756\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w desire|strong=\"G2309\"\\+w*.” *" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*? Couldn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w watch|strong=\"G1127\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hour|strong=\"G5610\"\\+w*? *" + }, + { + "verseNum": 38, + "text": "\\+w Watch|strong=\"G1127\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w indeed|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w willing|strong=\"G4289\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G3588\"\\+w* weak.”*" + }, + { + "verseNum": 39, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* prayed|strong=\"G4336\"*, saying|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G2532\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 40, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* returned|strong=\"G5290\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2518\"*, for|strong=\"G1063\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* were|strong=\"G1510\"* very|strong=\"G2532\"* heavy|strong=\"G2599\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* to|strong=\"G2532\"* answer him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5610\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Sleep|strong=\"G2518\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w now|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* rest. \\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* enough. \\+w The|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w has|strong=\"G5610\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* sinners. *" + }, + { + "verseNum": 42, + "text": "\\+w Arise|strong=\"G1453\"\\+w*! Let’s \\+w get|strong=\"G1453\"\\+w* going. \\+w Behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G3588\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "Immediately|strong=\"G2112\"*, while|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, came|strong=\"G3854\"*—and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2532\"* multitude|strong=\"G3793\"* with|strong=\"G3326\"* swords|strong=\"G3162\"* and|strong=\"G2532\"* clubs|strong=\"G3586\"*, from|strong=\"G3844\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 44, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"* had|strong=\"G2532\"* given|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G2532\"* sign, saying|strong=\"G3004\"*, “Whomever|strong=\"G3739\"* I|strong=\"G3739\"* will|strong=\"G1510\"* kiss|strong=\"G5368\"*, that|strong=\"G3739\"* is|strong=\"G1510\"* he|strong=\"G2532\"*. Seize|strong=\"G2902\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* lead|strong=\"G1510\"* him|strong=\"G3588\"* away safely.”" + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"*, immediately|strong=\"G2112\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* him|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Rabbi|strong=\"G4461\"*! Rabbi|strong=\"G4461\"*!” and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 46, + "text": "They|strong=\"G2532\"* laid|strong=\"G1911\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seized|strong=\"G2902\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* drew|strong=\"G4685\"* his|strong=\"G2532\"* sword|strong=\"G3162\"* and|strong=\"G2532\"* struck|strong=\"G3817\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G2532\"* ear|strong=\"G5621\"*." + }, + { + "verseNum": 48, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w*, \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w* \\+w to|strong=\"G2532\"\\+w* seize \\+w me|strong=\"G1473\"\\+w*? *" + }, + { + "verseNum": 49, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w daily|strong=\"G2250\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2411\"\\+w* \\+w teaching|strong=\"G1321\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w arrest|strong=\"G2902\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 50, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* left him|strong=\"G2532\"*, and|strong=\"G2532\"* fled|strong=\"G5343\"*." + }, + { + "verseNum": 51, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* young|strong=\"G3495\"* man|strong=\"G5100\"* followed|strong=\"G4870\"* him|strong=\"G2532\"*, having|strong=\"G2532\"* a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* thrown around|strong=\"G1909\"* himself|strong=\"G4016\"* over|strong=\"G1909\"* his|strong=\"G1909\"* naked|strong=\"G1131\"* body. The|strong=\"G2532\"* young|strong=\"G3495\"* men|strong=\"G3495\"* grabbed him|strong=\"G2532\"*," + }, + { + "verseNum": 52, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* left|strong=\"G2641\"* the|strong=\"G1161\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* and|strong=\"G1161\"* fled|strong=\"G5343\"* from|strong=\"G3588\"* them|strong=\"G3588\"* naked|strong=\"G1131\"*." + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* led|strong=\"G2424\"* Jesus|strong=\"G2424\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest. All|strong=\"G3956\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G4905\"* together|strong=\"G4905\"* with|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 54, + "text": "Peter|strong=\"G4074\"* had|strong=\"G2532\"* followed him|strong=\"G3588\"* from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*, until|strong=\"G2193\"* he|strong=\"G2532\"* came|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest. He|strong=\"G2532\"* was|strong=\"G1510\"* sitting|strong=\"G4775\"* with|strong=\"G3326\"* the|strong=\"G2532\"* officers|strong=\"G5257\"*, and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"* in|strong=\"G1519\"* the|strong=\"G2532\"* light|strong=\"G5457\"* of|strong=\"G2532\"* the|strong=\"G2532\"* fire|strong=\"G5457\"*." + }, + { + "verseNum": 55, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"* sought|strong=\"G2212\"* witnesses against|strong=\"G2596\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* put|strong=\"G2289\"* him|strong=\"G3588\"* to|strong=\"G1519\"* death|strong=\"G2289\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* none|strong=\"G3756\"*." + }, + { + "verseNum": 56, + "text": "For|strong=\"G1063\"* many|strong=\"G4183\"* gave|strong=\"G2532\"* false|strong=\"G5576\"* testimony|strong=\"G3141\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* testimony|strong=\"G3141\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"* with|strong=\"G2532\"* each|strong=\"G2596\"* other|strong=\"G4183\"*." + }, + { + "verseNum": 57, + "text": "Some|strong=\"G5100\"* stood|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* gave|strong=\"G2532\"* false|strong=\"G5576\"* testimony|strong=\"G5576\"* against|strong=\"G2596\"* him|strong=\"G2532\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 58, + "text": "“We|strong=\"G2249\"* heard him|strong=\"G3588\"* say|strong=\"G3004\"*, ‘I|strong=\"G1473\"* will|strong=\"G2532\"* destroy|strong=\"G2647\"* this|strong=\"G3778\"* temple|strong=\"G3485\"* that|strong=\"G3754\"* is|strong=\"G3588\"* made|strong=\"G5499\"* with|strong=\"G1223\"* hands|strong=\"G5499\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"* I|strong=\"G1473\"* will|strong=\"G2532\"* build|strong=\"G3618\"* another|strong=\"G2250\"* made|strong=\"G5499\"* without|strong=\"G2532\"* hands|strong=\"G5499\"*.’”" + }, + { + "verseNum": 59, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"*, their|strong=\"G2532\"* testimony|strong=\"G3141\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"*." + }, + { + "verseNum": 60, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest stood|strong=\"G3588\"* up|strong=\"G1519\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*, and|strong=\"G2532\"* asked|strong=\"G1905\"* Jesus|strong=\"G2424\"*, “Have|strong=\"G2532\"* you|strong=\"G4771\"* no|strong=\"G3756\"* answer? What|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* which|strong=\"G3588\"* these|strong=\"G3778\"* testify|strong=\"G2649\"* against|strong=\"G1519\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 61, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* stayed|strong=\"G1510\"* quiet|strong=\"G4623\"*, and|strong=\"G2532\"* answered|strong=\"G3004\"* nothing|strong=\"G3762\"*. Again|strong=\"G3825\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Blessed|strong=\"G2128\"*?”" + }, + { + "verseNum": 62, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*. \\+w You|strong=\"G3004\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w sitting|strong=\"G2521\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w clouds|strong=\"G3507\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 63, + "text": "The|strong=\"G1161\"* high priest tore|strong=\"G1284\"* his|strong=\"G2192\"* clothes|strong=\"G5509\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* further|strong=\"G2089\"* need|strong=\"G5532\"* have|strong=\"G2192\"* we|strong=\"G1161\"* of|strong=\"G5532\"* witnesses|strong=\"G3144\"*?" + }, + { + "verseNum": 64, + "text": "You|strong=\"G5210\"* have|strong=\"G1510\"* heard the|strong=\"G3956\"* blasphemy! What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G5316\"*?” They|strong=\"G1161\"* all|strong=\"G3956\"* condemned|strong=\"G2632\"* him|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G1510\"* worthy of|strong=\"G3956\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 65, + "text": "Some|strong=\"G5100\"* began|strong=\"G2983\"* to|strong=\"G2532\"* spit|strong=\"G1716\"* on|strong=\"G3004\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* cover|strong=\"G4028\"* his|strong=\"G2983\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* beat|strong=\"G2852\"* him|strong=\"G3588\"* with|strong=\"G2532\"* fists|strong=\"G2852\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* him|strong=\"G3588\"*, “Prophesy|strong=\"G4395\"*!” The|strong=\"G2532\"* officers|strong=\"G5257\"* struck|strong=\"G2983\"* him|strong=\"G3588\"* with|strong=\"G2532\"* the|strong=\"G2532\"* palms of|strong=\"G2532\"* their|strong=\"G2532\"* hands|strong=\"G4475\"*." + }, + { + "verseNum": 66, + "text": "As|strong=\"G1722\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* courtyard below|strong=\"G2736\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G1722\"* maids|strong=\"G3814\"* of|strong=\"G2532\"* the|strong=\"G1722\"* high|strong=\"G2532\"* priest came|strong=\"G2064\"*," + }, + { + "verseNum": 67, + "text": "and|strong=\"G2532\"* seeing|strong=\"G3708\"* Peter|strong=\"G4074\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*, she|strong=\"G2532\"* looked|strong=\"G3708\"* at|strong=\"G1689\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"* were|strong=\"G1510\"* also|strong=\"G2532\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Nazarene|strong=\"G3479\"*, Jesus|strong=\"G2424\"*!”" + }, + { + "verseNum": 68, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* denied it|strong=\"G2532\"*, saying|strong=\"G3004\"*, “I|strong=\"G2532\"* neither|strong=\"G3777\"* know|strong=\"G1492\"* nor|strong=\"G3777\"* understand|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*.” He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* on|strong=\"G1519\"* the|strong=\"G2532\"* porch|strong=\"G4259\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 69, + "text": "The|strong=\"G2532\"* maid|strong=\"G3814\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* began again|strong=\"G3825\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 70, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* again|strong=\"G3825\"* denied it|strong=\"G2532\"*. After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"* again|strong=\"G3825\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “You|strong=\"G4771\"* truly|strong=\"G1161\"* are|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2532\"* Galilean|strong=\"G1057\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* speech|strong=\"G2981\"* shows it|strong=\"G2532\"*.”" + }, + { + "verseNum": 71, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* curse and|strong=\"G2532\"* to|strong=\"G2532\"* swear|strong=\"G3660\"*, “I|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* this|strong=\"G3778\"* man|strong=\"G3778\"* of|strong=\"G2532\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* speak|strong=\"G3004\"*!”" + }, + { + "verseNum": 72, + "text": "The|strong=\"G2532\"* rooster crowed|strong=\"G5455\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*. Peter|strong=\"G4074\"* remembered the|strong=\"G2532\"* words|strong=\"G4487\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w twice|strong=\"G1364\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”* When|strong=\"G5613\"* he|strong=\"G2532\"* thought|strong=\"G3004\"* about|strong=\"G5613\"* that|strong=\"G3754\"*, he|strong=\"G2532\"* wept|strong=\"G2799\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Immediately|strong=\"G2112\"* in|strong=\"G2532\"* the|strong=\"G2532\"* morning|strong=\"G4404\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, with|strong=\"G3326\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* council|strong=\"G4892\"*, held|strong=\"G4160\"* a|strong=\"G2532\"* consultation|strong=\"G4824\"*, bound|strong=\"G1210\"* Jesus|strong=\"G2424\"*, carried|strong=\"G2532\"* him|strong=\"G3588\"* away|strong=\"G3326\"*, and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 2, + "text": "Pilate|strong=\"G4091\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests accused|strong=\"G2723\"* him|strong=\"G3588\"* of|strong=\"G2532\"* many|strong=\"G4183\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Pilate|strong=\"G4091\"* again|strong=\"G3825\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Have|strong=\"G3588\"* you|strong=\"G4771\"* no|strong=\"G3756\"* answer? See|strong=\"G3708\"* how|strong=\"G4214\"* many|strong=\"G4214\"* things|strong=\"G3588\"* they|strong=\"G1161\"* testify against|strong=\"G3762\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* made|strong=\"G1161\"* no|strong=\"G3762\"* further|strong=\"G3765\"* answer, so|strong=\"G1161\"* that|strong=\"G3588\"* Pilate|strong=\"G4091\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* at|strong=\"G2596\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* he|strong=\"G1161\"* used to|strong=\"G2596\"* release to|strong=\"G2596\"* them|strong=\"G3739\"* one|strong=\"G1520\"* prisoner|strong=\"G1198\"*, whomever|strong=\"G3739\"* they|strong=\"G1161\"* asked of|strong=\"G1520\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G1161\"* was|strong=\"G1510\"* one|strong=\"G3588\"* called|strong=\"G3004\"* Barabbas, bound|strong=\"G1210\"* with|strong=\"G3326\"* his|strong=\"G1722\"* fellow insurgents, men|strong=\"G3588\"* who|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* insurrection|strong=\"G4714\"* had|strong=\"G1510\"* committed|strong=\"G4160\"* murder|strong=\"G5408\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"*, crying|strong=\"G3793\"* aloud, began to|strong=\"G2532\"* ask him|strong=\"G3588\"* to|strong=\"G2532\"* do|strong=\"G4160\"* as|strong=\"G2531\"* he|strong=\"G2532\"* always did|strong=\"G4160\"* for|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "Pilate|strong=\"G4091\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G5210\"* want|strong=\"G2309\"* me|strong=\"G3004\"* to|strong=\"G3004\"* release to|strong=\"G3004\"* you|strong=\"G5210\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* for|strong=\"G1063\"* envy|strong=\"G5355\"* the|strong=\"G1223\"* chief priests had|strong=\"G3588\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* chief priests stirred up the|strong=\"G1161\"* multitude|strong=\"G3793\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* should|strong=\"G3588\"* release Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"* instead|strong=\"G3123\"*." + }, + { + "verseNum": 12, + "text": "Pilate|strong=\"G4091\"* again|strong=\"G3825\"* asked|strong=\"G3004\"* them|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* should|strong=\"G3588\"* I|strong=\"G3739\"* do|strong=\"G4160\"* to|strong=\"G3004\"* him|strong=\"G3588\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* call|strong=\"G3004\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 13, + "text": "They|strong=\"G1161\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* again|strong=\"G3825\"*, “Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 14, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"*, what|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* he|strong=\"G1161\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 15, + "text": "Pilate|strong=\"G4091\"*, wishing|strong=\"G1014\"* to|strong=\"G2443\"* please the|strong=\"G2532\"* multitude|strong=\"G3793\"*, released Barabbas to|strong=\"G2443\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* handed|strong=\"G3860\"* over|strong=\"G3860\"* Jesus|strong=\"G2424\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2424\"* flogged|strong=\"G5417\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* led him|strong=\"G3588\"* away within|strong=\"G2080\"* the|strong=\"G2532\"* court, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* called|strong=\"G4779\"* together|strong=\"G4779\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* cohort|strong=\"G4686\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* clothed him|strong=\"G2532\"* with|strong=\"G2532\"* purple|strong=\"G4209\"*; and|strong=\"G2532\"* weaving a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* thorns, they|strong=\"G2532\"* put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"G2532\"* began to|strong=\"G2532\"* salute him|strong=\"G3588\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*!”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* struck|strong=\"G5180\"* his|strong=\"G2532\"* head|strong=\"G2776\"* with|strong=\"G2532\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* spat|strong=\"G1716\"* on|strong=\"G3588\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* bowing|strong=\"G4352\"* their|strong=\"G2532\"* knees|strong=\"G1119\"*, did|strong=\"G2532\"* homage to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G2532\"* purple|strong=\"G4209\"* cloak|strong=\"G2440\"* off|strong=\"G1562\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G1746\"* his|strong=\"G2398\"* own|strong=\"G2398\"* garments|strong=\"G2440\"* on|strong=\"G1746\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* led|strong=\"G1806\"* him|strong=\"G3588\"* out|strong=\"G1806\"* to|strong=\"G2443\"* crucify|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* compelled one|strong=\"G5100\"* passing|strong=\"G3855\"* by|strong=\"G2532\"*, coming|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G2532\"* country, Simon|strong=\"G4613\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* Alexander and|strong=\"G2532\"* Rufus|strong=\"G4504\"*, to|strong=\"G2443\"* go|strong=\"G2064\"* with|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bear|strong=\"G2443\"* his|strong=\"G2532\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3739\"* Golgotha|strong=\"G1115\"*, which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “The|strong=\"G2532\"* place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* skull|strong=\"G2898\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* offered him|strong=\"G1325\"* wine|strong=\"G3631\"* mixed|strong=\"G4669\"* with|strong=\"G2532\"* myrrh|strong=\"G4669\"* to|strong=\"G2532\"* drink|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* didn’t take|strong=\"G2983\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 24, + "text": "Crucifying him|strong=\"G3588\"*, they|strong=\"G2532\"* parted|strong=\"G1266\"* his|strong=\"G1909\"* garments|strong=\"G2440\"* among|strong=\"G1909\"* them|strong=\"G3588\"*, casting lots|strong=\"G2819\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, what|strong=\"G5101\"* each|strong=\"G5101\"* should|strong=\"G3588\"* take|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* third|strong=\"G5154\"* hour|strong=\"G5610\"*+ 15:25 9:00 a.m.* when|strong=\"G1161\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* superscription|strong=\"G1923\"* of|strong=\"G2532\"* his|strong=\"G2532\"* accusation was|strong=\"G1510\"* written|strong=\"G3588\"* over|strong=\"G1924\"* him|strong=\"G3588\"*: “THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 27, + "text": "With|strong=\"G4862\"* him|strong=\"G2532\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* two|strong=\"G1417\"* robbers|strong=\"G3027\"*, one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* on|strong=\"G1537\"* his|strong=\"G2532\"* left|strong=\"G2176\"*." + }, + { + "verseNum": 28, + "text": "The Scripture was fulfilled which says, “He was counted with transgressors.”+ 15:28 NU omits verse 28.*" + }, + { + "verseNum": 29, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* passed|strong=\"G3588\"* by|strong=\"G1722\"* blasphemed him|strong=\"G3588\"*, wagging|strong=\"G2795\"* their|strong=\"G2532\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Ha|strong=\"G3758\"*! You|strong=\"G1722\"* who|strong=\"G3588\"* destroy|strong=\"G2647\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* and|strong=\"G2532\"* build|strong=\"G3618\"* it|strong=\"G2532\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*," + }, + { + "verseNum": 30, + "text": "save|strong=\"G4982\"* yourself|strong=\"G4572\"*, and|strong=\"G2597\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G3588\"* cross|strong=\"G4716\"*!”" + }, + { + "verseNum": 31, + "text": "Likewise|strong=\"G3668\"*, also|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests mocking|strong=\"G1702\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"* with|strong=\"G3326\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*. He|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 32, + "text": "Let|strong=\"G2443\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, now|strong=\"G3568\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* him|strong=\"G3588\"*.”+ 15:32 TR omits “him”* Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4862\"* him|strong=\"G3588\"* also|strong=\"G2532\"* insulted him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*+ 15:33 or, noon* had|strong=\"G2532\"* come|strong=\"G1096\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* darkness|strong=\"G4655\"* over|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 15:33 3:00 p.m.*" + }, + { + "verseNum": 34, + "text": "At|strong=\"G1519\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* Jesus|strong=\"G2424\"* cried|strong=\"G2532\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3173\"*, “\\+w Eloi|strong=\"G1682\"\\+w*, \\+w Eloi|strong=\"G1682\"\\+w*, \\+w lama|strong=\"G2982\"\\+w* \\+w sabachthani|strong=\"G4518\"\\+w*?”* which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w forsaken|strong=\"G1459\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”* + 15:34 Psalms 22:1*" + }, + { + "verseNum": 35, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*, he|strong=\"G2532\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* Elijah|strong=\"G2243\"*.”" + }, + { + "verseNum": 36, + "text": "One|strong=\"G5100\"* ran|strong=\"G5143\"*, and|strong=\"G2532\"* filling|strong=\"G1072\"* a|strong=\"G2532\"* sponge|strong=\"G4699\"* full|strong=\"G1072\"* of|strong=\"G2532\"* vinegar|strong=\"G3690\"*, put|strong=\"G4060\"* it|strong=\"G2532\"* on|strong=\"G1161\"* a|strong=\"G2532\"* reed|strong=\"G2563\"* and|strong=\"G2532\"* gave|strong=\"G4222\"* it|strong=\"G2532\"* to|strong=\"G2532\"* him|strong=\"G3708\"* to|strong=\"G2532\"* drink|strong=\"G4222\"*, saying|strong=\"G3004\"*, “Let|strong=\"G1161\"* him|strong=\"G3708\"* be|strong=\"G2532\"*. Let|strong=\"G1161\"*’s see|strong=\"G3708\"* whether|strong=\"G1487\"* Elijah|strong=\"G2243\"* comes|strong=\"G2064\"* to|strong=\"G2532\"* take|strong=\"G2507\"* him|strong=\"G3708\"* down|strong=\"G2507\"*.”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2424\"* out|strong=\"G5456\"* with|strong=\"G3588\"* a|strong=\"G1161\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, and|strong=\"G1161\"* gave|strong=\"G3588\"* up the|strong=\"G1161\"* spirit|strong=\"G3588\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"G2532\"* veil|strong=\"G2665\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1519\"* two|strong=\"G1417\"* from|strong=\"G2532\"* the|strong=\"G2532\"* top to|strong=\"G1519\"* the|strong=\"G2532\"* bottom|strong=\"G2736\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G1161\"* the|strong=\"G1537\"* centurion|strong=\"G2760\"*, who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G1537\"* opposite him|strong=\"G3588\"*, saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G1161\"* cried|strong=\"G3779\"* out|strong=\"G1537\"* like|strong=\"G3779\"* this|strong=\"G3778\"* and|strong=\"G1161\"* breathed|strong=\"G1606\"* his|strong=\"G3708\"* last|strong=\"G1606\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, “Truly|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* the|strong=\"G1537\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 40, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* also|strong=\"G2532\"* women|strong=\"G1135\"* watching|strong=\"G2334\"* from|strong=\"G2532\"* afar|strong=\"G3113\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* were|strong=\"G1510\"* both|strong=\"G2532\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G1722\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* James|strong=\"G2385\"* the|strong=\"G1722\"* less|strong=\"G3398\"* and|strong=\"G2532\"* of|strong=\"G2532\"* Joses|strong=\"G2500\"*, and|strong=\"G2532\"* Salome|strong=\"G4539\"*;" + }, + { + "verseNum": 41, + "text": "who|strong=\"G3739\"*, when|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, followed him|strong=\"G3588\"* and|strong=\"G2532\"* served|strong=\"G1247\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G4183\"* women who|strong=\"G3739\"* came|strong=\"G2532\"* up|strong=\"G1519\"* with|strong=\"G1722\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G2532\"* evening|strong=\"G3798\"* had|strong=\"G2532\"* now|strong=\"G2532\"* come|strong=\"G1096\"*, because|strong=\"G1893\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G3904\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, the|strong=\"G2532\"* day|strong=\"G3904\"* before|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4315\"*," + }, + { + "verseNum": 43, + "text": "Joseph|strong=\"G2501\"* of|strong=\"G2316\"* Arimathaea, a|strong=\"G2532\"* prominent|strong=\"G2158\"* council|strong=\"G1010\"* member|strong=\"G1010\"* who|strong=\"G3739\"* also|strong=\"G2532\"* himself was|strong=\"G1510\"* looking|strong=\"G4327\"* for|strong=\"G4314\"* God|strong=\"G2316\"*’s Kingdom, came|strong=\"G2064\"*. He|strong=\"G2532\"* boldly|strong=\"G5111\"* went|strong=\"G2064\"* in|strong=\"G1525\"* to|strong=\"G4314\"* Pilate|strong=\"G4091\"*, and|strong=\"G2532\"* asked for|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 44, + "text": "Pilate|strong=\"G4091\"* was|strong=\"G3588\"* surprised|strong=\"G2296\"* to|strong=\"G2532\"* hear that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* already|strong=\"G2235\"* dead|strong=\"G2348\"*; and|strong=\"G2532\"* summoning|strong=\"G4341\"* the|strong=\"G2532\"* centurion|strong=\"G2760\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"* whether|strong=\"G1487\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* dead|strong=\"G2348\"* long|strong=\"G3819\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G1097\"* out|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* centurion|strong=\"G2760\"*, he|strong=\"G2532\"* granted|strong=\"G1433\"* the|strong=\"G2532\"* body|strong=\"G4430\"* to|strong=\"G2532\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* bought a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*, and|strong=\"G2532\"* taking him|strong=\"G3588\"* down|strong=\"G5087\"*, wound him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3419\"* which|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* cut|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* a|strong=\"G2532\"* rock|strong=\"G4073\"*. He|strong=\"G2532\"* rolled|strong=\"G4351\"* a|strong=\"G2532\"* stone|strong=\"G3037\"* against|strong=\"G1909\"* the|strong=\"G1722\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 47, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* Joses|strong=\"G2500\"*, saw|strong=\"G2334\"* where|strong=\"G4226\"* he|strong=\"G2532\"* was|strong=\"G3588\"* laid|strong=\"G5087\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* was|strong=\"G3588\"* past|strong=\"G1230\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* James|strong=\"G2385\"*, and|strong=\"G2532\"* Salome|strong=\"G4539\"* bought spices, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* anoint him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Very|strong=\"G3029\"* early|strong=\"G4404\"* on|strong=\"G1909\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G2532\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* when|strong=\"G2532\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* had|strong=\"G2532\"* risen|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* saying|strong=\"G3004\"* among|strong=\"G1537\"* themselves|strong=\"G1438\"*, “Who|strong=\"G5101\"* will|strong=\"G5101\"* roll away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G1537\"* the|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* for|strong=\"G4314\"* us|strong=\"G3004\"*?”" + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* very|strong=\"G2532\"* big|strong=\"G3173\"*. Looking|strong=\"G2334\"* up|strong=\"G2532\"*, they|strong=\"G2532\"* saw|strong=\"G2334\"* that|strong=\"G3754\"* the|strong=\"G2532\"* stone|strong=\"G3037\"* was|strong=\"G1510\"* rolled|strong=\"G3037\"* back." + }, + { + "verseNum": 5, + "text": "Entering|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* young|strong=\"G3495\"* man|strong=\"G3495\"* sitting|strong=\"G2521\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* side|strong=\"G1188\"*, dressed|strong=\"G4016\"* in|strong=\"G1722\"* a|strong=\"G2532\"* white|strong=\"G3022\"* robe|strong=\"G4749\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* amazed|strong=\"G1568\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* amazed|strong=\"G1568\"*. You|strong=\"G3004\"* seek|strong=\"G2212\"* Jesus|strong=\"G2424\"*, the|strong=\"G1161\"* Nazarene|strong=\"G3479\"*, who|strong=\"G3588\"* has|strong=\"G3708\"* been|strong=\"G1510\"* crucified|strong=\"G4717\"*. He|strong=\"G1161\"* has|strong=\"G3708\"* risen|strong=\"G1453\"*! He|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* here|strong=\"G5602\"*. See|strong=\"G3708\"* the|strong=\"G1161\"* place|strong=\"G5117\"* where|strong=\"G3699\"* they|strong=\"G1161\"* laid|strong=\"G5087\"* him|strong=\"G3588\"*!" + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* go|strong=\"G5217\"*, tell|strong=\"G3004\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* Peter|strong=\"G4074\"*, ‘He|strong=\"G2532\"* goes|strong=\"G5217\"* before|strong=\"G4254\"* you|strong=\"G5210\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*. There|strong=\"G1563\"* you|strong=\"G5210\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, as|strong=\"G2531\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* you|strong=\"G5210\"*.’”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*,+ 16:8 TR adds “quickly”* and|strong=\"G2532\"* fled|strong=\"G5343\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, for|strong=\"G1063\"* trembling|strong=\"G5156\"* and|strong=\"G2532\"* astonishment|strong=\"G1611\"* had|strong=\"G2192\"* come|strong=\"G1831\"* on|strong=\"G4012\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* nothing|strong=\"G3762\"* to|strong=\"G2532\"* anyone|strong=\"G3762\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*.+ 16:8 One isolated manuscript omits verses 9-20 but adds this “short ending of Mark” to the end of verse 8: They told all that had been commanded them briefly to those around Peter. After that, Jesus himself sent them out, from east to west, with the sacred and imperishable proclamation of eternal salvation.*" + }, + { + "verseNum": 9, + "text": "+ 16:9 NU includes the text of verses 9-20, but mentions in a footnote that a few manuscripts omitted it. The translators of the World English Bible regard Mark 16:9-20 as reliable based on an overwhelming majority of textual evidence, including not only the authoritative Greek Majority Text New Testament, but also the TR and many of the manuscripts cited in the NU text.*Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* risen early|strong=\"G4404\"* on|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* day|strong=\"G4521\"* of|strong=\"G3844\"* the|strong=\"G1161\"* week|strong=\"G4521\"*, he|strong=\"G1161\"* appeared|strong=\"G5316\"* first|strong=\"G4413\"* to|strong=\"G1161\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, from|strong=\"G3844\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G3739\"* cast|strong=\"G1544\"* out|strong=\"G1544\"* seven|strong=\"G2033\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* told those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1096\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, as|strong=\"G2532\"* they|strong=\"G2532\"* mourned|strong=\"G3996\"* and|strong=\"G2532\"* wept|strong=\"G2799\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G2532\"* alive|strong=\"G2198\"* and|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* seen|strong=\"G2300\"* by|strong=\"G5259\"* her|strong=\"G3754\"*, they|strong=\"G2532\"* disbelieved." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* he|strong=\"G1161\"* was|strong=\"G3778\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* another|strong=\"G2087\"* form|strong=\"G3444\"* to|strong=\"G1519\"* two|strong=\"G1417\"* of|strong=\"G1537\"* them|strong=\"G1722\"* as|strong=\"G1519\"* they|strong=\"G1161\"* walked|strong=\"G4043\"*, on|strong=\"G1722\"* their|strong=\"G1722\"* way|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country." + }, + { + "verseNum": 13, + "text": "They|strong=\"G3588\"* went|strong=\"G3588\"* away and|strong=\"G2548\"* told it|strong=\"G1565\"* to|strong=\"G3588\"* the|strong=\"G3588\"* rest|strong=\"G3062\"*. They|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* them|strong=\"G3588\"*, either|strong=\"G3761\"*." + }, + { + "verseNum": 14, + "text": "Afterward|strong=\"G5305\"* he|strong=\"G2532\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* themselves as|strong=\"G1161\"* they|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1161\"* the|strong=\"G2532\"* table; and|strong=\"G2532\"* he|strong=\"G2532\"* rebuked them|strong=\"G3588\"* for|strong=\"G3754\"* their|strong=\"G2532\"* unbelief and|strong=\"G2532\"* hardness|strong=\"G4641\"* of|strong=\"G2532\"* heart|strong=\"G4641\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* seen|strong=\"G2300\"* him|strong=\"G3588\"* after|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* risen|strong=\"G1453\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w preach|strong=\"G2784\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G3956\"\\+w* \\+w News|strong=\"G2098\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w whole|strong=\"G3956\"\\+w* \\+w creation|strong=\"G2937\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* baptized \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w saved|strong=\"G4982\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* disbelieves \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w condemned|strong=\"G2632\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w These|strong=\"G3778\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w accompany|strong=\"G3877\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*: \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*; \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w languages|strong=\"G1100\"\\+w*; *" + }, + { + "verseNum": 18, + "text": "\\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w serpents|strong=\"G3789\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w any|strong=\"G5100\"\\+w* \\+w deadly|strong=\"G2286\"\\+w* \\+w thing|strong=\"G5100\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5100\"\\+w* hurt \\+w them|strong=\"G1438\"\\+w*; \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2007\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* sick, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w recover|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*,+ 16:19 NU adds “Jesus”* after|strong=\"G3326\"* he|strong=\"G2532\"* had|strong=\"G2424\"* spoken|strong=\"G2980\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, was|strong=\"G3588\"* received up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* at|strong=\"G1519\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* everywhere|strong=\"G3837\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* working|strong=\"G4903\"* with|strong=\"G1223\"* them|strong=\"G3588\"* and|strong=\"G2532\"* confirming the|strong=\"G2532\"* word|strong=\"G3056\"* by|strong=\"G1223\"* the|strong=\"G2532\"* signs|strong=\"G4592\"* that|strong=\"G3588\"* followed|strong=\"G1872\"*. Amen." + } + ] + } + ] + }, + { + "name": "Luke", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Since many|strong=\"G4183\"* have|strong=\"G1473\"* undertaken|strong=\"G2021\"* to|strong=\"G1722\"* set in|strong=\"G1722\"* order a|strong=\"G1722\"* narrative concerning|strong=\"G4012\"* those|strong=\"G3588\"* matters which|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G4183\"* fulfilled among|strong=\"G1722\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 2, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* those|strong=\"G3588\"* who|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning were|strong=\"G3588\"* eyewitnesses and|strong=\"G2532\"* servants|strong=\"G5257\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"* delivered|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G2532\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 3, + "text": "it|strong=\"G1380\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1380\"* me|strong=\"G2504\"* also|strong=\"G2504\"*, having traced the|strong=\"G3956\"* course of|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"* accurately from the|strong=\"G3956\"* first, to|strong=\"G1380\"* write|strong=\"G1125\"* to|strong=\"G1380\"* you|strong=\"G4771\"* in|strong=\"G3956\"* order|strong=\"G2517\"*, most|strong=\"G2903\"* excellent|strong=\"G2903\"* Theophilus|strong=\"G2321\"*;" + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* you|strong=\"G3739\"* might know|strong=\"G1921\"* the|strong=\"G3588\"* certainty concerning|strong=\"G4012\"* the|strong=\"G3588\"* things|strong=\"G3588\"* in|strong=\"G4012\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* instructed|strong=\"G2727\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, the|strong=\"G1722\"* king|strong=\"G3588\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* priest|strong=\"G2409\"* named|strong=\"G3686\"* Zacharias|strong=\"G2197\"*, of|strong=\"G1537\"* the|strong=\"G1722\"* priestly division|strong=\"G2183\"* of|strong=\"G1537\"* Abijah. He|strong=\"G2532\"* had|strong=\"G2532\"* a|strong=\"G1096\"* wife|strong=\"G1135\"* of|strong=\"G1537\"* the|strong=\"G1722\"* daughters|strong=\"G2364\"* of|strong=\"G1537\"* Aaron, and|strong=\"G2532\"* her|strong=\"G3588\"* name|strong=\"G3686\"* was|strong=\"G1096\"* Elizabeth|strong=\"G1665\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* both|strong=\"G2532\"* righteous|strong=\"G1342\"* before|strong=\"G1722\"* God|strong=\"G2316\"*, walking|strong=\"G4198\"* blamelessly in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* ordinances|strong=\"G1345\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3756\"* child|strong=\"G5043\"*, because|strong=\"G2530\"* Elizabeth|strong=\"G1665\"* was|strong=\"G1510\"* barren|strong=\"G4723\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* both|strong=\"G2532\"* were|strong=\"G1510\"* well|strong=\"G2532\"* advanced|strong=\"G4260\"* in|strong=\"G1722\"* years|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* he|strong=\"G1161\"* executed the|strong=\"G1722\"* priest’s office before|strong=\"G1722\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* order|strong=\"G5010\"* of|strong=\"G2316\"* his|strong=\"G1722\"* division|strong=\"G2183\"*" + }, + { + "verseNum": 9, + "text": "according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* custom|strong=\"G1485\"* of|strong=\"G2962\"* the|strong=\"G1519\"* priest’s|strong=\"G2962\"* office|strong=\"G2405\"*, his|strong=\"G1519\"* lot|strong=\"G2975\"* was|strong=\"G3588\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G3485\"* of|strong=\"G2962\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* and|strong=\"G2962\"* burn|strong=\"G2370\"* incense|strong=\"G2370\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G1510\"* praying|strong=\"G4336\"* outside|strong=\"G1854\"* at|strong=\"G3588\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* incense|strong=\"G2368\"*." + }, + { + "verseNum": 11, + "text": "An|strong=\"G1161\"* angel of|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* him|strong=\"G3588\"*, standing|strong=\"G2476\"* on|strong=\"G1537\"* the|strong=\"G1537\"* right|strong=\"G1188\"* side|strong=\"G1188\"* of|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"* of|strong=\"G1537\"* incense|strong=\"G2368\"*." + }, + { + "verseNum": 12, + "text": "Zacharias|strong=\"G2197\"* was|strong=\"G2532\"* troubled|strong=\"G5015\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* fear|strong=\"G5401\"* fell|strong=\"G1968\"* upon|strong=\"G1909\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Zacharias|strong=\"G2197\"*, because|strong=\"G1360\"* your|strong=\"G2532\"* request|strong=\"G1162\"* has|strong=\"G2532\"* been|strong=\"G2532\"* heard|strong=\"G1522\"*. Your|strong=\"G2532\"* wife|strong=\"G1135\"*, Elizabeth|strong=\"G1665\"*, will|strong=\"G2532\"* bear|strong=\"G1080\"* you|strong=\"G4771\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* shall|strong=\"G2532\"* call|strong=\"G2564\"* his|strong=\"G2532\"* name|strong=\"G3686\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"G4771\"* will|strong=\"G1510\"* have|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* gladness|strong=\"G5479\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* will|strong=\"G1510\"* rejoice|strong=\"G5463\"* at|strong=\"G1909\"* his|strong=\"G1909\"* birth|strong=\"G1078\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* great|strong=\"G3173\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G1510\"* drink|strong=\"G4095\"* no|strong=\"G3756\"* wine|strong=\"G3631\"* nor|strong=\"G2532\"* strong|strong=\"G3173\"* drink|strong=\"G4095\"*. He|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* from|strong=\"G1537\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*’s|strong=\"G2962\"* womb|strong=\"G2836\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* will|strong=\"G2316\"* turn|strong=\"G1994\"* many|strong=\"G4183\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* their|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* will|strong=\"G2532\"* go|strong=\"G4281\"* before|strong=\"G1799\"* him|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G4151\"* Elijah|strong=\"G2243\"*, ‘to|strong=\"G2532\"* turn|strong=\"G1994\"* the|strong=\"G1722\"* hearts|strong=\"G2588\"* of|strong=\"G4151\"* the|strong=\"G1722\"* fathers|strong=\"G3962\"* to|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5043\"*,’+ 1:17 Malachi 4:6* and|strong=\"G2532\"* the|strong=\"G1722\"* disobedient to|strong=\"G2532\"* the|strong=\"G1722\"* wisdom|strong=\"G5428\"* of|strong=\"G4151\"* the|strong=\"G1722\"* just|strong=\"G1342\"*; to|strong=\"G2532\"* prepare|strong=\"G2090\"* a|strong=\"G2532\"* people|strong=\"G2992\"* prepared|strong=\"G2090\"* for|strong=\"G1909\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 18, + "text": "Zacharias|strong=\"G2197\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1722\"* angel, “How|strong=\"G5101\"* can|strong=\"G3004\"* I|strong=\"G1473\"* be|strong=\"G1510\"* sure|strong=\"G1097\"* of|strong=\"G2250\"* this|strong=\"G3778\"*? For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* an|strong=\"G2532\"* old|strong=\"G2532\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* my|strong=\"G1722\"* wife|strong=\"G1135\"* is|strong=\"G1510\"* well|strong=\"G2532\"* advanced|strong=\"G4260\"* in|strong=\"G1722\"* years|strong=\"G2250\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* angel answered|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* Gabriel|strong=\"G1043\"*, who|strong=\"G3588\"* stands|strong=\"G3936\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. I|strong=\"G1473\"* was|strong=\"G1510\"* sent|strong=\"G2316\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G4314\"* bring|strong=\"G2097\"* you|strong=\"G4771\"* this|strong=\"G3778\"* good|strong=\"G2097\"* news|strong=\"G2097\"*." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1096\"* silent|strong=\"G4623\"* and|strong=\"G2532\"* not|strong=\"G3756\"* able|strong=\"G1410\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* until|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* that|strong=\"G3739\"* these|strong=\"G3778\"* things|strong=\"G3778\"* will|strong=\"G1510\"* happen|strong=\"G1096\"*, because|strong=\"G2532\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* my|strong=\"G3708\"* words|strong=\"G3056\"*, which|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"* in|strong=\"G1519\"* their|strong=\"G2532\"* proper|strong=\"G2540\"* time|strong=\"G2540\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G1510\"* waiting|strong=\"G4328\"* for|strong=\"G1722\"* Zacharias|strong=\"G2197\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* marveled|strong=\"G2296\"* that|strong=\"G3588\"* he|strong=\"G2532\"* delayed in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, he|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* a|strong=\"G2532\"* vision|strong=\"G3701\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*. He|strong=\"G2532\"* continued making|strong=\"G2532\"* signs|strong=\"G1269\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* remained|strong=\"G1265\"* mute|strong=\"G2974\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G5613\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* his|strong=\"G1519\"* service|strong=\"G3009\"* were|strong=\"G3588\"* fulfilled, he|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* days|strong=\"G2250\"* Elizabeth|strong=\"G1665\"* his|strong=\"G1438\"* wife|strong=\"G1135\"* conceived|strong=\"G4815\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* hid|strong=\"G4032\"* herself|strong=\"G1438\"* five|strong=\"G4002\"* months|strong=\"G3376\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 25, + "text": "“Thus|strong=\"G3779\"* has|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* done|strong=\"G4160\"* to|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* looked|strong=\"G1896\"* at|strong=\"G1722\"* me|strong=\"G1473\"*, to|strong=\"G1722\"* take|strong=\"G1896\"* away my|strong=\"G1722\"* reproach|strong=\"G3681\"* among|strong=\"G1722\"* men|strong=\"G1722\"*.”" + }, + { + "verseNum": 26, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sixth|strong=\"G1623\"* month|strong=\"G3376\"*, the|strong=\"G1722\"* angel Gabriel|strong=\"G1043\"* was|strong=\"G3588\"* sent|strong=\"G2316\"* from|strong=\"G3588\"* God|strong=\"G2316\"* to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2316\"* Galilee|strong=\"G1056\"* named|strong=\"G3686\"* Nazareth|strong=\"G3478\"*," + }, + { + "verseNum": 27, + "text": "to|strong=\"G4314\"* a|strong=\"G2532\"* virgin|strong=\"G3933\"* pledged to|strong=\"G4314\"* be|strong=\"G2532\"* married to|strong=\"G4314\"* a|strong=\"G2532\"* man|strong=\"G3739\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G3588\"* Joseph|strong=\"G2501\"*, of|strong=\"G1537\"* David|strong=\"G1138\"*’s house|strong=\"G3624\"*. The|strong=\"G2532\"* virgin|strong=\"G3933\"*’s name|strong=\"G3686\"* was|strong=\"G3588\"* Mary|strong=\"G3137\"*." + }, + { + "verseNum": 28, + "text": "Having|strong=\"G2532\"* come|strong=\"G1525\"* in|strong=\"G1525\"*, the|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “Rejoice|strong=\"G5463\"*, you|strong=\"G4771\"* highly favored|strong=\"G5487\"* one|strong=\"G1438\"*! The|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G4771\"*. Blessed are|strong=\"G3588\"* you|strong=\"G4771\"* among|strong=\"G4314\"* women!”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* she|strong=\"G2532\"* saw him|strong=\"G3588\"*, she|strong=\"G2532\"* was|strong=\"G1510\"* greatly troubled|strong=\"G1298\"* at|strong=\"G1909\"* the|strong=\"G2532\"* saying|strong=\"G3056\"*, and|strong=\"G2532\"* considered what|strong=\"G3588\"* kind|strong=\"G4217\"* of|strong=\"G3056\"* salutation this|strong=\"G3778\"* might|strong=\"G2532\"* be|strong=\"G1510\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3137\"*, “Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Mary|strong=\"G3137\"*, for|strong=\"G1063\"* you|strong=\"G3004\"* have|strong=\"G2532\"* found|strong=\"G2147\"* favor|strong=\"G5485\"* with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"G2400\"*, you|strong=\"G1722\"* will|strong=\"G2532\"* conceive|strong=\"G4815\"* in|strong=\"G1722\"* your|strong=\"G2532\"* womb|strong=\"G1064\"* and|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* shall|strong=\"G2532\"* name|strong=\"G3686\"* him|strong=\"G3588\"* ‘Jesus|strong=\"G2424\"*.’" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* great|strong=\"G3173\"* and|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*. The|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* give|strong=\"G1325\"* him|strong=\"G3588\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G5207\"* his|strong=\"G2532\"* father|strong=\"G3962\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 33, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G1510\"* reign|strong=\"G2532\"* over|strong=\"G1909\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Jacob|strong=\"G2384\"* forever|strong=\"G1519\"*. There|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* end|strong=\"G5056\"* to|strong=\"G1519\"* his|strong=\"G1519\"* Kingdom.”" + }, + { + "verseNum": 34, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* angel, “How|strong=\"G4459\"* can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"*, seeing|strong=\"G1893\"* I|strong=\"G1161\"* am|strong=\"G1510\"* a|strong=\"G1510\"* virgin|strong=\"G3756\"*?”" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* angel answered|strong=\"G3004\"* her|strong=\"G3588\"*, “The|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* will|strong=\"G2316\"* come|strong=\"G1904\"* on|strong=\"G1909\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* will|strong=\"G2316\"* overshadow|strong=\"G1982\"* you|strong=\"G4771\"*. Therefore|strong=\"G1352\"* also|strong=\"G2532\"* the|strong=\"G2532\"* holy|strong=\"G4151\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* born|strong=\"G1080\"* from|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2316\"* be|strong=\"G2532\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 36, + "text": "Behold|strong=\"G2400\"*, Elizabeth|strong=\"G1665\"* your|strong=\"G2532\"* relative|strong=\"G4773\"* also|strong=\"G2532\"* has|strong=\"G3778\"* conceived|strong=\"G4815\"* a|strong=\"G2532\"* son|strong=\"G5207\"* in|strong=\"G1722\"* her|strong=\"G3708\"* old|strong=\"G2532\"* age|strong=\"G1094\"*; and|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* sixth|strong=\"G1623\"* month|strong=\"G3376\"* with|strong=\"G1722\"* her|strong=\"G3708\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* barren|strong=\"G4723\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"G3754\"* nothing|strong=\"G3756\"* spoken by|strong=\"G3844\"* God|strong=\"G2316\"* is|strong=\"G3588\"* impossible|strong=\"G3756\"*.”+ 1:37 or, “For everything spoken by God is possible.”*" + }, + { + "verseNum": 38, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, the|strong=\"G2532\"* servant|strong=\"G1399\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; let|strong=\"G1096\"* it|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G2532\"* me|strong=\"G1473\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2962\"* word|strong=\"G4487\"*.”" + }, + { + "verseNum": 39, + "text": "Mary|strong=\"G3137\"* arose in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* and|strong=\"G1161\"* went|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* hill|strong=\"G3714\"* country|strong=\"G3714\"* with|strong=\"G3326\"* haste|strong=\"G4710\"*, into|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2250\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 40, + "text": "and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Zacharias|strong=\"G2197\"* and|strong=\"G2532\"* greeted Elizabeth|strong=\"G1665\"*." + }, + { + "verseNum": 41, + "text": "When|strong=\"G5613\"* Elizabeth|strong=\"G1665\"* heard Mary|strong=\"G3137\"*’s greeting, the|strong=\"G1722\"* baby|strong=\"G1025\"* leaped|strong=\"G4640\"* in|strong=\"G1722\"* her|strong=\"G3137\"* womb|strong=\"G2836\"*; and|strong=\"G2532\"* Elizabeth|strong=\"G1665\"* was|strong=\"G1096\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 42, + "text": "She|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G2906\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Blessed|strong=\"G2127\"* are|strong=\"G3588\"* you|strong=\"G4771\"* among|strong=\"G1722\"* women|strong=\"G1135\"*, and|strong=\"G2532\"* blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* your|strong=\"G2532\"* womb|strong=\"G2836\"*!" + }, + { + "verseNum": 43, + "text": "Why|strong=\"G2443\"* am|strong=\"G1473\"* I|strong=\"G1473\"* so|strong=\"G2443\"* favored, that|strong=\"G2443\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* my|strong=\"G1473\"* Lord|strong=\"G2962\"* should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*?" + }, + { + "verseNum": 44, + "text": "For|strong=\"G1063\"* behold|strong=\"G2400\"*, when|strong=\"G5613\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G1722\"* your|strong=\"G3708\"* greeting came|strong=\"G1096\"* into|strong=\"G1519\"* my|strong=\"G3708\"* ears|strong=\"G3775\"*, the|strong=\"G1722\"* baby|strong=\"G1025\"* leaped|strong=\"G4640\"* in|strong=\"G1722\"* my|strong=\"G3708\"* womb|strong=\"G2836\"* for|strong=\"G1063\"* joy!" + }, + { + "verseNum": 45, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G1510\"* she|strong=\"G2532\"* who|strong=\"G3588\"* believed|strong=\"G4100\"*, for|strong=\"G3754\"* there|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* fulfillment|strong=\"G5050\"* of|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* her|strong=\"G3754\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 46, + "text": "Mary|strong=\"G3137\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 47, + "text": "My|strong=\"G1473\"* spirit|strong=\"G4151\"* has|strong=\"G2316\"* rejoiced in|strong=\"G1909\"* God|strong=\"G2316\"* my|strong=\"G1473\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 48, + "text": "for|strong=\"G1063\"* he|strong=\"G3754\"* has|strong=\"G3708\"* looked|strong=\"G3708\"* at|strong=\"G1909\"* the|strong=\"G3956\"* humble|strong=\"G5014\"* state|strong=\"G5014\"* of|strong=\"G1909\"* his|strong=\"G3956\"* servant|strong=\"G1399\"*." + }, + { + "verseNum": 49, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* mighty|strong=\"G1415\"* has|strong=\"G3748\"* done|strong=\"G4160\"* great|strong=\"G3173\"* things|strong=\"G3588\"* for|strong=\"G3754\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 50, + "text": "His|strong=\"G1519\"* mercy|strong=\"G1656\"* is|strong=\"G3588\"* for|strong=\"G1519\"* generations|strong=\"G1074\"* and|strong=\"G2532\"* generations|strong=\"G1074\"* on|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"G4160\"* has shown|strong=\"G4160\"* strength|strong=\"G2904\"* with|strong=\"G1722\"* his|strong=\"G1722\"* arm|strong=\"G1023\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"G2532\"* has|strong=\"G2532\"* put|strong=\"G2532\"* down|strong=\"G2507\"* princes from|strong=\"G2532\"* their|strong=\"G2532\"* thrones|strong=\"G2362\"*," + }, + { + "verseNum": 53, + "text": "He|strong=\"G2532\"* has|strong=\"G2532\"* filled|strong=\"G1705\"* the|strong=\"G2532\"* hungry|strong=\"G3983\"* with|strong=\"G2532\"* good|strong=\"G2532\"* things|strong=\"G2756\"*." + }, + { + "verseNum": 54, + "text": "He|strong=\"G2474\"* has given help to|strong=\"G1656\"* Israel|strong=\"G2474\"*, his|strong=\"G3403\"* servant|strong=\"G3816\"*, that|strong=\"G3403\"* he|strong=\"G2474\"* might remember|strong=\"G3403\"* mercy|strong=\"G1656\"*," + }, + { + "verseNum": 55, + "text": "as|strong=\"G2531\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G1519\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 56, + "text": "Mary|strong=\"G3137\"* stayed|strong=\"G3306\"* with|strong=\"G4862\"* her|strong=\"G1519\"* about|strong=\"G5613\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, and|strong=\"G2532\"* then|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* her|strong=\"G1519\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 57, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* time|strong=\"G5550\"* that|strong=\"G3588\"* Elizabeth|strong=\"G1665\"* should|strong=\"G3588\"* give|strong=\"G5088\"* birth|strong=\"G5088\"* was|strong=\"G3588\"* fulfilled, and|strong=\"G2532\"* she|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 58, + "text": "Her|strong=\"G3754\"* neighbors|strong=\"G4040\"* and|strong=\"G2532\"* her|strong=\"G3754\"* relatives|strong=\"G4773\"* heard that|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* had|strong=\"G2532\"* magnified|strong=\"G3170\"* his|strong=\"G2532\"* mercy|strong=\"G1656\"* toward|strong=\"G3326\"* her|strong=\"G3754\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* rejoiced|strong=\"G4796\"* with|strong=\"G3326\"* her|strong=\"G3754\"*." + }, + { + "verseNum": 59, + "text": "On|strong=\"G1909\"* the|strong=\"G1722\"* eighth|strong=\"G3590\"* day|strong=\"G2250\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* circumcise|strong=\"G4059\"* the|strong=\"G1722\"* child|strong=\"G3813\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* would|strong=\"G1096\"* have|strong=\"G2532\"* called|strong=\"G2564\"* him|strong=\"G3588\"* Zacharias|strong=\"G2197\"*, after|strong=\"G1909\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2250\"* his|strong=\"G1909\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 60, + "text": "His|strong=\"G2532\"* mother|strong=\"G3384\"* answered|strong=\"G3004\"*, “Not|strong=\"G3780\"* so|strong=\"G2532\"*; but|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* John|strong=\"G2491\"*.”" + }, + { + "verseNum": 61, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “There|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3762\"* one|strong=\"G3762\"* among|strong=\"G1537\"* your|strong=\"G2532\"* relatives|strong=\"G4772\"* who|strong=\"G3739\"* is|strong=\"G1510\"* called|strong=\"G2564\"* by|strong=\"G1537\"* this|strong=\"G3778\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 62, + "text": "They|strong=\"G1161\"* made|strong=\"G1161\"* signs|strong=\"G1770\"* to|strong=\"G2309\"* his|strong=\"G2564\"* father|strong=\"G3962\"*, what|strong=\"G5101\"* he|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* him|strong=\"G3588\"* called|strong=\"G2564\"*." + }, + { + "verseNum": 63, + "text": "He|strong=\"G2532\"* asked|strong=\"G3004\"* for|strong=\"G2532\"* a|strong=\"G2532\"* writing|strong=\"G1125\"* tablet|strong=\"G4093\"*, and|strong=\"G2532\"* wrote|strong=\"G1125\"*, “His|strong=\"G3956\"* name|strong=\"G3686\"* is|strong=\"G1510\"* John|strong=\"G2491\"*.”" + }, + { + "verseNum": 64, + "text": "His|strong=\"G2532\"* mouth|strong=\"G4750\"* was|strong=\"G3588\"* opened immediately|strong=\"G3916\"* and|strong=\"G2532\"* his|strong=\"G2532\"* tongue|strong=\"G1100\"* freed, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"*, blessing|strong=\"G2127\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 65, + "text": "Fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* lived|strong=\"G2532\"* around|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* these|strong=\"G3778\"* sayings|strong=\"G4487\"* were|strong=\"G3588\"* talked|strong=\"G1255\"* about|strong=\"G1909\"* throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* hill|strong=\"G3714\"* country|strong=\"G3714\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 66, + "text": "All|strong=\"G3956\"* who|strong=\"G5101\"* heard them|strong=\"G3588\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* up|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* heart|strong=\"G2588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* then|strong=\"G2532\"* will|strong=\"G5101\"* this|strong=\"G3778\"* child|strong=\"G3813\"* be|strong=\"G1510\"*?” The|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 67, + "text": "His|strong=\"G2532\"* father|strong=\"G3962\"* Zacharias|strong=\"G2197\"* was|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* prophesied|strong=\"G4395\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 68, + "text": "“Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"*," + }, + { + "verseNum": 69, + "text": "and|strong=\"G2532\"* has|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* a|strong=\"G2532\"* horn|strong=\"G2768\"* of|strong=\"G2532\"* salvation|strong=\"G4991\"* for|strong=\"G1722\"* us|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3624\"* of|strong=\"G2532\"* his|strong=\"G1722\"* servant|strong=\"G3816\"* David|strong=\"G1138\"*" + }, + { + "verseNum": 70, + "text": "(as|strong=\"G2531\"* he|strong=\"G3588\"* spoke|strong=\"G2980\"* by|strong=\"G1223\"* the|strong=\"G1223\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* his|strong=\"G1223\"* holy prophets|strong=\"G4396\"* who|strong=\"G3588\"* have|strong=\"G3588\"* been from|strong=\"G3588\"* of|strong=\"G1223\"* old)," + }, + { + "verseNum": 71, + "text": "salvation|strong=\"G4991\"* from|strong=\"G1537\"* our|strong=\"G2532\"* enemies|strong=\"G2190\"* and|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* all|strong=\"G3956\"* who|strong=\"G3588\"* hate|strong=\"G3404\"* us|strong=\"G2249\"*;" + }, + { + "verseNum": 72, + "text": "to|strong=\"G2532\"* show|strong=\"G4160\"* mercy|strong=\"G1656\"* toward|strong=\"G3326\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 73, + "text": "the|strong=\"G4314\"* oath|strong=\"G3727\"* which|strong=\"G3739\"* he|strong=\"G3739\"* swore|strong=\"G3660\"* to|strong=\"G4314\"* Abraham our|strong=\"G4314\"* father|strong=\"G3962\"*," + }, + { + "verseNum": 74, + "text": "to|strong=\"G1537\"* grant to|strong=\"G1537\"* us|strong=\"G1537\"* that|strong=\"G1537\"* we, being delivered|strong=\"G4506\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* our|strong=\"G1537\"* enemies|strong=\"G2190\"*," + }, + { + "verseNum": 75, + "text": "in|strong=\"G1722\"* holiness|strong=\"G3742\"* and|strong=\"G2532\"* righteousness|strong=\"G1343\"* before|strong=\"G1799\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2532\"* life." + }, + { + "verseNum": 76, + "text": "And|strong=\"G2532\"* you|strong=\"G4771\"*, child|strong=\"G3813\"*, will|strong=\"G2532\"* be|strong=\"G2532\"* called|strong=\"G2564\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*;" + }, + { + "verseNum": 77, + "text": "to|strong=\"G1722\"* give|strong=\"G1325\"* knowledge|strong=\"G1108\"* of|strong=\"G1722\"* salvation|strong=\"G4991\"* to|strong=\"G1722\"* his|strong=\"G1722\"* people|strong=\"G2992\"* by|strong=\"G1722\"* the|strong=\"G1722\"* remission of|strong=\"G1722\"* their|strong=\"G1722\"* sins," + }, + { + "verseNum": 78, + "text": "because|strong=\"G1223\"* of|strong=\"G1537\"* the|strong=\"G1722\"* tender|strong=\"G4698\"* mercy|strong=\"G1656\"* of|strong=\"G1537\"* our|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 79, + "text": "to|strong=\"G1519\"* shine|strong=\"G2014\"* on|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sit|strong=\"G2521\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"* and|strong=\"G2532\"* the|strong=\"G1722\"* shadow|strong=\"G4639\"* of|strong=\"G2532\"* death|strong=\"G2288\"*;" + }, + { + "verseNum": 80, + "text": "The|strong=\"G1722\"* child|strong=\"G3813\"* was|strong=\"G1510\"* growing|strong=\"G1722\"* and|strong=\"G2532\"* becoming strong|strong=\"G2901\"* in|strong=\"G1722\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* desert|strong=\"G2048\"* until|strong=\"G2193\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* his|strong=\"G1722\"* public appearance to|strong=\"G4314\"* Israel|strong=\"G2474\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, a|strong=\"G1096\"* decree|strong=\"G1378\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G3844\"* Caesar|strong=\"G2541\"* Augustus that|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G3625\"* should|strong=\"G3588\"* be|strong=\"G1096\"* enrolled." + }, + { + "verseNum": 2, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* the|strong=\"G3588\"* first|strong=\"G4413\"* enrollment made|strong=\"G1096\"* when|strong=\"G1096\"* Quirinius|strong=\"G2958\"* was|strong=\"G1096\"* governor|strong=\"G2230\"* of|strong=\"G3588\"* Syria|strong=\"G4947\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"G3956\"* went|strong=\"G4198\"* to|strong=\"G1519\"* enroll themselves|strong=\"G1438\"*, everyone|strong=\"G3956\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"G2501\"* also|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G1537\"* Galilee|strong=\"G1056\"*, out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G1537\"* Nazareth|strong=\"G3478\"*, into|strong=\"G1519\"* Judea|strong=\"G2449\"*, to|strong=\"G1519\"* David|strong=\"G1138\"*’s city|strong=\"G4172\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G2564\"* Bethlehem, because|strong=\"G1223\"* he|strong=\"G2532\"* was|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* house|strong=\"G3624\"* and|strong=\"G2532\"* family|strong=\"G3965\"* of|strong=\"G1537\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G1510\"* enroll himself|strong=\"G4862\"* with|strong=\"G4862\"* Mary|strong=\"G3137\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* pledged to|strong=\"G1510\"* be|strong=\"G1510\"* married to|strong=\"G1510\"* him|strong=\"G3588\"* as|strong=\"G3588\"* wife, being|strong=\"G1510\"* pregnant." + }, + { + "verseNum": 6, + "text": "While|strong=\"G1722\"* they|strong=\"G1161\"* were|strong=\"G1510\"* there|strong=\"G1563\"*, the|strong=\"G1722\"* day|strong=\"G2250\"* had|strong=\"G1510\"* come|strong=\"G1096\"* for|strong=\"G1161\"* her|strong=\"G1438\"* to|strong=\"G1722\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G2532\"* her|strong=\"G3588\"* firstborn|strong=\"G4416\"* son|strong=\"G5207\"*. She|strong=\"G2532\"* wrapped|strong=\"G4683\"* him|strong=\"G3588\"* in|strong=\"G1722\"* bands of|strong=\"G5207\"* cloth and|strong=\"G2532\"* laid|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* feeding trough, because|strong=\"G1360\"* there|strong=\"G2532\"* was|strong=\"G1510\"* no|strong=\"G3756\"* room|strong=\"G5117\"* for|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* inn|strong=\"G2646\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* shepherds|strong=\"G4166\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* country|strong=\"G5561\"* staying in|strong=\"G1722\"* the|strong=\"G1722\"* field, and|strong=\"G2532\"* keeping|strong=\"G5442\"* watch|strong=\"G5438\"* by|strong=\"G1722\"* night|strong=\"G3571\"* over|strong=\"G1909\"* their|strong=\"G2532\"* flock|strong=\"G4167\"*." + }, + { + "verseNum": 9, + "text": "Behold, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G2532\"* them|strong=\"G1438\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* shone|strong=\"G4034\"* around|strong=\"G4034\"* them|strong=\"G1438\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G2532\"* terrified|strong=\"G5399\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* behold|strong=\"G2400\"*, I|strong=\"G2532\"* bring|strong=\"G2097\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2532\"* great|strong=\"G3173\"* joy|strong=\"G5479\"* which|strong=\"G3588\"* will|strong=\"G1510\"* be|strong=\"G1510\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G3754\"* there|strong=\"G3754\"* is|strong=\"G1510\"* born|strong=\"G5088\"* to|strong=\"G1722\"* you|strong=\"G5210\"* today|strong=\"G4594\"*, in|strong=\"G1722\"* David|strong=\"G1138\"*’s|strong=\"G2962\"* city|strong=\"G4172\"*, a|strong=\"G1722\"* Savior|strong=\"G4990\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*+ 2:11 “Christ” means “Anointed One”.* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* to|strong=\"G2532\"* you|strong=\"G5210\"*: you|strong=\"G5210\"* will|strong=\"G2532\"* find|strong=\"G2147\"* a|strong=\"G2532\"* baby|strong=\"G1025\"* wrapped|strong=\"G4683\"* in|strong=\"G1722\"* strips of|strong=\"G2532\"* cloth, lying|strong=\"G2749\"* in|strong=\"G1722\"* a|strong=\"G2532\"* feeding trough.”" + }, + { + "verseNum": 13, + "text": "Suddenly|strong=\"G1810\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* with|strong=\"G4862\"* the|strong=\"G2532\"* angel a|strong=\"G1096\"* multitude|strong=\"G4128\"* of|strong=\"G2316\"* the|strong=\"G2532\"* heavenly|strong=\"G3770\"* army|strong=\"G4756\"* praising God|strong=\"G2316\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*," + }, + { + "verseNum": 14, + "text": "“Glory|strong=\"G1391\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*," + }, + { + "verseNum": 15, + "text": "When|strong=\"G5613\"* the|strong=\"G2532\"* angels went|strong=\"G1330\"* away from|strong=\"G2532\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, the|strong=\"G2532\"* shepherds|strong=\"G4166\"* said|strong=\"G2980\"* to|strong=\"G1519\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “Let|strong=\"G1096\"*’s|strong=\"G2962\"* go|strong=\"G1330\"* to|strong=\"G1519\"* Bethlehem, now|strong=\"G2532\"*, and|strong=\"G2532\"* see|strong=\"G3708\"* this|strong=\"G3778\"* thing|strong=\"G3778\"* that|strong=\"G3739\"* has|strong=\"G2962\"* happened|strong=\"G1096\"*, which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* made|strong=\"G1096\"* known|strong=\"G1107\"* to|strong=\"G1519\"* us|strong=\"G1519\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* with|strong=\"G1722\"* haste|strong=\"G4692\"* and|strong=\"G2532\"* found|strong=\"G2532\"* both|strong=\"G2532\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* Joseph|strong=\"G2501\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* baby|strong=\"G1025\"* was|strong=\"G3588\"* lying|strong=\"G2749\"* in|strong=\"G1722\"* the|strong=\"G1722\"* feeding trough." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, they|strong=\"G1161\"* publicized widely the|strong=\"G1161\"* saying|strong=\"G2980\"* which|strong=\"G3588\"* was|strong=\"G3588\"* spoken|strong=\"G2980\"* to|strong=\"G2980\"* them|strong=\"G3588\"* about|strong=\"G4012\"* this|strong=\"G3778\"* child|strong=\"G3813\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard it|strong=\"G2532\"* wondered|strong=\"G2296\"* at|strong=\"G4314\"* the|strong=\"G2532\"* things|strong=\"G3956\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* to|strong=\"G4314\"* them|strong=\"G3588\"* by|strong=\"G5259\"* the|strong=\"G2532\"* shepherds|strong=\"G4166\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* Mary|strong=\"G3137\"* kept|strong=\"G4933\"* all|strong=\"G3956\"* these|strong=\"G3778\"* sayings|strong=\"G4487\"*, pondering|strong=\"G4820\"* them|strong=\"G3588\"* in|strong=\"G1722\"* her|strong=\"G3956\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* shepherds|strong=\"G4166\"* returned|strong=\"G5290\"*, glorifying|strong=\"G1392\"* and|strong=\"G2532\"* praising|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* heard and|strong=\"G2532\"* seen|strong=\"G3708\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G2532\"* was|strong=\"G3588\"* told|strong=\"G2980\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G3753\"* eight|strong=\"G3638\"* days|strong=\"G2250\"* were|strong=\"G3588\"* fulfilled for|strong=\"G1722\"* the|strong=\"G1722\"* circumcision|strong=\"G4059\"* of|strong=\"G5259\"* the|strong=\"G1722\"* child|strong=\"G1722\"*, his|strong=\"G1722\"* name|strong=\"G3686\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Jesus|strong=\"G2424\"*, which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G2564\"* by|strong=\"G1722\"* the|strong=\"G1722\"* angel before|strong=\"G4253\"* he|strong=\"G2532\"* was|strong=\"G3588\"* conceived|strong=\"G4815\"* in|strong=\"G1722\"* the|strong=\"G1722\"* womb|strong=\"G2836\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* their|strong=\"G2532\"* purification|strong=\"G2512\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2250\"* Moses|strong=\"G3475\"* were|strong=\"G3588\"* fulfilled, they|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* present|strong=\"G3936\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*" + }, + { + "verseNum": 23, + "text": "(as|strong=\"G2531\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, “Every|strong=\"G3956\"* male who|strong=\"G3588\"* opens|strong=\"G1272\"* the|strong=\"G1722\"* womb|strong=\"G3388\"* shall|strong=\"G2962\"* be|strong=\"G3956\"* called|strong=\"G2564\"* holy to|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*”),+ 2:23 Exodus 13:2,12*" + }, + { + "verseNum": 24, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* offer|strong=\"G1325\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* according|strong=\"G2596\"* to|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* said|strong=\"G3004\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, “A|strong=\"G2532\"* pair|strong=\"G2201\"* of|strong=\"G2532\"* turtledoves|strong=\"G5167\"*, or|strong=\"G2228\"* two|strong=\"G1417\"* young|strong=\"G3502\"* pigeons|strong=\"G4058\"*.”+ 2:24 Leviticus 12:8*" + }, + { + "verseNum": 25, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3778\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G1510\"* Simeon|strong=\"G4826\"*. This|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* righteous|strong=\"G1342\"* and|strong=\"G2532\"* devout|strong=\"G2126\"*, looking|strong=\"G4327\"* for|strong=\"G1909\"* the|strong=\"G1722\"* consolation|strong=\"G3874\"* of|strong=\"G4151\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G1510\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "It|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* revealed|strong=\"G5537\"* to|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* he|strong=\"G2532\"* should|strong=\"G3588\"* not|strong=\"G3361\"* see|strong=\"G3708\"* death|strong=\"G2288\"* before|strong=\"G4250\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* Christ|strong=\"G5547\"*.+ 2:26 “Christ” (Greek) and “Messiah” (Hebrew) both mean “Anointed One”*" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*. When|strong=\"G2532\"* the|strong=\"G1722\"* parents|strong=\"G1118\"* brought|strong=\"G1521\"* in|strong=\"G1722\"* the|strong=\"G1722\"* child|strong=\"G3813\"*, Jesus|strong=\"G2424\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* custom|strong=\"G1480\"* of|strong=\"G4012\"* the|strong=\"G1722\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 28, + "text": "then|strong=\"G2532\"* he|strong=\"G2532\"* received|strong=\"G1209\"* him|strong=\"G3588\"* into|strong=\"G1519\"* his|strong=\"G1519\"* arms and|strong=\"G2532\"* blessed|strong=\"G2127\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 29, + "text": "“Now|strong=\"G3568\"* you|strong=\"G4771\"* are|strong=\"G3588\"* releasing your|strong=\"G1722\"* servant|strong=\"G1401\"*, Master|strong=\"G1203\"*," + }, + { + "verseNum": 30, + "text": "for|strong=\"G3754\"* my|strong=\"G3708\"* eyes|strong=\"G3788\"* have|strong=\"G1473\"* seen|strong=\"G3708\"* your|strong=\"G3708\"* salvation|strong=\"G4992\"*," + }, + { + "verseNum": 31, + "text": "which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G3956\"* prepared|strong=\"G2090\"* before|strong=\"G2596\"* the|strong=\"G3956\"* face|strong=\"G4383\"* of|strong=\"G2596\"* all|strong=\"G3956\"* peoples|strong=\"G2992\"*;" + }, + { + "verseNum": 32, + "text": "a|strong=\"G2532\"* light|strong=\"G5457\"* for|strong=\"G1519\"* revelation to|strong=\"G1519\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*," + }, + { + "verseNum": 33, + "text": "Joseph and|strong=\"G2532\"* his|strong=\"G4012\"* mother|strong=\"G3384\"* were|strong=\"G1510\"* marveling|strong=\"G2296\"* at|strong=\"G1909\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G1510\"* spoken|strong=\"G2980\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "Simeon|strong=\"G4826\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Mary|strong=\"G3137\"*, his|strong=\"G1438\"* mother|strong=\"G3384\"*, “Behold|strong=\"G2400\"*, this|strong=\"G3778\"* child|strong=\"G1722\"* is|strong=\"G3588\"* appointed|strong=\"G2749\"* for|strong=\"G1519\"* the|strong=\"G1722\"* falling and|strong=\"G2532\"* the|strong=\"G1722\"* rising|strong=\"G2532\"* of|strong=\"G2532\"* many|strong=\"G4183\"* in|strong=\"G1722\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* for|strong=\"G1519\"* a|strong=\"G2532\"* sign|strong=\"G4592\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spoken|strong=\"G3004\"* against|strong=\"G4314\"*." + }, + { + "verseNum": 35, + "text": "Yes|strong=\"G1161\"*, a|strong=\"G2532\"* sword|strong=\"G4501\"* will|strong=\"G2532\"* pierce|strong=\"G1330\"* through|strong=\"G1330\"* your|strong=\"G2532\"* own soul|strong=\"G5590\"*, that|strong=\"G3588\"* the|strong=\"G2532\"* thoughts|strong=\"G1261\"* of|strong=\"G1537\"* many|strong=\"G4183\"* hearts|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed.”" + }, + { + "verseNum": 36, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* one|strong=\"G3588\"* Anna, a|strong=\"G2532\"* prophetess|strong=\"G4398\"*, the|strong=\"G1722\"* daughter|strong=\"G2364\"* of|strong=\"G1537\"* Phanuel|strong=\"G5323\"*, of|strong=\"G1537\"* the|strong=\"G1722\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Asher (she|strong=\"G2532\"* was|strong=\"G1510\"* of|strong=\"G1537\"* a|strong=\"G2532\"* great|strong=\"G4183\"* age|strong=\"G2094\"*, having|strong=\"G2532\"* lived|strong=\"G2198\"* with|strong=\"G3326\"* a|strong=\"G2532\"* husband seven|strong=\"G2033\"* years|strong=\"G2094\"* from|strong=\"G1537\"* her|strong=\"G3588\"* virginity|strong=\"G3932\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* a|strong=\"G2532\"* widow|strong=\"G5503\"* for|strong=\"G2532\"* about|strong=\"G3588\"* eighty-four|strong=\"G3589\"* years|strong=\"G2094\"*), who|strong=\"G3739\"* didn’t|strong=\"G3588\"* depart from|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, worshiping|strong=\"G3000\"* with|strong=\"G2532\"* fastings|strong=\"G3521\"* and|strong=\"G2532\"* petitions night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 38, + "text": "Coming|strong=\"G2316\"* up|strong=\"G2532\"* at|strong=\"G4012\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, she|strong=\"G2532\"* gave|strong=\"G2532\"* thanks to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*, and|strong=\"G2532\"* spoke|strong=\"G2980\"* of|strong=\"G4012\"* him|strong=\"G3588\"* to|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* looking|strong=\"G4327\"* for|strong=\"G4012\"* redemption|strong=\"G3085\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G5613\"* they|strong=\"G2532\"* had|strong=\"G2532\"* accomplished|strong=\"G5055\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, they|strong=\"G2532\"* returned|strong=\"G1994\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, to|strong=\"G1519\"* their|strong=\"G1438\"* own|strong=\"G1438\"* city|strong=\"G4172\"*, Nazareth|strong=\"G3478\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"G2532\"* child|strong=\"G3813\"* was|strong=\"G1510\"* growing, and|strong=\"G2532\"* was|strong=\"G1510\"* becoming strong|strong=\"G2901\"* in|strong=\"G1909\"* spirit|strong=\"G3588\"*, being|strong=\"G1510\"* filled|strong=\"G4137\"* with|strong=\"G2532\"* wisdom|strong=\"G4678\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* was|strong=\"G1510\"* upon|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "His|strong=\"G1519\"* parents|strong=\"G1118\"* went|strong=\"G4198\"* every|strong=\"G2596\"* year|strong=\"G2094\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* at|strong=\"G1519\"* the|strong=\"G2532\"* feast|strong=\"G1859\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* was|strong=\"G1096\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G2532\"* to|strong=\"G2532\"* Jerusalem according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* the|strong=\"G2532\"* feast|strong=\"G1859\"*;" + }, + { + "verseNum": 43, + "text": "and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2424\"* fulfilled|strong=\"G5048\"* the|strong=\"G1722\"* days|strong=\"G2250\"*, as|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G3588\"* returning|strong=\"G5290\"*, the|strong=\"G1722\"* boy|strong=\"G3816\"* Jesus|strong=\"G2424\"* stayed|strong=\"G5278\"* behind|strong=\"G5278\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. Joseph and|strong=\"G2532\"* his|strong=\"G1438\"* mother didn’t|strong=\"G3588\"* know|strong=\"G1097\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 44, + "text": "but|strong=\"G1161\"* supposing|strong=\"G3543\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* company|strong=\"G4923\"*, they|strong=\"G2532\"* went|strong=\"G2064\"* a|strong=\"G2532\"* day|strong=\"G2250\"*’s journey|strong=\"G3598\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* looked|strong=\"G2532\"* for|strong=\"G1161\"* him|strong=\"G3588\"* among|strong=\"G1722\"* their|strong=\"G2532\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* acquaintances|strong=\"G1110\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* didn’t find|strong=\"G2147\"* him|strong=\"G2532\"*, they|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, looking|strong=\"G2532\"* for|strong=\"G1519\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 46, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* they|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*, sitting|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2250\"* the|strong=\"G1722\"* teachers|strong=\"G1320\"*, both|strong=\"G2532\"* listening to|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* asking|strong=\"G1905\"* them|strong=\"G3588\"* questions|strong=\"G1905\"*." + }, + { + "verseNum": 47, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard him|strong=\"G3588\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"* at|strong=\"G1909\"* his|strong=\"G3956\"* understanding|strong=\"G4907\"* and|strong=\"G2532\"* his|strong=\"G3956\"* answers." + }, + { + "verseNum": 48, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* astonished|strong=\"G1605\"*; and|strong=\"G2532\"* his|strong=\"G4160\"* mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Son|strong=\"G5043\"*, why|strong=\"G5101\"* have|strong=\"G2532\"* you|strong=\"G4771\"* treated|strong=\"G4160\"* us|strong=\"G3004\"* this|strong=\"G3588\"* way|strong=\"G3779\"*? Behold|strong=\"G2400\"*, your|strong=\"G2532\"* father|strong=\"G3962\"* and|strong=\"G2532\"* I|strong=\"G1473\"* were|strong=\"G3588\"* anxiously|strong=\"G3600\"* looking|strong=\"G2212\"* for|strong=\"G4314\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 49, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w*? Didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s house?”*" + }, + { + "verseNum": 50, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"* the|strong=\"G2532\"* saying|strong=\"G2980\"* which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* down|strong=\"G2597\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Nazareth|strong=\"G3478\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* his|strong=\"G3956\"* mother|strong=\"G3384\"* kept|strong=\"G1301\"* all|strong=\"G3956\"* these|strong=\"G3956\"* sayings|strong=\"G4487\"* in|strong=\"G1722\"* her|strong=\"G1519\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 52, + "text": "And|strong=\"G2532\"* Jesus|strong=\"G2424\"* increased|strong=\"G4298\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* stature|strong=\"G2244\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* favor|strong=\"G5485\"* with|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fifteenth|strong=\"G4003\"* year|strong=\"G2094\"* of|strong=\"G2532\"* the|strong=\"G1722\"* reign|strong=\"G2231\"* of|strong=\"G2532\"* Tiberius|strong=\"G5086\"* Caesar|strong=\"G2541\"*, Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"* being|strong=\"G2532\"* governor|strong=\"G2230\"* of|strong=\"G2532\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* Herod|strong=\"G2264\"* being|strong=\"G2532\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* brother Philip|strong=\"G5376\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* the|strong=\"G1722\"* region|strong=\"G5561\"* of|strong=\"G2532\"* Ituraea|strong=\"G2484\"* and|strong=\"G2532\"* Trachonitis|strong=\"G5139\"*, and|strong=\"G2532\"* Lysanias|strong=\"G3078\"* tetrarch|strong=\"G5075\"* of|strong=\"G2532\"* Abilene," + }, + { + "verseNum": 2, + "text": "during|strong=\"G1722\"* the|strong=\"G1722\"* high|strong=\"G2532\"* priesthood of|strong=\"G5207\"* Annas and|strong=\"G2532\"* Caiaphas|strong=\"G2533\"*, the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G5207\"* God|strong=\"G2316\"* came|strong=\"G1096\"* to|strong=\"G2532\"* John|strong=\"G2491\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Zacharias|strong=\"G2197\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* region|strong=\"G4066\"* around|strong=\"G4066\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, preaching|strong=\"G2784\"* the|strong=\"G2532\"* baptism of|strong=\"G2532\"* repentance|strong=\"G3341\"* for|strong=\"G1519\"* remission of|strong=\"G2532\"* sins." + }, + { + "verseNum": 4, + "text": "As|strong=\"G5613\"* it|strong=\"G4160\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G3056\"* the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*," + }, + { + "verseNum": 5, + "text": "Every|strong=\"G3956\"* valley|strong=\"G5327\"* will|strong=\"G1510\"* be|strong=\"G1510\"* filled|strong=\"G4137\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"G3956\"* flesh|strong=\"G4561\"* will|strong=\"G2316\"* see|strong=\"G3708\"* God|strong=\"G2316\"*’s salvation|strong=\"G4992\"*.’”+ 3:6 Isaiah 40:3-5*" + }, + { + "verseNum": 7, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G3004\"* the|strong=\"G3588\"* multitudes|strong=\"G3793\"* who|strong=\"G5101\"* went|strong=\"G1607\"* out|strong=\"G1607\"* to|strong=\"G3004\"* be|strong=\"G3195\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"*, “You|strong=\"G5210\"* offspring|strong=\"G1081\"* of|strong=\"G5259\"* vipers|strong=\"G2191\"*, who|strong=\"G5101\"* warned|strong=\"G5263\"* you|strong=\"G5210\"* to|strong=\"G3004\"* flee|strong=\"G5343\"* from|strong=\"G5259\"* the|strong=\"G3588\"* wrath|strong=\"G3709\"* to|strong=\"G3004\"* come|strong=\"G3195\"*?" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* produce|strong=\"G4160\"* fruits|strong=\"G2590\"* worthy of|strong=\"G1537\"* repentance|strong=\"G3341\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* begin to|strong=\"G2532\"* say|strong=\"G3004\"* among|strong=\"G1722\"* yourselves|strong=\"G1438\"*, ‘We|strong=\"G3754\"* have|strong=\"G2192\"* Abraham for|strong=\"G1063\"* our|strong=\"G2316\"* father|strong=\"G3962\"*;’ for|strong=\"G1063\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* children|strong=\"G5043\"* to|strong=\"G2532\"* Abraham from|strong=\"G1537\"* these|strong=\"G3778\"* stones|strong=\"G3037\"*!" + }, + { + "verseNum": 9, + "text": "Even|strong=\"G2532\"* now|strong=\"G1161\"* the|strong=\"G2532\"* ax also|strong=\"G2532\"* lies|strong=\"G2749\"* at|strong=\"G1519\"* the|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* the|strong=\"G2532\"* trees|strong=\"G1186\"*. Every|strong=\"G3956\"* tree|strong=\"G1186\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* produce|strong=\"G4160\"* good|strong=\"G2570\"* fruit|strong=\"G2590\"* is|strong=\"G3588\"* cut|strong=\"G1581\"* down|strong=\"G1581\"* and|strong=\"G2532\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* multitudes|strong=\"G3793\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* must|strong=\"G4160\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* two|strong=\"G1417\"* coats|strong=\"G5509\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* give|strong=\"G4160\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* none|strong=\"G3361\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* food|strong=\"G1033\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* do|strong=\"G4160\"* likewise|strong=\"G3668\"*.”" + }, + { + "verseNum": 12, + "text": "Tax|strong=\"G5057\"* collectors|strong=\"G5057\"* also|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* be|strong=\"G2532\"* baptized, and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G4160\"*, “Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Collect|strong=\"G4238\"* no|strong=\"G3367\"* more|strong=\"G4119\"* than|strong=\"G3844\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appointed|strong=\"G1299\"* to|strong=\"G4314\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 14, + "text": "Soldiers|strong=\"G4754\"* also|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* about|strong=\"G4314\"* us|strong=\"G3004\"*? What|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2249\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 15, + "text": "As|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G1510\"* in|strong=\"G1722\"* expectation|strong=\"G4328\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"* reasoned|strong=\"G1260\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* concerning|strong=\"G4012\"* John|strong=\"G2491\"*, whether|strong=\"G2532\"* perhaps|strong=\"G3379\"* he|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 16, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, “I|strong=\"G1473\"* indeed|strong=\"G2532\"* baptize you|strong=\"G5210\"* with|strong=\"G1722\"* water|strong=\"G5204\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* who|strong=\"G3739\"* is|strong=\"G1510\"* mightier|strong=\"G2478\"* than|strong=\"G2478\"* I|strong=\"G1473\"*, the|strong=\"G1722\"* strap of|strong=\"G4151\"* whose|strong=\"G3739\"* sandals|strong=\"G5266\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G2532\"* loosen. He|strong=\"G2532\"* will|strong=\"G1510\"* baptize you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"G1519\"* winnowing|strong=\"G4425\"* fan|strong=\"G4425\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1519\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* thoroughly|strong=\"G1245\"* cleanse his|strong=\"G1519\"* threshing floor, and|strong=\"G2532\"* will|strong=\"G2532\"* gather|strong=\"G4863\"* the|strong=\"G1722\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* his|strong=\"G1519\"* barn; but|strong=\"G1161\"* he|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* up|strong=\"G1519\"* the|strong=\"G1722\"* chaff with|strong=\"G1722\"* unquenchable fire|strong=\"G4442\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"G3767\"* with|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G2087\"* exhortations|strong=\"G3870\"* he|strong=\"G2532\"* preached|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"G1161\"* Herod|strong=\"G2264\"* the|strong=\"G2532\"* tetrarch|strong=\"G5076\"*,+ 3:19 a tetrarch is one of four governors of a province* being|strong=\"G2532\"* reproved|strong=\"G1651\"* by|strong=\"G5259\"* him|strong=\"G3588\"* for|strong=\"G4012\"* Herodias|strong=\"G2266\"*, his|strong=\"G3956\"* brother’s+ 3:19 TR reads “brother Philip’s” instead of “brother’s”* wife|strong=\"G1135\"*, and|strong=\"G2532\"* for|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* things|strong=\"G3956\"* which|strong=\"G3739\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* done|strong=\"G4160\"*," + }, + { + "verseNum": 20, + "text": "added|strong=\"G4369\"* this|strong=\"G3778\"* also|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, that|strong=\"G3588\"* he|strong=\"G2532\"* shut up|strong=\"G2623\"* John|strong=\"G2491\"* in|strong=\"G1722\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* all|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* were|strong=\"G3588\"* baptized, Jesus|strong=\"G2424\"* also|strong=\"G2532\"* had|strong=\"G2424\"* been|strong=\"G1096\"* baptized and|strong=\"G2532\"* was|strong=\"G1096\"* praying|strong=\"G4336\"*. The|strong=\"G1722\"* sky|strong=\"G3772\"* was|strong=\"G1096\"* opened," + }, + { + "verseNum": 22, + "text": "and|strong=\"G2532\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* descended|strong=\"G2597\"* in|strong=\"G1722\"* a|strong=\"G1096\"* bodily|strong=\"G4984\"* form|strong=\"G1491\"* like|strong=\"G5613\"* a|strong=\"G1096\"* dove|strong=\"G4058\"* on|strong=\"G1909\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* a|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, saying “You|strong=\"G4771\"* are|strong=\"G1510\"* my|strong=\"G1722\"* beloved Son|strong=\"G5207\"*. In|strong=\"G1722\"* you|strong=\"G4771\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* himself, when|strong=\"G5613\"* he|strong=\"G2532\"* began to|strong=\"G2532\"* teach, was|strong=\"G1510\"* about|strong=\"G5613\"* thirty|strong=\"G5144\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, being|strong=\"G1510\"* the|strong=\"G2532\"* son|strong=\"G5207\"* (as|strong=\"G5613\"* was|strong=\"G1510\"* supposed|strong=\"G3543\"*) of|strong=\"G5207\"* Joseph|strong=\"G2501\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Heli|strong=\"G2242\"*," + }, + { + "verseNum": 24, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Matthat|strong=\"G3158\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Levi|strong=\"G3017\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Melchi|strong=\"G3197\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jannai|strong=\"G2388\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*," + }, + { + "verseNum": 25, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattathias|strong=\"G3161\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Amos, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahum|strong=\"G3486\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Esli|strong=\"G2069\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Naggai|strong=\"G3477\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Maath|strong=\"G3092\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattathias|strong=\"G3161\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Semein|strong=\"G4584\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2448\"*," + }, + { + "verseNum": 27, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Joanan, the|strong=\"G3588\"* son of|strong=\"G3588\"* Rhesa|strong=\"G4488\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Zerubbabel|strong=\"G2216\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shealtiel|strong=\"G4528\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Neri|strong=\"G3518\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Melchi|strong=\"G3197\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Addi, the|strong=\"G3588\"* son of|strong=\"G3588\"* Cosam|strong=\"G2973\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Elmodam|strong=\"G1678\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Er|strong=\"G2262\"*," + }, + { + "verseNum": 29, + "text": "the|strong=\"G3588\"* son of|strong=\"G2424\"* Jose, the|strong=\"G3588\"* son of|strong=\"G2424\"* Eliezer|strong=\"G1663\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Jorim|strong=\"G2497\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Matthat|strong=\"G3158\"*, the|strong=\"G3588\"* son of|strong=\"G2424\"* Levi|strong=\"G3017\"*," + }, + { + "verseNum": 30, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Simeon|strong=\"G4826\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2455\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Joseph|strong=\"G2501\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jonan|strong=\"G2494\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Eliakim|strong=\"G1662\"*," + }, + { + "verseNum": 31, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Melea|strong=\"G3190\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Menan|strong=\"G3104\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mattatha|strong=\"G3160\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nathan|strong=\"G3481\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 32, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Jesse|strong=\"G2421\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Obed|strong=\"G5601\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Boaz|strong=\"G1003\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Salmon, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahshon|strong=\"G3476\"*," + }, + { + "verseNum": 33, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Amminadab, the|strong=\"G3588\"* son of|strong=\"G3588\"* Aram,+ 3:33 NU reads “Admin, the son of Arni” instead of “Aram”* the|strong=\"G3588\"* son of|strong=\"G3588\"* Hezron|strong=\"G2074\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Perez|strong=\"G5329\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Judah|strong=\"G2455\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Jacob|strong=\"G2384\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Isaac|strong=\"G2464\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Abraham, the|strong=\"G3588\"* son of|strong=\"G3588\"* Terah|strong=\"G2291\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Nahor|strong=\"G3493\"*," + }, + { + "verseNum": 35, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Serug, the|strong=\"G3588\"* son of|strong=\"G3588\"* Reu|strong=\"G4466\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Peleg|strong=\"G5317\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Eber, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shelah|strong=\"G4527\"*," + }, + { + "verseNum": 36, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Cainan|strong=\"G2536\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Arphaxad, the|strong=\"G3588\"* son of|strong=\"G3588\"* Shem|strong=\"G4590\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Noah|strong=\"G3575\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Lamech|strong=\"G2984\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"G3588\"* son of|strong=\"G3588\"* Methuselah|strong=\"G3103\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Enoch|strong=\"G1802\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Jared|strong=\"G2391\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Mahalaleel|strong=\"G3121\"*, the|strong=\"G3588\"* son of|strong=\"G3588\"* Cainan|strong=\"G2536\"*," + }, + { + "verseNum": 38, + "text": "the|strong=\"G3588\"* son of|strong=\"G2316\"* Enos|strong=\"G1800\"*, the|strong=\"G3588\"* son of|strong=\"G2316\"* Seth|strong=\"G4589\"*, the|strong=\"G3588\"* son of|strong=\"G2316\"* Adam, the|strong=\"G3588\"* son of|strong=\"G2316\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"*, full|strong=\"G4134\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, returned|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"* and|strong=\"G2532\"* was|strong=\"G3588\"* led|strong=\"G2424\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*" + }, + { + "verseNum": 2, + "text": "for|strong=\"G1722\"* forty|strong=\"G5062\"* days|strong=\"G2250\"*, being|strong=\"G2532\"* tempted|strong=\"G3985\"* by|strong=\"G1722\"* the|strong=\"G1722\"* devil|strong=\"G1228\"*. He|strong=\"G2532\"* ate|strong=\"G2068\"* nothing|strong=\"G3762\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*. Afterward, when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* completed, he|strong=\"G2532\"* was|strong=\"G3588\"* hungry|strong=\"G3983\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1161\"* devil|strong=\"G1228\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, command|strong=\"G3004\"* this|strong=\"G3778\"* stone|strong=\"G3037\"* to|strong=\"G2443\"* become|strong=\"G1096\"* bread.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, saying|strong=\"G3754\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w Man|strong=\"G3756\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w by|strong=\"G1909\"\\+w* bread \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w by|strong=\"G1909\"\\+w* \\+w every|strong=\"G2532\"\\+w* \\+w word|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w God|strong=\"G2532\"\\+w*.’”*+ 4:4 Deuteronomy 8:3*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G1722\"* devil, leading him|strong=\"G3588\"* up|strong=\"G2532\"* on|strong=\"G1722\"* a|strong=\"G2532\"* high|strong=\"G3956\"* mountain, showed|strong=\"G1166\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* kingdoms of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G3625\"* in|strong=\"G1722\"* a|strong=\"G2532\"* moment|strong=\"G4743\"* of|strong=\"G2532\"* time|strong=\"G5550\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* devil|strong=\"G1228\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* will|strong=\"G2309\"* give|strong=\"G1325\"* you|strong=\"G4771\"* all|strong=\"G2532\"* this|strong=\"G3778\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* their|strong=\"G1438\"* glory|strong=\"G1391\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G3739\"* been|strong=\"G2532\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* me|strong=\"G1325\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* whomever|strong=\"G3739\"* I|strong=\"G1473\"* want|strong=\"G2309\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"G1437\"* you|strong=\"G4771\"* therefore|strong=\"G3767\"* will|strong=\"G1510\"* worship|strong=\"G4352\"* before|strong=\"G1799\"* me|strong=\"G1473\"*, it|strong=\"G1437\"* will|strong=\"G1510\"* all|strong=\"G3956\"* be|strong=\"G1510\"* yours|strong=\"G4771\"*.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G2532\"\\+w* behind \\+w me|strong=\"G3004\"\\+w*, Satan! \\+w For|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w serve|strong=\"G3000\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w only|strong=\"G3441\"\\+w*.’”*+ 4:8 Deuteronomy 6:13*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* pinnacle|strong=\"G4419\"* of|strong=\"G5207\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, cast|strong=\"G2532\"* yourself|strong=\"G4572\"* down|strong=\"G2736\"* from|strong=\"G2532\"* here|strong=\"G1782\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"*," + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* answering, said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w tempt|strong=\"G1598\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*+ 4:12 Deuteronomy 6:16*" + }, + { + "verseNum": 13, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* had|strong=\"G2532\"* completed every|strong=\"G3956\"* temptation|strong=\"G3986\"*, he|strong=\"G2532\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"* until|strong=\"G2532\"* another|strong=\"G3588\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"* returned|strong=\"G5290\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* news|strong=\"G5345\"* about|strong=\"G4012\"* him|strong=\"G3588\"* spread|strong=\"G1831\"* through|strong=\"G1722\"* all|strong=\"G3650\"* the|strong=\"G1722\"* surrounding|strong=\"G4066\"* area." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* their|strong=\"G2532\"* synagogues|strong=\"G4864\"*, being|strong=\"G2532\"* glorified|strong=\"G1392\"* by|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Nazareth|strong=\"G3478\"*, where|strong=\"G3757\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* brought|strong=\"G2064\"* up|strong=\"G1519\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"*, as|strong=\"G1519\"* was|strong=\"G1510\"* his|strong=\"G1519\"* custom|strong=\"G1486\"*, into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"*, and|strong=\"G2532\"* stood|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* read." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* book|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"* Isaiah|strong=\"G2268\"* was|strong=\"G1510\"* handed|strong=\"G1929\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* opened the|strong=\"G2532\"* book|strong=\"G3588\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3757\"* it|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 18, + "text": "“\\+w The|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3739\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*,*" + }, + { + "verseNum": 19, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w proclaim|strong=\"G2784\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w acceptable|strong=\"G1184\"\\+w* \\+w year|strong=\"G1763\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*.”*+ 4:19 Isaiah 61:1-2*" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* closed|strong=\"G4428\"* the|strong=\"G1722\"* book|strong=\"G3588\"*, gave|strong=\"G2532\"* it|strong=\"G2532\"* back to|strong=\"G2532\"* the|strong=\"G1722\"* attendant|strong=\"G5257\"*, and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*. The|strong=\"G1722\"* eyes|strong=\"G3788\"* of|strong=\"G2532\"* all|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* were|strong=\"G1510\"* fastened on|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G4314\"* tell|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Today|strong=\"G4594\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w has|strong=\"G3778\"\\+w* been \\+w fulfilled|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w hearing|strong=\"G3775\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "All|strong=\"G3956\"* testified|strong=\"G3140\"* about|strong=\"G1909\"* him|strong=\"G3588\"* and|strong=\"G2532\"* wondered|strong=\"G2296\"* at|strong=\"G1909\"* the|strong=\"G2532\"* gracious|strong=\"G5485\"* words|strong=\"G3056\"* which|strong=\"G3588\"* proceeded|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G3956\"* mouth|strong=\"G4750\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* Joseph|strong=\"G2501\"*’s son|strong=\"G5207\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Doubtless \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w proverb|strong=\"G3850\"\\+w*, ‘\\+w Physician|strong=\"G2395\"\\+w*, \\+w heal|strong=\"G2323\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*! \\+w Whatever|strong=\"G3745\"\\+w* \\+w we|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard \\+w done|strong=\"G4160\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w do|strong=\"G4160\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hometown|strong=\"G3968\"\\+w*.’”*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Most certainly \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3762\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w acceptable|strong=\"G1184\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w hometown|strong=\"G3968\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w truly|strong=\"G1909\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w widows|strong=\"G5503\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Elijah|strong=\"G2243\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w shut|strong=\"G2808\"\\+w* \\+w up|strong=\"G2808\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w six|strong=\"G1803\"\\+w* \\+w months|strong=\"G3376\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w famine|strong=\"G3042\"\\+w* \\+w came|strong=\"G1096\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Elijah|strong=\"G2243\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Zarephath|strong=\"G4558\"\\+w*, \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* land \\+w of|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4606\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w widow|strong=\"G5503\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w There|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G1909\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Elisha|strong=\"G1666\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*, \\+w yet|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w Naaman|strong=\"G3497\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Syrian|strong=\"G4948\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* wrath|strong=\"G2372\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* as|strong=\"G1722\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G3618\"*, threw|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brow|strong=\"G3790\"* of|strong=\"G2532\"* the|strong=\"G2532\"* hill|strong=\"G3735\"* that|strong=\"G3739\"* their|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G3588\"* built|strong=\"G3618\"* on|strong=\"G1909\"*, that|strong=\"G3739\"* they|strong=\"G2532\"* might|strong=\"G2532\"* throw|strong=\"G1544\"* him|strong=\"G3588\"* off the|strong=\"G2532\"* cliff|strong=\"G2630\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"*, passing|strong=\"G1330\"* through|strong=\"G1223\"* the|strong=\"G1161\"* middle|strong=\"G3319\"* of|strong=\"G1223\"* them|strong=\"G1223\"*, went|strong=\"G4198\"* his|strong=\"G1223\"* way|strong=\"G4198\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* came|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, a|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* them|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* astonished|strong=\"G1605\"* at|strong=\"G1722\"* his|strong=\"G1909\"* teaching|strong=\"G1322\"*, for|strong=\"G3754\"* his|strong=\"G1909\"* word|strong=\"G3056\"* was|strong=\"G1510\"* with|strong=\"G1722\"* authority|strong=\"G1849\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* man who|strong=\"G3588\"* had|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* an|strong=\"G2192\"* unclean demon|strong=\"G1140\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*," + }, + { + "verseNum": 34, + "text": "saying, “Ah! what|strong=\"G5101\"* have|strong=\"G2532\"* we|strong=\"G2249\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"* of|strong=\"G2316\"* Nazareth|strong=\"G3479\"*? Have|strong=\"G2532\"* you|strong=\"G4771\"* come|strong=\"G2064\"* to|strong=\"G2532\"* destroy us|strong=\"G2249\"*? I|strong=\"G1473\"* know|strong=\"G1492\"* who|strong=\"G5101\"* you|strong=\"G4771\"* are|strong=\"G1510\"*: the|strong=\"G2532\"* Holy One|strong=\"G3588\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w Be|strong=\"G2532\"\\+w* silent \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*!” * When|strong=\"G2532\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* had|strong=\"G2424\"* thrown|strong=\"G4496\"* him|strong=\"G3588\"* down|strong=\"G4496\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* done him|strong=\"G3588\"* no|strong=\"G3367\"* harm." + }, + { + "verseNum": 36, + "text": "Amazement|strong=\"G2285\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G3004\"* together|strong=\"G1909\"*, one|strong=\"G3956\"* with|strong=\"G1722\"* another|strong=\"G3588\"*, saying|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G3588\"* this|strong=\"G3778\"* word|strong=\"G3056\"*? For|strong=\"G3754\"* with|strong=\"G1722\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* power|strong=\"G1411\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* the|strong=\"G1722\"* unclean spirits|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G1096\"* out|strong=\"G1831\"*!”" + }, + { + "verseNum": 37, + "text": "News about|strong=\"G4012\"* him|strong=\"G3588\"* went|strong=\"G2532\"* out|strong=\"G1607\"* into|strong=\"G1519\"* every|strong=\"G3956\"* place|strong=\"G5117\"* of|strong=\"G4012\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G2532\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Simon|strong=\"G4613\"*’s house|strong=\"G3614\"*. Simon|strong=\"G4613\"*’s mother-in-law|strong=\"G3994\"* was|strong=\"G1510\"* afflicted|strong=\"G4912\"* with|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* fever|strong=\"G4446\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* help|strong=\"G4012\"* her|strong=\"G1519\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* stood|strong=\"G2186\"* over|strong=\"G1883\"* her|strong=\"G1438\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* fever|strong=\"G4446\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* left her|strong=\"G1438\"*. Immediately|strong=\"G3916\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* served|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* the|strong=\"G3956\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* setting|strong=\"G1416\"*, all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* any|strong=\"G3956\"* sick|strong=\"G3956\"* with|strong=\"G4314\"* various|strong=\"G4164\"* diseases|strong=\"G3554\"* brought|strong=\"G1161\"* them|strong=\"G3588\"* to|strong=\"G4314\"* him|strong=\"G3588\"*; and|strong=\"G1161\"* he|strong=\"G1161\"* laid|strong=\"G2007\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* every|strong=\"G3956\"* one|strong=\"G1520\"* of|strong=\"G1520\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* healed|strong=\"G2323\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "Demons|strong=\"G1140\"* also|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G5207\"* many|strong=\"G4183\"*, crying|strong=\"G2905\"* out|strong=\"G1831\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*!” Rebuking|strong=\"G2008\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* them|strong=\"G3588\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* into|strong=\"G1519\"* an|strong=\"G2532\"* uninhabited place|strong=\"G5117\"* and|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* looked|strong=\"G2532\"* for|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* held|strong=\"G2722\"* on|strong=\"G1519\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* go|strong=\"G4198\"* away|strong=\"G1831\"* from|strong=\"G2064\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w preach|strong=\"G2097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w cities|strong=\"G4172\"\\+w* \\+w also|strong=\"G2532\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* reason \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* preaching|strong=\"G2784\"* in|strong=\"G1519\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* pressed|strong=\"G3793\"* on|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* heard the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* standing|strong=\"G2476\"* by|strong=\"G1722\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G3056\"* Gennesaret|strong=\"G1082\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* saw|strong=\"G3708\"* two|strong=\"G1417\"* boats|strong=\"G4143\"* standing|strong=\"G2476\"* by|strong=\"G3844\"* the|strong=\"G2532\"* lake|strong=\"G3041\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* fishermen had|strong=\"G2532\"* gone out|strong=\"G2532\"* of|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G3588\"* washing|strong=\"G4150\"* their|strong=\"G2532\"* nets|strong=\"G1350\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* one|strong=\"G1520\"* of|strong=\"G1093\"* the|strong=\"G1722\"* boats|strong=\"G4143\"*, which|strong=\"G3739\"* was|strong=\"G1510\"* Simon|strong=\"G4613\"*’s, and|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* put|strong=\"G1877\"* out|strong=\"G1877\"* a|strong=\"G1519\"* little|strong=\"G3641\"* from|strong=\"G3588\"* the|strong=\"G1722\"* land|strong=\"G1093\"*. He|strong=\"G1161\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G1161\"* taught|strong=\"G1321\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* from|strong=\"G3588\"* the|strong=\"G1722\"* boat|strong=\"G4143\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* finished|strong=\"G3973\"* speaking|strong=\"G2980\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Simon|strong=\"G4613\"*, “\\+w Put|strong=\"G1877\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* deep \\+w and|strong=\"G2532\"\\+w* \\+w let|strong=\"G5465\"\\+w* \\+w down|strong=\"G5465\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w nets|strong=\"G1350\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G5613\"\\+w* catch.”*" + }, + { + "verseNum": 5, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Master|strong=\"G1988\"*, we|strong=\"G2532\"* worked|strong=\"G2872\"* all|strong=\"G3650\"* night|strong=\"G3571\"* and|strong=\"G2532\"* caught|strong=\"G2983\"* nothing|strong=\"G3762\"*; but|strong=\"G1161\"* at|strong=\"G1909\"* your|strong=\"G3650\"* word|strong=\"G4487\"* I|strong=\"G2532\"* will|strong=\"G2532\"* let|strong=\"G5465\"* down|strong=\"G5465\"* the|strong=\"G2532\"* net|strong=\"G1350\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"*, they|strong=\"G2532\"* caught a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* net|strong=\"G1350\"* was|strong=\"G3588\"* breaking." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* beckoned|strong=\"G2656\"* to|strong=\"G2532\"* their|strong=\"G2532\"* partners|strong=\"G3353\"* in|strong=\"G1722\"* the|strong=\"G1722\"* other|strong=\"G2087\"* boat|strong=\"G4143\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* come|strong=\"G2064\"* and|strong=\"G2532\"* help|strong=\"G4815\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* filled|strong=\"G4130\"* both|strong=\"G2532\"* boats|strong=\"G4143\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* began to|strong=\"G2532\"* sink|strong=\"G1036\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* saw|strong=\"G3708\"* it|strong=\"G3754\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* at|strong=\"G1161\"* Jesus|strong=\"G2424\"*’ knees|strong=\"G1119\"*, saying|strong=\"G3004\"*, “Depart|strong=\"G1831\"* from|strong=\"G1831\"* me|strong=\"G1473\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G1510\"* sinful man, Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* amazed|strong=\"G2285\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3739\"* were|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, at|strong=\"G1909\"* the|strong=\"G2532\"* catch of|strong=\"G2532\"* fish|strong=\"G2486\"* which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* caught|strong=\"G4815\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* so|strong=\"G2532\"* also|strong=\"G2532\"* were|strong=\"G1510\"* James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, sons|strong=\"G5207\"* of|strong=\"G5207\"* Zebedee|strong=\"G2199\"*, who|strong=\"G3739\"* were|strong=\"G1510\"* partners|strong=\"G2844\"* with|strong=\"G4314\"* Simon|strong=\"G4613\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G2609\"* their|strong=\"G2532\"* boats|strong=\"G4143\"* to|strong=\"G2532\"* land|strong=\"G1093\"*, they|strong=\"G2532\"* left everything|strong=\"G3956\"*, and|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*, behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* man|strong=\"G1520\"* full|strong=\"G4134\"* of|strong=\"G2532\"* leprosy|strong=\"G3014\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* and|strong=\"G2532\"* begged|strong=\"G1189\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* want|strong=\"G2309\"* to|strong=\"G2532\"*, you|strong=\"G1437\"* can|strong=\"G1410\"* make|strong=\"G2511\"* me|strong=\"G1473\"* clean|strong=\"G2511\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* stretched|strong=\"G1614\"* out|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* touched him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* \\+w made|strong=\"G3004\"\\+w* \\+w clean|strong=\"G2511\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* him|strong=\"G3588\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, “\\+w But|strong=\"G2532\"\\+w* \\+w go|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G3367\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w yourself|strong=\"G4572\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priest|strong=\"G2409\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w offer|strong=\"G4374\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w cleansing|strong=\"G2512\"\\+w* \\+w according|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w commanded|strong=\"G3853\"\\+w*, \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* report|strong=\"G3056\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* spread|strong=\"G1330\"* much|strong=\"G4183\"* more|strong=\"G3123\"*, and|strong=\"G2532\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* came|strong=\"G4905\"* together|strong=\"G4905\"* to|strong=\"G2532\"* hear and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2323\"* by|strong=\"G2532\"* him|strong=\"G3588\"* of|strong=\"G4012\"* their|strong=\"G2532\"* infirmities." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* withdrew|strong=\"G5298\"* himself into|strong=\"G1722\"* the|strong=\"G1722\"* desert|strong=\"G2048\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*." + }, + { + "verseNum": 17, + "text": "On|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G1537\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"*; and|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G1510\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* teachers|strong=\"G3547\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3547\"* sitting|strong=\"G2521\"* by|strong=\"G1722\"* who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* village|strong=\"G2968\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*, Judea|strong=\"G2449\"*, and|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*. The|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G1722\"* him|strong=\"G3588\"* to|strong=\"G1519\"* heal|strong=\"G2390\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"G2400\"*, men|strong=\"G3739\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* paralyzed|strong=\"G3886\"* man|strong=\"G3739\"* on|strong=\"G1909\"* a|strong=\"G2532\"* cot, and|strong=\"G2532\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* bring|strong=\"G5342\"* him|strong=\"G3739\"* in|strong=\"G1909\"* to|strong=\"G2532\"* lay|strong=\"G5087\"* before|strong=\"G1799\"* Jesus|strong=\"G1510\"*." + }, + { + "verseNum": 19, + "text": "Not|strong=\"G3361\"* finding|strong=\"G2147\"* a|strong=\"G2532\"* way|strong=\"G3319\"* to|strong=\"G1519\"* bring|strong=\"G1533\"* him|strong=\"G3588\"* in|strong=\"G1519\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, they|strong=\"G2532\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* housetop|strong=\"G1430\"* and|strong=\"G2532\"* let|strong=\"G2524\"* him|strong=\"G3588\"* down|strong=\"G2524\"* through|strong=\"G1223\"* the|strong=\"G2532\"* tiles|strong=\"G2766\"* with|strong=\"G4862\"* his|strong=\"G1223\"* cot into|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* before|strong=\"G1715\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 20, + "text": "Seeing|strong=\"G3708\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Man, \\+w your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* began to|strong=\"G2532\"* reason|strong=\"G1260\"*, saying|strong=\"G3004\"*, “Who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* who|strong=\"G3739\"* speaks|strong=\"G2980\"* blasphemies? Who|strong=\"G3739\"* can|strong=\"G1410\"* forgive sins, but|strong=\"G2532\"* God|strong=\"G2316\"* alone|strong=\"G3441\"*?”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, perceiving|strong=\"G1921\"* their|strong=\"G1438\"* thoughts|strong=\"G1261\"*, answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w reasoning|strong=\"G1260\"\\+w* \\+w so|strong=\"G1161\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 23, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* sins \\+w are|strong=\"G1510\"\\+w* forgiven \\+w you|strong=\"G4771\"\\+w*,’ \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Arise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’? *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G1519\"\\+w* forgive sins,”* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* paralyzed|strong=\"G3886\"* man|strong=\"G1519\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2192\"\\+w* cot, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w house|strong=\"G3624\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Immediately|strong=\"G3916\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* before|strong=\"G1799\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* laying on|strong=\"G1909\"*, and|strong=\"G2532\"* departed to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 26, + "text": "Amazement|strong=\"G1611\"* took|strong=\"G2983\"* hold on|strong=\"G5401\"* all|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* fear|strong=\"G5401\"*, saying|strong=\"G3004\"*, “We|strong=\"G3754\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* strange things|strong=\"G3588\"* today|strong=\"G4594\"*.”" + }, + { + "verseNum": 27, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* a|strong=\"G2532\"* tax|strong=\"G5057\"* collector|strong=\"G5057\"* named|strong=\"G3686\"* Levi|strong=\"G3018\"* sitting|strong=\"G2521\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* office, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*!”*" + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* left|strong=\"G2641\"* everything|strong=\"G3956\"*, and|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* followed him|strong=\"G2532\"*." + }, + { + "verseNum": 29, + "text": "Levi|strong=\"G3018\"* made|strong=\"G4160\"* a|strong=\"G2532\"* great|strong=\"G3173\"* feast|strong=\"G1403\"* for|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3614\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* great|strong=\"G3173\"* crowd|strong=\"G3793\"* of|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* others|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* reclining|strong=\"G2621\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* murmured|strong=\"G1111\"* against|strong=\"G4314\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, saying|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3004\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"* with|strong=\"G3326\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners?”" + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* healthy \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w physician|strong=\"G2395\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sick|strong=\"G2560\"\\+w* \\+w do|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w I|strong=\"G2064\"\\+w* \\+w have|strong=\"G3756\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w but|strong=\"G1342\"\\+w* sinners, \\+w to|strong=\"G1519\"\\+w* \\+w repentance|strong=\"G3341\"\\+w*.” *" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Why do|strong=\"G4160\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* often|strong=\"G4437\"* fast|strong=\"G3522\"* and|strong=\"G2532\"* pray|strong=\"G1162\"*, likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, but|strong=\"G1161\"* yours|strong=\"G4674\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*?”" + }, + { + "verseNum": 34, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Can|strong=\"G1410\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* friends \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w bridegroom|strong=\"G3566\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2064\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* told|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"*. “\\+w No|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w puts|strong=\"G1911\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w garment|strong=\"G2440\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w garment|strong=\"G2440\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tear|strong=\"G4977\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w piece|strong=\"G1915\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w match|strong=\"G4856\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* puts \\+w new|strong=\"G3501\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w old|strong=\"G3820\"\\+w* wineskins, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w new|strong=\"G3501\"\\+w* \\+w wine|strong=\"G3631\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w burst|strong=\"G4486\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w spilled|strong=\"G1632\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* skins \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* destroyed. *" + }, + { + "verseNum": 38, + "text": "But \\+w new|strong=\"G2537\"\\+w* \\+w wine|strong=\"G3631\"\\+w* must \\+w be|strong=\"G1519\"\\+w* \\+w put|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w fresh|strong=\"G2537\"\\+w* wineskins, \\+w and|strong=\"G1519\"\\+w* both \\+w are|strong=\"G1519\"\\+w* preserved. *" + }, + { + "verseNum": 39, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w having|strong=\"G2532\"\\+w* \\+w drunk|strong=\"G4095\"\\+w* \\+w old|strong=\"G3820\"\\+w* wine immediately \\+w desires|strong=\"G2309\"\\+w* \\+w new|strong=\"G3501\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w old|strong=\"G3820\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w better|strong=\"G5543\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1207\"* Sabbath|strong=\"G4521\"* after|strong=\"G1161\"* the|strong=\"G1722\"* first|strong=\"G1207\"*, he|strong=\"G2532\"* was|strong=\"G1096\"* going|strong=\"G2532\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grain|strong=\"G4719\"* fields|strong=\"G4702\"*. His|strong=\"G1223\"* disciples|strong=\"G3101\"* plucked|strong=\"G5089\"* the|strong=\"G1722\"* heads|strong=\"G4719\"* of|strong=\"G1223\"* grain|strong=\"G4719\"* and|strong=\"G2532\"* ate|strong=\"G2068\"*, rubbing|strong=\"G5597\"* them|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3739\"* do|strong=\"G4160\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* to|strong=\"G3004\"* do|strong=\"G4160\"* on|strong=\"G1161\"* the|strong=\"G1161\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*?”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"*, answering them|strong=\"G3588\"*, said|strong=\"G3004\"*, “Haven’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* read \\+w what|strong=\"G3739\"\\+w* \\+w David|strong=\"G1138\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w how|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w house|strong=\"G3624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w show|strong=\"G2983\"\\+w* bread, \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w except|strong=\"G1487\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w priests|strong=\"G2409\"\\+w* \\+w alone|strong=\"G3441\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "It|strong=\"G2532\"* also|strong=\"G2532\"* happened|strong=\"G1096\"* on|strong=\"G1722\"* another|strong=\"G2087\"* Sabbath|strong=\"G4521\"* that|strong=\"G3588\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*. There|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1096\"* man|strong=\"G2087\"* there|strong=\"G1563\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* was|strong=\"G1510\"* withered|strong=\"G3584\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* watched|strong=\"G3906\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* see whether|strong=\"G1487\"* he|strong=\"G2532\"* would|strong=\"G2532\"* heal|strong=\"G2323\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* find|strong=\"G2147\"* an|strong=\"G2532\"* accusation|strong=\"G2723\"* against|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* knew|strong=\"G1492\"* their|strong=\"G2532\"* thoughts|strong=\"G1261\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* withered|strong=\"G3584\"* hand|strong=\"G5495\"*, “\\+w Rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w middle|strong=\"G3319\"\\+w*.”* He|strong=\"G2532\"* arose|strong=\"G1453\"* and|strong=\"G2532\"* stood|strong=\"G2476\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G5590\"\\+w* \\+w ask|strong=\"G1905\"\\+w* \\+w you|strong=\"G5210\"\\+w* something: \\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w harm|strong=\"G2554\"\\+w*? \\+w To|strong=\"G4314\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w a|strong=\"G1487\"\\+w* \\+w life|strong=\"G5590\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G4314\"\\+w* kill?”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* looked|strong=\"G4017\"* around|strong=\"G4017\"* at|strong=\"G1161\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G3956\"*, “\\+w Stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*.”* He|strong=\"G2532\"* did|strong=\"G4160\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* was|strong=\"G3588\"* restored as|strong=\"G1161\"* sound as|strong=\"G1161\"* the|strong=\"G2532\"* other|strong=\"G1161\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G4314\"* rage, and|strong=\"G2532\"* talked|strong=\"G1255\"* with|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"* about|strong=\"G4314\"* what|strong=\"G5101\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* continued|strong=\"G1096\"* all|strong=\"G2532\"* night|strong=\"G1273\"* in|strong=\"G1722\"* prayer|strong=\"G4335\"* to|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* it|strong=\"G2532\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, he|strong=\"G2532\"* called|strong=\"G4377\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* them|strong=\"G3588\"* he|strong=\"G2532\"* chose|strong=\"G1586\"* twelve|strong=\"G1427\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* named|strong=\"G3687\"* apostles:" + }, + { + "verseNum": 14, + "text": "Simon|strong=\"G4613\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* named|strong=\"G3687\"* Peter|strong=\"G4074\"*; Andrew, his|strong=\"G2532\"* brother; James|strong=\"G2385\"*; John|strong=\"G2491\"*; Philip|strong=\"G5376\"*; Bartholomew;" + }, + { + "verseNum": 15, + "text": "Matthew|strong=\"G3156\"*; Thomas|strong=\"G2381\"*; James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus; Simon|strong=\"G4613\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* Zealot|strong=\"G2208\"*;" + }, + { + "verseNum": 16, + "text": "Judas|strong=\"G2455\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* James|strong=\"G2385\"*; and|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G1096\"* traitor|strong=\"G4273\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* down|strong=\"G2597\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* a|strong=\"G2532\"* level|strong=\"G3977\"* place|strong=\"G5117\"*, with|strong=\"G3326\"* a|strong=\"G2532\"* crowd|strong=\"G3793\"* of|strong=\"G2532\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* number|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* from|strong=\"G2064\"* all|strong=\"G3956\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2532\"* coast|strong=\"G5117\"* of|strong=\"G2532\"* Tyre|strong=\"G5184\"* and|strong=\"G2532\"* Sidon|strong=\"G4605\"*, who|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G2532\"* hear him|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"* of|strong=\"G2532\"* their|strong=\"G2532\"* diseases|strong=\"G3554\"*," + }, + { + "verseNum": 18, + "text": "as|strong=\"G2532\"* well|strong=\"G2532\"* as|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* troubled|strong=\"G1776\"* by|strong=\"G2532\"* unclean spirits|strong=\"G4151\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* being|strong=\"G2532\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* touch him|strong=\"G3588\"*, for|strong=\"G3754\"* power|strong=\"G1411\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* healed|strong=\"G2390\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* to|strong=\"G1519\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*:" + }, + { + "verseNum": 21, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hunger|strong=\"G3983\"\\+w* \\+w now|strong=\"G3568\"\\+w*,*" + }, + { + "verseNum": 22, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* exclude \\+w and|strong=\"G2532\"\\+w* mock \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Rejoice|strong=\"G5463\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w leap|strong=\"G4640\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w joy|strong=\"G5463\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w same|strong=\"G1565\"\\+w* thing \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w But|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G3759\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w rich|strong=\"G4145\"\\+w*!*" + }, + { + "verseNum": 25, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* full \\+w now|strong=\"G3568\"\\+w*,*" + }, + { + "verseNum": 26, + "text": "\\+w Woe|strong=\"G3759\"\\+w*,*+ 6:26 TR adds “to you”* \\+w when|strong=\"G3752\"\\+w**+ 6:26 TR adds “all” * \\+w men|strong=\"G3956\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w well|strong=\"G2573\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w you|strong=\"G4771\"\\+w*,*" + }, + { + "verseNum": 27, + "text": "“\\+w But|strong=\"G3588\"\\+w* \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear: love \\+w your|strong=\"G4160\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G2573\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 28, + "text": "\\+w bless|strong=\"G2127\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w curse|strong=\"G2672\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G3588\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w mistreat|strong=\"G1908\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w To|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* strikes \\+w you|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cheek|strong=\"G4600\"\\+w*, \\+w offer|strong=\"G3930\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3361\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* takes away \\+w your|strong=\"G2532\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w withhold|strong=\"G2967\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w coat|strong=\"G2440\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* takes away \\+w your|strong=\"G4674\"\\+w* goods \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w back|strong=\"G1325\"\\+w* \\+w again|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 31, + "text": "“\\+w As|strong=\"G2531\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w like|strong=\"G2531\"\\+w* \\+w people|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w do|strong=\"G4160\"\\+w* exactly \\+w so|strong=\"G2443\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* love \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G4169\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* sinners love \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* love \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w what|strong=\"G4169\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* sinners \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lend|strong=\"G1155\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w hope|strong=\"G1679\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w what|strong=\"G3739\"\\+w* \\+w credit|strong=\"G5485\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Even|strong=\"G2532\"\\+w* sinners \\+w lend|strong=\"G1155\"\\+w* \\+w to|strong=\"G2443\"\\+w* sinners, \\+w to|strong=\"G2443\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w back|strong=\"G2983\"\\+w* \\+w as|strong=\"G2532\"\\+w* much. *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G2532\"\\+w* love \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w good|strong=\"G5543\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w lend|strong=\"G1155\"\\+w*, expecting \\+w nothing|strong=\"G3367\"\\+w* back; \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G4183\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Most|strong=\"G5310\"\\+w* \\+w High|strong=\"G5310\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w kind|strong=\"G5543\"\\+w* \\+w toward|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* unthankful \\+w and|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w*.*" + }, + { + "verseNum": 36, + "text": "“Therefore \\+w be|strong=\"G1096\"\\+w* \\+w merciful|strong=\"G3629\"\\+w*,*" + }, + { + "verseNum": 37, + "text": "Don’t \\+w judge|strong=\"G2919\"\\+w*,*" + }, + { + "verseNum": 38, + "text": "“\\+w Give|strong=\"G1325\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*: \\+w good|strong=\"G2570\"\\+w* \\+w measure|strong=\"G3358\"\\+w*, \\+w pressed|strong=\"G4085\"\\+w* \\+w down|strong=\"G4085\"\\+w*, \\+w shaken|strong=\"G4531\"\\+w* \\+w together|strong=\"G4531\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w running|strong=\"G5240\"\\+w* \\+w over|strong=\"G1519\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*+ 6:38 literally, into your bosom.* \\+w For|strong=\"G1063\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w measure|strong=\"G3358\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w measured|strong=\"G3354\"\\+w* \\+w back|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G1519\"* them|strong=\"G3004\"*. “\\+w Can|strong=\"G1410\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* \\+w guide|strong=\"G3594\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w*? Won’t \\+w they|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w fall|strong=\"G1706\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pit|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 40, + "text": "\\+w A|strong=\"G5613\"\\+w* \\+w disciple|strong=\"G3101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w above|strong=\"G5228\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w fully|strong=\"G2675\"\\+w* \\+w trained|strong=\"G2675\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w teacher|strong=\"G1320\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1722\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*, \\+w but|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? *" + }, + { + "verseNum": 42, + "text": "\\+w Or|strong=\"G2532\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother, ‘Brother, \\+w let|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1537\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*,’ \\+w when|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w yourself|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G1227\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w hypocrite|strong=\"G5273\"\\+w*! \\+w First|strong=\"G4413\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* beam \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w own|strong=\"G3788\"\\+w* \\+w eye|strong=\"G3788\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w see|strong=\"G1227\"\\+w* \\+w clearly|strong=\"G1227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w remove|strong=\"G1544\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w speck|strong=\"G2595\"\\+w* \\+w of|strong=\"G1537\"\\+w* chaff \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* brother’s \\+w eye|strong=\"G3788\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "“\\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G4160\"\\+w* \\+w produces|strong=\"G4160\"\\+w* rotten \\+w fruit|strong=\"G2590\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G1510\"\\+w* rotten \\+w tree|strong=\"G1186\"\\+w* \\+w that|strong=\"G4160\"\\+w* \\+w produces|strong=\"G4160\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w people|strong=\"G3761\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w figs|strong=\"G4810\"\\+w* \\+w from|strong=\"G1537\"\\+w* thorns, \\+w nor|strong=\"G3761\"\\+w* \\+w do|strong=\"G1063\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4816\"\\+w* \\+w grapes|strong=\"G4718\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w a|strong=\"G3756\"\\+w* bramble bush. *" + }, + { + "verseNum": 45, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w man|strong=\"G2588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w brings|strong=\"G4393\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w man|strong=\"G2588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w brings|strong=\"G4393\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w abundance|strong=\"G4051\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w his|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w speaks|strong=\"G2980\"\\+w*.*" + }, + { + "verseNum": 46, + "text": "“\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* don’t \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hears \\+w my|strong=\"G3956\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w show|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w building|strong=\"G3618\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w dug|strong=\"G4626\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* deep \\+w and|strong=\"G2532\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w foundation|strong=\"G2310\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w flood|strong=\"G4215\"\\+w* \\+w arose|strong=\"G1096\"\\+w*, \\+w the|strong=\"G2532\"\\+w* stream broke \\+w against|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w could|strong=\"G2480\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w shake|strong=\"G4531\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* founded \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* hears \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w built|strong=\"G3618\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w without|strong=\"G5565\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w foundation|strong=\"G2310\"\\+w*, \\+w against|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* stream broke, \\+w and|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w fell|strong=\"G4098\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ruin|strong=\"G4485\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G4137\"* he|strong=\"G3588\"* had|strong=\"G3588\"* finished|strong=\"G4137\"* speaking in|strong=\"G1519\"* the|strong=\"G1519\"* hearing of|strong=\"G3956\"* the|strong=\"G1519\"* people|strong=\"G2992\"*, he|strong=\"G3588\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"G2192\"* certain|strong=\"G5100\"* centurion|strong=\"G1543\"*’s|strong=\"G2192\"* servant|strong=\"G1401\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* dear|strong=\"G1784\"* to|strong=\"G3195\"* him|strong=\"G3739\"*, was|strong=\"G1510\"* sick|strong=\"G2560\"* and|strong=\"G1161\"* at|strong=\"G1161\"* the|strong=\"G1161\"* point|strong=\"G3195\"* of|strong=\"G1401\"* death." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* heard about|strong=\"G4012\"* Jesus|strong=\"G2424\"*, he|strong=\"G1161\"* sent|strong=\"G2424\"* to|strong=\"G4314\"* him|strong=\"G3588\"* elders|strong=\"G4245\"* of|strong=\"G4012\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, asking|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G4314\"* come|strong=\"G2064\"* and|strong=\"G1161\"* save|strong=\"G1295\"* his|strong=\"G4012\"* servant|strong=\"G1401\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G3854\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, they|strong=\"G1161\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* earnestly|strong=\"G4709\"*, saying|strong=\"G3004\"*, “He|strong=\"G1161\"* is|strong=\"G1510\"* worthy for|strong=\"G3754\"* you|strong=\"G3739\"* to|strong=\"G4314\"* do|strong=\"G3004\"* this|strong=\"G3778\"* for|strong=\"G3754\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* loves our|strong=\"G2532\"* nation|strong=\"G1484\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* built|strong=\"G3618\"* our|strong=\"G2532\"* synagogue|strong=\"G4864\"* for|strong=\"G1063\"* us|strong=\"G2249\"*.”" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G4198\"* with|strong=\"G4862\"* them|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1510\"* now|strong=\"G1161\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G5259\"* the|strong=\"G1161\"* house|strong=\"G3614\"*, the|strong=\"G1161\"* centurion|strong=\"G1543\"* sent|strong=\"G3992\"* friends|strong=\"G5384\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* trouble|strong=\"G4660\"* yourself, for|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* for|strong=\"G1063\"* you|strong=\"G3004\"* to|strong=\"G2443\"* come|strong=\"G1525\"* under|strong=\"G5259\"* my|strong=\"G1525\"* roof|strong=\"G4721\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* didn’t|strong=\"G3588\"* even|strong=\"G2532\"* think myself|strong=\"G1683\"* worthy to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"*; but|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* my|strong=\"G1473\"* servant|strong=\"G3816\"* will|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* also|strong=\"G2532\"* am|strong=\"G1510\"* a|strong=\"G2192\"* man|strong=\"G3778\"* placed under|strong=\"G5259\"* authority|strong=\"G1849\"*, having|strong=\"G2192\"* under|strong=\"G5259\"* myself|strong=\"G1683\"* soldiers|strong=\"G4757\"*. I|strong=\"G1473\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* one|strong=\"G3588\"*, ‘Go|strong=\"G4198\"*!’ and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G4198\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* another|strong=\"G3588\"*, ‘Come|strong=\"G2064\"*!’ and|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* my|strong=\"G1473\"* servant|strong=\"G1401\"*, ‘Do|strong=\"G4160\"* this|strong=\"G3778\"*,’ and|strong=\"G2532\"* he|strong=\"G2532\"* does|strong=\"G4160\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* marveled|strong=\"G2296\"* at|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* who|strong=\"G3588\"* followed him|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w such|strong=\"G5118\"\\+w* \\+w great|strong=\"G5118\"\\+w* \\+w faith|strong=\"G4102\"\\+w*, \\+w no|strong=\"G3761\"\\+w*, \\+w not|strong=\"G3761\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sent|strong=\"G3992\"*, returning|strong=\"G5290\"* to|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3624\"*, found|strong=\"G2147\"* that|strong=\"G3588\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* sick was|strong=\"G3588\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 11, + "text": "Soon|strong=\"G1722\"* afterwards|strong=\"G1722\"*, he|strong=\"G2532\"* went|strong=\"G4198\"* to|strong=\"G1519\"* a|strong=\"G1096\"* city|strong=\"G4172\"* called|strong=\"G2564\"* Nain|strong=\"G3484\"*. Many|strong=\"G4183\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, along|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, went|strong=\"G4198\"* with|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G2532\"* the|strong=\"G2532\"* gate|strong=\"G4439\"* of|strong=\"G5207\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, behold|strong=\"G2400\"*, one|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* dead|strong=\"G2348\"* was|strong=\"G1510\"* carried|strong=\"G2532\"* out|strong=\"G2532\"*, the|strong=\"G2532\"* only|strong=\"G3439\"* born+ 7:12 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”. * son|strong=\"G5207\"* of|strong=\"G5207\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G5613\"* widow|strong=\"G5503\"*. Many|strong=\"G2425\"* people|strong=\"G3793\"* of|strong=\"G5207\"* the|strong=\"G2532\"* city|strong=\"G4172\"* were|strong=\"G1510\"* with|strong=\"G4862\"* her|strong=\"G3708\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* had|strong=\"G2532\"* compassion|strong=\"G4697\"* on|strong=\"G1909\"* her|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G1438\"*, “Don’\\+w t|strong=\"G3588\"\\+w* cry.”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* came|strong=\"G4334\"* near|strong=\"G4334\"* and|strong=\"G2532\"* touched the|strong=\"G2532\"* coffin|strong=\"G4673\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* bearers stood|strong=\"G2476\"* still|strong=\"G2476\"*. He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Young|strong=\"G3495\"\\+w* \\+w man|strong=\"G3495\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*!”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dead|strong=\"G3498\"* sat|strong=\"G3498\"* up|strong=\"G1325\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 16, + "text": "Fear|strong=\"G5401\"* took|strong=\"G2983\"* hold|strong=\"G2249\"* of|strong=\"G2316\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “A|strong=\"G2532\"* great|strong=\"G3173\"* prophet|strong=\"G4396\"* has|strong=\"G2316\"* arisen|strong=\"G1453\"* among|strong=\"G1722\"* us|strong=\"G3004\"*!” and|strong=\"G2532\"*, “God|strong=\"G2316\"* has|strong=\"G2316\"* visited|strong=\"G1980\"* his|strong=\"G3956\"* people|strong=\"G2992\"*!”" + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* report|strong=\"G3056\"* went|strong=\"G1831\"* out|strong=\"G1831\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* of|strong=\"G4012\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G4012\"* John|strong=\"G2491\"* told him|strong=\"G3588\"* about|strong=\"G4012\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "John|strong=\"G2491\"*, calling|strong=\"G4341\"* to|strong=\"G4314\"* himself two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, sent|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G4314\"* Jesus|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* one|strong=\"G5100\"* who|strong=\"G3588\"* is|strong=\"G1510\"* coming|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G5100\"* we|strong=\"G2532\"* look|strong=\"G4328\"* for|strong=\"G4314\"* another|strong=\"G5100\"*?”" + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* men|strong=\"G3588\"* had|strong=\"G1510\"* come|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer has|strong=\"G1510\"* sent us|strong=\"G3004\"* to|strong=\"G4314\"* you|strong=\"G4771\"*, saying|strong=\"G3004\"*, ‘Are|strong=\"G1510\"* you|strong=\"G4771\"* he|strong=\"G1161\"* who|strong=\"G3588\"* comes|strong=\"G2064\"*, or|strong=\"G2228\"* should|strong=\"G3588\"* we|strong=\"G2249\"* look|strong=\"G4328\"* for|strong=\"G4314\"* another|strong=\"G3588\"*?’”" + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* hour|strong=\"G5610\"* he|strong=\"G2532\"* cured|strong=\"G2323\"* many|strong=\"G4183\"* of|strong=\"G4151\"* diseases|strong=\"G3554\"* and|strong=\"G2532\"* plagues|strong=\"G3148\"* and|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"*; and|strong=\"G2532\"* to|strong=\"G2532\"* many|strong=\"G4183\"* who|strong=\"G3588\"* were|strong=\"G3588\"* blind|strong=\"G5185\"* he|strong=\"G2532\"* gave|strong=\"G2532\"* sight|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3739\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* heard: \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w blind|strong=\"G5185\"\\+w* receive \\+w their|strong=\"G2532\"\\+w* sight, \\+w the|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w lepers|strong=\"G3015\"\\+w* \\+w are|strong=\"G3739\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w deaf|strong=\"G2974\"\\+w* hear, \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G3739\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w good|strong=\"G2097\"\\+w* \\+w news|strong=\"G2097\"\\+w* \\+w preached|strong=\"G2097\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3739\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* finds \\+w no|strong=\"G3361\"\\+w* occasion \\+w for|strong=\"G1722\"\\+w* \\+w stumbling|strong=\"G4624\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* John|strong=\"G2491\"*’s messengers had|strong=\"G3588\"* departed|strong=\"G1831\"*, he|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* the|strong=\"G1519\"* multitudes|strong=\"G3793\"* about|strong=\"G4012\"* John|strong=\"G2491\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w did|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w see|strong=\"G2300\"\\+w*? \\+w A|strong=\"G1519\"\\+w* \\+w reed|strong=\"G2563\"\\+w* \\+w shaken|strong=\"G4531\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G1519\"\\+w* wind? *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G2532\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w clothed|strong=\"G2441\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w soft|strong=\"G3120\"\\+w* \\+w clothing|strong=\"G2440\"\\+w*? \\+w Behold|strong=\"G2400\"\\+w*, \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gorgeously|strong=\"G1741\"\\+w* \\+w dressed|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w live|strong=\"G5225\"\\+w* \\+w delicately|strong=\"G5172\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w kings|strong=\"G3588\"\\+w*’ courts. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*? \\+w A|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*? \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* much \\+w more|strong=\"G2532\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w prophet|strong=\"G4396\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w it|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 28, + "text": "“\\+w For|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w born|strong=\"G1084\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w women|strong=\"G1135\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G1510\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G1722\"\\+w* Baptizer; \\+w yet|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "When|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* declared God|strong=\"G2316\"* to|strong=\"G2532\"* be|strong=\"G2532\"* just|strong=\"G2532\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* baptized with|strong=\"G2532\"* John|strong=\"G2491\"*’s baptism." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* rejected the|strong=\"G2532\"* counsel|strong=\"G1012\"* of|strong=\"G5259\"* God|strong=\"G2316\"*, not|strong=\"G3361\"* being|strong=\"G2532\"* baptized by|strong=\"G5259\"* him|strong=\"G3588\"* themselves|strong=\"G1438\"*." + }, + { + "verseNum": 31, + "text": "+ 7:31 TR adds “But the Lord said,”*“\\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*? \\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w like|strong=\"G3664\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplace \\+w and|strong=\"G2532\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2532\"\\+w* piped \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w dance|strong=\"G3738\"\\+w*. \\+w We|strong=\"G2532\"\\+w* mourned, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w*.’ *" + }, + { + "verseNum": 33, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w the|strong=\"G2532\"\\+w* Baptizer \\+w came|strong=\"G2064\"\\+w* \\+w neither|strong=\"G3366\"\\+w* \\+w eating|strong=\"G2068\"\\+w* bread \\+w nor|strong=\"G3366\"\\+w* \\+w drinking|strong=\"G4095\"\\+w* \\+w wine|strong=\"G3631\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w He|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*.’ *" + }, + { + "verseNum": 34, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G3708\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w a|strong=\"G2532\"\\+w* glutton \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drunkard|strong=\"G3630\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collectors|strong=\"G5057\"\\+w* \\+w and|strong=\"G2532\"\\+w* sinners!’ *" + }, + { + "verseNum": 35, + "text": "\\+w Wisdom|strong=\"G4678\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w by|strong=\"G1344\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w her|strong=\"G3956\"\\+w* \\+w children|strong=\"G5043\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "One|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* invited|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* with|strong=\"G3326\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Pharisee|strong=\"G5330\"*’s house|strong=\"G3624\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* at|strong=\"G1519\"* the|strong=\"G2532\"* table." + }, + { + "verseNum": 37, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* woman|strong=\"G1135\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* who|strong=\"G3588\"* was|strong=\"G1510\"* a|strong=\"G2532\"* sinner, when|strong=\"G2532\"* she|strong=\"G2532\"* knew|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* reclining|strong=\"G2621\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Pharisee|strong=\"G5330\"*’s house|strong=\"G3614\"*, brought|strong=\"G2865\"* an|strong=\"G2532\"* alabaster jar of|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 38, + "text": "Standing|strong=\"G2476\"* behind|strong=\"G3694\"* at|strong=\"G3844\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* weeping|strong=\"G2799\"*, she|strong=\"G2532\"* began to|strong=\"G2532\"* wet|strong=\"G1026\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G3844\"* her|strong=\"G3588\"* tears|strong=\"G1144\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* wiped|strong=\"G1591\"* them|strong=\"G3588\"* with|strong=\"G3844\"* the|strong=\"G2532\"* hair|strong=\"G2359\"* of|strong=\"G2532\"* her|strong=\"G3588\"* head|strong=\"G2776\"*, kissed|strong=\"G2705\"* his|strong=\"G2532\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* anointed them|strong=\"G3588\"* with|strong=\"G3844\"* the|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 39, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Pharisee|strong=\"G5330\"* who|strong=\"G5101\"* had|strong=\"G2532\"* invited|strong=\"G2564\"* him|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"*, if|strong=\"G1487\"* he|strong=\"G2532\"* were|strong=\"G1510\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"*, would|strong=\"G2532\"* have|strong=\"G2532\"* perceived|strong=\"G1097\"* who|strong=\"G5101\"* and|strong=\"G2532\"* what|strong=\"G5101\"* kind|strong=\"G4217\"* of|strong=\"G2532\"* woman|strong=\"G1135\"* this|strong=\"G3778\"* is|strong=\"G1510\"* who|strong=\"G5101\"* touches him|strong=\"G3588\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 40, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w something|strong=\"G5100\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 41, + "text": "“\\+w A|strong=\"G1510\"\\+w* \\+w certain|strong=\"G5100\"\\+w* lender \\+w had|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w debtors|strong=\"G5533\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w owed|strong=\"G3784\"\\+w* \\+w five|strong=\"G4001\"\\+w* \\+w hundred|strong=\"G4001\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*, \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w fifty|strong=\"G4004\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w When|strong=\"G3767\"\\+w* \\+w they|strong=\"G3767\"\\+w* couldn’t pay, \\+w he|strong=\"G3767\"\\+w* \\+w forgave|strong=\"G5483\"\\+w* \\+w them|strong=\"G4183\"\\+w* both. \\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G2192\"\\+w* \\+w them|strong=\"G4183\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w will|strong=\"G5101\"\\+w* love him \\+w most|strong=\"G4183\"\\+w*?”*" + }, + { + "verseNum": 43, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"*, “He|strong=\"G1161\"*, I|strong=\"G3739\"* suppose|strong=\"G5274\"*, to|strong=\"G3004\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* forgave|strong=\"G5483\"* the|strong=\"G1161\"* most|strong=\"G4183\"*.”" + }, + { + "verseNum": 44, + "text": "Turning|strong=\"G4762\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, he|strong=\"G2532\"* said|strong=\"G5346\"* to|strong=\"G1519\"* Simon|strong=\"G4613\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* see \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G1135\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w wet|strong=\"G1026\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w tears|strong=\"G1144\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w wiped|strong=\"G1591\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1325\"\\+w* head. *" + }, + { + "verseNum": 45, + "text": "\\+w You|strong=\"G3739\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w kiss|strong=\"G5370\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w since|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w time|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w has|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w ceased|strong=\"G1257\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w kiss|strong=\"G5370\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w You|strong=\"G3778\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* anoint \\+w my|strong=\"G1473\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w oil|strong=\"G1637\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w has|strong=\"G3778\"\\+w* anointed \\+w my|strong=\"G1473\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w with|strong=\"G3756\"\\+w* \\+w ointment|strong=\"G3464\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w Therefore|strong=\"G1161\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w her|strong=\"G3754\"\\+w* sins, \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w many|strong=\"G4183\"\\+w*, \\+w are|strong=\"G3588\"\\+w* forgiven, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G1161\"\\+w* loved \\+w much|strong=\"G4183\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w little|strong=\"G3641\"\\+w* \\+w is|strong=\"G3588\"\\+w* forgiven, loves \\+w little|strong=\"G3641\"\\+w*.” *" + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Your|strong=\"G3588\"\\+w* sins \\+w are|strong=\"G3588\"\\+w* forgiven.”*" + }, + { + "verseNum": 49, + "text": "Those|strong=\"G3588\"* who|strong=\"G3739\"* sat|strong=\"G3739\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* with|strong=\"G1722\"* him|strong=\"G3588\"* began to|strong=\"G2532\"* say|strong=\"G3004\"* to|strong=\"G2532\"* themselves|strong=\"G1438\"*, “Who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* who|strong=\"G3739\"* even|strong=\"G2532\"* forgives sins?”" + }, + { + "verseNum": 50, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* woman|strong=\"G1135\"*, “\\+w Your|strong=\"G4982\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w saved|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w Go|strong=\"G4198\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Soon|strong=\"G1722\"* afterwards|strong=\"G1722\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* about|strong=\"G2596\"* through|strong=\"G1722\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* villages|strong=\"G2968\"*, preaching|strong=\"G2784\"* and|strong=\"G2532\"* bringing the|strong=\"G1722\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom. With|strong=\"G1722\"* him|strong=\"G3588\"* were|strong=\"G3588\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* certain|strong=\"G5100\"* women|strong=\"G1135\"* who|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* healed|strong=\"G2323\"* of|strong=\"G4151\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* infirmities: Mary|strong=\"G3137\"* who|strong=\"G3739\"* was|strong=\"G1510\"* called|strong=\"G2564\"* Magdalene|strong=\"G3094\"*, from|strong=\"G2532\"* whom|strong=\"G3739\"* seven|strong=\"G2033\"* demons|strong=\"G1140\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* Joanna|strong=\"G2489\"*, the|strong=\"G2532\"* wife|strong=\"G1135\"* of|strong=\"G1537\"* Chuzas, Herod|strong=\"G2264\"*’s steward|strong=\"G2012\"*; Susanna|strong=\"G4677\"*; and|strong=\"G2532\"* many|strong=\"G4183\"* others|strong=\"G2087\"* who|strong=\"G3588\"* served|strong=\"G1247\"* them|strong=\"G3588\"*+ 8:3 TR reads “him” instead of “them”* from|strong=\"G1537\"* their|strong=\"G2532\"* possessions|strong=\"G5225\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* came|strong=\"G2532\"* together|strong=\"G4896\"* and|strong=\"G2532\"* people|strong=\"G3793\"* from|strong=\"G2532\"* every|strong=\"G2596\"* city|strong=\"G4172\"* were|strong=\"G3588\"* coming|strong=\"G4896\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* spoke|strong=\"G3004\"* by|strong=\"G1223\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*:" + }, + { + "verseNum": 5, + "text": "“\\+w The|strong=\"G1722\"\\+w* farmer \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sow|strong=\"G4687\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w seed|strong=\"G4703\"\\+w*. \\+w As|strong=\"G1722\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sowed|strong=\"G4687\"\\+w*, \\+w some|strong=\"G3739\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w along|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w road|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w trampled|strong=\"G2662\"\\+w* \\+w under|strong=\"G1722\"\\+w* \\+w foot|strong=\"G2662\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w Other|strong=\"G2087\"\\+w* seed \\+w fell|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rock|strong=\"G4073\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w soon|strong=\"G3361\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w grew|strong=\"G5453\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w withered|strong=\"G3583\"\\+w* \\+w away|strong=\"G3583\"\\+w*, \\+w because|strong=\"G1223\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w moisture|strong=\"G2429\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Other|strong=\"G2087\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w amid|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* thorns, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* thorns \\+w grew|strong=\"G4855\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* choked \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Other|strong=\"G2087\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w ground|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w grew|strong=\"G5453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w produced|strong=\"G4160\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w hundred|strong=\"G1542\"\\+w* \\+w times|strong=\"G1542\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w much|strong=\"G1542\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*.”* As|strong=\"G1519\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, “\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1519\"\\+w* hear, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear!”*" + }, + { + "verseNum": 9, + "text": "Then|strong=\"G1161\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* mean|strong=\"G1510\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w To|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mysteries|strong=\"G3466\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w but|strong=\"G1161\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w parables|strong=\"G3850\"\\+w*, \\+w that|strong=\"G2443\"\\+w* ‘seeing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w see|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* hearing \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w understand|strong=\"G4920\"\\+w*.’*+ 8:10 Isaiah 6:9*" + }, + { + "verseNum": 11, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w parable|strong=\"G3850\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w*: \\+w The|strong=\"G1161\"\\+w* \\+w seed|strong=\"G4703\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w along|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w road|strong=\"G3598\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear; \\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* takes away \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rock|strong=\"G4073\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* hear, \\+w receive|strong=\"G1209\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w joy|strong=\"G5479\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w root|strong=\"G4491\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w while|strong=\"G1722\"\\+w*, \\+w then|strong=\"G2532\"\\+w* fall \\+w away|strong=\"G3326\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w What|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* thorns, \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* heard, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w choked|strong=\"G4846\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w*, \\+w riches|strong=\"G4149\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w pleasures|strong=\"G2237\"\\+w* \\+w of|strong=\"G5259\"\\+w* life; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bring|strong=\"G5052\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w fruit|strong=\"G5052\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w maturity|strong=\"G5052\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Those|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w ground|strong=\"G1093\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w honest|strong=\"G2570\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, \\+w having|strong=\"G2532\"\\+w* heard \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w hold|strong=\"G2722\"\\+w* \\+w it|strong=\"G2532\"\\+w* tightly, \\+w and|strong=\"G2532\"\\+w* produce \\+w fruit|strong=\"G2592\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w*.*" + }, + { + "verseNum": 16, + "text": "“\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G3762\"\\+w* lit \\+w a|strong=\"G1909\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w covers|strong=\"G2572\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w with|strong=\"G1909\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w container|strong=\"G4632\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w under|strong=\"G5270\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w bed|strong=\"G2825\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G1909\"\\+w* stand, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w may|strong=\"G2443\"\\+w* see \\+w the|strong=\"G1161\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w revealed|strong=\"G5318\"\\+w*, \\+w nor|strong=\"G3761\"\\+w* anything \\+w secret|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5318\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w Be|strong=\"G2532\"\\+w* careful \\+w therefore|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear. \\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* doesn’t \\+w have|strong=\"G2192\"\\+w*, \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w thinks|strong=\"G1380\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "His|strong=\"G1223\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* brothers came|strong=\"G3854\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* could|strong=\"G1410\"* not|strong=\"G3756\"* come|strong=\"G3854\"* near|strong=\"G4314\"* him|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*." + }, + { + "verseNum": 20, + "text": "Some|strong=\"G3588\"* people|strong=\"G3588\"* told him|strong=\"G3588\"*, “Your|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* your|strong=\"G2532\"* brothers stand|strong=\"G2476\"* outside|strong=\"G1854\"*, desiring|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w mother|strong=\"G3384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers \\+w are|strong=\"G1510\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2250\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* a|strong=\"G1096\"* boat|strong=\"G4143\"*, himself|strong=\"G1438\"* and|strong=\"G2532\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Let|strong=\"G1096\"\\+w*’s \\+w go|strong=\"G1330\"\\+w* \\+w over|strong=\"G4008\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G4008\"\\+w* \\+w side|strong=\"G4008\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lake|strong=\"G3041\"\\+w*.”* So|strong=\"G2532\"* they|strong=\"G2532\"* launched out|strong=\"G2532\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* as|strong=\"G1519\"* they|strong=\"G2532\"* sailed|strong=\"G4126\"*, he|strong=\"G2532\"* fell|strong=\"G2597\"* asleep. A|strong=\"G2532\"* wind storm|strong=\"G2978\"* came|strong=\"G2597\"* down|strong=\"G2597\"* on|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* taking on|strong=\"G1519\"* dangerous amounts of|strong=\"G2532\"* water." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* awoke|strong=\"G1326\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Master|strong=\"G1988\"*, Master|strong=\"G1988\"*, we|strong=\"G2532\"* are|strong=\"G3588\"* dying!” He|strong=\"G2532\"* awoke|strong=\"G1326\"* and|strong=\"G2532\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* wind and|strong=\"G2532\"* the|strong=\"G2532\"* raging|strong=\"G2830\"* of|strong=\"G2532\"* the|strong=\"G2532\"* water|strong=\"G5204\"*; then|strong=\"G2532\"* they|strong=\"G2532\"* ceased|strong=\"G3973\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1096\"* calm|strong=\"G1055\"*.+ 8:24 See Psalms 107:29*" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Where|strong=\"G4226\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w*?”* Being|strong=\"G1510\"* afraid|strong=\"G5399\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* then|strong=\"G2532\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* commands|strong=\"G2004\"* even|strong=\"G2532\"* the|strong=\"G2532\"* winds and|strong=\"G2532\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* obey|strong=\"G5219\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* arrived|strong=\"G2668\"* at|strong=\"G1519\"* the|strong=\"G2532\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes, which|strong=\"G3588\"* is|strong=\"G1510\"* opposite Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G1831\"* stepped ashore|strong=\"G1831\"*, a|strong=\"G2192\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* city|strong=\"G4172\"* who|strong=\"G3588\"* had|strong=\"G2192\"* demons|strong=\"G1140\"* for|strong=\"G1909\"* a|strong=\"G2192\"* long|strong=\"G2425\"* time|strong=\"G5550\"* met|strong=\"G5221\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* wore|strong=\"G2192\"* no|strong=\"G3756\"* clothes|strong=\"G2440\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* live|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2192\"* house|strong=\"G3614\"*, but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tombs|strong=\"G3418\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"* and|strong=\"G2532\"* fell|strong=\"G4363\"* down|strong=\"G4363\"* before|strong=\"G4363\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G1473\"* have|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G5101\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, Jesus|strong=\"G2424\"*, you|strong=\"G4771\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*? I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"*, don’t|strong=\"G3588\"* torment me|strong=\"G1473\"*!”" + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* Jesus|strong=\"G1831\"* was|strong=\"G3588\"* commanding|strong=\"G3853\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* to|strong=\"G1519\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G5259\"* the|strong=\"G2532\"* man|strong=\"G1519\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"* had|strong=\"G2532\"* often|strong=\"G4183\"* seized|strong=\"G4884\"* the|strong=\"G2532\"* man|strong=\"G1519\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* kept|strong=\"G5442\"* under|strong=\"G5259\"* guard|strong=\"G5442\"* and|strong=\"G2532\"* bound|strong=\"G1195\"* with|strong=\"G2532\"* chains|strong=\"G1199\"* and|strong=\"G2532\"* fetters|strong=\"G3976\"*. Breaking the|strong=\"G2532\"* bonds|strong=\"G1199\"* apart, he|strong=\"G2532\"* was|strong=\"G3588\"* driven|strong=\"G1643\"* by|strong=\"G5259\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* into|strong=\"G1519\"* the|strong=\"G2532\"* desert|strong=\"G2048\"*." + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w name|strong=\"G3686\"\\+w*?”*" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* not|strong=\"G3361\"* command|strong=\"G2004\"* them|strong=\"G3588\"* to|strong=\"G1519\"* go|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* abyss." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* there|strong=\"G1563\"* was|strong=\"G1510\"* there|strong=\"G1563\"* a|strong=\"G2532\"* herd of|strong=\"G2532\"* many|strong=\"G2425\"* pigs|strong=\"G5519\"* feeding|strong=\"G1006\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* that|strong=\"G2443\"* he|strong=\"G2532\"* would|strong=\"G2532\"* allow|strong=\"G2010\"* them|strong=\"G3588\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* those|strong=\"G3588\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* allowed|strong=\"G2010\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"G2532\"* demons|strong=\"G1140\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G1519\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* pigs|strong=\"G5519\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* herd rushed|strong=\"G3729\"* down|strong=\"G2596\"* the|strong=\"G2532\"* steep|strong=\"G2911\"* bank|strong=\"G2911\"* into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* and|strong=\"G2532\"* were|strong=\"G3588\"* drowned." + }, + { + "verseNum": 34, + "text": "When|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fed|strong=\"G1006\"* them|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*, they|strong=\"G2532\"* fled|strong=\"G5343\"* and|strong=\"G2532\"* told it|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* country." + }, + { + "verseNum": 35, + "text": "People|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* see|strong=\"G3708\"* what|strong=\"G3739\"* had|strong=\"G2424\"* happened|strong=\"G1096\"*. They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* man|strong=\"G3739\"* from|strong=\"G3844\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* demons|strong=\"G1140\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, sitting|strong=\"G2521\"* at|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"*, clothed|strong=\"G2439\"* and|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G3708\"* right|strong=\"G4993\"* mind|strong=\"G4993\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 36, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G3708\"* it|strong=\"G1161\"* told them|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G1161\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been possessed by|strong=\"G3588\"* demons was|strong=\"G3588\"* healed|strong=\"G4982\"*." + }, + { + "verseNum": 37, + "text": "All|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* country|strong=\"G4066\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gadarenes asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1519\"* depart from|strong=\"G2532\"* them|strong=\"G3588\"*, for|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* much|strong=\"G3173\"* afraid. Then|strong=\"G2532\"* he|strong=\"G2532\"* entered|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* and|strong=\"G2532\"* returned|strong=\"G5290\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* man|strong=\"G3739\"* from|strong=\"G1831\"* whom|strong=\"G3739\"* the|strong=\"G1161\"* demons|strong=\"G1140\"* had|strong=\"G1510\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* begged|strong=\"G1189\"* him|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G1161\"* might go|strong=\"G1831\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G3004\"* sent him|strong=\"G3588\"* away|strong=\"G1831\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 39, + "text": "“\\+w Return|strong=\"G5290\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w declare|strong=\"G1334\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w great|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”* He|strong=\"G2532\"* went|strong=\"G2424\"* his|strong=\"G1519\"* way|strong=\"G2596\"*, proclaiming|strong=\"G2784\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* city|strong=\"G4172\"* what|strong=\"G3588\"* great|strong=\"G3745\"* things|strong=\"G3588\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"* for|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* returned|strong=\"G5290\"*, the|strong=\"G1722\"* multitude|strong=\"G3793\"* welcomed him|strong=\"G3588\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* all|strong=\"G3956\"* waiting|strong=\"G4328\"* for|strong=\"G1063\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 41, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G3739\"* named|strong=\"G3686\"* Jairus|strong=\"G2383\"* came|strong=\"G2064\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*. He|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G1519\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G1519\"* come|strong=\"G2064\"* into|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*," + }, + { + "verseNum": 42, + "text": "for|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* an|strong=\"G2532\"* only|strong=\"G3439\"* born+ 8:42 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* daughter|strong=\"G2364\"*, about|strong=\"G5613\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"* of|strong=\"G2532\"* age|strong=\"G2094\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G1510\"* dying. But|strong=\"G1161\"* as|strong=\"G5613\"* he|strong=\"G2532\"* went|strong=\"G2532\"*, the|strong=\"G1722\"* multitudes|strong=\"G3793\"* pressed|strong=\"G3793\"* against|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 43, + "text": "A|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* a|strong=\"G2532\"* flow of|strong=\"G2532\"* blood for|strong=\"G1722\"* twelve|strong=\"G1427\"* years|strong=\"G2094\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* spent|strong=\"G4321\"* all|strong=\"G3650\"* her|strong=\"G3588\"* living on|strong=\"G1722\"* physicians|strong=\"G2395\"* and|strong=\"G2532\"* could|strong=\"G2480\"* not|strong=\"G3756\"* be|strong=\"G1510\"* healed|strong=\"G2323\"* by|strong=\"G1722\"* any|strong=\"G3762\"*," + }, + { + "verseNum": 44, + "text": "came|strong=\"G4334\"* behind|strong=\"G3693\"* him|strong=\"G3588\"* and|strong=\"G2532\"* touched the|strong=\"G2532\"* fringe|strong=\"G2899\"*+ 8:44 or, tassel* of|strong=\"G2532\"* his|strong=\"G2532\"* cloak|strong=\"G2440\"*. Immediately|strong=\"G3916\"* the|strong=\"G2532\"* flow of|strong=\"G2532\"* her|strong=\"G3588\"* blood stopped|strong=\"G2476\"*." + }, + { + "verseNum": 45, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Who|strong=\"G5101\"\\+w* touched \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 46, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Someone|strong=\"G5100\"\\+w* \\+w did|strong=\"G1097\"\\+w* touch \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w perceived|strong=\"G1097\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w has|strong=\"G5100\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1411\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 47, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* hidden, she|strong=\"G2532\"* came|strong=\"G2064\"* trembling|strong=\"G5141\"*; and|strong=\"G2532\"* falling down|strong=\"G4363\"* before|strong=\"G1799\"* him|strong=\"G3588\"* declared|strong=\"G3754\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G1223\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* the|strong=\"G2532\"* reason|strong=\"G1223\"* why|strong=\"G1223\"* she|strong=\"G2532\"* had|strong=\"G2532\"* touched him|strong=\"G3588\"*, and|strong=\"G2532\"* how|strong=\"G5613\"* she|strong=\"G2532\"* was|strong=\"G3588\"* healed|strong=\"G2390\"* immediately|strong=\"G3916\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w Daughter|strong=\"G2364\"\\+w*, cheer \\+w up|strong=\"G1519\"\\+w*. \\+w Your|strong=\"G4982\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w made|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w well|strong=\"G4982\"\\+w*. \\+w Go|strong=\"G4198\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w peace|strong=\"G1515\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "While|strong=\"G2980\"* he|strong=\"G3754\"* still|strong=\"G2089\"* spoke|strong=\"G2980\"*, one|strong=\"G5100\"* from|strong=\"G3844\"* the|strong=\"G3588\"* ruler of|strong=\"G3844\"* the|strong=\"G3588\"* synagogue’s house came|strong=\"G2064\"*, saying|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Your|strong=\"G3588\"* daughter|strong=\"G2364\"* is|strong=\"G3588\"* dead|strong=\"G2348\"*. Don’t|strong=\"G3588\"* trouble|strong=\"G4660\"* the|strong=\"G3588\"* Teacher|strong=\"G1320\"*.”" + }, + { + "verseNum": 50, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* hearing it|strong=\"G2532\"*, answered him|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w Only|strong=\"G3440\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w healed|strong=\"G4982\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* allow anyone|strong=\"G5100\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"*, except|strong=\"G1487\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, James|strong=\"G2385\"*, the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* child|strong=\"G3816\"*, and|strong=\"G2532\"* her|strong=\"G1519\"* mother|strong=\"G3384\"*." + }, + { + "verseNum": 52, + "text": "All|strong=\"G3956\"* were|strong=\"G3588\"* weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G2875\"* her|strong=\"G1438\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w*. \\+w She|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* dead, \\+w but|strong=\"G1161\"\\+w* \\+w sleeping|strong=\"G2518\"\\+w*.”*" + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* were|strong=\"G2532\"* ridiculing him|strong=\"G2532\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* she|strong=\"G2532\"* was|strong=\"G2532\"* dead." + }, + { + "verseNum": 54, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* put them|strong=\"G3588\"* all|strong=\"G1161\"* outside, and|strong=\"G1161\"* taking|strong=\"G2902\"* her|strong=\"G3588\"* by|strong=\"G3004\"* the|strong=\"G1161\"* hand|strong=\"G5495\"*, he|strong=\"G1161\"* called|strong=\"G3004\"*, saying|strong=\"G3004\"*, “\\+w Child|strong=\"G3816\"\\+w*, \\+w arise|strong=\"G1453\"\\+w*!”*" + }, + { + "verseNum": 55, + "text": "Her|strong=\"G1325\"* spirit|strong=\"G4151\"* returned|strong=\"G1994\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1325\"* immediately|strong=\"G3916\"*. He|strong=\"G2532\"* commanded|strong=\"G1299\"* that|strong=\"G3588\"* something be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* her|strong=\"G1325\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 56, + "text": "Her|strong=\"G3588\"* parents|strong=\"G1118\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G2532\"* tell|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"* what|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1096\"* done|strong=\"G1096\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* called|strong=\"G4779\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*+ 9:1 TR reads “his twelve disciples” instead of “the twelve”* together|strong=\"G4779\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* power|strong=\"G1411\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* over|strong=\"G1909\"* all|strong=\"G3956\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* cure|strong=\"G2323\"* diseases|strong=\"G3554\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* sent|strong=\"G2316\"* them|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G2532\"* preach|strong=\"G2784\"* God|strong=\"G2316\"*’s Kingdom and|strong=\"G2532\"* to|strong=\"G2532\"* heal|strong=\"G2390\"* the|strong=\"G2532\"* sick." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3367\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w journey|strong=\"G3598\"\\+w*—\\+w no|strong=\"G3367\"\\+w* staffs, \\+w nor|strong=\"G3383\"\\+w* wallet, \\+w nor|strong=\"G3383\"\\+w* bread, \\+w nor|strong=\"G3383\"\\+w* money. Don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w tunics|strong=\"G5509\"\\+w* \\+w each|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, \\+w stay|strong=\"G3306\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w As|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w depart|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*, shake \\+w off|strong=\"G1831\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* villages|strong=\"G2968\"*, preaching|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* and|strong=\"G2532\"* healing|strong=\"G2323\"* everywhere|strong=\"G3837\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* Herod|strong=\"G2264\"* the|strong=\"G2532\"* tetrarch|strong=\"G5076\"* heard of|strong=\"G1537\"* all|strong=\"G3956\"* that|strong=\"G3754\"* was|strong=\"G1096\"* done|strong=\"G1096\"* by|strong=\"G1223\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* very|strong=\"G2532\"* perplexed|strong=\"G1280\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1096\"* said|strong=\"G3004\"* by|strong=\"G1223\"* some|strong=\"G5100\"* that|strong=\"G3754\"* John|strong=\"G2491\"* had|strong=\"G2532\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"G1161\"* by|strong=\"G5259\"* some|strong=\"G5100\"* that|strong=\"G3754\"* Elijah|strong=\"G2243\"* had|strong=\"G3588\"* appeared|strong=\"G5316\"*, and|strong=\"G1161\"* by|strong=\"G5259\"* others|strong=\"G3588\"* that|strong=\"G3754\"* one|strong=\"G5100\"* of|strong=\"G5259\"* the|strong=\"G1161\"* old prophets|strong=\"G4396\"* had|strong=\"G3588\"* risen again." + }, + { + "verseNum": 9, + "text": "Herod|strong=\"G2264\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* beheaded John|strong=\"G2491\"*, but|strong=\"G1161\"* who|strong=\"G3739\"* is|strong=\"G1510\"* this|strong=\"G3778\"* about|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* hear|strong=\"G5101\"* such|strong=\"G5108\"* things|strong=\"G3778\"*?” He|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3739\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* apostles, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* returned|strong=\"G5290\"*, told|strong=\"G1334\"* him|strong=\"G3588\"* what|strong=\"G3588\"* things|strong=\"G3588\"* they|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, perceiving|strong=\"G1097\"* it|strong=\"G2532\"*, followed him|strong=\"G3588\"*. He|strong=\"G2532\"* welcomed them|strong=\"G3588\"*, spoke|strong=\"G2980\"* to|strong=\"G2532\"* them|strong=\"G3588\"* of|strong=\"G4012\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Kingdom, and|strong=\"G2532\"* he|strong=\"G2532\"* cured|strong=\"G2390\"* those|strong=\"G3588\"* who|strong=\"G3588\"* needed|strong=\"G5532\"* healing|strong=\"G2390\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G1722\"* day|strong=\"G2250\"* began|strong=\"G1161\"* to|strong=\"G1519\"* wear away|strong=\"G4198\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* came|strong=\"G4334\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Send the|strong=\"G1722\"* multitude|strong=\"G3793\"* away|strong=\"G4198\"*, that|strong=\"G3754\"* they|strong=\"G2532\"* may|strong=\"G2532\"* go|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* surrounding|strong=\"G2945\"* villages|strong=\"G2968\"* and|strong=\"G2532\"* farms and|strong=\"G2532\"* lodge|strong=\"G2647\"* and|strong=\"G2532\"* get|strong=\"G2147\"* food, for|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* here|strong=\"G5602\"* in|strong=\"G1722\"* a|strong=\"G2532\"* deserted|strong=\"G2048\"* place|strong=\"G5117\"*.”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w something|strong=\"G4183\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* about|strong=\"G5616\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* did|strong=\"G4160\"* so|strong=\"G3779\"*, and|strong=\"G2532\"* made|strong=\"G4160\"* them|strong=\"G4160\"* all|strong=\"G2532\"* sit|strong=\"G2625\"* down|strong=\"G2625\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* five|strong=\"G4002\"* loaves and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G2486\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, he|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, broke|strong=\"G2622\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* set|strong=\"G3908\"* before|strong=\"G3908\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* ate|strong=\"G2068\"* and|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G5526\"*. They|strong=\"G2532\"* gathered up|strong=\"G2532\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* of|strong=\"G2532\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* that|strong=\"G3588\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G4052\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* praying|strong=\"G4336\"* alone|strong=\"G3441\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* near|strong=\"G2596\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w multitudes|strong=\"G3793\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G1161\"* answered|strong=\"G3004\"*, “‘John|strong=\"G2491\"* the|strong=\"G1161\"* Baptizer,’ but|strong=\"G1161\"* others|strong=\"G3588\"* say|strong=\"G3004\"*, ‘Elijah|strong=\"G2243\"*,’ and|strong=\"G1161\"* others|strong=\"G3588\"*, that|strong=\"G3754\"* one|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* old prophets|strong=\"G4396\"* has|strong=\"G5100\"* risen again.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*?”*" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* warned|strong=\"G2008\"* them|strong=\"G3588\"* and|strong=\"G1161\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G3004\"* tell|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G3004\"* no|strong=\"G3367\"* one|strong=\"G3367\"*," + }, + { + "verseNum": 22, + "text": "saying|strong=\"G3004\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* rejected \\+w by|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w elders|strong=\"G4245\"\\+w*, \\+w chief|strong=\"G2532\"\\+w* priests, \\+w and|strong=\"G2532\"\\+w* \\+w scribes|strong=\"G1122\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* killed, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w raised|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* all|strong=\"G3956\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w take|strong=\"G1161\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w*,*+ 9:23 TR, NU add “daily”* \\+w and|strong=\"G2532\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w it|strong=\"G1161\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2309\"\\+w* lose \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1752\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w it|strong=\"G1161\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w profit|strong=\"G5623\"\\+w* \\+w a|strong=\"G2228\"\\+w* \\+w man|strong=\"G5101\"\\+w* \\+w if|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w gains|strong=\"G2770\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G1161\"\\+w* loses \\+w or|strong=\"G2228\"\\+w* \\+w forfeits|strong=\"G2210\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* self? *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w*, \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w ashamed|strong=\"G1870\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* holy angels. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth: \\+w There|strong=\"G1161\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w here|strong=\"G1510\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3739\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.” *" + }, + { + "verseNum": 28, + "text": "About|strong=\"G5616\"* eight|strong=\"G3638\"* days|strong=\"G2250\"* after|strong=\"G3326\"* these|strong=\"G3778\"* sayings|strong=\"G3056\"*, he|strong=\"G2532\"* took|strong=\"G3880\"* with|strong=\"G3326\"* him|strong=\"G3588\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, and|strong=\"G2532\"* James|strong=\"G2385\"*, and|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* onto|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* to|strong=\"G1519\"* pray|strong=\"G4336\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1096\"* praying|strong=\"G4336\"*, the|strong=\"G1722\"* appearance|strong=\"G4383\"* of|strong=\"G2532\"* his|strong=\"G1722\"* face|strong=\"G4383\"* was|strong=\"G1096\"* altered|strong=\"G2087\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* clothing|strong=\"G2441\"* became|strong=\"G1096\"* white|strong=\"G3022\"* and|strong=\"G2532\"* dazzling." + }, + { + "verseNum": 30, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* men|strong=\"G1417\"* were|strong=\"G1510\"* talking|strong=\"G4814\"* with|strong=\"G2532\"* him|strong=\"G3708\"*, who|strong=\"G3748\"* were|strong=\"G1510\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* Elijah|strong=\"G2243\"*," + }, + { + "verseNum": 31, + "text": "who|strong=\"G3739\"* appeared|strong=\"G3708\"* in|strong=\"G1722\"* glory|strong=\"G1391\"* and|strong=\"G1391\"* spoke|strong=\"G3004\"* of|strong=\"G1391\"* his|strong=\"G1722\"* departure|strong=\"G1841\"*,+ 9:31 literally, “exodus”* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G3004\"* accomplish|strong=\"G4137\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* were|strong=\"G1510\"* heavy with|strong=\"G4862\"* sleep|strong=\"G5258\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* fully|strong=\"G1235\"* awake|strong=\"G1235\"*, they|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G3708\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* men|strong=\"G1417\"* who|strong=\"G3588\"* stood|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "As|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G1510\"* parting from|strong=\"G2532\"* him|strong=\"G3588\"*, Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, “Master|strong=\"G1988\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* good|strong=\"G2570\"* for|strong=\"G4314\"* us|strong=\"G3004\"* to|strong=\"G4314\"* be|strong=\"G1096\"* here|strong=\"G5602\"*. Let|strong=\"G1096\"*’s make|strong=\"G4160\"* three|strong=\"G5140\"* tents|strong=\"G4633\"*: one|strong=\"G1520\"* for|strong=\"G4314\"* you|strong=\"G4771\"*, one|strong=\"G1520\"* for|strong=\"G4314\"* Moses|strong=\"G3475\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* for|strong=\"G4314\"* Elijah|strong=\"G2243\"*,” not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3739\"* he|strong=\"G2532\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 34, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, a|strong=\"G1096\"* cloud|strong=\"G3507\"* came|strong=\"G1096\"* and|strong=\"G2532\"* overshadowed|strong=\"G1982\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* as|strong=\"G1519\"* they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*." + }, + { + "verseNum": 35, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*. Listen to|strong=\"G2532\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 36, + "text": "When|strong=\"G2532\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* came|strong=\"G1096\"*, Jesus|strong=\"G2424\"* was|strong=\"G1096\"* found|strong=\"G2147\"* alone|strong=\"G3441\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*, and|strong=\"G2532\"* told no|strong=\"G3762\"* one|strong=\"G3762\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* any|strong=\"G3762\"* of|strong=\"G2250\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2424\"* seen|strong=\"G3708\"*." + }, + { + "verseNum": 37, + "text": "On|strong=\"G1161\"* the|strong=\"G1161\"* next|strong=\"G1836\"* day|strong=\"G2250\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* come|strong=\"G1096\"* down|strong=\"G2718\"* from|strong=\"G2718\"* the|strong=\"G1161\"* mountain|strong=\"G3735\"*, a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* met|strong=\"G4876\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 38, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G5207\"* from|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"* to|strong=\"G2532\"* look|strong=\"G2400\"* at|strong=\"G1909\"* my|strong=\"G3708\"* son|strong=\"G5207\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* my|strong=\"G3708\"* only|strong=\"G3439\"* born+ 9:38 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* child|strong=\"G5207\"*." + }, + { + "verseNum": 39, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* spirit|strong=\"G4151\"* takes|strong=\"G2983\"* him|strong=\"G3708\"*, he|strong=\"G2532\"* suddenly|strong=\"G1810\"* cries|strong=\"G2896\"* out|strong=\"G2896\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* convulses him|strong=\"G3708\"* so|strong=\"G2532\"* that|strong=\"G2532\"* he|strong=\"G2532\"* foams; and|strong=\"G2532\"* it|strong=\"G2532\"* hardly|strong=\"G3425\"* departs from|strong=\"G2532\"* him|strong=\"G3708\"*, bruising|strong=\"G4937\"* him|strong=\"G3708\"* severely|strong=\"G4937\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"G2532\"* begged|strong=\"G1189\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"* to|strong=\"G2443\"* cast|strong=\"G1544\"* it|strong=\"G2532\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* couldn’t|strong=\"G3588\"*.”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Faithless \\+w and|strong=\"G2532\"\\+w* \\+w perverse|strong=\"G1294\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w how|strong=\"G2193\"\\+w* \\+w long|strong=\"G2193\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*? \\+w Bring|strong=\"G4317\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w here|strong=\"G5602\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "While|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* coming|strong=\"G4334\"*, the|strong=\"G2532\"* demon|strong=\"G1140\"* threw|strong=\"G4952\"* him|strong=\"G3588\"* down|strong=\"G4486\"* and|strong=\"G2532\"* convulsed him|strong=\"G3588\"* violently. But|strong=\"G1161\"* Jesus|strong=\"G2424\"* rebuked|strong=\"G2008\"* the|strong=\"G2532\"* unclean spirit|strong=\"G4151\"*, healed|strong=\"G2390\"* the|strong=\"G2532\"* boy|strong=\"G3816\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* him|strong=\"G3588\"* back to|strong=\"G2532\"* his|strong=\"G2532\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"G1161\"* were|strong=\"G3588\"* all|strong=\"G3956\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* the|strong=\"G3956\"* majesty|strong=\"G3168\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 44, + "text": "“\\+w Let|strong=\"G1063\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w sink|strong=\"G5087\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w ears|strong=\"G3775\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w be|strong=\"G3195\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w men|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand this|strong=\"G3778\"* saying|strong=\"G4487\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* concealed|strong=\"G3871\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* not|strong=\"G3361\"* perceive it|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* afraid|strong=\"G5399\"* to|strong=\"G2443\"* ask|strong=\"G2065\"* him|strong=\"G3588\"* about|strong=\"G4012\"* this|strong=\"G3778\"* saying|strong=\"G4487\"*." + }, + { + "verseNum": 46, + "text": "An|strong=\"G1722\"* argument|strong=\"G1261\"* arose|strong=\"G1525\"* among|strong=\"G1722\"* them|strong=\"G3588\"* about|strong=\"G1722\"* which|strong=\"G3588\"* of|strong=\"G1722\"* them|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G1722\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 47, + "text": "Jesus|strong=\"G2424\"*, perceiving|strong=\"G1492\"* the|strong=\"G1161\"* reasoning|strong=\"G1261\"* of|strong=\"G3844\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"*, took|strong=\"G1949\"* a|strong=\"G3708\"* little child|strong=\"G3813\"*, and|strong=\"G1161\"* set|strong=\"G2476\"* him|strong=\"G3588\"* by|strong=\"G3844\"* his|strong=\"G1438\"* side|strong=\"G3844\"*," + }, + { + "verseNum": 48, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w child|strong=\"G3813\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Whoever|strong=\"G3739\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w receives|strong=\"G1209\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w least|strong=\"G3398\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w all|strong=\"G3956\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"*, “Master|strong=\"G1988\"*, we|strong=\"G2249\"* saw|strong=\"G3708\"* someone|strong=\"G5100\"* casting|strong=\"G1544\"* out|strong=\"G1544\"* demons|strong=\"G1140\"* in|strong=\"G1722\"* your|strong=\"G2532\"* name|strong=\"G3686\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* forbade him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* follow|strong=\"G1161\"* with|strong=\"G3326\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3739\"*, “Don’t \\+w forbid|strong=\"G2967\"\\+w* \\+w him|strong=\"G3739\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w us|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 51, + "text": "It|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G1519\"* pass|strong=\"G1096\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* days|strong=\"G2250\"* were|strong=\"G3588\"* near|strong=\"G1519\"* that|strong=\"G3588\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1096\"* taken|strong=\"G1096\"* up|strong=\"G1519\"*, he|strong=\"G2532\"* intently set|strong=\"G2532\"* his|strong=\"G1519\"* face|strong=\"G4383\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*" + }, + { + "verseNum": 52, + "text": "and|strong=\"G2532\"* sent|strong=\"G2532\"* messengers before|strong=\"G4253\"* his|strong=\"G1519\"* face|strong=\"G4383\"*. They|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G5613\"* village|strong=\"G2968\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"*, so|strong=\"G2532\"* as|strong=\"G5613\"* to|strong=\"G1519\"* prepare|strong=\"G2090\"* for|strong=\"G1519\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 53, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G1209\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* traveling|strong=\"G4198\"* with|strong=\"G2532\"* his|strong=\"G1519\"* face|strong=\"G4383\"* set|strong=\"G2532\"* toward|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 54, + "text": "When|strong=\"G1161\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"*, James|strong=\"G2385\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, saw|strong=\"G3708\"* this|strong=\"G3588\"*, they|strong=\"G2532\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, do|strong=\"G2532\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G2532\"* command|strong=\"G3004\"* fire|strong=\"G4442\"* to|strong=\"G2532\"* come|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G2597\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* and|strong=\"G2532\"* destroy them|strong=\"G3588\"*, just|strong=\"G2532\"* as|strong=\"G1161\"* Elijah did|strong=\"G2532\"*?”" + }, + { + "verseNum": 55, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* turned|strong=\"G4762\"* and|strong=\"G1161\"* rebuked|strong=\"G2008\"* them, “You don’t know \\+w of|strong=\"G1161\"\\+w* \\+w what|strong=\"G1161\"\\+w* kind \\+w of|strong=\"G1161\"\\+w* spirit you are. *" + }, + { + "verseNum": 56, + "text": "\\+w For|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* Son \\+w of|strong=\"G2532\"\\+w* \\+w Man|strong=\"G2087\"\\+w* didn’t \\+w come|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* destroy men’s lives, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* save \\+w them|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "As|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “I|strong=\"G2532\"* want to|strong=\"G4314\"* follow|strong=\"G4198\"* you|strong=\"G4771\"* wherever|strong=\"G3699\"* you|strong=\"G4771\"* go|strong=\"G4198\"*, Lord|strong=\"G3588\"*.”" + }, + { + "verseNum": 58, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* foxes \\+w have|strong=\"G2192\"\\+w* \\+w holes|strong=\"G5454\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nests|strong=\"G2682\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3756\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w place|strong=\"G4226\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G2827\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w head|strong=\"G2776\"\\+w*.”*" + }, + { + "verseNum": 59, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* another|strong=\"G2087\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*!”*" + }, + { + "verseNum": 60, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Leave \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w bury|strong=\"G2290\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* go \\+w and|strong=\"G1161\"\\+w* announce \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 61, + "text": "Another|strong=\"G2087\"* also|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* want to|strong=\"G1519\"* follow|strong=\"G1161\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*, but|strong=\"G1161\"* first|strong=\"G4413\"* allow|strong=\"G2010\"* me|strong=\"G1473\"* to|strong=\"G1519\"* say|strong=\"G3004\"* good-bye to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* at|strong=\"G1519\"* my|strong=\"G1473\"* house|strong=\"G3624\"*.”" + }, + { + "verseNum": 62, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w having|strong=\"G2532\"\\+w* \\+w put|strong=\"G1911\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* plow \\+w and|strong=\"G2532\"\\+w* \\+w looking|strong=\"G2424\"\\+w* \\+w back|strong=\"G3694\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w fit|strong=\"G2111\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* also|strong=\"G2532\"* appointed seventy|strong=\"G1440\"* others|strong=\"G2087\"*, and|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* two|strong=\"G1417\"* by|strong=\"G2532\"* two|strong=\"G1417\"* ahead|strong=\"G4253\"* of|strong=\"G2532\"* him|strong=\"G3588\"*+ 10:1 literally, “before his face”* into|strong=\"G1519\"* every|strong=\"G3956\"* city|strong=\"G4172\"* and|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3757\"* he|strong=\"G2532\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"G3767\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w plentiful|strong=\"G4183\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w few|strong=\"G3641\"\\+w*. \\+w Pray|strong=\"G1189\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w send|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w laborers|strong=\"G2040\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G3708\"\\+w* \\+w ways|strong=\"G5217\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G5613\"\\+w* send \\+w you|strong=\"G5210\"\\+w* out \\+w as|strong=\"G5613\"\\+w* lambs \\+w among|strong=\"G1722\"\\+w* \\+w wolves|strong=\"G3074\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "Carry \\+w no|strong=\"G3361\"\\+w* purse, \\+w nor|strong=\"G2532\"\\+w* wallet, \\+w nor|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*. Greet \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1525\"\\+w*, \\+w first|strong=\"G4413\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w house|strong=\"G3624\"\\+w*.’ *" + }, + { + "verseNum": 6, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w your|strong=\"G1437\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w rest|strong=\"G1515\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w not|strong=\"G3361\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* return \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w same|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w eating|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinking|strong=\"G4095\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w give|strong=\"G3844\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G1537\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wages|strong=\"G3408\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G3327\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w Into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w set|strong=\"G3908\"\\+w* \\+w before|strong=\"G3908\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Heal|strong=\"G2323\"\\+w* \\+w the|strong=\"G1722\"\\+w* sick \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G2532\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* its \\+w streets|strong=\"G4113\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 11, + "text": "‘\\+w Even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dust|strong=\"G2868\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w clings|strong=\"G2853\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w us|strong=\"G1519\"\\+w*, \\+w we|strong=\"G2249\"\\+w* wipe \\+w off|strong=\"G1537\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G2532\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ *" + }, + { + "verseNum": 12, + "text": "\\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w it|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G1161\"\\+w* tolerable \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w city|strong=\"G4172\"\\+w*.*" + }, + { + "verseNum": 13, + "text": "“\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w Chorazin|strong=\"G5523\"\\+w*! \\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, Bethsaida! \\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mighty|strong=\"G1411\"\\+w* \\+w works|strong=\"G1411\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G1096\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w long|strong=\"G3819\"\\+w* \\+w ago|strong=\"G3819\"\\+w*, \\+w sitting|strong=\"G2521\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w sackcloth|strong=\"G4526\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ashes|strong=\"G4700\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2532\"\\+w* tolerable \\+w for|strong=\"G1722\"\\+w* \\+w Tyre|strong=\"G5184\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Sidon|strong=\"G4605\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w You|strong=\"G4771\"\\+w*, \\+w Capernaum|strong=\"G2584\"\\+w*, \\+w who|strong=\"G2532\"\\+w* \\+w are|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w brought|strong=\"G2532\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G2532\"\\+w* Hades. *+ 10:15 Hades is the lower realm of the dead, or Hell.*" + }, + { + "verseNum": 16, + "text": "\\+w Whoever|strong=\"G3588\"\\+w* listens \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* listens \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3588\"\\+w* rejects \\+w you|strong=\"G5210\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w* rejects \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "The|strong=\"G1722\"* seventy|strong=\"G1440\"* returned|strong=\"G5290\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, even|strong=\"G2532\"* the|strong=\"G1722\"* demons|strong=\"G1140\"* are|strong=\"G3588\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* us|strong=\"G3004\"* in|strong=\"G1722\"* your|strong=\"G2962\"* name|strong=\"G3686\"*!”" + }, + { + "verseNum": 18, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1161\"\\+w* \\+w saw|strong=\"G2334\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* having \\+w fallen|strong=\"G4098\"\\+w* \\+w like|strong=\"G5613\"\\+w* lightning \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w tread|strong=\"G3961\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w serpents|strong=\"G3789\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w scorpions|strong=\"G4651\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w enemy|strong=\"G2190\"\\+w*. \\+w Nothing|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w any|strong=\"G3956\"\\+w* \\+w way|strong=\"G3956\"\\+w* hurt \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w subject|strong=\"G5293\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w names|strong=\"G3686\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w written|strong=\"G1449\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* that|strong=\"G3754\"* same|strong=\"G3778\"* hour|strong=\"G5610\"*, Jesus|strong=\"G3004\"* rejoiced in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G1843\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w O|strong=\"G3962\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* hidden \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wise|strong=\"G4680\"\\+w* \\+w and|strong=\"G2532\"\\+w* understanding, \\+w and|strong=\"G2532\"\\+w* revealed \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3516\"\\+w*. \\+w Yes|strong=\"G3483\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w well-pleasing|strong=\"G2107\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w sight|strong=\"G1715\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Turning|strong=\"G4762\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w whomever|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w desires|strong=\"G1014\"\\+w* \\+w to|strong=\"G4314\"\\+w* reveal \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "Turning|strong=\"G4762\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* privately|strong=\"G2398\"*, “\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w which|strong=\"G3739\"\\+w* see \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* see, *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* kings \\+w desired|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’t \\+w see|strong=\"G3708\"\\+w* \\+w them|strong=\"G3739\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* hear, \\+w and|strong=\"G2532\"\\+w* didn’t hear \\+w them|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* lawyer|strong=\"G3544\"* stood|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* tested him|strong=\"G3708\"*, saying|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*? \\+w How|strong=\"G4459\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w read|strong=\"G1125\"\\+w* \\+w it|strong=\"G1161\"\\+w*?” *" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* love the|strong=\"G1722\"* Lord|strong=\"G2962\"* your|strong=\"G3650\"* God|strong=\"G2316\"* with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* heart|strong=\"G2588\"*, with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* soul|strong=\"G5590\"*, with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* strength|strong=\"G2479\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3650\"* your|strong=\"G3650\"* mind|strong=\"G1271\"*;+ 10:27 Deuteronomy 6:5* and|strong=\"G2532\"* your|strong=\"G3650\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 10:27 Leviticus 19:18*" + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G4160\"*, “\\+w You|strong=\"G3004\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w correctly|strong=\"G3723\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, desiring|strong=\"G2309\"* to|strong=\"G4314\"* justify|strong=\"G1344\"* himself|strong=\"G1438\"*, asked|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* my|strong=\"G1473\"* neighbor|strong=\"G4139\"*?”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w going|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w from|strong=\"G2597\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jericho|strong=\"G2410\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w fell|strong=\"G2597\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w stripped|strong=\"G1562\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w beat|strong=\"G4127\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* departed, \\+w leaving|strong=\"G2007\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w half|strong=\"G2253\"\\+w* \\+w dead|strong=\"G2253\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w By|strong=\"G1722\"\\+w* \\+w chance|strong=\"G4795\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w priest|strong=\"G2409\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w going|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w way|strong=\"G3598\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w passed|strong=\"G3588\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w side|strong=\"G3598\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w In|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w Levite|strong=\"G3019\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w passed|strong=\"G3588\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w on|strong=\"G2596\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* side. *" + }, + { + "verseNum": 33, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w Samaritan|strong=\"G4541\"\\+w*, \\+w as|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* traveled, \\+w came|strong=\"G2064\"\\+w* \\+w where|strong=\"G2596\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w*. \\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3708\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G2532\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, *" + }, + { + "verseNum": 34, + "text": "\\+w came|strong=\"G4334\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* bound \\+w up|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w wounds|strong=\"G5134\"\\+w*, \\+w pouring|strong=\"G2022\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w oil|strong=\"G1637\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wine|strong=\"G3631\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w set|strong=\"G1913\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w animal|strong=\"G2934\"\\+w*, \\+w brought|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w inn|strong=\"G3829\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w care|strong=\"G1959\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w On|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* next \\+w day|strong=\"G3588\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* departed, \\+w he|strong=\"G2532\"\\+w* \\+w took|strong=\"G2532\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w denarii|strong=\"G1220\"\\+w*, \\+w gave|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* host, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1544\"\\+w* \\+w care|strong=\"G1959\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w Whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w spend|strong=\"G4325\"\\+w* \\+w beyond|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* repay \\+w you|strong=\"G4771\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w return|strong=\"G1880\"\\+w*.’ *" + }, + { + "verseNum": 36, + "text": "\\+w Now|strong=\"G1096\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w seemed|strong=\"G1380\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w neighbor|strong=\"G4139\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w fell|strong=\"G1096\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*?”*" + }, + { + "verseNum": 37, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* showed|strong=\"G4160\"* mercy|strong=\"G1656\"* on|strong=\"G4198\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 38, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1722\"* their|strong=\"G1438\"* way|strong=\"G4198\"*, he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* village|strong=\"G2968\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Martha|strong=\"G3136\"* received|strong=\"G5264\"* him|strong=\"G3588\"* into|strong=\"G1519\"* her|strong=\"G1438\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 39, + "text": "She|strong=\"G2532\"* had|strong=\"G2424\"* a|strong=\"G2532\"* sister called|strong=\"G2564\"* Mary|strong=\"G3137\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* sat|strong=\"G3869\"* at|strong=\"G4314\"* Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* heard his|strong=\"G2532\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* Martha|strong=\"G3136\"* was|strong=\"G3588\"* distracted|strong=\"G4049\"* with|strong=\"G4012\"* much|strong=\"G4183\"* serving|strong=\"G1247\"*, and|strong=\"G1161\"* she|strong=\"G1161\"* came|strong=\"G2186\"* up|strong=\"G2186\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* you|strong=\"G4771\"* care|strong=\"G3199\"* that|strong=\"G3754\"* my|strong=\"G1473\"* sister left|strong=\"G2641\"* me|strong=\"G1473\"* to|strong=\"G2443\"* serve|strong=\"G1247\"* alone|strong=\"G3441\"*? Ask|strong=\"G3004\"* her|strong=\"G3754\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* help|strong=\"G4878\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Martha|strong=\"G3136\"\\+w*, \\+w Martha|strong=\"G3136\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w troubled|strong=\"G2350\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 42, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w needed|strong=\"G5532\"\\+w*. \\+w Mary|strong=\"G3137\"\\+w* \\+w has|strong=\"G3748\"\\+w* \\+w chosen|strong=\"G1586\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w good|strong=\"G3756\"\\+w* \\+w part|strong=\"G3310\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* taken away \\+w from|strong=\"G3756\"\\+w* \\+w her|strong=\"G3137\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* finished|strong=\"G1096\"* praying|strong=\"G4336\"* in|strong=\"G1722\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* place|strong=\"G5117\"*, one|strong=\"G5100\"* of|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, teach|strong=\"G1321\"* us|strong=\"G3004\"* to|strong=\"G4314\"* pray|strong=\"G4336\"*, just|strong=\"G2531\"* as|strong=\"G5613\"* John|strong=\"G2491\"* also|strong=\"G2532\"* taught|strong=\"G1321\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*.”" + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w pray|strong=\"G4336\"\\+w*, \\+w say|strong=\"G3004\"\\+w*,*" + }, + { + "verseNum": 3, + "text": "\\+w Give|strong=\"G1325\"\\+w* \\+w us|strong=\"G1325\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w our|strong=\"G2596\"\\+w* \\+w daily|strong=\"G2250\"\\+w* bread.*" + }, + { + "verseNum": 4, + "text": "Forgive \\+w us|strong=\"G1519\"\\+w* \\+w our|strong=\"G2532\"\\+w* sins,*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*, “\\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w at|strong=\"G4314\"\\+w* \\+w midnight|strong=\"G3317\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Friend|strong=\"G5384\"\\+w*, \\+w lend|strong=\"G5531\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5140\"\\+w* loaves \\+w of|strong=\"G1537\"\\+w* bread, *" + }, + { + "verseNum": 6, + "text": "\\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w come|strong=\"G3854\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w journey|strong=\"G3598\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3756\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w set|strong=\"G3908\"\\+w* \\+w before|strong=\"G4314\"\\+w* \\+w him|strong=\"G3739\"\\+w*,’ *" + }, + { + "verseNum": 7, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w within|strong=\"G2081\"\\+w* \\+w will|strong=\"G1510\"\\+w* answer \\+w and|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w bother|strong=\"G2873\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w shut|strong=\"G2808\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w children|strong=\"G3813\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w bed|strong=\"G2845\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*’? *" + }, + { + "verseNum": 8, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w although|strong=\"G5210\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w his|strong=\"G1223\"\\+w* \\+w friend|strong=\"G5384\"\\+w*, \\+w yet|strong=\"G2532\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w his|strong=\"G1223\"\\+w* persistence, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w get|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w needs|strong=\"G5535\"\\+w*.*" + }, + { + "verseNum": 9, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, keep \\+w asking|strong=\"G3004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Keep \\+w seeking|strong=\"G2212\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w*. Keep \\+w knocking|strong=\"G2925\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* asks \\+w receives|strong=\"G2983\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w finds|strong=\"G2147\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knocks|strong=\"G2925\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* opened.*" + }, + { + "verseNum": 11, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* asks \\+w for|strong=\"G1161\"\\+w* bread, \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w stone|strong=\"G3037\"\\+w*? \\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w he|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w snake|strong=\"G3789\"\\+w* \\+w instead|strong=\"G1161\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w fish|strong=\"G2486\"\\+w*, \\+w will|strong=\"G5101\"\\+w* \\+w he|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 12, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w if|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* asks \\+w for|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w egg|strong=\"G5609\"\\+w*, \\+w he|strong=\"G2532\"\\+w* won’t \\+w give|strong=\"G1929\"\\+w* \\+w him|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w scorpion|strong=\"G4651\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w being|strong=\"G5225\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w gifts|strong=\"G1390\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G3962\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w heavenly|strong=\"G3772\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* ask \\+w him|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* casting|strong=\"G1544\"* out|strong=\"G1831\"* a|strong=\"G1096\"* demon|strong=\"G1140\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* mute|strong=\"G2974\"*. When|strong=\"G1161\"* the|strong=\"G2532\"* demon|strong=\"G1140\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, the|strong=\"G2532\"* mute|strong=\"G2974\"* man|strong=\"G2974\"* spoke|strong=\"G2980\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* marveled|strong=\"G2296\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G1161\"* casts|strong=\"G1544\"* out|strong=\"G1537\"* demons|strong=\"G1140\"* by|strong=\"G1722\"* Beelzebul, the|strong=\"G1722\"* prince of|strong=\"G1537\"* the|strong=\"G1722\"* demons|strong=\"G1140\"*.”" + }, + { + "verseNum": 16, + "text": "Others|strong=\"G2087\"*, testing|strong=\"G3985\"* him|strong=\"G1537\"*, sought|strong=\"G2212\"* from|strong=\"G1537\"* him|strong=\"G1537\"* a|strong=\"G1161\"* sign|strong=\"G4592\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, knowing|strong=\"G1492\"* their|strong=\"G1438\"* thoughts|strong=\"G1270\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Every|strong=\"G3956\"\\+w* kingdom \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w brought|strong=\"G1161\"\\+w* \\+w to|strong=\"G2532\"\\+w* desolation. \\+w A|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w falls|strong=\"G4098\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w divided|strong=\"G1266\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* kingdom \\+w stand|strong=\"G2476\"\\+w*? \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w by|strong=\"G1722\"\\+w* Beelzebul. *" + }, + { + "verseNum": 19, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w by|strong=\"G1223\"\\+w* Beelzebul, \\+w by|strong=\"G1223\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*? \\+w Therefore|strong=\"G1223\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w judges|strong=\"G2923\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w finger|strong=\"G1147\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w has|strong=\"G2316\"\\+w* \\+w come|strong=\"G5348\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 21, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w strong|strong=\"G2478\"\\+w* \\+w man|strong=\"G2478\"\\+w*, \\+w fully|strong=\"G2528\"\\+w* \\+w armed|strong=\"G2528\"\\+w*, \\+w guards|strong=\"G5442\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* dwelling, \\+w his|strong=\"G1438\"\\+w* goods \\+w are|strong=\"G1510\"\\+w* \\+w safe|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w someone|strong=\"G3739\"\\+w* \\+w stronger|strong=\"G2478\"\\+w* \\+w attacks|strong=\"G1904\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* takes \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w his|strong=\"G1909\"\\+w* whole \\+w armor|strong=\"G3833\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w trusted|strong=\"G3982\"\\+w*, \\+w and|strong=\"G2532\"\\+w* divides \\+w his|strong=\"G1909\"\\+w* \\+w plunder|strong=\"G4661\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w scatters|strong=\"G4650\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "\\+w The|strong=\"G2532\"\\+w* unclean \\+w spirit|strong=\"G4151\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w gone|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w man|strong=\"G3361\"\\+w*, \\+w passes|strong=\"G1330\"\\+w* \\+w through|strong=\"G1223\"\\+w* dry \\+w places|strong=\"G5117\"\\+w*, \\+w seeking|strong=\"G2212\"\\+w* rest; \\+w and|strong=\"G2532\"\\+w* \\+w finding|strong=\"G2147\"\\+w* \\+w none|strong=\"G3361\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w says|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w turn|strong=\"G5290\"\\+w* \\+w back|strong=\"G5290\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G2212\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w*.’ *" + }, + { + "verseNum": 25, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* returns, \\+w he|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w swept|strong=\"G4563\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w order|strong=\"G2885\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w takes|strong=\"G3880\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w spirits|strong=\"G4151\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w there|strong=\"G1563\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* state \\+w of|strong=\"G4151\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w man|strong=\"G4413\"\\+w* \\+w becomes|strong=\"G1096\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "It|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G2532\"* pass|strong=\"G1096\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* her|strong=\"G1869\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Blessed|strong=\"G3107\"* is|strong=\"G3588\"* the|strong=\"G1722\"* womb|strong=\"G2836\"* that|strong=\"G3739\"* bore you|strong=\"G4771\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* breasts|strong=\"G3149\"* which|strong=\"G3739\"* nursed|strong=\"G2337\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w On|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w contrary|strong=\"G2316\"\\+w*, \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* hear \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5442\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* were|strong=\"G1510\"* gathering|strong=\"G3793\"* together|strong=\"G1865\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. \\+w It|strong=\"G2532\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w*. \\+w No|strong=\"G3756\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w the|strong=\"G2532\"\\+w* prophet. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w became|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w sign|strong=\"G4592\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Ninevites|strong=\"G3536\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w The|strong=\"G1722\"\\+w* Queen \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w South|strong=\"G3558\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ends|strong=\"G4009\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* hear \\+w the|strong=\"G1722\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w one|strong=\"G1438\"\\+w* \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w The|strong=\"G1722\"\\+w* \\+w men|strong=\"G3778\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Nineveh|strong=\"G3536\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w stand|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repented|strong=\"G3340\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w preaching|strong=\"G2782\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w one|strong=\"G1438\"\\+w* \\+w greater|strong=\"G4183\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w Jonah|strong=\"G2495\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*.*" + }, + { + "verseNum": 33, + "text": "“\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w when|strong=\"G5259\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G3762\"\\+w* lit \\+w a|strong=\"G1519\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w puts|strong=\"G5087\"\\+w* \\+w it|strong=\"G5087\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w cellar|strong=\"G2926\"\\+w* \\+w or|strong=\"G3761\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w basket|strong=\"G3426\"\\+w*, \\+w but|strong=\"G3762\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w a|strong=\"G1519\"\\+w* stand, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w come|strong=\"G1531\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w may|strong=\"G2443\"\\+w* see \\+w the|strong=\"G1519\"\\+w* \\+w light|strong=\"G5338\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w*. \\+w Therefore|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w light|strong=\"G3088\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*, \\+w your|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4652\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w see|strong=\"G4648\"\\+w* whether \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w your|strong=\"G3650\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G5100\"\\+w* \\+w light|strong=\"G5461\"\\+w*, \\+w having|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w part|strong=\"G3313\"\\+w* \\+w dark|strong=\"G4652\"\\+w*, \\+w it|strong=\"G1487\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w wholly|strong=\"G3650\"\\+w* \\+w full|strong=\"G5460\"\\+w* \\+w of|strong=\"G5100\"\\+w* \\+w light|strong=\"G5461\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w lamp|strong=\"G3088\"\\+w* \\+w with|strong=\"G2192\"\\+w* \\+w its|strong=\"G3752\"\\+w* \\+w bright|strong=\"G5460\"\\+w* shining gives \\+w you|strong=\"G4771\"\\+w* \\+w light|strong=\"G5461\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* as|strong=\"G1722\"* he|strong=\"G1161\"* spoke|strong=\"G2980\"*, a|strong=\"G1722\"* certain Pharisee|strong=\"G5330\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1722\"* dine with|strong=\"G1722\"* him|strong=\"G3588\"*. He|strong=\"G1161\"* went|strong=\"G1525\"* in|strong=\"G1722\"* and|strong=\"G1161\"* sat at|strong=\"G1722\"* the|strong=\"G1722\"* table." + }, + { + "verseNum": 38, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* Pharisee|strong=\"G5330\"* saw|strong=\"G3708\"* it|strong=\"G3754\"*, he|strong=\"G1161\"* marveled|strong=\"G2296\"* that|strong=\"G3754\"* he|strong=\"G1161\"* had|strong=\"G3588\"* not|strong=\"G3756\"* first|strong=\"G4413\"* washed himself before|strong=\"G4253\"* dinner." + }, + { + "verseNum": 39, + "text": "The|strong=\"G2532\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w* \\+w cleanse|strong=\"G2511\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w platter|strong=\"G4094\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w inward|strong=\"G2081\"\\+w* \\+w part|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w full|strong=\"G1073\"\\+w* \\+w of|strong=\"G2532\"\\+w* extortion \\+w and|strong=\"G2532\"\\+w* \\+w wickedness|strong=\"G4189\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w You|strong=\"G4160\"\\+w* \\+w foolish|strong=\"G2532\"\\+w* ones, didn’\\+w t|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w outside|strong=\"G1855\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w inside|strong=\"G2081\"\\+w* \\+w also|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 41, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w gifts|strong=\"G1654\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* needy \\+w those|strong=\"G3588\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w within|strong=\"G1751\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w clean|strong=\"G2513\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* tithe \\+w mint|strong=\"G2238\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w rue|strong=\"G4076\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w every|strong=\"G3956\"\\+w* \\+w herb|strong=\"G3001\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* bypass \\+w justice|strong=\"G2920\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s love. \\+w You|strong=\"G5210\"\\+w* \\+w ought|strong=\"G1163\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w left|strong=\"G2548\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G1161\"\\+w* undone. *" + }, + { + "verseNum": 43, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces. *" + }, + { + "verseNum": 44, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*, scribes \\+w and|strong=\"G2532\"\\+w* Pharisees, hypocrites! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5613\"\\+w* hidden \\+w graves|strong=\"G3419\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w them|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w it|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "One|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, in|strong=\"G2532\"* saying|strong=\"G3004\"* this|strong=\"G3778\"* you|strong=\"G3004\"* insult|strong=\"G5195\"* us|strong=\"G3004\"* also|strong=\"G2532\"*.”" + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lawyers|strong=\"G3544\"\\+w* \\+w also|strong=\"G2532\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w load|strong=\"G5413\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w burdens|strong=\"G5413\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G3588\"\\+w* difficult \\+w to|strong=\"G2532\"\\+w* carry, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G2532\"\\+w* lift \\+w one|strong=\"G1520\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w to|strong=\"G2532\"\\+w* help carry \\+w those|strong=\"G3588\"\\+w* \\+w burdens|strong=\"G5413\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w So|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w testify|strong=\"G3144\"\\+w* \\+w and|strong=\"G2532\"\\+w* consent \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w their|strong=\"G1438\"\\+w* tombs. *" + }, + { + "verseNum": 49, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* send \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* apostles; \\+w and|strong=\"G2532\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* kill \\+w and|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w*, *" + }, + { + "verseNum": 50, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* blood \\+w of|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w shed|strong=\"G1632\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3956\"\\+w* required \\+w of|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, *" + }, + { + "verseNum": 51, + "text": "\\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* Abel \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blood \\+w of|strong=\"G2532\"\\+w* Zachariah, \\+w who|strong=\"G3588\"\\+w* perished \\+w between|strong=\"G3342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w altar|strong=\"G2379\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* sanctuary.’ \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* required \\+w of|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 52, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lawyers|strong=\"G3544\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w took|strong=\"G2532\"\\+w* away \\+w the|strong=\"G2532\"\\+w* \\+w key|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w knowledge|strong=\"G1108\"\\+w*. \\+w You|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w entering|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w hindered|strong=\"G2967\"\\+w*.” *" + }, + { + "verseNum": 53, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G2532\"* these|strong=\"G4012\"* things|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, the|strong=\"G2532\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* began to|strong=\"G2532\"* be|strong=\"G2532\"* terribly angry, and|strong=\"G2532\"* to|strong=\"G2532\"* draw many|strong=\"G4183\"* things|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G4012\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 54, + "text": "lying|strong=\"G1748\"* in|strong=\"G1537\"* wait|strong=\"G1748\"* for|strong=\"G1537\"* him|strong=\"G3588\"*, and|strong=\"G3588\"* seeking to|strong=\"G5100\"* catch|strong=\"G2340\"* him|strong=\"G3588\"* in|strong=\"G1537\"* something|strong=\"G5100\"* he|strong=\"G3588\"* might|strong=\"G5100\"* say|strong=\"G1537\"*, that|strong=\"G3588\"* they|strong=\"G3588\"* might|strong=\"G5100\"* accuse him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Meanwhile|strong=\"G1510\"*, when|strong=\"G1722\"* a|strong=\"G1722\"* multitude|strong=\"G3793\"* of|strong=\"G1722\"* many|strong=\"G3461\"* thousands|strong=\"G3461\"* had|strong=\"G1510\"* gathered|strong=\"G1996\"* together|strong=\"G1996\"*, so|strong=\"G5620\"* much so|strong=\"G5620\"* that|strong=\"G3739\"* they|strong=\"G3588\"* trampled|strong=\"G2662\"* on|strong=\"G1722\"* each|strong=\"G1438\"* other|strong=\"G3739\"*, he|strong=\"G3739\"* began to|strong=\"G4314\"* tell|strong=\"G3004\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* first|strong=\"G4413\"* of|strong=\"G1722\"* all|strong=\"G1722\"*, “\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w yeast|strong=\"G2219\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Pharisees|strong=\"G5330\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w hypocrisy|strong=\"G5272\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w covered|strong=\"G4780\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* revealed, \\+w nor|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2927\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w known|strong=\"G1097\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* heard \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*. \\+w What|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ear|strong=\"G3775\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w inner|strong=\"G5009\"\\+w* \\+w rooms|strong=\"G5009\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w proclaimed|strong=\"G2784\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetops|strong=\"G1430\"\\+w*.*" + }, + { + "verseNum": 4, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* kill \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G3004\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w warn|strong=\"G5263\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w fear|strong=\"G5399\"\\+w*. \\+w Fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w after|strong=\"G3326\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* killed, \\+w has|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w cast|strong=\"G1685\"\\+w* \\+w into|strong=\"G1519\"\\+w* Gehenna.*+ 12:5 or, Hell* \\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w fear|strong=\"G5399\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 6, + "text": "“Aren’\\+w t|strong=\"G3588\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w* \\+w sold|strong=\"G4453\"\\+w* \\+w for|strong=\"G1520\"\\+w* \\+w two|strong=\"G1417\"\\+w* assaria coins*+ 12:6 An assarion was a small copper coin worth about an hour’s wages for an agricultural laborer.*? \\+w Not|strong=\"G3756\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w forgotten|strong=\"G1950\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w hairs|strong=\"G2359\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* counted. \\+w Therefore|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w more|strong=\"G4183\"\\+w* value \\+w than|strong=\"G4183\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w sparrows|strong=\"G4765\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w confesses|strong=\"G3670\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w men|strong=\"G3956\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*; *" + }, + { + "verseNum": 9, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* denies \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G2316\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G2316\"\\+w* denied \\+w in|strong=\"G2316\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s angels. *" + }, + { + "verseNum": 10, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w speaks|strong=\"G3004\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven, \\+w but|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* blaspheme \\+w against|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* forgiven. *" + }, + { + "verseNum": 11, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w bring|strong=\"G1533\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, \\+w the|strong=\"G2532\"\\+w* rulers, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w authorities|strong=\"G1849\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* answer \\+w or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G3004\"\\+w*; *" + }, + { + "verseNum": 12, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w say|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "One|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, tell|strong=\"G3004\"* my|strong=\"G1473\"* brother to|strong=\"G3004\"* divide|strong=\"G3307\"* the|strong=\"G1537\"* inheritance|strong=\"G2817\"* with|strong=\"G3326\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1909\"* him|strong=\"G3588\"*, “\\+w Man|strong=\"G5101\"\\+w*, \\+w who|strong=\"G5101\"\\+w* \\+w made|strong=\"G2525\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w an|strong=\"G2228\"\\+w* \\+w arbitrator|strong=\"G3312\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Beware|strong=\"G5442\"\\+w*! \\+w Keep|strong=\"G5442\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w covetousness|strong=\"G4124\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5100\"\\+w*’s \\+w life|strong=\"G2222\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w consist|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w abundance|strong=\"G4052\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* possesses.”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G1161\"* spoke|strong=\"G3004\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w The|strong=\"G1161\"\\+w* ground \\+w of|strong=\"G5100\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w* produced abundantly. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w reasoned|strong=\"G1260\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* room \\+w to|strong=\"G2532\"\\+w* \\+w store|strong=\"G4863\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w crops|strong=\"G2590\"\\+w*?’ *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* pull \\+w down|strong=\"G2507\"\\+w* \\+w my|strong=\"G3956\"\\+w* barns, \\+w build|strong=\"G3618\"\\+w* bigger \\+w ones|strong=\"G3173\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w store|strong=\"G4863\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w my|strong=\"G3956\"\\+w* grain \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3956\"\\+w* goods. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w*, “\\+w Soul|strong=\"G5590\"\\+w*, \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* goods \\+w laid|strong=\"G2749\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w years|strong=\"G2094\"\\+w*. \\+w Take|strong=\"G2532\"\\+w* \\+w your|strong=\"G2192\"\\+w* ease, \\+w eat|strong=\"G2068\"\\+w*, \\+w drink|strong=\"G4095\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w merry|strong=\"G2165\"\\+w*.”’*" + }, + { + "verseNum": 20, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w You|strong=\"G4771\"\\+w* foolish \\+w one|strong=\"G3739\"\\+w*, \\+w tonight|strong=\"G3571\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* required \\+w of|strong=\"G2316\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w The|strong=\"G1161\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1510\"\\+w* \\+w prepared|strong=\"G2090\"\\+w*—\\+w whose|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w be|strong=\"G1510\"\\+w*?’ *" + }, + { + "verseNum": 21, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* lays \\+w up|strong=\"G2343\"\\+w* \\+w treasure|strong=\"G2343\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w rich|strong=\"G4147\"\\+w* \\+w toward|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"*, “\\+w Therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w life|strong=\"G5590\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w yet|strong=\"G1161\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* wear. *" + }, + { + "verseNum": 23, + "text": "\\+w Life|strong=\"G5590\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w food|strong=\"G5160\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w clothing|strong=\"G1742\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ravens|strong=\"G2876\"\\+w*: \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*, \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w reap|strong=\"G2325\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* warehouse \\+w or|strong=\"G2532\"\\+w* barn, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w feeds|strong=\"G5142\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w valuable|strong=\"G1308\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w than|strong=\"G2532\"\\+w* \\+w birds|strong=\"G4071\"\\+w*! *" + }, + { + "verseNum": 25, + "text": "\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w being|strong=\"G1161\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w add|strong=\"G4369\"\\+w* \\+w a|strong=\"G1909\"\\+w* \\+w cubit|strong=\"G4083\"\\+w**+ 12:25 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* \\+w to|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* height? *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G1487\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G1410\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w least|strong=\"G1646\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w anxious|strong=\"G3309\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w rest|strong=\"G3062\"\\+w*? *" + }, + { + "verseNum": 27, + "text": "\\+w Consider|strong=\"G2657\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lilies|strong=\"G2918\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w they|strong=\"G1161\"\\+w* grow. \\+w They|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w toil|strong=\"G2872\"\\+w*, \\+w neither|strong=\"G3777\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w spin|strong=\"G3514\"\\+w*; \\+w yet|strong=\"G1161\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w even|strong=\"G3761\"\\+w* \\+w Solomon|strong=\"G4672\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w not|strong=\"G3761\"\\+w* \\+w arrayed|strong=\"G4016\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w these|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w how|strong=\"G4214\"\\+w* \\+w God|strong=\"G2316\"\\+w* clothes \\+w the|strong=\"G1722\"\\+w* \\+w grass|strong=\"G5528\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field, \\+w which|strong=\"G3588\"\\+w* \\+w today|strong=\"G4594\"\\+w* exists \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w is|strong=\"G1510\"\\+w* \\+w cast|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* oven, \\+w how|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w he|strong=\"G2532\"\\+w* clothe \\+w you|strong=\"G5210\"\\+w*, O \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w little|strong=\"G3640\"\\+w* \\+w faith|strong=\"G3640\"\\+w*? *" + }, + { + "verseNum": 29, + "text": "“Don’t \\+w seek|strong=\"G2212\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w drink|strong=\"G4095\"\\+w*; \\+w neither|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* anxious. *" + }, + { + "verseNum": 30, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w seek|strong=\"G1934\"\\+w* \\+w after|strong=\"G1161\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w need|strong=\"G5535\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w God|strong=\"G2532\"\\+w*’s Kingdom, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w added|strong=\"G4369\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 32, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w little|strong=\"G3398\"\\+w* \\+w flock|strong=\"G4168\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w good|strong=\"G2106\"\\+w* \\+w pleasure|strong=\"G2106\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G3588\"\\+w* Kingdom. *" + }, + { + "verseNum": 33, + "text": "\\+w Sell|strong=\"G4453\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w gifts|strong=\"G1654\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* needy. \\+w Make|strong=\"G4160\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* purses \\+w which|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* grow \\+w old|strong=\"G3822\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w that|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w fail|strong=\"G3756\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w thief|strong=\"G2812\"\\+w* approaches \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w moth|strong=\"G4597\"\\+w* \\+w destroys|strong=\"G1311\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "“\\+w Let|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w waist|strong=\"G3751\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w dressed|strong=\"G4024\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w lamps|strong=\"G3088\"\\+w* \\+w burning|strong=\"G2545\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Be|strong=\"G2532\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w men|strong=\"G3588\"\\+w* watching \\+w for|strong=\"G2532\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* returns \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w knocks|strong=\"G2925\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* open \\+w to|strong=\"G2443\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w watching|strong=\"G1127\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* dress \\+w himself|strong=\"G1565\"\\+w*, \\+w make|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* recline, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w watch|strong=\"G5438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w finds|strong=\"G2147\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w so|strong=\"G3779\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w the|strong=\"G1161\"\\+w* master \\+w of|strong=\"G3624\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w had|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w would|strong=\"G2064\"\\+w* \\+w have|strong=\"G3588\"\\+w* watched \\+w and|strong=\"G1161\"\\+w* \\+w not|strong=\"G3756\"\\+w* allowed \\+w his|strong=\"G3754\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w broken|strong=\"G1358\"\\+w* \\+w into|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Therefore|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w expect|strong=\"G1380\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* you|strong=\"G3004\"* telling|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* us|strong=\"G3004\"*, or|strong=\"G2228\"* to|strong=\"G4314\"* everybody?”" + }, + { + "verseNum": 42, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “\\+w Who|strong=\"G3739\"\\+w* \\+w then|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wise|strong=\"G5429\"\\+w* \\+w steward|strong=\"G3623\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w household|strong=\"G2322\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w their|strong=\"G2532\"\\+w* portion \\+w of|strong=\"G2532\"\\+w* food \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w right|strong=\"G2540\"\\+w* \\+w times|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 43, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w when|strong=\"G2064\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w Truly|strong=\"G1909\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w set|strong=\"G2525\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* has. *" + }, + { + "verseNum": 45, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w heart|strong=\"G2588\"\\+w*, ‘\\+w My|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* delays \\+w his|strong=\"G1722\"\\+w* \\+w coming|strong=\"G2064\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* begins \\+w to|strong=\"G2532\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w the|strong=\"G1722\"\\+w* menservants \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* maidservants, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w drunken|strong=\"G4095\"\\+w*, *" + }, + { + "verseNum": 46, + "text": "\\+w then|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w expecting|strong=\"G4328\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w cut|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* two, \\+w and|strong=\"G2532\"\\+w* \\+w place|strong=\"G3313\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w portion|strong=\"G3313\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* unfaithful. *" + }, + { + "verseNum": 47, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w nor|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* wanted, \\+w will|strong=\"G2307\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w many|strong=\"G4183\"\\+w* stripes, *" + }, + { + "verseNum": 48, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w things|strong=\"G3956\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w stripes|strong=\"G4127\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w beaten|strong=\"G1194\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w stripes|strong=\"G4127\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w whomever|strong=\"G3739\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w given|strong=\"G1325\"\\+w*, \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w required|strong=\"G2212\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w entrusted|strong=\"G3908\"\\+w*, \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w more|strong=\"G4183\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* asked. *" + }, + { + "verseNum": 49, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* throw \\+w fire|strong=\"G4442\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w wish|strong=\"G2309\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w already|strong=\"G2235\"\\+w* kindled. *" + }, + { + "verseNum": 50, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* baptism \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* baptized \\+w with|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w distressed|strong=\"G4912\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3748\"\\+w* \\+w accomplished|strong=\"G5055\"\\+w*! *" + }, + { + "verseNum": 51, + "text": "\\+w Do|strong=\"G1380\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w come|strong=\"G3854\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*? \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3780\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w rather|strong=\"G2228\"\\+w* \\+w division|strong=\"G1267\"\\+w*. *" + }, + { + "verseNum": 52, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w on|strong=\"G1909\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w divided|strong=\"G1266\"\\+w*, \\+w three|strong=\"G5140\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w two|strong=\"G1417\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w three|strong=\"G5140\"\\+w*. *" + }, + { + "verseNum": 53, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w divided|strong=\"G1266\"\\+w*, \\+w father|strong=\"G3962\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w father|strong=\"G3962\"\\+w*; \\+w mother|strong=\"G3384\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w daughter|strong=\"G2364\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w mother|strong=\"G3384\"\\+w*; \\+w mother-in-law|strong=\"G3994\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w daughter-in-law|strong=\"G3565\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w* \\+w mother-in-law|strong=\"G3994\"\\+w*.” *+ 12:53 Micah 7:6*" + }, + { + "verseNum": 54, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* also|strong=\"G2532\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w cloud|strong=\"G3507\"\\+w* \\+w rising|strong=\"G2532\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w west|strong=\"G1424\"\\+w*, \\+w immediately|strong=\"G2112\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G1096\"\\+w* \\+w shower|strong=\"G3655\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w south|strong=\"G3558\"\\+w* \\+w wind|strong=\"G3558\"\\+w* \\+w blows|strong=\"G4154\"\\+w*, \\+w you|strong=\"G3752\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w scorching|strong=\"G2742\"\\+w* \\+w heat|strong=\"G2742\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w You|strong=\"G4459\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! \\+w You|strong=\"G4459\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w to|strong=\"G2532\"\\+w* interpret \\+w the|strong=\"G2532\"\\+w* \\+w appearance|strong=\"G4383\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4459\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* interpret \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*? *" + }, + { + "verseNum": 57, + "text": "“\\+w Why|strong=\"G5101\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w right|strong=\"G1342\"\\+w*? *" + }, + { + "verseNum": 58, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w when|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversary \\+w before|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* magistrate, try diligently \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w way|strong=\"G3598\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G2532\"\\+w* released \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w lest|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w drag|strong=\"G2694\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w deliver|strong=\"G3860\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G4233\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w officer|strong=\"G4233\"\\+w* throw \\+w you|strong=\"G4771\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*. *" + }, + { + "verseNum": 59, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* paid \\+w the|strong=\"G2532\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* penny.*+ 12:59 literally, lepton. A lepton is a very small brass Jewish coin worth half a Roman quadrans each, which is worth a quarter of the copper assarion. Lepta are worth less than 1% of an agricultural worker’s daily wages.*”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G3588\"* some|strong=\"G5100\"* present|strong=\"G3918\"* at|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G3739\"* time|strong=\"G2540\"* who|strong=\"G3739\"* told him|strong=\"G3588\"* about|strong=\"G4012\"* the|strong=\"G1722\"* Galileans|strong=\"G1057\"* whose|strong=\"G3739\"* blood Pilate|strong=\"G4091\"* had|strong=\"G3739\"* mixed|strong=\"G3396\"* with|strong=\"G3326\"* their|strong=\"G1722\"* sacrifices|strong=\"G2378\"*." + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G3004\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w Galileans|strong=\"G1057\"\\+w* \\+w were|strong=\"G3588\"\\+w* worse sinners \\+w than|strong=\"G3844\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G3588\"\\+w* \\+w Galileans|strong=\"G1057\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w suffered|strong=\"G3958\"\\+w* \\+w such|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*? *" + }, + { + "verseNum": 3, + "text": "\\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3361\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* perish \\+w in|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w those|strong=\"G3588\"\\+w* eighteen \\+w on|strong=\"G1909\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tower|strong=\"G4444\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w and|strong=\"G2532\"\\+w* killed \\+w them|strong=\"G3588\"\\+w*—\\+w do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* worse offenders \\+w than|strong=\"G2228\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w no|strong=\"G3361\"\\+w*, \\+w but|strong=\"G3361\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* perish \\+w in|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w same|strong=\"G5615\"\\+w* \\+w way|strong=\"G5615\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* spoke|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*. “\\+w A|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* vineyard, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w seeking|strong=\"G2212\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w none|strong=\"G3756\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w vine|strong=\"G1093\"\\+w* dresser, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w none|strong=\"G3756\"\\+w*. \\+w Cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G1581\"\\+w*! \\+w Why|strong=\"G2444\"\\+w* \\+w does|strong=\"G2064\"\\+w* \\+w it|strong=\"G2532\"\\+w* waste \\+w the|strong=\"G1722\"\\+w* \\+w soil|strong=\"G1093\"\\+w*?’ *" + }, + { + "verseNum": 8, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, leave \\+w it|strong=\"G2532\"\\+w* \\+w alone|strong=\"G1438\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w year|strong=\"G2094\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w dig|strong=\"G4626\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* fertilize \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, fine; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w not|strong=\"G3361\"\\+w*, \\+w after|strong=\"G1161\"\\+w* \\+w that|strong=\"G3588\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w can|strong=\"G4160\"\\+w* \\+w cut|strong=\"G1581\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w down|strong=\"G1581\"\\+w*.’”*" + }, + { + "verseNum": 10, + "text": "He|strong=\"G1161\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* in|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* infirmity eighteen years|strong=\"G2094\"*. She|strong=\"G2532\"* was|strong=\"G1510\"* bent|strong=\"G4794\"* over|strong=\"G1519\"* and|strong=\"G2532\"* could|strong=\"G1410\"* in|strong=\"G1519\"* no|strong=\"G3361\"* way straighten herself up|strong=\"G1519\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* called|strong=\"G3004\"* her|strong=\"G1438\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G1438\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* freed \\+w from|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* infirmity.”*" + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* her|strong=\"G3588\"*, and|strong=\"G2532\"* immediately|strong=\"G3916\"* she|strong=\"G2532\"* stood|strong=\"G3588\"* up|strong=\"G2532\"* straight and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* ruler of|strong=\"G2250\"* the|strong=\"G1722\"* synagogue, being|strong=\"G1510\"* indignant because|strong=\"G3754\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* healed|strong=\"G2323\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*, said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"*, “There|strong=\"G2532\"* are|strong=\"G1510\"* six|strong=\"G1803\"* days|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* men|strong=\"G3588\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* work|strong=\"G2038\"*. Therefore|strong=\"G3767\"* come|strong=\"G2064\"* on|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* and|strong=\"G2532\"* be|strong=\"G1510\"* healed|strong=\"G2323\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"*!”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w hypocrites|strong=\"G5273\"\\+w*! Doesn’\\+w t|strong=\"G3588\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G3089\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w ox|strong=\"G1016\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w donkey|strong=\"G3688\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w stall|strong=\"G5336\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lead|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* away \\+w to|strong=\"G2532\"\\+w* \\+w water|strong=\"G4222\"\\+w*? *" + }, + { + "verseNum": 16, + "text": "\\+w Ought|strong=\"G1163\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w woman|strong=\"G3778\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w daughter|strong=\"G2364\"\\+w* \\+w of|strong=\"G2250\"\\+w* Abraham \\+w whom|strong=\"G3739\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w bound|strong=\"G1210\"\\+w* \\+w eighteen|strong=\"G1176\"\\+w* \\+w long|strong=\"G2250\"\\+w* \\+w years|strong=\"G2094\"\\+w*, \\+w be|strong=\"G1510\"\\+w* freed \\+w from|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* bondage \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G2250\"\\+w*?” *" + }, + { + "verseNum": 17, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, all|strong=\"G3956\"* his|strong=\"G3956\"* adversaries were|strong=\"G3588\"* disappointed|strong=\"G2617\"*; and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* rejoiced|strong=\"G5463\"* for|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* glorious|strong=\"G1741\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* done|strong=\"G1096\"* by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G3664\"\\+w*? \\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 19, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w garden|strong=\"G2779\"\\+w*. \\+w It|strong=\"G2532\"\\+w* grew \\+w and|strong=\"G2532\"\\+w* \\+w became|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* large \\+w tree|strong=\"G1186\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w birds|strong=\"G4071\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w live|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* its \\+w branches|strong=\"G2798\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w To|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w compare|strong=\"G3666\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom? *" + }, + { + "verseNum": 21, + "text": "\\+w It|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w yeast|strong=\"G2219\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w woman|strong=\"G1135\"\\+w* \\+w took|strong=\"G2983\"\\+w* \\+w and|strong=\"G1135\"\\+w* \\+w hid|strong=\"G2928\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w measures|strong=\"G4568\"\\+w* *+ 13:21 literally, three sata. 3 sata is about 39 liters or a bit more than a bushel.* \\+w of|strong=\"G1519\"\\+w* flour, \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3739\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w all|strong=\"G3650\"\\+w* \\+w leavened|strong=\"G2220\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1519\"* his|strong=\"G1519\"* way|strong=\"G2596\"* through|strong=\"G2596\"* cities|strong=\"G4172\"* and|strong=\"G2532\"* villages|strong=\"G2968\"*, teaching|strong=\"G1321\"*, and|strong=\"G2532\"* traveling on|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 23, + "text": "One|strong=\"G5100\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* they|strong=\"G1161\"* few|strong=\"G3641\"* who|strong=\"G3588\"* are|strong=\"G3588\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 24, + "text": "“Strive \\+w to|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w narrow|strong=\"G4728\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w many|strong=\"G4183\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w able|strong=\"G2480\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w once|strong=\"G3617\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w risen|strong=\"G1453\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w shut|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w outside|strong=\"G1854\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w knock|strong=\"G2925\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, open \\+w to|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*!’ \\+w then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* answer \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w or|strong=\"G2532\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w come|strong=\"G1510\"\\+w* \\+w from|strong=\"G2532\"\\+w*.’ *" + }, + { + "verseNum": 26, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2249\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drank|strong=\"G4095\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w presence|strong=\"G1799\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w streets|strong=\"G4116\"\\+w*.’ *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* don’t \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w come|strong=\"G1510\"\\+w* \\+w from|strong=\"G2532\"\\+w*. Depart \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w all|strong=\"G3956\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w workers|strong=\"G2040\"\\+w* \\+w of|strong=\"G2532\"\\+w* iniquity.’ *" + }, + { + "verseNum": 28, + "text": "\\+w There|strong=\"G1563\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w weeping|strong=\"G2805\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gnashing|strong=\"G1030\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w teeth|strong=\"G3599\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* Abraham, \\+w Isaac|strong=\"G2464\"\\+w*, \\+w Jacob|strong=\"G2384\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom, \\+w and|strong=\"G2532\"\\+w* \\+w yourselves|strong=\"G4771\"\\+w* \\+w being|strong=\"G1510\"\\+w* \\+w thrown|strong=\"G1544\"\\+w* \\+w outside|strong=\"G1854\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* east, \\+w west|strong=\"G1424\"\\+w*, \\+w north|strong=\"G1005\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w south|strong=\"G3558\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* sit down \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom. *" + }, + { + "verseNum": 30, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w last|strong=\"G2078\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "On|strong=\"G1722\"* that|strong=\"G3754\"* same|strong=\"G2532\"* day|strong=\"G5610\"*, some|strong=\"G5100\"* Pharisees|strong=\"G5330\"* came|strong=\"G4334\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Get|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* here|strong=\"G1782\"* and|strong=\"G2532\"* go|strong=\"G4198\"* away|strong=\"G1831\"*, for|strong=\"G3754\"* Herod|strong=\"G2264\"* wants|strong=\"G2309\"* to|strong=\"G2532\"* kill you|strong=\"G4771\"*.”" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* fox, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w demons|strong=\"G1140\"\\+w* \\+w and|strong=\"G2532\"\\+w* perform \\+w cures|strong=\"G2392\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w and|strong=\"G2532\"\\+w* tomorrow, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G4594\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w complete|strong=\"G5048\"\\+w* \\+w my|strong=\"G3708\"\\+w* mission. *" + }, + { + "verseNum": 33, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w on|strong=\"G4198\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w way|strong=\"G4198\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w and|strong=\"G2532\"\\+w* tomorrow \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w next|strong=\"G2192\"\\+w* \\+w day|strong=\"G4594\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* can’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w prophet|strong=\"G4396\"\\+w* \\+w would|strong=\"G2532\"\\+w* perish \\+w outside|strong=\"G1854\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*.’*" + }, + { + "verseNum": 34, + "text": "“\\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w who|strong=\"G3739\"\\+w* kills \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3036\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w her|strong=\"G1438\"\\+w*! \\+w How|strong=\"G4212\"\\+w* \\+w often|strong=\"G4212\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w gather|strong=\"G1996\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w together|strong=\"G1996\"\\+w*, \\+w like|strong=\"G2309\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hen|strong=\"G3733\"\\+w* \\+w gathers|strong=\"G1996\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w brood|strong=\"G3555\"\\+w* \\+w under|strong=\"G5259\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w wings|strong=\"G4420\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w refused|strong=\"G3756\"\\+w*! *" + }, + { + "verseNum": 35, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G3588\"\\+w* left \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* desolate. \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G2127\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G3686\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*!’” *+ 13:35 Psalms 118:26*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* house|strong=\"G3624\"* of|strong=\"G2532\"* one|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* rulers of|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* on|strong=\"G1722\"* a|strong=\"G1096\"* Sabbath|strong=\"G4521\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* bread, they|strong=\"G2532\"* were|strong=\"G1510\"* watching|strong=\"G3906\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G2532\"* had|strong=\"G2532\"* dropsy|strong=\"G5203\"* was|strong=\"G1510\"* in|strong=\"G2532\"* front|strong=\"G1715\"* of|strong=\"G2532\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"*, answering, spoke|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* lawyers|strong=\"G3544\"* and|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, saying|strong=\"G3004\"*, “\\+w Is|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w lawful|strong=\"G1832\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w heal|strong=\"G2323\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*?”*" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G2532\"* silent|strong=\"G2270\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w**+ 14:5 TR reads “donkey” instead of “son”* \\+w or|strong=\"G2228\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w ox|strong=\"G1016\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w well|strong=\"G2532\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* pull \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w day|strong=\"G2250\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "They|strong=\"G2532\"* couldn’t answer him|strong=\"G2532\"* regarding these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G1161\"* spoke|strong=\"G3004\"* a|strong=\"G1161\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* invited|strong=\"G2564\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* noticed|strong=\"G1907\"* how|strong=\"G4459\"* they|strong=\"G1161\"* chose|strong=\"G1586\"* the|strong=\"G1161\"* best seats, and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 8, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w wedding|strong=\"G1062\"\\+w* \\+w feast|strong=\"G1062\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w sit|strong=\"G2625\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* best seat, \\+w since|strong=\"G3379\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w someone|strong=\"G5100\"\\+w* \\+w more|strong=\"G1784\"\\+w* honorable \\+w than|strong=\"G3361\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w might|strong=\"G2564\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 9, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Make|strong=\"G2532\"\\+w* \\+w room|strong=\"G5117\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w person|strong=\"G3778\"\\+w*.’ \\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2532\"\\+w* begin, \\+w with|strong=\"G3326\"\\+w* shame, \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* lowest \\+w place|strong=\"G5117\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2064\"\\+w* \\+w sit|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* lowest \\+w place|strong=\"G5117\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Friend|strong=\"G5384\"\\+w*, \\+w move|strong=\"G4320\"\\+w* \\+w up|strong=\"G1519\"\\+w* higher.’ \\+w Then|strong=\"G5119\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w honored|strong=\"G1391\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sit|strong=\"G3956\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w table|strong=\"G4873\"\\+w* \\+w with|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3748\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* invited|strong=\"G2564\"* him|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w dinner|strong=\"G1173\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w supper|strong=\"G1173\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w call|strong=\"G2564\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w your|strong=\"G2532\"\\+w* brothers, \\+w nor|strong=\"G3366\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w kinsmen|strong=\"G4773\"\\+w*, \\+w nor|strong=\"G3366\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* return \\+w the|strong=\"G2532\"\\+w* favor, \\+w and|strong=\"G2532\"\\+w* pay \\+w you|strong=\"G4771\"\\+w* back. *" + }, + { + "verseNum": 13, + "text": "But \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w a|strong=\"G4160\"\\+w* \\+w feast|strong=\"G1403\"\\+w*, ask \\+w the|strong=\"G4160\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, \\+w the|strong=\"G4160\"\\+w* maimed, \\+w the|strong=\"G4160\"\\+w* \\+w lame|strong=\"G5560\"\\+w*, or \\+w the|strong=\"G4160\"\\+w* \\+w blind|strong=\"G5185\"\\+w*; *" + }, + { + "verseNum": 14, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w blessed|strong=\"G3107\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* resources \\+w to|strong=\"G2532\"\\+w* \\+w repay|strong=\"G2192\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* repaid \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*.” *" + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* one|strong=\"G5100\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G4873\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table|strong=\"G4873\"* with|strong=\"G1722\"* him|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Blessed|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G1161\"* who|strong=\"G3588\"* will|strong=\"G2316\"* feast in|strong=\"G1722\"* God|strong=\"G2316\"*’s Kingdom!”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w supper|strong=\"G1173\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w people|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w at|strong=\"G2235\"\\+w* \\+w supper|strong=\"G1173\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w invited|strong=\"G2564\"\\+w*, ‘\\+w Come|strong=\"G2064\"\\+w*, \\+w for|strong=\"G3754\"\\+w* everything \\+w is|strong=\"G1510\"\\+w* \\+w ready|strong=\"G2092\"\\+w* \\+w now|strong=\"G2532\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w began|strong=\"G2192\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w excuses|strong=\"G3868\"\\+w*.*" + }, + { + "verseNum": 19, + "text": "“\\+w Another|strong=\"G2087\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* bought \\+w five|strong=\"G4002\"\\+w* \\+w yoke|strong=\"G2201\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w oxen|strong=\"G1016\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G2192\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w try|strong=\"G1381\"\\+w* \\+w them|strong=\"G3004\"\\+w* \\+w out|strong=\"G2532\"\\+w*. \\+w Please|strong=\"G2065\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w excused|strong=\"G3868\"\\+w*.’*" + }, + { + "verseNum": 20, + "text": "“\\+w Another|strong=\"G2087\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w married|strong=\"G1060\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w come|strong=\"G2064\"\\+w*.’ *" + }, + { + "verseNum": 21, + "text": "“\\+w That|strong=\"G3588\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w came|strong=\"G1831\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3617\"\\+w*, \\+w being|strong=\"G2532\"\\+w* \\+w angry|strong=\"G3710\"\\+w*, \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, ‘\\+w Go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w quickly|strong=\"G5030\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w streets|strong=\"G4113\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lanes|strong=\"G4505\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w poor|strong=\"G4434\"\\+w*, maimed, \\+w blind|strong=\"G5185\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w lame|strong=\"G5560\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w as|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w commanded|strong=\"G2004\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w room|strong=\"G5117\"\\+w*.’*" + }, + { + "verseNum": 23, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, ‘\\+w Go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w highways|strong=\"G3598\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hedges|strong=\"G5418\"\\+w*, \\+w and|strong=\"G2532\"\\+w* compel \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w in|strong=\"G1519\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w my|strong=\"G1525\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w filled|strong=\"G1072\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w invited|strong=\"G2564\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w supper|strong=\"G1173\"\\+w*. \\+w For|strong=\"G1063\"\\+w* many \\+w are|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w*, \\+w but|strong=\"G1063\"\\+w* few \\+w are|strong=\"G3588\"\\+w* chosen.*+ 14:24 RP MT includes the last sentence. TR, NU, and FH MT omit: For many are called, but few are chosen.*’”*" + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* great|strong=\"G4183\"* multitudes|strong=\"G3793\"* were|strong=\"G2532\"* going|strong=\"G2532\"* with|strong=\"G4314\"* him|strong=\"G2532\"*. He|strong=\"G2532\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "“\\+w If|strong=\"G1487\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* disregard*+ 14:26 or, hate * \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w mother|strong=\"G3384\"\\+w*, \\+w wife|strong=\"G1135\"\\+w*, \\+w children|strong=\"G5043\"\\+w*, brothers, \\+w and|strong=\"G2532\"\\+w* sisters, \\+w yes|strong=\"G2089\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Whoever|strong=\"G3748\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w cross|strong=\"G4716\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w after|strong=\"G3694\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w desiring|strong=\"G2309\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w tower|strong=\"G4444\"\\+w*, doesn’\\+w t|strong=\"G3588\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w and|strong=\"G4413\"\\+w* \\+w count|strong=\"G2192\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w cost|strong=\"G1160\"\\+w*, \\+w to|strong=\"G1519\"\\+w* see \\+w if|strong=\"G1487\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* enough \\+w to|strong=\"G1519\"\\+w* complete \\+w it|strong=\"G1063\"\\+w*? *" + }, + { + "verseNum": 29, + "text": "\\+w Or|strong=\"G2532\"\\+w* \\+w perhaps|strong=\"G3379\"\\+w*, \\+w when|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w foundation|strong=\"G2310\"\\+w* \\+w and|strong=\"G2532\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G2480\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w finish|strong=\"G1615\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* begins \\+w to|strong=\"G2443\"\\+w* \\+w mock|strong=\"G1702\"\\+w* \\+w him|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w saying|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* began \\+w to|strong=\"G2532\"\\+w* \\+w build|strong=\"G3618\"\\+w* \\+w and|strong=\"G2532\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G2480\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w finish|strong=\"G1615\"\\+w*.’ *" + }, + { + "verseNum": 31, + "text": "\\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w king|strong=\"G3588\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w encounter|strong=\"G5221\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w king|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w war|strong=\"G4171\"\\+w*, \\+w will|strong=\"G5101\"\\+w* \\+w not|strong=\"G3780\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w and|strong=\"G2064\"\\+w* \\+w consider|strong=\"G1011\"\\+w* \\+w whether|strong=\"G1487\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1415\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w thousand|strong=\"G5505\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w meet|strong=\"G3588\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w twenty|strong=\"G1501\"\\+w* \\+w thousand|strong=\"G5505\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w Or|strong=\"G1161\"\\+w* \\+w else|strong=\"G3361\"\\+w*, \\+w while|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G1510\"\\+w* great way off, \\+w he|strong=\"G1161\"\\+w* sends \\+w an|strong=\"G1510\"\\+w* envoy \\+w and|strong=\"G1161\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w for|strong=\"G4314\"\\+w* conditions \\+w of|strong=\"G3588\"\\+w* \\+w peace|strong=\"G1515\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* renounce \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w has|strong=\"G3739\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w disciple|strong=\"G3101\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“Salt \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* salt becomes flat \\+w and|strong=\"G2532\"\\+w* \\+w tasteless|strong=\"G3471\"\\+w*, \\+w with|strong=\"G1722\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1437\"\\+w* season \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 35, + "text": "\\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w fit|strong=\"G2111\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w soil|strong=\"G1093\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w manure|strong=\"G2874\"\\+w* \\+w pile|strong=\"G2874\"\\+w*. \\+w It|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* thrown \\+w out|strong=\"G1854\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ears|strong=\"G3775\"\\+w* \\+w to|strong=\"G1519\"\\+w* hear, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* hear.”*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* tax|strong=\"G5057\"* collectors|strong=\"G5057\"* and|strong=\"G2532\"* sinners were|strong=\"G1510\"* coming|strong=\"G1448\"* close|strong=\"G1448\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* hear him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* murmured|strong=\"G1234\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* welcomes|strong=\"G4327\"* sinners, and|strong=\"G2532\"* eats|strong=\"G4906\"* with|strong=\"G2532\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* told|strong=\"G3004\"* them|strong=\"G3588\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*:" + }, + { + "verseNum": 4, + "text": "“\\+w Which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w if|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w and|strong=\"G2532\"\\+w* lost \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w leave|strong=\"G2641\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w after|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost, \\+w until|strong=\"G2193\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 5, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w he|strong=\"G2532\"\\+w* carries \\+w it|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G2007\"\\+w* \\+w shoulders|strong=\"G5606\"\\+w*, \\+w rejoicing|strong=\"G5463\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w home|strong=\"G3624\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w together|strong=\"G4779\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w saying|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w Rejoice|strong=\"G4796\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost!’ *" + }, + { + "verseNum": 7, + "text": "\\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w even|strong=\"G2192\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w there|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* sinner \\+w who|strong=\"G3588\"\\+w* \\+w repents|strong=\"G3340\"\\+w*, \\+w than|strong=\"G2228\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w ninety-nine|strong=\"G1768\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w repentance|strong=\"G3341\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "“\\+w Or|strong=\"G2228\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w woman|strong=\"G1135\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w ten|strong=\"G1176\"\\+w* drachma*+ 15:8 A drachma coin was worth about a days wages for an agricultural laborer.* \\+w coins|strong=\"G1406\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w she|strong=\"G2532\"\\+w* lost \\+w one|strong=\"G1520\"\\+w* drachma \\+w coin|strong=\"G1406\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w light|strong=\"G3088\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w sweep|strong=\"G4563\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w diligently|strong=\"G1960\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*? *" + }, + { + "verseNum": 9, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w she|strong=\"G2532\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w together|strong=\"G4779\"\\+w* \\+w her|strong=\"G3754\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w neighbors|strong=\"G1069\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Rejoice|strong=\"G4796\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w the|strong=\"G2532\"\\+w* drachma \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w had|strong=\"G2532\"\\+w* lost!’ *" + }, + { + "verseNum": 10, + "text": "\\+w Even|strong=\"G3779\"\\+w* \\+w so|strong=\"G3779\"\\+w*, \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1096\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w presence|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G1909\"\\+w* angels \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* sinner repenting.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w A|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w sons|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w younger|strong=\"G3501\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w share|strong=\"G3313\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* property.’ \\+w So|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w divided|strong=\"G1244\"\\+w* \\+w his|strong=\"G2532\"\\+w* livelihood \\+w between|strong=\"G1244\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Not|strong=\"G3756\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w after|strong=\"G3326\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w younger|strong=\"G3501\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w gathered|strong=\"G4863\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w together|strong=\"G4863\"\\+w* \\+w and|strong=\"G2532\"\\+w* traveled \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w far|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*. \\+w There|strong=\"G1563\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w wasted|strong=\"G1287\"\\+w* \\+w his|strong=\"G3956\"\\+w* property \\+w with|strong=\"G3326\"\\+w* riotous \\+w living|strong=\"G2198\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w When|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w spent|strong=\"G1159\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w there|strong=\"G2532\"\\+w* \\+w arose|strong=\"G1096\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w severe|strong=\"G2478\"\\+w* \\+w famine|strong=\"G3042\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w began|strong=\"G1096\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w need|strong=\"G5302\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w joined|strong=\"G2853\"\\+w* \\+w himself|strong=\"G1565\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w citizens|strong=\"G4177\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w country|strong=\"G5561\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w fields|strong=\"G5561\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w feed|strong=\"G1006\"\\+w* \\+w pigs|strong=\"G5519\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* wanted \\+w to|strong=\"G2532\"\\+w* \\+w fill|strong=\"G1072\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w belly|strong=\"G2836\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pods|strong=\"G2769\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pigs|strong=\"G5519\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w any|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w said|strong=\"G5346\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w many|strong=\"G4214\"\\+w* \\+w hired|strong=\"G3407\"\\+w* servants \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*’s \\+w have|strong=\"G1473\"\\+w* bread \\+w enough|strong=\"G4052\"\\+w* \\+w to|strong=\"G1519\"\\+w* spare, \\+w and|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w*’m dying \\+w with|strong=\"G1519\"\\+w* \\+w hunger|strong=\"G3042\"\\+w*! *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* sinned \\+w against|strong=\"G4314\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G1799\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* worthy \\+w to|strong=\"G4160\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w son|strong=\"G5207\"\\+w*. \\+w Make|strong=\"G4160\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w your|strong=\"G4160\"\\+w* \\+w hired|strong=\"G3407\"\\+w* servants.”’*" + }, + { + "verseNum": 20, + "text": "“\\+w He|strong=\"G2532\"\\+w* arose \\+w and|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w while|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w off|strong=\"G3112\"\\+w*, \\+w his|strong=\"G1438\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w moved|strong=\"G4697\"\\+w* \\+w with|strong=\"G4314\"\\+w* \\+w compassion|strong=\"G4697\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w ran|strong=\"G5143\"\\+w*, \\+w fell|strong=\"G1968\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w neck|strong=\"G5137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w kissed|strong=\"G2705\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* sinned \\+w against|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G1799\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w longer|strong=\"G3765\"\\+w* worthy \\+w to|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, ‘\\+w Bring|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w best|strong=\"G4413\"\\+w* \\+w robe|strong=\"G4749\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G1746\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w Put|strong=\"G1746\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w ring|strong=\"G1146\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Bring|strong=\"G5342\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w let|strong=\"G2532\"\\+w*’s \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w*; *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*, \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* alive \\+w again|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* lost \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w found|strong=\"G2147\"\\+w*.’ \\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* began \\+w to|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w*.*" + }, + { + "verseNum": 25, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w elder|strong=\"G4245\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field. \\+w As|strong=\"G5613\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w near|strong=\"G1448\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w he|strong=\"G2532\"\\+w* heard \\+w music|strong=\"G4858\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w dancing|strong=\"G5525\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G4341\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w servants|strong=\"G3816\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w asked|strong=\"G4441\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w on|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Your|strong=\"G2532\"\\+w* brother \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2240\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w killed|strong=\"G2380\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* received \\+w him|strong=\"G3588\"\\+w* back \\+w safe|strong=\"G5198\"\\+w* \\+w and|strong=\"G2532\"\\+w* healthy.’ *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w angry|strong=\"G3710\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w would|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w in|strong=\"G1525\"\\+w*. \\+w Therefore|strong=\"G1161\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w begged|strong=\"G3870\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w answered|strong=\"G3004\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w father|strong=\"G3962\"\\+w*, ‘\\+w Behold|strong=\"G2400\"\\+w*, \\+w these|strong=\"G3326\"\\+w* \\+w many|strong=\"G5118\"\\+w* \\+w years|strong=\"G2094\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w served|strong=\"G1398\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w disobeyed|strong=\"G3928\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w never|strong=\"G3763\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w goat|strong=\"G2056\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w devoured|strong=\"G2719\"\\+w* \\+w your|strong=\"G3588\"\\+w* living \\+w with|strong=\"G3326\"\\+w* \\+w prostitutes|strong=\"G4204\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w killed|strong=\"G2380\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w fattened|strong=\"G4618\"\\+w* \\+w calf|strong=\"G3448\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* appropriate \\+w to|strong=\"G2532\"\\+w* \\+w celebrate|strong=\"G2165\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w glad|strong=\"G5463\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w your|strong=\"G2532\"\\+w* brother, \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w again|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* lost, \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w found|strong=\"G2147\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* his|strong=\"G2192\"* disciples|strong=\"G3101\"*, “\\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w manager|strong=\"G3623\"\\+w*. \\+w An|strong=\"G2192\"\\+w* accusation \\+w was|strong=\"G1510\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w was|strong=\"G1510\"\\+w* wasting \\+w his|strong=\"G2192\"\\+w* \\+w possessions|strong=\"G5225\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w you|strong=\"G4771\"\\+w*? \\+w Give|strong=\"G3004\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w accounting|strong=\"G3056\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w management|strong=\"G3622\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w longer|strong=\"G2089\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w manager|strong=\"G3621\"\\+w*.’ *" + }, + { + "verseNum": 3, + "text": "“\\+w The|strong=\"G1722\"\\+w* \\+w manager|strong=\"G3623\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w seeing|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w is|strong=\"G3588\"\\+w* taking away \\+w the|strong=\"G1722\"\\+w* \\+w management|strong=\"G3622\"\\+w* position \\+w from|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w strength|strong=\"G2480\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w dig|strong=\"G4626\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* ashamed \\+w to|strong=\"G3004\"\\+w* \\+w beg|strong=\"G1871\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w removed|strong=\"G3179\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w management|strong=\"G3622\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w houses|strong=\"G3624\"\\+w*.’ *" + }, + { + "verseNum": 5, + "text": "\\+w Calling|strong=\"G4341\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w debtors|strong=\"G5533\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w owe|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w lord|strong=\"G2962\"\\+w*?’ *" + }, + { + "verseNum": 6, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* batos*+ 16:6 100 batos is about 395 liters or 104 U. S. gallons.* \\+w of|strong=\"G2532\"\\+w* \\+w oil|strong=\"G1637\"\\+w*.’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1209\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bill|strong=\"G1121\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w quickly|strong=\"G5030\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w fifty|strong=\"G4004\"\\+w*.’ *" + }, + { + "verseNum": 7, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w another|strong=\"G2087\"\\+w*, ‘\\+w How|strong=\"G4214\"\\+w* \\+w much|strong=\"G4214\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w owe|strong=\"G3784\"\\+w*?’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w hundred|strong=\"G1540\"\\+w* cors*+ 16:7 100 cors = about 2,110 liters or 600 bushels.* \\+w of|strong=\"G2532\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*.’ \\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Take|strong=\"G1209\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w bill|strong=\"G1121\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w eighty|strong=\"G3589\"\\+w*.’*" + }, + { + "verseNum": 8, + "text": "“\\+w His|strong=\"G1438\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w commended|strong=\"G1867\"\\+w* \\+w the|strong=\"G2532\"\\+w* dishonest \\+w manager|strong=\"G3623\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w wisely|strong=\"G5430\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3778\"\\+w* world \\+w are|strong=\"G1510\"\\+w*, \\+w in|strong=\"G1519\"\\+w* \\+w their|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w generation|strong=\"G1074\"\\+w*, \\+w wiser|strong=\"G5429\"\\+w* \\+w than|strong=\"G5228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w make|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w of|strong=\"G1537\"\\+w* unrighteous \\+w mammon|strong=\"G3126\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w fail|strong=\"G1587\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* eternal \\+w tents|strong=\"G4633\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w little|strong=\"G1646\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w much|strong=\"G4183\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* dishonest \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w very|strong=\"G4183\"\\+w* \\+w little|strong=\"G1646\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* dishonest \\+w in|strong=\"G1722\"\\+w* \\+w much|strong=\"G4183\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* unrighteous \\+w mammon|strong=\"G3126\"\\+w*, \\+w who|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w commit|strong=\"G3756\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w your|strong=\"G1487\"\\+w* \\+w trust|strong=\"G4100\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w true|strong=\"G4103\"\\+w* riches? *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w been|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*’s, \\+w who|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w your|strong=\"G5212\"\\+w* own? *" + }, + { + "verseNum": 13, + "text": "\\+w No|strong=\"G3756\"\\+w* \\+w servant|strong=\"G3610\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w masters|strong=\"G2962\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w either|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*; \\+w or|strong=\"G2228\"\\+w* \\+w else|strong=\"G2228\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* hold \\+w to|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w despise|strong=\"G2706\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w*. \\+w You|strong=\"G2532\"\\+w* aren’\\+w t|strong=\"G3588\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1398\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Mammon|strong=\"G3126\"\\+w*.”*+ 16:13 “Mammon” refers to riches or a false god of wealth.*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, who|strong=\"G3588\"* were|strong=\"G3588\"* lovers|strong=\"G5366\"* of|strong=\"G2532\"* money|strong=\"G5366\"*, also|strong=\"G2532\"* heard all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* scoffed at|strong=\"G1161\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w justify|strong=\"G1344\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sight|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w exalted|strong=\"G5308\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* abomination \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sight|strong=\"G1799\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w until|strong=\"G3360\"\\+w* \\+w John|strong=\"G2491\"\\+w*. \\+w From|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w time|strong=\"G5119\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Good|strong=\"G2097\"\\+w* \\+w News|strong=\"G2097\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G3588\"\\+w* \\+w preached|strong=\"G2097\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w is|strong=\"G3588\"\\+w* forcing \\+w his|strong=\"G1438\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w one|strong=\"G1520\"\\+w* tiny \\+w stroke|strong=\"G2762\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* pen \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w fall|strong=\"G4098\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "“\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* divorces \\+w his|strong=\"G3956\"\\+w* \\+w wife|strong=\"G1135\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w commits|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w marries|strong=\"G1060\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* divorced \\+w from|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* husband \\+w commits|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "“\\+w Now|strong=\"G1161\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G5100\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* clothed \\+w in|strong=\"G2596\"\\+w* \\+w purple|strong=\"G4209\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w fine|strong=\"G2532\"\\+w* \\+w linen|strong=\"G1040\"\\+w*, \\+w living|strong=\"G2165\"\\+w* \\+w in|strong=\"G2596\"\\+w* luxury \\+w every|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w A|strong=\"G1161\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w beggar|strong=\"G4434\"\\+w*, \\+w named|strong=\"G3686\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w was|strong=\"G3588\"\\+w* taken \\+w to|strong=\"G4314\"\\+w* \\+w his|strong=\"G4314\"\\+w* \\+w gate|strong=\"G4440\"\\+w*, full \\+w of|strong=\"G3686\"\\+w* \\+w sores|strong=\"G1669\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w desiring|strong=\"G1937\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w fed|strong=\"G5526\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* crumbs \\+w that|strong=\"G3588\"\\+w* \\+w fell|strong=\"G4098\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w*’s \\+w table|strong=\"G5132\"\\+w*. Yes, \\+w even|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2965\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* licked \\+w his|strong=\"G2532\"\\+w* \\+w sores|strong=\"G1668\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w beggar|strong=\"G4434\"\\+w* \\+w died|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w carried|strong=\"G2532\"\\+w* away \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w to|strong=\"G1519\"\\+w* Abraham’s \\+w bosom|strong=\"G2859\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w buried|strong=\"G2290\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w In|strong=\"G1722\"\\+w* Hades,*+ 16:23 or, Hell* \\+w he|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w being|strong=\"G5225\"\\+w* \\+w in|strong=\"G1722\"\\+w* torment, \\+w and|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* Abraham \\+w far|strong=\"G3113\"\\+w* \\+w off|strong=\"G3113\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w bosom|strong=\"G2859\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w cried|strong=\"G5455\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Father|strong=\"G3962\"\\+w* Abraham, \\+w have|strong=\"G2532\"\\+w* \\+w mercy|strong=\"G1653\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* dip \\+w the|strong=\"G1722\"\\+w* tip \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w finger|strong=\"G1147\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w cool|strong=\"G2711\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w tongue|strong=\"G1100\"\\+w*! \\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* anguish \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w flame|strong=\"G5395\"\\+w*.’*" + }, + { + "verseNum": 25, + "text": "“\\+w But|strong=\"G1161\"\\+w* Abraham \\+w said|strong=\"G3004\"\\+w*, ‘\\+w Son|strong=\"G5043\"\\+w*, \\+w remember|strong=\"G3403\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w lifetime|strong=\"G2222\"\\+w*, received \\+w your|strong=\"G2532\"\\+w* \\+w good|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w same|strong=\"G3668\"\\+w* \\+w way|strong=\"G3668\"\\+w*, \\+w bad|strong=\"G2556\"\\+w* \\+w things|strong=\"G3588\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w comforted|strong=\"G3870\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* anguish. *" + }, + { + "verseNum": 26, + "text": "\\+w Besides|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w between|strong=\"G3342\"\\+w* \\+w us|strong=\"G2249\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w gulf|strong=\"G5490\"\\+w* \\+w fixed|strong=\"G4741\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w pass|strong=\"G1224\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w able|strong=\"G1410\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w no|strong=\"G3361\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w cross|strong=\"G1276\"\\+w* \\+w over|strong=\"G1276\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w us|strong=\"G2249\"\\+w*.’*" + }, + { + "verseNum": 27, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w father|strong=\"G3962\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* would \\+w send|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3624\"\\+w*—*" + }, + { + "verseNum": 28, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w five|strong=\"G4002\"\\+w* brothers—\\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w testify|strong=\"G1263\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w of|strong=\"G2532\"\\+w* torment.’*" + }, + { + "verseNum": 29, + "text": "“\\+w But|strong=\"G1161\"\\+w* Abraham \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*. \\+w Let|strong=\"G1161\"\\+w* \\+w them|strong=\"G3588\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 30, + "text": "“\\+w He|strong=\"G1161\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w No|strong=\"G3780\"\\+w*, \\+w father|strong=\"G3962\"\\+w* Abraham, \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5100\"\\+w* \\+w repent|strong=\"G3340\"\\+w*.’*" + }, + { + "verseNum": 31, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w listen|strong=\"G3982\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w persuaded|strong=\"G3982\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w one|strong=\"G5100\"\\+w* rises \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w*.’”*" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* impossible \\+w that|strong=\"G3739\"\\+w* \\+w no|strong=\"G3361\"\\+w* occasions \\+w of|strong=\"G1223\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w come|strong=\"G2064\"\\+w*! *" + }, + { + "verseNum": 2, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w better|strong=\"G3081\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w millstone|strong=\"G3037\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w hung|strong=\"G4029\"\\+w* \\+w around|strong=\"G4012\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w neck|strong=\"G5137\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w thrown|strong=\"G4496\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sea|strong=\"G2281\"\\+w*, \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w ones|strong=\"G3398\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Be|strong=\"G2532\"\\+w* \\+w careful|strong=\"G4337\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w your|strong=\"G1437\"\\+w* brother sins against \\+w you|strong=\"G4771\"\\+w*, \\+w rebuke|strong=\"G2008\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w repents|strong=\"G3340\"\\+w*, forgive \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w he|strong=\"G2532\"\\+w* sins \\+w against|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w seven|strong=\"G2034\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2034\"\\+w* \\+w times|strong=\"G2034\"\\+w* \\+w returns|strong=\"G1994\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*,’ \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* forgive \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* apostles said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, “Increase|strong=\"G4369\"* our|strong=\"G2532\"* faith|strong=\"G4102\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w grain|strong=\"G2848\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mustard|strong=\"G4615\"\\+w* \\+w seed|strong=\"G2848\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* sycamore \\+w tree|strong=\"G4807\"\\+w*, ‘\\+w Be|strong=\"G2532\"\\+w* \\+w uprooted|strong=\"G1610\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w obey|strong=\"G5219\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w there|strong=\"G1161\"\\+w* \\+w among|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w having|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w servant|strong=\"G1401\"\\+w* plowing \\+w or|strong=\"G2228\"\\+w* \\+w keeping|strong=\"G2192\"\\+w* \\+w sheep|strong=\"G4165\"\\+w*, \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w comes|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* field, ‘\\+w Come|strong=\"G1525\"\\+w* \\+w immediately|strong=\"G2112\"\\+w* \\+w and|strong=\"G1161\"\\+w* sit \\+w down|strong=\"G1537\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* table’? *" + }, + { + "verseNum": 8, + "text": "Wouldn’t \\+w he|strong=\"G2532\"\\+w* \\+w rather|strong=\"G3780\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Prepare|strong=\"G2090\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w supper|strong=\"G1172\"\\+w*, \\+w clothe|strong=\"G4024\"\\+w* \\+w yourself|strong=\"G4771\"\\+w* properly, \\+w and|strong=\"G2532\"\\+w* \\+w serve|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*. \\+w Afterward|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*’? *" + }, + { + "verseNum": 9, + "text": "\\+w Does|strong=\"G4160\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w thank|strong=\"G5485\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w commanded|strong=\"G1299\"\\+w*? \\+w I|strong=\"G3754\"\\+w* \\+w think|strong=\"G2192\"\\+w* \\+w not|strong=\"G3361\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w commanded|strong=\"G1299\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* unworthy \\+w servants|strong=\"G1401\"\\+w*. \\+w We|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w our|strong=\"G2532\"\\+w* duty.’” *" + }, + { + "verseNum": 11, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* was|strong=\"G1096\"* on|strong=\"G1722\"* his|strong=\"G1223\"* way|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, he|strong=\"G2532\"* was|strong=\"G1096\"* passing|strong=\"G1330\"* along|strong=\"G2532\"* the|strong=\"G1722\"* borders of|strong=\"G1223\"* Samaria|strong=\"G4540\"* and|strong=\"G2532\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"G1519\"* he|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* village|strong=\"G2968\"*, ten|strong=\"G1176\"* men|strong=\"G5100\"* who|strong=\"G3739\"* were|strong=\"G2532\"* lepers|strong=\"G3015\"* met|strong=\"G5221\"* him|strong=\"G3739\"*, who|strong=\"G3739\"* stood|strong=\"G2476\"* at|strong=\"G1519\"* a|strong=\"G2532\"* distance|strong=\"G4207\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* their|strong=\"G2532\"* voices|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Jesus|strong=\"G2424\"*, Master|strong=\"G1988\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* us|strong=\"G3004\"*!”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w show|strong=\"G1925\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w priests|strong=\"G2409\"\\+w*.”* As|strong=\"G1722\"* they|strong=\"G2532\"* went|strong=\"G4198\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cleansed|strong=\"G2511\"*." + }, + { + "verseNum": 15, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G1161\"* was|strong=\"G3588\"* healed|strong=\"G2390\"*, turned|strong=\"G5290\"* back|strong=\"G5290\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"* with|strong=\"G3326\"* a|strong=\"G3708\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* at|strong=\"G1909\"* Jesus|strong=\"G1510\"*’ feet|strong=\"G4228\"*, giving|strong=\"G2168\"* him|strong=\"G3588\"* thanks|strong=\"G2168\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Samaritan|strong=\"G4541\"*." + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “Weren’\\+w t|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*? \\+w But|strong=\"G1161\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w nine|strong=\"G1767\"\\+w*? *" + }, + { + "verseNum": 18, + "text": "\\+w Were|strong=\"G3588\"\\+w* \\+w there|strong=\"G1487\"\\+w* \\+w none|strong=\"G3756\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w returned|strong=\"G5290\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w this|strong=\"G3778\"\\+w* foreigner?”*" + }, + { + "verseNum": 19, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Get|strong=\"G4982\"\\+w* \\+w up|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w healed|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Being|strong=\"G2532\"* asked|strong=\"G1905\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* when|strong=\"G1161\"* God|strong=\"G2316\"*’s Kingdom would|strong=\"G2316\"* come|strong=\"G2064\"*, he|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w God|strong=\"G2316\"\\+w*’s Kingdom doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w observation|strong=\"G3907\"\\+w*; *" + }, + { + "verseNum": 21, + "text": "\\+w neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w*!’ \\+w or|strong=\"G2228\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ \\+w for|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w within|strong=\"G1787\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w desire|strong=\"G1937\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G1520\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w here|strong=\"G5602\"\\+w*!’ \\+w or|strong=\"G2532\"\\+w* ‘\\+w Look|strong=\"G2400\"\\+w*, \\+w there|strong=\"G1563\"\\+w*!’ Don’t \\+w go|strong=\"G2532\"\\+w* away \\+w or|strong=\"G2532\"\\+w* \\+w follow|strong=\"G1377\"\\+w* \\+w after|strong=\"G1377\"\\+w* \\+w them|strong=\"G3004\"\\+w*, *" + }, + { + "verseNum": 24, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* lightning, \\+w when|strong=\"G1722\"\\+w* \\+w it|strong=\"G1063\"\\+w* flashes \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w one|strong=\"G3588\"\\+w* part \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w shines|strong=\"G2989\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w another|strong=\"G2250\"\\+w* part \\+w under|strong=\"G5259\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sky|strong=\"G3772\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G1519\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* rejected \\+w by|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Noah|strong=\"G3575\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w drank|strong=\"G4095\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w married|strong=\"G1060\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w marriage|strong=\"G1061\"\\+w* \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Noah|strong=\"G3575\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* ship, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flood|strong=\"G2627\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroyed \\+w them|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Likewise|strong=\"G3668\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w it|strong=\"G2531\"\\+w* \\+w was|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w Lot|strong=\"G3091\"\\+w*: \\+w they|strong=\"G3588\"\\+w* \\+w ate|strong=\"G2068\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w drank|strong=\"G4095\"\\+w*, \\+w they|strong=\"G3588\"\\+w* bought, \\+w they|strong=\"G3588\"\\+w* \\+w sold|strong=\"G4453\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w planted|strong=\"G5452\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w built|strong=\"G3618\"\\+w*; *" + }, + { + "verseNum": 29, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w Lot|strong=\"G3091\"\\+w* \\+w went|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w Sodom|strong=\"G4670\"\\+w*, \\+w it|strong=\"G2532\"\\+w* \\+w rained|strong=\"G1026\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sulfur|strong=\"G2303\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sky|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroyed \\+w them|strong=\"G3739\"\\+w* \\+w all|strong=\"G3956\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w It|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w same|strong=\"G3739\"\\+w* \\+w way|strong=\"G2596\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* revealed. *" + }, + { + "verseNum": 31, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w housetop|strong=\"G1430\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w goods|strong=\"G4632\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w go|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* away. \\+w Let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* field \\+w likewise|strong=\"G3668\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w back|strong=\"G3694\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w Lot|strong=\"G3091\"\\+w*’s \\+w wife|strong=\"G1135\"\\+w*! *" + }, + { + "verseNum": 33, + "text": "\\+w Whoever|strong=\"G3739\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* save \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* loses \\+w it|strong=\"G2532\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* loses \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G5590\"\\+w* preserves \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w in|strong=\"G1909\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w bed|strong=\"G2825\"\\+w*. \\+w One|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left. *" + }, + { + "verseNum": 35, + "text": "\\+w There|strong=\"G1161\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w two|strong=\"G1417\"\\+w* grinding grain \\+w together|strong=\"G1909\"\\+w*. \\+w One|strong=\"G1520\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taken|strong=\"G3880\"\\+w* \\+w and|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* left.”*" + }, + { + "verseNum": 36, + "text": "+ 17:36 Some Greek manuscripts add: “Two will be in the field: the one taken, and the other left.”*" + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"*, answering, asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G3699\"*, Lord|strong=\"G2962\"*?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* spoke|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* them|strong=\"G3588\"* that|strong=\"G3588\"* they|strong=\"G2532\"* must|strong=\"G1163\"* always|strong=\"G3842\"* pray|strong=\"G4336\"* and|strong=\"G2532\"* not|strong=\"G3361\"* give|strong=\"G3004\"* up|strong=\"G1210\"*," + }, + { + "verseNum": 2, + "text": "saying|strong=\"G3004\"*, “\\+w There|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w judge|strong=\"G2923\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w fear|strong=\"G5399\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w man|strong=\"G5100\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w A|strong=\"G2532\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* often \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘Defend \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w my|strong=\"G1722\"\\+w* adversary!’ *" + }, + { + "verseNum": 4, + "text": "\\+w He|strong=\"G2532\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w while|strong=\"G1722\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w afterward|strong=\"G3326\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, ‘\\+w Though|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3761\"\\+w* \\+w fear|strong=\"G5399\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w man|strong=\"G3778\"\\+w*, *" + }, + { + "verseNum": 5, + "text": "\\+w yet|strong=\"G1065\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w bothers|strong=\"G3930\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* defend \\+w her|strong=\"G1438\"\\+w*, \\+w or|strong=\"G3361\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w she|strong=\"G2443\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w wear|strong=\"G5299\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w out|strong=\"G2064\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w her|strong=\"G1438\"\\+w* \\+w continual|strong=\"G5056\"\\+w* \\+w coming|strong=\"G2064\"\\+w*.’”*" + }, + { + "verseNum": 6, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"*, “Listen \\+w to|strong=\"G3004\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1161\"\\+w* unrighteous \\+w judge|strong=\"G2923\"\\+w* \\+w says|strong=\"G3004\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "Won’\\+w t|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w avenge|strong=\"G1557\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w chosen|strong=\"G1588\"\\+w* ones \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* crying \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w exercises|strong=\"G4160\"\\+w* \\+w patience|strong=\"G3114\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 8, + "text": "\\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w will|strong=\"G1093\"\\+w* \\+w avenge|strong=\"G1557\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w quickly|strong=\"G5034\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w when|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w will|strong=\"G1093\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*?”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* also|strong=\"G2532\"* spoke|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* to|strong=\"G4314\"* certain|strong=\"G5100\"* people|strong=\"G1510\"* who|strong=\"G3588\"* were|strong=\"G1510\"* convinced|strong=\"G3982\"* of|strong=\"G2532\"* their|strong=\"G1438\"* own|strong=\"G1438\"* righteousness, and|strong=\"G2532\"* who|strong=\"G3588\"* despised|strong=\"G1848\"* all|strong=\"G2532\"* others|strong=\"G3062\"*:" + }, + { + "verseNum": 10, + "text": "“\\+w Two|strong=\"G1417\"\\+w* \\+w men|strong=\"G1417\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w temple|strong=\"G2411\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w pray|strong=\"G4336\"\\+w*; \\+w one|strong=\"G1520\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w other|strong=\"G2087\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Pharisee|strong=\"G5330\"\\+w* \\+w stood|strong=\"G2476\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prayed|strong=\"G4336\"\\+w* \\+w by|strong=\"G4314\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w*: ‘\\+w God|strong=\"G2316\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w thank|strong=\"G2168\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w men|strong=\"G3778\"\\+w*: extortionists, unrighteous, \\+w adulterers|strong=\"G3432\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w I|strong=\"G3745\"\\+w* \\+w fast|strong=\"G3522\"\\+w* \\+w twice|strong=\"G1364\"\\+w* \\+w a|strong=\"G2932\"\\+w* \\+w week|strong=\"G4521\"\\+w*. \\+w I|strong=\"G3745\"\\+w* \\+w give|strong=\"G3956\"\\+w* tithes \\+w of|strong=\"G3956\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w I|strong=\"G3745\"\\+w* \\+w get|strong=\"G2932\"\\+w*.’ *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w tax|strong=\"G5057\"\\+w* \\+w collector|strong=\"G5057\"\\+w*, \\+w standing|strong=\"G2476\"\\+w* \\+w far|strong=\"G3113\"\\+w* \\+w away|strong=\"G3113\"\\+w*, wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w even|strong=\"G3761\"\\+w* \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w beat|strong=\"G5180\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w chest|strong=\"G4738\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w God|strong=\"G2316\"\\+w*, \\+w be|strong=\"G3756\"\\+w* \\+w merciful|strong=\"G2433\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w a|strong=\"G1519\"\\+w* sinner!’ *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w went|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w justified|strong=\"G1344\"\\+w* \\+w rather|strong=\"G2228\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w other|strong=\"G1161\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w exalts|strong=\"G5312\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w humbled|strong=\"G5013\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w humbles|strong=\"G5013\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w exalted|strong=\"G5312\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* also|strong=\"G2532\"* bringing|strong=\"G4374\"* their|strong=\"G2532\"* babies|strong=\"G1025\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* touch them|strong=\"G3588\"*. But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* rebuked|strong=\"G2008\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* summoned|strong=\"G4341\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Allow \\+w the|strong=\"G2532\"\\+w* little \\+w children|strong=\"G3813\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w hinder|strong=\"G2967\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w belongs|strong=\"G1510\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w these|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whoever|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G1209\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* little \\+w child|strong=\"G3813\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G5613\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w it|strong=\"G3739\"\\+w*.”*" + }, + { + "verseNum": 18, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* ruler asked|strong=\"G1905\"* him|strong=\"G1905\"*, saying|strong=\"G3004\"*, “Good|strong=\"G5101\"* Teacher|strong=\"G1320\"*, what|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* do|strong=\"G4160\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* eternal life|strong=\"G2222\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w good|strong=\"G5101\"\\+w*? \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w good|strong=\"G5101\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w one|strong=\"G1520\"\\+w*: \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w You|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*: ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w murder|strong=\"G5407\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w steal|strong=\"G2813\"\\+w*,’ ‘Don’\\+w t|strong=\"G3588\"\\+w* \\+w give|strong=\"G5576\"\\+w* \\+w false|strong=\"G5576\"\\+w* \\+w testimony|strong=\"G5576\"\\+w*,’ ‘\\+w Honor|strong=\"G5091\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G5091\"\\+w* \\+w mother|strong=\"G3384\"\\+w*.’”*+ 18:20 Exodus 20:12-16; Deuteronomy 5:16-20*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G1473\"* observed|strong=\"G5442\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* from|strong=\"G1537\"* my|strong=\"G3956\"* youth|strong=\"G3503\"* up|strong=\"G1537\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard these|strong=\"G3956\"* things|strong=\"G3956\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w lack|strong=\"G3007\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w thing|strong=\"G1520\"\\+w*. \\+w Sell|strong=\"G4453\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w distribute|strong=\"G1239\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w poor|strong=\"G4434\"\\+w*. \\+w Then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w treasure|strong=\"G2344\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*; \\+w then|strong=\"G2532\"\\+w* \\+w come|strong=\"G1204\"\\+w*, \\+w follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G1161\"* became|strong=\"G1096\"* very|strong=\"G4970\"* sad|strong=\"G4036\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* was|strong=\"G1510\"* very|strong=\"G4970\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 24, + "text": "Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G1161\"* became|strong=\"G3588\"* very|strong=\"G3588\"* sad, said|strong=\"G3004\"*, “\\+w How|strong=\"G4459\"\\+w* \\+w hard|strong=\"G1423\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w riches|strong=\"G5536\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1531\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* Kingdom! *" + }, + { + "verseNum": 25, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w easier|strong=\"G2123\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w camel|strong=\"G2574\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w a|strong=\"G1519\"\\+w* needle’s eye \\+w than|strong=\"G2228\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w rich|strong=\"G4145\"\\+w* \\+w man|strong=\"G4145\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 26, + "text": "Those|strong=\"G3588\"* who|strong=\"G5101\"* heard it|strong=\"G2532\"* said|strong=\"G3004\"*, “Then|strong=\"G2532\"* who|strong=\"G5101\"* can|strong=\"G1410\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* impossible \\+w with|strong=\"G3844\"\\+w* \\+w men|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w possible|strong=\"G1415\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Look|strong=\"G2400\"*, we|strong=\"G2249\"* have|strong=\"G1473\"* left everything and|strong=\"G1161\"* followed you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* certainly \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w there|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2316\"\\+w* left \\+w house|strong=\"G3614\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w wife|strong=\"G1135\"\\+w*, \\+w or|strong=\"G2228\"\\+w* brothers, \\+w or|strong=\"G2228\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w children|strong=\"G5043\"\\+w*, \\+w for|strong=\"G1752\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom’s \\+w sake|strong=\"G1752\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w who|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* receive \\+w many|strong=\"G4179\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w more|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* world \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, eternal \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* aside|strong=\"G3880\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w we|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w going|strong=\"G2532\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w concerning|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3956\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w completed|strong=\"G5055\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w mocked|strong=\"G1702\"\\+w*, treated shamefully, \\+w and|strong=\"G2532\"\\+w* \\+w spit|strong=\"G1716\"\\+w* \\+w on|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w scourge|strong=\"G3146\"\\+w* \\+w and|strong=\"G2532\"\\+w* kill \\+w him|strong=\"G3588\"\\+w*. \\+w On|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w again|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "They|strong=\"G2532\"* understood|strong=\"G4920\"* none|strong=\"G3762\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"*. This|strong=\"G3778\"* saying|strong=\"G3004\"* was|strong=\"G1510\"* hidden|strong=\"G2928\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 35, + "text": "As|strong=\"G1519\"* he|strong=\"G1161\"* came|strong=\"G1096\"* near|strong=\"G1448\"* Jericho|strong=\"G2410\"*, a|strong=\"G1096\"* certain|strong=\"G5100\"* blind|strong=\"G5185\"* man|strong=\"G5100\"* sat|strong=\"G2521\"* by|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*, begging|strong=\"G1871\"*." + }, + { + "verseNum": 36, + "text": "Hearing a|strong=\"G1510\"* multitude|strong=\"G3793\"* going|strong=\"G3778\"* by|strong=\"G1510\"*, he|strong=\"G1161\"* asked|strong=\"G4441\"* what|strong=\"G5101\"* this|strong=\"G3778\"* meant|strong=\"G1510\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G1161\"* told him|strong=\"G3588\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* of|strong=\"G2424\"* Nazareth|strong=\"G3480\"* was|strong=\"G3588\"* passing|strong=\"G3928\"* by|strong=\"G2424\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* cried|strong=\"G2532\"* out|strong=\"G2532\"*, “Jesus|strong=\"G2424\"*, you|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 39, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* led|strong=\"G4254\"* the|strong=\"G2532\"* way|strong=\"G4254\"* rebuked|strong=\"G2008\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* quiet|strong=\"G4601\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* all|strong=\"G2532\"* the|strong=\"G2532\"* more|strong=\"G3123\"*, “You|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* David|strong=\"G1138\"*, have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* me|strong=\"G1473\"*!”" + }, + { + "verseNum": 40, + "text": "Standing|strong=\"G2476\"* still|strong=\"G2476\"*, Jesus|strong=\"G2424\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G4314\"* be|strong=\"G3588\"* brought|strong=\"G1161\"* to|strong=\"G4314\"* him|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* come|strong=\"G1448\"* near|strong=\"G1448\"*, he|strong=\"G1161\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 41, + "text": "“\\+w What|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w*?”*" + }, + { + "verseNum": 42, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Receive|strong=\"G4102\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sight|strong=\"G3588\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w has|strong=\"G4102\"\\+w* \\+w healed|strong=\"G4982\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "Immediately|strong=\"G3916\"* he|strong=\"G2532\"* received his|strong=\"G3956\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* followed|strong=\"G2992\"* him|strong=\"G3588\"*, glorifying|strong=\"G1392\"* God|strong=\"G2316\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, praised|strong=\"G1392\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* and|strong=\"G2532\"* was|strong=\"G3588\"* passing|strong=\"G1330\"* through|strong=\"G1330\"* Jericho|strong=\"G2410\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G4145\"* named|strong=\"G3686\"* Zacchaeus|strong=\"G2195\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* chief|strong=\"G2532\"* tax collector, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1510\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* trying|strong=\"G2212\"* to|strong=\"G2532\"* see|strong=\"G3708\"* who|strong=\"G5101\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* couldn’t|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G3793\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* short|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* ran|strong=\"G4390\"* on|strong=\"G1909\"* ahead|strong=\"G1715\"* and|strong=\"G2532\"* climbed up|strong=\"G1519\"* into|strong=\"G1519\"* a|strong=\"G2532\"* sycamore|strong=\"G4809\"* tree|strong=\"G4809\"* to|strong=\"G1519\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G3195\"* to|strong=\"G1519\"* pass|strong=\"G1330\"* that|strong=\"G3754\"* way|strong=\"G1330\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G5613\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G1722\"* place|strong=\"G5117\"*, he|strong=\"G2532\"* looked|strong=\"G2532\"* up|strong=\"G1210\"* and|strong=\"G2532\"* saw|strong=\"G2424\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Zacchaeus|strong=\"G2195\"\\+w*, \\+w hurry|strong=\"G4692\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w down|strong=\"G2597\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w*.” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* hurried|strong=\"G4692\"*, came|strong=\"G2597\"* down|strong=\"G2597\"*, and|strong=\"G2532\"* received|strong=\"G5264\"* him|strong=\"G2532\"* joyfully|strong=\"G5463\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* all|strong=\"G3956\"* murmured|strong=\"G1234\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G3708\"* gone|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G2532\"* lodge|strong=\"G2647\"* with|strong=\"G3844\"* a|strong=\"G2532\"* man|strong=\"G3956\"* who|strong=\"G3748\"* is|strong=\"G3956\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 8, + "text": "Zacchaeus|strong=\"G2195\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, “Behold|strong=\"G2400\"*, Lord|strong=\"G2962\"*, half|strong=\"G2255\"* of|strong=\"G2532\"* my|strong=\"G3708\"* goods I|strong=\"G1473\"* give|strong=\"G1325\"* to|strong=\"G4314\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*. If|strong=\"G1487\"* I|strong=\"G1473\"* have|strong=\"G2532\"* wrongfully exacted anything|strong=\"G5100\"* of|strong=\"G2532\"* anyone|strong=\"G5100\"*, I|strong=\"G1473\"* restore four|strong=\"G5073\"* times|strong=\"G5073\"* as|strong=\"G1161\"* much|strong=\"G5073\"*.”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Today|strong=\"G4594\"\\+w*, \\+w salvation|strong=\"G4991\"\\+w* \\+w has|strong=\"G1096\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w house|strong=\"G3624\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Abraham. *" + }, + { + "verseNum": 10, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* lost.” *" + }, + { + "verseNum": 11, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1161\"* and|strong=\"G2532\"* told|strong=\"G3004\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* supposed|strong=\"G1380\"* that|strong=\"G3754\"* God|strong=\"G2316\"*’s Kingdom would|strong=\"G3195\"* be|strong=\"G1510\"* revealed immediately|strong=\"G3916\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"*, “\\+w A|strong=\"G2532\"\\+w* \\+w certain|strong=\"G5100\"\\+w* \\+w nobleman|strong=\"G2104\"\\+w* \\+w went|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* far \\+w country|strong=\"G5561\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w a|strong=\"G2532\"\\+w* kingdom \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w return|strong=\"G5290\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w them|strong=\"G1325\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w mina|strong=\"G3414\"\\+w* coins, *+ 19:13 10 minas was more than 3 years’ wages for an agricultural laborer. * \\+w and|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w them|strong=\"G1325\"\\+w*, ‘Conduct \\+w business|strong=\"G4231\"\\+w* \\+w until|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w come|strong=\"G2064\"\\+w*.’ *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w his|strong=\"G1909\"\\+w* \\+w citizens|strong=\"G4177\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* envoy \\+w after|strong=\"G3694\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G2249\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w reign|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*" + }, + { + "verseNum": 15, + "text": "“\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w back|strong=\"G2983\"\\+w* \\+w again|strong=\"G2532\"\\+w*, \\+w having|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w the|strong=\"G1722\"\\+w* kingdom, \\+w he|strong=\"G2532\"\\+w* \\+w commanded|strong=\"G1325\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w to|strong=\"G2443\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w the|strong=\"G1722\"\\+w* money, \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w had|strong=\"G2532\"\\+w* gained \\+w by|strong=\"G1722\"\\+w* conducting \\+w business|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w came|strong=\"G3854\"\\+w* \\+w before|strong=\"G4413\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w your|strong=\"G2962\"\\+w* \\+w mina|strong=\"G3414\"\\+w* \\+w has|strong=\"G2962\"\\+w* \\+w made|strong=\"G1161\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w more|strong=\"G4333\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’*" + }, + { + "verseNum": 17, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Well|strong=\"G2532\"\\+w* \\+w done|strong=\"G1096\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w good|strong=\"G2095\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w found|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w little|strong=\"G1646\"\\+w*, \\+w you|strong=\"G3754\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w cities|strong=\"G4172\"\\+w*.’ *" + }, + { + "verseNum": 18, + "text": "“\\+w The|strong=\"G2532\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Your|strong=\"G2962\"\\+w* \\+w mina|strong=\"G3414\"\\+w*, \\+w Lord|strong=\"G2962\"\\+w*, \\+w has|strong=\"G2962\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’ *" + }, + { + "verseNum": 19, + "text": "“\\+w So|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w And|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w over|strong=\"G1883\"\\+w* \\+w five|strong=\"G4002\"\\+w* \\+w cities|strong=\"G4172\"\\+w*.’ *" + }, + { + "verseNum": 20, + "text": "\\+w Another|strong=\"G2087\"\\+w* \\+w came|strong=\"G2064\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w your|strong=\"G2192\"\\+w* \\+w mina|strong=\"G3414\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w kept|strong=\"G3739\"\\+w* \\+w laid|strong=\"G2532\"\\+w* away \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w handkerchief|strong=\"G4676\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w feared|strong=\"G5399\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* exacting \\+w man|strong=\"G3739\"\\+w*. \\+w You|strong=\"G4771\"\\+w* \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’t \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’t \\+w sow|strong=\"G4687\"\\+w*.’*" + }, + { + "verseNum": 22, + "text": "“\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, ‘\\+w Out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G5087\"\\+w* own \\+w mouth|strong=\"G4750\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w wicked|strong=\"G4190\"\\+w* \\+w servant|strong=\"G1401\"\\+w*! \\+w You|strong=\"G4771\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w an|strong=\"G2532\"\\+w* exacting \\+w man|strong=\"G3739\"\\+w*, taking \\+w up|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w reaping|strong=\"G2325\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w sow|strong=\"G4687\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w why|strong=\"G5101\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G1325\"\\+w* deposit \\+w my|strong=\"G1325\"\\+w* money \\+w in|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w bank|strong=\"G5132\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* earned \\+w interest|strong=\"G5110\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w it|strong=\"G2532\"\\+w*?’ *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w stood|strong=\"G3936\"\\+w* \\+w by|strong=\"G3936\"\\+w*, ‘\\+w Take|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mina|strong=\"G3414\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w minas|strong=\"G3414\"\\+w*.’*" + }, + { + "verseNum": 25, + "text": "“\\+w They|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G2532\"\\+w*, ‘\\+w Lord|strong=\"G2962\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w minas|strong=\"G3414\"\\+w*!’ *" + }, + { + "verseNum": 26, + "text": "‘\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w more|strong=\"G2192\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* taken away \\+w from|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w mine|strong=\"G1473\"\\+w* \\+w who|strong=\"G3588\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w reign|strong=\"G2532\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w here|strong=\"G5602\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kill \\+w them|strong=\"G3588\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’”*" + }, + { + "verseNum": 28, + "text": "Having|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1519\"* ahead|strong=\"G1715\"*, going|strong=\"G4198\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* came|strong=\"G1096\"* near|strong=\"G1448\"* to|strong=\"G1519\"* Bethsphage+ 19:29 TR, NU read “Bethpage” instead of “Bethsphage”* and|strong=\"G2532\"* Bethany, at|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Olivet, he|strong=\"G2532\"* sent|strong=\"G2532\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 30, + "text": "saying|strong=\"G3004\"*, “\\+w Go|strong=\"G5217\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G1722\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w village|strong=\"G2968\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w other|strong=\"G3739\"\\+w* side, \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w enter|strong=\"G1531\"\\+w*, \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w colt|strong=\"G4454\"\\+w* \\+w tied|strong=\"G1210\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w man|strong=\"G3762\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w ever|strong=\"G1519\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w upon|strong=\"G1909\"\\+w*. \\+w Untie|strong=\"G3089\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w untying|strong=\"G3089\"\\+w* \\+w it|strong=\"G2532\"\\+w*?’ \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*: ‘\\+w The|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w it|strong=\"G2532\"\\+w*.’”*" + }, + { + "verseNum": 32, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sent went|strong=\"G3588\"* away and|strong=\"G1161\"* found|strong=\"G2147\"* things|strong=\"G3588\"* just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G1161\"* had|strong=\"G3588\"* told|strong=\"G3004\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "As|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* untying|strong=\"G3089\"* the|strong=\"G1161\"* colt|strong=\"G4454\"*, its|strong=\"G3089\"* owners|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* untying|strong=\"G3089\"* the|strong=\"G1161\"* colt|strong=\"G4454\"*?”" + }, + { + "verseNum": 34, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “The|strong=\"G1161\"* Lord|strong=\"G2962\"* needs|strong=\"G5532\"* it|strong=\"G3754\"*.”" + }, + { + "verseNum": 35, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* brought|strong=\"G2532\"* it|strong=\"G2532\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*. They|strong=\"G2532\"* threw|strong=\"G1977\"* their|strong=\"G2532\"* cloaks|strong=\"G2440\"* on|strong=\"G1909\"* the|strong=\"G2532\"* colt|strong=\"G4454\"* and|strong=\"G2532\"* sat|strong=\"G2532\"* Jesus|strong=\"G2424\"* on|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "As|strong=\"G1722\"* he|strong=\"G1161\"* went|strong=\"G4198\"*, they|strong=\"G1161\"* spread|strong=\"G5291\"* their|strong=\"G1438\"* cloaks|strong=\"G2440\"* on|strong=\"G1722\"* the|strong=\"G1722\"* road|strong=\"G3598\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* now|strong=\"G1161\"* getting near|strong=\"G1448\"*, at|strong=\"G4314\"* the|strong=\"G3956\"* descent|strong=\"G2600\"* of|strong=\"G4012\"* the|strong=\"G3956\"* Mount|strong=\"G3735\"* of|strong=\"G4012\"* Olives|strong=\"G1636\"*, the|strong=\"G3956\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"* of|strong=\"G4012\"* the|strong=\"G3956\"* disciples|strong=\"G3101\"* began|strong=\"G1161\"* to|strong=\"G4314\"* rejoice|strong=\"G5463\"* and|strong=\"G1161\"* praise God|strong=\"G2316\"* with|strong=\"G4314\"* a|strong=\"G3708\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* for|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G3956\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* which|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G2316\"* seen|strong=\"G3708\"*," + }, + { + "verseNum": 38, + "text": "saying|strong=\"G3004\"*, “Blessed|strong=\"G2127\"* is|strong=\"G3588\"* the|strong=\"G1722\"* King|strong=\"G3588\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!+ 19:38 Psalms 118:26* Peace|strong=\"G1515\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* the|strong=\"G1722\"* highest|strong=\"G5310\"*!”" + }, + { + "verseNum": 39, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* from|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, rebuke|strong=\"G2008\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"*!”" + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w silent|strong=\"G4623\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w stones|strong=\"G3037\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w cry|strong=\"G2896\"\\+w* \\+w out|strong=\"G2896\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "When|strong=\"G5613\"* he|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* wept|strong=\"G2799\"* over|strong=\"G1909\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w today|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* belong \\+w to|strong=\"G4314\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w peace|strong=\"G1515\"\\+w*! \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w from|strong=\"G1515\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w throw|strong=\"G3925\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w barricade|strong=\"G5482\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w surround|strong=\"G4033\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w hem|strong=\"G4912\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w every|strong=\"G2532\"\\+w* \\+w side|strong=\"G3840\"\\+w*, *" + }, + { + "verseNum": 44, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* dash \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w ground|strong=\"G1474\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* leave \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w*, \\+w because|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w visitation|strong=\"G1984\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* drive|strong=\"G1544\"* out|strong=\"G1544\"* those|strong=\"G3588\"* who|strong=\"G3588\"* bought and|strong=\"G2532\"* sold|strong=\"G4453\"* in|strong=\"G1519\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 46, + "text": "saying|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*, ‘\\+w My|strong=\"G1473\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w house|strong=\"G3624\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w prayer|strong=\"G4335\"\\+w*,’ *+ 19:46 Isaiah 56:7* \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* ‘\\+w den|strong=\"G4693\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*’!” *+ 19:46 Jeremiah 7:11*" + }, + { + "verseNum": 47, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* daily|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* chief|strong=\"G4413\"* priests, the|strong=\"G1722\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* leading|strong=\"G4413\"* men|strong=\"G4413\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* destroy him|strong=\"G3588\"*." + }, + { + "verseNum": 48, + "text": "They|strong=\"G2532\"* couldn’t|strong=\"G3588\"* find|strong=\"G2147\"* what|strong=\"G5101\"* they|strong=\"G2532\"* might|strong=\"G2532\"* do|strong=\"G4160\"*, for|strong=\"G1063\"* all|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* hung on|strong=\"G4160\"* to|strong=\"G2532\"* every|strong=\"G2532\"* word|strong=\"G3588\"* that|strong=\"G3588\"* he|strong=\"G2532\"* said|strong=\"G2532\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"G1722\"* one|strong=\"G1520\"* of|strong=\"G2250\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1096\"* teaching|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, the|strong=\"G1722\"*+ 20:1 TR adds “chief”* priests|strong=\"G2409\"* and|strong=\"G2532\"* scribes|strong=\"G1122\"* came|strong=\"G1096\"* to|strong=\"G2532\"* him|strong=\"G3588\"* with|strong=\"G1722\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Tell|strong=\"G3004\"* us|strong=\"G1325\"*: by|strong=\"G1722\"* what|strong=\"G5101\"* authority|strong=\"G1849\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* is|strong=\"G1510\"* giving|strong=\"G1325\"* you|strong=\"G4771\"* this|strong=\"G3778\"* authority|strong=\"G1849\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G1438\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w question|strong=\"G2065\"\\+w*. \\+w Tell|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*: *" + }, + { + "verseNum": 4, + "text": "\\+w the|strong=\"G1537\"\\+w* baptism \\+w of|strong=\"G1537\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w was|strong=\"G1510\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w men|strong=\"G3588\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "They|strong=\"G1161\"* reasoned|strong=\"G4817\"* with|strong=\"G4314\"* themselves|strong=\"G1438\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* we|strong=\"G1437\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* heaven|strong=\"G3772\"*,’ he|strong=\"G1161\"* will|strong=\"G5101\"* say|strong=\"G3004\"*, ‘Why|strong=\"G5101\"* didn’t|strong=\"G3588\"* you|strong=\"G1437\"* believe|strong=\"G4100\"* him|strong=\"G3588\"*?’" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"*, ‘From|strong=\"G1537\"* men|strong=\"G3588\"*,’ all|strong=\"G1161\"* the|strong=\"G1537\"* people|strong=\"G2992\"* will|strong=\"G1510\"* stone|strong=\"G2642\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* they|strong=\"G1161\"* are|strong=\"G1510\"* persuaded|strong=\"G3982\"* that|strong=\"G3588\"* John|strong=\"G2491\"* was|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* answered that|strong=\"G2532\"* they|strong=\"G2532\"* didn’t know|strong=\"G1492\"* where|strong=\"G4159\"* it|strong=\"G2532\"* was|strong=\"G2532\"* from|strong=\"G2532\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Neither|strong=\"G3761\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G4314\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* people|strong=\"G2992\"* this|strong=\"G3778\"* parable|strong=\"G3850\"*: “\\+w A|strong=\"G2532\"\\+w* *+ 20:9 NU (in brackets) and TR add “certain”* \\+w man|strong=\"G3778\"\\+w* \\+w planted|strong=\"G5452\"\\+w* \\+w a|strong=\"G2532\"\\+w* vineyard \\+w and|strong=\"G2532\"\\+w* \\+w rented|strong=\"G1554\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w some|strong=\"G3588\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w went|strong=\"G2532\"\\+w* \\+w into|strong=\"G4314\"\\+w* \\+w another|strong=\"G3588\"\\+w* country \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G2425\"\\+w* \\+w time|strong=\"G5550\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w At|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w proper|strong=\"G2540\"\\+w* \\+w season|strong=\"G2540\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G1821\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* farmers \\+w to|strong=\"G4314\"\\+w* collect \\+w his|strong=\"G2532\"\\+w* share \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard. \\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* farmers \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G1821\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1821\"\\+w* \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w another|strong=\"G2087\"\\+w* \\+w servant|strong=\"G1401\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w beat|strong=\"G1194\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* treated \\+w him|strong=\"G3588\"\\+w* shamefully, \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w away|strong=\"G1821\"\\+w* \\+w empty|strong=\"G2756\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w wounded|strong=\"G5135\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1161\"\\+w* vineyard \\+w said|strong=\"G3004\"\\+w*, ‘\\+w What|strong=\"G5101\"\\+w* \\+w shall|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*? \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w my|strong=\"G1473\"\\+w* beloved \\+w son|strong=\"G5207\"\\+w*. \\+w It|strong=\"G1161\"\\+w* \\+w may|strong=\"G3004\"\\+w* \\+w be|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* seeing \\+w him|strong=\"G3588\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w respect|strong=\"G1788\"\\+w* \\+w him|strong=\"G3588\"\\+w*.’*" + }, + { + "verseNum": 14, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* farmers \\+w saw|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w they|strong=\"G1161\"\\+w* \\+w reasoned|strong=\"G1260\"\\+w* \\+w among|strong=\"G4314\"\\+w* \\+w themselves|strong=\"G3778\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w heir|strong=\"G2818\"\\+w*. \\+w Come|strong=\"G1096\"\\+w*, \\+w let|strong=\"G1096\"\\+w*’s kill \\+w him|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w inheritance|strong=\"G2817\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w ours|strong=\"G1473\"\\+w*.’ *" + }, + { + "verseNum": 15, + "text": "\\+w Then|strong=\"G3767\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w threw|strong=\"G1544\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w and|strong=\"G2532\"\\+w* killed \\+w him|strong=\"G3588\"\\+w*. \\+w What|strong=\"G5101\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w do|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 16, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* destroy \\+w these|strong=\"G3778\"\\+w* farmers, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w the|strong=\"G2532\"\\+w* vineyard \\+w to|strong=\"G2532\"\\+w* \\+w others|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* looked|strong=\"G1689\"* at|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w Then|strong=\"G3767\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w*,*" + }, + { + "verseNum": 18, + "text": "\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w broken|strong=\"G4917\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w pieces|strong=\"G4917\"\\+w*, *" + }, + { + "verseNum": 19, + "text": "The|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* to|strong=\"G4314\"* lay|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"* that|strong=\"G3754\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G1722\"* people|strong=\"G2992\"*—for|strong=\"G1063\"* they|strong=\"G2532\"* knew|strong=\"G1097\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G3004\"* this|strong=\"G3778\"* parable|strong=\"G3850\"* against|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"* watched|strong=\"G3906\"* him|strong=\"G3588\"* and|strong=\"G2532\"* sent|strong=\"G2532\"* out|strong=\"G2532\"* spies|strong=\"G1455\"*, who|strong=\"G3588\"* pretended|strong=\"G5271\"* to|strong=\"G2443\"* be|strong=\"G1510\"* righteous|strong=\"G1342\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* trap him|strong=\"G3588\"* in|strong=\"G2532\"* something|strong=\"G1510\"* he|strong=\"G2532\"* said|strong=\"G2532\"*, so|strong=\"G2443\"* as|strong=\"G2532\"* to|strong=\"G2443\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2443\"* the|strong=\"G2532\"* power|strong=\"G1849\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* of|strong=\"G3056\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G3754\"* say|strong=\"G3004\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* what|strong=\"G3588\"* is|strong=\"G3588\"* right|strong=\"G3723\"*, and|strong=\"G2532\"* aren’t|strong=\"G3588\"* partial|strong=\"G2983\"* to|strong=\"G2532\"* anyone, but|strong=\"G2532\"* truly|strong=\"G1909\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Is|strong=\"G1832\"* it|strong=\"G1325\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* us|strong=\"G1325\"* to|strong=\"G1325\"* pay|strong=\"G1325\"* taxes|strong=\"G5411\"* to|strong=\"G1325\"* Caesar|strong=\"G2541\"*, or|strong=\"G2228\"* not|strong=\"G3756\"*?”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* perceived|strong=\"G2657\"* their|strong=\"G1438\"* craftiness|strong=\"G3834\"*, and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why \\+w do|strong=\"G3004\"\\+w* \\+w you|strong=\"G3004\"\\+w* test \\+w me|strong=\"G3004\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "\\+w Show|strong=\"G1166\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w denarius|strong=\"G1220\"\\+w*. \\+w Whose|strong=\"G5101\"\\+w* \\+w image|strong=\"G1504\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w inscription|strong=\"G1923\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w on|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w*?” *" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Then|strong=\"G2532\"\\+w* \\+w give|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w Caesar|strong=\"G2541\"\\+w*’s, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s.”*" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G2532\"* trap him|strong=\"G3588\"* in|strong=\"G1909\"* his|strong=\"G1909\"* words|strong=\"G4487\"* before|strong=\"G1909\"* the|strong=\"G2532\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* marveled|strong=\"G2296\"* at|strong=\"G1909\"* his|strong=\"G1909\"* answer and|strong=\"G2532\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*." + }, + { + "verseNum": 27, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"* came|strong=\"G4334\"* to|strong=\"G4334\"* him|strong=\"G3588\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* deny|strong=\"G3588\"* that|strong=\"G3588\"* there|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1510\"* resurrection." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, Moses|strong=\"G3475\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* us|strong=\"G3004\"* that|strong=\"G2443\"* if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"*’s|strong=\"G2192\"* brother dies having|strong=\"G2192\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* childless, his|strong=\"G2983\"* brother should|strong=\"G5100\"* take|strong=\"G2983\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* raise|strong=\"G2532\"* up|strong=\"G1817\"* children|strong=\"G4690\"* for|strong=\"G2532\"* his|strong=\"G2983\"* brother." + }, + { + "verseNum": 29, + "text": "There|strong=\"G2532\"* were|strong=\"G1510\"* therefore|strong=\"G3767\"* seven|strong=\"G2033\"* brothers. The|strong=\"G2532\"* first|strong=\"G4413\"* took|strong=\"G2983\"* a|strong=\"G2532\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* died|strong=\"G3588\"* childless." + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* took|strong=\"G2532\"* her|strong=\"G3588\"* as|strong=\"G2532\"* wife, and|strong=\"G2532\"* he|strong=\"G2532\"* died|strong=\"G3588\"* childless." + }, + { + "verseNum": 31, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* took|strong=\"G2983\"* her|strong=\"G1438\"*, and|strong=\"G2532\"* likewise|strong=\"G5615\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* all|strong=\"G2532\"* left|strong=\"G2641\"* no|strong=\"G3756\"* children|strong=\"G5043\"*, and|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Afterward|strong=\"G5305\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* also|strong=\"G2532\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G3767\"* in|strong=\"G1722\"* the|strong=\"G1722\"* resurrection whose|strong=\"G5101\"* wife|strong=\"G1135\"* of|strong=\"G1722\"* them|strong=\"G3588\"* will|strong=\"G5101\"* she|strong=\"G1063\"* be|strong=\"G1096\"*? For|strong=\"G1063\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* had|strong=\"G2192\"* her|strong=\"G1438\"* as|strong=\"G1722\"* a|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w this|strong=\"G3778\"\\+w* age \\+w marry|strong=\"G1060\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w considered|strong=\"G2661\"\\+w* \\+w worthy|strong=\"G2661\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w attain|strong=\"G5177\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* age \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w marry|strong=\"G1060\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w given|strong=\"G1061\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w marriage|strong=\"G1061\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* die \\+w any|strong=\"G2089\"\\+w* \\+w more|strong=\"G2089\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w like|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w angels|strong=\"G2465\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w being|strong=\"G1510\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection. *" + }, + { + "verseNum": 37, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w raised|strong=\"G1453\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w showed|strong=\"G3377\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* bush, \\+w when|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* ‘\\+w The|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* Abraham, \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Isaac|strong=\"G2464\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Jacob|strong=\"G2384\"\\+w*.’ *+ 20:37 Exodus 3:6*" + }, + { + "verseNum": 38, + "text": "\\+w Now|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w living|strong=\"G2198\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w to|strong=\"G3756\"\\+w* him.”*" + }, + { + "verseNum": 39, + "text": "Some|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1161\"* scribes|strong=\"G1122\"* answered|strong=\"G3004\"*, “Teacher|strong=\"G1320\"*, you|strong=\"G3004\"* speak|strong=\"G3004\"* well|strong=\"G2573\"*.”" + }, + { + "verseNum": 40, + "text": "They|strong=\"G1063\"* didn’t dare|strong=\"G5111\"* to|strong=\"G5111\"* ask|strong=\"G1905\"* him|strong=\"G1905\"* any|strong=\"G3762\"* more|strong=\"G3765\"* questions|strong=\"G1905\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G4459\"\\+w* \\+w do|strong=\"G3004\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w David|strong=\"G1138\"\\+w*’s \\+w son|strong=\"G5207\"\\+w*? *" + }, + { + "verseNum": 42, + "text": "\\+w David|strong=\"G1138\"\\+w* himself \\+w says|strong=\"G3004\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Psalms|strong=\"G5568\"\\+w*,*" + }, + { + "verseNum": 43, + "text": "\\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2193\"\\+w* \\+w make|strong=\"G5087\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w enemies|strong=\"G2190\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w footstool|strong=\"G5286\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w feet|strong=\"G4228\"\\+w*.”’* + 20:43 Psalms 110:1*" + }, + { + "verseNum": 44, + "text": "“\\+w David|strong=\"G1138\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w calls|strong=\"G2564\"\\+w* \\+w him|strong=\"G2564\"\\+w* \\+w Lord|strong=\"G2962\"\\+w*, \\+w so|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*?”*" + }, + { + "verseNum": 45, + "text": "In|strong=\"G3956\"* the|strong=\"G3956\"* hearing of|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* people|strong=\"G2992\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* his|strong=\"G3956\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 46, + "text": "“\\+w Beware|strong=\"G4337\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w scribes|strong=\"G1122\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w like|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w long|strong=\"G4749\"\\+w* \\+w robes|strong=\"G4749\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w love|strong=\"G5368\"\\+w* greetings \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* marketplaces, \\+w the|strong=\"G1722\"\\+w* best \\+w seats|strong=\"G4410\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* best \\+w places|strong=\"G4411\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w feasts|strong=\"G1173\"\\+w*; *" + }, + { + "verseNum": 47, + "text": "\\+w who|strong=\"G3739\"\\+w* \\+w devour|strong=\"G2719\"\\+w* \\+w widows|strong=\"G5503\"\\+w*’ \\+w houses|strong=\"G3614\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pretense|strong=\"G4392\"\\+w* \\+w make|strong=\"G4336\"\\+w* \\+w long|strong=\"G3117\"\\+w* \\+w prayers|strong=\"G4336\"\\+w*. \\+w These|strong=\"G3778\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* greater \\+w condemnation|strong=\"G2917\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G1161\"* looked|strong=\"G3708\"* up|strong=\"G1519\"* and|strong=\"G1161\"* saw|strong=\"G3708\"* the|strong=\"G1519\"* rich|strong=\"G4145\"* people|strong=\"G4145\"* who|strong=\"G3588\"* were|strong=\"G3588\"* putting their|strong=\"G1519\"* gifts|strong=\"G1435\"* into|strong=\"G1519\"* the|strong=\"G1519\"* treasury|strong=\"G1049\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* saw|strong=\"G3708\"* a|strong=\"G3708\"* certain|strong=\"G5100\"* poor|strong=\"G3998\"* widow|strong=\"G5503\"* casting|strong=\"G5100\"* in|strong=\"G1161\"* two|strong=\"G1417\"* small|strong=\"G3016\"* brass coins|strong=\"G3016\"*.+ 21:2 literally, “two lepta.” 2 lepta was about 1% of a day’s wages for an agricultural laborer.*" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Truly \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w widow|strong=\"G5503\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, *" + }, + { + "verseNum": 4, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w put|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w gifts|strong=\"G1435\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w God|strong=\"G1519\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w their|strong=\"G3956\"\\+w* \\+w abundance|strong=\"G4052\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w she|strong=\"G1161\"\\+w*, \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1519\"\\+w* \\+w poverty|strong=\"G5303\"\\+w*, \\+w put|strong=\"G3956\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w live|strong=\"G2192\"\\+w* \\+w on|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "As|strong=\"G2532\"* some|strong=\"G5100\"* were|strong=\"G3588\"* talking|strong=\"G3004\"* about|strong=\"G4012\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* how|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G3588\"* decorated with|strong=\"G2532\"* beautiful|strong=\"G2570\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* gifts, he|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 6, + "text": "“\\+w As|strong=\"G1722\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w see|strong=\"G2334\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w there|strong=\"G1722\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* left \\+w here|strong=\"G3778\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w another|strong=\"G3037\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G3756\"\\+w* thrown \\+w down|strong=\"G2647\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, so|strong=\"G3767\"* when|strong=\"G3752\"* will|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1096\"*? What|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* happen|strong=\"G1096\"*?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “Watch \\+w out|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w get|strong=\"G2532\"\\+w* \\+w led|strong=\"G4105\"\\+w* \\+w astray|strong=\"G4105\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w saying|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w**+ 21:8 or, I AM*,’ \\+w and|strong=\"G2532\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w hand|strong=\"G1448\"\\+w*.’ \\+w Therefore|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w follow|strong=\"G3694\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* hear \\+w of|strong=\"G2532\"\\+w* \\+w wars|strong=\"G4171\"\\+w* \\+w and|strong=\"G2532\"\\+w* disturbances, don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w terrified|strong=\"G4422\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w happen|strong=\"G1096\"\\+w* \\+w first|strong=\"G4413\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w immediately|strong=\"G2112\"\\+w*.”*" + }, + { + "verseNum": 10, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Nation|strong=\"G1484\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rise|strong=\"G1453\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w nation|strong=\"G1484\"\\+w*, \\+w and|strong=\"G2532\"\\+w* kingdom \\+w against|strong=\"G1909\"\\+w* kingdom. *" + }, + { + "verseNum": 11, + "text": "\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w earthquakes|strong=\"G4578\"\\+w*, \\+w famines|strong=\"G3042\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w plagues|strong=\"G3061\"\\+w* \\+w in|strong=\"G2596\"\\+w* \\+w various|strong=\"G2596\"\\+w* \\+w places|strong=\"G5117\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w terrors|strong=\"G5400\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G3173\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w lay|strong=\"G1911\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w delivering|strong=\"G3860\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w up|strong=\"G3860\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prisons|strong=\"G5438\"\\+w*, bringing \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w governors|strong=\"G2232\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1752\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w It|strong=\"G1519\"\\+w* \\+w will|strong=\"G4771\"\\+w* turn \\+w out|strong=\"G1519\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w testimony|strong=\"G3142\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Settle|strong=\"G5087\"\\+w* \\+w it|strong=\"G5087\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w to|strong=\"G1722\"\\+w* meditate \\+w beforehand|strong=\"G4304\"\\+w* \\+w how|strong=\"G1722\"\\+w* \\+w to|strong=\"G1722\"\\+w* answer, *" + }, + { + "verseNum": 15, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w mouth|strong=\"G4750\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wisdom|strong=\"G4678\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w all|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* adversaries \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* withstand \\+w or|strong=\"G2228\"\\+w* \\+w to|strong=\"G2532\"\\+w* contradict. *" + }, + { + "verseNum": 16, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w handed|strong=\"G3860\"\\+w* \\+w over|strong=\"G3860\"\\+w* \\+w even|strong=\"G2532\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, brothers, \\+w relatives|strong=\"G4773\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w cause|strong=\"G2289\"\\+w* \\+w some|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w put|strong=\"G2289\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w death|strong=\"G2289\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w You|strong=\"G1510\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w men|strong=\"G3956\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w And|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hair|strong=\"G2359\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w head|strong=\"G2776\"\\+w* \\+w will|strong=\"G2532\"\\+w* perish.*" + }, + { + "verseNum": 19, + "text": "“\\+w By|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w endurance|strong=\"G5281\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G5590\"\\+w* win \\+w your|strong=\"G1722\"\\+w* \\+w lives|strong=\"G5590\"\\+w*.*" + }, + { + "verseNum": 20, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w surrounded|strong=\"G2944\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w armies|strong=\"G4760\"\\+w*, \\+w then|strong=\"G5119\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w its|strong=\"G3752\"\\+w* \\+w desolation|strong=\"G2050\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w at|strong=\"G1161\"\\+w* \\+w hand|strong=\"G1448\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*. \\+w Let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w middle|strong=\"G3319\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w her|strong=\"G1438\"\\+w* depart. \\+w Let|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w country|strong=\"G5561\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w therein|strong=\"G1722\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w vengeance|strong=\"G1557\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w may|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* fulfilled. *" + }, + { + "verseNum": 23, + "text": "\\+w Woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w pregnant|strong=\"G1064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* nurse infants \\+w in|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w days|strong=\"G2250\"\\+w*! \\+w For|strong=\"G1063\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w great|strong=\"G3173\"\\+w* distress \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w land|strong=\"G1093\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wrath|strong=\"G3709\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w people|strong=\"G2992\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w fall|strong=\"G4098\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w edge|strong=\"G4750\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sword|strong=\"G3162\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* led captive \\+w into|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w trampled|strong=\"G3961\"\\+w* \\+w down|strong=\"G4098\"\\+w* \\+w by|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w until|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w of|strong=\"G5259\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w There|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sun|strong=\"G2246\"\\+w*, \\+w moon|strong=\"G4582\"\\+w*, \\+w and|strong=\"G2532\"\\+w* stars; \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w* anxiety \\+w of|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, \\+w in|strong=\"G1722\"\\+w* perplexity \\+w for|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w roaring|strong=\"G2279\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sea|strong=\"G2281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w waves|strong=\"G4535\"\\+w*; *" + }, + { + "verseNum": 26, + "text": "\\+w men|strong=\"G3588\"\\+w* fainting \\+w for|strong=\"G1063\"\\+w* \\+w fear|strong=\"G5401\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w expectation|strong=\"G4329\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G1904\"\\+w* \\+w on|strong=\"G5401\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G3625\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w powers|strong=\"G1411\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w heavens|strong=\"G3772\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w shaken|strong=\"G4531\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w cloud|strong=\"G3507\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w great|strong=\"G4183\"\\+w* \\+w glory|strong=\"G1391\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G1161\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w look|strong=\"G1096\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heads|strong=\"G2776\"\\+w*, \\+w because|strong=\"G1360\"\\+w* \\+w your|strong=\"G2532\"\\+w* redemption \\+w is|strong=\"G3588\"\\+w* \\+w near|strong=\"G1448\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* a|strong=\"G2532\"* parable|strong=\"G3850\"*. “\\+w See|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G1186\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w trees|strong=\"G1186\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w When|strong=\"G3752\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* budding, \\+w you|strong=\"G3752\"\\+w* \\+w see|strong=\"G1097\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w and|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w by|strong=\"G1097\"\\+w* \\+w your|strong=\"G1438\"\\+w* \\+w own|strong=\"G1438\"\\+w* \\+w selves|strong=\"G1438\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w summer|strong=\"G2330\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w happening|strong=\"G1096\"\\+w*, \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w near|strong=\"G1451\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w this|strong=\"G3778\"\\+w* \\+w generation|strong=\"G1074\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w pass|strong=\"G1096\"\\+w* \\+w away|strong=\"G3928\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w accomplished|strong=\"G1096\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3361\"\\+w* \\+w pass|strong=\"G3928\"\\+w* \\+w away|strong=\"G3928\"\\+w*.*" + }, + { + "verseNum": 34, + "text": "“\\+w So|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w careful|strong=\"G4337\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* loaded down \\+w with|strong=\"G1722\"\\+w* carousing, \\+w drunkenness|strong=\"G3178\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w cares|strong=\"G3308\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w this|strong=\"G3588\"\\+w* life, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2186\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* suddenly. *" + }, + { + "verseNum": 35, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w it|strong=\"G1063\"\\+w* \\+w will|strong=\"G3956\"\\+w* \\+w come|strong=\"G1904\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w snare|strong=\"G3803\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dwell|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G3956\"\\+w* surface \\+w of|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w Therefore|strong=\"G1161\"\\+w* \\+w be|strong=\"G1096\"\\+w* watchful \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G2540\"\\+w*, \\+w praying|strong=\"G1189\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* counted worthy \\+w to|strong=\"G2443\"\\+w* \\+w escape|strong=\"G1628\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w happen|strong=\"G1096\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Every|strong=\"G1722\"* day|strong=\"G2250\"* Jesus|strong=\"G1510\"* was|strong=\"G1510\"* teaching|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G1161\"* every|strong=\"G1722\"* night|strong=\"G3571\"* he|strong=\"G1161\"* would|strong=\"G1722\"* go|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* spend the|strong=\"G1722\"* night|strong=\"G3571\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"* that|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G2564\"* Olivet." + }, + { + "verseNum": 38, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"* came|strong=\"G2532\"* early|strong=\"G3719\"* in|strong=\"G1722\"* the|strong=\"G1722\"* morning|strong=\"G3719\"* to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* to|strong=\"G4314\"* hear him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* unleavened bread, which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*, was|strong=\"G3588\"* approaching|strong=\"G1448\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* sought|strong=\"G2212\"* how|strong=\"G4459\"* they|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* death, for|strong=\"G1063\"* they|strong=\"G2532\"* feared|strong=\"G5399\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 3, + "text": "Satan|strong=\"G4567\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* also|strong=\"G1161\"* called|strong=\"G2564\"* Iscariot|strong=\"G2469\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* counted with|strong=\"G1537\"* the|strong=\"G1519\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* talked with|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests and|strong=\"G2532\"* captains|strong=\"G4755\"* about|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* were|strong=\"G2532\"* glad|strong=\"G5463\"*, and|strong=\"G2532\"* agreed|strong=\"G4934\"* to|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G1325\"* money." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* consented|strong=\"G1843\"* and|strong=\"G2532\"* sought|strong=\"G2212\"* an|strong=\"G2532\"* opportunity|strong=\"G2120\"* to|strong=\"G2532\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* absence of|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread came|strong=\"G2064\"*, on|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"* must|strong=\"G1163\"* be|strong=\"G1163\"* sacrificed|strong=\"G2380\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G3004\"* sent|strong=\"G2532\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, saying|strong=\"G3004\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w us|strong=\"G3004\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* do|strong=\"G3004\"* you|strong=\"G3004\"* want|strong=\"G2309\"* us|strong=\"G3004\"* to|strong=\"G3004\"* prepare|strong=\"G2090\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w a|strong=\"G1519\"\\+w* \\+w man|strong=\"G3739\"\\+w* carrying \\+w a|strong=\"G1519\"\\+w* \\+w pitcher|strong=\"G2765\"\\+w* \\+w of|strong=\"G4172\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w meet|strong=\"G4876\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Follow|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w enters|strong=\"G1525\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w master|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w house|strong=\"G3614\"\\+w*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, “\\+w Where|strong=\"G3699\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w guest|strong=\"G2646\"\\+w* \\+w room|strong=\"G2646\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*?”’ *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G1563\"\\+w* \\+w will|strong=\"G2548\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2090\"\\+w* \\+w large|strong=\"G3173\"\\+w*, \\+w furnished|strong=\"G4766\"\\+w* upper room. \\+w Make|strong=\"G2090\"\\+w* preparations \\+w there|strong=\"G1563\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* went|strong=\"G2532\"*, found|strong=\"G2147\"* things|strong=\"G3588\"* as|strong=\"G2531\"* Jesus|strong=\"G3004\"* had|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* prepared|strong=\"G2090\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* come|strong=\"G1096\"*, he|strong=\"G2532\"* sat|strong=\"G2532\"* down with|strong=\"G4862\"* the|strong=\"G2532\"* twelve apostles." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w earnestly|strong=\"G1939\"\\+w* \\+w desired|strong=\"G1937\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w Passover|strong=\"G3957\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w suffer|strong=\"G3958\"\\+w*, *" + }, + { + "verseNum": 16, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1063\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w any|strong=\"G3361\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* received|strong=\"G2983\"* a|strong=\"G2532\"* cup|strong=\"G4221\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2983\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w share|strong=\"G1266\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w among|strong=\"G1519\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1063\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1063\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w at|strong=\"G3756\"\\+w* \\+w all|strong=\"G3361\"\\+w* \\+w again|strong=\"G2193\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w fruit|strong=\"G1081\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3588\"\\+w* vine, \\+w until|strong=\"G2193\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom \\+w comes|strong=\"G2064\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* bread, and|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w body|strong=\"G4983\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w in|strong=\"G1519\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Likewise|strong=\"G5615\"*, he|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* after|strong=\"G3326\"* supper|strong=\"G1172\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w covenant|strong=\"G1242\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* blood, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w poured|strong=\"G1632\"\\+w* \\+w out|strong=\"G1632\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G4133\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1909\"\\+w* \\+w hand|strong=\"G5495\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w betrays|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w table|strong=\"G5132\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G1223\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3739\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w as|strong=\"G2596\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G3739\"\\+w* been \\+w determined|strong=\"G3724\"\\+w*, \\+w but|strong=\"G4133\"\\+w* \\+w woe|strong=\"G3759\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w man|strong=\"G3739\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w betrayed|strong=\"G3860\"\\+w*!”*" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* began to|strong=\"G4314\"* question|strong=\"G4802\"* among|strong=\"G1537\"* themselves|strong=\"G1438\"* which|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"* it|strong=\"G2532\"* was|strong=\"G1510\"* who|strong=\"G5101\"* would|strong=\"G3195\"* do|strong=\"G4238\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 24, + "text": "A|strong=\"G1096\"* dispute|strong=\"G5379\"* also|strong=\"G2532\"* arose|strong=\"G1096\"* among|strong=\"G1722\"* them|strong=\"G3588\"*, which|strong=\"G3588\"* of|strong=\"G2532\"* them|strong=\"G3588\"* was|strong=\"G1510\"* considered to|strong=\"G2532\"* be|strong=\"G1096\"* greatest|strong=\"G3173\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w lord|strong=\"G3588\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w over|strong=\"G2961\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w authority|strong=\"G1850\"\\+w* \\+w over|strong=\"G2961\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* ‘\\+w benefactors|strong=\"G2110\"\\+w*.’ *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Rather|strong=\"G3756\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w let|strong=\"G1096\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w younger|strong=\"G3501\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* governing, \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w serves|strong=\"G1247\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w*, \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* sits \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* table, \\+w or|strong=\"G2228\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w serves|strong=\"G1247\"\\+w*? Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G5101\"\\+w* sits \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* table? \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w serves|strong=\"G1247\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "“\\+w But|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G1473\"\\+w* continued \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w trials|strong=\"G3986\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w I|strong=\"G1473\"\\+w* confer \\+w on|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G4771\"\\+w* kingdom, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* conferred \\+w on|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w*, *" + }, + { + "verseNum": 30, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w table|strong=\"G5132\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* Kingdom. \\+w You|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2521\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w thrones|strong=\"G2362\"\\+w*, \\+w judging|strong=\"G2919\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w tribes|strong=\"G5443\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "The|strong=\"G3588\"* Lord|strong=\"G3588\"* said, “\\+w Simon|strong=\"G4613\"\\+w*, \\+w Simon|strong=\"G4613\"\\+w*, \\+w behold|strong=\"G2400\"\\+w*, \\+w Satan|strong=\"G4567\"\\+w* asked \\+w to|strong=\"G3708\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w all|strong=\"G3588\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w might|strong=\"G5210\"\\+w* \\+w sift|strong=\"G4617\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w wheat|strong=\"G4621\"\\+w*, *" + }, + { + "verseNum": 32, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w prayed|strong=\"G1189\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w faith|strong=\"G4102\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w fail|strong=\"G1587\"\\+w*. \\+w You|strong=\"G4771\"\\+w*, \\+w when|strong=\"G1161\"\\+w* \\+w once|strong=\"G4218\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w turned|strong=\"G1994\"\\+w* \\+w again|strong=\"G1994\"\\+w*, \\+w establish|strong=\"G4741\"\\+w* \\+w your|strong=\"G2532\"\\+w* brothers.”*+ 22:32 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, I|strong=\"G2532\"* am|strong=\"G1510\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* go|strong=\"G4198\"* with|strong=\"G3326\"* you|strong=\"G4771\"* both|strong=\"G2532\"* to|strong=\"G1519\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* to|strong=\"G1519\"* death|strong=\"G2288\"*!”" + }, + { + "verseNum": 34, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Peter|strong=\"G4074\"\\+w*, \\+w the|strong=\"G1161\"\\+w* rooster \\+w will|strong=\"G1473\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3004\"\\+w* \\+w crow|strong=\"G5455\"\\+w* \\+w today|strong=\"G4594\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3753\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w without|strong=\"G3361\"\\+w* purse, \\+w bag|strong=\"G4082\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w sandals|strong=\"G5266\"\\+w*, \\+w did|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w lack|strong=\"G5302\"\\+w* \\+w anything|strong=\"G5100\"\\+w*?”*" + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w whoever|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* purse, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w likewise|strong=\"G3668\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w bag|strong=\"G4082\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w none|strong=\"G3361\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w sell|strong=\"G4453\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w cloak|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* buy \\+w a|strong=\"G2192\"\\+w* \\+w sword|strong=\"G3162\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w must|strong=\"G1163\"\\+w* still \\+w be|strong=\"G2532\"\\+w* \\+w fulfilled|strong=\"G5055\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*: ‘\\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w counted|strong=\"G3049\"\\+w* \\+w with|strong=\"G3326\"\\+w* transgressors.’*+ 22:37 Isaiah 53:12* \\+w For|strong=\"G1063\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3588\"\\+w* concerns \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w being|strong=\"G2532\"\\+w* \\+w fulfilled|strong=\"G5055\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, behold|strong=\"G2400\"*, here|strong=\"G5602\"* are|strong=\"G1510\"* two|strong=\"G1417\"* swords|strong=\"G3162\"*.”" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"*, as|strong=\"G1519\"* his|strong=\"G1519\"* custom|strong=\"G1485\"* was|strong=\"G3588\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* Mount|strong=\"G3735\"* of|strong=\"G2532\"* Olives|strong=\"G1636\"*. His|strong=\"G1519\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* followed him|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1096\"* at|strong=\"G1909\"* the|strong=\"G1519\"* place|strong=\"G5117\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* was|strong=\"G3588\"* withdrawn from|strong=\"G2532\"* them|strong=\"G3588\"* about|strong=\"G5616\"* a|strong=\"G2532\"* stone|strong=\"G3037\"*’s throw|strong=\"G1000\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*," + }, + { + "verseNum": 42, + "text": "saying|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w willing|strong=\"G1014\"\\+w*, \\+w remove|strong=\"G3911\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w from|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w not|strong=\"G3361\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G1487\"\\+w* \\+w yours|strong=\"G4674\"\\+w*, \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w*.”*" + }, + { + "verseNum": 43, + "text": "An|strong=\"G1161\"* angel from|strong=\"G3772\"* heaven|strong=\"G3772\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* him|strong=\"G3708\"*, strengthening|strong=\"G1765\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 44, + "text": "Being|strong=\"G1096\"* in|strong=\"G1722\"* agony, he|strong=\"G2532\"* prayed|strong=\"G4336\"* more|strong=\"G2532\"* earnestly|strong=\"G1617\"*. His|strong=\"G1909\"* sweat|strong=\"G2402\"* became|strong=\"G1096\"* like|strong=\"G5616\"* great|strong=\"G2532\"* drops|strong=\"G2361\"* of|strong=\"G2532\"* blood falling|strong=\"G1096\"* down|strong=\"G2597\"* on|strong=\"G1909\"* the|strong=\"G1722\"* ground|strong=\"G1093\"*." + }, + { + "verseNum": 45, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* from|strong=\"G2064\"* his|strong=\"G1438\"* prayer|strong=\"G4335\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* found|strong=\"G2147\"* them|strong=\"G3588\"* sleeping|strong=\"G2837\"* because|strong=\"G4314\"* of|strong=\"G2532\"* grief|strong=\"G3077\"*," + }, + { + "verseNum": 46, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3004\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w sleep|strong=\"G2518\"\\+w*? Rise \\+w and|strong=\"G2532\"\\+w* \\+w pray|strong=\"G4336\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w temptation|strong=\"G3986\"\\+w*.”*" + }, + { + "verseNum": 47, + "text": "While|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, a|strong=\"G2532\"* crowd|strong=\"G3793\"* appeared|strong=\"G3708\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G3004\"* Judas|strong=\"G2455\"*, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, was|strong=\"G3588\"* leading them|strong=\"G3588\"*. He|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* to|strong=\"G2532\"* kiss|strong=\"G5368\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 48, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Judas|strong=\"G2455\"\\+w*, \\+w do|strong=\"G3004\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w with|strong=\"G3588\"\\+w* \\+w a|strong=\"G1161\"\\+w* \\+w kiss|strong=\"G5370\"\\+w*?”*" + }, + { + "verseNum": 49, + "text": "When|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* around|strong=\"G4012\"* him|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1510\"* about|strong=\"G4012\"* to|strong=\"G3004\"* happen|strong=\"G1510\"*, they|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, shall|strong=\"G2962\"* we|strong=\"G1161\"* strike|strong=\"G3960\"* with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*?”" + }, + { + "verseNum": 50, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"* struck|strong=\"G3960\"* the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G1537\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* cut|strong=\"G2532\"* off|strong=\"G1537\"* his|strong=\"G2532\"* right|strong=\"G1188\"* ear|strong=\"G3775\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w Let|strong=\"G1439\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w at|strong=\"G1161\"\\+w* least \\+w do|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w*”*—and|strong=\"G2532\"* he|strong=\"G2532\"* touched his|strong=\"G2532\"* ear|strong=\"G5621\"* and|strong=\"G2532\"* healed|strong=\"G2390\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 52, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests, captains|strong=\"G4755\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* elders|strong=\"G4245\"*, who|strong=\"G3588\"* had|strong=\"G2424\"* come|strong=\"G1831\"* against|strong=\"G1909\"* him|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w come|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w robber|strong=\"G3027\"\\+w*, \\+w with|strong=\"G3326\"\\+w* \\+w swords|strong=\"G3162\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w clubs|strong=\"G3586\"\\+w*? *" + }, + { + "verseNum": 53, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w* \\+w daily|strong=\"G2250\"\\+w*, \\+w you|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w But|strong=\"G2532\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w darkness|strong=\"G4655\"\\+w*.” *" + }, + { + "verseNum": 54, + "text": "They|strong=\"G2532\"* seized|strong=\"G4815\"* him|strong=\"G3588\"* and|strong=\"G2532\"* led|strong=\"G1521\"* him|strong=\"G3588\"* away|strong=\"G3113\"*, and|strong=\"G2532\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest’s house|strong=\"G3614\"*. But|strong=\"G1161\"* Peter|strong=\"G4074\"* followed from|strong=\"G2532\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*." + }, + { + "verseNum": 55, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* kindled a|strong=\"G2532\"* fire|strong=\"G4442\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* courtyard and|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2521\"* down|strong=\"G2521\"* together|strong=\"G4776\"*, Peter|strong=\"G4074\"* sat|strong=\"G2521\"* among|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 56, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* servant|strong=\"G3588\"* girl saw|strong=\"G3708\"* him|strong=\"G3588\"* as|strong=\"G1161\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* in|strong=\"G2532\"* the|strong=\"G2532\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* looking|strong=\"G2532\"* intently at|strong=\"G4314\"* him|strong=\"G3588\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 57, + "text": "He|strong=\"G1161\"* denied Jesus|strong=\"G3004\"*, saying|strong=\"G3004\"*, “Woman|strong=\"G1135\"*, I|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 58, + "text": "After|strong=\"G3326\"* a|strong=\"G2532\"* little|strong=\"G1024\"* while|strong=\"G1161\"* someone|strong=\"G2087\"* else|strong=\"G2087\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G5346\"*, “You|strong=\"G4771\"* also|strong=\"G2532\"* are|strong=\"G1510\"* one|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"*!”" + }, + { + "verseNum": 59, + "text": "After|strong=\"G3326\"* about|strong=\"G5616\"* one|strong=\"G1520\"* hour|strong=\"G5610\"* passed|strong=\"G1339\"*, another|strong=\"G1520\"* confidently|strong=\"G3326\"* affirmed|strong=\"G1340\"*, saying|strong=\"G3004\"*, “Truly|strong=\"G1909\"* this|strong=\"G3778\"* man|strong=\"G5100\"* also|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G2532\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* Galilean|strong=\"G1057\"*!”" + }, + { + "verseNum": 60, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Man|strong=\"G3739\"*, I|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* talking|strong=\"G2980\"* about|strong=\"G2980\"*!” Immediately|strong=\"G3916\"*, while|strong=\"G2980\"* he|strong=\"G2532\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"*, a|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 61, + "text": "The|strong=\"G2532\"* Lord|strong=\"G2962\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* looked|strong=\"G1689\"* at|strong=\"G1689\"* Peter|strong=\"G4074\"*. Then|strong=\"G2532\"* Peter|strong=\"G4074\"* remembered|strong=\"G5279\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G3056\"*, how|strong=\"G5613\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Before|strong=\"G4250\"\\+w* \\+w the|strong=\"G2532\"\\+w* rooster \\+w crows|strong=\"G5455\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.”*" + }, + { + "verseNum": 62, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* wept|strong=\"G2799\"* bitterly|strong=\"G4090\"*." + }, + { + "verseNum": 63, + "text": "The|strong=\"G2532\"* men|strong=\"G3588\"* who|strong=\"G3588\"* held|strong=\"G4912\"* Jesus|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"* and|strong=\"G2532\"* beat|strong=\"G1194\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 64, + "text": "Having|strong=\"G2532\"* blindfolded|strong=\"G4028\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* struck|strong=\"G3817\"* him|strong=\"G3588\"* on|strong=\"G3004\"* the|strong=\"G2532\"* face and|strong=\"G2532\"* asked|strong=\"G1905\"* him|strong=\"G3588\"*, “Prophesy|strong=\"G4395\"*! Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G5101\"* struck|strong=\"G3817\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 65, + "text": "They|strong=\"G2532\"* spoke|strong=\"G3004\"* many|strong=\"G4183\"* other|strong=\"G2087\"* things|strong=\"G4183\"* against|strong=\"G1519\"* him|strong=\"G2532\"*, insulting him|strong=\"G2532\"*." + }, + { + "verseNum": 66, + "text": "As|strong=\"G5613\"* soon|strong=\"G5613\"* as|strong=\"G5613\"* it|strong=\"G2532\"* was|strong=\"G1510\"* day|strong=\"G2250\"*, the|strong=\"G2532\"* assembly of|strong=\"G2250\"* the|strong=\"G2532\"* elders|strong=\"G4244\"* of|strong=\"G2250\"* the|strong=\"G2532\"* people|strong=\"G2992\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*, both|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* led him|strong=\"G3588\"* away into|strong=\"G1519\"* their|strong=\"G2532\"* council|strong=\"G4892\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 67, + "text": "“If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"*, tell|strong=\"G3004\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 68, + "text": "\\+w and|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w ask|strong=\"G2065\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2065\"\\+w* \\+w in|strong=\"G3756\"\\+w* \\+w no|strong=\"G3756\"\\+w* way answer \\+w me|strong=\"G2065\"\\+w* \\+w or|strong=\"G1161\"\\+w* \\+w let|strong=\"G1161\"\\+w* \\+w me|strong=\"G2065\"\\+w* go. *" + }, + { + "verseNum": 69, + "text": "\\+w From|strong=\"G1537\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w on|strong=\"G1537\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w seated|strong=\"G2521\"\\+w* \\+w at|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 70, + "text": "They|strong=\"G1161\"* all|strong=\"G3956\"* said|strong=\"G3004\"*, “Are|strong=\"G1510\"* you|strong=\"G5210\"* then|strong=\"G3767\"* the|strong=\"G3956\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 71, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G1063\"* need|strong=\"G5532\"* any|strong=\"G2089\"* more|strong=\"G2089\"* witness|strong=\"G3141\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* ourselves have|strong=\"G2192\"* heard from|strong=\"G3588\"* his|strong=\"G2192\"* own mouth|strong=\"G4750\"*!”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* whole company|strong=\"G4128\"* of|strong=\"G2532\"* them|strong=\"G3588\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* before|strong=\"G1909\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “We|strong=\"G2249\"* found|strong=\"G2147\"* this|strong=\"G3778\"* man|strong=\"G3778\"* perverting|strong=\"G1294\"* the|strong=\"G2532\"* nation|strong=\"G1484\"*, forbidding|strong=\"G2967\"* paying taxes|strong=\"G5411\"* to|strong=\"G2532\"* Caesar|strong=\"G2541\"*, and|strong=\"G2532\"* saying|strong=\"G3004\"* that|strong=\"G3588\"* he|strong=\"G2532\"* himself|strong=\"G1438\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*, a|strong=\"G2532\"* king|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Pilate|strong=\"G4091\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G1161\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 4, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*, “I|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3762\"* basis for|strong=\"G4314\"* a|strong=\"G2532\"* charge against|strong=\"G4314\"* this|strong=\"G3778\"* man|strong=\"G3778\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* insisted, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* stirs up|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, teaching|strong=\"G1321\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, beginning from|strong=\"G2532\"* Galilee|strong=\"G1056\"* even|strong=\"G2532\"* to|strong=\"G2532\"* this|strong=\"G3588\"* place|strong=\"G5602\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Pilate|strong=\"G4091\"* heard Galilee|strong=\"G1057\"* mentioned, he|strong=\"G1161\"* asked|strong=\"G1905\"* if|strong=\"G1487\"* the|strong=\"G1161\"* man was|strong=\"G1510\"* a|strong=\"G1510\"* Galilean|strong=\"G1057\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G1921\"* out|strong=\"G1537\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Herod|strong=\"G2264\"*’s jurisdiction|strong=\"G1849\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* Herod|strong=\"G2264\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* during|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Herod|strong=\"G2264\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* exceedingly|strong=\"G3029\"* glad|strong=\"G5463\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2424\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"* for|strong=\"G1063\"* a|strong=\"G1096\"* long|strong=\"G2425\"* time|strong=\"G5550\"*, because|strong=\"G1223\"* he|strong=\"G2532\"* had|strong=\"G2424\"* heard many|strong=\"G2425\"* things|strong=\"G3588\"* about|strong=\"G4012\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* hoped|strong=\"G1679\"* to|strong=\"G2532\"* see|strong=\"G3708\"* some|strong=\"G5100\"* miracle|strong=\"G4592\"* done|strong=\"G1096\"* by|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G1161\"* questioned|strong=\"G1905\"* him|strong=\"G1905\"* with|strong=\"G1722\"* many|strong=\"G2425\"* words|strong=\"G3056\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* gave|strong=\"G3762\"* no|strong=\"G3762\"* answers." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"* stood|strong=\"G2476\"*, vehemently|strong=\"G2159\"* accusing|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Herod|strong=\"G2264\"* with|strong=\"G4862\"* his|strong=\"G2532\"* soldiers|strong=\"G4753\"* humiliated him|strong=\"G3588\"* and|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*. Dressing|strong=\"G4016\"* him|strong=\"G3588\"* in|strong=\"G2532\"* luxurious clothing|strong=\"G2066\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* him|strong=\"G3588\"* back to|strong=\"G2532\"* Pilate|strong=\"G4091\"*." + }, + { + "verseNum": 12, + "text": "Herod|strong=\"G2264\"* and|strong=\"G2532\"* Pilate|strong=\"G4091\"* became|strong=\"G1096\"* friends|strong=\"G5384\"* with|strong=\"G3326\"* each|strong=\"G1438\"* other|strong=\"G1161\"* that|strong=\"G3588\"* very|strong=\"G2532\"* day|strong=\"G2250\"*, for|strong=\"G1063\"* before|strong=\"G4314\"* that|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G1510\"* enemies|strong=\"G2189\"* with|strong=\"G3326\"* each|strong=\"G1438\"* other|strong=\"G1161\"*." + }, + { + "verseNum": 13, + "text": "Pilate|strong=\"G4091\"* called|strong=\"G4779\"* together|strong=\"G4779\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests, the|strong=\"G2532\"* rulers, and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* brought|strong=\"G4374\"* this|strong=\"G3778\"* man|strong=\"G3778\"* to|strong=\"G4314\"* me|strong=\"G1473\"* as|strong=\"G5613\"* one|strong=\"G3762\"* that|strong=\"G3739\"* perverts the|strong=\"G1722\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, having|strong=\"G2532\"* examined him|strong=\"G3588\"* before|strong=\"G1799\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* found|strong=\"G2147\"* no|strong=\"G3762\"* basis|strong=\"G2596\"* for|strong=\"G4314\"* a|strong=\"G5613\"* charge|strong=\"G2723\"* against|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"* concerning|strong=\"G2596\"* those|strong=\"G3588\"* things|strong=\"G3778\"* of|strong=\"G2532\"* which|strong=\"G3739\"* you|strong=\"G5210\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Neither|strong=\"G3761\"* has|strong=\"G3762\"* Herod|strong=\"G2264\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* sent|strong=\"G2532\"* you|strong=\"G3708\"* to|strong=\"G4314\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* see|strong=\"G3708\"*, nothing|strong=\"G3762\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"* has|strong=\"G3762\"* been|strong=\"G1510\"* done|strong=\"G4238\"* by|strong=\"G4314\"* him|strong=\"G3708\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3767\"* will|strong=\"G3767\"* therefore|strong=\"G3767\"* chastise|strong=\"G3811\"* him and|strong=\"G3767\"* release him.”" + }, + { + "verseNum": 17, + "text": "Now he had to release one prisoner to them at the feast.+ 23:17 NU omits verse 17.*" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* all|strong=\"G1161\"* cried|strong=\"G3588\"* out together|strong=\"G3826\"*, saying|strong=\"G3004\"*, “Away with|strong=\"G3588\"* this|strong=\"G3778\"* man|strong=\"G3778\"*! Release to|strong=\"G3004\"* us|strong=\"G3004\"* Barabbas!”—" + }, + { + "verseNum": 19, + "text": "one|strong=\"G5100\"* who|strong=\"G3588\"* was|strong=\"G1510\"* thrown into|strong=\"G1722\"* prison|strong=\"G5438\"* for|strong=\"G1223\"* a|strong=\"G1096\"* certain|strong=\"G5100\"* revolt in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* murder|strong=\"G5408\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"G1161\"* Pilate|strong=\"G4091\"* spoke|strong=\"G4377\"* to|strong=\"G2309\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, wanting|strong=\"G2309\"* to|strong=\"G2309\"* release Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 21, + "text": "but|strong=\"G1161\"* they|strong=\"G1161\"* shouted|strong=\"G2019\"*, saying|strong=\"G3004\"*, “Crucify|strong=\"G4717\"*! Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 22, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"* the|strong=\"G1722\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, “Why|strong=\"G5101\"*? What|strong=\"G5101\"* evil|strong=\"G2556\"* has|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* done|strong=\"G4160\"*? I|strong=\"G1161\"* have|strong=\"G4160\"* found|strong=\"G2147\"* no|strong=\"G3762\"* capital crime|strong=\"G2147\"* in|strong=\"G1722\"* him|strong=\"G3588\"*. I|strong=\"G1161\"* will|strong=\"G5101\"* therefore|strong=\"G3767\"* chastise|strong=\"G3811\"* him|strong=\"G3588\"* and|strong=\"G1161\"* release him|strong=\"G3588\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* urgent with|strong=\"G2532\"* loud|strong=\"G3173\"* voices|strong=\"G5456\"*, asking that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*. Their|strong=\"G2532\"* voices|strong=\"G5456\"* and|strong=\"G2532\"* the|strong=\"G2532\"* voices|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests prevailed|strong=\"G2729\"*." + }, + { + "verseNum": 24, + "text": "Pilate|strong=\"G4091\"* decreed that|strong=\"G3588\"* what|strong=\"G3588\"* they|strong=\"G2532\"* asked for|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1096\"* done|strong=\"G1096\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* released him|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2424\"* been|strong=\"G2532\"* thrown into|strong=\"G1519\"* prison|strong=\"G5438\"* for|strong=\"G1519\"* insurrection|strong=\"G4714\"* and|strong=\"G2532\"* murder|strong=\"G5408\"*, for|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* asked, but|strong=\"G1161\"* he|strong=\"G2532\"* delivered|strong=\"G3860\"* Jesus|strong=\"G2424\"* up|strong=\"G3860\"* to|strong=\"G1519\"* their|strong=\"G2532\"* will|strong=\"G2307\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G5613\"* they|strong=\"G2532\"* led|strong=\"G2424\"* him|strong=\"G3588\"* away, they|strong=\"G2532\"* grabbed one|strong=\"G5100\"* Simon|strong=\"G4613\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, coming|strong=\"G2064\"* from|strong=\"G2064\"* the|strong=\"G2532\"* country, and|strong=\"G2532\"* laid|strong=\"G2007\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* on|strong=\"G1949\"* him|strong=\"G3588\"* to|strong=\"G2532\"* carry|strong=\"G5342\"* it|strong=\"G2532\"* after|strong=\"G5613\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* followed|strong=\"G2992\"* him|strong=\"G3588\"*, including|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3739\"* also|strong=\"G2532\"* mourned and|strong=\"G2532\"* lamented|strong=\"G2875\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"*, turning|strong=\"G4762\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, said|strong=\"G3004\"*, “\\+w Daughters|strong=\"G2364\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w children|strong=\"G5043\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w barren|strong=\"G4723\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w wombs|strong=\"G2836\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w bore|strong=\"G1080\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w breasts|strong=\"G3149\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w nursed|strong=\"G5142\"\\+w*.’ *" + }, + { + "verseNum": 30, + "text": "\\+w Then|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* begin \\+w to|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w mountains|strong=\"G3735\"\\+w*, ‘\\+w Fall|strong=\"G4098\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w us|strong=\"G3004\"\\+w*!’ \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hills|strong=\"G1015\"\\+w*, ‘\\+w Cover|strong=\"G2572\"\\+w* \\+w us|strong=\"G3004\"\\+w*.’*+ 23:30 Hosea 10:8*" + }, + { + "verseNum": 31, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w green|strong=\"G5200\"\\+w* \\+w tree|strong=\"G3586\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w dry|strong=\"G3584\"\\+w*?”*" + }, + { + "verseNum": 32, + "text": "There|strong=\"G2532\"* were|strong=\"G2532\"* also|strong=\"G2532\"* others|strong=\"G2087\"*, two|strong=\"G1417\"* criminals|strong=\"G2557\"*, led with|strong=\"G4862\"* him|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* put|strong=\"G2532\"* to|strong=\"G2532\"* death." + }, + { + "verseNum": 33, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G5117\"* that|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “The|strong=\"G2532\"* Skull|strong=\"G2898\"*”, they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"* there|strong=\"G1563\"* with|strong=\"G1537\"* the|strong=\"G2532\"* criminals|strong=\"G2557\"*, one|strong=\"G3739\"* on|strong=\"G1909\"* the|strong=\"G2532\"* right|strong=\"G1188\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G2532\"* left." + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, forgive \\+w them|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w they|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w doing|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* people|strong=\"G2992\"* stood|strong=\"G2476\"* watching|strong=\"G2334\"*. The|strong=\"G2532\"* rulers with|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* scoffed at|strong=\"G1161\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “He|strong=\"G2532\"* saved|strong=\"G4982\"* others|strong=\"G3588\"*. Let|strong=\"G1161\"* him|strong=\"G3588\"* save|strong=\"G4982\"* himself|strong=\"G1438\"*, if|strong=\"G1487\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, his|strong=\"G1438\"* chosen|strong=\"G1588\"* one|strong=\"G1438\"*!”" + }, + { + "verseNum": 36, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* also|strong=\"G2532\"* mocked|strong=\"G1702\"* him|strong=\"G3588\"*, coming|strong=\"G4334\"* to|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* offering|strong=\"G4374\"* him|strong=\"G3588\"* vinegar|strong=\"G3690\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"*!”" + }, + { + "verseNum": 38, + "text": "An|strong=\"G2532\"* inscription|strong=\"G1923\"* was|strong=\"G1510\"* also|strong=\"G2532\"* written|strong=\"G3588\"* over|strong=\"G1909\"* him|strong=\"G3588\"* in|strong=\"G1909\"* letters of|strong=\"G2532\"* Greek, Latin, and|strong=\"G2532\"* Hebrew: “THIS|strong=\"G3778\"* IS|strong=\"G1510\"* THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 39, + "text": "One|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* criminals|strong=\"G2557\"* who|strong=\"G3588\"* was|strong=\"G1510\"* hanged|strong=\"G2910\"* insulted him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “If|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, save|strong=\"G4982\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* us|strong=\"G3004\"*!”" + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* other|strong=\"G2087\"* answered|strong=\"G5346\"*, and|strong=\"G1161\"* rebuking|strong=\"G2008\"* him|strong=\"G3588\"* said|strong=\"G5346\"*, “Don’t|strong=\"G3588\"* you|strong=\"G4771\"* even|strong=\"G3761\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, seeing|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* under|strong=\"G1722\"* the|strong=\"G1722\"* same condemnation|strong=\"G2917\"*?" + }, + { + "verseNum": 41, + "text": "And|strong=\"G2532\"* we|strong=\"G2249\"* indeed|strong=\"G2532\"* justly|strong=\"G1346\"*, for|strong=\"G1063\"* we|strong=\"G2249\"* receive the|strong=\"G2532\"* due reward for|strong=\"G1063\"* our|strong=\"G2532\"* deeds|strong=\"G4238\"*, but|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G3739\"* done|strong=\"G4238\"* nothing|strong=\"G3762\"* wrong.”" + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G3588\"*, remember|strong=\"G3403\"* me|strong=\"G1473\"* when|strong=\"G3752\"* you|strong=\"G4771\"* come|strong=\"G2064\"* into|strong=\"G1722\"* your|strong=\"G2532\"* Kingdom.”" + }, + { + "verseNum": 43, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Assuredly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w today|strong=\"G4594\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Paradise|strong=\"G3857\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G2532\"* about|strong=\"G5616\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*,+ 23:44 Time was counted from sunrise, so the sixth hour was about noon.* and|strong=\"G2532\"* darkness|strong=\"G4655\"* came|strong=\"G1096\"* over|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* land|strong=\"G1093\"* until|strong=\"G2193\"* the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 23:44 3:00 p.m.*" + }, + { + "verseNum": 45, + "text": "The|strong=\"G1161\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* darkened, and|strong=\"G1161\"* the|strong=\"G1161\"* veil|strong=\"G2665\"* of|strong=\"G3485\"* the|strong=\"G1161\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* torn|strong=\"G4977\"* in|strong=\"G1161\"* two|strong=\"G3319\"*." + }, + { + "verseNum": 46, + "text": "Jesus|strong=\"G2424\"*, crying|strong=\"G5455\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w into|strong=\"G1519\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w commit|strong=\"G3908\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*!”* Having|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* breathed|strong=\"G1606\"* his|strong=\"G1519\"* last|strong=\"G1606\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1510\"* done|strong=\"G1096\"*, he|strong=\"G1161\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “Certainly|strong=\"G3689\"* this|strong=\"G3778\"* was|strong=\"G1510\"* a|strong=\"G1096\"* righteous|strong=\"G1342\"* man|strong=\"G3778\"*.”" + }, + { + "verseNum": 48, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"* that|strong=\"G3588\"* came|strong=\"G1096\"* together|strong=\"G1909\"* to|strong=\"G2532\"* see|strong=\"G2334\"* this|strong=\"G3778\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* done|strong=\"G1096\"*, returned|strong=\"G5290\"* home|strong=\"G5290\"* beating|strong=\"G5180\"* their|strong=\"G2532\"* chests|strong=\"G4738\"*." + }, + { + "verseNum": 49, + "text": "All|strong=\"G3956\"* his|strong=\"G3956\"* acquaintances|strong=\"G1110\"* and|strong=\"G2532\"* the|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* followed|strong=\"G4870\"* with|strong=\"G2532\"* him|strong=\"G3588\"* from|strong=\"G2532\"* Galilee|strong=\"G1056\"* stood|strong=\"G2476\"* at|strong=\"G1161\"* a|strong=\"G2532\"* distance|strong=\"G3113\"*, watching these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 50, + "text": "Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G1342\"* named|strong=\"G3686\"* Joseph|strong=\"G2501\"*, who|strong=\"G2532\"* was|strong=\"G2532\"* a|strong=\"G2532\"* member|strong=\"G1010\"* of|strong=\"G2532\"* the|strong=\"G2532\"* council|strong=\"G1010\"*, a|strong=\"G2532\"* good|strong=\"G2532\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"*" + }, + { + "verseNum": 51, + "text": "(he|strong=\"G2532\"* had|strong=\"G2532\"* not|strong=\"G3756\"* consented|strong=\"G4784\"* to|strong=\"G2532\"* their|strong=\"G2532\"* counsel|strong=\"G1012\"* and|strong=\"G2532\"* deed|strong=\"G4234\"*), from|strong=\"G2532\"* Arimathaea, a|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* also|strong=\"G2532\"* waiting|strong=\"G4327\"* for|strong=\"G2532\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 52, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* went|strong=\"G4334\"* to|strong=\"G4334\"* Pilate|strong=\"G4091\"*, and|strong=\"G4334\"* asked for|strong=\"G3778\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 53, + "text": "He|strong=\"G2532\"* took|strong=\"G2507\"* it|strong=\"G2532\"* down|strong=\"G5087\"* and|strong=\"G2532\"* wrapped|strong=\"G1794\"* it|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* linen|strong=\"G4616\"* cloth|strong=\"G4616\"*, and|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* tomb|strong=\"G3418\"* that|strong=\"G2532\"* was|strong=\"G1510\"* cut|strong=\"G2532\"* in|strong=\"G1722\"* stone|strong=\"G2991\"*, where|strong=\"G3757\"* no|strong=\"G3756\"* one|strong=\"G3762\"* had|strong=\"G2532\"* ever|strong=\"G3756\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 54, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* was|strong=\"G1510\"* drawing near." + }, + { + "verseNum": 55, + "text": "The|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* come|strong=\"G4905\"* with|strong=\"G1537\"* him|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"* followed|strong=\"G2628\"* after|strong=\"G1161\"*, and|strong=\"G2532\"* saw|strong=\"G2300\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* how|strong=\"G5613\"* his|strong=\"G2532\"* body|strong=\"G4983\"* was|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 56, + "text": "They|strong=\"G2532\"* returned|strong=\"G5290\"* and|strong=\"G2532\"* prepared|strong=\"G2090\"* spices and|strong=\"G2532\"* ointments|strong=\"G3464\"*. On|strong=\"G2596\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* they|strong=\"G2532\"* rested|strong=\"G2270\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G1161\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G1909\"* the|strong=\"G1161\"* week|strong=\"G4521\"*, at|strong=\"G1909\"* early|strong=\"G3722\"* dawn|strong=\"G3722\"*, they|strong=\"G1161\"* and|strong=\"G1161\"* some|strong=\"G3739\"* others|strong=\"G3588\"* came|strong=\"G2064\"* to|strong=\"G1909\"* the|strong=\"G1161\"* tomb|strong=\"G3418\"*, bringing|strong=\"G5342\"* the|strong=\"G1161\"* spices which|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G3739\"* prepared|strong=\"G2090\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"G1161\"* found|strong=\"G2147\"* the|strong=\"G1161\"* stone|strong=\"G3037\"* rolled|strong=\"G3037\"* away from|strong=\"G3588\"* the|strong=\"G1161\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G1161\"* entered|strong=\"G1525\"* in|strong=\"G1525\"*, and|strong=\"G1161\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G3588\"* greatly perplexed about|strong=\"G4012\"* this|strong=\"G3778\"*, behold|strong=\"G2400\"*, two|strong=\"G1417\"* men|strong=\"G3778\"* stood|strong=\"G2186\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* dazzling clothing|strong=\"G2066\"*." + }, + { + "verseNum": 5, + "text": "Becoming|strong=\"G1096\"* terrified|strong=\"G1719\"*, they|strong=\"G2532\"* bowed|strong=\"G2827\"* their|strong=\"G1438\"* faces|strong=\"G4383\"* down|strong=\"G2827\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3588\"* isn’t|strong=\"G3588\"* here|strong=\"G5602\"*, but|strong=\"G3588\"* is|strong=\"G1510\"* risen|strong=\"G1453\"*. Remember|strong=\"G3403\"* what|strong=\"G3588\"* he|strong=\"G3588\"* told|strong=\"G2980\"* you|strong=\"G5210\"* when|strong=\"G5613\"* he|strong=\"G3588\"* was|strong=\"G1510\"* still|strong=\"G2089\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*," + }, + { + "verseNum": 7, + "text": "saying|strong=\"G3004\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* Man|strong=\"G1519\"* must|strong=\"G1163\"* be|strong=\"G2532\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"* into|strong=\"G1519\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* of|strong=\"G5207\"* sinful men|strong=\"G3588\"* and|strong=\"G2532\"* be|strong=\"G2532\"* crucified|strong=\"G4717\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* rise|strong=\"G2250\"* again|strong=\"G1519\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* remembered|strong=\"G3403\"* his|strong=\"G2532\"* words|strong=\"G4487\"*," + }, + { + "verseNum": 9, + "text": "returned|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* told all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* to|strong=\"G2532\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*, Joanna|strong=\"G2489\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother of|strong=\"G2532\"* James|strong=\"G2385\"*. The|strong=\"G2532\"* other|strong=\"G3062\"* women|strong=\"G3062\"* with|strong=\"G4862\"* them|strong=\"G3588\"* told|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* the|strong=\"G2532\"* apostles." + }, + { + "verseNum": 11, + "text": "These|strong=\"G3778\"* words|strong=\"G4487\"* seemed|strong=\"G5316\"* to|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* nonsense|strong=\"G3026\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* believe them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* got|strong=\"G1096\"* up|strong=\"G2532\"* and|strong=\"G2532\"* ran|strong=\"G5143\"* to|strong=\"G4314\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*. Stooping|strong=\"G3879\"* and|strong=\"G2532\"* looking|strong=\"G3879\"* in|strong=\"G1909\"*, he|strong=\"G2532\"* saw the|strong=\"G2532\"* strips of|strong=\"G2532\"* linen|strong=\"G3608\"* lying by|strong=\"G1909\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* departed to|strong=\"G4314\"* his|strong=\"G1438\"* home|strong=\"G1438\"*, wondering|strong=\"G2296\"* what|strong=\"G2532\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"G2400\"*, two|strong=\"G1417\"* of|strong=\"G1537\"* them|strong=\"G3588\"* were|strong=\"G1510\"* going|strong=\"G4198\"* that|strong=\"G3739\"* very|strong=\"G2532\"* day|strong=\"G2250\"* to|strong=\"G1519\"* a|strong=\"G2532\"* village|strong=\"G2968\"* named|strong=\"G3686\"* Emmaus|strong=\"G1695\"*, which|strong=\"G3739\"* was|strong=\"G1510\"* sixty|strong=\"G1835\"* stadia+ 24:13 60 stadia = about 11 kilometers or about 7 miles. * from|strong=\"G1537\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G4314\"* each other|strong=\"G3588\"* about|strong=\"G4012\"* all|strong=\"G3956\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3956\"* which|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G4819\"*." + }, + { + "verseNum": 15, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* talked|strong=\"G3656\"* and|strong=\"G2532\"* questioned|strong=\"G4802\"* together|strong=\"G4802\"*, Jesus|strong=\"G2424\"* himself|strong=\"G1438\"* came|strong=\"G1096\"* near|strong=\"G1448\"*, and|strong=\"G2532\"* went|strong=\"G2424\"* with|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* kept|strong=\"G2902\"* from|strong=\"G3588\"* recognizing|strong=\"G1921\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w talking|strong=\"G3004\"\\+w* \\+w about|strong=\"G4314\"\\+w* \\+w as|strong=\"G1161\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w walk|strong=\"G4043\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w sad|strong=\"G4659\"\\+w*?”*" + }, + { + "verseNum": 18, + "text": "One|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"*, named|strong=\"G3686\"* Cleopas|strong=\"G2810\"*, answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G3588\"* you|strong=\"G4771\"* the|strong=\"G1722\"* only|strong=\"G3441\"* stranger|strong=\"G3939\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* have|strong=\"G2532\"* happened|strong=\"G1096\"* there|strong=\"G2532\"* in|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*?”" + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G3739\"\\+w* \\+w things|strong=\"G3956\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* how|strong=\"G3704\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* our|strong=\"G2532\"* rulers delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* be|strong=\"G2532\"* condemned|strong=\"G2917\"* to|strong=\"G1519\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* were|strong=\"G1510\"* hoping|strong=\"G1679\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* would|strong=\"G3195\"* redeem|strong=\"G3084\"* Israel|strong=\"G2474\"*. Yes|strong=\"G1161\"*, and|strong=\"G2532\"* besides|strong=\"G2532\"* all|strong=\"G3956\"* this|strong=\"G3778\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* now|strong=\"G1161\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* since|strong=\"G3754\"* these|strong=\"G3778\"* things|strong=\"G3956\"* happened|strong=\"G1096\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"G2532\"*, certain|strong=\"G5100\"* women|strong=\"G1135\"* of|strong=\"G1537\"* our|strong=\"G2532\"* company amazed|strong=\"G1839\"* us|strong=\"G2249\"*, having|strong=\"G2532\"* arrived|strong=\"G1096\"* early|strong=\"G3720\"* at|strong=\"G1909\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* his|strong=\"G3708\"* body|strong=\"G4983\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* saying|strong=\"G3004\"* that|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2532\"* also|strong=\"G2532\"* seen|strong=\"G3708\"* a|strong=\"G2532\"* vision|strong=\"G3701\"* of|strong=\"G2532\"* angels, who|strong=\"G3739\"* said|strong=\"G3004\"* that|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* us|strong=\"G3004\"* went|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* found|strong=\"G2147\"* it|strong=\"G2532\"* just|strong=\"G2531\"* like|strong=\"G3779\"* the|strong=\"G2532\"* women|strong=\"G1135\"* had|strong=\"G2532\"* said|strong=\"G3004\"*, but|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w Foolish|strong=\"G2532\"\\+w* \\+w people|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w slow|strong=\"G1021\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophets|strong=\"G4396\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w*! *" + }, + { + "verseNum": 26, + "text": "Didn’\\+w t|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w glory|strong=\"G1391\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "Beginning from|strong=\"G2532\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* from|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, he|strong=\"G2532\"* explained|strong=\"G1329\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* the|strong=\"G1722\"* things|strong=\"G3956\"* concerning|strong=\"G4012\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* came|strong=\"G2532\"* near|strong=\"G1448\"* to|strong=\"G1519\"* the|strong=\"G2532\"* village|strong=\"G2968\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G4198\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* acted|strong=\"G4364\"* like he|strong=\"G2532\"* would|strong=\"G2532\"* go|strong=\"G4198\"* further|strong=\"G4208\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"G2532\"* urged|strong=\"G3849\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Stay|strong=\"G3306\"* with|strong=\"G3326\"* us|strong=\"G3004\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* almost evening|strong=\"G2073\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"* is|strong=\"G1510\"* almost over|strong=\"G2827\"*.”" + }, + { + "verseNum": 30, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* sat|strong=\"G2532\"* down|strong=\"G2625\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table with|strong=\"G3326\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G1722\"* bread and|strong=\"G2532\"* gave|strong=\"G2532\"* thanks. Breaking|strong=\"G2806\"* it|strong=\"G2532\"*, he|strong=\"G2532\"* gave|strong=\"G2532\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Their|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened|strong=\"G1272\"* and|strong=\"G2532\"* they|strong=\"G2532\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*; then|strong=\"G2532\"* he|strong=\"G2532\"* vanished out|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* sight|strong=\"G3788\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, “Weren’t|strong=\"G3588\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* burning|strong=\"G2545\"* within|strong=\"G1722\"* us|strong=\"G3004\"* while|strong=\"G1722\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* us|strong=\"G3004\"* along|strong=\"G2532\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* while|strong=\"G1722\"* he|strong=\"G2532\"* opened|strong=\"G1272\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* to|strong=\"G4314\"* us|strong=\"G3004\"*?”" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"*, returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* gathered|strong=\"G4867\"* together|strong=\"G4867\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 34, + "text": "saying|strong=\"G3004\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* risen|strong=\"G1453\"* indeed|strong=\"G2532\"*, and|strong=\"G2532\"* has|strong=\"G2962\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* Simon|strong=\"G4613\"*!”" + }, + { + "verseNum": 35, + "text": "They|strong=\"G2532\"* related|strong=\"G1834\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* happened|strong=\"G3588\"* along|strong=\"G2532\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* how|strong=\"G5613\"* he|strong=\"G2532\"* was|strong=\"G3588\"* recognized|strong=\"G1097\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* breaking|strong=\"G2800\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bread." + }, + { + "verseNum": 36, + "text": "As|strong=\"G1722\"* they|strong=\"G1161\"* said|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G3778\"* himself stood|strong=\"G2476\"* among|strong=\"G1722\"* them|strong=\"G1722\"*, and|strong=\"G1161\"* said|strong=\"G2980\"* to|strong=\"G1722\"* them|strong=\"G1722\"*, “Peace \\+w be|strong=\"G1161\"\\+w* \\+w to|strong=\"G1722\"\\+w* \\+w you|strong=\"G1722\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1096\"* terrified|strong=\"G1719\"* and|strong=\"G2532\"* filled with|strong=\"G2532\"* fear, and|strong=\"G2532\"* supposed|strong=\"G1380\"* that|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G2334\"* a|strong=\"G1096\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*? \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w doubts|strong=\"G1261\"\\+w* arise \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*? *" + }, + { + "verseNum": 39, + "text": "\\+w See|strong=\"G3708\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* truly \\+w me|strong=\"G1473\"\\+w*. \\+w Touch|strong=\"G5584\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bones|strong=\"G3747\"\\+w*, \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G2532\"*, he|strong=\"G2532\"* showed them|strong=\"G3004\"* his|strong=\"G2532\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* his|strong=\"G2532\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 41, + "text": "While|strong=\"G1161\"* they|strong=\"G2532\"* still|strong=\"G2089\"* didn’t|strong=\"G3588\"* believe for|strong=\"G1161\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* wondered|strong=\"G2296\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w here|strong=\"G1759\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G1034\"\\+w*?”*" + }, + { + "verseNum": 42, + "text": "They|strong=\"G1161\"* gave|strong=\"G1929\"* him|strong=\"G3588\"* a|strong=\"G1161\"* piece|strong=\"G3313\"* of|strong=\"G3588\"* a|strong=\"G1161\"* broiled|strong=\"G3702\"* fish|strong=\"G2486\"* and|strong=\"G1161\"* some|strong=\"G3588\"* honeycomb." + }, + { + "verseNum": 43, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* them|strong=\"G2532\"*, and|strong=\"G2532\"* ate|strong=\"G2068\"* in|strong=\"G2532\"* front|strong=\"G1799\"* of|strong=\"G2532\"* them|strong=\"G2532\"*." + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w psalms|strong=\"G5568\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 45, + "text": "Then|strong=\"G5119\"* he|strong=\"G3588\"* opened|strong=\"G1272\"* their|strong=\"G3588\"* minds|strong=\"G3563\"*, that|strong=\"G3588\"* they|strong=\"G3588\"* might|strong=\"G1124\"* understand|strong=\"G4920\"* the|strong=\"G3588\"* Scriptures|strong=\"G1124\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Thus|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w thus|strong=\"G3779\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* necessary \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Christ|strong=\"G5547\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w rise|strong=\"G2250\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w third|strong=\"G5154\"\\+w* \\+w day|strong=\"G2250\"\\+w*, *" + }, + { + "verseNum": 47, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w repentance|strong=\"G3341\"\\+w* \\+w and|strong=\"G2532\"\\+w* remission \\+w of|strong=\"G2532\"\\+w* sins \\+w should|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w preached|strong=\"G2784\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*, beginning \\+w at|strong=\"G1909\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w of|strong=\"G3144\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G1821\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w promise|strong=\"G1860\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w But|strong=\"G1161\"\\+w* wait \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1537\"\\+w* Jerusalem \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w clothed|strong=\"G1746\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w high|strong=\"G5311\"\\+w*.” *" + }, + { + "verseNum": 50, + "text": "He|strong=\"G2532\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"* as|strong=\"G1161\"* far|strong=\"G2193\"* as|strong=\"G1161\"* Bethany, and|strong=\"G2532\"* he|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 51, + "text": "While|strong=\"G1722\"* he|strong=\"G2532\"* blessed|strong=\"G2127\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* withdrew from|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* was|strong=\"G1096\"* carried|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 52, + "text": "They|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G2532\"* and|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* with|strong=\"G3326\"* great|strong=\"G3173\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 53, + "text": "and|strong=\"G2532\"* were|strong=\"G1510\"* continually|strong=\"G1223\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, praising|strong=\"G2127\"* and|strong=\"G2532\"* blessing|strong=\"G2127\"* God|strong=\"G2316\"*. Amen." + } + ] + } + ] + }, + { + "name": "John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* beginning was|strong=\"G1510\"* the|strong=\"G1722\"* Word|strong=\"G3056\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Word|strong=\"G3056\"* was|strong=\"G1510\"* with|strong=\"G1722\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Word|strong=\"G3056\"* was|strong=\"G1510\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1722\"* same|strong=\"G3778\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* beginning with|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G1096\"* made|strong=\"G1096\"* through|strong=\"G1223\"* him|strong=\"G3739\"*. Without|strong=\"G5565\"* him|strong=\"G3739\"*, nothing|strong=\"G3956\"* was|strong=\"G1096\"* made|strong=\"G1096\"* that|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* made|strong=\"G1096\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* was|strong=\"G1510\"* life|strong=\"G2222\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* life|strong=\"G2222\"* was|strong=\"G1510\"* the|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G2532\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G1722\"* light|strong=\"G5457\"* shines|strong=\"G5316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* hasn’t|strong=\"G3588\"* overcome+ 1:5 The word translated “overcome” (κατέλαβεν) can also be translated “comprehended.” It refers to getting a grip on an enemy to defeat him. * it|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G1096\"* came|strong=\"G1096\"* a|strong=\"G1096\"* man|strong=\"G2316\"* sent|strong=\"G2316\"* from|strong=\"G3844\"* God|strong=\"G2316\"*, whose name|strong=\"G3686\"* was|strong=\"G1096\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1519\"* same|strong=\"G3778\"* came|strong=\"G2064\"* as|strong=\"G1519\"* a|strong=\"G1519\"* witness|strong=\"G3140\"*, that|strong=\"G2443\"* he|strong=\"G3778\"* might|strong=\"G3778\"* testify|strong=\"G3140\"* about|strong=\"G4012\"* the|strong=\"G1519\"* light|strong=\"G5457\"*, that|strong=\"G2443\"* all|strong=\"G3956\"* might|strong=\"G3778\"* believe|strong=\"G4100\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3588\"* was|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* light|strong=\"G5457\"*, but|strong=\"G3588\"* was|strong=\"G1510\"* sent that|strong=\"G2443\"* he|strong=\"G3588\"* might testify|strong=\"G3140\"* about|strong=\"G4012\"* the|strong=\"G3588\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1519\"* true|strong=\"G3588\"* light|strong=\"G5457\"* that|strong=\"G3739\"* enlightens|strong=\"G5461\"* everyone|strong=\"G3956\"* was|strong=\"G1510\"* coming|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* was|strong=\"G1510\"* made|strong=\"G1096\"* through|strong=\"G1223\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* his|strong=\"G1519\"* own|strong=\"G2398\"* didn’t|strong=\"G3588\"* receive|strong=\"G3880\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* received|strong=\"G2983\"* him|strong=\"G3588\"*, to|strong=\"G1519\"* them|strong=\"G3588\"* he|strong=\"G1161\"* gave|strong=\"G1325\"* the|strong=\"G1519\"* right|strong=\"G1849\"* to|strong=\"G1519\"* become|strong=\"G1096\"* God|strong=\"G2316\"*’s children|strong=\"G5043\"*, to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* his|strong=\"G1519\"* name|strong=\"G3686\"*:" + }, + { + "verseNum": 13, + "text": "who|strong=\"G3739\"* were|strong=\"G3739\"* born|strong=\"G1080\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* blood, nor|strong=\"G3761\"* of|strong=\"G1537\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*, nor|strong=\"G3761\"* of|strong=\"G1537\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* man|strong=\"G3739\"*, but|strong=\"G2316\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* Word|strong=\"G3056\"* became|strong=\"G1096\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* lived|strong=\"G2532\"* among|strong=\"G1722\"* us|strong=\"G2249\"*. We|strong=\"G2249\"* saw|strong=\"G2300\"* his|strong=\"G1722\"* glory|strong=\"G1391\"*, such|strong=\"G3588\"* glory|strong=\"G1391\"* as|strong=\"G5613\"* of|strong=\"G3056\"* the|strong=\"G1722\"* only|strong=\"G3439\"* born|strong=\"G1096\"*+ 1:14 The phrase “only born” is from the Greek word “μονογενους”, which is sometimes translated “only begotten” or “one and only”.* Son of|strong=\"G3056\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, full|strong=\"G4134\"* of|strong=\"G3056\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 15, + "text": "John|strong=\"G2491\"* testified|strong=\"G3140\"* about|strong=\"G4012\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* was|strong=\"G1510\"* he|strong=\"G2532\"* of|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘He|strong=\"G2532\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"* has|strong=\"G3739\"* surpassed me|strong=\"G1473\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* before|strong=\"G1715\"* me|strong=\"G1473\"*.’”" + }, + { + "verseNum": 16, + "text": "From|strong=\"G1537\"* his|strong=\"G3956\"* fullness|strong=\"G4138\"* we|strong=\"G2249\"* all|strong=\"G3956\"* received|strong=\"G2983\"* grace|strong=\"G5485\"* upon|strong=\"G3588\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* law|strong=\"G3551\"* was|strong=\"G1096\"* given|strong=\"G1325\"* through|strong=\"G1223\"* Moses|strong=\"G3475\"*. Grace|strong=\"G5485\"* and|strong=\"G2532\"* truth were|strong=\"G3588\"* realized|strong=\"G1096\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*.+ 1:17 “Christ” means “Anointed One”.*" + }, + { + "verseNum": 18, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G2316\"* seen|strong=\"G3708\"* God|strong=\"G2316\"* at|strong=\"G1519\"* any|strong=\"G3762\"* time|strong=\"G4455\"*. The|strong=\"G1519\"* only|strong=\"G3439\"* born+ 1:18 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* Son|strong=\"G5207\"*,+ 1:18 NU reads “God”* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1519\"* the|strong=\"G1519\"* bosom|strong=\"G2859\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Father|strong=\"G3962\"*, has|strong=\"G2316\"* declared|strong=\"G1834\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* John|strong=\"G2491\"*’s testimony|strong=\"G3141\"*, when|strong=\"G3753\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* sent|strong=\"G2532\"* priests|strong=\"G2409\"* and|strong=\"G2532\"* Levites|strong=\"G3019\"* from|strong=\"G1537\"* Jerusalem|strong=\"G2414\"* to|strong=\"G2443\"* ask|strong=\"G2065\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G2532\"* declared|strong=\"G3754\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* deny|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* declared|strong=\"G3754\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"*? Are|strong=\"G1510\"* you|strong=\"G4771\"* Elijah|strong=\"G2243\"*?”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G1325\"*? Give|strong=\"G1325\"* us|strong=\"G1325\"* an|strong=\"G1325\"* answer to|strong=\"G2443\"* take|strong=\"G2443\"* back|strong=\"G1325\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G5101\"* sent|strong=\"G3992\"* us|strong=\"G1325\"*. What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1325\"* say|strong=\"G3004\"* about|strong=\"G4012\"* yourself|strong=\"G4572\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1473\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* one|strong=\"G3588\"* crying in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, ‘Make|strong=\"G2116\"* straight|strong=\"G2116\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G2962\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*,’+ 1:23 Isaiah 40:3* as|strong=\"G2531\"* Isaiah|strong=\"G2268\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"* said|strong=\"G3004\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* ones who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G1510\"* sent|strong=\"G2532\"* were|strong=\"G1510\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Why|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G5101\"* you|strong=\"G4771\"* baptize if|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, nor|strong=\"G3761\"* Elijah|strong=\"G2243\"*, nor|strong=\"G3761\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*?”" + }, + { + "verseNum": 26, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"* baptize in|strong=\"G1722\"* water|strong=\"G5204\"*, but|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* stands|strong=\"G2476\"* one|strong=\"G3739\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3588\"* one|strong=\"G3739\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3694\"* me|strong=\"G1473\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* preferred before|strong=\"G3588\"* me|strong=\"G1473\"*, whose|strong=\"G3739\"* sandal|strong=\"G5266\"* strap I|strong=\"G1473\"*’m not|strong=\"G3756\"* worthy to|strong=\"G2443\"* loosen.”" + }, + { + "verseNum": 28, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* done|strong=\"G1096\"* in|strong=\"G1722\"* Bethany beyond|strong=\"G4008\"* the|strong=\"G1722\"* Jordan|strong=\"G2446\"*, where|strong=\"G3699\"* John|strong=\"G2491\"* was|strong=\"G1510\"* baptizing." + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* Jesus|strong=\"G2424\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*,+ 1:29 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* takes away the|strong=\"G2532\"* sin of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"*!" + }, + { + "verseNum": 30, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G3739\"* of|strong=\"G5228\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘After|strong=\"G3694\"* me|strong=\"G1473\"* comes|strong=\"G2064\"* a|strong=\"G1096\"* man|strong=\"G3778\"* who|strong=\"G3739\"* is|strong=\"G1510\"* preferred|strong=\"G1096\"* before|strong=\"G1715\"* me|strong=\"G1473\"*, for|strong=\"G3754\"* he|strong=\"G3739\"* was|strong=\"G1510\"* before|strong=\"G1715\"* me|strong=\"G1473\"*.’" + }, + { + "verseNum": 31, + "text": "I|strong=\"G1473\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* him|strong=\"G3588\"*, but|strong=\"G3588\"* for|strong=\"G1223\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* I|strong=\"G1473\"* came|strong=\"G2064\"* baptizing in|strong=\"G1722\"* water|strong=\"G5204\"*, that|strong=\"G2443\"* he|strong=\"G3778\"* would|strong=\"G2064\"* be|strong=\"G3756\"* revealed|strong=\"G5319\"* to|strong=\"G2443\"* Israel|strong=\"G2474\"*.”" + }, + { + "verseNum": 32, + "text": "John|strong=\"G2491\"* testified|strong=\"G3140\"*, saying|strong=\"G3004\"*, “I|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G2300\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dove|strong=\"G4058\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* remained|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G1473\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1492\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* sent|strong=\"G3992\"* me|strong=\"G1473\"* to|strong=\"G2532\"* baptize in|strong=\"G1722\"* water|strong=\"G5204\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘On|strong=\"G1909\"* whomever|strong=\"G3739\"* you|strong=\"G3739\"* will|strong=\"G1510\"* see|strong=\"G3708\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* descending|strong=\"G2597\"* and|strong=\"G2532\"* remaining|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* baptizes in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.’" + }, + { + "verseNum": 34, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* have|strong=\"G2532\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 35, + "text": "Again|strong=\"G3825\"*, the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, John|strong=\"G2491\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* with|strong=\"G1537\"* two|strong=\"G1417\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*," + }, + { + "verseNum": 36, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* looked|strong=\"G3708\"* at|strong=\"G1689\"* Jesus|strong=\"G2424\"* as|strong=\"G2532\"* he|strong=\"G2532\"* walked|strong=\"G4043\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2396\"*, the|strong=\"G2532\"* Lamb|strong=\"G3004\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 37, + "text": "The|strong=\"G2532\"* two|strong=\"G1417\"* disciples|strong=\"G3101\"* heard him|strong=\"G3588\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* followed Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* turned|strong=\"G4762\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* them|strong=\"G3588\"* following, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w What|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1161\"\\+w*?”*" + }, + { + "verseNum": 39, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "One|strong=\"G1520\"* of|strong=\"G2250\"* the|strong=\"G2532\"* two|strong=\"G1417\"* who|strong=\"G3588\"* heard John|strong=\"G2491\"* and|strong=\"G2532\"* followed him|strong=\"G3588\"* was|strong=\"G1510\"* Andrew, Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*’s brother." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* first|strong=\"G4413\"* found|strong=\"G2147\"* his|strong=\"G2398\"* own|strong=\"G2398\"* brother, Simon|strong=\"G4613\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* have|strong=\"G2532\"* found|strong=\"G2147\"* the|strong=\"G2532\"* Messiah|strong=\"G5547\"*!” (which|strong=\"G3588\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, Christ|strong=\"G5547\"*+ 1:41 “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.*)." + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*. Jesus|strong=\"G2424\"* looked|strong=\"G1689\"* at|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Simon|strong=\"G4613\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* Jonah. \\+w You|strong=\"G4771\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w Cephas|strong=\"G2786\"\\+w*”* (which|strong=\"G3588\"* is|strong=\"G1510\"* by|strong=\"G4314\"* interpretation|strong=\"G2059\"*, Peter|strong=\"G4074\"*).+ 1:42 “Cephas” (Aramaic) and “Peter” (Greek) both mean “Rock”.*" + }, + { + "verseNum": 43, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* determined to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* found|strong=\"G2147\"* Philip|strong=\"G5376\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Follow \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 44, + "text": "Now|strong=\"G1161\"* Philip|strong=\"G5376\"* was|strong=\"G1510\"* from|strong=\"G2532\"* Bethsaida, the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* Andrew and|strong=\"G2532\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 45, + "text": "Philip|strong=\"G5376\"* found|strong=\"G2147\"* Nathanael|strong=\"G3482\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “We|strong=\"G2532\"* have|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* of|strong=\"G1537\"* whom|strong=\"G3588\"* Moses|strong=\"G3475\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* and|strong=\"G2532\"* also|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, wrote|strong=\"G1125\"*: Jesus|strong=\"G2424\"* of|strong=\"G1537\"* Nazareth|strong=\"G3478\"*, the|strong=\"G1722\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*.”" + }, + { + "verseNum": 46, + "text": "Nathanael|strong=\"G3482\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Can|strong=\"G1410\"* any|strong=\"G1410\"* good|strong=\"G3588\"* thing|strong=\"G3739\"* come|strong=\"G2064\"* out|strong=\"G2532\"* of|strong=\"G5207\"* Nazareth|strong=\"G3478\"*?”" + }, + { + "verseNum": 47, + "text": "Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* Nathanael|strong=\"G3482\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* about|strong=\"G4012\"* him|strong=\"G3708\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w an|strong=\"G2532\"\\+w* \\+w Israelite|strong=\"G2475\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G2532\"\\+w* \\+w deceit|strong=\"G1388\"\\+w*!”*" + }, + { + "verseNum": 48, + "text": "Nathanael|strong=\"G3482\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “How|strong=\"G4159\"* do|strong=\"G2532\"* you|strong=\"G4771\"* know|strong=\"G1097\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 49, + "text": "Nathanael|strong=\"G3482\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*! You|strong=\"G4771\"* are|strong=\"G1510\"* King|strong=\"G3588\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Because|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w underneath|strong=\"G5270\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fig|strong=\"G4808\"\\+w* \\+w tree|strong=\"G4808\"\\+w*,’ \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believe|strong=\"G4100\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3588\"\\+w*!”*" + }, + { + "verseNum": 51, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G1909\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w all|strong=\"G2532\"\\+w*, hereafter \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* opened, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w* ascending \\+w and|strong=\"G2532\"\\+w* \\+w descending|strong=\"G2597\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* third|strong=\"G5154\"* day|strong=\"G2250\"*, there|strong=\"G1563\"* was|strong=\"G1510\"* a|strong=\"G1096\"* wedding|strong=\"G1062\"* in|strong=\"G1722\"* Cana|strong=\"G2580\"* of|strong=\"G2250\"* Galilee|strong=\"G1056\"*. Jesus|strong=\"G2424\"*’ mother|strong=\"G3384\"* was|strong=\"G1510\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 2, + "text": "Jesus|strong=\"G2424\"* also|strong=\"G2532\"* was|strong=\"G3588\"* invited|strong=\"G2564\"*, with|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* ran|strong=\"G5302\"* out|strong=\"G2532\"*, Jesus|strong=\"G2424\"*’ mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* wine|strong=\"G3631\"*.”" + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w does|strong=\"G5101\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w My|strong=\"G1473\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w not|strong=\"G3768\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "His|strong=\"G4160\"* mother|strong=\"G3384\"* said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G3588\"* servants|strong=\"G1249\"*, “Whatever|strong=\"G3739\"* he|strong=\"G3739\"* says|strong=\"G3004\"* to|strong=\"G3004\"* you|strong=\"G5210\"*, do|strong=\"G4160\"* it|strong=\"G4160\"*.”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* there|strong=\"G1563\"* were|strong=\"G1510\"* six|strong=\"G1803\"* water pots of|strong=\"G2596\"* stone|strong=\"G3035\"* set|strong=\"G2749\"* there|strong=\"G1563\"* after|strong=\"G2596\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*’ way|strong=\"G2596\"* of|strong=\"G2596\"* purifying|strong=\"G2512\"*, containing|strong=\"G5562\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* metretes+ 2:6 2 to 3 metretes is about 20 to 30 U. S. Gallons, or 75 to 115 liters.* apiece." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Fill|strong=\"G1072\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* pots \\+w with|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”* So|strong=\"G2532\"* they|strong=\"G2532\"* filled|strong=\"G1072\"* them|strong=\"G3588\"* up|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brim." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Now|strong=\"G1161\"\\+w* draw \\+w some|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w take|strong=\"G5342\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* ruler \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* feast.”* So|strong=\"G2532\"* they|strong=\"G2532\"* took|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* feast tasted|strong=\"G1089\"* the|strong=\"G2532\"* water|strong=\"G5204\"* now|strong=\"G1161\"* become|strong=\"G1096\"* wine|strong=\"G3631\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* it|strong=\"G2532\"* came|strong=\"G1096\"* from|strong=\"G2532\"* (but|strong=\"G1161\"* the|strong=\"G2532\"* servants|strong=\"G1249\"* who|strong=\"G3588\"* had|strong=\"G2532\"* drawn the|strong=\"G2532\"* water|strong=\"G5204\"* knew|strong=\"G1492\"*), the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* feast called|strong=\"G5455\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Everyone|strong=\"G3956\"* serves|strong=\"G5087\"* the|strong=\"G2532\"* good|strong=\"G2570\"* wine|strong=\"G3631\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* when|strong=\"G3752\"* the|strong=\"G2532\"* guests have|strong=\"G2532\"* drunk|strong=\"G3184\"* freely|strong=\"G3184\"*, then|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* worse|strong=\"G1640\"*. You|strong=\"G4771\"* have|strong=\"G2532\"* kept|strong=\"G5083\"* the|strong=\"G2532\"* good|strong=\"G2570\"* wine|strong=\"G3631\"* until|strong=\"G2193\"* now|strong=\"G2532\"*!”" + }, + { + "verseNum": 11, + "text": "This|strong=\"G3778\"* beginning of|strong=\"G2532\"* his|strong=\"G1519\"* signs|strong=\"G4592\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"* in|strong=\"G1722\"* Cana|strong=\"G2580\"* of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* revealed|strong=\"G5319\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*; and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, he|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*, his|strong=\"G1519\"* brothers, and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"* a|strong=\"G2532\"* few|strong=\"G3756\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* Passover|strong=\"G3957\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* was|strong=\"G1510\"* at|strong=\"G1519\"* hand|strong=\"G1451\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* oxen|strong=\"G1016\"*, sheep|strong=\"G4263\"*, and|strong=\"G2532\"* doves|strong=\"G4058\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* changers|strong=\"G2773\"* of|strong=\"G2532\"* money|strong=\"G2773\"* sitting|strong=\"G2521\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* made|strong=\"G4160\"* a|strong=\"G2532\"* whip of|strong=\"G1537\"* cords|strong=\"G4979\"* and|strong=\"G2532\"* drove|strong=\"G1544\"* all|strong=\"G3956\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, both|strong=\"G2532\"* the|strong=\"G2532\"* sheep|strong=\"G4263\"* and|strong=\"G2532\"* the|strong=\"G2532\"* oxen|strong=\"G1016\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* the|strong=\"G2532\"* changers|strong=\"G2855\"*’ money|strong=\"G2855\"* and|strong=\"G2532\"* overthrew their|strong=\"G2532\"* tables|strong=\"G5132\"*." + }, + { + "verseNum": 16, + "text": "To|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sold|strong=\"G4453\"* the|strong=\"G2532\"* doves|strong=\"G4058\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w here|strong=\"G1782\"\\+w*! Don’\\+w t|strong=\"G3588\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3624\"\\+w* \\+w a|strong=\"G2532\"\\+w* marketplace!”*" + }, + { + "verseNum": 17, + "text": "His|strong=\"G3754\"* disciples|strong=\"G3101\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* written|strong=\"G1125\"*, “Zeal|strong=\"G2205\"* for|strong=\"G3754\"* your|strong=\"G3588\"* house|strong=\"G3624\"* will|strong=\"G1510\"* eat|strong=\"G2719\"* me|strong=\"G1473\"* up|strong=\"G2719\"*.”+ 2:17 Psalms 69:9*" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* sign|strong=\"G4592\"* do|strong=\"G4160\"* you|strong=\"G3754\"* show|strong=\"G1166\"* us|strong=\"G3004\"*, seeing|strong=\"G3754\"* that|strong=\"G3754\"* you|strong=\"G3754\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Destroy|strong=\"G3089\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w temple|strong=\"G3485\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w three|strong=\"G5140\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w raise|strong=\"G1453\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “It|strong=\"G2532\"* took|strong=\"G2532\"* forty-six years|strong=\"G2094\"* to|strong=\"G2532\"* build|strong=\"G3618\"* this|strong=\"G3778\"* temple|strong=\"G3485\"*! Will|strong=\"G2532\"* you|strong=\"G4771\"* raise|strong=\"G1453\"* it|strong=\"G2532\"* up|strong=\"G1453\"* in|strong=\"G1722\"* three|strong=\"G5140\"* days|strong=\"G2250\"*?”" + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G4012\"* the|strong=\"G1161\"* temple|strong=\"G3485\"* of|strong=\"G4012\"* his|strong=\"G4012\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* he|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, his|strong=\"G2532\"* disciples|strong=\"G3101\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* believed|strong=\"G4100\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* and|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* at|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*, during|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* his|strong=\"G1519\"* name|strong=\"G3686\"*, observing|strong=\"G2334\"* his|strong=\"G1519\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G1161\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* didn’t|strong=\"G3588\"* entrust|strong=\"G4100\"* himself|strong=\"G1438\"* to|strong=\"G3756\"* them|strong=\"G3588\"*, because|strong=\"G1223\"* he|strong=\"G1161\"* knew|strong=\"G1097\"* everyone|strong=\"G3956\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"G2532\"* because|strong=\"G3754\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* need|strong=\"G5532\"* for|strong=\"G1063\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* testify|strong=\"G3140\"* concerning|strong=\"G4012\"* man|strong=\"G5100\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* himself knew|strong=\"G1097\"* what|strong=\"G5101\"* was|strong=\"G1510\"* in|strong=\"G1722\"* man|strong=\"G5100\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1510\"* man of|strong=\"G1537\"* the|strong=\"G1537\"* Pharisees|strong=\"G5330\"* named|strong=\"G3686\"* Nicodemus|strong=\"G3530\"*, a|strong=\"G1510\"* ruler of|strong=\"G1537\"* the|strong=\"G1537\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G3004\"* by|strong=\"G4314\"* night|strong=\"G3571\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, we|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2532\"* teacher|strong=\"G1320\"* come|strong=\"G2064\"* from|strong=\"G2064\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* do|strong=\"G4160\"* these|strong=\"G3778\"* signs|strong=\"G4592\"* that|strong=\"G3754\"* you|strong=\"G4771\"* do|strong=\"G4160\"*, unless|strong=\"G1437\"* God|strong=\"G2316\"* is|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* anew, *+ 3:3 The word translated “anew” here and in John 3:7 (ἄνωθεν) also means “again” and “from above”.* \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.”*" + }, + { + "verseNum": 4, + "text": "Nicodemus|strong=\"G3530\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* a|strong=\"G2532\"* man|strong=\"G3361\"* be|strong=\"G1510\"* born|strong=\"G1080\"* when|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* old|strong=\"G1088\"*? Can|strong=\"G1410\"* he|strong=\"G2532\"* enter|strong=\"G1525\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"* into|strong=\"G1519\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* and|strong=\"G2532\"* be|strong=\"G1510\"* born|strong=\"G1080\"*?”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s Kingdom.*" + }, + { + "verseNum": 6, + "text": "\\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w That|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "Don’t \\+w marvel|strong=\"G2296\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1163\"\\+w* \\+w born|strong=\"G1080\"\\+w* anew.’ *" + }, + { + "verseNum": 8, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w wind|strong=\"G4154\"\\+w**+ 3:8 The same Greek word (πνεῦμα) means wind, breath, and spirit.* \\+w blows|strong=\"G4154\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w wants|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1510\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w its|strong=\"G3956\"\\+w* \\+w sound|strong=\"G5456\"\\+w*, \\+w but|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. \\+w So|strong=\"G3779\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Nicodemus|strong=\"G3530\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* these|strong=\"G3778\"* things|strong=\"G3778\"* be|strong=\"G1096\"*?”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teacher|strong=\"G1320\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*, \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*? *" + }, + { + "verseNum": 11, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w we|strong=\"G2249\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w witness|strong=\"G3140\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w earthly|strong=\"G1919\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w heavenly|strong=\"G2032\"\\+w* \\+w things|strong=\"G3588\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w has|strong=\"G3762\"\\+w* \\+w ascended|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w descended|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3762\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w serpent|strong=\"G3789\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w*, *" + }, + { + "verseNum": 15, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w not|strong=\"G2192\"\\+w* perish, \\+w but|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w so|strong=\"G3779\"\\+w* loved \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w only|strong=\"G3439\"\\+w* born*+ 3:16 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* \\+w Son|strong=\"G5207\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w not|strong=\"G3361\"\\+w* perish, \\+w but|strong=\"G3361\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* send \\+w his|strong=\"G1223\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w saved|strong=\"G4982\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w judged|strong=\"G2919\"\\+w*. \\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2235\"\\+w* \\+w judged|strong=\"G2919\"\\+w* \\+w already|strong=\"G2235\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w only|strong=\"G3439\"\\+w* born \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w men|strong=\"G3778\"\\+w* loved \\+w the|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4655\"\\+w* \\+w rather|strong=\"G3123\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G2064\"\\+w* \\+w evil|strong=\"G5337\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w lest|strong=\"G3361\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w exposed|strong=\"G1651\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* truth \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w revealed|strong=\"G5319\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* into|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Judea|strong=\"G2453\"*. He|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G1563\"* with|strong=\"G3326\"* them|strong=\"G3588\"* and|strong=\"G2532\"* baptized." + }, + { + "verseNum": 23, + "text": "John|strong=\"G2491\"* also|strong=\"G2532\"* was|strong=\"G1510\"* baptizing in|strong=\"G1722\"* Enon near|strong=\"G1451\"* Salim|strong=\"G4530\"*, because|strong=\"G3754\"* there|strong=\"G1563\"* was|strong=\"G1510\"* much|strong=\"G4183\"* water|strong=\"G5204\"* there|strong=\"G1563\"*. They|strong=\"G2532\"* came|strong=\"G3854\"* and|strong=\"G2532\"* were|strong=\"G1510\"* baptized;" + }, + { + "verseNum": 24, + "text": "for|strong=\"G1063\"* John|strong=\"G2491\"* was|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G3768\"* thrown into|strong=\"G1519\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G3767\"* a|strong=\"G1096\"* dispute arose|strong=\"G1096\"* on|strong=\"G1537\"* the|strong=\"G1537\"* part of|strong=\"G1537\"* John|strong=\"G2491\"*’s disciples|strong=\"G3101\"* with|strong=\"G3326\"* some|strong=\"G3588\"* Jews|strong=\"G2453\"* about|strong=\"G4012\"* purification|strong=\"G2512\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* John|strong=\"G2491\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, he|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G4771\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"*, to|strong=\"G4314\"* whom|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* testified|strong=\"G3140\"*, behold|strong=\"G2396\"*, he|strong=\"G2532\"* baptizes, and|strong=\"G2532\"* everyone|strong=\"G3956\"* is|strong=\"G1510\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 27, + "text": "John|strong=\"G2491\"* answered|strong=\"G3004\"*, “A|strong=\"G2532\"* man|strong=\"G3762\"* can|strong=\"G1410\"* receive|strong=\"G2983\"* nothing|strong=\"G3762\"* unless|strong=\"G1437\"* it|strong=\"G2532\"* has|strong=\"G3762\"* been|strong=\"G1510\"* given|strong=\"G1325\"* him|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"G5210\"* yourselves|strong=\"G4771\"* testify|strong=\"G3140\"* that|strong=\"G3754\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* Christ|strong=\"G5547\"*,’ but|strong=\"G3588\"*, ‘I|strong=\"G1473\"* have|strong=\"G1473\"* been|strong=\"G1510\"* sent before|strong=\"G1715\"* him|strong=\"G3588\"*.’" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* bride|strong=\"G3565\"* is|strong=\"G1510\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*; but|strong=\"G1161\"* the|strong=\"G2532\"* friend|strong=\"G5384\"* of|strong=\"G1223\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*, who|strong=\"G3588\"* stands|strong=\"G2476\"* and|strong=\"G2532\"* hears him|strong=\"G3588\"*, rejoices|strong=\"G5463\"* greatly|strong=\"G5479\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* bridegroom|strong=\"G3566\"*’s|strong=\"G2192\"* voice|strong=\"G5456\"*. Therefore|strong=\"G3767\"* my|strong=\"G1699\"* joy|strong=\"G5479\"* is|strong=\"G1510\"* made|strong=\"G4137\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"G1161\"* must|strong=\"G1163\"* increase, but|strong=\"G1161\"* I|strong=\"G1473\"* must|strong=\"G1163\"* decrease|strong=\"G1642\"*." + }, + { + "verseNum": 31, + "text": "“He|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* from|strong=\"G1537\"* above|strong=\"G1883\"* is|strong=\"G1510\"* above|strong=\"G1883\"* all|strong=\"G3956\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* belongs|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* speaks|strong=\"G2980\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* is|strong=\"G1510\"* above|strong=\"G1883\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard, of|strong=\"G2532\"* that|strong=\"G3739\"* he|strong=\"G2532\"* testifies|strong=\"G3140\"*; and|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* receives|strong=\"G2983\"* his|strong=\"G2983\"* witness|strong=\"G3140\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* has|strong=\"G2316\"* received|strong=\"G2983\"* his|strong=\"G2983\"* witness|strong=\"G3141\"* has|strong=\"G2316\"* set|strong=\"G4972\"* his|strong=\"G2983\"* seal|strong=\"G4972\"* to|strong=\"G2316\"* this|strong=\"G3588\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* speaks|strong=\"G2980\"* the|strong=\"G1537\"* words|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; for|strong=\"G1063\"* God|strong=\"G2316\"* gives|strong=\"G1325\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* without|strong=\"G3756\"* measure|strong=\"G3358\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"G1722\"* Father|strong=\"G3962\"* loves the|strong=\"G1722\"* Son|strong=\"G5207\"*, and|strong=\"G2532\"* has|strong=\"G3962\"* given|strong=\"G1325\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1722\"* his|strong=\"G3956\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 36, + "text": "One|strong=\"G3588\"* who|strong=\"G3588\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* eternal life|strong=\"G2222\"*, but|strong=\"G1161\"* one|strong=\"G3588\"* who|strong=\"G3588\"* disobeys+ 3:36 The same word can be translated “disobeys” or “disbelieves” in this context.* the|strong=\"G1519\"* Son|strong=\"G5207\"* won’t|strong=\"G3588\"* see|strong=\"G3708\"* life|strong=\"G2222\"*, but|strong=\"G1161\"* the|strong=\"G1519\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* remains|strong=\"G3306\"* on|strong=\"G1909\"* him|strong=\"G3588\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G5613\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* had|strong=\"G2424\"* heard|strong=\"G1097\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* making|strong=\"G4160\"* and|strong=\"G2532\"* baptizing more|strong=\"G4119\"* disciples|strong=\"G3101\"* than|strong=\"G2228\"* John|strong=\"G2491\"*" + }, + { + "verseNum": 2, + "text": "(although|strong=\"G2544\"* Jesus|strong=\"G2424\"* himself didn’t|strong=\"G3588\"* baptize, but|strong=\"G3588\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*)," + }, + { + "verseNum": 3, + "text": "he|strong=\"G2532\"* left Judea|strong=\"G2449\"* and|strong=\"G2532\"* departed into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G1161\"* needed|strong=\"G1163\"* to|strong=\"G1163\"* pass|strong=\"G1330\"* through|strong=\"G1223\"* Samaria|strong=\"G4540\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3767\"* he|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G5207\"* Samaria|strong=\"G4540\"* called|strong=\"G3004\"* Sychar|strong=\"G4965\"*, near|strong=\"G4139\"* the|strong=\"G1519\"* parcel|strong=\"G5564\"* of|strong=\"G5207\"* ground|strong=\"G5564\"* that|strong=\"G3739\"* Jacob|strong=\"G2384\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* his|strong=\"G1519\"* son|strong=\"G5207\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 6, + "text": "Jacob|strong=\"G2384\"*’s well|strong=\"G4077\"* was|strong=\"G1510\"* there|strong=\"G1563\"*. Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, being|strong=\"G1510\"* tired from|strong=\"G1537\"* his|strong=\"G1909\"* journey|strong=\"G3597\"*, sat|strong=\"G2516\"* down|strong=\"G1537\"* by|strong=\"G1537\"* the|strong=\"G1537\"* well|strong=\"G4077\"*. It|strong=\"G1161\"* was|strong=\"G1510\"* about|strong=\"G5613\"* the|strong=\"G1537\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*.+ 4:6 noon*" + }, + { + "verseNum": 7, + "text": "A|strong=\"G1325\"* woman|strong=\"G1135\"* of|strong=\"G1537\"* Samaria|strong=\"G4540\"* came|strong=\"G2064\"* to|strong=\"G3004\"* draw water|strong=\"G5204\"*. Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G1325\"*, “\\+w Give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G1325\"\\+w* \\+w drink|strong=\"G4095\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G3588\"* gone away into|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* to|strong=\"G1519\"* buy food|strong=\"G5160\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G3588\"* Samaritan|strong=\"G4542\"* woman|strong=\"G1135\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* is|strong=\"G1510\"* it|strong=\"G1063\"* that|strong=\"G3588\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G1510\"* Jew|strong=\"G2453\"*, ask|strong=\"G3004\"* for|strong=\"G1063\"* a|strong=\"G1510\"* drink|strong=\"G4095\"* from|strong=\"G3844\"* me|strong=\"G1473\"*, a|strong=\"G1510\"* Samaritan|strong=\"G4542\"* woman|strong=\"G1135\"*?” (For|strong=\"G1063\"* Jews|strong=\"G2453\"* have|strong=\"G1473\"* no|strong=\"G3588\"* dealings|strong=\"G4798\"* with|strong=\"G3844\"* Samaritans.)" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G1325\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w knew|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gift|strong=\"G1431\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w*, ‘\\+w Give|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*,’ \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w asked|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, you|strong=\"G3004\"* have|strong=\"G2192\"* nothing|strong=\"G3777\"* to|strong=\"G2532\"* draw with|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* well|strong=\"G2532\"* is|strong=\"G1510\"* deep. So|strong=\"G3767\"* where|strong=\"G4159\"* do|strong=\"G2532\"* you|strong=\"G3004\"* get|strong=\"G2192\"* that|strong=\"G3588\"* living|strong=\"G2198\"* water|strong=\"G5204\"*?" + }, + { + "verseNum": 12, + "text": "Are|strong=\"G1510\"* you|strong=\"G4771\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Jacob|strong=\"G2384\"*, who|strong=\"G3739\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G2532\"* well|strong=\"G2532\"* and|strong=\"G2532\"* drank|strong=\"G4095\"* from|strong=\"G1537\"* it|strong=\"G2532\"* himself, as|strong=\"G2532\"* did|strong=\"G2532\"* his|strong=\"G2532\"* children|strong=\"G5207\"* and|strong=\"G2532\"* his|strong=\"G2532\"* livestock|strong=\"G2353\"*?”" + }, + { + "verseNum": 13, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* her|strong=\"G3956\"*, “\\+w Everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w again|strong=\"G3825\"\\+w*, *" + }, + { + "verseNum": 14, + "text": "\\+w but|strong=\"G1161\"\\+w* \\+w whoever|strong=\"G3739\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w thirst|strong=\"G1372\"\\+w* \\+w again|strong=\"G1519\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G1096\"\\+w* \\+w well|strong=\"G4077\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w water|strong=\"G5204\"\\+w* springing \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 15, + "text": "The|strong=\"G4314\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, give|strong=\"G1325\"* me|strong=\"G1325\"* this|strong=\"G3778\"* water|strong=\"G5204\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* get thirsty|strong=\"G1372\"*, neither|strong=\"G3366\"* come|strong=\"G1330\"* all|strong=\"G3361\"* the|strong=\"G4314\"* way|strong=\"G3778\"* here|strong=\"G1759\"* to|strong=\"G4314\"* draw.”" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* her|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*, \\+w call|strong=\"G3004\"\\+w* \\+w your|strong=\"G2532\"\\+w* husband, \\+w and|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w here|strong=\"G1759\"\\+w*.” *" + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* answered|strong=\"G3004\"*, “I|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* husband.”" + }, + { + "verseNum": 18, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w five|strong=\"G4002\"\\+w* husbands; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w your|strong=\"G2192\"\\+w* husband. \\+w This|strong=\"G3778\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w said|strong=\"G3004\"\\+w* truly.”*" + }, + { + "verseNum": 19, + "text": "The|strong=\"G3588\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, I|strong=\"G3754\"* perceive|strong=\"G2334\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 20, + "text": "Our|strong=\"G2532\"* fathers|strong=\"G3962\"* worshiped|strong=\"G4352\"* in|strong=\"G1722\"* this|strong=\"G3778\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* Jews say|strong=\"G3004\"* that|strong=\"G3754\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* is|strong=\"G1510\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* people|strong=\"G1510\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* worship|strong=\"G4352\"*.”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3754\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w mountain|strong=\"G3735\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w*. \\+w We|strong=\"G2249\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w know|strong=\"G1492\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w salvation|strong=\"G4991\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w true|strong=\"G3588\"\\+w* \\+w worshipers|strong=\"G4353\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w and|strong=\"G2532\"\\+w* truth, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w such|strong=\"G5108\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w worshipers|strong=\"G4353\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w and|strong=\"G2532\"\\+w* truth.”*" + }, + { + "verseNum": 25, + "text": "The|strong=\"G3588\"* woman|strong=\"G1135\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* Messiah|strong=\"G5547\"* is|strong=\"G3588\"* coming|strong=\"G2064\"*, he|strong=\"G3754\"* who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Christ|strong=\"G5547\"*.+ 4:25 “Messiah” (Hebrew) and “Christ” (Greek) both mean “Anointed One”.* When|strong=\"G3752\"* he|strong=\"G3754\"* has|strong=\"G5547\"* come|strong=\"G2064\"*, he|strong=\"G3754\"* will|strong=\"G1473\"* declare to|strong=\"G3004\"* us|strong=\"G3004\"* all|strong=\"G3588\"* things|strong=\"G3588\"*.”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3588\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Just|strong=\"G2532\"* then|strong=\"G2532\"*, his|strong=\"G1909\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"*. They|strong=\"G2532\"* marveled|strong=\"G2296\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* a|strong=\"G2532\"* woman|strong=\"G1135\"*; yet|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3754\"* looking|strong=\"G2212\"* for|strong=\"G3754\"*?” or|strong=\"G2228\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3754\"* speak|strong=\"G2980\"* with|strong=\"G3326\"* her|strong=\"G3754\"*?”" + }, + { + "verseNum": 28, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* left her|strong=\"G1519\"* water pot, went|strong=\"G2532\"* away into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G3767\"*," + }, + { + "verseNum": 29, + "text": "“Come|strong=\"G1205\"*, see|strong=\"G3708\"* a|strong=\"G1510\"* man|strong=\"G3778\"* who|strong=\"G3739\"* told|strong=\"G3004\"* me|strong=\"G1473\"* everything|strong=\"G3956\"* that|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G1473\"* done|strong=\"G4160\"*. Can|strong=\"G3004\"* this|strong=\"G3778\"* be|strong=\"G1510\"* the|strong=\"G3956\"* Christ|strong=\"G5547\"*?”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* meanwhile|strong=\"G3342\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"* urged him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Rabbi|strong=\"G4461\"*, eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w about|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "The|strong=\"G4314\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*, “Has|strong=\"G5100\"* anyone|strong=\"G5100\"* brought|strong=\"G5342\"* him|strong=\"G3588\"* something|strong=\"G5100\"* to|strong=\"G4314\"* eat|strong=\"G2068\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w food|strong=\"G1033\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w accomplish|strong=\"G5048\"\\+w* \\+w his|strong=\"G4160\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w There|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yet|strong=\"G2089\"\\+w* \\+w four|strong=\"G5072\"\\+w* \\+w months|strong=\"G5072\"\\+w* \\+w until|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w harvest|strong=\"G2326\"\\+w*’? \\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w lift|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w look|strong=\"G2400\"\\+w* \\+w at|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w fields|strong=\"G5561\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w harvest|strong=\"G2326\"\\+w* \\+w already|strong=\"G2235\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w wages|strong=\"G3408\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gathers|strong=\"G4863\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w* \\+w together|strong=\"G4863\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w saying|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, ‘\\+w One|strong=\"G3588\"\\+w* \\+w sows|strong=\"G4687\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w reaps|strong=\"G2325\"\\+w*.’ *" + }, + { + "verseNum": 38, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w reap|strong=\"G2325\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w labored|strong=\"G2872\"\\+w*. \\+w Others|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w labored|strong=\"G2872\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w entered|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w labor|strong=\"G2873\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "From|strong=\"G1537\"* that|strong=\"G3754\"* city|strong=\"G4172\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Samaritans|strong=\"G4541\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G1537\"* the|strong=\"G1519\"* woman|strong=\"G1135\"*, who|strong=\"G3739\"* testified|strong=\"G3140\"*, “He|strong=\"G1161\"* told|strong=\"G3004\"* me|strong=\"G1473\"* everything|strong=\"G3956\"* that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G1473\"* done|strong=\"G4160\"*.”" + }, + { + "verseNum": 40, + "text": "So|strong=\"G3767\"* when|strong=\"G5613\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G4314\"* stay|strong=\"G3306\"* with|strong=\"G4314\"* them|strong=\"G3588\"*. He|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"* two|strong=\"G1417\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 41, + "text": "Many|strong=\"G4183\"* more|strong=\"G4119\"* believed|strong=\"G4100\"* because|strong=\"G1223\"* of|strong=\"G3056\"* his|strong=\"G1223\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, “Now|strong=\"G2532\"* we|strong=\"G3754\"* believe|strong=\"G4100\"*, not|strong=\"G1510\"* because|strong=\"G3754\"* of|strong=\"G1223\"* your|strong=\"G4674\"* speaking|strong=\"G3004\"*; for|strong=\"G1063\"* we|strong=\"G3754\"* have|strong=\"G2532\"* heard for|strong=\"G1063\"* ourselves, and|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* indeed|strong=\"G2532\"* the|strong=\"G2532\"* Christ, the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 43, + "text": "After|strong=\"G3326\"* the|strong=\"G1519\"* two|strong=\"G1417\"* days|strong=\"G2250\"* he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1831\"* there|strong=\"G1161\"* and|strong=\"G1161\"* went|strong=\"G1831\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 44, + "text": "For|strong=\"G1063\"* Jesus|strong=\"G2424\"* himself|strong=\"G2398\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* a|strong=\"G2192\"* prophet|strong=\"G4396\"* has|strong=\"G2192\"* no|strong=\"G3756\"* honor|strong=\"G5092\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* country|strong=\"G3968\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* he|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, the|strong=\"G1722\"* Galileans|strong=\"G1057\"* received|strong=\"G1209\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* seen|strong=\"G3708\"* all|strong=\"G3956\"* the|strong=\"G1722\"* things|strong=\"G3956\"* that|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*." + }, + { + "verseNum": 46, + "text": "Jesus|strong=\"G1510\"* came|strong=\"G2064\"* therefore|strong=\"G3767\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Cana|strong=\"G2580\"* of|strong=\"G5207\"* Galilee|strong=\"G1056\"*, where|strong=\"G3699\"* he|strong=\"G2532\"* made|strong=\"G4160\"* the|strong=\"G1722\"* water|strong=\"G5204\"* into|strong=\"G1519\"* wine|strong=\"G3631\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G2532\"* nobleman whose|strong=\"G3739\"* son|strong=\"G5207\"* was|strong=\"G1510\"* sick at|strong=\"G1722\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 47, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* come|strong=\"G2240\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* to|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* begged|strong=\"G2065\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* would|strong=\"G3195\"* come|strong=\"G2240\"* down|strong=\"G2597\"* and|strong=\"G2532\"* heal|strong=\"G2390\"* his|strong=\"G1519\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* at|strong=\"G1519\"* the|strong=\"G2532\"* point|strong=\"G3195\"* of|strong=\"G1537\"* death." + }, + { + "verseNum": 48, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w signs|strong=\"G4592\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wonders|strong=\"G5059\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* way \\+w believe|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 49, + "text": "The|strong=\"G4314\"* nobleman said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, come|strong=\"G2597\"* down|strong=\"G2597\"* before|strong=\"G4250\"* my|strong=\"G1473\"* child|strong=\"G3813\"* dies.”" + }, + { + "verseNum": 50, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w way|strong=\"G4198\"\\+w*. \\+w Your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w lives|strong=\"G2198\"\\+w*.”* The|strong=\"G2532\"* man|strong=\"G3739\"* believed|strong=\"G4100\"* the|strong=\"G2532\"* word|strong=\"G3056\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* spoke|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G4198\"* his|strong=\"G2532\"* way|strong=\"G4198\"*." + }, + { + "verseNum": 51, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G2597\"* down|strong=\"G2597\"*, his|strong=\"G2532\"* servants|strong=\"G1401\"* met|strong=\"G5221\"* him|strong=\"G3588\"* and|strong=\"G2532\"* reported|strong=\"G3004\"*, saying|strong=\"G3004\"* “Your|strong=\"G2532\"* child|strong=\"G3816\"* lives|strong=\"G2198\"*!”" + }, + { + "verseNum": 52, + "text": "So|strong=\"G3767\"* he|strong=\"G3739\"* inquired|strong=\"G4441\"* of|strong=\"G3844\"* them|strong=\"G3588\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* when|strong=\"G1722\"* he|strong=\"G3739\"* began|strong=\"G2192\"* to|strong=\"G3004\"* get|strong=\"G2192\"* better|strong=\"G2866\"*. They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Yesterday|strong=\"G5504\"* at|strong=\"G1722\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* hour|strong=\"G5610\"*,+ 4:52 1:00 p.m.* the|strong=\"G1722\"* fever|strong=\"G4446\"* left him|strong=\"G3588\"*.”" + }, + { + "verseNum": 53, + "text": "So|strong=\"G3767\"* the|strong=\"G1722\"* father|strong=\"G3962\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G3588\"* at|strong=\"G1722\"* that|strong=\"G3754\"* hour|strong=\"G5610\"* in|strong=\"G1722\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Your|strong=\"G3650\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w lives|strong=\"G2198\"\\+w*.”* He|strong=\"G2532\"* believed|strong=\"G4100\"*, as|strong=\"G1722\"* did|strong=\"G2532\"* his|strong=\"G1722\"* whole|strong=\"G3650\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 54, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* again|strong=\"G3825\"* the|strong=\"G1519\"* second|strong=\"G1208\"* sign|strong=\"G4592\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"*, having|strong=\"G4160\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Judea|strong=\"G2449\"* into|strong=\"G1519\"* Galilee|strong=\"G1056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* feast|strong=\"G1859\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* by|strong=\"G1722\"* the|strong=\"G1722\"* sheep|strong=\"G4262\"* gate, there|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G2192\"* pool|strong=\"G2861\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* in|strong=\"G1722\"* Hebrew|strong=\"G1447\"*, “Bethesda”, having|strong=\"G2192\"* five|strong=\"G4002\"* porches|strong=\"G4745\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* lay|strong=\"G2621\"* a|strong=\"G1722\"* great|strong=\"G4128\"* multitude|strong=\"G4128\"* of|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sick|strong=\"G2621\"*, blind|strong=\"G5185\"*, lame|strong=\"G5560\"*, or|strong=\"G3588\"* paralyzed, waiting for|strong=\"G1722\"* the|strong=\"G1722\"* moving of|strong=\"G1722\"* the|strong=\"G1722\"* water;" + }, + { + "verseNum": 4, + "text": "for an angel went down at certain times into the pool and stirred up the water. Whoever stepped in first after the stirring of the water was healed of whatever disease he had.+ 5:4 NU omits from “waiting” in verse 3 to the end of verse 4.*" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2192\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* was|strong=\"G1510\"* there|strong=\"G1563\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G1510\"* sick for|strong=\"G1161\"* thirty-eight|strong=\"G5144\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* lying|strong=\"G2621\"* there|strong=\"G2532\"*, and|strong=\"G2532\"* knew|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G1096\"* sick|strong=\"G2621\"* for|strong=\"G3754\"* a|strong=\"G2192\"* long|strong=\"G4183\"* time|strong=\"G5550\"*, he|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Do|strong=\"G1096\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w well|strong=\"G2532\"\\+w*?”*" + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* sick man|strong=\"G3739\"* answered him|strong=\"G3588\"*, “Sir|strong=\"G2962\"*, I|strong=\"G1473\"* have|strong=\"G2192\"* no|strong=\"G3756\"* one|strong=\"G3739\"* to|strong=\"G1519\"* put|strong=\"G1519\"* me|strong=\"G1473\"* into|strong=\"G1519\"* the|strong=\"G1722\"* pool|strong=\"G2861\"* when|strong=\"G3752\"* the|strong=\"G1722\"* water|strong=\"G5204\"* is|strong=\"G3588\"* stirred|strong=\"G5015\"* up|strong=\"G1519\"*, but|strong=\"G1161\"* while|strong=\"G1722\"* I|strong=\"G1473\"*’m coming|strong=\"G2064\"*, another|strong=\"G3739\"* steps|strong=\"G2597\"* down|strong=\"G2597\"* before|strong=\"G4253\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Arise|strong=\"G1453\"\\+w*, \\+w take|strong=\"G2532\"\\+w* \\+w up|strong=\"G1453\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Immediately|strong=\"G2112\"*, the|strong=\"G1722\"* man|strong=\"G1565\"* was|strong=\"G1510\"* made|strong=\"G1096\"* well|strong=\"G2532\"*, and|strong=\"G2532\"* took|strong=\"G1096\"* up|strong=\"G2532\"* his|strong=\"G1722\"* mat|strong=\"G2895\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* cured|strong=\"G2323\"*, “It|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*. It|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* you|strong=\"G4771\"* to|strong=\"G2532\"* carry the|strong=\"G2532\"* mat|strong=\"G2895\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* made|strong=\"G4160\"* me|strong=\"G1473\"* well|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘\\+w Take|strong=\"G1161\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w mat|strong=\"G2895\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*.’* ”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* man|strong=\"G5101\"* who|strong=\"G5101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, ‘\\+w Take|strong=\"G2532\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* mat \\+w and|strong=\"G2532\"\\+w* \\+w walk|strong=\"G4043\"\\+w*’*?”" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G5101\"* was|strong=\"G1510\"* healed|strong=\"G2390\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* who|strong=\"G5101\"* it|strong=\"G1161\"* was|strong=\"G1510\"*, for|strong=\"G1063\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* withdrawn, a|strong=\"G1722\"* crowd|strong=\"G3793\"* being|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 14, + "text": "Afterward|strong=\"G3326\"* Jesus|strong=\"G2424\"* found|strong=\"G2147\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w well|strong=\"G2532\"\\+w*. Sin \\+w no|strong=\"G3361\"\\+w* \\+w more|strong=\"G3371\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w nothing|strong=\"G3361\"\\+w* \\+w worse|strong=\"G5501\"\\+w* \\+w happens|strong=\"G1096\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w*.” *" + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* man|strong=\"G4160\"* went|strong=\"G2424\"* away, and|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* had|strong=\"G2424\"* made|strong=\"G4160\"* him|strong=\"G3588\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* persecuted|strong=\"G1377\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* sought to|strong=\"G2532\"* kill him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* did|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* Jesus answered them|strong=\"G3588\"*, “\\+w My|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w still|strong=\"G2193\"\\+w* \\+w working|strong=\"G2038\"\\+w*, \\+w so|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w working|strong=\"G2038\"\\+w*, too.”*" + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* sought|strong=\"G2212\"* all|strong=\"G2532\"* the|strong=\"G2532\"* more|strong=\"G3123\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* not|strong=\"G3756\"* only|strong=\"G3440\"* broke|strong=\"G3089\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G3004\"* God|strong=\"G2316\"* his|strong=\"G1438\"* own|strong=\"G2398\"* Father|strong=\"G3962\"*, making|strong=\"G4160\"* himself|strong=\"G1438\"* equal|strong=\"G2470\"* with|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G1063\"\\+w*, \\+w I|strong=\"G3739\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* sees \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w doing|strong=\"G4160\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w likewise|strong=\"G3668\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* affection \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w shows|strong=\"G1166\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* himself \\+w does|strong=\"G4160\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w show|strong=\"G1166\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w marvel|strong=\"G2296\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w raises|strong=\"G1453\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w life|strong=\"G2227\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w life|strong=\"G2227\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w desires|strong=\"G2309\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w judges|strong=\"G2919\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w but|strong=\"G1063\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w that|strong=\"G2443\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Son|strong=\"G5207\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 24, + "text": "“\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w my|strong=\"G1473\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w passed|strong=\"G3327\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w death|strong=\"G2288\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Most|strong=\"G2316\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dead|strong=\"G3498\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w voice|strong=\"G5456\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w live|strong=\"G2198\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w as|strong=\"G5618\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w execute|strong=\"G4160\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w man|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w marvel|strong=\"G2296\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tombs|strong=\"G3419\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w voice|strong=\"G5456\"\\+w* *" + }, + { + "verseNum": 29, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G1607\"\\+w* \\+w out|strong=\"G1607\"\\+w*; \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w good|strong=\"G3588\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w evil|strong=\"G5337\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w of|strong=\"G2532\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* hear, \\+w I|strong=\"G1473\"\\+w* \\+w judge|strong=\"G2919\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w righteous|strong=\"G1342\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* Father \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*.*" + }, + { + "verseNum": 31, + "text": "“\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w witness|strong=\"G3140\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* valid. *" + }, + { + "verseNum": 32, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w another|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w John|strong=\"G2491\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2532\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth. *" + }, + { + "verseNum": 34, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w man|strong=\"G3778\"\\+w*. \\+w However|strong=\"G1161\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w saved|strong=\"G4982\"\\+w*. *" + }, + { + "verseNum": 35, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w burning|strong=\"G2545\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w shining|strong=\"G5316\"\\+w* \\+w lamp|strong=\"G3088\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w willing|strong=\"G2309\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w rejoice|strong=\"G2532\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w John|strong=\"G2491\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w accomplish|strong=\"G5048\"\\+w*, \\+w the|strong=\"G1161\"\\+w* \\+w very|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* sent \\+w me|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w himself|strong=\"G1565\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w has|strong=\"G3962\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w You|strong=\"G3708\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3777\"\\+w* heard \\+w his|strong=\"G4012\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w at|strong=\"G4012\"\\+w* \\+w any|strong=\"G4455\"\\+w* \\+w time|strong=\"G4455\"\\+w*, \\+w nor|strong=\"G3777\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w his|strong=\"G4012\"\\+w* \\+w form|strong=\"G1491\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w You|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w living|strong=\"G2192\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 39, + "text": "“\\+w You|strong=\"G5210\"\\+w* \\+w search|strong=\"G2045\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scriptures|strong=\"G1124\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w these|strong=\"G4012\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w Yet|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w I|strong=\"G2983\"\\+w* don’t \\+w receive|strong=\"G2983\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w from|strong=\"G3844\"\\+w* men. *" + }, + { + "verseNum": 42, + "text": "\\+w But|strong=\"G2316\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w God|strong=\"G2316\"\\+w*’\\+w s|strong=\"G2192\"\\+w* love \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G1437\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w How|strong=\"G4459\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2532\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w God|strong=\"G2316\"\\+w*?*" + }, + { + "verseNum": 45, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w accuse|strong=\"G2723\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w There|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w accuses|strong=\"G2723\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w even|strong=\"G1519\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w on|strong=\"G1519\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w set|strong=\"G1679\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w hope|strong=\"G1679\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w would|strong=\"G4100\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G1565\"\\+w* \\+w wrote|strong=\"G1125\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w his|strong=\"G1565\"\\+w* \\+w writings|strong=\"G1121\"\\+w*, \\+w how|strong=\"G4459\"\\+w* \\+w will|strong=\"G4100\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G4487\"\\+w*?”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* went|strong=\"G2424\"* away|strong=\"G3326\"* to|strong=\"G2424\"* the|strong=\"G3588\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2424\"* the|strong=\"G3588\"* sea|strong=\"G2281\"* of|strong=\"G2424\"* Galilee|strong=\"G1056\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* also called|strong=\"G3778\"* the|strong=\"G3588\"* Sea|strong=\"G2281\"* of|strong=\"G2424\"* Tiberias|strong=\"G5085\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"G1909\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* followed him|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G1161\"* saw|strong=\"G3708\"* his|strong=\"G1909\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G1161\"* did|strong=\"G4160\"* on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* sick." + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* sat|strong=\"G2521\"* there|strong=\"G1563\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* Passover|strong=\"G3957\"*, the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, was|strong=\"G1510\"* at|strong=\"G1161\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, lifting|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* seeing|strong=\"G2300\"* that|strong=\"G3754\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* was|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, said|strong=\"G3004\"* to|strong=\"G4314\"* Philip|strong=\"G5376\"*, “\\+w Where|strong=\"G4159\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w we|strong=\"G3754\"\\+w* \\+w to|strong=\"G4314\"\\+w* buy bread, \\+w that|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*?”*" + }, + { + "verseNum": 6, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G3004\"* test|strong=\"G3985\"* him|strong=\"G4160\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* himself knew|strong=\"G1492\"* what|strong=\"G5101\"* he|strong=\"G1161\"* would|strong=\"G3195\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 7, + "text": "Philip|strong=\"G5376\"* answered him|strong=\"G3588\"*, “Two|strong=\"G1250\"* hundred|strong=\"G1250\"* denarii|strong=\"G1220\"*+ 6:7 A denarius was a silver coin worth about a day’s wages for an agricultural laborer, so 200 denarii would be between 6 and 7 month’s pay.* worth of|strong=\"G5100\"* bread is|strong=\"G3588\"* not|strong=\"G3756\"* sufficient for|strong=\"G2443\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* every|strong=\"G1538\"* one|strong=\"G5100\"* of|strong=\"G5100\"* them|strong=\"G3588\"* may|strong=\"G2443\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* little|strong=\"G1024\"*.”" + }, + { + "verseNum": 8, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, Andrew, Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*’s brother, said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 9, + "text": "“There|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2192\"* boy here|strong=\"G5602\"* who|strong=\"G3739\"* has|strong=\"G2192\"* five|strong=\"G4002\"* barley|strong=\"G2916\"* loaves and|strong=\"G2532\"* two|strong=\"G1417\"* fish|strong=\"G3795\"*, but|strong=\"G2532\"* what|strong=\"G5101\"* are|strong=\"G1510\"* these|strong=\"G3778\"* among|strong=\"G1519\"* so|strong=\"G2532\"* many|strong=\"G5118\"*?”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Have|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w people|strong=\"G1510\"\\+w* sit down.”* Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1510\"* much|strong=\"G4183\"* grass|strong=\"G5528\"* in|strong=\"G1722\"* that|strong=\"G3588\"* place|strong=\"G5117\"*. So|strong=\"G3767\"* the|strong=\"G1722\"* men|strong=\"G3588\"* sat down, in|strong=\"G1722\"* number about|strong=\"G5613\"* five|strong=\"G4000\"* thousand|strong=\"G4000\"*." + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* took|strong=\"G2983\"* the|strong=\"G2532\"* loaves, and|strong=\"G2532\"* having|strong=\"G2532\"* given|strong=\"G1325\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* distributed|strong=\"G1239\"* to|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3588\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sitting|strong=\"G2532\"* down|strong=\"G1537\"*, likewise|strong=\"G3668\"* also|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* fish|strong=\"G3795\"* as|strong=\"G3745\"* much|strong=\"G3745\"* as|strong=\"G3745\"* they|strong=\"G2532\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* filled|strong=\"G1705\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G5613\"* disciples|strong=\"G3101\"*, “\\+w Gather|strong=\"G4863\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w broken|strong=\"G2801\"\\+w* \\+w pieces|strong=\"G2801\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w left|strong=\"G4052\"\\+w* \\+w over|strong=\"G4052\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w nothing|strong=\"G3361\"\\+w* \\+w be|strong=\"G3361\"\\+w* lost.”*" + }, + { + "verseNum": 13, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* gathered|strong=\"G4863\"* them|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* filled|strong=\"G1072\"* twelve|strong=\"G1427\"* baskets|strong=\"G2894\"* with|strong=\"G1537\"* broken|strong=\"G2801\"* pieces|strong=\"G2801\"* from|strong=\"G1537\"* the|strong=\"G2532\"* five|strong=\"G4002\"* barley|strong=\"G2916\"* loaves, which|strong=\"G3739\"* were|strong=\"G3588\"* left|strong=\"G4052\"* over|strong=\"G1537\"* by|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2532\"* eaten." + }, + { + "verseNum": 14, + "text": "When|strong=\"G2064\"* therefore|strong=\"G3767\"* the|strong=\"G1519\"* people|strong=\"G1510\"* saw|strong=\"G3708\"* the|strong=\"G1519\"* sign|strong=\"G4592\"* which|strong=\"G3739\"* Jesus|strong=\"G3004\"* did|strong=\"G4160\"*, they|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G1519\"* prophet|strong=\"G4396\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, perceiving|strong=\"G1097\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G2064\"* and|strong=\"G2532\"* take|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G2532\"* force to|strong=\"G1519\"* make|strong=\"G4160\"* him|strong=\"G3588\"* king|strong=\"G3588\"*, withdrew|strong=\"G2424\"* again|strong=\"G3825\"* to|strong=\"G1519\"* the|strong=\"G2532\"* mountain|strong=\"G3735\"* by|strong=\"G2532\"* himself|strong=\"G3441\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G1161\"* evening|strong=\"G3798\"* came|strong=\"G1096\"*, his|strong=\"G1909\"* disciples|strong=\"G3101\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"G2532\"* entered|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G2532\"* over|strong=\"G4008\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*. It|strong=\"G2532\"* was|strong=\"G1096\"* now|strong=\"G1161\"* dark|strong=\"G4653\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* not|strong=\"G3768\"* come|strong=\"G2064\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3588\"* sea|strong=\"G2281\"* was|strong=\"G3588\"* tossed by|strong=\"G5037\"* a|strong=\"G5037\"* great|strong=\"G3173\"* wind|strong=\"G4154\"* blowing|strong=\"G4154\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* they|strong=\"G2532\"* had|strong=\"G2424\"* rowed|strong=\"G1643\"* about|strong=\"G5613\"* twenty-five or|strong=\"G2228\"* thirty|strong=\"G5144\"* stadia,+ 6:19 25 to 30 stadia is about 5 to 6 kilometers or about 3 to 4 miles* they|strong=\"G2532\"* saw|strong=\"G2334\"* Jesus|strong=\"G2424\"* walking|strong=\"G4043\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*+ 6:19 See Job 9:8* and|strong=\"G2532\"* drawing|strong=\"G1096\"* near|strong=\"G1451\"* to|strong=\"G2532\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w I|strong=\"G1473\"\\+w*.*+ 6:20 or, I AM* Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* willing|strong=\"G2309\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*. Immediately|strong=\"G2112\"* the|strong=\"G2532\"* boat|strong=\"G4143\"* was|strong=\"G1096\"* at|strong=\"G1909\"* the|strong=\"G2532\"* land|strong=\"G1093\"* where|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G3588\"* going|strong=\"G5217\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, the|strong=\"G2532\"* multitude|strong=\"G3793\"* that|strong=\"G3754\"* stood|strong=\"G2476\"* on|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* there|strong=\"G1563\"* was|strong=\"G1510\"* no|strong=\"G3756\"* other|strong=\"G4008\"* boat|strong=\"G4143\"* there|strong=\"G1563\"*, except|strong=\"G1487\"* the|strong=\"G2532\"* one|strong=\"G1520\"* in|strong=\"G1519\"* which|strong=\"G3588\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G2424\"* embarked, and|strong=\"G2532\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* hadn’t|strong=\"G3588\"* entered|strong=\"G4897\"* with|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boat|strong=\"G4143\"*, but|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* had|strong=\"G2424\"* gone away alone|strong=\"G3441\"*." + }, + { + "verseNum": 23, + "text": "However, boats|strong=\"G4142\"* from|strong=\"G1537\"* Tiberias|strong=\"G5085\"* came|strong=\"G2064\"* near|strong=\"G1451\"* to|strong=\"G2064\"* the|strong=\"G1537\"* place|strong=\"G5117\"* where|strong=\"G3699\"* they|strong=\"G3588\"* ate|strong=\"G2068\"* the|strong=\"G1537\"* bread after|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* had|strong=\"G3588\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* wasn’t|strong=\"G3588\"* there|strong=\"G1563\"*, nor|strong=\"G3761\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*, they|strong=\"G2532\"* themselves|strong=\"G1519\"* got|strong=\"G1684\"* into|strong=\"G1519\"* the|strong=\"G2532\"* boats|strong=\"G4142\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Capernaum|strong=\"G2584\"*, seeking|strong=\"G2212\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"* on|strong=\"G1096\"* the|strong=\"G2532\"* other|strong=\"G4008\"* side|strong=\"G4008\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, when|strong=\"G2532\"* did|strong=\"G2532\"* you|strong=\"G3004\"* come|strong=\"G1096\"* here|strong=\"G5602\"*?”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w signs|strong=\"G4592\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* loaves \\+w and|strong=\"G2532\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w filled|strong=\"G5526\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w work|strong=\"G2038\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w which|strong=\"G3739\"\\+w* perishes, \\+w but|strong=\"G3361\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w sealed|strong=\"G4972\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* must|strong=\"G4160\"* we|strong=\"G2443\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* may|strong=\"G2443\"* work|strong=\"G2041\"* the|strong=\"G4314\"* works|strong=\"G2041\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w sent|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2443\"* him|strong=\"G3708\"*, “What|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"* for|strong=\"G2532\"* a|strong=\"G2532\"* sign|strong=\"G4592\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* you|strong=\"G4771\"*? What|strong=\"G5101\"* work|strong=\"G2038\"* do|strong=\"G4160\"* you|strong=\"G4771\"* do|strong=\"G4160\"*?" + }, + { + "verseNum": 31, + "text": "Our|strong=\"G1722\"* fathers|strong=\"G3962\"* ate|strong=\"G2068\"* the|strong=\"G1722\"* manna|strong=\"G3131\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*. As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, ‘He|strong=\"G3588\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* bread out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*+ 6:31 Greek and Hebrew use the same word for “heaven”, “the heavens”, “the sky”, and “the air”.* to|strong=\"G1722\"* eat|strong=\"G2068\"*.’”+ 6:31 Exodus 16:4; Nehemiah 9:15; Psalms 78:24-25*" + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w it|strong=\"G3004\"\\+w* wasn’\\+w t|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1537\"\\+w* bread \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w but|strong=\"G3767\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w true|strong=\"G3588\"\\+w* bread \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 34, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, always|strong=\"G3842\"* give|strong=\"G1325\"* us|strong=\"G1325\"* this|strong=\"G3778\"* bread.”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w Whoever|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w hungry|strong=\"G3983\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w whoever|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’t \\+w believe|strong=\"G4100\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w gives|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3956\"\\+w* \\+w throw|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w come|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w from|strong=\"G2597\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G2307\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 39, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* Father \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w has|strong=\"G3739\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* lose \\+w nothing|strong=\"G3361\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w should|strong=\"G3588\"\\+w* raise \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G1325\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 40, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w raise|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w at|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*.”*" + }, + { + "verseNum": 41, + "text": "The|strong=\"G1537\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* murmured|strong=\"G1111\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1537\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* Jesus|strong=\"G2424\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Joseph|strong=\"G2501\"*, whose|strong=\"G3739\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"* we|strong=\"G2249\"* know|strong=\"G1492\"*? How|strong=\"G4459\"* then|strong=\"G2532\"* does|strong=\"G1492\"* he|strong=\"G2532\"* say|strong=\"G3004\"*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*’?” *" + }, + { + "verseNum": 43, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3004\"*, “Don’t \\+w murmur|strong=\"G1111\"\\+w* \\+w among|strong=\"G3326\"\\+w* yourselves. *" + }, + { + "verseNum": 44, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w draws|strong=\"G1670\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2064\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* raise \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G3361\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w prophets|strong=\"G4396\"\\+w*, ‘\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w taught|strong=\"G1318\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’ *+ 6:45 Isaiah 54:13* \\+w Therefore|strong=\"G3844\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* hears \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w learned|strong=\"G3129\"\\+w*, \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w Not|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w He|strong=\"G3754\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "Most \\+w certainly|strong=\"G2192\"\\+w*, \\+w I|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G4100\"\\+w* \\+w me|strong=\"G3004\"\\+w* \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* bread \\+w of|strong=\"G3588\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w Your|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w manna|strong=\"G3131\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w wilderness|strong=\"G2048\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* die. *" + }, + { + "verseNum": 51, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w* bread \\+w which|strong=\"G3739\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3588\"\\+w* bread, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. \\+w Yes|strong=\"G1161\"\\+w*, \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*.”*" + }, + { + "verseNum": 52, + "text": "The|strong=\"G4314\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* contended with|strong=\"G4314\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* this|strong=\"G3778\"* man|strong=\"G3778\"* give|strong=\"G1325\"* us|strong=\"G1325\"* his|strong=\"G1325\"* flesh|strong=\"G4561\"* to|strong=\"G4314\"* eat|strong=\"G2068\"*?”" + }, + { + "verseNum": 53, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Most \\+w certainly|strong=\"G2192\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3361\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w his|strong=\"G1438\"\\+w* blood, \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w yourselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 54, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G5176\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w has|strong=\"G2192\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w raise|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w at|strong=\"G2250\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w food|strong=\"G1035\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* blood \\+w is|strong=\"G1510\"\\+w* \\+w drink|strong=\"G4213\"\\+w* \\+w indeed|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G5176\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drinks|strong=\"G4095\"\\+w* \\+w my|strong=\"G1722\"\\+w* blood \\+w lives|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 57, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w so|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* feeds \\+w on|strong=\"G2198\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 58, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* bread \\+w which|strong=\"G3588\"\\+w* \\+w came|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w*—\\+w not|strong=\"G3756\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w our|strong=\"G2532\"\\+w* \\+w fathers|strong=\"G3962\"\\+w* \\+w ate|strong=\"G2068\"\\+w* \\+w the|strong=\"G2532\"\\+w* manna \\+w and|strong=\"G2532\"\\+w* \\+w died|strong=\"G3588\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w eats|strong=\"G2068\"\\+w* \\+w this|strong=\"G3778\"\\+w* bread \\+w will|strong=\"G1510\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w*.”*" + }, + { + "verseNum": 59, + "text": "He|strong=\"G3778\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*, as|strong=\"G1722\"* he|strong=\"G3778\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* Capernaum|strong=\"G2584\"*." + }, + { + "verseNum": 60, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, when|strong=\"G3767\"* they|strong=\"G3588\"* heard this|strong=\"G3778\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G1510\"* hard|strong=\"G4642\"* saying|strong=\"G3004\"*! Who|strong=\"G5101\"* can|strong=\"G1410\"* listen to|strong=\"G3004\"* it|strong=\"G3778\"*?”" + }, + { + "verseNum": 61, + "text": "But|strong=\"G1161\"* Jesus|strong=\"G2424\"* knowing|strong=\"G1492\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* that|strong=\"G3754\"* his|strong=\"G1438\"* disciples|strong=\"G3101\"* murmured|strong=\"G1111\"* at|strong=\"G1722\"* this|strong=\"G3778\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Does|strong=\"G1492\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G4624\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*? *" + }, + { + "verseNum": 62, + "text": "\\+w Then|strong=\"G3767\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w would|strong=\"G1437\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* ascending \\+w to|strong=\"G1510\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w before|strong=\"G4386\"\\+w*? *" + }, + { + "verseNum": 63, + "text": "\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w spirit|strong=\"G4151\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w gives|strong=\"G2227\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w flesh|strong=\"G4561\"\\+w* \\+w profits|strong=\"G5623\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w spirit|strong=\"G4151\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 64, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w some|strong=\"G5100\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w who|strong=\"G3739\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*.”* For|strong=\"G1063\"* Jesus|strong=\"G2424\"* knew|strong=\"G1492\"* from|strong=\"G1537\"* the|strong=\"G2532\"* beginning who|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G1510\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"*, and|strong=\"G2532\"* who|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G1510\"* who|strong=\"G3739\"* would|strong=\"G2532\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 65, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 66, + "text": "At|strong=\"G1519\"* this|strong=\"G3778\"*, many|strong=\"G4183\"* of|strong=\"G1537\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* went|strong=\"G2532\"* back|strong=\"G3694\"* and|strong=\"G2532\"* walked|strong=\"G4043\"* no|strong=\"G3765\"* more|strong=\"G4183\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 67, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*, “\\+w You|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*?”*" + }, + { + "verseNum": 68, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* answered him|strong=\"G4314\"*, “Lord|strong=\"G2962\"*, to|strong=\"G4314\"* whom|strong=\"G5101\"* would|strong=\"G5101\"* we|strong=\"G2192\"* go|strong=\"G2192\"*? You|strong=\"G5101\"* have|strong=\"G2192\"* the|strong=\"G4314\"* words|strong=\"G4487\"* of|strong=\"G2962\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 69, + "text": "We|strong=\"G2249\"* have|strong=\"G2532\"* come|strong=\"G1510\"* to|strong=\"G2532\"* believe|strong=\"G4100\"* and|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ, the|strong=\"G2532\"* Son of|strong=\"G2316\"* the|strong=\"G2532\"* living God|strong=\"G2316\"*.”" + }, + { + "verseNum": 70, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G3588\"*, “Didn’\\+w t|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w choose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w twelve|strong=\"G1427\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w*?”*" + }, + { + "verseNum": 71, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G1537\"* Judas|strong=\"G2455\"*, the|strong=\"G1537\"* son of|strong=\"G1537\"* Simon|strong=\"G4613\"* Iscariot|strong=\"G2469\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* was|strong=\"G1510\"* he|strong=\"G1161\"* who|strong=\"G3588\"* would|strong=\"G3195\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*, being|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1537\"* twelve|strong=\"G1427\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* Judea|strong=\"G2453\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* feast|strong=\"G1859\"* of|strong=\"G3588\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, the|strong=\"G1161\"* Feast|strong=\"G1859\"* of|strong=\"G3588\"* Booths|strong=\"G4634\"*, was|strong=\"G1510\"* at|strong=\"G1161\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1519\"* brothers therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Depart|strong=\"G3327\"* from|strong=\"G2532\"* here|strong=\"G1782\"* and|strong=\"G2532\"* go|strong=\"G5217\"* into|strong=\"G1519\"* Judea|strong=\"G2449\"*, that|strong=\"G2443\"* your|strong=\"G2532\"* disciples|strong=\"G3101\"* also|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G2334\"* your|strong=\"G2532\"* works|strong=\"G2041\"* which|strong=\"G3739\"* you|strong=\"G4771\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G5100\"* does|strong=\"G4160\"* anything|strong=\"G5100\"* in|strong=\"G1722\"* secret|strong=\"G2927\"* while|strong=\"G1722\"* he|strong=\"G2532\"* seeks|strong=\"G2212\"* to|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G5319\"* openly|strong=\"G3954\"*. If|strong=\"G1487\"* you|strong=\"G1487\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, reveal|strong=\"G5319\"* yourself|strong=\"G4572\"* to|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* even|strong=\"G3761\"* his|strong=\"G1519\"* brothers didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w has|strong=\"G1510\"\\+w* \\+w not|strong=\"G1510\"\\+w* \\+w yet|strong=\"G1161\"\\+w* \\+w come|strong=\"G1510\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G5212\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w ready|strong=\"G2092\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w The|strong=\"G1161\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w it|strong=\"G3754\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w its|strong=\"G3754\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w evil|strong=\"G4190\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w go|strong=\"G1519\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w feast|strong=\"G1859\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w yet|strong=\"G3768\"\\+w* \\+w going|strong=\"G3778\"\\+w* \\+w up|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w feast|strong=\"G1859\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w time|strong=\"G2540\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w yet|strong=\"G3768\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "Having said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, he|strong=\"G1161\"* stayed|strong=\"G3306\"* in|strong=\"G1722\"* Galilee|strong=\"G1056\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* brothers had|strong=\"G2532\"* gone up|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, then|strong=\"G2532\"* he|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"*, not|strong=\"G3756\"* publicly|strong=\"G5320\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* it|strong=\"G2532\"* were|strong=\"G3588\"* in|strong=\"G1722\"* secret|strong=\"G2927\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* sought|strong=\"G2212\"* him|strong=\"G3588\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 12, + "text": "There|strong=\"G2532\"* was|strong=\"G1510\"* much|strong=\"G4183\"* murmuring|strong=\"G1112\"* among|strong=\"G1722\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*. Some|strong=\"G3588\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G3756\"* man|strong=\"G3756\"*.” Others|strong=\"G3588\"* said|strong=\"G3004\"*, “Not|strong=\"G3756\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* leads|strong=\"G4105\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* astray|strong=\"G4105\"*.”" + }, + { + "verseNum": 13, + "text": "Yet|strong=\"G3305\"* no|strong=\"G3762\"* one|strong=\"G3762\"* spoke|strong=\"G2980\"* openly|strong=\"G3954\"* of|strong=\"G4012\"* him|strong=\"G3588\"* for|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G4012\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G3588\"* now|strong=\"G1161\"* the|strong=\"G2532\"* middle of|strong=\"G2532\"* the|strong=\"G2532\"* feast|strong=\"G1859\"*, Jesus|strong=\"G2424\"* went|strong=\"G2424\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"*, “How|strong=\"G4459\"* does|strong=\"G1492\"* this|strong=\"G3778\"* man|strong=\"G3778\"* know|strong=\"G1492\"* letters|strong=\"G1121\"*, having|strong=\"G1492\"* never|strong=\"G3361\"* been|strong=\"G3361\"* educated|strong=\"G3129\"*?”" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w My|strong=\"G1699\"\\+w* \\+w teaching|strong=\"G1322\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w desires|strong=\"G2309\"\\+w* \\+w to|strong=\"G2309\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w his|strong=\"G4012\"\\+w* \\+w will|strong=\"G2307\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w will|strong=\"G2307\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w teaching|strong=\"G1322\"\\+w*, \\+w whether|strong=\"G1437\"\\+w* \\+w it|strong=\"G1437\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w speaking|strong=\"G2980\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w himself|strong=\"G1438\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w glory|strong=\"G1391\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* unrighteousness \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "Didn’\\+w t|strong=\"G3588\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w keeps|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w law|strong=\"G3551\"\\+w*? \\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2532\"\\+w* kill \\+w me|strong=\"G1325\"\\+w*?”*" + }, + { + "verseNum": 20, + "text": "The|strong=\"G3588\"* multitude|strong=\"G3793\"* answered, “You|strong=\"G4771\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*! Who|strong=\"G5101\"* seeks|strong=\"G2212\"* to|strong=\"G2212\"* kill you|strong=\"G4771\"*?”" + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G4160\"*, “\\+w I|strong=\"G2532\"\\+w* \\+w did|strong=\"G4160\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w marvel|strong=\"G2296\"\\+w* \\+w because|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Moses|strong=\"G3475\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w circumcision|strong=\"G4061\"\\+w* (\\+w not|strong=\"G3756\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Moses|strong=\"G3475\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fathers|strong=\"G3962\"\\+w*), \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w circumcise|strong=\"G4059\"\\+w* \\+w a|strong=\"G2532\"\\+w* boy. *" + }, + { + "verseNum": 23, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w a|strong=\"G1722\"\\+w* boy \\+w receives|strong=\"G2983\"\\+w* \\+w circumcision|strong=\"G4061\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w of|strong=\"G3551\"\\+w* \\+w Moses|strong=\"G3475\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G3361\"\\+w* \\+w broken|strong=\"G3089\"\\+w*, \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w angry|strong=\"G5520\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G3361\"\\+w* \\+w completely|strong=\"G3650\"\\+w* \\+w healthy|strong=\"G5199\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Sabbath|strong=\"G4521\"\\+w*? *" + }, + { + "verseNum": 24, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w appearance|strong=\"G3799\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w righteous|strong=\"G1342\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*.” *" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G3767\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* of|strong=\"G1537\"* Jerusalem|strong=\"G2415\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G3588\"* seek|strong=\"G2212\"* to|strong=\"G3004\"* kill?" + }, + { + "verseNum": 26, + "text": "Behold|strong=\"G2396\"*, he|strong=\"G2532\"* speaks|strong=\"G2980\"* openly|strong=\"G3954\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* say|strong=\"G3004\"* nothing|strong=\"G3762\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. Can|strong=\"G3004\"* it|strong=\"G2532\"* be|strong=\"G1510\"* that|strong=\"G3754\"* the|strong=\"G2532\"* rulers indeed|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G2532\"* Christ|strong=\"G5547\"*?" + }, + { + "verseNum": 27, + "text": "However|strong=\"G1161\"*, we|strong=\"G1161\"* know|strong=\"G1492\"* where|strong=\"G4159\"* this|strong=\"G3778\"* man|strong=\"G3778\"* comes|strong=\"G2064\"* from|strong=\"G2064\"*, but|strong=\"G1161\"* when|strong=\"G3752\"* the|strong=\"G1161\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* will|strong=\"G1510\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G1161\"* comes|strong=\"G2064\"* from|strong=\"G2064\"*.”" + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, teaching|strong=\"G1321\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G2064\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* him, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* him, \\+w and|strong=\"G2548\"\\+w* \\+w he|strong=\"G3754\"\\+w* \\+w sent|strong=\"G3844\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* sought|strong=\"G2212\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* take|strong=\"G4084\"* him|strong=\"G3588\"*; but|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* laid|strong=\"G1911\"* a|strong=\"G2532\"* hand|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* his|strong=\"G1909\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* not|strong=\"G3762\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* of|strong=\"G1537\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*. They|strong=\"G2532\"* said|strong=\"G3004\"*, “When|strong=\"G3752\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"*, he|strong=\"G2532\"* won’t|strong=\"G3588\"* do|strong=\"G4160\"* more|strong=\"G4119\"* signs|strong=\"G4592\"* than|strong=\"G4183\"* those|strong=\"G3588\"* which|strong=\"G3739\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G3739\"* done|strong=\"G4160\"*, will|strong=\"G2532\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* heard the|strong=\"G2532\"* multitude|strong=\"G3793\"* murmuring|strong=\"G1111\"* these|strong=\"G3778\"* things|strong=\"G3778\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* sent|strong=\"G2532\"* officers|strong=\"G5257\"* to|strong=\"G2443\"* arrest|strong=\"G4084\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3397\"\\+w* \\+w while|strong=\"G5550\"\\+w* \\+w longer|strong=\"G2089\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* won’t \\+w find|strong=\"G2147\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w come|strong=\"G2064\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*.”*" + }, + { + "verseNum": 35, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* among|strong=\"G1519\"* themselves|strong=\"G1438\"*, “Where|strong=\"G4226\"* will|strong=\"G3195\"* this|strong=\"G3778\"* man|strong=\"G3778\"* go|strong=\"G4198\"* that|strong=\"G3754\"* we|strong=\"G3754\"* won’t|strong=\"G3588\"* find|strong=\"G2147\"* him|strong=\"G3588\"*? Will|strong=\"G3195\"* he|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Dispersion|strong=\"G1290\"* among|strong=\"G1519\"* the|strong=\"G2532\"* Greeks|strong=\"G1672\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* the|strong=\"G2532\"* Greeks|strong=\"G1672\"*?" + }, + { + "verseNum": 36, + "text": "What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* word|strong=\"G3056\"* that|strong=\"G3739\"* he|strong=\"G2532\"* said|strong=\"G3004\"*, ‘\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w me|strong=\"G1473\"\\+w*;’* and|strong=\"G2532\"* ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*’*?”" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* on|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* and|strong=\"G2532\"* greatest|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*, Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w drink|strong=\"G4095\"\\+w*! *" + }, + { + "verseNum": 38, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w has|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, \\+w from|strong=\"G1537\"\\+w* \\+w within|strong=\"G2836\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w flow|strong=\"G4482\"\\+w* \\+w rivers|strong=\"G4215\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w living|strong=\"G2198\"\\+w* \\+w water|strong=\"G5204\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* about|strong=\"G4012\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"*, which|strong=\"G3739\"* those|strong=\"G3588\"* believing|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* were|strong=\"G1510\"* to|strong=\"G1519\"* receive|strong=\"G2983\"*. For|strong=\"G1063\"* the|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G1161\"* given, because|strong=\"G3754\"* Jesus|strong=\"G2424\"* wasn’t|strong=\"G3588\"* yet|strong=\"G1161\"* glorified|strong=\"G1392\"*." + }, + { + "verseNum": 40, + "text": "Many|strong=\"G3793\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"*, when|strong=\"G3767\"* they|strong=\"G3588\"* heard these|strong=\"G3778\"* words|strong=\"G3056\"*, said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* truly the|strong=\"G1537\"* prophet|strong=\"G4396\"*.”" + }, + { + "verseNum": 41, + "text": "Others|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1537\"* Christ|strong=\"G5547\"*.” But|strong=\"G1161\"* some|strong=\"G3588\"* said|strong=\"G3004\"*, “What|strong=\"G3588\"*, does|strong=\"G1510\"* the|strong=\"G1537\"* Christ|strong=\"G5547\"* come|strong=\"G2064\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*?" + }, + { + "verseNum": 42, + "text": "Hasn’t|strong=\"G3588\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* said|strong=\"G3004\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* comes|strong=\"G2064\"* of|strong=\"G1537\"* the|strong=\"G2532\"* offspring+ 7:42 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"*,+ 7:42 2 Samuel 7:12* and|strong=\"G2532\"* from|strong=\"G1537\"* Bethlehem,+ 7:42 Micah 5:2* the|strong=\"G2532\"* village|strong=\"G2968\"* where|strong=\"G3699\"* David|strong=\"G1138\"* was|strong=\"G1510\"*?”" + }, + { + "verseNum": 43, + "text": "So|strong=\"G3767\"* a|strong=\"G1096\"* division|strong=\"G4978\"* arose|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 44, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* would|strong=\"G2309\"* have|strong=\"G2309\"* arrested him|strong=\"G3588\"*, but|strong=\"G1161\"* no|strong=\"G3762\"* one|strong=\"G5100\"* laid|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"G2532\"* officers|strong=\"G5257\"* therefore|strong=\"G3767\"* came|strong=\"G2064\"* to|strong=\"G4314\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* Pharisees|strong=\"G5330\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Why|strong=\"G5101\"* didn’t|strong=\"G3588\"* you|strong=\"G3004\"* bring|strong=\"G2532\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 46, + "text": "The|strong=\"G3588\"* officers|strong=\"G5257\"* answered, “No|strong=\"G3588\"* man|strong=\"G3778\"* ever|strong=\"G3763\"* spoke|strong=\"G2980\"* like|strong=\"G5613\"* this|strong=\"G3778\"* man|strong=\"G3778\"*!”" + }, + { + "verseNum": 47, + "text": "The|strong=\"G2532\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* answered them|strong=\"G3588\"*, “You|strong=\"G5210\"* aren’t|strong=\"G3588\"* also|strong=\"G2532\"* led|strong=\"G3767\"* astray|strong=\"G4105\"*, are|strong=\"G3588\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 48, + "text": "Have|strong=\"G5100\"* any|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1519\"* rulers or|strong=\"G2228\"* any|strong=\"G5100\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Pharisees|strong=\"G5330\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 49, + "text": "But|strong=\"G3361\"* this|strong=\"G3778\"* multitude|strong=\"G3793\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G3588\"* law|strong=\"G3551\"* is|strong=\"G1510\"* cursed|strong=\"G1944\"*.”" + }, + { + "verseNum": 50, + "text": "Nicodemus|strong=\"G3530\"* (he|strong=\"G3004\"* who|strong=\"G1520\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1438\"* by|strong=\"G1537\"* night, being|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G1438\"*) said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G1438\"*," + }, + { + "verseNum": 51, + "text": "“Does|strong=\"G4160\"* our|strong=\"G2532\"* law|strong=\"G3551\"* judge|strong=\"G2919\"* a|strong=\"G2532\"* man|strong=\"G3361\"* unless|strong=\"G1437\"* it|strong=\"G2532\"* first|strong=\"G4413\"* hears from|strong=\"G3844\"* him|strong=\"G3588\"* personally and|strong=\"G2532\"* knows|strong=\"G1097\"* what|strong=\"G5101\"* he|strong=\"G2532\"* does|strong=\"G4160\"*?”" + }, + { + "verseNum": 52, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* also|strong=\"G2532\"* from|strong=\"G1537\"* Galilee|strong=\"G1056\"*? Search|strong=\"G2045\"* and|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G3754\"* no|strong=\"G3756\"* prophet|strong=\"G4396\"* has|strong=\"G3708\"* arisen|strong=\"G1453\"* out|strong=\"G1537\"* of|strong=\"G1537\"* Galilee|strong=\"G1056\"*.”+ 7:52 See Isaiah 9:1; Matthew 4:13-16*" + }, + { + "verseNum": 53, + "text": "Everyone|strong=\"G1538\"* went|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own house|strong=\"G3624\"*," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "but|strong=\"G1161\"* Jesus|strong=\"G2424\"* went|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Mount|strong=\"G3735\"* of|strong=\"G2424\"* Olives|strong=\"G1636\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* very|strong=\"G2532\"* early|strong=\"G3722\"* in|strong=\"G1519\"* the|strong=\"G2532\"* morning|strong=\"G3722\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1722\"* scribes|strong=\"G1122\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* brought|strong=\"G1161\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* taken|strong=\"G2638\"* in|strong=\"G1722\"* adultery|strong=\"G3430\"*. Having|strong=\"G2532\"* set|strong=\"G2476\"* her|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"*," + }, + { + "verseNum": 4, + "text": "they|strong=\"G3588\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Teacher|strong=\"G1320\"*, we|strong=\"G3778\"* found|strong=\"G2638\"* this|strong=\"G3778\"* woman|strong=\"G1135\"* in|strong=\"G3004\"* adultery|strong=\"G3431\"*, in|strong=\"G3004\"* the|strong=\"G3588\"* very|strong=\"G3778\"* act|strong=\"G1888\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* our|strong=\"G1722\"* law|strong=\"G3551\"*, Moses|strong=\"G3475\"* commanded|strong=\"G1781\"* us|strong=\"G3004\"* to|strong=\"G3004\"* stone|strong=\"G3036\"* such|strong=\"G5108\"* women|strong=\"G5108\"*.+ 8:5 Leviticus 20:10; Deuteronomy 22:22* What|strong=\"G5101\"* then|strong=\"G3767\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"* about|strong=\"G1722\"* her|strong=\"G3588\"*?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* testing|strong=\"G3985\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* they|strong=\"G1161\"* might|strong=\"G3778\"* have|strong=\"G2192\"* something to|strong=\"G1519\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"* of|strong=\"G1093\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* continued|strong=\"G1961\"* asking|strong=\"G2065\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* looked up|strong=\"G1909\"* and|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w He|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w without|strong=\"G5613\"\\+w* sin \\+w among|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w let|strong=\"G1161\"\\+w* \\+w him|strong=\"G3588\"\\+w* throw \\+w the|strong=\"G1161\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w stone|strong=\"G3037\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w her|strong=\"G3588\"\\+w*.” *" + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* stooped|strong=\"G2955\"* down|strong=\"G2736\"* and|strong=\"G2532\"* wrote|strong=\"G1125\"* on|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G1093\"* with|strong=\"G2532\"* his|strong=\"G1519\"* finger." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, being|strong=\"G2532\"* convicted|strong=\"G1651\"* by|strong=\"G1722\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"*, went|strong=\"G1831\"* out|strong=\"G1831\"* one|strong=\"G1520\"* by|strong=\"G1722\"* one|strong=\"G1520\"*, beginning from|strong=\"G2532\"* the|strong=\"G1722\"* oldest, even|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* last|strong=\"G2078\"*. Jesus|strong=\"G2424\"* was|strong=\"G3588\"* left|strong=\"G2641\"* alone|strong=\"G3441\"* with|strong=\"G1722\"* the|strong=\"G1722\"* woman|strong=\"G1135\"* where|strong=\"G1722\"* she|strong=\"G2532\"* was|strong=\"G3588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"*." + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"*, standing up|strong=\"G2532\"*, saw|strong=\"G2300\"* her|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w where|strong=\"G4226\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w accusers|strong=\"G2725\"\\+w*? \\+w Did|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w condemn|strong=\"G2632\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 11, + "text": "She|strong=\"G2532\"* said|strong=\"G3004\"*, “No|strong=\"G3762\"* one|strong=\"G3762\"*, Lord|strong=\"G2962\"*.”" + }, + { + "verseNum": 12, + "text": "Again|strong=\"G3825\"*, therefore|strong=\"G3767\"*, Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.*+ 8:12 Isaiah 60:1* \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w follows|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*, \\+w but|strong=\"G3361\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w life|strong=\"G2222\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "The|strong=\"G3588\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* testify|strong=\"G3140\"* about|strong=\"G4012\"* yourself|strong=\"G4572\"*. Your|strong=\"G3588\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* not|strong=\"G3756\"* valid.”" + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Even|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G2064\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w the|strong=\"G2596\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w Even|strong=\"G2532\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G2919\"\\+w* \\+w judge|strong=\"G2919\"\\+w*, \\+w my|strong=\"G1699\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w It|strong=\"G2532\"\\+w*’s \\+w also|strong=\"G2532\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G5212\"\\+w* \\+w law|strong=\"G3551\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w two|strong=\"G1417\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* valid.*+ 8:17 Deuteronomy 17:6; 19:15*" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w testifies|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* your|strong=\"G2532\"* Father|strong=\"G3962\"*?”" + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2532\"* spoke|strong=\"G2980\"* these|strong=\"G3778\"* words|strong=\"G4487\"* in|strong=\"G1722\"* the|strong=\"G1722\"* treasury|strong=\"G1049\"*, as|strong=\"G1722\"* he|strong=\"G2532\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*. Yet|strong=\"G2532\"* no|strong=\"G3762\"* one|strong=\"G3762\"* arrested him|strong=\"G3588\"*, because|strong=\"G3754\"* his|strong=\"G1722\"* hour|strong=\"G5610\"* had|strong=\"G2532\"* not|strong=\"G3762\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G3004\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* again|strong=\"G3825\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* sins. \\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*.” *" + }, + { + "verseNum": 22, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “Will|strong=\"G1473\"* he|strong=\"G3754\"* kill himself|strong=\"G1438\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* says|strong=\"G3004\"*, ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*’*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w beneath|strong=\"G2736\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w from|strong=\"G1537\"\\+w* above. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1437\"\\+w* sins; \\+w for|strong=\"G1063\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w**+ 8:24 or, I AM* \\+w he|strong=\"G3754\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* die \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1437\"\\+w* sins.” *" + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 26, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*. However, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w true|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "They|strong=\"G3588\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G3754\"* spoke|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* about|strong=\"G3754\"* the|strong=\"G3588\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 28, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w When|strong=\"G3752\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G5312\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G3778\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G3752\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w The|strong=\"G2532\"\\+w* Father hasn’\\+w t|strong=\"G3588\"\\+w* left \\+w me|strong=\"G1473\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* pleasing \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "As|strong=\"G1519\"* he|strong=\"G3778\"* spoke|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G1519\"*." + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* those|strong=\"G3588\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* had|strong=\"G2424\"* believed|strong=\"G4100\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w then|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w truly|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* truth \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G1659\"\\+w*.” *+ 8:32 Psalms 119:45*" + }, + { + "verseNum": 33, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “We|strong=\"G3754\"* are|strong=\"G1510\"* Abraham’s offspring, and|strong=\"G2532\"* have|strong=\"G2532\"* never|strong=\"G3762\"* been|strong=\"G1510\"* in|strong=\"G2532\"* bondage|strong=\"G1398\"* to|strong=\"G4314\"* anyone|strong=\"G3762\"*. How|strong=\"G4459\"* do|strong=\"G1096\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w You|strong=\"G4771\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w made|strong=\"G1096\"\\+w* \\+w free|strong=\"G1658\"\\+w*’*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Most certainly \\+w I|strong=\"G3754\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w commits|strong=\"G4160\"\\+w* sin \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3956\"\\+w* bondservant \\+w of|strong=\"G1401\"\\+w* sin. *" + }, + { + "verseNum": 35, + "text": "\\+w A|strong=\"G1519\"\\+w* bondservant doesn’\\+w t|strong=\"G3588\"\\+w* live \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. \\+w A|strong=\"G1519\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w forever|strong=\"G1519\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w makes|strong=\"G1659\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w free|strong=\"G1658\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w free|strong=\"G1658\"\\+w* \\+w indeed|strong=\"G3689\"\\+w*. *" + }, + { + "verseNum": 37, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* Abraham’s offspring, \\+w yet|strong=\"G5210\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2212\"\\+w* kill \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w* finds \\+w no|strong=\"G3756\"\\+w* \\+w place|strong=\"G5562\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Our|strong=\"G2424\"* father|strong=\"G3962\"* is|strong=\"G1510\"* Abraham.”" + }, + { + "verseNum": 40, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w to|strong=\"G2212\"\\+w* kill \\+w me|strong=\"G1473\"\\+w*, \\+w a|strong=\"G4160\"\\+w* \\+w man|strong=\"G3778\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. Abraham didn’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*. *" + }, + { + "verseNum": 41, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 42, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2316\"\\+w* love \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 43, + "text": "\\+w Why|strong=\"G5101\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w speech|strong=\"G3056\"\\+w*? \\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 44, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w devil|strong=\"G1228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w desires|strong=\"G1939\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* murderer \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* beginning, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* truth, \\+w because|strong=\"G3754\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w no|strong=\"G3756\"\\+w* truth \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w When|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w lie|strong=\"G5579\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w own|strong=\"G2398\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w liar|strong=\"G5583\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w father|strong=\"G3962\"\\+w* \\+w of|strong=\"G1537\"\\+w* lies. *" + }, + { + "verseNum": 45, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth, \\+w you|strong=\"G3754\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w Which|strong=\"G5101\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w convicts|strong=\"G1651\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w of|strong=\"G1537\"\\+w* sin? \\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* truth, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*? *" + }, + { + "verseNum": 47, + "text": "\\+w He|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w* hears \\+w the|strong=\"G1537\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w For|strong=\"G3754\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* hear, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w God|strong=\"G2316\"\\+w*.”*" + }, + { + "verseNum": 48, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Don’t|strong=\"G3588\"* we|strong=\"G2249\"* say|strong=\"G3004\"* well|strong=\"G2573\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G2192\"* Samaritan|strong=\"G4541\"*, and|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*?”" + }, + { + "verseNum": 49, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w demon|strong=\"G1140\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* dishonor \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w my|strong=\"G2212\"\\+w* own \\+w glory|strong=\"G1391\"\\+w*. \\+w There|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w seeks|strong=\"G2212\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w judges|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 51, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w*, \\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w person|strong=\"G5100\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w he|strong=\"G3588\"\\+w* \\+w will|strong=\"G5100\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w death|strong=\"G2288\"\\+w*.”*" + }, + { + "verseNum": 52, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Now|strong=\"G3568\"* we|strong=\"G1437\"* know|strong=\"G1097\"* that|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"*. Abraham died|strong=\"G2288\"*, as|strong=\"G1519\"* did|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*; and|strong=\"G2532\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* \\+w taste|strong=\"G1089\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w death|strong=\"G2288\"\\+w*.’*" + }, + { + "verseNum": 53, + "text": "Are|strong=\"G1510\"* you|strong=\"G4771\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Abraham, who|strong=\"G5101\"* died|strong=\"G3588\"*? The|strong=\"G2532\"* prophets|strong=\"G4396\"* died|strong=\"G3588\"*. Who|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G4771\"* make|strong=\"G4160\"* yourself|strong=\"G4572\"* out|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"*?”" + }, + { + "verseNum": 54, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w my|strong=\"G1473\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. \\+w It|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w glorifies|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w of|strong=\"G2316\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w our|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 55, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w If|strong=\"G2579\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w*,’ \\+w I|strong=\"G1473\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w like|strong=\"G3664\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G2532\"\\+w* \\+w liar|strong=\"G5583\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 56, + "text": "\\+w Your|strong=\"G2532\"\\+w* \\+w father|strong=\"G3962\"\\+w* Abraham \\+w rejoiced|strong=\"G5463\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w day|strong=\"G2250\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w saw|strong=\"G1492\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w glad|strong=\"G5463\"\\+w*.”*" + }, + { + "verseNum": 57, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “You|strong=\"G3004\"* are|strong=\"G3588\"* not|strong=\"G3768\"* yet|strong=\"G2532\"* fifty|strong=\"G4004\"* years|strong=\"G2094\"* old|strong=\"G2094\"*! Have|strong=\"G2192\"* you|strong=\"G3004\"* seen|strong=\"G3708\"* Abraham?”" + }, + { + "verseNum": 58, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “Most certainly, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w before|strong=\"G4250\"\\+w* Abraham \\+w came|strong=\"G1096\"\\+w* \\+w into|strong=\"G1096\"\\+w* existence, \\+w I|strong=\"G1473\"\\+w* \\+w AM|strong=\"G1510\"\\+w*.*+ 8:58 Exodus 3:14*”*" + }, + { + "verseNum": 59, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2532\"* up|strong=\"G2532\"* stones|strong=\"G3037\"* to|strong=\"G2443\"* throw at|strong=\"G1909\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Jesus|strong=\"G2424\"* hid|strong=\"G2928\"* himself|strong=\"G2928\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, having|strong=\"G2532\"* gone|strong=\"G1831\"* through|strong=\"G1537\"* the|strong=\"G2532\"* middle of|strong=\"G1537\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* so|strong=\"G2443\"* passed|strong=\"G2424\"* by|strong=\"G1537\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* passed|strong=\"G3855\"* by|strong=\"G1537\"*, he|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* man|strong=\"G5185\"* blind|strong=\"G5185\"* from|strong=\"G1537\"* birth|strong=\"G1079\"*." + }, + { + "verseNum": 2, + "text": "His|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, who|strong=\"G5101\"* sinned, this|strong=\"G3778\"* man|strong=\"G3778\"* or|strong=\"G2228\"* his|strong=\"G2532\"* parents|strong=\"G1118\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* was|strong=\"G3588\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*?”" + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w This|strong=\"G3778\"\\+w* \\+w man|strong=\"G3778\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* sin, \\+w nor|strong=\"G3777\"\\+w* \\+w did|strong=\"G2316\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w parents|strong=\"G1118\"\\+w*, \\+w but|strong=\"G2316\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w might|strong=\"G2316\"\\+w* \\+w be|strong=\"G2316\"\\+w* \\+w revealed|strong=\"G5319\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w while|strong=\"G2193\"\\+w* \\+w it|strong=\"G1510\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w day|strong=\"G2250\"\\+w*. \\+w The|strong=\"G3588\"\\+w* \\+w night|strong=\"G3571\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, \\+w when|strong=\"G3753\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w While|strong=\"G1722\"\\+w* \\+w I|strong=\"G3752\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w I|strong=\"G3752\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* spat|strong=\"G4429\"* on|strong=\"G1909\"* the|strong=\"G2532\"* ground|strong=\"G5476\"*, made|strong=\"G4160\"* mud|strong=\"G4081\"* with|strong=\"G1537\"* the|strong=\"G2532\"* saliva, anointed|strong=\"G2025\"* the|strong=\"G2532\"* blind man|strong=\"G3778\"*’s eyes|strong=\"G3788\"* with|strong=\"G1537\"* the|strong=\"G2532\"* mud|strong=\"G4081\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G5217\"\\+w*, \\+w wash|strong=\"G3538\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w pool|strong=\"G2861\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w*”* (which|strong=\"G3739\"* means|strong=\"G3004\"* “Sent|strong=\"G2532\"*”). So|strong=\"G3767\"* he|strong=\"G2532\"* went|strong=\"G2064\"* away|strong=\"G5217\"*, washed|strong=\"G3538\"*, and|strong=\"G2532\"* came|strong=\"G2064\"* back|strong=\"G1519\"* seeing." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* neighbors|strong=\"G1069\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G2334\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* blind before|strong=\"G4386\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* and|strong=\"G2532\"* begged|strong=\"G4319\"*?”" + }, + { + "verseNum": 9, + "text": "Others|strong=\"G3754\"* were|strong=\"G1510\"* saying|strong=\"G3004\"*, “It|strong=\"G3754\"* is|strong=\"G1510\"* he|strong=\"G3754\"*.” Still others|strong=\"G3754\"* were|strong=\"G1510\"* saying|strong=\"G3004\"*, “He|strong=\"G3754\"* looks like|strong=\"G3664\"* him|strong=\"G1565\"*.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"G3588\"* therefore|strong=\"G3767\"* were|strong=\"G3588\"* asking|strong=\"G3004\"* him|strong=\"G3588\"*, “How|strong=\"G4459\"* were|strong=\"G3588\"* your|strong=\"G3588\"* eyes|strong=\"G3788\"* opened|strong=\"G4459\"*?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “A|strong=\"G2532\"* man|strong=\"G1519\"* called|strong=\"G3004\"* Jesus|strong=\"G2424\"* made|strong=\"G4160\"* mud|strong=\"G4081\"*, anointed|strong=\"G2025\"* my|strong=\"G1473\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Go|strong=\"G5217\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* pool \\+w of|strong=\"G2532\"\\+w* \\+w Siloam|strong=\"G4611\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w*.’* So|strong=\"G3767\"* I|strong=\"G1473\"* went|strong=\"G2424\"* away|strong=\"G5217\"* and|strong=\"G2532\"* washed|strong=\"G3538\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* received|strong=\"G3788\"* sight|strong=\"G3788\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* asked|strong=\"G3004\"* him|strong=\"G1565\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* he|strong=\"G2532\"*?”" + }, + { + "verseNum": 13, + "text": "They|strong=\"G3588\"* brought him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G3588\"* been blind|strong=\"G5185\"* to|strong=\"G4314\"* the|strong=\"G4314\"* Pharisees|strong=\"G5330\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Sabbath|strong=\"G4521\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* made|strong=\"G4160\"* the|strong=\"G1722\"* mud|strong=\"G4081\"* and|strong=\"G2532\"* opened his|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 15, + "text": "Again|strong=\"G3825\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* also|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* received|strong=\"G3788\"* his|strong=\"G2007\"* sight|strong=\"G3788\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “He|strong=\"G2532\"* put|strong=\"G2007\"* mud|strong=\"G4081\"* on|strong=\"G1909\"* my|strong=\"G1473\"* eyes|strong=\"G3788\"*, I|strong=\"G1473\"* washed|strong=\"G3538\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* see.”" + }, + { + "verseNum": 16, + "text": "Some|strong=\"G5100\"* therefore|strong=\"G3767\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* is|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G1161\"* asked|strong=\"G3004\"* the|strong=\"G1161\"* blind|strong=\"G5185\"* man|strong=\"G5185\"* again|strong=\"G3825\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"* about|strong=\"G4012\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* opened your|strong=\"G3588\"* eyes|strong=\"G3788\"*?”" + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* concerning|strong=\"G4012\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1510\"* blind|strong=\"G5185\"* and|strong=\"G2532\"* had|strong=\"G2532\"* received his|strong=\"G4012\"* sight|strong=\"G3588\"*, until|strong=\"G2193\"* they|strong=\"G2532\"* called|strong=\"G5455\"* the|strong=\"G2532\"* parents|strong=\"G1118\"* of|strong=\"G4012\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* received his|strong=\"G4012\"* sight|strong=\"G3588\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"*, “Is|strong=\"G1510\"* this|strong=\"G3778\"* your|strong=\"G2532\"* son|strong=\"G5207\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* say|strong=\"G3004\"* was|strong=\"G1510\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*? How|strong=\"G4459\"* then|strong=\"G3767\"* does|strong=\"G1510\"* he|strong=\"G2532\"* now|strong=\"G2532\"* see?”" + }, + { + "verseNum": 20, + "text": "His|strong=\"G2532\"* parents|strong=\"G1118\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* our|strong=\"G2532\"* son|strong=\"G5207\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"G1161\"* how|strong=\"G4459\"* he|strong=\"G1161\"* now|strong=\"G1161\"* sees|strong=\"G1492\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; or|strong=\"G2228\"* who|strong=\"G5101\"* opened|strong=\"G4459\"* his|strong=\"G1438\"* eyes|strong=\"G3788\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*. He|strong=\"G1161\"* is|strong=\"G3588\"* of|strong=\"G4012\"* age|strong=\"G2244\"*. Ask|strong=\"G2065\"* him|strong=\"G3588\"*. He|strong=\"G1161\"* will|strong=\"G5101\"* speak|strong=\"G2980\"* for|strong=\"G4012\"* himself|strong=\"G1438\"*.”" + }, + { + "verseNum": 22, + "text": "His|strong=\"G3754\"* parents|strong=\"G1118\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* because|strong=\"G3754\"* they|strong=\"G3588\"* feared|strong=\"G5399\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*; for|strong=\"G1063\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* had|strong=\"G3588\"* already|strong=\"G2235\"* agreed|strong=\"G4934\"* that|strong=\"G3754\"* if|strong=\"G1437\"* any|strong=\"G5100\"* man|strong=\"G5100\"* would|strong=\"G1096\"* confess|strong=\"G3670\"* him|strong=\"G3588\"* as|strong=\"G1096\"* Christ|strong=\"G5547\"*, he|strong=\"G3754\"* would|strong=\"G1096\"* be|strong=\"G1096\"* put|strong=\"G1096\"* out|strong=\"G1096\"* of|strong=\"G5100\"* the|strong=\"G3588\"* synagogue." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G1223\"* his|strong=\"G1223\"* parents|strong=\"G1118\"* said|strong=\"G3004\"*, “He|strong=\"G3754\"* is|strong=\"G3588\"* of|strong=\"G1223\"* age|strong=\"G2244\"*. Ask|strong=\"G1905\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* called|strong=\"G3004\"* the|strong=\"G2532\"* man|strong=\"G3778\"* who|strong=\"G3739\"* was|strong=\"G1510\"* blind|strong=\"G5185\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Give|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* God|strong=\"G2316\"*. We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* sinner.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G3754\"* therefore|strong=\"G3767\"* answered, “I|strong=\"G3754\"* don’t know|strong=\"G1492\"* if|strong=\"G1487\"* he|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* sinner. One|strong=\"G1520\"* thing|strong=\"G1520\"* I|strong=\"G3754\"* do|strong=\"G1492\"* know|strong=\"G1492\"*: that|strong=\"G3754\"* though|strong=\"G1487\"* I|strong=\"G3754\"* was|strong=\"G1510\"* blind|strong=\"G5185\"*, now|strong=\"G3767\"* I|strong=\"G3754\"* see|strong=\"G1492\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"* again, “What|strong=\"G5101\"* did|strong=\"G4160\"* he|strong=\"G3588\"* do|strong=\"G4160\"* to|strong=\"G3004\"* you|strong=\"G4771\"*? How|strong=\"G4459\"* did|strong=\"G4160\"* he|strong=\"G3588\"* open your|strong=\"G4160\"* eyes|strong=\"G3788\"*?”" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"* them|strong=\"G3004\"*, “I|strong=\"G2532\"* told|strong=\"G3004\"* you|strong=\"G5210\"* already|strong=\"G2235\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* didn’t listen. Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"* to|strong=\"G2532\"* hear|strong=\"G5101\"* it|strong=\"G2532\"* again|strong=\"G3825\"*? You|strong=\"G5210\"* don’t also|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* become|strong=\"G1096\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, do|strong=\"G5101\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* insulted him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"* are|strong=\"G1510\"* his|strong=\"G2532\"* disciple|strong=\"G3101\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G1510\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* Moses|strong=\"G3475\"*." + }, + { + "verseNum": 29, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* spoken|strong=\"G2980\"* to|strong=\"G3756\"* Moses|strong=\"G3475\"*. But|strong=\"G1161\"* as|strong=\"G1161\"* for|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G1161\"* comes|strong=\"G1510\"* from|strong=\"G3756\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"G1722\"* man|strong=\"G3778\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “How|strong=\"G3754\"* amazing|strong=\"G2298\"*! You|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4159\"* he|strong=\"G2532\"* comes|strong=\"G1510\"* from|strong=\"G2532\"*, yet|strong=\"G2532\"* he|strong=\"G2532\"* opened my|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 31, + "text": "We|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* listen|strong=\"G1492\"* to|strong=\"G2532\"* sinners, but|strong=\"G2532\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* a|strong=\"G2532\"* worshiper of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* does|strong=\"G4160\"* his|strong=\"G4160\"* will|strong=\"G2307\"*, he|strong=\"G2532\"* listens to|strong=\"G2532\"* him|strong=\"G3588\"*.+ 9:31 Psalms 66:18; Proverbs 15:29; 28:9*" + }, + { + "verseNum": 32, + "text": "Since|strong=\"G3754\"* the|strong=\"G1537\"* world began it|strong=\"G3754\"* has|strong=\"G5100\"* never|strong=\"G3756\"* been|strong=\"G3756\"* heard of|strong=\"G1537\"* that|strong=\"G3754\"* anyone|strong=\"G5100\"* opened the|strong=\"G1537\"* eyes|strong=\"G3788\"* of|strong=\"G1537\"* someone|strong=\"G5100\"* born|strong=\"G1080\"* blind|strong=\"G5185\"*." + }, + { + "verseNum": 33, + "text": "If|strong=\"G1487\"* this|strong=\"G3778\"* man|strong=\"G3778\"* were|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G3844\"* God|strong=\"G2316\"*, he|strong=\"G3778\"* could|strong=\"G1410\"* do|strong=\"G4160\"* nothing|strong=\"G3762\"*.”" + }, + { + "verseNum": 34, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G2532\"*, “You|strong=\"G4771\"* were|strong=\"G2532\"* altogether|strong=\"G3650\"* born|strong=\"G1080\"* in|strong=\"G1722\"* sins, and|strong=\"G2532\"* do|strong=\"G2532\"* you|strong=\"G4771\"* teach|strong=\"G1321\"* us|strong=\"G3004\"*?” Then|strong=\"G2532\"* they|strong=\"G2532\"* threw|strong=\"G1544\"* him|strong=\"G2532\"* out|strong=\"G1544\"*." + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* heard that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* thrown|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* finding|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G3004\"\\+w*?”*" + }, + { + "verseNum": 36, + "text": "He|strong=\"G2532\"* answered|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G1510\"* he|strong=\"G2532\"*, Lord|strong=\"G2962\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G1565\"*?”" + }, + { + "verseNum": 37, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w You|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w speaks|strong=\"G2980\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"*, “Lord|strong=\"G2962\"*, I|strong=\"G2532\"* believe|strong=\"G4100\"*!” and|strong=\"G2532\"* he|strong=\"G2532\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w judgment|strong=\"G2917\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* see \\+w may|strong=\"G2532\"\\+w* see; \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* see \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w blind|strong=\"G5185\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "Those|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* heard these|strong=\"G3326\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* we|strong=\"G2249\"* also|strong=\"G2532\"* blind|strong=\"G5185\"*?”" + }, + { + "verseNum": 41, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w blind|strong=\"G5185\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* sin; \\+w but|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w We|strong=\"G3754\"\\+w* see.’ \\+w Therefore|strong=\"G1161\"\\+w* \\+w your|strong=\"G2192\"\\+w* sin \\+w remains|strong=\"G3306\"\\+w*.*" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "“Most \\+w certainly|strong=\"G2532\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* fold, \\+w but|strong=\"G2532\"\\+w* climbs \\+w up|strong=\"G1519\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w other|strong=\"G3361\"\\+w* \\+w way|strong=\"G1223\"\\+w*, \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w robber|strong=\"G3027\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w The|strong=\"G2532\"\\+w* gatekeeper opens \\+w the|strong=\"G2532\"\\+w* gate \\+w for|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w calls|strong=\"G5455\"\\+w* \\+w his|strong=\"G2398\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w by|strong=\"G2596\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w leads|strong=\"G1806\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1806\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Whenever|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w brings|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w goes|strong=\"G4198\"\\+w* \\+w before|strong=\"G1715\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w follow|strong=\"G4198\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w They|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w by|strong=\"G3361\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w means|strong=\"G3361\"\\+w* \\+w follow|strong=\"G1161\"\\+w* \\+w a|strong=\"G1161\"\\+w* stranger, \\+w but|strong=\"G1161\"\\+w* \\+w will|strong=\"G3748\"\\+w* \\+w flee|strong=\"G5343\"\\+w* \\+w from|strong=\"G5456\"\\+w* \\+w him|strong=\"G3588\"\\+w*; \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w of|strong=\"G5456\"\\+w* strangers.”*" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* spoke|strong=\"G2980\"* this|strong=\"G3778\"* parable|strong=\"G3942\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* what|strong=\"G5101\"* he|strong=\"G1161\"* was|strong=\"G1510\"* telling|strong=\"G3004\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, “Most certainly, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*’s \\+w door|strong=\"G2374\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w thieves|strong=\"G2812\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w robbers|strong=\"G3027\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* listen \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w enters|strong=\"G1525\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w saved|strong=\"G4982\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w in|strong=\"G1525\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w pasture|strong=\"G3542\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w thief|strong=\"G2812\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w steal|strong=\"G2813\"\\+w*, \\+w kill|strong=\"G2380\"\\+w*, \\+w and|strong=\"G2532\"\\+w* destroy. \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w abundantly|strong=\"G4053\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*.*+ 10:11 Isaiah 40:11; Ezekiel 34:11-12,15,22* \\+w The|strong=\"G3588\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w* \\+w lays|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w his|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*, \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w sees|strong=\"G2334\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wolf|strong=\"G3074\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, leaves \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w flees|strong=\"G5343\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w wolf|strong=\"G3074\"\\+w* snatches \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w scatters|strong=\"G4650\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w* flees \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w hired|strong=\"G3411\"\\+w* \\+w hand|strong=\"G3411\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w care|strong=\"G3199\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w*’m \\+w known|strong=\"G1097\"\\+w* \\+w by|strong=\"G2532\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w own|strong=\"G1699\"\\+w*; *" + }, + { + "verseNum": 15, + "text": "\\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w knows|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w other|strong=\"G1520\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w fold|strong=\"G4167\"\\+w*.*+ 10:16 Isaiah 56:8 * \\+w I|strong=\"G1473\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w bring|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w voice|strong=\"G5456\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w flock|strong=\"G4167\"\\+w* \\+w with|strong=\"G1537\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w shepherd|strong=\"G4166\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w Father|strong=\"G3962\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w*, *+ 10:17 Isaiah 53:7-8* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w again|strong=\"G3825\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w takes|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w away|strong=\"G5087\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w by|strong=\"G3844\"\\+w* \\+w myself|strong=\"G1683\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w down|strong=\"G5087\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w my|strong=\"G5087\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G1223\"* a|strong=\"G1096\"* division|strong=\"G4978\"* arose|strong=\"G1096\"* again|strong=\"G3825\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* because|strong=\"G1223\"* of|strong=\"G3056\"* these|strong=\"G3778\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 20, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* them|strong=\"G3004\"* said|strong=\"G3004\"*, “He|strong=\"G2532\"* has|strong=\"G2192\"* a|strong=\"G2192\"* demon|strong=\"G1140\"* and|strong=\"G2532\"* is|strong=\"G5101\"* insane|strong=\"G3105\"*! Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3004\"* listen to|strong=\"G2532\"* him|strong=\"G2532\"*?”" + }, + { + "verseNum": 21, + "text": "Others|strong=\"G3588\"* said|strong=\"G3004\"*, “These|strong=\"G3778\"* are|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G3588\"* sayings|strong=\"G4487\"* of|strong=\"G4487\"* one|strong=\"G3588\"* possessed by|strong=\"G3004\"* a|strong=\"G1510\"* demon|strong=\"G1140\"*. It|strong=\"G3778\"* isn’t|strong=\"G3588\"* possible|strong=\"G1410\"* for|strong=\"G3756\"* a|strong=\"G1510\"* demon|strong=\"G1140\"* to|strong=\"G3004\"* open the|strong=\"G3588\"* eyes|strong=\"G3788\"* of|strong=\"G4487\"* the|strong=\"G3588\"* blind|strong=\"G5185\"*, is|strong=\"G1510\"* it|strong=\"G3778\"*?”+ 10:21 Exodus 4:11*" + }, + { + "verseNum": 22, + "text": "It|strong=\"G1161\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Feast|strong=\"G1456\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Dedication|strong=\"G1456\"*+ 10:22 The “Feast of the Dedication” is the Greek name for “Hanukkah”, a celebration of the rededication of the Temple.* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* winter, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, in|strong=\"G1722\"* Solomon|strong=\"G4672\"*’s porch|strong=\"G4745\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* came|strong=\"G2532\"* around|strong=\"G2944\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “How|strong=\"G2193\"* long|strong=\"G2193\"* will|strong=\"G1510\"* you|strong=\"G4771\"* hold|strong=\"G2249\"* us|strong=\"G3004\"* in|strong=\"G2532\"* suspense|strong=\"G5590\"*? If|strong=\"G1487\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*, tell|strong=\"G3004\"* us|strong=\"G3004\"* plainly|strong=\"G3954\"*.”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. \\+w The|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w name|strong=\"G3686\"\\+w*, \\+w these|strong=\"G3778\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w sheep|strong=\"G4263\"\\+w*, \\+w as|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* told \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w My|strong=\"G1699\"\\+w* \\+w sheep|strong=\"G4263\"\\+w* \\+w hear|strong=\"G5456\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w voice|strong=\"G5456\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* follow \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* perish, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G5100\"\\+w* \\+w will|strong=\"G2532\"\\+w* snatch \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1325\"\\+w* \\+w hand|strong=\"G5495\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w My|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w all|strong=\"G3956\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w able|strong=\"G1410\"\\+w* \\+w to|strong=\"G2532\"\\+w* snatch \\+w them|strong=\"G3588\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w hand|strong=\"G5495\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*.”*" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* took|strong=\"G2453\"* up stones|strong=\"G3037\"* again|strong=\"G3825\"* to|strong=\"G2443\"* stone|strong=\"G3037\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w shown|strong=\"G1166\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w good|strong=\"G2570\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w For|strong=\"G1223\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w do|strong=\"G2041\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w stone|strong=\"G3034\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 33, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* answered him|strong=\"G3588\"*, “We|strong=\"G3754\"* don’t|strong=\"G3588\"* stone|strong=\"G3034\"* you|strong=\"G4771\"* for|strong=\"G3754\"* a|strong=\"G2532\"* good|strong=\"G2570\"* work|strong=\"G2041\"*, but|strong=\"G2532\"* for|strong=\"G3754\"* blasphemy, because|strong=\"G3754\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3756\"*, make|strong=\"G4160\"* yourself|strong=\"G4572\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Isn’\\+w t|strong=\"G3588\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w gods|strong=\"G2316\"\\+w*’?*+ 10:34 Psalms 82:6*" + }, + { + "verseNum": 35, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w gods|strong=\"G2316\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w came|strong=\"G1096\"\\+w* (\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w broken|strong=\"G3089\"\\+w*), *" + }, + { + "verseNum": 36, + "text": "\\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* sanctified \\+w and|strong=\"G2532\"\\+w* \\+w sent|strong=\"G2316\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, ‘\\+w You|strong=\"G5210\"\\+w* blaspheme,’ \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G3739\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*’? *" + }, + { + "verseNum": 37, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G3962\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 38, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w though|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.” *" + }, + { + "verseNum": 39, + "text": "They|strong=\"G2532\"* sought|strong=\"G2212\"* again|strong=\"G3825\"* to|strong=\"G2532\"* seize|strong=\"G4084\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* their|strong=\"G2532\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"G2532\"* went|strong=\"G2532\"* away again|strong=\"G3825\"* beyond|strong=\"G4008\"* the|strong=\"G2532\"* Jordan|strong=\"G2446\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3699\"* John|strong=\"G2491\"* was|strong=\"G1510\"* baptizing at|strong=\"G1519\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* stayed|strong=\"G3306\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 41, + "text": "Many|strong=\"G4183\"* came|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G4160\"*. They|strong=\"G2532\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* indeed|strong=\"G2532\"* did|strong=\"G4160\"* no|strong=\"G3762\"* sign|strong=\"G4592\"*, but|strong=\"G1161\"* everything|strong=\"G3956\"* that|strong=\"G3754\"* John|strong=\"G2491\"* said|strong=\"G3004\"* about|strong=\"G4012\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* true.”" + }, + { + "verseNum": 42, + "text": "Many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G2532\"* there|strong=\"G1563\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* was|strong=\"G1510\"* sick, Lazarus|strong=\"G2976\"* from|strong=\"G1537\"* Bethany, of|strong=\"G1537\"* the|strong=\"G2532\"* village|strong=\"G2968\"* of|strong=\"G1537\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* her|strong=\"G3137\"* sister, Martha|strong=\"G3136\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* that|strong=\"G3739\"* Mary|strong=\"G3137\"* who|strong=\"G3739\"* had|strong=\"G2532\"* anointed the|strong=\"G2532\"* Lord|strong=\"G2962\"* with|strong=\"G2532\"* ointment|strong=\"G3464\"* and|strong=\"G2532\"* wiped|strong=\"G1591\"* his|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G2532\"* her|strong=\"G3137\"* hair|strong=\"G2359\"*, whose|strong=\"G3739\"* brother Lazarus|strong=\"G2976\"* was|strong=\"G1510\"* sick." + }, + { + "verseNum": 3, + "text": "The|strong=\"G4314\"* sisters therefore|strong=\"G3767\"* sent to|strong=\"G4314\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, behold|strong=\"G2396\"*, he|strong=\"G3739\"* for|strong=\"G4314\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G3588\"* great affection is|strong=\"G3588\"* sick.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jesus|strong=\"G2424\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* sickness \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w Son|strong=\"G5207\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w by|strong=\"G1223\"\\+w* \\+w it|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* loved Martha|strong=\"G3136\"*, and|strong=\"G2532\"* her|strong=\"G3588\"* sister, and|strong=\"G2532\"* Lazarus|strong=\"G2976\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* he|strong=\"G3739\"* heard that|strong=\"G3754\"* he|strong=\"G3739\"* was|strong=\"G1510\"* sick, he|strong=\"G3739\"* stayed|strong=\"G3306\"* two|strong=\"G1417\"* days|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G1899\"* after|strong=\"G3326\"* this|strong=\"G3778\"* he|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"*, “\\+w Let|strong=\"G3004\"\\+w*’s \\+w go|strong=\"G1519\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w again|strong=\"G3825\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Rabbi|strong=\"G4461\"*, the|strong=\"G2532\"* Jews|strong=\"G2453\"* were|strong=\"G3588\"* just|strong=\"G2532\"* trying|strong=\"G2212\"* to|strong=\"G2532\"* stone|strong=\"G3034\"* you|strong=\"G4771\"*. Are|strong=\"G3588\"* you|strong=\"G4771\"* going|strong=\"G5217\"* there|strong=\"G1563\"* again|strong=\"G3825\"*?”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* answered, “Aren’\\+w t|strong=\"G3588\"\\+w* \\+w there|strong=\"G3754\"\\+w* \\+w twelve|strong=\"G1427\"\\+w* \\+w hours|strong=\"G5610\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w daylight|strong=\"G2250\"\\+w*? \\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w day|strong=\"G2250\"\\+w*, \\+w he|strong=\"G3754\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w stumble|strong=\"G4350\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w he|strong=\"G3754\"\\+w* sees \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w man|strong=\"G5100\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w night|strong=\"G3571\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w stumbles|strong=\"G4350\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* after|strong=\"G3326\"* that|strong=\"G2443\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Our|strong=\"G2532\"\\+w* \\+w friend|strong=\"G5384\"\\+w* \\+w Lazarus|strong=\"G2976\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w fallen|strong=\"G2837\"\\+w* \\+w asleep|strong=\"G2837\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* awake \\+w him|strong=\"G3588\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w sleep|strong=\"G2837\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G3588\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* he|strong=\"G3588\"* has|strong=\"G2962\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*, he|strong=\"G3588\"* will|strong=\"G2962\"* recover|strong=\"G4982\"*.”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* spoken|strong=\"G3004\"* of|strong=\"G4012\"* his|strong=\"G4012\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* thought|strong=\"G1380\"* that|strong=\"G3754\"* he|strong=\"G1161\"* spoke|strong=\"G3004\"* of|strong=\"G4012\"* taking rest|strong=\"G2838\"* in|strong=\"G3004\"* sleep|strong=\"G5258\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* plainly|strong=\"G3954\"* then|strong=\"G3767\"*, “\\+w Lazarus|strong=\"G2976\"\\+w* \\+w is|strong=\"G3588\"\\+w* dead. *" + }, + { + "verseNum": 15, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w glad|strong=\"G5463\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w sakes|strong=\"G1223\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w there|strong=\"G1563\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. \\+w Nevertheless|strong=\"G3756\"\\+w*, \\+w let|strong=\"G1510\"\\+w*’s \\+w go|strong=\"G2532\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G2532\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "Thomas|strong=\"G2381\"* therefore|strong=\"G3767\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 11:16 “Didymus” means “Twin”.* said|strong=\"G3004\"* to|strong=\"G2443\"* his|strong=\"G2532\"* fellow|strong=\"G4827\"* disciples|strong=\"G4827\"*, “Let|strong=\"G2443\"*’s also|strong=\"G2532\"* go|strong=\"G2532\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* die with|strong=\"G3326\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* when|strong=\"G1722\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"*, he|strong=\"G3588\"* found|strong=\"G2147\"* that|strong=\"G3588\"* he|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"* four|strong=\"G5064\"* days|strong=\"G2250\"* already|strong=\"G2235\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* Bethany was|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2414\"*, about|strong=\"G5613\"* fifteen|strong=\"G1178\"* stadia+ 11:18 15 stadia is about 2.8 kilometers or 1.7 miles* away." + }, + { + "verseNum": 19, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* had|strong=\"G2532\"* joined the|strong=\"G2532\"* women around|strong=\"G4012\"* Martha|strong=\"G3136\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"*, to|strong=\"G4314\"* console|strong=\"G3888\"* them|strong=\"G3588\"* concerning|strong=\"G4012\"* their|strong=\"G1438\"* brother." + }, + { + "verseNum": 20, + "text": "Then|strong=\"G3767\"* when|strong=\"G1161\"* Martha|strong=\"G3136\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* coming|strong=\"G2064\"*, she|strong=\"G1161\"* went|strong=\"G2064\"* and|strong=\"G1161\"* met|strong=\"G5221\"* him|strong=\"G3588\"*, but|strong=\"G1161\"* Mary|strong=\"G3137\"* stayed|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"* Martha|strong=\"G3136\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* you|strong=\"G1487\"* would|strong=\"G1510\"* have|strong=\"G1473\"* been|strong=\"G1510\"* here|strong=\"G5602\"*, my|strong=\"G1473\"* brother wouldn’t|strong=\"G3588\"* have|strong=\"G1473\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "Even|strong=\"G2532\"* now|strong=\"G3568\"* I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G3745\"* you|strong=\"G4771\"* ask of|strong=\"G2316\"* God|strong=\"G2316\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* give|strong=\"G1325\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3588\"*, “\\+w Your|strong=\"G3588\"\\+w* brother \\+w will|strong=\"G3004\"\\+w* rise again.”*" + }, + { + "verseNum": 24, + "text": "Martha|strong=\"G3136\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “I|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G3754\"* will|strong=\"G2250\"* rise|strong=\"G2250\"* again in|strong=\"G1722\"* the|strong=\"G1722\"* resurrection at|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* day|strong=\"G2250\"*.”" + }, + { + "verseNum": 25, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* her|strong=\"G1519\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* resurrection \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* still \\+w live|strong=\"G2198\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w if|strong=\"G2579\"\\+w* \\+w he|strong=\"G2532\"\\+w* dies. *" + }, + { + "verseNum": 26, + "text": "\\+w Whoever|strong=\"G3956\"\\+w* \\+w lives|strong=\"G2198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w never|strong=\"G3756\"\\+w* die. \\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3956\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w this|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 27, + "text": "She|strong=\"G3754\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"*. I|strong=\"G1473\"* have|strong=\"G1473\"* come|strong=\"G2064\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*, God|strong=\"G2316\"*’s|strong=\"G2962\"* Son|strong=\"G5207\"*, he|strong=\"G3754\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*.”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, she|strong=\"G2532\"* went|strong=\"G2532\"* away and|strong=\"G2532\"* called|strong=\"G3004\"* Mary|strong=\"G3137\"*, her|strong=\"G3137\"* sister, secretly|strong=\"G2977\"*, saying|strong=\"G3004\"*, “The|strong=\"G2532\"* Teacher|strong=\"G1320\"* is|strong=\"G3588\"* here|strong=\"G3918\"* and|strong=\"G2532\"* is|strong=\"G3588\"* calling|strong=\"G5455\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* heard this|strong=\"G1565\"*, she|strong=\"G2532\"* arose|strong=\"G1453\"* quickly|strong=\"G5035\"* and|strong=\"G2532\"* went|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G1565\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* not|strong=\"G1510\"* yet|strong=\"G2089\"* come|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G1722\"* village|strong=\"G2968\"*, but|strong=\"G1161\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* Martha|strong=\"G3136\"* met|strong=\"G5221\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"G3767\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* her|strong=\"G1438\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* and|strong=\"G2532\"* were|strong=\"G1510\"* consoling|strong=\"G3888\"* her|strong=\"G1438\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* Mary|strong=\"G3137\"*, that|strong=\"G3754\"* she|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"* quickly|strong=\"G5030\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, followed her|strong=\"G1438\"*, saying|strong=\"G3754\"*, “She|strong=\"G2532\"* is|strong=\"G1510\"* going|strong=\"G5217\"* to|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"* to|strong=\"G1519\"* weep|strong=\"G2799\"* there|strong=\"G1563\"*.”" + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G5613\"* Mary|strong=\"G3137\"* came|strong=\"G2064\"* to|strong=\"G4314\"* where|strong=\"G3699\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* and|strong=\"G2064\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, she|strong=\"G5613\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G4314\"* his|strong=\"G3708\"* feet|strong=\"G4228\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, if|strong=\"G1487\"* you|strong=\"G1487\"* would|strong=\"G2064\"* have|strong=\"G1473\"* been|strong=\"G1510\"* here|strong=\"G5602\"*, my|strong=\"G3708\"* brother wouldn’t|strong=\"G3588\"* have|strong=\"G1473\"* died|strong=\"G4098\"*.”" + }, + { + "verseNum": 33, + "text": "When|strong=\"G5613\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* saw|strong=\"G3708\"* her|strong=\"G1438\"* weeping|strong=\"G2799\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* weeping|strong=\"G2799\"* who|strong=\"G3588\"* came|strong=\"G4905\"* with|strong=\"G2532\"* her|strong=\"G1438\"*, he|strong=\"G2532\"* groaned|strong=\"G1690\"* in|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Where|strong=\"G4226\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w laid|strong=\"G5087\"\\+w* \\+w him|strong=\"G3708\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* wept|strong=\"G1145\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"*, “See|strong=\"G3708\"* how|strong=\"G4459\"* much affection he|strong=\"G3588\"* had|strong=\"G3588\"* for|strong=\"G2453\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 37, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* said|strong=\"G3004\"*, “Couldn’t|strong=\"G3588\"* this|strong=\"G3778\"* man|strong=\"G5100\"*, who|strong=\"G3588\"* opened the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* blind|strong=\"G5185\"*, have|strong=\"G2532\"* also|strong=\"G2532\"* kept|strong=\"G4160\"* this|strong=\"G3778\"* man|strong=\"G5100\"* from|strong=\"G1537\"* dying?”" + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, again|strong=\"G3825\"* groaning|strong=\"G1690\"* in|strong=\"G1722\"* himself|strong=\"G1438\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* tomb|strong=\"G3419\"*. Now|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* cave|strong=\"G4693\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* stone|strong=\"G3037\"* lay|strong=\"G1945\"* against|strong=\"G1909\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 39, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Take away \\+w the|strong=\"G3588\"\\+w* \\+w stone|strong=\"G3037\"\\+w*.”*" + }, + { + "verseNum": 40, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G1437\"*, “Didn’\\+w t|strong=\"G3588\"\\+w* \\+w I|strong=\"G1437\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w believed|strong=\"G4100\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w would|strong=\"G2316\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w God|strong=\"G2316\"\\+w*’s \\+w glory|strong=\"G1391\"\\+w*?”*" + }, + { + "verseNum": 41, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2532\"* away the|strong=\"G2532\"* stone|strong=\"G3037\"* from|strong=\"G2532\"* the|strong=\"G2532\"* place|strong=\"G1473\"* where the|strong=\"G2532\"* dead man was|strong=\"G3588\"* lying.+ 11:41 NU omits “from the place where the dead man was lying.”* Jesus|strong=\"G2424\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w thank|strong=\"G2168\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* listened \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 42, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w listen|strong=\"G1492\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w of|strong=\"G1223\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w multitude|strong=\"G3793\"\\+w* \\+w standing|strong=\"G4026\"\\+w* \\+w around|strong=\"G4026\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w this|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G1161\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* sent \\+w me|strong=\"G1473\"\\+w*.” *" + }, + { + "verseNum": 43, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* cried|strong=\"G2905\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “\\+w Lazarus|strong=\"G2976\"\\+w*, \\+w come|strong=\"G1204\"\\+w* \\+w out|strong=\"G1854\"\\+w*!”*" + }, + { + "verseNum": 44, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dead|strong=\"G2348\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, bound|strong=\"G1210\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* foot|strong=\"G4228\"* with|strong=\"G2532\"* wrappings|strong=\"G2750\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* face|strong=\"G3799\"* was|strong=\"G3588\"* wrapped|strong=\"G1210\"* around|strong=\"G4019\"* with|strong=\"G2532\"* a|strong=\"G2532\"* cloth|strong=\"G4676\"*." + }, + { + "verseNum": 45, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* who|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Mary|strong=\"G3137\"* and|strong=\"G2532\"* saw|strong=\"G2300\"* what|strong=\"G3739\"* Jesus|strong=\"G2532\"* did|strong=\"G4160\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 46, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* went|strong=\"G2424\"* away to|strong=\"G4314\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* told|strong=\"G3004\"* them|strong=\"G3588\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"G2532\"* chief|strong=\"G2532\"* priests therefore|strong=\"G3767\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* gathered|strong=\"G4863\"* a|strong=\"G2532\"* council|strong=\"G4892\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* we|strong=\"G3754\"* doing|strong=\"G4160\"*? For|strong=\"G3754\"* this|strong=\"G3778\"* man|strong=\"G3778\"* does|strong=\"G4160\"* many|strong=\"G4183\"* signs|strong=\"G4592\"*." + }, + { + "verseNum": 48, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* leave him|strong=\"G3588\"* alone|strong=\"G3779\"* like|strong=\"G3779\"* this|strong=\"G3588\"*, everyone|strong=\"G3956\"* will|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Romans|strong=\"G4514\"* will|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* take|strong=\"G2532\"* away both|strong=\"G2532\"* our|strong=\"G2532\"* place|strong=\"G5117\"* and|strong=\"G2532\"* our|strong=\"G2532\"* nation|strong=\"G1484\"*.”" + }, + { + "verseNum": 49, + "text": "But|strong=\"G1161\"* a|strong=\"G1510\"* certain|strong=\"G5100\"* one|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, Caiaphas|strong=\"G2533\"*, being|strong=\"G1510\"* high|strong=\"G5100\"* priest that|strong=\"G3588\"* year|strong=\"G1763\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* know|strong=\"G1492\"* nothing|strong=\"G3762\"* at|strong=\"G1537\"* all|strong=\"G1161\"*," + }, + { + "verseNum": 50, + "text": "nor|strong=\"G3761\"* do|strong=\"G2532\"* you|strong=\"G5210\"* consider|strong=\"G3049\"* that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G3588\"* advantageous for|strong=\"G3754\"* us that|strong=\"G3754\"* one|strong=\"G1520\"* man|strong=\"G1520\"* should|strong=\"G3588\"* die for|strong=\"G3754\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* nation|strong=\"G1484\"* not|strong=\"G3361\"* perish.”" + }, + { + "verseNum": 51, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* say|strong=\"G3004\"* this|strong=\"G3778\"* of|strong=\"G5228\"* himself|strong=\"G1438\"*, but|strong=\"G1161\"* being|strong=\"G1510\"* high priest that|strong=\"G3754\"* year|strong=\"G1763\"*, he|strong=\"G1161\"* prophesied|strong=\"G4395\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* would|strong=\"G3195\"* die for|strong=\"G3754\"* the|strong=\"G1161\"* nation|strong=\"G1484\"*," + }, + { + "verseNum": 52, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1519\"* the|strong=\"G2532\"* nation|strong=\"G1484\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* also|strong=\"G2532\"* gather|strong=\"G4863\"* together|strong=\"G4863\"* into|strong=\"G1519\"* one|strong=\"G1520\"* the|strong=\"G2532\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* are|strong=\"G3588\"* scattered|strong=\"G1287\"* abroad|strong=\"G1287\"*." + }, + { + "verseNum": 53, + "text": "So|strong=\"G2443\"* from|strong=\"G3588\"* that|strong=\"G2443\"* day|strong=\"G2250\"* forward they|strong=\"G3588\"* took|strong=\"G3767\"* counsel|strong=\"G1011\"* that|strong=\"G2443\"* they|strong=\"G3588\"* might put him|strong=\"G3588\"* to|strong=\"G2443\"* death." + }, + { + "verseNum": 54, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* walked|strong=\"G4043\"* no|strong=\"G3765\"* more|strong=\"G3765\"* openly|strong=\"G3954\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, but|strong=\"G3767\"* departed from|strong=\"G3588\"* there|strong=\"G1564\"* into|strong=\"G1519\"* the|strong=\"G1722\"* country|strong=\"G5561\"* near|strong=\"G1451\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, to|strong=\"G1519\"* a|strong=\"G1519\"* city|strong=\"G4172\"* called|strong=\"G3004\"* Ephraim|strong=\"G2187\"*. He|strong=\"G3588\"* stayed|strong=\"G3306\"* there|strong=\"G1564\"* with|strong=\"G3326\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 55, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* was|strong=\"G1510\"* at|strong=\"G1519\"* hand|strong=\"G1451\"*. Many|strong=\"G4183\"* went|strong=\"G2532\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G2532\"* country|strong=\"G5561\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* before|strong=\"G4253\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, to|strong=\"G1519\"* purify themselves|strong=\"G1438\"*." + }, + { + "verseNum": 56, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* sought|strong=\"G2212\"* for|strong=\"G3754\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* with|strong=\"G3326\"* one|strong=\"G3588\"* another|strong=\"G3588\"* as|strong=\"G1519\"* they|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, “What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* think|strong=\"G1380\"*—that|strong=\"G3754\"* he|strong=\"G2532\"* isn’t|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1722\"* feast|strong=\"G1859\"* at|strong=\"G1722\"* all|strong=\"G2532\"*?”" + }, + { + "verseNum": 57, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* had|strong=\"G2532\"* commanded|strong=\"G1785\"* that|strong=\"G2443\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* knew|strong=\"G1097\"* where|strong=\"G4226\"* he|strong=\"G2532\"* was|strong=\"G1510\"*, he|strong=\"G2532\"* should|strong=\"G5100\"* report|strong=\"G3377\"* it|strong=\"G2532\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* seize|strong=\"G4084\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G3767\"*, six|strong=\"G1803\"* days|strong=\"G2250\"* before|strong=\"G4253\"* the|strong=\"G1519\"* Passover|strong=\"G3957\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Bethany, where|strong=\"G3699\"* Lazarus|strong=\"G2976\"* was|strong=\"G1510\"*, who|strong=\"G3739\"* had|strong=\"G2424\"* been|strong=\"G1510\"* dead|strong=\"G3498\"*, whom|strong=\"G3739\"* he|strong=\"G3739\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* made|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2532\"* supper|strong=\"G1173\"* there|strong=\"G1563\"*. Martha|strong=\"G3136\"* served|strong=\"G1247\"*, but|strong=\"G1161\"* Lazarus|strong=\"G2976\"* was|strong=\"G1510\"* one|strong=\"G1520\"* of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2532\"* at|strong=\"G1537\"* the|strong=\"G2532\"* table with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* Mary|strong=\"G3137\"* took|strong=\"G2983\"* a|strong=\"G2532\"* pound|strong=\"G3046\"*+ 12:3 a Roman pound of 12 ounces, or about 340 grams* of|strong=\"G1537\"* ointment|strong=\"G3464\"* of|strong=\"G1537\"* pure|strong=\"G4101\"* nard|strong=\"G3487\"*, very|strong=\"G2532\"* precious|strong=\"G4186\"*, and|strong=\"G2532\"* anointed Jesus|strong=\"G2424\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* wiped|strong=\"G1591\"* his|strong=\"G2983\"* feet|strong=\"G4228\"* with|strong=\"G1537\"* her|strong=\"G3137\"* hair|strong=\"G2359\"*. The|strong=\"G2532\"* house|strong=\"G3614\"* was|strong=\"G3588\"* filled|strong=\"G4137\"* with|strong=\"G1537\"* the|strong=\"G2532\"* fragrance|strong=\"G3744\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ointment|strong=\"G3464\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G1161\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, Simon’s son, one|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"*, who|strong=\"G3588\"* would|strong=\"G3195\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“Why|strong=\"G5101\"* wasn’t|strong=\"G3588\"* this|strong=\"G3778\"* ointment|strong=\"G3464\"* sold|strong=\"G4097\"* for|strong=\"G1223\"* three|strong=\"G5145\"* hundred|strong=\"G5145\"* denarii|strong=\"G1220\"*+ 12:5 300 denarii was about a year’s wages for an agricultural laborer.* and|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*?”" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, not|strong=\"G3756\"* because|strong=\"G3754\"* he|strong=\"G2532\"* cared|strong=\"G3199\"* for|strong=\"G3754\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*, but|strong=\"G1161\"* because|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2192\"* thief|strong=\"G2812\"*, and|strong=\"G2532\"* having|strong=\"G2192\"* the|strong=\"G2532\"* money|strong=\"G1101\"* box|strong=\"G1101\"*, used to|strong=\"G2532\"* steal what|strong=\"G3588\"* was|strong=\"G1510\"* put|strong=\"G2532\"* into it|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G3767\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “Leave \\+w her|strong=\"G1438\"\\+w* \\+w alone|strong=\"G1438\"\\+w*. \\+w She|strong=\"G2443\"\\+w* \\+w has|strong=\"G2424\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w burial|strong=\"G1780\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w poor|strong=\"G4434\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G1438\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G1438\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* large|strong=\"G4183\"* crowd|strong=\"G3793\"* therefore|strong=\"G3767\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* learned|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* there|strong=\"G1563\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"*, not|strong=\"G3756\"* for|strong=\"G3754\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* might|strong=\"G2532\"* see|strong=\"G3708\"* Lazarus|strong=\"G2976\"* also|strong=\"G2532\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2424\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests conspired to|strong=\"G2443\"* put|strong=\"G2532\"* Lazarus|strong=\"G2976\"* to|strong=\"G2443\"* death also|strong=\"G2532\"*," + }, + { + "verseNum": 11, + "text": "because|strong=\"G3754\"* on|strong=\"G1519\"* account|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"* many|strong=\"G4183\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* went|strong=\"G2424\"* away|strong=\"G5217\"* and|strong=\"G2532\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"G1519\"* the|strong=\"G1519\"* next|strong=\"G1887\"* day|strong=\"G1887\"* a|strong=\"G1519\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* had|strong=\"G2424\"* come|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G1519\"* feast|strong=\"G1859\"*. When|strong=\"G2064\"* they|strong=\"G3588\"* heard that|strong=\"G3754\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* coming|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*," + }, + { + "verseNum": 13, + "text": "they|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G1722\"* branches|strong=\"G5404\"* of|strong=\"G2532\"* the|strong=\"G1722\"* palm|strong=\"G5404\"* trees|strong=\"G5404\"* and|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* meet|strong=\"G5222\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* cried|strong=\"G2905\"* out|strong=\"G1831\"*, “Hosanna|strong=\"G5614\"*!+ 12:13 “Hosanna” means “save us” or “help us, we pray”.* Blessed|strong=\"G2127\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*,+ 12:13 Psalms 118:25-26 * the|strong=\"G1722\"* King|strong=\"G3588\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*!”" + }, + { + "verseNum": 14, + "text": "Jesus|strong=\"G2424\"*, having found|strong=\"G2147\"* a|strong=\"G1510\"* young|strong=\"G3678\"* donkey|strong=\"G3678\"*, sat|strong=\"G2523\"* on|strong=\"G1909\"* it|strong=\"G1161\"*. As|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 15, + "text": "“Don’t|strong=\"G3588\"* be|strong=\"G3361\"* afraid|strong=\"G5399\"*, daughter|strong=\"G2364\"* of|strong=\"G1909\"* Zion|strong=\"G4622\"*. Behold|strong=\"G2400\"*, your|strong=\"G3708\"* King|strong=\"G3588\"* comes|strong=\"G2064\"*, sitting|strong=\"G2521\"* on|strong=\"G1909\"* a|strong=\"G1909\"* donkey|strong=\"G3688\"*’s colt|strong=\"G4454\"*.”+ 12:15 Zechariah 9:9*" + }, + { + "verseNum": 16, + "text": "His|strong=\"G1909\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* understand|strong=\"G1097\"* these|strong=\"G3778\"* things|strong=\"G3778\"* at|strong=\"G1909\"* first|strong=\"G4413\"*, but|strong=\"G2532\"* when|strong=\"G3753\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* glorified|strong=\"G1392\"*, then|strong=\"G2532\"* they|strong=\"G2532\"* remembered|strong=\"G3403\"* that|strong=\"G3754\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* written|strong=\"G1125\"* about|strong=\"G1909\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* done|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* therefore|strong=\"G3767\"* that|strong=\"G3754\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* when|strong=\"G3753\"* he|strong=\"G2532\"* called|strong=\"G5455\"* Lazarus|strong=\"G2976\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* was|strong=\"G1510\"* testifying|strong=\"G3140\"* about|strong=\"G3754\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G4160\"* also|strong=\"G2532\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* went|strong=\"G2532\"* and|strong=\"G2532\"* met|strong=\"G5221\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* sign|strong=\"G4592\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G4314\"* Pharisees|strong=\"G5330\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*, “See|strong=\"G3708\"* how|strong=\"G3754\"* you|strong=\"G3754\"* accomplish nothing|strong=\"G3762\"*. Behold|strong=\"G2396\"*, the|strong=\"G4314\"* world|strong=\"G2889\"* has|strong=\"G3762\"* gone after|strong=\"G3694\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* certain|strong=\"G5100\"* Greeks|strong=\"G1672\"* among|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* went|strong=\"G3588\"* up|strong=\"G1722\"* to|strong=\"G2443\"* worship|strong=\"G4352\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feast|strong=\"G1859\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"*, these|strong=\"G3778\"* came|strong=\"G4334\"* to|strong=\"G2532\"* Philip|strong=\"G5376\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* from|strong=\"G2532\"* Bethsaida of|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Sir|strong=\"G2962\"*, we|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* see|strong=\"G3708\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 22, + "text": "Philip|strong=\"G5376\"* came|strong=\"G2064\"* and|strong=\"G2532\"* told|strong=\"G3004\"* Andrew, and|strong=\"G2532\"* in|strong=\"G2532\"* turn, Andrew came|strong=\"G2064\"* with|strong=\"G2532\"* Philip|strong=\"G5376\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* told|strong=\"G3004\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w The|strong=\"G1161\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G5610\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w be|strong=\"G2443\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Most|strong=\"G4183\"\\+w* certainly \\+w I|strong=\"G1161\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w grain|strong=\"G2590\"\\+w* \\+w of|strong=\"G1093\"\\+w* \\+w wheat|strong=\"G4621\"\\+w* \\+w falls|strong=\"G4098\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w earth|strong=\"G1093\"\\+w* \\+w and|strong=\"G1161\"\\+w* dies, \\+w it|strong=\"G1161\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w by|strong=\"G3004\"\\+w* itself \\+w alone|strong=\"G3441\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w it|strong=\"G1161\"\\+w* dies, \\+w it|strong=\"G1161\"\\+w* \\+w bears|strong=\"G5342\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w will|strong=\"G2532\"\\+w* lose \\+w it|strong=\"G2532\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w life|strong=\"G2222\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5442\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w serves|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* follow \\+w me|strong=\"G1473\"\\+w*. \\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w there|strong=\"G1563\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w servant|strong=\"G1249\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* \\+w serves|strong=\"G1247\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w honor|strong=\"G5091\"\\+w* \\+w him|strong=\"G3588\"\\+w*.*" + }, + { + "verseNum": 27, + "text": "“\\+w Now|strong=\"G3568\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w soul|strong=\"G5590\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*. \\+w What|strong=\"G5101\"\\+w* \\+w shall|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w say|strong=\"G3004\"\\+w*? ‘\\+w Father|strong=\"G3962\"\\+w*, \\+w save|strong=\"G4982\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G5610\"\\+w*’? \\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w cause|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w Father|strong=\"G3962\"\\+w*, \\+w glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*!”*" + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G2532\"* and|strong=\"G2532\"* heard it|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"* it|strong=\"G2532\"* had|strong=\"G2532\"* thundered|strong=\"G1027\"*. Others|strong=\"G3588\"* said|strong=\"G3004\"*, “An|strong=\"G2532\"* angel has|strong=\"G1096\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 30, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w voice|strong=\"G5456\"\\+w* hasn’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G1096\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sake|strong=\"G1223\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w your|strong=\"G1223\"\\+w* \\+w sakes|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w judgment|strong=\"G2920\"\\+w* \\+w of|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w Now|strong=\"G3568\"\\+w* \\+w the|strong=\"G3588\"\\+w* prince \\+w of|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w cast|strong=\"G1544\"\\+w* \\+w out|strong=\"G1544\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w And|strong=\"G1093\"\\+w* \\+w I|strong=\"G2504\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G2504\"\\+w* \\+w am|strong=\"G2504\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G5312\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w earth|strong=\"G1093\"\\+w*, \\+w will|strong=\"G3956\"\\+w* \\+w draw|strong=\"G1670\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w people|strong=\"G3956\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w myself|strong=\"G1683\"\\+w*.”*" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, signifying|strong=\"G4591\"* by|strong=\"G3004\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G3004\"* death|strong=\"G2288\"* he|strong=\"G1161\"* should|strong=\"G3195\"* die|strong=\"G2288\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “We|strong=\"G2249\"* have|strong=\"G2532\"* heard out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* remains|strong=\"G3306\"* forever|strong=\"G1519\"*.+ 12:34 Isaiah 9:7; Daniel 2:44; See Isaiah 53:8* How|strong=\"G4459\"* do|strong=\"G5101\"* you|strong=\"G4771\"* say|strong=\"G3004\"*, ‘\\+w The|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Man|strong=\"G3778\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w lifted|strong=\"G5312\"\\+w* \\+w up|strong=\"G1210\"\\+w*’*? Who|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G3778\"*?”" + }, + { + "verseNum": 35, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “\\+w Yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w little|strong=\"G3397\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Walk|strong=\"G4043\"\\+w* \\+w while|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w overtake|strong=\"G2638\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w walks|strong=\"G4043\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G4226\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*. *" + }, + { + "verseNum": 36, + "text": "\\+w While|strong=\"G5613\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w light|strong=\"G5457\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G1096\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w light|strong=\"G5457\"\\+w*.”* Jesus|strong=\"G2424\"* said|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* departed and|strong=\"G2532\"* hid|strong=\"G2928\"* himself|strong=\"G2928\"* from|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* though|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G4160\"* done|strong=\"G4160\"* so|strong=\"G1161\"* many|strong=\"G5118\"* signs|strong=\"G4592\"* before|strong=\"G1715\"* them|strong=\"G4160\"*, yet|strong=\"G1161\"* they|strong=\"G1161\"* didn’t believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G4160\"*," + }, + { + "verseNum": 38, + "text": "that|strong=\"G2443\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G3004\"*:" + }, + { + "verseNum": 39, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* they|strong=\"G3754\"* couldn’t believe|strong=\"G4100\"*, for|strong=\"G3754\"* Isaiah|strong=\"G2268\"* said|strong=\"G3004\"* again|strong=\"G3825\"*:" + }, + { + "verseNum": 40, + "text": "“He|strong=\"G2532\"* has|strong=\"G3708\"* blinded|strong=\"G5186\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"* and|strong=\"G2532\"* he|strong=\"G2532\"* hardened|strong=\"G4456\"* their|strong=\"G1438\"* heart|strong=\"G2588\"*," + }, + { + "verseNum": 41, + "text": "Isaiah|strong=\"G2268\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* when|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* his|strong=\"G4012\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* spoke|strong=\"G2980\"* of|strong=\"G4012\"* him|strong=\"G3588\"*. + 12:41 Isaiah 6:1*" + }, + { + "verseNum": 42, + "text": "Nevertheless|strong=\"G3305\"*, even|strong=\"G2532\"* many|strong=\"G4183\"* of|strong=\"G1537\"* the|strong=\"G2532\"* rulers believed|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* confess|strong=\"G3670\"* it|strong=\"G2532\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1096\"* put|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue," + }, + { + "verseNum": 43, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* loved men|strong=\"G3588\"*’s praise|strong=\"G1391\"* more|strong=\"G3123\"* than|strong=\"G2260\"* God|strong=\"G2316\"*’s praise|strong=\"G1391\"*." + }, + { + "verseNum": 44, + "text": "Jesus|strong=\"G2424\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Whoever|strong=\"G3588\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w believes|strong=\"G4100\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 45, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w sees|strong=\"G2334\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 46, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w a|strong=\"G1519\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w darkness|strong=\"G4653\"\\+w*. *" + }, + { + "verseNum": 47, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* listens \\+w to|strong=\"G2443\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w sayings|strong=\"G4487\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* believe, \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w save|strong=\"G4982\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 48, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* rejects \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w sayings|strong=\"G3056\"\\+w*, \\+w has|strong=\"G2192\"\\+w* \\+w one|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w judges|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w The|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w judge|strong=\"G2919\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w day|strong=\"G2250\"\\+w*. *" + }, + { + "verseNum": 49, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w myself|strong=\"G1683\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w should|strong=\"G3588\"\\+w* \\+w speak|strong=\"G2980\"\\+w*. *" + }, + { + "verseNum": 50, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w is|strong=\"G1510\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* before|strong=\"G4253\"* the|strong=\"G1722\"* feast|strong=\"G1859\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*, Jesus|strong=\"G2424\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G1438\"* time|strong=\"G5610\"* had|strong=\"G2424\"* come|strong=\"G2064\"* that|strong=\"G3754\"* he|strong=\"G1161\"* would|strong=\"G2064\"* depart|strong=\"G3327\"* from|strong=\"G1537\"* this|strong=\"G3778\"* world|strong=\"G2889\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, having|strong=\"G1492\"* loved his|strong=\"G1438\"* own|strong=\"G2398\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, he|strong=\"G1161\"* loved them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 2, + "text": "During|strong=\"G1096\"* supper|strong=\"G1173\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"* having|strong=\"G2532\"* already|strong=\"G2235\"* put|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* heart|strong=\"G2588\"* of|strong=\"G2532\"* Judas|strong=\"G2455\"* Iscariot|strong=\"G2469\"*, Simon|strong=\"G4613\"*’s son, to|strong=\"G1519\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "Jesus|strong=\"G1831\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* had|strong=\"G2532\"* given|strong=\"G1325\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1519\"* his|strong=\"G3956\"* hands|strong=\"G5495\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* came|strong=\"G1831\"* from|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* was|strong=\"G3588\"* going|strong=\"G5217\"* to|strong=\"G1519\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 4, + "text": "arose|strong=\"G1453\"* from|strong=\"G1537\"* supper|strong=\"G1173\"*, and|strong=\"G2532\"* laid|strong=\"G5087\"* aside|strong=\"G5087\"* his|strong=\"G1438\"* outer|strong=\"G2440\"* garments|strong=\"G2440\"*. He|strong=\"G2532\"* took|strong=\"G2983\"* a|strong=\"G2532\"* towel|strong=\"G3012\"* and|strong=\"G2532\"* wrapped a|strong=\"G2532\"* towel|strong=\"G3012\"* around his|strong=\"G1438\"* waist." + }, + { + "verseNum": 5, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* poured|strong=\"G2532\"* water|strong=\"G5204\"* into|strong=\"G1519\"* the|strong=\"G2532\"* basin|strong=\"G3537\"*, and|strong=\"G2532\"* began to|strong=\"G1519\"* wash|strong=\"G3538\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*’ feet|strong=\"G4228\"* and|strong=\"G2532\"* to|strong=\"G1519\"* wipe|strong=\"G1591\"* them|strong=\"G3588\"* with|strong=\"G2532\"* the|strong=\"G2532\"* towel|strong=\"G3012\"* that|strong=\"G3739\"* was|strong=\"G1510\"* wrapped around him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G3767\"* he|strong=\"G3588\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*. He|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, do|strong=\"G3004\"* you|strong=\"G4771\"* wash|strong=\"G3538\"* my|strong=\"G1473\"* feet|strong=\"G4228\"*?”" + }, + { + "verseNum": 7, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3739\"*, “\\+w You|strong=\"G4771\"\\+w* don’t \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w doing|strong=\"G4160\"\\+w* \\+w now|strong=\"G1161\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w understand|strong=\"G1097\"\\+w* \\+w later|strong=\"G3326\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* will|strong=\"G1473\"* never|strong=\"G3756\"* wash|strong=\"G3538\"* my|strong=\"G1473\"* feet|strong=\"G4228\"*!”" + }, + { + "verseNum": 9, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, not|strong=\"G3361\"* my|strong=\"G1473\"* feet|strong=\"G4228\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* my|strong=\"G1473\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* my|strong=\"G1473\"* head|strong=\"G2776\"*!”" + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Someone \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w bathed|strong=\"G3068\"\\+w* \\+w only|strong=\"G1487\"\\+w* \\+w needs|strong=\"G5532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w feet|strong=\"G4228\"\\+w* \\+w washed|strong=\"G3538\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w completely|strong=\"G3650\"\\+w* \\+w clean|strong=\"G2513\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w clean|strong=\"G2513\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.” *" + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* he|strong=\"G3754\"* knew|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* would|strong=\"G1510\"* betray|strong=\"G3860\"* him|strong=\"G3588\"*; therefore|strong=\"G1223\"* he|strong=\"G3754\"* said|strong=\"G3004\"*, “\\+w You|strong=\"G3754\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3780\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w clean|strong=\"G2513\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2532\"* washed|strong=\"G3538\"* their|strong=\"G2532\"* feet|strong=\"G4228\"*, put|strong=\"G4160\"* his|strong=\"G4160\"* outer|strong=\"G2440\"* garment|strong=\"G2440\"* back|strong=\"G3825\"* on|strong=\"G4160\"*, and|strong=\"G2532\"* sat|strong=\"G2532\"* down again|strong=\"G3825\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Do|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*? *" + }, + { + "verseNum": 13, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Teacher|strong=\"G1320\"\\+w*’ \\+w and|strong=\"G2532\"\\+w* ‘\\+w Lord|strong=\"G2962\"\\+w*.’ \\+w You|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w correctly|strong=\"G2573\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w so|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w then|strong=\"G3767\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Lord|strong=\"G2962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Teacher|strong=\"G1320\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w washed|strong=\"G3538\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w ought|strong=\"G3784\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w wash|strong=\"G3538\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*’\\+w s|strong=\"G2962\"\\+w* \\+w feet|strong=\"G4228\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w example|strong=\"G5262\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "Most \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1510\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w a|strong=\"G1510\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w his|strong=\"G3992\"\\+w* \\+w lord|strong=\"G2962\"\\+w*, \\+w neither|strong=\"G3761\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w them|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w speak|strong=\"G3004\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w whom|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w chosen|strong=\"G1586\"\\+w*; \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*, ‘\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w eats|strong=\"G5176\"\\+w* bread \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G5101\"\\+w* \\+w lifted|strong=\"G1869\"\\+w* \\+w up|strong=\"G1869\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w heel|strong=\"G4418\"\\+w* \\+w against|strong=\"G1909\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*+ 13:18 Psalms 41:9*" + }, + { + "verseNum": 19, + "text": "\\+w From|strong=\"G3588\"\\+w* \\+w now|strong=\"G1096\"\\+w* \\+w on|strong=\"G1096\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3754\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "Most certainly \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* whomever \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w*, \\+w receives|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w and|strong=\"G1161\"\\+w* \\+w he|strong=\"G1161\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w receives|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* troubled|strong=\"G5015\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* testified|strong=\"G3140\"*, “\\+w Most|strong=\"G1537\"\\+w* \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w betray|strong=\"G3860\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "The|strong=\"G1519\"* disciples|strong=\"G3101\"* looked at|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, perplexed about|strong=\"G4012\"* whom|strong=\"G5101\"* he|strong=\"G3588\"* spoke|strong=\"G3004\"*." + }, + { + "verseNum": 23, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved, was|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* table, leaning against|strong=\"G1722\"* Jesus|strong=\"G2424\"*’ chest." + }, + { + "verseNum": 24, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* beckoned|strong=\"G3506\"* to|strong=\"G2532\"* him|strong=\"G3739\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3739\"*, “Tell|strong=\"G3004\"* us|strong=\"G3004\"* who|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G4012\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* speaks|strong=\"G3004\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"G3588\"*, leaning back, as|strong=\"G3779\"* he|strong=\"G3588\"* was|strong=\"G1510\"*, on|strong=\"G1909\"* Jesus|strong=\"G2424\"*’ chest|strong=\"G4738\"*, asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, who|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G5101\"*?”" + }, + { + "verseNum": 26, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* answered, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w this|strong=\"G3588\"\\+w* piece \\+w of|strong=\"G2532\"\\+w* bread \\+w when|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* dipped \\+w it|strong=\"G2532\"\\+w*.”* So|strong=\"G3767\"* when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2424\"* dipped the|strong=\"G2532\"* piece of|strong=\"G2532\"* bread, he|strong=\"G2532\"* gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* Judas|strong=\"G2455\"*, the|strong=\"G2532\"* son of|strong=\"G2532\"* Simon|strong=\"G4613\"* Iscariot|strong=\"G2469\"*." + }, + { + "verseNum": 27, + "text": "After|strong=\"G3326\"* the|strong=\"G2532\"* piece of|strong=\"G2532\"* bread, then|strong=\"G3767\"* Satan|strong=\"G4567\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"G1161\"* nobody|strong=\"G3762\"* at|strong=\"G4314\"* the|strong=\"G1161\"* table knew|strong=\"G1097\"* why|strong=\"G5101\"* he|strong=\"G1161\"* said|strong=\"G3004\"* this|strong=\"G3778\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* some|strong=\"G5100\"* thought|strong=\"G1380\"*, because|strong=\"G3754\"* Judas|strong=\"G2455\"* had|strong=\"G2192\"* the|strong=\"G1519\"* money|strong=\"G1101\"* box|strong=\"G1101\"*, that|strong=\"G3754\"* Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Buy what|strong=\"G3739\"* things|strong=\"G3588\"* we|strong=\"G3739\"* need|strong=\"G5532\"* for|strong=\"G1063\"* the|strong=\"G1519\"* feast|strong=\"G1859\"*,” or|strong=\"G2228\"* that|strong=\"G3754\"* he|strong=\"G3739\"* should|strong=\"G5100\"* give|strong=\"G1325\"* something|strong=\"G5100\"* to|strong=\"G1519\"* the|strong=\"G1519\"* poor|strong=\"G4434\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"* having|strong=\"G3767\"* received|strong=\"G2983\"* that|strong=\"G3588\"* morsel|strong=\"G5596\"*, he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* immediately|strong=\"G2112\"*. It|strong=\"G1161\"* was|strong=\"G1510\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2424\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, Jesus|strong=\"G2424\"* said|strong=\"G3004\"*, “\\+w Now|strong=\"G3568\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Man|strong=\"G5207\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 32, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w been|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w God|strong=\"G2316\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w himself|strong=\"G1438\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w immediately|strong=\"G2112\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w Little|strong=\"G3398\"\\+w* \\+w children|strong=\"G5040\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w* \\+w longer|strong=\"G2089\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, ‘\\+w Where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w*,’ \\+w so|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 34, + "text": "\\+w A|strong=\"G2532\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w commandment|strong=\"G1785\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w one|strong=\"G2532\"\\+w* another. \\+w Just|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* loved \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w also|strong=\"G2532\"\\+w* love \\+w one|strong=\"G2532\"\\+w* another. *" + }, + { + "verseNum": 35, + "text": "\\+w By|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*, \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w have|strong=\"G2192\"\\+w* love \\+w for|strong=\"G3754\"\\+w* \\+w one|strong=\"G3956\"\\+w* \\+w another|strong=\"G1722\"\\+w*.”*" + }, + { + "verseNum": 36, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, where|strong=\"G3699\"* are|strong=\"G3568\"* you|strong=\"G3004\"* going|strong=\"G5217\"*?”" + }, + { + "verseNum": 37, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, why|strong=\"G5101\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* I|strong=\"G1473\"* follow you|strong=\"G4771\"* now|strong=\"G3756\"*? I|strong=\"G1473\"* will|strong=\"G5101\"* lay|strong=\"G5087\"* down|strong=\"G5087\"* my|strong=\"G5087\"* life|strong=\"G5590\"* for|strong=\"G5228\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 38, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w Will|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w Most|strong=\"G5228\"\\+w* \\+w certainly|strong=\"G3756\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w the|strong=\"G3588\"\\+w* rooster won’\\+w t|strong=\"G3588\"\\+w* \\+w crow|strong=\"G5455\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* denied \\+w me|strong=\"G1473\"\\+w* \\+w three|strong=\"G5151\"\\+w* \\+w times|strong=\"G5151\"\\+w*.*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "“Don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*. \\+w Believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*. \\+w Believe|strong=\"G4100\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w house|strong=\"G3614\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w many|strong=\"G4183\"\\+w* homes. \\+w If|strong=\"G1487\"\\+w* \\+w it|strong=\"G3754\"\\+w* weren’\\+w t|strong=\"G3588\"\\+w* \\+w so|strong=\"G1161\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w would|strong=\"G1722\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w prepare|strong=\"G2090\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w place|strong=\"G5117\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G3880\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w myself|strong=\"G1683\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*.”*" + }, + { + "verseNum": 5, + "text": "Thomas|strong=\"G2381\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, we|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* you|strong=\"G3004\"* are|strong=\"G3588\"* going|strong=\"G5217\"*. How|strong=\"G4459\"* can|strong=\"G1410\"* we|strong=\"G2532\"* know|strong=\"G1492\"* the|strong=\"G2532\"* way|strong=\"G3598\"*?”" + }, + { + "verseNum": 6, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w way|strong=\"G3598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* truth, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*. \\+w No|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w comes|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w except|strong=\"G1487\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w had|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w also|strong=\"G2532\"\\+w*. \\+w From|strong=\"G2532\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w on|strong=\"G3588\"\\+w*, \\+w you|strong=\"G1487\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Philip|strong=\"G5376\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, show|strong=\"G1166\"* us|strong=\"G3004\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* will|strong=\"G2532\"* be|strong=\"G2532\"* enough for|strong=\"G2532\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 9, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Have|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w such|strong=\"G5118\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w long|strong=\"G5550\"\\+w* \\+w time|strong=\"G5550\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w Philip|strong=\"G5376\"\\+w*? \\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. \\+w How|strong=\"G4459\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w Show|strong=\"G1166\"\\+w* \\+w us|strong=\"G3004\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’? *" + }, + { + "verseNum": 10, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w The|strong=\"G1722\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w myself|strong=\"G1683\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w lives|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w does|strong=\"G4160\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w Believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w very|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*’ \\+w sake|strong=\"G1223\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w believes|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w also|strong=\"G2532\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w these|strong=\"G3778\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G2532\"\\+w* ask \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G2532\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Son|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G1473\"\\+w* ask \\+w anything|strong=\"G5100\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w it|strong=\"G1437\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* love \\+w me|strong=\"G1473\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w another|strong=\"G3588\"\\+w* Counselor, *+ 14:16 Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w forever|strong=\"G1519\"\\+w*:*" + }, + { + "verseNum": 17, + "text": "\\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* truth, \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w it|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w lives|strong=\"G3306\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G2064\"\\+w* \\+w will|strong=\"G2064\"\\+w* \\+w not|strong=\"G3756\"\\+w* leave \\+w you|strong=\"G5210\"\\+w* \\+w orphans|strong=\"G3737\"\\+w*. \\+w I|strong=\"G2064\"\\+w* \\+w will|strong=\"G2064\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w Yet|strong=\"G2089\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G2089\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w live|strong=\"G2198\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w live|strong=\"G2198\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w One|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w that|strong=\"G3588\"\\+w* person \\+w is|strong=\"G1510\"\\+w* \\+w one|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*. \\+w One|strong=\"G1438\"\\+w* \\+w who|strong=\"G3588\"\\+w* loves \\+w me|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* loved \\+w by|strong=\"G5259\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* love \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* reveal \\+w myself|strong=\"G1683\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "Judas|strong=\"G2455\"* (not|strong=\"G3756\"* Iscariot|strong=\"G2469\"*) said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, what|strong=\"G5101\"* has|strong=\"G2962\"* happened|strong=\"G1096\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* reveal yourself|strong=\"G4572\"* to|strong=\"G2532\"* us|strong=\"G3004\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*?”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w man|strong=\"G5100\"\\+w* loves \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*. \\+w My|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* love \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w we|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w our|strong=\"G2424\"\\+w* home \\+w with|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* love \\+w me|strong=\"G1473\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w words|strong=\"G3056\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* hear isn’\\+w t|strong=\"G3588\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w who|strong=\"G3739\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w while|strong=\"G2980\"\\+w* \\+w still|strong=\"G3306\"\\+w* \\+w living|strong=\"G3306\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* Counselor, \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w will|strong=\"G2532\"\\+w* \\+w teach|strong=\"G1321\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w remind|strong=\"G5279\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w Peace|strong=\"G1515\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w leave|strong=\"G1325\"\\+w* \\+w with|strong=\"G2588\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w My|strong=\"G1699\"\\+w* \\+w peace|strong=\"G1515\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*; \\+w not|strong=\"G3756\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w gives|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w your|strong=\"G1325\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w troubled|strong=\"G5015\"\\+w*, \\+w neither|strong=\"G3756\"\\+w* \\+w let|strong=\"G5015\"\\+w* \\+w it|strong=\"G2531\"\\+w* \\+w be|strong=\"G3756\"\\+w* \\+w fearful|strong=\"G1168\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w You|strong=\"G5210\"\\+w* heard \\+w how|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w away|strong=\"G5217\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w back|strong=\"G4314\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*.’ \\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w rejoiced|strong=\"G5463\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*;’ \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w I|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 29, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w before|strong=\"G4250\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w happens|strong=\"G1096\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w*. *" + }, + { + "verseNum": 30, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G4183\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G1722\"\\+w* prince \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 31, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* love \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w commanded|strong=\"G1781\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w so|strong=\"G3779\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w*. \\+w Arise|strong=\"G1453\"\\+w*, \\+w let|strong=\"G1097\"\\+w*’s \\+w go|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1782\"\\+w*.*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w true|strong=\"G3588\"\\+w* vine, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w farmer|strong=\"G1092\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w Every|strong=\"G3956\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w that|strong=\"G2443\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w he|strong=\"G2532\"\\+w* takes away. \\+w Every|strong=\"G3956\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w bears|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w prunes|strong=\"G2508\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w already|strong=\"G2235\"\\+w* pruned \\+w clean|strong=\"G2513\"\\+w* \\+w because|strong=\"G1223\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G1223\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G1510\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w to|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w by|strong=\"G1722\"\\+w* \\+w itself|strong=\"G1438\"\\+w* \\+w unless|strong=\"G1437\"\\+w* \\+w it|strong=\"G1437\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine, \\+w so|strong=\"G3779\"\\+w* \\+w neither|strong=\"G3761\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* vine. \\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w branches|strong=\"G2814\"\\+w*. \\+w He|strong=\"G3754\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w remains|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G4160\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w bears|strong=\"G4160\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w apart|strong=\"G5565\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w man|strong=\"G5100\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* thrown \\+w out|strong=\"G1854\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w branch|strong=\"G2814\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w withered|strong=\"G3583\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w gather|strong=\"G4863\"\\+w* \\+w them|strong=\"G3588\"\\+w*, throw \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w burned|strong=\"G2545\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2309\"\\+w* ask \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w desire|strong=\"G2309\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w done|strong=\"G1096\"\\+w* \\+w for|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w In|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w glorified|strong=\"G1392\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w much|strong=\"G4183\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w you|strong=\"G1722\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w disciples|strong=\"G3101\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w have|strong=\"G1473\"\\+w* loved \\+w you|strong=\"G4771\"\\+w*. \\+w Remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* love. *" + }, + { + "verseNum": 10, + "text": "\\+w If|strong=\"G1437\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w commandments|strong=\"G1785\"\\+w*, \\+w you|strong=\"G1437\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G5083\"\\+w* love, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’s \\+w commandments|strong=\"G1785\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w remain|strong=\"G3306\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* love. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w remain|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w commandment|strong=\"G1785\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* love \\+w one|strong=\"G3588\"\\+w* \\+w another|strong=\"G3588\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G1510\"\\+w* loved \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w Greater|strong=\"G3173\"\\+w* love \\+w has|strong=\"G2192\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w than|strong=\"G5228\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* someone \\+w lay|strong=\"G5087\"\\+w* \\+w down|strong=\"G5087\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w life|strong=\"G5590\"\\+w* \\+w for|strong=\"G5228\"\\+w* \\+w his|strong=\"G2192\"\\+w* \\+w friends|strong=\"G5384\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w friends|strong=\"G5384\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w No|strong=\"G3756\"\\+w* \\+w longer|strong=\"G3765\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w servants|strong=\"G1401\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G3956\"\\+w* \\+w servant|strong=\"G1401\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w his|strong=\"G3956\"\\+w* \\+w lord|strong=\"G2962\"\\+w* \\+w does|strong=\"G4160\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w called|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w friends|strong=\"G5384\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w everything|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* heard \\+w from|strong=\"G3844\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w made|strong=\"G4160\"\\+w* \\+w known|strong=\"G1107\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w You|strong=\"G5210\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w choose|strong=\"G1586\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w chose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w appointed|strong=\"G5087\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w bear|strong=\"G5342\"\\+w* \\+w fruit|strong=\"G2590\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G5087\"\\+w* \\+w fruit|strong=\"G2590\"\\+w* \\+w should|strong=\"G5100\"\\+w* \\+w remain|strong=\"G3306\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w whatever|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* ask \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 17, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w command|strong=\"G1781\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* love \\+w one|strong=\"G3778\"\\+w* another. *" + }, + { + "verseNum": 18, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w has|strong=\"G2889\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w before|strong=\"G4413\"\\+w* \\+w it|strong=\"G3754\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w its|strong=\"G5368\"\\+w* \\+w own|strong=\"G2398\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w since|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w chose|strong=\"G1586\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w therefore|strong=\"G1223\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*: ‘\\+w A|strong=\"G2532\"\\+w* \\+w servant|strong=\"G1401\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w greater|strong=\"G3173\"\\+w* \\+w than|strong=\"G3173\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w lord|strong=\"G2962\"\\+w*.’*+ 15:20 John 13:16* \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w persecuted|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w my|strong=\"G3956\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G1223\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w they|strong=\"G2532\"\\+w* \\+w would|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* sin; \\+w but|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w excuse|strong=\"G4392\"\\+w* \\+w for|strong=\"G4012\"\\+w* \\+w their|strong=\"G2532\"\\+w* sin. *" + }, + { + "verseNum": 23, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hates|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w hates|strong=\"G3404\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w also|strong=\"G2532\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* hadn’\\+w t|strong=\"G3588\"\\+w* \\+w done|strong=\"G4160\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w did|strong=\"G4160\"\\+w*, \\+w they|strong=\"G2532\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w had|strong=\"G2192\"\\+w* sin. \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w But|strong=\"G3551\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w happened|strong=\"G3588\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G2443\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w was|strong=\"G3588\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w their|strong=\"G1722\"\\+w* \\+w law|strong=\"G3551\"\\+w*, ‘\\+w They|strong=\"G3588\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w without|strong=\"G3588\"\\+w* \\+w a|strong=\"G1722\"\\+w* \\+w cause|strong=\"G3588\"\\+w*.’*+ 15:25 Psalms 35:19; 69:4*" + }, + { + "verseNum": 26, + "text": "“\\+w When|strong=\"G3752\"\\+w* \\+w the|strong=\"G3588\"\\+w* Counselor*+ 15:26 Greek Parakletos: Counselor, Helper, Advocate, Intercessor, and Comforter.* \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4012\"\\+w* truth, \\+w who|strong=\"G3739\"\\+w* \\+w proceeds|strong=\"G1607\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w been|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* beginning.*" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* wouldn’t \\+w be|strong=\"G3361\"\\+w* caused \\+w to|strong=\"G2443\"\\+w* \\+w stumble|strong=\"G4624\"\\+w*. *" + }, + { + "verseNum": 2, + "text": "\\+w They|strong=\"G3588\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w put|strong=\"G4160\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w out|strong=\"G2064\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G3956\"\\+w* synagogues. Yes, \\+w the|strong=\"G3956\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w whoever|strong=\"G3956\"\\+w* kills \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w think|strong=\"G1380\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w offers|strong=\"G4374\"\\+w* \\+w service|strong=\"G2999\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w**+ 16:3 TR adds “to you”* \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w nor|strong=\"G3761\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w comes|strong=\"G2064\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w about|strong=\"G2980\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* beginning, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w none|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w asks|strong=\"G2065\"\\+w* \\+w me|strong=\"G1473\"\\+w*, ‘\\+w Where|strong=\"G4226\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w going|strong=\"G5217\"\\+w*?’ *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G3748\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w sorrow|strong=\"G3077\"\\+w* \\+w has|strong=\"G3778\"\\+w* \\+w filled|strong=\"G4137\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w heart|strong=\"G2588\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Nevertheless|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G1161\"\\+w* truth: \\+w It|strong=\"G1161\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w your|strong=\"G1437\"\\+w* \\+w advantage|strong=\"G4851\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w away|strong=\"G4198\"\\+w*; \\+w for|strong=\"G1063\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w away|strong=\"G4198\"\\+w*, \\+w the|strong=\"G1161\"\\+w* Counselor won’\\+w t|strong=\"G3588\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w if|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G4198\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w When|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G2889\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w convict|strong=\"G1651\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w about|strong=\"G4012\"\\+w* sin, \\+w about|strong=\"G4012\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*; *" + }, + { + "verseNum": 9, + "text": "\\+w about|strong=\"G4012\"\\+w* sin, \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G3754\"\\+w* don’t \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w*; *" + }, + { + "verseNum": 10, + "text": "\\+w about|strong=\"G4012\"\\+w* \\+w righteousness|strong=\"G1343\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w going|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w any|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w*; *" + }, + { + "verseNum": 11, + "text": "\\+w about|strong=\"G4012\"\\+w* \\+w judgment|strong=\"G2920\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G1161\"\\+w* prince \\+w of|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w has|strong=\"G3778\"\\+w* been \\+w judged|strong=\"G2919\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "“\\+w I|strong=\"G3004\"\\+w* \\+w still|strong=\"G2089\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w things|strong=\"G4183\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, but \\+w you|strong=\"G5210\"\\+w* \\+w can|strong=\"G1410\"\\+w*’t \\+w bear|strong=\"G2192\"\\+w* \\+w them|strong=\"G3004\"\\+w* \\+w now|strong=\"G2089\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w However|strong=\"G1161\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w he|strong=\"G2532\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w of|strong=\"G4151\"\\+w* truth, \\+w has|strong=\"G4151\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w guide|strong=\"G3594\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* truth, \\+w for|strong=\"G1063\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w from|strong=\"G2064\"\\+w* \\+w himself|strong=\"G1438\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w he|strong=\"G2532\"\\+w* hears, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w speak|strong=\"G2980\"\\+w*. \\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* declare \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G2983\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* declare \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w*; \\+w therefore|strong=\"G1223\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w takes|strong=\"G2983\"\\+w**+ 16:15 TR reads “will take” instead of “takes”* \\+w of|strong=\"G1537\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* declare \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "“\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3708\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3765\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*. \\+w Again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3708\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Some|strong=\"G3739\"* of|strong=\"G1537\"* his|strong=\"G3708\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* that|strong=\"G3754\"* he|strong=\"G2532\"* says|strong=\"G3004\"* to|strong=\"G4314\"* us|strong=\"G3004\"*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*;’* and|strong=\"G2532\"*, ‘\\+w Because|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*’*?”" + }, + { + "verseNum": 18, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* this|strong=\"G3778\"* that|strong=\"G3739\"* he|strong=\"G3739\"* says|strong=\"G3004\"*, ‘\\+w A|strong=\"G1510\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G2980\"\\+w*’*? We|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* he|strong=\"G3739\"* is|strong=\"G1510\"* saying|strong=\"G3004\"*.”" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G2532\"* Jesus|strong=\"G2424\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* they|strong=\"G2532\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* ask|strong=\"G2065\"* him|strong=\"G3708\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Do|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w inquire|strong=\"G2212\"\\+w* \\+w among|strong=\"G3326\"\\+w* yourselves \\+w concerning|strong=\"G4012\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*, ‘\\+w A|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* won’t \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w again|strong=\"G3825\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w while|strong=\"G3398\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*’? *" + }, + { + "verseNum": 20, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w weep|strong=\"G2799\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w lament|strong=\"G2354\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w sorrowful|strong=\"G3076\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w turned|strong=\"G1096\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w joy|strong=\"G5479\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w A|strong=\"G2192\"\\+w* \\+w woman|strong=\"G1135\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w gives|strong=\"G1223\"\\+w* \\+w birth|strong=\"G5088\"\\+w*, \\+w has|strong=\"G2192\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w her|strong=\"G1519\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w she|strong=\"G1161\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w delivered|strong=\"G5088\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w child|strong=\"G3813\"\\+w*, \\+w she|strong=\"G1161\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w remember|strong=\"G3421\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w anguish|strong=\"G2347\"\\+w* \\+w any|strong=\"G2192\"\\+w* \\+w more|strong=\"G3765\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w a|strong=\"G2192\"\\+w* human \\+w being|strong=\"G2192\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w born|strong=\"G1080\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w sorrow|strong=\"G3077\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w again|strong=\"G3825\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w heart|strong=\"G2588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rejoice|strong=\"G5463\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w take|strong=\"G1161\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w joy|strong=\"G5479\"\\+w* away \\+w from|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*.*" + }, + { + "verseNum": 23, + "text": "“\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w no|strong=\"G3756\"\\+w* questions. Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w whatever|strong=\"G5100\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w of|strong=\"G2250\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Until|strong=\"G2193\"\\+w* \\+w now|strong=\"G2532\"\\+w*, \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* asked \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*. Ask, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G2983\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "“\\+w I|strong=\"G3778\"\\+w* \\+w have|strong=\"G5210\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* figures \\+w of|strong=\"G4012\"\\+w* \\+w speech|strong=\"G3954\"\\+w*. \\+w But|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w when|strong=\"G3753\"\\+w* \\+w I|strong=\"G3778\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w to|strong=\"G2064\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w in|strong=\"G1722\"\\+w* figures \\+w of|strong=\"G4012\"\\+w* \\+w speech|strong=\"G3954\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w will|strong=\"G3778\"\\+w* \\+w tell|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w plainly|strong=\"G3954\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w In|strong=\"G1722\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w day|strong=\"G2250\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w*, *" + }, + { + "verseNum": 27, + "text": "\\+w for|strong=\"G1063\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* himself \\+w loves|strong=\"G5368\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w loved|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 28, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w came|strong=\"G2064\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w Again|strong=\"G3825\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w leave|strong=\"G1831\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*.”*" + }, + { + "verseNum": 29, + "text": "His|strong=\"G1722\"* disciples|strong=\"G3101\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, now|strong=\"G3568\"* you|strong=\"G1722\"* are|strong=\"G3588\"* speaking|strong=\"G2980\"* plainly|strong=\"G3954\"*, and|strong=\"G2532\"* using|strong=\"G3004\"* no|strong=\"G3762\"* figures of|strong=\"G2532\"* speech|strong=\"G3954\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G3568\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* know|strong=\"G1492\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* don’t need|strong=\"G5532\"* for|strong=\"G3754\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* question|strong=\"G2065\"* you|strong=\"G4771\"*. By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* you|strong=\"G4771\"* came|strong=\"G1831\"* from|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 31, + "text": "Jesus|strong=\"G2424\"* answered them|strong=\"G4100\"*, “\\+w Do|strong=\"G4100\"\\+w* \\+w you|strong=\"G2424\"\\+w* now \\+w believe|strong=\"G4100\"\\+w*? *" + }, + { + "verseNum": 32, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w*, yes, \\+w and|strong=\"G2532\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w now|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w scattered|strong=\"G4650\"\\+w*, \\+w everyone|strong=\"G1538\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w his|strong=\"G1519\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w place|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w will|strong=\"G1510\"\\+w* leave \\+w me|strong=\"G1473\"\\+w* \\+w alone|strong=\"G3441\"\\+w*. \\+w Yet|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w alone|strong=\"G3441\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 33, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w peace|strong=\"G1515\"\\+w*. \\+w In|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w trouble|strong=\"G2347\"\\+w*; \\+w but|strong=\"G3588\"\\+w* cheer \\+w up|strong=\"G1722\"\\+w*! \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w overcome|strong=\"G3528\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*.” *" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, then|strong=\"G2532\"* lifting|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* to|strong=\"G1519\"* heaven|strong=\"G3772\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w time|strong=\"G5610\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w come|strong=\"G2064\"\\+w*. \\+w Glorify|strong=\"G1392\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Son|strong=\"G5207\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w glorify|strong=\"G1392\"\\+w* \\+w you|strong=\"G4771\"\\+w*; *" + }, + { + "verseNum": 2, + "text": "\\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1849\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w flesh|strong=\"G4561\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w he|strong=\"G3739\"\\+w* \\+w will|strong=\"G3739\"\\+w* \\+w give|strong=\"G1325\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G3956\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w him|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* eternal \\+w life|strong=\"G2222\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w should|strong=\"G2316\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w only|strong=\"G3441\"\\+w* \\+w true|strong=\"G3588\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2316\"\\+w*, \\+w Jesus|strong=\"G2424\"\\+w* \\+w Christ|strong=\"G5547\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w accomplished|strong=\"G5048\"\\+w* \\+w the|strong=\"G1909\"\\+w* \\+w work|strong=\"G2041\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w do|strong=\"G4160\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w Now|strong=\"G3568\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w glorify|strong=\"G1392\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w own|strong=\"G4572\"\\+w* \\+w self|strong=\"G4572\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w had|strong=\"G2192\"\\+w* \\+w with|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w existed|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w revealed|strong=\"G5319\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G1510\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w your|strong=\"G4674\"\\+w* \\+w word|strong=\"G3056\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w Now|strong=\"G3568\"\\+w* \\+w they|strong=\"G3754\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w whatever|strong=\"G3745\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 8, + "text": "\\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w words|strong=\"G4487\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w them|strong=\"G3588\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w sure|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w came|strong=\"G1831\"\\+w* \\+w from|strong=\"G3844\"\\+w* \\+w you|strong=\"G4771\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1325\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w for|strong=\"G3754\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w All|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w yours|strong=\"G4674\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w yours|strong=\"G4674\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w mine|strong=\"G1699\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w glorified|strong=\"G1392\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w no|strong=\"G3765\"\\+w* \\+w more|strong=\"G3765\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w these|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*. Holy \\+w Father|strong=\"G3962\"\\+w*, \\+w keep|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w through|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w are|strong=\"G1510\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w While|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* world, \\+w I|strong=\"G1473\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*. \\+w None|strong=\"G3762\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* lost \\+w except|strong=\"G1487\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w son|strong=\"G5207\"\\+w* \\+w of|strong=\"G1537\"\\+w* destruction, \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Scripture|strong=\"G1124\"\\+w* \\+w might|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w fulfilled|strong=\"G4137\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w say|strong=\"G2980\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w joy|strong=\"G5479\"\\+w* \\+w made|strong=\"G4137\"\\+w* \\+w full|strong=\"G4137\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w themselves|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w hated|strong=\"G3404\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w because|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w I|strong=\"G2443\"\\+w* \\+w pray|strong=\"G2065\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w would|strong=\"G1438\"\\+w* \\+w take|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w but|strong=\"G3588\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G1438\"\\+w* \\+w would|strong=\"G1438\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w evil|strong=\"G4190\"\\+w* \\+w one|strong=\"G1438\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w They|strong=\"G3588\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "Sanctify \\+w them|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w your|strong=\"G4674\"\\+w* truth. \\+w Your|strong=\"G4674\"\\+w* \\+w word|strong=\"G3056\"\\+w* \\+w is|strong=\"G1510\"\\+w* truth.*+ 17:17 Psalms 119:142*" + }, + { + "verseNum": 18, + "text": "\\+w As|strong=\"G2531\"\\+w* \\+w you|strong=\"G1438\"\\+w* sent \\+w me|strong=\"G1473\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w so|strong=\"G1519\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* sent \\+w them|strong=\"G3588\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 19, + "text": "\\+w For|strong=\"G5228\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w sakes|strong=\"G5228\"\\+w* \\+w I|strong=\"G1473\"\\+w* sanctify \\+w myself|strong=\"G1683\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w themselves|strong=\"G1722\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* sanctified \\+w in|strong=\"G1722\"\\+w* truth. *" + }, + { + "verseNum": 20, + "text": "“\\+w Not|strong=\"G3756\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w only|strong=\"G3440\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w pray|strong=\"G2065\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w through|strong=\"G1223\"\\+w* \\+w their|strong=\"G2532\"\\+w* \\+w word|strong=\"G3056\"\\+w*, *" + }, + { + "verseNum": 21, + "text": "\\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*; \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w Father|strong=\"G3962\"\\+w*, \\+w are|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w us|strong=\"G2249\"\\+w*; \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w believe|strong=\"G4100\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w The|strong=\"G3588\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w we|strong=\"G2249\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w one|strong=\"G1520\"\\+w*, *" + }, + { + "verseNum": 23, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w perfected|strong=\"G5048\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w one|strong=\"G1520\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w and|strong=\"G2532\"\\+w* loved \\+w them|strong=\"G3588\"\\+w*, \\+w even|strong=\"G2532\"\\+w* \\+w as|strong=\"G2531\"\\+w* \\+w you|strong=\"G4771\"\\+w* loved \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w Father|strong=\"G3962\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w also|strong=\"G2548\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w they|strong=\"G3588\"\\+w* \\+w may|strong=\"G2443\"\\+w* \\+w see|strong=\"G2334\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w glory|strong=\"G1391\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2309\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w you|strong=\"G3739\"\\+w* loved \\+w me|strong=\"G1325\"\\+w* \\+w before|strong=\"G4253\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w foundation|strong=\"G2602\"\\+w* \\+w of|strong=\"G1391\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w world|strong=\"G2889\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Righteous|strong=\"G1342\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w world|strong=\"G2889\"\\+w* hasn’\\+w t|strong=\"G3588\"\\+w* \\+w known|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w you|strong=\"G4771\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w knew|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w sent|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w made|strong=\"G1107\"\\+w* \\+w known|strong=\"G1107\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w make|strong=\"G1107\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w known|strong=\"G1107\"\\+w*; \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G1722\"\\+w* love \\+w with|strong=\"G1722\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* loved \\+w me|strong=\"G1473\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w them|strong=\"G3588\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* spoken|strong=\"G3004\"* these|strong=\"G3778\"* words|strong=\"G2532\"*, he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G4862\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* over|strong=\"G4008\"* the|strong=\"G2532\"* brook|strong=\"G5493\"* Kidron|strong=\"G2748\"*, where|strong=\"G3699\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* garden|strong=\"G2779\"*, into|strong=\"G1519\"* which|strong=\"G3739\"* he|strong=\"G2532\"* and|strong=\"G2532\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* entered|strong=\"G1525\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* Judas|strong=\"G2455\"*, who|strong=\"G3588\"* betrayed|strong=\"G3860\"* him|strong=\"G3588\"*, also|strong=\"G2532\"* knew|strong=\"G1492\"* the|strong=\"G2532\"* place|strong=\"G5117\"*, for|strong=\"G3754\"* Jesus|strong=\"G2424\"* often|strong=\"G4178\"* met|strong=\"G4863\"* there|strong=\"G1563\"* with|strong=\"G3326\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 3, + "text": "Judas|strong=\"G2455\"* then|strong=\"G3767\"*, having|strong=\"G2532\"* taken|strong=\"G2983\"* a|strong=\"G2532\"* detachment of|strong=\"G1537\"* soldiers and|strong=\"G2532\"* officers|strong=\"G5257\"* from|strong=\"G1537\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"*, came|strong=\"G2064\"* there|strong=\"G1563\"* with|strong=\"G3326\"* lanterns|strong=\"G5322\"*, torches|strong=\"G2985\"*, and|strong=\"G2532\"* weapons|strong=\"G3696\"*." + }, + { + "verseNum": 4, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"*, knowing|strong=\"G1492\"* all|strong=\"G3956\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* happening to|strong=\"G2532\"* him|strong=\"G3588\"*, went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1909\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G5613\"* therefore|strong=\"G3767\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w*,”* they|strong=\"G2532\"* went|strong=\"G2532\"* backward|strong=\"G3694\"* and|strong=\"G2532\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G5476\"*." + }, + { + "verseNum": 7, + "text": "Again|strong=\"G3825\"* therefore|strong=\"G3767\"* he|strong=\"G1161\"* asked|strong=\"G1905\"* them|strong=\"G3588\"*, “\\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G1161\"\\+w*?”*" + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G3754\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w seek|strong=\"G2212\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w go|strong=\"G5217\"\\+w* \\+w their|strong=\"G2212\"\\+w* \\+w way|strong=\"G5217\"\\+w*,”*" + }, + { + "verseNum": 9, + "text": "that|strong=\"G3754\"* the|strong=\"G1537\"* word|strong=\"G3056\"* might|strong=\"G1473\"* be|strong=\"G3756\"* fulfilled|strong=\"G4137\"* which|strong=\"G3739\"* he|strong=\"G3739\"* spoke|strong=\"G3004\"*, “\\+w Of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* lost \\+w none|strong=\"G3762\"\\+w*.”*+ 18:9 John 6:39*" + }, + { + "verseNum": 10, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* therefore|strong=\"G3767\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* sword|strong=\"G3162\"*, drew|strong=\"G1670\"* it|strong=\"G2532\"*, struck|strong=\"G3817\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest’s|strong=\"G2192\"* servant|strong=\"G1401\"*, and|strong=\"G2532\"* cut|strong=\"G2532\"* off his|strong=\"G1438\"* right|strong=\"G1188\"* ear|strong=\"G5621\"*. The|strong=\"G2532\"* servant|strong=\"G1401\"*’s|strong=\"G2192\"* name|strong=\"G3686\"* was|strong=\"G1510\"* Malchus|strong=\"G3124\"*." + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, “\\+w Put|strong=\"G1325\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w sword|strong=\"G3162\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w its|strong=\"G1325\"\\+w* \\+w sheath|strong=\"G2336\"\\+w*. \\+w The|strong=\"G1519\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w shall|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w surely|strong=\"G3361\"\\+w* \\+w drink|strong=\"G4095\"\\+w* \\+w it|strong=\"G3739\"\\+w*?”*" + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* detachment, the|strong=\"G2532\"* commanding officer|strong=\"G5257\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* officers|strong=\"G5257\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* seized|strong=\"G4815\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* led him|strong=\"G3588\"* to|strong=\"G4314\"* Annas first|strong=\"G4413\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G1510\"* father-in-law|strong=\"G3995\"* to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* high|strong=\"G2532\"* priest that|strong=\"G3739\"* year|strong=\"G1763\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* it|strong=\"G3754\"* was|strong=\"G1510\"* Caiaphas|strong=\"G2533\"* who|strong=\"G3588\"* advised|strong=\"G4823\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* expedient|strong=\"G4851\"* that|strong=\"G3754\"* one|strong=\"G1520\"* man|strong=\"G1520\"* should|strong=\"G3588\"* perish for|strong=\"G3754\"* the|strong=\"G1161\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 15, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* followed Jesus|strong=\"G2424\"*, as|strong=\"G1519\"* did|strong=\"G2532\"* another|strong=\"G3588\"* disciple|strong=\"G3101\"*. Now|strong=\"G1161\"* that|strong=\"G3588\"* disciple|strong=\"G3101\"* was|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, and|strong=\"G2532\"* entered|strong=\"G4897\"* in|strong=\"G1519\"* with|strong=\"G2532\"* Jesus|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* court of|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest;" + }, + { + "verseNum": 16, + "text": "but|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* at|strong=\"G4314\"* the|strong=\"G2532\"* door|strong=\"G2374\"* outside|strong=\"G1854\"*. So|strong=\"G3767\"* the|strong=\"G2532\"* other|strong=\"G1161\"* disciple|strong=\"G3101\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* known|strong=\"G1110\"* to|strong=\"G4314\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* spoke|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G3588\"* who|strong=\"G3588\"* kept|strong=\"G2532\"* the|strong=\"G2532\"* door|strong=\"G2374\"*, and|strong=\"G2532\"* brought|strong=\"G1521\"* in|strong=\"G2532\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G3767\"* the|strong=\"G2532\"* maid|strong=\"G3814\"* who|strong=\"G3588\"* kept|strong=\"G2532\"* the|strong=\"G2532\"* door|strong=\"G2377\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Peter|strong=\"G4074\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s disciples|strong=\"G3101\"*?”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* servants|strong=\"G1401\"* and|strong=\"G2532\"* the|strong=\"G2532\"* officers|strong=\"G5257\"* were|strong=\"G1510\"* standing|strong=\"G2476\"* there|strong=\"G2532\"*, having|strong=\"G2532\"* made|strong=\"G4160\"* a|strong=\"G2532\"* fire of|strong=\"G2532\"* coals, for|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* cold|strong=\"G5592\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* warming|strong=\"G2328\"* themselves|strong=\"G3326\"*. Peter|strong=\"G4074\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, standing|strong=\"G2476\"* and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest therefore|strong=\"G3767\"* asked|strong=\"G2065\"* Jesus|strong=\"G2424\"* about|strong=\"G4012\"* his|strong=\"G4012\"* disciples|strong=\"G3101\"* and|strong=\"G2532\"* about|strong=\"G4012\"* his|strong=\"G4012\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 20, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w spoke|strong=\"G2980\"\\+w* \\+w openly|strong=\"G3954\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w taught|strong=\"G1321\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w synagogues|strong=\"G4864\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G2413\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Jews|strong=\"G2453\"\\+w* \\+w always|strong=\"G3842\"\\+w* \\+w meet|strong=\"G3588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G2980\"\\+w* \\+w nothing|strong=\"G3762\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w secret|strong=\"G2927\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w Why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w ask|strong=\"G2065\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w Ask|strong=\"G2065\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w have|strong=\"G1473\"\\+w* heard \\+w me|strong=\"G1473\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*. \\+w Behold|strong=\"G1492\"\\+w*, \\+w they|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w said|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* officers|strong=\"G5257\"* standing|strong=\"G3936\"* by|strong=\"G3936\"* slapped Jesus|strong=\"G2424\"* with|strong=\"G3588\"* his|strong=\"G1325\"* hand|strong=\"G1161\"*, saying|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G1325\"* answer the|strong=\"G1161\"* high priest like|strong=\"G3779\"* that|strong=\"G3588\"*?”" + }, + { + "verseNum": 23, + "text": "Jesus|strong=\"G2424\"* answered him|strong=\"G3588\"*, “\\+w If|strong=\"G1487\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G1473\"\\+w* \\+w spoken|strong=\"G2980\"\\+w* \\+w evil|strong=\"G2556\"\\+w*, \\+w testify|strong=\"G3140\"\\+w* \\+w of|strong=\"G4012\"\\+w* \\+w the|strong=\"G1161\"\\+w* \\+w evil|strong=\"G2556\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w if|strong=\"G1487\"\\+w* \\+w well|strong=\"G2573\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G1487\"\\+w* \\+w beat|strong=\"G1194\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 24, + "text": "Annas sent him|strong=\"G3588\"* bound|strong=\"G1210\"* to|strong=\"G4314\"* Caiaphas|strong=\"G2533\"*, the|strong=\"G4314\"* high priest." + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* standing|strong=\"G2476\"* and|strong=\"G2532\"* warming|strong=\"G2328\"* himself|strong=\"G2328\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G4771\"* aren’t|strong=\"G3588\"* also|strong=\"G2532\"* one|strong=\"G3588\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"*, are|strong=\"G1510\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 26, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1722\"* servants|strong=\"G1401\"* of|strong=\"G1537\"* the|strong=\"G1722\"* high priest, being|strong=\"G1510\"* a|strong=\"G1722\"* relative|strong=\"G4773\"* of|strong=\"G1537\"* him|strong=\"G3588\"* whose|strong=\"G3739\"* ear|strong=\"G5621\"* Peter|strong=\"G4074\"* had|strong=\"G1510\"* cut|strong=\"G4074\"* off|strong=\"G1537\"*, said|strong=\"G3004\"*, “Didn’t|strong=\"G3588\"* I|strong=\"G1473\"* see|strong=\"G3708\"* you|strong=\"G4771\"* in|strong=\"G1722\"* the|strong=\"G1722\"* garden|strong=\"G2779\"* with|strong=\"G3326\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 27, + "text": "Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* denied it|strong=\"G2532\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* rooster crowed|strong=\"G5455\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* led|strong=\"G3767\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* from|strong=\"G2532\"* Caiaphas|strong=\"G2533\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* early|strong=\"G4404\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* themselves|strong=\"G1519\"* didn’t|strong=\"G3588\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G1510\"* defiled|strong=\"G3392\"*, but|strong=\"G1161\"* might|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 29, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G5346\"*, “What|strong=\"G5101\"* accusation|strong=\"G2724\"* do|strong=\"G5101\"* you|strong=\"G1438\"* bring|strong=\"G5342\"* against|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"*?”" + }, + { + "verseNum": 30, + "text": "They|strong=\"G2532\"* answered|strong=\"G3004\"* him|strong=\"G4160\"*, “If|strong=\"G1487\"* this|strong=\"G3778\"* man|strong=\"G3778\"* weren’t an|strong=\"G2532\"* evildoer|strong=\"G2556\"*, we|strong=\"G2532\"* wouldn’t have|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G4160\"* up|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 31, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Take|strong=\"G2983\"* him|strong=\"G3588\"* yourselves|strong=\"G4771\"*, and|strong=\"G2532\"* judge|strong=\"G2919\"* him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2532\"* law|strong=\"G3551\"*.”" + }, + { + "verseNum": 32, + "text": "that|strong=\"G2443\"* the|strong=\"G3588\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* might be|strong=\"G3195\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* he|strong=\"G3739\"* spoke|strong=\"G3004\"*, signifying|strong=\"G4591\"* by|strong=\"G3004\"* what|strong=\"G3739\"* kind|strong=\"G4169\"* of|strong=\"G3056\"* death|strong=\"G2288\"* he|strong=\"G3739\"* should|strong=\"G3195\"* die|strong=\"G2288\"*." + }, + { + "verseNum": 33, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* entered|strong=\"G1525\"* again|strong=\"G3825\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"*, called|strong=\"G3004\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 34, + "text": "Jesus|strong=\"G2424\"* answered|strong=\"G3004\"* him|strong=\"G1438\"*, “\\+w Do|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w by|strong=\"G3004\"\\+w* \\+w yourself|strong=\"G4572\"\\+w*, \\+w or|strong=\"G2228\"\\+w* \\+w did|strong=\"G2228\"\\+w* others \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 35, + "text": "Pilate|strong=\"G4091\"* answered, “I|strong=\"G1473\"*’m not|strong=\"G1510\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, am|strong=\"G1510\"* I|strong=\"G1473\"*? Your|strong=\"G4674\"* own|strong=\"G4674\"* nation|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests delivered|strong=\"G3860\"* you|strong=\"G4771\"* to|strong=\"G2532\"* me|strong=\"G1473\"*. What|strong=\"G5101\"* have|strong=\"G2532\"* you|strong=\"G4771\"* done|strong=\"G4160\"*?”" + }, + { + "verseNum": 36, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w My|strong=\"G1699\"\\+w* Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*. \\+w If|strong=\"G1487\"\\+w* \\+w my|strong=\"G1699\"\\+w* Kingdom \\+w were|strong=\"G1510\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w world|strong=\"G2889\"\\+w*, \\+w then|strong=\"G1161\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w servants|strong=\"G5257\"\\+w* \\+w would|strong=\"G1510\"\\+w* fight, \\+w that|strong=\"G2443\"\\+w* \\+w I|strong=\"G1473\"\\+w* wouldn’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w now|strong=\"G1161\"\\+w* \\+w my|strong=\"G1699\"\\+w* Kingdom \\+w is|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w here|strong=\"G1782\"\\+w*.”*" + }, + { + "verseNum": 37, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “Are|strong=\"G1510\"* you|strong=\"G4771\"* a|strong=\"G2532\"* king|strong=\"G3588\"* then|strong=\"G3767\"*?”" + }, + { + "verseNum": 38, + "text": "Pilate|strong=\"G4091\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* truth?”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G1510\"* a|strong=\"G1722\"* custom|strong=\"G4914\"* that|strong=\"G2443\"* I|strong=\"G1161\"* should|strong=\"G3588\"* release someone|strong=\"G1520\"* to|strong=\"G2443\"* you|strong=\"G5210\"* at|strong=\"G1722\"* the|strong=\"G1722\"* Passover|strong=\"G3957\"*. Therefore|strong=\"G3767\"*, do|strong=\"G1510\"* you|strong=\"G5210\"* want|strong=\"G1014\"* me to|strong=\"G2443\"* release to|strong=\"G2443\"* you|strong=\"G5210\"* the|strong=\"G1722\"* King|strong=\"G3588\"* of|strong=\"G1520\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*?”" + }, + { + "verseNum": 40, + "text": "Then|strong=\"G3767\"* they|strong=\"G1161\"* all|strong=\"G3361\"* shouted again|strong=\"G3825\"*, saying|strong=\"G3004\"*, “Not|strong=\"G3361\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, but|strong=\"G1161\"* Barabbas!” Now|strong=\"G1161\"* Barabbas was|strong=\"G1510\"* a|strong=\"G1510\"* robber|strong=\"G3027\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"G3767\"* Pilate|strong=\"G4091\"* then|strong=\"G3767\"* took|strong=\"G2983\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* flogged him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* soldiers|strong=\"G4757\"* twisted|strong=\"G4120\"* thorns into a|strong=\"G2532\"* crown|strong=\"G4735\"* and|strong=\"G2532\"* put|strong=\"G2007\"* it|strong=\"G2532\"* on|strong=\"G1537\"* his|strong=\"G2007\"* head|strong=\"G2776\"*, and|strong=\"G2532\"* dressed|strong=\"G4016\"* him|strong=\"G3588\"* in|strong=\"G2532\"* a|strong=\"G2532\"* purple|strong=\"G4210\"* garment|strong=\"G2440\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* kept|strong=\"G2532\"* saying|strong=\"G3004\"*, “Hail|strong=\"G5463\"*, King|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*!” and|strong=\"G2532\"* they|strong=\"G2532\"* kept|strong=\"G2532\"* slapping him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G2532\"* Pilate|strong=\"G4091\"* went|strong=\"G1831\"* out|strong=\"G1831\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, “Behold|strong=\"G2396\"*, I|strong=\"G2532\"* bring|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G1831\"* to|strong=\"G2443\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2532\"* know|strong=\"G1097\"* that|strong=\"G3754\"* I|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3756\"* basis for|strong=\"G3754\"* a|strong=\"G2532\"* charge against|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, wearing|strong=\"G5409\"* the|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* thorns and|strong=\"G2532\"* the|strong=\"G2532\"* purple|strong=\"G4210\"* garment|strong=\"G2440\"*. Pilate|strong=\"G3004\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, the|strong=\"G2532\"* man!”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G1722\"* officers|strong=\"G5257\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* shouted, saying|strong=\"G3004\"*, “Crucify|strong=\"G4717\"*! Crucify|strong=\"G4717\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* answered him|strong=\"G3588\"*, “We|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* by|strong=\"G2596\"* our|strong=\"G2316\"* law|strong=\"G3551\"* he|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* die, because|strong=\"G3754\"* he|strong=\"G2532\"* made|strong=\"G4160\"* himself|strong=\"G1438\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"G3753\"* therefore|strong=\"G3767\"* Pilate|strong=\"G4091\"* heard this|strong=\"G3778\"* saying|strong=\"G3056\"*, he|strong=\"G3778\"* was|strong=\"G3588\"* more|strong=\"G3123\"* afraid|strong=\"G5399\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Praetorium|strong=\"G4232\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Jesus|strong=\"G2424\"*, “Where|strong=\"G4159\"* are|strong=\"G1510\"* you|strong=\"G4771\"* from|strong=\"G2532\"*?” But|strong=\"G1161\"* Jesus|strong=\"G2424\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* no|strong=\"G3756\"* answer." + }, + { + "verseNum": 10, + "text": "Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Aren’t|strong=\"G3588\"* you|strong=\"G4771\"* speaking|strong=\"G2980\"* to|strong=\"G2532\"* me|strong=\"G1473\"*? Don’t|strong=\"G3588\"* you|strong=\"G4771\"* know|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* release you|strong=\"G4771\"* and|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* crucify|strong=\"G4717\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 11, + "text": "Jesus|strong=\"G2424\"* answered, “\\+w You|strong=\"G4771\"\\+w* \\+w would|strong=\"G1510\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w at|strong=\"G2596\"\\+w* \\+w all|strong=\"G2596\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w me|strong=\"G1325\"\\+w*, \\+w unless|strong=\"G1487\"\\+w* \\+w it|strong=\"G1487\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w given|strong=\"G1325\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G2596\"\\+w* above. \\+w Therefore|strong=\"G1223\"\\+w* \\+w he|strong=\"G3778\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w delivered|strong=\"G3860\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w to|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w greater|strong=\"G3173\"\\+w* sin.”*" + }, + { + "verseNum": 12, + "text": "At|strong=\"G1537\"* this|strong=\"G3778\"*, Pilate|strong=\"G4091\"* was|strong=\"G1510\"* seeking|strong=\"G2212\"* to|strong=\"G3004\"* release him|strong=\"G3588\"*, but|strong=\"G1161\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* cried|strong=\"G2905\"* out|strong=\"G1537\"*, saying|strong=\"G3004\"*, “If|strong=\"G1437\"* you|strong=\"G1437\"* release this|strong=\"G3778\"* man|strong=\"G3778\"*, you|strong=\"G1437\"* aren’t|strong=\"G3588\"* Caesar|strong=\"G2541\"*’s friend|strong=\"G5384\"*! Everyone|strong=\"G3956\"* who|strong=\"G3588\"* makes|strong=\"G4160\"* himself|strong=\"G1438\"* a|strong=\"G1510\"* king|strong=\"G3588\"* speaks|strong=\"G3004\"* against|strong=\"G1537\"* Caesar|strong=\"G2541\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* Pilate|strong=\"G4091\"* therefore|strong=\"G3767\"* heard these|strong=\"G3778\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* brought|strong=\"G1161\"* Jesus|strong=\"G2424\"* out|strong=\"G1854\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat|strong=\"G2523\"* at|strong=\"G1909\"* a|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Pavement|strong=\"G3038\"*”, but|strong=\"G1161\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Gabbatha|strong=\"G1042\"*.”" + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Preparation|strong=\"G3904\"* Day|strong=\"G3904\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*, at|strong=\"G1161\"* about|strong=\"G5613\"* the|strong=\"G2532\"* sixth|strong=\"G1623\"* hour|strong=\"G5610\"*.+ 19:14 “the sixth hour” would have been 6:00 a.m. according to the Roman timekeeping system, or noon for the Jewish timekeeping system in use, then. * He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, “Behold|strong=\"G2396\"*, your|strong=\"G2532\"* King|strong=\"G3588\"*!”" + }, + { + "verseNum": 15, + "text": "They|strong=\"G3588\"* cried|strong=\"G2905\"* out|strong=\"G2905\"*, “Away with|strong=\"G2192\"* him|strong=\"G3588\"*! Away with|strong=\"G2192\"* him|strong=\"G3588\"*! Crucify|strong=\"G4717\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2443\"* then|strong=\"G3767\"* he|strong=\"G3588\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G2443\"* them|strong=\"G3588\"* to|strong=\"G2443\"* be|strong=\"G2443\"* crucified|strong=\"G4717\"*. So|strong=\"G2443\"* they|strong=\"G3588\"* took|strong=\"G3880\"* Jesus|strong=\"G2424\"* and|strong=\"G2424\"* led|strong=\"G3767\"* him|strong=\"G3588\"* away." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, bearing his|strong=\"G1438\"* cross|strong=\"G4716\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Place|strong=\"G5117\"* of|strong=\"G2532\"* a|strong=\"G2532\"* Skull|strong=\"G2898\"*”, which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Golgotha|strong=\"G1115\"*”," + }, + { + "verseNum": 18, + "text": "where|strong=\"G3699\"* they|strong=\"G2532\"* crucified|strong=\"G4717\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* two|strong=\"G1417\"* others|strong=\"G3588\"*, on|strong=\"G1161\"* either|strong=\"G1782\"* side|strong=\"G1782\"* one|strong=\"G3588\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* in|strong=\"G2532\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*." + }, + { + "verseNum": 19, + "text": "Pilate|strong=\"G4091\"* wrote|strong=\"G1125\"* a|strong=\"G2532\"* title|strong=\"G5102\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* put|strong=\"G5087\"* it|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"*, “JESUS|strong=\"G2424\"* OF|strong=\"G2532\"* NAZARETH|strong=\"G3480\"*, THE|strong=\"G2532\"* KING|strong=\"G3588\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* JEWS|strong=\"G2453\"*.”" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"G3767\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* read|strong=\"G1125\"* this|strong=\"G3778\"* title|strong=\"G5102\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G3699\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* crucified|strong=\"G4717\"* was|strong=\"G1510\"* near|strong=\"G1451\"* the|strong=\"G2532\"* city|strong=\"G4172\"*; and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G2532\"* Hebrew|strong=\"G1447\"*, in|strong=\"G2532\"* Latin|strong=\"G4515\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* Greek|strong=\"G1676\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G3588\"* chief priests of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Pilate|strong=\"G4091\"*, “Don’t|strong=\"G3588\"* write|strong=\"G1125\"*, ‘The|strong=\"G3588\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*,’ but|strong=\"G3361\"*, ‘he|strong=\"G3754\"* said|strong=\"G3004\"*, “I|strong=\"G3754\"* am|strong=\"G1510\"* King|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G3588\"* Jews|strong=\"G2453\"*.”’”" + }, + { + "verseNum": 22, + "text": "Pilate|strong=\"G4091\"* answered, “What|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G3588\"* written|strong=\"G1125\"*, I|strong=\"G3739\"* have|strong=\"G3588\"* written|strong=\"G1125\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"G3767\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*, when|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2424\"* crucified|strong=\"G4717\"* Jesus|strong=\"G2424\"*, took|strong=\"G2983\"* his|strong=\"G1223\"* garments|strong=\"G2440\"* and|strong=\"G2532\"* made|strong=\"G4160\"* four|strong=\"G5064\"* parts|strong=\"G3313\"*, to|strong=\"G2532\"* every|strong=\"G1538\"* soldier|strong=\"G4757\"* a|strong=\"G2532\"* part|strong=\"G3313\"*; and|strong=\"G2532\"* also|strong=\"G2532\"* the|strong=\"G2532\"* tunic|strong=\"G5509\"*. Now|strong=\"G1161\"* the|strong=\"G2532\"* tunic|strong=\"G5509\"* was|strong=\"G1510\"* without|strong=\"G2532\"* seam, woven|strong=\"G5307\"* from|strong=\"G1537\"* the|strong=\"G2532\"* top throughout|strong=\"G3650\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"G3767\"* they|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G1438\"* another|strong=\"G1438\"*, “Let|strong=\"G1510\"*’s not|strong=\"G3361\"* tear|strong=\"G4977\"* it|strong=\"G2532\"*, but|strong=\"G2532\"* cast|strong=\"G2532\"* lots|strong=\"G2819\"* for|strong=\"G4012\"* it|strong=\"G2532\"* to|strong=\"G4314\"* decide whose|strong=\"G5101\"* it|strong=\"G2532\"* will|strong=\"G5101\"* be|strong=\"G1510\"*,” that|strong=\"G2443\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* might|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3588\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* standing|strong=\"G2476\"* by|strong=\"G3844\"* Jesus|strong=\"G2424\"*’ cross|strong=\"G4716\"* were|strong=\"G3588\"* his|strong=\"G2532\"* mother|strong=\"G3384\"*, his|strong=\"G2532\"* mother|strong=\"G3384\"*’s sister, Mary|strong=\"G3137\"* the|strong=\"G2532\"* wife of|strong=\"G2532\"* Clopas|strong=\"G2832\"*, and|strong=\"G2532\"* Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G3767\"* when|strong=\"G2532\"* Jesus|strong=\"G2424\"* saw|strong=\"G3708\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* loved standing|strong=\"G3936\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* his|strong=\"G3708\"* mother|strong=\"G3384\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w behold|strong=\"G2396\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w son|strong=\"G5207\"\\+w*!” *" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"*, “\\+w Behold|strong=\"G2396\"\\+w*, \\+w your|strong=\"G2532\"\\+w* \\+w mother|strong=\"G3384\"\\+w*!”* From|strong=\"G2532\"* that|strong=\"G3588\"* hour|strong=\"G5610\"*, the|strong=\"G2532\"* disciple|strong=\"G3101\"* took|strong=\"G2983\"* her|strong=\"G1438\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G2398\"* home|strong=\"G1519\"*." + }, + { + "verseNum": 28, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, Jesus|strong=\"G2424\"*, seeing|strong=\"G3708\"*+ 19:28 NU, TR read “knowing” instead of “seeing” * that|strong=\"G3754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G3588\"* now|strong=\"G2235\"* finished|strong=\"G5055\"*, that|strong=\"G3754\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* might|strong=\"G3778\"* be|strong=\"G3956\"* fulfilled|strong=\"G5055\"*, said|strong=\"G3004\"*, “\\+w I|strong=\"G3754\"\\+w* \\+w am|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w*!”*" + }, + { + "verseNum": 29, + "text": "Now|strong=\"G3767\"* a|strong=\"G4060\"* vessel|strong=\"G4632\"* full|strong=\"G3324\"* of|strong=\"G4750\"* vinegar|strong=\"G3690\"* was|strong=\"G3588\"* set|strong=\"G2749\"* there|strong=\"G3767\"*; so|strong=\"G3767\"* they|strong=\"G3588\"* put|strong=\"G4060\"* a|strong=\"G4060\"* sponge|strong=\"G4699\"* full|strong=\"G3324\"* of|strong=\"G4750\"* the|strong=\"G3588\"* vinegar|strong=\"G3690\"* on|strong=\"G3588\"* hyssop|strong=\"G5301\"*, and|strong=\"G3767\"* held it|strong=\"G3588\"* at|strong=\"G3588\"* his|strong=\"G3588\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G3753\"* Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* had|strong=\"G2424\"* received|strong=\"G2983\"* the|strong=\"G2532\"* vinegar|strong=\"G3690\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w It|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w finished|strong=\"G5055\"\\+w*!”* Then|strong=\"G3767\"* he|strong=\"G2532\"* bowed|strong=\"G2827\"* his|strong=\"G2983\"* head|strong=\"G2776\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* up|strong=\"G3860\"* his|strong=\"G2983\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, because|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* the|strong=\"G1722\"* Preparation|strong=\"G3904\"* Day|strong=\"G2250\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1722\"* bodies|strong=\"G4983\"* wouldn’t|strong=\"G3588\"* remain|strong=\"G3306\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* on|strong=\"G1909\"* the|strong=\"G1722\"* Sabbath|strong=\"G4521\"* (for|strong=\"G1063\"* that|strong=\"G2443\"* Sabbath|strong=\"G4521\"* was|strong=\"G1510\"* a|strong=\"G2532\"* special one|strong=\"G3588\"*), asked|strong=\"G2065\"* of|strong=\"G2250\"* Pilate|strong=\"G4091\"* that|strong=\"G2443\"* their|strong=\"G2532\"* legs|strong=\"G4628\"* might|strong=\"G2532\"* be|strong=\"G1510\"* broken|strong=\"G2608\"* and|strong=\"G2532\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* taken away." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"G3767\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* came|strong=\"G2064\"* and|strong=\"G2532\"* broke|strong=\"G2608\"* the|strong=\"G2532\"* legs|strong=\"G4628\"* of|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G2532\"* him|strong=\"G3588\"*;" + }, + { + "verseNum": 33, + "text": "but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1909\"* Jesus|strong=\"G2424\"* and|strong=\"G1161\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G1161\"* was|strong=\"G3588\"* already|strong=\"G2235\"* dead|strong=\"G2348\"*, they|strong=\"G1161\"* didn’t|strong=\"G3588\"* break|strong=\"G2608\"* his|strong=\"G1909\"* legs|strong=\"G4628\"*." + }, + { + "verseNum": 34, + "text": "However, one|strong=\"G1520\"* of|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* pierced|strong=\"G3572\"* his|strong=\"G2532\"* side|strong=\"G4125\"* with|strong=\"G2532\"* a|strong=\"G2532\"* spear|strong=\"G3057\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* blood and|strong=\"G2532\"* water|strong=\"G5204\"* came|strong=\"G1831\"* out|strong=\"G1831\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G3708\"* seen|strong=\"G3708\"* has|strong=\"G3708\"* testified|strong=\"G3140\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*. He|strong=\"G2532\"* knows|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* tells the|strong=\"G2532\"* truth, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2532\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* these|strong=\"G3778\"* things|strong=\"G3778\"* happened|strong=\"G1096\"* that|strong=\"G2443\"* the|strong=\"G3588\"* Scripture|strong=\"G1124\"* might|strong=\"G3778\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"*, “A|strong=\"G1096\"* bone|strong=\"G3747\"* of|strong=\"G3588\"* him|strong=\"G3588\"* will|strong=\"G3778\"* not|strong=\"G3756\"* be|strong=\"G1096\"* broken|strong=\"G4937\"*.”+ 19:36 Exodus 12:46; Numbers 9:12; Psalms 34:20 *" + }, + { + "verseNum": 37, + "text": "Again|strong=\"G3825\"* another|strong=\"G2087\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “They|strong=\"G2532\"* will|strong=\"G2532\"* look|strong=\"G3708\"* on|strong=\"G1519\"* him|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* pierced|strong=\"G1574\"*.”+ 19:37 Zechariah 12:10*" + }, + { + "verseNum": 38, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Joseph|strong=\"G2501\"* of|strong=\"G1223\"* Arimathaea, being|strong=\"G1510\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"*, but|strong=\"G1161\"* secretly|strong=\"G2928\"* for|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, asked|strong=\"G2065\"* of|strong=\"G1223\"* Pilate|strong=\"G4091\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* take|strong=\"G1161\"* away|strong=\"G3326\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*. Pilate|strong=\"G4091\"* gave|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* therefore|strong=\"G3767\"* and|strong=\"G2532\"* took|strong=\"G2532\"* away|strong=\"G3326\"* his|strong=\"G1223\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 39, + "text": "Nicodemus|strong=\"G3530\"*, who|strong=\"G3588\"* at|strong=\"G4314\"* first|strong=\"G4413\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Jesus|strong=\"G2532\"* by|strong=\"G4314\"* night|strong=\"G3571\"*, also|strong=\"G2532\"* came|strong=\"G2064\"* bringing|strong=\"G5342\"* a|strong=\"G5613\"* mixture|strong=\"G3395\"* of|strong=\"G2532\"* myrrh|strong=\"G4666\"* and|strong=\"G2532\"* aloes, about|strong=\"G5613\"* a|strong=\"G5613\"* hundred|strong=\"G1540\"* Roman pounds|strong=\"G3046\"*.+ 19:39 100 Roman pounds of 12 ounces each, or about 72 pounds, or 33 Kilograms.*" + }, + { + "verseNum": 40, + "text": "So|strong=\"G3767\"* they|strong=\"G2532\"* took|strong=\"G2983\"* Jesus|strong=\"G2424\"*’ body|strong=\"G4983\"*, and|strong=\"G2532\"* bound|strong=\"G1210\"* it|strong=\"G2532\"* in|strong=\"G2532\"* linen|strong=\"G3608\"* cloths with|strong=\"G3326\"* the|strong=\"G2532\"* spices, as|strong=\"G2531\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* is|strong=\"G1510\"* to|strong=\"G2532\"* bury|strong=\"G1779\"*." + }, + { + "verseNum": 41, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3699\"* he|strong=\"G2532\"* was|strong=\"G1510\"* crucified|strong=\"G4717\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* garden|strong=\"G2779\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* garden|strong=\"G2779\"* was|strong=\"G1510\"* a|strong=\"G2532\"* new|strong=\"G2537\"* tomb|strong=\"G3419\"* in|strong=\"G1722\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* had|strong=\"G2532\"* ever|strong=\"G3762\"* yet|strong=\"G2532\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*." + }, + { + "verseNum": 42, + "text": "Then|strong=\"G3767\"*, because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*’ Preparation|strong=\"G3904\"* Day|strong=\"G3904\"* (for|strong=\"G3754\"* the|strong=\"G1223\"* tomb|strong=\"G3419\"* was|strong=\"G1510\"* near|strong=\"G1451\"* at|strong=\"G1223\"* hand|strong=\"G1451\"*), they|strong=\"G3588\"* laid|strong=\"G5087\"* Jesus|strong=\"G2424\"* there|strong=\"G1563\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G1537\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* went|strong=\"G2064\"* early|strong=\"G4404\"*, while|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* still|strong=\"G2089\"* dark|strong=\"G4653\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* saw that|strong=\"G3588\"* the|strong=\"G2532\"* stone|strong=\"G3037\"* had|strong=\"G2532\"* been|strong=\"G1510\"* taken|strong=\"G3037\"* away from|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G3767\"* she|strong=\"G2532\"* ran|strong=\"G5143\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* other|strong=\"G3739\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved|strong=\"G5368\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2532\"* taken away|strong=\"G5087\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*, and|strong=\"G2532\"* we|strong=\"G3739\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* they|strong=\"G2532\"* have|strong=\"G2532\"* laid|strong=\"G5087\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G3588\"* disciple|strong=\"G3101\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* went|strong=\"G1831\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* both|strong=\"G2532\"* ran|strong=\"G5143\"* together|strong=\"G3674\"*. The|strong=\"G2532\"* other|strong=\"G1161\"* disciple|strong=\"G3101\"* outran Peter|strong=\"G4074\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* first|strong=\"G4413\"*." + }, + { + "verseNum": 5, + "text": "Stooping|strong=\"G3879\"* and|strong=\"G2532\"* looking|strong=\"G3879\"* in|strong=\"G1525\"*, he|strong=\"G2532\"* saw the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths lying|strong=\"G2749\"* there|strong=\"G2532\"*; yet|strong=\"G2532\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* enter|strong=\"G1525\"* in|strong=\"G1525\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G3767\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* came|strong=\"G2064\"*, following him|strong=\"G3588\"*, and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"*. He|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths lying|strong=\"G2749\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* cloth|strong=\"G4676\"* that|strong=\"G3739\"* had|strong=\"G2532\"* been|strong=\"G1510\"* on|strong=\"G1909\"* his|strong=\"G1519\"* head|strong=\"G2776\"*, not|strong=\"G3756\"* lying|strong=\"G2749\"* with|strong=\"G3326\"* the|strong=\"G2532\"* linen|strong=\"G3608\"* cloths, but|strong=\"G2532\"* rolled|strong=\"G1794\"* up|strong=\"G1519\"* in|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* by|strong=\"G1909\"* itself|strong=\"G5565\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* the|strong=\"G2532\"* other|strong=\"G3588\"* disciple|strong=\"G3101\"* who|strong=\"G3588\"* came|strong=\"G2064\"* first|strong=\"G4413\"* to|strong=\"G1519\"* the|strong=\"G2532\"* tomb|strong=\"G3419\"* also|strong=\"G2532\"* entered|strong=\"G1525\"* in|strong=\"G1519\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* and|strong=\"G2532\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* as|strong=\"G1063\"* yet|strong=\"G3764\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G1537\"* Scripture|strong=\"G1124\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* must|strong=\"G1163\"* rise|strong=\"G1163\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* the|strong=\"G4314\"* disciples|strong=\"G3101\"* went|strong=\"G3101\"* away again|strong=\"G3825\"* to|strong=\"G4314\"* their|strong=\"G1438\"* own|strong=\"G1438\"* homes." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* Mary|strong=\"G3137\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* outside|strong=\"G1854\"* at|strong=\"G1519\"* the|strong=\"G1519\"* tomb|strong=\"G3419\"* weeping|strong=\"G2799\"*. So|strong=\"G3767\"* as|strong=\"G5613\"* she|strong=\"G1161\"* wept|strong=\"G2799\"*, she|strong=\"G1161\"* stooped|strong=\"G3879\"* and|strong=\"G1161\"* looked|strong=\"G3879\"* into|strong=\"G1519\"* the|strong=\"G1519\"* tomb|strong=\"G3419\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"G2532\"* she|strong=\"G2532\"* saw|strong=\"G2334\"* two|strong=\"G1417\"* angels in|strong=\"G1722\"* white|strong=\"G3022\"* sitting|strong=\"G2516\"*, one|strong=\"G1520\"* at|strong=\"G1722\"* the|strong=\"G1722\"* head|strong=\"G2776\"* and|strong=\"G2532\"* one|strong=\"G1520\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feet|strong=\"G4228\"*, where|strong=\"G3699\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* had|strong=\"G2424\"* lain|strong=\"G2749\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"G2532\"* asked|strong=\"G3004\"* her|strong=\"G3754\"*, “Woman|strong=\"G1135\"*, why|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3754\"* weeping|strong=\"G2799\"*?”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G2532\"* she|strong=\"G2532\"* had|strong=\"G2424\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, she|strong=\"G2532\"* turned|strong=\"G4762\"* around|strong=\"G3694\"* and|strong=\"G2532\"* saw|strong=\"G1492\"* Jesus|strong=\"G2424\"* standing|strong=\"G2476\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3754\"*, “\\+w Woman|strong=\"G1135\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w weeping|strong=\"G2799\"\\+w*? \\+w Who|strong=\"G5101\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w looking|strong=\"G2212\"\\+w* \\+w for|strong=\"G3754\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* her|strong=\"G3137\"*, “\\+w Mary|strong=\"G3137\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* hold \\+w me|strong=\"G1473\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* haven’\\+w t|strong=\"G3588\"\\+w* \\+w yet|strong=\"G2532\"\\+w* \\+w ascended|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; \\+w but|strong=\"G1161\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* brothers \\+w and|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w them|strong=\"G3588\"\\+w*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* ascending \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w to|strong=\"G4314\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*.’”*" + }, + { + "verseNum": 18, + "text": "Mary|strong=\"G3137\"* Magdalene|strong=\"G3094\"* came|strong=\"G2064\"* and|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* that|strong=\"G3754\"* she|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* her|strong=\"G3708\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* therefore|strong=\"G3767\"* it|strong=\"G2532\"* was|strong=\"G1510\"* evening|strong=\"G3798\"* on|strong=\"G1519\"* that|strong=\"G3588\"* day|strong=\"G2250\"*, the|strong=\"G2532\"* first|strong=\"G1520\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G2532\"* week|strong=\"G4521\"*, and|strong=\"G2532\"* when|strong=\"G2532\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G1510\"* locked|strong=\"G2808\"* where|strong=\"G3699\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* assembled, for|strong=\"G1519\"* fear|strong=\"G5401\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, Jesus|strong=\"G2424\"* came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* showed|strong=\"G1166\"* them|strong=\"G3588\"* his|strong=\"G3708\"* hands|strong=\"G5495\"* and|strong=\"G2532\"* his|strong=\"G3708\"* side|strong=\"G4125\"*. The|strong=\"G2532\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* were|strong=\"G3588\"* glad|strong=\"G5463\"* when|strong=\"G2532\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"* again|strong=\"G3825\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G3588\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w As|strong=\"G2531\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w even|strong=\"G2531\"\\+w* \\+w so|strong=\"G3767\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* breathed|strong=\"G1720\"* on|strong=\"G4151\"* them|strong=\"G3004\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3004\"*, “\\+w Receive|strong=\"G2983\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*! *" + }, + { + "verseNum": 23, + "text": "If \\+w you|strong=\"G5100\"\\+w* forgive \\+w anyone|strong=\"G5100\"\\+w*’s sins, \\+w they|strong=\"G3588\"\\+w* \\+w have|strong=\"G5100\"\\+w* \\+w been|strong=\"G5100\"\\+w* forgiven \\+w them|strong=\"G3588\"\\+w*. If \\+w you|strong=\"G5100\"\\+w* \\+w retain|strong=\"G2902\"\\+w* \\+w anyone|strong=\"G5100\"\\+w*’s sins, \\+w they|strong=\"G3588\"\\+w* \\+w have|strong=\"G5100\"\\+w* \\+w been|strong=\"G5100\"\\+w* \\+w retained|strong=\"G2902\"\\+w*.”*" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* Thomas|strong=\"G2381\"*, one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G1537\"* twelve|strong=\"G1427\"*, called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 20:24 or, Twin* wasn’t|strong=\"G3588\"* with|strong=\"G3326\"* them|strong=\"G3588\"* when|strong=\"G3753\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G1722\"* other|strong=\"G1161\"* disciples|strong=\"G3101\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “We|strong=\"G1437\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 26, + "text": "After|strong=\"G3326\"* eight|strong=\"G3638\"* days|strong=\"G2250\"*, again|strong=\"G3825\"* his|strong=\"G1519\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* inside|strong=\"G2080\"* and|strong=\"G2532\"* Thomas|strong=\"G2381\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*. Jesus|strong=\"G2424\"* came|strong=\"G2064\"*, the|strong=\"G2532\"* doors|strong=\"G2374\"* being|strong=\"G1510\"* locked|strong=\"G2808\"*, and|strong=\"G2532\"* stood|strong=\"G2476\"* in|strong=\"G1519\"* the|strong=\"G2532\"* middle|strong=\"G3319\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Peace|strong=\"G1515\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*.”*" + }, + { + "verseNum": 27, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Thomas|strong=\"G2381\"*, “\\+w Reach|strong=\"G5342\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w finger|strong=\"G1147\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w hands|strong=\"G5495\"\\+w*. \\+w Reach|strong=\"G5342\"\\+w* \\+w here|strong=\"G5602\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hand|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w put|strong=\"G2532\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w side|strong=\"G4125\"\\+w*. Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* unbelieving, \\+w but|strong=\"G2532\"\\+w* \\+w believing|strong=\"G4103\"\\+w*.”*" + }, + { + "verseNum": 28, + "text": "Thomas|strong=\"G2381\"* answered|strong=\"G3004\"* him|strong=\"G3588\"*, “My|strong=\"G1473\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* my|strong=\"G1473\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 29, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w me|strong=\"G1473\"\\+w*,*+ 20:29 TR adds “Thomas,”* \\+w you|strong=\"G3754\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*. \\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w believed|strong=\"G4100\"\\+w*.”*" + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"* many|strong=\"G4183\"* other|strong=\"G4183\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G2532\"* his|strong=\"G1722\"* disciples|strong=\"G3101\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* not|strong=\"G3756\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*;" + }, + { + "verseNum": 31, + "text": "but|strong=\"G1161\"* these|strong=\"G3778\"* are|strong=\"G1510\"* written|strong=\"G1125\"* that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2532\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* believing|strong=\"G4100\"* you|strong=\"G3754\"* may|strong=\"G2532\"* have|strong=\"G2192\"* life|strong=\"G2222\"* in|strong=\"G1722\"* his|strong=\"G1722\"* name|strong=\"G3686\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, Jesus|strong=\"G2424\"* revealed|strong=\"G5319\"* himself|strong=\"G1438\"* again|strong=\"G3825\"* to|strong=\"G1909\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* at|strong=\"G1909\"* the|strong=\"G1161\"* sea|strong=\"G2281\"* of|strong=\"G1909\"* Tiberias|strong=\"G5085\"*. He|strong=\"G1161\"* revealed|strong=\"G5319\"* himself|strong=\"G1438\"* this|strong=\"G3778\"* way|strong=\"G3779\"*." + }, + { + "verseNum": 2, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, Thomas|strong=\"G2381\"* called|strong=\"G3004\"* Didymus|strong=\"G1324\"*,+ 21:2 or, Twin* Nathanael|strong=\"G3482\"* of|strong=\"G1537\"* Cana|strong=\"G2580\"* in|strong=\"G2532\"* Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sons of|strong=\"G1537\"* Zebedee|strong=\"G2199\"*, and|strong=\"G2532\"* two|strong=\"G1417\"* others|strong=\"G3588\"* of|strong=\"G1537\"* his|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G1510\"* together|strong=\"G3674\"*." + }, + { + "verseNum": 3, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"*’m going|strong=\"G5217\"* fishing.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* day|strong=\"G3588\"* had|strong=\"G2424\"* already|strong=\"G2235\"* come|strong=\"G1096\"*, Jesus|strong=\"G2424\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1519\"* beach; yet|strong=\"G1161\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G1510\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 5, + "text": "Jesus|strong=\"G2424\"* therefore|strong=\"G3767\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3004\"*, “\\+w Children|strong=\"G3813\"\\+w*, \\+w have|strong=\"G2192\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w anything|strong=\"G5100\"\\+w* \\+w to|strong=\"G3004\"\\+w* eat?” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “\\+w Cast|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w net|strong=\"G1350\"\\+w* \\+w on|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w side|strong=\"G3313\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w boat|strong=\"G4143\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w find|strong=\"G2147\"\\+w* \\+w some|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "That|strong=\"G3754\"* disciple|strong=\"G3101\"* therefore|strong=\"G3767\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved said|strong=\"G3004\"* to|strong=\"G1519\"* Peter|strong=\"G4074\"*, “It|strong=\"G2532\"*’s|strong=\"G2962\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*!”" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* other|strong=\"G1161\"* disciples|strong=\"G3101\"* came|strong=\"G2064\"* in|strong=\"G3756\"* the|strong=\"G1161\"* little|strong=\"G4142\"* boat|strong=\"G4142\"* (for|strong=\"G1063\"* they|strong=\"G1161\"* were|strong=\"G1510\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G2064\"* the|strong=\"G1161\"* land|strong=\"G1093\"*, but|strong=\"G1161\"* about|strong=\"G5613\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* cubits|strong=\"G4083\"*+ 21:8 200 cubits is about 100 yards or about 91 meters* away|strong=\"G4951\"*), dragging|strong=\"G4951\"* the|strong=\"G1161\"* net|strong=\"G1350\"* full of|strong=\"G1093\"* fish|strong=\"G2486\"*." + }, + { + "verseNum": 9, + "text": "So|strong=\"G3767\"* when|strong=\"G5613\"* they|strong=\"G2532\"* got out|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* land|strong=\"G1093\"*, they|strong=\"G2532\"* saw a|strong=\"G5613\"* fire of|strong=\"G2532\"* coals there|strong=\"G2532\"*, with|strong=\"G2532\"* fish|strong=\"G3795\"* and|strong=\"G2532\"* bread laid|strong=\"G2749\"* on|strong=\"G1519\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Bring|strong=\"G5342\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w of|strong=\"G2424\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w fish|strong=\"G3795\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G3588\"\\+w* \\+w just|strong=\"G3739\"\\+w* \\+w caught|strong=\"G4084\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "Simon|strong=\"G4613\"* Peter|strong=\"G4074\"* went|strong=\"G2532\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* drew|strong=\"G1670\"* the|strong=\"G2532\"* net|strong=\"G1350\"* to|strong=\"G1519\"* land|strong=\"G1093\"*, full|strong=\"G3324\"* of|strong=\"G2532\"* one|strong=\"G3588\"* hundred|strong=\"G1540\"* fifty-three|strong=\"G4004\"* great|strong=\"G3173\"* fish|strong=\"G2486\"*. Even|strong=\"G2532\"* though|strong=\"G2532\"* there|strong=\"G2532\"* were|strong=\"G1510\"* so|strong=\"G3767\"* many|strong=\"G5118\"*, the|strong=\"G2532\"* net|strong=\"G1350\"* wasn’t|strong=\"G3588\"* torn|strong=\"G4977\"*." + }, + { + "verseNum": 12, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* them|strong=\"G3588\"*, “\\+w Come|strong=\"G1205\"\\+w* \\+w and|strong=\"G1161\"\\+w* eat breakfast!”*" + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* and|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* bread, gave|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fish|strong=\"G3795\"* likewise|strong=\"G3668\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* now|strong=\"G2235\"* the|strong=\"G1537\"* third|strong=\"G5154\"* time|strong=\"G5154\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G3101\"* his|strong=\"G3588\"* disciples|strong=\"G3101\"* after|strong=\"G1537\"* he|strong=\"G3778\"* had|strong=\"G2424\"* risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3767\"* when|strong=\"G3753\"* they|strong=\"G3588\"* had|strong=\"G2424\"* eaten their|strong=\"G3588\"* breakfast, Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G3004\"* Simon|strong=\"G4613\"* Peter|strong=\"G4074\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2962\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w these|strong=\"G3778\"\\+w*?”*" + }, + { + "verseNum": 16, + "text": "He|strong=\"G3754\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"* again|strong=\"G3825\"* a|strong=\"G1492\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2962\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w love|strong=\"G5368\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"*, “\\+w Simon|strong=\"G4613\"\\+w*, son \\+w of|strong=\"G2532\"\\+w* Jonah, \\+w do|strong=\"G1492\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* affection \\+w for|strong=\"G3754\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 18, + "text": "Most \\+w certainly|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w tell|strong=\"G3004\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w young|strong=\"G3501\"\\+w*, \\+w you|strong=\"G4771\"\\+w* dressed \\+w yourself|strong=\"G4572\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w walked|strong=\"G4043\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w wanted|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w*. \\+w But|strong=\"G1161\"\\+w* \\+w when|strong=\"G3752\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w old|strong=\"G1095\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G2309\"\\+w* \\+w stretch|strong=\"G1614\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w hands|strong=\"G5495\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w another|strong=\"G3588\"\\+w* \\+w will|strong=\"G2309\"\\+w* dress \\+w you|strong=\"G4771\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w carry|strong=\"G5342\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G4771\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w want|strong=\"G2309\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w go|strong=\"G2309\"\\+w*.”*" + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, signifying|strong=\"G4591\"* by|strong=\"G2532\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G2316\"* death|strong=\"G2288\"* he|strong=\"G2532\"* would|strong=\"G2316\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Follow|strong=\"G1161\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 20, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"*, turning|strong=\"G1994\"* around|strong=\"G1909\"*, saw|strong=\"G2424\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"* following|strong=\"G1722\"*. This|strong=\"G3588\"* was|strong=\"G1510\"* the|strong=\"G1722\"* disciple|strong=\"G3101\"* whom|strong=\"G3739\"* Jesus|strong=\"G2424\"* loved, the|strong=\"G1722\"* one|strong=\"G3739\"* who|strong=\"G3739\"* had|strong=\"G2424\"* also|strong=\"G2532\"* leaned on|strong=\"G1909\"* Jesus|strong=\"G2424\"*’ chest|strong=\"G4738\"* at|strong=\"G1722\"* the|strong=\"G1722\"* supper|strong=\"G1173\"* and|strong=\"G2532\"* asked|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* going|strong=\"G2532\"* to|strong=\"G2532\"* betray|strong=\"G3860\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"*, seeing|strong=\"G3708\"* him|strong=\"G3588\"*, said|strong=\"G3004\"* to|strong=\"G3004\"* Jesus|strong=\"G2424\"*, “Lord|strong=\"G2962\"*, what|strong=\"G5101\"* about|strong=\"G2424\"* this|strong=\"G3778\"* man|strong=\"G3778\"*?”" + }, + { + "verseNum": 22, + "text": "Jesus|strong=\"G2424\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w you|strong=\"G4771\"\\+w*? \\+w You|strong=\"G4771\"\\+w* \\+w follow|strong=\"G2064\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 23, + "text": "This|strong=\"G3778\"* saying|strong=\"G3004\"* therefore|strong=\"G3767\"* went|strong=\"G1831\"* out|strong=\"G1831\"* among|strong=\"G1519\"* the|strong=\"G2532\"* brothers+ 21:23 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* this|strong=\"G3778\"* disciple|strong=\"G3101\"* wouldn’t|strong=\"G3588\"* die. Yet|strong=\"G2532\"* Jesus|strong=\"G2424\"* didn’t|strong=\"G3588\"* say|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* die, but|strong=\"G1161\"*, “\\+w If|strong=\"G1437\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w desire|strong=\"G2309\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w stay|strong=\"G3306\"\\+w* \\+w until|strong=\"G2193\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w what|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*?”*" + }, + { + "verseNum": 24, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* disciple|strong=\"G3101\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"* about|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* wrote|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"*. We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G4012\"* witness|strong=\"G3140\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* also|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G1161\"* things|strong=\"G4183\"* which|strong=\"G2532\"* Jesus|strong=\"G2424\"* did|strong=\"G4160\"*, which|strong=\"G2532\"* if|strong=\"G1437\"* they|strong=\"G2532\"* would|strong=\"G2532\"* all|strong=\"G2532\"* be|strong=\"G1510\"* written|strong=\"G1125\"*, I|strong=\"G2532\"* suppose|strong=\"G3633\"* that|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* itself wouldn’t have|strong=\"G2532\"* room|strong=\"G5562\"* for|strong=\"G1161\"* the|strong=\"G2532\"* books that|strong=\"G2532\"* would|strong=\"G2532\"* be|strong=\"G1510\"* written|strong=\"G1125\"*." + } + ] + } + ] + }, + { + "name": "Acts", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* book|strong=\"G3588\"* I|strong=\"G3739\"* wrote, Theophilus|strong=\"G2321\"*, concerned all|strong=\"G3956\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* began both|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4160\"* and|strong=\"G2532\"* to|strong=\"G2532\"* teach|strong=\"G1321\"*," + }, + { + "verseNum": 2, + "text": "until the|strong=\"G1223\"* day|strong=\"G2250\"* in|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* received up, after|strong=\"G1223\"* he|strong=\"G3739\"* had|strong=\"G3739\"* given|strong=\"G1781\"* commandment|strong=\"G1781\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G4151\"* the|strong=\"G1223\"* apostles whom|strong=\"G3739\"* he|strong=\"G3739\"* had|strong=\"G3739\"* chosen|strong=\"G1586\"*." + }, + { + "verseNum": 3, + "text": "To|strong=\"G2532\"* these|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* showed himself|strong=\"G1438\"* alive|strong=\"G2198\"* after|strong=\"G3326\"* he|strong=\"G2532\"* suffered|strong=\"G3958\"*, by|strong=\"G1223\"* many|strong=\"G4183\"* proofs|strong=\"G5039\"*, appearing|strong=\"G3700\"* to|strong=\"G2532\"* them|strong=\"G3588\"* over|strong=\"G4012\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G4012\"* forty|strong=\"G5062\"* days|strong=\"G2250\"* and|strong=\"G2532\"* speaking|strong=\"G3004\"* about|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 4, + "text": "Being|strong=\"G2532\"* assembled together|strong=\"G4871\"* with|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w depart|strong=\"G5563\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w Jerusalem|strong=\"G2414\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w wait|strong=\"G4037\"\\+w* \\+w for|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w promise|strong=\"G1860\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* heard \\+w from|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 5, + "text": "\\+w For|strong=\"G3754\"\\+w* \\+w John|strong=\"G2491\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G4183\"\\+w* \\+w be|strong=\"G3756\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w from|strong=\"G3756\"\\+w* \\+w now|strong=\"G1161\"\\+w*.”*" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"G3767\"*, when|strong=\"G1722\"* they|strong=\"G3588\"* had|strong=\"G3588\"* come|strong=\"G4905\"* together|strong=\"G4905\"*, they|strong=\"G3588\"* asked|strong=\"G2065\"* him|strong=\"G3588\"*, “Lord|strong=\"G2962\"*, are|strong=\"G3588\"* you|strong=\"G1487\"* now|strong=\"G3767\"* restoring the|strong=\"G1722\"* kingdom to|strong=\"G3004\"* Israel|strong=\"G2474\"*?”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “\\+w It|strong=\"G1161\"\\+w* isn’\\+w t|strong=\"G3588\"\\+w* \\+w for|strong=\"G4314\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w times|strong=\"G2540\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w seasons|strong=\"G2540\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w has|strong=\"G3962\"\\+w* \\+w set|strong=\"G5087\"\\+w* \\+w within|strong=\"G1722\"\\+w* \\+w his|strong=\"G1438\"\\+w* \\+w own|strong=\"G2398\"\\+w* \\+w authority|strong=\"G1849\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w receive|strong=\"G2983\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w when|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w has|strong=\"G4151\"\\+w* \\+w come|strong=\"G1904\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w witnesses|strong=\"G3144\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w in|strong=\"G1722\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w Judea|strong=\"G2449\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Samaria|strong=\"G4540\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* uttermost parts \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w earth|strong=\"G1093\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, as|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* looking|strong=\"G2532\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* taken up|strong=\"G1869\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* cloud|strong=\"G3507\"* received|strong=\"G5274\"* him|strong=\"G3588\"* out|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* sight|strong=\"G3788\"*." + }, + { + "verseNum": 10, + "text": "While|strong=\"G1722\"* they|strong=\"G2532\"* were|strong=\"G1510\"* looking|strong=\"G2532\"* steadfastly into|strong=\"G1519\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* as|strong=\"G5613\"* he|strong=\"G2532\"* went|strong=\"G4198\"*, behold|strong=\"G2400\"*,+ 1:10 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* two|strong=\"G1417\"* men|strong=\"G1417\"* stood|strong=\"G3936\"* by|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* white|strong=\"G3022\"* clothing|strong=\"G2066\"*," + }, + { + "verseNum": 11, + "text": "who|strong=\"G3739\"* also|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G5210\"* men|strong=\"G3778\"* of|strong=\"G2532\"* Galilee|strong=\"G1057\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* stand|strong=\"G2476\"* looking|strong=\"G2424\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*? This|strong=\"G3778\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G3588\"* received up|strong=\"G1519\"* from|strong=\"G2064\"* you|strong=\"G5210\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, will|strong=\"G5101\"* come|strong=\"G2064\"* back|strong=\"G1519\"* in|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G3779\"* as|strong=\"G1519\"* you|strong=\"G5210\"* saw|strong=\"G2300\"* him|strong=\"G3588\"* going|strong=\"G4198\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* they|strong=\"G3588\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* from|strong=\"G3588\"* the|strong=\"G1519\"* mountain|strong=\"G3735\"* called|strong=\"G2564\"* Olivet|strong=\"G1638\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* near|strong=\"G1451\"* Jerusalem|strong=\"G2419\"*, a|strong=\"G2192\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*’s|strong=\"G2192\"* journey|strong=\"G3598\"* away|strong=\"G5290\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1525\"* in|strong=\"G1519\"*, they|strong=\"G2532\"* went|strong=\"G1525\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* upper|strong=\"G5253\"* room|strong=\"G5253\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G1510\"* staying|strong=\"G2650\"*, that|strong=\"G3588\"* is|strong=\"G1510\"* Peter|strong=\"G4074\"*, John|strong=\"G2491\"*, James|strong=\"G2385\"*, Andrew, Philip|strong=\"G5376\"*, Thomas|strong=\"G2381\"*, Bartholomew, Matthew|strong=\"G3156\"*, James|strong=\"G2385\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Alphaeus, Simon|strong=\"G4613\"* the|strong=\"G2532\"* Zealot, and|strong=\"G2532\"* Judas|strong=\"G2455\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* James|strong=\"G2385\"*." + }, + { + "verseNum": 14, + "text": "All|strong=\"G3956\"* these|strong=\"G3778\"* with|strong=\"G4862\"* one|strong=\"G3956\"* accord|strong=\"G3661\"* continued|strong=\"G4342\"* steadfastly in|strong=\"G2532\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* supplication, along|strong=\"G4862\"* with|strong=\"G4862\"* the|strong=\"G2532\"* women|strong=\"G1135\"* and|strong=\"G2532\"* Mary|strong=\"G3137\"* the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* with|strong=\"G4862\"* his|strong=\"G3956\"* brothers." + }, + { + "verseNum": 15, + "text": "In|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, Peter|strong=\"G4074\"* stood|strong=\"G3588\"* up|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2250\"* the|strong=\"G1722\"* disciples|strong=\"G1510\"* (and|strong=\"G2532\"* the|strong=\"G1722\"* number|strong=\"G3793\"* of|strong=\"G2250\"* names|strong=\"G3686\"* was|strong=\"G1510\"* about|strong=\"G5613\"* one|strong=\"G3588\"* hundred|strong=\"G1540\"* twenty|strong=\"G1501\"*), and|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "“Brothers, it|strong=\"G3739\"* was|strong=\"G1096\"* necessary|strong=\"G1163\"* that|strong=\"G3739\"* this|strong=\"G3588\"* Scripture|strong=\"G1124\"* should|strong=\"G1163\"* be|strong=\"G1096\"* fulfilled|strong=\"G4137\"*, which|strong=\"G3739\"* the|strong=\"G1223\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* spoke before|strong=\"G4302\"* by|strong=\"G1223\"* the|strong=\"G1223\"* mouth|strong=\"G4750\"* of|strong=\"G4012\"* David|strong=\"G1138\"* concerning|strong=\"G4012\"* Judas|strong=\"G2455\"*, who|strong=\"G3739\"* was|strong=\"G1096\"* guide|strong=\"G3595\"* to|strong=\"G1163\"* those|strong=\"G3588\"* who|strong=\"G3739\"* took|strong=\"G1096\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* counted|strong=\"G2674\"* with|strong=\"G1722\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* received|strong=\"G2975\"* his|strong=\"G1722\"* portion|strong=\"G2819\"* in|strong=\"G1722\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G2532\"* this|strong=\"G3778\"* man|strong=\"G3778\"* obtained|strong=\"G2932\"* a|strong=\"G1096\"* field|strong=\"G5564\"* with|strong=\"G1537\"* the|strong=\"G2532\"* reward|strong=\"G3408\"* for|strong=\"G2532\"* his|strong=\"G3956\"* wickedness; and|strong=\"G2532\"* falling|strong=\"G1096\"* headlong|strong=\"G4248\"*, his|strong=\"G3956\"* body burst|strong=\"G2997\"* open|strong=\"G2997\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* intestines|strong=\"G4698\"* gushed|strong=\"G1632\"* out|strong=\"G1537\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"G2532\"* became|strong=\"G1096\"* known|strong=\"G1110\"* to|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* lived|strong=\"G2730\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3739\"* in|strong=\"G2532\"* their|strong=\"G2532\"* language|strong=\"G1258\"* that|strong=\"G3739\"* field|strong=\"G5564\"* was|strong=\"G1510\"* called|strong=\"G2564\"* ‘Akeldama,’ that|strong=\"G3739\"* is|strong=\"G1510\"*, ‘The|strong=\"G2532\"* field|strong=\"G5564\"* of|strong=\"G2532\"* blood.’" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* Psalms|strong=\"G5568\"*," + }, + { + "verseNum": 21, + "text": "“Of|strong=\"G2532\"* the|strong=\"G1722\"* men|strong=\"G3956\"* therefore|strong=\"G3767\"* who|strong=\"G3739\"* have|strong=\"G2532\"* accompanied|strong=\"G4905\"* us|strong=\"G2249\"* all|strong=\"G3956\"* the|strong=\"G1722\"* time|strong=\"G5550\"* that|strong=\"G3739\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* went|strong=\"G1831\"* in|strong=\"G1722\"* and|strong=\"G2532\"* out|strong=\"G1831\"* among|strong=\"G1722\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 22, + "text": "beginning from|strong=\"G3588\"* the|strong=\"G3588\"* baptism of|strong=\"G2250\"* John|strong=\"G2491\"* to|strong=\"G2193\"* the|strong=\"G3588\"* day|strong=\"G2250\"* that|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G1096\"* received up from|strong=\"G3588\"* us|strong=\"G2249\"*, of|strong=\"G2250\"* these|strong=\"G3778\"* one|strong=\"G1520\"* must|strong=\"G1096\"* become|strong=\"G1096\"* a|strong=\"G1096\"* witness|strong=\"G3144\"* with|strong=\"G4862\"* us|strong=\"G2249\"* of|strong=\"G2250\"* his|strong=\"G3739\"* resurrection.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* put|strong=\"G2476\"* forward|strong=\"G2476\"* two|strong=\"G1417\"*: Joseph|strong=\"G2501\"* called|strong=\"G2564\"* Barsabbas, who|strong=\"G3739\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G2564\"* Justus|strong=\"G2459\"*, and|strong=\"G2532\"* Matthias|strong=\"G3159\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* prayed|strong=\"G4336\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G4771\"*, Lord|strong=\"G2962\"*, who|strong=\"G3739\"* know|strong=\"G2589\"* the|strong=\"G2532\"* hearts|strong=\"G2589\"* of|strong=\"G1537\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, show which|strong=\"G3739\"* one|strong=\"G1520\"* of|strong=\"G1537\"* these|strong=\"G3778\"* two|strong=\"G1417\"* you|strong=\"G4771\"* have|strong=\"G2532\"* chosen|strong=\"G1586\"*" + }, + { + "verseNum": 25, + "text": "to|strong=\"G1519\"* take|strong=\"G2983\"* part|strong=\"G2532\"* in|strong=\"G1519\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"* and|strong=\"G2532\"* apostleship from|strong=\"G2532\"* which|strong=\"G3739\"* Judas|strong=\"G2455\"* fell|strong=\"G2532\"* away|strong=\"G4198\"*, that|strong=\"G3739\"* he|strong=\"G2532\"* might|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* place|strong=\"G5117\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"G2532\"* drew|strong=\"G2532\"* lots|strong=\"G2819\"* for|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* lot|strong=\"G2819\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* Matthias|strong=\"G3159\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* counted with|strong=\"G3326\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"* apostles." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* when|strong=\"G2532\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Pentecost|strong=\"G4005\"* had|strong=\"G2532\"* come|strong=\"G1510\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* with|strong=\"G1722\"* one|strong=\"G3956\"* accord in|strong=\"G1722\"* one|strong=\"G3956\"* place|strong=\"G1722\"*." + }, + { + "verseNum": 2, + "text": "Suddenly there|strong=\"G2532\"* came|strong=\"G1096\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* a|strong=\"G1096\"* sound|strong=\"G2279\"* like|strong=\"G5618\"* the|strong=\"G2532\"* rushing|strong=\"G5342\"* of|strong=\"G1537\"* a|strong=\"G1096\"* mighty|strong=\"G2532\"* wind|strong=\"G4157\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* filled|strong=\"G4137\"* all|strong=\"G3650\"* the|strong=\"G2532\"* house|strong=\"G3624\"* where|strong=\"G3757\"* they|strong=\"G2532\"* were|strong=\"G1510\"* sitting|strong=\"G2521\"*." + }, + { + "verseNum": 3, + "text": "Tongues|strong=\"G1100\"* like|strong=\"G5616\"* fire|strong=\"G4442\"* appeared|strong=\"G3708\"* and|strong=\"G2532\"* were|strong=\"G2532\"* distributed to|strong=\"G2532\"* them|strong=\"G3708\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* each|strong=\"G1538\"* of|strong=\"G2532\"* them|strong=\"G3708\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* began to|strong=\"G2532\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G2087\"* languages|strong=\"G1100\"*, as|strong=\"G2531\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G2532\"* ability to|strong=\"G2532\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* were|strong=\"G1510\"* dwelling|strong=\"G2730\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* Jews|strong=\"G2453\"*, devout|strong=\"G2126\"* men|strong=\"G3956\"*, from|strong=\"G5259\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* under|strong=\"G5259\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* this|strong=\"G3778\"* sound|strong=\"G5456\"* was|strong=\"G1096\"* heard, the|strong=\"G2532\"* multitude|strong=\"G4128\"* came|strong=\"G1096\"* together|strong=\"G4905\"* and|strong=\"G2532\"* were|strong=\"G3588\"* bewildered|strong=\"G4797\"*, because|strong=\"G3754\"* everyone|strong=\"G1538\"* heard them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* his|strong=\"G2398\"* own|strong=\"G2398\"* language|strong=\"G1258\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* amazed|strong=\"G2296\"* and|strong=\"G2532\"* marveled|strong=\"G2296\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* one|strong=\"G3956\"* another|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, aren’t|strong=\"G3588\"* all|strong=\"G3956\"* these|strong=\"G3778\"* who|strong=\"G3588\"* speak|strong=\"G2980\"* Galileans|strong=\"G1057\"*?" + }, + { + "verseNum": 8, + "text": "How|strong=\"G4459\"* do|strong=\"G2532\"* we|strong=\"G2249\"* hear, everyone|strong=\"G1538\"* in|strong=\"G1722\"* our|strong=\"G2532\"* own|strong=\"G2398\"* native|strong=\"G1722\"* language|strong=\"G1258\"*?" + }, + { + "verseNum": 9, + "text": "Parthians|strong=\"G3934\"*, Medes|strong=\"G3370\"*, Elamites|strong=\"G1639\"*, and|strong=\"G2532\"* people|strong=\"G3588\"* from|strong=\"G2532\"* Mesopotamia|strong=\"G3318\"*, Judea|strong=\"G2449\"*, Cappadocia|strong=\"G2587\"*, Pontus|strong=\"G4195\"*, Asia|strong=\"G3588\"*," + }, + { + "verseNum": 10, + "text": "Phrygia|strong=\"G5435\"*, Pamphylia|strong=\"G3828\"*, Egypt, the|strong=\"G2532\"* parts|strong=\"G3313\"* of|strong=\"G2532\"* Libya|strong=\"G3033\"* around|strong=\"G2596\"* Cyrene|strong=\"G2957\"*, visitors|strong=\"G1927\"* from|strong=\"G2532\"* Rome|strong=\"G4514\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* proselytes|strong=\"G4339\"*," + }, + { + "verseNum": 11, + "text": "Cretans|strong=\"G2912\"* and|strong=\"G2532\"* Arabians—we|strong=\"G2532\"* hear them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* our|strong=\"G2316\"* languages|strong=\"G1100\"* the|strong=\"G2532\"* mighty|strong=\"G2532\"* works|strong=\"G3167\"* of|strong=\"G2316\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* amazed|strong=\"G1839\"* and|strong=\"G2532\"* were|strong=\"G1510\"* perplexed|strong=\"G1280\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3956\"* another|strong=\"G1161\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* mean|strong=\"G3004\"*?”" + }, + { + "verseNum": 13, + "text": "Others|strong=\"G2087\"*, mocking|strong=\"G5512\"*, said|strong=\"G3004\"*, “They|strong=\"G1161\"* are|strong=\"G1510\"* filled with|strong=\"G1161\"* new wine|strong=\"G1098\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"*, standing|strong=\"G2476\"* up|strong=\"G1869\"* with|strong=\"G4862\"* the|strong=\"G2532\"* eleven|strong=\"G1733\"*, lifted|strong=\"G1869\"* up|strong=\"G1869\"* his|strong=\"G3956\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* spoke out|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* men|strong=\"G3956\"* of|strong=\"G2532\"* Judea|strong=\"G2453\"* and|strong=\"G2532\"* all|strong=\"G3956\"* you|strong=\"G5210\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* at|strong=\"G2730\"* Jerusalem|strong=\"G2419\"*, let|strong=\"G1161\"* this|strong=\"G3778\"* be|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* listen to|strong=\"G2532\"* my|strong=\"G3956\"* words|strong=\"G4487\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* these|strong=\"G3778\"* aren’t|strong=\"G3588\"* drunken|strong=\"G3184\"*, as|strong=\"G5613\"* you|strong=\"G5210\"* suppose|strong=\"G5274\"*, seeing|strong=\"G5613\"* it|strong=\"G1063\"* is|strong=\"G1510\"* only|strong=\"G3756\"* the|strong=\"G3588\"* third|strong=\"G5154\"* hour|strong=\"G5610\"* of|strong=\"G2250\"* the|strong=\"G3588\"* day|strong=\"G2250\"*.+ 2:15 about 9:00 a.m.*" + }, + { + "verseNum": 16, + "text": "But|strong=\"G3588\"* this|strong=\"G3778\"* is|strong=\"G1510\"* what|strong=\"G3588\"* has|strong=\"G3778\"* been|strong=\"G1510\"* spoken|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1223\"* prophet|strong=\"G4396\"* Joel|strong=\"G2493\"*:" + }, + { + "verseNum": 17, + "text": "‘It|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*, says|strong=\"G3004\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 18, + "text": "Yes, and|strong=\"G2532\"* on|strong=\"G1909\"* my|strong=\"G1722\"* servants|strong=\"G1401\"* and|strong=\"G2532\"* on|strong=\"G1909\"* my|strong=\"G1722\"* handmaidens|strong=\"G1399\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* will|strong=\"G2532\"* show|strong=\"G1325\"* wonders|strong=\"G5059\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* above|strong=\"G1909\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* sun|strong=\"G2246\"* will|strong=\"G2532\"* be|strong=\"G2532\"* turned|strong=\"G3344\"* into|strong=\"G1519\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 21, + "text": "It|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* that|strong=\"G3739\"* whoever|strong=\"G3739\"* will|strong=\"G1510\"* call|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* be|strong=\"G1510\"* saved|strong=\"G4982\"*.’+ 2:21 Joel 2:28-32*" + }, + { + "verseNum": 22, + "text": "“Men|strong=\"G3778\"* of|strong=\"G3056\"* Israel|strong=\"G2475\"*, hear these|strong=\"G3778\"* words|strong=\"G3056\"*! Jesus|strong=\"G2424\"* of|strong=\"G3056\"* Nazareth|strong=\"G3480\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* approved by|strong=\"G1223\"* God|strong=\"G2316\"* to|strong=\"G1519\"* you|strong=\"G5210\"* by|strong=\"G1223\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* God|strong=\"G2316\"* did|strong=\"G4160\"* by|strong=\"G1223\"* him|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"*," + }, + { + "verseNum": 23, + "text": "him|strong=\"G3588\"*, being|strong=\"G2532\"* delivered|strong=\"G1560\"* up|strong=\"G2532\"* by|strong=\"G1223\"* the|strong=\"G2532\"* determined|strong=\"G3724\"* counsel|strong=\"G1012\"* and|strong=\"G2532\"* foreknowledge|strong=\"G4268\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, you|strong=\"G2532\"* have|strong=\"G2532\"* taken by|strong=\"G1223\"* the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G1223\"* lawless men|strong=\"G3778\"*, crucified|strong=\"G4362\"* and|strong=\"G2532\"* killed;" + }, + { + "verseNum": 24, + "text": "whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G2316\"* up|strong=\"G3089\"*, having|strong=\"G2316\"* freed him|strong=\"G3588\"* from|strong=\"G5259\"* the|strong=\"G3588\"* agony|strong=\"G5604\"* of|strong=\"G5259\"* death|strong=\"G2288\"*, because|strong=\"G2530\"* it|strong=\"G3739\"* was|strong=\"G1510\"* not|strong=\"G3756\"* possible|strong=\"G1415\"* that|strong=\"G3739\"* he|strong=\"G3739\"* should|strong=\"G2316\"* be|strong=\"G1510\"* held|strong=\"G2902\"* by|strong=\"G5259\"* it|strong=\"G3739\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"* says|strong=\"G3004\"* concerning|strong=\"G1519\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G1223\"* my|strong=\"G1473\"* heart|strong=\"G2588\"* was|strong=\"G3588\"* glad|strong=\"G2165\"*, and|strong=\"G2532\"* my|strong=\"G1473\"* tongue|strong=\"G1100\"* rejoiced|strong=\"G2165\"*." + }, + { + "verseNum": 27, + "text": "because|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G1473\"* not|strong=\"G3756\"* leave|strong=\"G1459\"* my|strong=\"G3708\"* soul|strong=\"G5590\"* in|strong=\"G1519\"* Hades,+ 2:27 or, Hell*" + }, + { + "verseNum": 28, + "text": "You|strong=\"G4771\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G3326\"* me|strong=\"G1473\"* the|strong=\"G3588\"* ways|strong=\"G3598\"* of|strong=\"G3598\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 29, + "text": "“Brothers, I|strong=\"G1473\"* may|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* freely|strong=\"G3954\"* of|strong=\"G4012\"* the|strong=\"G1722\"* patriarch|strong=\"G3966\"* David|strong=\"G1138\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* both|strong=\"G2532\"* died|strong=\"G5053\"* and|strong=\"G2532\"* was|strong=\"G1510\"* buried|strong=\"G2290\"*, and|strong=\"G2532\"* his|strong=\"G4012\"* tomb|strong=\"G3418\"* is|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G3004\"* to|strong=\"G4314\"* this|strong=\"G3778\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"G3767\"*, being|strong=\"G5225\"* a|strong=\"G2532\"* prophet|strong=\"G4396\"*, and|strong=\"G2532\"* knowing|strong=\"G1492\"* that|strong=\"G3754\"* God|strong=\"G2316\"* had|strong=\"G2532\"* sworn|strong=\"G3660\"* with|strong=\"G1537\"* an|strong=\"G2532\"* oath|strong=\"G3727\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G2532\"* fruit|strong=\"G2590\"* of|strong=\"G1537\"* his|strong=\"G1909\"* body, according|strong=\"G2316\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh, he|strong=\"G2532\"* would|strong=\"G2316\"* raise|strong=\"G2532\"* up|strong=\"G2532\"* the|strong=\"G2532\"* Christ+ 2:30 “Christ” means “Anointed One”.* to|strong=\"G2532\"* sit|strong=\"G2523\"* on|strong=\"G1909\"* his|strong=\"G1909\"* throne|strong=\"G2362\"*," + }, + { + "verseNum": 31, + "text": "he|strong=\"G3754\"* foreseeing this|strong=\"G3588\"*, spoke|strong=\"G2980\"* about|strong=\"G4012\"* the|strong=\"G1519\"* resurrection of|strong=\"G4012\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* his|strong=\"G1519\"* soul wasn’t|strong=\"G3588\"* left|strong=\"G1459\"* in|strong=\"G1519\"* Hades,+ 2:31 or, Hell* and|strong=\"G4561\"* his|strong=\"G1519\"* flesh|strong=\"G4561\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 32, + "text": "This|strong=\"G3778\"* Jesus|strong=\"G2424\"* God|strong=\"G2316\"* raised|strong=\"G2316\"* up, to|strong=\"G2316\"* which|strong=\"G3739\"* we|strong=\"G2249\"* all|strong=\"G3956\"* are|strong=\"G1510\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 33, + "text": "Being|strong=\"G2532\"* therefore|strong=\"G3767\"* exalted|strong=\"G5312\"* by|strong=\"G3844\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* received|strong=\"G2983\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, he|strong=\"G2532\"* has|strong=\"G2316\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* this|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G5210\"* now|strong=\"G2532\"* see and|strong=\"G2532\"* hear." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"* didn’t|strong=\"G3588\"* ascend|strong=\"G1537\"* into|strong=\"G1519\"* the|strong=\"G1519\"* heavens|strong=\"G3772\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* says|strong=\"G3004\"* himself|strong=\"G1519\"*," + }, + { + "verseNum": 35, + "text": "until|strong=\"G2193\"* I|strong=\"G2193\"* make|strong=\"G5087\"* your|strong=\"G5087\"* enemies|strong=\"G2190\"* a|strong=\"G5087\"* footstool|strong=\"G5286\"* for|strong=\"G4228\"* your|strong=\"G5087\"* feet|strong=\"G4228\"*.”’+ 2:35 Psalms 110:1 *" + }, + { + "verseNum": 36, + "text": "“Let|strong=\"G1097\"* all|strong=\"G3956\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2316\"* Israel|strong=\"G2474\"* therefore|strong=\"G3767\"* know|strong=\"G1097\"* certainly|strong=\"G2532\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* made|strong=\"G4160\"* him|strong=\"G3588\"* both|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"*, this|strong=\"G3778\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* crucified|strong=\"G4717\"*.”" + }, + { + "verseNum": 37, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles, “Brothers, what|strong=\"G5101\"* shall|strong=\"G2532\"* we|strong=\"G2532\"* do|strong=\"G4160\"*?”" + }, + { + "verseNum": 38, + "text": "Peter|strong=\"G4074\"* said|strong=\"G5346\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Repent|strong=\"G3340\"* and|strong=\"G2532\"* be|strong=\"G2532\"* baptized, every|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G4151\"* you|strong=\"G5210\"*, in|strong=\"G1519\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* for|strong=\"G1519\"* the|strong=\"G2532\"* forgiveness of|strong=\"G4151\"* sins, and|strong=\"G2532\"* you|strong=\"G5210\"* will|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* gift|strong=\"G1431\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* is|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G1519\"* your|strong=\"G2962\"* children|strong=\"G5043\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* far|strong=\"G3588\"* off, even|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* our|strong=\"G2316\"* God|strong=\"G2316\"* will|strong=\"G2316\"* call|strong=\"G4341\"* to|strong=\"G1519\"* himself|strong=\"G1519\"*.”" + }, + { + "verseNum": 40, + "text": "With|strong=\"G2532\"* many|strong=\"G4183\"* other|strong=\"G2087\"* words|strong=\"G3056\"* he|strong=\"G2532\"* testified|strong=\"G1263\"* and|strong=\"G2532\"* exhorted|strong=\"G3870\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Save|strong=\"G4982\"* yourselves|strong=\"G1438\"* from|strong=\"G2532\"* this|strong=\"G3778\"* crooked|strong=\"G4646\"* generation|strong=\"G1074\"*!”" + }, + { + "verseNum": 41, + "text": "Then|strong=\"G3767\"* those|strong=\"G3588\"* who|strong=\"G3588\"* gladly received his|strong=\"G1722\"* word|strong=\"G3056\"* were|strong=\"G3588\"* baptized. There|strong=\"G2532\"* were|strong=\"G3588\"* added|strong=\"G4369\"* that|strong=\"G3588\"* day|strong=\"G2250\"* about|strong=\"G5616\"* three|strong=\"G5153\"* thousand|strong=\"G5153\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"G2532\"* continued|strong=\"G4342\"* steadfastly in|strong=\"G2532\"* the|strong=\"G2532\"* apostles’ teaching|strong=\"G1322\"* and|strong=\"G2532\"* fellowship|strong=\"G2842\"*, in|strong=\"G2532\"* the|strong=\"G2532\"* breaking|strong=\"G2800\"* of|strong=\"G2532\"* bread, and|strong=\"G2532\"* prayer|strong=\"G4335\"*." + }, + { + "verseNum": 43, + "text": "Fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* every|strong=\"G3956\"* soul|strong=\"G5590\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* were|strong=\"G1510\"* done|strong=\"G1096\"* through|strong=\"G1223\"* the|strong=\"G1722\"* apostles." + }, + { + "verseNum": 44, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* were|strong=\"G1510\"* together|strong=\"G1909\"*, and|strong=\"G2532\"* had|strong=\"G2192\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1909\"* common|strong=\"G2839\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"G2532\"* sold|strong=\"G4097\"* their|strong=\"G2532\"* possessions|strong=\"G2933\"* and|strong=\"G2532\"* goods|strong=\"G5223\"*, and|strong=\"G2532\"* distributed them|strong=\"G3588\"* to|strong=\"G2532\"* all|strong=\"G3956\"*, according|strong=\"G5100\"* as|strong=\"G2532\"* anyone|strong=\"G5100\"* had|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 46, + "text": "Day|strong=\"G2250\"* by|strong=\"G1722\"* day|strong=\"G2250\"*, continuing|strong=\"G4342\"* steadfastly with|strong=\"G1722\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* breaking|strong=\"G2806\"* bread at|strong=\"G1722\"* home|strong=\"G3624\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* their|strong=\"G2532\"* food|strong=\"G5160\"* with|strong=\"G1722\"* gladness and|strong=\"G2532\"* singleness of|strong=\"G2250\"* heart|strong=\"G2588\"*," + }, + { + "verseNum": 47, + "text": "praising God|strong=\"G2316\"* and|strong=\"G2532\"* having|strong=\"G2192\"* favor|strong=\"G5485\"* with|strong=\"G4314\"* all|strong=\"G3650\"* the|strong=\"G2532\"* people|strong=\"G2992\"*. The|strong=\"G2532\"* Lord|strong=\"G2962\"* added|strong=\"G4369\"* to|strong=\"G4314\"* the|strong=\"G2532\"* assembly day|strong=\"G2250\"* by|strong=\"G2596\"* day|strong=\"G2250\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* being|strong=\"G2532\"* saved|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* were|strong=\"G3588\"* going|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* at|strong=\"G1909\"* the|strong=\"G2532\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* prayer|strong=\"G4335\"*, the|strong=\"G2532\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*.+ 3:1 3:00 p.m.*" + }, + { + "verseNum": 2, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G3739\"* was|strong=\"G3588\"* lame|strong=\"G5560\"* from|strong=\"G1537\"* his|strong=\"G1519\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* was|strong=\"G3588\"* being|strong=\"G5225\"* carried|strong=\"G2532\"*, whom|strong=\"G3739\"* they|strong=\"G2532\"* laid|strong=\"G5087\"* daily|strong=\"G2250\"* at|strong=\"G1519\"* the|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Beautiful|strong=\"G5611\"*, to|strong=\"G1519\"* ask|strong=\"G3004\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3739\"* entered|strong=\"G1531\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*." + }, + { + "verseNum": 3, + "text": "Seeing|strong=\"G3708\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* about|strong=\"G3195\"* to|strong=\"G1519\"* go|strong=\"G1524\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, he|strong=\"G2532\"* asked|strong=\"G2065\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy." + }, + { + "verseNum": 4, + "text": "Peter|strong=\"G4074\"*, fastening his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"*, with|strong=\"G4862\"* John|strong=\"G2491\"*, said|strong=\"G3004\"*, “Look at|strong=\"G1519\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G1161\"* listened to|strong=\"G5100\"* them|strong=\"G3588\"*, expecting|strong=\"G4328\"* to|strong=\"G5100\"* receive|strong=\"G2983\"* something|strong=\"G5100\"* from|strong=\"G3844\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* have|strong=\"G2192\"* no|strong=\"G3756\"* silver or|strong=\"G2532\"* gold|strong=\"G5553\"*, but|strong=\"G1161\"* what|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2192\"*, that|strong=\"G3739\"* I|strong=\"G1473\"* give|strong=\"G1325\"* you|strong=\"G4771\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"*, get|strong=\"G2192\"* up|strong=\"G1325\"* and|strong=\"G2532\"* walk|strong=\"G4043\"*!”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* took|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G2532\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*. Immediately|strong=\"G3916\"* his|strong=\"G2532\"* feet and|strong=\"G2532\"* his|strong=\"G2532\"* ankle|strong=\"G2532\"* bones|strong=\"G4974\"* received|strong=\"G4974\"* strength|strong=\"G4732\"*." + }, + { + "verseNum": 8, + "text": "Leaping|strong=\"G2476\"* up|strong=\"G1519\"*, he|strong=\"G2532\"* stood|strong=\"G2476\"* and|strong=\"G2532\"* began to|strong=\"G1519\"* walk|strong=\"G4043\"*. He|strong=\"G2532\"* entered|strong=\"G1525\"* with|strong=\"G4862\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"*, walking|strong=\"G4043\"*, leaping|strong=\"G2476\"*, and|strong=\"G2532\"* praising God|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* walking|strong=\"G4043\"* and|strong=\"G2532\"* praising God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* recognized|strong=\"G1921\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* used to|strong=\"G4314\"* sit|strong=\"G2521\"* begging for|strong=\"G3754\"* gifts|strong=\"G1654\"* for|strong=\"G3754\"* the|strong=\"G2532\"* needy at|strong=\"G1909\"* the|strong=\"G2532\"* Beautiful|strong=\"G5611\"* Gate|strong=\"G4439\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G4314\"* wonder|strong=\"G2285\"* and|strong=\"G2532\"* amazement|strong=\"G1611\"* at|strong=\"G1909\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G4819\"* to|strong=\"G4314\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"G1161\"* the|strong=\"G2532\"* lame man|strong=\"G3956\"* who|strong=\"G3588\"* was|strong=\"G3588\"* healed held|strong=\"G2902\"* on|strong=\"G1909\"* to|strong=\"G4314\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* ran|strong=\"G4936\"* together|strong=\"G1909\"* to|strong=\"G4314\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G2532\"* porch|strong=\"G4745\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Solomon|strong=\"G4672\"*’s, greatly wondering|strong=\"G1569\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* Peter|strong=\"G4074\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, he|strong=\"G1161\"* responded to|strong=\"G4314\"* the|strong=\"G1161\"* people|strong=\"G2992\"*, “You|strong=\"G3708\"* men|strong=\"G3778\"* of|strong=\"G1411\"* Israel|strong=\"G2475\"*, why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3708\"* marvel|strong=\"G2296\"* at|strong=\"G1909\"* this|strong=\"G3778\"* man|strong=\"G3778\"*? Why|strong=\"G5101\"* do|strong=\"G4160\"* you|strong=\"G3708\"* fasten your|strong=\"G3708\"* eyes on|strong=\"G1909\"* us|strong=\"G4160\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* by|strong=\"G1909\"* our|strong=\"G4314\"* own|strong=\"G2398\"* power|strong=\"G1411\"* or|strong=\"G2228\"* godliness|strong=\"G2150\"* we|strong=\"G2249\"* had|strong=\"G3588\"* made|strong=\"G4160\"* him|strong=\"G3588\"* walk|strong=\"G4043\"*?" + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Abraham, Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* Jacob|strong=\"G2384\"*, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, has|strong=\"G2316\"* glorified|strong=\"G1392\"* his|strong=\"G2532\"* Servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* delivered|strong=\"G3860\"* up|strong=\"G3860\"* and|strong=\"G2532\"* denied in|strong=\"G2596\"* the|strong=\"G2532\"* presence|strong=\"G4383\"* of|strong=\"G2316\"* Pilate|strong=\"G4091\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2424\"* determined|strong=\"G2919\"* to|strong=\"G2532\"* release him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* denied the|strong=\"G2532\"* Holy and|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3588\"* and|strong=\"G2532\"* asked for|strong=\"G1161\"* a|strong=\"G2532\"* murderer|strong=\"G5406\"* to|strong=\"G2532\"* be|strong=\"G2532\"* granted|strong=\"G5483\"* to|strong=\"G2532\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G1161\"* killed the|strong=\"G1537\"* Prince of|strong=\"G1537\"* life|strong=\"G2222\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, to|strong=\"G1161\"* which|strong=\"G3739\"* we|strong=\"G2249\"* are|strong=\"G1510\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 16, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1909\"* his|strong=\"G3956\"* name|strong=\"G3686\"*, his|strong=\"G3956\"* name|strong=\"G3686\"* has|strong=\"G3739\"* made|strong=\"G3956\"* this|strong=\"G3778\"* man|strong=\"G3778\"* strong|strong=\"G2532\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* see|strong=\"G1492\"* and|strong=\"G2532\"* know|strong=\"G1492\"*. Yes, the|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* is|strong=\"G3588\"* through|strong=\"G1223\"* him|strong=\"G3588\"* has|strong=\"G3739\"* given|strong=\"G1325\"* him|strong=\"G3588\"* this|strong=\"G3778\"* perfect|strong=\"G3778\"* soundness|strong=\"G3647\"* in|strong=\"G1909\"* the|strong=\"G2532\"* presence|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "“Now|strong=\"G3568\"*, brothers,+ 3:17 The word for “brothers” here may be also correctly translated “brothers and sisters” or “siblings.”* I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* did|strong=\"G2532\"* this|strong=\"G3588\"* in|strong=\"G2596\"* ignorance, as|strong=\"G5618\"* did|strong=\"G2532\"* also|strong=\"G2532\"* your|strong=\"G2532\"* rulers." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* the|strong=\"G3956\"* things|strong=\"G3956\"* which|strong=\"G3739\"* God|strong=\"G2316\"* announced|strong=\"G4293\"* by|strong=\"G1223\"* the|strong=\"G3956\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* all|strong=\"G3956\"* his|strong=\"G3956\"* prophets|strong=\"G4396\"*, that|strong=\"G3739\"* Christ|strong=\"G5547\"* should|strong=\"G2316\"* suffer|strong=\"G3958\"*, he|strong=\"G1161\"* thus|strong=\"G3779\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 19, + "text": "“Repent|strong=\"G3340\"* therefore|strong=\"G3767\"*, and|strong=\"G2532\"* turn|strong=\"G1994\"* again|strong=\"G1994\"*, that|strong=\"G3588\"* your|strong=\"G2962\"* sins may|strong=\"G2532\"* be|strong=\"G2532\"* blotted out|strong=\"G2532\"*, so|strong=\"G3767\"* that|strong=\"G3588\"* there|strong=\"G2532\"* may|strong=\"G2532\"* come|strong=\"G2064\"* times|strong=\"G2540\"* of|strong=\"G2532\"* refreshing from|strong=\"G2064\"* the|strong=\"G2532\"* presence|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* may|strong=\"G2532\"* send Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* ordained|strong=\"G2962\"* for|strong=\"G2532\"* you|strong=\"G5210\"* before|strong=\"G3588\"*," + }, + { + "verseNum": 21, + "text": "whom|strong=\"G3739\"* heaven|strong=\"G3772\"* must|strong=\"G1163\"* receive|strong=\"G1209\"* until the|strong=\"G3956\"* times|strong=\"G5550\"* of|strong=\"G1223\"* restoration of|strong=\"G1223\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, which|strong=\"G3739\"* God|strong=\"G2316\"* spoke|strong=\"G2980\"* long|strong=\"G5550\"* ago|strong=\"G5550\"* by|strong=\"G1223\"* the|strong=\"G3956\"* mouth|strong=\"G4750\"* of|strong=\"G1223\"* his|strong=\"G3956\"* holy prophets|strong=\"G4396\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G3754\"* Moses|strong=\"G3475\"* indeed|strong=\"G3303\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G3956\"* fathers, ‘The|strong=\"G3956\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* raise|strong=\"G2316\"* up|strong=\"G1537\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"* for|strong=\"G3754\"* you|strong=\"G5210\"* from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G2962\"* brothers, like|strong=\"G5613\"* me|strong=\"G1473\"*. You|strong=\"G5210\"* shall|strong=\"G2316\"* listen to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G2596\"* all|strong=\"G3956\"* things|strong=\"G3956\"* whatever|strong=\"G3745\"* he|strong=\"G3754\"* says|strong=\"G3004\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"G1161\"* will|strong=\"G1510\"* be|strong=\"G1510\"* that|strong=\"G3588\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* that|strong=\"G3588\"* will|strong=\"G1510\"* not|strong=\"G3361\"* listen to|strong=\"G1161\"* that|strong=\"G3588\"* prophet|strong=\"G4396\"* will|strong=\"G1510\"* be|strong=\"G1510\"* utterly|strong=\"G1842\"* destroyed|strong=\"G1842\"* from|strong=\"G1537\"* among|strong=\"G1537\"* the|strong=\"G3956\"* people|strong=\"G2992\"*.’+ 3:23 Deuteronomy 18:15,18-19 *" + }, + { + "verseNum": 24, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* from|strong=\"G2532\"* Samuel|strong=\"G4545\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* followed after|strong=\"G1161\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* spoken|strong=\"G2980\"*, also|strong=\"G2532\"* told|strong=\"G2980\"* of|strong=\"G2250\"* these|strong=\"G3778\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* of|strong=\"G5207\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* which|strong=\"G3739\"* God|strong=\"G2316\"* made|strong=\"G1303\"* with|strong=\"G1722\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, saying|strong=\"G3004\"* to|strong=\"G4314\"* Abraham, ‘All|strong=\"G3956\"* the|strong=\"G1722\"* families|strong=\"G3965\"* of|strong=\"G5207\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* will|strong=\"G2316\"* be|strong=\"G1510\"* blessed|strong=\"G1757\"* through|strong=\"G1722\"* your|strong=\"G2532\"* offspring.’+ 3:25 or, seed*+ 3:25 Genesis 22:18; 26:4*" + }, + { + "verseNum": 26, + "text": "God|strong=\"G2316\"*, having|strong=\"G2316\"* raised|strong=\"G2316\"* up|strong=\"G1722\"* his|strong=\"G1722\"* servant|strong=\"G3816\"* Jesus, sent|strong=\"G2316\"* him|strong=\"G3588\"* to|strong=\"G1722\"* you|strong=\"G5210\"* first|strong=\"G4413\"* to|strong=\"G1722\"* bless|strong=\"G2127\"* you|strong=\"G5210\"*, in|strong=\"G1722\"* turning|strong=\"G1722\"* away every|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G2316\"* you|strong=\"G5210\"* from|strong=\"G3588\"* your|strong=\"G1722\"* wickedness|strong=\"G4189\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"G1161\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, the|strong=\"G2532\"* priests|strong=\"G2409\"* and|strong=\"G2532\"* the|strong=\"G2532\"* captain|strong=\"G4755\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Sadducees|strong=\"G4523\"* came|strong=\"G2532\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "being|strong=\"G2532\"* upset because|strong=\"G1223\"* they|strong=\"G2532\"* taught|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"* and|strong=\"G2532\"* proclaimed|strong=\"G2605\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"* the|strong=\"G1722\"* resurrection from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* laid|strong=\"G5087\"* hands|strong=\"G5495\"* on|strong=\"G1519\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* put|strong=\"G5087\"* them|strong=\"G3588\"* in|strong=\"G1519\"* custody until|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1519\"* day|strong=\"G3588\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* was|strong=\"G1510\"* now|strong=\"G2532\"* evening|strong=\"G2073\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* many|strong=\"G4183\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard the|strong=\"G2532\"* word|strong=\"G3056\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* number of|strong=\"G3056\"* the|strong=\"G2532\"* men|strong=\"G3588\"* came|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"* about|strong=\"G5613\"* five|strong=\"G4002\"* thousand|strong=\"G5505\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* morning, their|strong=\"G2532\"* rulers, elders|strong=\"G4245\"*, and|strong=\"G2532\"* scribes|strong=\"G1122\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 6, + "text": "Annas the|strong=\"G2532\"* high|strong=\"G2532\"* priest was|strong=\"G1510\"* there|strong=\"G2532\"*, with|strong=\"G1537\"* Caiaphas|strong=\"G2533\"*, John|strong=\"G2491\"*, Alexander, and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* relatives of|strong=\"G1537\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest." + }, + { + "verseNum": 7, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* stood|strong=\"G2476\"* Peter|strong=\"G4160\"* and|strong=\"G2532\"* John|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* inquired|strong=\"G4441\"*, “By|strong=\"G1722\"* what|strong=\"G4169\"* power|strong=\"G1411\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* what|strong=\"G4169\"* name|strong=\"G3686\"*, have|strong=\"G2532\"* you|strong=\"G5210\"* done|strong=\"G4160\"* this|strong=\"G3778\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"G2532\"* Peter|strong=\"G4074\"*, filled|strong=\"G4130\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G3004\"* rulers of|strong=\"G4151\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G4151\"* Israel," + }, + { + "verseNum": 9, + "text": "if|strong=\"G1487\"* we|strong=\"G2249\"* are|strong=\"G3778\"* examined today|strong=\"G4594\"* concerning|strong=\"G1909\"* a|strong=\"G1722\"* good|strong=\"G5101\"* deed done|strong=\"G2108\"* to|strong=\"G1909\"* a|strong=\"G1722\"* crippled man|strong=\"G3778\"*, by|strong=\"G1722\"* what|strong=\"G5101\"* means|strong=\"G5101\"* this|strong=\"G3778\"* man|strong=\"G3778\"* has|strong=\"G5101\"* been healed|strong=\"G4982\"*," + }, + { + "verseNum": 10, + "text": "may|strong=\"G2532\"* it|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* of|strong=\"G1537\"* Nazareth|strong=\"G3480\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* crucified|strong=\"G4717\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, this|strong=\"G3778\"* man|strong=\"G3778\"* stands|strong=\"G3936\"* here|strong=\"G3936\"* before|strong=\"G1799\"* you|strong=\"G5210\"* whole|strong=\"G3956\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G3778\"* is|strong=\"G1510\"* ‘the|strong=\"G1519\"* stone|strong=\"G3037\"* which|strong=\"G3588\"* was|strong=\"G1510\"* regarded as|strong=\"G1519\"* worthless by|strong=\"G5259\"* you|strong=\"G5210\"*, the|strong=\"G1519\"* builders|strong=\"G3618\"*, which|strong=\"G3588\"* has|strong=\"G1096\"* become|strong=\"G1096\"* the|strong=\"G1519\"* head|strong=\"G2776\"* of|strong=\"G5259\"* the|strong=\"G1519\"* corner|strong=\"G1137\"*.’+ 4:11 Psalms 118:22*" + }, + { + "verseNum": 12, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* salvation|strong=\"G4991\"* in|strong=\"G1722\"* no|strong=\"G3756\"* one|strong=\"G3762\"* else|strong=\"G2087\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* other|strong=\"G2087\"* name|strong=\"G3686\"* under|strong=\"G5259\"* heaven|strong=\"G3772\"* that|strong=\"G3739\"* is|strong=\"G1510\"* given|strong=\"G1325\"* among|strong=\"G1722\"* men|strong=\"G3588\"*, by|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* must|strong=\"G1163\"* be|strong=\"G1510\"* saved|strong=\"G4982\"*!”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G2334\"* the|strong=\"G2532\"* boldness|strong=\"G3954\"* of|strong=\"G2532\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, and|strong=\"G2532\"* had|strong=\"G2424\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* unlearned|strong=\"G2399\"* and|strong=\"G2532\"* ignorant|strong=\"G2399\"* men|strong=\"G3588\"*, they|strong=\"G2532\"* marveled|strong=\"G2296\"*. They|strong=\"G2532\"* recognized|strong=\"G1921\"* that|strong=\"G3754\"* they|strong=\"G2532\"* had|strong=\"G2424\"* been|strong=\"G1510\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "Seeing|strong=\"G2192\"* the|strong=\"G3588\"* man|strong=\"G3762\"* who|strong=\"G3588\"* was|strong=\"G3588\"* healed|strong=\"G2323\"* standing|strong=\"G2476\"* with|strong=\"G4862\"* them|strong=\"G3588\"*, they|strong=\"G3588\"* could|strong=\"G2192\"* say nothing|strong=\"G3762\"* against|strong=\"G3762\"* it|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* commanded|strong=\"G2753\"* them|strong=\"G3588\"* to|strong=\"G4314\"* go aside out|strong=\"G1854\"* of|strong=\"G3588\"* the|strong=\"G1161\"* council|strong=\"G4892\"*, they|strong=\"G1161\"* conferred|strong=\"G4820\"* among|strong=\"G4314\"* themselves|strong=\"G1438\"*," + }, + { + "verseNum": 16, + "text": "saying|strong=\"G3004\"*, “What|strong=\"G5101\"* shall|strong=\"G2532\"* we|strong=\"G3754\"* do|strong=\"G4160\"* to|strong=\"G2532\"* these|strong=\"G3778\"* men|strong=\"G3956\"*? Because|strong=\"G3754\"* indeed|strong=\"G2532\"* a|strong=\"G1096\"* notable|strong=\"G1110\"* miracle|strong=\"G4592\"* has|strong=\"G5101\"* been|strong=\"G1096\"* done|strong=\"G4160\"* through|strong=\"G1223\"* them|strong=\"G3588\"*, as|strong=\"G2532\"* can|strong=\"G1410\"* be|strong=\"G1096\"* plainly seen by|strong=\"G1223\"* all|strong=\"G3956\"* who|strong=\"G5101\"* dwell|strong=\"G2730\"* in|strong=\"G2532\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* we|strong=\"G3754\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* deny|strong=\"G3588\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G3361\"* so|strong=\"G2443\"* that|strong=\"G2443\"* this|strong=\"G3778\"* spreads no|strong=\"G3361\"* further|strong=\"G4119\"* among|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"*, let|strong=\"G2443\"*’s threaten them|strong=\"G3588\"*, that|strong=\"G2443\"* from|strong=\"G3588\"* now on|strong=\"G1909\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G1519\"* anyone|strong=\"G3367\"* in|strong=\"G1519\"* this|strong=\"G3778\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"G2532\"* called|strong=\"G2564\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2532\"* speak|strong=\"G5350\"* at|strong=\"G1909\"* all|strong=\"G2532\"* nor|strong=\"G3366\"* teach|strong=\"G1321\"* in|strong=\"G1909\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* answered|strong=\"G3004\"* them|strong=\"G3588\"*, “Whether|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* right|strong=\"G1342\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* listen to|strong=\"G4314\"* you|strong=\"G5210\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* to|strong=\"G4314\"* God|strong=\"G2316\"*, judge|strong=\"G2919\"* for|strong=\"G4314\"* yourselves|strong=\"G1438\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* we|strong=\"G2249\"* can|strong=\"G1410\"*’t help telling|strong=\"G2980\"* the|strong=\"G2532\"* things|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* saw|strong=\"G3708\"* and|strong=\"G2532\"* heard.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G2316\"* further|strong=\"G1909\"* threatened|strong=\"G4324\"* them|strong=\"G3588\"*, they|strong=\"G1161\"* let|strong=\"G1096\"* them|strong=\"G3588\"* go, finding|strong=\"G2147\"* no|strong=\"G3367\"* way|strong=\"G1223\"* to|strong=\"G1909\"* punish|strong=\"G2849\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G3956\"* people|strong=\"G2992\"*; for|strong=\"G3754\"* everyone|strong=\"G3956\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G3754\"* that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G1096\"* done|strong=\"G1096\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* the|strong=\"G1909\"* man|strong=\"G3778\"* on|strong=\"G1909\"* whom|strong=\"G3739\"* this|strong=\"G3778\"* miracle|strong=\"G4592\"* of|strong=\"G1909\"* healing|strong=\"G2392\"* was|strong=\"G1510\"* performed|strong=\"G1096\"* was|strong=\"G1510\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* years|strong=\"G2094\"* old|strong=\"G2094\"*." + }, + { + "verseNum": 23, + "text": "Being|strong=\"G2532\"* let|strong=\"G1161\"* go|strong=\"G2064\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G4314\"* their|strong=\"G1438\"* own|strong=\"G2398\"* company|strong=\"G2398\"* and|strong=\"G2532\"* reported|strong=\"G3004\"* all|strong=\"G3745\"* that|strong=\"G3588\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* had|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, they|strong=\"G2532\"* lifted|strong=\"G2532\"* up|strong=\"G2532\"* their|strong=\"G2532\"* voice|strong=\"G5456\"* to|strong=\"G4314\"* God|strong=\"G2316\"* with|strong=\"G1722\"* one|strong=\"G3956\"* accord|strong=\"G3661\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “O Lord|strong=\"G1203\"*, you|strong=\"G4771\"* are|strong=\"G3588\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"*;" + }, + { + "verseNum": 25, + "text": "who|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G4151\"* your|strong=\"G1223\"* servant|strong=\"G3816\"* David|strong=\"G1138\"*, said|strong=\"G3004\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* take|strong=\"G2532\"* a|strong=\"G2532\"* stand|strong=\"G3936\"*," + }, + { + "verseNum": 27, + "text": "“For|strong=\"G1063\"* truly|strong=\"G1909\"*,+ 4:27 nu adds “in this city,”* both|strong=\"G2532\"* Herod|strong=\"G2264\"* and|strong=\"G2532\"* Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* against|strong=\"G1909\"* your|strong=\"G2532\"* holy servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G4771\"* anointed|strong=\"G5548\"*," + }, + { + "verseNum": 28, + "text": "to|strong=\"G2532\"* do|strong=\"G4160\"* whatever|strong=\"G3745\"* your|strong=\"G2532\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* your|strong=\"G2532\"* counsel|strong=\"G1012\"* foreordained to|strong=\"G2532\"* happen|strong=\"G1096\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"G3568\"*, Lord|strong=\"G2962\"*, look at|strong=\"G1909\"* their|strong=\"G2532\"* threats, and|strong=\"G2532\"* grant|strong=\"G1325\"* to|strong=\"G2532\"* your|strong=\"G2962\"* servants|strong=\"G1401\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* your|strong=\"G2962\"* word|strong=\"G3056\"* with|strong=\"G3326\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*," + }, + { + "verseNum": 30, + "text": "while|strong=\"G1722\"* you|strong=\"G4771\"* stretch|strong=\"G1614\"* out|strong=\"G2532\"* your|strong=\"G1223\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* heal|strong=\"G2392\"*; and|strong=\"G2532\"* that|strong=\"G3588\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* may|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* through|strong=\"G1223\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* your|strong=\"G1223\"* holy Servant|strong=\"G3816\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 31, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* prayed|strong=\"G1189\"*, the|strong=\"G1722\"* place|strong=\"G5117\"* was|strong=\"G1510\"* shaken|strong=\"G4531\"* where|strong=\"G3739\"* they|strong=\"G2532\"* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* filled|strong=\"G4130\"* with|strong=\"G3326\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* with|strong=\"G3326\"* boldness|strong=\"G3954\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* were|strong=\"G1510\"* of|strong=\"G2532\"* one|strong=\"G1520\"* heart|strong=\"G2588\"* and|strong=\"G2532\"* soul|strong=\"G5590\"*. Not|strong=\"G3761\"* one|strong=\"G1520\"* of|strong=\"G2532\"* them|strong=\"G3588\"* claimed|strong=\"G3004\"* that|strong=\"G3588\"* anything|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3956\"* which|strong=\"G3588\"* he|strong=\"G2532\"* possessed was|strong=\"G1510\"* his|strong=\"G3956\"* own|strong=\"G2398\"*, but|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G2532\"* common|strong=\"G2839\"*." + }, + { + "verseNum": 33, + "text": "With|strong=\"G2532\"* great|strong=\"G3173\"* power|strong=\"G1411\"*, the|strong=\"G2532\"* apostles gave|strong=\"G2532\"* their|strong=\"G1438\"* testimony|strong=\"G3142\"* of|strong=\"G2532\"* the|strong=\"G2532\"* resurrection of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*. Great|strong=\"G3173\"* grace|strong=\"G5485\"* was|strong=\"G1510\"* on|strong=\"G1909\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* neither|strong=\"G3761\"* was|strong=\"G1510\"* there|strong=\"G1063\"* among|strong=\"G1722\"* them|strong=\"G3588\"* any|strong=\"G5100\"* who|strong=\"G3588\"* lacked|strong=\"G1729\"*, for|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* owners|strong=\"G2935\"* of|strong=\"G5100\"* lands|strong=\"G5564\"* or|strong=\"G2228\"* houses|strong=\"G3614\"* sold|strong=\"G4453\"* them|strong=\"G3588\"*, and|strong=\"G5092\"* brought|strong=\"G5342\"* the|strong=\"G1722\"* proceeds|strong=\"G5092\"* of|strong=\"G5100\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* were|strong=\"G1510\"* sold|strong=\"G4453\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* at|strong=\"G3844\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*; and|strong=\"G2532\"* distribution was|strong=\"G3588\"* made|strong=\"G5087\"* to|strong=\"G2532\"* each|strong=\"G1538\"*, according|strong=\"G1538\"* as|strong=\"G1161\"* anyone|strong=\"G5100\"* had|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 36, + "text": "Joses, who|strong=\"G3739\"* by|strong=\"G3739\"* the|strong=\"G1161\"* apostles was|strong=\"G1510\"* also|strong=\"G1161\"* called|strong=\"G1941\"* Barnabas (which|strong=\"G3739\"* is|strong=\"G1510\"*, being|strong=\"G1510\"* interpreted|strong=\"G3177\"*, Son|strong=\"G5207\"* of|strong=\"G5207\"* Encouragement|strong=\"G3874\"*), a|strong=\"G1510\"* Levite|strong=\"G3019\"*, a|strong=\"G1510\"* man|strong=\"G3739\"* of|strong=\"G5207\"* Cyprus|strong=\"G2953\"* by|strong=\"G3739\"* race|strong=\"G1085\"*," + }, + { + "verseNum": 37, + "text": "having|strong=\"G2532\"* a|strong=\"G2532\"* field, sold|strong=\"G4453\"* it|strong=\"G2532\"* and|strong=\"G2532\"* brought|strong=\"G5342\"* the|strong=\"G2532\"* money|strong=\"G5536\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* at|strong=\"G4314\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* a|strong=\"G1161\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Ananias, with|strong=\"G4862\"* Sapphira|strong=\"G4551\"* his|strong=\"G3588\"* wife|strong=\"G1135\"*, sold|strong=\"G4453\"* a|strong=\"G1161\"* possession|strong=\"G2933\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* kept|strong=\"G5087\"* back|strong=\"G3557\"* part|strong=\"G3313\"* of|strong=\"G2532\"* the|strong=\"G2532\"* price|strong=\"G5092\"*, his|strong=\"G2532\"* wife|strong=\"G1135\"* also|strong=\"G2532\"* being|strong=\"G2532\"* aware|strong=\"G4894\"* of|strong=\"G2532\"* it|strong=\"G2532\"*, then|strong=\"G2532\"* brought|strong=\"G5342\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* part|strong=\"G3313\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* it|strong=\"G2532\"* at|strong=\"G3844\"* the|strong=\"G2532\"* apostles’ feet|strong=\"G4228\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Ananias, why|strong=\"G5101\"* has|strong=\"G5101\"* Satan|strong=\"G4567\"* filled|strong=\"G4137\"* your|strong=\"G1223\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* lie|strong=\"G5574\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* to|strong=\"G2532\"* keep|strong=\"G3557\"* back|strong=\"G3557\"* part|strong=\"G1161\"* of|strong=\"G4151\"* the|strong=\"G2532\"* price|strong=\"G5092\"* of|strong=\"G4151\"* the|strong=\"G2532\"* land|strong=\"G5564\"*?" + }, + { + "verseNum": 4, + "text": "While|strong=\"G1722\"* you|strong=\"G4771\"* kept|strong=\"G5087\"* it|strong=\"G2532\"*, didn’t|strong=\"G3588\"* it|strong=\"G2532\"* remain|strong=\"G3306\"* your|strong=\"G4674\"* own|strong=\"G4674\"*? After|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* sold|strong=\"G4097\"*, wasn’t|strong=\"G3588\"* it|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G4674\"* power|strong=\"G1849\"*? How|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2532\"* conceived|strong=\"G5087\"* this|strong=\"G3778\"* thing|strong=\"G3778\"* in|strong=\"G1722\"* your|strong=\"G4674\"* heart|strong=\"G2588\"*? You|strong=\"G4771\"* haven’t|strong=\"G3588\"* lied|strong=\"G5574\"* to|strong=\"G2532\"* men|strong=\"G3778\"*, but|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 5, + "text": "Ananias, hearing these|strong=\"G3778\"* words|strong=\"G3056\"*, fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* died|strong=\"G1634\"*. Great|strong=\"G3173\"* fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* young|strong=\"G3501\"* men|strong=\"G3501\"* arose and|strong=\"G2532\"* wrapped|strong=\"G4958\"* him|strong=\"G3588\"* up|strong=\"G4958\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* carried|strong=\"G1627\"* him|strong=\"G3588\"* out|strong=\"G2532\"* and|strong=\"G2532\"* buried|strong=\"G2290\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "About|strong=\"G5613\"* three|strong=\"G5140\"* hours|strong=\"G5610\"* later, his|strong=\"G2532\"* wife|strong=\"G1135\"*, not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3588\"* had|strong=\"G2532\"* happened|strong=\"G1096\"*, came|strong=\"G1096\"* in|strong=\"G1525\"*." + }, + { + "verseNum": 8, + "text": "Peter|strong=\"G4074\"* answered|strong=\"G3004\"* her|strong=\"G1438\"*, “Tell|strong=\"G3004\"* me|strong=\"G1473\"* whether|strong=\"G1487\"* you|strong=\"G1487\"* sold the|strong=\"G1161\"* land|strong=\"G5564\"* for|strong=\"G4314\"* so|strong=\"G1161\"* much|strong=\"G5118\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* asked|strong=\"G3985\"* her|strong=\"G1438\"*, “How|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2532\"* agreed|strong=\"G4856\"* together|strong=\"G1909\"* to|strong=\"G4314\"* tempt|strong=\"G3985\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*? Behold|strong=\"G2400\"*, the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G5101\"* have|strong=\"G2532\"* buried|strong=\"G2290\"* your|strong=\"G2962\"* husband are|strong=\"G3588\"* at|strong=\"G1909\"* the|strong=\"G2532\"* door|strong=\"G2374\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G5101\"* carry|strong=\"G1627\"* you|strong=\"G5210\"* out|strong=\"G2532\"*.”" + }, + { + "verseNum": 10, + "text": "She|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* immediately|strong=\"G3916\"* at|strong=\"G4314\"* his|strong=\"G1438\"* feet|strong=\"G4228\"* and|strong=\"G2532\"* died|strong=\"G1634\"*. The|strong=\"G2532\"* young|strong=\"G3495\"* men|strong=\"G3495\"* came|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* found|strong=\"G2147\"* her|strong=\"G1438\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* carried|strong=\"G1627\"* her|strong=\"G1438\"* out|strong=\"G2532\"* and|strong=\"G2532\"* buried|strong=\"G2290\"* her|strong=\"G1438\"* by|strong=\"G4314\"* her|strong=\"G1438\"* husband." + }, + { + "verseNum": 11, + "text": "Great|strong=\"G3173\"* fear|strong=\"G5401\"* came|strong=\"G1096\"* on|strong=\"G1909\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* all|strong=\"G3956\"* who|strong=\"G3588\"* heard these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "By|strong=\"G1223\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* the|strong=\"G1722\"* apostles many|strong=\"G4183\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* were|strong=\"G1510\"* done|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G2532\"* with|strong=\"G1722\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* in|strong=\"G1722\"* Solomon|strong=\"G4672\"*’s porch|strong=\"G4745\"*." + }, + { + "verseNum": 13, + "text": "None|strong=\"G3762\"* of|strong=\"G2992\"* the|strong=\"G1161\"* rest|strong=\"G3062\"* dared|strong=\"G5111\"* to|strong=\"G1161\"* join|strong=\"G2853\"* them|strong=\"G3588\"*; however|strong=\"G1161\"*, the|strong=\"G1161\"* people|strong=\"G2992\"* honored them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "More|strong=\"G3123\"* believers|strong=\"G4100\"* were|strong=\"G3588\"* added|strong=\"G4369\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, multitudes|strong=\"G4128\"* of|strong=\"G2532\"* both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G2532\"* even|strong=\"G2532\"* carried|strong=\"G1627\"* out|strong=\"G2532\"* the|strong=\"G2532\"* sick into|strong=\"G1519\"* the|strong=\"G2532\"* streets|strong=\"G4113\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* them|strong=\"G3588\"* on|strong=\"G1909\"* cots and|strong=\"G2532\"* mattresses, so|strong=\"G2443\"* that|strong=\"G2443\"* as|strong=\"G1519\"* Peter|strong=\"G4074\"* came|strong=\"G2064\"* by|strong=\"G1909\"*, at|strong=\"G1909\"* least|strong=\"G2579\"* his|strong=\"G1519\"* shadow|strong=\"G4639\"* might|strong=\"G2532\"* overshadow|strong=\"G1982\"* some|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* multitude|strong=\"G4128\"* also|strong=\"G2532\"* came|strong=\"G4905\"* together|strong=\"G4905\"* from|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* around|strong=\"G4038\"* Jerusalem|strong=\"G2419\"*, bringing|strong=\"G5342\"* sick|strong=\"G5342\"* people|strong=\"G4128\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* tormented by|strong=\"G5259\"* unclean spirits|strong=\"G4151\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G2532\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest rose|strong=\"G2532\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* (which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G2532\"* sect of|strong=\"G2532\"* the|strong=\"G2532\"* Sadducees|strong=\"G4523\"*), and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* filled|strong=\"G4130\"* with|strong=\"G4862\"* jealousy|strong=\"G2205\"*" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* laid|strong=\"G5087\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* the|strong=\"G1722\"* apostles, then|strong=\"G2532\"* put|strong=\"G5087\"* them|strong=\"G3588\"* in|strong=\"G1722\"* public|strong=\"G1219\"* custody." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* an|strong=\"G1161\"* angel of|strong=\"G1223\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* opened the|strong=\"G1161\"* prison|strong=\"G5438\"* doors|strong=\"G2374\"* by|strong=\"G1223\"* night|strong=\"G3571\"*, and|strong=\"G1161\"* brought|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"* and|strong=\"G1161\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 20, + "text": "“Go|strong=\"G4198\"* stand|strong=\"G2476\"* and|strong=\"G2532\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* to|strong=\"G2532\"* the|strong=\"G1722\"* people|strong=\"G2992\"* all|strong=\"G3956\"* the|strong=\"G1722\"* words|strong=\"G4487\"* of|strong=\"G2532\"* this|strong=\"G3778\"* life|strong=\"G2222\"*.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* about|strong=\"G1519\"* daybreak|strong=\"G3722\"* and|strong=\"G2532\"* taught|strong=\"G1321\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G4862\"* him|strong=\"G3588\"* came|strong=\"G3854\"* and|strong=\"G2532\"* called|strong=\"G4779\"* the|strong=\"G2532\"* council|strong=\"G4892\"* together|strong=\"G4779\"*, with|strong=\"G4862\"* all|strong=\"G3956\"* the|strong=\"G2532\"* senate|strong=\"G1087\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* sent|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* prison|strong=\"G1201\"* to|strong=\"G1519\"* have|strong=\"G2532\"* them|strong=\"G3588\"* brought|strong=\"G1161\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* officers|strong=\"G5257\"* who|strong=\"G3588\"* came|strong=\"G3854\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*. They|strong=\"G1161\"* returned and|strong=\"G1161\"* reported," + }, + { + "verseNum": 23, + "text": "“We|strong=\"G3754\"* found|strong=\"G2147\"* the|strong=\"G1722\"* prison|strong=\"G1201\"* shut|strong=\"G2808\"* and|strong=\"G2532\"* locked|strong=\"G2808\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* guards|strong=\"G5441\"* standing|strong=\"G2476\"* before|strong=\"G1909\"* the|strong=\"G1722\"* doors|strong=\"G2374\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* we|strong=\"G3754\"* opened them|strong=\"G3588\"*, we|strong=\"G3754\"* found|strong=\"G2147\"* no|strong=\"G3762\"* one|strong=\"G3762\"* inside|strong=\"G2080\"*!”" + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest, the|strong=\"G2532\"* captain|strong=\"G4755\"* of|strong=\"G4012\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4755\"* priests heard these|strong=\"G3778\"* words|strong=\"G3056\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* very|strong=\"G2532\"* perplexed|strong=\"G1280\"* about|strong=\"G4012\"* them|strong=\"G3588\"* and|strong=\"G2532\"* what|strong=\"G5101\"* might|strong=\"G2532\"* become|strong=\"G1096\"* of|strong=\"G4012\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 25, + "text": "One|strong=\"G5100\"* came|strong=\"G3854\"* and|strong=\"G2532\"* told them|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, the|strong=\"G1722\"* men|strong=\"G5100\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* put|strong=\"G5087\"* in|strong=\"G1722\"* prison|strong=\"G5438\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, standing|strong=\"G2476\"* and|strong=\"G2532\"* teaching|strong=\"G1321\"* the|strong=\"G1722\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* the|strong=\"G3588\"* captain|strong=\"G4755\"* went|strong=\"G5119\"* with|strong=\"G3326\"* the|strong=\"G3588\"* officers|strong=\"G5257\"*, and|strong=\"G2992\"* brought them|strong=\"G3588\"* without|strong=\"G3361\"* violence, for|strong=\"G1063\"* they|strong=\"G3588\"* were|strong=\"G3588\"* afraid|strong=\"G5399\"* that|strong=\"G2443\"* the|strong=\"G3588\"* people|strong=\"G2992\"* might stone|strong=\"G3034\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G1161\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* set|strong=\"G2476\"* them|strong=\"G3588\"* before|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*. The|strong=\"G1722\"* high|strong=\"G2532\"* priest questioned|strong=\"G1905\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "saying|strong=\"G3004\"*, “Didn’t|strong=\"G3588\"* we|strong=\"G2249\"* strictly command|strong=\"G3853\"* you|strong=\"G5210\"* not|strong=\"G3361\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* in|strong=\"G1909\"* this|strong=\"G3778\"* name|strong=\"G3686\"*? Behold|strong=\"G2400\"*, you|strong=\"G5210\"* have|strong=\"G2532\"* filled|strong=\"G4137\"* Jerusalem|strong=\"G2419\"* with|strong=\"G2532\"* your|strong=\"G2532\"* teaching|strong=\"G1321\"*, and|strong=\"G2532\"* intend|strong=\"G1014\"* to|strong=\"G2532\"* bring|strong=\"G1863\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s blood on|strong=\"G1909\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* the|strong=\"G2532\"* apostles answered|strong=\"G3004\"*, “We|strong=\"G2532\"* must|strong=\"G1163\"* obey|strong=\"G3980\"* God|strong=\"G2316\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G1909\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* killed, hanging|strong=\"G2910\"* him|strong=\"G3588\"* on|strong=\"G1909\"* a|strong=\"G1909\"* tree|strong=\"G3586\"*." + }, + { + "verseNum": 31, + "text": "God|strong=\"G2316\"* exalted|strong=\"G5312\"* him|strong=\"G3588\"* with|strong=\"G2532\"* his|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* to|strong=\"G2532\"* be|strong=\"G2532\"* a|strong=\"G2532\"* Prince and|strong=\"G2532\"* a|strong=\"G2532\"* Savior|strong=\"G4990\"*, to|strong=\"G2532\"* give|strong=\"G1325\"* repentance|strong=\"G3341\"* to|strong=\"G2532\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* remission of|strong=\"G2316\"* sins." + }, + { + "verseNum": 32, + "text": "We|strong=\"G2249\"* are|strong=\"G1510\"* his|strong=\"G2532\"* witnesses|strong=\"G3144\"* of|strong=\"G4151\"* these|strong=\"G3778\"* things|strong=\"G3778\"*; and|strong=\"G2532\"* so|strong=\"G2532\"* also|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* given|strong=\"G1325\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* obey|strong=\"G3980\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 33, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"*, were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* heart, and|strong=\"G2532\"* were|strong=\"G3588\"* determined|strong=\"G1011\"* to|strong=\"G2532\"* kill them|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* one|strong=\"G5100\"* stood|strong=\"G3588\"* up|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, a|strong=\"G1722\"* Pharisee|strong=\"G5330\"* named|strong=\"G3686\"* Gamaliel|strong=\"G1059\"*, a|strong=\"G1722\"* teacher|strong=\"G3547\"* of|strong=\"G3686\"* the|strong=\"G1722\"* law|strong=\"G3547\"*, honored by|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* to|strong=\"G1722\"* put|strong=\"G4160\"* the|strong=\"G1722\"* apostles out|strong=\"G1854\"* for|strong=\"G1161\"* a|strong=\"G1722\"* little|strong=\"G1024\"* while|strong=\"G1722\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"G3778\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G3004\"* men|strong=\"G3778\"* of|strong=\"G1909\"* Israel|strong=\"G2475\"*, be|strong=\"G3195\"* careful|strong=\"G4337\"* concerning|strong=\"G1909\"* these|strong=\"G3778\"* men|strong=\"G3778\"*, what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G4314\"* do|strong=\"G4238\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* before|strong=\"G4253\"* these|strong=\"G3778\"* days|strong=\"G2250\"* Theudas|strong=\"G2333\"* rose|strong=\"G2532\"* up|strong=\"G1519\"*, making|strong=\"G2532\"* himself|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G1096\"* somebody|strong=\"G5100\"*; to|strong=\"G1519\"* whom|strong=\"G3739\"* a|strong=\"G1096\"* number of|strong=\"G2250\"* men|strong=\"G3956\"*, about|strong=\"G5613\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"*, joined|strong=\"G1096\"* themselves|strong=\"G1438\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* slain; and|strong=\"G2532\"* all|strong=\"G3956\"*, as|strong=\"G5613\"* many|strong=\"G3745\"* as|strong=\"G5613\"* obeyed|strong=\"G3982\"* him|strong=\"G3588\"*, were|strong=\"G1510\"* dispersed|strong=\"G1262\"* and|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G1519\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 37, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, Judas|strong=\"G2455\"* of|strong=\"G2250\"* Galilee|strong=\"G1057\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* enrollment, and|strong=\"G2532\"* drew|strong=\"G2532\"* away|strong=\"G3326\"* some|strong=\"G3588\"* people|strong=\"G2992\"* after|strong=\"G3326\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* also|strong=\"G2532\"* perished, and|strong=\"G2532\"* all|strong=\"G3956\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* obeyed|strong=\"G3982\"* him|strong=\"G3588\"*, were|strong=\"G3588\"* scattered|strong=\"G1287\"* abroad|strong=\"G1287\"*." + }, + { + "verseNum": 38, + "text": "Now|strong=\"G3568\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"*, withdraw from|strong=\"G1537\"* these|strong=\"G3778\"* men|strong=\"G3778\"* and|strong=\"G2532\"* leave them|strong=\"G3588\"* alone|strong=\"G1438\"*. For|strong=\"G3754\"* if|strong=\"G1437\"* this|strong=\"G3778\"* counsel|strong=\"G1012\"* or|strong=\"G2228\"* this|strong=\"G3778\"* work|strong=\"G2041\"* is|strong=\"G1510\"* of|strong=\"G1537\"* men|strong=\"G3778\"*, it|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* overthrown|strong=\"G2647\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, you|strong=\"G1487\"* will|strong=\"G2316\"* not|strong=\"G3756\"* be|strong=\"G1510\"* able|strong=\"G1410\"* to|strong=\"G2532\"* overthrow|strong=\"G2647\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* you|strong=\"G1487\"* would|strong=\"G2316\"* be|strong=\"G1510\"* found|strong=\"G2147\"* even|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* fighting|strong=\"G2314\"* against|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* agreed|strong=\"G3982\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. Summoning|strong=\"G4341\"* the|strong=\"G2532\"* apostles, they|strong=\"G2532\"* beat|strong=\"G1194\"* them|strong=\"G3588\"* and|strong=\"G2532\"* commanded|strong=\"G3853\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* in|strong=\"G1909\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 41, + "text": "They|strong=\"G3588\"* therefore|strong=\"G3767\"* departed|strong=\"G4198\"* from|strong=\"G3588\"* the|strong=\"G3588\"* presence|strong=\"G4383\"* of|strong=\"G3686\"* the|strong=\"G3588\"* council|strong=\"G4892\"*, rejoicing|strong=\"G5463\"* that|strong=\"G3754\"* they|strong=\"G3588\"* were|strong=\"G3588\"* counted worthy|strong=\"G2661\"* to|strong=\"G4198\"* suffer dishonor for|strong=\"G3754\"* Jesus|strong=\"G4198\"*’ name|strong=\"G3686\"*." + }, + { + "verseNum": 42, + "text": "Every|strong=\"G3956\"* day|strong=\"G2250\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2532\"* at|strong=\"G1722\"* home|strong=\"G3624\"*, they|strong=\"G2532\"* never|strong=\"G3756\"* stopped|strong=\"G3973\"* teaching|strong=\"G1321\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* number|strong=\"G4129\"* of|strong=\"G2250\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* was|strong=\"G1096\"* multiplying|strong=\"G4129\"*, a|strong=\"G1096\"* complaint|strong=\"G1112\"* arose|strong=\"G1096\"* from|strong=\"G3588\"* the|strong=\"G1722\"* Hellenists+ 6:1 The Hellenists used Greek language and culture, even though they were also of Hebrew descent.* against|strong=\"G4314\"* the|strong=\"G1722\"* Hebrews|strong=\"G1445\"*, because|strong=\"G3754\"* their|strong=\"G1722\"* widows|strong=\"G5503\"* were|strong=\"G3588\"* neglected|strong=\"G3865\"* in|strong=\"G1722\"* the|strong=\"G1722\"* daily|strong=\"G2250\"* service|strong=\"G1248\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1161\"* twelve|strong=\"G1427\"* summoned|strong=\"G4341\"* the|strong=\"G1161\"* multitude|strong=\"G4128\"* of|strong=\"G3056\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* appropriate for|strong=\"G1161\"* us|strong=\"G3004\"* to|strong=\"G3004\"* forsake the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* and|strong=\"G1161\"* serve|strong=\"G1247\"* tables|strong=\"G5132\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G1161\"*, select|strong=\"G1980\"* from|strong=\"G1537\"* among|strong=\"G1537\"* you|strong=\"G5210\"*, brothers, seven|strong=\"G2033\"* men|strong=\"G3778\"* of|strong=\"G1537\"* good|strong=\"G3588\"* report|strong=\"G3140\"*, full|strong=\"G4134\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G1537\"* wisdom|strong=\"G4678\"*, whom|strong=\"G3739\"* we|strong=\"G3739\"* may|strong=\"G2532\"* appoint|strong=\"G2525\"* over|strong=\"G1909\"* this|strong=\"G3778\"* business|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* will|strong=\"G2532\"* continue|strong=\"G2532\"* steadfastly in|strong=\"G2532\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"*.”" + }, + { + "verseNum": 5, + "text": "These|strong=\"G3956\"* words|strong=\"G3056\"* pleased the|strong=\"G2532\"* whole|strong=\"G3956\"* multitude|strong=\"G4128\"*. They|strong=\"G2532\"* chose|strong=\"G1586\"* Stephen|strong=\"G4736\"*, a|strong=\"G2532\"* man|strong=\"G3956\"* full|strong=\"G4134\"* of|strong=\"G3056\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, Philip|strong=\"G5376\"*, Prochorus|strong=\"G4402\"*, Nicanor|strong=\"G3527\"*, Timon|strong=\"G5096\"*, Parmenas|strong=\"G3937\"*, and|strong=\"G2532\"* Nicolaus, a|strong=\"G2532\"* proselyte|strong=\"G4339\"* of|strong=\"G3056\"* Antioch," + }, + { + "verseNum": 6, + "text": "whom|strong=\"G3739\"* they|strong=\"G2532\"* set|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* apostles. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* prayed|strong=\"G4336\"*, they|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* increased|strong=\"G4129\"* and|strong=\"G2532\"* the|strong=\"G1722\"* number|strong=\"G3793\"* of|strong=\"G3056\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* greatly|strong=\"G4183\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. A|strong=\"G2532\"* great|strong=\"G4183\"* company|strong=\"G3793\"* of|strong=\"G3056\"* the|strong=\"G1722\"* priests|strong=\"G2409\"* were|strong=\"G3588\"* obedient|strong=\"G5219\"* to|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "Stephen|strong=\"G4736\"*, full|strong=\"G4134\"* of|strong=\"G2532\"* faith and|strong=\"G2532\"* power|strong=\"G1411\"*, performed|strong=\"G4160\"* great|strong=\"G3173\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* called|strong=\"G3004\"* “The|strong=\"G2532\"* Libertines|strong=\"G3032\"*”, and|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Cyrenians|strong=\"G2956\"*, of|strong=\"G1537\"* the|strong=\"G2532\"* Alexandrians, and|strong=\"G2532\"* of|strong=\"G1537\"* those|strong=\"G3588\"* of|strong=\"G1537\"* Cilicia|strong=\"G2791\"* and|strong=\"G2532\"* Asia|strong=\"G3588\"* arose, disputing|strong=\"G4802\"* with|strong=\"G1537\"* Stephen|strong=\"G4736\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* weren’t|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G2532\"* withstand the|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* by|strong=\"G2532\"* which|strong=\"G3739\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* secretly|strong=\"G5260\"* induced|strong=\"G5260\"* men|strong=\"G3588\"* to|strong=\"G1519\"* say|strong=\"G3004\"*, “We|strong=\"G3754\"* have|strong=\"G2532\"* heard him|strong=\"G3588\"* speak|strong=\"G2980\"* blasphemous words|strong=\"G4487\"* against|strong=\"G1519\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* scribes|strong=\"G1122\"*, and|strong=\"G2532\"* came|strong=\"G2532\"* against|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seized|strong=\"G4884\"* him|strong=\"G3588\"*, then|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* council|strong=\"G4892\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* set|strong=\"G2476\"* up|strong=\"G2476\"* false|strong=\"G5571\"* witnesses|strong=\"G3144\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* never|strong=\"G3756\"* stops speaking|strong=\"G2980\"* blasphemous words|strong=\"G4487\"* against|strong=\"G2596\"* this|strong=\"G3778\"* holy place|strong=\"G5117\"* and|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* have|strong=\"G2532\"* heard him|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G3754\"* this|strong=\"G3778\"* Jesus|strong=\"G2424\"* of|strong=\"G2532\"* Nazareth|strong=\"G3480\"* will|strong=\"G2532\"* destroy|strong=\"G2647\"* this|strong=\"G3778\"* place|strong=\"G5117\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* change the|strong=\"G2532\"* customs|strong=\"G1485\"* which|strong=\"G3739\"* Moses|strong=\"G3475\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* us|strong=\"G3004\"*.”" + }, + { + "verseNum": 15, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* sat|strong=\"G2516\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, fastening their|strong=\"G2532\"* eyes on|strong=\"G1722\"* him|strong=\"G3588\"*, saw|strong=\"G3708\"* his|strong=\"G3956\"* face|strong=\"G4383\"* like|strong=\"G5616\"* it|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G2532\"* an|strong=\"G2532\"* angel." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1161\"* high priest said|strong=\"G3004\"*, “Are|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* so|strong=\"G3779\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* said|strong=\"G5346\"*, “Brothers and|strong=\"G2532\"* fathers|strong=\"G3962\"*, listen. The|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* glory|strong=\"G1391\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* our|strong=\"G2316\"* father|strong=\"G3962\"* Abraham when|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Mesopotamia|strong=\"G3318\"*, before|strong=\"G4250\"* he|strong=\"G2532\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Haran|strong=\"G5488\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, ‘Get|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* your|strong=\"G2532\"* land|strong=\"G1093\"* and|strong=\"G2532\"* away|strong=\"G1831\"* from|strong=\"G1537\"* your|strong=\"G2532\"* relatives|strong=\"G4772\"*, and|strong=\"G2532\"* come|strong=\"G1831\"* into|strong=\"G1519\"* a|strong=\"G2532\"* land|strong=\"G1093\"* which|strong=\"G3739\"* I|strong=\"G3739\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"*.’+ 7:3 Genesis 12:1*" + }, + { + "verseNum": 4, + "text": "Then|strong=\"G5119\"* he|strong=\"G3739\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Chaldaeans and|strong=\"G3962\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Haran|strong=\"G5488\"*. From|strong=\"G1537\"* there|strong=\"G2547\"*, when|strong=\"G1722\"* his|strong=\"G1519\"* father|strong=\"G3962\"* was|strong=\"G3588\"* dead, God|strong=\"G2730\"* moved him|strong=\"G3588\"* into|strong=\"G1519\"* this|strong=\"G3778\"* land|strong=\"G1093\"* where|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G3588\"* now|strong=\"G3568\"* living|strong=\"G2730\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* no|strong=\"G3756\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, no|strong=\"G3756\"*, not|strong=\"G3756\"* so|strong=\"G2532\"* much as|strong=\"G1519\"* to|strong=\"G1519\"* set|strong=\"G2532\"* his|strong=\"G1438\"* foot|strong=\"G4228\"* on|strong=\"G1722\"*. He|strong=\"G2532\"* promised|strong=\"G1861\"* that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G2532\"* give|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1519\"* a|strong=\"G2532\"* possession|strong=\"G2697\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* his|strong=\"G1438\"* offspring after|strong=\"G3326\"* him|strong=\"G3588\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* still had|strong=\"G2532\"* no|strong=\"G3756\"* child|strong=\"G5043\"*." + }, + { + "verseNum": 6, + "text": "God|strong=\"G2316\"* spoke|strong=\"G2980\"* in|strong=\"G1722\"* this|strong=\"G3588\"* way|strong=\"G3779\"*: that|strong=\"G3754\"* his|strong=\"G1722\"* offspring would|strong=\"G2316\"* live|strong=\"G2532\"* as|strong=\"G1722\"* aliens|strong=\"G3941\"* in|strong=\"G1722\"* a|strong=\"G2532\"* strange land|strong=\"G1093\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* would|strong=\"G2316\"* be|strong=\"G1510\"* enslaved|strong=\"G1402\"* and|strong=\"G2532\"* mistreated|strong=\"G2559\"* for|strong=\"G3754\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 7, + "text": "‘I|strong=\"G1473\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* nation|strong=\"G1484\"* to|strong=\"G2532\"* which|strong=\"G3739\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* in|strong=\"G1722\"* bondage|strong=\"G1398\"*,’ said|strong=\"G3004\"* God|strong=\"G2316\"*, ‘and|strong=\"G2532\"* after|strong=\"G3326\"* that|strong=\"G3739\"* they|strong=\"G2532\"* will|strong=\"G2316\"* come|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* serve|strong=\"G1398\"* me|strong=\"G1473\"* in|strong=\"G1722\"* this|strong=\"G3778\"* place|strong=\"G5117\"*.’+ 7:7 Genesis 15:13-14*" + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* of|strong=\"G2250\"* circumcision|strong=\"G4061\"*. So|strong=\"G3779\"* Abraham became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* circumcised|strong=\"G4059\"* him|strong=\"G3588\"* the|strong=\"G2532\"* eighth|strong=\"G3590\"* day|strong=\"G2250\"*. Isaac|strong=\"G2464\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* Jacob|strong=\"G2384\"*, and|strong=\"G2532\"* Jacob|strong=\"G2384\"* became|strong=\"G1080\"* the|strong=\"G2532\"* father|strong=\"G1080\"* of|strong=\"G2250\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* patriarchs|strong=\"G3966\"*." + }, + { + "verseNum": 9, + "text": "“The|strong=\"G2532\"* patriarchs|strong=\"G3966\"*, moved with|strong=\"G3326\"* jealousy against|strong=\"G1519\"* Joseph|strong=\"G2501\"*, sold|strong=\"G2532\"* him|strong=\"G3588\"* into|strong=\"G1519\"* Egypt. God|strong=\"G2316\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* delivered|strong=\"G1807\"* him|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* all|strong=\"G3956\"* his|strong=\"G3956\"* afflictions|strong=\"G2347\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* favor|strong=\"G5485\"* and|strong=\"G2532\"* wisdom|strong=\"G4678\"* before|strong=\"G1909\"* Pharaoh|strong=\"G5328\"*, king|strong=\"G3588\"* of|strong=\"G1537\"* Egypt. He|strong=\"G2532\"* made|strong=\"G2525\"* him|strong=\"G3588\"* governor|strong=\"G2233\"* over|strong=\"G1909\"* Egypt and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* a|strong=\"G2532\"* famine|strong=\"G3042\"* came|strong=\"G2064\"* over|strong=\"G1909\"* all|strong=\"G3650\"* the|strong=\"G2532\"* land of|strong=\"G2532\"* Egypt and|strong=\"G2532\"* Canaan|strong=\"G5477\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* affliction|strong=\"G2347\"*. Our|strong=\"G2532\"* fathers|strong=\"G3962\"* found|strong=\"G2147\"* no|strong=\"G3756\"* food|strong=\"G5527\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Jacob|strong=\"G2384\"* heard that|strong=\"G3588\"* there|strong=\"G1161\"* was|strong=\"G1510\"* grain|strong=\"G4621\"* in|strong=\"G1519\"* Egypt, he|strong=\"G1161\"* sent|strong=\"G1821\"* out|strong=\"G1821\"* our|strong=\"G1519\"* fathers|strong=\"G3962\"* the|strong=\"G1519\"* first|strong=\"G4413\"* time|strong=\"G4413\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1208\"* time|strong=\"G1208\"* Joseph|strong=\"G2501\"* was|strong=\"G1096\"* made|strong=\"G1096\"* known|strong=\"G5318\"* to|strong=\"G2532\"* his|strong=\"G1722\"* brothers, and|strong=\"G2532\"* Joseph|strong=\"G2501\"*’s family|strong=\"G1085\"* was|strong=\"G1096\"* revealed|strong=\"G5318\"* to|strong=\"G2532\"* Pharaoh|strong=\"G5328\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"G2501\"* sent|strong=\"G2532\"* and|strong=\"G2532\"* summoned Jacob|strong=\"G2384\"* his|strong=\"G3956\"* father|strong=\"G3962\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* relatives|strong=\"G4772\"*, seventy-five|strong=\"G1440\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 15, + "text": "Jacob|strong=\"G2384\"* went|strong=\"G2597\"* down|strong=\"G2597\"* into|strong=\"G1519\"* Egypt and|strong=\"G2532\"* he|strong=\"G2532\"* died|strong=\"G5053\"*, himself|strong=\"G1519\"* and|strong=\"G2532\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* brought|strong=\"G2532\"* back|strong=\"G1519\"* to|strong=\"G1519\"* Shechem|strong=\"G4966\"* and|strong=\"G2532\"* laid|strong=\"G5087\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tomb|strong=\"G3418\"* that|strong=\"G3739\"* Abraham bought|strong=\"G5608\"* for|strong=\"G1519\"* a|strong=\"G2532\"* price|strong=\"G5092\"* in|strong=\"G1722\"* silver from|strong=\"G3844\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Hamor|strong=\"G1697\"* of|strong=\"G5207\"* Shechem|strong=\"G4966\"*." + }, + { + "verseNum": 17, + "text": "“But|strong=\"G1161\"* as|strong=\"G2531\"* the|strong=\"G1722\"* time|strong=\"G5550\"* of|strong=\"G2316\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* came|strong=\"G2532\"* close|strong=\"G1448\"* which|strong=\"G3739\"* God|strong=\"G2316\"* had|strong=\"G2532\"* sworn to|strong=\"G2532\"* Abraham, the|strong=\"G1722\"* people|strong=\"G2992\"* grew and|strong=\"G2532\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* Egypt," + }, + { + "verseNum": 18, + "text": "until there|strong=\"G1492\"* arose a|strong=\"G1909\"* different|strong=\"G2087\"* king|strong=\"G3588\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* Joseph|strong=\"G2501\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G1519\"* same|strong=\"G3778\"* took|strong=\"G4160\"* advantage|strong=\"G2686\"* of|strong=\"G3962\"* our|strong=\"G1519\"* race|strong=\"G1085\"* and|strong=\"G3962\"* mistreated|strong=\"G2559\"* our|strong=\"G1519\"* fathers|strong=\"G3962\"*, and|strong=\"G3962\"* forced them|strong=\"G3588\"* to|strong=\"G1519\"* abandon their|strong=\"G1519\"* babies|strong=\"G1025\"*, so|strong=\"G1519\"* that|strong=\"G3588\"* they|strong=\"G3588\"* wouldn’t|strong=\"G3588\"* stay alive." + }, + { + "verseNum": 20, + "text": "At|strong=\"G1722\"* that|strong=\"G3739\"* time|strong=\"G2540\"* Moses|strong=\"G3475\"* was|strong=\"G1510\"* born|strong=\"G1080\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* exceedingly|strong=\"G1510\"* handsome to|strong=\"G2532\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* was|strong=\"G1510\"* nourished three|strong=\"G5140\"* months|strong=\"G3376\"* in|strong=\"G1722\"* his|strong=\"G1722\"* father|strong=\"G3962\"*’s house|strong=\"G3624\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* abandoned, Pharaoh|strong=\"G5328\"*’s daughter|strong=\"G2364\"* took|strong=\"G2532\"* him|strong=\"G3588\"* up|strong=\"G1519\"* and|strong=\"G2532\"* reared him|strong=\"G3588\"* as|strong=\"G1519\"* her|strong=\"G1438\"* own|strong=\"G1438\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 22, + "text": "Moses|strong=\"G3475\"* was|strong=\"G1510\"* instructed in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Egyptians. He|strong=\"G2532\"* was|strong=\"G1510\"* mighty|strong=\"G1415\"* in|strong=\"G1722\"* his|strong=\"G3956\"* words|strong=\"G3056\"* and|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* forty|strong=\"G5063\"* years|strong=\"G5063\"* old|strong=\"G5550\"*, it|strong=\"G1161\"* came|strong=\"G3588\"* into|strong=\"G1909\"* his|strong=\"G1909\"* heart|strong=\"G2588\"* to|strong=\"G1909\"* visit|strong=\"G1980\"* his|strong=\"G1909\"* brothers,+ 7:23 The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”* the|strong=\"G1161\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 24, + "text": "Seeing|strong=\"G3708\"* one|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"* suffer|strong=\"G2532\"* wrong|strong=\"G1557\"*, he|strong=\"G2532\"* defended him|strong=\"G3588\"* and|strong=\"G2532\"* avenged|strong=\"G1557\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* oppressed|strong=\"G2669\"*, striking|strong=\"G3960\"* the|strong=\"G2532\"* Egyptian." + }, + { + "verseNum": 25, + "text": "He|strong=\"G1161\"* supposed|strong=\"G3543\"* that|strong=\"G3754\"* his|strong=\"G1223\"* brothers understood|strong=\"G4920\"* that|strong=\"G3754\"* God|strong=\"G2316\"*, by|strong=\"G1223\"* his|strong=\"G1223\"* hand|strong=\"G5495\"*, was|strong=\"G3588\"* giving|strong=\"G1325\"* them|strong=\"G3588\"* deliverance|strong=\"G4991\"*; but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand|strong=\"G4920\"*." + }, + { + "verseNum": 26, + "text": "“The|strong=\"G2532\"* day|strong=\"G2250\"* following|strong=\"G1966\"*, he|strong=\"G2532\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* them|strong=\"G3588\"* as|strong=\"G1519\"* they|strong=\"G2532\"* fought, and|strong=\"G2532\"* urged them|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1510\"* at|strong=\"G1519\"* peace|strong=\"G1515\"* again|strong=\"G1519\"*, saying|strong=\"G3004\"*, ‘Sirs, you|strong=\"G3004\"* are|strong=\"G1510\"* brothers. Why|strong=\"G2444\"* do|strong=\"G2532\"* you|strong=\"G3004\"* wrong one|strong=\"G1438\"* another|strong=\"G1438\"*?’" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G5101\"* did|strong=\"G2532\"* his|strong=\"G1909\"* neighbor|strong=\"G4139\"* wrong pushed him|strong=\"G3588\"* away, saying|strong=\"G3004\"*, ‘Who|strong=\"G5101\"* made|strong=\"G2525\"* you|strong=\"G4771\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* judge|strong=\"G1348\"* over|strong=\"G1909\"* us|strong=\"G3004\"*?" + }, + { + "verseNum": 28, + "text": "Do|strong=\"G3361\"* you|strong=\"G4771\"* want|strong=\"G2309\"* to|strong=\"G2309\"* kill me|strong=\"G1473\"* as|strong=\"G3739\"* you|strong=\"G4771\"* killed the|strong=\"G3588\"* Egyptian yesterday|strong=\"G5504\"*?’+ 7:28 Exodus 2:14*" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"G3475\"* fled|strong=\"G5343\"* at|strong=\"G1722\"* this|strong=\"G3778\"* saying|strong=\"G3056\"*, and|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G1096\"* stranger|strong=\"G3941\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G5207\"* Midian|strong=\"G3099\"*, where|strong=\"G3757\"* he|strong=\"G2532\"* became|strong=\"G1096\"* the|strong=\"G1722\"* father|strong=\"G1080\"* of|strong=\"G5207\"* two|strong=\"G1417\"* sons|strong=\"G5207\"*." + }, + { + "verseNum": 30, + "text": "“When|strong=\"G2532\"* forty|strong=\"G5062\"* years|strong=\"G2094\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, an|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* of|strong=\"G2532\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, in|strong=\"G1722\"* a|strong=\"G2532\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"* in|strong=\"G1722\"* a|strong=\"G2532\"* bush." + }, + { + "verseNum": 31, + "text": "When|strong=\"G1161\"* Moses|strong=\"G3475\"* saw|strong=\"G3708\"* it|strong=\"G1161\"*, he|strong=\"G1161\"* wondered|strong=\"G2296\"* at|strong=\"G2296\"* the|strong=\"G1161\"* sight|strong=\"G3705\"*. As|strong=\"G1161\"* he|strong=\"G1161\"* came|strong=\"G4334\"* close to|strong=\"G4334\"* see|strong=\"G3708\"*, the|strong=\"G1161\"* voice|strong=\"G5456\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* came|strong=\"G4334\"* to|strong=\"G4334\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 32, + "text": "‘I|strong=\"G1473\"* am|strong=\"G1473\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"*: the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Abraham, the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Isaac|strong=\"G2464\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jacob|strong=\"G2384\"*.’+ 7:32 Exodus 3:6* Moses|strong=\"G3475\"* trembled|strong=\"G1790\"* and|strong=\"G2532\"* dared|strong=\"G5111\"* not|strong=\"G3756\"* look|strong=\"G2657\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G1909\"* him|strong=\"G3588\"*, ‘Take|strong=\"G3089\"* off|strong=\"G3089\"* your|strong=\"G2962\"* sandals|strong=\"G5266\"*, for|strong=\"G1063\"* the|strong=\"G1161\"* place|strong=\"G5117\"* where|strong=\"G3739\"* you|strong=\"G4771\"* stand|strong=\"G2476\"* is|strong=\"G1510\"* holy ground|strong=\"G1093\"*." + }, + { + "verseNum": 34, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* surely seen|strong=\"G3708\"* the|strong=\"G1722\"* affliction|strong=\"G2561\"* of|strong=\"G2532\"* my|strong=\"G3708\"* people|strong=\"G2992\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Egypt, and|strong=\"G2532\"* have|strong=\"G2532\"* heard their|strong=\"G1438\"* groaning|strong=\"G4726\"*. I|strong=\"G1473\"* have|strong=\"G2532\"* come|strong=\"G1204\"* down|strong=\"G2597\"* to|strong=\"G1519\"* deliver|strong=\"G1807\"* them|strong=\"G3588\"*. Now|strong=\"G3568\"* come|strong=\"G1204\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* send you|strong=\"G4771\"* into|strong=\"G1519\"* Egypt.’+ 7:34 Exodus 3:5,7-8,10*" + }, + { + "verseNum": 35, + "text": "“This|strong=\"G3778\"* Moses|strong=\"G3475\"* whom|strong=\"G3739\"* they|strong=\"G2532\"* refused, saying|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* made|strong=\"G2525\"* you|strong=\"G4771\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* judge|strong=\"G1348\"*?’—God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* him|strong=\"G3588\"* as|strong=\"G1722\"* both|strong=\"G2532\"* a|strong=\"G2532\"* ruler|strong=\"G2525\"* and|strong=\"G2532\"* a|strong=\"G2532\"* deliverer|strong=\"G3086\"* by|strong=\"G1722\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G2316\"* the|strong=\"G1722\"* angel who|strong=\"G3739\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* bush." + }, + { + "verseNum": 36, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"*, having|strong=\"G2532\"* worked|strong=\"G4160\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* Egypt, in|strong=\"G1722\"* the|strong=\"G1722\"* Red|strong=\"G2063\"* Sea|strong=\"G2281\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* for|strong=\"G1722\"* forty|strong=\"G5062\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 37, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* that|strong=\"G3588\"* Moses|strong=\"G3475\"* who|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G3004\"* the|strong=\"G1537\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, ‘The|strong=\"G1537\"* Lord|strong=\"G3588\"* our|strong=\"G2316\"* God|strong=\"G2316\"* will|strong=\"G2316\"* raise|strong=\"G2316\"* up|strong=\"G1537\"* a|strong=\"G5613\"* prophet|strong=\"G4396\"* for|strong=\"G1537\"* you|strong=\"G5210\"* from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G3588\"* brothers, like|strong=\"G5613\"* me|strong=\"G1473\"*.’+ 7:37 TR adds “You shall listen to him.”*+ 7:37 Deuteronomy 18:15*" + }, + { + "verseNum": 38, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"* with|strong=\"G3326\"* the|strong=\"G1722\"* angel that|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"* on|strong=\"G1722\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"*, who|strong=\"G3739\"* received|strong=\"G1209\"* living|strong=\"G2198\"* revelations to|strong=\"G2532\"* give|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"*," + }, + { + "verseNum": 39, + "text": "to|strong=\"G1519\"* whom|strong=\"G3739\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1096\"* obedient|strong=\"G5255\"*, but|strong=\"G2532\"* rejected him|strong=\"G3588\"* and|strong=\"G2532\"* turned|strong=\"G4762\"* back|strong=\"G1519\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* Egypt," + }, + { + "verseNum": 40, + "text": "saying|strong=\"G3004\"* to|strong=\"G3004\"* Aaron, ‘Make|strong=\"G4160\"* us|strong=\"G3004\"* gods|strong=\"G2316\"* that|strong=\"G3739\"* will|strong=\"G2316\"* go|strong=\"G4313\"* before|strong=\"G3588\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* as|strong=\"G3739\"* for|strong=\"G1063\"* this|strong=\"G3778\"* Moses|strong=\"G3475\"* who|strong=\"G3739\"* led|strong=\"G1806\"* us|strong=\"G3004\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* has|strong=\"G2316\"* become|strong=\"G1096\"* of|strong=\"G1537\"* him|strong=\"G3588\"*.’+ 7:40 Exodus 32:1*" + }, + { + "verseNum": 41, + "text": "They|strong=\"G2532\"* made|strong=\"G1565\"* a|strong=\"G2532\"* calf|strong=\"G3447\"* in|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* brought|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* to|strong=\"G2532\"* the|strong=\"G1722\"* idol|strong=\"G1497\"*, and|strong=\"G2532\"* rejoiced|strong=\"G2165\"* in|strong=\"G1722\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G2250\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 42, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* turned|strong=\"G4762\"* away|strong=\"G4762\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G2532\"* serve|strong=\"G3000\"* the|strong=\"G1722\"* army|strong=\"G4756\"* of|strong=\"G2316\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*,+ 7:42 This idiom could also be translated “host of heaven”, or “angelic beings”, or “heavenly bodies.”* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 43, + "text": "You|strong=\"G5210\"* took|strong=\"G2532\"* up|strong=\"G2532\"* the|strong=\"G2532\"* tabernacle|strong=\"G4633\"* of|strong=\"G2316\"* Moloch|strong=\"G3434\"*," + }, + { + "verseNum": 44, + "text": "“Our|strong=\"G1722\"* fathers|strong=\"G3962\"* had|strong=\"G1510\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"* of|strong=\"G3962\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G3739\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2596\"* Moses|strong=\"G3475\"* commanded|strong=\"G1299\"* him|strong=\"G3588\"* to|strong=\"G2596\"* make|strong=\"G4160\"* it|strong=\"G4160\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* pattern|strong=\"G5179\"* that|strong=\"G3739\"* he|strong=\"G3739\"* had|strong=\"G1510\"* seen|strong=\"G3708\"*;" + }, + { + "verseNum": 45, + "text": "which|strong=\"G3739\"* also|strong=\"G2532\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, in|strong=\"G1722\"* their|strong=\"G2532\"* turn|strong=\"G1237\"*, brought|strong=\"G1521\"* in|strong=\"G1722\"* with|strong=\"G3326\"* Joshua|strong=\"G2424\"* when|strong=\"G2532\"* they|strong=\"G2532\"* entered into|strong=\"G1722\"* the|strong=\"G1722\"* possession|strong=\"G2697\"* of|strong=\"G2250\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* drove|strong=\"G1856\"* out|strong=\"G2532\"* before|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G2250\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* to|strong=\"G2532\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* David|strong=\"G1138\"*," + }, + { + "verseNum": 46, + "text": "who|strong=\"G3739\"* found|strong=\"G2147\"* favor|strong=\"G5485\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* asked to|strong=\"G2532\"* find|strong=\"G2147\"* a|strong=\"G2532\"* habitation for|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jacob|strong=\"G2384\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"G1161\"* Solomon|strong=\"G4672\"* built|strong=\"G3618\"* him a|strong=\"G1161\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 48, + "text": "However, the|strong=\"G1722\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* doesn’t|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* temples made|strong=\"G5499\"* with|strong=\"G1722\"* hands|strong=\"G5499\"*, as|strong=\"G2531\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 49, + "text": "‘heaven|strong=\"G3772\"* is|strong=\"G3588\"* my|strong=\"G1473\"* throne|strong=\"G2362\"*," + }, + { + "verseNum": 50, + "text": "Didn’t|strong=\"G3588\"* my|strong=\"G3956\"* hand|strong=\"G5495\"* make|strong=\"G4160\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*?’+ 7:50 Isaiah 66:1-2*" + }, + { + "verseNum": 51, + "text": "“You|strong=\"G5210\"* stiff-necked|strong=\"G4644\"* and|strong=\"G2532\"* uncircumcised in|strong=\"G2532\"* heart|strong=\"G2588\"* and|strong=\"G2532\"* ears|strong=\"G3775\"*, you|strong=\"G5210\"* always resist the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*! As|strong=\"G5613\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* did|strong=\"G2532\"*, so|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G2532\"*." + }, + { + "verseNum": 52, + "text": "Which|strong=\"G3739\"* of|strong=\"G4012\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* didn’t|strong=\"G3588\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* persecute|strong=\"G1377\"*? They|strong=\"G2532\"* killed those|strong=\"G3588\"* who|strong=\"G3739\"* foretold|strong=\"G4293\"* the|strong=\"G2532\"* coming|strong=\"G1096\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3739\"*, of|strong=\"G4012\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2532\"* now|strong=\"G3568\"* become|strong=\"G1096\"* betrayers|strong=\"G4273\"* and|strong=\"G2532\"* murderers|strong=\"G5406\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* law|strong=\"G3551\"* as|strong=\"G1519\"* it|strong=\"G2532\"* was|strong=\"G3588\"* ordained|strong=\"G1296\"* by|strong=\"G2532\"* angels, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* keep|strong=\"G5442\"* it|strong=\"G2532\"*!”" + }, + { + "verseNum": 54, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* cut|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* gnashed|strong=\"G1031\"* at|strong=\"G1909\"* him|strong=\"G3588\"* with|strong=\"G2532\"* their|strong=\"G2532\"* teeth|strong=\"G3599\"*." + }, + { + "verseNum": 55, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, being|strong=\"G5225\"* full|strong=\"G4134\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, looked|strong=\"G3708\"* up|strong=\"G1519\"* steadfastly into|strong=\"G1519\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Jesus|strong=\"G2424\"* standing|strong=\"G2476\"* on|strong=\"G1519\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 56, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* opened|strong=\"G1272\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* Man|strong=\"G5207\"* standing|strong=\"G2476\"* at|strong=\"G1537\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* God|strong=\"G2316\"*!”" + }, + { + "verseNum": 57, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* stopped|strong=\"G4912\"* their|strong=\"G2532\"* ears|strong=\"G3775\"*, then|strong=\"G2532\"* rushed|strong=\"G3729\"* at|strong=\"G1909\"* him|strong=\"G3588\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"*." + }, + { + "verseNum": 58, + "text": "They|strong=\"G2532\"* threw|strong=\"G1544\"* him|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* and|strong=\"G2532\"* stoned|strong=\"G3036\"* him|strong=\"G3588\"*. The|strong=\"G2532\"* witnesses|strong=\"G3144\"* placed their|strong=\"G2532\"* garments|strong=\"G2440\"* at|strong=\"G3844\"* the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G2532\"* a|strong=\"G2532\"* young|strong=\"G3494\"* man|strong=\"G3494\"* named|strong=\"G2564\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 59, + "text": "They|strong=\"G2532\"* stoned|strong=\"G3036\"* Stephen|strong=\"G4736\"* as|strong=\"G2532\"* he|strong=\"G2532\"* called|strong=\"G3004\"* out|strong=\"G2532\"*, saying|strong=\"G3004\"*, “Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, receive|strong=\"G1209\"* my|strong=\"G1473\"* spirit|strong=\"G4151\"*!”" + }, + { + "verseNum": 60, + "text": "He|strong=\"G2532\"* kneeled|strong=\"G5087\"* down|strong=\"G5087\"* and|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Lord|strong=\"G2962\"*, don’t|strong=\"G3588\"* hold|strong=\"G2476\"* this|strong=\"G3778\"* sin against|strong=\"G3361\"* them|strong=\"G3588\"*!” When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* fell|strong=\"G2837\"* asleep|strong=\"G2837\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"G4569\"* was|strong=\"G1510\"* consenting|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G3956\"* death. A|strong=\"G1096\"* great|strong=\"G3173\"* persecution|strong=\"G1375\"* arose|strong=\"G1096\"* against|strong=\"G2596\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* which|strong=\"G3588\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* in|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*. They|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* throughout|strong=\"G2596\"* the|strong=\"G1722\"* regions|strong=\"G5561\"* of|strong=\"G2250\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* Samaria|strong=\"G4540\"*, except|strong=\"G4133\"* for|strong=\"G1909\"* the|strong=\"G1722\"* apostles." + }, + { + "verseNum": 2, + "text": "Devout|strong=\"G2126\"* men|strong=\"G3588\"* buried|strong=\"G4792\"* Stephen|strong=\"G4736\"* and|strong=\"G2532\"* lamented greatly|strong=\"G3173\"* over|strong=\"G1909\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"* ravaged the|strong=\"G2532\"* assembly|strong=\"G1577\"*, entering|strong=\"G1531\"* into|strong=\"G1519\"* every|strong=\"G2596\"* house|strong=\"G3624\"* and|strong=\"G2532\"* dragged|strong=\"G4951\"* both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"* off|strong=\"G2596\"* to|strong=\"G1519\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G3767\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* went|strong=\"G1330\"* around preaching|strong=\"G2097\"* the|strong=\"G3588\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 5, + "text": "Philip|strong=\"G5376\"* went|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* the|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G4172\"* Samaria|strong=\"G4540\"* and|strong=\"G1161\"* proclaimed|strong=\"G2784\"* to|strong=\"G1519\"* them|strong=\"G3588\"* the|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1722\"* multitudes|strong=\"G3793\"* listened with|strong=\"G1722\"* one|strong=\"G3739\"* accord|strong=\"G3661\"* to|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3739\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G1722\"* Philip|strong=\"G5376\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard and|strong=\"G2532\"* saw the|strong=\"G1722\"* signs|strong=\"G4592\"* which|strong=\"G3739\"* he|strong=\"G2532\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* unclean spirits|strong=\"G4151\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G4151\"* many|strong=\"G4183\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, crying with|strong=\"G2532\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*. Many|strong=\"G4183\"* who|strong=\"G3588\"* had|strong=\"G2192\"* been|strong=\"G2192\"* paralyzed|strong=\"G3886\"* and|strong=\"G2532\"* lame|strong=\"G5560\"* were|strong=\"G3588\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G1161\"* was|strong=\"G1096\"* great|strong=\"G4183\"* joy|strong=\"G5479\"* in|strong=\"G1722\"* that|strong=\"G3588\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"*, Simon|strong=\"G4613\"* by|strong=\"G1722\"* name|strong=\"G3686\"*, who|strong=\"G3588\"* used|strong=\"G4172\"* to|strong=\"G2532\"* practice sorcery|strong=\"G3096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* and|strong=\"G2532\"* amazed|strong=\"G1839\"* the|strong=\"G1722\"* people|strong=\"G1484\"* of|strong=\"G2532\"* Samaria|strong=\"G4540\"*, making|strong=\"G2532\"* himself|strong=\"G1438\"* out|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* some|strong=\"G5100\"* great|strong=\"G3173\"* one|strong=\"G5100\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"G3004\"* whom|strong=\"G3739\"* they|strong=\"G3588\"* all|strong=\"G3956\"* listened, from|strong=\"G3588\"* the|strong=\"G3956\"* least|strong=\"G3398\"* to|strong=\"G3004\"* the|strong=\"G3956\"* greatest|strong=\"G3173\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* that|strong=\"G3739\"* great|strong=\"G3173\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 11, + "text": "They|strong=\"G1161\"* listened to|strong=\"G1161\"* him|strong=\"G3588\"* because|strong=\"G1223\"* for|strong=\"G1223\"* a|strong=\"G1161\"* long|strong=\"G2425\"* time|strong=\"G5550\"* he|strong=\"G1161\"* had|strong=\"G3588\"* amazed|strong=\"G1839\"* them|strong=\"G3588\"* with|strong=\"G1223\"* his|strong=\"G1438\"* sorceries|strong=\"G3095\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* they|strong=\"G2532\"* believed|strong=\"G4100\"* Philip|strong=\"G5376\"* preaching|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* concerning|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4012\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* baptized, both|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 13, + "text": "Simon|strong=\"G4613\"* himself|strong=\"G1839\"* also|strong=\"G2532\"* believed|strong=\"G4100\"*. Being|strong=\"G1510\"* baptized, he|strong=\"G2532\"* continued|strong=\"G4342\"* with|strong=\"G2532\"* Philip|strong=\"G5376\"*. Seeing|strong=\"G2334\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* great|strong=\"G3173\"* miracles|strong=\"G1411\"* occurring, he|strong=\"G2532\"* was|strong=\"G1510\"* amazed|strong=\"G1839\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* apostles who|strong=\"G3588\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* heard that|strong=\"G3754\"* Samaria|strong=\"G4540\"* had|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, they|strong=\"G2532\"* sent|strong=\"G2316\"* Peter|strong=\"G4074\"* and|strong=\"G2532\"* John|strong=\"G2491\"* to|strong=\"G4314\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"G3748\"*, when|strong=\"G4336\"* they|strong=\"G3748\"* had|strong=\"G3748\"* come|strong=\"G2597\"* down|strong=\"G2597\"*, prayed|strong=\"G4336\"* for|strong=\"G4012\"* them|strong=\"G2983\"*, that|strong=\"G3704\"* they|strong=\"G3748\"* might receive|strong=\"G2983\"* the|strong=\"G2983\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*;" + }, + { + "verseNum": 16, + "text": "for|strong=\"G1063\"* as|strong=\"G1519\"* yet|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2424\"* fallen|strong=\"G1968\"* on|strong=\"G1909\"* none|strong=\"G3762\"* of|strong=\"G3686\"* them|strong=\"G3588\"*. They|strong=\"G1161\"* had|strong=\"G2424\"* only|strong=\"G3440\"* been|strong=\"G1510\"* baptized in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Christ|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* Simon|strong=\"G4613\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G3588\"* given|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G1161\"* laying|strong=\"G1936\"* on|strong=\"G5495\"* of|strong=\"G4151\"* the|strong=\"G1161\"* apostles’ hands|strong=\"G5495\"*, he|strong=\"G1161\"* offered|strong=\"G4374\"* them|strong=\"G3588\"* money|strong=\"G5536\"*," + }, + { + "verseNum": 19, + "text": "saying|strong=\"G3004\"*, “Give|strong=\"G1325\"* me|strong=\"G1325\"* also|strong=\"G2504\"* this|strong=\"G3778\"* power|strong=\"G1849\"*, that|strong=\"G2443\"* whomever|strong=\"G3739\"* I|strong=\"G3739\"* lay|strong=\"G2007\"* my|strong=\"G1325\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* may|strong=\"G2443\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, “May|strong=\"G2316\"* your|strong=\"G1223\"* silver perish with|strong=\"G4862\"* you|strong=\"G4771\"*, because|strong=\"G3754\"* you|strong=\"G4771\"* thought|strong=\"G3543\"* you|strong=\"G4771\"* could|strong=\"G3588\"* obtain|strong=\"G2932\"* the|strong=\"G1519\"* gift|strong=\"G1431\"* of|strong=\"G1223\"* God|strong=\"G2316\"* with|strong=\"G4862\"* money|strong=\"G5536\"*!" + }, + { + "verseNum": 21, + "text": "You|strong=\"G4771\"* have|strong=\"G1510\"* neither|strong=\"G3761\"* part|strong=\"G3310\"* nor|strong=\"G3761\"* lot|strong=\"G2819\"* in|strong=\"G1722\"* this|strong=\"G3778\"* matter|strong=\"G3056\"*, for|strong=\"G1063\"* your|strong=\"G1722\"* heart|strong=\"G2588\"* isn’t|strong=\"G3588\"* right|strong=\"G2117\"* before|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Repent|strong=\"G3340\"* therefore|strong=\"G3767\"* of|strong=\"G2532\"* this|strong=\"G3778\"*, your|strong=\"G2962\"* wickedness|strong=\"G2549\"*, and|strong=\"G2532\"* ask|strong=\"G1189\"* God|strong=\"G2532\"* if|strong=\"G1487\"* perhaps the|strong=\"G2532\"* thought|strong=\"G1963\"* of|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* forgiven you|strong=\"G4771\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* in|strong=\"G1519\"* the|strong=\"G2532\"* poison of|strong=\"G2532\"* bitterness|strong=\"G4088\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* bondage|strong=\"G4886\"* of|strong=\"G2532\"* iniquity.”" + }, + { + "verseNum": 24, + "text": "Simon|strong=\"G4613\"* answered|strong=\"G3004\"*, “Pray|strong=\"G1189\"* for|strong=\"G5228\"* me|strong=\"G1473\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, that|strong=\"G3739\"* none|strong=\"G3367\"* of|strong=\"G2962\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G1473\"* spoken|strong=\"G3004\"* happen|strong=\"G1904\"* to|strong=\"G4314\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"G2532\"* therefore|strong=\"G3767\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* testified|strong=\"G1263\"* and|strong=\"G2532\"* spoken|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* many|strong=\"G4183\"* villages|strong=\"G2968\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Samaritans|strong=\"G4541\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"G2532\"* an|strong=\"G2532\"* angel|strong=\"G2597\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* spoke|strong=\"G2980\"* to|strong=\"G1519\"* Philip|strong=\"G5376\"*, saying|strong=\"G3004\"*, “Arise, and|strong=\"G2532\"* go|strong=\"G4198\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* south|strong=\"G3314\"* to|strong=\"G1519\"* the|strong=\"G2532\"* way|strong=\"G3598\"* that|strong=\"G3588\"* goes|strong=\"G4198\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* Gaza|strong=\"G1048\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* desert|strong=\"G2048\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"G2532\"* arose and|strong=\"G2532\"* went|strong=\"G4198\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3956\"* of|strong=\"G2532\"* Ethiopia, a|strong=\"G2532\"* eunuch|strong=\"G2135\"* of|strong=\"G2532\"* great|strong=\"G3956\"* authority|strong=\"G1413\"* under|strong=\"G1909\"* Candace|strong=\"G2582\"*, queen of|strong=\"G2532\"* the|strong=\"G2532\"* Ethiopians, who|strong=\"G3739\"* was|strong=\"G1510\"* over|strong=\"G1909\"* all|strong=\"G3956\"* her|strong=\"G1519\"* treasure|strong=\"G1047\"*, who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* worship|strong=\"G4352\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* returning|strong=\"G5290\"* and|strong=\"G2532\"* sitting|strong=\"G2521\"* in|strong=\"G1909\"* his|strong=\"G1909\"* chariot, and|strong=\"G2532\"* was|strong=\"G1510\"* reading the|strong=\"G2532\"* prophet|strong=\"G4396\"* Isaiah|strong=\"G2268\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Philip|strong=\"G5376\"*, “Go|strong=\"G4151\"* near|strong=\"G4334\"*, and|strong=\"G2532\"* join|strong=\"G2853\"* yourself to|strong=\"G2532\"* this|strong=\"G3778\"* chariot.”" + }, + { + "verseNum": 30, + "text": "Philip|strong=\"G5376\"* ran|strong=\"G4370\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* heard|strong=\"G1097\"* him|strong=\"G3588\"* reading Isaiah|strong=\"G2268\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Do|strong=\"G2532\"* you|strong=\"G3739\"* understand|strong=\"G1097\"* what|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* reading?”" + }, + { + "verseNum": 31, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “How|strong=\"G4459\"* can|strong=\"G1410\"* I|strong=\"G1473\"*, unless|strong=\"G1437\"* someone|strong=\"G5100\"* explains it|strong=\"G1161\"* to|strong=\"G3004\"* me|strong=\"G1473\"*?” He|strong=\"G1161\"* begged|strong=\"G3870\"* Philip|strong=\"G5376\"* to|strong=\"G3004\"* come up|strong=\"G3361\"* and|strong=\"G1161\"* sit|strong=\"G2523\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* passage|strong=\"G4042\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G1510\"* reading was|strong=\"G1510\"* this|strong=\"G3778\"*," + }, + { + "verseNum": 33, + "text": "In|strong=\"G1722\"* his|strong=\"G1722\"* humiliation|strong=\"G5014\"*, his|strong=\"G1722\"* judgment|strong=\"G2920\"* was|strong=\"G3588\"* taken away." + }, + { + "verseNum": 34, + "text": "The|strong=\"G1161\"* eunuch|strong=\"G2135\"* answered|strong=\"G3004\"* Philip|strong=\"G5376\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"* talking|strong=\"G3004\"* about|strong=\"G4012\"*? About|strong=\"G4012\"* himself|strong=\"G1438\"*, or|strong=\"G2228\"* about|strong=\"G4012\"* someone|strong=\"G5100\"* else|strong=\"G2228\"*?”" + }, + { + "verseNum": 35, + "text": "Philip|strong=\"G5376\"* opened his|strong=\"G2532\"* mouth|strong=\"G4750\"*, and|strong=\"G2532\"* beginning from|strong=\"G2532\"* this|strong=\"G3778\"* Scripture|strong=\"G1124\"*, preached|strong=\"G2097\"* to|strong=\"G2532\"* him|strong=\"G3588\"* about|strong=\"G2424\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 36, + "text": "As|strong=\"G5613\"* they|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1909\"* the|strong=\"G2532\"* way|strong=\"G3598\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* some|strong=\"G5100\"* water|strong=\"G5204\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"* said|strong=\"G5346\"*, “Behold|strong=\"G2400\"*, here|strong=\"G2400\"* is|strong=\"G3588\"* water|strong=\"G5204\"*. What|strong=\"G5101\"* is|strong=\"G3588\"* keeping me|strong=\"G1473\"* from|strong=\"G2064\"* being|strong=\"G2532\"* baptized?”" + }, + { + "verseNum": 37, + "text": "+ 8:37 TR adds Philip said, “If you believe with all your heart, you may.” He answered, “I believe that Jesus Christ is the Son of God.”*" + }, + { + "verseNum": 38, + "text": "He|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* chariot to|strong=\"G1519\"* stand|strong=\"G2476\"* still|strong=\"G2476\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* both|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, both|strong=\"G2532\"* Philip|strong=\"G5376\"* and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* baptized him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2532\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* water|strong=\"G5204\"*, the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* caught|strong=\"G2962\"* Philip|strong=\"G5376\"* away|strong=\"G4198\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* eunuch|strong=\"G2135\"* didn’t|strong=\"G3588\"* see|strong=\"G3708\"* him|strong=\"G3588\"* any|strong=\"G3756\"* more|strong=\"G3765\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* went|strong=\"G4198\"* on|strong=\"G1537\"* his|strong=\"G3708\"* way|strong=\"G3598\"* rejoicing|strong=\"G5463\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* Philip|strong=\"G5376\"* was|strong=\"G3588\"* found|strong=\"G2147\"* at|strong=\"G1519\"* Azotus. Passing|strong=\"G1330\"* through|strong=\"G1330\"*, he|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* until|strong=\"G2193\"* he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"*, still|strong=\"G2089\"* breathing|strong=\"G1709\"* threats and|strong=\"G2532\"* slaughter|strong=\"G5408\"* against|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, went|strong=\"G4334\"* to|strong=\"G1519\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* asked for|strong=\"G1519\"* letters|strong=\"G1992\"* from|strong=\"G3844\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"* of|strong=\"G2532\"* Damascus|strong=\"G1154\"*, that|strong=\"G3588\"* if|strong=\"G1437\"* he|strong=\"G2532\"* found|strong=\"G2147\"* any|strong=\"G5100\"* who|strong=\"G3588\"* were|strong=\"G1510\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Way|strong=\"G3598\"*, whether|strong=\"G1437\"* men|strong=\"G5100\"* or|strong=\"G2532\"* women|strong=\"G1135\"*, he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* bound|strong=\"G1210\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"G1722\"* he|strong=\"G1161\"* traveled, he|strong=\"G1161\"* got|strong=\"G1096\"* close|strong=\"G1448\"* to|strong=\"G1722\"* Damascus|strong=\"G1154\"*, and|strong=\"G1161\"* suddenly|strong=\"G1810\"* a|strong=\"G1096\"* light|strong=\"G5457\"* from|strong=\"G1537\"* the|strong=\"G1722\"* sky|strong=\"G3772\"* shone|strong=\"G4015\"* around|strong=\"G4015\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w do|strong=\"G5101\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w persecute|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*?”*" + }, + { + "verseNum": 5, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G2532\"\\+w**+ 9:6 TR omits “But” * \\+w rise|strong=\"G1163\"\\+w* \\+w up|strong=\"G1210\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w told|strong=\"G2980\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w do|strong=\"G4160\"\\+w*.”*" + }, + { + "verseNum": 7, + "text": "The|strong=\"G1161\"* men|strong=\"G3588\"* who|strong=\"G3588\"* traveled|strong=\"G4922\"* with|strong=\"G3588\"* him|strong=\"G3588\"* stood|strong=\"G2476\"* speechless|strong=\"G1769\"*, hearing the|strong=\"G1161\"* sound|strong=\"G5456\"*, but|strong=\"G1161\"* seeing|strong=\"G2334\"* no|strong=\"G3367\"* one|strong=\"G3367\"*." + }, + { + "verseNum": 8, + "text": "Saul|strong=\"G4569\"* arose|strong=\"G1453\"* from|strong=\"G3588\"* the|strong=\"G1519\"* ground|strong=\"G1093\"*, and|strong=\"G1161\"* when|strong=\"G1161\"* his|strong=\"G1519\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* opened, he|strong=\"G1161\"* saw no|strong=\"G3762\"* one|strong=\"G3762\"*. They|strong=\"G1161\"* led|strong=\"G5496\"* him|strong=\"G3588\"* by|strong=\"G1519\"* the|strong=\"G1519\"* hand|strong=\"G1161\"* and|strong=\"G1161\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* without|strong=\"G3361\"* sight for|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* neither|strong=\"G3761\"* ate|strong=\"G2068\"* nor|strong=\"G3761\"* drank|strong=\"G4095\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3101\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"* named|strong=\"G3686\"* Ananias. The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G2532\"* vision|strong=\"G3705\"*, “Ananias!”*" + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G1161\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Arise \\+w and|strong=\"G2532\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w street|strong=\"G4505\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w called|strong=\"G2564\"\\+w* \\+w Straight|strong=\"G2117\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w inquire|strong=\"G2212\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w house|strong=\"G3614\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Judah|strong=\"G2455\"\\+w**+ 9:11 or, Judas* \\+w for|strong=\"G1063\"\\+w* \\+w one|strong=\"G3588\"\\+w* \\+w named|strong=\"G3686\"\\+w* \\+w Saul|strong=\"G4569\"\\+w*, \\+w a|strong=\"G2532\"\\+w* man \\+w of|strong=\"G2532\"\\+w* \\+w Tarsus|strong=\"G5018\"\\+w*. \\+w For|strong=\"G1063\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w praying|strong=\"G4336\"\\+w*, *" + }, + { + "verseNum": 12, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w vision|strong=\"G3705\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w has|strong=\"G3708\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w a|strong=\"G2532\"\\+w* man \\+w named|strong=\"G3686\"\\+w* Ananias \\+w coming|strong=\"G1525\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w laying|strong=\"G2007\"\\+w* \\+w his|strong=\"G2007\"\\+w* \\+w hands|strong=\"G5495\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w him|strong=\"G3708\"\\+w*, \\+w that|strong=\"G3704\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w might|strong=\"G2532\"\\+w* receive \\+w his|strong=\"G2007\"\\+w* \\+w sight|strong=\"G3705\"\\+w*.”*" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* Ananias answered, “Lord|strong=\"G2962\"*, I|strong=\"G1161\"* have|strong=\"G3745\"* heard from|strong=\"G3588\"* many|strong=\"G4183\"* about|strong=\"G4012\"* this|strong=\"G3778\"* man|strong=\"G3778\"*, how|strong=\"G3745\"* much|strong=\"G4183\"* evil|strong=\"G2556\"* he|strong=\"G1161\"* did|strong=\"G4160\"* to|strong=\"G1722\"* your|strong=\"G2962\"* saints at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 14, + "text": "Here|strong=\"G5602\"* he|strong=\"G2532\"* has|strong=\"G2192\"* authority|strong=\"G1849\"* from|strong=\"G3844\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests to|strong=\"G2532\"* bind|strong=\"G1210\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1941\"* your|strong=\"G2192\"* name|strong=\"G3686\"*.”" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “\\+w Go|strong=\"G4198\"\\+w* \\+w your|strong=\"G2962\"\\+w* \\+w way|strong=\"G4198\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w chosen|strong=\"G1589\"\\+w* \\+w vessel|strong=\"G4632\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w bear|strong=\"G2532\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w kings|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w For|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1473\"\\+w* \\+w show|strong=\"G5263\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w how|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w he|strong=\"G3588\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w suffer|strong=\"G3958\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*’s \\+w sake|strong=\"G5228\"\\+w*.”*" + }, + { + "verseNum": 17, + "text": "Ananias departed and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* house|strong=\"G3614\"*. Laying|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Brother Saul|strong=\"G4549\"*, the|strong=\"G1722\"* Lord|strong=\"G2962\"*, who|strong=\"G3739\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* you|strong=\"G4771\"* on|strong=\"G1909\"* the|strong=\"G1722\"* road|strong=\"G3598\"* by|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G4771\"* came|strong=\"G2064\"*, has|strong=\"G2962\"* sent|strong=\"G2532\"* me|strong=\"G1473\"* that|strong=\"G3739\"* you|strong=\"G4771\"* may|strong=\"G2532\"* receive your|strong=\"G2962\"* sight|strong=\"G3588\"* and|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G4130\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*.”" + }, + { + "verseNum": 18, + "text": "Immediately|strong=\"G2112\"* something|strong=\"G3788\"* like|strong=\"G5613\"* scales|strong=\"G3013\"* fell|strong=\"G2532\"* from|strong=\"G2532\"* his|strong=\"G2532\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* received|strong=\"G3788\"* his|strong=\"G2532\"* sight|strong=\"G3788\"*. He|strong=\"G2532\"* arose and|strong=\"G2532\"* was|strong=\"G3588\"* baptized." + }, + { + "verseNum": 19, + "text": "He|strong=\"G2532\"* took|strong=\"G2983\"* food|strong=\"G5160\"* and|strong=\"G2532\"* was|strong=\"G1096\"* strengthened|strong=\"G1765\"*." + }, + { + "verseNum": 20, + "text": "Immediately|strong=\"G2112\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* he|strong=\"G2532\"* proclaimed|strong=\"G2784\"* the|strong=\"G1722\"* Christ, that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* heard him|strong=\"G3588\"* were|strong=\"G1510\"* amazed|strong=\"G1839\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Isn’t|strong=\"G3588\"* this|strong=\"G3778\"* he|strong=\"G2532\"* who|strong=\"G3588\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* made|strong=\"G3756\"* havoc of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G3004\"* on|strong=\"G1909\"* this|strong=\"G3778\"* name|strong=\"G3686\"*? And|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G2064\"* here|strong=\"G5602\"* intending to|strong=\"G1519\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* bound|strong=\"G1210\"* before|strong=\"G1909\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests!”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"* increased|strong=\"G1743\"* more|strong=\"G3123\"* in|strong=\"G1722\"* strength|strong=\"G1743\"*, and|strong=\"G2532\"* confounded|strong=\"G4797\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"*, proving|strong=\"G4822\"* that|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* many|strong=\"G2425\"* days|strong=\"G2250\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, the|strong=\"G1161\"* Jews|strong=\"G2453\"* conspired together|strong=\"G4823\"* to|strong=\"G1161\"* kill him|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "but|strong=\"G1161\"* their|strong=\"G2532\"* plot|strong=\"G1917\"* became|strong=\"G1917\"* known|strong=\"G1097\"* to|strong=\"G2532\"* Saul|strong=\"G4569\"*. They|strong=\"G2532\"* watched|strong=\"G3906\"* the|strong=\"G2532\"* gates|strong=\"G4439\"* both|strong=\"G2532\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* that|strong=\"G3588\"* they|strong=\"G2532\"* might|strong=\"G2532\"* kill him|strong=\"G3588\"*," + }, + { + "verseNum": 25, + "text": "but|strong=\"G1161\"* his|strong=\"G1223\"* disciples|strong=\"G3101\"* took|strong=\"G2983\"* him|strong=\"G3588\"* by|strong=\"G1223\"* night|strong=\"G3571\"* and|strong=\"G1161\"* let|strong=\"G5465\"* him|strong=\"G3588\"* down|strong=\"G5465\"* through|strong=\"G1223\"* the|strong=\"G1722\"* wall|strong=\"G5038\"*, lowering|strong=\"G2524\"* him|strong=\"G3588\"* in|strong=\"G1722\"* a|strong=\"G1722\"* basket|strong=\"G4711\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* Saul had|strong=\"G2532\"* come|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, he|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G1519\"* join|strong=\"G2853\"* himself|strong=\"G2853\"* to|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*; but|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1510\"* all|strong=\"G3956\"* afraid|strong=\"G5399\"* of|strong=\"G2532\"* him|strong=\"G3588\"*, not|strong=\"G3361\"* believing|strong=\"G4100\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* disciple|strong=\"G3101\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* Barnabas took|strong=\"G1949\"* him|strong=\"G3588\"* and|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* to|strong=\"G4314\"* the|strong=\"G1722\"* apostles, and|strong=\"G2532\"* declared|strong=\"G1334\"* to|strong=\"G4314\"* them|strong=\"G3588\"* how|strong=\"G4459\"* he|strong=\"G2532\"* had|strong=\"G2424\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* on|strong=\"G1722\"* the|strong=\"G1722\"* way|strong=\"G3598\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2424\"* spoken|strong=\"G2980\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* how|strong=\"G4459\"* at|strong=\"G1722\"* Damascus|strong=\"G1154\"* he|strong=\"G2532\"* had|strong=\"G2424\"* preached|strong=\"G2980\"* boldly|strong=\"G3955\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"* entering|strong=\"G1531\"* into|strong=\"G1519\"*+ 9:28 TR and NU add “and going out” * Jerusalem|strong=\"G2419\"*," + }, + { + "verseNum": 29, + "text": "preaching|strong=\"G2980\"* boldly in|strong=\"G2532\"* the|strong=\"G2532\"* name of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2532\"*.+ 9:29 TR and NU omit “Jesus” and reverse the order of verses 28 & 29.* He|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* disputed|strong=\"G4802\"* against|strong=\"G4314\"* the|strong=\"G2532\"* Hellenists,+ 9:29 The Hellenists were Hebrews who used Greek language and culture.* but|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* seeking to|strong=\"G4314\"* kill him|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* brothers+ 9:30 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” * knew|strong=\"G1921\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* brought|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* sent|strong=\"G1821\"* him|strong=\"G3588\"* off|strong=\"G1821\"* to|strong=\"G1519\"* Tarsus|strong=\"G5019\"*." + }, + { + "verseNum": 31, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, Galilee|strong=\"G1056\"*, and|strong=\"G2532\"* Samaria|strong=\"G4540\"* had|strong=\"G2192\"* peace|strong=\"G1515\"* and|strong=\"G2532\"* were|strong=\"G3588\"* built|strong=\"G3618\"* up|strong=\"G3618\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* multiplied|strong=\"G4129\"*, walking|strong=\"G4198\"* in|strong=\"G2596\"* the|strong=\"G2532\"* fear|strong=\"G5401\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* in|strong=\"G2596\"* the|strong=\"G2532\"* comfort|strong=\"G3874\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 32, + "text": "As|strong=\"G1161\"* Peter|strong=\"G4074\"* went|strong=\"G1330\"* throughout|strong=\"G1223\"* all|strong=\"G3956\"* those|strong=\"G3588\"* parts, he|strong=\"G2532\"* came|strong=\"G1096\"* down|strong=\"G2718\"* also|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G4314\"* Lydda|strong=\"G3069\"*." + }, + { + "verseNum": 33, + "text": "There|strong=\"G1563\"* he|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G1510\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Aeneas, who|strong=\"G3739\"* had|strong=\"G1510\"* been|strong=\"G1510\"* bedridden|strong=\"G2621\"* for|strong=\"G1909\"* eight|strong=\"G3638\"* years|strong=\"G2094\"* because|strong=\"G1537\"* he|strong=\"G1161\"* was|strong=\"G1510\"* paralyzed|strong=\"G3886\"*." + }, + { + "verseNum": 34, + "text": "Peter|strong=\"G4074\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “Aeneas, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* heals|strong=\"G2390\"* you|strong=\"G4771\"*. Get|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* make|strong=\"G4766\"* your|strong=\"G2532\"* bed|strong=\"G4766\"*!” Immediately|strong=\"G2112\"* he|strong=\"G2532\"* arose." + }, + { + "verseNum": 35, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1909\"* Lydda|strong=\"G3069\"* and|strong=\"G2532\"* in|strong=\"G1909\"* Sharon|strong=\"G4565\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 36, + "text": "Now|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Joppa|strong=\"G2445\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3102\"* named|strong=\"G3686\"* Tabitha|strong=\"G5000\"*, which|strong=\"G3739\"* when|strong=\"G1161\"* translated|strong=\"G1329\"* means|strong=\"G1510\"* Dorcas|strong=\"G1393\"*.+ 9:36 “Dorcas” is Greek for “Gazelle.”* This|strong=\"G3778\"* woman|strong=\"G3778\"* was|strong=\"G1510\"* full|strong=\"G4134\"* of|strong=\"G2532\"* good|strong=\"G2532\"* works|strong=\"G2041\"* and|strong=\"G2532\"* acts|strong=\"G4160\"* of|strong=\"G2532\"* mercy which|strong=\"G3739\"* she|strong=\"G2532\"* did|strong=\"G4160\"*." + }, + { + "verseNum": 37, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"*, she|strong=\"G1161\"* became|strong=\"G1096\"* sick and|strong=\"G1161\"* died|strong=\"G3588\"*. When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* washed|strong=\"G3068\"* her|strong=\"G1438\"*, they|strong=\"G1161\"* laid|strong=\"G5087\"* her|strong=\"G1438\"* in|strong=\"G1722\"* an|strong=\"G1722\"* upper|strong=\"G5253\"* room|strong=\"G5253\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"G1722\"* Lydda|strong=\"G3069\"* was|strong=\"G1510\"* near|strong=\"G1451\"* Joppa|strong=\"G2445\"*, the|strong=\"G1722\"* disciples|strong=\"G3101\"*, hearing that|strong=\"G3754\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* there|strong=\"G1161\"*, sent two|strong=\"G1417\"* men|strong=\"G1417\"*+ 9:38 Reading from NU, TR; MT omits “two men”* to|strong=\"G4314\"* him|strong=\"G3588\"*, imploring|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G4314\"* delay|strong=\"G3635\"* in|strong=\"G1722\"* coming|strong=\"G1330\"* to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "Peter|strong=\"G4074\"* got up|strong=\"G1519\"* and|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G3326\"* them|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, they|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* upper|strong=\"G5253\"* room|strong=\"G5253\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* widows|strong=\"G5503\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* him|strong=\"G3588\"* weeping|strong=\"G2799\"*, and|strong=\"G2532\"* showing|strong=\"G1925\"* the|strong=\"G2532\"* tunics|strong=\"G5509\"* and|strong=\"G2532\"* other|strong=\"G1161\"* garments|strong=\"G2440\"* which|strong=\"G3739\"* Dorcas|strong=\"G1393\"* had|strong=\"G2532\"* made|strong=\"G4160\"* while|strong=\"G1161\"* she|strong=\"G2532\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 40, + "text": "Peter|strong=\"G4074\"* sent|strong=\"G1544\"* them|strong=\"G3588\"* all|strong=\"G3956\"* out|strong=\"G1544\"*, and|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"*. Turning|strong=\"G1994\"* to|strong=\"G4314\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Tabitha|strong=\"G5000\"*, get|strong=\"G2532\"* up|strong=\"G2532\"*!” She|strong=\"G2532\"* opened her|strong=\"G3708\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* she|strong=\"G2532\"* saw|strong=\"G3708\"* Peter|strong=\"G4074\"*, she|strong=\"G2532\"* sat|strong=\"G4074\"* up|strong=\"G2532\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* her|strong=\"G1325\"* his|strong=\"G1438\"* hand|strong=\"G5495\"* and|strong=\"G2532\"* raised|strong=\"G2532\"* her|strong=\"G1325\"* up|strong=\"G1325\"*. Calling|strong=\"G5455\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* widows|strong=\"G5503\"*, he|strong=\"G2532\"* presented|strong=\"G3936\"* her|strong=\"G1325\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 42, + "text": "This|strong=\"G3588\"* became|strong=\"G1096\"* known|strong=\"G1110\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Joppa|strong=\"G2445\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"G1161\"* stayed|strong=\"G3306\"* many|strong=\"G2425\"* days|strong=\"G2250\"* in|strong=\"G1722\"* Joppa|strong=\"G2445\"* with|strong=\"G1722\"* a|strong=\"G1096\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G3588\"* a|strong=\"G1722\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* in|strong=\"G1722\"* Caesarea|strong=\"G2542\"*, Cornelius|strong=\"G2883\"* by|strong=\"G1722\"* name|strong=\"G3686\"*, a|strong=\"G1722\"* centurion|strong=\"G1543\"* of|strong=\"G1537\"* what|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G1722\"* Italian|strong=\"G2483\"* Regiment," + }, + { + "verseNum": 2, + "text": "a|strong=\"G2532\"* devout|strong=\"G2152\"* man|strong=\"G3956\"*, and|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* feared|strong=\"G5399\"* God|strong=\"G2316\"* with|strong=\"G4862\"* all|strong=\"G3956\"* his|strong=\"G3956\"* house|strong=\"G3624\"*, who|strong=\"G3588\"* gave|strong=\"G4160\"* gifts|strong=\"G1654\"* for|strong=\"G1223\"* the|strong=\"G2532\"* needy generously to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* always|strong=\"G3956\"* prayed|strong=\"G1189\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"G1722\"* about|strong=\"G4012\"* the|strong=\"G1722\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"* of|strong=\"G4012\"* the|strong=\"G1722\"* day|strong=\"G2250\"*,+ 10:3 3:00 p.m.* he|strong=\"G2532\"* clearly|strong=\"G5320\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* a|strong=\"G2532\"* vision|strong=\"G3705\"* an|strong=\"G2532\"* angel of|strong=\"G4012\"* God|strong=\"G2316\"* coming|strong=\"G2316\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Cornelius|strong=\"G2883\"*!”" + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"*, fastening his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* being|strong=\"G1510\"* frightened|strong=\"G1719\"*, said|strong=\"G3004\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"*, Lord|strong=\"G2962\"*?”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"G3568\"* send|strong=\"G3992\"* men|strong=\"G5100\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"*, and|strong=\"G2532\"* get|strong=\"G2532\"* Simon|strong=\"G4613\"*, who|strong=\"G3739\"* is|strong=\"G3739\"* also|strong=\"G2532\"* called|strong=\"G1941\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* staying|strong=\"G3579\"* with|strong=\"G3844\"* a|strong=\"G1510\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*, whose|strong=\"G3739\"* house|strong=\"G3614\"* is|strong=\"G1510\"* by|strong=\"G3844\"* the|strong=\"G3739\"* seaside.+ 10:6 TR adds “This one will tell you what it is necessary for you to do.”*" + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* angel who|strong=\"G3588\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"* had|strong=\"G2532\"* departed, Cornelius|strong=\"G5455\"* called|strong=\"G5455\"* two|strong=\"G1417\"* of|strong=\"G2532\"* his|strong=\"G2532\"* household|strong=\"G3610\"* servants|strong=\"G3610\"* and|strong=\"G2532\"* a|strong=\"G5613\"* devout|strong=\"G2152\"* soldier|strong=\"G4757\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* waited|strong=\"G4342\"* on|strong=\"G1161\"* him|strong=\"G3588\"* continually|strong=\"G4342\"*." + }, + { + "verseNum": 8, + "text": "Having|strong=\"G2532\"* explained|strong=\"G1834\"* everything to|strong=\"G1519\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* as|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* on|strong=\"G1909\"* their|strong=\"G2532\"* journey|strong=\"G3596\"* and|strong=\"G2532\"* got close|strong=\"G1448\"* to|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, Peter|strong=\"G4074\"* went|strong=\"G2532\"* up|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* housetop|strong=\"G1430\"* to|strong=\"G2532\"* pray|strong=\"G4336\"* at|strong=\"G1909\"* about|strong=\"G4012\"* noon|strong=\"G5610\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* became|strong=\"G1096\"* hungry|strong=\"G4361\"* and|strong=\"G2532\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* eat|strong=\"G1089\"*, but|strong=\"G1161\"* while|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G1096\"* preparing, he|strong=\"G2532\"* fell|strong=\"G1096\"* into|strong=\"G1909\"* a|strong=\"G1096\"* trance|strong=\"G1611\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* saw|strong=\"G2334\"* heaven|strong=\"G3772\"* opened and|strong=\"G2532\"* a|strong=\"G5613\"* certain|strong=\"G5100\"* container|strong=\"G4632\"* descending|strong=\"G2597\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, like|strong=\"G5613\"* a|strong=\"G5613\"* great|strong=\"G3173\"* sheet|strong=\"G3607\"* let|strong=\"G2524\"* down|strong=\"G2597\"* by|strong=\"G1909\"* four|strong=\"G5064\"* corners on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*," + }, + { + "verseNum": 12, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* were|strong=\"G3588\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G2532\"* four-footed|strong=\"G5074\"* animals|strong=\"G5074\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, wild|strong=\"G2532\"* animals|strong=\"G5074\"*, reptiles|strong=\"G2062\"*, and|strong=\"G2532\"* birds|strong=\"G4071\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 13, + "text": "A|strong=\"G1096\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* to|strong=\"G4314\"* him|strong=\"G2532\"*, “Rise, \\+w Peter|strong=\"G4074\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*!”*" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* said|strong=\"G3004\"*, “Not|strong=\"G2532\"* so|strong=\"G2532\"*, Lord|strong=\"G2962\"*; for|strong=\"G3754\"* I|strong=\"G2532\"* have|strong=\"G2532\"* never|strong=\"G3763\"* eaten|strong=\"G5315\"* anything|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G3588\"* common|strong=\"G2839\"* or|strong=\"G2532\"* unclean|strong=\"G2839\"*.”" + }, + { + "verseNum": 15, + "text": "A|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* to|strong=\"G4314\"* him|strong=\"G3588\"* again|strong=\"G3825\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, “\\+w What|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G3588\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w call|strong=\"G2532\"\\+w* \\+w unclean|strong=\"G2840\"\\+w*.”*" + }, + { + "verseNum": 16, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* three|strong=\"G5151\"* times|strong=\"G5151\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* thing|strong=\"G3778\"* was|strong=\"G1096\"* received up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* Peter|strong=\"G4074\"* was|strong=\"G1510\"* very|strong=\"G3588\"* perplexed|strong=\"G1280\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* what|strong=\"G5101\"* the|strong=\"G1722\"* vision|strong=\"G3705\"* which|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G1510\"* seen|strong=\"G3708\"* might mean|strong=\"G1510\"*, behold|strong=\"G2400\"*, the|strong=\"G1722\"* men|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* sent by|strong=\"G1722\"* Cornelius|strong=\"G2883\"*, having made|strong=\"G1161\"* inquiry for|strong=\"G1909\"* Simon|strong=\"G4613\"*’s house|strong=\"G3614\"*, stood|strong=\"G2186\"* before|strong=\"G1909\"* the|strong=\"G1722\"* gate|strong=\"G4440\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* called|strong=\"G5455\"* and|strong=\"G2532\"* asked|strong=\"G4441\"* whether|strong=\"G1487\"* Simon|strong=\"G4613\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G5455\"* Peter|strong=\"G4074\"*, was|strong=\"G3588\"* lodging|strong=\"G3579\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"G1161\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* pondering the|strong=\"G1161\"* vision|strong=\"G3705\"*, the|strong=\"G1161\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"* to|strong=\"G3004\"* him|strong=\"G3588\"*, “Behold|strong=\"G2400\"*, three+ 10:19 Reading from TR and NU. MT omits “three”* men|strong=\"G3588\"* seek|strong=\"G2212\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G2532\"* arise, get|strong=\"G2532\"* down|strong=\"G2597\"*, and|strong=\"G2532\"* go|strong=\"G4198\"* with|strong=\"G4862\"* them|strong=\"G1438\"*, doubting|strong=\"G1252\"* nothing|strong=\"G3367\"*; for|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G1438\"*.”" + }, + { + "verseNum": 21, + "text": "Peter|strong=\"G4074\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G4314\"* the|strong=\"G1161\"* men|strong=\"G3588\"*, and|strong=\"G1161\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G1473\"* am|strong=\"G1510\"* he|strong=\"G1161\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* seek|strong=\"G2212\"*. Why|strong=\"G5101\"* have|strong=\"G1473\"* you|strong=\"G3739\"* come|strong=\"G2597\"*?”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Cornelius|strong=\"G2883\"*, a|strong=\"G2532\"* centurion|strong=\"G1543\"*, a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"* and|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* fears|strong=\"G5399\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* well|strong=\"G2532\"* spoken|strong=\"G3004\"* of|strong=\"G5259\"* by|strong=\"G5259\"* all|strong=\"G3650\"* the|strong=\"G2532\"* nation|strong=\"G1484\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, was|strong=\"G3588\"* directed|strong=\"G5537\"* by|strong=\"G5259\"* a|strong=\"G2532\"* holy angel to|strong=\"G1519\"* invite you|strong=\"G4771\"* to|strong=\"G1519\"* his|strong=\"G1519\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* listen to|strong=\"G1519\"* what|strong=\"G3588\"* you|strong=\"G4771\"* say|strong=\"G3004\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* called|strong=\"G3767\"* them|strong=\"G3588\"* in|strong=\"G2532\"* and|strong=\"G2532\"* provided a|strong=\"G2532\"* place to|strong=\"G2532\"* stay." + }, + { + "verseNum": 24, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* they|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Caesarea|strong=\"G2542\"*. Cornelius|strong=\"G2883\"* was|strong=\"G1510\"* waiting|strong=\"G4328\"* for|strong=\"G1519\"* them|strong=\"G3588\"*, having|strong=\"G2532\"* called|strong=\"G4779\"* together|strong=\"G4779\"* his|strong=\"G1438\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* his|strong=\"G1438\"* near|strong=\"G1519\"* friends|strong=\"G5384\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* Peter|strong=\"G4074\"* entered|strong=\"G1525\"*, Cornelius|strong=\"G2883\"* met|strong=\"G4876\"* him|strong=\"G3588\"*, fell|strong=\"G4098\"* down|strong=\"G4098\"* at|strong=\"G1909\"* his|strong=\"G1909\"* feet|strong=\"G4228\"*, and|strong=\"G1161\"* worshiped|strong=\"G4352\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Stand|strong=\"G1453\"* up|strong=\"G1453\"*! I|strong=\"G1473\"* myself|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* man.”" + }, + { + "verseNum": 27, + "text": "As|strong=\"G2532\"* he|strong=\"G2532\"* talked|strong=\"G4926\"* with|strong=\"G2532\"* him|strong=\"G2532\"*, he|strong=\"G2532\"* went|strong=\"G1525\"* in|strong=\"G1525\"* and|strong=\"G2532\"* found|strong=\"G2147\"* many|strong=\"G4183\"* gathered|strong=\"G4905\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* yourselves|strong=\"G1438\"* know|strong=\"G1987\"* how|strong=\"G5613\"* it|strong=\"G1510\"* is|strong=\"G1510\"* an|strong=\"G2228\"* unlawful thing|strong=\"G3367\"* for|strong=\"G4314\"* a|strong=\"G5613\"* man|strong=\"G3367\"* who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G5613\"* Jew|strong=\"G2453\"* to|strong=\"G4314\"* join|strong=\"G2853\"* himself|strong=\"G1438\"* or|strong=\"G2228\"* come|strong=\"G1510\"* to|strong=\"G4314\"* one|strong=\"G3367\"* of|strong=\"G2316\"* another|strong=\"G1438\"* nation, but|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* shown|strong=\"G1166\"* me|strong=\"G3004\"* that|strong=\"G3588\"* I|strong=\"G2504\"* shouldn’t|strong=\"G3588\"* call|strong=\"G3004\"* any|strong=\"G3367\"* man|strong=\"G3367\"* unholy|strong=\"G2839\"* or|strong=\"G2228\"* unclean|strong=\"G2839\"*." + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* also|strong=\"G2532\"* came|strong=\"G2064\"* without|strong=\"G2532\"* complaint|strong=\"G3056\"* when|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G2532\"*. I|strong=\"G1473\"* ask|strong=\"G4441\"* therefore|strong=\"G3767\"*, why|strong=\"G5101\"* did|strong=\"G2532\"* you|strong=\"G2532\"* send|strong=\"G3343\"* for|strong=\"G2532\"* me|strong=\"G1473\"*?”" + }, + { + "verseNum": 30, + "text": "Cornelius|strong=\"G2883\"* said|strong=\"G5346\"*, “Four|strong=\"G5067\"* days|strong=\"G2250\"* ago, I|strong=\"G1473\"* was|strong=\"G1510\"* fasting until|strong=\"G3360\"* this|strong=\"G3778\"* hour|strong=\"G5610\"*; and|strong=\"G2532\"* at|strong=\"G1722\"* the|strong=\"G1722\"* ninth|strong=\"G1766\"* hour|strong=\"G5610\"*,+ 10:30 3:00 p.m.* I|strong=\"G1473\"* prayed|strong=\"G4336\"* in|strong=\"G1722\"* my|strong=\"G3708\"* house|strong=\"G3624\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* stood|strong=\"G2476\"* before|strong=\"G1799\"* me|strong=\"G1473\"* in|strong=\"G1722\"* bright|strong=\"G2986\"* clothing|strong=\"G2066\"*" + }, + { + "verseNum": 31, + "text": "and|strong=\"G2532\"* said|strong=\"G5346\"*, ‘Cornelius|strong=\"G2883\"*, your|strong=\"G2532\"* prayer|strong=\"G4335\"* is|strong=\"G3588\"* heard|strong=\"G1522\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* gifts|strong=\"G1654\"* to|strong=\"G2532\"* the|strong=\"G2532\"* needy are|strong=\"G3588\"* remembered|strong=\"G3403\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "Send|strong=\"G3992\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"* and|strong=\"G2532\"* summon|strong=\"G3333\"* Simon|strong=\"G4613\"*, who|strong=\"G3739\"* is|strong=\"G3778\"* also|strong=\"G2532\"* called|strong=\"G1941\"* Peter|strong=\"G4074\"*. He|strong=\"G2532\"* is|strong=\"G3778\"* staying|strong=\"G3579\"* in|strong=\"G1722\"* the|strong=\"G1722\"* house|strong=\"G3614\"* of|strong=\"G2532\"* a|strong=\"G2532\"* tanner|strong=\"G1038\"* named|strong=\"G4613\"* Simon|strong=\"G4613\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* seaside. When|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2532\"*, he|strong=\"G2532\"* will|strong=\"G2532\"* speak|strong=\"G3778\"* to|strong=\"G1519\"* you|strong=\"G3739\"*.’" + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* sent|strong=\"G3992\"* to|strong=\"G4314\"* you|strong=\"G4771\"* at|strong=\"G4314\"* once|strong=\"G1824\"*, and|strong=\"G5037\"* it|strong=\"G4160\"* was|strong=\"G3588\"* good|strong=\"G2573\"* of|strong=\"G5259\"* you|strong=\"G4771\"* to|strong=\"G4314\"* come|strong=\"G3854\"*. Now|strong=\"G3568\"* therefore|strong=\"G3767\"* we|strong=\"G2249\"* are|strong=\"G3588\"* all|strong=\"G3956\"* here|strong=\"G3918\"* present|strong=\"G3568\"* in|strong=\"G2316\"* the|strong=\"G3956\"* sight|strong=\"G1799\"* of|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G4314\"* hear all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G3568\"* commanded|strong=\"G4367\"* you|strong=\"G4771\"* by|strong=\"G5259\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 34, + "text": "Peter|strong=\"G4074\"* opened his|strong=\"G1909\"* mouth|strong=\"G4750\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Truly|strong=\"G1909\"* I|strong=\"G1161\"* perceive|strong=\"G2638\"* that|strong=\"G3754\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* show|strong=\"G4381\"* favoritism;" + }, + { + "verseNum": 35, + "text": "but|strong=\"G2532\"* in|strong=\"G1722\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* he|strong=\"G2532\"* who|strong=\"G3588\"* fears|strong=\"G5399\"* him|strong=\"G3588\"* and|strong=\"G2532\"* works|strong=\"G2038\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* acceptable|strong=\"G1184\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"G3956\"* word|strong=\"G3056\"* which|strong=\"G3739\"* he|strong=\"G3739\"* sent|strong=\"G2424\"* to|strong=\"G2424\"* the|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, preaching|strong=\"G2097\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G5207\"* peace|strong=\"G1515\"* by|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—he|strong=\"G3739\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G5207\"* all|strong=\"G3956\"*—" + }, + { + "verseNum": 37, + "text": "you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"* what|strong=\"G3739\"* happened|strong=\"G1096\"*, which|strong=\"G3739\"* was|strong=\"G1096\"* proclaimed|strong=\"G2784\"* throughout|strong=\"G2596\"* all|strong=\"G3650\"* Judea|strong=\"G2449\"*, beginning from|strong=\"G2596\"* Galilee|strong=\"G1056\"*, after|strong=\"G3326\"* the|strong=\"G2596\"* baptism which|strong=\"G3739\"* John|strong=\"G2491\"* preached|strong=\"G2784\"*;" + }, + { + "verseNum": 38, + "text": "how|strong=\"G5613\"* God|strong=\"G2316\"* anointed|strong=\"G5548\"* Jesus|strong=\"G2424\"* of|strong=\"G5259\"* Nazareth|strong=\"G3478\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* with|strong=\"G3326\"* power|strong=\"G1411\"*, who|strong=\"G3739\"* went|strong=\"G2424\"* about|strong=\"G5613\"* doing|strong=\"G1330\"* good|strong=\"G3956\"* and|strong=\"G2532\"* healing|strong=\"G2390\"* all|strong=\"G3956\"* who|strong=\"G3739\"* were|strong=\"G1510\"* oppressed|strong=\"G2616\"* by|strong=\"G5259\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* was|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 39, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* witnesses|strong=\"G3144\"* of|strong=\"G2532\"* everything|strong=\"G3956\"* he|strong=\"G2532\"* did|strong=\"G4160\"* both|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*; whom|strong=\"G3739\"* they|strong=\"G2532\"* also|strong=\"G2532\"*+ 10:39 TR omits “also”* killed, hanging|strong=\"G2910\"* him|strong=\"G3588\"* on|strong=\"G1909\"* a|strong=\"G2532\"* tree|strong=\"G3586\"*." + }, + { + "verseNum": 40, + "text": "God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"* the|strong=\"G1722\"* third|strong=\"G5154\"* day|strong=\"G2250\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1096\"* revealed," + }, + { + "verseNum": 41, + "text": "not|strong=\"G3756\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, but|strong=\"G2532\"* to|strong=\"G2532\"* witnesses|strong=\"G3144\"* who|strong=\"G3588\"* were|strong=\"G3588\"* chosen|strong=\"G3144\"* before|strong=\"G3588\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, to|strong=\"G2532\"* us|strong=\"G2249\"*, who|strong=\"G3588\"* ate|strong=\"G4906\"* and|strong=\"G2532\"* drank|strong=\"G4844\"* with|strong=\"G3326\"* him|strong=\"G3588\"* after|strong=\"G3326\"* he|strong=\"G2532\"* rose|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"G2532\"* commanded|strong=\"G3853\"* us|strong=\"G2249\"* to|strong=\"G2532\"* preach|strong=\"G2784\"* to|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* and|strong=\"G2532\"* to|strong=\"G2532\"* testify|strong=\"G1263\"* that|strong=\"G3754\"* this|strong=\"G3588\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* appointed|strong=\"G3724\"* by|strong=\"G5259\"* God|strong=\"G2316\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Judge|strong=\"G2923\"* of|strong=\"G5259\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"G3956\"* the|strong=\"G1519\"* prophets|strong=\"G4396\"* testify|strong=\"G3140\"* about|strong=\"G1519\"* him|strong=\"G3588\"*, that|strong=\"G3588\"* through|strong=\"G1223\"* his|strong=\"G3956\"* name|strong=\"G3686\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* will|strong=\"G3956\"* receive|strong=\"G2983\"* remission of|strong=\"G1223\"* sins.”" + }, + { + "verseNum": 44, + "text": "While|strong=\"G2980\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* still|strong=\"G2089\"* speaking|strong=\"G2980\"* these|strong=\"G3778\"* words|strong=\"G3056\"*, the|strong=\"G3956\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard the|strong=\"G3956\"* word|strong=\"G3056\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"* who|strong=\"G3588\"* believed|strong=\"G3588\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* came|strong=\"G4905\"* with|strong=\"G1537\"* Peter|strong=\"G4074\"*, because|strong=\"G3754\"* the|strong=\"G2532\"* gift|strong=\"G1431\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* was|strong=\"G3588\"* also|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* on|strong=\"G1909\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* heard them|strong=\"G3588\"* speaking|strong=\"G2980\"* in|strong=\"G2532\"* other|strong=\"G3588\"* languages|strong=\"G1100\"* and|strong=\"G2532\"* magnifying God|strong=\"G2316\"*." + }, + { + "verseNum": 47, + "text": "“Can|strong=\"G1410\"* anyone|strong=\"G5100\"* forbid|strong=\"G2967\"* these|strong=\"G3778\"* people|strong=\"G2983\"* from|strong=\"G2532\"* being|strong=\"G2532\"* baptized with|strong=\"G2532\"* water|strong=\"G5204\"*? They|strong=\"G2532\"* have|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* just|strong=\"G5613\"* like|strong=\"G5613\"* us|strong=\"G2249\"*.”" + }, + { + "verseNum": 48, + "text": "He|strong=\"G1161\"* commanded|strong=\"G4367\"* them|strong=\"G3588\"* to|strong=\"G1722\"* be|strong=\"G3588\"* baptized in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2250\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. Then|strong=\"G5119\"* they|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G3588\"* to|strong=\"G1722\"* stay|strong=\"G1961\"* some|strong=\"G5100\"* days|strong=\"G2250\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* brothers+ 11:1 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G2596\"* Judea|strong=\"G2449\"* heard|strong=\"G1484\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* had|strong=\"G2532\"* also|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G3753\"* Peter|strong=\"G4074\"* had|strong=\"G3588\"* come|strong=\"G1537\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1519\"* circumcision|strong=\"G4061\"* contended|strong=\"G1252\"* with|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "saying|strong=\"G3004\"*, “You|strong=\"G3754\"* went|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G4314\"* uncircumcised men and|strong=\"G2532\"* ate|strong=\"G4906\"* with|strong=\"G4314\"* them|strong=\"G3004\"*!”" + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* began|strong=\"G1161\"*, and|strong=\"G1161\"* explained|strong=\"G1620\"* to|strong=\"G3004\"* them|strong=\"G3004\"* in|strong=\"G3004\"* order|strong=\"G2517\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 5, + "text": "“I|strong=\"G1473\"* was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"* of|strong=\"G1537\"* Joppa|strong=\"G2445\"* praying|strong=\"G4336\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G5613\"* trance|strong=\"G1611\"* I|strong=\"G1473\"* saw|strong=\"G3708\"* a|strong=\"G5613\"* vision|strong=\"G3705\"*: a|strong=\"G5613\"* certain|strong=\"G5100\"* container|strong=\"G4632\"* descending|strong=\"G2597\"*, like|strong=\"G5613\"* it|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G5613\"* great|strong=\"G3173\"* sheet|strong=\"G3607\"* let|strong=\"G2524\"* down|strong=\"G2597\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* by|strong=\"G1722\"* four|strong=\"G5064\"* corners. It|strong=\"G2532\"* came|strong=\"G2064\"* as|strong=\"G5613\"* far|strong=\"G3588\"* as|strong=\"G5613\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* I|strong=\"G3739\"* had|strong=\"G2532\"* looked|strong=\"G3708\"* intently at|strong=\"G1519\"* it|strong=\"G2532\"*, I|strong=\"G3739\"* considered|strong=\"G2657\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* four-footed|strong=\"G5074\"* animals|strong=\"G5074\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, wild|strong=\"G2342\"* animals|strong=\"G5074\"*, creeping|strong=\"G2532\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* birds|strong=\"G4071\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G1473\"* also|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘Rise, \\+w Peter|strong=\"G4074\"\\+w*, \\+w kill|strong=\"G2380\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w*!’ *" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Not|strong=\"G1473\"* so|strong=\"G1161\"*, Lord|strong=\"G2962\"*, for|strong=\"G3754\"* nothing|strong=\"G3763\"* unholy|strong=\"G2839\"* or|strong=\"G2228\"* unclean|strong=\"G2839\"* has|strong=\"G2962\"* ever|strong=\"G1519\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1525\"* mouth|strong=\"G4750\"*.’" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* a|strong=\"G1161\"* voice|strong=\"G5456\"* answered me|strong=\"G2511\"* the|strong=\"G1537\"* second|strong=\"G1208\"* time|strong=\"G1208\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, ‘\\+w What|strong=\"G3739\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w has|strong=\"G2316\"\\+w* \\+w cleansed|strong=\"G2511\"\\+w*, don’\\+w t|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w call|strong=\"G2840\"\\+w* \\+w unclean|strong=\"G2840\"\\+w*.’*" + }, + { + "verseNum": 10, + "text": "This|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"* three|strong=\"G5151\"* times|strong=\"G5151\"*, and|strong=\"G2532\"* all|strong=\"G2532\"* were|strong=\"G3588\"* drawn up|strong=\"G1519\"* again|strong=\"G3825\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, immediately|strong=\"G1824\"* three|strong=\"G5140\"* men|strong=\"G3588\"* stood|strong=\"G2186\"* before|strong=\"G1909\"* the|strong=\"G1722\"* house|strong=\"G3614\"* where|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1510\"*, having|strong=\"G2532\"* been|strong=\"G1510\"* sent|strong=\"G2532\"* from|strong=\"G2532\"* Caesarea|strong=\"G2542\"* to|strong=\"G4314\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* told|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G1519\"* go|strong=\"G1525\"* with|strong=\"G4862\"* them|strong=\"G3588\"* without|strong=\"G3367\"* discriminating. These|strong=\"G3778\"* six|strong=\"G1803\"* brothers also|strong=\"G2532\"* accompanied|strong=\"G4905\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G3778\"*’s house|strong=\"G3624\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* told|strong=\"G3004\"* us|strong=\"G3004\"* how|strong=\"G4459\"* he|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G1722\"* angel standing|strong=\"G2476\"* in|strong=\"G1722\"* his|strong=\"G1519\"* house|strong=\"G3624\"* and|strong=\"G2532\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, ‘Send|strong=\"G3343\"* to|strong=\"G1519\"* Joppa|strong=\"G2445\"* and|strong=\"G2532\"* get|strong=\"G2532\"* Simon|strong=\"G4613\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* Peter|strong=\"G4074\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G4771\"* words|strong=\"G4487\"* by|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G4771\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, you|strong=\"G4771\"* and|strong=\"G2532\"* all|strong=\"G3956\"* your|strong=\"G2532\"* house|strong=\"G3624\"*.’" + }, + { + "verseNum": 15, + "text": "As|strong=\"G5618\"* I|strong=\"G1473\"* began|strong=\"G1909\"* to|strong=\"G2532\"* speak|strong=\"G2980\"*, the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G5618\"* on|strong=\"G1909\"* us|strong=\"G2249\"* at|strong=\"G1722\"* the|strong=\"G1722\"* beginning." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1161\"* remembered|strong=\"G3403\"* the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, how|strong=\"G5613\"* he|strong=\"G1161\"* said|strong=\"G3004\"*, ‘\\+w John|strong=\"G2491\"\\+w* \\+w indeed|strong=\"G3303\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w water|strong=\"G5204\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G2962\"\\+w* \\+w be|strong=\"G3588\"\\+w* baptized \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Holy|strong=\"G4151\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w*.’*" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2470\"* gift|strong=\"G1431\"* as|strong=\"G5613\"* us|strong=\"G1325\"* when|strong=\"G5613\"* we|strong=\"G2249\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G5101\"* was|strong=\"G1510\"* I|strong=\"G1473\"*, that|strong=\"G3588\"* I|strong=\"G1473\"* could|strong=\"G1415\"* withstand|strong=\"G2967\"* God|strong=\"G2316\"*?”" + }, + { + "verseNum": 18, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard|strong=\"G1484\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* held their|strong=\"G2532\"* peace|strong=\"G2270\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"*, saying|strong=\"G3004\"*, “Then|strong=\"G2532\"* God|strong=\"G2316\"* has|strong=\"G2316\"* also|strong=\"G2532\"* granted|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* repentance|strong=\"G3341\"* to|strong=\"G1519\"* life|strong=\"G2222\"*!”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* were|strong=\"G3588\"* scattered|strong=\"G1289\"* abroad|strong=\"G1289\"* by|strong=\"G1909\"* the|strong=\"G2532\"* oppression that|strong=\"G3588\"* arose|strong=\"G1096\"* about|strong=\"G1909\"* Stephen|strong=\"G4736\"* traveled as|strong=\"G2532\"* far|strong=\"G2193\"* as|strong=\"G2532\"* Phoenicia|strong=\"G5403\"*, Cyprus|strong=\"G2954\"*, and|strong=\"G2532\"* Antioch, speaking|strong=\"G2980\"* the|strong=\"G2532\"* word|strong=\"G3056\"* to|strong=\"G2532\"* no|strong=\"G3361\"* one|strong=\"G3367\"* except|strong=\"G1487\"* to|strong=\"G2532\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* there|strong=\"G2532\"* were|strong=\"G1510\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"*, men|strong=\"G5100\"* of|strong=\"G1537\"* Cyprus|strong=\"G2953\"* and|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, who|strong=\"G3588\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Antioch, spoke|strong=\"G2980\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Hellenists,+ 11:20 A Hellenist is someone who keeps Greek customs and culture.* preaching|strong=\"G2097\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G4183\"* number believed|strong=\"G4100\"* and|strong=\"G2532\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* report|strong=\"G3056\"* concerning|strong=\"G4012\"* them|strong=\"G3588\"* came|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G1722\"* ears|strong=\"G3775\"* of|strong=\"G4012\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* which|strong=\"G3588\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*. They|strong=\"G2532\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* Barnabas to|strong=\"G1519\"* go|strong=\"G1519\"* as|strong=\"G1519\"* far|strong=\"G2193\"* as|strong=\"G1519\"* Antioch," + }, + { + "verseNum": 23, + "text": "who|strong=\"G3739\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, was|strong=\"G3588\"* glad|strong=\"G5463\"*. He|strong=\"G2532\"* exhorted|strong=\"G3870\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, that|strong=\"G3739\"* with|strong=\"G2532\"* purpose|strong=\"G4286\"* of|strong=\"G2316\"* heart|strong=\"G2588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* remain|strong=\"G4357\"* near to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G2425\"* man, and|strong=\"G2532\"* full|strong=\"G4134\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G4151\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* many|strong=\"G2425\"* people|strong=\"G3793\"* were|strong=\"G1510\"* added|strong=\"G4369\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 25, + "text": "Barnabas went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Tarsus|strong=\"G5019\"* to|strong=\"G1519\"* look for|strong=\"G1519\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* found|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* brought|strong=\"G1096\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Antioch. For|strong=\"G1519\"* a|strong=\"G1096\"* whole|strong=\"G3650\"* year|strong=\"G1763\"* they|strong=\"G2532\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* with|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* taught|strong=\"G1321\"* many|strong=\"G2425\"* people|strong=\"G3793\"*. The|strong=\"G1722\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* first|strong=\"G4413\"* called|strong=\"G5537\"* Christians|strong=\"G5546\"* in|strong=\"G1722\"* Antioch." + }, + { + "verseNum": 27, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* these|strong=\"G3778\"* days|strong=\"G2250\"*, prophets|strong=\"G4396\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2718\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* Antioch." + }, + { + "verseNum": 28, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* them|strong=\"G3588\"* named|strong=\"G3686\"* Agabus stood|strong=\"G3588\"* up|strong=\"G1537\"* and|strong=\"G1161\"* indicated by|strong=\"G1223\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* there|strong=\"G1161\"* should|strong=\"G3195\"* be|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* famine|strong=\"G3042\"* all|strong=\"G3650\"* over|strong=\"G1909\"* the|strong=\"G1537\"* world|strong=\"G3625\"*, which|strong=\"G3588\"* also|strong=\"G1161\"* happened|strong=\"G1096\"* in|strong=\"G1909\"* the|strong=\"G1537\"* days of|strong=\"G1537\"* Claudius|strong=\"G2804\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"G2531\"* any|strong=\"G5100\"* of|strong=\"G5100\"* the|strong=\"G1722\"* disciples|strong=\"G3101\"* had|strong=\"G3588\"* plenty, each|strong=\"G1538\"* determined|strong=\"G3724\"* to|strong=\"G1519\"* send|strong=\"G3992\"* relief|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G1722\"* brothers who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G1722\"* Judea|strong=\"G2449\"*;" + }, + { + "verseNum": 30, + "text": "which|strong=\"G3739\"* they|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G4160\"*, sending it|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* by|strong=\"G1223\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* about|strong=\"G2596\"* that|strong=\"G3588\"* time|strong=\"G2540\"*, King|strong=\"G3588\"* Herod|strong=\"G2264\"* stretched out|strong=\"G2596\"* his|strong=\"G1565\"* hands|strong=\"G5495\"* to|strong=\"G2596\"* oppress some|strong=\"G5100\"* of|strong=\"G1577\"* the|strong=\"G1161\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* killed James|strong=\"G2385\"*, the|strong=\"G1161\"* brother of|strong=\"G3588\"* John|strong=\"G2491\"*, with|strong=\"G3588\"* the|strong=\"G1161\"* sword|strong=\"G3162\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* it|strong=\"G2532\"* pleased the|strong=\"G2532\"* Jews|strong=\"G2453\"*, he|strong=\"G2532\"* proceeded|strong=\"G4369\"* to|strong=\"G2532\"* seize Peter|strong=\"G4074\"* also|strong=\"G2532\"*. This|strong=\"G3588\"* was|strong=\"G1510\"* during the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* unleavened bread." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* arrested him|strong=\"G3588\"*, he|strong=\"G2532\"* put|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1519\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* to|strong=\"G1519\"* four|strong=\"G5064\"* squads|strong=\"G5069\"* of|strong=\"G2532\"* four|strong=\"G5064\"* soldiers|strong=\"G4757\"* each|strong=\"G3326\"* to|strong=\"G1519\"* guard|strong=\"G5442\"* him|strong=\"G3588\"*, intending|strong=\"G1014\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* him|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G2992\"* after|strong=\"G3326\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"*." + }, + { + "verseNum": 5, + "text": "Peter|strong=\"G4074\"* therefore|strong=\"G3767\"* was|strong=\"G1510\"* kept|strong=\"G5083\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prison|strong=\"G5438\"*, but|strong=\"G1161\"* constant prayer|strong=\"G4335\"* was|strong=\"G1510\"* made|strong=\"G1096\"* by|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* to|strong=\"G4314\"* God|strong=\"G2316\"* for|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G1161\"* same|strong=\"G1565\"* night|strong=\"G3571\"* when|strong=\"G3753\"* Herod|strong=\"G2264\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G3195\"* bring|strong=\"G4254\"* him|strong=\"G3588\"* out|strong=\"G1510\"*, Peter|strong=\"G4074\"* was|strong=\"G1510\"* sleeping|strong=\"G2837\"* between|strong=\"G3342\"* two|strong=\"G1417\"* soldiers|strong=\"G4757\"*, bound|strong=\"G1210\"* with|strong=\"G1210\"* two|strong=\"G1417\"* chains|strong=\"G1210\"*. Guards|strong=\"G5441\"* in|strong=\"G1161\"* front|strong=\"G4253\"* of|strong=\"G3588\"* the|strong=\"G1161\"* door|strong=\"G2374\"* kept|strong=\"G5083\"* the|strong=\"G1161\"* prison|strong=\"G5438\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, an|strong=\"G2532\"* angel of|strong=\"G1537\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* light|strong=\"G5457\"* shone|strong=\"G2989\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cell|strong=\"G3612\"*. He|strong=\"G2532\"* struck|strong=\"G3960\"* Peter|strong=\"G4074\"* on|strong=\"G1722\"* the|strong=\"G1722\"* side|strong=\"G4125\"* and|strong=\"G2532\"* woke|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*, saying|strong=\"G3004\"*, “Stand|strong=\"G1453\"* up|strong=\"G1453\"* quickly|strong=\"G5034\"*!” His|strong=\"G1722\"* chains fell|strong=\"G2532\"* off|strong=\"G1601\"* his|strong=\"G1722\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Get|strong=\"G2532\"* dressed|strong=\"G4016\"* and|strong=\"G2532\"* put|strong=\"G4160\"* on|strong=\"G1161\"* your|strong=\"G2532\"* sandals|strong=\"G4547\"*.” He|strong=\"G2532\"* did|strong=\"G4160\"* so|strong=\"G3779\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “Put|strong=\"G4160\"* on|strong=\"G1161\"* your|strong=\"G2532\"* cloak|strong=\"G2440\"* and|strong=\"G2532\"* follow|strong=\"G1161\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 9, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* followed|strong=\"G1096\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* that|strong=\"G3754\"* what|strong=\"G3588\"* was|strong=\"G1510\"* being|strong=\"G1510\"* done|strong=\"G1096\"* by|strong=\"G1223\"* the|strong=\"G2532\"* angel was|strong=\"G1510\"* real, but|strong=\"G1161\"* thought|strong=\"G1380\"* he|strong=\"G2532\"* saw|strong=\"G1492\"* a|strong=\"G1096\"* vision|strong=\"G3705\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* past|strong=\"G1330\"* the|strong=\"G2532\"* first|strong=\"G4413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* second|strong=\"G1208\"* guard|strong=\"G2532\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* iron|strong=\"G4603\"* gate|strong=\"G4439\"* that|strong=\"G3588\"* leads|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, which|strong=\"G3588\"* opened to|strong=\"G1519\"* them|strong=\"G3588\"* by|strong=\"G1909\"* itself. They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* down one|strong=\"G1520\"* street|strong=\"G4505\"*, and|strong=\"G2532\"* immediately|strong=\"G2112\"* the|strong=\"G2532\"* angel departed|strong=\"G1831\"* from|strong=\"G2064\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G2532\"* Peter|strong=\"G4074\"* had|strong=\"G2532\"* come|strong=\"G1096\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “Now|strong=\"G3568\"* I|strong=\"G1473\"* truly|strong=\"G1722\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* sent|strong=\"G1821\"* out|strong=\"G1537\"* his|strong=\"G1438\"* angel and|strong=\"G2532\"* delivered|strong=\"G1807\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* Herod|strong=\"G2264\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* everything|strong=\"G3956\"* the|strong=\"G1722\"* Jewish|strong=\"G2453\"* people|strong=\"G2992\"* were|strong=\"G3588\"* expecting|strong=\"G4329\"*.”" + }, + { + "verseNum": 12, + "text": "Thinking about|strong=\"G1909\"* that|strong=\"G3588\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Mary|strong=\"G3137\"*, the|strong=\"G2532\"* mother|strong=\"G3384\"* of|strong=\"G2532\"* John|strong=\"G2491\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G1941\"* Mark|strong=\"G3138\"*, where|strong=\"G3757\"* many|strong=\"G2425\"* were|strong=\"G1510\"* gathered|strong=\"G4867\"* together|strong=\"G1909\"* and|strong=\"G2532\"* were|strong=\"G1510\"* praying|strong=\"G4336\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* Peter knocked|strong=\"G2925\"* at|strong=\"G1161\"* the|strong=\"G1161\"* door|strong=\"G2374\"* of|strong=\"G3686\"* the|strong=\"G1161\"* gate|strong=\"G4440\"*, a|strong=\"G1161\"* servant|strong=\"G3588\"* girl named|strong=\"G3686\"* Rhoda|strong=\"G4498\"* came|strong=\"G4334\"* to|strong=\"G4334\"* answer|strong=\"G5219\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* recognized|strong=\"G1921\"* Peter|strong=\"G4074\"*’s voice|strong=\"G5456\"*, she|strong=\"G2532\"* didn’t|strong=\"G3588\"* open the|strong=\"G2532\"* gate|strong=\"G4440\"* for|strong=\"G1161\"* joy|strong=\"G5479\"*, but|strong=\"G1161\"* ran|strong=\"G1532\"* in|strong=\"G2532\"* and|strong=\"G2532\"* reported that|strong=\"G3588\"* Peter|strong=\"G4074\"* was|strong=\"G3588\"* standing|strong=\"G2476\"* in|strong=\"G2532\"* front|strong=\"G4253\"* of|strong=\"G2532\"* the|strong=\"G2532\"* gate|strong=\"G4440\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* her|strong=\"G1438\"*, “You|strong=\"G3004\"* are|strong=\"G1510\"* crazy!” But|strong=\"G1161\"* she|strong=\"G1161\"* insisted that|strong=\"G3588\"* it|strong=\"G1161\"* was|strong=\"G1510\"* so|strong=\"G3779\"*. They|strong=\"G1161\"* said|strong=\"G3004\"*, “It|strong=\"G1161\"* is|strong=\"G1510\"* his|strong=\"G1438\"* angel.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Peter|strong=\"G4074\"* continued|strong=\"G1961\"* knocking|strong=\"G2925\"*. When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* opened, they|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G3588\"* amazed|strong=\"G1839\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"*, beckoning|strong=\"G2678\"* to|strong=\"G1519\"* them|strong=\"G3588\"* with|strong=\"G1537\"* his|strong=\"G1519\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* be|strong=\"G2532\"* silent|strong=\"G4601\"*, declared|strong=\"G1334\"* to|strong=\"G1519\"* them|strong=\"G3588\"* how|strong=\"G4459\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* had|strong=\"G2532\"* brought|strong=\"G1806\"* him|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* prison|strong=\"G5438\"*. He|strong=\"G2532\"* said|strong=\"G3004\"*, “Tell|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G1519\"* James|strong=\"G2385\"* and|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* brothers.” Then|strong=\"G2532\"* he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* to|strong=\"G1519\"* another|strong=\"G2087\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* as|strong=\"G1722\"* soon|strong=\"G1722\"* as|strong=\"G1722\"* it|strong=\"G1161\"* was|strong=\"G1510\"* day|strong=\"G2250\"*, there|strong=\"G1161\"* was|strong=\"G1510\"* no|strong=\"G3756\"* small|strong=\"G3641\"* stir|strong=\"G5017\"* among|strong=\"G1722\"* the|strong=\"G1722\"* soldiers|strong=\"G4757\"* about|strong=\"G1722\"* what|strong=\"G5101\"* had|strong=\"G1510\"* become|strong=\"G1096\"* of|strong=\"G2250\"* Peter|strong=\"G4074\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G1161\"* Herod|strong=\"G2264\"* had|strong=\"G2532\"* sought|strong=\"G1934\"* for|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* examined the|strong=\"G2532\"* guards|strong=\"G5441\"*, then|strong=\"G2532\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* put|strong=\"G2532\"* to|strong=\"G1519\"* death. He|strong=\"G2532\"* went|strong=\"G2532\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Judea|strong=\"G2449\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, and|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G2532\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* Herod|strong=\"G1510\"* was|strong=\"G1510\"* very|strong=\"G2532\"* angry|strong=\"G2371\"* with|strong=\"G4314\"* the|strong=\"G2532\"* people|strong=\"G1510\"* of|strong=\"G1223\"* Tyre|strong=\"G5183\"* and|strong=\"G2532\"* Sidon|strong=\"G4606\"*. They|strong=\"G2532\"* came|strong=\"G2532\"* with|strong=\"G4314\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* to|strong=\"G4314\"* him|strong=\"G3588\"* and|strong=\"G2532\"*, having|strong=\"G2532\"* made|strong=\"G1161\"* Blastus, the|strong=\"G2532\"* king|strong=\"G3588\"*’s personal aide, their|strong=\"G2532\"* friend|strong=\"G3982\"*, they|strong=\"G2532\"* asked for|strong=\"G1223\"* peace|strong=\"G1515\"*, because|strong=\"G1223\"* their|strong=\"G2532\"* country|strong=\"G5561\"* depended on|strong=\"G1909\"* the|strong=\"G2532\"* king|strong=\"G3588\"*’s country|strong=\"G5561\"* for|strong=\"G1223\"* food." + }, + { + "verseNum": 21, + "text": "On|strong=\"G1909\"* an|strong=\"G2532\"* appointed|strong=\"G5002\"* day|strong=\"G2250\"*, Herod|strong=\"G2264\"* dressed|strong=\"G1746\"* himself|strong=\"G1438\"* in|strong=\"G1909\"* royal clothing|strong=\"G2066\"*, sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne, and|strong=\"G2532\"* gave|strong=\"G2532\"* a|strong=\"G2532\"* speech to|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G2532\"* people|strong=\"G1218\"* shouted|strong=\"G2019\"*, “The|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G2532\"* god|strong=\"G2316\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* of|strong=\"G2316\"* a|strong=\"G2532\"* man|strong=\"G3756\"*!”" + }, + { + "verseNum": 23, + "text": "Immediately|strong=\"G3916\"* an|strong=\"G2532\"* angel of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* struck|strong=\"G3960\"* him|strong=\"G3588\"*, because|strong=\"G1161\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* God|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"*. Then|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* eaten|strong=\"G4662\"* by|strong=\"G2532\"* worms|strong=\"G4662\"* and|strong=\"G2532\"* died|strong=\"G1634\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* grew and|strong=\"G2532\"* multiplied|strong=\"G4129\"*." + }, + { + "verseNum": 25, + "text": "Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"* returned|strong=\"G5290\"* to|strong=\"G1519\"*+ 12:25 TR reads “from” instead of “to”* Jerusalem|strong=\"G2419\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* fulfilled|strong=\"G4137\"* their|strong=\"G2532\"* service|strong=\"G1248\"*, also|strong=\"G2532\"* taking|strong=\"G4838\"* with|strong=\"G1537\"* them|strong=\"G3588\"* John|strong=\"G2491\"* who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G1941\"* Mark|strong=\"G3138\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* was|strong=\"G1510\"* at|strong=\"G1722\"* Antioch there|strong=\"G2532\"* were|strong=\"G1510\"* some|strong=\"G3588\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* teachers|strong=\"G1320\"*: Barnabas, Simeon|strong=\"G4826\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* Niger|strong=\"G3526\"*, Lucius|strong=\"G3066\"* of|strong=\"G2532\"* Cyrene|strong=\"G2956\"*, Manaen|strong=\"G3127\"* the|strong=\"G1722\"* foster brother of|strong=\"G2532\"* Herod|strong=\"G2264\"* the|strong=\"G1722\"* tetrarch|strong=\"G5076\"*, and|strong=\"G2532\"* Saul|strong=\"G4569\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* served the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* fasted|strong=\"G3522\"*, the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* said|strong=\"G3004\"*, “Separate Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"* for|strong=\"G1519\"* me|strong=\"G1473\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* work|strong=\"G2041\"* to|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2532\"* called|strong=\"G3004\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* fasted|strong=\"G3522\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* their|strong=\"G2532\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* sent|strong=\"G2532\"* them|strong=\"G3588\"* away." + }, + { + "verseNum": 4, + "text": "So|strong=\"G3767\"*, being|strong=\"G3767\"* sent|strong=\"G1599\"* out|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, they|strong=\"G3588\"* went|strong=\"G2718\"* down|strong=\"G2718\"* to|strong=\"G1519\"* Seleucia|strong=\"G4581\"*. From|strong=\"G5259\"* there|strong=\"G1564\"* they|strong=\"G3588\"* sailed to|strong=\"G1519\"* Cyprus|strong=\"G2954\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Salamis|strong=\"G4529\"*, they|strong=\"G2532\"* proclaimed|strong=\"G2605\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* word|strong=\"G3056\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jewish|strong=\"G2453\"* synagogues|strong=\"G4864\"*. They|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* John|strong=\"G2491\"* as|strong=\"G1722\"* their|strong=\"G2532\"* attendant|strong=\"G5257\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* gone|strong=\"G1330\"* through|strong=\"G1330\"* the|strong=\"G1161\"* island|strong=\"G3520\"* to|strong=\"G5100\"* Paphos|strong=\"G3974\"*, they|strong=\"G1161\"* found|strong=\"G2147\"* a|strong=\"G2147\"* certain|strong=\"G5100\"* sorcerer|strong=\"G3097\"*, a|strong=\"G2147\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"*, a|strong=\"G2147\"* Jew|strong=\"G2453\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* was|strong=\"G3588\"* Bar Jesus," + }, + { + "verseNum": 7, + "text": "who|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G4862\"* the|strong=\"G2532\"* proconsul, Sergius|strong=\"G4588\"* Paulus|strong=\"G3972\"*, a|strong=\"G2532\"* man|strong=\"G3778\"* of|strong=\"G3056\"* understanding. This|strong=\"G3778\"* man|strong=\"G3778\"* summoned|strong=\"G4341\"* Barnabas and|strong=\"G2532\"* Saul|strong=\"G4569\"*, and|strong=\"G2532\"* sought|strong=\"G1934\"* to|strong=\"G2532\"* hear the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* Elymas|strong=\"G1681\"* the|strong=\"G1161\"* sorcerer|strong=\"G3097\"* (for|strong=\"G1063\"* so|strong=\"G3779\"* is|strong=\"G3588\"* his|strong=\"G2212\"* name|strong=\"G3686\"* by|strong=\"G1063\"* interpretation|strong=\"G3177\"*) withstood them|strong=\"G3588\"*, seeking|strong=\"G2212\"* to|strong=\"G2212\"* turn|strong=\"G1294\"* the|strong=\"G1161\"* proconsul away|strong=\"G1294\"* from|strong=\"G3588\"* the|strong=\"G1161\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Saul|strong=\"G4569\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* also|strong=\"G2532\"* called|strong=\"G3972\"* Paul|strong=\"G3972\"*, filled|strong=\"G4130\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, fastened his|strong=\"G1519\"* eyes on|strong=\"G1519\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"*, “You|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*, full|strong=\"G4134\"* of|strong=\"G5207\"* all|strong=\"G3956\"* deceit|strong=\"G1388\"* and|strong=\"G2532\"* all|strong=\"G3956\"* cunning, you|strong=\"G3004\"* enemy|strong=\"G2190\"* of|strong=\"G5207\"* all|strong=\"G3956\"* righteousness|strong=\"G1343\"*, will|strong=\"G2532\"* you|strong=\"G3004\"* not|strong=\"G3756\"* cease|strong=\"G3973\"* to|strong=\"G2532\"* pervert|strong=\"G1294\"* the|strong=\"G2532\"* right|strong=\"G2117\"* ways|strong=\"G3598\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"*, behold|strong=\"G2400\"*, the|strong=\"G2532\"* hand|strong=\"G5495\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* on|strong=\"G1909\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G1510\"* be|strong=\"G1510\"* blind|strong=\"G5185\"*, not|strong=\"G3361\"* seeing|strong=\"G3708\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* for|strong=\"G1909\"* a|strong=\"G2532\"* season|strong=\"G2540\"*!”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* the|strong=\"G1909\"* proconsul, when|strong=\"G1096\"* he|strong=\"G3588\"* saw|strong=\"G3708\"* what|strong=\"G3588\"* was|strong=\"G1096\"* done|strong=\"G1096\"*, believed|strong=\"G4100\"*, being|strong=\"G1096\"* astonished|strong=\"G1605\"* at|strong=\"G1909\"* the|strong=\"G1909\"* teaching|strong=\"G1322\"* of|strong=\"G2962\"* the|strong=\"G1909\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G1161\"* his|strong=\"G1519\"* company|strong=\"G4012\"* set|strong=\"G2064\"* sail from|strong=\"G2064\"* Paphos|strong=\"G3974\"* and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Perga|strong=\"G4011\"* in|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*. John|strong=\"G2491\"* departed from|strong=\"G2064\"* them|strong=\"G3588\"* and|strong=\"G1161\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"*, passing|strong=\"G1330\"* on|strong=\"G1519\"* from|strong=\"G2064\"* Perga|strong=\"G4011\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* Antioch of|strong=\"G2250\"* Pisidia|strong=\"G4099\"*. They|strong=\"G2532\"* went|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"* and|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"*." + }, + { + "verseNum": 15, + "text": "After|strong=\"G3326\"* the|strong=\"G1722\"* reading of|strong=\"G3056\"* the|strong=\"G1722\"* law|strong=\"G3551\"* and|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*, the|strong=\"G1722\"* rulers of|strong=\"G3056\"* the|strong=\"G1722\"* synagogue sent|strong=\"G2532\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Brothers, if|strong=\"G1487\"* you|strong=\"G5210\"* have|strong=\"G2532\"* any|strong=\"G5100\"* word|strong=\"G3056\"* of|strong=\"G3056\"* exhortation|strong=\"G3874\"* for|strong=\"G4314\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, speak|strong=\"G3004\"*.”" + }, + { + "verseNum": 16, + "text": "Paul|strong=\"G3972\"* stood|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* gesturing|strong=\"G2678\"* with|strong=\"G2532\"* his|strong=\"G2532\"* hand|strong=\"G5495\"* said|strong=\"G3004\"*, “Men|strong=\"G3588\"* of|strong=\"G2316\"* Israel|strong=\"G2475\"*, and|strong=\"G2532\"* you|strong=\"G3004\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, listen." + }, + { + "verseNum": 17, + "text": "The|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G1537\"* this|strong=\"G3778\"* people|strong=\"G2992\"*+ 13:17 TR, NU add “Israel”* chose|strong=\"G1586\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* exalted|strong=\"G5312\"* the|strong=\"G1722\"* people|strong=\"G2992\"* when|strong=\"G2532\"* they|strong=\"G2532\"* stayed as|strong=\"G1722\"* aliens in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, and|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* uplifted|strong=\"G5308\"* arm|strong=\"G1023\"*, he|strong=\"G2532\"* led|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1722\"* a|strong=\"G5613\"* period|strong=\"G5550\"* of|strong=\"G2532\"* about|strong=\"G5613\"* forty|strong=\"G5063\"* years|strong=\"G5063\"* he|strong=\"G2532\"* put|strong=\"G2532\"* up|strong=\"G2532\"* with|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* destroyed|strong=\"G2507\"* seven|strong=\"G2033\"* nations|strong=\"G1484\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G2532\"* Canaan|strong=\"G5477\"*, he|strong=\"G2532\"* gave|strong=\"G2532\"* them|strong=\"G3588\"* their|strong=\"G2532\"* land|strong=\"G1093\"* for|strong=\"G1722\"* an|strong=\"G2532\"* inheritance|strong=\"G2624\"* for|strong=\"G1722\"* about|strong=\"G1722\"* four hundred fifty years." + }, + { + "verseNum": 20, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, he|strong=\"G2532\"* gave|strong=\"G1325\"* them|strong=\"G1325\"* judges|strong=\"G2923\"* until|strong=\"G2193\"* Samuel|strong=\"G4545\"* the|strong=\"G2532\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 21, + "text": "Afterward|strong=\"G2547\"* they|strong=\"G2532\"* asked for|strong=\"G2532\"* a|strong=\"G2532\"* king|strong=\"G3588\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"* Saul|strong=\"G4549\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G1537\"* Kish|strong=\"G2797\"*, a|strong=\"G2532\"* man|strong=\"G5207\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin, for|strong=\"G2532\"* forty|strong=\"G5062\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* removed|strong=\"G3179\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* David|strong=\"G1138\"* to|strong=\"G1519\"* be|strong=\"G2532\"* their|strong=\"G2532\"* king|strong=\"G3588\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* testified|strong=\"G3140\"*, ‘I|strong=\"G1473\"* have|strong=\"G2532\"* found|strong=\"G2147\"* David|strong=\"G1138\"* the|strong=\"G2532\"* son of|strong=\"G2532\"* Jesse|strong=\"G2421\"*, a|strong=\"G2532\"* man|strong=\"G3956\"* after|strong=\"G2596\"* my|strong=\"G3956\"* heart|strong=\"G2588\"*, who|strong=\"G3739\"* will|strong=\"G2307\"* do|strong=\"G4160\"* all|strong=\"G3956\"* my|strong=\"G3956\"* will|strong=\"G2307\"*.’" + }, + { + "verseNum": 23, + "text": "From|strong=\"G2596\"* this|strong=\"G3778\"* man|strong=\"G3778\"*’s offspring, God|strong=\"G2316\"* has|strong=\"G2316\"* brought salvation+ 13:23 TR, NU read “a Savior, Jesus” instead of “salvation”* to|strong=\"G2596\"* Israel|strong=\"G2474\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G2596\"* promise|strong=\"G1860\"*," + }, + { + "verseNum": 24, + "text": "before|strong=\"G4253\"* his|strong=\"G3956\"* coming|strong=\"G1529\"*, when|strong=\"G3588\"* John|strong=\"G2491\"* had|strong=\"G3588\"* first|strong=\"G3588\"* preached|strong=\"G4296\"* the|strong=\"G3956\"* baptism of|strong=\"G3956\"* repentance|strong=\"G3341\"* to|strong=\"G3956\"* Israel|strong=\"G2474\"*.+ 13:24 TR, NU read “to all the people of Israel” instead of “to Israel”*" + }, + { + "verseNum": 25, + "text": "As|strong=\"G5613\"* John|strong=\"G2491\"* was|strong=\"G1510\"* fulfilling his|strong=\"G3708\"* course|strong=\"G1408\"*, he|strong=\"G1161\"* said|strong=\"G3004\"*, ‘What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3739\"* suppose|strong=\"G5101\"* that|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"*? I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* he|strong=\"G1161\"*. But|strong=\"G1161\"* behold|strong=\"G2400\"*, one|strong=\"G3739\"* comes|strong=\"G2064\"* after|strong=\"G3326\"* me|strong=\"G1473\"*, the|strong=\"G1161\"* sandals|strong=\"G5266\"* of|strong=\"G3588\"* whose|strong=\"G3739\"* feet|strong=\"G4228\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* worthy to|strong=\"G3004\"* untie|strong=\"G3089\"*.’" + }, + { + "verseNum": 26, + "text": "“Brothers, children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* stock|strong=\"G1085\"* of|strong=\"G5207\"* Abraham, and|strong=\"G2532\"* those|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G5207\"* this|strong=\"G3778\"* salvation|strong=\"G4991\"* is|strong=\"G3588\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* rulers, because|strong=\"G1063\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1722\"* him|strong=\"G3588\"*, nor|strong=\"G2532\"* the|strong=\"G1722\"* voices|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* which|strong=\"G3588\"* are|strong=\"G3588\"* read every|strong=\"G3956\"* Sabbath|strong=\"G4521\"*, fulfilled|strong=\"G4137\"* them|strong=\"G3588\"* by|strong=\"G1722\"* condemning|strong=\"G2919\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Though|strong=\"G2532\"* they|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3367\"* cause|strong=\"G3367\"* for|strong=\"G2532\"* death|strong=\"G2288\"*, they|strong=\"G2532\"* still asked Pilate|strong=\"G4091\"* to|strong=\"G2532\"* have|strong=\"G2532\"* him|strong=\"G2532\"* killed." + }, + { + "verseNum": 29, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* fulfilled|strong=\"G5055\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* written|strong=\"G1125\"* about|strong=\"G4012\"* him|strong=\"G3588\"*, they|strong=\"G1161\"* took|strong=\"G2507\"* him|strong=\"G3588\"* down|strong=\"G5087\"* from|strong=\"G3588\"* the|strong=\"G1519\"* tree|strong=\"G3586\"* and|strong=\"G1161\"* laid|strong=\"G5087\"* him|strong=\"G3588\"* in|strong=\"G1519\"* a|strong=\"G5613\"* tomb|strong=\"G3419\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"G2250\"* he|strong=\"G3739\"* was|strong=\"G1510\"* seen|strong=\"G3708\"* for|strong=\"G1519\"* many|strong=\"G4183\"* days|strong=\"G2250\"* by|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* came|strong=\"G3588\"* up|strong=\"G1519\"* with|strong=\"G4314\"* him|strong=\"G3588\"* from|strong=\"G3588\"* Galilee|strong=\"G1056\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, who|strong=\"G3739\"* are|strong=\"G1510\"* his|strong=\"G1519\"* witnesses|strong=\"G3144\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"G2249\"* bring|strong=\"G2097\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"* of|strong=\"G2316\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* made|strong=\"G1096\"* to|strong=\"G4314\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 33, + "text": "that|strong=\"G3588\"* God|strong=\"G2316\"* has|strong=\"G2316\"* fulfilled|strong=\"G1603\"* this|strong=\"G3588\"* to|strong=\"G2532\"* us|strong=\"G1722\"*, their|strong=\"G2532\"* children|strong=\"G5043\"*, in|strong=\"G1722\"* that|strong=\"G3588\"* he|strong=\"G2532\"* raised|strong=\"G2316\"* up|strong=\"G2532\"* Jesus|strong=\"G2424\"*. As|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* second|strong=\"G1208\"* psalm|strong=\"G5568\"*," + }, + { + "verseNum": 34, + "text": "“Concerning|strong=\"G1519\"* that|strong=\"G3754\"* he|strong=\"G1161\"* raised|strong=\"G3498\"* him|strong=\"G3588\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*, now|strong=\"G1161\"* no|strong=\"G3371\"* more|strong=\"G3371\"* to|strong=\"G1519\"* return|strong=\"G5290\"* to|strong=\"G1519\"* corruption|strong=\"G1312\"*, he|strong=\"G1161\"* has|strong=\"G3748\"* spoken|strong=\"G3004\"* thus|strong=\"G3779\"*: ‘I|strong=\"G1161\"* will|strong=\"G3195\"* give|strong=\"G1325\"* you|strong=\"G5210\"* the|strong=\"G1519\"* holy|strong=\"G3741\"* and|strong=\"G1161\"* sure|strong=\"G4103\"* blessings of|strong=\"G1537\"* David|strong=\"G1138\"*.’+ 13:34 Isaiah 55:3*" + }, + { + "verseNum": 35, + "text": "Therefore|strong=\"G1360\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* another|strong=\"G2087\"* psalm, ‘You|strong=\"G4771\"* will|strong=\"G2532\"* not|strong=\"G3756\"* allow|strong=\"G1325\"* your|strong=\"G2532\"* Holy|strong=\"G3741\"* One|strong=\"G3588\"* to|strong=\"G2532\"* see|strong=\"G3708\"* decay|strong=\"G1312\"*.’+ 13:35 Psalms 16:10*" + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* David|strong=\"G1138\"*, after|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* in|strong=\"G2532\"* his|strong=\"G2398\"* own|strong=\"G2398\"* generation|strong=\"G1074\"* served|strong=\"G5256\"* the|strong=\"G2532\"* counsel|strong=\"G1012\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, fell|strong=\"G2837\"* asleep|strong=\"G2837\"*, was|strong=\"G3588\"* laid|strong=\"G4369\"* with|strong=\"G4314\"* his|strong=\"G2398\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* decay|strong=\"G1312\"*." + }, + { + "verseNum": 38, + "text": "Be|strong=\"G1510\"* it|strong=\"G2532\"* known|strong=\"G1110\"* to|strong=\"G2532\"* you|strong=\"G5210\"* therefore|strong=\"G3767\"*, brothers,+ 13:38 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* through|strong=\"G1223\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* proclaimed|strong=\"G2605\"* to|strong=\"G2532\"* you|strong=\"G5210\"* remission of|strong=\"G1223\"* sins;" + }, + { + "verseNum": 39, + "text": "and|strong=\"G3956\"* by|strong=\"G1722\"* him|strong=\"G3588\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* believes|strong=\"G4100\"* is|strong=\"G3588\"* justified|strong=\"G1344\"* from|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, from|strong=\"G3756\"* which|strong=\"G3739\"* you|strong=\"G3739\"* could|strong=\"G1410\"* not|strong=\"G3756\"* be|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G3551\"* Moses|strong=\"G3475\"*." + }, + { + "verseNum": 40, + "text": "Beware therefore|strong=\"G3767\"*, lest|strong=\"G3361\"* that|strong=\"G3588\"* come|strong=\"G1904\"* on|strong=\"G1722\"* you|strong=\"G1722\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spoken|strong=\"G3004\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*:" + }, + { + "verseNum": 41, + "text": "‘Behold|strong=\"G3708\"*, you|strong=\"G5210\"* scoffers|strong=\"G2707\"*!" + }, + { + "verseNum": 42, + "text": "So|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1519\"* Jews went|strong=\"G3588\"* out|strong=\"G1826\"* of|strong=\"G4487\"* the|strong=\"G1519\"* synagogue, the|strong=\"G1519\"* Gentiles begged|strong=\"G3870\"* that|strong=\"G3588\"* these|strong=\"G3778\"* words|strong=\"G4487\"* might|strong=\"G3778\"* be|strong=\"G1519\"* preached|strong=\"G2980\"* to|strong=\"G1519\"* them|strong=\"G3588\"* the|strong=\"G1519\"* next|strong=\"G3342\"* Sabbath|strong=\"G4521\"*." + }, + { + "verseNum": 43, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* broke|strong=\"G3089\"* up|strong=\"G2532\"*, many|strong=\"G4183\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* proselytes|strong=\"G4339\"* followed|strong=\"G3982\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas; who|strong=\"G3588\"*, speaking|strong=\"G4354\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, urged them|strong=\"G3588\"* to|strong=\"G2532\"* continue|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"G3956\"* next|strong=\"G2064\"* Sabbath|strong=\"G4521\"*, almost|strong=\"G4975\"* the|strong=\"G3956\"* whole|strong=\"G3956\"* city|strong=\"G4172\"* was|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2064\"* hear the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2962\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* jealousy|strong=\"G2205\"*, and|strong=\"G2532\"* contradicted the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*, and|strong=\"G2532\"* blasphemed." + }, + { + "verseNum": 46, + "text": "Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas spoke|strong=\"G2980\"* out|strong=\"G2532\"* boldly|strong=\"G3955\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “It|strong=\"G2532\"* was|strong=\"G1510\"* necessary that|strong=\"G3588\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* should|strong=\"G2316\"* be|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G1519\"* you|strong=\"G5210\"* first|strong=\"G4413\"*. Since|strong=\"G1894\"* indeed|strong=\"G2532\"* you|strong=\"G5210\"* thrust it|strong=\"G2532\"* from|strong=\"G2532\"* yourselves|strong=\"G1438\"*, and|strong=\"G2532\"* judge|strong=\"G2919\"* yourselves|strong=\"G1438\"* unworthy|strong=\"G3756\"* of|strong=\"G3056\"* eternal life|strong=\"G2222\"*, behold|strong=\"G2400\"*, we|strong=\"G2532\"* turn|strong=\"G4762\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 47, + "text": "For|strong=\"G1063\"* so|strong=\"G3779\"* has|strong=\"G2962\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* commanded|strong=\"G1781\"* us|strong=\"G1519\"*, saying," + }, + { + "verseNum": 48, + "text": "As|strong=\"G3745\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* heard|strong=\"G1484\"* this|strong=\"G3588\"*, they|strong=\"G2532\"* were|strong=\"G1510\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* glorified|strong=\"G1392\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2532\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G1510\"* appointed|strong=\"G5021\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G3056\"* was|strong=\"G3588\"* spread|strong=\"G1308\"* abroad throughout|strong=\"G2596\"* all|strong=\"G3650\"* the|strong=\"G1161\"* region|strong=\"G5561\"*." + }, + { + "verseNum": 50, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* and|strong=\"G2532\"* prominent|strong=\"G2158\"* women|strong=\"G1135\"* and|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* men|strong=\"G4413\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* a|strong=\"G2532\"* persecution|strong=\"G1375\"* against|strong=\"G1909\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas, and|strong=\"G2532\"* threw|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1544\"* of|strong=\"G2532\"* their|strong=\"G1438\"* borders|strong=\"G3725\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"G1161\"* they|strong=\"G1161\"* shook|strong=\"G1621\"* off|strong=\"G1621\"* the|strong=\"G1519\"* dust|strong=\"G2868\"* of|strong=\"G1909\"* their|strong=\"G1438\"* feet|strong=\"G4228\"* against|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Iconium|strong=\"G2430\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"G2532\"* disciples|strong=\"G3101\"* were|strong=\"G3588\"* filled|strong=\"G4137\"* with|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G1722\"* Iconium|strong=\"G2430\"*, they|strong=\"G2532\"* entered|strong=\"G1525\"* together|strong=\"G2596\"* into|strong=\"G1519\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* spoke|strong=\"G2980\"* that|strong=\"G3588\"* a|strong=\"G1096\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"* both|strong=\"G2532\"* of|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* of|strong=\"G2532\"* Greeks|strong=\"G1672\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* disbelieving+ 14:2 or, disobedient* Jews|strong=\"G2453\"* stirred|strong=\"G2453\"* up|strong=\"G2532\"* and|strong=\"G2532\"* embittered|strong=\"G2559\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* against|strong=\"G2596\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G3767\"* they|strong=\"G2532\"* stayed|strong=\"G1304\"* there|strong=\"G2532\"* a|strong=\"G1096\"* long|strong=\"G2425\"* time|strong=\"G5550\"*, speaking|strong=\"G3955\"* boldly|strong=\"G3955\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, who|strong=\"G3588\"* testified|strong=\"G3140\"* to|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*, granting|strong=\"G1325\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* to|strong=\"G2532\"* be|strong=\"G1096\"* done|strong=\"G1096\"* by|strong=\"G1223\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* divided|strong=\"G4977\"*. Part|strong=\"G1161\"* sided|strong=\"G1510\"* with|strong=\"G4862\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* part|strong=\"G1161\"* with|strong=\"G4862\"* the|strong=\"G2532\"* apostles." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* some|strong=\"G3588\"* of|strong=\"G2532\"* both|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, with|strong=\"G4862\"* their|strong=\"G1438\"* rulers, made|strong=\"G1096\"* a|strong=\"G1096\"* violent attempt|strong=\"G3730\"* to|strong=\"G2532\"* mistreat|strong=\"G5195\"* and|strong=\"G2532\"* stone|strong=\"G3036\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 6, + "text": "they|strong=\"G2532\"* became|strong=\"G3588\"* aware|strong=\"G4894\"* of|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* fled|strong=\"G2703\"* to|strong=\"G1519\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2532\"* Lycaonia|strong=\"G3071\"*, Lystra|strong=\"G3082\"*, Derbe|strong=\"G1191\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* surrounding|strong=\"G4066\"* region|strong=\"G4066\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G2546\"* they|strong=\"G1510\"* preached|strong=\"G2097\"* the|strong=\"G2097\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"G1722\"* Lystra|strong=\"G3082\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* sat|strong=\"G2521\"*, impotent in|strong=\"G1722\"* his|strong=\"G1722\"* feet|strong=\"G4228\"*, a|strong=\"G2532\"* cripple|strong=\"G5560\"* from|strong=\"G1537\"* his|strong=\"G1722\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"*, who|strong=\"G3739\"* never|strong=\"G3763\"* had|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* was|strong=\"G3588\"* listening to|strong=\"G2532\"* Paul|strong=\"G3972\"* speaking|strong=\"G2980\"*, who|strong=\"G3739\"*, fastening eyes on|strong=\"G4102\"* him|strong=\"G3588\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2192\"* faith|strong=\"G4102\"* to|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G4982\"* whole|strong=\"G4982\"*," + }, + { + "verseNum": 10, + "text": "said|strong=\"G3004\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Stand upright|strong=\"G3717\"* on|strong=\"G1909\"* your|strong=\"G2532\"* feet|strong=\"G4228\"*!” He|strong=\"G2532\"* leaped up|strong=\"G2532\"* and|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G3739\"* the|strong=\"G4314\"* multitude|strong=\"G3793\"* saw|strong=\"G3708\"* what|strong=\"G3739\"* Paul|strong=\"G3972\"* had|strong=\"G2316\"* done|strong=\"G4160\"*, they|strong=\"G3588\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G3588\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"* in|strong=\"G2316\"* the|strong=\"G4314\"* language|strong=\"G5456\"* of|strong=\"G2316\"* Lycaonia|strong=\"G3072\"*, “The|strong=\"G4314\"* gods|strong=\"G2316\"* have|strong=\"G1473\"* come|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G4314\"* us|strong=\"G3004\"* in|strong=\"G2316\"* the|strong=\"G4314\"* likeness|strong=\"G3666\"* of|strong=\"G2316\"* men|strong=\"G3588\"*!”" + }, + { + "verseNum": 12, + "text": "They|strong=\"G1161\"* called|strong=\"G2564\"* Barnabas “Jupiter|strong=\"G2203\"*”, and|strong=\"G1161\"* Paul|strong=\"G3972\"* “Mercury”, because|strong=\"G1894\"* he|strong=\"G1161\"* was|strong=\"G1510\"* the|strong=\"G1161\"* chief|strong=\"G2233\"* speaker|strong=\"G3056\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* priest|strong=\"G2409\"* of|strong=\"G2532\"* Jupiter|strong=\"G2203\"*, whose|strong=\"G3588\"* temple was|strong=\"G1510\"* in|strong=\"G1909\"* front|strong=\"G4253\"* of|strong=\"G2532\"* their|strong=\"G2532\"* city|strong=\"G4172\"*, brought|strong=\"G5342\"* oxen|strong=\"G5022\"* and|strong=\"G2532\"* garlands|strong=\"G4725\"* to|strong=\"G2532\"* the|strong=\"G2532\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* would|strong=\"G2309\"* have|strong=\"G2309\"* made|strong=\"G5342\"* a|strong=\"G2532\"* sacrifice|strong=\"G2380\"* along|strong=\"G4862\"* with|strong=\"G4862\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G2532\"* apostles, Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"*, heard of|strong=\"G2532\"* it|strong=\"G2532\"*, they|strong=\"G2532\"* tore|strong=\"G1284\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* and|strong=\"G2532\"* sprang into|strong=\"G1519\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, crying|strong=\"G2896\"* out|strong=\"G2896\"*," + }, + { + "verseNum": 15, + "text": "“Men|strong=\"G3956\"*, why|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G5210\"* doing|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3956\"*? We|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G1510\"* men|strong=\"G3956\"* of|strong=\"G2316\"* the|strong=\"G1722\"* same|strong=\"G3778\"* nature|strong=\"G3663\"* as|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* bring|strong=\"G4160\"* you|strong=\"G5210\"* good|strong=\"G2097\"* news|strong=\"G2097\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* should|strong=\"G2316\"* turn|strong=\"G1994\"* from|strong=\"G2532\"* these|strong=\"G3778\"* vain|strong=\"G3152\"* things|strong=\"G3956\"* to|strong=\"G2532\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* made|strong=\"G4160\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* them|strong=\"G3588\"*;" + }, + { + "verseNum": 16, + "text": "who|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* generations|strong=\"G1074\"* gone|strong=\"G4198\"* by|strong=\"G1722\"* allowed|strong=\"G1439\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* to|strong=\"G1722\"* walk|strong=\"G4198\"* in|strong=\"G1722\"* their|strong=\"G1722\"* own ways|strong=\"G3598\"*." + }, + { + "verseNum": 17, + "text": "Yet|strong=\"G2532\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* leave|strong=\"G1325\"* himself|strong=\"G1438\"* without|strong=\"G2532\"* witness, in|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* did|strong=\"G2532\"* good|strong=\"G3756\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* you|strong=\"G5210\"*+ 14:17 TR reads “us” instead of “you”* rains|strong=\"G5205\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sky and|strong=\"G2532\"* fruitful|strong=\"G2593\"* seasons|strong=\"G2540\"*, filling|strong=\"G1705\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* with|strong=\"G2532\"* food|strong=\"G5160\"* and|strong=\"G2532\"* gladness|strong=\"G2167\"*.”" + }, + { + "verseNum": 18, + "text": "Even|strong=\"G2532\"* saying|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, they|strong=\"G2532\"* hardly|strong=\"G3433\"* stopped the|strong=\"G2532\"* multitudes|strong=\"G3793\"* from|strong=\"G2532\"* making|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2380\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* some|strong=\"G3588\"* Jews|strong=\"G2453\"* from|strong=\"G2532\"* Antioch and|strong=\"G2532\"* Iconium|strong=\"G2430\"* came|strong=\"G2532\"* there|strong=\"G2532\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* persuaded|strong=\"G3982\"* the|strong=\"G2532\"* multitudes|strong=\"G3793\"*, they|strong=\"G2532\"* stoned|strong=\"G3034\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* dragged|strong=\"G4951\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, supposing|strong=\"G3543\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* dead|strong=\"G2348\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* as|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* stood|strong=\"G3588\"* around|strong=\"G2944\"* him|strong=\"G3588\"*, he|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* city|strong=\"G4172\"*. On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"* he|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G4862\"* Barnabas to|strong=\"G1519\"* Derbe|strong=\"G1191\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* preached|strong=\"G2097\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* that|strong=\"G3588\"* city|strong=\"G4172\"* and|strong=\"G2532\"* had|strong=\"G2532\"* made|strong=\"G3100\"* many|strong=\"G2425\"* disciples|strong=\"G3100\"*, they|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Lystra|strong=\"G3082\"*, Iconium|strong=\"G2430\"*, and|strong=\"G2532\"* Antioch," + }, + { + "verseNum": 22, + "text": "strengthening|strong=\"G1991\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G1223\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, exhorting|strong=\"G3870\"* them|strong=\"G3588\"* to|strong=\"G1519\"* continue|strong=\"G1696\"* in|strong=\"G1519\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* through|strong=\"G1223\"* many|strong=\"G4183\"* afflictions|strong=\"G2347\"* we|strong=\"G2249\"* must|strong=\"G1163\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* appointed|strong=\"G5500\"* elders|strong=\"G4245\"* for|strong=\"G1519\"* them|strong=\"G3588\"* in|strong=\"G1519\"* every|strong=\"G2596\"* assembly|strong=\"G1577\"*, and|strong=\"G1161\"* had|strong=\"G3739\"* prayed|strong=\"G4336\"* with|strong=\"G3326\"* fasting|strong=\"G3521\"*, they|strong=\"G1161\"* commended|strong=\"G3908\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* on|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* had|strong=\"G3739\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* Pisidia|strong=\"G4099\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* Perga|strong=\"G4011\"*, they|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Attalia." + }, + { + "verseNum": 26, + "text": "From|strong=\"G3588\"* there|strong=\"G2547\"* they|strong=\"G3588\"* sailed to|strong=\"G1519\"* Antioch, from|strong=\"G3588\"* where|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G2316\"* been|strong=\"G1510\"* committed|strong=\"G3860\"* to|strong=\"G1519\"* the|strong=\"G1519\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G1519\"* work|strong=\"G2041\"* which|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G2316\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* arrived|strong=\"G3854\"* and|strong=\"G2532\"* had|strong=\"G2532\"* gathered|strong=\"G4863\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* together|strong=\"G4863\"*, they|strong=\"G2532\"* reported all|strong=\"G3745\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* opened a|strong=\"G2532\"* door|strong=\"G2374\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G1161\"* stayed|strong=\"G1304\"* there|strong=\"G1161\"* with|strong=\"G4862\"* the|strong=\"G1161\"* disciples|strong=\"G3101\"* for|strong=\"G1161\"* a|strong=\"G1161\"* long|strong=\"G5550\"* time|strong=\"G5550\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Some|strong=\"G5100\"* men|strong=\"G5100\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Judea|strong=\"G2449\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* the|strong=\"G2532\"* brothers,+ 15:1 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* “Unless|strong=\"G1437\"* you|strong=\"G1437\"* are|strong=\"G3588\"* circumcised|strong=\"G4059\"* after|strong=\"G2532\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2532\"* Moses|strong=\"G3475\"*, you|strong=\"G1437\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*.”" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas had|strong=\"G2532\"* no|strong=\"G3756\"* small|strong=\"G3641\"* discord and|strong=\"G2532\"* discussion|strong=\"G2214\"* with|strong=\"G4314\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* appointed|strong=\"G5021\"* Paul|strong=\"G3972\"*, Barnabas, and|strong=\"G2532\"* some|strong=\"G5100\"* others|strong=\"G3588\"* of|strong=\"G1537\"* them|strong=\"G3588\"* to|strong=\"G1519\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* to|strong=\"G1519\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* elders|strong=\"G4245\"* about|strong=\"G4012\"* this|strong=\"G3778\"* question|strong=\"G2213\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"*, being|strong=\"G2532\"* sent|strong=\"G2532\"* on|strong=\"G4311\"* their|strong=\"G2532\"* way|strong=\"G4311\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*, passed|strong=\"G1330\"* through|strong=\"G1330\"* both|strong=\"G2532\"* Phoenicia|strong=\"G5403\"* and|strong=\"G2532\"* Samaria|strong=\"G4540\"*, declaring|strong=\"G1555\"* the|strong=\"G2532\"* conversion|strong=\"G1995\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*. They|strong=\"G2532\"* caused|strong=\"G4160\"* great|strong=\"G3173\"* joy|strong=\"G5479\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* received|strong=\"G3858\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* reported everything|strong=\"G3745\"* that|strong=\"G3588\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* with|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G3551\"* the|strong=\"G1161\"* sect of|strong=\"G3551\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* rose up|strong=\"G1210\"*, saying|strong=\"G3004\"*, “It|strong=\"G3754\"* is|strong=\"G3588\"* necessary|strong=\"G1163\"* to|strong=\"G3004\"* circumcise|strong=\"G4059\"* them|strong=\"G3588\"*, and|strong=\"G1161\"* to|strong=\"G3004\"* command|strong=\"G3853\"* them|strong=\"G3588\"* to|strong=\"G3004\"* keep|strong=\"G5083\"* the|strong=\"G1161\"* law|strong=\"G3551\"* of|strong=\"G3551\"* Moses|strong=\"G3475\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* apostles and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2532\"* see|strong=\"G3708\"* about|strong=\"G4012\"* this|strong=\"G3778\"* matter|strong=\"G3056\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* there|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G1096\"* much|strong=\"G4183\"* discussion|strong=\"G2214\"*, Peter|strong=\"G4074\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Brothers, you|strong=\"G5210\"* know|strong=\"G1987\"* that|strong=\"G3754\"* a|strong=\"G1096\"* good|strong=\"G1223\"* while|strong=\"G1722\"* ago God|strong=\"G2316\"* made|strong=\"G1096\"* a|strong=\"G1096\"* choice|strong=\"G1586\"* among|strong=\"G1722\"* you|strong=\"G5210\"* that|strong=\"G3754\"* by|strong=\"G1223\"* my|strong=\"G1722\"* mouth|strong=\"G4750\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* should|strong=\"G2316\"* hear the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G3056\"* and|strong=\"G2532\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 8, + "text": "God|strong=\"G2316\"*, who|strong=\"G3588\"* knows|strong=\"G2589\"* the|strong=\"G2532\"* heart|strong=\"G2589\"*, testified|strong=\"G3140\"* about|strong=\"G3588\"* them|strong=\"G3588\"*, giving|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* he|strong=\"G2532\"* did|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* made|strong=\"G1252\"* no|strong=\"G3762\"* distinction|strong=\"G1252\"* between|strong=\"G3342\"* us|strong=\"G2249\"* and|strong=\"G2532\"* them|strong=\"G3588\"*, cleansing|strong=\"G2511\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* by|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G3568\"* therefore|strong=\"G3767\"* why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G3739\"* tempt|strong=\"G3985\"* God|strong=\"G2316\"*, that|strong=\"G3739\"* you|strong=\"G3739\"* should|strong=\"G2316\"* put|strong=\"G2007\"* a|strong=\"G1909\"* yoke|strong=\"G2218\"* on|strong=\"G1909\"* the|strong=\"G1909\"* neck|strong=\"G5137\"* of|strong=\"G2316\"* the|strong=\"G1909\"* disciples|strong=\"G3101\"* which|strong=\"G3739\"* neither|strong=\"G3777\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* nor|strong=\"G3777\"* we|strong=\"G2249\"* were|strong=\"G3588\"* able|strong=\"G2480\"* to|strong=\"G1909\"* bear?" + }, + { + "verseNum": 11, + "text": "But|strong=\"G3588\"* we|strong=\"G3739\"* believe|strong=\"G4100\"* that|strong=\"G3739\"* we|strong=\"G3739\"* are|strong=\"G3588\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*,+ 15:11 TR adds “Christ”* just|strong=\"G2596\"* as|strong=\"G2596\"* they|strong=\"G3588\"* are|strong=\"G3588\"*.”" + }, + { + "verseNum": 12, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"* kept|strong=\"G4160\"* silence|strong=\"G4601\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* listened to|strong=\"G2532\"* Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"* reporting what|strong=\"G3588\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* God|strong=\"G2316\"* had|strong=\"G2532\"* done|strong=\"G4160\"* among|strong=\"G1722\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* through|strong=\"G1223\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "After|strong=\"G3326\"* they|strong=\"G1161\"* were|strong=\"G3588\"* silent|strong=\"G4601\"*, James|strong=\"G2385\"* answered|strong=\"G3004\"*, “Brothers, listen to|strong=\"G3004\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "Simeon|strong=\"G4826\"* has|strong=\"G2316\"* reported how|strong=\"G2531\"* God|strong=\"G2316\"* first|strong=\"G4413\"* visited|strong=\"G1980\"* the|strong=\"G1537\"* nations|strong=\"G1484\"* to|strong=\"G2316\"* take|strong=\"G2983\"* out|strong=\"G1537\"* of|strong=\"G1537\"* them|strong=\"G3588\"* a|strong=\"G2983\"* people|strong=\"G2992\"* for|strong=\"G1537\"* his|strong=\"G2983\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* agrees with|strong=\"G2532\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 16, + "text": "‘After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* will|strong=\"G2532\"* return." + }, + { + "verseNum": 17, + "text": "that|strong=\"G3739\"* the|strong=\"G2532\"* rest|strong=\"G2645\"* of|strong=\"G2532\"* men|strong=\"G3956\"* may|strong=\"G2532\"* seek|strong=\"G1567\"* after|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*:" + }, + { + "verseNum": 18, + "text": "“All of|strong=\"G1110\"* God’s works are known|strong=\"G1110\"* to|strong=\"G1110\"* him from|strong=\"G1110\"* eternity." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G1352\"* my|strong=\"G1473\"* judgment|strong=\"G2919\"* is|strong=\"G3588\"* that|strong=\"G3588\"* we|strong=\"G1352\"* don’t|strong=\"G3588\"* trouble|strong=\"G3926\"* those|strong=\"G3588\"* from|strong=\"G3588\"* among|strong=\"G1909\"* the|strong=\"G1909\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* turn|strong=\"G1994\"* to|strong=\"G1909\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"G2532\"* that|strong=\"G3588\"* we|strong=\"G2532\"* write|strong=\"G1989\"* to|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G3588\"* they|strong=\"G2532\"* abstain from|strong=\"G2532\"* the|strong=\"G2532\"* pollution of|strong=\"G2532\"* idols|strong=\"G1497\"*, from|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, from|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* strangled|strong=\"G4156\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* blood." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* Moses|strong=\"G3475\"* from|strong=\"G1537\"* generations|strong=\"G1074\"* of|strong=\"G1537\"* old|strong=\"G2192\"* has|strong=\"G2192\"* in|strong=\"G1722\"* every|strong=\"G3956\"* city|strong=\"G4172\"* those|strong=\"G3588\"* who|strong=\"G3588\"* preach|strong=\"G2784\"* him|strong=\"G3588\"*, being|strong=\"G2192\"* read in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* every|strong=\"G3956\"* Sabbath|strong=\"G4521\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"G2532\"* it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1519\"* the|strong=\"G1722\"* apostles and|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, to|strong=\"G1519\"* choose|strong=\"G1586\"* men|strong=\"G4245\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* company, and|strong=\"G2532\"* send|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G1519\"* Antioch with|strong=\"G1722\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas: Judas|strong=\"G2455\"* called|strong=\"G2564\"* Barsabbas, and|strong=\"G2532\"* Silas|strong=\"G4609\"*, chief|strong=\"G2233\"* men|strong=\"G4245\"* among|strong=\"G1722\"* the|strong=\"G1722\"* brothers.+ 15:22 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 23, + "text": "They|strong=\"G2532\"* wrote|strong=\"G1125\"* these|strong=\"G3588\"* things|strong=\"G3588\"* by|strong=\"G1223\"* their|strong=\"G2532\"* hand|strong=\"G5495\"*:" + }, + { + "verseNum": 24, + "text": "Because|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G1473\"* heard that|strong=\"G3754\"* some|strong=\"G5100\"* who|strong=\"G3739\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* us|strong=\"G2249\"* have|strong=\"G1473\"* troubled|strong=\"G5015\"* you|strong=\"G5210\"* with|strong=\"G1537\"* words|strong=\"G3056\"*, unsettling your|strong=\"G3588\"* souls|strong=\"G5590\"*, saying|strong=\"G3056\"*, ‘You|strong=\"G5210\"* must|strong=\"G5100\"* be|strong=\"G3756\"* circumcised and|strong=\"G3056\"* keep the|strong=\"G1537\"* law,’ to|strong=\"G3756\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* gave|strong=\"G1291\"* no|strong=\"G3756\"* commandment|strong=\"G1291\"*;" + }, + { + "verseNum": 25, + "text": "it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G4314\"* us|strong=\"G2249\"*, having|strong=\"G2532\"* come|strong=\"G1096\"* to|strong=\"G4314\"* one|strong=\"G3588\"* accord|strong=\"G3661\"*, to|strong=\"G4314\"* choose|strong=\"G1586\"* out|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* send|strong=\"G3992\"* them|strong=\"G3588\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G4862\"* our|strong=\"G2532\"* beloved Barnabas and|strong=\"G2532\"* Paul|strong=\"G3972\"*," + }, + { + "verseNum": 26, + "text": "men|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1473\"* risked|strong=\"G3860\"* their|strong=\"G3588\"* lives|strong=\"G5590\"* for|strong=\"G5228\"* the|strong=\"G3588\"* name|strong=\"G3686\"* of|strong=\"G3686\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 27, + "text": "We|strong=\"G2532\"* have|strong=\"G2532\"* sent|strong=\"G2532\"* therefore|strong=\"G3767\"* Judas|strong=\"G2455\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*, who|strong=\"G3588\"* themselves|strong=\"G1438\"* will|strong=\"G2532\"* also|strong=\"G2532\"* tell you|strong=\"G1438\"* the|strong=\"G2532\"* same|strong=\"G2532\"* things|strong=\"G3588\"* by|strong=\"G1223\"* word|strong=\"G3056\"* of|strong=\"G3056\"* mouth|strong=\"G3056\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G2249\"*, to|strong=\"G2532\"* lay|strong=\"G2007\"* no|strong=\"G3367\"* greater|strong=\"G4183\"* burden on|strong=\"G2007\"* you|strong=\"G5210\"* than|strong=\"G4183\"* these|strong=\"G3778\"* necessary|strong=\"G1876\"* things|strong=\"G3778\"*:" + }, + { + "verseNum": 29, + "text": "that|strong=\"G3739\"* you|strong=\"G3739\"* abstain from|strong=\"G1537\"* things|strong=\"G3739\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* idols|strong=\"G1494\"*, from|strong=\"G1537\"* blood, from|strong=\"G1537\"* things|strong=\"G3739\"* strangled|strong=\"G4156\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, from|strong=\"G1537\"* which|strong=\"G3739\"* if|strong=\"G2532\"* you|strong=\"G3739\"* keep|strong=\"G1301\"* yourselves|strong=\"G1438\"*, it|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* well|strong=\"G2532\"* with|strong=\"G1537\"* you|strong=\"G3739\"*. Farewell|strong=\"G4517\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"G3767\"*, when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* sent|strong=\"G2532\"* off, they|strong=\"G2532\"* came|strong=\"G2718\"* to|strong=\"G1519\"* Antioch. Having|strong=\"G2532\"* gathered|strong=\"G4863\"* the|strong=\"G2532\"* multitude|strong=\"G4128\"* together|strong=\"G4863\"*, they|strong=\"G2532\"* delivered|strong=\"G1929\"* the|strong=\"G2532\"* letter|strong=\"G1992\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* read it|strong=\"G1161\"*, they|strong=\"G1161\"* rejoiced|strong=\"G5463\"* over|strong=\"G1909\"* the|strong=\"G1161\"* encouragement|strong=\"G3874\"*." + }, + { + "verseNum": 32, + "text": "Judas|strong=\"G2455\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*, also|strong=\"G2532\"* being|strong=\"G1510\"* prophets|strong=\"G4396\"* themselves|strong=\"G1510\"*, encouraged|strong=\"G3870\"* the|strong=\"G2532\"* brothers with|strong=\"G1223\"* many|strong=\"G4183\"* words|strong=\"G3056\"* and|strong=\"G2532\"* strengthened|strong=\"G1991\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 33, + "text": "After|strong=\"G3326\"* they|strong=\"G1161\"* had|strong=\"G3588\"* spent|strong=\"G4160\"* some|strong=\"G3588\"* time|strong=\"G5550\"* there|strong=\"G1161\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* dismissed in|strong=\"G4314\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* the|strong=\"G1161\"* brothers to|strong=\"G4314\"* the|strong=\"G1161\"* apostles." + }, + { + "verseNum": 34, + "text": "+ 15:34 Some manuscripts add: But it seemed good to Silas to stay there. *" + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Barnabas stayed|strong=\"G1304\"* in|strong=\"G1722\"* Antioch, teaching|strong=\"G1321\"* and|strong=\"G2532\"* preaching|strong=\"G2097\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, with|strong=\"G3326\"* many|strong=\"G4183\"* others|strong=\"G2087\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 36, + "text": "After|strong=\"G3326\"* some|strong=\"G5100\"* days|strong=\"G2250\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Barnabas, “Let|strong=\"G1161\"*’s|strong=\"G2962\"* return|strong=\"G1994\"* now|strong=\"G1161\"* and|strong=\"G1161\"* visit|strong=\"G1980\"* our|strong=\"G3956\"* brothers in|strong=\"G1722\"* every|strong=\"G3956\"* city|strong=\"G4172\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G3739\"* proclaimed|strong=\"G2605\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, to|strong=\"G4314\"* see how|strong=\"G4459\"* they|strong=\"G1161\"* are|strong=\"G3588\"* doing.”" + }, + { + "verseNum": 37, + "text": "Barnabas planned|strong=\"G1014\"* to|strong=\"G2532\"* take|strong=\"G4838\"* John|strong=\"G2491\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Mark|strong=\"G3138\"*, with|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* didn’t|strong=\"G3588\"* think that|strong=\"G3588\"* it|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* good|strong=\"G3588\"* idea to|strong=\"G1519\"* take|strong=\"G4838\"* with|strong=\"G2532\"* them|strong=\"G3588\"* someone who|strong=\"G3588\"* had|strong=\"G2532\"* withdrawn from|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G1519\"* Pamphylia|strong=\"G3828\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* go|strong=\"G1519\"* with|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G1519\"* do|strong=\"G2532\"* the|strong=\"G2532\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 39, + "text": "Then|strong=\"G1161\"* the|strong=\"G1519\"* contention|strong=\"G3948\"* grew so|strong=\"G1161\"* sharp|strong=\"G3948\"* that|strong=\"G3588\"* they|strong=\"G1161\"* separated from|strong=\"G3588\"* each|strong=\"G1438\"* other|strong=\"G1161\"*. Barnabas took|strong=\"G3880\"* Mark|strong=\"G3138\"* with|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G1161\"* sailed|strong=\"G1602\"* away|strong=\"G1602\"* to|strong=\"G1519\"* Cyprus|strong=\"G2954\"*," + }, + { + "verseNum": 40, + "text": "but|strong=\"G1161\"* Paul|strong=\"G3972\"* chose|strong=\"G1951\"* Silas|strong=\"G4609\"* and|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, being|strong=\"G1161\"* commended|strong=\"G3860\"* by|strong=\"G5259\"* the|strong=\"G1161\"* brothers to|strong=\"G1161\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* of|strong=\"G5259\"* God|strong=\"G2962\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"G2532\"* went|strong=\"G1330\"* through|strong=\"G1330\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* Cilicia|strong=\"G2791\"*, strengthening|strong=\"G1991\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* came|strong=\"G2658\"* to|strong=\"G1519\"* Derbe|strong=\"G1191\"* and|strong=\"G2532\"* Lystra|strong=\"G3082\"*; and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* certain|strong=\"G5100\"* disciple|strong=\"G3101\"* was|strong=\"G1510\"* there|strong=\"G1563\"*, named|strong=\"G3686\"* Timothy|strong=\"G5095\"*, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* a|strong=\"G2532\"* Jewess|strong=\"G2453\"* who|strong=\"G3962\"* believed|strong=\"G4103\"*, but|strong=\"G1161\"* his|strong=\"G1519\"* father|strong=\"G3962\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G1722\"* brothers who|strong=\"G3739\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Lystra|strong=\"G3082\"* and|strong=\"G2532\"* Iconium|strong=\"G2430\"* gave|strong=\"G2532\"* a|strong=\"G2532\"* good|strong=\"G3588\"* testimony|strong=\"G3140\"* about|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Paul|strong=\"G3972\"* wanted|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2309\"* him|strong=\"G3588\"* go|strong=\"G1831\"* out|strong=\"G1831\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* and|strong=\"G2532\"* circumcised|strong=\"G4059\"* him|strong=\"G3588\"* because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* those|strong=\"G3588\"* parts|strong=\"G5117\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* all|strong=\"G2532\"* knew|strong=\"G1492\"* that|strong=\"G3754\"* his|strong=\"G1223\"* father|strong=\"G3962\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"G5613\"* they|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1722\"* their|strong=\"G2532\"* way|strong=\"G1722\"* through|strong=\"G1722\"* the|strong=\"G1722\"* cities|strong=\"G4172\"*, they|strong=\"G2532\"* delivered|strong=\"G3860\"* the|strong=\"G1722\"* decrees|strong=\"G1378\"* to|strong=\"G2532\"* them|strong=\"G3588\"* to|strong=\"G2532\"* keep|strong=\"G5442\"* which|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* ordained|strong=\"G2919\"* by|strong=\"G1722\"* the|strong=\"G1722\"* apostles and|strong=\"G2532\"* elders|strong=\"G4245\"* who|strong=\"G3588\"* were|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3767\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* were|strong=\"G3588\"* strengthened|strong=\"G4732\"* in|strong=\"G2596\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* increased|strong=\"G4052\"* in|strong=\"G2596\"* number daily|strong=\"G2250\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1330\"* through|strong=\"G1722\"* the|strong=\"G1722\"* region|strong=\"G5561\"* of|strong=\"G3056\"* Phrygia|strong=\"G5435\"* and|strong=\"G2532\"* Galatia|strong=\"G1054\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* forbidden|strong=\"G2967\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* come|strong=\"G2064\"* opposite Mysia|strong=\"G3465\"*, they|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G1519\"* go|strong=\"G4198\"* into|strong=\"G1519\"* Bithynia, but|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "Passing|strong=\"G3928\"* by|strong=\"G1519\"* Mysia|strong=\"G3465\"*, they|strong=\"G1161\"* came|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Troas|strong=\"G5174\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* vision|strong=\"G3705\"* appeared|strong=\"G3708\"* to|strong=\"G1519\"* Paul|strong=\"G3972\"* in|strong=\"G1519\"* the|strong=\"G2532\"* night|strong=\"G3571\"*. There|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G1223\"* Macedonia|strong=\"G3109\"* standing|strong=\"G2476\"*, begging|strong=\"G3870\"* him|strong=\"G3588\"* and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Come|strong=\"G1510\"* over|strong=\"G1224\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* help us|strong=\"G3004\"*.”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2316\"* seen|strong=\"G3708\"* the|strong=\"G1519\"* vision|strong=\"G3705\"*, immediately|strong=\"G2112\"* we|strong=\"G2249\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, concluding|strong=\"G4822\"* that|strong=\"G3754\"* the|strong=\"G1519\"* Lord|strong=\"G3588\"* had|strong=\"G2316\"* called|strong=\"G4341\"* us|strong=\"G2097\"* to|strong=\"G1519\"* preach|strong=\"G2097\"* the|strong=\"G1519\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Setting sail therefore|strong=\"G3767\"* from|strong=\"G3588\"* Troas|strong=\"G5174\"*, we|strong=\"G1161\"* made|strong=\"G1161\"* a|strong=\"G1519\"* straight|strong=\"G2113\"* course|strong=\"G2113\"* to|strong=\"G1519\"* Samothrace|strong=\"G4543\"*, and|strong=\"G1161\"* the|strong=\"G1519\"* day|strong=\"G3588\"* following|strong=\"G1966\"* to|strong=\"G1519\"* Neapolis|strong=\"G3501\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"G1161\"* from|strong=\"G3588\"* there|strong=\"G1161\"* to|strong=\"G1519\"* Philippi|strong=\"G5375\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G2250\"* Macedonia|strong=\"G3109\"*, the|strong=\"G1722\"* foremost|strong=\"G4413\"* of|strong=\"G2250\"* the|strong=\"G1722\"* district|strong=\"G3310\"*, a|strong=\"G1519\"* Roman colony|strong=\"G2862\"*. We|strong=\"G1161\"* were|strong=\"G1510\"* staying|strong=\"G1304\"* some|strong=\"G5100\"* days|strong=\"G2250\"* in|strong=\"G1722\"* this|strong=\"G3778\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G2523\"* the|strong=\"G2532\"* Sabbath|strong=\"G4521\"* day|strong=\"G2250\"* we|strong=\"G2532\"* went|strong=\"G1831\"* outside|strong=\"G1854\"* of|strong=\"G2250\"* the|strong=\"G2532\"* city by|strong=\"G3844\"* a|strong=\"G2532\"* riverside|strong=\"G3844\"*, where|strong=\"G3757\"* we|strong=\"G2532\"* supposed|strong=\"G3543\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* place|strong=\"G4335\"* of|strong=\"G2250\"* prayer|strong=\"G4335\"*, and|strong=\"G2532\"* we|strong=\"G2532\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G2532\"* women|strong=\"G1135\"* who|strong=\"G3588\"* had|strong=\"G2532\"* come|strong=\"G1831\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Lydia|strong=\"G3070\"*, a|strong=\"G2532\"* seller|strong=\"G4211\"* of|strong=\"G5259\"* purple|strong=\"G4211\"*, of|strong=\"G5259\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G5259\"* Thyatira|strong=\"G2363\"*, one|strong=\"G5100\"* who|strong=\"G3739\"* worshiped God|strong=\"G2316\"*, heard us. The|strong=\"G2532\"* Lord|strong=\"G2962\"* opened|strong=\"G1272\"* her|strong=\"G5259\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* listen to|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* were|strong=\"G3588\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* she|strong=\"G2532\"* and|strong=\"G2532\"* her|strong=\"G1519\"* household|strong=\"G3624\"* were|strong=\"G1510\"* baptized, she|strong=\"G2532\"* begged|strong=\"G3870\"* us|strong=\"G3004\"*, saying|strong=\"G3004\"*, “If|strong=\"G1487\"* you|strong=\"G1487\"* have|strong=\"G2532\"* judged|strong=\"G2919\"* me|strong=\"G1473\"* to|strong=\"G1519\"* be|strong=\"G1510\"* faithful|strong=\"G4103\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, come|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1525\"* house|strong=\"G3624\"* and|strong=\"G2532\"* stay|strong=\"G3306\"*.” So|strong=\"G2532\"* she|strong=\"G2532\"* persuaded us|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"G1519\"* we|strong=\"G2249\"* were|strong=\"G3588\"* going|strong=\"G4198\"* to|strong=\"G1519\"* prayer|strong=\"G4335\"*, a|strong=\"G2192\"* certain|strong=\"G5100\"* girl having|strong=\"G2192\"* a|strong=\"G2192\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* divination|strong=\"G4436\"* met|strong=\"G5221\"* us|strong=\"G1519\"*, who|strong=\"G3588\"* brought|strong=\"G3930\"* her|strong=\"G1519\"* masters|strong=\"G2962\"* much|strong=\"G4183\"* gain|strong=\"G2039\"* by|strong=\"G1519\"* fortune telling." + }, + { + "verseNum": 17, + "text": "Following|strong=\"G2628\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* us|strong=\"G3004\"*, she|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, “These|strong=\"G3778\"* men|strong=\"G3778\"* are|strong=\"G1510\"* servants|strong=\"G1401\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Most|strong=\"G5310\"* High|strong=\"G5310\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* proclaim|strong=\"G2605\"* to|strong=\"G2532\"* us|strong=\"G3004\"* a|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2316\"* salvation|strong=\"G4991\"*!”" + }, + { + "verseNum": 18, + "text": "She|strong=\"G2532\"* was|strong=\"G3588\"* doing|strong=\"G4160\"* this|strong=\"G3778\"* for|strong=\"G1909\"* many|strong=\"G4183\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* her|strong=\"G1519\"* masters|strong=\"G2962\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G2532\"* their|strong=\"G2532\"* gain|strong=\"G2039\"* was|strong=\"G3588\"* gone|strong=\"G1831\"*, they|strong=\"G2532\"* seized|strong=\"G1949\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* dragged|strong=\"G1670\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* marketplace before|strong=\"G1909\"* the|strong=\"G2532\"* rulers." + }, + { + "verseNum": 20, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G4317\"* them|strong=\"G3588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* magistrates|strong=\"G4755\"*, they|strong=\"G2532\"* said|strong=\"G3004\"*, “These|strong=\"G3778\"* men|strong=\"G3778\"*, being|strong=\"G5225\"* Jews|strong=\"G2453\"*, are|strong=\"G3588\"* agitating our|strong=\"G2532\"* city|strong=\"G4172\"*" + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* advocate customs|strong=\"G1485\"* which|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G2532\"* us|strong=\"G4160\"* to|strong=\"G2532\"* accept|strong=\"G3858\"* or|strong=\"G2532\"* to|strong=\"G2532\"* observe|strong=\"G4160\"*, being|strong=\"G1510\"* Romans|strong=\"G4514\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* together|strong=\"G4911\"* against|strong=\"G2596\"* them|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* magistrates|strong=\"G4755\"* tore|strong=\"G4048\"* their|strong=\"G2532\"* clothes|strong=\"G2440\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, then|strong=\"G2532\"* commanded|strong=\"G2753\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* beaten|strong=\"G4463\"* with|strong=\"G2532\"* rods|strong=\"G4463\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"G2007\"* they|strong=\"G3588\"* had|strong=\"G3588\"* laid|strong=\"G2007\"* many|strong=\"G4183\"* stripes|strong=\"G4127\"* on|strong=\"G1519\"* them|strong=\"G3588\"*, they|strong=\"G3588\"* threw them|strong=\"G3588\"* into|strong=\"G1519\"* prison|strong=\"G5438\"*, charging|strong=\"G3853\"* the|strong=\"G1519\"* jailer|strong=\"G1200\"* to|strong=\"G1519\"* keep|strong=\"G5083\"* them|strong=\"G3588\"* safely." + }, + { + "verseNum": 24, + "text": "Having|strong=\"G2532\"* received|strong=\"G2983\"* such|strong=\"G5108\"* a|strong=\"G2532\"* command|strong=\"G3852\"*, he|strong=\"G2532\"* threw them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* inner|strong=\"G2082\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* secured their|strong=\"G1438\"* feet|strong=\"G4228\"* in|strong=\"G1519\"* the|strong=\"G2532\"* stocks|strong=\"G3586\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* about|strong=\"G2596\"* midnight|strong=\"G3317\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* were|strong=\"G3588\"* praying|strong=\"G4336\"* and|strong=\"G2532\"* singing|strong=\"G5214\"* hymns|strong=\"G5214\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* prisoners|strong=\"G1198\"* were|strong=\"G3588\"* listening|strong=\"G1874\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "Suddenly there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* foundations|strong=\"G2310\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prison|strong=\"G1201\"* were|strong=\"G3588\"* shaken|strong=\"G4531\"*; and|strong=\"G2532\"* immediately|strong=\"G3916\"* all|strong=\"G3956\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G3588\"* opened, and|strong=\"G2532\"* everyone|strong=\"G3956\"*’s bonds|strong=\"G1199\"* were|strong=\"G3588\"* loosened." + }, + { + "verseNum": 27, + "text": "The|strong=\"G2532\"* jailer|strong=\"G1200\"*, being|strong=\"G1096\"* roused out|strong=\"G2532\"* of|strong=\"G2532\"* sleep|strong=\"G1853\"* and|strong=\"G2532\"* seeing|strong=\"G3708\"* the|strong=\"G2532\"* prison|strong=\"G5438\"* doors|strong=\"G2374\"* open, drew|strong=\"G4685\"* his|strong=\"G1438\"* sword|strong=\"G3162\"* and|strong=\"G2532\"* was|strong=\"G1096\"* about|strong=\"G3195\"* to|strong=\"G2532\"* kill himself|strong=\"G1438\"*, supposing|strong=\"G3543\"* that|strong=\"G3588\"* the|strong=\"G2532\"* prisoners|strong=\"G1198\"* had|strong=\"G2532\"* escaped|strong=\"G1628\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* cried|strong=\"G5455\"* with|strong=\"G1161\"* a|strong=\"G1510\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Don’t harm|strong=\"G2556\"* yourself|strong=\"G4572\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* all|strong=\"G1161\"* here|strong=\"G1759\"*!”" + }, + { + "verseNum": 29, + "text": "He|strong=\"G2532\"* called|strong=\"G3972\"* for|strong=\"G1161\"* lights|strong=\"G5457\"*, sprang in|strong=\"G2532\"*, fell|strong=\"G4363\"* down|strong=\"G4363\"* trembling|strong=\"G1790\"* before|strong=\"G4363\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*," + }, + { + "verseNum": 30, + "text": "brought|strong=\"G4254\"* them|strong=\"G1438\"* out|strong=\"G1854\"*, and|strong=\"G2532\"* said|strong=\"G5346\"*, “Sirs|strong=\"G2962\"*, what|strong=\"G5101\"* must|strong=\"G1163\"* I|strong=\"G1473\"* do|strong=\"G4160\"* to|strong=\"G2443\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*?”" + }, + { + "verseNum": 31, + "text": "They|strong=\"G2532\"* said|strong=\"G3004\"*, “Believe|strong=\"G4100\"* in|strong=\"G1909\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, you|strong=\"G4771\"* and|strong=\"G2532\"* your|strong=\"G2962\"* household|strong=\"G3624\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"G2532\"* spoke|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G3956\"* house|strong=\"G3614\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"G2532\"* took|strong=\"G3880\"* them|strong=\"G3588\"* the|strong=\"G1722\"* same|strong=\"G1565\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* the|strong=\"G1722\"* night|strong=\"G3571\"* and|strong=\"G2532\"* washed|strong=\"G3068\"* their|strong=\"G1438\"* stripes|strong=\"G4127\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* immediately|strong=\"G3916\"* baptized, he|strong=\"G2532\"* and|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G1438\"* household." + }, + { + "verseNum": 34, + "text": "He|strong=\"G2532\"* brought|strong=\"G2532\"* them|strong=\"G3588\"* up|strong=\"G1519\"* into|strong=\"G1519\"* his|strong=\"G1438\"* house|strong=\"G3624\"* and|strong=\"G2532\"* set|strong=\"G3908\"* food|strong=\"G5132\"* before|strong=\"G3908\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* rejoiced greatly|strong=\"G4100\"* with|strong=\"G2532\"* all|strong=\"G2532\"* his|strong=\"G1438\"* household|strong=\"G3624\"*, having|strong=\"G2532\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, the|strong=\"G1161\"* magistrates|strong=\"G4755\"* sent the|strong=\"G1161\"* sergeants, saying|strong=\"G3004\"*, “Let|strong=\"G1096\"* those|strong=\"G3588\"* men|strong=\"G3588\"* go.”" + }, + { + "verseNum": 36, + "text": "The|strong=\"G1722\"* jailer|strong=\"G1200\"* reported these|strong=\"G3778\"* words|strong=\"G3056\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, saying|strong=\"G3056\"*, “The|strong=\"G1722\"* magistrates|strong=\"G4755\"* have|strong=\"G3748\"* sent to|strong=\"G4314\"* let|strong=\"G1161\"* you|strong=\"G3754\"* go|strong=\"G4198\"*; now|strong=\"G1161\"* therefore|strong=\"G3767\"* come|strong=\"G1831\"* out|strong=\"G1831\"* and|strong=\"G1161\"* go|strong=\"G4198\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*.”" + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G5346\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “They|strong=\"G2532\"* have|strong=\"G2532\"* beaten|strong=\"G1194\"* us|strong=\"G1519\"* publicly|strong=\"G1219\"* without|strong=\"G2532\"* a|strong=\"G2532\"* trial, men|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* Romans|strong=\"G4514\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* cast|strong=\"G1544\"* us|strong=\"G1519\"* into|strong=\"G1519\"* prison|strong=\"G5438\"*! Do|strong=\"G2532\"* they|strong=\"G2532\"* now|strong=\"G1161\"* release us|strong=\"G1519\"* secretly|strong=\"G2977\"*? No|strong=\"G3756\"*, most certainly|strong=\"G1063\"*, but|strong=\"G1161\"* let|strong=\"G1161\"* them|strong=\"G3588\"* come|strong=\"G2064\"* themselves|strong=\"G1438\"* and|strong=\"G2532\"* bring|strong=\"G2532\"* us|strong=\"G1519\"* out|strong=\"G1544\"*!”" + }, + { + "verseNum": 38, + "text": "The|strong=\"G1161\"* sergeants reported these|strong=\"G3778\"* words|strong=\"G4487\"* to|strong=\"G1161\"* the|strong=\"G1161\"* magistrates|strong=\"G4755\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G1510\"* afraid|strong=\"G5399\"* when|strong=\"G1161\"* they|strong=\"G1161\"* heard that|strong=\"G3754\"* they|strong=\"G1161\"* were|strong=\"G1510\"* Romans|strong=\"G4514\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* them|strong=\"G3588\"*. When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* brought|strong=\"G1806\"* them|strong=\"G3588\"* out|strong=\"G1806\"*, they|strong=\"G2532\"* asked|strong=\"G2065\"* them|strong=\"G3588\"* to|strong=\"G2532\"* depart from|strong=\"G2064\"* the|strong=\"G2532\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prison|strong=\"G5438\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1525\"* Lydia|strong=\"G3070\"*’s house. When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* brothers, they|strong=\"G2532\"* encouraged|strong=\"G3870\"* them|strong=\"G3588\"*, then|strong=\"G2532\"* departed|strong=\"G1831\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* passed|strong=\"G3588\"* through|strong=\"G1353\"* Amphipolis and|strong=\"G2532\"* Apollonia, they|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Thessalonica|strong=\"G2332\"*, where|strong=\"G3699\"* there|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Jewish|strong=\"G2453\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 2, + "text": "Paul|strong=\"G3972\"*, as|strong=\"G1161\"* was|strong=\"G3588\"* his|strong=\"G1438\"* custom|strong=\"G1486\"*, went|strong=\"G1525\"* in|strong=\"G1909\"* to|strong=\"G4314\"* them|strong=\"G3588\"*; and|strong=\"G2532\"* for|strong=\"G1909\"* three|strong=\"G5140\"* Sabbath|strong=\"G4521\"* days|strong=\"G4521\"* reasoned|strong=\"G1256\"* with|strong=\"G4314\"* them|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 3, + "text": "explaining|strong=\"G1272\"* and|strong=\"G2532\"* demonstrating|strong=\"G3908\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* had|strong=\"G2424\"* to|strong=\"G2532\"* suffer|strong=\"G3958\"* and|strong=\"G2532\"* rise|strong=\"G1163\"* again|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* saying|strong=\"G3754\"*, “This|strong=\"G3778\"* Jesus|strong=\"G2424\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* proclaim|strong=\"G2605\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 4, + "text": "Some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"* were|strong=\"G3588\"* persuaded|strong=\"G3982\"* and|strong=\"G2532\"* joined|strong=\"G4345\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"*: of|strong=\"G1537\"* the|strong=\"G2532\"* devout|strong=\"G4576\"* Greeks|strong=\"G1672\"* a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G4128\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* few|strong=\"G3641\"* of|strong=\"G1537\"* the|strong=\"G2532\"* chief|strong=\"G4413\"* women|strong=\"G1135\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* unpersuaded Jews|strong=\"G2453\"* took|strong=\"G4355\"* along|strong=\"G2532\"*+ 17:5 TR reads “And the Jews who were unpersuaded, becoming envious and taking along” instead of “But the unpersuaded Jews took along”* some|strong=\"G5100\"* wicked|strong=\"G4190\"* men|strong=\"G5100\"* from|strong=\"G2532\"* the|strong=\"G2532\"* marketplace and|strong=\"G2532\"* gathering a|strong=\"G2532\"* crowd, set|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* in|strong=\"G1519\"* an|strong=\"G2532\"* uproar|strong=\"G2350\"*. Assaulting the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Jason|strong=\"G2394\"*, they|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G1519\"* bring|strong=\"G4254\"* them|strong=\"G3588\"* out|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* people|strong=\"G1218\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* them|strong=\"G3588\"*, they|strong=\"G2532\"* dragged|strong=\"G4951\"* Jason|strong=\"G2394\"* and|strong=\"G2532\"* certain|strong=\"G5100\"* brothers+ 17:6 The word for “brothers” here and where the context allows may be also correctly translated “brothers and sisters” or “siblings.”* before|strong=\"G1909\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4173\"*, crying, “These|strong=\"G3778\"* who|strong=\"G3588\"* have|strong=\"G2532\"* turned the|strong=\"G2532\"* world|strong=\"G3625\"* upside|strong=\"G3625\"* down have|strong=\"G2532\"* come|strong=\"G3918\"* here|strong=\"G1759\"* also|strong=\"G2532\"*," + }, + { + "verseNum": 7, + "text": "whom|strong=\"G3739\"* Jason|strong=\"G2394\"* has|strong=\"G3739\"* received|strong=\"G5264\"*. These|strong=\"G3778\"* all|strong=\"G3956\"* act|strong=\"G4238\"* contrary to|strong=\"G2532\"* the|strong=\"G2532\"* decrees|strong=\"G1378\"* of|strong=\"G2532\"* Caesar|strong=\"G2541\"*, saying|strong=\"G3004\"* that|strong=\"G3739\"* there|strong=\"G2532\"* is|strong=\"G1510\"* another|strong=\"G2087\"* king|strong=\"G3588\"*, Jesus|strong=\"G2424\"*!”" + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* multitude|strong=\"G3793\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rulers of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4173\"* were|strong=\"G3588\"* troubled|strong=\"G5015\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* security|strong=\"G2425\"* from|strong=\"G3844\"* Jason|strong=\"G2394\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*, they|strong=\"G2532\"* let|strong=\"G2983\"* them|strong=\"G3588\"* go|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* brothers immediately|strong=\"G2112\"* sent|strong=\"G1599\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* Silas|strong=\"G4609\"* away|strong=\"G1599\"* by|strong=\"G1223\"* night|strong=\"G3571\"* to|strong=\"G1519\"* Beroea. When|strong=\"G1161\"* they|strong=\"G2532\"* arrived|strong=\"G3854\"*, they|strong=\"G2532\"* went|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Jewish|strong=\"G2453\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* were|strong=\"G1510\"* more|strong=\"G2192\"* noble|strong=\"G2104\"* than|strong=\"G2104\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Thessalonica|strong=\"G2332\"*, in|strong=\"G1722\"* that|strong=\"G3588\"* they|strong=\"G1161\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* with|strong=\"G3326\"* all|strong=\"G3956\"* readiness|strong=\"G4288\"* of|strong=\"G3056\"* mind|strong=\"G4288\"*, examining the|strong=\"G1722\"* Scriptures|strong=\"G1124\"* daily|strong=\"G2250\"* to|strong=\"G2596\"* see whether|strong=\"G1487\"* these|strong=\"G3778\"* things|strong=\"G3956\"* were|strong=\"G1510\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 12, + "text": "Many|strong=\"G4183\"* of|strong=\"G1537\"* them|strong=\"G3588\"* therefore|strong=\"G3767\"* believed|strong=\"G4100\"*; also|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* prominent|strong=\"G2158\"* Greek|strong=\"G1674\"* women|strong=\"G1135\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* few|strong=\"G3641\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* of|strong=\"G3056\"* Thessalonica|strong=\"G2332\"* had|strong=\"G2532\"* knowledge|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* was|strong=\"G3588\"* proclaimed|strong=\"G2605\"* by|strong=\"G1722\"* Paul|strong=\"G3972\"* at|strong=\"G1722\"* Beroea also|strong=\"G2532\"*, they|strong=\"G2532\"* came|strong=\"G2064\"* there|strong=\"G2532\"* likewise|strong=\"G2532\"*, agitating|strong=\"G4531\"* the|strong=\"G1722\"* multitudes|strong=\"G3793\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* brothers immediately|strong=\"G2112\"* sent|strong=\"G1821\"* out|strong=\"G2532\"* Paul|strong=\"G3972\"* to|strong=\"G2532\"* go|strong=\"G4198\"* as|strong=\"G1161\"* far|strong=\"G2193\"* as|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* still|strong=\"G2193\"* stayed|strong=\"G5278\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* escorted|strong=\"G2525\"* Paul|strong=\"G3972\"* brought|strong=\"G2064\"* him|strong=\"G3588\"* as|strong=\"G5613\"* far|strong=\"G2193\"* as|strong=\"G5613\"* Athens. Receiving|strong=\"G2983\"* a|strong=\"G5613\"* commandment|strong=\"G1785\"* to|strong=\"G4314\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G4314\"* him|strong=\"G3588\"* very|strong=\"G2532\"* quickly|strong=\"G5036\"*, they|strong=\"G2532\"* departed|strong=\"G1826\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* while|strong=\"G1722\"* Paul|strong=\"G3972\"* waited|strong=\"G1551\"* for|strong=\"G1161\"* them|strong=\"G3588\"* at|strong=\"G1722\"* Athens, his|strong=\"G1438\"* spirit|strong=\"G4151\"* was|strong=\"G1510\"* provoked|strong=\"G3947\"* within|strong=\"G1722\"* him|strong=\"G3588\"* as|strong=\"G1722\"* he|strong=\"G1161\"* saw|strong=\"G2334\"* the|strong=\"G1722\"* city|strong=\"G4172\"* full|strong=\"G1722\"* of|strong=\"G4151\"* idols|strong=\"G2712\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* reasoned|strong=\"G1256\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* the|strong=\"G1722\"* devout|strong=\"G4576\"* persons|strong=\"G4576\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* marketplace every|strong=\"G3956\"* day|strong=\"G2250\"* with|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* met him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Epicurean|strong=\"G1946\"* and|strong=\"G2532\"* Stoic|strong=\"G4770\"* philosophers|strong=\"G5386\"* also|strong=\"G2532\"*+ 17:18 TR omits “also” * were|strong=\"G1510\"* conversing|strong=\"G4820\"* with|strong=\"G2532\"* him|strong=\"G3588\"*. Some|strong=\"G5100\"* said|strong=\"G3004\"*, “What|strong=\"G5101\"* does|strong=\"G1510\"* this|strong=\"G3778\"* babbler|strong=\"G4691\"* want|strong=\"G2309\"* to|strong=\"G2532\"* say|strong=\"G3004\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"G3588\"* took|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G5259\"* him|strong=\"G3588\"* and|strong=\"G5037\"* brought him|strong=\"G3588\"* to|strong=\"G1909\"* the|strong=\"G1909\"* Areopagus, saying|strong=\"G3004\"*, “May|strong=\"G1410\"* we|strong=\"G3778\"* know|strong=\"G1097\"* what|strong=\"G5101\"* this|strong=\"G3778\"* new|strong=\"G2537\"* teaching|strong=\"G1322\"* is|strong=\"G3588\"*, which|strong=\"G3588\"* you|strong=\"G4771\"* are|strong=\"G3588\"* speaking|strong=\"G2980\"* about|strong=\"G1909\"*?" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G1510\"* bring|strong=\"G1533\"* certain|strong=\"G5100\"* strange|strong=\"G3579\"* things|strong=\"G3778\"* to|strong=\"G1519\"* our|strong=\"G1519\"* ears. We|strong=\"G2249\"* want|strong=\"G2309\"* to|strong=\"G1519\"* know|strong=\"G1097\"* therefore|strong=\"G3767\"* what|strong=\"G5101\"* these|strong=\"G3778\"* things|strong=\"G3778\"* mean|strong=\"G2309\"*.”" + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Athenians and|strong=\"G2532\"* the|strong=\"G2532\"* strangers|strong=\"G3581\"* living there|strong=\"G2532\"* spent their|strong=\"G2532\"* time|strong=\"G2119\"* in|strong=\"G1519\"* nothing|strong=\"G3762\"* else|strong=\"G2228\"*, but|strong=\"G1161\"* either|strong=\"G2228\"* to|strong=\"G1519\"* tell|strong=\"G3004\"* or|strong=\"G2228\"* to|strong=\"G1519\"* hear some|strong=\"G5100\"* new|strong=\"G2537\"* thing|strong=\"G5100\"*." + }, + { + "verseNum": 22, + "text": "Paul|strong=\"G3972\"* stood|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Areopagus and|strong=\"G1161\"* said|strong=\"G5346\"*, “You|strong=\"G5210\"* men|strong=\"G3956\"* of|strong=\"G1722\"* Athens, I|strong=\"G1161\"* perceive|strong=\"G2334\"* that|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* very|strong=\"G3588\"* religious in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* as|strong=\"G1722\"* I|strong=\"G1473\"* passed|strong=\"G1330\"* along|strong=\"G2532\"* and|strong=\"G2532\"* observed the|strong=\"G1722\"* objects|strong=\"G4574\"* of|strong=\"G2316\"* your|strong=\"G2532\"* worship|strong=\"G2151\"*, I|strong=\"G1473\"* also|strong=\"G2532\"* found|strong=\"G2147\"* an|strong=\"G2532\"* altar|strong=\"G1041\"* with|strong=\"G1722\"* this|strong=\"G3778\"* inscription|strong=\"G1924\"*: ‘TO|strong=\"G2532\"* AN|strong=\"G2532\"* UNKNOWN GOD|strong=\"G2316\"*.’ What|strong=\"G3739\"* therefore|strong=\"G3767\"* you|strong=\"G5210\"* worship|strong=\"G2151\"* in|strong=\"G1722\"* ignorance, I|strong=\"G1473\"* announce to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"G1722\"* God|strong=\"G2316\"* who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* world|strong=\"G2889\"* and|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, he|strong=\"G2532\"*, being|strong=\"G5225\"* Lord|strong=\"G2962\"* of|strong=\"G2316\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* earth|strong=\"G1093\"*, doesn’t|strong=\"G3588\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* temples|strong=\"G3485\"* made|strong=\"G4160\"* with|strong=\"G1722\"* hands|strong=\"G5499\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G2532\"* isn’t|strong=\"G3588\"* served|strong=\"G2323\"* by|strong=\"G5259\"* men|strong=\"G3956\"*’s hands|strong=\"G5495\"*, as|strong=\"G2532\"* though|strong=\"G2532\"* he|strong=\"G2532\"* needed|strong=\"G4326\"* anything|strong=\"G5100\"*, seeing he|strong=\"G2532\"* himself gives|strong=\"G1325\"* to|strong=\"G2532\"* all|strong=\"G3956\"* life|strong=\"G2222\"* and|strong=\"G2532\"* breath|strong=\"G4157\"* and|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* made|strong=\"G4160\"* from|strong=\"G1537\"* one|strong=\"G1520\"* blood every|strong=\"G3956\"* nation|strong=\"G1484\"* of|strong=\"G1537\"* men|strong=\"G3956\"* to|strong=\"G2532\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* all|strong=\"G3956\"* the|strong=\"G2532\"* surface of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, having|strong=\"G2532\"* determined|strong=\"G3724\"* appointed|strong=\"G4160\"* seasons|strong=\"G2540\"* and|strong=\"G2532\"* the|strong=\"G2532\"* boundaries|strong=\"G3734\"* of|strong=\"G1537\"* their|strong=\"G2532\"* dwellings," + }, + { + "verseNum": 27, + "text": "that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* seek|strong=\"G2212\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*, if|strong=\"G1487\"* perhaps they|strong=\"G2532\"* might|strong=\"G2532\"* reach out|strong=\"G2532\"* for|strong=\"G1520\"* him|strong=\"G3588\"* and|strong=\"G2532\"* find|strong=\"G2147\"* him|strong=\"G3588\"*, though|strong=\"G1487\"* he|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* far|strong=\"G3112\"* from|strong=\"G2532\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2316\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 28, + "text": "‘For|strong=\"G1063\"* in|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G1063\"* live|strong=\"G2198\"*, move|strong=\"G2795\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* our|strong=\"G2532\"* being|strong=\"G1510\"*.’ As|strong=\"G5613\"* some|strong=\"G5100\"* of|strong=\"G2532\"* your|strong=\"G2532\"* own poets|strong=\"G4163\"* have|strong=\"G2532\"* said|strong=\"G3004\"*, ‘For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* also|strong=\"G2532\"* his|strong=\"G1722\"* offspring|strong=\"G1085\"*.’" + }, + { + "verseNum": 29, + "text": "Being|strong=\"G1510\"* then|strong=\"G3767\"* the|strong=\"G2532\"* offspring|strong=\"G1085\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, we|strong=\"G2532\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G2532\"* think|strong=\"G3543\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Divine|strong=\"G2304\"* Nature|strong=\"G2304\"* is|strong=\"G1510\"* like|strong=\"G3664\"* gold|strong=\"G5557\"*, or|strong=\"G2228\"* silver, or|strong=\"G2228\"* stone|strong=\"G3037\"*, engraved by|strong=\"G2532\"* art|strong=\"G5078\"* and|strong=\"G2532\"* design of|strong=\"G2316\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"G3956\"* times|strong=\"G5550\"* of|strong=\"G2316\"* ignorance therefore|strong=\"G3767\"* God|strong=\"G2316\"* overlooked|strong=\"G5237\"*. But|strong=\"G3767\"* now|strong=\"G3568\"* he|strong=\"G3588\"* commands|strong=\"G3853\"* that|strong=\"G3588\"* all|strong=\"G3956\"* people|strong=\"G3956\"* everywhere|strong=\"G3837\"* should|strong=\"G2316\"* repent|strong=\"G3340\"*," + }, + { + "verseNum": 31, + "text": "because|strong=\"G1537\"* he|strong=\"G3739\"* has|strong=\"G3739\"* appointed|strong=\"G3724\"* a|strong=\"G1722\"* day|strong=\"G2250\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* will|strong=\"G3195\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* world|strong=\"G3625\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"* by|strong=\"G1722\"* the|strong=\"G1722\"* man|strong=\"G3956\"* whom|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* ordained|strong=\"G3724\"*; of|strong=\"G1537\"* which|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* given|strong=\"G3930\"* assurance|strong=\"G4102\"* to|strong=\"G3195\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, in|strong=\"G1722\"* that|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* raised|strong=\"G3498\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*.”" + }, + { + "verseNum": 32, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* heard of|strong=\"G4012\"* the|strong=\"G2532\"* resurrection of|strong=\"G4012\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, some|strong=\"G3588\"* mocked|strong=\"G5512\"*; but|strong=\"G1161\"* others|strong=\"G3588\"* said|strong=\"G3004\"*, “We|strong=\"G2532\"* want to|strong=\"G2532\"* hear you|strong=\"G4771\"* again|strong=\"G3825\"* concerning|strong=\"G4012\"* this|strong=\"G3778\"*.”" + }, + { + "verseNum": 33, + "text": "Thus|strong=\"G3779\"* Paul|strong=\"G3972\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* among|strong=\"G1537\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* certain|strong=\"G5100\"* men|strong=\"G5100\"* joined|strong=\"G2853\"* with|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* believed|strong=\"G4100\"*, including|strong=\"G4862\"* Dionysius|strong=\"G1354\"* the|strong=\"G1722\"* Areopagite, and|strong=\"G2532\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* named|strong=\"G3686\"* Damaris|strong=\"G1152\"*, and|strong=\"G2532\"* others|strong=\"G2087\"* with|strong=\"G1722\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* Paul|strong=\"G5563\"* departed|strong=\"G5563\"* from|strong=\"G1537\"* Athens and|strong=\"G2064\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Corinth|strong=\"G2882\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* Jew|strong=\"G2453\"* named|strong=\"G3686\"* Aquila, a|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G1223\"* Pontus|strong=\"G4193\"* by|strong=\"G1223\"* race|strong=\"G1085\"*, who|strong=\"G3588\"* had|strong=\"G2532\"* recently|strong=\"G4373\"* come|strong=\"G2064\"* from|strong=\"G2064\"* Italy|strong=\"G2482\"* with|strong=\"G1223\"* his|strong=\"G3956\"* wife|strong=\"G1135\"* Priscilla|strong=\"G4252\"*, because|strong=\"G1223\"* Claudius|strong=\"G2804\"* had|strong=\"G2532\"* commanded|strong=\"G1299\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* to|strong=\"G2532\"* depart|strong=\"G5563\"* from|strong=\"G2064\"* Rome|strong=\"G4516\"*. He|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* because|strong=\"G1223\"* he|strong=\"G2532\"* practiced the|strong=\"G2532\"* same|strong=\"G2532\"* trade|strong=\"G3673\"*, he|strong=\"G2532\"* lived|strong=\"G1510\"* with|strong=\"G3844\"* them|strong=\"G3588\"* and|strong=\"G2532\"* worked|strong=\"G2038\"*, for|strong=\"G1063\"* by|strong=\"G1223\"* trade|strong=\"G3673\"* they|strong=\"G2532\"* were|strong=\"G1510\"* tent makers." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* reasoned|strong=\"G1256\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"* every|strong=\"G3956\"* Sabbath|strong=\"G4521\"* and|strong=\"G2532\"* persuaded|strong=\"G3982\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* Silas|strong=\"G4609\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"* came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2532\"* Macedonia|strong=\"G3109\"*, Paul|strong=\"G3972\"* was|strong=\"G1510\"* compelled by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G3588\"*, testifying|strong=\"G1263\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* opposed him|strong=\"G3588\"* and|strong=\"G2532\"* blasphemed, he|strong=\"G2532\"* shook|strong=\"G1621\"* out|strong=\"G2532\"* his|strong=\"G1438\"* clothing|strong=\"G2440\"* and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Your|strong=\"G2532\"* blood be|strong=\"G2532\"* on|strong=\"G1909\"* your|strong=\"G2532\"* own|strong=\"G1438\"* heads|strong=\"G2776\"*! I|strong=\"G1473\"* am|strong=\"G1473\"* clean|strong=\"G2513\"*. From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1909\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* go|strong=\"G4198\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*!”" + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* departed|strong=\"G3327\"* there|strong=\"G2532\"* and|strong=\"G2532\"* went|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2316\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Justus|strong=\"G2459\"*, one|strong=\"G5100\"* who|strong=\"G3739\"* worshiped God|strong=\"G2316\"*, whose|strong=\"G3739\"* house|strong=\"G3614\"* was|strong=\"G1510\"* next|strong=\"G4927\"* door to|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"*." + }, + { + "verseNum": 8, + "text": "Crispus|strong=\"G2921\"*, the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, believed|strong=\"G4100\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* with|strong=\"G4862\"* all|strong=\"G3650\"* his|strong=\"G2532\"* house|strong=\"G3624\"*. Many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Corinthians|strong=\"G2881\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard, believed|strong=\"G4100\"* and|strong=\"G2532\"* were|strong=\"G3588\"* baptized." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1722\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Paul|strong=\"G3972\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"* by|strong=\"G1223\"* a|strong=\"G2532\"* vision|strong=\"G3705\"*, “Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w afraid|strong=\"G5399\"\\+w*, \\+w but|strong=\"G1161\"\\+w* \\+w speak|strong=\"G2980\"\\+w* \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w silent|strong=\"G4623\"\\+w*; *" + }, + { + "verseNum": 10, + "text": "\\+w for|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w attack|strong=\"G2007\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w harm|strong=\"G2559\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w for|strong=\"G1722\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w many|strong=\"G4183\"\\+w* \\+w people|strong=\"G2992\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w city|strong=\"G4172\"\\+w*.”*" + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* lived|strong=\"G2532\"* there|strong=\"G2532\"* a|strong=\"G2532\"* year|strong=\"G1763\"* and|strong=\"G2532\"* six|strong=\"G1803\"* months|strong=\"G3376\"*, teaching|strong=\"G1321\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* among|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Gallio|strong=\"G1058\"* was|strong=\"G1510\"* proconsul of|strong=\"G2532\"* Achaia, the|strong=\"G2532\"* Jews|strong=\"G2453\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* against|strong=\"G1909\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* brought|strong=\"G1161\"* him|strong=\"G3588\"* before|strong=\"G1909\"* the|strong=\"G2532\"* judgment seat," + }, + { + "verseNum": 13, + "text": "saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* persuades men|strong=\"G3778\"* to|strong=\"G3004\"* worship|strong=\"G4576\"* God|strong=\"G2316\"* contrary|strong=\"G3844\"* to|strong=\"G3004\"* the|strong=\"G3588\"* law|strong=\"G3551\"*.”" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G4314\"* open his|strong=\"G2596\"* mouth|strong=\"G4750\"*, Gallio|strong=\"G1058\"* said|strong=\"G3004\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, “If|strong=\"G1487\"* indeed|strong=\"G3303\"* it|strong=\"G1161\"* were|strong=\"G1510\"* a|strong=\"G1510\"* matter|strong=\"G3056\"* of|strong=\"G3056\"* wrong or|strong=\"G2228\"* of|strong=\"G3056\"* wicked|strong=\"G4190\"* crime|strong=\"G4467\"*, you|strong=\"G5210\"* Jews|strong=\"G2453\"*, it|strong=\"G1161\"* would|strong=\"G3195\"* be|strong=\"G1510\"* reasonable|strong=\"G3056\"* that|strong=\"G3588\"* I|strong=\"G1161\"* should|strong=\"G3195\"* bear with|strong=\"G4314\"* you|strong=\"G5210\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* if|strong=\"G1487\"* they|strong=\"G2532\"* are|strong=\"G1510\"* questions|strong=\"G2213\"* about|strong=\"G4012\"* words|strong=\"G3056\"* and|strong=\"G2532\"* names|strong=\"G3686\"* and|strong=\"G2532\"* your|strong=\"G2532\"* own law|strong=\"G3551\"*, look|strong=\"G3708\"* to|strong=\"G2532\"* it|strong=\"G2532\"* yourselves|strong=\"G4771\"*. For|strong=\"G4012\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* want|strong=\"G1014\"* to|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* judge|strong=\"G2923\"* of|strong=\"G4012\"* these|strong=\"G3778\"* matters|strong=\"G3056\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"G2532\"* he|strong=\"G2532\"* drove them|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* judgment seat." + }, + { + "verseNum": 17, + "text": "Then|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Greeks seized|strong=\"G1949\"* Sosthenes|strong=\"G4988\"*, the|strong=\"G2532\"* ruler of|strong=\"G2532\"* the|strong=\"G2532\"* synagogue, and|strong=\"G2532\"* beat|strong=\"G5180\"* him|strong=\"G3588\"* before|strong=\"G1715\"* the|strong=\"G2532\"* judgment seat. Gallio|strong=\"G1058\"* didn’t|strong=\"G3588\"* care|strong=\"G3199\"* about|strong=\"G3199\"* any|strong=\"G3956\"* of|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "Paul|strong=\"G3972\"*, having|strong=\"G2192\"* stayed after|strong=\"G1161\"* this|strong=\"G3588\"* many|strong=\"G2425\"* more|strong=\"G2089\"* days|strong=\"G2250\"*, took|strong=\"G2532\"* his|strong=\"G1519\"* leave of|strong=\"G2250\"* the|strong=\"G1722\"* brothers,+ 18:18 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.”* and|strong=\"G2532\"* sailed|strong=\"G1602\"* from|strong=\"G2532\"* there|strong=\"G2532\"* for|strong=\"G1063\"* Syria|strong=\"G4947\"*, together|strong=\"G4862\"* with|strong=\"G1722\"* Priscilla|strong=\"G4252\"* and|strong=\"G2532\"* Aquila. He|strong=\"G2532\"* shaved his|strong=\"G1519\"* head|strong=\"G2776\"* in|strong=\"G1722\"* Cenchreae, for|strong=\"G1063\"* he|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* vow|strong=\"G2171\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"G1161\"* came|strong=\"G1525\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* left|strong=\"G2641\"* them|strong=\"G3588\"* there|strong=\"G1161\"*; but|strong=\"G1161\"* he|strong=\"G1161\"* himself|strong=\"G1519\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1519\"* synagogue|strong=\"G4864\"* and|strong=\"G1161\"* reasoned|strong=\"G1256\"* with|strong=\"G1519\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* asked|strong=\"G2065\"* him|strong=\"G2065\"* to|strong=\"G1909\"* stay|strong=\"G3306\"* with|strong=\"G1909\"* them|strong=\"G4183\"* a|strong=\"G1909\"* longer|strong=\"G1909\"* time|strong=\"G5550\"*, he|strong=\"G1161\"* declined;" + }, + { + "verseNum": 21, + "text": "but|strong=\"G2532\"* taking his|strong=\"G2532\"* leave of|strong=\"G2316\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* must|strong=\"G3588\"* by|strong=\"G4314\"* all|strong=\"G2532\"* means|strong=\"G3004\"* keep this|strong=\"G3588\"* coming|strong=\"G2316\"* feast in|strong=\"G2532\"* Jerusalem, but|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2309\"* return again|strong=\"G3825\"* to|strong=\"G4314\"* you|strong=\"G5210\"* if|strong=\"G2532\"* God|strong=\"G2316\"* wills|strong=\"G2309\"*.” Then|strong=\"G2532\"* he|strong=\"G2532\"* set|strong=\"G2532\"* sail from|strong=\"G2532\"* Ephesus|strong=\"G2181\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* landed|strong=\"G2718\"* at|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, he|strong=\"G2532\"* went|strong=\"G2597\"* up|strong=\"G1519\"* and|strong=\"G2532\"* greeted the|strong=\"G2532\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Antioch." + }, + { + "verseNum": 23, + "text": "Having|strong=\"G2532\"* spent|strong=\"G4160\"* some|strong=\"G5100\"* time|strong=\"G5550\"* there|strong=\"G2532\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* through|strong=\"G1330\"* the|strong=\"G2532\"* region|strong=\"G5561\"* of|strong=\"G2532\"* Galatia|strong=\"G1054\"* and|strong=\"G2532\"* Phrygia|strong=\"G5435\"*, in|strong=\"G2532\"* order|strong=\"G2517\"*, establishing|strong=\"G4160\"* all|strong=\"G3956\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* Jew|strong=\"G2453\"* named|strong=\"G3686\"* Apollos, an|strong=\"G1519\"* Alexandrian by|strong=\"G1722\"* race|strong=\"G1085\"*, an|strong=\"G1519\"* eloquent|strong=\"G3052\"* man|strong=\"G5100\"*, came|strong=\"G2658\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*. He|strong=\"G1161\"* was|strong=\"G1510\"* mighty|strong=\"G1415\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"*." + }, + { + "verseNum": 25, + "text": "This|strong=\"G3778\"* man|strong=\"G3778\"* had|strong=\"G2424\"* been|strong=\"G1510\"* instructed|strong=\"G2727\"* in|strong=\"G2532\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; and|strong=\"G2532\"* being|strong=\"G1510\"* fervent|strong=\"G2204\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*, he|strong=\"G2532\"* spoke|strong=\"G2980\"* and|strong=\"G2532\"* taught|strong=\"G1321\"* accurately the|strong=\"G2532\"* things|strong=\"G3778\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, although|strong=\"G2532\"* he|strong=\"G2532\"* knew only|strong=\"G3440\"* the|strong=\"G2532\"* baptism of|strong=\"G4012\"* John|strong=\"G2491\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* speak|strong=\"G3955\"* boldly|strong=\"G3955\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogue|strong=\"G4864\"*. But|strong=\"G1161\"* when|strong=\"G1161\"* Priscilla|strong=\"G4252\"* and|strong=\"G2532\"* Aquila heard him|strong=\"G3588\"*, they|strong=\"G2532\"* took|strong=\"G4355\"* him|strong=\"G3588\"* aside|strong=\"G4355\"*, and|strong=\"G2532\"* explained|strong=\"G1620\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G1722\"* way|strong=\"G3598\"* of|strong=\"G2316\"* God|strong=\"G2316\"* more|strong=\"G2532\"* accurately." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* determined to|strong=\"G1519\"* pass|strong=\"G1330\"* over|strong=\"G1330\"* into|strong=\"G1519\"* Achaia, the|strong=\"G1519\"* brothers encouraged|strong=\"G4389\"* him|strong=\"G3588\"*; and|strong=\"G1161\"* wrote|strong=\"G1125\"* to|strong=\"G1519\"* the|strong=\"G1519\"* disciples|strong=\"G3101\"* to|strong=\"G1519\"* receive him|strong=\"G3588\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3739\"* come|strong=\"G3854\"*, he|strong=\"G1161\"* greatly|strong=\"G4183\"* helped|strong=\"G4820\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G3739\"* believed|strong=\"G4100\"* through|strong=\"G1223\"* grace|strong=\"G5485\"*;" + }, + { + "verseNum": 28, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* powerfully|strong=\"G2159\"* refuted|strong=\"G1246\"* the|strong=\"G1223\"* Jews|strong=\"G2453\"*, publicly|strong=\"G1219\"* showing|strong=\"G1925\"* by|strong=\"G1223\"* the|strong=\"G1223\"* Scriptures|strong=\"G1124\"* that|strong=\"G3588\"* Jesus|strong=\"G2424\"* was|strong=\"G1510\"* the|strong=\"G1223\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "While|strong=\"G1722\"* Apollos was|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, Paul|strong=\"G3972\"*, having|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1722\"* the|strong=\"G1722\"* upper country|strong=\"G3313\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"* and|strong=\"G2532\"* found|strong=\"G2147\"* certain|strong=\"G5100\"* disciples|strong=\"G3101\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, “Did|strong=\"G4100\"* you|strong=\"G1487\"* receive|strong=\"G2983\"* the|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* when|strong=\"G1161\"* you|strong=\"G1487\"* believed|strong=\"G4100\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “Into|strong=\"G1519\"* what|strong=\"G5101\"* then|strong=\"G3767\"* were|strong=\"G3588\"* you|strong=\"G3004\"* baptized?”" + }, + { + "verseNum": 4, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “John|strong=\"G2491\"* indeed|strong=\"G1161\"* baptized with|strong=\"G3326\"* the|strong=\"G1519\"* baptism of|strong=\"G2424\"* repentance|strong=\"G3341\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G2992\"* that|strong=\"G2443\"* they|strong=\"G1161\"* should|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* one|strong=\"G3588\"* who|strong=\"G3588\"* would|strong=\"G2064\"* come|strong=\"G2064\"* after|strong=\"G3326\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* is|strong=\"G1510\"*, in|strong=\"G1519\"* Christ Jesus|strong=\"G2424\"*.”+ 19:4 NU omits Christ.*" + }, + { + "verseNum": 5, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* heard this|strong=\"G3588\"*, they|strong=\"G1161\"* were|strong=\"G3588\"* baptized in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"G2532\"* Paul|strong=\"G3972\"* had|strong=\"G2532\"* laid|strong=\"G2007\"* his|strong=\"G1438\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* came|strong=\"G2064\"* on|strong=\"G1909\"* them|strong=\"G3588\"* and|strong=\"G2532\"* they|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G1438\"* languages|strong=\"G1100\"* and|strong=\"G2532\"* prophesied|strong=\"G4395\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"G1161\"* were|strong=\"G1510\"* about|strong=\"G5616\"* twelve|strong=\"G1427\"* men|strong=\"G3956\"* in|strong=\"G3956\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* synagogue|strong=\"G4864\"* and|strong=\"G2532\"* spoke|strong=\"G3955\"* boldly|strong=\"G3955\"* for|strong=\"G1519\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G4012\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, reasoning|strong=\"G1256\"* and|strong=\"G2532\"* persuading|strong=\"G3982\"* about|strong=\"G4012\"* the|strong=\"G2532\"* things|strong=\"G3588\"* concerning|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* some|strong=\"G5100\"* were|strong=\"G3588\"* hardened|strong=\"G4645\"* and|strong=\"G2532\"* disobedient, speaking|strong=\"G2551\"* evil|strong=\"G2551\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Way|strong=\"G3598\"* before|strong=\"G1799\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"*, he|strong=\"G2532\"* departed from|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* separated the|strong=\"G1722\"* disciples|strong=\"G3101\"*, reasoning|strong=\"G1256\"* daily|strong=\"G2250\"* in|strong=\"G1722\"* the|strong=\"G1722\"* school|strong=\"G4981\"* of|strong=\"G2250\"* Tyrannus|strong=\"G5181\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"G3778\"* continued|strong=\"G1096\"* for|strong=\"G1909\"* two|strong=\"G1417\"* years|strong=\"G2094\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G1909\"* Asia|strong=\"G3588\"* heard the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2532\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"G2316\"* worked|strong=\"G4160\"* special|strong=\"G5177\"* miracles|strong=\"G1411\"* by|strong=\"G1223\"* the|strong=\"G1223\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* Paul|strong=\"G3972\"*," + }, + { + "verseNum": 12, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* even|strong=\"G2532\"* handkerchiefs|strong=\"G4676\"* or|strong=\"G2228\"* aprons|strong=\"G4612\"* were|strong=\"G3588\"* carried|strong=\"G2532\"* away from|strong=\"G2532\"* his|strong=\"G1909\"* body|strong=\"G5559\"* to|strong=\"G2532\"* the|strong=\"G2532\"* sick, and|strong=\"G2532\"* the|strong=\"G2532\"* diseases|strong=\"G3554\"* departed|strong=\"G1607\"* from|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* went|strong=\"G2532\"* out|strong=\"G1607\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* some|strong=\"G5100\"* of|strong=\"G4151\"* the|strong=\"G2532\"* itinerant|strong=\"G4022\"* Jews|strong=\"G2453\"*, exorcists|strong=\"G1845\"*, took|strong=\"G2532\"* on|strong=\"G1909\"* themselves to|strong=\"G2532\"* invoke over|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2192\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* spirits|strong=\"G4151\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, saying|strong=\"G3004\"*, “We|strong=\"G3739\"* adjure|strong=\"G3726\"* you|strong=\"G5210\"* by|strong=\"G1909\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* Paul|strong=\"G3972\"* preaches|strong=\"G2784\"*.”" + }, + { + "verseNum": 14, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* one|strong=\"G5100\"* Sceva|strong=\"G4630\"*, a|strong=\"G1510\"* Jewish|strong=\"G2453\"* chief priest, who|strong=\"G2453\"* did|strong=\"G4160\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* evil|strong=\"G4190\"* spirit|strong=\"G4151\"* answered|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* I|strong=\"G2532\"* know|strong=\"G1097\"*, and|strong=\"G2532\"* Paul|strong=\"G3972\"* I|strong=\"G2532\"* know|strong=\"G1097\"*, but|strong=\"G1161\"* who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G5210\"*?”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G1722\"* man|strong=\"G3739\"* in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* spirit|strong=\"G4151\"* was|strong=\"G1510\"* leaped|strong=\"G2177\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, overpowered|strong=\"G2480\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* prevailed|strong=\"G2480\"* against|strong=\"G2596\"* them|strong=\"G3588\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* they|strong=\"G2532\"* fled|strong=\"G1628\"* out|strong=\"G1537\"* of|strong=\"G1537\"* that|strong=\"G3739\"* house|strong=\"G3624\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* wounded|strong=\"G5135\"*." + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* became|strong=\"G1096\"* known|strong=\"G1110\"* to|strong=\"G2532\"* all|strong=\"G3956\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*, who|strong=\"G3588\"* lived|strong=\"G2730\"* at|strong=\"G1909\"* Ephesus|strong=\"G2181\"*. Fear|strong=\"G5401\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* was|strong=\"G1096\"* magnified|strong=\"G3170\"*." + }, + { + "verseNum": 18, + "text": "Many|strong=\"G4183\"* also|strong=\"G2532\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* believed|strong=\"G4100\"* came|strong=\"G2064\"*, confessing|strong=\"G1843\"* and|strong=\"G2532\"* declaring their|strong=\"G2532\"* deeds|strong=\"G4234\"*." + }, + { + "verseNum": 19, + "text": "Many|strong=\"G2425\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practiced|strong=\"G4238\"* magical arts|strong=\"G4021\"* brought|strong=\"G1161\"* their|strong=\"G2532\"* books together|strong=\"G4851\"* and|strong=\"G2532\"* burned|strong=\"G2618\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* all|strong=\"G3956\"*. They|strong=\"G2532\"* counted|strong=\"G4860\"* their|strong=\"G2532\"* price|strong=\"G5092\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* it|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* fifty|strong=\"G3461\"* thousand|strong=\"G3461\"* pieces of|strong=\"G2532\"* silver.+ 19:19 The 50,000 pieces of silver here probably referred to 50,000 drachmas. If so, the value of the burned books was equivalent to about 160 man-years of wages for agricultural laborers*" + }, + { + "verseNum": 20, + "text": "So|strong=\"G3779\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G3588\"* growing and|strong=\"G2532\"* becoming mighty|strong=\"G2532\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* after|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* had|strong=\"G2532\"* ended|strong=\"G4137\"*, Paul|strong=\"G3972\"* determined in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, when|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* passed|strong=\"G1330\"* through|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia, to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, saying|strong=\"G3004\"*, “After|strong=\"G3326\"* I|strong=\"G1473\"* have|strong=\"G2532\"* been|strong=\"G1096\"* there|strong=\"G1563\"*, I|strong=\"G1473\"* must|strong=\"G1163\"* also|strong=\"G2532\"* see|strong=\"G3708\"* Rome|strong=\"G4516\"*.”" + }, + { + "verseNum": 22, + "text": "Having|strong=\"G2532\"* sent|strong=\"G2532\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"* two|strong=\"G1417\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* served|strong=\"G1247\"* him|strong=\"G3588\"*, Timothy|strong=\"G5095\"* and|strong=\"G2532\"* Erastus|strong=\"G2037\"*, he|strong=\"G2532\"* himself|strong=\"G1519\"* stayed|strong=\"G1907\"* in|strong=\"G1519\"* Asia|strong=\"G3588\"* for|strong=\"G1519\"* a|strong=\"G2532\"* while|strong=\"G5550\"*." + }, + { + "verseNum": 23, + "text": "About|strong=\"G4012\"* that|strong=\"G3588\"* time|strong=\"G2540\"* there|strong=\"G1161\"* arose|strong=\"G1096\"* no|strong=\"G3756\"* small|strong=\"G3641\"* disturbance|strong=\"G5017\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* Way|strong=\"G3598\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* a|strong=\"G4160\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Demetrius|strong=\"G1216\"*, a|strong=\"G4160\"* silversmith who|strong=\"G3588\"* made|strong=\"G4160\"* silver shrines|strong=\"G3485\"* of|strong=\"G3686\"* Artemis, brought|strong=\"G3930\"* no|strong=\"G3756\"* little|strong=\"G3641\"* business|strong=\"G2039\"* to|strong=\"G3756\"* the|strong=\"G3588\"* craftsmen|strong=\"G5079\"*," + }, + { + "verseNum": 25, + "text": "whom|strong=\"G3739\"* he|strong=\"G2532\"* gathered|strong=\"G4867\"* together|strong=\"G4867\"* with|strong=\"G1537\"* the|strong=\"G2532\"* workmen|strong=\"G2040\"* of|strong=\"G1537\"* like|strong=\"G5108\"* occupation|strong=\"G5108\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Sirs, you|strong=\"G3739\"* know|strong=\"G1987\"* that|strong=\"G3754\"* by|strong=\"G1537\"* this|strong=\"G3778\"* business|strong=\"G2039\"* we|strong=\"G2249\"* have|strong=\"G2532\"* our|strong=\"G2532\"* wealth|strong=\"G2142\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"G3754\"* see|strong=\"G2334\"* and|strong=\"G2532\"* hear that|strong=\"G3754\"* not|strong=\"G3756\"* at|strong=\"G3756\"* Ephesus|strong=\"G2181\"* alone|strong=\"G3441\"*, but|strong=\"G2532\"* almost|strong=\"G4975\"* throughout|strong=\"G1223\"* all|strong=\"G3956\"* Asia|strong=\"G3588\"*, this|strong=\"G3778\"* Paul|strong=\"G3972\"* has|strong=\"G2316\"* persuaded|strong=\"G3982\"* and|strong=\"G2532\"* turned|strong=\"G3179\"* away|strong=\"G3179\"* many|strong=\"G2425\"* people|strong=\"G3793\"*, saying|strong=\"G3004\"* that|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* no|strong=\"G3756\"* gods|strong=\"G2316\"* that|strong=\"G3754\"* are|strong=\"G1510\"* made|strong=\"G1096\"* with|strong=\"G1223\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 27, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* is|strong=\"G3588\"* there|strong=\"G2532\"* danger|strong=\"G2793\"* that|strong=\"G3739\"* this|strong=\"G3778\"* our|strong=\"G2532\"* trade|strong=\"G3313\"* come|strong=\"G2064\"* into|strong=\"G1519\"* disrepute, but|strong=\"G1161\"* also|strong=\"G2532\"* that|strong=\"G3739\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* goddess|strong=\"G2299\"* Artemis will|strong=\"G3195\"* be|strong=\"G2532\"* counted|strong=\"G3049\"* as|strong=\"G1519\"* nothing|strong=\"G3762\"* and|strong=\"G2532\"* her|strong=\"G1519\"* majesty|strong=\"G3168\"* destroyed|strong=\"G2507\"*, whom|strong=\"G3739\"* all|strong=\"G3650\"* Asia|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G3625\"* worships.”" + }, + { + "verseNum": 28, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard this|strong=\"G3588\"* they|strong=\"G2532\"* were|strong=\"G3588\"* filled|strong=\"G4134\"* with|strong=\"G2532\"* anger|strong=\"G2372\"*, and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"*, saying|strong=\"G3004\"*, “Great|strong=\"G3173\"* is|strong=\"G3588\"* Artemis of|strong=\"G2532\"* the|strong=\"G2532\"* Ephesians|strong=\"G2180\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"G2532\"* whole city|strong=\"G4172\"* was|strong=\"G3588\"* filled|strong=\"G4130\"* with|strong=\"G2532\"* confusion|strong=\"G4799\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* rushed|strong=\"G3729\"* with|strong=\"G2532\"* one|strong=\"G3588\"* accord|strong=\"G3661\"* into|strong=\"G1519\"* the|strong=\"G2532\"* theater|strong=\"G2302\"*, having|strong=\"G2532\"* seized|strong=\"G4884\"* Gaius|strong=\"G1050\"* and|strong=\"G2532\"* Aristarchus, men|strong=\"G3588\"* of|strong=\"G2532\"* Macedonia|strong=\"G3110\"*, Paul|strong=\"G3972\"*’s companions|strong=\"G3588\"* in|strong=\"G1519\"* travel|strong=\"G4898\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* Paul|strong=\"G3972\"* wanted|strong=\"G1014\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1519\"* people|strong=\"G1218\"*, the|strong=\"G1519\"* disciples|strong=\"G3101\"* didn’t|strong=\"G3588\"* allow|strong=\"G1439\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Certain|strong=\"G5100\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Asiarchs, being|strong=\"G1510\"* his|strong=\"G1438\"* friends|strong=\"G5384\"*, sent|strong=\"G3992\"* to|strong=\"G1519\"* him|strong=\"G3588\"* and|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G1519\"* venture|strong=\"G1325\"* into|strong=\"G1519\"* the|strong=\"G2532\"* theater|strong=\"G2302\"*." + }, + { + "verseNum": 32, + "text": "Some|strong=\"G5100\"* therefore|strong=\"G3767\"* cried|strong=\"G2896\"* one|strong=\"G5100\"* thing|strong=\"G5100\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* another|strong=\"G5100\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* was|strong=\"G1510\"* in|strong=\"G2532\"* confusion|strong=\"G4797\"*. Most|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"* why|strong=\"G5101\"* they|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G4905\"* together|strong=\"G4905\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"G1161\"* brought|strong=\"G1161\"* Alexander out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* multitude|strong=\"G3793\"*, the|strong=\"G1537\"* Jews|strong=\"G2453\"* putting|strong=\"G4261\"* him|strong=\"G3588\"* forward|strong=\"G4261\"*. Alexander beckoned|strong=\"G2678\"* with|strong=\"G1537\"* his|strong=\"G3588\"* hand|strong=\"G5495\"*, and|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* made|strong=\"G1161\"* a|strong=\"G3793\"* defense to|strong=\"G2309\"* the|strong=\"G1537\"* people|strong=\"G3793\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G1161\"* perceived|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G1161\"* was|strong=\"G1510\"* a|strong=\"G1096\"* Jew|strong=\"G2453\"*, all|strong=\"G3956\"* with|strong=\"G1537\"* one|strong=\"G1520\"* voice|strong=\"G5456\"* for|strong=\"G3754\"* a|strong=\"G1096\"* time|strong=\"G5610\"* of|strong=\"G1537\"* about|strong=\"G5613\"* two|strong=\"G1417\"* hours|strong=\"G5610\"* cried|strong=\"G2896\"* out|strong=\"G1537\"*, “Great|strong=\"G3173\"* is|strong=\"G1510\"* Artemis of|strong=\"G1537\"* the|strong=\"G3956\"* Ephesians|strong=\"G2180\"*!”" + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* town|strong=\"G4172\"* clerk|strong=\"G1122\"* had|strong=\"G2532\"* quieted|strong=\"G2687\"* the|strong=\"G2532\"* multitude|strong=\"G3793\"*, he|strong=\"G2532\"* said|strong=\"G5346\"*, “You|strong=\"G3739\"* men|strong=\"G3588\"* of|strong=\"G2532\"* Ephesus|strong=\"G2180\"*, what|strong=\"G5101\"* man|strong=\"G3739\"* is|strong=\"G1510\"* there|strong=\"G2532\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* that|strong=\"G3739\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Ephesians|strong=\"G2180\"* is|strong=\"G1510\"* temple|strong=\"G3511\"* keeper of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* goddess Artemis, and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* image which|strong=\"G3739\"* fell|strong=\"G2532\"* down|strong=\"G1356\"* from|strong=\"G2532\"* Zeus?" + }, + { + "verseNum": 36, + "text": "Seeing then|strong=\"G3767\"* that|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"* can’t be|strong=\"G1510\"* denied, you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* be|strong=\"G1510\"* quiet|strong=\"G2687\"* and|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4238\"* nothing|strong=\"G3367\"* rash|strong=\"G4312\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"G1063\"* you|strong=\"G3778\"* have|strong=\"G1473\"* brought these|strong=\"G3778\"* men|strong=\"G3778\"* here|strong=\"G3778\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* neither|strong=\"G3777\"* robbers|strong=\"G2417\"* of|strong=\"G2316\"* temples|strong=\"G2417\"* nor|strong=\"G3777\"* blasphemers of|strong=\"G2316\"* your|strong=\"G3588\"* goddess|strong=\"G2316\"*." + }, + { + "verseNum": 38, + "text": "If|strong=\"G1487\"* therefore|strong=\"G3767\"* Demetrius|strong=\"G1216\"* and|strong=\"G2532\"* the|strong=\"G2532\"* craftsmen|strong=\"G5079\"* who|strong=\"G3588\"* are|strong=\"G1510\"* with|strong=\"G4862\"* him|strong=\"G3588\"* have|strong=\"G2192\"* a|strong=\"G2192\"* matter|strong=\"G3056\"* against|strong=\"G4314\"* anyone|strong=\"G5100\"*, the|strong=\"G2532\"* courts are|strong=\"G1510\"* open and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* proconsuls. Let|strong=\"G1510\"* them|strong=\"G3588\"* press charges|strong=\"G1458\"* against|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* seek|strong=\"G1934\"* anything|strong=\"G5100\"* about|strong=\"G4012\"* other|strong=\"G2087\"* matters|strong=\"G2087\"*, it|strong=\"G1161\"* will|strong=\"G5100\"* be|strong=\"G3588\"* settled|strong=\"G1956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* regular assembly|strong=\"G1577\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G2532\"* danger|strong=\"G2793\"* of|strong=\"G4012\"* being|strong=\"G5225\"* accused|strong=\"G1458\"* concerning|strong=\"G4012\"* today|strong=\"G4594\"*’s riot|strong=\"G4714\"*, there|strong=\"G2532\"* being|strong=\"G5225\"* no|strong=\"G3756\"* cause|strong=\"G3739\"*. Concerning|strong=\"G4012\"* it|strong=\"G2532\"*, we|strong=\"G3739\"* wouldn’t|strong=\"G3588\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* give|strong=\"G3004\"* an|strong=\"G2532\"* account|strong=\"G3056\"* of|strong=\"G4012\"* this|strong=\"G3778\"* commotion.”" + }, + { + "verseNum": 41, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* thus|strong=\"G2532\"* spoken|strong=\"G3004\"*, he|strong=\"G2532\"* dismissed the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* the|strong=\"G2532\"* uproar|strong=\"G2351\"* had|strong=\"G2532\"* ceased|strong=\"G3973\"*, Paul|strong=\"G3972\"* sent|strong=\"G3343\"* for|strong=\"G1519\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"*, took|strong=\"G2532\"* leave|strong=\"G1831\"* of|strong=\"G2532\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* departed|strong=\"G1831\"* to|strong=\"G1519\"* go|strong=\"G4198\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1330\"* through|strong=\"G1330\"* those|strong=\"G3588\"* parts|strong=\"G3313\"* and|strong=\"G2532\"* had|strong=\"G2532\"* encouraged|strong=\"G3870\"* them|strong=\"G3588\"* with|strong=\"G2532\"* many|strong=\"G4183\"* words|strong=\"G3056\"*, he|strong=\"G2532\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Greece|strong=\"G1671\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1096\"* he|strong=\"G3588\"* had|strong=\"G3588\"* spent|strong=\"G4160\"* three|strong=\"G5140\"* months|strong=\"G3376\"* there|strong=\"G1096\"*, and|strong=\"G5037\"* a|strong=\"G1096\"* plot|strong=\"G1917\"* was|strong=\"G1096\"* made|strong=\"G4160\"* against|strong=\"G1519\"* him|strong=\"G3588\"* by|strong=\"G1223\"* Jews|strong=\"G2453\"* as|strong=\"G1519\"* he|strong=\"G3588\"* was|strong=\"G1096\"* about|strong=\"G3195\"* to|strong=\"G1519\"* set|strong=\"G5037\"* sail for|strong=\"G1519\"* Syria|strong=\"G4947\"*, he|strong=\"G3588\"* determined to|strong=\"G1519\"* return|strong=\"G5290\"* through|strong=\"G1223\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"G1161\"* accompanied|strong=\"G4902\"* him|strong=\"G2532\"* as|strong=\"G1161\"* far as|strong=\"G1161\"* Asia: Sopater|strong=\"G4986\"* of|strong=\"G2532\"* Beroea, Aristarchus and|strong=\"G2532\"* Secundus|strong=\"G4580\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Thessalonians|strong=\"G2331\"*, Gaius|strong=\"G1050\"* of|strong=\"G2532\"* Derbe|strong=\"G1190\"*, Timothy|strong=\"G5095\"*, and|strong=\"G2532\"* Tychicus|strong=\"G5190\"* and|strong=\"G2532\"* Trophimus|strong=\"G5161\"* of|strong=\"G2532\"* Asia." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"* had|strong=\"G3778\"* gone|strong=\"G4281\"* ahead|strong=\"G4281\"*, and|strong=\"G1161\"* were|strong=\"G3778\"* waiting|strong=\"G3306\"* for|strong=\"G1161\"* us|strong=\"G2249\"* at|strong=\"G1722\"* Troas|strong=\"G5174\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G2249\"* sailed|strong=\"G1602\"* away|strong=\"G1602\"* from|strong=\"G2064\"* Philippi|strong=\"G5375\"* after|strong=\"G3326\"* the|strong=\"G2532\"* days|strong=\"G2250\"* of|strong=\"G2250\"* Unleavened Bread, and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* them|strong=\"G3588\"* at|strong=\"G1519\"* Troas|strong=\"G5174\"* in|strong=\"G1519\"* five|strong=\"G4002\"* days|strong=\"G2250\"*, where|strong=\"G3699\"* we|strong=\"G2249\"* stayed|strong=\"G1304\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "On|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G1520\"* day|strong=\"G1887\"* of|strong=\"G3056\"* the|strong=\"G1722\"* week|strong=\"G4521\"*, when|strong=\"G1161\"* the|strong=\"G1722\"* disciples|strong=\"G3588\"* were|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G3195\"* break|strong=\"G2806\"* bread, Paul|strong=\"G3972\"* talked with|strong=\"G1722\"* them|strong=\"G3588\"*, intending|strong=\"G3195\"* to|strong=\"G3195\"* depart|strong=\"G1826\"* on|strong=\"G1722\"* the|strong=\"G1722\"* next|strong=\"G1887\"* day|strong=\"G1887\"*; and|strong=\"G1161\"* continued|strong=\"G3905\"* his|strong=\"G1722\"* speech|strong=\"G3056\"* until|strong=\"G3360\"* midnight|strong=\"G3317\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* many|strong=\"G2425\"* lights|strong=\"G2985\"* in|strong=\"G1722\"* the|strong=\"G1722\"* upper|strong=\"G5253\"* room|strong=\"G5253\"* where|strong=\"G3757\"* we|strong=\"G1161\"*+ 20:8 TR reads “they” instead of “we”* were|strong=\"G1510\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G2532\"* certain|strong=\"G5100\"* young|strong=\"G3494\"* man|strong=\"G5100\"* named|strong=\"G3686\"* Eutychus|strong=\"G2161\"* sat|strong=\"G2516\"* in|strong=\"G1909\"* the|strong=\"G2532\"* window|strong=\"G2376\"*, weighed down|strong=\"G4098\"* with|strong=\"G2532\"* deep|strong=\"G4183\"* sleep|strong=\"G5258\"*. As|strong=\"G1161\"* Paul|strong=\"G3972\"* spoke still longer|strong=\"G1909\"*, being|strong=\"G2532\"* weighed down|strong=\"G4098\"* by|strong=\"G1909\"* his|strong=\"G1909\"* sleep|strong=\"G5258\"*, he|strong=\"G2532\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* from|strong=\"G2532\"* the|strong=\"G2532\"* third|strong=\"G5152\"* floor|strong=\"G5152\"* and|strong=\"G2532\"* was|strong=\"G3588\"* taken up|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 10, + "text": "Paul|strong=\"G3972\"* went|strong=\"G2597\"* down|strong=\"G2597\"* and|strong=\"G2532\"* fell|strong=\"G1968\"* upon|strong=\"G1968\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* embracing|strong=\"G4843\"* him|strong=\"G3588\"* said|strong=\"G3004\"*, “Don’t|strong=\"G3588\"* be|strong=\"G1510\"* troubled|strong=\"G2350\"*, for|strong=\"G1063\"* his|strong=\"G1722\"* life|strong=\"G5590\"* is|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* gone|strong=\"G1831\"* up|strong=\"G2532\"*, had|strong=\"G2532\"* broken|strong=\"G2806\"* bread and|strong=\"G2532\"* eaten|strong=\"G1089\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G2532\"* them|strong=\"G3588\"* a|strong=\"G2532\"* long|strong=\"G2425\"* while|strong=\"G1161\"*, even|strong=\"G2532\"* until|strong=\"G2532\"* break|strong=\"G2806\"* of|strong=\"G2532\"* day|strong=\"G3588\"*, he|strong=\"G2532\"* departed|strong=\"G1831\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"G2532\"* brought|strong=\"G1161\"* the|strong=\"G2532\"* boy|strong=\"G3816\"* in|strong=\"G2532\"* alive|strong=\"G2198\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* greatly|strong=\"G3756\"* comforted|strong=\"G3870\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"*, going|strong=\"G3195\"* ahead|strong=\"G4281\"* to|strong=\"G1909\"* the|strong=\"G1161\"* ship|strong=\"G4143\"*, set sail for|strong=\"G1063\"* Assos, intending|strong=\"G3195\"* to|strong=\"G1909\"* take|strong=\"G1161\"* Paul|strong=\"G3972\"* aboard there|strong=\"G1161\"*; for|strong=\"G1063\"* he|strong=\"G1161\"* had|strong=\"G3972\"* so|strong=\"G3779\"* arranged|strong=\"G1299\"*, intending|strong=\"G3195\"* himself to|strong=\"G1909\"* go|strong=\"G4281\"* by|strong=\"G1909\"* land|strong=\"G3978\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* met|strong=\"G4820\"* us|strong=\"G1519\"* at|strong=\"G1519\"* Assos, we|strong=\"G2249\"* took|strong=\"G1161\"* him|strong=\"G3588\"* aboard and|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Mitylene|strong=\"G3412\"*." + }, + { + "verseNum": 15, + "text": "Sailing from|strong=\"G2064\"* there|strong=\"G1161\"*, we|strong=\"G1161\"* came|strong=\"G2064\"* the|strong=\"G1519\"* following|strong=\"G1966\"* day|strong=\"G3588\"* opposite Chios|strong=\"G5508\"*. The|strong=\"G1519\"* next|strong=\"G2087\"* day|strong=\"G3588\"* we|strong=\"G1161\"* touched at|strong=\"G1519\"* Samos|strong=\"G4544\"* and|strong=\"G1161\"* stayed at|strong=\"G1519\"* Trogyllium, and|strong=\"G1161\"* the|strong=\"G1519\"* day|strong=\"G3588\"* after|strong=\"G1161\"* we|strong=\"G1161\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Miletus|strong=\"G3399\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* determined|strong=\"G2919\"* to|strong=\"G1519\"* sail|strong=\"G3896\"* past|strong=\"G1096\"* Ephesus|strong=\"G2181\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* might|strong=\"G1096\"* not|strong=\"G3361\"* have|strong=\"G1510\"* to|strong=\"G1519\"* spend|strong=\"G5551\"* time|strong=\"G2250\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* was|strong=\"G1510\"* hastening|strong=\"G4692\"*, if|strong=\"G1487\"* it|strong=\"G1063\"* were|strong=\"G1510\"* possible|strong=\"G1415\"* for|strong=\"G1063\"* him|strong=\"G3588\"*, to|strong=\"G1519\"* be|strong=\"G1096\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* on|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Pentecost|strong=\"G4005\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"G3588\"* Miletus|strong=\"G3399\"* he|strong=\"G1161\"* sent|strong=\"G3992\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"* and|strong=\"G1161\"* called|strong=\"G3333\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* the|strong=\"G1519\"* elders|strong=\"G4245\"* of|strong=\"G1577\"* the|strong=\"G1519\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3739\"* come|strong=\"G1096\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “You|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1987\"*, from|strong=\"G3588\"* the|strong=\"G1519\"* first|strong=\"G4413\"* day|strong=\"G2250\"* that|strong=\"G3739\"* I|strong=\"G3739\"* set|strong=\"G1910\"* foot|strong=\"G1910\"* in|strong=\"G1519\"* Asia|strong=\"G3588\"*, how|strong=\"G4459\"* I|strong=\"G3739\"* was|strong=\"G1096\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"* the|strong=\"G1519\"* time|strong=\"G5550\"*," + }, + { + "verseNum": 19, + "text": "serving|strong=\"G1398\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* with|strong=\"G3326\"* all|strong=\"G3956\"* humility|strong=\"G5012\"*, with|strong=\"G3326\"* many|strong=\"G1722\"* tears|strong=\"G1144\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* trials|strong=\"G3986\"* which|strong=\"G3588\"* happened|strong=\"G4819\"* to|strong=\"G2532\"* me|strong=\"G1473\"* by|strong=\"G1722\"* the|strong=\"G1722\"* plots|strong=\"G1917\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*;" + }, + { + "verseNum": 20, + "text": "how|strong=\"G5613\"* I|strong=\"G2532\"* didn’t|strong=\"G3588\"* shrink|strong=\"G5288\"* from|strong=\"G2532\"* declaring to|strong=\"G2532\"* you|strong=\"G5210\"* anything|strong=\"G3762\"* that|strong=\"G3588\"* was|strong=\"G3588\"* profitable|strong=\"G4851\"*, teaching|strong=\"G1321\"* you|strong=\"G5210\"* publicly|strong=\"G1219\"* and|strong=\"G2532\"* from|strong=\"G2532\"* house|strong=\"G3624\"* to|strong=\"G2532\"* house|strong=\"G3624\"*," + }, + { + "verseNum": 21, + "text": "testifying|strong=\"G1263\"* both|strong=\"G2532\"* to|strong=\"G1519\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* to|strong=\"G1519\"* Greeks|strong=\"G1672\"* repentance|strong=\"G3341\"* toward|strong=\"G1519\"* God|strong=\"G2316\"* and|strong=\"G2532\"* faith|strong=\"G4102\"* toward|strong=\"G1519\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*.+ 20:21 TR adds “Christ”*" + }, + { + "verseNum": 22, + "text": "Now|strong=\"G3568\"*, behold|strong=\"G2400\"*, I|strong=\"G1473\"* go|strong=\"G4198\"* bound|strong=\"G1210\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, not|strong=\"G3361\"* knowing|strong=\"G1492\"* what|strong=\"G3588\"* will|strong=\"G2532\"* happen|strong=\"G1519\"* to|strong=\"G1519\"* me|strong=\"G1473\"* there|strong=\"G2532\"*;" + }, + { + "verseNum": 23, + "text": "except|strong=\"G4133\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* testifies|strong=\"G1263\"* in|strong=\"G2596\"* every|strong=\"G2596\"* city|strong=\"G4172\"*, saying|strong=\"G3004\"* that|strong=\"G3754\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* afflictions|strong=\"G2347\"* wait|strong=\"G4151\"* for|strong=\"G3754\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G2532\"* these|strong=\"G3739\"* things|strong=\"G3588\"* don’t|strong=\"G3588\"* count; nor|strong=\"G2532\"* do|strong=\"G4160\"* I|strong=\"G1473\"* hold my|strong=\"G1473\"* life|strong=\"G5590\"* dear|strong=\"G5093\"* to|strong=\"G2532\"* myself|strong=\"G1683\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G2532\"* finish|strong=\"G5048\"* my|strong=\"G1473\"* race with|strong=\"G3844\"* joy|strong=\"G5485\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* which|strong=\"G3739\"* I|strong=\"G1473\"* received|strong=\"G2983\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, to|strong=\"G2532\"* fully testify|strong=\"G1263\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"G3568\"*, behold|strong=\"G2400\"*, I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* went|strong=\"G1330\"* about|strong=\"G1722\"* preaching|strong=\"G2784\"* God|strong=\"G2532\"*’s Kingdom, will|strong=\"G2532\"* see|strong=\"G3708\"* my|strong=\"G3708\"* face|strong=\"G4383\"* no|strong=\"G3765\"* more|strong=\"G3765\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G1360\"* I|strong=\"G3754\"* testify|strong=\"G3143\"* to|strong=\"G1722\"* you|strong=\"G5210\"* today|strong=\"G4594\"* that|strong=\"G3754\"* I|strong=\"G3754\"* am|strong=\"G1510\"* clean|strong=\"G2513\"* from|strong=\"G3588\"* the|strong=\"G1722\"* blood of|strong=\"G2250\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 27, + "text": "for|strong=\"G1063\"* I|strong=\"G1063\"* didn’t|strong=\"G3588\"* shrink|strong=\"G5288\"* from|strong=\"G3756\"* declaring to|strong=\"G3756\"* you|strong=\"G5210\"* the|strong=\"G3956\"* whole|strong=\"G3956\"* counsel|strong=\"G1012\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 28, + "text": "Take|strong=\"G2316\"* heed|strong=\"G4337\"*, therefore|strong=\"G1223\"*, to|strong=\"G2532\"* yourselves|strong=\"G1438\"* and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* flock|strong=\"G4168\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* has|strong=\"G2316\"* made|strong=\"G5087\"* you|strong=\"G5210\"* overseers|strong=\"G1985\"*, to|strong=\"G2532\"* shepherd|strong=\"G4165\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"*+ 20:28 TR, NU omit “the Lord and”* God|strong=\"G2316\"* which|strong=\"G3739\"* he|strong=\"G2532\"* purchased|strong=\"G4046\"* with|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G2398\"* blood." + }, + { + "verseNum": 29, + "text": "For|strong=\"G3754\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* after|strong=\"G3326\"* my|strong=\"G1525\"* departure, vicious wolves|strong=\"G3074\"* will|strong=\"G1473\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* among|strong=\"G1519\"* you|strong=\"G5210\"*, not|strong=\"G3361\"* sparing|strong=\"G5339\"* the|strong=\"G1519\"* flock|strong=\"G4168\"*." + }, + { + "verseNum": 30, + "text": "Men|strong=\"G3588\"* will|strong=\"G2532\"* arise from|strong=\"G1537\"* among|strong=\"G1537\"* your|strong=\"G2532\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, speaking|strong=\"G2980\"* perverse|strong=\"G1294\"* things|strong=\"G3588\"*, to|strong=\"G2532\"* draw away|strong=\"G1294\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* after|strong=\"G3694\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"G1352\"* watch|strong=\"G1127\"*, remembering|strong=\"G3421\"* that|strong=\"G3754\"* for|strong=\"G3754\"* a|strong=\"G2532\"* period|strong=\"G5148\"* of|strong=\"G2250\"* three|strong=\"G5148\"* years|strong=\"G2250\"* I|strong=\"G2532\"* didn’t cease|strong=\"G3973\"* to|strong=\"G2532\"* admonish|strong=\"G3560\"* everyone|strong=\"G1538\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"* with|strong=\"G3326\"* tears|strong=\"G1144\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"G3568\"*, brothers,+ 20:32 The word for “brothers” here and where the context allows may also be correctly translated “brothers and sisters” or “siblings.” * I|strong=\"G2532\"* entrust|strong=\"G3908\"* you|strong=\"G5210\"* to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* his|strong=\"G3956\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* build|strong=\"G3618\"* up|strong=\"G3618\"* and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1325\"* you|strong=\"G5210\"* the|strong=\"G1722\"* inheritance|strong=\"G2817\"* among|strong=\"G1722\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* sanctified|strong=\"G3956\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G2228\"* coveted|strong=\"G1937\"* no|strong=\"G3762\"* one|strong=\"G3762\"*’s silver, gold|strong=\"G5553\"*, or|strong=\"G2228\"* clothing|strong=\"G2441\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"G3754\"* yourselves know|strong=\"G1097\"* that|strong=\"G3754\"* these|strong=\"G3778\"* hands|strong=\"G5495\"* served|strong=\"G5256\"* my|strong=\"G1473\"* necessities|strong=\"G5532\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G3326\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 35, + "text": "In|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"* I|strong=\"G3754\"* gave|strong=\"G1325\"* you|strong=\"G5210\"* an|strong=\"G2228\"* example, that|strong=\"G3754\"* so|strong=\"G3779\"* laboring you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G3004\"* help the|strong=\"G3956\"* weak, and|strong=\"G5037\"* to|strong=\"G3004\"* remember|strong=\"G3421\"* the|strong=\"G3956\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* himself said|strong=\"G3004\"*, ‘\\+w It|strong=\"G3754\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w more|strong=\"G3123\"\\+w* \\+w blessed|strong=\"G3107\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w than|strong=\"G2228\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w receive|strong=\"G2983\"\\+w*.’* ”" + }, + { + "verseNum": 36, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* spoken|strong=\"G3004\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, he|strong=\"G2532\"* knelt|strong=\"G1119\"* down|strong=\"G5087\"* and|strong=\"G2532\"* prayed|strong=\"G4336\"* with|strong=\"G4862\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G2532\"* all|strong=\"G3956\"* wept|strong=\"G1096\"* freely|strong=\"G2532\"*, and|strong=\"G2532\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* Paul|strong=\"G3972\"*’s neck|strong=\"G5137\"* and|strong=\"G2532\"* kissed|strong=\"G2705\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 38, + "text": "sorrowing|strong=\"G3600\"* most of|strong=\"G3056\"* all|strong=\"G1161\"* because|strong=\"G3754\"* of|strong=\"G3056\"* the|strong=\"G1519\"* word|strong=\"G3056\"* which|strong=\"G3739\"* he|strong=\"G1161\"* had|strong=\"G3739\"* spoken|strong=\"G3004\"*, that|strong=\"G3754\"* they|strong=\"G1161\"* should|strong=\"G3195\"* see|strong=\"G2334\"* his|strong=\"G1519\"* face|strong=\"G4383\"* no|strong=\"G3765\"* more|strong=\"G3765\"*. Then|strong=\"G1161\"* they|strong=\"G1161\"* accompanied|strong=\"G4311\"* him|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* ship|strong=\"G4143\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G3588\"* departed from|strong=\"G2064\"* them|strong=\"G3588\"* and|strong=\"G1161\"* had|strong=\"G3588\"* set|strong=\"G2064\"* sail, we|strong=\"G2249\"* came|strong=\"G2064\"* with|strong=\"G1519\"* a|strong=\"G1096\"* straight|strong=\"G2113\"* course|strong=\"G2113\"* to|strong=\"G1519\"* Cos|strong=\"G2972\"*, and|strong=\"G1161\"* the|strong=\"G1519\"* next|strong=\"G1836\"* day|strong=\"G1836\"* to|strong=\"G1519\"* Rhodes|strong=\"G4499\"*, and|strong=\"G1161\"* from|strong=\"G2064\"* there|strong=\"G1161\"* to|strong=\"G1519\"* Patara|strong=\"G3959\"*." + }, + { + "verseNum": 2, + "text": "Having|strong=\"G2532\"* found|strong=\"G2147\"* a|strong=\"G2532\"* ship|strong=\"G4143\"* crossing|strong=\"G1276\"* over|strong=\"G1276\"* to|strong=\"G1519\"* Phoenicia|strong=\"G5403\"*, we|strong=\"G2532\"* went|strong=\"G2532\"* aboard|strong=\"G1910\"* and|strong=\"G2532\"* set|strong=\"G1910\"* sail." + }, + { + "verseNum": 3, + "text": "When|strong=\"G1161\"* we|strong=\"G1063\"* had|strong=\"G2532\"* come|strong=\"G1510\"* in|strong=\"G1519\"* sight|strong=\"G3588\"* of|strong=\"G2532\"* Cyprus|strong=\"G2954\"*, leaving|strong=\"G2641\"* it|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* left|strong=\"G2641\"* hand|strong=\"G1161\"*, we|strong=\"G1063\"* sailed|strong=\"G4126\"* to|strong=\"G1519\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* landed|strong=\"G2718\"* at|strong=\"G1519\"* Tyre|strong=\"G5184\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* was|strong=\"G1510\"* there|strong=\"G2532\"* to|strong=\"G1519\"* unload her|strong=\"G1438\"* cargo|strong=\"G1117\"*." + }, + { + "verseNum": 4, + "text": "Having|strong=\"G3361\"* found disciples|strong=\"G3101\"*, we|strong=\"G1161\"* stayed|strong=\"G1961\"* there|strong=\"G1161\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*. These|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G1519\"* Paul|strong=\"G3972\"* through|strong=\"G1223\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* that|strong=\"G3588\"* he|strong=\"G1161\"* should|strong=\"G3588\"* not|strong=\"G3361\"* go|strong=\"G4151\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G3753\"* those|strong=\"G3588\"* days|strong=\"G2250\"* were|strong=\"G3588\"* over|strong=\"G1909\"*, we|strong=\"G2249\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* went|strong=\"G1831\"* on|strong=\"G1909\"* our|strong=\"G2532\"* journey|strong=\"G4311\"*. They|strong=\"G2532\"* all|strong=\"G3956\"*, with|strong=\"G4862\"* wives|strong=\"G1135\"* and|strong=\"G2532\"* children|strong=\"G5043\"*, brought|strong=\"G1096\"* us|strong=\"G2249\"* on|strong=\"G1909\"* our|strong=\"G2532\"* way|strong=\"G4198\"* until|strong=\"G2193\"* we|strong=\"G2249\"* were|strong=\"G3588\"* out|strong=\"G1831\"* of|strong=\"G2250\"* the|strong=\"G2532\"* city|strong=\"G4172\"*. Kneeling|strong=\"G1119\"* down|strong=\"G5087\"* on|strong=\"G1909\"* the|strong=\"G2532\"* beach, we|strong=\"G2249\"* prayed|strong=\"G4336\"*." + }, + { + "verseNum": 6, + "text": "After|strong=\"G1161\"* saying goodbye to|strong=\"G1519\"* each|strong=\"G1519\"* other|strong=\"G1161\"*, we|strong=\"G2532\"* went|strong=\"G2532\"* on|strong=\"G1519\"* board|strong=\"G1684\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* returned|strong=\"G5290\"* home|strong=\"G1519\"* again|strong=\"G5290\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G2532\"* finished|strong=\"G1274\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* from|strong=\"G3844\"* Tyre|strong=\"G5184\"*, we|strong=\"G2249\"* arrived|strong=\"G2658\"* at|strong=\"G1519\"* Ptolemais|strong=\"G4424\"*. We|strong=\"G2249\"* greeted the|strong=\"G2532\"* brothers and|strong=\"G2532\"* stayed|strong=\"G3306\"* with|strong=\"G3844\"* them|strong=\"G3588\"* one|strong=\"G1520\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, we|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G1510\"* Paul|strong=\"G1510\"*’s companions|strong=\"G3588\"* departed|strong=\"G1831\"* and|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* this|strong=\"G3778\"* man|strong=\"G3778\"* had|strong=\"G1510\"* four|strong=\"G5064\"* virgin|strong=\"G3933\"* daughters|strong=\"G2364\"* who|strong=\"G3778\"* prophesied|strong=\"G4395\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1161\"* we|strong=\"G1161\"* stayed|strong=\"G1961\"* there|strong=\"G1161\"* some|strong=\"G5100\"* days|strong=\"G2250\"*, a|strong=\"G1161\"* certain|strong=\"G5100\"* prophet|strong=\"G4396\"* named|strong=\"G3686\"* Agabus came|strong=\"G2718\"* down|strong=\"G2718\"* from|strong=\"G2718\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 11, + "text": "Coming|strong=\"G2064\"* to|strong=\"G1519\"* us|strong=\"G3004\"* and|strong=\"G2532\"* taking Paul|strong=\"G3972\"*’s belt|strong=\"G2223\"*, he|strong=\"G2532\"* bound|strong=\"G1210\"* his|strong=\"G1438\"* own|strong=\"G1438\"* feet|strong=\"G4228\"* and|strong=\"G2532\"* hands|strong=\"G5495\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “The|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*: ‘So|strong=\"G3779\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* will|strong=\"G1510\"* bind|strong=\"G1210\"* the|strong=\"G1722\"* man|strong=\"G3778\"* who|strong=\"G3739\"* owns|strong=\"G1510\"* this|strong=\"G3778\"* belt|strong=\"G2223\"*, and|strong=\"G2532\"* will|strong=\"G1510\"* deliver|strong=\"G3860\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*.’”" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* heard these|strong=\"G3778\"* things|strong=\"G3778\"*, both|strong=\"G2532\"* we|strong=\"G2249\"* and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G3361\"* of|strong=\"G2532\"* that|strong=\"G3588\"* place|strong=\"G1473\"* begged|strong=\"G3870\"* him|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G1519\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"G2532\"* Paul|strong=\"G3972\"* answered|strong=\"G3004\"*, “What|strong=\"G5101\"* are|strong=\"G3588\"* you|strong=\"G3004\"* doing|strong=\"G4160\"*, weeping|strong=\"G2799\"* and|strong=\"G2532\"* breaking|strong=\"G4919\"* my|strong=\"G1473\"* heart|strong=\"G2588\"*? For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1473\"* ready|strong=\"G2093\"* not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G1519\"* be|strong=\"G2532\"* bound|strong=\"G1210\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G1519\"* die at|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* for|strong=\"G1063\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* would|strong=\"G1096\"* not|strong=\"G3361\"* be|strong=\"G1096\"* persuaded|strong=\"G3982\"*, we|strong=\"G1161\"* ceased|strong=\"G2270\"*, saying|strong=\"G3004\"*, “The|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* will|strong=\"G2307\"* be|strong=\"G1096\"* done|strong=\"G1096\"*.”" + }, + { + "verseNum": 15, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* days|strong=\"G2250\"* we|strong=\"G1161\"* took|strong=\"G1161\"* up|strong=\"G1519\"* our|strong=\"G3326\"* baggage and|strong=\"G1161\"* went|strong=\"G3588\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*." + }, + { + "verseNum": 16, + "text": "Some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G2532\"* disciples|strong=\"G3101\"* from|strong=\"G3844\"* Caesarea|strong=\"G2542\"* also|strong=\"G2532\"* went|strong=\"G2532\"* with|strong=\"G4862\"* us|strong=\"G3579\"*, bringing one|strong=\"G5100\"* Mnason|strong=\"G3416\"* of|strong=\"G2532\"* Cyprus|strong=\"G2953\"*, an|strong=\"G2532\"* early disciple|strong=\"G3101\"*, with|strong=\"G4862\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* would|strong=\"G2532\"* stay." + }, + { + "verseNum": 17, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G3588\"* come|strong=\"G1096\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, the|strong=\"G1519\"* brothers received us|strong=\"G1519\"* gladly." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3956\"* day|strong=\"G3588\"* following|strong=\"G1966\"*, Paul|strong=\"G3972\"* went|strong=\"G1524\"* in|strong=\"G3956\"* with|strong=\"G4862\"* us|strong=\"G2249\"* to|strong=\"G4314\"* James|strong=\"G2385\"*; and|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G3956\"* elders|strong=\"G4245\"* were|strong=\"G3588\"* present|strong=\"G3854\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* greeted them|strong=\"G3588\"*, he|strong=\"G2532\"* reported one|strong=\"G1520\"* by|strong=\"G1223\"* one|strong=\"G1520\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* God|strong=\"G2316\"* had|strong=\"G2532\"* worked|strong=\"G4160\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* through|strong=\"G1223\"* his|strong=\"G1438\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* heard it|strong=\"G2532\"*, glorified|strong=\"G1392\"* God|strong=\"G2316\"*. They|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, “You|strong=\"G1722\"* see|strong=\"G2334\"*, brother, how|strong=\"G4214\"* many|strong=\"G4214\"* thousands|strong=\"G3461\"* there|strong=\"G2532\"* are|strong=\"G1510\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* all|strong=\"G3956\"* zealous|strong=\"G2207\"* for|strong=\"G1161\"* the|strong=\"G1722\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G1161\"* have|strong=\"G3748\"* been|strong=\"G3361\"* informed|strong=\"G2727\"* about|strong=\"G4012\"* you|strong=\"G4771\"*, that|strong=\"G3754\"* you|strong=\"G4771\"* teach|strong=\"G1321\"* all|strong=\"G3956\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* are|strong=\"G3588\"* among|strong=\"G2596\"* the|strong=\"G3956\"* Gentiles|strong=\"G1484\"* to|strong=\"G2596\"* forsake Moses|strong=\"G3475\"*, telling|strong=\"G3004\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G2596\"* circumcise|strong=\"G4059\"* their|strong=\"G1438\"* children|strong=\"G5043\"* and|strong=\"G1161\"* not|strong=\"G3361\"* to|strong=\"G2596\"* walk|strong=\"G4043\"* after|strong=\"G2596\"* the|strong=\"G3956\"* customs|strong=\"G1485\"*." + }, + { + "verseNum": 22, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? The|strong=\"G3754\"* assembly|strong=\"G4128\"* must|strong=\"G1163\"* certainly|strong=\"G1063\"* meet|strong=\"G4905\"*, for|strong=\"G1063\"* they|strong=\"G3754\"* will|strong=\"G5101\"* hear|strong=\"G5101\"* that|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G3748\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G3767\"* do|strong=\"G4160\"* what|strong=\"G3739\"* we|strong=\"G2249\"* tell|strong=\"G3004\"* you|strong=\"G4771\"*. We|strong=\"G2249\"* have|strong=\"G2192\"* four|strong=\"G5064\"* men|strong=\"G3778\"* who|strong=\"G3739\"* have|strong=\"G2192\"* taken a|strong=\"G2192\"* vow|strong=\"G2171\"*." + }, + { + "verseNum": 24, + "text": "Take|strong=\"G3880\"* them|strong=\"G3588\"* and|strong=\"G2532\"* purify yourself|strong=\"G4771\"* with|strong=\"G4862\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* pay|strong=\"G1159\"* their|strong=\"G2532\"* expenses|strong=\"G1159\"* for|strong=\"G3754\"* them|strong=\"G3588\"*, that|strong=\"G3754\"* they|strong=\"G2532\"* may|strong=\"G2532\"* shave|strong=\"G3587\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*. Then|strong=\"G2532\"* all|strong=\"G3956\"* will|strong=\"G1510\"* know|strong=\"G1097\"* that|strong=\"G3754\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3762\"* truth in|strong=\"G1909\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3754\"* they|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G1510\"* informed|strong=\"G2727\"* about|strong=\"G4012\"* you|strong=\"G4771\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G4771\"* yourself|strong=\"G4771\"* also|strong=\"G2532\"* walk|strong=\"G4748\"* keeping|strong=\"G5442\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, we|strong=\"G2249\"* have|strong=\"G2532\"* written|strong=\"G1989\"* our|strong=\"G2532\"* decision that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* observe|strong=\"G5442\"* no|strong=\"G2532\"* such|strong=\"G1161\"* thing|strong=\"G1494\"*, except that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G3588\"* keep|strong=\"G5442\"* themselves|strong=\"G1438\"* from|strong=\"G2532\"* food offered to|strong=\"G2532\"* idols|strong=\"G1494\"*, from|strong=\"G2532\"* blood, from|strong=\"G2532\"* strangled|strong=\"G4156\"* things|strong=\"G3588\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"G5119\"* Paul|strong=\"G3972\"* took|strong=\"G3880\"* the|strong=\"G1519\"* men|strong=\"G3588\"*, and|strong=\"G3972\"* the|strong=\"G1519\"* next|strong=\"G2192\"* day|strong=\"G2250\"* purified himself|strong=\"G4862\"* and|strong=\"G3972\"* went|strong=\"G1524\"* with|strong=\"G4862\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G2411\"*, declaring the|strong=\"G1519\"* fulfillment of|strong=\"G2250\"* the|strong=\"G1519\"* days|strong=\"G2250\"* of|strong=\"G2250\"* purification, until|strong=\"G2193\"* the|strong=\"G1519\"* offering|strong=\"G4376\"* was|strong=\"G3588\"* offered|strong=\"G4374\"* for|strong=\"G1519\"* every|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"G1161\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* days|strong=\"G2250\"* were|strong=\"G3588\"* almost|strong=\"G3195\"* completed, the|strong=\"G1722\"* Jews|strong=\"G2453\"* from|strong=\"G2532\"* Asia|strong=\"G3588\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G2300\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, stirred|strong=\"G2453\"* up|strong=\"G4797\"* all|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G3793\"* and|strong=\"G2532\"* laid|strong=\"G1911\"* hands|strong=\"G5495\"* on|strong=\"G1909\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "crying|strong=\"G2896\"* out|strong=\"G2896\"*, “Men|strong=\"G3956\"* of|strong=\"G2532\"* Israel|strong=\"G2475\"*, help! This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* man|strong=\"G3778\"* who|strong=\"G3588\"* teaches|strong=\"G1321\"* all|strong=\"G3956\"* men|strong=\"G3956\"* everywhere|strong=\"G3837\"* against|strong=\"G2596\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* this|strong=\"G3778\"* place|strong=\"G5117\"*. Moreover|strong=\"G2532\"*, he|strong=\"G2532\"* also|strong=\"G2532\"* brought|strong=\"G1521\"* Greeks|strong=\"G1672\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G2411\"* and|strong=\"G2532\"* has|strong=\"G3778\"* defiled|strong=\"G2840\"* this|strong=\"G3778\"* holy place|strong=\"G5117\"*!”" + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* had|strong=\"G3972\"* seen|strong=\"G4308\"* Trophimus|strong=\"G5161\"* the|strong=\"G1722\"* Ephesian|strong=\"G2180\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, and|strong=\"G3972\"* they|strong=\"G3588\"* supposed|strong=\"G3543\"* that|strong=\"G3754\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* brought|strong=\"G1521\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* temple|strong=\"G2411\"*." + }, + { + "verseNum": 30, + "text": "All|strong=\"G3650\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1096\"* moved|strong=\"G2795\"* and|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* ran|strong=\"G2992\"* together|strong=\"G4890\"*. They|strong=\"G2532\"* seized|strong=\"G1949\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* dragged|strong=\"G1670\"* him|strong=\"G3588\"* out|strong=\"G1854\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G2413\"*. Immediately|strong=\"G2112\"* the|strong=\"G2532\"* doors|strong=\"G2374\"* were|strong=\"G3588\"* shut|strong=\"G2808\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"G3754\"* they|strong=\"G3588\"* were|strong=\"G3588\"* trying|strong=\"G2212\"* to|strong=\"G2212\"* kill him|strong=\"G3588\"*, news came|strong=\"G3588\"* up|strong=\"G4797\"* to|strong=\"G2212\"* the|strong=\"G3588\"* commanding officer of|strong=\"G3588\"* the|strong=\"G3588\"* regiment that|strong=\"G3754\"* all|strong=\"G3650\"* Jerusalem|strong=\"G2419\"* was|strong=\"G3588\"* in|strong=\"G3588\"* an|strong=\"G3754\"* uproar|strong=\"G4797\"*." + }, + { + "verseNum": 32, + "text": "Immediately|strong=\"G1824\"* he|strong=\"G2532\"* took|strong=\"G3880\"* soldiers|strong=\"G4757\"* and|strong=\"G2532\"* centurions|strong=\"G1543\"* and|strong=\"G2532\"* ran|strong=\"G1161\"* down|strong=\"G2701\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"*, when|strong=\"G1161\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* captain|strong=\"G5506\"* and|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"*, stopped|strong=\"G3973\"* beating|strong=\"G5180\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* commanding|strong=\"G2753\"* officer came|strong=\"G2532\"* near|strong=\"G1448\"*, arrested him|strong=\"G3588\"*, commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G1510\"* bound|strong=\"G1210\"* with|strong=\"G2532\"* two|strong=\"G1417\"* chains|strong=\"G1210\"*, and|strong=\"G2532\"* inquired|strong=\"G4441\"* who|strong=\"G5101\"* he|strong=\"G2532\"* was|strong=\"G1510\"* and|strong=\"G2532\"* what|strong=\"G5101\"* he|strong=\"G2532\"* had|strong=\"G2532\"* done|strong=\"G4160\"*." + }, + { + "verseNum": 34, + "text": "Some|strong=\"G5100\"* shouted|strong=\"G2019\"* one|strong=\"G5100\"* thing|strong=\"G5100\"* and|strong=\"G1161\"* some|strong=\"G5100\"* another|strong=\"G5100\"*, among|strong=\"G1722\"* the|strong=\"G1722\"* crowd|strong=\"G3793\"*. When|strong=\"G1161\"* he|strong=\"G1161\"* couldn’t|strong=\"G3588\"* find|strong=\"G1097\"* out|strong=\"G3793\"* the|strong=\"G1722\"* truth because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* noise, he|strong=\"G1161\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G3361\"* brought|strong=\"G1161\"* into|strong=\"G1519\"* the|strong=\"G1722\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"G3753\"* he|strong=\"G1161\"* came|strong=\"G1096\"* to|strong=\"G1909\"* the|strong=\"G1161\"* stairs, he|strong=\"G1161\"* was|strong=\"G1096\"* carried|strong=\"G1096\"* by|strong=\"G1223\"* the|strong=\"G1161\"* soldiers|strong=\"G4757\"* because|strong=\"G1223\"* of|strong=\"G5259\"* the|strong=\"G1161\"* violence of|strong=\"G5259\"* the|strong=\"G1161\"* crowd|strong=\"G3793\"*;" + }, + { + "verseNum": 36, + "text": "for|strong=\"G1063\"* the|strong=\"G3588\"* multitude|strong=\"G4128\"* of|strong=\"G4128\"* the|strong=\"G3588\"* people|strong=\"G2992\"* followed|strong=\"G2992\"* after|strong=\"G1063\"*, crying|strong=\"G2896\"* out|strong=\"G2896\"*, “Away with|strong=\"G2896\"* him|strong=\"G3588\"*!”" + }, + { + "verseNum": 37, + "text": "As|strong=\"G1519\"* Paul|strong=\"G3972\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* be|strong=\"G3195\"* brought|strong=\"G1521\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*, he|strong=\"G1161\"* asked|strong=\"G3004\"* the|strong=\"G1519\"* commanding officer, “May|strong=\"G1832\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* to|strong=\"G1519\"* you|strong=\"G4771\"*?”" + }, + { + "verseNum": 38, + "text": "Aren’t|strong=\"G3588\"* you|strong=\"G4771\"* then|strong=\"G2532\"* the|strong=\"G2532\"* Egyptian who|strong=\"G3588\"* before|strong=\"G4253\"* these|strong=\"G3778\"* days|strong=\"G2250\"* stirred|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* sedition and|strong=\"G2532\"* led|strong=\"G1806\"* out|strong=\"G1806\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"* the|strong=\"G2532\"* four|strong=\"G5070\"* thousand|strong=\"G5070\"* men|strong=\"G3778\"* of|strong=\"G2250\"* the|strong=\"G2532\"* Assassins|strong=\"G4607\"*?”" + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G1510\"* Jew|strong=\"G2453\"* from|strong=\"G3756\"* Tarsus|strong=\"G5018\"* in|strong=\"G2980\"* Cilicia|strong=\"G2791\"*, a|strong=\"G1510\"* citizen|strong=\"G4177\"* of|strong=\"G4172\"* no|strong=\"G3756\"* insignificant city|strong=\"G4172\"*. I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"*, allow|strong=\"G2010\"* me|strong=\"G1473\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* the|strong=\"G1161\"* people|strong=\"G2992\"*.”" + }, + { + "verseNum": 40, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3972\"* given|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"*, Paul|strong=\"G3972\"*, standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1161\"* stairs, beckoned|strong=\"G2678\"* with|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* to|strong=\"G1909\"* the|strong=\"G1161\"* people|strong=\"G2992\"*. When|strong=\"G1161\"* there|strong=\"G1161\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G4183\"* silence|strong=\"G4602\"*, he|strong=\"G1161\"* spoke|strong=\"G3004\"* to|strong=\"G1909\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G1161\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, saying|strong=\"G3004\"*," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“Brothers and|strong=\"G2532\"* fathers|strong=\"G3962\"*, listen to|strong=\"G4314\"* the|strong=\"G2532\"* defense which|strong=\"G3588\"* I|strong=\"G1473\"* now|strong=\"G2532\"* make|strong=\"G2532\"* to|strong=\"G4314\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* spoke|strong=\"G4377\"* to|strong=\"G2532\"* them|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, they|strong=\"G2532\"* were|strong=\"G3588\"* even|strong=\"G2532\"* more|strong=\"G3123\"* quiet|strong=\"G2271\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"G1473\"* am|strong=\"G1510\"* indeed|strong=\"G1161\"* a|strong=\"G1722\"* Jew|strong=\"G2453\"*, born|strong=\"G1080\"* in|strong=\"G1722\"* Tarsus|strong=\"G5019\"* of|strong=\"G2316\"* Cilicia|strong=\"G2791\"*, but|strong=\"G1161\"* brought|strong=\"G1161\"* up|strong=\"G1722\"* in|strong=\"G1722\"* this|strong=\"G3778\"* city|strong=\"G4172\"* at|strong=\"G1722\"* the|strong=\"G1722\"* feet|strong=\"G4228\"* of|strong=\"G2316\"* Gamaliel|strong=\"G1059\"*, instructed according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* strict tradition of|strong=\"G2316\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3971\"*, being|strong=\"G1510\"* zealous|strong=\"G2207\"* for|strong=\"G1161\"* God|strong=\"G2316\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* you|strong=\"G5210\"* all|strong=\"G3956\"* are|strong=\"G1510\"* today|strong=\"G4594\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3739\"* persecuted|strong=\"G1377\"* this|strong=\"G3778\"* Way|strong=\"G3598\"* to|strong=\"G1519\"* the|strong=\"G2532\"* death|strong=\"G2288\"*, binding|strong=\"G1195\"* and|strong=\"G2532\"* delivering|strong=\"G3860\"* into|strong=\"G1519\"* prisons|strong=\"G5438\"* both|strong=\"G2532\"* men|strong=\"G3778\"* and|strong=\"G2532\"* women|strong=\"G1135\"*," + }, + { + "verseNum": 5, + "text": "as|strong=\"G5613\"* also|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G3956\"* priest and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* council|strong=\"G4244\"* of|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4244\"* testify|strong=\"G3140\"*, from|strong=\"G3844\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G1473\"* received|strong=\"G1209\"* letters|strong=\"G1992\"* to|strong=\"G1519\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* traveled to|strong=\"G1519\"* Damascus|strong=\"G1154\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* who|strong=\"G3739\"* were|strong=\"G1510\"* there|strong=\"G2532\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* in|strong=\"G1519\"* bonds|strong=\"G1210\"* to|strong=\"G1519\"* be|strong=\"G1510\"* punished|strong=\"G5097\"*." + }, + { + "verseNum": 6, + "text": "“As|strong=\"G1161\"* I|strong=\"G1473\"* made|strong=\"G1096\"* my|strong=\"G1473\"* journey|strong=\"G4198\"* and|strong=\"G2532\"* came|strong=\"G1096\"* close|strong=\"G1448\"* to|strong=\"G2532\"* Damascus|strong=\"G1154\"*, about|strong=\"G4012\"* noon|strong=\"G3314\"* suddenly|strong=\"G1810\"* a|strong=\"G1096\"* great|strong=\"G2532\"* light|strong=\"G5457\"* shone|strong=\"G4015\"* around|strong=\"G4012\"* me|strong=\"G1473\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G1473\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* ground|strong=\"G1475\"* and|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G3004\"\\+w* \\+w persecuting|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*?’*" + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* answered|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?’ He|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* me|strong=\"G1473\"*, ‘\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w Jesus|strong=\"G2424\"\\+w* \\+w of|strong=\"G2962\"\\+w* \\+w Nazareth|strong=\"G3480\"\\+w*, \\+w whom|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w persecute|strong=\"G1377\"\\+w*.’*" + }, + { + "verseNum": 9, + "text": "“Those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"* indeed|strong=\"G3303\"* saw|strong=\"G2300\"* the|strong=\"G1161\"* light|strong=\"G5457\"* and|strong=\"G1161\"* were|strong=\"G1510\"* afraid, but|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* understand the|strong=\"G1161\"* voice|strong=\"G5456\"* of|strong=\"G5456\"* him|strong=\"G3588\"* who|strong=\"G3588\"* spoke|strong=\"G2980\"* to|strong=\"G3756\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘What|strong=\"G5101\"* shall|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, Lord|strong=\"G2962\"*?’ The|strong=\"G1519\"* Lord|strong=\"G2962\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘Arise, \\+w and|strong=\"G1161\"\\+w* \\+w go|strong=\"G4198\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w Damascus|strong=\"G1154\"\\+w*. \\+w There|strong=\"G1161\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w be|strong=\"G3956\"\\+w* \\+w told|strong=\"G3004\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w appointed|strong=\"G4160\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w do|strong=\"G4160\"\\+w*.’*" + }, + { + "verseNum": 11, + "text": "When|strong=\"G1161\"* I|strong=\"G1473\"* couldn’t|strong=\"G3588\"* see|strong=\"G1689\"* for|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G5259\"* that|strong=\"G3588\"* light|strong=\"G5457\"*, being|strong=\"G1161\"* led|strong=\"G5496\"* by|strong=\"G5259\"* the|strong=\"G1519\"* hand|strong=\"G1161\"* of|strong=\"G5259\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* with|strong=\"G5259\"* me|strong=\"G1473\"*, I|strong=\"G1473\"* came|strong=\"G2064\"* into|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 12, + "text": "“One|strong=\"G5100\"* Ananias, a|strong=\"G1161\"* devout|strong=\"G2126\"* man|strong=\"G5100\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, well|strong=\"G3140\"* reported|strong=\"G3140\"* of|strong=\"G5259\"* by|strong=\"G5259\"* all|strong=\"G3956\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"* who|strong=\"G3588\"* lived|strong=\"G2730\"* in|strong=\"G2596\"* Damascus," + }, + { + "verseNum": 13, + "text": "came|strong=\"G2064\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* standing|strong=\"G2186\"* by|strong=\"G4314\"* me|strong=\"G1473\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘Brother Saul|strong=\"G4549\"*, receive your|strong=\"G2532\"* sight|strong=\"G3588\"*!’ In|strong=\"G1519\"* that|strong=\"G3588\"* very|strong=\"G2532\"* hour|strong=\"G5610\"* I|strong=\"G1473\"* looked|strong=\"G2532\"* up|strong=\"G1519\"* at|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"*, ‘The|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G1537\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"* has|strong=\"G2316\"* appointed|strong=\"G4400\"* you|strong=\"G4771\"* to|strong=\"G2532\"* know|strong=\"G1097\"* his|strong=\"G3708\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* Righteous|strong=\"G1342\"* One|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* hear|strong=\"G5456\"* a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* his|strong=\"G3708\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* witness|strong=\"G3144\"* for|strong=\"G3754\"* him|strong=\"G3739\"* to|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"* of|strong=\"G2532\"* what|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G3568\"* why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* wait? Arise, be|strong=\"G2532\"* baptized, and|strong=\"G2532\"* wash|strong=\"G2532\"* away your|strong=\"G2532\"* sins, calling|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*.’" + }, + { + "verseNum": 17, + "text": "“When|strong=\"G1161\"* I|strong=\"G1473\"* had|strong=\"G2532\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* while|strong=\"G1722\"* I|strong=\"G1473\"* prayed|strong=\"G4336\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, I|strong=\"G1473\"* fell|strong=\"G1096\"* into|strong=\"G1519\"* a|strong=\"G1096\"* trance|strong=\"G1611\"*" + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* saw|strong=\"G3708\"* him|strong=\"G3708\"* saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, ‘\\+w Hurry|strong=\"G4692\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w get|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w* \\+w quickly|strong=\"G5034\"\\+w*, \\+w because|strong=\"G1360\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w receive|strong=\"G3858\"\\+w* \\+w testimony|strong=\"G3141\"\\+w* \\+w concerning|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w you|strong=\"G4771\"\\+w*.’*" + }, + { + "verseNum": 19, + "text": "I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Lord|strong=\"G2962\"*, they|strong=\"G2532\"* themselves|strong=\"G1510\"* know|strong=\"G1987\"* that|strong=\"G3754\"* I|strong=\"G1473\"* imprisoned|strong=\"G5439\"* and|strong=\"G2532\"* beat|strong=\"G1194\"* in|strong=\"G1909\"* every|strong=\"G2596\"* synagogue|strong=\"G4864\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believed|strong=\"G4100\"* in|strong=\"G1909\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* Stephen|strong=\"G4736\"*, your|strong=\"G2532\"* witness|strong=\"G3144\"*, was|strong=\"G1510\"* shed|strong=\"G1632\"*, I|strong=\"G2532\"* also|strong=\"G2532\"* was|strong=\"G1510\"* standing|strong=\"G2186\"* by|strong=\"G2532\"*, consenting|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G2532\"* death, and|strong=\"G2532\"* guarding|strong=\"G5442\"* the|strong=\"G2532\"* cloaks|strong=\"G2440\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* killed him|strong=\"G3588\"*.’" + }, + { + "verseNum": 21, + "text": "“He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, ‘\\+w Depart|strong=\"G4198\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w send|strong=\"G1821\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w out|strong=\"G2532\"\\+w* \\+w far|strong=\"G3112\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w here|strong=\"G1519\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*.’* ”" + }, + { + "verseNum": 22, + "text": "They|strong=\"G2532\"* listened to|strong=\"G2532\"* him|strong=\"G3588\"* until|strong=\"G2532\"* he|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"*; then|strong=\"G2532\"* they|strong=\"G2532\"* lifted|strong=\"G1869\"* up|strong=\"G1869\"* their|strong=\"G2532\"* voice|strong=\"G5456\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Rid the|strong=\"G2532\"* earth|strong=\"G1093\"* of|strong=\"G3056\"* this|strong=\"G3778\"* fellow|strong=\"G5108\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* isn’t|strong=\"G3588\"* fit|strong=\"G2520\"* to|strong=\"G2532\"* live|strong=\"G2198\"*!”" + }, + { + "verseNum": 23, + "text": "As|strong=\"G1519\"* they|strong=\"G2532\"* cried|strong=\"G2905\"* out|strong=\"G2905\"*, threw|strong=\"G4496\"* off|strong=\"G4495\"* their|strong=\"G2532\"* cloaks|strong=\"G2440\"*, and|strong=\"G2532\"* threw|strong=\"G4496\"* dust|strong=\"G2868\"* into|strong=\"G1519\"* the|strong=\"G2532\"* air," + }, + { + "verseNum": 24, + "text": "the|strong=\"G1519\"* commanding|strong=\"G2753\"* officer commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* brought|strong=\"G1521\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*, ordering|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* examined by|strong=\"G1223\"* scourging|strong=\"G3148\"*, that|strong=\"G2443\"* he|strong=\"G3739\"* might know|strong=\"G1921\"* for|strong=\"G1519\"* what|strong=\"G3739\"* crime they|strong=\"G3588\"* shouted|strong=\"G2019\"* against|strong=\"G1519\"* him|strong=\"G3588\"* like|strong=\"G3779\"* that|strong=\"G2443\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2532\"* tied him|strong=\"G3588\"* up|strong=\"G2476\"* with|strong=\"G4314\"* straps, Paul|strong=\"G3972\"* asked|strong=\"G3004\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* who|strong=\"G3588\"* stood|strong=\"G2476\"* by|strong=\"G4314\"*, “Is|strong=\"G3588\"* it|strong=\"G2532\"* lawful|strong=\"G1832\"* for|strong=\"G4314\"* you|strong=\"G5210\"* to|strong=\"G4314\"* scourge|strong=\"G3147\"* a|strong=\"G5613\"* man who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G5613\"* Roman|strong=\"G4514\"*, and|strong=\"G2532\"* not|strong=\"G2532\"* found|strong=\"G2532\"* guilty?”" + }, + { + "verseNum": 26, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"* heard it|strong=\"G1161\"*, he|strong=\"G1161\"* went|strong=\"G4334\"* to|strong=\"G3004\"* the|strong=\"G1161\"* commanding officer and|strong=\"G1161\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “Watch what|strong=\"G5101\"* you|strong=\"G3004\"* are|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G3004\"* do|strong=\"G4160\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G1510\"* Roman|strong=\"G4514\"*!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"G1161\"* commanding officer came|strong=\"G4334\"* and|strong=\"G1161\"* asked|strong=\"G3004\"* him|strong=\"G3588\"*, “Tell|strong=\"G3004\"* me|strong=\"G1473\"*, are|strong=\"G1510\"* you|strong=\"G4771\"* a|strong=\"G1510\"* Roman|strong=\"G4514\"*?”" + }, + { + "verseNum": 28, + "text": "The|strong=\"G2532\"* commanding officer answered|strong=\"G5346\"*, “I|strong=\"G1473\"* bought my|strong=\"G1473\"* citizenship|strong=\"G4174\"* for|strong=\"G1161\"* a|strong=\"G2532\"* great|strong=\"G4183\"* price|strong=\"G4183\"*.”" + }, + { + "verseNum": 29, + "text": "Immediately|strong=\"G2112\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* examine him|strong=\"G3588\"* departed from|strong=\"G2532\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* commanding officer also|strong=\"G2532\"* was|strong=\"G1510\"* afraid|strong=\"G5399\"* when|strong=\"G1161\"* he|strong=\"G2532\"* realized|strong=\"G1921\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Roman|strong=\"G4514\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* had|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, desiring|strong=\"G1014\"* to|strong=\"G1519\"* know|strong=\"G1097\"* the|strong=\"G2532\"* truth about|strong=\"G1519\"* why|strong=\"G5101\"* he|strong=\"G2532\"* was|strong=\"G3588\"* accused|strong=\"G2723\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, he|strong=\"G2532\"* freed him|strong=\"G3588\"* from|strong=\"G2532\"* the|strong=\"G2532\"* bonds and|strong=\"G2532\"* commanded|strong=\"G2753\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* council|strong=\"G4892\"* to|strong=\"G1519\"* come|strong=\"G4905\"* together|strong=\"G4905\"*, and|strong=\"G2532\"* brought|strong=\"G2609\"* Paul|strong=\"G3972\"* down|strong=\"G2609\"* and|strong=\"G2532\"* set|strong=\"G2476\"* him|strong=\"G3588\"* before|strong=\"G1519\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, looking steadfastly at|strong=\"G1161\"* the|strong=\"G3956\"* council|strong=\"G4892\"*, said|strong=\"G3004\"*, “Brothers, I|strong=\"G1473\"* have|strong=\"G1473\"* lived|strong=\"G4176\"* before|strong=\"G3588\"* God|strong=\"G2316\"* in|strong=\"G2316\"* all|strong=\"G3956\"* good|strong=\"G3956\"* conscience|strong=\"G4893\"* until today|strong=\"G2250\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"G1161\"* high priest, Ananias, commanded|strong=\"G2004\"* those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* him|strong=\"G3588\"* to|strong=\"G1161\"* strike|strong=\"G5180\"* him|strong=\"G3588\"* on|strong=\"G1161\"* the|strong=\"G1161\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “God|strong=\"G2316\"* will|strong=\"G2316\"* strike|strong=\"G5180\"* you|strong=\"G4771\"*, you|strong=\"G4771\"* whitewashed|strong=\"G2867\"* wall|strong=\"G5109\"*! Do|strong=\"G2919\"* you|strong=\"G4771\"* sit|strong=\"G2521\"* to|strong=\"G4314\"* judge|strong=\"G2919\"* me|strong=\"G1473\"* according|strong=\"G2596\"* to|strong=\"G4314\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* command|strong=\"G3004\"* me|strong=\"G1473\"* to|strong=\"G4314\"* be|strong=\"G2532\"* struck|strong=\"G5180\"* contrary|strong=\"G2316\"* to|strong=\"G4314\"* the|strong=\"G2532\"* law|strong=\"G3551\"*?”" + }, + { + "verseNum": 4, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* said|strong=\"G3004\"*, “Do|strong=\"G3004\"* you|strong=\"G3004\"* malign God|strong=\"G2316\"*’s high|strong=\"G2316\"* priest?”" + }, + { + "verseNum": 5, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1063\"* didn’t|strong=\"G3588\"* know|strong=\"G1492\"*, brothers, that|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* high priest. For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, ‘You|strong=\"G4771\"* shall|strong=\"G3748\"* not|strong=\"G3756\"* speak|strong=\"G3004\"* evil|strong=\"G2560\"* of|strong=\"G2992\"* a|strong=\"G1510\"* ruler of|strong=\"G2992\"* your|strong=\"G3588\"* people|strong=\"G2992\"*.’”+ 23:5 Exodus 22:28*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* perceived|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G1722\"* one|strong=\"G1520\"* part|strong=\"G3313\"* were|strong=\"G1510\"* Sadducees|strong=\"G4523\"* and|strong=\"G2532\"* the|strong=\"G1722\"* other|strong=\"G2087\"* Pharisees|strong=\"G5330\"*, he|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* the|strong=\"G1722\"* council|strong=\"G4892\"*, “Men|strong=\"G3588\"* and|strong=\"G2532\"* brothers, I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2532\"* Pharisee|strong=\"G5330\"*, a|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Pharisees|strong=\"G5330\"*. Concerning|strong=\"G4012\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* resurrection of|strong=\"G5207\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* I|strong=\"G1473\"* am|strong=\"G1510\"* being|strong=\"G1510\"* judged|strong=\"G2919\"*!”" + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G2980\"* this|strong=\"G3778\"*, an|strong=\"G2532\"* argument arose|strong=\"G1096\"* between|strong=\"G2532\"* the|strong=\"G2532\"* Pharisees|strong=\"G5330\"* and|strong=\"G2532\"* Sadducees|strong=\"G4523\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* crowd|strong=\"G4128\"* was|strong=\"G1096\"* divided|strong=\"G4977\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* Sadducees|strong=\"G4523\"* say|strong=\"G3004\"* that|strong=\"G3588\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3361\"* resurrection, nor|strong=\"G3383\"* angel, nor|strong=\"G3383\"* spirit|strong=\"G4151\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* Pharisees|strong=\"G5330\"* confess|strong=\"G3670\"* all|strong=\"G3361\"* of|strong=\"G4151\"* these|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G1096\"* great|strong=\"G3173\"* clamor|strong=\"G2906\"* arose|strong=\"G1096\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* of|strong=\"G4151\"* the|strong=\"G1722\"* scribes|strong=\"G1122\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Pharisees|strong=\"G5330\"*’ part|strong=\"G3313\"* stood|strong=\"G3588\"* up|strong=\"G2532\"*, and|strong=\"G2532\"* contended, saying|strong=\"G3004\"*, “We|strong=\"G2532\"* find|strong=\"G2147\"* no|strong=\"G3762\"* evil|strong=\"G2556\"* in|strong=\"G1722\"* this|strong=\"G3778\"* man|strong=\"G5100\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* a|strong=\"G1096\"* spirit|strong=\"G4151\"* or|strong=\"G2228\"* angel has|strong=\"G1096\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, let|strong=\"G1096\"*’s not|strong=\"G3762\"* fight against|strong=\"G1722\"* God|strong=\"G3004\"*!”" + }, + { + "verseNum": 10, + "text": "When|strong=\"G1161\"* a|strong=\"G1096\"* great|strong=\"G4183\"* argument arose|strong=\"G1096\"*, the|strong=\"G1519\"* commanding|strong=\"G2753\"* officer, fearing|strong=\"G5399\"* that|strong=\"G3588\"* Paul|strong=\"G3972\"* would|strong=\"G1096\"* be|strong=\"G1096\"* torn|strong=\"G1288\"* in|strong=\"G1519\"* pieces|strong=\"G1288\"* by|strong=\"G5259\"* them|strong=\"G3588\"*, commanded|strong=\"G2753\"* the|strong=\"G1519\"* soldiers|strong=\"G4753\"* to|strong=\"G1519\"* go|strong=\"G2597\"* down|strong=\"G2597\"* and|strong=\"G1161\"* take|strong=\"G1096\"* him|strong=\"G3588\"* by|strong=\"G5259\"* force from|strong=\"G1537\"* among|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G1161\"* bring|strong=\"G1519\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* following|strong=\"G1966\"* night|strong=\"G3571\"*, the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G2186\"* by|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Cheer \\+w up|strong=\"G1210\"\\+w*, \\+w Paul|strong=\"G3588\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w testified|strong=\"G3140\"\\+w* \\+w about|strong=\"G4012\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w so|strong=\"G3779\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w must|strong=\"G1163\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w at|strong=\"G1519\"\\+w* \\+w Rome|strong=\"G4516\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "When|strong=\"G1161\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, some|strong=\"G3739\"* of|strong=\"G2250\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* banded|strong=\"G4160\"* together|strong=\"G4963\"* and|strong=\"G1161\"* bound themselves|strong=\"G1438\"* under a|strong=\"G1096\"* curse, saying|strong=\"G3004\"* that|strong=\"G3739\"* they|strong=\"G1161\"* would|strong=\"G1096\"* neither|strong=\"G3383\"* eat|strong=\"G2068\"* nor|strong=\"G3383\"* drink|strong=\"G4095\"* until|strong=\"G2193\"* they|strong=\"G1161\"* had|strong=\"G3972\"* killed Paul|strong=\"G3972\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"G1161\"* were|strong=\"G1510\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* people|strong=\"G1510\"* who|strong=\"G3588\"* had|strong=\"G1510\"* made|strong=\"G4160\"* this|strong=\"G3778\"* conspiracy|strong=\"G4945\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"G2532\"* came|strong=\"G4334\"* to|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “We|strong=\"G3739\"* have|strong=\"G2532\"* bound ourselves|strong=\"G1438\"* under a|strong=\"G2532\"* great|strong=\"G2532\"* curse to|strong=\"G2532\"* taste|strong=\"G1089\"* nothing|strong=\"G3367\"* until|strong=\"G2193\"* we|strong=\"G3739\"* have|strong=\"G2532\"* killed Paul|strong=\"G3972\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* therefore|strong=\"G3767\"*, you|strong=\"G5210\"* with|strong=\"G4862\"* the|strong=\"G1519\"* council|strong=\"G4892\"* inform the|strong=\"G1519\"* commanding officer that|strong=\"G3588\"* he|strong=\"G1161\"* should|strong=\"G3195\"* bring|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* you|strong=\"G5210\"* tomorrow, as|strong=\"G5613\"* though|strong=\"G5613\"* you|strong=\"G5210\"* were|strong=\"G1510\"* going|strong=\"G3195\"* to|strong=\"G1519\"* judge|strong=\"G4253\"* his|strong=\"G1519\"* case|strong=\"G3588\"* more|strong=\"G1161\"* exactly. We|strong=\"G2249\"* are|strong=\"G1510\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* kill him|strong=\"G3588\"* before|strong=\"G4253\"* he|strong=\"G1161\"* comes|strong=\"G1510\"* near|strong=\"G1448\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"*’s sister’s son|strong=\"G5207\"* heard they|strong=\"G2532\"* were|strong=\"G3588\"* lying in|strong=\"G1519\"* wait|strong=\"G1747\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G3854\"* and|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* barracks|strong=\"G3925\"* and|strong=\"G2532\"* told Paul|strong=\"G3972\"*." + }, + { + "verseNum": 17, + "text": "Paul|strong=\"G3972\"* summoned|strong=\"G4341\"* one|strong=\"G1520\"* of|strong=\"G1520\"* the|strong=\"G1161\"* centurions|strong=\"G1543\"* and|strong=\"G1161\"* said|strong=\"G5346\"*, “Bring this|strong=\"G3778\"* young|strong=\"G3494\"* man|strong=\"G5100\"* to|strong=\"G4314\"* the|strong=\"G1161\"* commanding officer, for|strong=\"G1063\"* he|strong=\"G1161\"* has|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G4314\"* tell him|strong=\"G3588\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"G3767\"* he|strong=\"G2532\"* took|strong=\"G3880\"* him|strong=\"G3588\"* and|strong=\"G2532\"* brought|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G4314\"* the|strong=\"G2532\"* commanding officer and|strong=\"G2532\"* said|strong=\"G5346\"*, “Paul|strong=\"G3972\"*, the|strong=\"G2532\"* prisoner|strong=\"G1198\"*, summoned|strong=\"G4341\"* me|strong=\"G1473\"* and|strong=\"G2532\"* asked|strong=\"G2065\"* me|strong=\"G1473\"* to|strong=\"G4314\"* bring|strong=\"G2532\"* this|strong=\"G3778\"* young|strong=\"G3495\"* man|strong=\"G5100\"* to|strong=\"G4314\"* you|strong=\"G4771\"*. He|strong=\"G2532\"* has|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G4314\"* tell|strong=\"G2980\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* commanding officer took|strong=\"G1949\"* him|strong=\"G3588\"* by|strong=\"G2596\"* the|strong=\"G2532\"* hand|strong=\"G5495\"*, and|strong=\"G2532\"* going|strong=\"G2532\"* aside|strong=\"G2596\"*, asked|strong=\"G4441\"* him|strong=\"G3588\"* privately|strong=\"G2398\"*, “What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"* that|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2192\"* to|strong=\"G2532\"* tell me|strong=\"G1473\"*?”" + }, + { + "verseNum": 20, + "text": "He|strong=\"G1161\"* said|strong=\"G3004\"*, “The|strong=\"G1519\"* Jews|strong=\"G2453\"* have|strong=\"G3748\"* agreed|strong=\"G4934\"* to|strong=\"G1519\"* ask|strong=\"G2065\"* you|strong=\"G4771\"* to|strong=\"G1519\"* bring|strong=\"G2609\"* Paul|strong=\"G3972\"* down|strong=\"G2609\"* to|strong=\"G1519\"* the|strong=\"G1519\"* council|strong=\"G4892\"* tomorrow, as|strong=\"G5613\"* though|strong=\"G5613\"* intending|strong=\"G3195\"* to|strong=\"G1519\"* inquire|strong=\"G4441\"* somewhat|strong=\"G5100\"* more|strong=\"G1161\"* accurately concerning|strong=\"G4012\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* yield|strong=\"G3982\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* more|strong=\"G4119\"* than|strong=\"G4183\"* forty|strong=\"G5062\"* men|strong=\"G3588\"* lie in|strong=\"G2532\"* wait|strong=\"G1748\"* for|strong=\"G1063\"* him|strong=\"G3588\"*, who|strong=\"G3739\"* have|strong=\"G2532\"* bound themselves|strong=\"G1438\"* under|strong=\"G1537\"* a|strong=\"G2532\"* curse to|strong=\"G2532\"* neither|strong=\"G3383\"* eat|strong=\"G2068\"* nor|strong=\"G3383\"* drink|strong=\"G4095\"* until|strong=\"G2193\"* they|strong=\"G2532\"* have|strong=\"G2532\"* killed him|strong=\"G3588\"*. Now|strong=\"G3568\"* they|strong=\"G2532\"* are|strong=\"G1510\"* ready|strong=\"G2092\"*, looking|strong=\"G4327\"* for|strong=\"G1063\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* from|strong=\"G1537\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"G3767\"* the|strong=\"G4314\"* commanding|strong=\"G3853\"* officer let|strong=\"G3767\"* the|strong=\"G4314\"* young|strong=\"G3495\"* man|strong=\"G3778\"* go, charging|strong=\"G3853\"* him|strong=\"G3588\"*, “Tell|strong=\"G1583\"* no|strong=\"G3367\"* one|strong=\"G3367\"* that|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G1473\"* revealed these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* me|strong=\"G1473\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* called|strong=\"G3004\"* to|strong=\"G2532\"* himself two|strong=\"G1417\"* of|strong=\"G2532\"* the|strong=\"G2532\"* centurions|strong=\"G1543\"*, and|strong=\"G2532\"* said|strong=\"G3004\"*, “Prepare|strong=\"G2090\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* soldiers|strong=\"G4757\"* to|strong=\"G2532\"* go|strong=\"G4198\"* as|strong=\"G2532\"* far|strong=\"G2193\"* as|strong=\"G2532\"* Caesarea|strong=\"G2542\"*, with|strong=\"G2532\"* seventy|strong=\"G1440\"* horsemen|strong=\"G2460\"* and|strong=\"G2532\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* men|strong=\"G5100\"* armed with|strong=\"G2532\"* spears, at|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* hour|strong=\"G5610\"* of|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*.”+ 23:23 about 9:00 p.m.*" + }, + { + "verseNum": 24, + "text": "He|strong=\"G3588\"* asked them|strong=\"G3588\"* to|strong=\"G4314\"* provide|strong=\"G3936\"* mounts|strong=\"G2934\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* might set|strong=\"G1913\"* Paul|strong=\"G3972\"* on|strong=\"G1913\"* one|strong=\"G3588\"*, and|strong=\"G5037\"* bring|strong=\"G1295\"* him|strong=\"G3588\"* safely|strong=\"G1295\"* to|strong=\"G4314\"* Felix|strong=\"G5344\"* the|strong=\"G4314\"* governor|strong=\"G2232\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"G3778\"* wrote|strong=\"G1125\"* a|strong=\"G2192\"* letter|strong=\"G1992\"* like|strong=\"G5179\"* this|strong=\"G3778\"*:" + }, + { + "verseNum": 26, + "text": "“Claudius|strong=\"G2804\"* Lysias|strong=\"G3079\"* to|strong=\"G3588\"* the|strong=\"G3588\"* most|strong=\"G2903\"* excellent|strong=\"G2903\"* governor|strong=\"G2232\"* Felix|strong=\"G5344\"*: Greetings|strong=\"G5463\"*." + }, + { + "verseNum": 27, + "text": "“This|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G1510\"* seized|strong=\"G4815\"* by|strong=\"G5259\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G2532\"* be|strong=\"G1510\"* killed by|strong=\"G5259\"* them|strong=\"G3588\"* when|strong=\"G2532\"* I|strong=\"G2532\"* came|strong=\"G2532\"* with|strong=\"G4862\"* the|strong=\"G2532\"* soldiers|strong=\"G4753\"* and|strong=\"G2532\"* rescued|strong=\"G1807\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* learned|strong=\"G3129\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Roman|strong=\"G4514\"*." + }, + { + "verseNum": 28, + "text": "Desiring|strong=\"G1014\"* to|strong=\"G1519\"* know|strong=\"G1921\"* the|strong=\"G1519\"* cause|strong=\"G1223\"* why|strong=\"G1223\"* they|strong=\"G3588\"* accused|strong=\"G1458\"* him|strong=\"G3588\"*, I|strong=\"G3739\"* brought|strong=\"G2609\"* him|strong=\"G3588\"* down|strong=\"G2609\"* to|strong=\"G1519\"* their|strong=\"G1519\"* council|strong=\"G4892\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"G3739\"* found|strong=\"G2147\"* him|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G3588\"* accused|strong=\"G1458\"* about|strong=\"G4012\"* questions|strong=\"G2213\"* of|strong=\"G4012\"* their|strong=\"G4012\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* not|strong=\"G3367\"* to|strong=\"G1161\"* be|strong=\"G3588\"* charged with|strong=\"G2192\"* anything|strong=\"G3367\"* worthy of|strong=\"G4012\"* death|strong=\"G2288\"* or|strong=\"G2228\"* of|strong=\"G4012\"* imprisonment|strong=\"G1199\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"G1161\"* I|strong=\"G1473\"* was|strong=\"G1510\"* told|strong=\"G3004\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Jews lay in|strong=\"G1519\"* wait|strong=\"G1917\"* for|strong=\"G1519\"* the|strong=\"G2532\"* man|strong=\"G1519\"*, I|strong=\"G1473\"* sent|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G4771\"* immediately|strong=\"G1824\"*, charging|strong=\"G3853\"* his|strong=\"G1519\"* accusers|strong=\"G2725\"* also|strong=\"G2532\"* to|strong=\"G1519\"* bring|strong=\"G2532\"* their|strong=\"G2532\"* accusations against|strong=\"G1909\"* him|strong=\"G3588\"* before|strong=\"G1909\"* you|strong=\"G4771\"*. Farewell.”" + }, + { + "verseNum": 31, + "text": "So|strong=\"G3767\"* the|strong=\"G1519\"* soldiers|strong=\"G4757\"*, carrying out|strong=\"G1519\"* their|strong=\"G2596\"* orders|strong=\"G1299\"*, took|strong=\"G3767\"* Paul|strong=\"G3972\"* and|strong=\"G3972\"* brought|strong=\"G1519\"* him|strong=\"G3588\"* by|strong=\"G1223\"* night|strong=\"G3571\"* to|strong=\"G1519\"* Antipatris." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* on|strong=\"G1519\"* the|strong=\"G1519\"* next|strong=\"G1887\"* day|strong=\"G1887\"* they|strong=\"G1161\"* left|strong=\"G1439\"* the|strong=\"G1519\"* horsemen|strong=\"G2460\"* to|strong=\"G1519\"* go|strong=\"G1519\"* with|strong=\"G4862\"* him|strong=\"G3588\"*, and|strong=\"G1161\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* the|strong=\"G1519\"* barracks|strong=\"G3925\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G1525\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* delivered the|strong=\"G2532\"* letter|strong=\"G1992\"* to|strong=\"G1519\"* the|strong=\"G2532\"* governor|strong=\"G2232\"*, they|strong=\"G2532\"* also|strong=\"G2532\"* presented|strong=\"G3936\"* Paul|strong=\"G3972\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* governor had|strong=\"G2532\"* read it|strong=\"G2532\"*, he|strong=\"G2532\"* asked|strong=\"G1905\"* what|strong=\"G4169\"* province|strong=\"G1885\"* he|strong=\"G2532\"* was|strong=\"G1510\"* from|strong=\"G1537\"*. When|strong=\"G1161\"* he|strong=\"G2532\"* understood|strong=\"G4441\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* from|strong=\"G1537\"* Cilicia|strong=\"G2791\"*, he|strong=\"G2532\"* said|strong=\"G1161\"*," + }, + { + "verseNum": 35, + "text": "“I|strong=\"G2532\"* will|strong=\"G2532\"* hear|strong=\"G1251\"* you|strong=\"G4771\"* fully when|strong=\"G3752\"* your|strong=\"G2532\"* accusers|strong=\"G2725\"* also|strong=\"G2532\"* arrive|strong=\"G3854\"*.” He|strong=\"G2532\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* he|strong=\"G2532\"* be|strong=\"G2532\"* kept|strong=\"G5442\"* in|strong=\"G1722\"* Herod|strong=\"G2264\"*’s palace|strong=\"G4232\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* five|strong=\"G4002\"* days|strong=\"G2250\"*, the|strong=\"G2532\"* high|strong=\"G2532\"* priest, Ananias, came|strong=\"G2597\"* down|strong=\"G2597\"* with|strong=\"G3326\"* certain|strong=\"G5100\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* an|strong=\"G2532\"* orator|strong=\"G4489\"*, one|strong=\"G5100\"* Tertullus|strong=\"G5061\"*. They|strong=\"G2532\"* informed|strong=\"G1718\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* against|strong=\"G2596\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G1096\"* called|strong=\"G2564\"*, Tertullus|strong=\"G5061\"* began|strong=\"G1096\"* to|strong=\"G2532\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*, saying|strong=\"G3004\"*, “Seeing|strong=\"G1223\"* that|strong=\"G3588\"* by|strong=\"G1223\"* you|strong=\"G4771\"* we|strong=\"G2532\"* enjoy|strong=\"G5177\"* much|strong=\"G4183\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* prosperity is|strong=\"G3588\"* coming|strong=\"G1096\"* to|strong=\"G2532\"* this|strong=\"G3588\"* nation|strong=\"G1484\"* by|strong=\"G1223\"* your|strong=\"G4674\"* foresight|strong=\"G4307\"*," + }, + { + "verseNum": 3, + "text": "we|strong=\"G2532\"* accept it|strong=\"G2532\"* in|strong=\"G2532\"* all|strong=\"G3956\"* ways and|strong=\"G2532\"* in|strong=\"G2532\"* all|strong=\"G3956\"* places|strong=\"G3837\"*, most|strong=\"G4183\"* excellent|strong=\"G2903\"* Felix|strong=\"G5344\"*, with|strong=\"G3326\"* all|strong=\"G3956\"* thankfulness|strong=\"G2169\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* delay|strong=\"G1465\"* you|strong=\"G4771\"*, I|strong=\"G1473\"* entreat|strong=\"G3870\"* you|strong=\"G4771\"* to|strong=\"G2443\"* bear|strong=\"G2443\"* with|strong=\"G1909\"* us|strong=\"G2249\"* and|strong=\"G1161\"* hear a|strong=\"G1909\"* few words|strong=\"G4935\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* have|strong=\"G2532\"* found|strong=\"G2147\"* this|strong=\"G3778\"* man|strong=\"G3778\"* to|strong=\"G2532\"* be|strong=\"G2532\"* a|strong=\"G2532\"* plague, an|strong=\"G2532\"* instigator of|strong=\"G2532\"* insurrections among|strong=\"G2596\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* throughout|strong=\"G2596\"* the|strong=\"G2532\"* world|strong=\"G3625\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* ringleader|strong=\"G4414\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sect of|strong=\"G2532\"* the|strong=\"G2532\"* Nazarenes|strong=\"G3480\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* even|strong=\"G2532\"* tried|strong=\"G3985\"* to|strong=\"G2532\"* profane the|strong=\"G2532\"* temple|strong=\"G2411\"*, and|strong=\"G2532\"* we|strong=\"G3739\"* arrested|strong=\"G2902\"* him|strong=\"G3588\"*.+ 24:6 TR adds “We wanted to judge him according to our law,”*" + }, + { + "verseNum": 7, + "text": "+ 24:7 TR adds “but the commanding officer, Lysias, came by and with great violence took him out of our hands,”*" + }, + { + "verseNum": 8, + "text": "+ 24:8 TR adds “commanding his accusers to come to you.”*By|strong=\"G3844\"* examining him|strong=\"G3739\"* yourself you|strong=\"G3739\"* may|strong=\"G1410\"* ascertain|strong=\"G1921\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* of|strong=\"G4012\"* which|strong=\"G3739\"* we|strong=\"G2249\"* accuse|strong=\"G2723\"* him|strong=\"G3739\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* Jews|strong=\"G2453\"* also|strong=\"G2532\"* joined|strong=\"G4934\"* in|strong=\"G2532\"* the|strong=\"G2532\"* attack, affirming that|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G3588\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"G1510\"* the|strong=\"G1537\"* governor|strong=\"G2232\"* had|strong=\"G3972\"* beckoned|strong=\"G3506\"* to|strong=\"G3004\"* him|strong=\"G3588\"* to|strong=\"G3004\"* speak|strong=\"G3004\"*, Paul|strong=\"G3972\"* answered|strong=\"G3004\"*, “Because|strong=\"G1537\"* I|strong=\"G3778\"* know|strong=\"G1987\"* that|strong=\"G3588\"* you|strong=\"G4771\"* have|strong=\"G1510\"* been|strong=\"G1510\"* a|strong=\"G1510\"* judge|strong=\"G2923\"* of|strong=\"G1537\"* this|strong=\"G3778\"* nation|strong=\"G1484\"* for|strong=\"G4012\"* many|strong=\"G4183\"* years|strong=\"G2094\"*, I|strong=\"G3778\"* cheerfully|strong=\"G2115\"* make my|strong=\"G1683\"* defense," + }, + { + "verseNum": 11, + "text": "seeing|strong=\"G3754\"* that|strong=\"G3754\"* you|strong=\"G4771\"* can|strong=\"G1410\"* verify|strong=\"G1921\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* more|strong=\"G4119\"* than|strong=\"G4183\"* twelve|strong=\"G1427\"* days|strong=\"G2250\"* since|strong=\"G3754\"* I|strong=\"G1473\"* went|strong=\"G3739\"* up|strong=\"G1519\"* to|strong=\"G1519\"* worship|strong=\"G4352\"* at|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* me|strong=\"G1473\"* disputing|strong=\"G1256\"* with|strong=\"G1722\"* anyone|strong=\"G5100\"* or|strong=\"G2228\"* stirring up|strong=\"G2532\"* a|strong=\"G2532\"* crowd|strong=\"G3793\"*, either|strong=\"G2228\"* in|strong=\"G1722\"* the|strong=\"G1722\"* synagogues|strong=\"G4864\"* or|strong=\"G2228\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*." + }, + { + "verseNum": 13, + "text": "Nor|strong=\"G3761\"* can|strong=\"G1410\"* they|strong=\"G3739\"* prove|strong=\"G3936\"* to|strong=\"G1410\"* you|strong=\"G4771\"* the|strong=\"G3739\"* things|strong=\"G3739\"* of|strong=\"G4012\"* which|strong=\"G3739\"* they|strong=\"G3739\"* now|strong=\"G3570\"* accuse|strong=\"G2723\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* this|strong=\"G3778\"* I|strong=\"G3739\"* confess|strong=\"G3670\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, that|strong=\"G3754\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Way|strong=\"G3598\"*, which|strong=\"G3739\"* they|strong=\"G2532\"* call|strong=\"G3004\"* a|strong=\"G2532\"* sect, so|strong=\"G3779\"* I|strong=\"G3739\"* serve|strong=\"G3000\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* our|strong=\"G2316\"* fathers|strong=\"G3971\"*, believing|strong=\"G4100\"* all|strong=\"G3956\"* things|strong=\"G3956\"* which|strong=\"G3739\"* are|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, and|strong=\"G2532\"* which|strong=\"G3739\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*;" + }, + { + "verseNum": 15, + "text": "having|strong=\"G2192\"* hope|strong=\"G1680\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* these|strong=\"G3778\"* also|strong=\"G2532\"* themselves|strong=\"G1519\"* look for|strong=\"G1519\"*, that|strong=\"G3739\"* there|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* a|strong=\"G2192\"* resurrection of|strong=\"G2316\"* the|strong=\"G2532\"* dead, both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* just|strong=\"G1342\"* and|strong=\"G2532\"* unjust." + }, + { + "verseNum": 16, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* I|strong=\"G2532\"* also|strong=\"G2532\"* practice always|strong=\"G3956\"* having|strong=\"G2192\"* a|strong=\"G2192\"* conscience|strong=\"G4893\"* void of|strong=\"G1223\"* offense toward|strong=\"G4314\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* after|strong=\"G1161\"* some|strong=\"G3588\"* years|strong=\"G2094\"*, I|strong=\"G1473\"* came|strong=\"G3854\"* to|strong=\"G1519\"* bring|strong=\"G4160\"* gifts|strong=\"G1654\"* for|strong=\"G1519\"* the|strong=\"G2532\"* needy to|strong=\"G1519\"* my|strong=\"G1473\"* nation|strong=\"G1484\"*, and|strong=\"G2532\"* offerings|strong=\"G4376\"*;" + }, + { + "verseNum": 18, + "text": "amid|strong=\"G3326\"* which|strong=\"G3739\"* certain|strong=\"G5100\"* Jews|strong=\"G2453\"* from|strong=\"G3756\"* Asia|strong=\"G3588\"* found|strong=\"G2147\"* me|strong=\"G1473\"* purified in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"*, not|strong=\"G3756\"* with|strong=\"G3326\"* a|strong=\"G1722\"* mob|strong=\"G3793\"*, nor|strong=\"G3761\"* with|strong=\"G3326\"* turmoil." + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* ought|strong=\"G1163\"* to|strong=\"G4314\"* have|strong=\"G2192\"* been|strong=\"G2192\"* here|strong=\"G3918\"* before|strong=\"G1909\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G4314\"* make|strong=\"G2532\"* accusation|strong=\"G2723\"* if|strong=\"G1487\"* they|strong=\"G2532\"* had|strong=\"G2192\"* anything|strong=\"G5100\"* against|strong=\"G1909\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 20, + "text": "Or|strong=\"G2228\"* else|strong=\"G2228\"* let|strong=\"G2228\"* these|strong=\"G3778\"* men|strong=\"G3778\"* themselves|strong=\"G3778\"* say|strong=\"G3004\"* what|strong=\"G5101\"* injustice they|strong=\"G3588\"* found|strong=\"G2147\"* in|strong=\"G1909\"* me|strong=\"G1473\"* when|strong=\"G2147\"* I|strong=\"G1473\"* stood|strong=\"G2476\"* before|strong=\"G1909\"* the|strong=\"G1909\"* council|strong=\"G4892\"*," + }, + { + "verseNum": 21, + "text": "unless it|strong=\"G3754\"* is|strong=\"G3778\"* for|strong=\"G3754\"* this|strong=\"G3778\"* one|strong=\"G1520\"* thing|strong=\"G1520\"* that|strong=\"G3754\"* I|strong=\"G1473\"* cried|strong=\"G2896\"* standing|strong=\"G2476\"* among|strong=\"G1722\"* them|strong=\"G1722\"*, ‘Concerning|strong=\"G4012\"* the|strong=\"G1722\"* resurrection of|strong=\"G4012\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* I|strong=\"G1473\"* am|strong=\"G1473\"* being|strong=\"G1722\"* judged|strong=\"G2919\"* before|strong=\"G1909\"* you|strong=\"G5210\"* today|strong=\"G4594\"*!’”" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* Felix|strong=\"G5344\"*, having|strong=\"G1492\"* more|strong=\"G1492\"* exact knowledge|strong=\"G1492\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* Way|strong=\"G3598\"*, deferred them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “When|strong=\"G3752\"* Lysias|strong=\"G3079\"*, the|strong=\"G1161\"* commanding officer, comes|strong=\"G2597\"* down|strong=\"G2597\"*, I|strong=\"G1161\"* will|strong=\"G3004\"* decide|strong=\"G1231\"* your|strong=\"G3708\"* case|strong=\"G3588\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"G2532\"* ordered|strong=\"G1299\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* that|strong=\"G3588\"* Paul|strong=\"G3588\"* should|strong=\"G3588\"* be|strong=\"G2532\"* kept|strong=\"G5083\"* in|strong=\"G2532\"* custody|strong=\"G5083\"* and|strong=\"G2532\"* should|strong=\"G3588\"* have|strong=\"G2192\"* some|strong=\"G3588\"* privileges, and|strong=\"G2532\"* not|strong=\"G3367\"* to|strong=\"G2532\"* forbid|strong=\"G2967\"* any|strong=\"G3367\"* of|strong=\"G2532\"* his|strong=\"G2398\"* friends|strong=\"G2398\"* to|strong=\"G2532\"* serve|strong=\"G2192\"* him|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* visit him|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"G3326\"* some|strong=\"G5100\"* days|strong=\"G2250\"*, Felix|strong=\"G5344\"* came|strong=\"G3854\"* with|strong=\"G3326\"* Drusilla|strong=\"G1409\"* his|strong=\"G1519\"* wife|strong=\"G1135\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* a|strong=\"G2532\"* Jewess|strong=\"G2453\"*, and|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G1519\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* heard him|strong=\"G3588\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 25, + "text": "As|strong=\"G1161\"* he|strong=\"G2532\"* reasoned|strong=\"G1256\"* about|strong=\"G4012\"* righteousness|strong=\"G1343\"*, self-control|strong=\"G1466\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* to|strong=\"G2532\"* come|strong=\"G1096\"*, Felix|strong=\"G5344\"* was|strong=\"G1096\"* terrified|strong=\"G1719\"*, and|strong=\"G2532\"* answered, “Go|strong=\"G4198\"* your|strong=\"G2192\"* way|strong=\"G4198\"* for|strong=\"G4012\"* this|strong=\"G3588\"* time|strong=\"G2540\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* convenient for|strong=\"G4012\"* me|strong=\"G2192\"*, I|strong=\"G2532\"* will|strong=\"G3195\"* summon|strong=\"G3333\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 26, + "text": "Meanwhile, he|strong=\"G2532\"* also|strong=\"G2532\"* hoped|strong=\"G1679\"* that|strong=\"G3754\"* money|strong=\"G5536\"* would|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* release him|strong=\"G3588\"*. Therefore|strong=\"G1352\"* also|strong=\"G2532\"* he|strong=\"G2532\"* sent|strong=\"G3343\"* for|strong=\"G3754\"* him|strong=\"G3588\"* more|strong=\"G2532\"* often|strong=\"G4437\"* and|strong=\"G2532\"* talked|strong=\"G3656\"* with|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* two|strong=\"G1333\"* years|strong=\"G1333\"* were|strong=\"G3588\"* fulfilled|strong=\"G4137\"*, Felix|strong=\"G5344\"* was|strong=\"G3588\"* succeeded|strong=\"G1240\"* by|strong=\"G2453\"* Porcius|strong=\"G4201\"* Festus|strong=\"G5347\"*, and|strong=\"G1161\"* desiring|strong=\"G2309\"* to|strong=\"G2309\"* gain favor|strong=\"G5485\"* with|strong=\"G4137\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"*, Felix|strong=\"G5344\"* left|strong=\"G2641\"* Paul|strong=\"G3972\"* in|strong=\"G1161\"* bonds|strong=\"G1210\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Festus|strong=\"G5347\"* therefore|strong=\"G3767\"*, having|strong=\"G3767\"* come|strong=\"G1910\"* into|strong=\"G1519\"* the|strong=\"G1519\"* province|strong=\"G1885\"*, after|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* went|strong=\"G3767\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* from|strong=\"G3588\"* Caesarea|strong=\"G2542\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest and|strong=\"G2532\"* the|strong=\"G2532\"* principal men|strong=\"G4413\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* informed|strong=\"G1718\"* him|strong=\"G3588\"* against|strong=\"G2596\"* Paul|strong=\"G3972\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* begged|strong=\"G3870\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 3, + "text": "asking a|strong=\"G1519\"* favor|strong=\"G5485\"* against|strong=\"G2596\"* him|strong=\"G3588\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* would|strong=\"G5485\"* summon|strong=\"G3343\"* him|strong=\"G3588\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, plotting to|strong=\"G1519\"* kill him|strong=\"G3588\"* on|strong=\"G1519\"* the|strong=\"G1519\"* way|strong=\"G3598\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"G1161\"* Festus|strong=\"G5347\"* answered that|strong=\"G3588\"* Paul|strong=\"G3972\"* should|strong=\"G3195\"* be|strong=\"G3195\"* kept|strong=\"G5083\"* in|strong=\"G1722\"* custody|strong=\"G5083\"* at|strong=\"G1722\"* Caesarea|strong=\"G2542\"*, and|strong=\"G1161\"* that|strong=\"G3588\"* he|strong=\"G1161\"* himself|strong=\"G1438\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* depart|strong=\"G1607\"* shortly|strong=\"G5034\"*." + }, + { + "verseNum": 5, + "text": "“Let|strong=\"G1510\"* them|strong=\"G3588\"* therefore|strong=\"G3767\"*”, he|strong=\"G3588\"* said|strong=\"G5346\"*, “that|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* power|strong=\"G1415\"* among|strong=\"G1722\"* you|strong=\"G5210\"* go|strong=\"G4782\"* down with|strong=\"G1722\"* me, and|strong=\"G3767\"* if|strong=\"G1487\"* there|strong=\"G1510\"* is|strong=\"G1510\"* anything|strong=\"G5100\"* wrong in|strong=\"G1722\"* the|strong=\"G1722\"* man|strong=\"G5100\"*, let|strong=\"G1510\"* them|strong=\"G3588\"* accuse|strong=\"G2723\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G3972\"* stayed|strong=\"G1304\"* among|strong=\"G1722\"* them|strong=\"G3588\"* more|strong=\"G4119\"* than|strong=\"G2228\"* ten|strong=\"G1176\"* days|strong=\"G2250\"*, he|strong=\"G1161\"* went|strong=\"G2597\"* down|strong=\"G2597\"* to|strong=\"G1519\"* Caesarea|strong=\"G2542\"*, and|strong=\"G1161\"* on|strong=\"G1909\"* the|strong=\"G1722\"* next|strong=\"G1887\"* day|strong=\"G2250\"* he|strong=\"G1161\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1722\"* judgment|strong=\"G2250\"* seat|strong=\"G2523\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* Paul|strong=\"G3972\"* to|strong=\"G1519\"* be|strong=\"G3756\"* brought|strong=\"G1161\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G3854\"*, the|strong=\"G2532\"* Jews|strong=\"G2453\"* who|strong=\"G3739\"* had|strong=\"G2532\"* come|strong=\"G3854\"* down|strong=\"G2597\"* from|strong=\"G2597\"* Jerusalem|strong=\"G2414\"* stood|strong=\"G3588\"* around|strong=\"G4026\"* him|strong=\"G3588\"*, bringing|strong=\"G2702\"* against|strong=\"G2702\"* him|strong=\"G3588\"* many|strong=\"G4183\"* and|strong=\"G2532\"* grievous charges which|strong=\"G3739\"* they|strong=\"G2532\"* could|strong=\"G2480\"* not|strong=\"G3756\"* prove," + }, + { + "verseNum": 8, + "text": "while|strong=\"G3754\"* he|strong=\"G3754\"* said|strong=\"G3972\"* in|strong=\"G1519\"* his|strong=\"G1519\"* defense, “Neither|strong=\"G3777\"* against|strong=\"G1519\"* the|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*, nor|strong=\"G3777\"* against|strong=\"G1519\"* the|strong=\"G1519\"* temple|strong=\"G2411\"*, nor|strong=\"G3777\"* against|strong=\"G1519\"* Caesar|strong=\"G2541\"*, have|strong=\"G3748\"* I|strong=\"G3754\"* sinned at|strong=\"G1519\"* all|strong=\"G3588\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Festus|strong=\"G5347\"*, desiring|strong=\"G2309\"* to|strong=\"G1519\"* gain favor|strong=\"G5485\"* with|strong=\"G1909\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*, answered|strong=\"G3004\"* Paul|strong=\"G3972\"* and|strong=\"G1161\"* said|strong=\"G3004\"*, “Are|strong=\"G3588\"* you|strong=\"G3004\"* willing|strong=\"G2309\"* to|strong=\"G1519\"* go|strong=\"G2309\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G1161\"* be|strong=\"G1519\"* judged|strong=\"G2919\"* by|strong=\"G1909\"* me|strong=\"G1473\"* there|strong=\"G1563\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?”" + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* Paul|strong=\"G3972\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* am|strong=\"G1510\"* standing|strong=\"G2476\"* before|strong=\"G1909\"* Caesar|strong=\"G2541\"*’s judgment|strong=\"G2919\"* seat, where|strong=\"G3757\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2532\"* be|strong=\"G1510\"* tried|strong=\"G2919\"*. I|strong=\"G1473\"* have|strong=\"G2532\"* done no|strong=\"G3762\"* wrong to|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*, as|strong=\"G5613\"* you|strong=\"G4771\"* also|strong=\"G2532\"* know|strong=\"G1921\"* very|strong=\"G2532\"* well|strong=\"G2532\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1161\"* if|strong=\"G1487\"* I|strong=\"G1473\"* have|strong=\"G2532\"* done|strong=\"G4238\"* wrong and|strong=\"G2532\"* have|strong=\"G2532\"* committed|strong=\"G4238\"* anything|strong=\"G5100\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"*, I|strong=\"G1473\"* don’t|strong=\"G3588\"* refuse|strong=\"G3868\"* to|strong=\"G2532\"* die|strong=\"G2288\"*; but|strong=\"G1161\"* if|strong=\"G1487\"* none|strong=\"G3762\"* of|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3778\"* is|strong=\"G1510\"* true|strong=\"G3588\"* that|strong=\"G3739\"* they|strong=\"G2532\"* accuse|strong=\"G2723\"* me|strong=\"G1473\"* of|strong=\"G2532\"*, no|strong=\"G3756\"* one|strong=\"G5100\"* can|strong=\"G1410\"* give|strong=\"G5483\"* me|strong=\"G1473\"* up|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. I|strong=\"G1473\"* appeal|strong=\"G1941\"* to|strong=\"G2532\"* Caesar|strong=\"G2541\"*!”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"G5119\"* Festus|strong=\"G5347\"*, when|strong=\"G5119\"* he|strong=\"G3588\"* had|strong=\"G3588\"* conferred|strong=\"G4824\"* with|strong=\"G3326\"* the|strong=\"G1909\"* council|strong=\"G4824\"*, answered, “You|strong=\"G1909\"* have|strong=\"G3588\"* appealed|strong=\"G1941\"* to|strong=\"G1909\"* Caesar|strong=\"G2541\"*. To|strong=\"G1909\"* Caesar|strong=\"G2541\"* you|strong=\"G1909\"* shall|strong=\"G3588\"* go|strong=\"G4198\"*.”" + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* some|strong=\"G5100\"* days|strong=\"G2250\"* had|strong=\"G2532\"* passed|strong=\"G3588\"*, King|strong=\"G3588\"* Agrippa and|strong=\"G2532\"* Bernice arrived|strong=\"G2658\"* at|strong=\"G1519\"* Caesarea|strong=\"G2542\"* and|strong=\"G2532\"* greeted Festus|strong=\"G5347\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"G5613\"* he|strong=\"G1161\"* stayed|strong=\"G1510\"* there|strong=\"G1563\"* many|strong=\"G4183\"* days|strong=\"G2250\"*, Festus|strong=\"G5347\"* laid|strong=\"G1563\"* Paul|strong=\"G3972\"*’s case|strong=\"G3588\"* before|strong=\"G2596\"* the|strong=\"G1161\"* king|strong=\"G3588\"*, saying|strong=\"G3004\"*, “There|strong=\"G1563\"* is|strong=\"G1510\"* a|strong=\"G5613\"* certain|strong=\"G5100\"* man|strong=\"G5100\"* left|strong=\"G2641\"* a|strong=\"G5613\"* prisoner|strong=\"G1198\"* by|strong=\"G5259\"* Felix|strong=\"G5344\"*;" + }, + { + "verseNum": 15, + "text": "about|strong=\"G4012\"* whom|strong=\"G3739\"*, when|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G1096\"* at|strong=\"G1519\"* Jerusalem|strong=\"G2414\"*, the|strong=\"G2532\"* chief|strong=\"G2532\"* priests and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* informed|strong=\"G1718\"* me|strong=\"G1473\"*, asking for|strong=\"G1519\"* a|strong=\"G1096\"* sentence|strong=\"G1473\"* against|strong=\"G2596\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3739\"* answered them|strong=\"G3588\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G2596\"* custom|strong=\"G1485\"* of|strong=\"G4012\"* the|strong=\"G2596\"* Romans|strong=\"G4514\"* to|strong=\"G4314\"* give|strong=\"G5483\"* up any|strong=\"G5100\"* man|strong=\"G5100\"* to|strong=\"G4314\"* destruction before|strong=\"G4250\"* the|strong=\"G2596\"* accused|strong=\"G2723\"* has|strong=\"G2192\"* met the|strong=\"G2596\"* accusers|strong=\"G2725\"* face|strong=\"G4383\"* to|strong=\"G4314\"* face|strong=\"G4383\"* and|strong=\"G5037\"* has|strong=\"G2192\"* had|strong=\"G2192\"* opportunity|strong=\"G5117\"* to|strong=\"G4314\"* make|strong=\"G2723\"* his|strong=\"G4012\"* defense concerning|strong=\"G4012\"* the|strong=\"G2596\"* matter|strong=\"G5100\"* laid against|strong=\"G2596\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* they|strong=\"G3588\"* had|strong=\"G3588\"* come|strong=\"G4905\"* together|strong=\"G4905\"* here|strong=\"G1759\"*, I|strong=\"G3767\"* didn’t|strong=\"G3588\"* delay, but|strong=\"G3767\"* on|strong=\"G1909\"* the|strong=\"G1909\"* next|strong=\"G1836\"* day|strong=\"G1836\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1909\"* judgment seat|strong=\"G2523\"* and|strong=\"G3767\"* commanded|strong=\"G2753\"* the|strong=\"G1909\"* man|strong=\"G3367\"* to|strong=\"G1909\"* be|strong=\"G3588\"* brought." + }, + { + "verseNum": 18, + "text": "When|strong=\"G3739\"* the|strong=\"G3588\"* accusers|strong=\"G2725\"* stood|strong=\"G2476\"* up|strong=\"G2476\"*, they|strong=\"G3588\"* brought|strong=\"G5342\"* no|strong=\"G3762\"* charges against|strong=\"G4012\"* him|strong=\"G3588\"* of|strong=\"G4012\"* such|strong=\"G3588\"* things|strong=\"G3588\"* as|strong=\"G3739\"* I|strong=\"G1473\"* supposed|strong=\"G5282\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"G1161\"* had|strong=\"G2192\"* certain|strong=\"G5100\"* questions|strong=\"G2213\"* against|strong=\"G4314\"* him|strong=\"G3588\"* about|strong=\"G4012\"* their|strong=\"G2532\"* own|strong=\"G2398\"* religion|strong=\"G1175\"* and|strong=\"G2532\"* about|strong=\"G4012\"* one|strong=\"G5100\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G3588\"* dead|strong=\"G2348\"*, whom|strong=\"G3739\"* Paul|strong=\"G3972\"* affirmed|strong=\"G5335\"* to|strong=\"G4314\"* be|strong=\"G2532\"* alive|strong=\"G2198\"*." + }, + { + "verseNum": 20, + "text": "Being|strong=\"G1161\"* perplexed how|strong=\"G1161\"* to|strong=\"G1519\"* inquire concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, I|strong=\"G1473\"* asked|strong=\"G3004\"* whether|strong=\"G1487\"* he|strong=\"G1161\"* was|strong=\"G3588\"* willing|strong=\"G1014\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* and|strong=\"G1161\"* there|strong=\"G1161\"* be|strong=\"G1519\"* judged|strong=\"G2919\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* matters." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* appealed|strong=\"G1941\"* to|strong=\"G1519\"* be|strong=\"G1519\"* kept|strong=\"G5083\"* for|strong=\"G1519\"* the|strong=\"G1519\"* decision|strong=\"G1233\"* of|strong=\"G3588\"* the|strong=\"G1519\"* emperor|strong=\"G4575\"*, I|strong=\"G3739\"* commanded|strong=\"G2753\"* him|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G1519\"* kept|strong=\"G5083\"* until|strong=\"G2193\"* I|strong=\"G3739\"* could|strong=\"G3588\"* send him|strong=\"G3588\"* to|strong=\"G1519\"* Caesar|strong=\"G2541\"*.”" + }, + { + "verseNum": 22, + "text": "Agrippa said|strong=\"G5346\"* to|strong=\"G4314\"* Festus|strong=\"G5347\"*, “I|strong=\"G2532\"* also|strong=\"G2532\"* would|strong=\"G1014\"* like|strong=\"G4314\"* to|strong=\"G4314\"* hear the|strong=\"G2532\"* man myself.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"G3767\"* on|strong=\"G1519\"* the|strong=\"G2532\"* next|strong=\"G1887\"* day|strong=\"G1887\"*, when|strong=\"G2532\"* Agrippa and|strong=\"G2532\"* Bernice had|strong=\"G2532\"* come|strong=\"G2064\"* with|strong=\"G3326\"* great|strong=\"G4183\"* pomp|strong=\"G5325\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place of|strong=\"G2532\"* hearing with|strong=\"G3326\"* the|strong=\"G2532\"* commanding|strong=\"G2753\"* officers and|strong=\"G2532\"* the|strong=\"G2532\"* principal|strong=\"G1851\"* men|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, at|strong=\"G1519\"* the|strong=\"G2532\"* command|strong=\"G2753\"* of|strong=\"G2532\"* Festus|strong=\"G5347\"*, Paul|strong=\"G3972\"* was|strong=\"G3588\"* brought|strong=\"G2064\"* in|strong=\"G1519\"*." + }, + { + "verseNum": 24, + "text": "Festus|strong=\"G5347\"* said|strong=\"G5346\"*, “King|strong=\"G3588\"* Agrippa, and|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"* who|strong=\"G3739\"* are|strong=\"G3588\"* here|strong=\"G1759\"* present|strong=\"G4840\"* with|strong=\"G1722\"* us|strong=\"G2249\"*, you|strong=\"G3739\"* see|strong=\"G2334\"* this|strong=\"G3778\"* man|strong=\"G3778\"* about|strong=\"G4012\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* multitude|strong=\"G4128\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* petitioned me|strong=\"G1473\"*, both|strong=\"G2532\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"* and|strong=\"G2532\"* here|strong=\"G1759\"*, crying that|strong=\"G3739\"* he|strong=\"G2532\"* ought|strong=\"G1163\"* not|strong=\"G3361\"* to|strong=\"G2532\"* live|strong=\"G2198\"* any|strong=\"G3956\"* longer|strong=\"G3371\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* I|strong=\"G1473\"* found|strong=\"G2638\"* that|strong=\"G3588\"* he|strong=\"G1161\"* had|strong=\"G3588\"* committed|strong=\"G4238\"* nothing|strong=\"G3367\"* worthy of|strong=\"G3588\"* death|strong=\"G2288\"*, and|strong=\"G1161\"* as|strong=\"G1161\"* he|strong=\"G1161\"* himself appealed|strong=\"G1941\"* to|strong=\"G1161\"* the|strong=\"G1161\"* emperor|strong=\"G4575\"*, I|strong=\"G1473\"* determined|strong=\"G2919\"* to|strong=\"G1161\"* send|strong=\"G3992\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 26, + "text": "of|strong=\"G4012\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2192\"* no|strong=\"G3756\"* certain|strong=\"G5100\"* thing|strong=\"G5100\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* my|strong=\"G3739\"* lord|strong=\"G2962\"*. Therefore|strong=\"G1352\"* I|strong=\"G3739\"* have|strong=\"G2192\"* brought|strong=\"G4254\"* him|strong=\"G3588\"* out|strong=\"G2532\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* especially|strong=\"G3122\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, King|strong=\"G3588\"* Agrippa, that|strong=\"G3739\"*, after|strong=\"G1909\"* examination I|strong=\"G3739\"* may|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G2532\"* write|strong=\"G1125\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* seems|strong=\"G1380\"* to|strong=\"G2532\"* me|strong=\"G1473\"* unreasonable, in|strong=\"G2596\"* sending|strong=\"G3992\"* a|strong=\"G2532\"* prisoner|strong=\"G1198\"*, not|strong=\"G3361\"* to|strong=\"G2532\"* also|strong=\"G2532\"* specify the|strong=\"G2532\"* charges against|strong=\"G2596\"* him|strong=\"G3588\"*.”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Agrippa said|strong=\"G3004\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, “You|strong=\"G4771\"* may|strong=\"G3004\"* speak|strong=\"G3004\"* for|strong=\"G5228\"* yourself|strong=\"G4572\"*.”" + }, + { + "verseNum": 2, + "text": "“I|strong=\"G3739\"* think|strong=\"G2233\"* myself|strong=\"G1683\"* happy|strong=\"G3107\"*, King Agrippa, that|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G3195\"* to|strong=\"G1909\"* make my|strong=\"G3956\"* defense before|strong=\"G1909\"* you|strong=\"G4771\"* today|strong=\"G4594\"* concerning|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G3195\"* accused|strong=\"G1458\"* by|strong=\"G5259\"* the|strong=\"G3956\"* Jews|strong=\"G2453\"*," + }, + { + "verseNum": 3, + "text": "especially|strong=\"G3122\"* because|strong=\"G2532\"* you|strong=\"G4771\"* are|strong=\"G1510\"* expert|strong=\"G1109\"* in|strong=\"G2596\"* all|strong=\"G3956\"* customs|strong=\"G1485\"* and|strong=\"G2532\"* questions|strong=\"G2213\"* which|strong=\"G3588\"* are|strong=\"G1510\"* among|strong=\"G2596\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"*. Therefore|strong=\"G1352\"* I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G4771\"* to|strong=\"G2532\"* hear me|strong=\"G1473\"* patiently|strong=\"G3116\"*." + }, + { + "verseNum": 4, + "text": "“Indeed|strong=\"G3303\"*, all|strong=\"G3956\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* know|strong=\"G1492\"* my|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G1537\"* life from|strong=\"G1537\"* my|strong=\"G1722\"* youth|strong=\"G3503\"* up|strong=\"G1722\"*, which|strong=\"G3588\"* was|strong=\"G1096\"* from|strong=\"G1537\"* the|strong=\"G1722\"* beginning among|strong=\"G1722\"* my|strong=\"G1722\"* own nation|strong=\"G1484\"* and|strong=\"G5037\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*;" + }, + { + "verseNum": 5, + "text": "having|strong=\"G3140\"* known|strong=\"G4267\"* me|strong=\"G1473\"* from|strong=\"G2596\"* the|strong=\"G2596\"* first|strong=\"G3588\"*, if|strong=\"G1437\"* they|strong=\"G3588\"* are|strong=\"G3588\"* willing|strong=\"G2309\"* to|strong=\"G2596\"* testify|strong=\"G3140\"*, that|strong=\"G3754\"* after|strong=\"G2596\"* the|strong=\"G2596\"* strictest sect of|strong=\"G2596\"* our|strong=\"G2251\"* religion|strong=\"G2356\"* I|strong=\"G1473\"* lived|strong=\"G2198\"* a|strong=\"G1437\"* Pharisee|strong=\"G5330\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G3568\"* I|strong=\"G1473\"* stand|strong=\"G2476\"* here|strong=\"G1519\"* to|strong=\"G1519\"* be|strong=\"G1096\"* judged|strong=\"G2919\"* for|strong=\"G1519\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G5259\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* made|strong=\"G1096\"* by|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G1519\"* our|strong=\"G2316\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 7, + "text": "which|strong=\"G3739\"* our|strong=\"G2532\"* twelve|strong=\"G1429\"* tribes|strong=\"G1429\"*, earnestly|strong=\"G2532\"* serving|strong=\"G3000\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, hope|strong=\"G1680\"* to|strong=\"G1519\"* attain|strong=\"G2658\"*. Concerning|strong=\"G4012\"* this|strong=\"G3588\"* hope|strong=\"G1680\"* I|strong=\"G1473\"* am|strong=\"G1473\"* accused|strong=\"G1458\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*, King|strong=\"G3588\"* Agrippa!" + }, + { + "verseNum": 8, + "text": "Why|strong=\"G5101\"* is|strong=\"G3588\"* it|strong=\"G1487\"* judged|strong=\"G2919\"* incredible with|strong=\"G3844\"* you|strong=\"G5210\"* if|strong=\"G1487\"* God|strong=\"G2316\"* does|strong=\"G5101\"* raise|strong=\"G1453\"* the|strong=\"G3588\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 9, + "text": "“I|strong=\"G1473\"* myself|strong=\"G1683\"* most|strong=\"G4183\"* certainly|strong=\"G3303\"* thought|strong=\"G1380\"* that|strong=\"G3588\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G4314\"* do|strong=\"G4238\"* many|strong=\"G4183\"* things|strong=\"G3588\"* contrary|strong=\"G1727\"* to|strong=\"G4314\"* the|strong=\"G4314\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Jesus|strong=\"G2424\"* of|strong=\"G3686\"* Nazareth|strong=\"G3480\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* also|strong=\"G2532\"* did|strong=\"G4160\"* this|strong=\"G3588\"* in|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*. I|strong=\"G1473\"* both|strong=\"G2532\"* shut|strong=\"G1473\"* up|strong=\"G2623\"* many|strong=\"G4183\"* of|strong=\"G2532\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* prisons|strong=\"G5438\"*, having|strong=\"G2532\"* received|strong=\"G2983\"* authority|strong=\"G1849\"* from|strong=\"G3844\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests; and|strong=\"G2532\"* when|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* put|strong=\"G4160\"* to|strong=\"G2532\"* death I|strong=\"G1473\"* gave|strong=\"G4160\"* my|strong=\"G1722\"* vote|strong=\"G5586\"* against|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Punishing them|strong=\"G3588\"* often|strong=\"G4178\"* in|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* synagogues|strong=\"G4864\"*, I|strong=\"G2532\"* tried to|strong=\"G1519\"* make|strong=\"G1519\"* them|strong=\"G3588\"* blaspheme. Being|strong=\"G2532\"* exceedingly|strong=\"G4057\"* enraged|strong=\"G1693\"* against|strong=\"G2596\"* them|strong=\"G3588\"*, I|strong=\"G2532\"* persecuted|strong=\"G1377\"* them|strong=\"G3588\"* even|strong=\"G2532\"* to|strong=\"G1519\"* foreign|strong=\"G1854\"* cities|strong=\"G4172\"*." + }, + { + "verseNum": 12, + "text": "“Whereupon|strong=\"G3739\"* as|strong=\"G1519\"* I|strong=\"G3739\"* traveled to|strong=\"G1519\"* Damascus|strong=\"G1154\"* with|strong=\"G3326\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* commission|strong=\"G2011\"* from|strong=\"G2532\"* the|strong=\"G1722\"* chief|strong=\"G2532\"* priests," + }, + { + "verseNum": 13, + "text": "at|strong=\"G2596\"* noon, O king|strong=\"G3588\"*, I|strong=\"G1473\"* saw|strong=\"G3708\"* on|strong=\"G5228\"* the|strong=\"G2532\"* way|strong=\"G3598\"* a|strong=\"G2532\"* light|strong=\"G5457\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sky, brighter|strong=\"G2987\"* than|strong=\"G5228\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, shining|strong=\"G4034\"* around|strong=\"G4034\"* me|strong=\"G1473\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* traveled with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"G3004\"* we|strong=\"G2249\"* had|strong=\"G3588\"* all|strong=\"G3956\"* fallen|strong=\"G2667\"* to|strong=\"G1519\"* the|strong=\"G1519\"* earth|strong=\"G1093\"*, I|strong=\"G1473\"* heard a|strong=\"G1519\"* voice|strong=\"G5456\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"* in|strong=\"G1519\"* the|strong=\"G1519\"* Hebrew|strong=\"G1446\"* language|strong=\"G1258\"*, ‘\\+w Saul|strong=\"G4549\"\\+w*, \\+w Saul|strong=\"G4549\"\\+w*, \\+w why|strong=\"G5101\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w persecuting|strong=\"G1377\"\\+w* \\+w me|strong=\"G1473\"\\+w*? \\+w It|strong=\"G5101\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w hard|strong=\"G4642\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w kick|strong=\"G2979\"\\+w* \\+w against|strong=\"G4314\"\\+w* \\+w the|strong=\"G1519\"\\+w* \\+w goads|strong=\"G2759\"\\+w*.’*" + }, + { + "verseNum": 15, + "text": "“I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Who|strong=\"G3739\"* are|strong=\"G1510\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*?’" + }, + { + "verseNum": 16, + "text": "\\+w But|strong=\"G2532\"\\+w* arise, \\+w and|strong=\"G2532\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w appeared|strong=\"G3708\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w for|strong=\"G1063\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w purpose|strong=\"G3739\"\\+w*: \\+w to|strong=\"G1519\"\\+w* \\+w appoint|strong=\"G4400\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w servant|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w witness|strong=\"G3144\"\\+w* \\+w both|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* reveal \\+w to|strong=\"G1519\"\\+w* \\+w you|strong=\"G4771\"\\+w*; *" + }, + { + "verseNum": 17, + "text": "\\+w delivering|strong=\"G1807\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w people|strong=\"G2992\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Gentiles|strong=\"G1484\"\\+w*, \\+w to|strong=\"G1519\"\\+w* \\+w whom|strong=\"G3739\"\\+w* \\+w I|strong=\"G1473\"\\+w* send \\+w you|strong=\"G4771\"\\+w*, *" + }, + { + "verseNum": 18, + "text": "\\+w to|strong=\"G1519\"\\+w* open \\+w their|strong=\"G1438\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w turn|strong=\"G1994\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w darkness|strong=\"G4655\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w light|strong=\"G5457\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w from|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w power|strong=\"G1849\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w that|strong=\"G3588\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w receive|strong=\"G2983\"\\+w* remission \\+w of|strong=\"G2316\"\\+w* sins \\+w and|strong=\"G2532\"\\+w* \\+w an|strong=\"G2532\"\\+w* \\+w inheritance|strong=\"G2819\"\\+w* \\+w among|strong=\"G1722\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* sanctified \\+w by|strong=\"G1722\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w me|strong=\"G1473\"\\+w*.’*" + }, + { + "verseNum": 19, + "text": "“Therefore|strong=\"G3606\"*, King|strong=\"G3588\"* Agrippa, I|strong=\"G1096\"* was|strong=\"G1096\"* not|strong=\"G3756\"* disobedient to|strong=\"G3756\"* the|strong=\"G3588\"* heavenly|strong=\"G3770\"* vision|strong=\"G3701\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"G2532\"* declared first|strong=\"G4413\"* to|strong=\"G2532\"* them|strong=\"G3588\"* of|strong=\"G2316\"* Damascus|strong=\"G1154\"*, at|strong=\"G1722\"* Jerusalem|strong=\"G2414\"*, and|strong=\"G2532\"* throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* country|strong=\"G5561\"* of|strong=\"G2316\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* repent|strong=\"G3340\"* and|strong=\"G2532\"* turn|strong=\"G1994\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, doing|strong=\"G4238\"* works|strong=\"G2041\"* worthy of|strong=\"G2316\"* repentance|strong=\"G3341\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1752\"* this|strong=\"G3778\"* reason|strong=\"G1752\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"* seized|strong=\"G4815\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* temple|strong=\"G2413\"* and|strong=\"G2453\"* tried|strong=\"G3987\"* to|strong=\"G1722\"* kill|strong=\"G1315\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 22, + "text": "Having|strong=\"G2532\"* therefore|strong=\"G3767\"* obtained|strong=\"G5177\"* the|strong=\"G2532\"* help|strong=\"G1947\"* that|strong=\"G3739\"* is|strong=\"G3588\"* from|strong=\"G2532\"* God|strong=\"G2316\"*, I|strong=\"G3739\"* stand|strong=\"G2476\"* to|strong=\"G2532\"* this|strong=\"G3778\"* day|strong=\"G2250\"* testifying|strong=\"G3143\"* both|strong=\"G2532\"* to|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* great|strong=\"G3173\"*, saying|strong=\"G3004\"* nothing|strong=\"G3762\"* but|strong=\"G2532\"* what|strong=\"G3739\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* Moses|strong=\"G3475\"* said|strong=\"G3004\"* would|strong=\"G3195\"* happen|strong=\"G1096\"*," + }, + { + "verseNum": 23, + "text": "how the|strong=\"G2532\"* Christ|strong=\"G5547\"* must|strong=\"G5547\"* suffer|strong=\"G3805\"*, and|strong=\"G2532\"* how, by|strong=\"G1537\"* the|strong=\"G2532\"* resurrection of|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, he|strong=\"G2532\"* would|strong=\"G3195\"* be|strong=\"G2532\"* first|strong=\"G4413\"* to|strong=\"G2532\"* proclaim|strong=\"G2605\"* light|strong=\"G5457\"* both|strong=\"G2532\"* to|strong=\"G2532\"* these|strong=\"G3588\"* people|strong=\"G2992\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*.”" + }, + { + "verseNum": 24, + "text": "As|strong=\"G1519\"* he|strong=\"G1161\"* thus|strong=\"G1519\"* made|strong=\"G1161\"* his|strong=\"G1519\"* defense, Festus|strong=\"G5347\"* said|strong=\"G5346\"* with|strong=\"G1519\"* a|strong=\"G1519\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Paul|strong=\"G3972\"*, you|strong=\"G4771\"* are|strong=\"G3588\"* crazy! Your|strong=\"G3588\"* great|strong=\"G3173\"* learning|strong=\"G1121\"* is|strong=\"G3588\"* driving|strong=\"G4062\"* you|strong=\"G4771\"* insane|strong=\"G3105\"*!”" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* said|strong=\"G5346\"*, “I|strong=\"G2532\"* am|strong=\"G2532\"* not|strong=\"G3756\"* crazy, most|strong=\"G2903\"* excellent|strong=\"G2903\"* Festus|strong=\"G5347\"*, but|strong=\"G1161\"* boldly declare words|strong=\"G4487\"* of|strong=\"G2532\"* truth and|strong=\"G2532\"* reasonableness." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* king|strong=\"G3588\"* knows|strong=\"G1987\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, to|strong=\"G4314\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G3739\"* speak|strong=\"G2980\"* freely|strong=\"G3955\"*. For|strong=\"G1063\"* I|strong=\"G3739\"* am|strong=\"G1510\"* persuaded|strong=\"G3982\"* that|strong=\"G3739\"* none|strong=\"G3762\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G1510\"* hidden from|strong=\"G2532\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* has|strong=\"G3739\"* not|strong=\"G3756\"* been|strong=\"G1510\"* done|strong=\"G4238\"* in|strong=\"G1722\"* a|strong=\"G2532\"* corner|strong=\"G1137\"*." + }, + { + "verseNum": 27, + "text": "King|strong=\"G3588\"* Agrippa, do|strong=\"G1492\"* you|strong=\"G3754\"* believe|strong=\"G4100\"* the|strong=\"G3588\"* prophets|strong=\"G4396\"*? I|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G3754\"* believe|strong=\"G4100\"*.”" + }, + { + "verseNum": 28, + "text": "Agrippa said|strong=\"G1161\"* to|strong=\"G4314\"* Paul|strong=\"G3972\"*, “With|strong=\"G1722\"* a|strong=\"G1722\"* little|strong=\"G3641\"* persuasion are|strong=\"G3588\"* you|strong=\"G1722\"* trying to|strong=\"G4314\"* make|strong=\"G4160\"* me|strong=\"G1473\"* a|strong=\"G1722\"* Christian|strong=\"G5546\"*?”" + }, + { + "verseNum": 29, + "text": "Paul|strong=\"G3972\"* said|strong=\"G1161\"*, “I|strong=\"G1473\"* pray|strong=\"G2172\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* whether|strong=\"G2532\"* with|strong=\"G1722\"* little|strong=\"G3641\"* or|strong=\"G2532\"* with|strong=\"G1722\"* much|strong=\"G3173\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* you|strong=\"G4771\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* all|strong=\"G3956\"* that|strong=\"G3588\"* hear me|strong=\"G1473\"* today|strong=\"G4594\"*, might|strong=\"G2532\"* become|strong=\"G1096\"* such|strong=\"G5108\"* as|strong=\"G1722\"* I|strong=\"G1473\"* am|strong=\"G1510\"*, except|strong=\"G3924\"* for|strong=\"G1161\"* these|strong=\"G3778\"* bonds|strong=\"G1199\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"G2532\"* king|strong=\"G3588\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* governor|strong=\"G2232\"* and|strong=\"G2532\"* Bernice, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G4775\"* with|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* withdrawn, they|strong=\"G2532\"* spoke|strong=\"G2980\"* to|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G5100\"*, saying|strong=\"G3004\"*, “This|strong=\"G3778\"* man|strong=\"G5100\"* does|strong=\"G2980\"* nothing|strong=\"G3762\"* worthy of|strong=\"G2532\"* death|strong=\"G2288\"* or|strong=\"G2228\"* of|strong=\"G2532\"* bonds|strong=\"G1199\"*.”" + }, + { + "verseNum": 32, + "text": "Agrippa said|strong=\"G5346\"* to|strong=\"G1410\"* Festus|strong=\"G5347\"*, “This|strong=\"G3778\"* man|strong=\"G3778\"* might|strong=\"G1410\"* have|strong=\"G3588\"* been|strong=\"G3361\"* set free if|strong=\"G1487\"* he|strong=\"G1161\"* had|strong=\"G3588\"* not|strong=\"G3361\"* appealed|strong=\"G1941\"* to|strong=\"G1410\"* Caesar|strong=\"G2541\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G3588\"* determined|strong=\"G2919\"* that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G5100\"* sail for|strong=\"G1519\"* Italy|strong=\"G2482\"*, they|strong=\"G2532\"* delivered|strong=\"G3860\"* Paul|strong=\"G3972\"* and|strong=\"G2532\"* certain|strong=\"G5100\"* other|strong=\"G2087\"* prisoners|strong=\"G1202\"* to|strong=\"G1519\"* a|strong=\"G5613\"* centurion|strong=\"G1543\"* named|strong=\"G3686\"* Julius|strong=\"G2457\"*, of|strong=\"G2532\"* the|strong=\"G2532\"* Augustan|strong=\"G4575\"* band|strong=\"G4686\"*." + }, + { + "verseNum": 2, + "text": "Embarking|strong=\"G1910\"* in|strong=\"G1519\"* a|strong=\"G1519\"* ship|strong=\"G4143\"* of|strong=\"G2596\"* Adramyttium, which|strong=\"G3588\"* was|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G1519\"* sail|strong=\"G4126\"* to|strong=\"G1519\"* places|strong=\"G5117\"* on|strong=\"G1519\"* the|strong=\"G1519\"* coast|strong=\"G2596\"* of|strong=\"G2596\"* Asia|strong=\"G3588\"*, we|strong=\"G2249\"* put|strong=\"G1519\"* to|strong=\"G1519\"* sea, Aristarchus, a|strong=\"G1519\"* Macedonian|strong=\"G3110\"* of|strong=\"G2596\"* Thessalonica|strong=\"G2331\"* being|strong=\"G1510\"* with|strong=\"G4862\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1519\"* next|strong=\"G2087\"* day|strong=\"G3588\"*, we|strong=\"G4314\"* touched|strong=\"G2609\"* at|strong=\"G1519\"* Sidon|strong=\"G4605\"*. Julius|strong=\"G2457\"* treated|strong=\"G5530\"* Paul|strong=\"G3972\"* kindly|strong=\"G5364\"* and|strong=\"G5037\"* gave|strong=\"G2010\"* him|strong=\"G3588\"* permission|strong=\"G2010\"* to|strong=\"G1519\"* go|strong=\"G4198\"* to|strong=\"G1519\"* his|strong=\"G1519\"* friends|strong=\"G5384\"* and|strong=\"G5037\"* refresh himself|strong=\"G1519\"*." + }, + { + "verseNum": 4, + "text": "Putting to|strong=\"G1510\"* sea from|strong=\"G3588\"* there|strong=\"G2547\"*, we|strong=\"G1510\"* sailed|strong=\"G5284\"* under|strong=\"G5284\"* the|strong=\"G1223\"* lee of|strong=\"G1223\"* Cyprus|strong=\"G2954\"*, because|strong=\"G1223\"* the|strong=\"G1223\"* winds were|strong=\"G1510\"* contrary|strong=\"G1727\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G2532\"* we|strong=\"G2532\"* had|strong=\"G2532\"* sailed|strong=\"G1277\"* across the|strong=\"G2532\"* sea|strong=\"G3989\"* which|strong=\"G3588\"* is|strong=\"G3588\"* off|strong=\"G2596\"* Cilicia|strong=\"G2791\"* and|strong=\"G2532\"* Pamphylia|strong=\"G3828\"*, we|strong=\"G2532\"* came|strong=\"G2718\"* to|strong=\"G1519\"* Myra|strong=\"G3460\"*, a|strong=\"G2532\"* city of|strong=\"G2532\"* Lycia|strong=\"G3073\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G2546\"* the|strong=\"G1519\"* centurion|strong=\"G1543\"* found|strong=\"G2147\"* a|strong=\"G1519\"* ship|strong=\"G4143\"* of|strong=\"G3588\"* Alexandria sailing|strong=\"G4126\"* for|strong=\"G1519\"* Italy|strong=\"G2482\"*, and|strong=\"G3588\"* he|strong=\"G3588\"* put|strong=\"G1688\"* us|strong=\"G1519\"* on|strong=\"G1519\"* board." + }, + { + "verseNum": 7, + "text": "When|strong=\"G1161\"* we|strong=\"G2249\"* had|strong=\"G2532\"* sailed|strong=\"G5284\"* slowly|strong=\"G1020\"* many|strong=\"G2425\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* had|strong=\"G2532\"* come|strong=\"G1096\"* with|strong=\"G1722\"* difficulty|strong=\"G3433\"* opposite Cnidus|strong=\"G2834\"*, the|strong=\"G1722\"* wind not|strong=\"G3361\"* allowing us|strong=\"G2249\"* further, we|strong=\"G2249\"* sailed|strong=\"G5284\"* under|strong=\"G1722\"* the|strong=\"G1722\"* lee of|strong=\"G2250\"* Crete|strong=\"G2914\"*, opposite Salmone|strong=\"G4534\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"G1519\"* difficulty|strong=\"G3433\"* sailing|strong=\"G3881\"* along|strong=\"G3881\"* it|strong=\"G3739\"* we|strong=\"G3739\"* came|strong=\"G2064\"* to|strong=\"G1519\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* place|strong=\"G5117\"* called|strong=\"G2564\"* Fair|strong=\"G2570\"* Havens, near|strong=\"G1451\"* the|strong=\"G1519\"* city|strong=\"G4172\"* of|strong=\"G5100\"* Lasea|strong=\"G2996\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G1161\"* much|strong=\"G2425\"* time|strong=\"G5550\"* had|strong=\"G2532\"* passed|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* was|strong=\"G1510\"* now|strong=\"G1161\"* dangerous|strong=\"G2000\"* because|strong=\"G1223\"* the|strong=\"G2532\"* Fast|strong=\"G3521\"* had|strong=\"G2532\"* now|strong=\"G1161\"* already|strong=\"G2235\"* gone by|strong=\"G1223\"*, Paul|strong=\"G3972\"* admonished|strong=\"G3867\"* them|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, “Sirs, I|strong=\"G1473\"* perceive|strong=\"G2334\"* that|strong=\"G3754\"* the|strong=\"G2532\"* voyage|strong=\"G4144\"* will|strong=\"G3195\"* be|strong=\"G1510\"* with|strong=\"G3326\"* injury and|strong=\"G2532\"* much|strong=\"G4183\"* loss|strong=\"G2209\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* of|strong=\"G2532\"* the|strong=\"G2532\"* cargo|strong=\"G5413\"* and|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* of|strong=\"G2532\"* our|strong=\"G2532\"* lives|strong=\"G5590\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* centurion|strong=\"G1543\"* gave|strong=\"G2532\"* more|strong=\"G3123\"* heed to|strong=\"G2532\"* the|strong=\"G2532\"* master|strong=\"G2942\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* owner of|strong=\"G5259\"* the|strong=\"G2532\"* ship|strong=\"G3490\"* than|strong=\"G2228\"* to|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"* by|strong=\"G5259\"* Paul|strong=\"G3972\"*." + }, + { + "verseNum": 12, + "text": "Because|strong=\"G1161\"* the|strong=\"G2532\"* haven|strong=\"G3040\"* was|strong=\"G3588\"* not|strong=\"G1410\"* suitable|strong=\"G3588\"* to|strong=\"G1519\"* winter|strong=\"G3914\"* in|strong=\"G1519\"*, the|strong=\"G2532\"* majority|strong=\"G4183\"* advised|strong=\"G5087\"* going|strong=\"G2532\"* to|strong=\"G1519\"* sea|strong=\"G2532\"* from|strong=\"G2532\"* there|strong=\"G2532\"*, if|strong=\"G1487\"* by|strong=\"G2596\"* any|strong=\"G1487\"* means|strong=\"G1513\"* they|strong=\"G2532\"* could|strong=\"G1410\"* reach|strong=\"G2658\"* Phoenix|strong=\"G5405\"* and|strong=\"G2532\"* winter|strong=\"G3914\"* there|strong=\"G2532\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* port of|strong=\"G2532\"* Crete|strong=\"G2914\"*, looking|strong=\"G2532\"* southwest|strong=\"G3047\"* and|strong=\"G2532\"* northwest|strong=\"G5566\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"G1161\"* the|strong=\"G1161\"* south|strong=\"G3558\"* wind|strong=\"G3558\"* blew|strong=\"G3558\"* softly|strong=\"G5285\"*, supposing|strong=\"G1380\"* that|strong=\"G3588\"* they|strong=\"G1161\"* had|strong=\"G3588\"* obtained|strong=\"G2902\"* their|strong=\"G3588\"* purpose|strong=\"G4286\"*, they|strong=\"G1161\"* weighed anchor and|strong=\"G1161\"* sailed|strong=\"G3881\"* along|strong=\"G3881\"* Crete|strong=\"G2914\"*, close to|strong=\"G1161\"* shore." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* before|strong=\"G2596\"* long|strong=\"G4183\"*, a|strong=\"G1161\"* stormy wind beat down|strong=\"G2596\"* from|strong=\"G2596\"* shore, which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Euroclydon|strong=\"G2148\"*.+ 27:14 Or, “a northeaster”.*" + }, + { + "verseNum": 15, + "text": "When|strong=\"G1161\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* was|strong=\"G3588\"* caught|strong=\"G4884\"* and|strong=\"G2532\"* couldn’t|strong=\"G3588\"* face the|strong=\"G2532\"* wind, we|strong=\"G2532\"* gave|strong=\"G2532\"* way|strong=\"G1929\"* to|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* were|strong=\"G3588\"* driven|strong=\"G5342\"* along|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Running|strong=\"G5295\"* under|strong=\"G5295\"* the|strong=\"G1161\"* lee of|strong=\"G5100\"* a|strong=\"G1096\"* small|strong=\"G3519\"* island|strong=\"G3519\"* called|strong=\"G2564\"* Clauda|strong=\"G2802\"*, we|strong=\"G1161\"* were|strong=\"G3588\"* able|strong=\"G2480\"*, with|strong=\"G3588\"* difficulty|strong=\"G3433\"*, to|strong=\"G1096\"* secure the|strong=\"G1161\"* boat|strong=\"G4627\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"G3739\"* they|strong=\"G3588\"* had|strong=\"G3739\"* hoisted it|strong=\"G3739\"* up|strong=\"G1519\"*, they|strong=\"G3588\"* used|strong=\"G5530\"* cables to|strong=\"G1519\"* help reinforce the|strong=\"G1519\"* ship|strong=\"G4143\"*. Fearing|strong=\"G5399\"* that|strong=\"G3739\"* they|strong=\"G3588\"* would run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1519\"* the|strong=\"G1519\"* Syrtis|strong=\"G4950\"* sand bars, they|strong=\"G3588\"* lowered the|strong=\"G1519\"* sea|strong=\"G4632\"* anchor|strong=\"G4632\"*, and|strong=\"G5037\"* so|strong=\"G3779\"* were|strong=\"G3588\"* driven|strong=\"G5342\"* along|strong=\"G5037\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"G1161\"* we|strong=\"G2249\"* labored exceedingly|strong=\"G4971\"* with|strong=\"G4160\"* the|strong=\"G1161\"* storm, the|strong=\"G1161\"* next|strong=\"G1836\"* day|strong=\"G1836\"* they|strong=\"G1161\"* began|strong=\"G1161\"* to|strong=\"G1161\"* throw things|strong=\"G3588\"* overboard." + }, + { + "verseNum": 19, + "text": "On|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G3588\"*, they|strong=\"G2532\"* threw|strong=\"G4496\"* out|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*’s tackle|strong=\"G4631\"* with|strong=\"G2532\"* their|strong=\"G2532\"* own hands." + }, + { + "verseNum": 20, + "text": "When|strong=\"G1161\"* neither|strong=\"G3756\"* sun|strong=\"G2246\"* nor|strong=\"G3383\"* stars shone on|strong=\"G1909\"* us|strong=\"G2249\"* for|strong=\"G1909\"* many|strong=\"G4183\"* days|strong=\"G2250\"*, and|strong=\"G1161\"* no|strong=\"G3756\"* small|strong=\"G3641\"* storm|strong=\"G5494\"* pressed on|strong=\"G1909\"* us|strong=\"G2249\"*, all|strong=\"G3956\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* we|strong=\"G2249\"* would|strong=\"G2250\"* be|strong=\"G3756\"* saved|strong=\"G4982\"* was|strong=\"G3588\"* now|strong=\"G1161\"* taken|strong=\"G3063\"* away|strong=\"G4014\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* long|strong=\"G4183\"* without|strong=\"G3361\"* food, Paul|strong=\"G3972\"* stood|strong=\"G2476\"* up|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* them|strong=\"G3588\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “Sirs, you|strong=\"G1722\"* should|strong=\"G1163\"* have|strong=\"G2532\"* listened to|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* have|strong=\"G2532\"* set|strong=\"G2476\"* sail from|strong=\"G2532\"* Crete|strong=\"G2914\"* and|strong=\"G2532\"* have|strong=\"G2532\"* gotten this|strong=\"G3778\"* injury and|strong=\"G2532\"* loss|strong=\"G2209\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"G3568\"* I|strong=\"G2532\"* exhort you|strong=\"G5210\"* to|strong=\"G2532\"* cheer|strong=\"G2114\"* up|strong=\"G2532\"*, for|strong=\"G1063\"* there|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3762\"* loss of|strong=\"G1537\"* life|strong=\"G5590\"* among|strong=\"G1537\"* you|strong=\"G5210\"*, but|strong=\"G2532\"* only|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* stood|strong=\"G3936\"* by|strong=\"G3936\"* me|strong=\"G1473\"* this|strong=\"G3778\"* night|strong=\"G3571\"* an|strong=\"G2532\"* angel, belonging|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* whose|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* and|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"*," + }, + { + "verseNum": 24, + "text": "saying|strong=\"G3004\"*, ‘Don’t|strong=\"G3588\"* be|strong=\"G2532\"* afraid|strong=\"G5399\"*, Paul|strong=\"G3972\"*. You|strong=\"G4771\"* must|strong=\"G1163\"* stand|strong=\"G3936\"* before|strong=\"G3936\"* Caesar|strong=\"G2541\"*. Behold|strong=\"G2400\"*, God|strong=\"G2316\"* has|strong=\"G2316\"* granted|strong=\"G5483\"* you|strong=\"G4771\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sail|strong=\"G4126\"* with|strong=\"G3326\"* you|strong=\"G4771\"*.’" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1352\"*, sirs, cheer|strong=\"G2114\"* up! For|strong=\"G1063\"* I|strong=\"G1473\"* believe|strong=\"G4100\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* it|strong=\"G3754\"* will|strong=\"G2316\"* be|strong=\"G1510\"* just|strong=\"G2596\"* as|strong=\"G2596\"* it|strong=\"G3754\"* has|strong=\"G2316\"* been|strong=\"G1510\"* spoken|strong=\"G2980\"* to|strong=\"G2596\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* must|strong=\"G1163\"* run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1519\"* a|strong=\"G1519\"* certain|strong=\"G5100\"* island|strong=\"G3520\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1722\"* fourteenth|strong=\"G5065\"* night|strong=\"G3571\"* had|strong=\"G3588\"* come|strong=\"G1096\"*, as|strong=\"G5613\"* we|strong=\"G2249\"* were|strong=\"G3588\"* driven|strong=\"G1308\"* back and|strong=\"G1161\"* forth|strong=\"G3319\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Adriatic Sea, about|strong=\"G5613\"* midnight|strong=\"G3319\"* the|strong=\"G1722\"* sailors|strong=\"G3492\"* surmised that|strong=\"G3588\"* they|strong=\"G1161\"* were|strong=\"G3588\"* drawing|strong=\"G1096\"* near|strong=\"G5561\"* to|strong=\"G2596\"* some|strong=\"G5100\"* land|strong=\"G5561\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"G2532\"* took|strong=\"G2532\"* soundings|strong=\"G1001\"* and|strong=\"G2532\"* found|strong=\"G2147\"* twenty|strong=\"G1501\"* fathoms|strong=\"G3712\"*.+ 27:28 20 fathoms = 120 feet = 36.6 meters* After|strong=\"G1161\"* a|strong=\"G2532\"* little|strong=\"G1024\"* while|strong=\"G1161\"*, they|strong=\"G2532\"* took|strong=\"G2532\"* soundings|strong=\"G1001\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* found|strong=\"G2147\"* fifteen|strong=\"G1178\"* fathoms|strong=\"G3712\"*.+ 27:28 15 fathoms = 90 feet = 27.4 meters*" + }, + { + "verseNum": 29, + "text": "Fearing|strong=\"G5399\"* that|strong=\"G1096\"* we|strong=\"G2250\"* would|strong=\"G1096\"* run|strong=\"G1601\"* aground|strong=\"G1601\"* on|strong=\"G1537\"* rocky ground, they|strong=\"G5037\"* let|strong=\"G1096\"* go four|strong=\"G5064\"* anchors from|strong=\"G1537\"* the|strong=\"G1537\"* stern|strong=\"G4403\"*, and|strong=\"G5037\"* wished|strong=\"G2172\"* for|strong=\"G1537\"* daylight|strong=\"G2250\"*." + }, + { + "verseNum": 30, + "text": "As|strong=\"G5613\"* the|strong=\"G2532\"* sailors|strong=\"G3492\"* were|strong=\"G3588\"* trying|strong=\"G2212\"* to|strong=\"G1519\"* flee|strong=\"G5343\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* ship|strong=\"G4143\"* and|strong=\"G2532\"* had|strong=\"G2532\"* lowered the|strong=\"G2532\"* boat|strong=\"G4143\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, pretending|strong=\"G4392\"* that|strong=\"G3588\"* they|strong=\"G2532\"* would|strong=\"G3195\"* lay|strong=\"G1614\"* out|strong=\"G1537\"* anchors from|strong=\"G1537\"* the|strong=\"G2532\"* bow|strong=\"G4408\"*," + }, + { + "verseNum": 31, + "text": "Paul|strong=\"G3972\"* said|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G1722\"* centurion|strong=\"G1543\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* soldiers|strong=\"G4757\"*, “Unless|strong=\"G1437\"* these|strong=\"G3778\"* stay|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ship|strong=\"G4143\"*, you|strong=\"G5210\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*.”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* soldiers|strong=\"G4757\"* cut|strong=\"G2532\"* away|strong=\"G1601\"* the|strong=\"G2532\"* ropes|strong=\"G4979\"* of|strong=\"G2532\"* the|strong=\"G2532\"* boat|strong=\"G4627\"* and|strong=\"G2532\"* let|strong=\"G1439\"* it|strong=\"G2532\"* fall|strong=\"G1601\"* off|strong=\"G1601\"*." + }, + { + "verseNum": 33, + "text": "While|strong=\"G1161\"* the|strong=\"G1161\"* day|strong=\"G2250\"* was|strong=\"G1096\"* coming|strong=\"G1096\"* on|strong=\"G1161\"*, Paul|strong=\"G3972\"* begged|strong=\"G3870\"* them|strong=\"G3588\"* all|strong=\"G1161\"* to|strong=\"G3004\"* take|strong=\"G1096\"* some|strong=\"G3739\"* food|strong=\"G5160\"*, saying|strong=\"G3004\"*, “Today|strong=\"G4594\"* is|strong=\"G3588\"* the|strong=\"G1161\"* fourteenth|strong=\"G5065\"* day|strong=\"G2250\"* that|strong=\"G3739\"* you|strong=\"G3739\"* wait and|strong=\"G1161\"* continue|strong=\"G1096\"* fasting, having taken|strong=\"G1096\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 34, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1063\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G4314\"* take|strong=\"G3335\"* some|strong=\"G3588\"* food|strong=\"G5160\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G3588\"* for|strong=\"G1063\"* your|strong=\"G5212\"* safety; for|strong=\"G1063\"* not|strong=\"G3762\"* a|strong=\"G4314\"* hair|strong=\"G2359\"* will|strong=\"G3778\"* perish from|strong=\"G3588\"* any|strong=\"G3762\"* of|strong=\"G2776\"* your|strong=\"G5212\"* heads|strong=\"G2776\"*.”" + }, + { + "verseNum": 35, + "text": "When|strong=\"G1161\"* he|strong=\"G2532\"* had|strong=\"G2532\"* said|strong=\"G3004\"* this|strong=\"G3778\"* and|strong=\"G2532\"* had|strong=\"G2532\"* taken|strong=\"G2983\"* bread, he|strong=\"G2532\"* gave|strong=\"G2532\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G1799\"* of|strong=\"G2316\"* all|strong=\"G3956\"*; then|strong=\"G2532\"* he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* began|strong=\"G1161\"* to|strong=\"G2532\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 36, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* all|strong=\"G3956\"* cheered up|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* also|strong=\"G2532\"* took|strong=\"G4355\"* food|strong=\"G5160\"*." + }, + { + "verseNum": 37, + "text": "In|strong=\"G1722\"* all|strong=\"G3956\"*, we|strong=\"G1161\"* were|strong=\"G1510\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* seventy-six|strong=\"G1440\"* souls|strong=\"G5590\"* on|strong=\"G1722\"* the|strong=\"G1722\"* ship|strong=\"G4143\"*." + }, + { + "verseNum": 38, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G3588\"* eaten|strong=\"G2880\"* enough|strong=\"G2880\"*, they|strong=\"G1161\"* lightened|strong=\"G2893\"* the|strong=\"G1519\"* ship|strong=\"G4143\"*, throwing|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G1519\"* wheat|strong=\"G4621\"* into|strong=\"G1519\"* the|strong=\"G1519\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"G3753\"* it|strong=\"G1161\"* was|strong=\"G1096\"* day|strong=\"G2250\"*, they|strong=\"G1161\"* didn’t|strong=\"G3588\"* recognize|strong=\"G1921\"* the|strong=\"G1519\"* land|strong=\"G1093\"*, but|strong=\"G1161\"* they|strong=\"G1161\"* noticed a|strong=\"G2192\"* certain|strong=\"G5100\"* bay|strong=\"G2859\"* with|strong=\"G1519\"* a|strong=\"G2192\"* beach, and|strong=\"G1161\"* they|strong=\"G1161\"* decided|strong=\"G1096\"* to|strong=\"G1519\"* try to|strong=\"G1519\"* drive|strong=\"G1856\"* the|strong=\"G1519\"* ship|strong=\"G4143\"* onto|strong=\"G1519\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 40, + "text": "Casting|strong=\"G4014\"* off|strong=\"G4014\"* the|strong=\"G2532\"* anchors, they|strong=\"G2532\"* left|strong=\"G1439\"* them|strong=\"G3588\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, at|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G2532\"* time untying the|strong=\"G2532\"* rudder|strong=\"G4079\"* ropes|strong=\"G2202\"*. Hoisting|strong=\"G1869\"* up|strong=\"G1869\"* the|strong=\"G2532\"* foresail to|strong=\"G1519\"* the|strong=\"G2532\"* wind|strong=\"G4154\"*, they|strong=\"G2532\"* made|strong=\"G2722\"* for|strong=\"G1519\"* the|strong=\"G2532\"* beach." + }, + { + "verseNum": 41, + "text": "But|strong=\"G1161\"* coming to|strong=\"G1519\"* a|strong=\"G2532\"* place|strong=\"G5117\"* where|strong=\"G5117\"* two|strong=\"G1337\"* seas|strong=\"G1337\"* met|strong=\"G1337\"*, they|strong=\"G2532\"* ran|strong=\"G2027\"* the|strong=\"G2532\"* vessel|strong=\"G3491\"* aground|strong=\"G2027\"*. The|strong=\"G2532\"* bow|strong=\"G4408\"* struck and|strong=\"G2532\"* remained|strong=\"G3306\"* immovable, but|strong=\"G1161\"* the|strong=\"G2532\"* stern|strong=\"G4403\"* began|strong=\"G1161\"* to|strong=\"G1519\"* break|strong=\"G3089\"* up|strong=\"G1519\"* by|strong=\"G5259\"* the|strong=\"G2532\"* violence of|strong=\"G5259\"* the|strong=\"G2532\"* waves." + }, + { + "verseNum": 42, + "text": "The|strong=\"G1161\"* soldiers|strong=\"G4757\"*’ counsel|strong=\"G1012\"* was|strong=\"G1096\"* to|strong=\"G2443\"* kill the|strong=\"G1161\"* prisoners|strong=\"G1202\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* none|strong=\"G3361\"* of|strong=\"G5100\"* them|strong=\"G3588\"* would|strong=\"G1096\"* swim|strong=\"G1579\"* out|strong=\"G1096\"* and|strong=\"G1161\"* escape|strong=\"G1309\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* centurion|strong=\"G1543\"*, desiring|strong=\"G1014\"* to|strong=\"G1909\"* save|strong=\"G1295\"* Paul|strong=\"G3972\"*, stopped them|strong=\"G3588\"* from|strong=\"G3588\"* their|strong=\"G1438\"* purpose|strong=\"G1013\"*, and|strong=\"G1161\"* commanded|strong=\"G2753\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* could|strong=\"G1410\"* swim|strong=\"G2860\"* should|strong=\"G3588\"* throw themselves|strong=\"G1438\"* overboard first|strong=\"G4413\"* to|strong=\"G1909\"* go toward|strong=\"G1909\"* the|strong=\"G1161\"* land|strong=\"G1093\"*;" + }, + { + "verseNum": 44, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* should|strong=\"G5100\"* follow|strong=\"G1161\"*, some|strong=\"G5100\"* on|strong=\"G1909\"* planks|strong=\"G4548\"* and|strong=\"G2532\"* some|strong=\"G5100\"* on|strong=\"G1909\"* other|strong=\"G3062\"* things|strong=\"G3956\"* from|strong=\"G2532\"* the|strong=\"G2532\"* ship|strong=\"G4143\"*. So|strong=\"G3779\"* they|strong=\"G2532\"* all|strong=\"G3956\"* escaped|strong=\"G1295\"* safely|strong=\"G1295\"* to|strong=\"G2532\"* the|strong=\"G2532\"* land|strong=\"G1093\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2532\"* we|strong=\"G3754\"* had|strong=\"G2532\"* escaped|strong=\"G1295\"*, then|strong=\"G2532\"* they|strong=\"G2532\"*+ 28:1 NU reads “we”* learned|strong=\"G1921\"* that|strong=\"G3754\"* the|strong=\"G2532\"* island|strong=\"G3520\"* was|strong=\"G3588\"* called|strong=\"G2564\"* Malta|strong=\"G3194\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* natives showed|strong=\"G3930\"* us|strong=\"G2249\"* uncommon kindness|strong=\"G5363\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* kindled a|strong=\"G2532\"* fire|strong=\"G4443\"* and|strong=\"G2532\"* received|strong=\"G4355\"* us|strong=\"G2249\"* all|strong=\"G3956\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* present|strong=\"G2186\"* rain|strong=\"G5205\"* and|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* cold|strong=\"G5592\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G2532\"* gathered|strong=\"G4962\"* a|strong=\"G2532\"* bundle|strong=\"G4128\"* of|strong=\"G2532\"* sticks|strong=\"G5434\"* and|strong=\"G2532\"* laid|strong=\"G2007\"* them|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* fire|strong=\"G4443\"*, a|strong=\"G2532\"* viper|strong=\"G2191\"* came|strong=\"G1831\"* out|strong=\"G1831\"* because|strong=\"G1909\"* of|strong=\"G2532\"* the|strong=\"G2532\"* heat|strong=\"G2329\"* and|strong=\"G2532\"* fastened|strong=\"G2510\"* on|strong=\"G1909\"* his|strong=\"G2007\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G1161\"* the|strong=\"G1537\"* natives saw|strong=\"G3708\"* the|strong=\"G1537\"* creature|strong=\"G2342\"* hanging|strong=\"G2910\"* from|strong=\"G1537\"* his|strong=\"G3708\"* hand|strong=\"G5495\"*, they|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, “No|strong=\"G3756\"* doubt|strong=\"G3843\"* this|strong=\"G3778\"* man|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G5613\"* murderer|strong=\"G5406\"*, whom|strong=\"G3739\"*, though|strong=\"G5613\"* he|strong=\"G1161\"* has|strong=\"G3739\"* escaped|strong=\"G1295\"* from|strong=\"G1537\"* the|strong=\"G1537\"* sea|strong=\"G2281\"*, yet|strong=\"G1161\"* Justice|strong=\"G1349\"* has|strong=\"G3739\"* not|strong=\"G3756\"* allowed|strong=\"G1439\"* to|strong=\"G4314\"* live|strong=\"G2198\"*.”" + }, + { + "verseNum": 5, + "text": "However|strong=\"G3767\"* he|strong=\"G3588\"* shook off the|strong=\"G1519\"* creature|strong=\"G2342\"* into|strong=\"G1519\"* the|strong=\"G1519\"* fire|strong=\"G4442\"*, and|strong=\"G3767\"* wasn’t|strong=\"G3588\"* harmed." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* they|strong=\"G2532\"* expected that|strong=\"G3588\"* he|strong=\"G2532\"* would|strong=\"G3195\"* have|strong=\"G2532\"* swollen|strong=\"G4092\"* or|strong=\"G2228\"* fallen|strong=\"G2667\"* down|strong=\"G2667\"* dead|strong=\"G3498\"* suddenly, but|strong=\"G1161\"* when|strong=\"G1161\"* they|strong=\"G2532\"* watched|strong=\"G2334\"* for|strong=\"G1519\"* a|strong=\"G1096\"* long|strong=\"G4183\"* time|strong=\"G1909\"* and|strong=\"G2532\"* saw|strong=\"G2334\"* nothing|strong=\"G3367\"* bad happen|strong=\"G1096\"* to|strong=\"G1519\"* him|strong=\"G3588\"*, they|strong=\"G2532\"* changed|strong=\"G3328\"* their|strong=\"G2532\"* minds|strong=\"G3328\"* and|strong=\"G2532\"* said|strong=\"G3004\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G1510\"* a|strong=\"G1096\"* god|strong=\"G2316\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* neighborhood|strong=\"G4012\"* of|strong=\"G4012\"* that|strong=\"G3739\"* place|strong=\"G5117\"* were|strong=\"G3588\"* lands|strong=\"G5564\"* belonging|strong=\"G5225\"* to|strong=\"G1722\"* the|strong=\"G1722\"* chief|strong=\"G4413\"* man|strong=\"G4413\"* of|strong=\"G4012\"* the|strong=\"G1722\"* island|strong=\"G3520\"*, named|strong=\"G3686\"* Publius|strong=\"G4196\"*, who|strong=\"G3739\"* received us|strong=\"G3579\"* and|strong=\"G1161\"* courteously|strong=\"G5390\"* entertained|strong=\"G3579\"* us|strong=\"G3579\"* for|strong=\"G4012\"* three|strong=\"G5140\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G2532\"* Publius|strong=\"G4196\"* lay|strong=\"G2007\"* sick|strong=\"G2621\"* of|strong=\"G2532\"* fever|strong=\"G4446\"* and|strong=\"G2532\"* dysentery|strong=\"G1420\"*. Paul|strong=\"G3972\"* entered|strong=\"G1525\"* in|strong=\"G1525\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, prayed|strong=\"G4336\"*, and|strong=\"G2532\"* laying|strong=\"G2007\"* his|strong=\"G2007\"* hands|strong=\"G5495\"* on|strong=\"G5495\"* him|strong=\"G3588\"*, healed|strong=\"G2390\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"G2532\"* when|strong=\"G1161\"* this|strong=\"G3778\"* was|strong=\"G1096\"* done|strong=\"G1096\"*, the|strong=\"G1722\"* rest|strong=\"G3062\"* also|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2192\"* diseases in|strong=\"G1722\"* the|strong=\"G1722\"* island|strong=\"G3520\"* came|strong=\"G4334\"* and|strong=\"G2532\"* were|strong=\"G3588\"* cured|strong=\"G2323\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* also|strong=\"G2532\"* honored|strong=\"G5091\"* us|strong=\"G2249\"* with|strong=\"G4314\"* many|strong=\"G4183\"* honors|strong=\"G5091\"*; and|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* sailed|strong=\"G2249\"*, they|strong=\"G2532\"* put|strong=\"G2007\"* on|strong=\"G2007\"* board the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3739\"* we|strong=\"G2249\"* needed|strong=\"G5532\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* months|strong=\"G3376\"*, we|strong=\"G1161\"* set sail in|strong=\"G1722\"* a|strong=\"G1722\"* ship|strong=\"G4143\"* of|strong=\"G1722\"* Alexandria which|strong=\"G3588\"* had|strong=\"G3588\"* wintered|strong=\"G3914\"* in|strong=\"G1722\"* the|strong=\"G1722\"* island|strong=\"G3520\"*, whose|strong=\"G3588\"* figurehead|strong=\"G3902\"* was|strong=\"G3588\"* “The|strong=\"G1722\"* Twin|strong=\"G1359\"* Brothers|strong=\"G1359\"*.”" + }, + { + "verseNum": 12, + "text": "Touching at|strong=\"G1519\"* Syracuse|strong=\"G4946\"*, we|strong=\"G2532\"* stayed|strong=\"G1961\"* there|strong=\"G2532\"* three|strong=\"G5140\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"G2064\"* there|strong=\"G2532\"* we|strong=\"G2532\"* circled around|strong=\"G4022\"* and|strong=\"G2532\"* arrived|strong=\"G2064\"* at|strong=\"G1519\"* Rhegium|strong=\"G4484\"*. After|strong=\"G3326\"* one|strong=\"G1520\"* day|strong=\"G2250\"*, a|strong=\"G2532\"* south|strong=\"G3558\"* wind|strong=\"G3558\"* sprang|strong=\"G1920\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* second|strong=\"G1206\"* day|strong=\"G2250\"* we|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Puteoli|strong=\"G4223\"*," + }, + { + "verseNum": 14, + "text": "where|strong=\"G3757\"* we|strong=\"G2532\"* found|strong=\"G2147\"* brothers,+ 28:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* and|strong=\"G2532\"* were|strong=\"G3588\"* entreated to|strong=\"G1519\"* stay|strong=\"G1961\"* with|strong=\"G3844\"* them|strong=\"G3588\"* for|strong=\"G1519\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*. So|strong=\"G3779\"* we|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Rome|strong=\"G4516\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"G2064\"* there|strong=\"G2532\"* the|strong=\"G2532\"* brothers, when|strong=\"G2532\"* they|strong=\"G2532\"* heard of|strong=\"G4012\"* us|strong=\"G1519\"*, came|strong=\"G2064\"* to|strong=\"G1519\"* meet|strong=\"G3588\"* us|strong=\"G1519\"* as|strong=\"G1519\"* far|strong=\"G3588\"* as|strong=\"G1519\"* The|strong=\"G2532\"* Market|strong=\"G5410\"* of|strong=\"G4012\"* Appius and|strong=\"G2532\"* The|strong=\"G2532\"* Three|strong=\"G5140\"* Taverns|strong=\"G4999\"*. When|strong=\"G2532\"* Paul|strong=\"G3972\"* saw|strong=\"G3708\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* thanked|strong=\"G2168\"* God|strong=\"G2316\"* and|strong=\"G2532\"* took|strong=\"G2983\"* courage|strong=\"G2294\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G3753\"* we|strong=\"G1161\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* Rome|strong=\"G4516\"*, the|strong=\"G1519\"* centurion delivered the|strong=\"G1519\"* prisoners to|strong=\"G1519\"* the|strong=\"G1519\"* captain of|strong=\"G2596\"* the|strong=\"G1519\"* guard|strong=\"G5442\"*, but|strong=\"G1161\"* Paul|strong=\"G3972\"* was|strong=\"G3588\"* allowed|strong=\"G2010\"* to|strong=\"G1519\"* stay|strong=\"G3306\"* by|strong=\"G2596\"* himself|strong=\"G1438\"* with|strong=\"G4862\"* the|strong=\"G1519\"* soldier|strong=\"G4757\"* who|strong=\"G3588\"* guarded|strong=\"G5442\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"G3326\"* three|strong=\"G5140\"* days|strong=\"G2250\"* Paul|strong=\"G1510\"* called|strong=\"G3004\"* together|strong=\"G4905\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* the|strong=\"G1519\"* leaders|strong=\"G4413\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Jews|strong=\"G2453\"*. When|strong=\"G1161\"* they|strong=\"G1161\"* had|strong=\"G1510\"* come|strong=\"G1096\"* together|strong=\"G4905\"*, he|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “I|strong=\"G1473\"*, brothers, though|strong=\"G1161\"* I|strong=\"G1473\"* had|strong=\"G1510\"* done|strong=\"G4160\"* nothing|strong=\"G3762\"* against|strong=\"G4314\"* the|strong=\"G1519\"* people|strong=\"G2992\"* or|strong=\"G2228\"* the|strong=\"G1519\"* customs|strong=\"G1485\"* of|strong=\"G1537\"* our|strong=\"G3326\"* fathers|strong=\"G3971\"*, still was|strong=\"G1510\"* delivered|strong=\"G3860\"* prisoner|strong=\"G1198\"* from|strong=\"G1537\"* Jerusalem|strong=\"G2414\"* into|strong=\"G1519\"* the|strong=\"G1519\"* hands|strong=\"G5495\"* of|strong=\"G1537\"* the|strong=\"G1519\"* Romans|strong=\"G4514\"*," + }, + { + "verseNum": 18, + "text": "who|strong=\"G3588\"*, when|strong=\"G1722\"* they|strong=\"G3588\"* had|strong=\"G3588\"* examined me|strong=\"G1473\"*, desired to|strong=\"G1722\"* set me|strong=\"G1473\"* free|strong=\"G1722\"*, because|strong=\"G1223\"* there|strong=\"G1722\"* was|strong=\"G3588\"* no|strong=\"G3367\"* cause|strong=\"G1223\"* of|strong=\"G1223\"* death|strong=\"G2288\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* Jews|strong=\"G2453\"* spoke against|strong=\"G2723\"* it|strong=\"G1161\"*, I|strong=\"G1473\"* was|strong=\"G3588\"* constrained to|strong=\"G3756\"* appeal|strong=\"G1941\"* to|strong=\"G3756\"* Caesar|strong=\"G2541\"*, not|strong=\"G3756\"* that|strong=\"G3588\"* I|strong=\"G1473\"* had|strong=\"G2192\"* anything|strong=\"G5100\"* about|strong=\"G5613\"* which|strong=\"G3588\"* to|strong=\"G3756\"* accuse|strong=\"G2723\"* my|strong=\"G1473\"* nation|strong=\"G1484\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* therefore|strong=\"G3767\"* I|strong=\"G2532\"* asked|strong=\"G3870\"* to|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G2532\"* speak|strong=\"G4354\"* with|strong=\"G1223\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G1223\"* Israel|strong=\"G2474\"* I|strong=\"G2532\"* am|strong=\"G2532\"* bound with|strong=\"G1223\"* this|strong=\"G3778\"* chain.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"G1161\"* said|strong=\"G3004\"* to|strong=\"G4314\"* him|strong=\"G3588\"*, “We|strong=\"G2249\"* neither|strong=\"G3777\"* received|strong=\"G1209\"* letters|strong=\"G1121\"* from|strong=\"G3588\"* Judea|strong=\"G2449\"* concerning|strong=\"G4012\"* you|strong=\"G4771\"*, nor|strong=\"G3777\"* did|strong=\"G5100\"* any|strong=\"G5100\"* of|strong=\"G4012\"* the|strong=\"G1161\"* brothers come|strong=\"G3854\"* here|strong=\"G3854\"* and|strong=\"G1161\"* report or|strong=\"G2228\"* speak|strong=\"G2980\"* any|strong=\"G5100\"* evil|strong=\"G4190\"* of|strong=\"G4012\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* desire to|strong=\"G1161\"* hear from|strong=\"G3844\"* you|strong=\"G4771\"* what|strong=\"G3739\"* you|strong=\"G4771\"* think|strong=\"G5426\"*. For|strong=\"G1063\"*, as|strong=\"G1161\"* concerning|strong=\"G4012\"* this|strong=\"G3778\"* sect, it|strong=\"G3754\"* is|strong=\"G1510\"* known|strong=\"G1110\"* to|strong=\"G1161\"* us|strong=\"G2249\"* that|strong=\"G3754\"* everywhere|strong=\"G3837\"* it|strong=\"G3754\"* is|strong=\"G1510\"* spoken against|strong=\"G4012\"*.”" + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* they|strong=\"G2532\"* had|strong=\"G2424\"* appointed|strong=\"G5021\"* him|strong=\"G3588\"* a|strong=\"G2532\"* day|strong=\"G2250\"*, many|strong=\"G4183\"* people|strong=\"G2240\"* came|strong=\"G2064\"* to|strong=\"G1519\"* him|strong=\"G3588\"* at|strong=\"G1519\"* his|strong=\"G1438\"* lodging|strong=\"G3578\"*. He|strong=\"G2532\"* explained|strong=\"G1620\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, testifying|strong=\"G1263\"* about|strong=\"G4012\"* God|strong=\"G2316\"*’s Kingdom, and|strong=\"G2532\"* persuading|strong=\"G3982\"* them|strong=\"G3588\"* concerning|strong=\"G4012\"* Jesus|strong=\"G2424\"*, both|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G4012\"* Moses|strong=\"G3475\"* and|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*, from|strong=\"G2064\"* morning|strong=\"G4404\"* until|strong=\"G2193\"* evening|strong=\"G2073\"*." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G3588\"* believed|strong=\"G3982\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken|strong=\"G3004\"*, and|strong=\"G2532\"* some|strong=\"G3588\"* disbelieved." + }, + { + "verseNum": 25, + "text": "When|strong=\"G1161\"* they|strong=\"G1161\"* didn’t|strong=\"G3588\"* agree|strong=\"G1510\"* among|strong=\"G4314\"* themselves|strong=\"G1510\"*, they|strong=\"G1161\"* departed after|strong=\"G1161\"* Paul|strong=\"G3972\"* had|strong=\"G3972\"* spoken|strong=\"G2980\"* one|strong=\"G1520\"* message|strong=\"G4487\"*: “The|strong=\"G1161\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* spoke|strong=\"G2980\"* rightly|strong=\"G2573\"* through|strong=\"G1223\"* Isaiah|strong=\"G2268\"* the|strong=\"G1161\"* prophet|strong=\"G4396\"* to|strong=\"G4314\"* our|strong=\"G1223\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 26, + "text": "saying|strong=\"G3004\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* people|strong=\"G2992\"*’s heart|strong=\"G2588\"* has|strong=\"G3778\"* grown callous." + }, + { + "verseNum": 28, + "text": "“Be|strong=\"G1510\"* it|strong=\"G2532\"* known|strong=\"G1110\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* you|strong=\"G4771\"* that|strong=\"G3754\"* the|strong=\"G2532\"* salvation|strong=\"G4992\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* sent|strong=\"G2316\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* listen.”" + }, + { + "verseNum": 29, + "text": "When he had said these words, the Jews departed, having a great dispute among themselves.+ 28:29 NU omits verse 29.*" + }, + { + "verseNum": 30, + "text": "Paul|strong=\"G1696\"* stayed|strong=\"G1696\"* two|strong=\"G1333\"* whole|strong=\"G3650\"* years|strong=\"G1333\"* in|strong=\"G1722\"* his|strong=\"G3956\"* own|strong=\"G2398\"* rented|strong=\"G3410\"* house|strong=\"G3410\"* and|strong=\"G2532\"* received all|strong=\"G3956\"* who|strong=\"G3588\"* were|strong=\"G3588\"* coming to|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 31, + "text": "preaching|strong=\"G2784\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* Kingdom and|strong=\"G2532\"* teaching|strong=\"G1321\"* the|strong=\"G2532\"* things|strong=\"G3956\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G3326\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*, without|strong=\"G2532\"* hindrance." + } + ] + } + ] + }, + { + "name": "Romans", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G1519\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* called|strong=\"G2822\"* to|strong=\"G1519\"* be|strong=\"G1519\"* an|strong=\"G1519\"* apostle, set apart for|strong=\"G1519\"* the|strong=\"G1519\"* Good|strong=\"G2098\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 2, + "text": "which|strong=\"G3739\"* he|strong=\"G3739\"* promised|strong=\"G4279\"* before|strong=\"G1722\"* through|strong=\"G1223\"* his|strong=\"G1223\"* prophets|strong=\"G4396\"* in|strong=\"G1722\"* the|strong=\"G1722\"* holy Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 3, + "text": "concerning|strong=\"G4012\"* his|strong=\"G4012\"* Son|strong=\"G5207\"*, who|strong=\"G3588\"* was|strong=\"G1096\"* born|strong=\"G1096\"* of|strong=\"G1537\"* the|strong=\"G1537\"* offspring+ 1:3 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3588\"* was|strong=\"G3588\"* declared|strong=\"G3724\"* to|strong=\"G2596\"* be|strong=\"G2316\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"* with|strong=\"G1722\"* power|strong=\"G1411\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* holiness, by|strong=\"G1722\"* the|strong=\"G1722\"* resurrection from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* received|strong=\"G2983\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* apostleship for|strong=\"G1519\"* obedience|strong=\"G5218\"* of|strong=\"G1223\"* faith|strong=\"G4102\"* among|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* for|strong=\"G1519\"* his|strong=\"G3956\"* name|strong=\"G3686\"*’s sake|strong=\"G1223\"*;" + }, + { + "verseNum": 6, + "text": "among|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G1510\"* also|strong=\"G2532\"* called|strong=\"G2822\"* to|strong=\"G2532\"* belong|strong=\"G1510\"* to|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 7, + "text": "to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*, beloved of|strong=\"G2316\"* God|strong=\"G2316\"*, called|strong=\"G2822\"* to|strong=\"G2532\"* be|strong=\"G1510\"* saints: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "First|strong=\"G4413\"*, I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* for|strong=\"G3754\"* all|strong=\"G3956\"* of|strong=\"G4012\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* your|strong=\"G3650\"* faith|strong=\"G4102\"* is|strong=\"G3588\"* proclaimed|strong=\"G2605\"* throughout|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* my|strong=\"G1722\"* witness|strong=\"G3144\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"* in|strong=\"G1722\"* my|strong=\"G1722\"* spirit|strong=\"G4151\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G5207\"* his|strong=\"G1722\"* Son|strong=\"G5207\"*, how|strong=\"G5613\"* unceasingly I|strong=\"G1473\"* make|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G5207\"* you|strong=\"G5210\"* always in|strong=\"G1722\"* my|strong=\"G1722\"* prayers," + }, + { + "verseNum": 10, + "text": "requesting, if|strong=\"G1487\"* by|strong=\"G1722\"* any|strong=\"G1487\"* means|strong=\"G1513\"* now|strong=\"G2235\"* at|strong=\"G1722\"* last|strong=\"G4218\"* I|strong=\"G1473\"* may|strong=\"G2316\"* be|strong=\"G2316\"* prospered by|strong=\"G1722\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* long|strong=\"G1971\"* to|strong=\"G1519\"* see|strong=\"G3708\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* I|strong=\"G1063\"* may|strong=\"G2443\"* impart|strong=\"G3330\"* to|strong=\"G1519\"* you|strong=\"G5210\"* some|strong=\"G5100\"* spiritual|strong=\"G4152\"* gift|strong=\"G5486\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* end|strong=\"G1519\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1519\"* established|strong=\"G4741\"*;" + }, + { + "verseNum": 12, + "text": "that|strong=\"G3588\"* is|strong=\"G1510\"*, that|strong=\"G3588\"* I|strong=\"G1473\"* with|strong=\"G1722\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G1510\"* encouraged|strong=\"G4837\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, each|strong=\"G1223\"* of|strong=\"G1223\"* us|strong=\"G1722\"* by|strong=\"G1223\"* the|strong=\"G1722\"* other|strong=\"G1161\"*’s faith|strong=\"G4102\"*, both|strong=\"G2532\"* yours|strong=\"G4771\"* and|strong=\"G2532\"* mine|strong=\"G1473\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G4314\"* have|strong=\"G2192\"* you|strong=\"G5210\"* unaware|strong=\"G3756\"*, brothers, that|strong=\"G3754\"* I|strong=\"G2532\"* often|strong=\"G4178\"* planned|strong=\"G4388\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* (and|strong=\"G2532\"* was|strong=\"G3588\"* hindered|strong=\"G2967\"* so|strong=\"G2443\"* far|strong=\"G3588\"*), that|strong=\"G3754\"* I|strong=\"G2532\"* might|strong=\"G2532\"* have|strong=\"G2192\"* some|strong=\"G5100\"* fruit|strong=\"G2590\"* among|strong=\"G1722\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* among|strong=\"G1722\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* am|strong=\"G1510\"* debtor|strong=\"G3781\"* both|strong=\"G2532\"* to|strong=\"G2532\"* Greeks|strong=\"G1672\"* and|strong=\"G2532\"* to|strong=\"G2532\"* foreigners, both|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* wise|strong=\"G4680\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* foolish|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3779\"* as|strong=\"G1722\"* much as|strong=\"G1722\"* is|strong=\"G3588\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, I|strong=\"G1473\"* am|strong=\"G1473\"* eager|strong=\"G4289\"* to|strong=\"G2532\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"* also|strong=\"G2532\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* am|strong=\"G1510\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G2316\"* Christ, because|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1063\"* salvation|strong=\"G4991\"* for|strong=\"G1063\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* it|strong=\"G1161\"* is|strong=\"G3588\"* revealed God|strong=\"G2316\"*’s righteousness|strong=\"G1343\"* from|strong=\"G1537\"* faith|strong=\"G4102\"* to|strong=\"G1519\"* faith|strong=\"G4102\"*. As|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “But|strong=\"G1161\"* the|strong=\"G1722\"* righteous|strong=\"G1342\"* shall|strong=\"G2316\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*.”+ 1:17 Habakkuk 2:4*" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* revealed from|strong=\"G2532\"* heaven|strong=\"G3772\"* against|strong=\"G1909\"* all|strong=\"G3956\"* ungodliness and|strong=\"G2532\"* unrighteousness of|strong=\"G2316\"* men|strong=\"G3956\"* who|strong=\"G3588\"* suppress|strong=\"G2722\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* unrighteousness," + }, + { + "verseNum": 19, + "text": "because|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* known|strong=\"G1110\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* revealed|strong=\"G5319\"* it|strong=\"G1063\"* to|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* invisible things|strong=\"G3588\"* of|strong=\"G2532\"* him|strong=\"G3588\"* since|strong=\"G1063\"* the|strong=\"G2532\"* creation|strong=\"G2937\"* of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* are|strong=\"G1510\"* clearly|strong=\"G2529\"* seen|strong=\"G2529\"*, being|strong=\"G1510\"* perceived through|strong=\"G3539\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* made|strong=\"G4161\"*, even|strong=\"G2532\"* his|strong=\"G1438\"* everlasting power|strong=\"G1411\"* and|strong=\"G2532\"* divinity, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* without|strong=\"G2532\"* excuse." + }, + { + "verseNum": 21, + "text": "Because|strong=\"G1360\"* knowing|strong=\"G1097\"* God|strong=\"G2316\"*, they|strong=\"G2532\"* didn’t|strong=\"G3588\"* glorify|strong=\"G1392\"* him|strong=\"G3588\"* as|strong=\"G5613\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, but|strong=\"G2532\"* became|strong=\"G3154\"* vain|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* reasoning|strong=\"G1261\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* senseless heart|strong=\"G2588\"* was|strong=\"G3588\"* darkened|strong=\"G4654\"*." + }, + { + "verseNum": 22, + "text": "Professing|strong=\"G5335\"* themselves|strong=\"G5335\"* to|strong=\"G1510\"* be|strong=\"G1510\"* wise|strong=\"G4680\"*, they|strong=\"G1510\"* became|strong=\"G3471\"* fools|strong=\"G3471\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* traded the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G1722\"* incorruptible God|strong=\"G2316\"* for|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G2316\"* an|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2316\"* corruptible|strong=\"G5349\"* man|strong=\"G2316\"*, and|strong=\"G2532\"* of|strong=\"G2316\"* birds|strong=\"G4071\"*, four-footed|strong=\"G5074\"* animals|strong=\"G5074\"*, and|strong=\"G2532\"* creeping|strong=\"G2532\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G1352\"* God|strong=\"G2316\"* also|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2316\"* their|strong=\"G1438\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* uncleanness, that|strong=\"G3588\"* their|strong=\"G1438\"* bodies|strong=\"G4983\"* should|strong=\"G2316\"* be|strong=\"G1519\"* dishonored among|strong=\"G1722\"* themselves|strong=\"G1438\"*;" + }, + { + "verseNum": 25, + "text": "who|strong=\"G3739\"* exchanged|strong=\"G3337\"* the|strong=\"G1722\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1519\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*, and|strong=\"G2532\"* worshiped|strong=\"G4573\"* and|strong=\"G2532\"* served|strong=\"G3000\"* the|strong=\"G1722\"* creature|strong=\"G2937\"* rather|strong=\"G3844\"* than|strong=\"G3844\"* the|strong=\"G1722\"* Creator|strong=\"G2936\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* blessed|strong=\"G2128\"* forever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* reason|strong=\"G1223\"*, God|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* vile passions|strong=\"G3806\"*. For|strong=\"G1063\"* their|strong=\"G1438\"* women|strong=\"G2338\"* changed|strong=\"G3337\"* the|strong=\"G1519\"* natural|strong=\"G5446\"* function|strong=\"G5540\"* into|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* against|strong=\"G1519\"* nature|strong=\"G5449\"*." + }, + { + "verseNum": 27, + "text": "Likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G1722\"* men|strong=\"G3588\"*, leaving|strong=\"G3588\"* the|strong=\"G1722\"* natural|strong=\"G5446\"* function|strong=\"G5540\"* of|strong=\"G2532\"* the|strong=\"G1722\"* woman|strong=\"G1572\"*, burned|strong=\"G1722\"* in|strong=\"G1722\"* their|strong=\"G1438\"* lust toward|strong=\"G1519\"* one|strong=\"G3739\"* another|strong=\"G1438\"*, men|strong=\"G3588\"* doing|strong=\"G2716\"* what|strong=\"G3739\"* is|strong=\"G3588\"* inappropriate with|strong=\"G1722\"* men|strong=\"G3588\"*, and|strong=\"G2532\"* receiving in|strong=\"G1722\"* themselves|strong=\"G1438\"* the|strong=\"G1722\"* due|strong=\"G1163\"* penalty of|strong=\"G2532\"* their|strong=\"G1438\"* error|strong=\"G4106\"*." + }, + { + "verseNum": 28, + "text": "Even|strong=\"G2532\"* as|strong=\"G2531\"* they|strong=\"G2532\"* refused|strong=\"G3756\"* to|strong=\"G1519\"* have|strong=\"G2192\"* God|strong=\"G2316\"* in|strong=\"G1722\"* their|strong=\"G1438\"* knowledge|strong=\"G1922\"*, God|strong=\"G2316\"* gave|strong=\"G3860\"* them|strong=\"G3588\"* up|strong=\"G3860\"* to|strong=\"G1519\"* a|strong=\"G2192\"* reprobate mind|strong=\"G3563\"*, to|strong=\"G1519\"* do|strong=\"G4160\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3756\"* fitting;" + }, + { + "verseNum": 29, + "text": "being filled|strong=\"G4137\"* with|strong=\"G4137\"* all|strong=\"G3956\"* unrighteousness, sexual immorality, wickedness|strong=\"G4189\"*, covetousness|strong=\"G4124\"*, malice|strong=\"G2549\"*; full|strong=\"G3324\"* of|strong=\"G3956\"* envy|strong=\"G5355\"*, murder|strong=\"G5408\"*, strife|strong=\"G2054\"*, deceit|strong=\"G1388\"*, evil|strong=\"G2549\"* habits, secret slanderers," + }, + { + "verseNum": 30, + "text": "backbiters|strong=\"G2637\"*, hateful to|strong=\"G2556\"* God|strong=\"G2319\"*, insolent|strong=\"G5197\"*, arrogant|strong=\"G5244\"*, boastful, inventors|strong=\"G2182\"* of|strong=\"G1118\"* evil|strong=\"G2556\"* things|strong=\"G2556\"*, disobedient to|strong=\"G2556\"* parents|strong=\"G1118\"*," + }, + { + "verseNum": 31, + "text": "without understanding, covenant breakers, without natural affection, unforgiving, unmerciful;" + }, + { + "verseNum": 32, + "text": "who|strong=\"G3588\"*, knowing|strong=\"G1921\"* the|strong=\"G2532\"* ordinance|strong=\"G1345\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3588\"* are|strong=\"G1510\"* worthy of|strong=\"G2316\"* death|strong=\"G2288\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* do|strong=\"G4160\"* the|strong=\"G2532\"* same|strong=\"G2532\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* approve|strong=\"G4909\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* them|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* you|strong=\"G3739\"* are|strong=\"G1510\"* without|strong=\"G3588\"* excuse, O|strong=\"G5599\"* man|strong=\"G3956\"*, whoever|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G1510\"* who|strong=\"G3739\"* judge|strong=\"G2919\"*. For|strong=\"G1063\"* in|strong=\"G1722\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G3739\"* judge|strong=\"G2919\"* another|strong=\"G2087\"*, you|strong=\"G3739\"* condemn|strong=\"G2632\"* yourself|strong=\"G4572\"*. For|strong=\"G1063\"* you|strong=\"G3739\"* who|strong=\"G3739\"* judge|strong=\"G2919\"* practice|strong=\"G4238\"* the|strong=\"G1722\"* same|strong=\"G3739\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 2, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* judgment|strong=\"G2917\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2596\"* truth against|strong=\"G2596\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Do|strong=\"G4160\"* you|strong=\"G4771\"* think|strong=\"G3049\"* this|strong=\"G3778\"*, O|strong=\"G5599\"* man|strong=\"G3778\"* who|strong=\"G3588\"* judges|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G3588\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3778\"*, and|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G2532\"* same|strong=\"G3778\"*, that|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G2316\"* escape|strong=\"G1628\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 4, + "text": "Or|strong=\"G2228\"* do|strong=\"G2532\"* you|strong=\"G4771\"* despise|strong=\"G2706\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* his|strong=\"G1519\"* goodness|strong=\"G5544\"*, forbearance, and|strong=\"G2532\"* patience|strong=\"G3115\"*, not|strong=\"G2532\"* knowing that|strong=\"G3754\"* the|strong=\"G2532\"* goodness|strong=\"G5544\"* of|strong=\"G2316\"* God|strong=\"G2316\"* leads|strong=\"G1519\"* you|strong=\"G4771\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*?" + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* according|strong=\"G2596\"* to|strong=\"G2532\"* your|strong=\"G2532\"* hardness|strong=\"G4643\"* and|strong=\"G2532\"* unrepentant heart|strong=\"G2588\"* you|strong=\"G4771\"* are|strong=\"G3588\"* treasuring up|strong=\"G2343\"* for|strong=\"G1161\"* yourself|strong=\"G4572\"* wrath|strong=\"G3709\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* wrath|strong=\"G3709\"*, revelation, and|strong=\"G2532\"* of|strong=\"G2250\"* the|strong=\"G1722\"* righteous|strong=\"G1341\"* judgment|strong=\"G1341\"* of|strong=\"G2250\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"* “will|strong=\"G3739\"* pay back to|strong=\"G2596\"* everyone|strong=\"G1538\"* according|strong=\"G2596\"* to|strong=\"G2596\"* their|strong=\"G2596\"* works|strong=\"G2041\"*:”+ 2:6 Psalms 62:12; Proverbs 24:12*" + }, + { + "verseNum": 7, + "text": "to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* by|strong=\"G2596\"* perseverance|strong=\"G5281\"* in|strong=\"G2596\"* well-doing seek|strong=\"G2212\"* for|strong=\"G2212\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* incorruptibility, eternal life|strong=\"G2222\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* self-seeking and|strong=\"G2532\"* don’t|strong=\"G3588\"* obey|strong=\"G3982\"* the|strong=\"G2532\"* truth, but|strong=\"G1161\"* obey|strong=\"G3982\"* unrighteousness, will|strong=\"G2532\"* be|strong=\"G2532\"* wrath|strong=\"G3709\"*, indignation|strong=\"G2372\"*," + }, + { + "verseNum": 9, + "text": "oppression, and|strong=\"G2532\"* anguish|strong=\"G2347\"* on|strong=\"G1909\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* of|strong=\"G2532\"* man|strong=\"G3956\"* who|strong=\"G3588\"* does|strong=\"G2716\"* evil|strong=\"G2556\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* go|strong=\"G2532\"* to|strong=\"G2532\"* every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* does|strong=\"G2038\"* good|strong=\"G3956\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Jew|strong=\"G2453\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Greek|strong=\"G1672\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* there|strong=\"G1063\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"* with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* sinned without|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* will|strong=\"G2532\"* also|strong=\"G2532\"* perish without|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*. As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2532\"* sinned under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* will|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* by|strong=\"G1223\"* the|strong=\"G1722\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* isn’t|strong=\"G3588\"* the|strong=\"G3588\"* hearers of|strong=\"G2316\"* the|strong=\"G3588\"* law|strong=\"G3551\"* who|strong=\"G3588\"* are|strong=\"G3588\"* righteous|strong=\"G1342\"* before|strong=\"G3844\"* God|strong=\"G2316\"*, but|strong=\"G1063\"* the|strong=\"G3588\"* doers|strong=\"G4163\"* of|strong=\"G2316\"* the|strong=\"G3588\"* law|strong=\"G3551\"* will|strong=\"G2316\"* be|strong=\"G3756\"* justified|strong=\"G1344\"*" + }, + { + "verseNum": 14, + "text": "(for|strong=\"G1063\"* when|strong=\"G3752\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G3588\"* law|strong=\"G3551\"* do|strong=\"G4160\"* by|strong=\"G1438\"* nature|strong=\"G5449\"* the|strong=\"G3588\"* things|strong=\"G3778\"* of|strong=\"G3551\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, these|strong=\"G3778\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, are|strong=\"G1510\"* a|strong=\"G2192\"* law|strong=\"G3551\"* to|strong=\"G3361\"* themselves|strong=\"G1438\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"G1722\"* that|strong=\"G3588\"* they|strong=\"G2532\"* show|strong=\"G1731\"* the|strong=\"G1722\"* work|strong=\"G2041\"* of|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* written|strong=\"G1123\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"*, their|strong=\"G2532\"* conscience|strong=\"G4893\"* testifying with|strong=\"G1722\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* thoughts|strong=\"G3053\"* among|strong=\"G1722\"* themselves|strong=\"G1722\"* accusing|strong=\"G2723\"* or|strong=\"G2228\"* else|strong=\"G2228\"* excusing them|strong=\"G3588\"*)" + }, + { + "verseNum": 16, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* when|strong=\"G3753\"* God|strong=\"G2316\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* secrets|strong=\"G2927\"* of|strong=\"G2250\"* men|strong=\"G3588\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* my|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, by|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "Indeed|strong=\"G2532\"* you|strong=\"G4771\"* bear|strong=\"G2532\"* the|strong=\"G1722\"* name|strong=\"G2028\"* of|strong=\"G2316\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, rest|strong=\"G1879\"* on|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, glory|strong=\"G2744\"* in|strong=\"G1722\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 18, + "text": "know|strong=\"G1097\"* his|strong=\"G2532\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* approve|strong=\"G1381\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* excellent|strong=\"G1308\"*, being|strong=\"G2532\"* instructed|strong=\"G2727\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G5037\"* are|strong=\"G1510\"* confident|strong=\"G3982\"* that|strong=\"G3588\"* you|strong=\"G1722\"* yourself|strong=\"G4572\"* are|strong=\"G1510\"* a|strong=\"G1722\"* guide|strong=\"G3595\"* of|strong=\"G1722\"* the|strong=\"G1722\"* blind|strong=\"G5185\"*, a|strong=\"G1722\"* light|strong=\"G5457\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 20, + "text": "a|strong=\"G2192\"* corrector|strong=\"G3810\"* of|strong=\"G2532\"* the|strong=\"G1722\"* foolish|strong=\"G2532\"*, a|strong=\"G2192\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* babies, having|strong=\"G2192\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* the|strong=\"G1722\"* form|strong=\"G3446\"* of|strong=\"G2532\"* knowledge|strong=\"G1108\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 21, + "text": "You|strong=\"G1321\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* teach|strong=\"G1321\"* another|strong=\"G2087\"*, don’t|strong=\"G3588\"* you|strong=\"G1321\"* teach|strong=\"G1321\"* yourself|strong=\"G4572\"*? You|strong=\"G1321\"* who|strong=\"G3588\"* preach|strong=\"G2784\"* that|strong=\"G3588\"* a|strong=\"G3756\"* man|strong=\"G3361\"* shouldn’t|strong=\"G3588\"* steal|strong=\"G2813\"*, do|strong=\"G3361\"* you|strong=\"G1321\"* steal|strong=\"G2813\"*?" + }, + { + "verseNum": 22, + "text": "You|strong=\"G3004\"* who|strong=\"G3588\"* say|strong=\"G3004\"* a|strong=\"G3004\"* man|strong=\"G3361\"* shouldn’t|strong=\"G3588\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*, do|strong=\"G3004\"* you|strong=\"G3004\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*? You|strong=\"G3004\"* who|strong=\"G3588\"* abhor idols|strong=\"G1497\"*, do|strong=\"G3004\"* you|strong=\"G3004\"* rob|strong=\"G2416\"* temples|strong=\"G2416\"*?" + }, + { + "verseNum": 23, + "text": "You|strong=\"G3739\"* who|strong=\"G3739\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, do|strong=\"G1223\"* you|strong=\"G3739\"* dishonor God|strong=\"G2316\"* by|strong=\"G1223\"* disobeying the|strong=\"G1722\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* “the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* God|strong=\"G2316\"* is|strong=\"G3588\"* blasphemed among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* because|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"*,”+ 2:24 Isaiah 52:5; Ezekiel 36:22* just|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* circumcision|strong=\"G4061\"* indeed|strong=\"G3303\"* profits|strong=\"G5623\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1096\"* doer of|strong=\"G3551\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G4771\"* are|strong=\"G1510\"* a|strong=\"G1096\"* transgressor|strong=\"G3848\"* of|strong=\"G3551\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, your|strong=\"G1437\"* circumcision|strong=\"G4061\"* has|strong=\"G1096\"* become|strong=\"G1096\"* uncircumcision." + }, + { + "verseNum": 26, + "text": "If|strong=\"G1437\"* therefore|strong=\"G3767\"* the|strong=\"G1519\"* uncircumcised keep|strong=\"G5442\"* the|strong=\"G1519\"* ordinances|strong=\"G1345\"* of|strong=\"G3551\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, won’t|strong=\"G3588\"* his|strong=\"G1519\"* uncircumcision be|strong=\"G3756\"* accounted|strong=\"G3049\"* as|strong=\"G1519\"* circumcision|strong=\"G4061\"*?" + }, + { + "verseNum": 27, + "text": "Won’t|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* physically|strong=\"G5449\"* uncircumcised, but|strong=\"G2532\"* fulfill the|strong=\"G2532\"* law|strong=\"G3551\"*, judge|strong=\"G2919\"* you|strong=\"G4771\"*, who|strong=\"G3588\"* with|strong=\"G1537\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* and|strong=\"G2532\"* circumcision|strong=\"G4061\"* are|strong=\"G3588\"* a|strong=\"G2532\"* transgressor|strong=\"G3848\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* is|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G1722\"* Jew|strong=\"G2453\"* who|strong=\"G3588\"* is|strong=\"G1510\"* one|strong=\"G3588\"* outwardly|strong=\"G1722\"*, neither|strong=\"G3761\"* is|strong=\"G1510\"* that|strong=\"G3588\"* circumcision|strong=\"G4061\"* which|strong=\"G3588\"* is|strong=\"G1510\"* outward|strong=\"G5318\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 29, + "text": "but|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"* who|strong=\"G3739\"* is|strong=\"G3588\"* one|strong=\"G3739\"* inwardly|strong=\"G2927\"*, and|strong=\"G2532\"* circumcision|strong=\"G4061\"* is|strong=\"G3588\"* that|strong=\"G3739\"* of|strong=\"G1537\"* the|strong=\"G1722\"* heart|strong=\"G2588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* letter|strong=\"G1121\"*; whose|strong=\"G3739\"* praise|strong=\"G1868\"* is|strong=\"G3588\"* not|strong=\"G3756\"* from|strong=\"G1537\"* men|strong=\"G3588\"*, but|strong=\"G2532\"* from|strong=\"G1537\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G3767\"* what|strong=\"G5101\"* advantage|strong=\"G4053\"* does|strong=\"G5101\"* the|strong=\"G3588\"* Jew|strong=\"G2453\"* have|strong=\"G5101\"*? Or|strong=\"G2228\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G3588\"* profit|strong=\"G5622\"* of|strong=\"G2228\"* circumcision|strong=\"G4061\"*?" + }, + { + "verseNum": 2, + "text": "Much|strong=\"G4183\"* in|strong=\"G2596\"* every|strong=\"G3956\"* way|strong=\"G5158\"*! Because|strong=\"G3754\"* first|strong=\"G4413\"* of|strong=\"G2316\"* all|strong=\"G3956\"*, they|strong=\"G3588\"* were|strong=\"G3588\"* entrusted|strong=\"G4100\"* with|strong=\"G2316\"* the|strong=\"G3956\"* revelations of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* if|strong=\"G1487\"* some|strong=\"G5100\"* were|strong=\"G3588\"* without|strong=\"G3361\"* faith|strong=\"G4102\"*? Will|strong=\"G2316\"* their|strong=\"G3588\"* lack|strong=\"G5101\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* nullify|strong=\"G2673\"* the|strong=\"G3588\"* faithfulness|strong=\"G4102\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 4, + "text": "May|strong=\"G2532\"* it|strong=\"G2532\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! Yes|strong=\"G1161\"*, let|strong=\"G1096\"* God|strong=\"G2316\"* be|strong=\"G1096\"* found|strong=\"G1096\"* true|strong=\"G3588\"*, but|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* a|strong=\"G1096\"* liar|strong=\"G5583\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* our|strong=\"G2316\"* unrighteousness commends|strong=\"G4921\"* the|strong=\"G1161\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, what|strong=\"G5101\"* will|strong=\"G2316\"* we|strong=\"G2249\"* say|strong=\"G3004\"*? Is|strong=\"G3588\"* God|strong=\"G2316\"* unrighteous who|strong=\"G5101\"* inflicts|strong=\"G2018\"* wrath|strong=\"G3709\"*? I|strong=\"G1473\"* speak|strong=\"G3004\"* like|strong=\"G2596\"* men|strong=\"G3588\"* do|strong=\"G5101\"*." + }, + { + "verseNum": 6, + "text": "May|strong=\"G2889\"* it|strong=\"G1893\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! For|strong=\"G2316\"* then|strong=\"G1893\"* how|strong=\"G4459\"* will|strong=\"G2316\"* God|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G3588\"* world|strong=\"G2889\"*?" + }, + { + "verseNum": 7, + "text": "For|strong=\"G1519\"* if|strong=\"G1487\"* the|strong=\"G1722\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"* through|strong=\"G1722\"* my|strong=\"G1699\"* lie|strong=\"G5582\"* abounded|strong=\"G4052\"* to|strong=\"G1519\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*, why|strong=\"G5101\"* am|strong=\"G2504\"* I|strong=\"G2504\"* also|strong=\"G2504\"* still|strong=\"G2089\"* judged|strong=\"G2919\"* as|strong=\"G5613\"* a|strong=\"G5613\"* sinner?" + }, + { + "verseNum": 8, + "text": "Why|strong=\"G2443\"* not|strong=\"G3361\"* (as|strong=\"G2531\"* we|strong=\"G2249\"* are|strong=\"G1510\"* slanderously reported|strong=\"G3004\"*, and|strong=\"G2532\"* as|strong=\"G2531\"* some|strong=\"G5100\"* affirm|strong=\"G5100\"* that|strong=\"G3754\"* we|strong=\"G2249\"* say|strong=\"G3004\"*), “Let|strong=\"G1510\"*’s do|strong=\"G4160\"* evil|strong=\"G2556\"*, that|strong=\"G3754\"* good|strong=\"G3588\"* may|strong=\"G2532\"* come|strong=\"G2064\"*?” Those|strong=\"G3588\"* who|strong=\"G3739\"* say|strong=\"G3004\"* so|strong=\"G2443\"* are|strong=\"G1510\"* justly condemned|strong=\"G2917\"*." + }, + { + "verseNum": 9, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? Are|strong=\"G1510\"* we|strong=\"G1063\"* better|strong=\"G4284\"* than|strong=\"G2532\"* they|strong=\"G2532\"*? No|strong=\"G3756\"*, in|strong=\"G2532\"* no|strong=\"G3756\"* way|strong=\"G3956\"*. For|strong=\"G1063\"* we|strong=\"G1063\"* previously warned both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"* that|strong=\"G3956\"* they|strong=\"G2532\"* are|strong=\"G1510\"* all|strong=\"G3956\"* under|strong=\"G5259\"* sin." + }, + { + "verseNum": 10, + "text": "As|strong=\"G2531\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 11, + "text": "There|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* one|strong=\"G3588\"* who|strong=\"G3588\"* understands|strong=\"G4920\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"G3588\"* have|strong=\"G1510\"* all|strong=\"G3956\"* turned|strong=\"G1578\"* away|strong=\"G1578\"*." + }, + { + "verseNum": 13, + "text": "“Their|strong=\"G3588\"* throat|strong=\"G2995\"* is|strong=\"G3588\"* an|strong=\"G1100\"* open tomb." + }, + { + "verseNum": 14, + "text": "“Their|strong=\"G2532\"* mouth|strong=\"G4750\"* is|strong=\"G3588\"* full|strong=\"G1073\"* of|strong=\"G2532\"* cursing and|strong=\"G2532\"* bitterness|strong=\"G4088\"*.”+ 3:14 Psalms 10:7*" + }, + { + "verseNum": 15, + "text": "“Their|strong=\"G3588\"* feet|strong=\"G4228\"* are|strong=\"G3588\"* swift|strong=\"G3691\"* to|strong=\"G3588\"* shed|strong=\"G1632\"* blood." + }, + { + "verseNum": 16, + "text": "Destruction|strong=\"G4938\"* and|strong=\"G2532\"* misery|strong=\"G5004\"* are|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* ways|strong=\"G3598\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2532\"* peace|strong=\"G1515\"*, they|strong=\"G2532\"* haven’t known|strong=\"G1097\"*.”+ 3:17 Isaiah 59:7-8*" + }, + { + "verseNum": 18, + "text": "“There|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* before|strong=\"G3588\"* their|strong=\"G3588\"* eyes|strong=\"G3788\"*.”+ 3:18 Psalms 36:1*" + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G3745\"* things|strong=\"G3956\"* the|strong=\"G1722\"* law|strong=\"G3551\"* says|strong=\"G3004\"*, it|strong=\"G2532\"* speaks|strong=\"G2980\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, that|strong=\"G3754\"* every|strong=\"G3956\"* mouth|strong=\"G4750\"* may|strong=\"G2532\"* be|strong=\"G1096\"* closed|strong=\"G5420\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G2889\"* may|strong=\"G2532\"* be|strong=\"G1096\"* brought|strong=\"G1096\"* under|strong=\"G1722\"* the|strong=\"G1722\"* judgment of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Because|strong=\"G1223\"* by|strong=\"G1223\"* the|strong=\"G3956\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, no|strong=\"G3756\"* flesh|strong=\"G4561\"* will|strong=\"G3956\"* be|strong=\"G3756\"* justified|strong=\"G1344\"* in|strong=\"G3956\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*; for|strong=\"G1063\"* through|strong=\"G1223\"* the|strong=\"G3956\"* law|strong=\"G3551\"* comes|strong=\"G1922\"* the|strong=\"G3956\"* knowledge|strong=\"G1922\"* of|strong=\"G1537\"* sin." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, a|strong=\"G2532\"* righteousness|strong=\"G1343\"* of|strong=\"G5259\"* God|strong=\"G2316\"* has|strong=\"G2316\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"*, being|strong=\"G2532\"* testified|strong=\"G3140\"* by|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"* and|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*;" + }, + { + "verseNum": 22, + "text": "even|strong=\"G1161\"* the|strong=\"G1519\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* God|strong=\"G2316\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* all|strong=\"G3956\"* and|strong=\"G1161\"* on|strong=\"G1519\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*. For|strong=\"G1063\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* distinction|strong=\"G1293\"*," + }, + { + "verseNum": 23, + "text": "for|strong=\"G1063\"* all|strong=\"G3956\"* have|strong=\"G2532\"* sinned, and|strong=\"G2532\"* fall|strong=\"G5302\"* short|strong=\"G5302\"* of|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 24, + "text": "being|strong=\"G5547\"* justified|strong=\"G1344\"* freely|strong=\"G1432\"* by|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"* through|strong=\"G1223\"* the|strong=\"G1722\"* redemption that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 25, + "text": "whom|strong=\"G3739\"* God|strong=\"G2316\"* sent|strong=\"G2316\"* to|strong=\"G1519\"* be|strong=\"G1519\"* an|strong=\"G1519\"* atoning sacrifice+ 3:25 or, a propitiation* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* his|strong=\"G1223\"* blood, for|strong=\"G1519\"* a|strong=\"G1519\"* demonstration|strong=\"G1732\"* of|strong=\"G1223\"* his|strong=\"G1223\"* righteousness|strong=\"G1343\"* through|strong=\"G1223\"* the|strong=\"G1722\"* passing over|strong=\"G1519\"* of|strong=\"G1223\"* prior sins, in|strong=\"G1722\"* God|strong=\"G2316\"*’s forbearance;" + }, + { + "verseNum": 26, + "text": "to|strong=\"G1519\"* demonstrate|strong=\"G1732\"* his|strong=\"G1519\"* righteousness|strong=\"G1343\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"*, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* himself|strong=\"G1519\"* be|strong=\"G1510\"* just|strong=\"G1342\"* and|strong=\"G2532\"* the|strong=\"G1722\"* justifier|strong=\"G1344\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2316\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "Where|strong=\"G4226\"* then|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G1223\"* boasting|strong=\"G2746\"*? It|strong=\"G1223\"* is|strong=\"G3588\"* excluded|strong=\"G1576\"*. By|strong=\"G1223\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G1223\"* law|strong=\"G3551\"*? Of|strong=\"G1223\"* works|strong=\"G2041\"*? No|strong=\"G3780\"*, but|strong=\"G3767\"* by|strong=\"G1223\"* a|strong=\"G1223\"* law|strong=\"G3551\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G1063\"* maintain|strong=\"G3049\"* therefore|strong=\"G1063\"* that|strong=\"G1063\"* a|strong=\"G2041\"* man is|strong=\"G4102\"* justified|strong=\"G1344\"* by|strong=\"G1344\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G5565\"* the|strong=\"G1063\"* works|strong=\"G2041\"* of|strong=\"G3551\"* the|strong=\"G1063\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 29, + "text": "Or|strong=\"G2228\"* is|strong=\"G3588\"* God|strong=\"G2316\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*? Isn’t|strong=\"G3588\"* he|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"*? Yes|strong=\"G3483\"*, of|strong=\"G2316\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"*," + }, + { + "verseNum": 30, + "text": "since|strong=\"G1537\"* indeed|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* God|strong=\"G2316\"* who|strong=\"G3739\"* will|strong=\"G2316\"* justify|strong=\"G1344\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* the|strong=\"G2532\"* uncircumcised through|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 31, + "text": "Do|strong=\"G1096\"* we|strong=\"G3767\"* then|strong=\"G3767\"* nullify|strong=\"G2673\"* the|strong=\"G1223\"* law|strong=\"G3551\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*? May|strong=\"G4102\"* it|strong=\"G1223\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! No|strong=\"G3361\"*, we|strong=\"G3767\"* establish|strong=\"G2476\"* the|strong=\"G1223\"* law|strong=\"G3551\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* will|strong=\"G5101\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3588\"* Abraham, our|strong=\"G2596\"* forefather|strong=\"G3962\"*, has|strong=\"G3962\"* found|strong=\"G2147\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* Abraham was|strong=\"G2316\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"*, he|strong=\"G1063\"* has|strong=\"G2192\"* something|strong=\"G2745\"* to|strong=\"G4314\"* boast|strong=\"G2745\"* about|strong=\"G4314\"*, but|strong=\"G1487\"* not|strong=\"G3756\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* does|strong=\"G5101\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* say|strong=\"G3004\"*? “Abraham|strong=\"G4100\"* believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1063\"* righteousness|strong=\"G1343\"*.”+ 4:3 Genesis 15:6*" + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* to|strong=\"G2596\"* him|strong=\"G3588\"* who|strong=\"G3588\"* works|strong=\"G2038\"*, the|strong=\"G1161\"* reward|strong=\"G3408\"* is|strong=\"G3588\"* not|strong=\"G3756\"* counted|strong=\"G3049\"* as|strong=\"G1161\"* grace|strong=\"G5485\"*, but|strong=\"G1161\"* as|strong=\"G1161\"* something owed." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* work|strong=\"G2038\"*, but|strong=\"G1161\"* believes|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* justifies|strong=\"G1344\"* the|strong=\"G1519\"* ungodly, his|strong=\"G1519\"* faith|strong=\"G4102\"* is|strong=\"G3588\"* accounted|strong=\"G3049\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 6, + "text": "Even|strong=\"G2532\"* as|strong=\"G2509\"* David|strong=\"G1138\"* also|strong=\"G2532\"* pronounces blessing|strong=\"G3108\"* on|strong=\"G3049\"* the|strong=\"G2532\"* man|strong=\"G3739\"* to|strong=\"G2532\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* counts righteousness|strong=\"G1343\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* works|strong=\"G2041\"*:" + }, + { + "verseNum": 7, + "text": "“Blessed|strong=\"G3107\"* are|strong=\"G3588\"* they|strong=\"G2532\"* whose|strong=\"G3739\"* iniquities are|strong=\"G3588\"* forgiven," + }, + { + "verseNum": 8, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3739\"* the|strong=\"G3739\"* man|strong=\"G3361\"* whom|strong=\"G3739\"* the|strong=\"G3739\"* Lord|strong=\"G2962\"* will|strong=\"G3739\"* by|strong=\"G3739\"* no|strong=\"G3756\"* means|strong=\"G3361\"* charge with|strong=\"G2962\"* sin.”+ 4:8 Psalms 32:1-2*" + }, + { + "verseNum": 9, + "text": "Is|strong=\"G3588\"* this|strong=\"G3778\"* blessing|strong=\"G3108\"* then|strong=\"G3767\"* pronounced only|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"*, or|strong=\"G2228\"* on|strong=\"G1909\"* the|strong=\"G2532\"* uncircumcised also|strong=\"G2532\"*? For|strong=\"G1063\"* we|strong=\"G1063\"* say|strong=\"G3004\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* Abraham for|strong=\"G1063\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 10, + "text": "How|strong=\"G4459\"* then|strong=\"G3767\"* was|strong=\"G1510\"* it|strong=\"G1510\"* counted|strong=\"G3049\"*? When|strong=\"G1722\"* he|strong=\"G1510\"* was|strong=\"G1510\"* in|strong=\"G1722\"* circumcision|strong=\"G4061\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* uncircumcision? Not|strong=\"G3756\"* in|strong=\"G1722\"* circumcision|strong=\"G4061\"*, but|strong=\"G3767\"* in|strong=\"G1722\"* uncircumcision." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* of|strong=\"G1223\"* circumcision|strong=\"G4061\"*, a|strong=\"G2532\"* seal|strong=\"G4973\"* of|strong=\"G1223\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* he|strong=\"G2532\"* had|strong=\"G2532\"* while|strong=\"G1722\"* he|strong=\"G2532\"* was|strong=\"G1510\"* in|strong=\"G1722\"* uncircumcision, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* the|strong=\"G1722\"* father|strong=\"G3962\"* of|strong=\"G1223\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, though|strong=\"G2532\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1722\"* uncircumcision, that|strong=\"G3588\"* righteousness|strong=\"G1343\"* might|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G1510\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G1722\"* father|strong=\"G3962\"* of|strong=\"G1537\"* circumcision|strong=\"G4061\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* not|strong=\"G3756\"* only|strong=\"G3440\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"*, but|strong=\"G2532\"* who|strong=\"G3588\"* also|strong=\"G2532\"* walk|strong=\"G4748\"* in|strong=\"G1722\"* the|strong=\"G1722\"* steps|strong=\"G2487\"* of|strong=\"G1537\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* of|strong=\"G1537\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Abraham, which|strong=\"G3588\"* he|strong=\"G2532\"* had|strong=\"G2532\"* in|strong=\"G1722\"* uncircumcision." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* the|strong=\"G1223\"* promise|strong=\"G1860\"* to|strong=\"G3756\"* Abraham and|strong=\"G4102\"* to|strong=\"G3756\"* his|strong=\"G1223\"* offspring that|strong=\"G3588\"* he|strong=\"G3588\"* would|strong=\"G1510\"* be|strong=\"G1510\"* heir|strong=\"G2818\"* of|strong=\"G1223\"* the|strong=\"G1223\"* world|strong=\"G2889\"* wasn’t|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, but|strong=\"G1063\"* through|strong=\"G1223\"* the|strong=\"G1223\"* righteousness|strong=\"G1343\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* are|strong=\"G3588\"* heirs|strong=\"G2818\"*, faith|strong=\"G4102\"* is|strong=\"G3588\"* made|strong=\"G2758\"* void|strong=\"G2758\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* is|strong=\"G3588\"* made|strong=\"G2758\"* of|strong=\"G1537\"* no|strong=\"G2532\"* effect|strong=\"G2673\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* law|strong=\"G3551\"* produces|strong=\"G2716\"* wrath|strong=\"G3709\"*; for|strong=\"G1063\"* where|strong=\"G3757\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*, neither|strong=\"G3761\"* is|strong=\"G1510\"* there|strong=\"G1161\"* disobedience." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* it|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G1519\"* grace|strong=\"G5485\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G2443\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* may|strong=\"G2532\"* be|strong=\"G1510\"* sure to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* offspring, not|strong=\"G3756\"* to|strong=\"G1519\"* that|strong=\"G2443\"* only|strong=\"G3440\"* which|strong=\"G3739\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, but|strong=\"G2532\"* to|strong=\"G1519\"* that|strong=\"G2443\"* also|strong=\"G2532\"* which|strong=\"G3739\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G1537\"* Abraham, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* father|strong=\"G3962\"* of|strong=\"G1537\"* us|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “I|strong=\"G3739\"* have|strong=\"G2532\"* made|strong=\"G5087\"* you|strong=\"G4771\"* a|strong=\"G5613\"* father|strong=\"G3962\"* of|strong=\"G2316\"* many|strong=\"G4183\"* nations|strong=\"G1484\"*.”+ 4:17 Genesis 17:5* This|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G2532\"* the|strong=\"G2532\"* presence|strong=\"G2713\"* of|strong=\"G2316\"* him|strong=\"G3588\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* believed|strong=\"G4100\"*: God|strong=\"G2316\"*, who|strong=\"G3739\"* gives|strong=\"G2227\"* life|strong=\"G2227\"* to|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* calls|strong=\"G2564\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* not|strong=\"G3361\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G1510\"*." + }, + { + "verseNum": 18, + "text": "Against|strong=\"G2596\"* hope|strong=\"G1680\"*, Abraham|strong=\"G4100\"* in|strong=\"G1519\"* hope|strong=\"G1680\"* believed|strong=\"G4100\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* end|strong=\"G1519\"* that|strong=\"G3739\"* he|strong=\"G3739\"* might|strong=\"G1484\"* become|strong=\"G1096\"* a|strong=\"G1096\"* father|strong=\"G3962\"* of|strong=\"G3844\"* many|strong=\"G4183\"* nations|strong=\"G1484\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* had|strong=\"G1510\"* been|strong=\"G1510\"* spoken|strong=\"G3004\"*, “So|strong=\"G3779\"* will|strong=\"G1510\"* your|strong=\"G1909\"* offspring be|strong=\"G1096\"*.”+ 4:18 Genesis 15:5*" + }, + { + "verseNum": 19, + "text": "Without|strong=\"G3361\"* being|strong=\"G5225\"* weakened in|strong=\"G2532\"* faith|strong=\"G4102\"*, he|strong=\"G2532\"* didn’t|strong=\"G3588\"* consider|strong=\"G2657\"* his|strong=\"G1438\"* own|strong=\"G1438\"* body|strong=\"G4983\"*, already having|strong=\"G2532\"* been|strong=\"G2532\"* worn out|strong=\"G2532\"*, (he|strong=\"G2532\"* being|strong=\"G5225\"* about|strong=\"G4225\"* a|strong=\"G2532\"* hundred|strong=\"G1541\"* years|strong=\"G1541\"* old|strong=\"G1541\"*), and|strong=\"G2532\"* the|strong=\"G2532\"* deadness|strong=\"G3500\"* of|strong=\"G2532\"* Sarah|strong=\"G4564\"*’s womb|strong=\"G3388\"*." + }, + { + "verseNum": 20, + "text": "Yet|strong=\"G1161\"*, looking to|strong=\"G1519\"* the|strong=\"G1519\"* promise|strong=\"G1860\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* waver|strong=\"G1252\"* through|strong=\"G2316\"* unbelief, but|strong=\"G1161\"* grew|strong=\"G1743\"* strong|strong=\"G1743\"* through|strong=\"G2316\"* faith|strong=\"G4102\"*, giving|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G1519\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* being|strong=\"G1510\"* fully|strong=\"G4135\"* assured|strong=\"G4135\"* that|strong=\"G3754\"* what|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* promised|strong=\"G1861\"*, he|strong=\"G2532\"* was|strong=\"G1510\"* also|strong=\"G2532\"* able|strong=\"G1415\"* to|strong=\"G2532\"* perform|strong=\"G4160\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G1352\"* it|strong=\"G2532\"* also|strong=\"G2532\"* was|strong=\"G2532\"* “credited|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G2532\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*.”+ 4:22 Genesis 15:6*" + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* it|strong=\"G3754\"* was|strong=\"G3748\"* not|strong=\"G3756\"* written|strong=\"G1125\"* that|strong=\"G3754\"* it|strong=\"G3754\"* was|strong=\"G3748\"* accounted|strong=\"G3049\"* to|strong=\"G3756\"* him|strong=\"G3049\"* for|strong=\"G3754\"* his|strong=\"G1223\"* sake|strong=\"G1223\"* alone|strong=\"G3441\"*," + }, + { + "verseNum": 24, + "text": "but|strong=\"G2532\"* for|strong=\"G1223\"* our|strong=\"G2424\"* sake|strong=\"G1223\"* also|strong=\"G2532\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* it|strong=\"G2532\"* will|strong=\"G3195\"* be|strong=\"G2532\"* accounted|strong=\"G3049\"*, who|strong=\"G3739\"* believe|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"* who|strong=\"G3739\"* raised|strong=\"G1453\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"G3739\"* was|strong=\"G3588\"* delivered|strong=\"G3860\"* up|strong=\"G1453\"* for|strong=\"G1223\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* for|strong=\"G1223\"* our|strong=\"G2532\"* justification|strong=\"G1347\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Being|strong=\"G2192\"* therefore|strong=\"G3767\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* peace|strong=\"G1515\"* with|strong=\"G4314\"* God|strong=\"G2316\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 2, + "text": "through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* also|strong=\"G2532\"* have|strong=\"G2192\"* our|strong=\"G2316\"* access|strong=\"G4318\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* into|strong=\"G1519\"* this|strong=\"G3778\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G3739\"* stand|strong=\"G2476\"*. We|strong=\"G3739\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G1223\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* this|strong=\"G3588\"*, but|strong=\"G1161\"* we|strong=\"G3754\"* also|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* our|strong=\"G2532\"* sufferings|strong=\"G2347\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* suffering|strong=\"G2347\"* produces|strong=\"G2716\"* perseverance|strong=\"G5281\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"G1161\"* perseverance|strong=\"G5281\"*, proven|strong=\"G1382\"* character|strong=\"G1382\"*; and|strong=\"G1161\"* proven|strong=\"G1382\"* character|strong=\"G1382\"*, hope|strong=\"G1680\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G1161\"* hope|strong=\"G1680\"* doesn’t|strong=\"G3588\"* disappoint|strong=\"G2617\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* God|strong=\"G2316\"*’s love has|strong=\"G2316\"* been|strong=\"G1325\"* poured|strong=\"G1632\"* into|strong=\"G1722\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1722\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* while|strong=\"G1510\"* we|strong=\"G2249\"* were|strong=\"G1510\"* yet|strong=\"G2089\"* weak, at|strong=\"G2596\"* the|strong=\"G2596\"* right|strong=\"G2540\"* time|strong=\"G2540\"* Christ|strong=\"G5547\"* died for|strong=\"G1063\"* the|strong=\"G2596\"* ungodly." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* one|strong=\"G5100\"* will|strong=\"G2532\"* hardly|strong=\"G3433\"* die for|strong=\"G1063\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* man|strong=\"G5100\"*. Yet|strong=\"G2532\"* perhaps|strong=\"G5029\"* for|strong=\"G1063\"* a|strong=\"G2532\"* good|strong=\"G3588\"* person|strong=\"G1342\"* someone|strong=\"G5100\"* would|strong=\"G2532\"* even|strong=\"G2532\"* dare|strong=\"G5111\"* to|strong=\"G2532\"* die." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* commends|strong=\"G4921\"* his|strong=\"G1438\"* own|strong=\"G1438\"* love toward|strong=\"G1519\"* us|strong=\"G1519\"*, in|strong=\"G1519\"* that|strong=\"G3754\"* while|strong=\"G1161\"* we|strong=\"G2249\"* were|strong=\"G1510\"* yet|strong=\"G2089\"* sinners, Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G3754\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 9, + "text": "Much|strong=\"G4183\"* more|strong=\"G3123\"* then|strong=\"G3767\"*, being|strong=\"G1722\"* now|strong=\"G3568\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* his|strong=\"G1223\"* blood, we|strong=\"G3568\"* will|strong=\"G4183\"* be|strong=\"G3588\"* saved|strong=\"G4982\"* from|strong=\"G3588\"* God|strong=\"G3588\"*’s wrath|strong=\"G3709\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* while|strong=\"G1722\"* we|strong=\"G1063\"* were|strong=\"G1510\"* enemies|strong=\"G2190\"*, we|strong=\"G1063\"* were|strong=\"G1510\"* reconciled|strong=\"G2644\"* to|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* the|strong=\"G1722\"* death|strong=\"G2288\"* of|strong=\"G5207\"* his|strong=\"G1223\"* Son|strong=\"G5207\"*, much|strong=\"G4183\"* more|strong=\"G3123\"*, being|strong=\"G1510\"* reconciled|strong=\"G2644\"*, we|strong=\"G1063\"* will|strong=\"G2316\"* be|strong=\"G1510\"* saved|strong=\"G4982\"* by|strong=\"G1223\"* his|strong=\"G1223\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 11, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* also|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* God|strong=\"G2316\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* now|strong=\"G1161\"* received|strong=\"G2983\"* the|strong=\"G1722\"* reconciliation|strong=\"G2643\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1223\"*, as|strong=\"G5618\"* sin entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"* through|strong=\"G1223\"* one|strong=\"G1520\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* death|strong=\"G2288\"* through|strong=\"G1223\"* sin, so|strong=\"G3779\"* death|strong=\"G2288\"* passed|strong=\"G1330\"* to|strong=\"G1519\"* all|strong=\"G3956\"* men|strong=\"G3956\"* because|strong=\"G1223\"* all|strong=\"G3956\"* sinned." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* until|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, sin was|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*; but|strong=\"G1161\"* sin is|strong=\"G1510\"* not|strong=\"G3756\"* charged when|strong=\"G1161\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 14, + "text": "Nevertheless|strong=\"G2532\"* death|strong=\"G2288\"* reigned from|strong=\"G2532\"* Adam until|strong=\"G3360\"* Moses|strong=\"G3475\"*, even|strong=\"G2532\"* over|strong=\"G1909\"* those|strong=\"G3588\"* whose|strong=\"G3739\"* sins weren’t|strong=\"G3588\"* like|strong=\"G5179\"* Adam’s disobedience, who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G2532\"* foreshadowing of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* was|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G2532\"* the|strong=\"G1722\"* free|strong=\"G5486\"* gift|strong=\"G1431\"* isn’t|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* by|strong=\"G1722\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"* of|strong=\"G2316\"* the|strong=\"G1722\"* one|strong=\"G1520\"* the|strong=\"G1722\"* many|strong=\"G4183\"* died|strong=\"G3588\"*, much|strong=\"G4183\"* more|strong=\"G3123\"* did|strong=\"G2532\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G1722\"* gift|strong=\"G1431\"* by|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* the|strong=\"G1722\"* one|strong=\"G1520\"* man|strong=\"G1520\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, abound|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1722\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* gift|strong=\"G5486\"* is|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G5613\"* through|strong=\"G1223\"* one|strong=\"G1520\"* who|strong=\"G3588\"* sinned; for|strong=\"G1063\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* came|strong=\"G2532\"* by|strong=\"G1223\"* one|strong=\"G1520\"* to|strong=\"G1519\"* condemnation|strong=\"G2917\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* free|strong=\"G5486\"* gift|strong=\"G5486\"* followed many|strong=\"G4183\"* trespasses|strong=\"G3900\"* to|strong=\"G1519\"* justification|strong=\"G1345\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* by|strong=\"G1223\"* the|strong=\"G1722\"* trespass|strong=\"G3900\"* of|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*, death|strong=\"G2288\"* reigned through|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*; so|strong=\"G2532\"* much|strong=\"G4183\"* more|strong=\"G3123\"* will|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* abundance|strong=\"G4050\"* of|strong=\"G1223\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* of|strong=\"G1223\"* the|strong=\"G1722\"* gift|strong=\"G1431\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* reign|strong=\"G2532\"* in|strong=\"G1722\"* life|strong=\"G2222\"* through|strong=\"G1223\"* the|strong=\"G1722\"* one|strong=\"G1520\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"G3779\"* then|strong=\"G3767\"* as|strong=\"G5613\"* through|strong=\"G1223\"* one|strong=\"G1520\"* trespass|strong=\"G3900\"*, all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G2532\"* condemned; even|strong=\"G2532\"* so|strong=\"G3779\"* through|strong=\"G1223\"* one|strong=\"G1520\"* act|strong=\"G1345\"* of|strong=\"G1223\"* righteousness|strong=\"G1345\"*, all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G2532\"* justified to|strong=\"G1519\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* through|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G1520\"* man|strong=\"G1342\"*’s disobedience|strong=\"G3876\"* many|strong=\"G4183\"* were|strong=\"G3588\"* made|strong=\"G2525\"* sinners, even|strong=\"G2532\"* so|strong=\"G3779\"* through|strong=\"G1223\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G1520\"*, many|strong=\"G4183\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G2525\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1161\"* law|strong=\"G3551\"* came|strong=\"G3588\"* in|strong=\"G1161\"* that|strong=\"G2443\"* the|strong=\"G1161\"* trespass|strong=\"G3900\"* might|strong=\"G3900\"* abound|strong=\"G4121\"*; but|strong=\"G1161\"* where|strong=\"G3757\"* sin|strong=\"G3900\"* abounded|strong=\"G5248\"*, grace|strong=\"G5485\"* abounded|strong=\"G5248\"* more|strong=\"G1161\"* exceedingly," + }, + { + "verseNum": 21, + "text": "that|strong=\"G2443\"* as|strong=\"G5618\"* sin reigned in|strong=\"G1722\"* death|strong=\"G2288\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* grace|strong=\"G5485\"* might|strong=\"G2532\"* reign|strong=\"G2532\"* through|strong=\"G1223\"* righteousness|strong=\"G1343\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G2443\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Shall|strong=\"G5101\"* we|strong=\"G2443\"* continue|strong=\"G1961\"* in|strong=\"G1961\"* sin, that|strong=\"G2443\"* grace|strong=\"G5485\"* may|strong=\"G2443\"* abound|strong=\"G4121\"*?" + }, + { + "verseNum": 2, + "text": "May it|strong=\"G1096\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! We|strong=\"G1722\"* who|strong=\"G3588\"* died|strong=\"G3588\"* to|strong=\"G1722\"* sin, how|strong=\"G4459\"* could|strong=\"G3361\"* we|strong=\"G1722\"* live|strong=\"G2198\"* in|strong=\"G1722\"* it|strong=\"G1096\"* any|strong=\"G3361\"* longer|strong=\"G2089\"*?" + }, + { + "verseNum": 3, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know that|strong=\"G3754\"* all|strong=\"G3745\"* of|strong=\"G2424\"* us|strong=\"G1519\"* who|strong=\"G3588\"* were|strong=\"G3588\"* baptized into|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* were|strong=\"G3588\"* baptized into|strong=\"G1519\"* his|strong=\"G1519\"* death|strong=\"G2288\"*?" + }, + { + "verseNum": 4, + "text": "We|strong=\"G2249\"* were|strong=\"G3588\"* buried|strong=\"G4916\"* therefore|strong=\"G3767\"* with|strong=\"G1722\"* him|strong=\"G3588\"* through|strong=\"G1223\"* baptism into|strong=\"G1519\"* death|strong=\"G2288\"*, that|strong=\"G2443\"* just|strong=\"G5618\"* as|strong=\"G5618\"* Christ|strong=\"G5547\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* through|strong=\"G1223\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, so|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"* might|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* newness|strong=\"G2538\"* of|strong=\"G1537\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* we|strong=\"G1063\"* have|strong=\"G2532\"* become|strong=\"G1096\"* united|strong=\"G4854\"* with|strong=\"G2532\"* him|strong=\"G3588\"* in|strong=\"G2532\"* the|strong=\"G2532\"* likeness|strong=\"G3667\"* of|strong=\"G2532\"* his|strong=\"G2532\"* death|strong=\"G2288\"*, we|strong=\"G1063\"* will|strong=\"G1510\"* also|strong=\"G2532\"* be|strong=\"G1096\"* part|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G2532\"* resurrection;" + }, + { + "verseNum": 6, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* our old|strong=\"G3820\"* man|strong=\"G3778\"* was|strong=\"G3588\"* crucified|strong=\"G4957\"* with|strong=\"G4957\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* the|strong=\"G3588\"* body|strong=\"G4983\"* of|strong=\"G4983\"* sin might|strong=\"G3778\"* be|strong=\"G2443\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G4957\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* we|strong=\"G2249\"* would no|strong=\"G3371\"* longer|strong=\"G3371\"* be|strong=\"G2443\"* in|strong=\"G3588\"* bondage|strong=\"G1398\"* to|strong=\"G2443\"* sin." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* has died|strong=\"G3588\"* has been freed|strong=\"G1344\"* from|strong=\"G3588\"* sin." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G3754\"* died with|strong=\"G4862\"* Christ|strong=\"G5547\"*, we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G2532\"* also|strong=\"G2532\"* live|strong=\"G4800\"* with|strong=\"G4862\"* him|strong=\"G2532\"*," + }, + { + "verseNum": 9, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* Christ|strong=\"G5547\"*, being|strong=\"G5547\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, dies no|strong=\"G3765\"* more|strong=\"G3765\"*. Death|strong=\"G2288\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* has|strong=\"G5547\"* dominion|strong=\"G2961\"* over|strong=\"G2961\"* him|strong=\"G1537\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* death that|strong=\"G3739\"* he|strong=\"G1161\"* died|strong=\"G3588\"*, he|strong=\"G1161\"* died|strong=\"G3588\"* to|strong=\"G1161\"* sin one|strong=\"G3739\"* time|strong=\"G3739\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* life|strong=\"G2198\"* that|strong=\"G3739\"* he|strong=\"G1161\"* lives|strong=\"G2198\"*, he|strong=\"G1161\"* lives|strong=\"G2198\"* to|strong=\"G1161\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"G3779\"* consider|strong=\"G3049\"* yourselves|strong=\"G1438\"* also|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G1510\"* dead|strong=\"G3498\"* to|strong=\"G2532\"* sin, but|strong=\"G1161\"* alive|strong=\"G2198\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* let|strong=\"G3767\"* sin reign in|strong=\"G1722\"* your|strong=\"G1722\"* mortal|strong=\"G2349\"* body|strong=\"G4983\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G3588\"* obey|strong=\"G5219\"* it|strong=\"G1519\"* in|strong=\"G1722\"* its|strong=\"G5219\"* lusts|strong=\"G1939\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"G2532\"*, do|strong=\"G2532\"* not|strong=\"G3366\"* present|strong=\"G3936\"* your|strong=\"G2532\"* members|strong=\"G3196\"* to|strong=\"G2532\"* sin as|strong=\"G2532\"* instruments|strong=\"G3696\"* of|strong=\"G1537\"* unrighteousness, but|strong=\"G2532\"* present|strong=\"G3936\"* yourselves|strong=\"G1438\"* to|strong=\"G2532\"* God|strong=\"G2316\"* as|strong=\"G2532\"* alive|strong=\"G2198\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* members|strong=\"G3196\"* as|strong=\"G2532\"* instruments|strong=\"G3696\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* sin will|strong=\"G1510\"* not|strong=\"G3756\"* have|strong=\"G1510\"* dominion|strong=\"G2961\"* over|strong=\"G2961\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* law|strong=\"G3551\"*, but|strong=\"G1063\"* under|strong=\"G5259\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? Shall|strong=\"G5101\"* we|strong=\"G3754\"* sin because|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* law|strong=\"G3551\"* but|strong=\"G3361\"* under|strong=\"G5259\"* grace|strong=\"G5485\"*? May|strong=\"G5485\"* it|strong=\"G3754\"* never|strong=\"G3756\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 16, + "text": "Don’t you|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G1492\"* you|strong=\"G3739\"* present|strong=\"G3936\"* yourselves|strong=\"G1438\"* as|strong=\"G1519\"* servants|strong=\"G1401\"* and|strong=\"G1401\"* obey|strong=\"G5219\"* someone|strong=\"G3739\"*, you|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G1519\"* servants|strong=\"G1401\"* of|strong=\"G1401\"* whomever|strong=\"G3739\"* you|strong=\"G3739\"* obey|strong=\"G5219\"*, whether|strong=\"G3739\"* of|strong=\"G1401\"* sin to|strong=\"G1519\"* death|strong=\"G2288\"*, or|strong=\"G2228\"* of|strong=\"G1401\"* obedience|strong=\"G5218\"* to|strong=\"G1519\"* righteousness|strong=\"G1343\"*?" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G1510\"* to|strong=\"G1519\"* God|strong=\"G2316\"* that|strong=\"G3754\"*, whereas|strong=\"G1161\"* you|strong=\"G3739\"* were|strong=\"G1510\"* bondservants of|strong=\"G1537\"* sin, you|strong=\"G3739\"* became|strong=\"G5219\"* obedient|strong=\"G5219\"* from|strong=\"G1537\"* the|strong=\"G1519\"* heart|strong=\"G2588\"* to|strong=\"G1519\"* that|strong=\"G3754\"* form|strong=\"G5179\"* of|strong=\"G1537\"* teaching|strong=\"G1322\"* to|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G1510\"* delivered|strong=\"G3860\"*." + }, + { + "verseNum": 18, + "text": "Being|strong=\"G1161\"* made|strong=\"G1161\"* free|strong=\"G1659\"* from|strong=\"G3588\"* sin, you|strong=\"G1659\"* became|strong=\"G1402\"* bondservants of|strong=\"G1343\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* speak|strong=\"G3004\"* in|strong=\"G1519\"* human|strong=\"G4561\"* terms because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* weakness of|strong=\"G1223\"* your|strong=\"G1223\"* flesh|strong=\"G4561\"*; for|strong=\"G1063\"* as|strong=\"G5618\"* you|strong=\"G5210\"* presented|strong=\"G3936\"* your|strong=\"G1223\"* members|strong=\"G3196\"* as|strong=\"G5618\"* servants|strong=\"G1401\"* to|strong=\"G1519\"* uncleanness and|strong=\"G2532\"* to|strong=\"G1519\"* wickedness upon|strong=\"G1519\"* wickedness, even|strong=\"G2532\"* so|strong=\"G3779\"* now|strong=\"G3568\"* present|strong=\"G3936\"* your|strong=\"G1223\"* members|strong=\"G3196\"* as|strong=\"G5618\"* servants|strong=\"G1401\"* to|strong=\"G1519\"* righteousness|strong=\"G1343\"* for|strong=\"G1063\"* sanctification." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* when|strong=\"G3753\"* you|strong=\"G1510\"* were|strong=\"G1510\"* servants|strong=\"G1401\"* of|strong=\"G1401\"* sin, you|strong=\"G1510\"* were|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G3588\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 21, + "text": "What|strong=\"G5101\"* fruit|strong=\"G2590\"* then|strong=\"G3767\"* did|strong=\"G5101\"* you|strong=\"G3739\"* have|strong=\"G2192\"* at|strong=\"G1909\"* that|strong=\"G3739\"* time|strong=\"G5119\"* in|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* of|strong=\"G1909\"* which|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3588\"* now|strong=\"G3568\"* ashamed|strong=\"G1870\"*? For|strong=\"G1063\"* the|strong=\"G1909\"* end|strong=\"G5056\"* of|strong=\"G1909\"* those|strong=\"G3588\"* things|strong=\"G3588\"* is|strong=\"G3588\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, being|strong=\"G2192\"* made|strong=\"G2316\"* free|strong=\"G1659\"* from|strong=\"G3588\"* sin and|strong=\"G1161\"* having|strong=\"G2192\"* become|strong=\"G1161\"* servants|strong=\"G1402\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* your|strong=\"G2192\"* fruit|strong=\"G2590\"* of|strong=\"G2316\"* sanctification and|strong=\"G1161\"* the|strong=\"G1519\"* result|strong=\"G1519\"* of|strong=\"G2316\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wages|strong=\"G3800\"* of|strong=\"G2316\"* sin is|strong=\"G3588\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* free|strong=\"G5486\"* gift|strong=\"G5486\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* eternal life|strong=\"G2222\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1097\"*, brothers+ 7:1 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* (for|strong=\"G1063\"* I|strong=\"G1063\"* speak|strong=\"G2980\"* to|strong=\"G1909\"* men|strong=\"G3588\"* who|strong=\"G3588\"* know|strong=\"G1097\"* the|strong=\"G1909\"* law|strong=\"G3551\"*), that|strong=\"G3754\"* the|strong=\"G1909\"* law|strong=\"G3551\"* has|strong=\"G3748\"* dominion|strong=\"G2961\"* over|strong=\"G1909\"* a|strong=\"G1909\"* man for|strong=\"G1063\"* as|strong=\"G3745\"* long|strong=\"G5550\"* as|strong=\"G3745\"* he|strong=\"G3754\"* lives|strong=\"G2198\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* woman|strong=\"G1135\"* that|strong=\"G3588\"* has|strong=\"G3551\"* a|strong=\"G1437\"* husband|strong=\"G5220\"* is|strong=\"G3588\"* bound|strong=\"G1210\"* by|strong=\"G2198\"* law|strong=\"G3551\"* to|strong=\"G1161\"* the|strong=\"G1161\"* husband|strong=\"G5220\"* while|strong=\"G1161\"* he|strong=\"G1161\"* lives|strong=\"G2198\"*, but|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1161\"* husband|strong=\"G5220\"* dies, she|strong=\"G1161\"* is|strong=\"G3588\"* discharged from|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"* of|strong=\"G3551\"* the|strong=\"G1161\"* husband|strong=\"G5220\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* if|strong=\"G1437\"*, while|strong=\"G1161\"* the|strong=\"G1161\"* husband lives|strong=\"G2198\"*, she|strong=\"G1161\"* is|strong=\"G1510\"* joined|strong=\"G1096\"* to|strong=\"G1096\"* another|strong=\"G2087\"* man|strong=\"G3361\"*, she|strong=\"G1161\"* would|strong=\"G1096\"* be|strong=\"G1096\"* called|strong=\"G5537\"* an|strong=\"G1096\"* adulteress|strong=\"G3428\"*. But|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1161\"* husband dies, she|strong=\"G1161\"* is|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"*, so|strong=\"G3767\"* that|strong=\"G3588\"* she|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3361\"* adulteress|strong=\"G3428\"*, though|strong=\"G1437\"* she|strong=\"G1161\"* is|strong=\"G1510\"* joined|strong=\"G1096\"* to|strong=\"G1096\"* another|strong=\"G2087\"* man|strong=\"G3361\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G1223\"*, my|strong=\"G1473\"* brothers, you|strong=\"G5210\"* also|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* dead|strong=\"G3498\"* to|strong=\"G1519\"* the|strong=\"G2532\"* law|strong=\"G3551\"* through|strong=\"G1223\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* would|strong=\"G1096\"* be|strong=\"G1096\"* joined|strong=\"G1096\"* to|strong=\"G1519\"* another|strong=\"G2087\"*, to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1096\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* might|strong=\"G2532\"* produce fruit|strong=\"G2592\"* to|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* when|strong=\"G3753\"* we|strong=\"G2249\"* were|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, the|strong=\"G1722\"* sinful passions|strong=\"G3804\"* which|strong=\"G3588\"* were|strong=\"G1510\"* through|strong=\"G1223\"* the|strong=\"G1722\"* law|strong=\"G3551\"* worked|strong=\"G1754\"* in|strong=\"G1722\"* our|strong=\"G1223\"* members|strong=\"G3196\"* to|strong=\"G1519\"* bring|strong=\"G1519\"* out|strong=\"G1063\"* fruit|strong=\"G2592\"* to|strong=\"G1519\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2532\"* been|strong=\"G2532\"* discharged from|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, having|strong=\"G2532\"* died|strong=\"G3588\"* to|strong=\"G2532\"* that|strong=\"G3739\"* in|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* were|strong=\"G3588\"* held|strong=\"G2722\"*; so|strong=\"G2532\"* that|strong=\"G3739\"* we|strong=\"G2249\"* serve|strong=\"G1398\"* in|strong=\"G1722\"* newness|strong=\"G2538\"* of|strong=\"G4151\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1722\"* oldness|strong=\"G3821\"* of|strong=\"G4151\"* the|strong=\"G1722\"* letter|strong=\"G1121\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G1063\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Is|strong=\"G3588\"* the|strong=\"G1223\"* law|strong=\"G3551\"* sin? May|strong=\"G3004\"* it|strong=\"G1063\"* never|strong=\"G3756\"* be|strong=\"G1096\"*! However|strong=\"G3767\"*, I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* have|strong=\"G1096\"* known|strong=\"G1097\"* sin except|strong=\"G1487\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*. For|strong=\"G1063\"* I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* have|strong=\"G1096\"* known|strong=\"G1097\"* coveting|strong=\"G1939\"* unless|strong=\"G1487\"* the|strong=\"G1223\"* law|strong=\"G3551\"* had|strong=\"G3588\"* said|strong=\"G3004\"*, “You|strong=\"G1487\"* shall|strong=\"G5101\"* not|strong=\"G3756\"* covet|strong=\"G1937\"*.”+ 7:7 Exodus 20:17; Deuteronomy 5:21*" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* sin, finding|strong=\"G1063\"* occasion|strong=\"G1223\"* through|strong=\"G1223\"* the|strong=\"G1722\"* commandment|strong=\"G1785\"*, produced|strong=\"G2716\"* in|strong=\"G1722\"* me|strong=\"G1473\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G1223\"* coveting|strong=\"G1939\"*. For|strong=\"G1063\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, sin is|strong=\"G3588\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* was|strong=\"G3588\"* alive|strong=\"G2198\"* apart|strong=\"G5565\"* from|strong=\"G2064\"* the|strong=\"G1161\"* law|strong=\"G3551\"* once|strong=\"G4218\"*, but|strong=\"G1161\"* when|strong=\"G1161\"* the|strong=\"G1161\"* commandment|strong=\"G1785\"* came|strong=\"G2064\"*, sin revived and|strong=\"G1161\"* I|strong=\"G1473\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* commandment|strong=\"G1785\"* which|strong=\"G3588\"* was|strong=\"G3588\"* for|strong=\"G1519\"* life|strong=\"G2222\"*, this|strong=\"G3778\"* I|strong=\"G1473\"* found|strong=\"G2147\"* to|strong=\"G1519\"* be|strong=\"G2532\"* for|strong=\"G1519\"* death|strong=\"G2288\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"G1063\"* sin, finding|strong=\"G1063\"* occasion|strong=\"G1223\"* through|strong=\"G1223\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"*, deceived|strong=\"G1818\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* through|strong=\"G1223\"* it|strong=\"G2532\"* killed me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G5620\"* the|strong=\"G2532\"* law|strong=\"G3551\"* indeed|strong=\"G2532\"* is|strong=\"G3588\"* holy, and|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"* holy, righteous|strong=\"G1342\"*, and|strong=\"G2532\"* good|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Did|strong=\"G1096\"* then|strong=\"G3767\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G1223\"* become|strong=\"G1096\"* death|strong=\"G2288\"* to|strong=\"G2443\"* me|strong=\"G1473\"*? May|strong=\"G2443\"* it|strong=\"G1223\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! But|strong=\"G3361\"* sin, that|strong=\"G2443\"* it|strong=\"G1223\"* might|strong=\"G1785\"* be|strong=\"G1096\"* shown|strong=\"G5316\"* to|strong=\"G2443\"* be|strong=\"G1096\"* sin, was|strong=\"G1096\"* producing|strong=\"G2716\"* death|strong=\"G2288\"* in|strong=\"G2596\"* me|strong=\"G1473\"* through|strong=\"G1223\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G1223\"*; that|strong=\"G2443\"* through|strong=\"G1223\"* the|strong=\"G1223\"* commandment|strong=\"G1785\"* sin might|strong=\"G1785\"* become|strong=\"G1096\"* exceedingly sinful." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* law|strong=\"G3551\"* is|strong=\"G1510\"* spiritual|strong=\"G4152\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1510\"* fleshly, sold|strong=\"G4097\"* under|strong=\"G5259\"* sin." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* I|strong=\"G3739\"* don’t understand|strong=\"G1097\"* what|strong=\"G3739\"* I|strong=\"G3739\"* am|strong=\"G2309\"* doing|strong=\"G4160\"*. For|strong=\"G1063\"* I|strong=\"G3739\"* don’t practice|strong=\"G4238\"* what|strong=\"G3739\"* I|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* do|strong=\"G4160\"*; but|strong=\"G1063\"* what|strong=\"G3739\"* I|strong=\"G3739\"* hate|strong=\"G3404\"*, that|strong=\"G3739\"* I|strong=\"G3739\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* what|strong=\"G3739\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"*, that|strong=\"G3754\"* I|strong=\"G3739\"* do|strong=\"G4160\"*, I|strong=\"G3739\"* consent to|strong=\"G2309\"* the|strong=\"G1161\"* law|strong=\"G3551\"* that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"G1161\"* now|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* more|strong=\"G3765\"* I|strong=\"G1473\"* that|strong=\"G3588\"* do|strong=\"G2716\"* it|strong=\"G1161\"*, but|strong=\"G1161\"* sin which|strong=\"G3588\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G3754\"* is|strong=\"G1510\"*, in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"*, dwells|strong=\"G3611\"* no|strong=\"G3756\"* good|strong=\"G2570\"* thing|strong=\"G3778\"*. For|strong=\"G1063\"* desire|strong=\"G2309\"* is|strong=\"G1510\"* present|strong=\"G3873\"* with|strong=\"G1722\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* find it|strong=\"G3754\"* doing|strong=\"G2716\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1063\"* good|strong=\"G3756\"* which|strong=\"G3739\"* I|strong=\"G3739\"* desire|strong=\"G2309\"*, I|strong=\"G3739\"* don’t do|strong=\"G4160\"*; but|strong=\"G1063\"* the|strong=\"G1063\"* evil|strong=\"G2556\"* which|strong=\"G3739\"* I|strong=\"G3739\"* don’t desire|strong=\"G2309\"*, that|strong=\"G3739\"* I|strong=\"G3739\"* practice|strong=\"G4238\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* what|strong=\"G3739\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"*, that|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3756\"* more|strong=\"G3765\"* I|strong=\"G1473\"* that|strong=\"G3739\"* do|strong=\"G4160\"* it|strong=\"G1161\"*, but|strong=\"G1161\"* sin which|strong=\"G3739\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G1473\"* find|strong=\"G2147\"* then|strong=\"G3754\"* the|strong=\"G3588\"* law|strong=\"G3551\"* that|strong=\"G3754\"*, while|strong=\"G3754\"* I|strong=\"G1473\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* do|strong=\"G4160\"* good|strong=\"G2570\"*, evil|strong=\"G2556\"* is|strong=\"G3588\"* present|strong=\"G3873\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* delight|strong=\"G4913\"* in|strong=\"G2596\"* God|strong=\"G2316\"*’s law|strong=\"G3551\"* after|strong=\"G2596\"* the|strong=\"G2596\"* inward|strong=\"G2080\"* person," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* I|strong=\"G1473\"* see a|strong=\"G2532\"* different|strong=\"G2087\"* law|strong=\"G3551\"* in|strong=\"G1722\"* my|strong=\"G1722\"* members|strong=\"G3196\"*, warring against|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* my|strong=\"G1722\"* mind|strong=\"G3563\"*, and|strong=\"G2532\"* bringing me|strong=\"G1473\"* into|strong=\"G1722\"* captivity under|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2532\"* sin which|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* my|strong=\"G1722\"* members|strong=\"G3196\"*." + }, + { + "verseNum": 24, + "text": "What|strong=\"G5101\"* a|strong=\"G1537\"* wretched|strong=\"G5005\"* man|strong=\"G3778\"* I|strong=\"G1473\"* am|strong=\"G1473\"*! Who|strong=\"G5101\"* will|strong=\"G5101\"* deliver|strong=\"G4506\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"* of|strong=\"G1537\"* this|strong=\"G3778\"* death|strong=\"G2288\"*?" + }, + { + "verseNum": 25, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"*! So|strong=\"G3767\"* then|strong=\"G3767\"* with|strong=\"G1223\"* the|strong=\"G1161\"* mind|strong=\"G3563\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* serve|strong=\"G1398\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* law|strong=\"G3551\"*, but|strong=\"G1161\"* with|strong=\"G1223\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, sin’s|strong=\"G2962\"* law|strong=\"G3551\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"G1722\"* is|strong=\"G3588\"* therefore now|strong=\"G3568\"* no|strong=\"G3762\"* condemnation|strong=\"G2631\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* don’t|strong=\"G3588\"* walk according|strong=\"G3588\"* to|strong=\"G1722\"* the|strong=\"G1722\"* flesh, but|strong=\"G3762\"* according|strong=\"G3588\"* to|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G3588\"*.+ 8:1 NU omits “who don’t walk according to the flesh, but according to the Spirit”*" + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* life|strong=\"G2222\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* made|strong=\"G1659\"* me free|strong=\"G1659\"* from|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G4151\"* sin and|strong=\"G2532\"* of|strong=\"G4151\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* what|strong=\"G3739\"* the|strong=\"G1722\"* law|strong=\"G3551\"* couldn’t|strong=\"G3588\"* do|strong=\"G2532\"*, in|strong=\"G1722\"* that|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G3588\"* weak through|strong=\"G1223\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, God|strong=\"G2316\"* did|strong=\"G2532\"*, sending|strong=\"G3992\"* his|strong=\"G1438\"* own|strong=\"G1438\"* Son|strong=\"G5207\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G5207\"* sinful flesh|strong=\"G4561\"* and|strong=\"G2532\"* for|strong=\"G1063\"* sin, he|strong=\"G2532\"* condemned|strong=\"G2632\"* sin in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* ordinance|strong=\"G1345\"* of|strong=\"G4151\"* the|strong=\"G1722\"* law|strong=\"G3551\"* might|strong=\"G1473\"* be|strong=\"G3361\"* fulfilled|strong=\"G4137\"* in|strong=\"G1722\"* us|strong=\"G2249\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, but|strong=\"G3361\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G5426\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* set|strong=\"G5426\"* their|strong=\"G2596\"* minds|strong=\"G5426\"* on|strong=\"G2596\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G5426\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* mind|strong=\"G5427\"* of|strong=\"G4151\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* mind|strong=\"G5427\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* is|strong=\"G3588\"* life|strong=\"G2222\"* and|strong=\"G2532\"* peace|strong=\"G1515\"*;" + }, + { + "verseNum": 7, + "text": "because|strong=\"G1063\"* the|strong=\"G1519\"* mind|strong=\"G5427\"* of|strong=\"G2316\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* hostile|strong=\"G2189\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* not|strong=\"G3756\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* God|strong=\"G2316\"*’s law|strong=\"G3551\"*, neither|strong=\"G3761\"* indeed|strong=\"G1063\"* can|strong=\"G1410\"* it|strong=\"G1063\"* be|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* please God|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G1510\"* so|strong=\"G1161\"* that|strong=\"G1487\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t have|strong=\"G2192\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* not|strong=\"G3756\"* his|strong=\"G1722\"*." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* body|strong=\"G4983\"* is|strong=\"G3588\"* dead|strong=\"G3498\"* because|strong=\"G1223\"* of|strong=\"G4151\"* sin, but|strong=\"G1161\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* is|strong=\"G3588\"* alive|strong=\"G2222\"* because|strong=\"G1223\"* of|strong=\"G4151\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Jesus|strong=\"G2424\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* will|strong=\"G2532\"* also|strong=\"G2532\"* give|strong=\"G2227\"* life|strong=\"G2227\"* to|strong=\"G2532\"* your|strong=\"G1223\"* mortal|strong=\"G2349\"* bodies|strong=\"G4983\"* through|strong=\"G1223\"* his|strong=\"G1223\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* dwells|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, brothers, we|strong=\"G1510\"* are|strong=\"G1510\"* debtors|strong=\"G3781\"*, not|strong=\"G3756\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, to|strong=\"G2596\"* live|strong=\"G2198\"* after|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* you|strong=\"G1487\"* live|strong=\"G2198\"* after|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*, you|strong=\"G1487\"* must|strong=\"G3195\"* die|strong=\"G2289\"*; but|strong=\"G1161\"* if|strong=\"G1487\"* by|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* you|strong=\"G1487\"* put|strong=\"G2289\"* to|strong=\"G2596\"* death|strong=\"G2289\"* the|strong=\"G1161\"* deeds|strong=\"G4234\"* of|strong=\"G4151\"* the|strong=\"G1161\"* body|strong=\"G4983\"*, you|strong=\"G1487\"* will|strong=\"G3195\"* live|strong=\"G2198\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* led by|strong=\"G1063\"* the|strong=\"G1063\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, these|strong=\"G3778\"* are|strong=\"G1510\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* bondage|strong=\"G1397\"* again|strong=\"G3825\"* to|strong=\"G1519\"* fear|strong=\"G5401\"*, but|strong=\"G1063\"* you|strong=\"G3739\"* received|strong=\"G2983\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* adoption|strong=\"G5206\"*, by|strong=\"G1722\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* cry|strong=\"G2896\"*, “Abba!+ 8:15 Abba is an Aramaic word for “Father” or “Daddy”, which can be used affectionately and respectfully in prayer to our Father in heaven.* Father|strong=\"G3962\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G3588\"* Spirit|strong=\"G4151\"* himself testifies|strong=\"G4828\"* with|strong=\"G2316\"* our|strong=\"G2316\"* spirit|strong=\"G4151\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G4151\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* if|strong=\"G1487\"* children|strong=\"G5043\"*, then|strong=\"G2532\"* heirs|strong=\"G2818\"*—heirs|strong=\"G2818\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* joint heirs|strong=\"G2818\"* with|strong=\"G2532\"* Christ|strong=\"G5547\"*, if|strong=\"G1487\"* indeed|strong=\"G2532\"* we|strong=\"G2532\"* suffer|strong=\"G4841\"* with|strong=\"G2532\"* him|strong=\"G2532\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G4888\"* with|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* consider|strong=\"G3049\"* that|strong=\"G3754\"* the|strong=\"G1519\"* sufferings|strong=\"G3804\"* of|strong=\"G1391\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* are|strong=\"G3588\"* not|strong=\"G3756\"* worthy to|strong=\"G1519\"* be|strong=\"G3756\"* compared with|strong=\"G4314\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* which|strong=\"G3588\"* will|strong=\"G3195\"* be|strong=\"G3756\"* revealed toward|strong=\"G1519\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G3588\"* creation|strong=\"G2937\"* waits with|strong=\"G2316\"* eager expectation for|strong=\"G1063\"* the|strong=\"G3588\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* to|strong=\"G2316\"* be|strong=\"G2316\"* revealed." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* the|strong=\"G1909\"* creation|strong=\"G2937\"* was|strong=\"G3588\"* subjected|strong=\"G5293\"* to|strong=\"G1909\"* vanity|strong=\"G3153\"*, not|strong=\"G3756\"* of|strong=\"G1223\"* its|strong=\"G1223\"* own will, but|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* it|strong=\"G1063\"*, in|strong=\"G1909\"* hope|strong=\"G1680\"*" + }, + { + "verseNum": 21, + "text": "that|strong=\"G3588\"* the|strong=\"G2532\"* creation|strong=\"G2937\"* itself also|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* delivered|strong=\"G1659\"* from|strong=\"G2532\"* the|strong=\"G2532\"* bondage|strong=\"G1397\"* of|strong=\"G2316\"* decay into|strong=\"G1519\"* the|strong=\"G2532\"* liberty|strong=\"G1657\"* of|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2532\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* whole|strong=\"G3956\"* creation|strong=\"G2937\"* groans|strong=\"G4959\"* and|strong=\"G2532\"* travails in|strong=\"G2532\"* pain together|strong=\"G4944\"* until|strong=\"G2532\"* now|strong=\"G3568\"*." + }, + { + "verseNum": 23, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* ourselves|strong=\"G1438\"* also|strong=\"G2532\"*, who|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1722\"* first|strong=\"G3588\"* fruits of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* we|strong=\"G2249\"* ourselves|strong=\"G1438\"* groan|strong=\"G4727\"* within|strong=\"G1722\"* ourselves|strong=\"G1438\"*, waiting for|strong=\"G1161\"* adoption|strong=\"G5206\"*, the|strong=\"G1722\"* redemption of|strong=\"G4151\"* our|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* were|strong=\"G1510\"* saved|strong=\"G4982\"* in|strong=\"G2532\"* hope|strong=\"G1680\"*, but|strong=\"G1161\"* hope|strong=\"G1680\"* that|strong=\"G3739\"* is|strong=\"G1510\"* seen is|strong=\"G1510\"* not|strong=\"G3756\"* hope|strong=\"G1680\"*. For|strong=\"G1063\"* who|strong=\"G3739\"* hopes|strong=\"G1679\"* for|strong=\"G1063\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G2532\"* sees?" + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G3739\"* hope|strong=\"G1679\"* for|strong=\"G1223\"* that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G3739\"* don’t see, we|strong=\"G3739\"* wait|strong=\"G5281\"* for|strong=\"G1223\"* it|strong=\"G1161\"* with|strong=\"G1223\"* patience|strong=\"G5281\"*." + }, + { + "verseNum": 26, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G5615\"* way|strong=\"G5615\"*, the|strong=\"G2532\"* Spirit|strong=\"G4151\"* also|strong=\"G2532\"* helps|strong=\"G4878\"* our|strong=\"G2532\"* weaknesses, for|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* how|strong=\"G5101\"* to|strong=\"G2532\"* pray|strong=\"G4336\"* as|strong=\"G1161\"* we|strong=\"G2249\"* ought|strong=\"G1163\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* himself makes intercession|strong=\"G5241\"* for|strong=\"G1063\"* us|strong=\"G2249\"* with|strong=\"G2532\"* groanings|strong=\"G4726\"* which|strong=\"G3588\"* can|strong=\"G1063\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* uttered." + }, + { + "verseNum": 27, + "text": "He|strong=\"G1161\"* who|strong=\"G5101\"* searches|strong=\"G2045\"* the|strong=\"G1161\"* hearts|strong=\"G2588\"* knows|strong=\"G1492\"* what|strong=\"G5101\"* is|strong=\"G3588\"* on|strong=\"G5228\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*’s mind|strong=\"G5427\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* makes intercession|strong=\"G1793\"* for|strong=\"G3754\"* the|strong=\"G1161\"* saints according|strong=\"G2596\"* to|strong=\"G2596\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* work|strong=\"G4903\"* together|strong=\"G4903\"* for|strong=\"G3754\"* good|strong=\"G3956\"* for|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* love God|strong=\"G2316\"*, for|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* called|strong=\"G2822\"* according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G3956\"* purpose|strong=\"G4286\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G3754\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* foreknew|strong=\"G4267\"*, he|strong=\"G2532\"* also|strong=\"G2532\"* predestined|strong=\"G4309\"* to|strong=\"G1519\"* be|strong=\"G1510\"* conformed|strong=\"G4832\"* to|strong=\"G1519\"* the|strong=\"G1722\"* image|strong=\"G1504\"* of|strong=\"G5207\"* his|strong=\"G1519\"* Son|strong=\"G5207\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* the|strong=\"G1722\"* firstborn|strong=\"G4416\"* among|strong=\"G1722\"* many|strong=\"G4183\"* brothers.+ 8:29 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 30, + "text": "Whom|strong=\"G3739\"* he|strong=\"G2532\"* predestined|strong=\"G4309\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G2564\"*. Whom|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G2564\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* justified|strong=\"G1344\"*. Whom|strong=\"G3739\"* he|strong=\"G2532\"* justified|strong=\"G1344\"*, those|strong=\"G3778\"* he|strong=\"G2532\"* also|strong=\"G2532\"* glorified|strong=\"G1392\"*." + }, + { + "verseNum": 31, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* shall|strong=\"G2316\"* we|strong=\"G2249\"* say|strong=\"G3004\"* about|strong=\"G2596\"* these|strong=\"G3778\"* things|strong=\"G3778\"*? If|strong=\"G1487\"* God|strong=\"G2316\"* is|strong=\"G3588\"* for|strong=\"G5228\"* us|strong=\"G3004\"*, who|strong=\"G5101\"* can|strong=\"G3004\"* be|strong=\"G2316\"* against|strong=\"G2596\"* us|strong=\"G3004\"*?" + }, + { + "verseNum": 32, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* his|strong=\"G3956\"* own|strong=\"G2398\"* Son|strong=\"G5207\"*, but|strong=\"G2532\"* delivered|strong=\"G3860\"* him|strong=\"G3588\"* up|strong=\"G3860\"* for|strong=\"G5228\"* us|strong=\"G5483\"* all|strong=\"G3956\"*, how|strong=\"G4459\"* would|strong=\"G2532\"* he|strong=\"G2532\"* not|strong=\"G3756\"* also|strong=\"G2532\"* with|strong=\"G4862\"* him|strong=\"G3588\"* freely|strong=\"G5483\"* give|strong=\"G5483\"* us|strong=\"G5483\"* all|strong=\"G3956\"* things|strong=\"G3956\"*?" + }, + { + "verseNum": 33, + "text": "Who|strong=\"G5101\"* could|strong=\"G3588\"* bring|strong=\"G1458\"* a|strong=\"G2596\"* charge|strong=\"G1458\"* against|strong=\"G2596\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones? It|strong=\"G5101\"* is|strong=\"G3588\"* God|strong=\"G2316\"* who|strong=\"G5101\"* justifies|strong=\"G1344\"*." + }, + { + "verseNum": 34, + "text": "Who|strong=\"G3739\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3739\"* condemns|strong=\"G2632\"*? It|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* who|strong=\"G3739\"* died|strong=\"G3588\"*, yes|strong=\"G1161\"* rather|strong=\"G3123\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* raised|strong=\"G1453\"* from|strong=\"G2532\"* the|strong=\"G1722\"* dead, who|strong=\"G3739\"* is|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* also|strong=\"G2532\"* makes intercession|strong=\"G1793\"* for|strong=\"G5228\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 35, + "text": "Who|strong=\"G5101\"* shall|strong=\"G5101\"* separate|strong=\"G5563\"* us|strong=\"G2249\"* from|strong=\"G3588\"* the|strong=\"G3588\"* love of|strong=\"G2228\"* Christ|strong=\"G5547\"*? Could|strong=\"G3588\"* oppression, or|strong=\"G2228\"* anguish|strong=\"G2347\"*, or|strong=\"G2228\"* persecution|strong=\"G1375\"*, or|strong=\"G2228\"* famine|strong=\"G3042\"*, or|strong=\"G2228\"* nakedness|strong=\"G1132\"*, or|strong=\"G2228\"* peril|strong=\"G2794\"*, or|strong=\"G2228\"* sword|strong=\"G3162\"*?" + }, + { + "verseNum": 36, + "text": "Even|strong=\"G2531\"* as|strong=\"G5613\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 37, + "text": "No|strong=\"G3956\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* we|strong=\"G2249\"* are|strong=\"G3588\"* more|strong=\"G3956\"* than conquerors|strong=\"G5245\"* through|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* loved us|strong=\"G2249\"*." + }, + { + "verseNum": 38, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* am|strong=\"G3195\"* persuaded|strong=\"G3982\"* that|strong=\"G3754\"* neither|strong=\"G3777\"* death|strong=\"G2288\"*, nor|strong=\"G3777\"* life|strong=\"G2222\"*, nor|strong=\"G3777\"* angels, nor|strong=\"G3777\"* principalities, nor|strong=\"G3777\"* things|strong=\"G3195\"* present|strong=\"G1764\"*, nor|strong=\"G3777\"* things|strong=\"G3195\"* to|strong=\"G3195\"* come|strong=\"G3195\"*, nor|strong=\"G3777\"* powers|strong=\"G1411\"*," + }, + { + "verseNum": 39, + "text": "nor|strong=\"G3777\"* height|strong=\"G5313\"*, nor|strong=\"G3777\"* depth, nor|strong=\"G3777\"* any|strong=\"G5100\"* other|strong=\"G2087\"* created|strong=\"G2937\"* thing|strong=\"G5100\"* will|strong=\"G2316\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1410\"* separate|strong=\"G5563\"* us|strong=\"G2249\"* from|strong=\"G3588\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* tell|strong=\"G3004\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* Christ|strong=\"G5547\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* not|strong=\"G3756\"* lying|strong=\"G5574\"*, my|strong=\"G1722\"* conscience|strong=\"G4893\"* testifying with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*" + }, + { + "verseNum": 2, + "text": "that|strong=\"G3754\"* I|strong=\"G1473\"* have|strong=\"G2532\"* great|strong=\"G3173\"* sorrow|strong=\"G3077\"* and|strong=\"G2532\"* unceasing pain|strong=\"G3077\"* in|strong=\"G2532\"* my|strong=\"G1473\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* could|strong=\"G3588\"* wish|strong=\"G2172\"* that|strong=\"G3588\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* were|strong=\"G1510\"* accursed from|strong=\"G2596\"* Christ|strong=\"G5547\"* for|strong=\"G1063\"* my|strong=\"G1473\"* brothers’ sake|strong=\"G5228\"*, my|strong=\"G1473\"* relatives|strong=\"G4773\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*" + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* are|strong=\"G1510\"* Israelites|strong=\"G2475\"*; whose|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* adoption|strong=\"G5206\"*, the|strong=\"G2532\"* glory|strong=\"G1391\"*, the|strong=\"G2532\"* covenants|strong=\"G1242\"*, the|strong=\"G2532\"* giving|strong=\"G3548\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3548\"*, the|strong=\"G2532\"* service|strong=\"G2999\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*;" + }, + { + "verseNum": 5, + "text": "of|strong=\"G1537\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"*, and|strong=\"G2532\"* from|strong=\"G1537\"* whom|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* as|strong=\"G1519\"* concerning|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* over|strong=\"G1909\"* all|strong=\"G3956\"*, God|strong=\"G2316\"*, blessed|strong=\"G2128\"* forever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* it|strong=\"G3754\"* is|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G1161\"* though|strong=\"G1161\"* the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"* has|strong=\"G2316\"* come|strong=\"G3756\"* to|strong=\"G3756\"* nothing|strong=\"G3756\"*. For|strong=\"G1063\"* they|strong=\"G1161\"* are|strong=\"G3588\"* not|strong=\"G3756\"* all|strong=\"G3956\"* Israel|strong=\"G2474\"* that|strong=\"G3754\"* are|strong=\"G3588\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 7, + "text": "Neither|strong=\"G3761\"*, because|strong=\"G3754\"* they|strong=\"G3754\"* are|strong=\"G1510\"* Abraham’s offspring, are|strong=\"G1510\"* they|strong=\"G3754\"* all|strong=\"G3956\"* children|strong=\"G5043\"*. But|strong=\"G3761\"*, “your|strong=\"G3956\"* offspring will|strong=\"G1510\"* be|strong=\"G1510\"* accounted as|strong=\"G1722\"* from|strong=\"G1722\"* Isaac|strong=\"G2464\"*.”+ 9:7 Genesis 21:12*" + }, + { + "verseNum": 8, + "text": "That|strong=\"G3588\"* is|strong=\"G1510\"*, it|strong=\"G3778\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1519\"* children|strong=\"G5043\"* of|strong=\"G2316\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* who|strong=\"G3588\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, but|strong=\"G2316\"* the|strong=\"G1519\"* children|strong=\"G5043\"* of|strong=\"G2316\"* the|strong=\"G1519\"* promise|strong=\"G1860\"* are|strong=\"G1510\"* counted|strong=\"G3049\"* as|strong=\"G1519\"* heirs." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* a|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G5207\"* promise|strong=\"G1860\"*: “At|strong=\"G2596\"* the|strong=\"G2532\"* appointed time|strong=\"G2540\"* I|strong=\"G2532\"* will|strong=\"G1510\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* Sarah|strong=\"G4564\"* will|strong=\"G1510\"* have|strong=\"G2532\"* a|strong=\"G2532\"* son|strong=\"G5207\"*.”+ 9:9 Genesis 18:10,14*" + }, + { + "verseNum": 10, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* Rebekah|strong=\"G4479\"* also|strong=\"G2532\"* conceived|strong=\"G2845\"* by|strong=\"G1537\"* one|strong=\"G1520\"*, by|strong=\"G1537\"* our|strong=\"G2532\"* father|strong=\"G3962\"* Isaac|strong=\"G2464\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* being|strong=\"G2443\"* not|strong=\"G3756\"* yet|strong=\"G1063\"* born|strong=\"G1080\"*, neither|strong=\"G3756\"* having|strong=\"G3366\"* done|strong=\"G4238\"* anything|strong=\"G5100\"* good|strong=\"G3756\"* or|strong=\"G2228\"* bad|strong=\"G5337\"*, that|strong=\"G2443\"* the|strong=\"G1537\"* purpose|strong=\"G4286\"* of|strong=\"G1537\"* God|strong=\"G2316\"* according|strong=\"G2596\"* to|strong=\"G2443\"* election|strong=\"G1589\"* might|strong=\"G2316\"* stand|strong=\"G3306\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, but|strong=\"G1063\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* calls|strong=\"G2564\"*,+ 9:11 NU puts the phrase “not of works, but of him who calls” at the beginning of verse 12 instead of the end of verse 11.*" + }, + { + "verseNum": 12, + "text": "it|strong=\"G3754\"* was|strong=\"G3588\"* said|strong=\"G2046\"* to|strong=\"G1398\"* her|strong=\"G3754\"*, “The|strong=\"G3588\"* elder will|strong=\"G3748\"* serve|strong=\"G1398\"* the|strong=\"G3588\"* younger|strong=\"G1640\"*.”+ 9:12 Genesis 25:23*" + }, + { + "verseNum": 13, + "text": "Even|strong=\"G2531\"* as|strong=\"G2531\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Jacob|strong=\"G2384\"* I|strong=\"G1161\"* loved, but|strong=\"G1161\"* Esau|strong=\"G2269\"* I|strong=\"G1161\"* hated|strong=\"G3404\"*.”+ 9:13 Malachi 1:2-3*" + }, + { + "verseNum": 14, + "text": "What|strong=\"G5101\"* shall|strong=\"G2316\"* we|strong=\"G3767\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? Is|strong=\"G3588\"* there|strong=\"G1096\"* unrighteousness with|strong=\"G3844\"* God|strong=\"G2316\"*? May|strong=\"G2316\"* it|strong=\"G5101\"* never|strong=\"G3361\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* Moses|strong=\"G3475\"*, “I|strong=\"G3739\"* will|strong=\"G2532\"* have|strong=\"G2532\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2532\"* mercy|strong=\"G1653\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* will|strong=\"G2532\"* have|strong=\"G2532\"* compassion|strong=\"G3627\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G2532\"* compassion|strong=\"G3627\"*.”+ 9:15 Exodus 33:19*" + }, + { + "verseNum": 16, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* it|strong=\"G3588\"* is|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G2316\"* him|strong=\"G3588\"* who|strong=\"G3588\"* wills|strong=\"G2309\"*, nor|strong=\"G3761\"* of|strong=\"G2316\"* him|strong=\"G3588\"* who|strong=\"G3588\"* runs|strong=\"G5143\"*, but|strong=\"G3767\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2316\"* mercy|strong=\"G1653\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* to|strong=\"G1519\"* Pharaoh|strong=\"G5328\"*, “For|strong=\"G1063\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose I|strong=\"G1473\"* caused you|strong=\"G4771\"* to|strong=\"G1519\"* be|strong=\"G2532\"* raised|strong=\"G1825\"* up|strong=\"G1519\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* might|strong=\"G2532\"* show|strong=\"G1731\"* in|strong=\"G1722\"* you|strong=\"G4771\"* my|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* my|strong=\"G1722\"* name|strong=\"G3686\"* might|strong=\"G2532\"* be|strong=\"G2532\"* proclaimed|strong=\"G1229\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*.”+ 9:17 Exodus 9:16*" + }, + { + "verseNum": 18, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, he|strong=\"G1161\"* has|strong=\"G3739\"* mercy|strong=\"G1653\"* on|strong=\"G1653\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* desires|strong=\"G2309\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* hardens|strong=\"G4645\"* whom|strong=\"G3739\"* he|strong=\"G1161\"* desires|strong=\"G2309\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G3004\"* will|strong=\"G5101\"* say|strong=\"G3004\"* then|strong=\"G3767\"* to|strong=\"G3004\"* me|strong=\"G1473\"*, “Why|strong=\"G5101\"* does|strong=\"G5101\"* he|strong=\"G3588\"* still|strong=\"G2089\"* find|strong=\"G3201\"* fault|strong=\"G3201\"*? For|strong=\"G1063\"* who|strong=\"G5101\"* withstands his|strong=\"G3588\"* will|strong=\"G5101\"*?”" + }, + { + "verseNum": 20, + "text": "But|strong=\"G3361\"* indeed|strong=\"G3304\"*, O|strong=\"G5599\"* man|strong=\"G3361\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* to|strong=\"G3004\"* reply|strong=\"G3004\"* against|strong=\"G3779\"* God|strong=\"G2316\"*? Will|strong=\"G2316\"* the|strong=\"G3588\"* thing|strong=\"G5101\"* formed|strong=\"G4160\"* ask|strong=\"G3004\"* him|strong=\"G3588\"* who|strong=\"G5101\"* formed|strong=\"G4160\"* it|strong=\"G4160\"*, “Why|strong=\"G5101\"* did|strong=\"G4160\"* you|strong=\"G4771\"* make|strong=\"G4160\"* me|strong=\"G1473\"* like|strong=\"G3779\"* this|strong=\"G3588\"*?”+ 9:20 Isaiah 29:16; 45:9*" + }, + { + "verseNum": 21, + "text": "Or|strong=\"G2228\"* hasn’t|strong=\"G3588\"* the|strong=\"G1519\"* potter|strong=\"G2763\"* a|strong=\"G2192\"* right|strong=\"G1849\"* over|strong=\"G1537\"* the|strong=\"G1519\"* clay|strong=\"G4081\"*, from|strong=\"G1537\"* the|strong=\"G1519\"* same|strong=\"G3739\"* lump|strong=\"G5445\"* to|strong=\"G1519\"* make|strong=\"G4160\"* one|strong=\"G3739\"* part|strong=\"G1161\"* a|strong=\"G2192\"* vessel|strong=\"G4632\"* for|strong=\"G1519\"* honor|strong=\"G5092\"*, and|strong=\"G1161\"* another|strong=\"G3739\"* for|strong=\"G1519\"* dishonor?" + }, + { + "verseNum": 22, + "text": "What|strong=\"G3588\"* if|strong=\"G1487\"* God|strong=\"G2316\"*, willing|strong=\"G2309\"* to|strong=\"G1519\"* show|strong=\"G1731\"* his|strong=\"G1519\"* wrath|strong=\"G3709\"* and|strong=\"G2532\"* to|strong=\"G1519\"* make|strong=\"G1107\"* his|strong=\"G1519\"* power|strong=\"G1415\"* known|strong=\"G1107\"*, endured|strong=\"G5342\"* with|strong=\"G1722\"* much|strong=\"G4183\"* patience|strong=\"G3115\"* vessels|strong=\"G4632\"* of|strong=\"G2316\"* wrath|strong=\"G3709\"* prepared|strong=\"G2675\"* for|strong=\"G1519\"* destruction," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* make|strong=\"G1107\"* known|strong=\"G1107\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* his|strong=\"G1519\"* glory|strong=\"G1391\"* on|strong=\"G1909\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* mercy|strong=\"G1656\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* prepared|strong=\"G4282\"* beforehand|strong=\"G4282\"* for|strong=\"G1519\"* glory|strong=\"G1391\"*—" + }, + { + "verseNum": 24, + "text": "us|strong=\"G2249\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* called|strong=\"G2564\"*, not|strong=\"G3756\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*?" + }, + { + "verseNum": 25, + "text": "As|strong=\"G5613\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Hosea|strong=\"G5617\"*," + }, + { + "verseNum": 26, + "text": "“It|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* that|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* place|strong=\"G5117\"* where|strong=\"G3757\"* it|strong=\"G2532\"* was|strong=\"G1510\"* said|strong=\"G2046\"* to|strong=\"G2532\"* them|strong=\"G3588\"*, ‘You|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* my|strong=\"G1722\"* people|strong=\"G2992\"*,’" + }, + { + "verseNum": 27, + "text": "Isaiah|strong=\"G2268\"* cries|strong=\"G2896\"* concerning|strong=\"G5228\"* Israel|strong=\"G2474\"*," + }, + { + "verseNum": 28, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* will|strong=\"G2532\"* finish|strong=\"G4931\"* the|strong=\"G2532\"* work|strong=\"G3056\"* and|strong=\"G2532\"* cut|strong=\"G2532\"* it|strong=\"G2532\"* short|strong=\"G4932\"* in|strong=\"G1909\"* righteousness," + }, + { + "verseNum": 29, + "text": "As|strong=\"G5613\"* Isaiah|strong=\"G2268\"* has|strong=\"G2962\"* said|strong=\"G2532\"* before|strong=\"G4302\"*," + }, + { + "verseNum": 30, + "text": "What|strong=\"G5101\"* shall|strong=\"G5101\"* we|strong=\"G3754\"* say|strong=\"G3004\"* then|strong=\"G3767\"*? That|strong=\"G3754\"* the|strong=\"G1537\"* Gentiles|strong=\"G1484\"*, who|strong=\"G5101\"* didn’t|strong=\"G3588\"* follow|strong=\"G1377\"* after|strong=\"G1161\"* righteousness|strong=\"G1343\"*, attained|strong=\"G2638\"* to|strong=\"G3004\"* righteousness|strong=\"G1343\"*, even|strong=\"G1161\"* the|strong=\"G1537\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*;" + }, + { + "verseNum": 31, + "text": "but|strong=\"G1161\"* Israel|strong=\"G2474\"*, following after|strong=\"G1161\"* a|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* righteousness|strong=\"G1343\"*, didn’t arrive|strong=\"G5348\"* at|strong=\"G1519\"* the|strong=\"G1519\"* law|strong=\"G3551\"* of|strong=\"G3551\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 32, + "text": "Why|strong=\"G5101\"*? Because|strong=\"G3754\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* seek|strong=\"G5101\"* it|strong=\"G3754\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, but|strong=\"G3588\"* as|strong=\"G5613\"* it|strong=\"G3754\"* were|strong=\"G3588\"* by|strong=\"G1223\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law. They|strong=\"G3588\"* stumbled|strong=\"G4350\"* over|strong=\"G1537\"* the|strong=\"G1537\"* stumbling|strong=\"G4348\"* stone|strong=\"G3037\"*," + }, + { + "verseNum": 33, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, my|strong=\"G1699\"* heart|strong=\"G2588\"*’s desire|strong=\"G2107\"* and|strong=\"G2532\"* my|strong=\"G1699\"* prayer|strong=\"G1162\"* to|strong=\"G1519\"* God|strong=\"G2316\"* is|strong=\"G3588\"* for|strong=\"G1519\"* Israel, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4991\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* testify|strong=\"G3140\"* about|strong=\"G2596\"* them|strong=\"G3754\"* that|strong=\"G3754\"* they|strong=\"G3754\"* have|strong=\"G2192\"* a|strong=\"G2192\"* zeal|strong=\"G2205\"* for|strong=\"G1063\"* God|strong=\"G2316\"*, but|strong=\"G1063\"* not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* knowledge|strong=\"G1922\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* being|strong=\"G2532\"* ignorant of|strong=\"G2316\"* God|strong=\"G2316\"*’s righteousness|strong=\"G1343\"*, and|strong=\"G2532\"* seeking|strong=\"G2212\"* to|strong=\"G2532\"* establish|strong=\"G2476\"* their|strong=\"G2532\"* own|strong=\"G2398\"* righteousness|strong=\"G1343\"*, they|strong=\"G2532\"* didn’t|strong=\"G3588\"* subject|strong=\"G5293\"* themselves|strong=\"G2398\"* to|strong=\"G2532\"* the|strong=\"G2532\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G1519\"* fulfillment|strong=\"G5056\"*+ 10:4 or, completion, or end* of|strong=\"G3551\"* the|strong=\"G1519\"* law|strong=\"G3551\"* for|strong=\"G1063\"* righteousness|strong=\"G1343\"* to|strong=\"G1519\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* believes|strong=\"G4100\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* Moses|strong=\"G3475\"* writes|strong=\"G1125\"* about|strong=\"G1722\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, “The|strong=\"G1722\"* one|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* them|strong=\"G3588\"* will|strong=\"G4160\"* live|strong=\"G2198\"* by|strong=\"G1722\"* them|strong=\"G3588\"*.”+ 10:5 Leviticus 18:5*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* says|strong=\"G3004\"* this|strong=\"G3778\"*, “Don’t|strong=\"G3588\"* say|strong=\"G3004\"* in|strong=\"G1722\"* your|strong=\"G1722\"* heart|strong=\"G2588\"*, ‘Who|strong=\"G5101\"* will|strong=\"G5101\"* ascend|strong=\"G1537\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*?’+ 10:6 Deuteronomy 30:12* (that|strong=\"G3588\"* is|strong=\"G1510\"*, to|strong=\"G1519\"* bring|strong=\"G2609\"* Christ|strong=\"G5547\"* down|strong=\"G2609\"*);" + }, + { + "verseNum": 7, + "text": "or|strong=\"G2228\"*, ‘Who|strong=\"G5101\"* will|strong=\"G5101\"* descend|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G1519\"* abyss?’+ 10:7 Deuteronomy 30:13* (that|strong=\"G3588\"* is|strong=\"G1510\"*, to|strong=\"G1519\"* bring|strong=\"G1519\"* Christ|strong=\"G5547\"* up|strong=\"G1519\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*.)”" + }, + { + "verseNum": 8, + "text": "But|strong=\"G2532\"* what|strong=\"G5101\"* does|strong=\"G1510\"* it|strong=\"G2532\"* say|strong=\"G3004\"*? “The|strong=\"G1722\"* word|strong=\"G4487\"* is|strong=\"G1510\"* near|strong=\"G1451\"* you|strong=\"G4771\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2532\"* heart|strong=\"G2588\"*;”+ 10:8 Deuteronomy 30:14* that|strong=\"G3739\"* is|strong=\"G1510\"*, the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* we|strong=\"G3739\"* preach|strong=\"G2784\"*:" + }, + { + "verseNum": 9, + "text": "that|strong=\"G3754\"* if|strong=\"G1437\"* you|strong=\"G4771\"* will|strong=\"G2316\"* confess|strong=\"G3670\"* with|strong=\"G1722\"* your|strong=\"G2962\"* mouth|strong=\"G4750\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G3588\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* that|strong=\"G3754\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, you|strong=\"G4771\"* will|strong=\"G2316\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* with|strong=\"G1519\"* the|strong=\"G1519\"* heart|strong=\"G2588\"* one|strong=\"G1519\"* believes|strong=\"G4100\"* resulting|strong=\"G1519\"* in|strong=\"G1519\"* righteousness|strong=\"G1343\"*; and|strong=\"G1161\"* with|strong=\"G1519\"* the|strong=\"G1519\"* mouth|strong=\"G4750\"* confession is|strong=\"G1343\"* made|strong=\"G3670\"* resulting|strong=\"G1519\"* in|strong=\"G1519\"* salvation|strong=\"G4991\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “Whoever|strong=\"G3956\"* believes|strong=\"G4100\"* in|strong=\"G1909\"* him|strong=\"G3588\"* will|strong=\"G3956\"* not|strong=\"G3756\"* be|strong=\"G3756\"* disappointed|strong=\"G2617\"*.”+ 10:11 Isaiah 28:16*" + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* distinction|strong=\"G1293\"* between|strong=\"G5037\"* Jew|strong=\"G2453\"* and|strong=\"G2532\"* Greek|strong=\"G1672\"*; for|strong=\"G1063\"* the|strong=\"G2532\"* same|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* rich|strong=\"G4147\"* to|strong=\"G1519\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"*, “Whoever|strong=\"G3739\"* will|strong=\"G3739\"* call|strong=\"G1941\"* on|strong=\"G1941\"* the|strong=\"G3956\"* name|strong=\"G3686\"* of|strong=\"G3686\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* will|strong=\"G3739\"* be|strong=\"G3956\"* saved|strong=\"G4982\"*.”+ 10:13 Joel 2:32*" + }, + { + "verseNum": 14, + "text": "How|strong=\"G4459\"* then|strong=\"G3767\"* will|strong=\"G3739\"* they|strong=\"G1161\"* call|strong=\"G1941\"* on|strong=\"G1519\"* him|strong=\"G3739\"* in|strong=\"G1519\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* have|strong=\"G4100\"* not|strong=\"G3756\"* believed|strong=\"G4100\"*? How|strong=\"G4459\"* will|strong=\"G3739\"* they|strong=\"G1161\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3739\"* whom|strong=\"G3739\"* they|strong=\"G1161\"* have|strong=\"G4100\"* not|strong=\"G3756\"* heard? How|strong=\"G4459\"* will|strong=\"G3739\"* they|strong=\"G1161\"* hear without|strong=\"G5565\"* a|strong=\"G1519\"* preacher|strong=\"G2784\"*?" + }, + { + "verseNum": 15, + "text": "And|strong=\"G1161\"* how|strong=\"G4459\"* will|strong=\"G4459\"* they|strong=\"G1161\"* preach|strong=\"G2784\"* unless|strong=\"G1437\"* they|strong=\"G1161\"* are|strong=\"G3588\"* sent|strong=\"G1125\"*? As|strong=\"G5613\"* it|strong=\"G1161\"* is|strong=\"G3588\"* written|strong=\"G1125\"*:" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1063\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* all|strong=\"G3956\"* listen to|strong=\"G3004\"* the|strong=\"G3956\"* glad news|strong=\"G2098\"*. For|strong=\"G1063\"* Isaiah|strong=\"G2268\"* says|strong=\"G3004\"*, “Lord|strong=\"G2962\"*, who|strong=\"G5101\"* has|strong=\"G2962\"* believed|strong=\"G4100\"* our|strong=\"G3956\"* report?”+ 10:16 Isaiah 53:1*" + }, + { + "verseNum": 17, + "text": "So|strong=\"G1161\"* faith|strong=\"G4102\"* comes by|strong=\"G1223\"* hearing, and|strong=\"G1161\"* hearing by|strong=\"G1223\"* the|strong=\"G1537\"* word|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G2532\"* I|strong=\"G2532\"* say|strong=\"G3004\"*, didn’t|strong=\"G3588\"* they|strong=\"G2532\"* hear? Yes, most certainly|strong=\"G2532\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"G3361\"* I|strong=\"G1473\"* ask|strong=\"G3004\"*, didn’t Israel|strong=\"G2474\"* know|strong=\"G1097\"*? First|strong=\"G4413\"* Moses|strong=\"G3475\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 20, + "text": "Isaiah|strong=\"G2268\"* is|strong=\"G3588\"* very|strong=\"G2532\"* bold and|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* about|strong=\"G4314\"* Israel|strong=\"G2474\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “All|strong=\"G3650\"* day|strong=\"G2250\"* long|strong=\"G2250\"* I|strong=\"G1473\"* stretched|strong=\"G1600\"* out|strong=\"G2532\"* my|strong=\"G1473\"* hands|strong=\"G5495\"* to|strong=\"G4314\"* a|strong=\"G2532\"* disobedient and|strong=\"G2532\"* contrary people|strong=\"G2992\"*.”+ 10:21 Isaiah 65:2*" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* ask|strong=\"G3004\"* then|strong=\"G3767\"*, did|strong=\"G2532\"* God|strong=\"G2316\"* reject his|strong=\"G2532\"* people|strong=\"G2992\"*? May|strong=\"G2532\"* it|strong=\"G2532\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! For|strong=\"G1063\"* I|strong=\"G1473\"* also|strong=\"G2532\"* am|strong=\"G1510\"* an|strong=\"G2532\"* Israelite|strong=\"G2475\"*, a|strong=\"G1096\"* descendant|strong=\"G4690\"* of|strong=\"G1537\"* Abraham, of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin." + }, + { + "verseNum": 2, + "text": "God|strong=\"G2316\"* didn’t|strong=\"G3588\"* reject his|strong=\"G1722\"* people|strong=\"G2992\"*, whom|strong=\"G3739\"* he|strong=\"G3739\"* foreknew|strong=\"G4267\"*. Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3739\"* know|strong=\"G1492\"* what|strong=\"G5101\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* about|strong=\"G5613\"* Elijah|strong=\"G2243\"*? How|strong=\"G5613\"* he|strong=\"G3739\"* pleads|strong=\"G1793\"* with|strong=\"G1722\"* God|strong=\"G2316\"* against|strong=\"G2596\"* Israel|strong=\"G2474\"*:" + }, + { + "verseNum": 3, + "text": "“Lord|strong=\"G2962\"*, they|strong=\"G2532\"* have|strong=\"G2532\"* killed your|strong=\"G2962\"* prophets|strong=\"G4396\"*. They|strong=\"G2532\"* have|strong=\"G2532\"* broken down|strong=\"G2679\"* your|strong=\"G2962\"* altars|strong=\"G2379\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* left|strong=\"G5275\"* alone|strong=\"G3441\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* seek|strong=\"G2212\"* my|strong=\"G2212\"* life|strong=\"G5590\"*.”+ 11:3 1 Kings 19:10,14*" + }, + { + "verseNum": 4, + "text": "But|strong=\"G3588\"* how|strong=\"G5101\"* does|strong=\"G5101\"* God|strong=\"G3004\"* answer him|strong=\"G3588\"*? “I|strong=\"G3004\"* have|strong=\"G3748\"* reserved|strong=\"G2641\"* for|strong=\"G3756\"* myself|strong=\"G1683\"* seven|strong=\"G2035\"* thousand|strong=\"G2035\"* men|strong=\"G3588\"* who|strong=\"G5101\"* have|strong=\"G3748\"* not|strong=\"G3756\"* bowed|strong=\"G2578\"* the|strong=\"G3588\"* knee|strong=\"G1119\"* to|strong=\"G3004\"* Baal.”+ 11:4 1 Kings 19:18*" + }, + { + "verseNum": 5, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* too|strong=\"G2532\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* also|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G3588\"* a|strong=\"G1096\"* remnant|strong=\"G3005\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* election|strong=\"G1589\"* of|strong=\"G2532\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 6, + "text": "And|strong=\"G1161\"* if|strong=\"G1487\"* by|strong=\"G1537\"* grace|strong=\"G5485\"*, then|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* of|strong=\"G1537\"* works|strong=\"G2041\"*; otherwise|strong=\"G1893\"* grace|strong=\"G5485\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* grace|strong=\"G5485\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G1161\"* is|strong=\"G3588\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* grace|strong=\"G5485\"*; otherwise|strong=\"G1893\"* work|strong=\"G2041\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"*? That|strong=\"G3739\"* which|strong=\"G3739\"* Israel|strong=\"G2474\"* seeks|strong=\"G1934\"* for|strong=\"G1161\"*, that|strong=\"G3739\"* he|strong=\"G1161\"* didn’t|strong=\"G3588\"* obtain|strong=\"G2013\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* chosen|strong=\"G1589\"* ones obtained|strong=\"G2013\"* it|strong=\"G1161\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* hardened|strong=\"G4456\"*." + }, + { + "verseNum": 8, + "text": "According|strong=\"G2316\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “God|strong=\"G2316\"* gave|strong=\"G1325\"* them|strong=\"G3588\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* stupor|strong=\"G2659\"*, eyes|strong=\"G3788\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3361\"* see, and|strong=\"G2532\"* ears|strong=\"G3775\"* that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3361\"* hear, to|strong=\"G2532\"* this|strong=\"G3588\"* very|strong=\"G2532\"* day|strong=\"G2250\"*.”+ 11:8 Deuteronomy 29:4; Isaiah 29:10*" + }, + { + "verseNum": 9, + "text": "David|strong=\"G1138\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "Let|strong=\"G4654\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"* be|strong=\"G2532\"* darkened|strong=\"G4654\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* see." + }, + { + "verseNum": 11, + "text": "I|strong=\"G3767\"* ask|strong=\"G3004\"* then|strong=\"G3767\"*, did|strong=\"G1096\"* they|strong=\"G3588\"* stumble|strong=\"G4417\"* that|strong=\"G2443\"* they|strong=\"G3588\"* might|strong=\"G1484\"* fall|strong=\"G4098\"*? May|strong=\"G2443\"* it|strong=\"G1096\"* never|strong=\"G3361\"* be|strong=\"G1096\"*! But|strong=\"G3361\"* by|strong=\"G3004\"* their|strong=\"G1438\"* fall|strong=\"G4098\"* salvation|strong=\"G4991\"* has|strong=\"G1096\"* come|strong=\"G1096\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Gentiles|strong=\"G1484\"*, to|strong=\"G1519\"* provoke|strong=\"G3863\"* them|strong=\"G3588\"* to|strong=\"G1519\"* jealousy|strong=\"G3863\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* if|strong=\"G1487\"* their|strong=\"G2532\"* fall|strong=\"G3900\"* is|strong=\"G3588\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* loss the|strong=\"G2532\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* their|strong=\"G2532\"* fullness|strong=\"G4138\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"G1909\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* to|strong=\"G1909\"* you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G1510\"* Gentiles|strong=\"G1484\"*. Since|strong=\"G1161\"* then|strong=\"G3767\"* as|strong=\"G3745\"* I|strong=\"G1473\"* am|strong=\"G1510\"* an|strong=\"G1510\"* apostle to|strong=\"G1909\"* Gentiles|strong=\"G1484\"*, I|strong=\"G1473\"* glorify|strong=\"G1392\"* my|strong=\"G1473\"* ministry|strong=\"G1248\"*," + }, + { + "verseNum": 14, + "text": "if|strong=\"G1487\"* by|strong=\"G1537\"* any|strong=\"G5100\"* means|strong=\"G1513\"* I|strong=\"G1473\"* may|strong=\"G2532\"* provoke|strong=\"G3863\"* to|strong=\"G2532\"* jealousy|strong=\"G3863\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* my|strong=\"G1473\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* save|strong=\"G4982\"* some|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1537\"* rejection of|strong=\"G1537\"* them|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1537\"* reconciling|strong=\"G2643\"* of|strong=\"G1537\"* the|strong=\"G1537\"* world|strong=\"G2889\"*, what|strong=\"G5101\"* would|strong=\"G5101\"* their|strong=\"G3588\"* acceptance|strong=\"G4356\"* be|strong=\"G3361\"*, but|strong=\"G1487\"* life|strong=\"G2222\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 16, + "text": "If|strong=\"G1487\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruit is|strong=\"G3588\"* holy, so|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* lump|strong=\"G5445\"*. If|strong=\"G1487\"* the|strong=\"G2532\"* root|strong=\"G4491\"* is|strong=\"G3588\"* holy, so|strong=\"G2532\"* are|strong=\"G3588\"* the|strong=\"G2532\"* branches|strong=\"G2798\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* some|strong=\"G5100\"* of|strong=\"G2532\"* the|strong=\"G1722\"* branches|strong=\"G2798\"* were|strong=\"G1510\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, and|strong=\"G2532\"* you|strong=\"G4771\"*, being|strong=\"G1510\"* a|strong=\"G1096\"* wild|strong=\"G2532\"* olive|strong=\"G1636\"*, were|strong=\"G1510\"* grafted|strong=\"G1461\"* in|strong=\"G1722\"* among|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* became|strong=\"G1096\"* partaker|strong=\"G4791\"* with|strong=\"G1722\"* them|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* root|strong=\"G4491\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* richness of|strong=\"G2532\"* the|strong=\"G1722\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*," + }, + { + "verseNum": 18, + "text": "don’t|strong=\"G3588\"* boast|strong=\"G2620\"* over|strong=\"G2620\"* the|strong=\"G1161\"* branches|strong=\"G2798\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G4771\"* boast|strong=\"G2620\"*, remember that|strong=\"G3588\"* it|strong=\"G1161\"* is|strong=\"G3588\"* not|strong=\"G3756\"* you|strong=\"G4771\"* who|strong=\"G3588\"* support the|strong=\"G1161\"* root|strong=\"G4491\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* root|strong=\"G4491\"* supports you|strong=\"G4771\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G3004\"* will|strong=\"G1473\"* say|strong=\"G3004\"* then|strong=\"G3767\"*, “Branches|strong=\"G2798\"* were|strong=\"G2798\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G1473\"* be|strong=\"G2443\"* grafted|strong=\"G1461\"* in|strong=\"G3004\"*.”" + }, + { + "verseNum": 20, + "text": "True|strong=\"G3588\"*; by|strong=\"G2476\"* their|strong=\"G3588\"* unbelief they|strong=\"G1161\"* were|strong=\"G3588\"* broken|strong=\"G1575\"* off|strong=\"G1575\"*, and|strong=\"G1161\"* you|strong=\"G4771\"* stand|strong=\"G2476\"* by|strong=\"G2476\"* your|strong=\"G5426\"* faith|strong=\"G4102\"*. Don’t|strong=\"G3588\"* be|strong=\"G3361\"* conceited|strong=\"G5426\"*, but|strong=\"G1161\"* fear|strong=\"G5399\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"G1063\"* if|strong=\"G1487\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* the|strong=\"G2596\"* natural|strong=\"G5449\"* branches|strong=\"G2798\"*, neither|strong=\"G3761\"* will|strong=\"G2316\"* he|strong=\"G3588\"* spare|strong=\"G5339\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 22, + "text": "See|strong=\"G3708\"* then|strong=\"G3767\"* the|strong=\"G2532\"* goodness|strong=\"G5544\"* and|strong=\"G2532\"* severity of|strong=\"G2316\"* God|strong=\"G2316\"*. Toward|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fell|strong=\"G4098\"*, severity; but|strong=\"G1161\"* toward|strong=\"G1909\"* you|strong=\"G4771\"*, goodness|strong=\"G5544\"*, if|strong=\"G1437\"* you|strong=\"G4771\"* continue|strong=\"G1961\"* in|strong=\"G1909\"* his|strong=\"G1909\"* goodness|strong=\"G5544\"*; otherwise|strong=\"G1893\"* you|strong=\"G4771\"* also|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* cut|strong=\"G1581\"* off|strong=\"G1581\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"G1161\"* also|strong=\"G1161\"*, if|strong=\"G1437\"* they|strong=\"G1161\"* don’t|strong=\"G3588\"* continue|strong=\"G1961\"* in|strong=\"G2316\"* their|strong=\"G1438\"* unbelief, will|strong=\"G2316\"* be|strong=\"G1510\"* grafted|strong=\"G1461\"* in|strong=\"G2316\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* able|strong=\"G1415\"* to|strong=\"G1161\"* graft|strong=\"G1461\"* them|strong=\"G3588\"* in|strong=\"G2316\"* again|strong=\"G3825\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* you|strong=\"G4771\"* were|strong=\"G3588\"* cut|strong=\"G1581\"* out|strong=\"G1537\"* of|strong=\"G1537\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G1537\"* nature|strong=\"G5449\"* a|strong=\"G2532\"* wild|strong=\"G2532\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* grafted|strong=\"G1461\"* contrary|strong=\"G3844\"* to|strong=\"G1519\"* nature|strong=\"G5449\"* into|strong=\"G1519\"* a|strong=\"G2532\"* good|strong=\"G3588\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*, how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* will|strong=\"G2532\"* these|strong=\"G3778\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* the|strong=\"G2532\"* natural|strong=\"G5449\"* branches, be|strong=\"G2532\"* grafted|strong=\"G1461\"* into|strong=\"G1519\"* their|strong=\"G2532\"* own|strong=\"G2398\"* olive|strong=\"G1636\"* tree|strong=\"G1636\"*?" + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G1096\"* ignorant|strong=\"G3361\"*, brothers,+ 11:25 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* of|strong=\"G3844\"* this|strong=\"G3778\"* mystery|strong=\"G3466\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* you|strong=\"G5210\"* won’t|strong=\"G3588\"* be|strong=\"G1096\"* wise|strong=\"G5429\"* in|strong=\"G1525\"* your|strong=\"G1438\"* own|strong=\"G1438\"* conceits|strong=\"G1438\"*, that|strong=\"G3754\"* a|strong=\"G1096\"* partial|strong=\"G3313\"* hardening|strong=\"G4457\"* has|strong=\"G3739\"* happened|strong=\"G1096\"* to|strong=\"G2443\"* Israel|strong=\"G2474\"*, until the|strong=\"G3588\"* fullness|strong=\"G4138\"* of|strong=\"G3844\"* the|strong=\"G3588\"* Gentiles|strong=\"G1484\"* has|strong=\"G3739\"* come|strong=\"G1096\"* in|strong=\"G1525\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* so|strong=\"G3779\"* all|strong=\"G3956\"* Israel|strong=\"G2474\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*. Even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 27, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* my|strong=\"G1473\"* covenant|strong=\"G1242\"* with|strong=\"G3844\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 28, + "text": "Concerning|strong=\"G2596\"* the|strong=\"G1161\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, they|strong=\"G1161\"* are|strong=\"G3588\"* enemies|strong=\"G2190\"* for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*. But|strong=\"G1161\"* concerning|strong=\"G2596\"* the|strong=\"G1161\"* election|strong=\"G1589\"*, they|strong=\"G1161\"* are|strong=\"G3588\"* beloved for|strong=\"G1223\"* the|strong=\"G1161\"* fathers|strong=\"G3962\"*’ sake|strong=\"G1223\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* gifts|strong=\"G5486\"* and|strong=\"G2532\"* the|strong=\"G2532\"* calling|strong=\"G2821\"* of|strong=\"G2532\"* God|strong=\"G2316\"* are|strong=\"G3588\"* irrevocable." + }, + { + "verseNum": 30, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* you|strong=\"G5210\"* in|strong=\"G2316\"* time|strong=\"G4218\"* past|strong=\"G4218\"* were|strong=\"G3588\"* disobedient to|strong=\"G1161\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* have|strong=\"G1653\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"* by|strong=\"G1063\"* their|strong=\"G3588\"* disobedience," + }, + { + "verseNum": 31, + "text": "even|strong=\"G2532\"* so|strong=\"G3779\"* these|strong=\"G3778\"* also|strong=\"G2532\"* have|strong=\"G2532\"* now|strong=\"G3568\"* been|strong=\"G2532\"* disobedient, that|strong=\"G2443\"* by|strong=\"G2532\"* the|strong=\"G2532\"* mercy|strong=\"G1656\"* shown|strong=\"G1653\"* to|strong=\"G2443\"* you|strong=\"G3779\"* they|strong=\"G2532\"* may|strong=\"G2532\"* also|strong=\"G2532\"* obtain mercy|strong=\"G1656\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* bound all|strong=\"G3956\"* to|strong=\"G1519\"* disobedience, that|strong=\"G2443\"* he|strong=\"G3588\"* might|strong=\"G2316\"* have|strong=\"G1653\"* mercy|strong=\"G1653\"* on|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 33, + "text": "Oh|strong=\"G5599\"* the|strong=\"G2532\"* depth of|strong=\"G2316\"* the|strong=\"G2532\"* riches|strong=\"G4149\"* both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2316\"* God|strong=\"G2316\"*! How|strong=\"G5613\"* unsearchable are|strong=\"G3588\"* his|strong=\"G2532\"* judgments|strong=\"G2917\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* ways|strong=\"G3598\"* past tracing out|strong=\"G2532\"*!" + }, + { + "verseNum": 34, + "text": "“For|strong=\"G1063\"* who|strong=\"G5101\"* has|strong=\"G2962\"* known|strong=\"G1097\"* the|strong=\"G1063\"* mind|strong=\"G3563\"* of|strong=\"G2962\"* the|strong=\"G1063\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 35, + "text": "“Or|strong=\"G2228\"* who|strong=\"G5101\"* has|strong=\"G5101\"* first|strong=\"G4272\"* given|strong=\"G4272\"* to|strong=\"G2532\"* him|strong=\"G2532\"*," + }, + { + "verseNum": 36, + "text": "For|strong=\"G3754\"* of|strong=\"G1537\"* him|strong=\"G3588\"* and|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* for|strong=\"G3754\"* ever|strong=\"G1519\"*! Amen." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1223\"* urge|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, by|strong=\"G1223\"* the|strong=\"G1223\"* mercies|strong=\"G3628\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, to|strong=\"G2316\"* present|strong=\"G3936\"* your|strong=\"G1223\"* bodies|strong=\"G4983\"* a|strong=\"G1223\"* living|strong=\"G2198\"* sacrifice|strong=\"G2378\"*, holy, acceptable|strong=\"G2101\"* to|strong=\"G2316\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* your|strong=\"G1223\"* spiritual|strong=\"G3050\"* service|strong=\"G2999\"*." + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* conformed|strong=\"G4964\"* to|strong=\"G1519\"* this|strong=\"G3778\"* world, but|strong=\"G2532\"* be|strong=\"G2532\"* transformed|strong=\"G3339\"* by|strong=\"G2532\"* the|strong=\"G2532\"* renewing of|strong=\"G2316\"* your|strong=\"G2532\"* mind|strong=\"G3563\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* prove|strong=\"G1381\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G5101\"*, well-pleasing|strong=\"G2101\"*, and|strong=\"G2532\"* perfect|strong=\"G5046\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* say|strong=\"G3004\"* through|strong=\"G1223\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3739\"* was|strong=\"G1510\"* given|strong=\"G1325\"* me|strong=\"G1325\"*, to|strong=\"G1519\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* is|strong=\"G1510\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, not|strong=\"G3361\"* to|strong=\"G1519\"* think|strong=\"G5426\"* of|strong=\"G1223\"* yourself|strong=\"G4771\"* more|strong=\"G1325\"* highly|strong=\"G5252\"* than|strong=\"G3844\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1519\"* think|strong=\"G5426\"*; but|strong=\"G3361\"* to|strong=\"G1519\"* think|strong=\"G5426\"* reasonably, as|strong=\"G5613\"* God|strong=\"G2316\"* has|strong=\"G2316\"* apportioned|strong=\"G3307\"* to|strong=\"G1519\"* each|strong=\"G1538\"* person|strong=\"G3739\"* a|strong=\"G5613\"* measure|strong=\"G3358\"* of|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* even|strong=\"G1161\"* as|strong=\"G1722\"* we|strong=\"G1063\"* have|strong=\"G2192\"* many|strong=\"G4183\"* members|strong=\"G3196\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, and|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G1722\"* members|strong=\"G3196\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1722\"* same function|strong=\"G4234\"*," + }, + { + "verseNum": 5, + "text": "so|strong=\"G3779\"* we|strong=\"G1161\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G1161\"* individually|strong=\"G2596\"* members|strong=\"G3196\"* of|strong=\"G1520\"* one|strong=\"G1520\"* another|strong=\"G2596\"*," + }, + { + "verseNum": 6, + "text": "having|strong=\"G2192\"* gifts|strong=\"G5486\"* differing|strong=\"G1313\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2596\"* us|strong=\"G1325\"*: if|strong=\"G1535\"* prophecy|strong=\"G4394\"*, let|strong=\"G1161\"*’s|strong=\"G2192\"* prophesy according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* proportion of|strong=\"G5485\"* our|strong=\"G2596\"* faith|strong=\"G4102\"*;" + }, + { + "verseNum": 7, + "text": "or|strong=\"G1535\"* service|strong=\"G1248\"*, let’s give ourselves to|strong=\"G1722\"* service|strong=\"G1248\"*; or|strong=\"G1535\"* he|strong=\"G3588\"* who|strong=\"G3588\"* teaches|strong=\"G1321\"*, to|strong=\"G1722\"* his|strong=\"G1722\"* teaching|strong=\"G1321\"*;" + }, + { + "verseNum": 8, + "text": "or|strong=\"G1535\"* he|strong=\"G3588\"* who|strong=\"G3588\"* exhorts|strong=\"G3870\"*, to|strong=\"G1722\"* his|strong=\"G1722\"* exhorting|strong=\"G3870\"*; he|strong=\"G3588\"* who|strong=\"G3588\"* gives|strong=\"G3330\"*, let him|strong=\"G3588\"* do|strong=\"G1722\"* it|strong=\"G3588\"* with|strong=\"G1722\"* generosity; he|strong=\"G3588\"* who|strong=\"G3588\"* rules, with|strong=\"G1722\"* diligence|strong=\"G4710\"*; he|strong=\"G3588\"* who|strong=\"G3588\"* shows|strong=\"G1653\"* mercy|strong=\"G1653\"*, with|strong=\"G1722\"* cheerfulness|strong=\"G2432\"*." + }, + { + "verseNum": 9, + "text": "Let love be|strong=\"G3588\"* without|strong=\"G3588\"* hypocrisy. Abhor that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* evil|strong=\"G4190\"*. Cling|strong=\"G2853\"* to|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1519\"* love|strong=\"G5360\"* of|strong=\"G3588\"* the|strong=\"G1519\"* brothers be|strong=\"G1519\"* tenderly affectionate to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*; in|strong=\"G1519\"* honor|strong=\"G5092\"* prefer one|strong=\"G3588\"* another|strong=\"G3588\"*," + }, + { + "verseNum": 11, + "text": "not|strong=\"G3361\"* lagging|strong=\"G3636\"* in|strong=\"G3588\"* diligence|strong=\"G4710\"*, fervent|strong=\"G2204\"* in|strong=\"G3588\"* spirit|strong=\"G4151\"*, serving|strong=\"G1398\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 12, + "text": "rejoicing|strong=\"G5463\"* in|strong=\"G5463\"* hope|strong=\"G1680\"*, enduring in|strong=\"G5463\"* troubles|strong=\"G2347\"*, continuing|strong=\"G4342\"* steadfastly in|strong=\"G5463\"* prayer|strong=\"G4335\"*," + }, + { + "verseNum": 13, + "text": "contributing|strong=\"G2841\"* to|strong=\"G3588\"* the|strong=\"G3588\"* needs|strong=\"G5532\"* of|strong=\"G5532\"* the|strong=\"G3588\"* saints, and|strong=\"G3588\"* given to|strong=\"G3588\"* hospitality|strong=\"G5381\"*." + }, + { + "verseNum": 14, + "text": "Bless|strong=\"G2127\"* those|strong=\"G3588\"* who|strong=\"G3588\"* persecute|strong=\"G1377\"* you|strong=\"G5210\"*; bless|strong=\"G2127\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* curse|strong=\"G2672\"*." + }, + { + "verseNum": 15, + "text": "Rejoice|strong=\"G5463\"* with|strong=\"G3326\"* those who rejoice|strong=\"G5463\"*. Weep|strong=\"G2799\"* with|strong=\"G3326\"* those who weep|strong=\"G2799\"*." + }, + { + "verseNum": 16, + "text": "Be|strong=\"G1096\"* of|strong=\"G3844\"* the|strong=\"G1519\"* same mind|strong=\"G5426\"* one|strong=\"G1438\"* toward|strong=\"G1519\"* another|strong=\"G1438\"*. Don’t|strong=\"G3588\"* set|strong=\"G5426\"* your|strong=\"G5426\"* mind|strong=\"G5426\"* on|strong=\"G1519\"* high|strong=\"G5308\"* things|strong=\"G3588\"*, but|strong=\"G3361\"* associate|strong=\"G4879\"* with|strong=\"G3844\"* the|strong=\"G1519\"* humble|strong=\"G5011\"*. Don’t|strong=\"G3588\"* be|strong=\"G1096\"* wise|strong=\"G5429\"* in|strong=\"G1519\"* your|strong=\"G5426\"* own|strong=\"G1438\"* conceits|strong=\"G1438\"*." + }, + { + "verseNum": 17, + "text": "Repay no|strong=\"G3367\"* one|strong=\"G3367\"* evil|strong=\"G2556\"* for|strong=\"G2570\"* evil|strong=\"G2556\"*. Respect|strong=\"G4306\"* what|strong=\"G2556\"* is|strong=\"G3956\"* honorable|strong=\"G2570\"* in|strong=\"G3956\"* the|strong=\"G3956\"* sight|strong=\"G1799\"* of|strong=\"G1799\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"G1487\"* it|strong=\"G1487\"* is|strong=\"G3588\"* possible|strong=\"G1415\"*, as|strong=\"G3956\"* much as|strong=\"G3956\"* it|strong=\"G1487\"* is|strong=\"G3588\"* up|strong=\"G1537\"* to|strong=\"G3956\"* you|strong=\"G5210\"*, be|strong=\"G3956\"* at|strong=\"G1537\"* peace|strong=\"G1514\"* with|strong=\"G3326\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "Don’t|strong=\"G3588\"* seek revenge|strong=\"G1556\"* yourselves|strong=\"G1438\"*, beloved, but|strong=\"G3361\"* give|strong=\"G1325\"* place|strong=\"G5117\"* to|strong=\"G3004\"* God|strong=\"G3004\"*’s|strong=\"G2962\"* wrath|strong=\"G3709\"*. For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Vengeance|strong=\"G1557\"* belongs to|strong=\"G3004\"* me|strong=\"G1325\"*; I|strong=\"G1473\"* will|strong=\"G2962\"* repay, says|strong=\"G3004\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*.”+ 12:19 Deuteronomy 32:35*" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"G1063\"*" + }, + { + "verseNum": 21, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G3361\"* overcome|strong=\"G3528\"* by|strong=\"G1722\"* evil|strong=\"G2556\"*, but|strong=\"G3361\"* overcome|strong=\"G3528\"* evil|strong=\"G2556\"* with|strong=\"G1722\"* good|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1161\"* every|strong=\"G3956\"* soul|strong=\"G5590\"* be|strong=\"G1510\"* in|strong=\"G2316\"* subjection|strong=\"G5293\"* to|strong=\"G1849\"* the|strong=\"G3956\"* higher|strong=\"G5242\"* authorities|strong=\"G1849\"*, for|strong=\"G1063\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* authority|strong=\"G1849\"* except|strong=\"G1487\"* from|strong=\"G5259\"* God|strong=\"G2316\"*, and|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* exist|strong=\"G1510\"* are|strong=\"G1510\"* ordained|strong=\"G5021\"* by|strong=\"G5259\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"G5620\"* he|strong=\"G1161\"* who|strong=\"G3588\"* resists the|strong=\"G1161\"* authority|strong=\"G1849\"* withstands the|strong=\"G1161\"* ordinance|strong=\"G1296\"* of|strong=\"G2316\"* God|strong=\"G2316\"*; and|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* withstand will|strong=\"G2316\"* receive|strong=\"G2983\"* to|strong=\"G1849\"* themselves|strong=\"G1438\"* judgment|strong=\"G2917\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* rulers are|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G2192\"* terror|strong=\"G5401\"* to|strong=\"G2532\"* the|strong=\"G2532\"* good|strong=\"G3756\"* work|strong=\"G2041\"*, but|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G2556\"*. Do|strong=\"G4160\"* you|strong=\"G1510\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* of|strong=\"G1537\"* the|strong=\"G2532\"* authority|strong=\"G1849\"*? Do|strong=\"G4160\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3756\"*, and|strong=\"G2532\"* you|strong=\"G1510\"* will|strong=\"G2309\"* have|strong=\"G2192\"* praise|strong=\"G1868\"* from|strong=\"G1537\"* the|strong=\"G2532\"* authority|strong=\"G1849\"*," + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G1519\"* you|strong=\"G4771\"* for|strong=\"G1063\"* good|strong=\"G3756\"*. But|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G4771\"* do|strong=\"G4160\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*, be|strong=\"G1510\"* afraid|strong=\"G5399\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* doesn’t|strong=\"G3588\"* bear|strong=\"G4160\"* the|strong=\"G1519\"* sword|strong=\"G3162\"* in|strong=\"G1519\"* vain|strong=\"G1500\"*; for|strong=\"G1063\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, an|strong=\"G1519\"* avenger|strong=\"G1558\"* for|strong=\"G1063\"* wrath|strong=\"G3709\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* evil|strong=\"G2556\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G1352\"* you|strong=\"G2532\"* need to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* for|strong=\"G1223\"* conscience|strong=\"G4893\"*’ sake|strong=\"G1223\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* you|strong=\"G1510\"* also|strong=\"G2532\"* pay|strong=\"G5055\"* taxes|strong=\"G5411\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* servants|strong=\"G3011\"* of|strong=\"G1223\"* God|strong=\"G2316\"*’s service, continually|strong=\"G1223\"* doing this|strong=\"G3778\"* very|strong=\"G2532\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 7, + "text": "Therefore give|strong=\"G3956\"* everyone|strong=\"G3956\"* what|strong=\"G3588\"* you|strong=\"G3956\"* owe: if you|strong=\"G3956\"* owe taxes|strong=\"G5411\"*, pay taxes|strong=\"G5411\"*; if customs|strong=\"G5056\"*, then|strong=\"G3956\"* customs|strong=\"G5056\"*; if respect|strong=\"G5092\"*, then|strong=\"G3956\"* respect|strong=\"G5092\"*; if honor|strong=\"G5092\"*, then|strong=\"G3956\"* honor|strong=\"G5092\"*." + }, + { + "verseNum": 8, + "text": "Owe|strong=\"G3784\"* no|strong=\"G3361\"* one|strong=\"G3367\"* anything|strong=\"G3367\"*, except|strong=\"G1487\"* to|strong=\"G3361\"* love one|strong=\"G3367\"* another|strong=\"G2087\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* loves his|strong=\"G3588\"* neighbor|strong=\"G2087\"* has|strong=\"G4137\"* fulfilled|strong=\"G4137\"* the|strong=\"G3588\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* commandments|strong=\"G1785\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*,” “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* murder|strong=\"G5407\"*,” “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* steal|strong=\"G2813\"*,”+ 13:9 TR adds “You shall not give false testimony,”* “You|strong=\"G4771\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* covet|strong=\"G1937\"*,”+ 13:9 Exodus 20:13-15,17; Deuteronomy 5:17-19,21* and|strong=\"G2532\"* whatever|strong=\"G5100\"* other|strong=\"G2087\"* commandments|strong=\"G1785\"* there|strong=\"G2532\"* are|strong=\"G3588\"*, are|strong=\"G3588\"* all|strong=\"G2532\"* summed up|strong=\"G2532\"* in|strong=\"G1722\"* this|strong=\"G3778\"* saying|strong=\"G3056\"*, namely|strong=\"G5613\"*, “You|strong=\"G4771\"* shall|strong=\"G2532\"* love your|strong=\"G2532\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 13:9 Leviticus 19:18*" + }, + { + "verseNum": 10, + "text": "Love doesn’t|strong=\"G3588\"* harm|strong=\"G2556\"* a|strong=\"G3756\"* neighbor|strong=\"G4139\"*. Love therefore|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G3588\"* fulfillment|strong=\"G4138\"* of|strong=\"G3551\"* the|strong=\"G3588\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 11, + "text": "Do|strong=\"G1492\"* this|strong=\"G3778\"*, knowing|strong=\"G1492\"* the|strong=\"G2532\"* time|strong=\"G2540\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G3588\"* already|strong=\"G2235\"* time|strong=\"G2540\"* for|strong=\"G1063\"* you|strong=\"G5210\"* to|strong=\"G2532\"* awaken|strong=\"G1453\"* out|strong=\"G1537\"* of|strong=\"G1537\"* sleep|strong=\"G5258\"*, for|strong=\"G1063\"* salvation|strong=\"G4991\"* is|strong=\"G3588\"* now|strong=\"G3568\"* nearer|strong=\"G1452\"* to|strong=\"G2532\"* us|strong=\"G2249\"* than|strong=\"G2228\"* when|strong=\"G3753\"* we|strong=\"G2249\"* first|strong=\"G3588\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G1161\"* night|strong=\"G3571\"* is|strong=\"G3588\"* far|strong=\"G3588\"* gone|strong=\"G4298\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* day|strong=\"G2250\"* is|strong=\"G3588\"* near|strong=\"G1448\"*. Let|strong=\"G1161\"*’s therefore|strong=\"G3767\"* throw off the|strong=\"G1161\"* deeds|strong=\"G2041\"* of|strong=\"G2250\"* darkness|strong=\"G4655\"*, and|strong=\"G1161\"* let|strong=\"G1161\"*’s put|strong=\"G1746\"* on|strong=\"G1746\"* the|strong=\"G1161\"* armor|strong=\"G3696\"* of|strong=\"G2250\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"G2532\"*’s walk|strong=\"G4043\"* properly|strong=\"G2156\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"*; not|strong=\"G3361\"* in|strong=\"G1722\"* reveling and|strong=\"G2532\"* drunkenness|strong=\"G3178\"*, not|strong=\"G3361\"* in|strong=\"G1722\"* sexual|strong=\"G2845\"* promiscuity|strong=\"G2845\"* and|strong=\"G2532\"* lustful acts, and|strong=\"G2532\"* not|strong=\"G3361\"* in|strong=\"G1722\"* strife|strong=\"G2054\"* and|strong=\"G2532\"* jealousy|strong=\"G2205\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* make|strong=\"G4160\"* no|strong=\"G3361\"* provision|strong=\"G4307\"* for|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, for|strong=\"G1519\"* its lusts|strong=\"G1939\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* accept|strong=\"G4355\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* weak in|strong=\"G1519\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"* not|strong=\"G3361\"* for|strong=\"G1519\"* disputes over|strong=\"G1519\"* opinions|strong=\"G1261\"*." + }, + { + "verseNum": 2, + "text": "One|strong=\"G3739\"* man|strong=\"G3956\"* has|strong=\"G3739\"* faith|strong=\"G3739\"* to|strong=\"G1161\"* eat|strong=\"G2068\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* is|strong=\"G3588\"* weak eats|strong=\"G2068\"* only|strong=\"G3303\"* vegetables|strong=\"G3001\"*." + }, + { + "verseNum": 3, + "text": "Don’t|strong=\"G3588\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* eats|strong=\"G2068\"* despise|strong=\"G1848\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*. Don’t|strong=\"G3588\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"* judge|strong=\"G2919\"* him|strong=\"G3588\"* who|strong=\"G3588\"* eats|strong=\"G2068\"*, for|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* accepted|strong=\"G4355\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* who|strong=\"G5101\"* judge|strong=\"G2919\"* another|strong=\"G3588\"*’s|strong=\"G2962\"* servant|strong=\"G3610\"*? To|strong=\"G1161\"* his|strong=\"G2398\"* own|strong=\"G2398\"* lord|strong=\"G2962\"* he|strong=\"G1161\"* stands|strong=\"G2476\"* or|strong=\"G2228\"* falls|strong=\"G4098\"*. Yes|strong=\"G1063\"*, he|strong=\"G1161\"* will|strong=\"G5101\"* be|strong=\"G1510\"* made|strong=\"G1161\"* to|strong=\"G1161\"* stand|strong=\"G2476\"*, for|strong=\"G1063\"* God|strong=\"G2962\"* has|strong=\"G2962\"* power to|strong=\"G1161\"* make|strong=\"G2476\"* him|strong=\"G3588\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"G1538\"* man|strong=\"G1538\"* esteems one|strong=\"G1538\"* day|strong=\"G2250\"* as|strong=\"G1722\"* more|strong=\"G1161\"* important. Another|strong=\"G3739\"* esteems every|strong=\"G3956\"* day|strong=\"G2250\"* alike. Let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* be|strong=\"G3956\"* fully|strong=\"G4135\"* assured|strong=\"G4135\"* in|strong=\"G1722\"* his|strong=\"G3956\"* own|strong=\"G2398\"* mind|strong=\"G3563\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* observes|strong=\"G5426\"* the|strong=\"G2532\"* day|strong=\"G2250\"*, observes|strong=\"G5426\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* does|strong=\"G2068\"* not|strong=\"G3756\"* observe the|strong=\"G2532\"* day|strong=\"G2250\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* he|strong=\"G2532\"* does|strong=\"G2068\"* not|strong=\"G3756\"* observe it|strong=\"G2532\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* eats|strong=\"G2068\"*, eats|strong=\"G2068\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* gives|strong=\"G2168\"* God|strong=\"G2316\"* thanks|strong=\"G2168\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"*, and|strong=\"G2532\"* gives|strong=\"G2168\"* God|strong=\"G2316\"* thanks|strong=\"G2168\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* none|strong=\"G3762\"* of|strong=\"G2532\"* us|strong=\"G2249\"* lives|strong=\"G2198\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* none|strong=\"G3762\"* dies to|strong=\"G2532\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* we|strong=\"G1437\"* live|strong=\"G2198\"*, we|strong=\"G1437\"* live|strong=\"G2198\"* to|strong=\"G5037\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*. Or|strong=\"G1437\"* if|strong=\"G1437\"* we|strong=\"G1437\"* die, we|strong=\"G1437\"* die to|strong=\"G5037\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*. If|strong=\"G1437\"* therefore|strong=\"G3767\"* we|strong=\"G1437\"* live|strong=\"G2198\"* or|strong=\"G1437\"* die, we|strong=\"G1437\"* are|strong=\"G1510\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* Christ|strong=\"G5547\"* died, rose|strong=\"G2532\"*, and|strong=\"G2532\"* lived|strong=\"G2198\"* again|strong=\"G1519\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* Lord|strong=\"G2961\"* of|strong=\"G2532\"* both|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* the|strong=\"G2532\"* living|strong=\"G2198\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* judge|strong=\"G2919\"* your|strong=\"G2532\"* brother? Or|strong=\"G2228\"* you|strong=\"G4771\"* again|strong=\"G2532\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* despise|strong=\"G1848\"* your|strong=\"G2532\"* brother? For|strong=\"G1063\"* we|strong=\"G1063\"* will|strong=\"G2316\"* all|strong=\"G3956\"* stand|strong=\"G3936\"* before|strong=\"G3936\"* the|strong=\"G2532\"* judgment|strong=\"G2919\"* seat of|strong=\"G2316\"* Christ." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 12, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G4012\"* us|strong=\"G1325\"* will|strong=\"G2316\"* give|strong=\"G1325\"* account|strong=\"G3056\"* of|strong=\"G4012\"* himself|strong=\"G1438\"* to|strong=\"G1325\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G3767\"* let|strong=\"G2919\"*’s not|strong=\"G3361\"* judge|strong=\"G2919\"* one|strong=\"G3588\"* another|strong=\"G3588\"* any|strong=\"G3361\"* more|strong=\"G3123\"*, but|strong=\"G3361\"* judge|strong=\"G2919\"* this|strong=\"G3778\"* rather|strong=\"G3123\"*, that|strong=\"G3588\"* no|strong=\"G3361\"* man|strong=\"G3778\"* put|strong=\"G5087\"* a|strong=\"G2228\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* in|strong=\"G5087\"* his|strong=\"G5087\"* brother’s way|strong=\"G3778\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* occasion for|strong=\"G2228\"* falling|strong=\"G5087\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* and|strong=\"G2532\"* am|strong=\"G1510\"* persuaded|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* that|strong=\"G3754\"* nothing|strong=\"G3762\"* is|strong=\"G1510\"* unclean|strong=\"G2839\"* of|strong=\"G1223\"* itself|strong=\"G1438\"*; except|strong=\"G1487\"* that|strong=\"G3754\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* considers anything|strong=\"G5100\"* to|strong=\"G2532\"* be|strong=\"G1510\"* unclean|strong=\"G2839\"*, to|strong=\"G2532\"* him|strong=\"G3588\"* it|strong=\"G2532\"* is|strong=\"G1510\"* unclean|strong=\"G2839\"*." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"G1063\"* if|strong=\"G1487\"* because|strong=\"G1223\"* of|strong=\"G1223\"* food|strong=\"G1033\"* your|strong=\"G1223\"* brother is|strong=\"G3588\"* grieved|strong=\"G3076\"*, you|strong=\"G4771\"* walk|strong=\"G4043\"* no|strong=\"G3361\"* longer|strong=\"G3765\"* in|strong=\"G2596\"* love. Don’t|strong=\"G3588\"* destroy with|strong=\"G1223\"* your|strong=\"G1223\"* food|strong=\"G1033\"* him|strong=\"G3588\"* for|strong=\"G1063\"* whom|strong=\"G3739\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"G3767\"* don’t|strong=\"G3588\"* let|strong=\"G3767\"* your|strong=\"G3588\"* good|strong=\"G3588\"* be|strong=\"G3361\"* slandered," + }, + { + "verseNum": 17, + "text": "for|strong=\"G1063\"* God|strong=\"G2316\"*’s Kingdom is|strong=\"G1510\"* not|strong=\"G3756\"* eating|strong=\"G1035\"* and|strong=\"G2532\"* drinking|strong=\"G4213\"*, but|strong=\"G2532\"* righteousness|strong=\"G1343\"*, peace|strong=\"G1515\"*, and|strong=\"G2532\"* joy|strong=\"G5479\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* serves|strong=\"G1398\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G3588\"* acceptable|strong=\"G2101\"* to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* approved|strong=\"G1384\"* by|strong=\"G1722\"* men|strong=\"G3778\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, let|strong=\"G3767\"*’s follow|strong=\"G1377\"* after|strong=\"G1377\"* things|strong=\"G3588\"* which|strong=\"G3588\"* make|strong=\"G1519\"* for|strong=\"G1519\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* things|strong=\"G3588\"* by|strong=\"G2532\"* which|strong=\"G3588\"* we|strong=\"G2532\"* may|strong=\"G2532\"* build|strong=\"G3619\"* one|strong=\"G3588\"* another|strong=\"G3588\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 20, + "text": "Don’t|strong=\"G3588\"* overthrow|strong=\"G2647\"* God|strong=\"G2316\"*’s work|strong=\"G2041\"* for|strong=\"G1223\"* food|strong=\"G1033\"*’s sake|strong=\"G1223\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* indeed|strong=\"G3303\"* are|strong=\"G3588\"* clean|strong=\"G2513\"*, however|strong=\"G3303\"* it|strong=\"G1223\"* is|strong=\"G3588\"* evil|strong=\"G2556\"* for|strong=\"G1223\"* that|strong=\"G3588\"* man|strong=\"G3956\"* who|strong=\"G3588\"* creates a|strong=\"G1223\"* stumbling|strong=\"G4348\"* block|strong=\"G4348\"* by|strong=\"G1223\"* eating|strong=\"G2068\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"G3739\"* is|strong=\"G3588\"* good|strong=\"G2570\"* to|strong=\"G1722\"* not|strong=\"G3361\"* eat|strong=\"G2068\"* meat|strong=\"G2907\"*, drink|strong=\"G4095\"* wine|strong=\"G3631\"*, nor|strong=\"G3366\"* do|strong=\"G3361\"* anything|strong=\"G5315\"* by|strong=\"G1722\"* which|strong=\"G3739\"* your|strong=\"G1722\"* brother stumbles|strong=\"G4350\"*, is|strong=\"G3588\"* offended|strong=\"G4624\"*, or|strong=\"G2228\"* is|strong=\"G3588\"* made weak." + }, + { + "verseNum": 22, + "text": "Do|strong=\"G2919\"* you|strong=\"G4771\"* have|strong=\"G2192\"* faith|strong=\"G4102\"*? Have|strong=\"G2192\"* it|strong=\"G3739\"* to|strong=\"G2596\"* yourself|strong=\"G4572\"* before|strong=\"G1799\"* God|strong=\"G2316\"*. Happy|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G3739\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* judge|strong=\"G2919\"* himself|strong=\"G1438\"* in|strong=\"G1722\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G3739\"* approves|strong=\"G1381\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* doubts|strong=\"G1252\"* is|strong=\"G1510\"* condemned|strong=\"G2632\"* if|strong=\"G1437\"* he|strong=\"G1161\"* eats|strong=\"G2068\"*, because|strong=\"G3754\"* it|strong=\"G3754\"* isn’t|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*; and|strong=\"G1161\"* whatever|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* sin." + }, + { + "verseNum": 24, + "text": "Now to him who is able to establish you according to my Good News and the preaching of Jesus Christ, according to the revelation of the mystery which has been kept secret through long ages," + }, + { + "verseNum": 25, + "text": "but now is revealed, and by the Scriptures of the prophets, according to the commandment of the eternal God, is made known for obedience of faith to all the nations;" + }, + { + "verseNum": 26, + "text": "to the only wise God, through Jesus Christ, to whom be the glory forever! Amen.+ 14:26 TR places verses 24-26 after Romans 16:24 as verses 25-27. *" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G3588\"* strong|strong=\"G1415\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* bear|strong=\"G2532\"* the|strong=\"G2532\"* weaknesses of|strong=\"G2532\"* the|strong=\"G2532\"* weak, and|strong=\"G2532\"* not|strong=\"G3361\"* to|strong=\"G2532\"* please ourselves|strong=\"G1438\"*." + }, + { + "verseNum": 2, + "text": "Let each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G3588\"* us|strong=\"G1519\"* please his|strong=\"G1519\"* neighbor|strong=\"G4139\"* for|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3588\"*, to|strong=\"G1519\"* be|strong=\"G1519\"* building|strong=\"G3619\"* him|strong=\"G3588\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* Christ|strong=\"G5547\"* didn’t|strong=\"G3588\"* please himself|strong=\"G1438\"*. But|strong=\"G2532\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* reproaches|strong=\"G3680\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* reproached|strong=\"G3679\"* you|strong=\"G4771\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* me|strong=\"G1473\"*.”+ 15:3 Psalms 69:9*" + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* whatever|strong=\"G3745\"* things|strong=\"G3588\"* were|strong=\"G3588\"* written|strong=\"G1125\"* before|strong=\"G1519\"* were|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1063\"* our|strong=\"G2251\"* learning|strong=\"G1319\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* through|strong=\"G1223\"* encouragement|strong=\"G3874\"* of|strong=\"G1223\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"* we|strong=\"G1063\"* might|strong=\"G2532\"* have|strong=\"G2192\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* of|strong=\"G2316\"* encouragement|strong=\"G3874\"* grant|strong=\"G1325\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* same|strong=\"G2532\"* mind|strong=\"G5426\"* with|strong=\"G1722\"* one|strong=\"G3588\"* another|strong=\"G2596\"* according|strong=\"G2596\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G2443\"* with|strong=\"G1722\"* one|strong=\"G1520\"* accord|strong=\"G3661\"* you|strong=\"G1722\"* may|strong=\"G2532\"* with|strong=\"G1722\"* one|strong=\"G1520\"* mouth|strong=\"G4750\"* glorify|strong=\"G1392\"* the|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"* accept|strong=\"G4355\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* accepted|strong=\"G4355\"* you|strong=\"G5210\"*,+ 15:7 TR reads “us” instead of “you”* to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1096\"* I|strong=\"G1063\"* say|strong=\"G3004\"* that|strong=\"G3588\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* been|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* of|strong=\"G2316\"* the|strong=\"G1519\"* circumcision|strong=\"G4061\"* for|strong=\"G1063\"* the|strong=\"G1519\"* truth of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* he|strong=\"G3588\"* might|strong=\"G2316\"* confirm the|strong=\"G1519\"* promises|strong=\"G1860\"* given to|strong=\"G1519\"* the|strong=\"G1519\"* fathers|strong=\"G3962\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* might|strong=\"G2532\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G5228\"* his|strong=\"G1223\"* mercy|strong=\"G1656\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "Again|strong=\"G3825\"* he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 11, + "text": "Again|strong=\"G3825\"*," + }, + { + "verseNum": 12, + "text": "Again|strong=\"G3825\"*, Isaiah|strong=\"G2268\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* hope|strong=\"G1680\"* fill|strong=\"G4137\"* you|strong=\"G5210\"* with|strong=\"G1722\"* all|strong=\"G3956\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* in|strong=\"G1722\"* believing|strong=\"G4100\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* hope|strong=\"G1680\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* myself|strong=\"G1473\"* am|strong=\"G1510\"* also|strong=\"G2532\"* persuaded|strong=\"G3982\"* about|strong=\"G4012\"* you|strong=\"G5210\"*, my|strong=\"G3956\"* brothers,+ 15:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* are|strong=\"G1510\"* full|strong=\"G3324\"* of|strong=\"G4012\"* goodness, filled|strong=\"G4137\"* with|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*, able|strong=\"G1410\"* also|strong=\"G2532\"* to|strong=\"G2532\"* admonish|strong=\"G3560\"* others|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* write|strong=\"G1125\"* the|strong=\"G1161\"* more|strong=\"G1161\"* boldly|strong=\"G5112\"* to|strong=\"G1325\"* you|strong=\"G5210\"* in|strong=\"G2316\"* part|strong=\"G3313\"* as|strong=\"G5613\"* reminding you|strong=\"G5210\"*, because|strong=\"G1223\"* of|strong=\"G5259\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1325\"* me|strong=\"G1325\"* by|strong=\"G1223\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G2316\"* be|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G3588\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, serving as|strong=\"G1519\"* a|strong=\"G1096\"* priest|strong=\"G2418\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* offering|strong=\"G4376\"* up|strong=\"G1519\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* might|strong=\"G1484\"* be|strong=\"G1096\"* made|strong=\"G1096\"* acceptable|strong=\"G2144\"*, sanctified by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G3767\"* have|strong=\"G2192\"* therefore|strong=\"G3767\"* my|strong=\"G1722\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* in|strong=\"G1722\"* things|strong=\"G3588\"* pertaining|strong=\"G4314\"* to|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* dare|strong=\"G5111\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* of|strong=\"G3056\"* any|strong=\"G5100\"* things|strong=\"G3739\"* except|strong=\"G3756\"* those|strong=\"G3739\"* which|strong=\"G3739\"* Christ|strong=\"G5547\"* worked through|strong=\"G1223\"* me|strong=\"G1473\"* for|strong=\"G1063\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, by|strong=\"G1223\"* word|strong=\"G3056\"* and|strong=\"G2532\"* deed|strong=\"G2041\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*; so|strong=\"G2532\"* that|strong=\"G3588\"* from|strong=\"G2532\"* Jerusalem|strong=\"G2419\"* and|strong=\"G2532\"* around|strong=\"G2945\"* as|strong=\"G1722\"* far|strong=\"G3588\"* as|strong=\"G1722\"* to|strong=\"G2532\"* Illyricum|strong=\"G2437\"*, I|strong=\"G1473\"* have|strong=\"G2532\"* fully|strong=\"G4137\"* preached|strong=\"G4137\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*;" + }, + { + "verseNum": 20, + "text": "yes|strong=\"G1161\"*, making it|strong=\"G1161\"* my|strong=\"G3618\"* aim to|strong=\"G2443\"* preach|strong=\"G2097\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, not|strong=\"G3756\"* where|strong=\"G3699\"* Christ|strong=\"G5547\"* was|strong=\"G5547\"* already named|strong=\"G3687\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* might|strong=\"G5547\"* not|strong=\"G3756\"* build|strong=\"G3618\"* on|strong=\"G1909\"* another|strong=\"G1909\"*’s foundation|strong=\"G2310\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G2532\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3739\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G1352\"* also|strong=\"G2532\"* I|strong=\"G2532\"* was|strong=\"G3588\"* hindered|strong=\"G1465\"* these|strong=\"G3588\"* many|strong=\"G4183\"* times from|strong=\"G2064\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* now|strong=\"G1161\"*, no|strong=\"G3371\"* longer|strong=\"G3371\"* having|strong=\"G2192\"* any|strong=\"G2192\"* place|strong=\"G5117\"* in|strong=\"G1722\"* these|strong=\"G3778\"* regions|strong=\"G2824\"*, and|strong=\"G1161\"* having|strong=\"G2192\"* these|strong=\"G3778\"* many|strong=\"G4183\"* years|strong=\"G2094\"* a|strong=\"G2192\"* longing|strong=\"G1974\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 24, + "text": "whenever|strong=\"G1437\"* I|strong=\"G2532\"* travel to|strong=\"G1519\"* Spain|strong=\"G4681\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G1519\"* see|strong=\"G2300\"* you|strong=\"G5210\"* on|strong=\"G1519\"* my|strong=\"G5259\"* journey|strong=\"G4311\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G2532\"* helped|strong=\"G4311\"* on|strong=\"G1519\"* my|strong=\"G5259\"* way|strong=\"G4198\"* there|strong=\"G1563\"* by|strong=\"G5259\"* you|strong=\"G5210\"*, if|strong=\"G1437\"* first|strong=\"G4413\"* I|strong=\"G2532\"* may|strong=\"G2532\"* enjoy your|strong=\"G1437\"* company for|strong=\"G1063\"* a|strong=\"G5613\"* while|strong=\"G5613\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, I|strong=\"G1161\"* say, I|strong=\"G1161\"* am|strong=\"G3588\"* going|strong=\"G4198\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*, serving|strong=\"G1247\"* the|strong=\"G1519\"* saints." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* has|strong=\"G5100\"* been|strong=\"G2532\"* the|strong=\"G1722\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"* of|strong=\"G2532\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia to|strong=\"G1519\"* make|strong=\"G4160\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* contribution|strong=\"G2842\"* for|strong=\"G1063\"* the|strong=\"G1722\"* poor|strong=\"G4434\"* among|strong=\"G1722\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G3588\"* at|strong=\"G1722\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 27, + "text": "Yes|strong=\"G1063\"*, it|strong=\"G2532\"* has|strong=\"G1510\"* been|strong=\"G1510\"* their|strong=\"G2532\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* their|strong=\"G2532\"* debtors|strong=\"G3781\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* have|strong=\"G2532\"* been|strong=\"G1510\"* made partakers|strong=\"G2841\"* of|strong=\"G2532\"* their|strong=\"G2532\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, they|strong=\"G2532\"* owe|strong=\"G3784\"* it|strong=\"G2532\"* to|strong=\"G2532\"* them|strong=\"G3588\"* also|strong=\"G2532\"* to|strong=\"G2532\"* serve them|strong=\"G3588\"* in|strong=\"G1722\"* material|strong=\"G4559\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G2532\"* therefore|strong=\"G3767\"* I|strong=\"G2532\"* have|strong=\"G2532\"* accomplished|strong=\"G2005\"* this|strong=\"G3778\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* sealed|strong=\"G4972\"* to|strong=\"G1519\"* them|strong=\"G3588\"* this|strong=\"G3778\"* fruit|strong=\"G2590\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* go|strong=\"G1519\"* on|strong=\"G1519\"* by|strong=\"G1223\"* way|strong=\"G1223\"* of|strong=\"G1223\"* you|strong=\"G5210\"* to|strong=\"G1519\"* Spain|strong=\"G4681\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"G1161\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G1161\"* I|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G1161\"* will|strong=\"G3748\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G1722\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Good News of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, by|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* by|strong=\"G1223\"* the|strong=\"G1722\"* love of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* strive|strong=\"G4865\"* together|strong=\"G4865\"* with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* your|strong=\"G1223\"* prayers|strong=\"G4335\"* to|strong=\"G4314\"* God|strong=\"G2316\"* for|strong=\"G5228\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 31, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* be|strong=\"G1096\"* delivered|strong=\"G4506\"* from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* disobedient in|strong=\"G1722\"* Judea|strong=\"G2449\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* my|strong=\"G1722\"* service|strong=\"G1248\"* which|strong=\"G3588\"* I|strong=\"G1473\"* have|strong=\"G2532\"* for|strong=\"G1519\"* Jerusalem|strong=\"G2419\"* may|strong=\"G2532\"* be|strong=\"G1096\"* acceptable|strong=\"G2144\"* to|strong=\"G1519\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 32, + "text": "that|strong=\"G2443\"* I|strong=\"G1223\"* may|strong=\"G2443\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* in|strong=\"G1722\"* joy|strong=\"G5479\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2064\"* together|strong=\"G4314\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, find|strong=\"G4875\"* rest|strong=\"G4875\"*." + }, + { + "verseNum": 33, + "text": "Now|strong=\"G1161\"* the|strong=\"G3956\"* God|strong=\"G2316\"* of|strong=\"G2316\"* peace|strong=\"G1515\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* commend|strong=\"G4921\"* to|strong=\"G2532\"* you|strong=\"G5210\"* Phoebe|strong=\"G5402\"*, our|strong=\"G2532\"* sister, who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G2532\"* servant|strong=\"G1249\"*+ 16:1 or, deacon * of|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Cenchreae," + }, + { + "verseNum": 2, + "text": "that|strong=\"G2443\"* you|strong=\"G5210\"* receive|strong=\"G4327\"* her|strong=\"G1438\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* a|strong=\"G1096\"* way|strong=\"G1722\"* worthy of|strong=\"G2532\"* the|strong=\"G1722\"* saints, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* assist|strong=\"G3936\"* her|strong=\"G1438\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* matter|strong=\"G4229\"* she|strong=\"G2532\"* may|strong=\"G2532\"* need|strong=\"G5535\"* from|strong=\"G2532\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* she|strong=\"G2532\"* herself|strong=\"G1438\"* also|strong=\"G2532\"* has|strong=\"G2962\"* been|strong=\"G1096\"* a|strong=\"G1096\"* helper|strong=\"G4368\"* of|strong=\"G2532\"* many|strong=\"G4183\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* my|strong=\"G1722\"* own|strong=\"G1438\"* self." + }, + { + "verseNum": 3, + "text": "Greet Prisca|strong=\"G4251\"* and|strong=\"G2532\"* Aquila, my|strong=\"G1722\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* risked|strong=\"G5294\"* their|strong=\"G1438\"* own|strong=\"G1438\"* necks|strong=\"G5137\"* for|strong=\"G5228\"* my|strong=\"G3956\"* life|strong=\"G5590\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* not|strong=\"G3756\"* only|strong=\"G3441\"* I|strong=\"G1473\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*." + }, + { + "verseNum": 5, + "text": "Greet the|strong=\"G2532\"* assembly|strong=\"G1577\"* that|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1519\"* their|strong=\"G2532\"* house|strong=\"G3624\"*. Greet Epaenetus|strong=\"G1866\"*, my|strong=\"G1473\"* beloved, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruits of|strong=\"G2532\"* Achaia to|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Greet Mary|strong=\"G3137\"*, who|strong=\"G3748\"* labored|strong=\"G2872\"* much|strong=\"G4183\"* for|strong=\"G1519\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 7, + "text": "Greet Andronicus and|strong=\"G2532\"* Junia|strong=\"G2458\"*, my|strong=\"G1722\"* relatives|strong=\"G4773\"* and|strong=\"G2532\"* my|strong=\"G1722\"* fellow|strong=\"G4869\"* prisoners|strong=\"G4869\"*, who|strong=\"G3739\"* are|strong=\"G1510\"* notable|strong=\"G1978\"* among|strong=\"G1722\"* the|strong=\"G1722\"* apostles, who|strong=\"G3739\"* were|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* before|strong=\"G4253\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 8, + "text": "Greet Amplias, my|strong=\"G1722\"* beloved in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "Greet Urbanus|strong=\"G3773\"*, our|strong=\"G2532\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* Stachys|strong=\"G4720\"*, my|strong=\"G1722\"* beloved." + }, + { + "verseNum": 10, + "text": "Greet Apelles, the|strong=\"G1722\"* approved|strong=\"G1384\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. Greet those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* household of|strong=\"G1537\"* Aristobulus." + }, + { + "verseNum": 11, + "text": "Greet Herodion|strong=\"G2267\"*, my|strong=\"G1722\"* kinsman|strong=\"G4773\"*. Greet them|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* household of|strong=\"G1537\"* Narcissus|strong=\"G3488\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "Greet Tryphaena|strong=\"G5170\"* and|strong=\"G2532\"* Tryphosa|strong=\"G5173\"*, who|strong=\"G3588\"* labor|strong=\"G2872\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Greet Persis|strong=\"G4069\"*, the|strong=\"G1722\"* beloved, who|strong=\"G3588\"* labored|strong=\"G2872\"* much|strong=\"G4183\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 13, + "text": "Greet Rufus|strong=\"G4504\"*, the|strong=\"G1722\"* chosen|strong=\"G1588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* mine|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "Greet Asyncritus, Phlegon|strong=\"G5393\"*, Hermes|strong=\"G2060\"*, Patrobas|strong=\"G3969\"*, Hermas|strong=\"G2057\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* brothers+ 16:14 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "Greet Philologus|strong=\"G5378\"* and|strong=\"G2532\"* Julia|strong=\"G2456\"*, Nereus|strong=\"G3517\"* and|strong=\"G2532\"* his|strong=\"G3956\"* sister, and|strong=\"G2532\"* Olympas|strong=\"G3652\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*. The|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G1577\"* Christ|strong=\"G5547\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* I|strong=\"G3739\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, look|strong=\"G4648\"* out|strong=\"G2532\"* for|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* causing|strong=\"G4160\"* the|strong=\"G2532\"* divisions|strong=\"G1370\"* and|strong=\"G2532\"* occasions of|strong=\"G2532\"* stumbling|strong=\"G4625\"*, contrary|strong=\"G3844\"* to|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1322\"* which|strong=\"G3739\"* you|strong=\"G5210\"* learned|strong=\"G3129\"*, and|strong=\"G2532\"* turn|strong=\"G1578\"* away|strong=\"G1578\"* from|strong=\"G3844\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* such|strong=\"G5108\"* don’t|strong=\"G3588\"* serve|strong=\"G1398\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*, but|strong=\"G2532\"* their|strong=\"G1438\"* own|strong=\"G1438\"* belly|strong=\"G2836\"*; and|strong=\"G2532\"* by|strong=\"G1223\"* their|strong=\"G1438\"* smooth|strong=\"G5542\"* and|strong=\"G2532\"* flattering|strong=\"G2129\"* speech|strong=\"G2129\"* they|strong=\"G2532\"* deceive|strong=\"G1818\"* the|strong=\"G2532\"* hearts|strong=\"G2588\"* of|strong=\"G1223\"* the|strong=\"G2532\"* innocent." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* your|strong=\"G3956\"* obedience|strong=\"G5218\"* has|strong=\"G1510\"* become|strong=\"G1510\"* known to|strong=\"G1519\"* all|strong=\"G3956\"*. I|strong=\"G1161\"* rejoice|strong=\"G5463\"* therefore|strong=\"G3767\"* over|strong=\"G1909\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G1519\"* have|strong=\"G2309\"* you|strong=\"G5210\"* wise|strong=\"G4680\"* in|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3956\"*, but|strong=\"G1161\"* innocent in|strong=\"G1519\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*." + }, + { + "verseNum": 20, + "text": "And|strong=\"G1161\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G5259\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* quickly|strong=\"G5034\"* crush|strong=\"G4937\"* Satan|strong=\"G4567\"* under|strong=\"G5259\"* your|strong=\"G2962\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 21, + "text": "Timothy|strong=\"G5095\"*, my|strong=\"G1473\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"*, greets you|strong=\"G5210\"*, as|strong=\"G2532\"* do|strong=\"G2532\"* Lucius|strong=\"G3066\"*, Jason|strong=\"G2394\"*, and|strong=\"G2532\"* Sosipater|strong=\"G4989\"*, my|strong=\"G1473\"* relatives|strong=\"G4773\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1473\"*, Tertius|strong=\"G5060\"*, who|strong=\"G3588\"* write|strong=\"G1125\"* the|strong=\"G1722\"* letter|strong=\"G1992\"*, greet you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 23, + "text": "Gaius|strong=\"G1050\"*, my|strong=\"G1473\"* host|strong=\"G3581\"* and|strong=\"G2532\"* host|strong=\"G3581\"* of|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"*, greets you|strong=\"G5210\"*. Erastus|strong=\"G2037\"*, the|strong=\"G2532\"* treasurer|strong=\"G3623\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, greets you|strong=\"G5210\"*, as|strong=\"G2532\"* does Quartus|strong=\"G2890\"*, the|strong=\"G2532\"* brother." + }, + { + "verseNum": 24, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G4771\"* all|strong=\"G3956\"*! Amen." + }, + { + "verseNum": 25, + "text": "+ 16:25 TR places Romans 14:24-26 at the end of Romans instead of at the end of chapter 14, and numbers these verses 16:25-27.*" + } + ] + } + ] + }, + { + "name": "1 Corinthians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, called|strong=\"G2822\"* to|strong=\"G2532\"* be|strong=\"G2532\"* an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* our|strong=\"G2316\"* brother Sosthenes|strong=\"G4988\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*—those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* sanctified|strong=\"G3956\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, called|strong=\"G2822\"* saints, with|strong=\"G1722\"* all|strong=\"G3956\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"*, both|strong=\"G2532\"* theirs and|strong=\"G2532\"* ours|strong=\"G1473\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* always|strong=\"G3842\"* thank|strong=\"G2168\"* my|strong=\"G1722\"* God|strong=\"G2316\"* concerning|strong=\"G4012\"* you|strong=\"G5210\"* for|strong=\"G4012\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G4012\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* you|strong=\"G5210\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G3754\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* you|strong=\"G3754\"* were|strong=\"G2532\"* enriched|strong=\"G4148\"* in|strong=\"G1722\"* him|strong=\"G2532\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* speech|strong=\"G3056\"* and|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*—" + }, + { + "verseNum": 6, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"* was|strong=\"G3588\"* confirmed in|strong=\"G1722\"* you|strong=\"G5210\"*—" + }, + { + "verseNum": 7, + "text": "so|strong=\"G5620\"* that|strong=\"G3588\"* you|strong=\"G5210\"* come|strong=\"G5302\"* behind|strong=\"G5302\"* in|strong=\"G1722\"* no|strong=\"G3361\"* gift|strong=\"G5486\"*, waiting for|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G2962\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 8, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* also|strong=\"G2532\"* confirm you|strong=\"G5210\"* until|strong=\"G2193\"* the|strong=\"G1722\"* end|strong=\"G5056\"*, blameless in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"G2316\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* called|strong=\"G2564\"* into|strong=\"G1519\"* the|strong=\"G1519\"* fellowship|strong=\"G2842\"* of|strong=\"G5207\"* his|strong=\"G1223\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers,+ 1:10 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* through|strong=\"G1223\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"* speak|strong=\"G3004\"* the|strong=\"G1722\"* same|strong=\"G2532\"* thing|strong=\"G3956\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* there|strong=\"G2532\"* be|strong=\"G1510\"* no|strong=\"G3361\"* divisions|strong=\"G4978\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, but|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* be|strong=\"G1510\"* perfected together|strong=\"G2675\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* mind|strong=\"G3563\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G2532\"* judgment|strong=\"G1106\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* it|strong=\"G3754\"* has|strong=\"G3748\"* been|strong=\"G1510\"* reported to|strong=\"G1722\"* me|strong=\"G1473\"* concerning|strong=\"G4012\"* you|strong=\"G5210\"*, my|strong=\"G1722\"* brothers, by|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* from|strong=\"G5259\"* Chloe|strong=\"G5514\"*’s household, that|strong=\"G3754\"* there|strong=\"G1063\"* are|strong=\"G1510\"* contentions|strong=\"G2054\"* among|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* mean|strong=\"G3004\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G1538\"* you|strong=\"G5210\"* says|strong=\"G3004\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Paul|strong=\"G3972\"*,” “I|strong=\"G1473\"* follow|strong=\"G1161\"* Apollos,” “I|strong=\"G1473\"* follow|strong=\"G1161\"* Cephas|strong=\"G2786\"*,” and|strong=\"G1161\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Christ|strong=\"G5547\"*.”" + }, + { + "verseNum": 13, + "text": "Is|strong=\"G3588\"* Christ|strong=\"G5547\"* divided|strong=\"G3307\"*? Was|strong=\"G3588\"* Paul|strong=\"G3972\"* crucified|strong=\"G4717\"* for|strong=\"G1519\"* you|strong=\"G5210\"*? Or|strong=\"G2228\"* were|strong=\"G3588\"* you|strong=\"G5210\"* baptized into|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G3686\"* Paul|strong=\"G3972\"*?" + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* thank|strong=\"G2168\"* God|strong=\"G2532\"* that|strong=\"G3754\"* I|strong=\"G2532\"* baptized none|strong=\"G3762\"* of|strong=\"G2532\"* you|strong=\"G5210\"* except|strong=\"G1487\"* Crispus|strong=\"G2921\"* and|strong=\"G2532\"* Gaius|strong=\"G1050\"*," + }, + { + "verseNum": 15, + "text": "so|strong=\"G2443\"* that|strong=\"G3754\"* no|strong=\"G3361\"* one|strong=\"G5100\"* should|strong=\"G5100\"* say|strong=\"G3004\"* that|strong=\"G3754\"* I|strong=\"G3754\"* had|strong=\"G3588\"* baptized you|strong=\"G3754\"* into|strong=\"G1519\"* my|strong=\"G1699\"* own|strong=\"G1699\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 16, + "text": "(I|strong=\"G2532\"* also|strong=\"G2532\"* baptized the|strong=\"G2532\"* household|strong=\"G3624\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*; besides|strong=\"G3063\"* them|strong=\"G3588\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* whether|strong=\"G1487\"* I|strong=\"G2532\"* baptized any|strong=\"G5100\"* other|strong=\"G1161\"*.)" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* sent me|strong=\"G1473\"* not|strong=\"G3756\"* to|strong=\"G2443\"* baptize, but|strong=\"G3361\"* to|strong=\"G2443\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*—not|strong=\"G3756\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G3056\"* words|strong=\"G3056\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* wouldn’t|strong=\"G3588\"* be|strong=\"G3756\"* made|strong=\"G2758\"* void|strong=\"G2758\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1161\"* cross|strong=\"G4716\"* is|strong=\"G1510\"* foolishness|strong=\"G3472\"* to|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* dying, but|strong=\"G1161\"* to|strong=\"G1161\"* us|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G1510\"* being|strong=\"G1510\"* saved|strong=\"G4982\"* it|strong=\"G1161\"* is|strong=\"G1510\"* the|strong=\"G1161\"* power|strong=\"G1411\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 20, + "text": "Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* wise|strong=\"G4680\"*? Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* scribe|strong=\"G1122\"*? Where|strong=\"G4226\"* is|strong=\"G3588\"* the|strong=\"G3588\"* debater|strong=\"G4804\"* of|strong=\"G2316\"* this|strong=\"G3778\"* age|strong=\"G2889\"*? Hasn’t|strong=\"G3588\"* God|strong=\"G2316\"* made|strong=\"G2316\"* foolish|strong=\"G3471\"* the|strong=\"G3588\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world|strong=\"G2889\"*?" + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* seeing|strong=\"G1894\"* that|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* world|strong=\"G2889\"* through|strong=\"G1223\"* its|strong=\"G1223\"* wisdom|strong=\"G4678\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, it|strong=\"G1063\"* was|strong=\"G3588\"* God|strong=\"G2316\"*’s good|strong=\"G2106\"* pleasure|strong=\"G2106\"* through|strong=\"G1223\"* the|strong=\"G1722\"* foolishness|strong=\"G3472\"* of|strong=\"G1223\"* the|strong=\"G1722\"* preaching|strong=\"G2782\"* to|strong=\"G1722\"* save|strong=\"G4982\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G2212\"* Jews|strong=\"G2453\"* ask for|strong=\"G2212\"* signs|strong=\"G4592\"*, Greeks|strong=\"G1672\"* seek|strong=\"G2212\"* after|strong=\"G2532\"* wisdom|strong=\"G4678\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* we|strong=\"G2249\"* preach|strong=\"G2784\"* Christ|strong=\"G5547\"* crucified|strong=\"G4717\"*, a|strong=\"G1161\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* to|strong=\"G1161\"* Jews|strong=\"G2453\"* and|strong=\"G1161\"* foolishness|strong=\"G3472\"* to|strong=\"G1161\"* Greeks," + }, + { + "verseNum": 24, + "text": "but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G2822\"*, both|strong=\"G2532\"* Jews|strong=\"G2453\"* and|strong=\"G2532\"* Greeks|strong=\"G1672\"*, Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 25, + "text": "because|strong=\"G3754\"* the|strong=\"G2532\"* foolishness|strong=\"G3474\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* wiser|strong=\"G4680\"* than|strong=\"G2478\"* men|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* weakness of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G1510\"* stronger|strong=\"G2478\"* than|strong=\"G2478\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* see your|strong=\"G3588\"* calling|strong=\"G2821\"*, brothers, that|strong=\"G3754\"* not|strong=\"G3756\"* many|strong=\"G4183\"* are|strong=\"G3588\"* wise|strong=\"G4680\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, not|strong=\"G3756\"* many|strong=\"G4183\"* mighty|strong=\"G1415\"*, and|strong=\"G4561\"* not|strong=\"G3756\"* many|strong=\"G4183\"* noble|strong=\"G2104\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"G2532\"* God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* foolish|strong=\"G3474\"* things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2617\"* to|strong=\"G2443\"* shame|strong=\"G2617\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* wise|strong=\"G4680\"*. God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* weak things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"* that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* put|strong=\"G2617\"* to|strong=\"G2443\"* shame|strong=\"G2617\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G3588\"* strong|strong=\"G2478\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"G2316\"* chose|strong=\"G1586\"* the|strong=\"G2532\"* lowly things|strong=\"G3588\"* of|strong=\"G2316\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G1510\"* despised|strong=\"G1848\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* don’t|strong=\"G3588\"* exist|strong=\"G1510\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* to|strong=\"G2443\"* nothing|strong=\"G3361\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* exist|strong=\"G1510\"*," + }, + { + "verseNum": 29, + "text": "that|strong=\"G3588\"* no|strong=\"G3361\"* flesh|strong=\"G4561\"* should|strong=\"G2316\"* boast|strong=\"G2744\"* before|strong=\"G1799\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 30, + "text": "Because|strong=\"G1537\"* of|strong=\"G1537\"* him|strong=\"G3739\"*, you|strong=\"G5210\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* was|strong=\"G1510\"* made|strong=\"G1096\"* to|strong=\"G2532\"* us|strong=\"G2249\"* wisdom|strong=\"G4678\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* sanctification, and|strong=\"G2532\"* redemption," + }, + { + "verseNum": 31, + "text": "that|strong=\"G2443\"*, as|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “He|strong=\"G3588\"* who|strong=\"G3588\"* boasts|strong=\"G2744\"*, let|strong=\"G2443\"* him|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 1:31 Jeremiah 9:24*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G2064\"* I|strong=\"G2504\"* came|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, brothers, I|strong=\"G2504\"* didn’t|strong=\"G3588\"* come|strong=\"G2064\"* with|strong=\"G4314\"* excellence of|strong=\"G3056\"* speech|strong=\"G3056\"* or|strong=\"G2228\"* of|strong=\"G3056\"* wisdom|strong=\"G4678\"*, proclaiming|strong=\"G2605\"* to|strong=\"G4314\"* you|strong=\"G5210\"* the|strong=\"G2596\"* testimony|strong=\"G3142\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* determined|strong=\"G2919\"* not|strong=\"G3756\"* to|strong=\"G2532\"* know|strong=\"G1492\"* anything|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* except|strong=\"G1487\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* him|strong=\"G2532\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* was|strong=\"G1096\"* with|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* weakness, in|strong=\"G1722\"* fear|strong=\"G5401\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* much|strong=\"G4183\"* trembling|strong=\"G5156\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"G1722\"* speech|strong=\"G3056\"* and|strong=\"G2532\"* my|strong=\"G1722\"* preaching|strong=\"G2782\"* were|strong=\"G3588\"* not|strong=\"G3756\"* in|strong=\"G1722\"* persuasive|strong=\"G3981\"* words|strong=\"G3056\"* of|strong=\"G3056\"* human wisdom|strong=\"G4678\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* demonstration of|strong=\"G3056\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* of|strong=\"G3056\"* power|strong=\"G1411\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G2443\"* your|strong=\"G1722\"* faith|strong=\"G4102\"* wouldn’t|strong=\"G3588\"* stand|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* men|strong=\"G3588\"*, but|strong=\"G3361\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G1161\"* speak|strong=\"G2980\"* wisdom|strong=\"G4678\"*, however|strong=\"G1161\"*, among|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* full|strong=\"G1722\"* grown, yet|strong=\"G1161\"* a|strong=\"G1722\"* wisdom|strong=\"G4678\"* not|strong=\"G3756\"* of|strong=\"G1722\"* this|strong=\"G3778\"* world nor|strong=\"G3761\"* of|strong=\"G1722\"* the|strong=\"G1722\"* rulers of|strong=\"G1722\"* this|strong=\"G3778\"* world who|strong=\"G3588\"* are|strong=\"G3588\"* coming to|strong=\"G1722\"* nothing|strong=\"G3756\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2316\"* we|strong=\"G2249\"* speak|strong=\"G2980\"* God|strong=\"G2316\"*’s wisdom|strong=\"G4678\"* in|strong=\"G1722\"* a|strong=\"G1519\"* mystery|strong=\"G3466\"*, the|strong=\"G1722\"* wisdom|strong=\"G4678\"* that|strong=\"G3739\"* has|strong=\"G2316\"* been hidden, which|strong=\"G3739\"* God|strong=\"G2316\"* foreordained before|strong=\"G4253\"* the|strong=\"G1722\"* worlds for|strong=\"G1519\"* our|strong=\"G2316\"* glory|strong=\"G1391\"*," + }, + { + "verseNum": 8, + "text": "which|strong=\"G3739\"* none|strong=\"G3762\"* of|strong=\"G1391\"* the|strong=\"G3588\"* rulers of|strong=\"G1391\"* this|strong=\"G3778\"* world has|strong=\"G2962\"* known|strong=\"G1097\"*. For|strong=\"G1063\"* had|strong=\"G3739\"* they|strong=\"G3588\"* known|strong=\"G1097\"* it|strong=\"G1063\"*, they|strong=\"G3588\"* wouldn’t|strong=\"G3588\"* have|strong=\"G3588\"* crucified|strong=\"G4717\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* of|strong=\"G1391\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* to|strong=\"G2532\"* us|strong=\"G2249\"*, God|strong=\"G2316\"* revealed them|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* searches|strong=\"G2045\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, yes|strong=\"G1063\"*, the|strong=\"G2532\"* deep things|strong=\"G3956\"* of|strong=\"G4151\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* who|strong=\"G5101\"* among|strong=\"G1722\"* men|strong=\"G3588\"* knows|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3588\"* of|strong=\"G4151\"* a|strong=\"G2532\"* man|strong=\"G3762\"* except|strong=\"G1487\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G1722\"* man|strong=\"G3762\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*? Even|strong=\"G2532\"* so|strong=\"G3779\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* knows|strong=\"G1097\"* the|strong=\"G1722\"* things|strong=\"G3588\"* of|strong=\"G4151\"* God|strong=\"G2316\"* except|strong=\"G1487\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* received|strong=\"G2983\"* not|strong=\"G3756\"* the|strong=\"G1537\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G1537\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* might|strong=\"G2316\"* know|strong=\"G1492\"* the|strong=\"G1537\"* things|strong=\"G3588\"* that|strong=\"G2443\"* were|strong=\"G3588\"* freely|strong=\"G5483\"* given|strong=\"G5483\"* to|strong=\"G2443\"* us|strong=\"G5483\"* by|strong=\"G5259\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "We|strong=\"G3739\"* also|strong=\"G2532\"* speak|strong=\"G2980\"* these|strong=\"G3739\"* things|strong=\"G3739\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* words|strong=\"G3056\"* which|strong=\"G3739\"* man|strong=\"G3739\"*’s wisdom|strong=\"G4678\"* teaches but|strong=\"G2532\"* which|strong=\"G3739\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* teaches, comparing|strong=\"G4793\"* spiritual|strong=\"G4152\"* things|strong=\"G3739\"* with|strong=\"G1722\"* spiritual|strong=\"G4152\"* things|strong=\"G3739\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* natural|strong=\"G5591\"* man|strong=\"G3756\"* doesn’t|strong=\"G3588\"* receive|strong=\"G1209\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* foolishness|strong=\"G3472\"* to|strong=\"G2532\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* know|strong=\"G1097\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* spiritually|strong=\"G4153\"* discerned." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"* discerns all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* himself is|strong=\"G3588\"* to|strong=\"G1161\"* be|strong=\"G3956\"* judged by|strong=\"G5259\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 16, + "text": "“For|strong=\"G1063\"* who|strong=\"G3739\"* has|strong=\"G2192\"* known|strong=\"G1097\"* the|strong=\"G1161\"* mind|strong=\"G3563\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* that|strong=\"G3739\"* he|strong=\"G1161\"* should|strong=\"G2249\"* instruct|strong=\"G4822\"* him|strong=\"G3739\"*?”+ 2:16 Isaiah 40:13* But|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2192\"* Christ|strong=\"G5547\"*’s|strong=\"G2962\"* mind|strong=\"G3563\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, I|strong=\"G2504\"* couldn’t speak|strong=\"G2980\"* to|strong=\"G1410\"* you|strong=\"G5210\"* as|strong=\"G5613\"* to|strong=\"G1410\"* spiritual|strong=\"G4152\"*, but as|strong=\"G5613\"* to|strong=\"G1410\"* fleshly, as|strong=\"G5613\"* to|strong=\"G1410\"* babies in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G1063\"* fed|strong=\"G4222\"* you|strong=\"G5210\"* with|strong=\"G3756\"* milk|strong=\"G1051\"*, not|strong=\"G3756\"* with|strong=\"G3756\"* solid food|strong=\"G1033\"*, for|strong=\"G1063\"* you|strong=\"G5210\"* weren’t yet|strong=\"G2089\"* ready|strong=\"G1410\"*. Indeed|strong=\"G1063\"*, you|strong=\"G5210\"* aren’t ready|strong=\"G1410\"* even|strong=\"G3761\"* now|strong=\"G3568\"*," + }, + { + "verseNum": 3, + "text": "for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* still|strong=\"G2089\"* fleshly|strong=\"G4559\"*. For|strong=\"G1063\"* insofar as|strong=\"G1722\"* there|strong=\"G2532\"* is|strong=\"G1510\"* jealousy|strong=\"G2205\"*, strife|strong=\"G2054\"*, and|strong=\"G2532\"* factions among|strong=\"G1722\"* you|strong=\"G5210\"*, aren’t you|strong=\"G5210\"* fleshly|strong=\"G4559\"*, and|strong=\"G2532\"* don’t you|strong=\"G5210\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ways of|strong=\"G2532\"* men|strong=\"G3699\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* when|strong=\"G3752\"* one|strong=\"G5100\"* says|strong=\"G3004\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Paul|strong=\"G3972\"*,” and|strong=\"G1161\"* another|strong=\"G2087\"*, “I|strong=\"G1473\"* follow|strong=\"G1161\"* Apollos,” aren’t you|strong=\"G3752\"* fleshly?" + }, + { + "verseNum": 5, + "text": "Who|strong=\"G3739\"* then|strong=\"G3767\"* is|strong=\"G1510\"* Apollos, and|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* Paul|strong=\"G3972\"*, but|strong=\"G1161\"* servants|strong=\"G1249\"* through|strong=\"G1223\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* each|strong=\"G1538\"* as|strong=\"G5613\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 6, + "text": "I|strong=\"G1473\"* planted|strong=\"G5452\"*. Apollos watered|strong=\"G4222\"*. But|strong=\"G2316\"* God|strong=\"G2316\"* gave|strong=\"G4222\"* the|strong=\"G3588\"* increase." + }, + { + "verseNum": 7, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"* neither|strong=\"G3777\"* he|strong=\"G3588\"* who|strong=\"G3588\"* plants|strong=\"G5452\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*, nor|strong=\"G3777\"* he|strong=\"G3588\"* who|strong=\"G3588\"* waters|strong=\"G4222\"*, but|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* gives|strong=\"G4222\"* the|strong=\"G3588\"* increase." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* plants|strong=\"G5452\"* and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* waters|strong=\"G4222\"* are|strong=\"G1510\"* the|strong=\"G2532\"* same|strong=\"G2532\"*, but|strong=\"G1161\"* each|strong=\"G1538\"* will|strong=\"G1510\"* receive|strong=\"G2983\"* his|strong=\"G2983\"* own|strong=\"G2398\"* reward|strong=\"G3408\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G2983\"* own|strong=\"G2398\"* labor|strong=\"G2873\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s fellow|strong=\"G4904\"* workers|strong=\"G4904\"*. You|strong=\"G1510\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s farming, God|strong=\"G2316\"*’s building|strong=\"G3619\"*." + }, + { + "verseNum": 10, + "text": "According|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2596\"* me|strong=\"G1325\"*, as|strong=\"G5613\"* a|strong=\"G5613\"* wise|strong=\"G4680\"* master builder I|strong=\"G1473\"* laid|strong=\"G5087\"* a|strong=\"G5613\"* foundation|strong=\"G2310\"*, and|strong=\"G1161\"* another|strong=\"G2596\"* builds|strong=\"G2026\"* on|strong=\"G2596\"* it|strong=\"G1161\"*. But|strong=\"G1161\"* let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* be|strong=\"G2316\"* careful how|strong=\"G4459\"* he|strong=\"G1161\"* builds|strong=\"G2026\"* on|strong=\"G2596\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* lay|strong=\"G5087\"* any|strong=\"G3762\"* other|strong=\"G3739\"* foundation|strong=\"G2310\"* than|strong=\"G3844\"* that|strong=\"G3739\"* which|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1510\"* laid|strong=\"G5087\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* builds|strong=\"G2026\"* on|strong=\"G1909\"* the|strong=\"G1161\"* foundation|strong=\"G2310\"* with|strong=\"G1909\"* gold|strong=\"G5553\"*, silver, costly|strong=\"G5093\"* stones|strong=\"G3037\"*, wood|strong=\"G3586\"*, hay|strong=\"G5528\"*, or|strong=\"G1161\"* straw|strong=\"G2562\"*," + }, + { + "verseNum": 13, + "text": "each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"* will|strong=\"G1510\"* be|strong=\"G1096\"* revealed|strong=\"G5318\"*. For|strong=\"G1063\"* the|strong=\"G1722\"* Day|strong=\"G2250\"* will|strong=\"G1510\"* declare it|strong=\"G2532\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* revealed|strong=\"G5318\"* in|strong=\"G1722\"* fire|strong=\"G4442\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* fire|strong=\"G4442\"* itself will|strong=\"G1510\"* test|strong=\"G1381\"* what|strong=\"G3588\"* sort|strong=\"G3697\"* of|strong=\"G2250\"* work|strong=\"G2041\"* each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"*’s work|strong=\"G2041\"* remains|strong=\"G3306\"* which|strong=\"G3739\"* he|strong=\"G3739\"* built|strong=\"G2026\"* on|strong=\"G2026\"* it|strong=\"G1487\"*, he|strong=\"G3739\"* will|strong=\"G3739\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* reward|strong=\"G3408\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"*’s work|strong=\"G2041\"* is|strong=\"G3588\"* burned|strong=\"G2618\"*, he|strong=\"G1161\"* will|strong=\"G5100\"* suffer|strong=\"G2210\"* loss|strong=\"G2210\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* himself will|strong=\"G5100\"* be|strong=\"G3588\"* saved|strong=\"G4982\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* through|strong=\"G1223\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 16, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* are|strong=\"G1510\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"* and|strong=\"G2532\"* that|strong=\"G3754\"* God|strong=\"G2316\"*’s Spirit|strong=\"G4151\"* lives|strong=\"G3611\"* in|strong=\"G1722\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* destroys|strong=\"G5351\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* destroy|strong=\"G5351\"* him|strong=\"G3588\"*; for|strong=\"G1063\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"* is|strong=\"G1510\"* holy, which|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G1510\"*." + }, + { + "verseNum": 18, + "text": "Let|strong=\"G1096\"* no|strong=\"G3367\"* one|strong=\"G5100\"* deceive|strong=\"G1818\"* himself|strong=\"G1438\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G2443\"* he|strong=\"G3778\"* is|strong=\"G1510\"* wise|strong=\"G4680\"* among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* this|strong=\"G3778\"* world, let|strong=\"G1096\"* him|strong=\"G3588\"* become|strong=\"G1096\"* a|strong=\"G1096\"* fool|strong=\"G3474\"* that|strong=\"G2443\"* he|strong=\"G3778\"* may|strong=\"G2443\"* become|strong=\"G1096\"* wise|strong=\"G4680\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* wisdom|strong=\"G4678\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world|strong=\"G2889\"* is|strong=\"G1510\"* foolishness|strong=\"G3472\"* with|strong=\"G1722\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “He|strong=\"G3778\"* has|strong=\"G2316\"* taken the|strong=\"G1722\"* wise|strong=\"G4680\"* in|strong=\"G1722\"* their|strong=\"G1722\"* craftiness|strong=\"G3834\"*.”+ 3:19 Job 5:13*" + }, + { + "verseNum": 20, + "text": "And|strong=\"G2532\"* again|strong=\"G3825\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* knows|strong=\"G1097\"* the|strong=\"G2532\"* reasoning|strong=\"G1261\"* of|strong=\"G2532\"* the|strong=\"G2532\"* wise|strong=\"G4680\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* worthless|strong=\"G3152\"*.”+ 3:20 Psalms 94:11*" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G1510\"* no|strong=\"G3367\"* one|strong=\"G3367\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* men|strong=\"G3956\"*. For|strong=\"G1063\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* yours|strong=\"G4771\"*," + }, + { + "verseNum": 22, + "text": "whether|strong=\"G1535\"* Paul|strong=\"G3972\"*, or|strong=\"G1535\"* Apollos, or|strong=\"G1535\"* Cephas|strong=\"G2786\"*, or|strong=\"G1535\"* the|strong=\"G3956\"* world|strong=\"G2889\"*, or|strong=\"G1535\"* life|strong=\"G2222\"*, or|strong=\"G1535\"* death|strong=\"G2288\"*, or|strong=\"G1535\"* things|strong=\"G3956\"* present|strong=\"G1764\"*, or|strong=\"G1535\"* things|strong=\"G3956\"* to|strong=\"G3195\"* come|strong=\"G3195\"*. All|strong=\"G3956\"* are|strong=\"G3956\"* yours|strong=\"G4771\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G5547\"* Christ|strong=\"G5547\"*’s, and|strong=\"G1161\"* Christ|strong=\"G5547\"* is|strong=\"G2316\"* God|strong=\"G2316\"*’s." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"G3779\"* let|strong=\"G3049\"* a|strong=\"G5613\"* man|strong=\"G2316\"* think|strong=\"G3049\"* of|strong=\"G2316\"* us|strong=\"G2249\"* as|strong=\"G5613\"* Christ|strong=\"G5547\"*’s servants|strong=\"G5257\"* and|strong=\"G2532\"* stewards|strong=\"G3623\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s mysteries|strong=\"G3466\"*." + }, + { + "verseNum": 2, + "text": "Here|strong=\"G5602\"*, moreover|strong=\"G3063\"*, it|strong=\"G2147\"* is|strong=\"G3588\"* required|strong=\"G2212\"* of|strong=\"G5100\"* stewards|strong=\"G3623\"* that|strong=\"G2443\"* they|strong=\"G3588\"* be|strong=\"G2443\"* found|strong=\"G2147\"* faithful|strong=\"G4103\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* with|strong=\"G5259\"* me|strong=\"G1473\"* it|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1519\"* very|strong=\"G1646\"* small|strong=\"G1646\"* thing|strong=\"G1646\"* that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G1519\"* be|strong=\"G1510\"* judged by|strong=\"G5259\"* you|strong=\"G5210\"*, or|strong=\"G2228\"* by|strong=\"G5259\"* a|strong=\"G1519\"* human court|strong=\"G2250\"*. Yes|strong=\"G1161\"*, I|strong=\"G1473\"* don’t even|strong=\"G3761\"* judge my|strong=\"G1473\"* own|strong=\"G1683\"* self|strong=\"G1683\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1722\"* nothing|strong=\"G3762\"* against|strong=\"G1722\"* myself|strong=\"G1683\"*. Yet|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* this|strong=\"G3778\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* judges me|strong=\"G1473\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G5620\"* judge|strong=\"G2919\"* nothing|strong=\"G3361\"* before|strong=\"G4253\"* the|strong=\"G2532\"* time|strong=\"G2540\"*, until|strong=\"G2193\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* comes|strong=\"G2064\"*, who|strong=\"G3739\"* will|strong=\"G2316\"* both|strong=\"G2532\"* bring|strong=\"G5461\"* to|strong=\"G2532\"* light|strong=\"G5461\"* the|strong=\"G2532\"* hidden|strong=\"G2927\"* things|strong=\"G3588\"* of|strong=\"G2316\"* darkness|strong=\"G4655\"* and|strong=\"G2532\"* reveal|strong=\"G5319\"* the|strong=\"G2532\"* counsels|strong=\"G1012\"* of|strong=\"G2316\"* the|strong=\"G2532\"* hearts|strong=\"G2588\"*. Then|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G5100\"* will|strong=\"G2316\"* get|strong=\"G1096\"* his|strong=\"G2532\"* praise|strong=\"G1868\"* from|strong=\"G2064\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, brothers, I|strong=\"G1473\"* have|strong=\"G2532\"* in|strong=\"G1722\"* a|strong=\"G2532\"* figure transferred|strong=\"G3345\"* to|strong=\"G1519\"* myself|strong=\"G1683\"* and|strong=\"G2532\"* Apollos for|strong=\"G1519\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* us|strong=\"G1519\"* you|strong=\"G5210\"* might|strong=\"G2532\"* learn|strong=\"G3129\"* not|strong=\"G3361\"* to|strong=\"G1519\"* think beyond|strong=\"G5228\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* are|strong=\"G3588\"* written|strong=\"G1125\"*, that|strong=\"G2443\"* none|strong=\"G3361\"* of|strong=\"G1223\"* you|strong=\"G5210\"* be|strong=\"G2532\"* puffed up|strong=\"G5448\"* against|strong=\"G2596\"* one|strong=\"G1520\"* another|strong=\"G2087\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* who|strong=\"G3739\"* makes you|strong=\"G4771\"* different? And|strong=\"G2532\"* what|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* have|strong=\"G2192\"* that|strong=\"G3739\"* you|strong=\"G4771\"* didn’t receive|strong=\"G2983\"*? But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G4771\"* did|strong=\"G2532\"* receive|strong=\"G2983\"* it|strong=\"G2532\"*, why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* boast|strong=\"G2744\"* as|strong=\"G5613\"* if|strong=\"G1487\"* you|strong=\"G4771\"* had|strong=\"G2192\"* not|strong=\"G3756\"* received|strong=\"G2983\"* it|strong=\"G2532\"*?" + }, + { + "verseNum": 8, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* already|strong=\"G2235\"* filled|strong=\"G2880\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* already|strong=\"G2235\"* become|strong=\"G1510\"* rich|strong=\"G4147\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* come|strong=\"G1510\"* to|strong=\"G2443\"* reign|strong=\"G4821\"* without|strong=\"G5565\"* us|strong=\"G2249\"*. Yes, and|strong=\"G2532\"* I|strong=\"G1473\"* wish|strong=\"G3785\"* that|strong=\"G2443\"* you|strong=\"G5210\"* did|strong=\"G2532\"* reign|strong=\"G4821\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* also|strong=\"G2532\"* might|strong=\"G2532\"* reign|strong=\"G4821\"* with|strong=\"G2532\"* you|strong=\"G5210\"*!" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* think|strong=\"G1380\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* displayed us|strong=\"G2249\"*, the|strong=\"G2532\"* apostles, last|strong=\"G2078\"* of|strong=\"G2316\"* all|strong=\"G2532\"*, like|strong=\"G5613\"* men|strong=\"G3588\"* sentenced to|strong=\"G2532\"* death|strong=\"G1935\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3588\"* made|strong=\"G1096\"* a|strong=\"G1096\"* spectacle|strong=\"G2302\"* to|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, both|strong=\"G2532\"* to|strong=\"G2532\"* angels and|strong=\"G2532\"* men|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"G2249\"* are|strong=\"G2249\"* fools|strong=\"G3474\"* for|strong=\"G1223\"* Christ|strong=\"G5547\"*’s sake|strong=\"G1223\"*, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G2249\"* wise|strong=\"G5429\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. We|strong=\"G2249\"* are|strong=\"G2249\"* weak, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G2249\"* strong|strong=\"G2478\"*. You|strong=\"G5210\"* have|strong=\"G1473\"* honor, but|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G1473\"* dishonor." + }, + { + "verseNum": 11, + "text": "Even|strong=\"G2532\"* to|strong=\"G2532\"* this|strong=\"G3588\"* present hour|strong=\"G5610\"* we|strong=\"G2532\"* hunger|strong=\"G3983\"*, thirst|strong=\"G1372\"*, are|strong=\"G3588\"* naked|strong=\"G1130\"*, are|strong=\"G3588\"* beaten, and|strong=\"G2532\"* have|strong=\"G2532\"* no|strong=\"G2532\"* certain|strong=\"G2532\"* dwelling place." + }, + { + "verseNum": 12, + "text": "We|strong=\"G2532\"* toil|strong=\"G2872\"*, working|strong=\"G2038\"* with|strong=\"G2532\"* our|strong=\"G2532\"* own|strong=\"G2398\"* hands|strong=\"G5495\"*. When|strong=\"G2532\"* people|strong=\"G3588\"* curse us|strong=\"G1377\"*, we|strong=\"G2532\"* bless|strong=\"G2127\"*. Being|strong=\"G2532\"* persecuted|strong=\"G1377\"*, we|strong=\"G2532\"* endure." + }, + { + "verseNum": 13, + "text": "Being|strong=\"G1096\"* defamed, we|strong=\"G5613\"* entreat|strong=\"G3870\"*. We|strong=\"G5613\"* are|strong=\"G3588\"* made|strong=\"G1096\"* as|strong=\"G5613\"* the|strong=\"G3956\"* filth|strong=\"G4027\"* of|strong=\"G3956\"* the|strong=\"G3956\"* world|strong=\"G2889\"*, the|strong=\"G3956\"* dirt|strong=\"G4027\"* wiped off by|strong=\"G3956\"* all|strong=\"G3956\"*, even|strong=\"G2193\"* until|strong=\"G2193\"* now|strong=\"G1096\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* don’t write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G3756\"* shame|strong=\"G1788\"* you|strong=\"G5210\"*, but|strong=\"G3778\"* to|strong=\"G3756\"* admonish|strong=\"G3560\"* you|strong=\"G5210\"* as|strong=\"G5613\"* my|strong=\"G1473\"* beloved children|strong=\"G5043\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* though|strong=\"G1437\"* you|strong=\"G5210\"* have|strong=\"G2192\"* ten|strong=\"G3463\"* thousand|strong=\"G3463\"* tutors|strong=\"G3807\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, you|strong=\"G5210\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* many|strong=\"G4183\"* fathers|strong=\"G3962\"*. For|strong=\"G1063\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, I|strong=\"G1473\"* became|strong=\"G1080\"* your|strong=\"G1223\"* father|strong=\"G3962\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1473\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* therefore|strong=\"G3767\"*, be|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G1096\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"G1223\"* of|strong=\"G1223\"* this|strong=\"G3778\"* I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G3992\"* Timothy|strong=\"G5095\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* my|strong=\"G1722\"* beloved and|strong=\"G2532\"* faithful|strong=\"G4103\"* child|strong=\"G5043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, who|strong=\"G3739\"* will|strong=\"G1510\"* remind you|strong=\"G5210\"* of|strong=\"G1223\"* my|strong=\"G1722\"* ways|strong=\"G3598\"* which|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G1473\"* teach|strong=\"G1321\"* everywhere|strong=\"G3837\"* in|strong=\"G1722\"* every|strong=\"G3956\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* some|strong=\"G5100\"* are|strong=\"G5210\"* puffed up|strong=\"G5448\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G1473\"* were|strong=\"G5613\"* not|strong=\"G3361\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* will|strong=\"G2309\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* shortly|strong=\"G5030\"*, if|strong=\"G1437\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* willing|strong=\"G2309\"*. And|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2309\"* know|strong=\"G1097\"*, not|strong=\"G3756\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* puffed|strong=\"G3756\"* up|strong=\"G5448\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"*’s Kingdom is|strong=\"G3588\"* not|strong=\"G3756\"* in|strong=\"G1722\"* word|strong=\"G3056\"*, but|strong=\"G1063\"* in|strong=\"G1722\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 21, + "text": "What|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G5210\"* want|strong=\"G2309\"*? Shall|strong=\"G5101\"* I|strong=\"G2309\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G1722\"* a|strong=\"G1722\"* rod|strong=\"G4464\"*, or|strong=\"G2228\"* in|strong=\"G1722\"* love|strong=\"G2309\"* and|strong=\"G5037\"* a|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* gentleness|strong=\"G4240\"*?" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* is|strong=\"G3588\"* actually|strong=\"G3654\"* reported that|strong=\"G3588\"* there|strong=\"G2532\"* is|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* such|strong=\"G5108\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* as|strong=\"G1722\"* is|strong=\"G3588\"* not|strong=\"G3761\"* even|strong=\"G2532\"* named among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, that|strong=\"G3588\"* one|strong=\"G5100\"* has|strong=\"G2192\"* his|strong=\"G1722\"* father|strong=\"G3962\"*’s|strong=\"G2192\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* arrogant|strong=\"G5448\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* mourn|strong=\"G3996\"* instead|strong=\"G3123\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* done|strong=\"G4160\"* this|strong=\"G3778\"* deed|strong=\"G2041\"* might|strong=\"G2532\"* be|strong=\"G1510\"* removed from|strong=\"G1537\"* among|strong=\"G1537\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* most certainly|strong=\"G3303\"*, as|strong=\"G5613\"* being|strong=\"G1161\"* absent in|strong=\"G1161\"* body|strong=\"G4983\"* but|strong=\"G1161\"* present|strong=\"G3918\"* in|strong=\"G1161\"* spirit|strong=\"G4151\"*, have|strong=\"G1473\"* already|strong=\"G2235\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G1473\"* were|strong=\"G3588\"* present|strong=\"G3918\"*, judged|strong=\"G2919\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G3778\"* done|strong=\"G2716\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, when|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3588\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* with|strong=\"G1722\"* my|strong=\"G1699\"* spirit|strong=\"G4151\"* with|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "you|strong=\"G1722\"* are|strong=\"G3588\"* to|strong=\"G1519\"* deliver|strong=\"G3860\"* such|strong=\"G5108\"* a|strong=\"G1519\"* one|strong=\"G5108\"* to|strong=\"G1519\"* Satan|strong=\"G4567\"* for|strong=\"G1519\"* the|strong=\"G1722\"* destruction|strong=\"G3639\"* of|strong=\"G4151\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* may|strong=\"G2443\"* be|strong=\"G1519\"* saved|strong=\"G4982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"G3650\"* boasting|strong=\"G2745\"* is|strong=\"G3588\"* not|strong=\"G3756\"* good|strong=\"G2570\"*. Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* a|strong=\"G3756\"* little|strong=\"G3398\"* yeast|strong=\"G2219\"* leavens|strong=\"G2220\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* lump|strong=\"G5445\"*?" + }, + { + "verseNum": 7, + "text": "Purge|strong=\"G1571\"* out|strong=\"G2532\"* the|strong=\"G2532\"* old|strong=\"G3820\"* yeast|strong=\"G2219\"*, that|strong=\"G2443\"* you|strong=\"G1510\"* may|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* new|strong=\"G3501\"* lump|strong=\"G5445\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1510\"* are|strong=\"G1510\"* unleavened. For|strong=\"G1063\"* indeed|strong=\"G2532\"* Christ|strong=\"G5547\"*, our|strong=\"G2532\"* Passover|strong=\"G3957\"*, has|strong=\"G5547\"* been|strong=\"G1510\"* sacrificed|strong=\"G2380\"* in|strong=\"G2532\"* our|strong=\"G2532\"* place|strong=\"G1473\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G2532\"*’s keep|strong=\"G3361\"* the|strong=\"G1722\"* feast|strong=\"G1858\"*, not|strong=\"G3361\"* with|strong=\"G1722\"* old|strong=\"G3820\"* yeast|strong=\"G2219\"*, neither|strong=\"G3366\"* with|strong=\"G1722\"* the|strong=\"G1722\"* yeast|strong=\"G2219\"* of|strong=\"G2532\"* malice|strong=\"G2549\"* and|strong=\"G2532\"* wickedness|strong=\"G4189\"*, but|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* unleavened bread of|strong=\"G2532\"* sincerity|strong=\"G1505\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1722\"* wrote|strong=\"G1125\"* to|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* letter|strong=\"G1992\"* to|strong=\"G1722\"* have|strong=\"G5210\"* no|strong=\"G3361\"* company|strong=\"G4874\"* with|strong=\"G1722\"* sexual sinners;" + }, + { + "verseNum": 10, + "text": "yet|strong=\"G2532\"* not|strong=\"G3756\"* at|strong=\"G1537\"* all|strong=\"G2532\"* meaning with|strong=\"G1537\"* the|strong=\"G2532\"* sexual sinners of|strong=\"G1537\"* this|strong=\"G3778\"* world|strong=\"G2889\"*, or|strong=\"G2228\"* with|strong=\"G1537\"* the|strong=\"G2532\"* covetous|strong=\"G4123\"* and|strong=\"G2532\"* extortionists, or|strong=\"G2228\"* with|strong=\"G1537\"* idolaters|strong=\"G1496\"*, for|strong=\"G2532\"* then|strong=\"G2532\"* you|strong=\"G2532\"* would|strong=\"G2532\"* have|strong=\"G2532\"* to|strong=\"G2532\"* leave|strong=\"G1831\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* as|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G1510\"*, I|strong=\"G1161\"* wrote|strong=\"G1125\"* to|strong=\"G5100\"* you|strong=\"G5210\"* not|strong=\"G3361\"* to|strong=\"G5100\"* associate|strong=\"G4874\"* with|strong=\"G3588\"* anyone|strong=\"G5100\"* who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3687\"* a|strong=\"G1510\"* brother who|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1510\"* sexual sinner, or|strong=\"G2228\"* covetous|strong=\"G4123\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* idolater|strong=\"G1496\"*, or|strong=\"G2228\"* a|strong=\"G1510\"* slanderer, or|strong=\"G2228\"* a|strong=\"G1510\"* drunkard|strong=\"G3183\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* extortionist. Don’t|strong=\"G3588\"* even|strong=\"G1161\"* eat|strong=\"G4906\"* with|strong=\"G3588\"* such|strong=\"G5108\"* a|strong=\"G1510\"* person|strong=\"G5108\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* do|strong=\"G5101\"* I|strong=\"G1473\"* have|strong=\"G1473\"* to|strong=\"G5101\"* do|strong=\"G5101\"* with|strong=\"G3588\"* also|strong=\"G4771\"* judging|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G5101\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*? Don’t|strong=\"G3588\"* you|strong=\"G5210\"* judge|strong=\"G2919\"* those|strong=\"G3588\"* who|strong=\"G5101\"* are|strong=\"G3588\"* within|strong=\"G2080\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, God|strong=\"G2316\"* judges|strong=\"G2919\"*. “Put away|strong=\"G1854\"* the|strong=\"G1537\"* wicked|strong=\"G4190\"* man|strong=\"G4190\"* from|strong=\"G1537\"* among|strong=\"G1537\"* yourselves|strong=\"G4771\"*.”+ 5:13 Deuteronomy 17:7; 19:19; 21:21; 22:21; 24:7*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Dare|strong=\"G5111\"* any|strong=\"G5100\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* matter|strong=\"G4229\"* against|strong=\"G1909\"* his|strong=\"G1909\"* neighbor|strong=\"G2087\"*, go|strong=\"G2192\"* to|strong=\"G4314\"* law|strong=\"G2919\"* before|strong=\"G1909\"* the|strong=\"G2532\"* unrighteous, and|strong=\"G2532\"* not|strong=\"G3780\"* before|strong=\"G1909\"* the|strong=\"G2532\"* saints?" + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* saints will|strong=\"G1510\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* world|strong=\"G2889\"*? And|strong=\"G2532\"* if|strong=\"G1487\"* the|strong=\"G1722\"* world|strong=\"G2889\"* is|strong=\"G1510\"* judged|strong=\"G2919\"* by|strong=\"G1722\"* you|strong=\"G5210\"*, are|strong=\"G1510\"* you|strong=\"G5210\"* unworthy|strong=\"G3756\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* smallest|strong=\"G1646\"* matters|strong=\"G1646\"*?" + }, + { + "verseNum": 3, + "text": "Don’t you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G3748\"* judge|strong=\"G2919\"* angels? How|strong=\"G3754\"* much|strong=\"G3386\"* more|strong=\"G1492\"*, things|strong=\"G3748\"* that|strong=\"G3754\"* pertain to|strong=\"G3756\"* this|strong=\"G3748\"* life?" + }, + { + "verseNum": 4, + "text": "If|strong=\"G1437\"* then|strong=\"G3767\"* you|strong=\"G1437\"* have|strong=\"G2192\"* to|strong=\"G1722\"* judge|strong=\"G2922\"* things|strong=\"G3778\"* pertaining to|strong=\"G1722\"* this|strong=\"G3778\"* life, do|strong=\"G2192\"* you|strong=\"G1437\"* set|strong=\"G2523\"* them|strong=\"G3588\"* to|strong=\"G1722\"* judge|strong=\"G2922\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1577\"* no|strong=\"G3588\"* account|strong=\"G1848\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*?" + }, + { + "verseNum": 5, + "text": "I|strong=\"G3739\"* say|strong=\"G3004\"* this|strong=\"G3588\"* to|strong=\"G4314\"* move you|strong=\"G5210\"* to|strong=\"G4314\"* shame|strong=\"G1791\"*. Isn’t|strong=\"G3588\"* there|strong=\"G1762\"* even|strong=\"G3739\"* one|strong=\"G3762\"* wise|strong=\"G4680\"* man|strong=\"G3762\"* among|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3739\"* would|strong=\"G1722\"* be|strong=\"G3756\"* able|strong=\"G1410\"* to|strong=\"G4314\"* decide|strong=\"G1252\"* between|strong=\"G3319\"* his|strong=\"G1722\"* brothers?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G2532\"* brother goes|strong=\"G2919\"* to|strong=\"G2532\"* law|strong=\"G2919\"* with|strong=\"G3326\"* brother, and|strong=\"G2532\"* that|strong=\"G2532\"* before|strong=\"G1909\"* unbelievers!" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3767\"* it|strong=\"G3754\"* is|strong=\"G1510\"* already|strong=\"G2235\"* altogether a|strong=\"G2192\"* defect in|strong=\"G1223\"* you|strong=\"G5210\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* lawsuits|strong=\"G2917\"* one|strong=\"G1438\"* with|strong=\"G3326\"* another|strong=\"G1438\"*. Why|strong=\"G5101\"* not|strong=\"G3780\"* rather|strong=\"G3123\"* be|strong=\"G1510\"* wronged? Why|strong=\"G5101\"* not|strong=\"G3780\"* rather|strong=\"G3123\"* be|strong=\"G1510\"* defrauded?" + }, + { + "verseNum": 8, + "text": "No|strong=\"G2532\"*, but|strong=\"G2532\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* do|strong=\"G2532\"* wrong and|strong=\"G2532\"* defraud, and|strong=\"G2532\"* that|strong=\"G2532\"* against your|strong=\"G2532\"* brothers." + }, + { + "verseNum": 9, + "text": "Or|strong=\"G2228\"* don’t you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3754\"* unrighteous will|strong=\"G2316\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom? Don’t be|strong=\"G3756\"* deceived|strong=\"G4105\"*. Neither|strong=\"G3777\"* the|strong=\"G3754\"* sexually immoral|strong=\"G4205\"*, nor|strong=\"G3777\"* idolaters|strong=\"G1496\"*, nor|strong=\"G3777\"* adulterers|strong=\"G3432\"*, nor|strong=\"G3777\"* male prostitutes, nor|strong=\"G3777\"* homosexuals," + }, + { + "verseNum": 10, + "text": "nor|strong=\"G3777\"* thieves|strong=\"G2812\"*, nor|strong=\"G3777\"* covetous|strong=\"G4123\"*, nor|strong=\"G3777\"* drunkards|strong=\"G3183\"*, nor|strong=\"G3777\"* slanderers, nor|strong=\"G3777\"* extortionists, will|strong=\"G2316\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 11, + "text": "Some|strong=\"G5100\"* of|strong=\"G4151\"* you|strong=\"G1722\"* were|strong=\"G1510\"* such|strong=\"G3778\"*, but|strong=\"G2532\"* you|strong=\"G1722\"* were|strong=\"G1510\"* washed. You|strong=\"G1722\"* were|strong=\"G1510\"* sanctified. You|strong=\"G1722\"* were|strong=\"G1510\"* justified|strong=\"G1344\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* our|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "“All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G1473\"*,” but|strong=\"G1473\"* not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* expedient|strong=\"G4851\"*. “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G1473\"*,” but|strong=\"G1473\"* I|strong=\"G1473\"* will|strong=\"G1473\"* not|strong=\"G3756\"* be|strong=\"G3756\"* brought|strong=\"G4851\"* under|strong=\"G5259\"* the|strong=\"G3956\"* power|strong=\"G1850\"* of|strong=\"G5259\"* anything|strong=\"G5100\"*." + }, + { + "verseNum": 13, + "text": "“Foods|strong=\"G1033\"* for|strong=\"G1161\"* the|strong=\"G2532\"* belly|strong=\"G2836\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* belly|strong=\"G2836\"* for|strong=\"G1161\"* foods|strong=\"G1033\"*,” but|strong=\"G1161\"* God|strong=\"G2316\"* will|strong=\"G2316\"* bring|strong=\"G2532\"* to|strong=\"G2532\"* nothing|strong=\"G3756\"* both|strong=\"G2532\"* it|strong=\"G2532\"* and|strong=\"G2532\"* them|strong=\"G3588\"*. But|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G3588\"* not|strong=\"G3756\"* for|strong=\"G1161\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, but|strong=\"G1161\"* for|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* for|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* God|strong=\"G2316\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* will|strong=\"G2316\"* also|strong=\"G2532\"* raise|strong=\"G1453\"* us|strong=\"G2249\"* up|strong=\"G1453\"* by|strong=\"G1223\"* his|strong=\"G1223\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 15, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G4160\"* bodies|strong=\"G4983\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"*? Shall|strong=\"G3748\"* I|strong=\"G3754\"* then|strong=\"G3767\"* take|strong=\"G1096\"* the|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"* and|strong=\"G3767\"* make|strong=\"G4160\"* them|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* a|strong=\"G1096\"* prostitute|strong=\"G4204\"*? May|strong=\"G5547\"* it|strong=\"G3754\"* never|strong=\"G3756\"* be|strong=\"G1096\"*!" + }, + { + "verseNum": 16, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G3754\"* who|strong=\"G3588\"* is|strong=\"G1510\"* joined|strong=\"G2853\"* to|strong=\"G1519\"* a|strong=\"G1519\"* prostitute|strong=\"G4204\"* is|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*? For|strong=\"G1063\"*, “The|strong=\"G1519\"* two|strong=\"G1417\"*”, he|strong=\"G3754\"* says|strong=\"G5346\"*, “will|strong=\"G1510\"* become|strong=\"G1510\"* one|strong=\"G1520\"* flesh|strong=\"G4561\"*.”+ 6:16 Genesis 2:24*" + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G1510\"* joined|strong=\"G2853\"* to|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* one|strong=\"G1520\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 18, + "text": "Flee|strong=\"G5343\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*! “Every|strong=\"G3956\"* sin that|strong=\"G3739\"* a|strong=\"G1519\"* man|strong=\"G3956\"* does|strong=\"G4160\"* is|strong=\"G1510\"* outside|strong=\"G1622\"* the|strong=\"G1519\"* body|strong=\"G4983\"*,” but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3739\"* commits|strong=\"G4160\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* sins against|strong=\"G1519\"* his|strong=\"G3956\"* own|strong=\"G2398\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 19, + "text": "Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G2192\"* body|strong=\"G4983\"* is|strong=\"G1510\"* a|strong=\"G2192\"* temple|strong=\"G3485\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, whom|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2192\"* from|strong=\"G2532\"* God|strong=\"G2316\"*? You|strong=\"G5210\"* are|strong=\"G1510\"* not|strong=\"G3756\"* your|strong=\"G2192\"* own|strong=\"G1438\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G3588\"* bought with|strong=\"G1722\"* a|strong=\"G1722\"* price|strong=\"G5092\"*. Therefore|strong=\"G1211\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* your|strong=\"G1392\"* body|strong=\"G4983\"* and|strong=\"G2316\"* in|strong=\"G1722\"* your|strong=\"G1392\"* spirit|strong=\"G3588\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* God|strong=\"G2316\"*’s." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G1161\"* things|strong=\"G3739\"* about|strong=\"G4012\"* which|strong=\"G3739\"* you|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G3361\"* me: it|strong=\"G1161\"* is|strong=\"G3739\"* good|strong=\"G2570\"* for|strong=\"G4012\"* a|strong=\"G1161\"* man|strong=\"G3361\"* not|strong=\"G3361\"* to|strong=\"G3361\"* touch a|strong=\"G1161\"* woman|strong=\"G1135\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1161\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* sexual|strong=\"G4202\"* immoralities|strong=\"G4202\"*, let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* have|strong=\"G2192\"* his|strong=\"G1438\"* own|strong=\"G2398\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* each|strong=\"G1538\"* woman|strong=\"G1135\"* have|strong=\"G2192\"* her|strong=\"G1438\"* own|strong=\"G2398\"* husband." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1161\"* the|strong=\"G2532\"* husband give his|strong=\"G2532\"* wife|strong=\"G1135\"* the|strong=\"G2532\"* affection owed her|strong=\"G3588\"*,+ 7:3 NU and TR have “what is owed her” instead of “the affection owed her”.* and|strong=\"G2532\"* likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* her|strong=\"G3588\"* husband." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* wife|strong=\"G1135\"* doesn’t|strong=\"G3588\"* have|strong=\"G2532\"* authority|strong=\"G1850\"* over|strong=\"G1850\"* her|strong=\"G3588\"* own|strong=\"G2398\"* body|strong=\"G4983\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* husband does. Likewise|strong=\"G3668\"* also|strong=\"G2532\"* the|strong=\"G2532\"* husband doesn’t|strong=\"G3588\"* have|strong=\"G2532\"* authority|strong=\"G1850\"* over|strong=\"G1850\"* his|strong=\"G2398\"* own|strong=\"G2398\"* body|strong=\"G4983\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* does." + }, + { + "verseNum": 5, + "text": "Don’t|strong=\"G3588\"* deprive one|strong=\"G3588\"* another|strong=\"G3825\"*, unless|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G1510\"* by|strong=\"G1223\"* consent|strong=\"G4859\"* for|strong=\"G1223\"* a|strong=\"G2532\"* season|strong=\"G2540\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* give yourselves|strong=\"G4771\"* to|strong=\"G4314\"* fasting and|strong=\"G2532\"* prayer|strong=\"G4335\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* together|strong=\"G1909\"* again|strong=\"G3825\"*, that|strong=\"G2443\"* Satan|strong=\"G4567\"* doesn’t|strong=\"G3588\"* tempt|strong=\"G3985\"* you|strong=\"G5210\"* because|strong=\"G1223\"* of|strong=\"G1537\"* your|strong=\"G1223\"* lack of|strong=\"G1537\"* self-control." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* this|strong=\"G3778\"* I|strong=\"G1161\"* say|strong=\"G3004\"* by|strong=\"G2596\"* way|strong=\"G2596\"* of|strong=\"G2596\"* concession|strong=\"G4774\"*, not|strong=\"G3756\"* of|strong=\"G2596\"* commandment|strong=\"G2003\"*." + }, + { + "verseNum": 7, + "text": "Yet|strong=\"G2532\"* I|strong=\"G2532\"* wish|strong=\"G2309\"* that|strong=\"G3588\"* all|strong=\"G3956\"* men|strong=\"G3956\"* were|strong=\"G1510\"* like|strong=\"G5613\"* me|strong=\"G1683\"*. However|strong=\"G1161\"*, each|strong=\"G1538\"* man|strong=\"G1538\"* has|strong=\"G2192\"* his|strong=\"G3956\"* own|strong=\"G2398\"* gift|strong=\"G5486\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, one|strong=\"G1538\"* of|strong=\"G1537\"* this|strong=\"G3588\"* kind|strong=\"G3956\"*, and|strong=\"G2532\"* another|strong=\"G3588\"* of|strong=\"G1537\"* that|strong=\"G3588\"* kind|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"* to|strong=\"G2532\"* the|strong=\"G2532\"* unmarried and|strong=\"G2532\"* to|strong=\"G2532\"* widows|strong=\"G5503\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* good|strong=\"G2570\"* for|strong=\"G1161\"* them|strong=\"G3588\"* if|strong=\"G1437\"* they|strong=\"G2532\"* remain|strong=\"G3306\"* even|strong=\"G2532\"* as|strong=\"G5613\"* I|strong=\"G2532\"* am|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* they|strong=\"G1161\"* don’t have|strong=\"G1510\"* self-control|strong=\"G1467\"*, let|strong=\"G1161\"* them|strong=\"G1510\"* marry|strong=\"G1060\"*. For|strong=\"G1063\"* it|strong=\"G1161\"*’s better|strong=\"G2909\"* to|strong=\"G3756\"* marry|strong=\"G1060\"* than|strong=\"G2228\"* to|strong=\"G3756\"* burn|strong=\"G4448\"* with|strong=\"G3756\"* passion." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* to|strong=\"G3756\"* the|strong=\"G1161\"* married|strong=\"G1060\"* I|strong=\"G1473\"* command|strong=\"G3853\"*—not|strong=\"G3756\"* I|strong=\"G1473\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*—that|strong=\"G3588\"* the|strong=\"G1161\"* wife|strong=\"G1135\"* not|strong=\"G3756\"* leave|strong=\"G5563\"* her|strong=\"G3588\"* husband" + }, + { + "verseNum": 11, + "text": "(but|strong=\"G1161\"* if|strong=\"G1437\"* she|strong=\"G2532\"* departs, let|strong=\"G1161\"* her|strong=\"G1437\"* remain|strong=\"G3306\"* unmarried, or|strong=\"G2228\"* else|strong=\"G2228\"* be|strong=\"G2532\"* reconciled|strong=\"G2644\"* to|strong=\"G2532\"* her|strong=\"G1437\"* husband), and|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* husband not|strong=\"G3361\"* leave|strong=\"G5563\"* his|strong=\"G2532\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* to|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* I|strong=\"G1473\"*—not|strong=\"G3756\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*—say|strong=\"G3004\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* brother has|strong=\"G2192\"* an|strong=\"G2192\"* unbelieving wife|strong=\"G1135\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* is|strong=\"G3588\"* content to|strong=\"G2532\"* live|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* not|strong=\"G3756\"* leave her|strong=\"G1438\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* has|strong=\"G2192\"* an|strong=\"G2192\"* unbelieving husband, and|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* content to|strong=\"G2532\"* live|strong=\"G2532\"* with|strong=\"G3326\"* her|strong=\"G2192\"*, let|strong=\"G2192\"* her|strong=\"G2192\"* not|strong=\"G3361\"* leave her|strong=\"G2192\"* husband." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* unbelieving husband is|strong=\"G1510\"* sanctified in|strong=\"G1722\"* the|strong=\"G1722\"* wife|strong=\"G1135\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* unbelieving wife|strong=\"G1135\"* is|strong=\"G1510\"* sanctified in|strong=\"G1722\"* the|strong=\"G1722\"* husband. Otherwise|strong=\"G1893\"* your|strong=\"G2532\"* children|strong=\"G5043\"* would|strong=\"G2532\"* be|strong=\"G1510\"* unclean, but|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G2532\"* are|strong=\"G1510\"* holy." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* unbeliever departs, let|strong=\"G1161\"* there|strong=\"G1161\"* be|strong=\"G3756\"* separation. The|strong=\"G1722\"* brother or|strong=\"G2228\"* the|strong=\"G1722\"* sister is|strong=\"G3588\"* not|strong=\"G3756\"* under|strong=\"G1722\"* bondage|strong=\"G1402\"* in|strong=\"G1722\"* such|strong=\"G5108\"* cases, but|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* called|strong=\"G2564\"* us|strong=\"G2564\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* how|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1487\"* know|strong=\"G1492\"*, wife|strong=\"G1135\"*, whether|strong=\"G1487\"* you|strong=\"G1487\"* will|strong=\"G5101\"* save|strong=\"G4982\"* your|strong=\"G1487\"* husband? Or|strong=\"G2228\"* how|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G1487\"* know|strong=\"G1492\"*, husband, whether|strong=\"G1487\"* you|strong=\"G1487\"* will|strong=\"G5101\"* save|strong=\"G4982\"* your|strong=\"G1487\"* wife|strong=\"G1135\"*?" + }, + { + "verseNum": 17, + "text": "Only|strong=\"G1487\"*, as|strong=\"G5613\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2316\"* distributed|strong=\"G3307\"* to|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G1538\"*, as|strong=\"G5613\"* God|strong=\"G2316\"* has|strong=\"G2316\"* called|strong=\"G2564\"* each|strong=\"G1538\"*, so|strong=\"G3779\"* let|strong=\"G2532\"* him|strong=\"G3588\"* walk|strong=\"G4043\"*. So|strong=\"G3779\"* I|strong=\"G2532\"* command in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 18, + "text": "Was|strong=\"G2564\"* anyone|strong=\"G5100\"* called|strong=\"G2564\"* having|strong=\"G5100\"* been|strong=\"G3361\"* circumcised|strong=\"G4059\"*? Let him|strong=\"G2564\"* not|strong=\"G3361\"* become|strong=\"G3361\"* uncircumcised|strong=\"G1986\"*. Has|strong=\"G5100\"* anyone|strong=\"G5100\"* been|strong=\"G3361\"* called|strong=\"G2564\"* in|strong=\"G1722\"* uncircumcision? Let him|strong=\"G2564\"* not|strong=\"G3361\"* be|strong=\"G3361\"* circumcised|strong=\"G4059\"*." + }, + { + "verseNum": 19, + "text": "Circumcision|strong=\"G4061\"* is|strong=\"G1510\"* nothing|strong=\"G3762\"*, and|strong=\"G2532\"* uncircumcision is|strong=\"G1510\"* nothing|strong=\"G3762\"*, but|strong=\"G2532\"* what|strong=\"G3588\"* matters is|strong=\"G1510\"* keeping|strong=\"G5084\"* God|strong=\"G2316\"*’s commandments|strong=\"G1785\"*." + }, + { + "verseNum": 20, + "text": "Let|strong=\"G3306\"* each|strong=\"G1538\"* man|strong=\"G3778\"* stay|strong=\"G3306\"* in|strong=\"G1722\"* that|strong=\"G3739\"* calling|strong=\"G2821\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* was|strong=\"G3588\"* called|strong=\"G2564\"*." + }, + { + "verseNum": 21, + "text": "Were|strong=\"G1096\"* you|strong=\"G4771\"* called|strong=\"G2564\"* being|strong=\"G1096\"* a|strong=\"G1096\"* bondservant? Don’t let|strong=\"G1096\"* that|strong=\"G2532\"* bother you|strong=\"G4771\"*, but|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G4771\"* get|strong=\"G1096\"* an|strong=\"G2532\"* opportunity to|strong=\"G2532\"* become|strong=\"G1096\"* free|strong=\"G1658\"*, use|strong=\"G5530\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* being|strong=\"G1510\"* a|strong=\"G1722\"* bondservant is|strong=\"G1510\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* free|strong=\"G1658\"* man|strong=\"G1658\"*. Likewise|strong=\"G3668\"* he|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G1510\"* called|strong=\"G2564\"* being|strong=\"G1510\"* free|strong=\"G1658\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s|strong=\"G2962\"* bondservant." + }, + { + "verseNum": 23, + "text": "You|strong=\"G3361\"* were|strong=\"G1096\"* bought with|strong=\"G1096\"* a|strong=\"G1096\"* price|strong=\"G5092\"*. Don’t become|strong=\"G1096\"* bondservants of|strong=\"G1401\"* men|strong=\"G1401\"*." + }, + { + "verseNum": 24, + "text": "Brothers, let|strong=\"G3306\"* each|strong=\"G1538\"* man|strong=\"G3778\"*, in|strong=\"G1722\"* whatever|strong=\"G3739\"* condition he|strong=\"G3739\"* was|strong=\"G3739\"* called|strong=\"G2564\"*, stay|strong=\"G3306\"* in|strong=\"G1722\"* that|strong=\"G3739\"* condition with|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* virgins|strong=\"G3933\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* commandment|strong=\"G2003\"* from|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, but|strong=\"G1161\"* I|strong=\"G1161\"* give|strong=\"G1325\"* my|strong=\"G1325\"* judgment|strong=\"G1106\"* as|strong=\"G5613\"* one|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* obtained|strong=\"G2192\"* mercy|strong=\"G1653\"* from|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* to|strong=\"G1325\"* be|strong=\"G1510\"* trustworthy|strong=\"G4103\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G3754\"* think|strong=\"G3543\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* the|strong=\"G1223\"* distress that|strong=\"G3754\"* is|strong=\"G1510\"* on|strong=\"G3588\"* us, it|strong=\"G3754\"*’s good|strong=\"G2570\"* for|strong=\"G3754\"* a|strong=\"G1510\"* man|strong=\"G3778\"* to|strong=\"G3778\"* remain|strong=\"G1510\"* as|strong=\"G3779\"* he|strong=\"G3754\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 27, + "text": "Are|strong=\"G2212\"* you|strong=\"G3361\"* bound|strong=\"G1210\"* to|strong=\"G2212\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*? Don’t seek|strong=\"G2212\"* to|strong=\"G2212\"* be|strong=\"G3361\"* freed. Are|strong=\"G2212\"* you|strong=\"G3361\"* free|strong=\"G3089\"* from|strong=\"G3361\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*? Don’t seek|strong=\"G2212\"* a|strong=\"G3361\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* you|strong=\"G5210\"* marry|strong=\"G1060\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* not|strong=\"G3756\"* sinned. If|strong=\"G1437\"* a|strong=\"G2192\"* virgin|strong=\"G3933\"* marries|strong=\"G1060\"*, she|strong=\"G2532\"* has|strong=\"G2192\"* not|strong=\"G3756\"* sinned. Yet|strong=\"G2532\"* such|strong=\"G5108\"* will|strong=\"G2532\"* have|strong=\"G2192\"* oppression in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* want to|strong=\"G2532\"* spare|strong=\"G5339\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G5346\"* this|strong=\"G3778\"*, brothers: the|strong=\"G2532\"* time|strong=\"G2540\"* is|strong=\"G1510\"* short|strong=\"G3588\"*. From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1161\"*, both|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* wives|strong=\"G1135\"* may|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* had|strong=\"G2192\"* none|strong=\"G3361\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* weep|strong=\"G2799\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* weep|strong=\"G2799\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* rejoice|strong=\"G5463\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* rejoice|strong=\"G5463\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* buy, as|strong=\"G5613\"* though|strong=\"G5613\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* possess|strong=\"G2722\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* use|strong=\"G5530\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, as|strong=\"G5613\"* not|strong=\"G3361\"* using|strong=\"G2710\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* fullest. For|strong=\"G1063\"* the|strong=\"G2532\"* mode of|strong=\"G2532\"* this|strong=\"G3778\"* world|strong=\"G2889\"* passes away|strong=\"G3855\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* have|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2309\"* be|strong=\"G1510\"* free from|strong=\"G3588\"* cares. He|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G1510\"* unmarried is|strong=\"G1510\"* concerned|strong=\"G3309\"* for|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, how|strong=\"G4459\"* he|strong=\"G1161\"* may|strong=\"G5210\"* please|strong=\"G2309\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 33, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* is|strong=\"G3588\"* married|strong=\"G1060\"* is|strong=\"G3588\"* concerned|strong=\"G3309\"* about|strong=\"G3309\"* the|strong=\"G1161\"* things|strong=\"G3588\"* of|strong=\"G3588\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, how|strong=\"G4459\"* he|strong=\"G1161\"* may|strong=\"G2889\"* please his|strong=\"G3588\"* wife|strong=\"G1135\"*." + }, + { + "verseNum": 34, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* difference|strong=\"G3307\"* between|strong=\"G3307\"* a|strong=\"G2532\"* wife|strong=\"G1135\"* and|strong=\"G2532\"* a|strong=\"G2532\"* virgin|strong=\"G3933\"*. The|strong=\"G2532\"* unmarried|strong=\"G3933\"* woman|strong=\"G1135\"* cares about|strong=\"G3309\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* she|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* holy|strong=\"G4151\"* both|strong=\"G2532\"* in|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* in|strong=\"G2532\"* spirit|strong=\"G4151\"*. But|strong=\"G1161\"* she|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* married|strong=\"G1060\"* cares about|strong=\"G3309\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G2532\"* world|strong=\"G2889\"*—how|strong=\"G4459\"* she|strong=\"G2532\"* may|strong=\"G2532\"* please her|strong=\"G3588\"* husband." + }, + { + "verseNum": 35, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* say|strong=\"G3004\"* for|strong=\"G4314\"* your|strong=\"G2962\"* own benefit|strong=\"G4851\"*, not|strong=\"G3756\"* that|strong=\"G2443\"* I|strong=\"G2532\"* may|strong=\"G2532\"* ensnare you|strong=\"G5210\"*, but|strong=\"G1161\"* for|strong=\"G4314\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appropriate|strong=\"G2158\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* attend to|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* without|strong=\"G2532\"* distraction." + }, + { + "verseNum": 36, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G3543\"* that|strong=\"G3739\"* he|strong=\"G2532\"* is|strong=\"G1510\"* behaving inappropriately toward|strong=\"G1909\"* his|strong=\"G1909\"* virgin|strong=\"G3933\"*, if|strong=\"G1487\"* she|strong=\"G2532\"* is|strong=\"G1510\"* past|strong=\"G1096\"* the|strong=\"G2532\"* flower of|strong=\"G2532\"* her|strong=\"G1437\"* age|strong=\"G5230\"*, and|strong=\"G2532\"* if|strong=\"G1487\"* need|strong=\"G1487\"* so|strong=\"G3779\"* requires, let|strong=\"G1096\"* him|strong=\"G3588\"* do|strong=\"G4160\"* what|strong=\"G3739\"* he|strong=\"G2532\"* desires|strong=\"G2309\"*. He|strong=\"G2532\"* doesn’t|strong=\"G3588\"* sin. Let|strong=\"G1096\"* them|strong=\"G3588\"* marry|strong=\"G1060\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3739\"* stands|strong=\"G2476\"* steadfast|strong=\"G1476\"* in|strong=\"G1722\"* his|strong=\"G1438\"* heart|strong=\"G2588\"*, having|strong=\"G2192\"* no|strong=\"G3361\"* urgency, but|strong=\"G1161\"* has|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G4012\"* his|strong=\"G1438\"* own|strong=\"G2398\"* will|strong=\"G2307\"*, and|strong=\"G2532\"* has|strong=\"G2192\"* determined|strong=\"G2919\"* in|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G2398\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* keep|strong=\"G5083\"* his|strong=\"G1438\"* own|strong=\"G2398\"* virgin|strong=\"G3933\"*, does|strong=\"G4160\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 38, + "text": "So|strong=\"G2532\"* then|strong=\"G2532\"* both|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* gives|strong=\"G1061\"* his|strong=\"G1438\"* own|strong=\"G1438\"* virgin|strong=\"G3933\"* in|strong=\"G2532\"* marriage|strong=\"G1061\"* does|strong=\"G4160\"* well|strong=\"G2573\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* give|strong=\"G4160\"* her|strong=\"G1438\"* in|strong=\"G2532\"* marriage|strong=\"G1061\"* does|strong=\"G4160\"* better|strong=\"G2909\"*." + }, + { + "verseNum": 39, + "text": "A|strong=\"G1722\"* wife|strong=\"G1135\"* is|strong=\"G1510\"* bound|strong=\"G1210\"* by|strong=\"G1722\"* law for|strong=\"G1909\"* as|strong=\"G3745\"* long|strong=\"G5550\"* as|strong=\"G3745\"* her|strong=\"G1437\"* husband lives|strong=\"G2198\"*; but|strong=\"G1161\"* if|strong=\"G1437\"* the|strong=\"G1722\"* husband is|strong=\"G1510\"* dead|strong=\"G2837\"*, she|strong=\"G1161\"* is|strong=\"G1510\"* free|strong=\"G1658\"* to|strong=\"G1909\"* be|strong=\"G1510\"* married|strong=\"G1060\"* to|strong=\"G1909\"* whomever|strong=\"G3739\"* she|strong=\"G1161\"* desires|strong=\"G2309\"*, only|strong=\"G3440\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* is|strong=\"G1510\"* happier|strong=\"G3107\"* if|strong=\"G1437\"* she|strong=\"G1161\"* stays as|strong=\"G1161\"* she|strong=\"G1161\"* is|strong=\"G1510\"*, in|strong=\"G2596\"* my|strong=\"G1699\"* judgment|strong=\"G1106\"*, and|strong=\"G1161\"* I|strong=\"G2504\"* think|strong=\"G1380\"* that|strong=\"G3588\"* I|strong=\"G2504\"* also|strong=\"G2504\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* things|strong=\"G3956\"* sacrificed|strong=\"G1494\"* to|strong=\"G1161\"* idols|strong=\"G1494\"*: We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* all|strong=\"G3956\"* have|strong=\"G2192\"* knowledge|strong=\"G1108\"*. Knowledge|strong=\"G1108\"* puffs up|strong=\"G5448\"*, but|strong=\"G1161\"* love builds|strong=\"G3618\"* up|strong=\"G5448\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G1487\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G1097\"* he|strong=\"G1487\"* knows|strong=\"G1097\"* anything|strong=\"G5100\"*, he|strong=\"G1487\"* doesn’t yet|strong=\"G3768\"* know|strong=\"G1097\"* as|strong=\"G2531\"* he|strong=\"G1487\"* ought|strong=\"G1163\"* to|strong=\"G1163\"* know|strong=\"G1097\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* anyone|strong=\"G5100\"* who|strong=\"G3588\"* loves God|strong=\"G2316\"* is|strong=\"G3588\"* known|strong=\"G1097\"* by|strong=\"G5259\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"G3767\"* concerning|strong=\"G4012\"* the|strong=\"G1722\"* eating|strong=\"G1035\"* of|strong=\"G4012\"* things|strong=\"G3588\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* idols|strong=\"G1497\"*, we|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* no|strong=\"G3762\"* idol|strong=\"G1497\"* is|strong=\"G3588\"* anything|strong=\"G3762\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* that|strong=\"G3754\"* there|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3762\"* other|strong=\"G1520\"* God|strong=\"G2316\"* but|strong=\"G2532\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* though|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G1510\"* things|strong=\"G4183\"* that|strong=\"G2532\"* are|strong=\"G1510\"* called|strong=\"G3004\"* “gods|strong=\"G2316\"*”, whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* or|strong=\"G1535\"* on|strong=\"G1909\"* earth|strong=\"G1093\"*—as|strong=\"G5618\"* there|strong=\"G2532\"* are|strong=\"G1510\"* many|strong=\"G4183\"* “gods|strong=\"G2316\"*” and|strong=\"G2532\"* many|strong=\"G4183\"* “lords|strong=\"G2962\"*”—" + }, + { + "verseNum": 6, + "text": "yet|strong=\"G2532\"* to|strong=\"G1519\"* us|strong=\"G1519\"* there|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Father|strong=\"G3962\"*, of|strong=\"G1537\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* for|strong=\"G1519\"* him|strong=\"G3588\"*; and|strong=\"G2532\"* one|strong=\"G1520\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* live|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"G1161\"*, that|strong=\"G3588\"* knowledge|strong=\"G1108\"* isn’t|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. But|strong=\"G1161\"* some|strong=\"G5100\"*, with|strong=\"G1722\"* consciousness|strong=\"G4893\"* of|strong=\"G2532\"* an|strong=\"G2532\"* idol|strong=\"G1497\"* until|strong=\"G2193\"* now|strong=\"G1161\"*, eat|strong=\"G2068\"* as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G5613\"* thing|strong=\"G5100\"* sacrificed|strong=\"G1494\"* to|strong=\"G2532\"* an|strong=\"G2532\"* idol|strong=\"G1497\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"*, being|strong=\"G1510\"* weak, is|strong=\"G1510\"* defiled|strong=\"G3435\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* food|strong=\"G1033\"* will|strong=\"G2316\"* not|strong=\"G3756\"* commend|strong=\"G3936\"* us|strong=\"G2249\"* to|strong=\"G3756\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* neither|strong=\"G3777\"*, if|strong=\"G1437\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* eat|strong=\"G2068\"* are|strong=\"G3588\"* we|strong=\"G2249\"* the|strong=\"G1161\"* worse|strong=\"G5302\"*, nor|strong=\"G3777\"* if|strong=\"G1437\"* we|strong=\"G2249\"* eat|strong=\"G2068\"* are|strong=\"G3588\"* we|strong=\"G2249\"* the|strong=\"G1161\"* better|strong=\"G4052\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* be|strong=\"G1096\"* careful that|strong=\"G3588\"* by|strong=\"G3361\"* no|strong=\"G3361\"* means|strong=\"G3381\"* does|strong=\"G1096\"* this|strong=\"G3778\"* liberty|strong=\"G1849\"* of|strong=\"G3588\"* yours|strong=\"G4771\"* become|strong=\"G1096\"* a|strong=\"G1096\"* stumbling|strong=\"G4348\"* block|strong=\"G4348\"* to|strong=\"G1849\"* the|strong=\"G1161\"* weak." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* sees|strong=\"G3708\"* you|strong=\"G4771\"* who|strong=\"G3588\"* have|strong=\"G2192\"* knowledge|strong=\"G1108\"* sitting|strong=\"G2621\"* in|strong=\"G1722\"* an|strong=\"G2192\"* idol|strong=\"G1494\"*’s|strong=\"G2192\"* temple|strong=\"G1493\"*, won’t|strong=\"G3588\"* his|strong=\"G1519\"* conscience|strong=\"G4893\"*, if|strong=\"G1437\"* he|strong=\"G3588\"* is|strong=\"G1510\"* weak, be|strong=\"G1510\"* emboldened|strong=\"G3618\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* things|strong=\"G3588\"* sacrificed|strong=\"G1494\"* to|strong=\"G1519\"* idols|strong=\"G1494\"*?" + }, + { + "verseNum": 11, + "text": "And|strong=\"G5547\"* through|strong=\"G1223\"* your|strong=\"G4674\"* knowledge|strong=\"G1108\"*, he|strong=\"G3739\"* who|strong=\"G3739\"* is|strong=\"G3588\"* weak perishes, the|strong=\"G1722\"* brother for|strong=\"G1063\"* whose|strong=\"G3739\"* sake|strong=\"G1223\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "Thus|strong=\"G3779\"*, sinning against|strong=\"G1519\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* wounding|strong=\"G5180\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"* when|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* weak, you|strong=\"G3779\"* sin against|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1355\"*, if|strong=\"G1487\"* food|strong=\"G1033\"* causes|strong=\"G4624\"* my|strong=\"G1473\"* brother to|strong=\"G1519\"* stumble|strong=\"G4624\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* eat|strong=\"G2068\"* no|strong=\"G3756\"* meat|strong=\"G1033\"* forever|strong=\"G1519\"* more|strong=\"G3756\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* cause|strong=\"G4624\"* my|strong=\"G1473\"* brother to|strong=\"G1519\"* stumble|strong=\"G4624\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Am|strong=\"G1510\"* I|strong=\"G1473\"* not|strong=\"G3756\"* free|strong=\"G1658\"*? Am|strong=\"G1510\"* I|strong=\"G1473\"* not|strong=\"G3756\"* an|strong=\"G1722\"* apostle? Haven’t|strong=\"G3588\"* I|strong=\"G1473\"* seen|strong=\"G3708\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, our|strong=\"G2424\"* Lord|strong=\"G2962\"*? Aren’t|strong=\"G3588\"* you|strong=\"G5210\"* my|strong=\"G3708\"* work|strong=\"G2041\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*?" + }, + { + "verseNum": 2, + "text": "If|strong=\"G1487\"* to|strong=\"G1722\"* others|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1510\"* not|strong=\"G3756\"* an|strong=\"G1722\"* apostle, yet|strong=\"G1065\"* at|strong=\"G1722\"* least I|strong=\"G1473\"* am|strong=\"G1510\"* to|strong=\"G1722\"* you|strong=\"G5210\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G1722\"* seal|strong=\"G4973\"* of|strong=\"G2962\"* my|strong=\"G1722\"* apostleship in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "My|strong=\"G1699\"* defense to|strong=\"G3778\"* those|strong=\"G3588\"* who|strong=\"G3588\"* examine me|strong=\"G1473\"* is|strong=\"G1510\"* this|strong=\"G3778\"*:" + }, + { + "verseNum": 4, + "text": "Have|strong=\"G2192\"* we|strong=\"G2532\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* to|strong=\"G2532\"* drink|strong=\"G4095\"*?" + }, + { + "verseNum": 5, + "text": "Have|strong=\"G2192\"* we|strong=\"G2532\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* take|strong=\"G2532\"* along|strong=\"G2532\"* a|strong=\"G2192\"* wife|strong=\"G1135\"* who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2192\"* believer, even|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles, and|strong=\"G2532\"* the|strong=\"G2532\"* brothers of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* Cephas|strong=\"G2786\"*?" + }, + { + "verseNum": 6, + "text": "Or|strong=\"G2228\"* have|strong=\"G2192\"* only|strong=\"G3441\"* Barnabas and|strong=\"G2532\"* I|strong=\"G1473\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G2532\"* not|strong=\"G3756\"* work|strong=\"G2038\"*?" + }, + { + "verseNum": 7, + "text": "What|strong=\"G5101\"* soldier|strong=\"G4754\"* ever|strong=\"G4218\"* serves|strong=\"G4754\"* at|strong=\"G1537\"* his|strong=\"G2398\"* own|strong=\"G2398\"* expense|strong=\"G3800\"*? Who|strong=\"G5101\"* plants|strong=\"G5452\"* a|strong=\"G2532\"* vineyard, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* eat|strong=\"G2068\"* of|strong=\"G1537\"* its|strong=\"G1537\"* fruit|strong=\"G2590\"*? Or|strong=\"G2228\"* who|strong=\"G5101\"* feeds a|strong=\"G2532\"* flock|strong=\"G4167\"*, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* drink|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G2532\"* flock|strong=\"G4167\"*’s milk|strong=\"G1051\"*?" + }, + { + "verseNum": 8, + "text": "Do|strong=\"G2532\"* I|strong=\"G2532\"* speak|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3778\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* ways of|strong=\"G2532\"* men|strong=\"G3778\"*? Or|strong=\"G2228\"* doesn’t|strong=\"G3588\"* the|strong=\"G2532\"* law|strong=\"G3551\"* also|strong=\"G2532\"* say|strong=\"G3004\"* the|strong=\"G2532\"* same|strong=\"G3778\"* thing|strong=\"G3778\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G2316\"* Moses|strong=\"G3475\"*, “You|strong=\"G1722\"* shall|strong=\"G2316\"* not|strong=\"G3756\"* muzzle|strong=\"G5392\"* an|strong=\"G1722\"* ox|strong=\"G1016\"* while|strong=\"G1722\"* it|strong=\"G1063\"* treads out|strong=\"G1063\"* the|strong=\"G1722\"* grain.”+ 9:9 Deuteronomy 25:4* Is|strong=\"G3588\"* it|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G1722\"* oxen|strong=\"G1016\"* that|strong=\"G3588\"* God|strong=\"G2316\"* cares|strong=\"G3199\"*," + }, + { + "verseNum": 10, + "text": "or|strong=\"G2228\"* does|strong=\"G3004\"* he|strong=\"G2532\"* say|strong=\"G3004\"* it|strong=\"G2532\"* assuredly for|strong=\"G1063\"* our|strong=\"G2532\"* sake|strong=\"G1223\"*? Yes|strong=\"G1063\"*, it|strong=\"G2532\"* was|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1063\"* our|strong=\"G2532\"* sake|strong=\"G1223\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* plows ought|strong=\"G3784\"* to|strong=\"G2532\"* plow in|strong=\"G1909\"* hope|strong=\"G1680\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* threshes in|strong=\"G1909\"* hope|strong=\"G1680\"* should|strong=\"G3784\"* partake|strong=\"G3348\"* of|strong=\"G1223\"* his|strong=\"G1223\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1487\"* we|strong=\"G2249\"* sowed|strong=\"G4687\"* to|strong=\"G3588\"* you|strong=\"G5210\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, is|strong=\"G3588\"* it|strong=\"G1487\"* a|strong=\"G1487\"* great|strong=\"G3173\"* thing|strong=\"G3173\"* if|strong=\"G1487\"* we|strong=\"G2249\"* reap|strong=\"G2325\"* your|strong=\"G1487\"* fleshly|strong=\"G4559\"* things|strong=\"G3588\"*?" + }, + { + "verseNum": 12, + "text": "If|strong=\"G1487\"* others|strong=\"G3588\"* partake|strong=\"G3348\"* of|strong=\"G2098\"* this|strong=\"G3778\"* right|strong=\"G1849\"* over|strong=\"G1849\"* you|strong=\"G5210\"*, don’t|strong=\"G3588\"* we|strong=\"G2249\"* yet|strong=\"G5210\"* more|strong=\"G3123\"*?" + }, + { + "verseNum": 13, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* serve around sacred|strong=\"G2413\"* things|strong=\"G3588\"* eat|strong=\"G2068\"* from|strong=\"G1537\"* the|strong=\"G1537\"* things|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* temple|strong=\"G2413\"*, and|strong=\"G2068\"* those|strong=\"G3588\"* who|strong=\"G3588\"* wait|strong=\"G4332\"* on|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"* have|strong=\"G3748\"* their|strong=\"G2068\"* portion with|strong=\"G1537\"* the|strong=\"G1537\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 14, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* ordained|strong=\"G1299\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* proclaim|strong=\"G2605\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* should|strong=\"G3588\"* live|strong=\"G2198\"* from|strong=\"G1537\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* have|strong=\"G1473\"* used|strong=\"G5530\"* none|strong=\"G3762\"* of|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G1161\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* that|strong=\"G2443\"* it|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1096\"* done|strong=\"G1096\"* so|strong=\"G3779\"* in|strong=\"G1722\"* my|strong=\"G1722\"* case|strong=\"G3588\"*; for|strong=\"G1063\"* I|strong=\"G1473\"* would|strong=\"G1096\"* rather|strong=\"G3123\"* die, than|strong=\"G2228\"* that|strong=\"G2443\"* anyone|strong=\"G3762\"* should|strong=\"G3588\"* make|strong=\"G2758\"* my|strong=\"G1722\"* boasting|strong=\"G2745\"* void|strong=\"G2758\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* preach|strong=\"G2097\"* the|strong=\"G1063\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* nothing|strong=\"G3756\"* to|strong=\"G3756\"* boast|strong=\"G2745\"* about|strong=\"G3361\"*, for|strong=\"G1063\"* necessity is|strong=\"G1510\"* laid|strong=\"G1945\"* on|strong=\"G3361\"* me|strong=\"G1473\"*; but|strong=\"G3361\"* woe|strong=\"G3759\"* is|strong=\"G1510\"* to|strong=\"G3756\"* me|strong=\"G1473\"* if|strong=\"G1437\"* I|strong=\"G1473\"* don’t preach|strong=\"G2097\"* the|strong=\"G1063\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1161\"* do|strong=\"G4238\"* this|strong=\"G3778\"* of|strong=\"G2192\"* my|strong=\"G4100\"* own will|strong=\"G3778\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* a|strong=\"G2192\"* reward|strong=\"G3408\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* not|strong=\"G2192\"* of|strong=\"G2192\"* my|strong=\"G4100\"* own will|strong=\"G3778\"*, I|strong=\"G1161\"* have|strong=\"G2192\"* a|strong=\"G2192\"* stewardship|strong=\"G3622\"* entrusted|strong=\"G4100\"* to|strong=\"G1161\"* me|strong=\"G2192\"*." + }, + { + "verseNum": 18, + "text": "What|strong=\"G5101\"* then|strong=\"G3767\"* is|strong=\"G1510\"* my|strong=\"G1722\"* reward|strong=\"G3408\"*? That|strong=\"G2443\"* when|strong=\"G1722\"* I|strong=\"G1473\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*, I|strong=\"G1473\"* may|strong=\"G2443\"* present|strong=\"G5087\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* of|strong=\"G2098\"* Christ without|strong=\"G3361\"* charge|strong=\"G1849\"*, so|strong=\"G2443\"* as|strong=\"G1519\"* not|strong=\"G3361\"* to|strong=\"G1519\"* abuse|strong=\"G2710\"* my|strong=\"G1722\"* authority|strong=\"G1849\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* though|strong=\"G1063\"* I|strong=\"G1063\"* was|strong=\"G1510\"* free|strong=\"G1658\"* from|strong=\"G1537\"* all|strong=\"G3956\"*, I|strong=\"G1063\"* brought myself|strong=\"G1683\"* under|strong=\"G1537\"* bondage|strong=\"G1402\"* to|strong=\"G2443\"* all|strong=\"G3956\"*, that|strong=\"G2443\"* I|strong=\"G1063\"* might|strong=\"G3956\"* gain|strong=\"G2770\"* the|strong=\"G3956\"* more|strong=\"G4119\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"G2443\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* I|strong=\"G2532\"* became|strong=\"G1096\"* as|strong=\"G5613\"* a|strong=\"G1096\"* Jew|strong=\"G2453\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* gain|strong=\"G2770\"* Jews|strong=\"G2453\"*; to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, as|strong=\"G5613\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*,+ 9:20 NU adds: though I myself am not under the law* that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* gain|strong=\"G2770\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G2532\"* law|strong=\"G3551\"*;" + }, + { + "verseNum": 21, + "text": "to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"*, as|strong=\"G5613\"* without|strong=\"G3361\"* law|strong=\"G1772\"* (not|strong=\"G3361\"* being|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"* toward God|strong=\"G2316\"*, but|strong=\"G3361\"* under|strong=\"G1772\"* law|strong=\"G1772\"* toward Christ|strong=\"G5547\"*), that|strong=\"G2443\"* I|strong=\"G5613\"* might|strong=\"G2316\"* win|strong=\"G2770\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* without|strong=\"G3361\"* law|strong=\"G1772\"*." + }, + { + "verseNum": 22, + "text": "To|strong=\"G2443\"* the|strong=\"G3956\"* weak I|strong=\"G2443\"* became|strong=\"G1096\"* as|strong=\"G1096\"* weak, that|strong=\"G2443\"* I|strong=\"G2443\"* might|strong=\"G4982\"* gain|strong=\"G2770\"* the|strong=\"G3956\"* weak. I|strong=\"G2443\"* have|strong=\"G1096\"* become|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, that|strong=\"G2443\"* I|strong=\"G2443\"* may|strong=\"G2443\"* by|strong=\"G3956\"* all|strong=\"G3956\"* means|strong=\"G3843\"* save|strong=\"G4982\"* some|strong=\"G5100\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* do|strong=\"G4160\"* this|strong=\"G3588\"* for|strong=\"G1223\"* the|strong=\"G3956\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G3956\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1096\"* a|strong=\"G1096\"* joint partaker|strong=\"G4791\"* of|strong=\"G1223\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 24, + "text": "Don’t|strong=\"G3588\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* run|strong=\"G5143\"* in|strong=\"G1722\"* a|strong=\"G1722\"* race|strong=\"G4712\"* all|strong=\"G3956\"* run|strong=\"G5143\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* receives|strong=\"G2983\"* the|strong=\"G1722\"* prize|strong=\"G1017\"*? Run|strong=\"G5143\"* like|strong=\"G3779\"* that|strong=\"G3754\"*, so|strong=\"G3779\"* that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2443\"* win|strong=\"G2638\"*." + }, + { + "verseNum": 25, + "text": "Every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* strives in|strong=\"G3956\"* the|strong=\"G3956\"* games exercises|strong=\"G1467\"* self-control|strong=\"G1467\"* in|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"*. Now|strong=\"G1161\"* they|strong=\"G1161\"* do|strong=\"G2983\"* it|strong=\"G1161\"* to|strong=\"G2443\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* corruptible|strong=\"G5349\"* crown|strong=\"G4735\"*, but|strong=\"G1161\"* we|strong=\"G2249\"* an|strong=\"G1161\"* incorruptible." + }, + { + "verseNum": 26, + "text": "I|strong=\"G1473\"* therefore|strong=\"G5106\"* run|strong=\"G5143\"* like|strong=\"G5613\"* that|strong=\"G5613\"*, not|strong=\"G3756\"* aimlessly. I|strong=\"G1473\"* fight|strong=\"G3779\"* like|strong=\"G5613\"* that|strong=\"G5613\"*, not|strong=\"G3756\"* beating|strong=\"G1194\"* the|strong=\"G5613\"* air," + }, + { + "verseNum": 27, + "text": "but|strong=\"G2532\"* I|strong=\"G1473\"* beat my|strong=\"G1473\"* body|strong=\"G4983\"* and|strong=\"G2532\"* bring|strong=\"G1396\"* it|strong=\"G2532\"* into|strong=\"G1096\"* submission, lest|strong=\"G3361\"* by|strong=\"G2532\"* any|strong=\"G3361\"* means|strong=\"G3381\"*, after|strong=\"G2532\"* I|strong=\"G1473\"* have|strong=\"G2532\"* preached|strong=\"G2784\"* to|strong=\"G2532\"* others|strong=\"G3588\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* should|strong=\"G3588\"* be|strong=\"G1096\"* disqualified." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* I|strong=\"G1473\"* would|strong=\"G2309\"* not|strong=\"G3756\"* have|strong=\"G2309\"* you|strong=\"G5210\"* ignorant, brothers, that|strong=\"G3754\"* our|strong=\"G2532\"* fathers|strong=\"G3962\"* were|strong=\"G1510\"* all|strong=\"G3956\"* under|strong=\"G5259\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* passed|strong=\"G1330\"* through|strong=\"G1223\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* were|strong=\"G3588\"* all|strong=\"G3956\"* baptized into|strong=\"G1519\"* Moses|strong=\"G3475\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* ate|strong=\"G2068\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spiritual|strong=\"G4152\"* food|strong=\"G1033\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* drank|strong=\"G4095\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spiritual|strong=\"G4152\"* drink|strong=\"G4095\"*. For|strong=\"G1063\"* they|strong=\"G2532\"* drank|strong=\"G4095\"* of|strong=\"G1537\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* rock|strong=\"G4073\"* that|strong=\"G3588\"* followed them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* rock|strong=\"G4073\"* was|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 5, + "text": "However with|strong=\"G1722\"* most|strong=\"G4183\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, God|strong=\"G2316\"* was|strong=\"G3588\"* not|strong=\"G3756\"* well|strong=\"G1063\"* pleased|strong=\"G2106\"*, for|strong=\"G1063\"* they|strong=\"G3588\"* were|strong=\"G3588\"* overthrown|strong=\"G2693\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"* were|strong=\"G1510\"* our|strong=\"G1519\"* examples|strong=\"G5179\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* intent|strong=\"G1519\"* we|strong=\"G2249\"* should|strong=\"G3588\"* not|strong=\"G3361\"* lust|strong=\"G1937\"* after|strong=\"G1161\"* evil|strong=\"G2556\"* things|strong=\"G3778\"* as|strong=\"G2531\"* they|strong=\"G1161\"* also|strong=\"G1161\"* lusted|strong=\"G1937\"*." + }, + { + "verseNum": 7, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G1096\"* idolaters|strong=\"G1496\"*, as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G2532\"* them|strong=\"G3588\"* were|strong=\"G3588\"*. As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* people|strong=\"G2992\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* to|strong=\"G2532\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*, and|strong=\"G2532\"* rose|strong=\"G2532\"* up|strong=\"G2532\"* to|strong=\"G2532\"* play|strong=\"G3815\"*.”+ 10:7 Exodus 32:6*" + }, + { + "verseNum": 8, + "text": "Let|strong=\"G2532\"*’s not|strong=\"G3366\"* commit|strong=\"G4203\"* sexual immorality|strong=\"G4203\"*, as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G2250\"* them|strong=\"G2250\"* committed|strong=\"G4203\"*, and|strong=\"G2532\"* in|strong=\"G2532\"* one|strong=\"G1520\"* day|strong=\"G2250\"* twenty-three|strong=\"G1501\"* thousand|strong=\"G5505\"* fell|strong=\"G4098\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G2532\"*’s|strong=\"G2962\"* not|strong=\"G3366\"* test|strong=\"G3985\"* Christ|strong=\"G5547\"*,+ 10:9 NU reads “the Lord” instead of “Christ”.* as|strong=\"G2531\"* some|strong=\"G5100\"* of|strong=\"G5259\"* them|strong=\"G3588\"* tested|strong=\"G3985\"*, and|strong=\"G2532\"* perished by|strong=\"G5259\"* the|strong=\"G2532\"* serpents|strong=\"G3789\"*." + }, + { + "verseNum": 10, + "text": "Don’t|strong=\"G3588\"* grumble|strong=\"G1111\"*, as|strong=\"G2509\"* some|strong=\"G5100\"* of|strong=\"G5259\"* them|strong=\"G3588\"* also|strong=\"G2532\"* grumbled|strong=\"G1111\"*, and|strong=\"G2532\"* perished by|strong=\"G5259\"* the|strong=\"G2532\"* destroyer|strong=\"G3644\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* all|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3778\"* happened|strong=\"G4819\"* to|strong=\"G1519\"* them|strong=\"G3588\"* by|strong=\"G4314\"* way|strong=\"G3739\"* of|strong=\"G3588\"* example|strong=\"G5179\"*, and|strong=\"G1161\"* they|strong=\"G1161\"* were|strong=\"G3588\"* written|strong=\"G1125\"* for|strong=\"G1519\"* our|strong=\"G4314\"* admonition|strong=\"G3559\"*, on|strong=\"G1519\"* whom|strong=\"G3739\"* the|strong=\"G1519\"* ends|strong=\"G5056\"* of|strong=\"G3588\"* the|strong=\"G1519\"* ages have|strong=\"G1473\"* come|strong=\"G2658\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G1380\"* him|strong=\"G3588\"* who|strong=\"G3588\"* thinks|strong=\"G1380\"* he|strong=\"G3588\"* stands|strong=\"G2476\"* be|strong=\"G3361\"* careful that|strong=\"G3588\"* he|strong=\"G3588\"* doesn’t|strong=\"G3588\"* fall|strong=\"G4098\"*." + }, + { + "verseNum": 13, + "text": "No|strong=\"G3756\"* temptation|strong=\"G3986\"* has|strong=\"G2316\"* taken|strong=\"G2983\"* you|strong=\"G5210\"* except|strong=\"G1487\"* what|strong=\"G3739\"* is|strong=\"G3588\"* common to|strong=\"G2532\"* man|strong=\"G3361\"*. God|strong=\"G2316\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G2316\"* not|strong=\"G3756\"* allow|strong=\"G1439\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* tempted|strong=\"G3985\"* above|strong=\"G5228\"* what|strong=\"G3739\"* you|strong=\"G5210\"* are|strong=\"G3588\"* able|strong=\"G1410\"*, but|strong=\"G1161\"* will|strong=\"G2316\"* with|strong=\"G4862\"* the|strong=\"G2532\"* temptation|strong=\"G3986\"* also|strong=\"G2532\"* make|strong=\"G4160\"* the|strong=\"G2532\"* way|strong=\"G3739\"* of|strong=\"G2316\"* escape|strong=\"G1545\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2532\"* endure|strong=\"G5297\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1355\"*, my|strong=\"G1473\"* beloved, flee|strong=\"G5343\"* from|strong=\"G3588\"* idolatry|strong=\"G1495\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"G3739\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* to|strong=\"G3004\"* wise|strong=\"G5429\"* men|strong=\"G5429\"*. Judge|strong=\"G2919\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G3588\"* cup|strong=\"G4221\"* of|strong=\"G4983\"* blessing|strong=\"G2129\"* which|strong=\"G3739\"* we|strong=\"G3739\"* bless|strong=\"G2127\"*, isn’t|strong=\"G3588\"* it|strong=\"G3739\"* a|strong=\"G1510\"* sharing|strong=\"G2842\"* of|strong=\"G4983\"* the|strong=\"G3588\"* blood of|strong=\"G4983\"* Christ|strong=\"G5547\"*? The|strong=\"G3588\"* bread which|strong=\"G3739\"* we|strong=\"G3739\"* break|strong=\"G2806\"*, isn’t|strong=\"G3588\"* it|strong=\"G3739\"* a|strong=\"G1510\"* sharing|strong=\"G2842\"* of|strong=\"G4983\"* the|strong=\"G3588\"* body|strong=\"G4983\"* of|strong=\"G4983\"* Christ|strong=\"G5547\"*?" + }, + { + "verseNum": 17, + "text": "Because|strong=\"G3754\"* there|strong=\"G1063\"* is|strong=\"G1510\"* one|strong=\"G1520\"* loaf of|strong=\"G1537\"* bread, we|strong=\"G3754\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*; for|strong=\"G1063\"* we|strong=\"G3754\"* all|strong=\"G3956\"* partake|strong=\"G3348\"* of|strong=\"G1537\"* the|strong=\"G3956\"* one|strong=\"G1520\"* loaf of|strong=\"G1537\"* bread." + }, + { + "verseNum": 18, + "text": "Consider Israel|strong=\"G2474\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*. Don’t|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* eat|strong=\"G2068\"* the|strong=\"G2596\"* sacrifices|strong=\"G2378\"* participate in|strong=\"G2596\"* the|strong=\"G2596\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 19, + "text": "What|strong=\"G5101\"* am|strong=\"G1510\"* I|strong=\"G3754\"* saying|strong=\"G3754\"* then|strong=\"G3767\"*? That|strong=\"G3754\"* a|strong=\"G1510\"* thing|strong=\"G5100\"* sacrificed|strong=\"G1494\"* to|strong=\"G5100\"* idols|strong=\"G1497\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*, or|strong=\"G2228\"* that|strong=\"G3754\"* an|strong=\"G2228\"* idol|strong=\"G1497\"* is|strong=\"G1510\"* anything|strong=\"G5100\"*?" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* I|strong=\"G3739\"* say|strong=\"G2532\"* that|strong=\"G3754\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Gentiles sacrifice|strong=\"G2380\"*, they|strong=\"G2532\"* sacrifice|strong=\"G2380\"* to|strong=\"G2532\"* demons|strong=\"G1140\"* and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* that|strong=\"G3754\"* you|strong=\"G5210\"* would|strong=\"G2309\"* have|strong=\"G2309\"* fellowship|strong=\"G2844\"* with|strong=\"G2532\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"G2532\"* can|strong=\"G1410\"*’t both|strong=\"G2532\"* drink|strong=\"G4095\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2532\"* demons|strong=\"G1140\"*. You|strong=\"G2532\"* can|strong=\"G1410\"*’t both|strong=\"G2532\"* partake|strong=\"G3348\"* of|strong=\"G2532\"* the|strong=\"G2532\"* table|strong=\"G5132\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* table|strong=\"G5132\"* of|strong=\"G2532\"* demons|strong=\"G1140\"*." + }, + { + "verseNum": 22, + "text": "Or|strong=\"G2228\"* do|strong=\"G3361\"* we|strong=\"G1510\"* provoke|strong=\"G3863\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* to|strong=\"G3361\"* jealousy|strong=\"G3863\"*? Are|strong=\"G1510\"* we|strong=\"G1510\"* stronger|strong=\"G2478\"* than|strong=\"G2228\"* he|strong=\"G3588\"*?" + }, + { + "verseNum": 23, + "text": "“All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G3756\"*,” but not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* profitable|strong=\"G4851\"*. “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3956\"* lawful|strong=\"G1832\"* for|strong=\"G1832\"* me|strong=\"G3756\"*,” but not|strong=\"G3756\"* all|strong=\"G3956\"* things|strong=\"G3956\"* build|strong=\"G3618\"* up|strong=\"G3618\"*." + }, + { + "verseNum": 24, + "text": "Let no|strong=\"G3367\"* one|strong=\"G3367\"* seek|strong=\"G2212\"* his|strong=\"G1438\"* own|strong=\"G1438\"*, but|strong=\"G3588\"* each|strong=\"G1438\"* one|strong=\"G3367\"* his|strong=\"G1438\"* neighbor|strong=\"G2087\"*’s good|strong=\"G3588\"*." + }, + { + "verseNum": 25, + "text": "Whatever|strong=\"G3956\"* is|strong=\"G3588\"* sold|strong=\"G4453\"* in|strong=\"G1722\"* the|strong=\"G1722\"* butcher shop, eat|strong=\"G2068\"*, asking no|strong=\"G3367\"* question for|strong=\"G1223\"* the|strong=\"G1722\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"G1063\"* “the|strong=\"G2532\"* earth|strong=\"G1093\"* is|strong=\"G3588\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"*, and|strong=\"G2532\"* its fullness|strong=\"G4138\"*.”+ 10:26 Psalms 24:1 *" + }, + { + "verseNum": 27, + "text": "But|strong=\"G2532\"* if|strong=\"G1487\"* one|strong=\"G5100\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* believe invites|strong=\"G2564\"* you|strong=\"G5210\"* to|strong=\"G2532\"* a|strong=\"G2532\"* meal, and|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3588\"* inclined to|strong=\"G2532\"* go|strong=\"G4198\"*, eat|strong=\"G2068\"* whatever|strong=\"G3956\"* is|strong=\"G3588\"* set|strong=\"G3908\"* before|strong=\"G3908\"* you|strong=\"G5210\"*, asking no|strong=\"G3367\"* questions for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* anyone|strong=\"G5100\"* says|strong=\"G3004\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, “This|strong=\"G3778\"* was|strong=\"G1510\"* offered to|strong=\"G2532\"* idols|strong=\"G1494\"*,” don’t|strong=\"G3588\"* eat|strong=\"G2068\"* it|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* one|strong=\"G5100\"* who|strong=\"G3588\"* told|strong=\"G3004\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* sake|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"*. For|strong=\"G1223\"* “the|strong=\"G2532\"* earth|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*’s, with|strong=\"G1223\"* all|strong=\"G2532\"* its|strong=\"G1223\"* fullness.”" + }, + { + "verseNum": 29, + "text": "Conscience|strong=\"G4893\"*, I|strong=\"G1473\"* say|strong=\"G3004\"*, not|strong=\"G3780\"* your|strong=\"G5259\"* own|strong=\"G1438\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* other|strong=\"G2087\"*’s conscience|strong=\"G4893\"*. For|strong=\"G1063\"* why|strong=\"G2444\"* is|strong=\"G3588\"* my|strong=\"G1473\"* liberty|strong=\"G1657\"* judged|strong=\"G2919\"* by|strong=\"G5259\"* another|strong=\"G2087\"* conscience|strong=\"G4893\"*?" + }, + { + "verseNum": 30, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* partake|strong=\"G3348\"* with|strong=\"G5485\"* thankfulness|strong=\"G5485\"*, why|strong=\"G5101\"* am|strong=\"G1473\"* I|strong=\"G1473\"* denounced for|strong=\"G5228\"* something|strong=\"G5101\"* I|strong=\"G1473\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* for|strong=\"G5228\"*?" + }, + { + "verseNum": 31, + "text": "Whether|strong=\"G1535\"* therefore|strong=\"G3767\"* you|strong=\"G4160\"* eat|strong=\"G2068\"* or|strong=\"G1535\"* drink|strong=\"G4095\"*, or|strong=\"G1535\"* whatever|strong=\"G3956\"* you|strong=\"G4160\"* do|strong=\"G4160\"*, do|strong=\"G4160\"* all|strong=\"G3956\"* to|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "Give|strong=\"G1096\"* no|strong=\"G2532\"* occasion for|strong=\"G2532\"* stumbling, whether|strong=\"G2532\"* to|strong=\"G2532\"* Jews|strong=\"G2453\"*, to|strong=\"G2532\"* Greeks|strong=\"G1672\"*, or|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 33, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G2504\"* also|strong=\"G2504\"* please all|strong=\"G3956\"* men|strong=\"G3956\"* in|strong=\"G3956\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, not|strong=\"G3361\"* seeking|strong=\"G2212\"* my|strong=\"G2212\"* own|strong=\"G1683\"* profit|strong=\"G4851\"*, but|strong=\"G3361\"* the|strong=\"G3956\"* profit|strong=\"G4851\"* of|strong=\"G3956\"* the|strong=\"G3956\"* many|strong=\"G4183\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G3361\"* saved|strong=\"G4982\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G1096\"* me|strong=\"G1473\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G1473\"* also|strong=\"G2504\"* am|strong=\"G1473\"* of|strong=\"G1096\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*, brothers, that|strong=\"G3754\"* you|strong=\"G5210\"* remember|strong=\"G3403\"* me|strong=\"G1473\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* hold|strong=\"G2722\"* firm the|strong=\"G2532\"* traditions|strong=\"G3862\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* would|strong=\"G2309\"* have|strong=\"G2309\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* every|strong=\"G3956\"* man|strong=\"G3956\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*, and|strong=\"G1161\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* the|strong=\"G3956\"* woman|strong=\"G1135\"* is|strong=\"G1510\"* man|strong=\"G3956\"*, and|strong=\"G1161\"* the|strong=\"G3956\"* head|strong=\"G2776\"*+ 11:3 or, origin* of|strong=\"G2316\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "Every|strong=\"G3956\"* man|strong=\"G3956\"* praying|strong=\"G4336\"* or|strong=\"G2228\"* prophesying|strong=\"G4395\"*, having|strong=\"G2192\"* his|strong=\"G3956\"* head|strong=\"G2776\"* covered|strong=\"G2596\"*, dishonors his|strong=\"G3956\"* head|strong=\"G2776\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* every|strong=\"G3956\"* woman|strong=\"G1135\"* praying|strong=\"G4336\"* or|strong=\"G2228\"* prophesying|strong=\"G4395\"* with|strong=\"G2532\"* her|strong=\"G3956\"* head|strong=\"G2776\"* uncovered dishonors her|strong=\"G3956\"* head|strong=\"G2776\"*. For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* one|strong=\"G1520\"* and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* thing|strong=\"G1520\"* as|strong=\"G1161\"* if|strong=\"G2532\"* she|strong=\"G2532\"* were|strong=\"G1510\"* shaved|strong=\"G3587\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* is|strong=\"G3588\"* not|strong=\"G3756\"* covered|strong=\"G2619\"*, let|strong=\"G1161\"* her|strong=\"G3588\"* hair|strong=\"G2751\"* also|strong=\"G2532\"* be|strong=\"G2532\"* cut|strong=\"G2532\"* off|strong=\"G2751\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* shameful for|strong=\"G1063\"* a|strong=\"G2532\"* woman|strong=\"G1135\"* to|strong=\"G2532\"* have|strong=\"G2532\"* her|strong=\"G3588\"* hair|strong=\"G2751\"* cut|strong=\"G2532\"* off|strong=\"G2751\"* or|strong=\"G2228\"* be|strong=\"G2532\"* shaved|strong=\"G3587\"*, let|strong=\"G1161\"* her|strong=\"G3588\"* be|strong=\"G2532\"* covered|strong=\"G2619\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* a|strong=\"G2532\"* man|strong=\"G3756\"* indeed|strong=\"G2532\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G2532\"* have|strong=\"G2532\"* his|strong=\"G2532\"* head|strong=\"G2776\"* covered|strong=\"G2619\"*, because|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* image|strong=\"G1504\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* is|strong=\"G1510\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2532\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* man|strong=\"G3756\"* is|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G1537\"* woman|strong=\"G1135\"*, but|strong=\"G1063\"* woman|strong=\"G1135\"* from|strong=\"G1537\"* man|strong=\"G3756\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* man|strong=\"G3756\"* wasn’t|strong=\"G3588\"* created|strong=\"G2936\"* for|strong=\"G1063\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, but|strong=\"G2532\"* woman|strong=\"G1135\"* for|strong=\"G1063\"* the|strong=\"G2532\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* the|strong=\"G1909\"* woman|strong=\"G1135\"* ought|strong=\"G3784\"* to|strong=\"G1909\"* have|strong=\"G2192\"* authority|strong=\"G1849\"* over|strong=\"G1909\"* her|strong=\"G2192\"* own head|strong=\"G2776\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1909\"* angels." + }, + { + "verseNum": 11, + "text": "Nevertheless|strong=\"G4133\"*, neither|strong=\"G3777\"* is|strong=\"G2962\"* the|strong=\"G1722\"* woman|strong=\"G1135\"* independent|strong=\"G5565\"* of|strong=\"G2962\"* the|strong=\"G1722\"* man, nor|strong=\"G3777\"* the|strong=\"G1722\"* man independent|strong=\"G5565\"* of|strong=\"G2962\"* the|strong=\"G1722\"* woman|strong=\"G1135\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* woman|strong=\"G1135\"* came|strong=\"G2532\"* from|strong=\"G1537\"* man|strong=\"G3956\"*, so|strong=\"G3779\"* a|strong=\"G2532\"* man|strong=\"G3956\"* also|strong=\"G2532\"* comes|strong=\"G2532\"* through|strong=\"G1223\"* a|strong=\"G2532\"* woman|strong=\"G1135\"*; but|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Judge|strong=\"G2919\"* for|strong=\"G1722\"* yourselves|strong=\"G4771\"*. Is|strong=\"G1510\"* it|strong=\"G1510\"* appropriate that|strong=\"G3588\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* pray|strong=\"G4336\"* to|strong=\"G1722\"* God|strong=\"G2316\"* unveiled?" + }, + { + "verseNum": 14, + "text": "Doesn’t|strong=\"G3588\"* even|strong=\"G3761\"* nature|strong=\"G5449\"* itself teach|strong=\"G1321\"* you|strong=\"G5210\"* that|strong=\"G3754\"* if|strong=\"G1437\"* a|strong=\"G1510\"* man has|strong=\"G3748\"* long|strong=\"G2863\"* hair|strong=\"G2863\"*, it|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* dishonor to|strong=\"G1510\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* a|strong=\"G1510\"* woman|strong=\"G1135\"* has|strong=\"G3748\"* long|strong=\"G2863\"* hair|strong=\"G2863\"*, it|strong=\"G3754\"* is|strong=\"G1510\"* a|strong=\"G1510\"* glory|strong=\"G1391\"* to|strong=\"G1325\"* her|strong=\"G1437\"*, for|strong=\"G3754\"* her|strong=\"G1437\"* hair|strong=\"G2863\"* is|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G1325\"* her|strong=\"G1437\"* for|strong=\"G3754\"* a|strong=\"G1510\"* covering|strong=\"G4018\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* seems|strong=\"G1380\"* to|strong=\"G3756\"* be|strong=\"G1510\"* contentious|strong=\"G5380\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* no|strong=\"G3756\"* such|strong=\"G5108\"* custom|strong=\"G4914\"*, neither|strong=\"G3761\"* do|strong=\"G1380\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* in|strong=\"G1519\"* giving|strong=\"G3853\"* you|strong=\"G3754\"* this|strong=\"G3778\"* command|strong=\"G3853\"* I|strong=\"G1161\"* don’t|strong=\"G3588\"* praise|strong=\"G1867\"* you|strong=\"G3754\"*, because|strong=\"G3754\"* you|strong=\"G3754\"* come|strong=\"G4905\"* together|strong=\"G4905\"* not|strong=\"G3756\"* for|strong=\"G3754\"* the|strong=\"G1519\"* better|strong=\"G2909\"* but|strong=\"G1161\"* for|strong=\"G3754\"* the|strong=\"G1519\"* worse|strong=\"G2276\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* first|strong=\"G4413\"* of|strong=\"G2532\"* all|strong=\"G2532\"*, when|strong=\"G2532\"* you|strong=\"G5210\"* come|strong=\"G4905\"* together|strong=\"G4905\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, I|strong=\"G2532\"* hear that|strong=\"G2532\"* divisions|strong=\"G4978\"* exist|strong=\"G5225\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* partly|strong=\"G3313\"* believe|strong=\"G4100\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* also|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G1096\"* factions among|strong=\"G1722\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* approved|strong=\"G1384\"* may|strong=\"G2532\"* be|strong=\"G1096\"* revealed|strong=\"G5318\"* among|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"G3767\"* therefore|strong=\"G3767\"* you|strong=\"G5210\"* assemble|strong=\"G4905\"* yourselves|strong=\"G4771\"* together|strong=\"G4905\"*, it|strong=\"G1510\"* is|strong=\"G1510\"* not|strong=\"G3756\"* the|strong=\"G1909\"* Lord|strong=\"G3588\"*’s supper|strong=\"G1173\"* that|strong=\"G3588\"* you|strong=\"G5210\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* your|strong=\"G2532\"* eating|strong=\"G2068\"* each|strong=\"G1538\"* one|strong=\"G1538\"* takes|strong=\"G4301\"* his|strong=\"G1722\"* own|strong=\"G2398\"* supper|strong=\"G1173\"* first|strong=\"G3588\"*. One|strong=\"G1538\"* is|strong=\"G3588\"* hungry|strong=\"G3983\"*, and|strong=\"G2532\"* another|strong=\"G3739\"* is|strong=\"G3588\"* drunken|strong=\"G3184\"*." + }, + { + "verseNum": 22, + "text": "What|strong=\"G5101\"*, don’t|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2192\"* houses|strong=\"G3614\"* to|strong=\"G1519\"* eat|strong=\"G2068\"* and|strong=\"G2532\"* to|strong=\"G1519\"* drink|strong=\"G4095\"* in|strong=\"G1722\"*? Or|strong=\"G2228\"* do|strong=\"G5101\"* you|strong=\"G5210\"* despise|strong=\"G2706\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* put|strong=\"G2617\"* them|strong=\"G3588\"* to|strong=\"G1519\"* shame|strong=\"G2617\"* who|strong=\"G5101\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* enough? What|strong=\"G5101\"* shall|strong=\"G2532\"* I|strong=\"G2532\"* tell|strong=\"G3004\"* you|strong=\"G5210\"*? Shall|strong=\"G2532\"* I|strong=\"G2532\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*? In|strong=\"G1722\"* this|strong=\"G3778\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* praise|strong=\"G1867\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* received|strong=\"G2983\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* which|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* on|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"* in|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* betrayed|strong=\"G3860\"* took|strong=\"G2983\"* bread." + }, + { + "verseNum": 24, + "text": "When|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* given|strong=\"G2168\"* thanks|strong=\"G2168\"*, he|strong=\"G2532\"* broke|strong=\"G2806\"* it|strong=\"G2532\"* and|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Take|strong=\"G2532\"\\+w*, eat. \\+w This|strong=\"G3778\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w my|strong=\"G1699\"\\+w* \\+w body|strong=\"G4983\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w broken|strong=\"G2806\"\\+w* \\+w for|strong=\"G1519\"\\+w* \\+w you|strong=\"G5210\"\\+w*. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w in|strong=\"G1519\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G1473\"\\+w*.”*" + }, + { + "verseNum": 25, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G3778\"* way|strong=\"G1722\"* he|strong=\"G2532\"* also|strong=\"G2532\"* took|strong=\"G2532\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* after|strong=\"G3326\"* supper|strong=\"G1172\"*, saying|strong=\"G3004\"*, “\\+w This|strong=\"G3778\"\\+w* \\+w cup|strong=\"G4221\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w covenant|strong=\"G1242\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w my|strong=\"G1699\"\\+w* blood. \\+w Do|strong=\"G4160\"\\+w* \\+w this|strong=\"G3778\"\\+w*, \\+w as|strong=\"G1519\"\\+w* \\+w often|strong=\"G3740\"\\+w* \\+w as|strong=\"G1519\"\\+w* \\+w you|strong=\"G1437\"\\+w* \\+w drink|strong=\"G4095\"\\+w*, \\+w in|strong=\"G1722\"\\+w* memory \\+w of|strong=\"G2532\"\\+w* \\+w me|strong=\"G3004\"\\+w*.”*" + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* as|strong=\"G2532\"* often|strong=\"G3740\"* as|strong=\"G2532\"* you|strong=\"G3739\"* eat|strong=\"G2068\"* this|strong=\"G3778\"* bread and|strong=\"G2532\"* drink|strong=\"G4095\"* this|strong=\"G3778\"* cup|strong=\"G4221\"*, you|strong=\"G3739\"* proclaim|strong=\"G2605\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* death|strong=\"G2288\"* until|strong=\"G2532\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"G5620\"* whoever|strong=\"G3739\"* eats|strong=\"G2068\"* this|strong=\"G3588\"* bread or|strong=\"G2228\"* drinks|strong=\"G4095\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* cup|strong=\"G4221\"* in|strong=\"G2532\"* a|strong=\"G2532\"* way|strong=\"G3739\"* unworthy of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* be|strong=\"G1510\"* guilty|strong=\"G1777\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* a|strong=\"G2532\"* man examine|strong=\"G1381\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* let|strong=\"G1161\"* him|strong=\"G3588\"* eat|strong=\"G2068\"* of|strong=\"G1537\"* the|strong=\"G2532\"* bread and|strong=\"G2532\"* drink|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G2532\"* cup|strong=\"G4221\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* in|strong=\"G2532\"* an|strong=\"G2532\"* unworthy way|strong=\"G2917\"* eats|strong=\"G2068\"* and|strong=\"G2532\"* drinks|strong=\"G4095\"* judgment|strong=\"G2917\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* if|strong=\"G2532\"* he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* discern|strong=\"G1252\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"*’s body|strong=\"G4983\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* many|strong=\"G4183\"* among|strong=\"G1722\"* you|strong=\"G5210\"* are|strong=\"G3778\"* weak and|strong=\"G2532\"* sickly, and|strong=\"G2532\"* not|strong=\"G1223\"* a|strong=\"G2532\"* few|strong=\"G1722\"* sleep|strong=\"G2837\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"G1161\"* if|strong=\"G1487\"* we|strong=\"G1161\"* discerned ourselves|strong=\"G1438\"*, we|strong=\"G1161\"* wouldn’t be|strong=\"G3756\"* judged|strong=\"G2919\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* when|strong=\"G1161\"* we|strong=\"G1161\"* are|strong=\"G3588\"* judged|strong=\"G2919\"*, we|strong=\"G1161\"* are|strong=\"G3588\"* disciplined|strong=\"G3811\"* by|strong=\"G5259\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* we|strong=\"G1161\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* condemned|strong=\"G2632\"* with|strong=\"G4862\"* the|strong=\"G1161\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 33, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1473\"* brothers, when|strong=\"G4905\"* you|strong=\"G1519\"* come|strong=\"G4905\"* together|strong=\"G4905\"* to|strong=\"G1519\"* eat|strong=\"G2068\"*, wait|strong=\"G1551\"* for|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G3588\"* hungry|strong=\"G3983\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* eat|strong=\"G2068\"* at|strong=\"G1722\"* home|strong=\"G3624\"*, lest|strong=\"G3361\"* your|strong=\"G1487\"* coming|strong=\"G2064\"* together|strong=\"G4905\"* be|strong=\"G3361\"* for|strong=\"G1519\"* judgment|strong=\"G2917\"*. The|strong=\"G1722\"* rest|strong=\"G3062\"* I|strong=\"G1161\"* will|strong=\"G5100\"* set|strong=\"G2443\"* in|strong=\"G1722\"* order|strong=\"G2443\"* whenever|strong=\"G5613\"* I|strong=\"G1161\"* come|strong=\"G2064\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* spiritual|strong=\"G4152\"* things|strong=\"G3588\"*, brothers, I|strong=\"G1161\"* don’t|strong=\"G3588\"* want|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2309\"* be|strong=\"G3756\"* ignorant." + }, + { + "verseNum": 2, + "text": "You|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G3753\"* you|strong=\"G3754\"* were|strong=\"G1510\"* heathen|strong=\"G1484\"*,+ 12:2 or Gentiles* you|strong=\"G3754\"* were|strong=\"G1510\"* led away to|strong=\"G4314\"* those|strong=\"G3588\"* mute idols|strong=\"G1497\"*, however|strong=\"G5613\"* you|strong=\"G3754\"* might|strong=\"G1484\"* be|strong=\"G1510\"* led." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* that|strong=\"G3754\"* no|strong=\"G3762\"* man|strong=\"G3762\"* speaking|strong=\"G2980\"* by|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* is|strong=\"G2316\"* accursed.” No|strong=\"G3762\"* one|strong=\"G3762\"* can|strong=\"G1410\"* say|strong=\"G3004\"*, “Jesus|strong=\"G2424\"* is|strong=\"G2316\"* Lord|strong=\"G2962\"*,” but|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* there|strong=\"G1161\"* are|strong=\"G1510\"* various kinds of|strong=\"G4151\"* gifts|strong=\"G5486\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* same Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* various kinds of|strong=\"G2532\"* service|strong=\"G1248\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"* various kinds|strong=\"G3956\"* of|strong=\"G2316\"* workings, but|strong=\"G1161\"* the|strong=\"G1722\"* same|strong=\"G2532\"* God|strong=\"G2316\"* who|strong=\"G3588\"* works|strong=\"G1754\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* to|strong=\"G4314\"* each|strong=\"G1538\"* one|strong=\"G1538\"* is|strong=\"G3588\"* given|strong=\"G1325\"* the|strong=\"G1161\"* manifestation|strong=\"G5321\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* for|strong=\"G4314\"* the|strong=\"G1161\"* profit|strong=\"G4851\"* of|strong=\"G4151\"* all|strong=\"G1161\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* to|strong=\"G2596\"* one|strong=\"G3739\"* is|strong=\"G3588\"* given|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* wisdom|strong=\"G4678\"*, and|strong=\"G1161\"* to|strong=\"G2596\"* another|strong=\"G3739\"* the|strong=\"G1161\"* word|strong=\"G3056\"* of|strong=\"G3056\"* knowledge|strong=\"G1108\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* same|strong=\"G3739\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 9, + "text": "to|strong=\"G1722\"* another|strong=\"G2087\"* faith|strong=\"G4102\"* by|strong=\"G1722\"* the|strong=\"G1722\"* same Spirit|strong=\"G4151\"*, and|strong=\"G1161\"* to|strong=\"G1722\"* another|strong=\"G2087\"* gifts|strong=\"G5486\"* of|strong=\"G4151\"* healings|strong=\"G2386\"* by|strong=\"G1722\"* the|strong=\"G1722\"* same Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* workings of|strong=\"G4151\"* miracles|strong=\"G1411\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* prophecy|strong=\"G4394\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* discerning|strong=\"G1253\"* of|strong=\"G4151\"* spirits|strong=\"G4151\"*, to|strong=\"G1161\"* another|strong=\"G2087\"* different|strong=\"G2087\"* kinds|strong=\"G1085\"* of|strong=\"G4151\"* languages|strong=\"G1100\"*, and|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G2087\"* the|strong=\"G1161\"* interpretation|strong=\"G2058\"* of|strong=\"G4151\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* one|strong=\"G1520\"* and|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* Spirit|strong=\"G4151\"* produces all|strong=\"G3956\"* of|strong=\"G4151\"* these|strong=\"G3778\"*, distributing|strong=\"G1244\"* to|strong=\"G2532\"* each|strong=\"G1538\"* one|strong=\"G1520\"* separately as|strong=\"G2531\"* he|strong=\"G2532\"* desires|strong=\"G1014\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* as|strong=\"G1161\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G1510\"* one|strong=\"G1520\"* and|strong=\"G2532\"* has|strong=\"G2192\"* many|strong=\"G4183\"* members|strong=\"G3196\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, being|strong=\"G1510\"* many|strong=\"G4183\"*, are|strong=\"G1510\"* one|strong=\"G1520\"* body|strong=\"G4983\"*; so|strong=\"G3779\"* also|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"* we|strong=\"G2249\"* were|strong=\"G2532\"* all|strong=\"G3956\"* baptized into|strong=\"G1519\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, whether|strong=\"G1535\"* Jews|strong=\"G2453\"* or|strong=\"G1535\"* Greeks|strong=\"G1672\"*, whether|strong=\"G1535\"* bond|strong=\"G1401\"* or|strong=\"G1535\"* free|strong=\"G1658\"*; and|strong=\"G2532\"* were|strong=\"G2532\"* all|strong=\"G3956\"* given to|strong=\"G1519\"* drink|strong=\"G4222\"* into|strong=\"G1519\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* body|strong=\"G4983\"* is|strong=\"G1510\"* not|strong=\"G3756\"* one|strong=\"G1520\"* member|strong=\"G3196\"*, but|strong=\"G2532\"* many|strong=\"G4183\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1437\"* the|strong=\"G1537\"* foot|strong=\"G4228\"* would|strong=\"G1437\"* say|strong=\"G3004\"*, “Because|strong=\"G3754\"* I|strong=\"G1437\"*’m not|strong=\"G3756\"* the|strong=\"G1537\"* hand|strong=\"G5495\"*, I|strong=\"G1437\"*’m not|strong=\"G3756\"* part of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"*,” it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* therefore|strong=\"G3844\"* not|strong=\"G3756\"* part of|strong=\"G1537\"* the|strong=\"G1537\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1437\"* the|strong=\"G2532\"* ear|strong=\"G3775\"* would|strong=\"G2532\"* say|strong=\"G3004\"*, “Because|strong=\"G3754\"* I|strong=\"G2532\"*’m not|strong=\"G3756\"* the|strong=\"G2532\"* eye|strong=\"G3788\"*, I|strong=\"G2532\"*’m not|strong=\"G3756\"* part|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"*,” it|strong=\"G2532\"*’s not|strong=\"G3756\"* therefore|strong=\"G3844\"* not|strong=\"G3756\"* part|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* body|strong=\"G4983\"* were|strong=\"G3588\"* an|strong=\"G3788\"* eye|strong=\"G3788\"*, where|strong=\"G4226\"* would the|strong=\"G3588\"* hearing be|strong=\"G3588\"*? If|strong=\"G1487\"* the|strong=\"G3588\"* whole|strong=\"G3650\"* were|strong=\"G3588\"* hearing, where|strong=\"G4226\"* would the|strong=\"G3588\"* smelling|strong=\"G3750\"* be|strong=\"G3588\"*?" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* set|strong=\"G5087\"* the|strong=\"G1722\"* members|strong=\"G3196\"*, each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G1161\"* desired|strong=\"G2309\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1487\"* they|strong=\"G1161\"* were|strong=\"G1510\"* all|strong=\"G3956\"* one|strong=\"G1520\"* member|strong=\"G3196\"*, where|strong=\"G4226\"* would|strong=\"G1510\"* the|strong=\"G3956\"* body|strong=\"G4983\"* be|strong=\"G1510\"*?" + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G1161\"* are|strong=\"G3568\"* many|strong=\"G4183\"* members|strong=\"G3196\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G1161\"* eye|strong=\"G3788\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* tell|strong=\"G3004\"* the|strong=\"G1161\"* hand|strong=\"G5495\"*, “I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1161\"* you|strong=\"G5210\"*,” or|strong=\"G2228\"* again|strong=\"G3825\"* the|strong=\"G1161\"* head|strong=\"G2776\"* to|strong=\"G3004\"* the|strong=\"G1161\"* feet|strong=\"G4228\"*, “I|strong=\"G1161\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1161\"* you|strong=\"G5210\"*.”" + }, + { + "verseNum": 22, + "text": "No|strong=\"G3588\"*, much|strong=\"G4183\"* rather|strong=\"G3123\"*, those|strong=\"G3588\"* members|strong=\"G3196\"* of|strong=\"G4983\"* the|strong=\"G3588\"* body|strong=\"G4983\"* which|strong=\"G3588\"* seem|strong=\"G1380\"* to|strong=\"G1380\"* be|strong=\"G1510\"* weaker are|strong=\"G1510\"* necessary." + }, + { + "verseNum": 23, + "text": "Those|strong=\"G3588\"* parts of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* which|strong=\"G3739\"* we|strong=\"G2249\"* think|strong=\"G1380\"* to|strong=\"G2532\"* be|strong=\"G1510\"* less honorable|strong=\"G5092\"*, on|strong=\"G3588\"* those|strong=\"G3588\"* we|strong=\"G2249\"* bestow|strong=\"G4060\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* honor|strong=\"G5092\"*; and|strong=\"G2532\"* our|strong=\"G2532\"* unpresentable|strong=\"G2157\"* parts have|strong=\"G2192\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* modesty," + }, + { + "verseNum": 24, + "text": "while|strong=\"G1161\"* our|strong=\"G2316\"* presentable|strong=\"G2158\"* parts have|strong=\"G2192\"* no|strong=\"G3756\"* such|strong=\"G1161\"* need|strong=\"G5532\"*. But|strong=\"G1161\"* God|strong=\"G2316\"* composed|strong=\"G4786\"* the|strong=\"G1161\"* body|strong=\"G4983\"* together|strong=\"G4786\"*, giving|strong=\"G1325\"* more|strong=\"G4053\"* abundant|strong=\"G4053\"* honor|strong=\"G5092\"* to|strong=\"G1325\"* the|strong=\"G1161\"* inferior|strong=\"G5302\"* part|strong=\"G1473\"*," + }, + { + "verseNum": 25, + "text": "that|strong=\"G2443\"* there|strong=\"G1510\"* should|strong=\"G3588\"* be|strong=\"G1510\"* no|strong=\"G3361\"* division|strong=\"G4978\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, but|strong=\"G3361\"* that|strong=\"G2443\"* the|strong=\"G1722\"* members|strong=\"G3196\"* should|strong=\"G3588\"* have|strong=\"G1510\"* the|strong=\"G1722\"* same care|strong=\"G3309\"* for|strong=\"G5228\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"G2532\"* one|strong=\"G1520\"* member|strong=\"G3196\"* suffers|strong=\"G3958\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* suffer|strong=\"G3958\"* with|strong=\"G2532\"* it|strong=\"G2532\"*. When|strong=\"G2532\"* one|strong=\"G1520\"* member|strong=\"G3196\"* is|strong=\"G3588\"* honored|strong=\"G1392\"*, all|strong=\"G3956\"* the|strong=\"G2532\"* members|strong=\"G3196\"* rejoice|strong=\"G4796\"* with|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* members|strong=\"G3196\"* individually|strong=\"G3313\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"G2316\"* has|strong=\"G2316\"* set|strong=\"G5087\"* some|strong=\"G3739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*: first|strong=\"G4413\"* apostles, second|strong=\"G1208\"* prophets|strong=\"G4396\"*, third|strong=\"G5154\"* teachers|strong=\"G1320\"*, then|strong=\"G2532\"* miracle|strong=\"G1411\"* workers, then|strong=\"G2532\"* gifts|strong=\"G5486\"* of|strong=\"G2316\"* healings|strong=\"G2386\"*, helps, governments|strong=\"G2941\"*, and|strong=\"G2532\"* various kinds|strong=\"G1085\"* of|strong=\"G2316\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 29, + "text": "Are|strong=\"G3956\"* all|strong=\"G3956\"* apostles? Are|strong=\"G3956\"* all|strong=\"G3956\"* prophets|strong=\"G4396\"*? Are|strong=\"G3956\"* all|strong=\"G3956\"* teachers|strong=\"G1320\"*? Are|strong=\"G3956\"* all|strong=\"G3956\"* miracle|strong=\"G1411\"* workers?" + }, + { + "verseNum": 30, + "text": "Do|strong=\"G2192\"* all|strong=\"G3956\"* have|strong=\"G2192\"* gifts|strong=\"G5486\"* of|strong=\"G3956\"* healings|strong=\"G2386\"*? Do|strong=\"G2192\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* various languages|strong=\"G1100\"*? Do|strong=\"G2192\"* all|strong=\"G3956\"* interpret|strong=\"G1329\"*?" + }, + { + "verseNum": 31, + "text": "But|strong=\"G1161\"* earnestly|strong=\"G2206\"* desire|strong=\"G2206\"* the|strong=\"G2532\"* best gifts|strong=\"G5486\"*. Moreover|strong=\"G1161\"*, I|strong=\"G2532\"* show|strong=\"G1166\"* a|strong=\"G2532\"* most excellent|strong=\"G5236\"* way|strong=\"G3598\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1437\"* I|strong=\"G2532\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* the|strong=\"G2532\"* languages|strong=\"G1100\"* of|strong=\"G2532\"* men|strong=\"G3588\"* and|strong=\"G2532\"* of|strong=\"G2532\"* angels, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, I|strong=\"G2532\"* have|strong=\"G2192\"* become|strong=\"G1096\"* sounding|strong=\"G2278\"* brass|strong=\"G5475\"* or|strong=\"G2228\"* a|strong=\"G2192\"* clanging cymbal|strong=\"G2950\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"G1437\"* I|strong=\"G2532\"* have|strong=\"G2192\"* the|strong=\"G2532\"* gift of|strong=\"G2532\"* prophecy|strong=\"G4394\"*, and|strong=\"G2532\"* know|strong=\"G1492\"* all|strong=\"G3956\"* mysteries|strong=\"G3466\"* and|strong=\"G2532\"* all|strong=\"G3956\"* knowledge|strong=\"G1108\"*, and|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G2532\"* have|strong=\"G2192\"* all|strong=\"G3956\"* faith|strong=\"G4102\"*, so|strong=\"G2532\"* as|strong=\"G1161\"* to|strong=\"G2532\"* remove|strong=\"G3179\"* mountains|strong=\"G3735\"*, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, I|strong=\"G2532\"* am|strong=\"G1510\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"G1437\"* I|strong=\"G1473\"* give|strong=\"G1473\"* away all|strong=\"G3956\"* my|strong=\"G3956\"* goods to|strong=\"G2443\"* feed|strong=\"G5595\"* the|strong=\"G2532\"* poor, and|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G1473\"* give|strong=\"G1473\"* my|strong=\"G3956\"* body|strong=\"G4983\"* to|strong=\"G2443\"* be|strong=\"G2532\"* burned|strong=\"G2545\"*, but|strong=\"G1161\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* love, it|strong=\"G2532\"* profits|strong=\"G5623\"* me|strong=\"G1473\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 4, + "text": "Love is|strong=\"G3588\"* patient|strong=\"G3114\"* and|strong=\"G3588\"* is|strong=\"G3588\"* kind|strong=\"G5541\"*. Love doesn’t|strong=\"G3588\"* envy|strong=\"G2206\"*. Love doesn’t|strong=\"G3588\"* brag|strong=\"G4068\"*, is|strong=\"G3588\"* not|strong=\"G3756\"* proud|strong=\"G5448\"*," + }, + { + "verseNum": 5, + "text": "doesn’t|strong=\"G3588\"* behave|strong=\"G3756\"* itself|strong=\"G1438\"* inappropriately, doesn’t|strong=\"G3588\"* seek|strong=\"G2212\"* its|strong=\"G2212\"* own|strong=\"G1438\"* way, is|strong=\"G3588\"* not|strong=\"G3756\"* provoked|strong=\"G3947\"*, takes no|strong=\"G3756\"* account|strong=\"G3049\"* of|strong=\"G3588\"* evil|strong=\"G2556\"*;" + }, + { + "verseNum": 6, + "text": "doesn’t|strong=\"G3588\"* rejoice|strong=\"G5463\"* in|strong=\"G1909\"* unrighteousness, but|strong=\"G1161\"* rejoices|strong=\"G5463\"* with|strong=\"G1909\"* the|strong=\"G1161\"* truth;" + }, + { + "verseNum": 7, + "text": "bears|strong=\"G4722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, believes|strong=\"G4100\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, hopes|strong=\"G1679\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G3956\"* endures|strong=\"G5278\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "Love never|strong=\"G3763\"* fails|strong=\"G4098\"*. But|strong=\"G1161\"* where there|strong=\"G1161\"* are|strong=\"G3588\"* prophecies|strong=\"G4394\"*, they|strong=\"G1161\"* will|strong=\"G1100\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G3588\"*. Where there|strong=\"G1161\"* are|strong=\"G3588\"* various languages|strong=\"G1100\"*, they|strong=\"G1161\"* will|strong=\"G1100\"* cease|strong=\"G3973\"*. Where there|strong=\"G1161\"* is|strong=\"G3588\"* knowledge|strong=\"G1108\"*, it|strong=\"G1161\"* will|strong=\"G1100\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* know|strong=\"G1097\"* in|strong=\"G2532\"* part|strong=\"G3313\"* and|strong=\"G2532\"* we|strong=\"G1063\"* prophesy|strong=\"G4395\"* in|strong=\"G2532\"* part|strong=\"G3313\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* when|strong=\"G3752\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* complete|strong=\"G5046\"* has|strong=\"G2064\"* come|strong=\"G2064\"*, then|strong=\"G1161\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* partial|strong=\"G3313\"* will|strong=\"G2064\"* be|strong=\"G3588\"* done|strong=\"G2673\"* away|strong=\"G2673\"* with|strong=\"G1537\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"G3753\"* I|strong=\"G5613\"* was|strong=\"G1510\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* spoke|strong=\"G2980\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* felt|strong=\"G1510\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*, I|strong=\"G5613\"* thought|strong=\"G3049\"* as|strong=\"G5613\"* a|strong=\"G1096\"* child|strong=\"G3516\"*. Now|strong=\"G1096\"* that|strong=\"G3588\"* I|strong=\"G5613\"* have|strong=\"G1510\"* become|strong=\"G1096\"* a|strong=\"G1096\"* man, I|strong=\"G5613\"* have|strong=\"G1510\"* put|strong=\"G1096\"* away|strong=\"G2673\"* childish|strong=\"G3516\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* now|strong=\"G1161\"* we|strong=\"G1063\"* see|strong=\"G1097\"* in|strong=\"G1722\"* a|strong=\"G2532\"* mirror|strong=\"G2072\"*, dimly, but|strong=\"G1161\"* then|strong=\"G2532\"* face|strong=\"G4383\"* to|strong=\"G4314\"* face|strong=\"G4383\"*. Now|strong=\"G1161\"* I|strong=\"G2532\"* know|strong=\"G1097\"* in|strong=\"G1722\"* part|strong=\"G3313\"*, but|strong=\"G1161\"* then|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2532\"* know|strong=\"G1097\"* fully|strong=\"G1921\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G2532\"* was|strong=\"G2532\"* also|strong=\"G2532\"* fully|strong=\"G1921\"* known|strong=\"G1097\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* faith|strong=\"G4102\"*, hope|strong=\"G1680\"*, and|strong=\"G1161\"* love remain|strong=\"G3306\"*—these|strong=\"G3778\"* three|strong=\"G5140\"*. The|strong=\"G1161\"* greatest|strong=\"G3173\"* of|strong=\"G1680\"* these|strong=\"G3778\"* is|strong=\"G3588\"* love." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Follow|strong=\"G1377\"* after|strong=\"G1161\"* love and|strong=\"G1161\"* earnestly|strong=\"G2206\"* desire|strong=\"G2206\"* spiritual|strong=\"G4152\"* gifts, but|strong=\"G1161\"* especially|strong=\"G3123\"* that|strong=\"G2443\"* you may|strong=\"G2443\"* prophesy|strong=\"G4395\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* he|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2316\"* another|strong=\"G3588\"* language|strong=\"G1100\"* speaks|strong=\"G2980\"* not|strong=\"G3756\"* to|strong=\"G3756\"* men|strong=\"G3588\"*, but|strong=\"G1161\"* to|strong=\"G3756\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* no|strong=\"G3756\"* one|strong=\"G3762\"* understands, but|strong=\"G1161\"* in|strong=\"G2316\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* he|strong=\"G1161\"* speaks|strong=\"G2980\"* mysteries|strong=\"G3466\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* speaks|strong=\"G2980\"* to|strong=\"G2532\"* men|strong=\"G3588\"* for|strong=\"G1161\"* their|strong=\"G2532\"* edification|strong=\"G3619\"*, exhortation|strong=\"G3874\"*, and|strong=\"G2532\"* consolation|strong=\"G3874\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2980\"* another|strong=\"G1438\"* language|strong=\"G1100\"* edifies|strong=\"G3618\"* himself|strong=\"G1438\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* edifies|strong=\"G3618\"* the|strong=\"G1161\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* have|strong=\"G2309\"* you|strong=\"G5210\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, but|strong=\"G1161\"* even|strong=\"G1161\"* more|strong=\"G3123\"* that|strong=\"G2443\"* you|strong=\"G5210\"* would|strong=\"G2309\"* prophesy|strong=\"G4395\"*. For|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G3588\"* greater|strong=\"G3173\"* who|strong=\"G3588\"* prophesies|strong=\"G4395\"* than|strong=\"G2228\"* he|strong=\"G1161\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, unless|strong=\"G1487\"* he|strong=\"G1161\"* interprets|strong=\"G1329\"*, that|strong=\"G2443\"* the|strong=\"G3956\"* assembly|strong=\"G1577\"* may|strong=\"G2443\"* be|strong=\"G3361\"* built up|strong=\"G3361\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"*, brothers,+ 14:6 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * if|strong=\"G1437\"* I|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* speaking|strong=\"G2980\"* with|strong=\"G1722\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, what|strong=\"G5101\"* would|strong=\"G5101\"* I|strong=\"G1161\"* profit|strong=\"G5623\"* you|strong=\"G5210\"* unless|strong=\"G1437\"* I|strong=\"G1161\"* speak|strong=\"G2980\"* to|strong=\"G4314\"* you|strong=\"G5210\"* either|strong=\"G2228\"* by|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G1722\"* revelation, or|strong=\"G2228\"* of|strong=\"G1722\"* knowledge|strong=\"G1108\"*, or|strong=\"G2228\"* of|strong=\"G1722\"* prophesying|strong=\"G4394\"*, or|strong=\"G2228\"* of|strong=\"G1722\"* teaching|strong=\"G1322\"*?" + }, + { + "verseNum": 7, + "text": "Even|strong=\"G3676\"* lifeless things|strong=\"G3588\"* that|strong=\"G3588\"* make|strong=\"G1325\"* a|strong=\"G1437\"* sound|strong=\"G5456\"*, whether|strong=\"G1535\"* pipe or|strong=\"G2228\"* harp|strong=\"G2788\"*, if|strong=\"G1437\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* a|strong=\"G1437\"* distinction|strong=\"G1293\"* in|strong=\"G2228\"* the|strong=\"G3588\"* sounds|strong=\"G5456\"*, how|strong=\"G4459\"* would|strong=\"G1437\"* it|strong=\"G1437\"* be|strong=\"G3361\"* known|strong=\"G1097\"* what|strong=\"G3588\"* is|strong=\"G3588\"* piped or|strong=\"G2228\"* harped|strong=\"G2789\"*?" + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* the|strong=\"G2532\"* trumpet|strong=\"G4536\"* gave|strong=\"G1325\"* an|strong=\"G2532\"* uncertain sound|strong=\"G5456\"*, who|strong=\"G5101\"* would|strong=\"G2532\"* prepare|strong=\"G3903\"* himself|strong=\"G1519\"* for|strong=\"G1063\"* war|strong=\"G4171\"*?" + }, + { + "verseNum": 9, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* you|strong=\"G5210\"*, unless|strong=\"G1437\"* you|strong=\"G5210\"* uttered|strong=\"G2980\"* by|strong=\"G1223\"* the|strong=\"G2532\"* tongue|strong=\"G1100\"* words|strong=\"G3056\"* easy|strong=\"G2154\"* to|strong=\"G1519\"* understand|strong=\"G1097\"*, how|strong=\"G4459\"* would|strong=\"G2532\"* it|strong=\"G2532\"* be|strong=\"G1510\"* known|strong=\"G1097\"* what|strong=\"G3588\"* is|strong=\"G1510\"* spoken|strong=\"G2980\"*? For|strong=\"G1063\"* you|strong=\"G5210\"* would|strong=\"G2532\"* be|strong=\"G1510\"* speaking|strong=\"G2980\"* into|strong=\"G1519\"* the|strong=\"G2532\"* air." + }, + { + "verseNum": 10, + "text": "There|strong=\"G2532\"* are|strong=\"G1510\"*, it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"*, so|strong=\"G2532\"* many|strong=\"G5118\"* kinds|strong=\"G1085\"* of|strong=\"G2532\"* languages|strong=\"G5456\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* none|strong=\"G3762\"* of|strong=\"G2532\"* them|strong=\"G1722\"* is|strong=\"G1510\"* without|strong=\"G2532\"* meaning." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1437\"* then|strong=\"G3767\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G1722\"* meaning|strong=\"G1411\"* of|strong=\"G2532\"* the|strong=\"G1722\"* language|strong=\"G5456\"*, I|strong=\"G1473\"* would|strong=\"G2532\"* be|strong=\"G1510\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* a|strong=\"G2532\"* foreigner, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* would|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* foreigner to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* you|strong=\"G5210\"*, since|strong=\"G1893\"* you|strong=\"G5210\"* are|strong=\"G1510\"* zealous|strong=\"G2207\"* for|strong=\"G4314\"* spiritual|strong=\"G4151\"* gifts, seek|strong=\"G2212\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* abound|strong=\"G4052\"* to|strong=\"G4314\"* the|strong=\"G2532\"* building|strong=\"G3619\"* up|strong=\"G2532\"* of|strong=\"G4151\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* let|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"* in|strong=\"G2980\"* another|strong=\"G3588\"* language|strong=\"G1100\"* pray|strong=\"G4336\"* that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* interpret|strong=\"G1329\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* pray|strong=\"G4336\"* in|strong=\"G1161\"* another|strong=\"G3588\"* language|strong=\"G1100\"*, my|strong=\"G1473\"* spirit|strong=\"G4151\"* prays|strong=\"G4336\"*, but|strong=\"G1161\"* my|strong=\"G1473\"* understanding|strong=\"G3563\"* is|strong=\"G1510\"* unfruitful." + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* should|strong=\"G3588\"* I|strong=\"G2532\"* do|strong=\"G5101\"*? I|strong=\"G2532\"* will|strong=\"G5101\"* pray|strong=\"G4336\"* with|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G5101\"* pray|strong=\"G4336\"* with|strong=\"G2532\"* the|strong=\"G2532\"* understanding|strong=\"G3563\"* also|strong=\"G2532\"*. I|strong=\"G2532\"* will|strong=\"G5101\"* sing|strong=\"G5567\"* with|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G5101\"* sing|strong=\"G5567\"* with|strong=\"G2532\"* the|strong=\"G2532\"* understanding|strong=\"G3563\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Otherwise|strong=\"G1893\"*, if|strong=\"G1437\"* you|strong=\"G1437\"* bless|strong=\"G2127\"* with|strong=\"G1909\"* the|strong=\"G1909\"* spirit|strong=\"G4151\"*, how|strong=\"G4459\"* will|strong=\"G5101\"* he|strong=\"G3588\"* who|strong=\"G5101\"* fills the|strong=\"G1909\"* place|strong=\"G5117\"* of|strong=\"G4151\"* the|strong=\"G1909\"* unlearned|strong=\"G2399\"* say|strong=\"G3004\"* the|strong=\"G1909\"* “Amen” at|strong=\"G1909\"* your|strong=\"G4674\"* giving|strong=\"G2169\"* of|strong=\"G4151\"* thanks|strong=\"G2169\"*, seeing|strong=\"G1492\"* he|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* what|strong=\"G5101\"* you|strong=\"G1437\"* say|strong=\"G3004\"*?" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* you|strong=\"G4771\"* most certainly|strong=\"G3303\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* well|strong=\"G2573\"*, but|strong=\"G1063\"* the|strong=\"G3588\"* other|strong=\"G2087\"* person|strong=\"G2087\"* is|strong=\"G3588\"* not|strong=\"G3756\"* built|strong=\"G3618\"* up|strong=\"G3618\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"G3956\"* thank|strong=\"G2168\"* my|strong=\"G3956\"* God|strong=\"G2316\"*, I|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2980\"* other|strong=\"G3588\"* languages|strong=\"G1100\"* more|strong=\"G3123\"* than|strong=\"G3123\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "However, in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* I|strong=\"G1473\"* would|strong=\"G2309\"* rather|strong=\"G2228\"* speak|strong=\"G2980\"* five|strong=\"G4002\"* words|strong=\"G3056\"* with|strong=\"G1722\"* my|strong=\"G1722\"* understanding|strong=\"G3563\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* instruct|strong=\"G2727\"* others|strong=\"G3588\"* also|strong=\"G2532\"*, than|strong=\"G2228\"* ten|strong=\"G3463\"* thousand|strong=\"G3463\"* words|strong=\"G3056\"* in|strong=\"G1722\"* another|strong=\"G3588\"* language|strong=\"G1100\"*." + }, + { + "verseNum": 20, + "text": "Brothers, don’t|strong=\"G3588\"* be|strong=\"G1096\"* children|strong=\"G3813\"* in|strong=\"G1096\"* thoughts, yet|strong=\"G1161\"* in|strong=\"G1096\"* malice|strong=\"G2549\"* be|strong=\"G1096\"* babies, but|strong=\"G1161\"* in|strong=\"G1096\"* thoughts be|strong=\"G1096\"* mature|strong=\"G5046\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “By|strong=\"G1722\"* men|strong=\"G3778\"* of|strong=\"G2532\"* strange|strong=\"G2087\"* languages and|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* lips|strong=\"G5491\"* of|strong=\"G2532\"* strangers|strong=\"G2087\"* I|strong=\"G1473\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* this|strong=\"G3778\"* people|strong=\"G2992\"*. They|strong=\"G2532\"* won’t|strong=\"G3588\"* even|strong=\"G2532\"* listen|strong=\"G1522\"* to|strong=\"G2532\"* me|strong=\"G1473\"* that|strong=\"G3754\"* way|strong=\"G3779\"*, says|strong=\"G3004\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 14:21 Isaiah 28:11-12*" + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"G5620\"* other|strong=\"G1161\"* languages|strong=\"G1100\"* are|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G1519\"* sign|strong=\"G4592\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*, but|strong=\"G1161\"* to|strong=\"G1519\"* the|strong=\"G1519\"* unbelieving; but|strong=\"G1161\"* prophesying|strong=\"G4394\"* is|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G1519\"* sign|strong=\"G4592\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* the|strong=\"G1519\"* unbelieving, but|strong=\"G1161\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"G1437\"* therefore|strong=\"G3767\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* assembly|strong=\"G1577\"* is|strong=\"G3588\"* assembled|strong=\"G4905\"* together|strong=\"G4905\"* and|strong=\"G2532\"* all|strong=\"G3956\"* speak|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G1161\"* languages|strong=\"G1100\"*, and|strong=\"G2532\"* unlearned|strong=\"G2399\"* or|strong=\"G2228\"* unbelieving people|strong=\"G3956\"* come|strong=\"G1525\"* in|strong=\"G1909\"*, won’t|strong=\"G3588\"* they|strong=\"G2532\"* say|strong=\"G3004\"* that|strong=\"G3754\"* you|strong=\"G1437\"* are|strong=\"G3588\"* crazy?" + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* all|strong=\"G3956\"* prophesy|strong=\"G4395\"*, and|strong=\"G1161\"* someone|strong=\"G5100\"* unbelieving or|strong=\"G2228\"* unlearned|strong=\"G2399\"* comes|strong=\"G1525\"* in|strong=\"G1525\"*, he|strong=\"G1161\"* is|strong=\"G5100\"* reproved|strong=\"G1651\"* by|strong=\"G5259\"* all|strong=\"G3956\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G5100\"* judged by|strong=\"G5259\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 25, + "text": "And|strong=\"G2532\"* thus|strong=\"G3779\"* the|strong=\"G1722\"* secrets|strong=\"G2927\"* of|strong=\"G2316\"* his|strong=\"G1909\"* heart|strong=\"G2588\"* are|strong=\"G1510\"* revealed|strong=\"G5318\"*. So|strong=\"G3779\"* he|strong=\"G2532\"* will|strong=\"G2316\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* on|strong=\"G1909\"* his|strong=\"G1909\"* face|strong=\"G4383\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* God|strong=\"G2316\"*, declaring that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* among|strong=\"G1722\"* you|strong=\"G5210\"* indeed|strong=\"G2532\"*." + }, + { + "verseNum": 26, + "text": "What|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G5101\"* then|strong=\"G3767\"*, brothers? When|strong=\"G3752\"* you|strong=\"G3752\"* come|strong=\"G1096\"* together|strong=\"G4905\"*, each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G3956\"* you|strong=\"G3752\"* has|strong=\"G2192\"* a|strong=\"G2192\"* psalm|strong=\"G5568\"*, has|strong=\"G2192\"* a|strong=\"G2192\"* teaching|strong=\"G1322\"*, has|strong=\"G2192\"* a|strong=\"G2192\"* revelation, has|strong=\"G2192\"* another language|strong=\"G1100\"*, or has|strong=\"G2192\"* an|strong=\"G2192\"* interpretation|strong=\"G2058\"*. Let|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G1096\"* done|strong=\"G1096\"* to|strong=\"G4314\"* build|strong=\"G3619\"* each|strong=\"G1538\"* other up|strong=\"G3619\"*." + }, + { + "verseNum": 27, + "text": "If|strong=\"G1535\"* any|strong=\"G5100\"* man|strong=\"G5100\"* speaks|strong=\"G2980\"* in|strong=\"G2596\"* another|strong=\"G2596\"* language|strong=\"G1100\"*, let|strong=\"G2532\"* there|strong=\"G2532\"* be|strong=\"G2532\"* two|strong=\"G1417\"*, or|strong=\"G2228\"* at|strong=\"G2596\"* the|strong=\"G2532\"* most|strong=\"G4183\"* three|strong=\"G5140\"*, and|strong=\"G2532\"* in|strong=\"G2596\"* turn|strong=\"G3313\"*; and|strong=\"G2532\"* let|strong=\"G2532\"* one|strong=\"G1520\"* interpret|strong=\"G1329\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3361\"* interpreter|strong=\"G1328\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* keep|strong=\"G3361\"* silent|strong=\"G4601\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* him|strong=\"G3588\"* speak|strong=\"G2980\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* and|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 29, + "text": "Let|strong=\"G1161\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* of|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* let|strong=\"G1161\"* the|strong=\"G2532\"* others|strong=\"G3588\"* discern|strong=\"G1252\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* a|strong=\"G1437\"* revelation is|strong=\"G3588\"* made|strong=\"G1161\"* to|strong=\"G1161\"* another|strong=\"G3588\"* sitting|strong=\"G2521\"* by|strong=\"G2521\"*, let|strong=\"G1161\"* the|strong=\"G1161\"* first|strong=\"G4413\"* keep|strong=\"G4601\"* silent|strong=\"G4601\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"G1063\"* you|strong=\"G3956\"* all|strong=\"G3956\"* can|strong=\"G1410\"* prophesy|strong=\"G4395\"* one|strong=\"G1520\"* by|strong=\"G2596\"* one|strong=\"G1520\"*, that|strong=\"G2443\"* all|strong=\"G3956\"* may|strong=\"G2532\"* learn|strong=\"G3129\"* and|strong=\"G2532\"* all|strong=\"G3956\"* may|strong=\"G2532\"* be|strong=\"G2532\"* exhorted|strong=\"G3870\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"G2532\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"* are|strong=\"G2532\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*," + }, + { + "verseNum": 33, + "text": "for|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G5613\"* God|strong=\"G2316\"* of|strong=\"G2316\"* confusion but|strong=\"G1063\"* of|strong=\"G2316\"* peace|strong=\"G1515\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 34, + "text": "Let|strong=\"G2010\"* the|strong=\"G1722\"* wives|strong=\"G1135\"* be|strong=\"G2532\"* quiet|strong=\"G4601\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* has|strong=\"G2532\"* not|strong=\"G3756\"* been|strong=\"G2532\"* permitted|strong=\"G2010\"* for|strong=\"G1063\"* them|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* talking|strong=\"G2980\"* except|strong=\"G3756\"* in|strong=\"G1722\"* submission, as|strong=\"G2531\"* the|strong=\"G1722\"* law|strong=\"G3551\"* also|strong=\"G2532\"* says|strong=\"G3004\"*,+ 14:34 Deuteronomy 27:9*" + }, + { + "verseNum": 35, + "text": "if|strong=\"G1487\"* they|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* learn|strong=\"G3129\"* anything|strong=\"G5100\"*. “Let|strong=\"G1161\"* them|strong=\"G3588\"* ask|strong=\"G1905\"* their|strong=\"G1722\"* own|strong=\"G2398\"* husbands at|strong=\"G1722\"* home|strong=\"G3624\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* is|strong=\"G1510\"* shameful for|strong=\"G1063\"* a|strong=\"G1722\"* wife|strong=\"G1135\"* to|strong=\"G2309\"* be|strong=\"G1510\"* talking|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*.”" + }, + { + "verseNum": 36, + "text": "What|strong=\"G3588\"*!? Was|strong=\"G3588\"* it|strong=\"G1519\"* from|strong=\"G1831\"* you|strong=\"G5210\"* that|strong=\"G3588\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* went|strong=\"G1831\"* out|strong=\"G1831\"*? Or|strong=\"G2228\"* did|strong=\"G2316\"* it|strong=\"G1519\"* come|strong=\"G1831\"* to|strong=\"G1519\"* you|strong=\"G5210\"* alone|strong=\"G3441\"*?" + }, + { + "verseNum": 37, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* himself|strong=\"G1380\"* to|strong=\"G5100\"* be|strong=\"G1510\"* a|strong=\"G1510\"* prophet|strong=\"G4396\"* or|strong=\"G2228\"* spiritual|strong=\"G4152\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* recognize|strong=\"G1921\"* the|strong=\"G3754\"* things|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G5100\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* they|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G3754\"* commandment of|strong=\"G2962\"* the|strong=\"G3754\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G5100\"* ignorant, let|strong=\"G1161\"* him be|strong=\"G5100\"* ignorant." + }, + { + "verseNum": 39, + "text": "Therefore|strong=\"G5620\"*, brothers, desire|strong=\"G2206\"* earnestly|strong=\"G2206\"* to|strong=\"G2532\"* prophesy|strong=\"G4395\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* forbid|strong=\"G2967\"* speaking|strong=\"G2980\"* with|strong=\"G2532\"* other|strong=\"G3361\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 40, + "text": "Let|strong=\"G1096\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G1096\"* done|strong=\"G1096\"* decently|strong=\"G2156\"* and|strong=\"G2532\"* in|strong=\"G2596\"* order|strong=\"G5010\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* I|strong=\"G3739\"* declare|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, brothers, the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G3880\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* stand|strong=\"G2476\"*," + }, + { + "verseNum": 2, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G3739\"* saved|strong=\"G4982\"*, if|strong=\"G1487\"* you|strong=\"G5210\"* hold|strong=\"G2722\"* firmly|strong=\"G2722\"* the|strong=\"G2532\"* word|strong=\"G3056\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*—unless|strong=\"G1487\"* you|strong=\"G5210\"* believed|strong=\"G4100\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* delivered|strong=\"G3860\"* to|strong=\"G2532\"* you|strong=\"G5210\"* first|strong=\"G4413\"* of|strong=\"G2532\"* all|strong=\"G2532\"* that|strong=\"G3754\"* which|strong=\"G3739\"* I|strong=\"G1473\"* also|strong=\"G2532\"* received|strong=\"G3880\"*: that|strong=\"G3754\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G1063\"* our|strong=\"G2532\"* sins according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* buried|strong=\"G2290\"*, that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* raised|strong=\"G1453\"* on|strong=\"G2596\"* the|strong=\"G2532\"* third|strong=\"G5154\"* day|strong=\"G2250\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Scriptures|strong=\"G1124\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* appeared|strong=\"G3708\"* to|strong=\"G2532\"* Cephas|strong=\"G2786\"*, then|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"G1161\"* he|strong=\"G1161\"* appeared|strong=\"G3708\"* to|strong=\"G2193\"* over|strong=\"G1883\"* five|strong=\"G4001\"* hundred|strong=\"G4001\"* brothers at|strong=\"G1537\"* once|strong=\"G2178\"*, most|strong=\"G4183\"* of|strong=\"G1537\"* whom|strong=\"G3739\"* remain|strong=\"G3306\"* until|strong=\"G2193\"* now|strong=\"G1161\"*, but|strong=\"G1161\"* some|strong=\"G5100\"* have|strong=\"G5100\"* also|strong=\"G1161\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G1899\"* he|strong=\"G3588\"* appeared|strong=\"G3708\"* to|strong=\"G3956\"* James|strong=\"G2385\"*, then|strong=\"G1899\"* to|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* apostles," + }, + { + "verseNum": 8, + "text": "and|strong=\"G1161\"* last|strong=\"G2078\"* of|strong=\"G3956\"* all|strong=\"G3956\"*, as|strong=\"G1161\"* to|strong=\"G1161\"* the|strong=\"G3956\"* child born|strong=\"G1626\"* at|strong=\"G1161\"* the|strong=\"G3956\"* wrong time|strong=\"G1626\"*, he|strong=\"G1161\"* appeared|strong=\"G3708\"* to|strong=\"G1161\"* me|strong=\"G2504\"* also|strong=\"G2504\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* the|strong=\"G3588\"* least|strong=\"G1646\"* of|strong=\"G2316\"* the|strong=\"G3588\"* apostles, who|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* worthy|strong=\"G2425\"* to|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G2564\"* an|strong=\"G1510\"* apostle, because|strong=\"G1063\"* I|strong=\"G1473\"* persecuted|strong=\"G1377\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* by|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* I|strong=\"G1473\"* am|strong=\"G1510\"* what|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"*. His|strong=\"G3956\"* grace|strong=\"G5485\"* which|strong=\"G3739\"* was|strong=\"G1510\"* given to|strong=\"G1519\"* me|strong=\"G1473\"* was|strong=\"G1510\"* not|strong=\"G3756\"* futile|strong=\"G2756\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* worked|strong=\"G2872\"* more|strong=\"G2532\"* than|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2316\"* them|strong=\"G3588\"*; yet|strong=\"G2532\"* not|strong=\"G3756\"* I|strong=\"G1473\"*, but|strong=\"G1161\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 11, + "text": "Whether|strong=\"G1535\"* then|strong=\"G3767\"* it|strong=\"G2532\"* is|strong=\"G2532\"* I|strong=\"G1473\"* or|strong=\"G1535\"* they|strong=\"G2532\"*, so|strong=\"G3779\"* we|strong=\"G2532\"* preach|strong=\"G2784\"*, and|strong=\"G2532\"* so|strong=\"G3779\"* you|strong=\"G3779\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* if|strong=\"G1487\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* preached|strong=\"G2784\"*, that|strong=\"G3754\"* he|strong=\"G1161\"* has|strong=\"G5547\"* been|strong=\"G1510\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, how|strong=\"G4459\"* do|strong=\"G3004\"* some|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* say|strong=\"G3004\"* that|strong=\"G3754\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* resurrection of|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* there|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* resurrection of|strong=\"G1510\"* the|strong=\"G1161\"* dead|strong=\"G3498\"*, neither|strong=\"G3761\"* has|strong=\"G5547\"* Christ|strong=\"G5547\"* been|strong=\"G1510\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* has|strong=\"G4102\"* not|strong=\"G3756\"* been|strong=\"G2532\"* raised|strong=\"G1453\"*, then|strong=\"G2532\"* our|strong=\"G2532\"* preaching|strong=\"G2782\"* is|strong=\"G3588\"* in|strong=\"G2532\"* vain|strong=\"G2756\"* and|strong=\"G2532\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* also|strong=\"G2532\"* is|strong=\"G3588\"* in|strong=\"G2532\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"G1161\"*, we|strong=\"G3739\"* are|strong=\"G3588\"* also|strong=\"G2532\"* found|strong=\"G2147\"* false|strong=\"G2147\"* witnesses|strong=\"G5575\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* testified|strong=\"G3140\"* about|strong=\"G2596\"* God|strong=\"G2316\"* that|strong=\"G3754\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* up|strong=\"G1453\"* Christ|strong=\"G5547\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* didn’t|strong=\"G3588\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* if|strong=\"G1512\"* it|strong=\"G2532\"* is|strong=\"G3588\"* true|strong=\"G3588\"* that|strong=\"G3754\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* are|strong=\"G3588\"* not|strong=\"G3756\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1063\"* dead|strong=\"G3498\"* aren’t raised|strong=\"G1453\"*, neither|strong=\"G3761\"* has|strong=\"G5547\"* Christ|strong=\"G5547\"* been|strong=\"G3756\"* raised|strong=\"G1453\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* Christ|strong=\"G5547\"* has|strong=\"G4102\"* not|strong=\"G3756\"* been|strong=\"G1510\"* raised|strong=\"G1453\"*, your|strong=\"G1487\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* vain|strong=\"G3152\"*; you|strong=\"G5210\"* are|strong=\"G1510\"* still|strong=\"G2089\"* in|strong=\"G1722\"* your|strong=\"G1487\"* sins." + }, + { + "verseNum": 18, + "text": "Then|strong=\"G2532\"* they|strong=\"G2532\"* also|strong=\"G2532\"* who|strong=\"G3588\"* are|strong=\"G3588\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* have|strong=\"G2532\"* perished." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1487\"* we|strong=\"G1487\"* have|strong=\"G1510\"* only|strong=\"G3440\"* hoped|strong=\"G1679\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* this|strong=\"G3778\"* life|strong=\"G2222\"*, we|strong=\"G1487\"* are|strong=\"G1510\"* of|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"* most|strong=\"G1652\"* pitiable." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* Christ|strong=\"G5547\"* has|strong=\"G5547\"* been|strong=\"G5547\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*. He|strong=\"G1161\"* became|strong=\"G3588\"* the|strong=\"G1537\"* first|strong=\"G3588\"* fruit of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* since|strong=\"G1894\"* death|strong=\"G2288\"* came|strong=\"G2532\"* by|strong=\"G1223\"* man|strong=\"G3498\"*, the|strong=\"G2532\"* resurrection of|strong=\"G1223\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* also|strong=\"G2532\"* came|strong=\"G2532\"* by|strong=\"G1223\"* man|strong=\"G3498\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* in|strong=\"G1722\"* Adam all|strong=\"G3956\"* die, so|strong=\"G3779\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* all|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G2227\"* alive|strong=\"G2227\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* each|strong=\"G1538\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* order|strong=\"G5001\"*: Christ|strong=\"G5547\"* the|strong=\"G1722\"* first|strong=\"G3588\"* fruits, then|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* Christ|strong=\"G5547\"*’s at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"* comes|strong=\"G2532\"*, when|strong=\"G3752\"* he|strong=\"G2532\"* will|strong=\"G2316\"* deliver|strong=\"G3860\"* up|strong=\"G3860\"* the|strong=\"G2532\"* Kingdom to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, when|strong=\"G3752\"* he|strong=\"G2532\"* will|strong=\"G2316\"* have|strong=\"G2532\"* abolished|strong=\"G2673\"* all|strong=\"G3956\"* rule and|strong=\"G2532\"* all|strong=\"G3956\"* authority|strong=\"G1849\"* and|strong=\"G2532\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* must|strong=\"G1163\"* reign until he|strong=\"G3739\"* has|strong=\"G3739\"* put|strong=\"G5087\"* all|strong=\"G3956\"* his|strong=\"G3956\"* enemies|strong=\"G2190\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"G3588\"* last|strong=\"G2078\"* enemy|strong=\"G2190\"* that|strong=\"G3588\"* will|strong=\"G2190\"* be|strong=\"G3588\"* abolished|strong=\"G2673\"* is|strong=\"G3588\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"*, “He|strong=\"G1161\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*.”+ 15:27 Psalms 8:6* But|strong=\"G1161\"* when|strong=\"G3752\"* he|strong=\"G1161\"* says|strong=\"G3004\"*, “All|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* put|strong=\"G5293\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"*”, it|strong=\"G3754\"* is|strong=\"G3588\"* evident|strong=\"G1212\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G3588\"* excepted|strong=\"G1622\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G3004\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"G3752\"* all|strong=\"G3956\"* things|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G1510\"* subjected|strong=\"G5293\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, then|strong=\"G2532\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* will|strong=\"G2316\"* also|strong=\"G2532\"* himself be|strong=\"G1510\"* subjected|strong=\"G5293\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* subjected|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* all|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 29, + "text": "Or|strong=\"G2532\"* else|strong=\"G1893\"* what|strong=\"G5101\"* will|strong=\"G5101\"* they|strong=\"G2532\"* do|strong=\"G4160\"* who|strong=\"G5101\"* are|strong=\"G3588\"* baptized for|strong=\"G5228\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*? If|strong=\"G1487\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* aren’t|strong=\"G3588\"* raised|strong=\"G1453\"* at|strong=\"G3756\"* all|strong=\"G2532\"*, why|strong=\"G5101\"* then|strong=\"G2532\"* are|strong=\"G3588\"* they|strong=\"G2532\"* baptized for|strong=\"G5228\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*?" + }, + { + "verseNum": 30, + "text": "Why|strong=\"G5101\"* do|strong=\"G5101\"* we|strong=\"G2249\"* also|strong=\"G2532\"* stand|strong=\"G2793\"* in|strong=\"G2532\"* jeopardy|strong=\"G2793\"* every|strong=\"G3956\"* hour|strong=\"G5610\"*?" + }, + { + "verseNum": 31, + "text": "I|strong=\"G1473\"* affirm|strong=\"G3513\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* you|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G2192\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, I|strong=\"G1473\"* die daily|strong=\"G2250\"*." + }, + { + "verseNum": 32, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* fought|strong=\"G2341\"* with|strong=\"G1722\"* animals at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* for|strong=\"G1063\"* human purposes, what|strong=\"G5101\"* does|strong=\"G2068\"* it|strong=\"G2532\"* profit|strong=\"G3786\"* me|strong=\"G1473\"*? If|strong=\"G1487\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* are|strong=\"G3588\"* not|strong=\"G3756\"* raised|strong=\"G1453\"*, then|strong=\"G2532\"* “let|strong=\"G1063\"*’s eat|strong=\"G2068\"* and|strong=\"G2532\"* drink|strong=\"G4095\"*, for|strong=\"G1063\"* tomorrow we|strong=\"G1063\"* die.”+ 15:32 Isaiah 22:13*" + }, + { + "verseNum": 33, + "text": "Don’t be|strong=\"G3361\"* deceived|strong=\"G4105\"*! “Evil|strong=\"G2556\"* companionships corrupt|strong=\"G5351\"* good|strong=\"G5543\"* morals|strong=\"G2239\"*.”" + }, + { + "verseNum": 34, + "text": "Wake up|strong=\"G3361\"* righteously|strong=\"G1346\"* and|strong=\"G2532\"* don’t sin, for|strong=\"G1063\"* some|strong=\"G5100\"* have|strong=\"G2192\"* no|strong=\"G3361\"* knowledge of|strong=\"G2316\"* God|strong=\"G2316\"*. I|strong=\"G2532\"* say|strong=\"G2980\"* this|strong=\"G2532\"* to|strong=\"G4314\"* your|strong=\"G2192\"* shame|strong=\"G1791\"*." + }, + { + "verseNum": 35, + "text": "But|strong=\"G1161\"* someone|strong=\"G5100\"* will|strong=\"G5100\"* say|strong=\"G3004\"*, “How|strong=\"G4459\"* are|strong=\"G3588\"* the|strong=\"G1161\"* dead|strong=\"G3498\"* raised|strong=\"G1453\"*?” and|strong=\"G1161\"*, “With|strong=\"G2064\"* what|strong=\"G4169\"* kind|strong=\"G4169\"* of|strong=\"G5100\"* body|strong=\"G4983\"* do|strong=\"G3004\"* they|strong=\"G1161\"* come|strong=\"G2064\"*?”" + }, + { + "verseNum": 36, + "text": "You|strong=\"G4771\"* foolish one|strong=\"G3739\"*, that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G4771\"* yourself|strong=\"G4771\"* sow|strong=\"G4687\"* is|strong=\"G3739\"* not|strong=\"G3756\"* made|strong=\"G3756\"* alive|strong=\"G2227\"* unless|strong=\"G1437\"* it|strong=\"G1437\"* dies." + }, + { + "verseNum": 37, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G3739\"* sow|strong=\"G4687\"*, you|strong=\"G3739\"* don’t|strong=\"G3588\"* sow|strong=\"G4687\"* the|strong=\"G2532\"* body|strong=\"G4983\"* that|strong=\"G3739\"* will|strong=\"G2532\"* be|strong=\"G1096\"*, but|strong=\"G2532\"* a|strong=\"G1096\"* bare|strong=\"G1131\"* grain|strong=\"G4621\"*, maybe of|strong=\"G2532\"* wheat|strong=\"G4621\"*, or|strong=\"G2228\"* of|strong=\"G2532\"* some|strong=\"G5100\"* other|strong=\"G3062\"* kind|strong=\"G5100\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"* gives|strong=\"G1325\"* it|strong=\"G2532\"* a|strong=\"G2532\"* body|strong=\"G4983\"* even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* pleased him|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* each|strong=\"G1538\"* seed|strong=\"G4690\"* a|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2316\"* its|strong=\"G1325\"* own|strong=\"G2398\"*." + }, + { + "verseNum": 39, + "text": "All|strong=\"G3956\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* not|strong=\"G3756\"* the|strong=\"G3956\"* same flesh|strong=\"G4561\"*, but|strong=\"G1161\"* there|strong=\"G1161\"* is|strong=\"G3588\"* one|strong=\"G3956\"* flesh|strong=\"G4561\"* of|strong=\"G3956\"* men|strong=\"G3956\"*, another|strong=\"G3588\"* flesh|strong=\"G4561\"* of|strong=\"G3956\"* animals, another|strong=\"G3588\"* of|strong=\"G3956\"* fish|strong=\"G2486\"*, and|strong=\"G1161\"* another|strong=\"G3588\"* of|strong=\"G3956\"* birds|strong=\"G4421\"*." + }, + { + "verseNum": 40, + "text": "There|strong=\"G2532\"* are|strong=\"G3588\"* also|strong=\"G2532\"* celestial|strong=\"G2032\"* bodies|strong=\"G4983\"* and|strong=\"G2532\"* terrestrial|strong=\"G1919\"* bodies|strong=\"G4983\"*; but|strong=\"G1161\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G2532\"* celestial|strong=\"G2032\"* differs from|strong=\"G2532\"* that|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* terrestrial|strong=\"G1919\"*." + }, + { + "verseNum": 41, + "text": "There|strong=\"G2532\"* is|strong=\"G2532\"* one|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, another|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* moon|strong=\"G4582\"*, and|strong=\"G2532\"* another|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* the|strong=\"G1722\"* stars; for|strong=\"G1063\"* one|strong=\"G1722\"* star differs|strong=\"G1308\"* from|strong=\"G2532\"* another|strong=\"G1722\"* star in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 42, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G1722\"* resurrection of|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. The|strong=\"G1722\"* body is|strong=\"G3588\"* sown|strong=\"G4687\"* perishable|strong=\"G5356\"*; it|strong=\"G2532\"* is|strong=\"G3588\"* raised|strong=\"G1453\"* imperishable." + }, + { + "verseNum": 43, + "text": "It|strong=\"G1453\"* is|strong=\"G1453\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* dishonor; it|strong=\"G1453\"* is|strong=\"G1453\"* raised|strong=\"G1453\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*. It|strong=\"G1453\"* is|strong=\"G1453\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* weakness; it|strong=\"G1453\"* is|strong=\"G1453\"* raised|strong=\"G1453\"* in|strong=\"G1722\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 44, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* sown|strong=\"G4687\"* a|strong=\"G2532\"* natural|strong=\"G5591\"* body|strong=\"G4983\"*; it|strong=\"G2532\"* is|strong=\"G1510\"* raised|strong=\"G1453\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* body|strong=\"G4983\"*. There|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* natural|strong=\"G5591\"* body|strong=\"G4983\"* and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* spiritual|strong=\"G4152\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “The|strong=\"G2532\"* first|strong=\"G4413\"* man|strong=\"G4413\"* Adam became|strong=\"G1096\"* a|strong=\"G1096\"* living|strong=\"G2198\"* soul|strong=\"G5590\"*.”+ 15:45 Genesis 2:7* The|strong=\"G2532\"* last|strong=\"G2078\"* Adam became|strong=\"G1096\"* a|strong=\"G1096\"* life-giving|strong=\"G2227\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 46, + "text": "However, that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"* isn’t|strong=\"G3588\"* first|strong=\"G4413\"*, but|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* natural|strong=\"G5591\"*, then|strong=\"G1899\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* spiritual|strong=\"G4152\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"G1537\"* first|strong=\"G4413\"* man|strong=\"G4413\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* earth|strong=\"G1093\"*, made|strong=\"G4413\"* of|strong=\"G1537\"* dust. The|strong=\"G1537\"* second|strong=\"G1208\"* man|strong=\"G4413\"* is|strong=\"G3588\"* the|strong=\"G1537\"* Lord|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 48, + "text": "As|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* one|strong=\"G5108\"* made of|strong=\"G2532\"* dust, such|strong=\"G5108\"* are|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* also|strong=\"G2532\"* made of|strong=\"G2532\"* dust; and|strong=\"G2532\"* as|strong=\"G2532\"* is|strong=\"G3588\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"*, such|strong=\"G5108\"* are|strong=\"G3588\"* they|strong=\"G2532\"* also|strong=\"G2532\"* that|strong=\"G3588\"* are|strong=\"G3588\"* heavenly|strong=\"G2032\"*." + }, + { + "verseNum": 49, + "text": "As|strong=\"G2531\"* we|strong=\"G2532\"* have|strong=\"G2532\"* borne|strong=\"G5409\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* those|strong=\"G3588\"* made of|strong=\"G2532\"* dust, let|strong=\"G2532\"*’s+ 15:49 NU, TR read “we will” instead of “let’s”* also|strong=\"G2532\"* bear|strong=\"G5409\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"*." + }, + { + "verseNum": 50, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G5346\"* this|strong=\"G3778\"*, brothers,+ 15:50 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood can|strong=\"G1410\"*’t|strong=\"G3588\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom; neither|strong=\"G3761\"* does|strong=\"G3761\"* the|strong=\"G2532\"* perishable|strong=\"G5356\"* inherit|strong=\"G2816\"* imperishable." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"G2400\"*,+ 15:51 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"G1161\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* a|strong=\"G3708\"* mystery|strong=\"G3466\"*. We|strong=\"G1161\"* will|strong=\"G3956\"* not|strong=\"G3756\"* all|strong=\"G3956\"* sleep|strong=\"G2837\"*, but|strong=\"G1161\"* we|strong=\"G1161\"* will|strong=\"G3956\"* all|strong=\"G3956\"* be|strong=\"G3756\"* changed," + }, + { + "verseNum": 52, + "text": "in|strong=\"G1722\"* a|strong=\"G2532\"* moment, in|strong=\"G1722\"* the|strong=\"G1722\"* twinkling|strong=\"G4493\"* of|strong=\"G2532\"* an|strong=\"G2532\"* eye|strong=\"G3788\"*, at|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* trumpet|strong=\"G4536\"*. For|strong=\"G1063\"* the|strong=\"G1722\"* trumpet|strong=\"G4536\"* will|strong=\"G2532\"* sound|strong=\"G4537\"* and|strong=\"G2532\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* will|strong=\"G2532\"* be|strong=\"G2532\"* raised|strong=\"G1453\"* incorruptible, and|strong=\"G2532\"* we|strong=\"G2249\"* will|strong=\"G2532\"* be|strong=\"G2532\"* changed." + }, + { + "verseNum": 53, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* perishable|strong=\"G5349\"* body must|strong=\"G1163\"* become imperishable, and|strong=\"G2532\"* this|strong=\"G3778\"* mortal|strong=\"G2349\"* must|strong=\"G1163\"* put|strong=\"G1746\"* on|strong=\"G1746\"* immortality." + }, + { + "verseNum": 54, + "text": "But|strong=\"G1161\"* when|strong=\"G3752\"* this|strong=\"G3778\"* perishable|strong=\"G5349\"* body|strong=\"G1519\"* will|strong=\"G2532\"* have|strong=\"G2532\"* become|strong=\"G1096\"* imperishable, and|strong=\"G2532\"* this|strong=\"G3778\"* mortal|strong=\"G2349\"* will|strong=\"G2532\"* have|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* immortality, then|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"* will|strong=\"G2532\"* happen|strong=\"G1096\"*: “Death|strong=\"G2288\"* is|strong=\"G3588\"* swallowed|strong=\"G2666\"* up|strong=\"G1519\"* in|strong=\"G1519\"* victory|strong=\"G3534\"*.”+ 15:54 Isaiah 25:8*" + }, + { + "verseNum": 55, + "text": "“Death|strong=\"G2288\"*, where|strong=\"G4226\"* is|strong=\"G3588\"* your|strong=\"G3588\"* sting|strong=\"G2759\"*?" + }, + { + "verseNum": 56, + "text": "The|strong=\"G1161\"* sting|strong=\"G2759\"* of|strong=\"G3551\"* death|strong=\"G2288\"* is|strong=\"G3588\"* sin, and|strong=\"G1161\"* the|strong=\"G1161\"* power|strong=\"G1411\"* of|strong=\"G3551\"* sin is|strong=\"G3588\"* the|strong=\"G1161\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 57, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1325\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* gives|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G1161\"* victory|strong=\"G3534\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 58, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1722\"* beloved brothers, be|strong=\"G1096\"* steadfast|strong=\"G1476\"*, immovable, always|strong=\"G3842\"* abounding|strong=\"G4052\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* work|strong=\"G2041\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* your|strong=\"G2962\"* labor|strong=\"G2873\"* is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* vain|strong=\"G2756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* collection|strong=\"G3048\"* for|strong=\"G1519\"* the|strong=\"G2532\"* saints: as|strong=\"G5618\"* I|strong=\"G2532\"* commanded|strong=\"G1299\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G4012\"* Galatia|strong=\"G1053\"*, you|strong=\"G5210\"* do|strong=\"G4160\"* likewise|strong=\"G2532\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"G2596\"* the|strong=\"G2596\"* first|strong=\"G1520\"* day|strong=\"G4521\"* of|strong=\"G3844\"* every|strong=\"G2596\"* week|strong=\"G4521\"*, let|strong=\"G1096\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G3844\"* you|strong=\"G5210\"* save|strong=\"G3361\"* as|strong=\"G2596\"* he|strong=\"G3739\"* may|strong=\"G2443\"* prosper|strong=\"G2137\"*, that|strong=\"G2443\"* no|strong=\"G3361\"* collections|strong=\"G3048\"* are|strong=\"G3739\"* made|strong=\"G1096\"* when|strong=\"G3752\"* I|strong=\"G3739\"* come|strong=\"G2064\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G3752\"* I|strong=\"G3739\"* arrive|strong=\"G3854\"*, I|strong=\"G3739\"* will|strong=\"G3739\"* send|strong=\"G3992\"* whoever|strong=\"G3739\"* you|strong=\"G5210\"* approve|strong=\"G1381\"* with|strong=\"G1223\"* letters|strong=\"G1992\"* to|strong=\"G1519\"* carry your|strong=\"G1223\"* gracious|strong=\"G5485\"* gift|strong=\"G5485\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2419\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"G1437\"* it|strong=\"G1161\"* is|strong=\"G1510\"* appropriate for|strong=\"G1161\"* me|strong=\"G1473\"* to|strong=\"G4198\"* go|strong=\"G4198\"* also|strong=\"G2504\"*, they|strong=\"G1161\"* will|strong=\"G1510\"* go|strong=\"G4198\"* with|strong=\"G4862\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G1161\"* will|strong=\"G2064\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* when|strong=\"G3752\"* I|strong=\"G1161\"* have|strong=\"G5210\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* Macedonia|strong=\"G3109\"*, for|strong=\"G1063\"* I|strong=\"G1161\"* am|strong=\"G2064\"* passing|strong=\"G1330\"* through|strong=\"G1330\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* with|strong=\"G4314\"* you|strong=\"G5210\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* that|strong=\"G2443\"* I|strong=\"G1473\"* will|strong=\"G2532\"* stay with|strong=\"G4314\"* you|strong=\"G5210\"*, or|strong=\"G2228\"* even|strong=\"G2532\"* winter|strong=\"G3914\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* send|strong=\"G4311\"* me|strong=\"G1473\"* on|strong=\"G4198\"* my|strong=\"G1473\"* journey|strong=\"G4311\"* wherever|strong=\"G3757\"* I|strong=\"G1473\"* go|strong=\"G4198\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* do|strong=\"G3708\"* not|strong=\"G3756\"* wish|strong=\"G2309\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G5210\"* now|strong=\"G3756\"* in|strong=\"G1722\"* passing|strong=\"G3938\"*, but|strong=\"G1063\"* I|strong=\"G1063\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* stay|strong=\"G1961\"* a|strong=\"G1722\"* while|strong=\"G1722\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, if|strong=\"G1437\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* permits|strong=\"G2010\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* will|strong=\"G1722\"* stay|strong=\"G1961\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* until|strong=\"G2193\"* Pentecost|strong=\"G4005\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* a|strong=\"G2532\"* great|strong=\"G3173\"* and|strong=\"G2532\"* effective|strong=\"G1756\"* door|strong=\"G2374\"* has|strong=\"G2532\"* opened to|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G2532\"* many|strong=\"G4183\"* adversaries." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* if|strong=\"G1437\"* Timothy|strong=\"G5095\"* comes|strong=\"G2064\"*, see that|strong=\"G2443\"* he|strong=\"G1161\"* is|strong=\"G3588\"* with|strong=\"G4314\"* you|strong=\"G5210\"* without|strong=\"G5613\"* fear|strong=\"G2443\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* does|strong=\"G2038\"* the|strong=\"G1161\"* work|strong=\"G2041\"* of|strong=\"G2962\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, as|strong=\"G5613\"* I|strong=\"G2504\"* also|strong=\"G2504\"* do|strong=\"G1096\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G3767\"* let|strong=\"G1161\"* no|strong=\"G3361\"* one|strong=\"G5100\"* despise|strong=\"G1848\"* him|strong=\"G3588\"*. But|strong=\"G1161\"* set|strong=\"G2443\"* him|strong=\"G3588\"* forward on|strong=\"G1722\"* his|strong=\"G1722\"* journey|strong=\"G4311\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"*; for|strong=\"G1063\"* I|strong=\"G1473\"* expect|strong=\"G1551\"* him|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G1722\"* brothers." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* concerning|strong=\"G4012\"* Apollos the|strong=\"G2532\"* brother, I|strong=\"G2532\"* strongly|strong=\"G4183\"* urged|strong=\"G3870\"* him|strong=\"G3588\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* with|strong=\"G3326\"* the|strong=\"G2532\"* brothers, but|strong=\"G1161\"* it|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* at|strong=\"G4314\"* all|strong=\"G2532\"* his|strong=\"G4012\"* desire|strong=\"G2307\"* to|strong=\"G4314\"* come|strong=\"G2064\"* now|strong=\"G1161\"*; but|strong=\"G1161\"* he|strong=\"G2532\"* will|strong=\"G2307\"* come|strong=\"G2064\"* when|strong=\"G3752\"* he|strong=\"G2532\"* has|strong=\"G1510\"* an|strong=\"G2532\"* opportunity|strong=\"G2119\"*." + }, + { + "verseNum": 13, + "text": "Watch|strong=\"G1127\"*! Stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*! Be|strong=\"G3588\"* courageous! Be|strong=\"G3588\"* strong|strong=\"G2901\"*!" + }, + { + "verseNum": 14, + "text": "Let|strong=\"G1096\"* all|strong=\"G3956\"* that|strong=\"G3956\"* you|strong=\"G5210\"* do|strong=\"G1096\"* be|strong=\"G1096\"* done|strong=\"G1096\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 15, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* beg|strong=\"G3870\"* you|strong=\"G5210\"*, brothers—you|strong=\"G5210\"* know|strong=\"G1492\"* the|strong=\"G2532\"* house|strong=\"G3614\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*, that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* first|strong=\"G3588\"* fruits of|strong=\"G2532\"* Achaia, and|strong=\"G2532\"* that|strong=\"G3754\"* they|strong=\"G2532\"* have|strong=\"G2532\"* set|strong=\"G5021\"* themselves|strong=\"G1438\"* to|strong=\"G1519\"* serve|strong=\"G1248\"* the|strong=\"G2532\"* saints—" + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* such|strong=\"G5108\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* helps|strong=\"G4903\"* in|strong=\"G2532\"* the|strong=\"G2532\"* work|strong=\"G2872\"* and|strong=\"G2532\"* labors|strong=\"G2872\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G2532\"* rejoice|strong=\"G5463\"* at|strong=\"G1909\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* Stephanas|strong=\"G4734\"*, Fortunatus|strong=\"G5415\"*, and|strong=\"G2532\"* Achaicus; for|strong=\"G3754\"* that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G3588\"* lacking|strong=\"G5303\"* on|strong=\"G1909\"* your|strong=\"G5212\"* part|strong=\"G1161\"*, they|strong=\"G2532\"* supplied." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* refreshed my|strong=\"G1699\"* spirit|strong=\"G4151\"* and|strong=\"G2532\"* yours|strong=\"G4771\"*. Therefore|strong=\"G3767\"* acknowledge|strong=\"G1921\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* like|strong=\"G5108\"* that|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* Asia|strong=\"G3588\"* greet you|strong=\"G5210\"*. Aquila and|strong=\"G2532\"* Priscilla|strong=\"G4251\"* greet you|strong=\"G5210\"* warmly|strong=\"G4183\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, together|strong=\"G2596\"* with|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"G3956\"* the|strong=\"G1722\"* brothers greet you|strong=\"G5210\"*. Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"G3588\"* greeting is|strong=\"G3588\"* by|strong=\"G3588\"* me|strong=\"G1699\"*, Paul|strong=\"G3972\"*, with|strong=\"G5495\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t|strong=\"G3588\"* love|strong=\"G5368\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G1510\"* Christ|strong=\"G2962\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* be|strong=\"G1510\"* cursed.+ 16:22 Greek: anathema.* Come|strong=\"G1510\"*, Lord|strong=\"G2962\"*!+ 16:22 Aramaic: Maranatha!*" + }, + { + "verseNum": 23, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "My|strong=\"G1722\"* love to|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*. Amen." + } + ] + } + ] + }, + { + "name": "2 Corinthians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2316\"* brother, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G1223\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G1510\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, with|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* of|strong=\"G1223\"* Achaia:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* mercies|strong=\"G3628\"* and|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* all|strong=\"G3956\"* comfort|strong=\"G3874\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* comforts|strong=\"G3870\"* us|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* our|strong=\"G2316\"* affliction|strong=\"G2347\"*, that|strong=\"G3739\"* we|strong=\"G2249\"* may|strong=\"G1410\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1519\"* comfort|strong=\"G3874\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* any|strong=\"G3956\"* affliction|strong=\"G2347\"*, through|strong=\"G1223\"* the|strong=\"G1722\"* comfort|strong=\"G3874\"* with|strong=\"G1722\"* which|strong=\"G3739\"* we|strong=\"G2249\"* ourselves|strong=\"G2249\"* are|strong=\"G3588\"* comforted|strong=\"G3870\"* by|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G3754\"* as|strong=\"G2531\"* the|strong=\"G2532\"* sufferings|strong=\"G3804\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* us|strong=\"G1519\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* our|strong=\"G2532\"* comfort|strong=\"G3874\"* also|strong=\"G2532\"* abounds through|strong=\"G1223\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* if|strong=\"G1535\"* we|strong=\"G2249\"* are|strong=\"G3588\"* afflicted|strong=\"G2346\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* for|strong=\"G5228\"* your|strong=\"G2532\"* comfort|strong=\"G3874\"* and|strong=\"G2532\"* salvation|strong=\"G4991\"*. If|strong=\"G1535\"* we|strong=\"G2249\"* are|strong=\"G3588\"* comforted|strong=\"G3870\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* for|strong=\"G5228\"* your|strong=\"G2532\"* comfort|strong=\"G3874\"*, which|strong=\"G3739\"* produces in|strong=\"G1722\"* you|strong=\"G5210\"* the|strong=\"G1722\"* patient|strong=\"G5281\"* enduring|strong=\"G5281\"* of|strong=\"G2532\"* the|strong=\"G1722\"* same|strong=\"G3739\"* sufferings|strong=\"G3804\"* which|strong=\"G3739\"* we|strong=\"G2249\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"*." + }, + { + "verseNum": 7, + "text": "Our|strong=\"G2532\"* hope|strong=\"G1680\"* for|strong=\"G3754\"* you|strong=\"G4771\"* is|strong=\"G1510\"* steadfast, knowing|strong=\"G1492\"* that|strong=\"G3754\"*, since|strong=\"G3754\"* you|strong=\"G4771\"* are|strong=\"G1510\"* partakers|strong=\"G2844\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sufferings|strong=\"G3804\"*, so|strong=\"G3779\"* you|strong=\"G4771\"* are|strong=\"G1510\"* also|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* comfort|strong=\"G3874\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2309\"* you|strong=\"G5210\"* uninformed, brothers,+ 1:8 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* concerning|strong=\"G2596\"* our|strong=\"G2532\"* affliction|strong=\"G2347\"* which|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* us|strong=\"G2249\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*: that|strong=\"G3754\"* we|strong=\"G2249\"* were|strong=\"G3588\"* weighed down|strong=\"G2596\"* exceedingly, beyond|strong=\"G5228\"* our|strong=\"G2532\"* power|strong=\"G1411\"*, so|strong=\"G2532\"* much that|strong=\"G3754\"* we|strong=\"G2249\"* despaired|strong=\"G1820\"* even|strong=\"G2532\"* of|strong=\"G2532\"* life|strong=\"G2198\"*." + }, + { + "verseNum": 9, + "text": "Yes, we|strong=\"G2192\"* ourselves|strong=\"G1438\"* have|strong=\"G2192\"* had|strong=\"G2192\"* the|strong=\"G1722\"* sentence of|strong=\"G2316\"* death|strong=\"G2288\"* within|strong=\"G1722\"* ourselves|strong=\"G1438\"*, that|strong=\"G2443\"* we|strong=\"G2192\"* should|strong=\"G2316\"* not|strong=\"G3361\"* trust|strong=\"G3982\"* in|strong=\"G1722\"* ourselves|strong=\"G1438\"*, but|strong=\"G3361\"* in|strong=\"G1722\"* God|strong=\"G2316\"* who|strong=\"G3588\"* raises|strong=\"G1453\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"G3739\"* delivered|strong=\"G4506\"* us|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* so|strong=\"G2532\"* great|strong=\"G5082\"* a|strong=\"G2532\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* does deliver|strong=\"G4506\"*, on|strong=\"G1519\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* set|strong=\"G1679\"* our|strong=\"G2532\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* he|strong=\"G2532\"* will|strong=\"G2532\"* also|strong=\"G2532\"* still|strong=\"G2089\"* deliver|strong=\"G4506\"* us|strong=\"G1519\"*," + }, + { + "verseNum": 11, + "text": "you|strong=\"G5210\"* also|strong=\"G2532\"* helping|strong=\"G4943\"* together|strong=\"G4943\"* on|strong=\"G1519\"* our|strong=\"G2532\"* behalf|strong=\"G5228\"* by|strong=\"G1223\"* your|strong=\"G1223\"* supplication|strong=\"G1162\"*; that|strong=\"G2443\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* gift|strong=\"G5486\"* given|strong=\"G2168\"* to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1223\"* means|strong=\"G1223\"* of|strong=\"G1537\"* many|strong=\"G4183\"*, thanks|strong=\"G2168\"* may|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G2168\"* by|strong=\"G1223\"* many|strong=\"G4183\"* persons|strong=\"G4383\"* on|strong=\"G1519\"* your|strong=\"G1223\"* behalf|strong=\"G5228\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* our|strong=\"G2316\"* boasting|strong=\"G2746\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: the|strong=\"G1722\"* testimony|strong=\"G3142\"* of|strong=\"G2316\"* our|strong=\"G2316\"* conscience|strong=\"G4893\"* that|strong=\"G3754\"* in|strong=\"G1722\"* holiness and|strong=\"G2532\"* sincerity|strong=\"G1505\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* fleshly|strong=\"G4559\"* wisdom|strong=\"G4678\"* but|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, we|strong=\"G2249\"* behaved ourselves|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* more|strong=\"G2532\"* abundantly|strong=\"G4056\"* toward|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* write|strong=\"G1125\"* no|strong=\"G3756\"* other|strong=\"G1161\"* things|strong=\"G3739\"* to|strong=\"G2532\"* you|strong=\"G5210\"* than|strong=\"G2228\"* what|strong=\"G3739\"* you|strong=\"G5210\"* read|strong=\"G1125\"* or|strong=\"G2228\"* even|strong=\"G2532\"* acknowledge|strong=\"G1921\"*, and|strong=\"G2532\"* I|strong=\"G3739\"* hope|strong=\"G1679\"* you|strong=\"G5210\"* will|strong=\"G2532\"* acknowledge|strong=\"G1921\"* to|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"*—" + }, + { + "verseNum": 14, + "text": "as|strong=\"G2531\"* also|strong=\"G2532\"* you|strong=\"G5210\"* acknowledged|strong=\"G1921\"* us|strong=\"G2249\"* in|strong=\"G1722\"* part|strong=\"G3313\"*—that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* your|strong=\"G2962\"* boasting|strong=\"G2745\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* also|strong=\"G2532\"* are|strong=\"G1510\"* ours|strong=\"G1473\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "In|strong=\"G2532\"* this|strong=\"G3778\"* confidence|strong=\"G4006\"*, I|strong=\"G2532\"* was|strong=\"G3588\"* determined to|strong=\"G4314\"* come|strong=\"G2064\"* first|strong=\"G4386\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* might|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* second|strong=\"G1208\"* benefit|strong=\"G5485\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* by|strong=\"G1223\"* you|strong=\"G5210\"* to|strong=\"G1519\"* pass|strong=\"G1330\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, and|strong=\"G2532\"* again|strong=\"G3825\"* from|strong=\"G2064\"* Macedonia|strong=\"G3109\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* be|strong=\"G2532\"* sent|strong=\"G2532\"* forward|strong=\"G1519\"* by|strong=\"G1223\"* you|strong=\"G5210\"* on|strong=\"G1519\"* my|strong=\"G5259\"* journey|strong=\"G4311\"* to|strong=\"G1519\"* Judea|strong=\"G2449\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"G2532\"* I|strong=\"G1473\"* therefore|strong=\"G3767\"* planned|strong=\"G1011\"* this|strong=\"G3778\"*, did|strong=\"G2532\"* I|strong=\"G1473\"* show fickleness? Or|strong=\"G2228\"* the|strong=\"G2532\"* things|strong=\"G3778\"* that|strong=\"G2443\"* I|strong=\"G1473\"* plan, do|strong=\"G2532\"* I|strong=\"G1473\"* plan according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, that|strong=\"G2443\"* with|strong=\"G3844\"* me|strong=\"G1473\"* there|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G1510\"* the|strong=\"G2532\"* “Yes|strong=\"G3483\"*, yes|strong=\"G3483\"*” and|strong=\"G2532\"* the|strong=\"G2532\"* “No|strong=\"G3756\"*, no|strong=\"G3756\"*?”" + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* as|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, our|strong=\"G2316\"* word|strong=\"G3056\"* toward|strong=\"G4314\"* you|strong=\"G5210\"* was|strong=\"G1510\"* not|strong=\"G3756\"* “Yes|strong=\"G3483\"* and|strong=\"G2532\"* no|strong=\"G3756\"*.”" + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* was|strong=\"G1096\"* preached|strong=\"G2784\"* among|strong=\"G1722\"* you|strong=\"G5210\"* by|strong=\"G1223\"* us|strong=\"G2249\"*—by|strong=\"G1223\"* me|strong=\"G1473\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*—was|strong=\"G1096\"* not|strong=\"G3756\"* “Yes|strong=\"G3483\"* and|strong=\"G2532\"* no|strong=\"G3756\"*,” but|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G3588\"* “Yes|strong=\"G3483\"*.”" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* however many|strong=\"G3745\"* are|strong=\"G3588\"* the|strong=\"G1722\"* promises|strong=\"G1860\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* “Yes|strong=\"G3483\"*.” Therefore|strong=\"G1352\"* also|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* “Amen”, to|strong=\"G4314\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"* through|strong=\"G1223\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* establishes us|strong=\"G1519\"* with|strong=\"G4862\"* you|strong=\"G5210\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* anointed|strong=\"G5548\"* us|strong=\"G1519\"* is|strong=\"G3588\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3588\"* also|strong=\"G2532\"* sealed|strong=\"G4972\"* us|strong=\"G1325\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* the|strong=\"G1722\"* down payment of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* call|strong=\"G1941\"* God|strong=\"G2316\"* for|strong=\"G3754\"* a|strong=\"G1519\"* witness|strong=\"G3144\"* to|strong=\"G1519\"* my|strong=\"G1699\"* soul|strong=\"G5590\"*, that|strong=\"G3754\"* to|strong=\"G1519\"* spare|strong=\"G5339\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* didn’t|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G1519\"* Corinth|strong=\"G2882\"*." + }, + { + "verseNum": 24, + "text": "We|strong=\"G3754\"* don’t|strong=\"G3588\"* control your|strong=\"G3588\"* faith|strong=\"G4102\"*, but|strong=\"G1063\"* are|strong=\"G1510\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* with|strong=\"G3756\"* you|strong=\"G5210\"* for|strong=\"G1063\"* your|strong=\"G3588\"* joy|strong=\"G5479\"*. For|strong=\"G1063\"* you|strong=\"G5210\"* stand|strong=\"G2476\"* firm|strong=\"G2476\"* in|strong=\"G4102\"* faith|strong=\"G4102\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* determined|strong=\"G2919\"* this|strong=\"G3778\"* for|strong=\"G1063\"* myself|strong=\"G1683\"*, that|strong=\"G3588\"* I|strong=\"G1161\"* would|strong=\"G2064\"* not|strong=\"G3361\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"* again|strong=\"G3825\"* in|strong=\"G1722\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1473\"* make|strong=\"G2532\"* you|strong=\"G5210\"* grieve|strong=\"G3076\"*, then|strong=\"G2532\"* who|strong=\"G5101\"* will|strong=\"G5101\"* make|strong=\"G2532\"* me|strong=\"G1473\"* glad|strong=\"G2165\"* but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G5101\"* is|strong=\"G3588\"* made|strong=\"G3076\"* to|strong=\"G2532\"* grieve|strong=\"G3076\"* by|strong=\"G1537\"* me|strong=\"G1473\"*?" + }, + { + "verseNum": 3, + "text": "And|strong=\"G2532\"* I|strong=\"G1473\"* wrote|strong=\"G1125\"* this|strong=\"G3778\"* very|strong=\"G2532\"* thing|strong=\"G3956\"* to|strong=\"G2443\"* you|strong=\"G5210\"*, so|strong=\"G2443\"* that|strong=\"G3754\"* when|strong=\"G2532\"* I|strong=\"G1473\"* came|strong=\"G2064\"*, I|strong=\"G1473\"* wouldn’t|strong=\"G3588\"* have|strong=\"G2192\"* sorrow|strong=\"G3077\"* from|strong=\"G2064\"* them|strong=\"G3588\"* of|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* rejoice|strong=\"G5463\"*; having|strong=\"G2192\"* confidence|strong=\"G3982\"* in|strong=\"G1909\"* you|strong=\"G5210\"* all|strong=\"G3956\"* that|strong=\"G3754\"* my|strong=\"G1699\"* joy|strong=\"G5479\"* would|strong=\"G2532\"* be|strong=\"G1510\"* shared by|strong=\"G1909\"* all|strong=\"G3956\"* of|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* out|strong=\"G1537\"* of|strong=\"G1537\"* much|strong=\"G4183\"* affliction|strong=\"G2347\"* and|strong=\"G2532\"* anguish|strong=\"G4928\"* of|strong=\"G1537\"* heart|strong=\"G2588\"* I|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* with|strong=\"G1537\"* many|strong=\"G4183\"* tears|strong=\"G1144\"*, not|strong=\"G3756\"* that|strong=\"G2443\"* you|strong=\"G5210\"* should|strong=\"G3588\"* be|strong=\"G2532\"* made|strong=\"G3076\"* to|strong=\"G1519\"* grieve|strong=\"G3076\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* might|strong=\"G2532\"* know|strong=\"G1097\"* the|strong=\"G2532\"* love that|strong=\"G2443\"* I|strong=\"G3739\"* have|strong=\"G2192\"* so|strong=\"G2443\"* abundantly|strong=\"G4056\"* for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* has|strong=\"G5100\"* caused|strong=\"G3076\"* sorrow|strong=\"G3076\"*, he|strong=\"G1161\"* has|strong=\"G5100\"* caused|strong=\"G3076\"* sorrow|strong=\"G3076\"* not|strong=\"G3756\"* to|strong=\"G2443\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* in|strong=\"G3956\"* part|strong=\"G3313\"* (that|strong=\"G2443\"* I|strong=\"G1473\"* not|strong=\"G3756\"* press too|strong=\"G1912\"* heavily) to|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* punishment|strong=\"G2009\"* which|strong=\"G3588\"* was|strong=\"G3588\"* inflicted by|strong=\"G5259\"* the|strong=\"G3588\"* many|strong=\"G4183\"* is|strong=\"G3588\"* sufficient|strong=\"G2425\"* for|strong=\"G3778\"* such|strong=\"G5108\"* a|strong=\"G5108\"* one|strong=\"G5108\"*;" + }, + { + "verseNum": 7, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"*, on|strong=\"G3588\"* the|strong=\"G2532\"* contrary|strong=\"G5121\"*, you|strong=\"G4771\"* should|strong=\"G3588\"* rather|strong=\"G3123\"* forgive|strong=\"G5483\"* him|strong=\"G3588\"* and|strong=\"G2532\"* comfort|strong=\"G3870\"* him|strong=\"G3588\"*, lest|strong=\"G3361\"* by|strong=\"G2532\"* any|strong=\"G3361\"* means|strong=\"G3381\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5108\"* should|strong=\"G3588\"* be|strong=\"G2532\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* with|strong=\"G2532\"* his|strong=\"G2532\"* excessive|strong=\"G4053\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1352\"* beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G1519\"* confirm|strong=\"G2964\"* your|strong=\"G3870\"* love toward|strong=\"G1519\"* him|strong=\"G3870\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* I|strong=\"G2532\"* also|strong=\"G2532\"* wrote|strong=\"G1125\"*, that|strong=\"G2443\"* I|strong=\"G2532\"* might|strong=\"G2532\"* know|strong=\"G1097\"* the|strong=\"G2532\"* proof|strong=\"G1382\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, whether|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* obedient|strong=\"G5255\"* in|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* also|strong=\"G2532\"* forgive|strong=\"G5483\"* whomever|strong=\"G3739\"* you|strong=\"G5210\"* forgive|strong=\"G5483\"* anything|strong=\"G5100\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* indeed|strong=\"G2532\"* I|strong=\"G1473\"* have|strong=\"G2532\"* forgiven|strong=\"G5483\"* anything|strong=\"G5100\"*, I|strong=\"G1473\"* have|strong=\"G2532\"* forgiven|strong=\"G5483\"* that|strong=\"G3739\"* one|strong=\"G5100\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G4383\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 11, + "text": "that|strong=\"G2443\"* no|strong=\"G3756\"* advantage|strong=\"G4122\"* may|strong=\"G2443\"* be|strong=\"G3756\"* gained over|strong=\"G5259\"* us by|strong=\"G5259\"* Satan|strong=\"G4567\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G3588\"* not|strong=\"G3756\"* ignorant|strong=\"G3361\"* of|strong=\"G5259\"* his|strong=\"G5259\"* schemes|strong=\"G3540\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* when|strong=\"G1161\"* I|strong=\"G1473\"* came|strong=\"G2064\"* to|strong=\"G1519\"* Troas|strong=\"G5174\"* for|strong=\"G1519\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* when|strong=\"G1161\"* a|strong=\"G2532\"* door|strong=\"G2374\"* was|strong=\"G3588\"* opened to|strong=\"G1519\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"G1473\"* had|strong=\"G2192\"* no|strong=\"G3756\"* relief for|strong=\"G1519\"* my|strong=\"G1473\"* spirit|strong=\"G4151\"*, because|strong=\"G2192\"* I|strong=\"G1473\"* didn’t|strong=\"G3588\"* find|strong=\"G2147\"* Titus|strong=\"G5103\"* my|strong=\"G1473\"* brother, but|strong=\"G3361\"* taking my|strong=\"G1473\"* leave|strong=\"G1831\"* of|strong=\"G4151\"* them|strong=\"G3588\"*, I|strong=\"G1473\"* went|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2532\"* to|strong=\"G2532\"* God|strong=\"G2316\"* who|strong=\"G3588\"* always|strong=\"G3842\"* leads|strong=\"G2358\"* us|strong=\"G2249\"* in|strong=\"G1722\"* triumph|strong=\"G2358\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* reveals through|strong=\"G1223\"* us|strong=\"G2249\"* the|strong=\"G1722\"* sweet|strong=\"G3744\"* aroma|strong=\"G3744\"* of|strong=\"G1223\"* his|strong=\"G3956\"* knowledge|strong=\"G1108\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G2532\"* sweet aroma of|strong=\"G2316\"* Christ|strong=\"G5547\"* to|strong=\"G2532\"* God|strong=\"G2316\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* saved|strong=\"G4982\"* and|strong=\"G2532\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* perish:" + }, + { + "verseNum": 16, + "text": "to|strong=\"G1519\"* the|strong=\"G2532\"* one|strong=\"G3739\"* a|strong=\"G2532\"* stench from|strong=\"G1537\"* death|strong=\"G2288\"* to|strong=\"G1519\"* death|strong=\"G2288\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* other|strong=\"G1161\"* a|strong=\"G2532\"* sweet|strong=\"G3744\"* aroma|strong=\"G3744\"* from|strong=\"G1537\"* life|strong=\"G2222\"* to|strong=\"G1519\"* life|strong=\"G2222\"*. Who|strong=\"G3739\"* is|strong=\"G5101\"* sufficient|strong=\"G2425\"* for|strong=\"G1519\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G1510\"* not|strong=\"G3756\"* as|strong=\"G5613\"* so|strong=\"G5613\"* many|strong=\"G4183\"*, peddling|strong=\"G2585\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. But|strong=\"G1063\"* as|strong=\"G5613\"* of|strong=\"G1537\"* sincerity|strong=\"G1505\"*, but|strong=\"G1063\"* as|strong=\"G5613\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G2713\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, we|strong=\"G1063\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Are|strong=\"G5210\"* we|strong=\"G5613\"* beginning again|strong=\"G3825\"* to|strong=\"G4314\"* commend|strong=\"G4921\"* ourselves|strong=\"G1438\"*? Or|strong=\"G2228\"* do|strong=\"G3361\"* we|strong=\"G5613\"* need|strong=\"G5535\"*, as|strong=\"G5613\"* do|strong=\"G3361\"* some|strong=\"G5100\"*, letters|strong=\"G1992\"* of|strong=\"G1537\"* commendation|strong=\"G4956\"* to|strong=\"G4314\"* you|strong=\"G5210\"* or|strong=\"G2228\"* from|strong=\"G1537\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* our|strong=\"G2532\"* letter|strong=\"G1992\"*, written|strong=\"G1449\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"*, known|strong=\"G1097\"* and|strong=\"G2532\"* read by|strong=\"G1722\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 3, + "text": "being|strong=\"G1510\"* revealed|strong=\"G5319\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G1722\"* letter|strong=\"G1992\"* of|strong=\"G5259\"* Christ|strong=\"G5547\"*, served|strong=\"G1247\"* by|strong=\"G1722\"* us|strong=\"G2249\"*, written|strong=\"G1449\"* not|strong=\"G3756\"* with|strong=\"G1722\"* ink|strong=\"G3188\"*, but|strong=\"G2316\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G5259\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*; not|strong=\"G3756\"* in|strong=\"G1722\"* tablets|strong=\"G4109\"* of|strong=\"G5259\"* stone|strong=\"G3035\"*, but|strong=\"G2316\"* in|strong=\"G1722\"* tablets|strong=\"G4109\"* that|strong=\"G3754\"* are|strong=\"G1510\"* hearts|strong=\"G2588\"* of|strong=\"G5259\"* flesh|strong=\"G4560\"*." + }, + { + "verseNum": 4, + "text": "Such|strong=\"G5108\"* confidence|strong=\"G4006\"* we|strong=\"G1161\"* have|strong=\"G2192\"* through|strong=\"G1223\"* Christ|strong=\"G5547\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3756\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* sufficient|strong=\"G2425\"* of|strong=\"G1537\"* ourselves|strong=\"G1438\"* to|strong=\"G3756\"* account|strong=\"G3049\"* anything|strong=\"G5100\"* as|strong=\"G5613\"* from|strong=\"G1537\"* ourselves|strong=\"G1438\"*; but|strong=\"G2316\"* our|strong=\"G2316\"* sufficiency|strong=\"G2426\"* is|strong=\"G1510\"* from|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"* also|strong=\"G2532\"* made|strong=\"G2427\"* us|strong=\"G2427\"* sufficient as|strong=\"G1161\"* servants|strong=\"G1249\"* of|strong=\"G4151\"* a|strong=\"G2532\"* new|strong=\"G2537\"* covenant|strong=\"G1242\"*, not|strong=\"G3756\"* of|strong=\"G4151\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* but|strong=\"G1161\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* letter|strong=\"G1121\"* kills, but|strong=\"G1161\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* gives|strong=\"G2227\"* life|strong=\"G2227\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* the|strong=\"G1722\"* service|strong=\"G1248\"* of|strong=\"G5207\"* death|strong=\"G2288\"*, written|strong=\"G1121\"* engraved|strong=\"G1795\"* on|strong=\"G1722\"* stones|strong=\"G3037\"*, came|strong=\"G1096\"* with|strong=\"G1722\"* glory|strong=\"G1391\"*, so|strong=\"G1161\"* that|strong=\"G3588\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* could|strong=\"G1410\"* not|strong=\"G3361\"* look|strong=\"G1096\"* steadfastly on|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G5207\"* Moses|strong=\"G3475\"* for|strong=\"G1519\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G5207\"* his|strong=\"G1223\"* face|strong=\"G4383\"*, which|strong=\"G3588\"* was|strong=\"G1096\"* passing|strong=\"G2673\"* away|strong=\"G2673\"*," + }, + { + "verseNum": 8, + "text": "won’t|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* be|strong=\"G1510\"* with|strong=\"G1722\"* much|strong=\"G3123\"* more|strong=\"G3123\"* glory|strong=\"G1391\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G1391\"* condemnation|strong=\"G2633\"* has|strong=\"G4052\"* glory|strong=\"G1391\"*, the|strong=\"G3588\"* service|strong=\"G1248\"* of|strong=\"G1391\"* righteousness|strong=\"G1343\"* exceeds much|strong=\"G4183\"* more|strong=\"G3123\"* in|strong=\"G4052\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G1063\"* that|strong=\"G3588\"* which|strong=\"G3588\"* has|strong=\"G3778\"* been|strong=\"G2532\"* made|strong=\"G3756\"* glorious|strong=\"G1391\"* has|strong=\"G3778\"* not|strong=\"G3756\"* been|strong=\"G2532\"* made|strong=\"G3756\"* glorious|strong=\"G1391\"* in|strong=\"G1722\"* this|strong=\"G3778\"* respect|strong=\"G3313\"*, by|strong=\"G1722\"* reason|strong=\"G1752\"* of|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* surpasses|strong=\"G5235\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* that|strong=\"G3588\"* which|strong=\"G3588\"* passes away|strong=\"G2673\"* was|strong=\"G3588\"* with|strong=\"G1722\"* glory|strong=\"G1391\"*, much|strong=\"G4183\"* more|strong=\"G3123\"* that|strong=\"G3588\"* which|strong=\"G3588\"* remains|strong=\"G3306\"* is|strong=\"G3588\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 12, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"* such|strong=\"G5108\"* a|strong=\"G2192\"* hope|strong=\"G1680\"*, we|strong=\"G2192\"* use|strong=\"G5530\"* great|strong=\"G4183\"* boldness|strong=\"G3954\"* of|strong=\"G1680\"* speech|strong=\"G3954\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G1519\"* Moses|strong=\"G3475\"*, who|strong=\"G3588\"* put|strong=\"G5087\"* a|strong=\"G2532\"* veil|strong=\"G2571\"* on|strong=\"G1909\"* his|strong=\"G1438\"* face|strong=\"G4383\"* so|strong=\"G2532\"* that|strong=\"G3588\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"* wouldn’t|strong=\"G3588\"* look steadfastly on|strong=\"G1909\"* the|strong=\"G2532\"* end|strong=\"G5056\"* of|strong=\"G5207\"* that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* passing|strong=\"G2532\"* away|strong=\"G2673\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G3361\"* their|strong=\"G1722\"* minds|strong=\"G3540\"* were|strong=\"G3588\"* hardened|strong=\"G4456\"*, for|strong=\"G1063\"* until|strong=\"G1722\"* this|strong=\"G3588\"* very|strong=\"G4594\"* day|strong=\"G2250\"* at|strong=\"G1722\"* the|strong=\"G1722\"* reading of|strong=\"G2250\"* the|strong=\"G1722\"* old|strong=\"G3820\"* covenant|strong=\"G1242\"* the|strong=\"G1722\"* same veil|strong=\"G2571\"* remains|strong=\"G3306\"*, because|strong=\"G3754\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* it|strong=\"G3754\"* passes away|strong=\"G2673\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G3588\"* to|strong=\"G1909\"* this|strong=\"G3588\"* day|strong=\"G4594\"*, when|strong=\"G2259\"* Moses|strong=\"G3475\"* is|strong=\"G3588\"* read, a|strong=\"G1909\"* veil|strong=\"G2571\"* lies|strong=\"G2749\"* on|strong=\"G1909\"* their|strong=\"G3588\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* whenever|strong=\"G1437\"* someone turns|strong=\"G1994\"* to|strong=\"G4314\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"*, the|strong=\"G1161\"* veil|strong=\"G2571\"* is|strong=\"G3588\"* taken|strong=\"G4014\"* away|strong=\"G4014\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*; and|strong=\"G1161\"* where|strong=\"G3757\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"*, there|strong=\"G1161\"* is|strong=\"G1510\"* liberty|strong=\"G1657\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* all|strong=\"G3956\"*, with|strong=\"G1519\"* unveiled face|strong=\"G4383\"* seeing the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G4151\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* as|strong=\"G1519\"* in|strong=\"G1519\"* a|strong=\"G1519\"* mirror|strong=\"G2734\"*, are|strong=\"G3588\"* transformed|strong=\"G3339\"* into|strong=\"G1519\"* the|strong=\"G1519\"* same image|strong=\"G1504\"* from|strong=\"G3588\"* glory|strong=\"G1391\"* to|strong=\"G1519\"* glory|strong=\"G1391\"*, even|strong=\"G1161\"* as|strong=\"G1519\"* from|strong=\"G3588\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*, the|strong=\"G1519\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"*, seeing|strong=\"G1223\"* we|strong=\"G2192\"* have|strong=\"G2192\"* this|strong=\"G3778\"* ministry|strong=\"G1248\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* we|strong=\"G2192\"* obtained|strong=\"G2192\"* mercy|strong=\"G1653\"*, we|strong=\"G2192\"* don’t|strong=\"G3588\"* faint|strong=\"G1573\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"G3361\"* we|strong=\"G1722\"* have|strong=\"G3956\"* renounced the|strong=\"G1722\"* hidden|strong=\"G2927\"* things|strong=\"G3956\"* of|strong=\"G3056\"* shame, not|strong=\"G3361\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* craftiness|strong=\"G3834\"* nor|strong=\"G3366\"* handling|strong=\"G1389\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* deceitfully|strong=\"G1389\"*, but|strong=\"G3361\"* by|strong=\"G1722\"* the|strong=\"G1722\"* manifestation|strong=\"G5321\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* to|strong=\"G4314\"* every|strong=\"G3956\"* man|strong=\"G3956\"*’s conscience|strong=\"G4893\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G1799\"* of|strong=\"G3056\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "Even|strong=\"G2532\"* if|strong=\"G1487\"* our|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* is|strong=\"G1510\"* veiled|strong=\"G2572\"*, it|strong=\"G2532\"* is|strong=\"G1510\"* veiled|strong=\"G2572\"* in|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* dying," + }, + { + "verseNum": 4, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* god|strong=\"G2316\"* of|strong=\"G2316\"* this|strong=\"G3778\"* world has|strong=\"G2316\"* blinded|strong=\"G5186\"* the|strong=\"G1722\"* minds|strong=\"G3540\"* of|strong=\"G2316\"* the|strong=\"G1722\"* unbelieving, that|strong=\"G3739\"* the|strong=\"G1722\"* light|strong=\"G5462\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* image|strong=\"G1504\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, should|strong=\"G2316\"* not|strong=\"G3361\"* dawn on|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t preach|strong=\"G2784\"* ourselves|strong=\"G1438\"*, but|strong=\"G1161\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* as|strong=\"G1161\"* Lord|strong=\"G2962\"*, and|strong=\"G1161\"* ourselves|strong=\"G1438\"* as|strong=\"G1161\"* your|strong=\"G1223\"* servants|strong=\"G1401\"* for|strong=\"G1063\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"*," + }, + { + "verseNum": 6, + "text": "seeing|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* God|strong=\"G2316\"* who|strong=\"G3739\"* said|strong=\"G3004\"*, “Light|strong=\"G5457\"* will|strong=\"G2316\"* shine|strong=\"G2989\"* out|strong=\"G1537\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"*,”+ 4:6 Genesis 1:3* who|strong=\"G3739\"* has|strong=\"G2316\"* shone|strong=\"G2989\"* in|strong=\"G1722\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* to|strong=\"G4314\"* give|strong=\"G3004\"* the|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G1537\"* the|strong=\"G1722\"* knowledge|strong=\"G1108\"* of|strong=\"G1537\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* face|strong=\"G4383\"* of|strong=\"G1537\"* Jesus|strong=\"G3004\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* have|strong=\"G2192\"* this|strong=\"G3778\"* treasure|strong=\"G2344\"* in|strong=\"G1722\"* clay|strong=\"G3749\"* vessels|strong=\"G4632\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* exceeding|strong=\"G5236\"* greatness|strong=\"G5236\"* of|strong=\"G1537\"* the|strong=\"G1722\"* power|strong=\"G1411\"* may|strong=\"G2532\"* be|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* not|strong=\"G3361\"* from|strong=\"G1537\"* ourselves|strong=\"G2249\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G1722\"* are|strong=\"G3956\"* pressed on|strong=\"G1722\"* every|strong=\"G3956\"* side|strong=\"G3956\"*, yet not|strong=\"G3756\"* crushed|strong=\"G4729\"*; perplexed, yet not|strong=\"G3756\"* to|strong=\"G1722\"* despair|strong=\"G1820\"*;" + }, + { + "verseNum": 9, + "text": "pursued, yet not|strong=\"G3756\"* forsaken|strong=\"G1459\"*; struck|strong=\"G2598\"* down|strong=\"G2598\"*, yet not|strong=\"G3756\"* destroyed;" + }, + { + "verseNum": 10, + "text": "always|strong=\"G3842\"* carrying|strong=\"G4064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"* the|strong=\"G1722\"* putting|strong=\"G2532\"* to|strong=\"G2443\"* death of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* life|strong=\"G2222\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* may|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* our|strong=\"G2424\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* who|strong=\"G3588\"* live|strong=\"G2198\"* are|strong=\"G3588\"* always|strong=\"G1223\"* delivered|strong=\"G3860\"* to|strong=\"G1519\"* death|strong=\"G2288\"* for|strong=\"G1063\"* Jesus|strong=\"G2424\"*’ sake|strong=\"G1223\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* life|strong=\"G2222\"* also|strong=\"G2532\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* our|strong=\"G2424\"* mortal|strong=\"G2349\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G1161\"* then|strong=\"G1161\"* death|strong=\"G2288\"* works|strong=\"G1754\"* in|strong=\"G1722\"* us|strong=\"G2249\"*, but|strong=\"G1161\"* life|strong=\"G2222\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* having|strong=\"G2192\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* faith|strong=\"G4102\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “I|strong=\"G1473\"* believed|strong=\"G4100\"*, and|strong=\"G2532\"* therefore|strong=\"G1352\"* I|strong=\"G1473\"* spoke|strong=\"G2980\"*.”+ 4:13 Psalms 116:10* We|strong=\"G2249\"* also|strong=\"G2532\"* believe|strong=\"G4100\"*, and|strong=\"G2532\"* therefore|strong=\"G1352\"* we|strong=\"G2249\"* also|strong=\"G2532\"* speak|strong=\"G2980\"*," + }, + { + "verseNum": 14, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* raised|strong=\"G1453\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* will|strong=\"G2532\"* raise|strong=\"G1453\"* us|strong=\"G2249\"* also|strong=\"G2532\"* with|strong=\"G4862\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* present|strong=\"G3936\"* us|strong=\"G2249\"* with|strong=\"G4862\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"*, that|strong=\"G2443\"* the|strong=\"G1519\"* grace|strong=\"G5485\"*, being|strong=\"G2443\"* multiplied through|strong=\"G1223\"* the|strong=\"G1519\"* many|strong=\"G4183\"*, may|strong=\"G2443\"* cause|strong=\"G1223\"* the|strong=\"G1519\"* thanksgiving|strong=\"G2169\"* to|strong=\"G1519\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"G1352\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* faint|strong=\"G1573\"*, but|strong=\"G2532\"* though|strong=\"G1487\"* our|strong=\"G2532\"* outward|strong=\"G1854\"* person is|strong=\"G3588\"* decaying|strong=\"G1311\"*, yet|strong=\"G2532\"* our|strong=\"G2532\"* inward|strong=\"G2080\"* person is|strong=\"G3588\"* renewed day|strong=\"G2250\"* by|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* our|strong=\"G2596\"* light|strong=\"G1645\"* affliction|strong=\"G2347\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* for|strong=\"G1063\"* the|strong=\"G1519\"* moment|strong=\"G3910\"*, works for|strong=\"G1063\"* us|strong=\"G1519\"* more|strong=\"G5236\"* and|strong=\"G1391\"* more|strong=\"G5236\"* exceedingly an|strong=\"G1519\"* eternal weight of|strong=\"G1391\"* glory|strong=\"G1391\"*," + }, + { + "verseNum": 18, + "text": "while|strong=\"G1161\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* look|strong=\"G4648\"* at|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* seen, but|strong=\"G1161\"* at|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* seen. For|strong=\"G1063\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* seen are|strong=\"G3588\"* temporal|strong=\"G4340\"*, but|strong=\"G1161\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* seen are|strong=\"G3588\"* eternal." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* if|strong=\"G1437\"* the|strong=\"G1722\"* earthly|strong=\"G1919\"* house|strong=\"G3614\"* of|strong=\"G1537\"* our|strong=\"G2316\"* tent|strong=\"G4636\"* is|strong=\"G3588\"* dissolved|strong=\"G2647\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* building|strong=\"G3619\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, a|strong=\"G2192\"* house|strong=\"G3614\"* not|strong=\"G2192\"* made|strong=\"G2316\"* with|strong=\"G1722\"* hands, eternal, in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* most|strong=\"G1537\"* certainly|strong=\"G1063\"* in|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* groan|strong=\"G4727\"*, longing|strong=\"G1971\"* to|strong=\"G2532\"* be|strong=\"G2532\"* clothed|strong=\"G1902\"* with|strong=\"G1722\"* our|strong=\"G2532\"* habitation|strong=\"G3613\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"G1487\"* indeed|strong=\"G2532\"* being|strong=\"G2532\"* clothed|strong=\"G1746\"*, we|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* found|strong=\"G2147\"* naked|strong=\"G1131\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G3739\"* who|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3588\"* tent|strong=\"G4636\"* do|strong=\"G2532\"* groan|strong=\"G4727\"*, being|strong=\"G1510\"* burdened, not|strong=\"G3756\"* that|strong=\"G2443\"* we|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* be|strong=\"G1510\"* unclothed|strong=\"G1562\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* we|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* be|strong=\"G1510\"* clothed|strong=\"G1902\"*, that|strong=\"G2443\"* what|strong=\"G3739\"* is|strong=\"G1510\"* mortal|strong=\"G2349\"* may|strong=\"G2532\"* be|strong=\"G1510\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* by|strong=\"G1722\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* made|strong=\"G2316\"* us|strong=\"G1325\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G3778\"* thing|strong=\"G3778\"* is|strong=\"G3588\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* also|strong=\"G1161\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* us|strong=\"G1325\"* the|strong=\"G1519\"* down payment of|strong=\"G4151\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"G3767\"* we|strong=\"G3754\"* are|strong=\"G3588\"* always|strong=\"G3842\"* confident|strong=\"G2292\"* and|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* while|strong=\"G1722\"* we|strong=\"G3754\"* are|strong=\"G3588\"* at|strong=\"G1722\"* home|strong=\"G1736\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, we|strong=\"G3754\"* are|strong=\"G3588\"* absent|strong=\"G1553\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 7, + "text": "for|strong=\"G1063\"* we|strong=\"G1063\"* walk|strong=\"G4043\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*, not|strong=\"G3756\"* by|strong=\"G1223\"* sight|strong=\"G1491\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G2532\"* are|strong=\"G3588\"* courageous, I|strong=\"G2532\"* say|strong=\"G1537\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* willing|strong=\"G2106\"* rather|strong=\"G3123\"* to|strong=\"G4314\"* be|strong=\"G2532\"* absent|strong=\"G1553\"* from|strong=\"G1537\"* the|strong=\"G2532\"* body|strong=\"G4983\"* and|strong=\"G2532\"* to|strong=\"G4314\"* be|strong=\"G2532\"* at|strong=\"G4314\"* home|strong=\"G1736\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"G1352\"* also|strong=\"G2532\"* we|strong=\"G2532\"* make|strong=\"G2532\"* it|strong=\"G2532\"* our|strong=\"G2532\"* aim, whether|strong=\"G1535\"* at|strong=\"G2532\"* home|strong=\"G1736\"* or|strong=\"G1535\"* absent|strong=\"G1553\"*, to|strong=\"G2532\"* be|strong=\"G1510\"* well|strong=\"G2532\"* pleasing|strong=\"G2101\"* to|strong=\"G2532\"* him|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* must|strong=\"G1163\"* all|strong=\"G3956\"* be|strong=\"G1163\"* revealed|strong=\"G5319\"* before|strong=\"G1715\"* the|strong=\"G3956\"* judgment seat of|strong=\"G1223\"* Christ|strong=\"G5547\"* that|strong=\"G2443\"* each|strong=\"G1538\"* one|strong=\"G1538\"* may|strong=\"G2443\"* receive|strong=\"G2865\"* the|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G3956\"* the|strong=\"G3956\"* body|strong=\"G4983\"* according|strong=\"G1538\"* to|strong=\"G4314\"* what|strong=\"G3739\"* he|strong=\"G3739\"* has|strong=\"G3739\"* done|strong=\"G4238\"*, whether|strong=\"G1535\"* good|strong=\"G3956\"* or|strong=\"G1535\"* bad|strong=\"G5337\"*." + }, + { + "verseNum": 11, + "text": "Knowing|strong=\"G1492\"* therefore|strong=\"G3767\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, we|strong=\"G2532\"* persuade|strong=\"G3982\"* men|strong=\"G3588\"*, but|strong=\"G1161\"* we|strong=\"G2532\"* are|strong=\"G3588\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* that|strong=\"G3588\"* we|strong=\"G2532\"* are|strong=\"G3588\"* revealed|strong=\"G5319\"* also|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2962\"* consciences|strong=\"G4893\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3588\"* not|strong=\"G3756\"* commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* to|strong=\"G4314\"* you|strong=\"G5210\"* again|strong=\"G3825\"*, but|strong=\"G2532\"* speak as|strong=\"G1722\"* giving|strong=\"G1325\"* you|strong=\"G5210\"* occasion of|strong=\"G2532\"* boasting|strong=\"G2745\"* on|strong=\"G1722\"* our|strong=\"G2532\"* behalf|strong=\"G5228\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G2745\"* to|strong=\"G4314\"* answer those|strong=\"G3588\"* who|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* appearance|strong=\"G4383\"* and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1722\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1535\"* we|strong=\"G1063\"* are|strong=\"G5210\"* beside|strong=\"G1839\"* ourselves|strong=\"G1839\"*, it|strong=\"G1063\"* is|strong=\"G2316\"* for|strong=\"G1063\"* God|strong=\"G2316\"*. Or|strong=\"G1535\"* if|strong=\"G1535\"* we|strong=\"G1063\"* are|strong=\"G5210\"* of|strong=\"G2316\"* sober|strong=\"G4993\"* mind|strong=\"G4993\"*, it|strong=\"G1063\"* is|strong=\"G2316\"* for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* love of|strong=\"G1520\"* Christ|strong=\"G5547\"* compels us|strong=\"G2249\"*; because|strong=\"G1063\"* we|strong=\"G2249\"* judge|strong=\"G2919\"* thus: that|strong=\"G3588\"* one|strong=\"G1520\"* died|strong=\"G3588\"* for|strong=\"G1063\"* all|strong=\"G3956\"*, therefore|strong=\"G1063\"* all|strong=\"G3956\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* died|strong=\"G3588\"* for|strong=\"G3754\"* all|strong=\"G3956\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live|strong=\"G2198\"* should|strong=\"G3588\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* live|strong=\"G2198\"* to|strong=\"G2443\"* themselves|strong=\"G1438\"*, but|strong=\"G2532\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* for|strong=\"G3754\"* their|strong=\"G1438\"* sakes|strong=\"G5228\"* died|strong=\"G3588\"* and|strong=\"G2532\"* rose|strong=\"G2532\"* again|strong=\"G1453\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"G5620\"* we|strong=\"G2249\"* know|strong=\"G1492\"* no|strong=\"G3762\"* one|strong=\"G3762\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* from|strong=\"G2532\"* now|strong=\"G3568\"* on|strong=\"G2596\"*. Even|strong=\"G2532\"* though|strong=\"G1487\"* we|strong=\"G2249\"* have|strong=\"G2532\"* known|strong=\"G1097\"* Christ|strong=\"G5547\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, yet|strong=\"G2532\"* now|strong=\"G3568\"* we|strong=\"G2249\"* know|strong=\"G1492\"* him|strong=\"G3588\"* so|strong=\"G2532\"* no|strong=\"G3762\"* more|strong=\"G3765\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G5620\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, he|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1096\"* new|strong=\"G2537\"* creation|strong=\"G2937\"*. The|strong=\"G1722\"* old things|strong=\"G3588\"* have|strong=\"G1096\"* passed|strong=\"G3588\"* away|strong=\"G3928\"*. Behold|strong=\"G2400\"*,+ 5:17 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* all|strong=\"G1722\"* things|strong=\"G3588\"* have|strong=\"G1096\"* become|strong=\"G1096\"* new|strong=\"G2537\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* reconciled|strong=\"G2644\"* us|strong=\"G1325\"* to|strong=\"G2532\"* himself|strong=\"G1438\"* through|strong=\"G1223\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* the|strong=\"G2532\"* ministry|strong=\"G1248\"* of|strong=\"G1537\"* reconciliation|strong=\"G2643\"*;" + }, + { + "verseNum": 19, + "text": "namely|strong=\"G5613\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* was|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* reconciling|strong=\"G2644\"* the|strong=\"G1722\"* world|strong=\"G2889\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*, not|strong=\"G3361\"* reckoning to|strong=\"G2532\"* them|strong=\"G3588\"* their|strong=\"G1438\"* trespasses|strong=\"G3900\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* committed|strong=\"G5087\"* to|strong=\"G2532\"* us|strong=\"G2249\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* reconciliation|strong=\"G2643\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* therefore|strong=\"G3767\"* ambassadors|strong=\"G4243\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* God|strong=\"G2316\"* were|strong=\"G3588\"* entreating by|strong=\"G1223\"* us|strong=\"G2249\"*: we|strong=\"G2249\"* beg|strong=\"G1189\"* you|strong=\"G5613\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, be|strong=\"G2316\"* reconciled|strong=\"G2644\"* to|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G5228\"* him|strong=\"G3588\"* who|strong=\"G3588\"* knew|strong=\"G1097\"* no|strong=\"G3361\"* sin he|strong=\"G3588\"* made|strong=\"G4160\"* to|strong=\"G2443\"* be|strong=\"G1096\"* sin on|strong=\"G1722\"* our|strong=\"G2316\"* behalf|strong=\"G5228\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* in|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G2249\"* might|strong=\"G2316\"* become|strong=\"G1096\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Working|strong=\"G4903\"* together|strong=\"G4903\"*, we|strong=\"G2532\"* entreat|strong=\"G3870\"* also|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* do|strong=\"G2532\"* not|strong=\"G3361\"* receive|strong=\"G1209\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 3, + "text": "We|strong=\"G2443\"* give|strong=\"G1325\"* no|strong=\"G3361\"* occasion of|strong=\"G1722\"* stumbling in|strong=\"G1722\"* anything|strong=\"G3367\"*, that|strong=\"G2443\"* our|strong=\"G1722\"* service|strong=\"G1248\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* blamed|strong=\"G3469\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"G2316\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* commending|strong=\"G4921\"* ourselves|strong=\"G1438\"* as|strong=\"G5613\"* servants|strong=\"G1249\"* of|strong=\"G2316\"* God|strong=\"G2316\"*: in|strong=\"G1722\"* great|strong=\"G4183\"* endurance|strong=\"G5281\"*, in|strong=\"G1722\"* afflictions|strong=\"G2347\"*, in|strong=\"G1722\"* hardships, in|strong=\"G1722\"* distresses|strong=\"G4730\"*," + }, + { + "verseNum": 5, + "text": "in|strong=\"G1722\"* beatings|strong=\"G4127\"*, in|strong=\"G1722\"* imprisonments|strong=\"G5438\"*, in|strong=\"G1722\"* riots, in|strong=\"G1722\"* labors|strong=\"G2873\"*, in|strong=\"G1722\"* watchings, in|strong=\"G1722\"* fastings|strong=\"G3521\"*," + }, + { + "verseNum": 6, + "text": "in|strong=\"G1722\"* pureness, in|strong=\"G1722\"* knowledge|strong=\"G1108\"*, in|strong=\"G1722\"* perseverance|strong=\"G3115\"*, in|strong=\"G1722\"* kindness|strong=\"G5544\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, in|strong=\"G1722\"* sincere love," + }, + { + "verseNum": 7, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* truth, in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, by|strong=\"G1223\"* the|strong=\"G1722\"* armor|strong=\"G3696\"* of|strong=\"G3056\"* righteousness|strong=\"G1343\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* and|strong=\"G2532\"* on|strong=\"G1722\"* the|strong=\"G1722\"* left," + }, + { + "verseNum": 8, + "text": "by|strong=\"G1223\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* dishonor, by|strong=\"G1223\"* evil|strong=\"G1223\"* report|strong=\"G2162\"* and|strong=\"G2532\"* good|strong=\"G1223\"* report|strong=\"G2162\"*, as|strong=\"G5613\"* deceivers|strong=\"G4108\"* and|strong=\"G2532\"* yet|strong=\"G2532\"* true," + }, + { + "verseNum": 9, + "text": "as|strong=\"G5613\"* unknown and|strong=\"G2532\"* yet|strong=\"G2532\"* well|strong=\"G2532\"* known|strong=\"G1921\"*, as|strong=\"G5613\"* dying and|strong=\"G2532\"* behold|strong=\"G2400\"*—we|strong=\"G2532\"* live|strong=\"G2198\"*, as|strong=\"G5613\"* punished|strong=\"G3811\"* and|strong=\"G2532\"* not|strong=\"G3361\"* killed|strong=\"G2289\"*," + }, + { + "verseNum": 10, + "text": "as|strong=\"G5613\"* sorrowful|strong=\"G3076\"* yet|strong=\"G2532\"* always|strong=\"G3956\"* rejoicing|strong=\"G5463\"*, as|strong=\"G5613\"* poor|strong=\"G4434\"* yet|strong=\"G2532\"* making|strong=\"G4148\"* many|strong=\"G4183\"* rich|strong=\"G4148\"*, as|strong=\"G5613\"* having|strong=\"G2192\"* nothing|strong=\"G3367\"* and|strong=\"G2532\"* yet|strong=\"G2532\"* possessing|strong=\"G2722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "Our|strong=\"G4314\"* mouth|strong=\"G4750\"* is|strong=\"G3588\"* open|strong=\"G4115\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, Corinthians|strong=\"G2881\"*. Our|strong=\"G4314\"* heart|strong=\"G2588\"* is|strong=\"G3588\"* enlarged|strong=\"G4115\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"G5210\"* are|strong=\"G3588\"* not|strong=\"G3756\"* restricted|strong=\"G4729\"* by|strong=\"G1722\"* us|strong=\"G2249\"*, but|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* restricted|strong=\"G4729\"* by|strong=\"G1722\"* your|strong=\"G1722\"* own affections|strong=\"G4698\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"G1161\"* in|strong=\"G2532\"* return—I|strong=\"G2532\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* to|strong=\"G2532\"* my|strong=\"G3588\"* children|strong=\"G5043\"*—you|strong=\"G5210\"* also|strong=\"G2532\"* open|strong=\"G4115\"* your|strong=\"G2532\"* hearts." + }, + { + "verseNum": 14, + "text": "Don’t be|strong=\"G1096\"* unequally yoked with|strong=\"G4314\"* unbelievers, for|strong=\"G1063\"* what|strong=\"G5101\"* fellowship|strong=\"G2842\"* do|strong=\"G5101\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* iniquity have|strong=\"G2532\"*? Or|strong=\"G2228\"* what|strong=\"G5101\"* fellowship|strong=\"G2842\"* does|strong=\"G5101\"* light|strong=\"G5457\"* have|strong=\"G2532\"* with|strong=\"G4314\"* darkness|strong=\"G4655\"*?" + }, + { + "verseNum": 15, + "text": "What|strong=\"G5101\"* agreement|strong=\"G4857\"* does|strong=\"G5101\"* Christ|strong=\"G5547\"* have|strong=\"G5101\"* with|strong=\"G3326\"* Belial? Or|strong=\"G2228\"* what|strong=\"G5101\"* portion does|strong=\"G5101\"* a|strong=\"G2228\"* believer|strong=\"G4103\"* have|strong=\"G5101\"* with|strong=\"G3326\"* an|strong=\"G2228\"* unbeliever?" + }, + { + "verseNum": 16, + "text": "What|strong=\"G5101\"* agreement|strong=\"G4783\"* does|strong=\"G1510\"* a|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* have|strong=\"G2532\"* with|strong=\"G3326\"* idols|strong=\"G1497\"*? For|strong=\"G1063\"* you|strong=\"G3754\"* are|strong=\"G1510\"* a|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*. Even|strong=\"G2532\"* as|strong=\"G2531\"* God|strong=\"G2316\"* said|strong=\"G3004\"*, “I|strong=\"G1473\"* will|strong=\"G2316\"* dwell|strong=\"G1774\"* in|strong=\"G1722\"* them|strong=\"G3588\"* and|strong=\"G2532\"* walk|strong=\"G1704\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. I|strong=\"G1473\"* will|strong=\"G2316\"* be|strong=\"G1510\"* their|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* my|strong=\"G1722\"* people|strong=\"G2992\"*.”+ 6:16 Leviticus 26:12; Jeremiah 32:38; Ezekiel 37:27*" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G1352\"*" + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"* will|strong=\"G1510\"* be|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"* a|strong=\"G2532\"* Father|strong=\"G3962\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"* these|strong=\"G3778\"* promises|strong=\"G1860\"*, beloved, let|strong=\"G3767\"*’s|strong=\"G2192\"* cleanse|strong=\"G2511\"* ourselves|strong=\"G1438\"* from|strong=\"G2532\"* all|strong=\"G3956\"* defilement|strong=\"G3436\"* of|strong=\"G4151\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* spirit|strong=\"G4151\"*, perfecting|strong=\"G2005\"* holiness in|strong=\"G1722\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G4151\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Open your hearts to|strong=\"G3762\"* us|strong=\"G2249\"*. We|strong=\"G2249\"* wronged no|strong=\"G3762\"* one|strong=\"G3762\"*. We|strong=\"G2249\"* corrupted|strong=\"G5351\"* no|strong=\"G3762\"* one|strong=\"G3762\"*. We|strong=\"G2249\"* took|strong=\"G4122\"* advantage|strong=\"G4122\"* of|strong=\"G3762\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* say|strong=\"G3004\"* this|strong=\"G3588\"* not|strong=\"G3756\"* to|strong=\"G1519\"* condemn|strong=\"G2633\"* you|strong=\"G3754\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G2532\"* said|strong=\"G3004\"* before|strong=\"G4314\"* that|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* die|strong=\"G4880\"* together|strong=\"G4314\"* and|strong=\"G2532\"* live|strong=\"G4800\"* together|strong=\"G4314\"*." + }, + { + "verseNum": 4, + "text": "Great|strong=\"G4183\"* is|strong=\"G3588\"* my|strong=\"G3956\"* boldness|strong=\"G3954\"* of|strong=\"G1909\"* speech|strong=\"G3954\"* toward|strong=\"G4314\"* you|strong=\"G5210\"*. Great|strong=\"G4183\"* is|strong=\"G3588\"* my|strong=\"G3956\"* boasting|strong=\"G2746\"* on|strong=\"G1909\"* your|strong=\"G3956\"* behalf|strong=\"G5228\"*. I|strong=\"G1473\"* am|strong=\"G1473\"* filled|strong=\"G4137\"* with|strong=\"G4314\"* comfort|strong=\"G3874\"*. I|strong=\"G1473\"* overflow with|strong=\"G4314\"* joy|strong=\"G5479\"* in|strong=\"G1909\"* all|strong=\"G3956\"* our|strong=\"G3956\"* affliction|strong=\"G2347\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* had|strong=\"G2192\"* come|strong=\"G2064\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, our|strong=\"G2532\"* flesh|strong=\"G4561\"* had|strong=\"G2192\"* no|strong=\"G3762\"* relief, but|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G3588\"* afflicted|strong=\"G2346\"* on|strong=\"G1722\"* every|strong=\"G3956\"* side|strong=\"G3956\"*. Fightings|strong=\"G3163\"* were|strong=\"G3588\"* outside|strong=\"G1855\"*. Fear|strong=\"G5401\"* was|strong=\"G3588\"* inside|strong=\"G2081\"*." + }, + { + "verseNum": 6, + "text": "Nevertheless, he|strong=\"G3588\"* who|strong=\"G3588\"* comforts|strong=\"G3870\"* the|strong=\"G1722\"* lowly|strong=\"G5011\"*, God|strong=\"G2316\"*, comforted|strong=\"G3870\"* us|strong=\"G2249\"* by|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G2316\"* Titus|strong=\"G5103\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* by|strong=\"G1722\"* his|strong=\"G1909\"* coming|strong=\"G3952\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* comfort|strong=\"G3874\"* with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* comforted|strong=\"G3870\"* in|strong=\"G1722\"* you|strong=\"G5210\"* while|strong=\"G1722\"* he|strong=\"G2532\"* told us|strong=\"G2249\"* of|strong=\"G2532\"* your|strong=\"G2532\"* longing|strong=\"G1972\"*, your|strong=\"G2532\"* mourning|strong=\"G3602\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* zeal|strong=\"G2205\"* for|strong=\"G5228\"* me|strong=\"G1473\"*, so|strong=\"G2532\"* that|strong=\"G3739\"* I|strong=\"G1473\"* rejoiced|strong=\"G5463\"* still|strong=\"G3123\"* more|strong=\"G3123\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* though|strong=\"G1487\"* I|strong=\"G2532\"* grieved|strong=\"G3076\"* you|strong=\"G5210\"* with|strong=\"G1722\"* my|strong=\"G1722\"* letter|strong=\"G1992\"*, I|strong=\"G2532\"* do|strong=\"G2532\"* not|strong=\"G3756\"* regret|strong=\"G3338\"* it|strong=\"G2532\"*, though|strong=\"G1487\"* I|strong=\"G2532\"* did|strong=\"G2532\"* regret|strong=\"G3338\"* it|strong=\"G2532\"*. For|strong=\"G1063\"* I|strong=\"G2532\"* see that|strong=\"G3754\"* my|strong=\"G1722\"* letter|strong=\"G1992\"* made|strong=\"G3076\"* you|strong=\"G5210\"* grieve|strong=\"G3076\"*, though|strong=\"G1487\"* just|strong=\"G2532\"* for|strong=\"G1063\"* a|strong=\"G2532\"* while|strong=\"G1722\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* now|strong=\"G3568\"* rejoice|strong=\"G5463\"*, not|strong=\"G3756\"* that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"*, but|strong=\"G1063\"* that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*. For|strong=\"G1063\"* you|strong=\"G3754\"* were|strong=\"G3748\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* a|strong=\"G1519\"* godly|strong=\"G2316\"* way|strong=\"G2596\"*, that|strong=\"G3754\"* you|strong=\"G3754\"* might|strong=\"G2316\"* suffer|strong=\"G2210\"* loss|strong=\"G2210\"* by|strong=\"G1722\"* us|strong=\"G1519\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* godly|strong=\"G2316\"* sorrow|strong=\"G3077\"* produces|strong=\"G2716\"* repentance|strong=\"G3341\"* leading|strong=\"G1519\"* to|strong=\"G1519\"* salvation|strong=\"G4991\"*, which|strong=\"G3588\"* brings|strong=\"G2716\"* no|strong=\"G3588\"* regret. But|strong=\"G1161\"* the|strong=\"G1519\"* sorrow|strong=\"G3077\"* of|strong=\"G2316\"* the|strong=\"G1519\"* world|strong=\"G2889\"* produces|strong=\"G2716\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* behold|strong=\"G2400\"*, this|strong=\"G3778\"* same|strong=\"G3778\"* thing|strong=\"G3956\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* were|strong=\"G1510\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* a|strong=\"G1722\"* godly|strong=\"G2316\"* way|strong=\"G2596\"*, what|strong=\"G3588\"* earnest care|strong=\"G4710\"* it|strong=\"G1063\"* worked in|strong=\"G1722\"* you|strong=\"G5210\"*. Yes|strong=\"G1063\"*, what|strong=\"G3588\"* defense, indignation|strong=\"G2205\"*, fear|strong=\"G5401\"*, longing|strong=\"G1972\"*, zeal|strong=\"G2205\"*, and|strong=\"G2316\"* vindication! In|strong=\"G1722\"* everything|strong=\"G3956\"* you|strong=\"G5210\"* demonstrated|strong=\"G4921\"* yourselves|strong=\"G1438\"* to|strong=\"G2596\"* be|strong=\"G1510\"* pure in|strong=\"G1722\"* the|strong=\"G1722\"* matter|strong=\"G4229\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G2532\"* although|strong=\"G5210\"* I|strong=\"G1473\"* wrote|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G1473\"* wrote|strong=\"G1125\"* not|strong=\"G3756\"* for|strong=\"G5228\"* his|strong=\"G2532\"* cause|strong=\"G1752\"* that|strong=\"G3588\"* did|strong=\"G2532\"* the|strong=\"G2532\"* wrong, nor|strong=\"G3761\"* for|strong=\"G5228\"* his|strong=\"G2532\"* cause|strong=\"G1752\"* that|strong=\"G3588\"* suffered the|strong=\"G2532\"* wrong, but|strong=\"G2532\"* that|strong=\"G3588\"* your|strong=\"G2532\"* earnest care|strong=\"G4710\"* for|strong=\"G5228\"* us|strong=\"G2249\"* might|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* in|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* we|strong=\"G2249\"* have|strong=\"G1473\"* been comforted|strong=\"G3870\"*. In|strong=\"G1909\"* our|strong=\"G1223\"* comfort|strong=\"G3874\"* we|strong=\"G2249\"* rejoiced|strong=\"G5463\"* the|strong=\"G3956\"* more|strong=\"G3123\"* exceedingly|strong=\"G4056\"* for|strong=\"G3754\"* the|strong=\"G3956\"* joy|strong=\"G5479\"* of|strong=\"G4151\"* Titus|strong=\"G5103\"*, because|strong=\"G3754\"* his|strong=\"G3956\"* spirit|strong=\"G4151\"* has|strong=\"G3778\"* been refreshed by|strong=\"G1223\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G3754\"* if|strong=\"G1487\"* in|strong=\"G1722\"* anything|strong=\"G5100\"* I|strong=\"G1473\"* have|strong=\"G2532\"* boasted|strong=\"G2744\"* to|strong=\"G2532\"* him|strong=\"G3588\"* on|strong=\"G1909\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"*, I|strong=\"G1473\"* was|strong=\"G1096\"* not|strong=\"G3756\"* disappointed|strong=\"G2617\"*. But|strong=\"G2532\"* as|strong=\"G5613\"* we|strong=\"G2249\"* spoke|strong=\"G2980\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* truth, so|strong=\"G3779\"* our|strong=\"G2532\"* glorying|strong=\"G2746\"* also|strong=\"G2532\"* which|strong=\"G3588\"* I|strong=\"G1473\"* made|strong=\"G1096\"* before|strong=\"G1909\"* Titus|strong=\"G5103\"* was|strong=\"G1096\"* found|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"* truth." + }, + { + "verseNum": 15, + "text": "His|strong=\"G3956\"* affection|strong=\"G4698\"* is|strong=\"G1510\"* more|strong=\"G2532\"* abundantly|strong=\"G4056\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*, while|strong=\"G5613\"* he|strong=\"G2532\"* remembers all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* obedience|strong=\"G5218\"*, how|strong=\"G5613\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"* you|strong=\"G5210\"* received|strong=\"G1209\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G3754\"* rejoice|strong=\"G5463\"* that|strong=\"G3754\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* I|strong=\"G3754\"* am|strong=\"G5463\"* confident|strong=\"G2292\"* concerning|strong=\"G1722\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"G1161\"*, brothers, we|strong=\"G1161\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G1722\"* you|strong=\"G5210\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* has|strong=\"G2316\"* been|strong=\"G1325\"* given|strong=\"G1325\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* Macedonia|strong=\"G3109\"*," + }, + { + "verseNum": 2, + "text": "how|strong=\"G3754\"* in|strong=\"G1722\"* a|strong=\"G2532\"* severe ordeal|strong=\"G1382\"* of|strong=\"G2532\"* affliction|strong=\"G2347\"*, the|strong=\"G1722\"* abundance|strong=\"G4052\"* of|strong=\"G2532\"* their|strong=\"G2532\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* their|strong=\"G2532\"* deep|strong=\"G4183\"* poverty|strong=\"G4432\"* abounded|strong=\"G4052\"* to|strong=\"G1519\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G2532\"* their|strong=\"G2532\"* generosity." + }, + { + "verseNum": 3, + "text": "For|strong=\"G3754\"* according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* power|strong=\"G1411\"*, I|strong=\"G2532\"* testify|strong=\"G3140\"*, yes and|strong=\"G2532\"* beyond|strong=\"G3844\"* their|strong=\"G2532\"* power|strong=\"G1411\"*, they|strong=\"G2532\"* gave|strong=\"G2532\"* of|strong=\"G2532\"* their|strong=\"G2532\"* own accord|strong=\"G2596\"*," + }, + { + "verseNum": 4, + "text": "begging|strong=\"G1189\"* us|strong=\"G1519\"* with|strong=\"G3326\"* much|strong=\"G4183\"* entreaty to|strong=\"G1519\"* receive this|strong=\"G3588\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* the|strong=\"G2532\"* fellowship|strong=\"G2842\"* in|strong=\"G1519\"* the|strong=\"G2532\"* service|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* not|strong=\"G3756\"* as|strong=\"G2531\"* we|strong=\"G2249\"* had|strong=\"G2532\"* expected|strong=\"G1679\"*, but|strong=\"G2532\"* first|strong=\"G4413\"* they|strong=\"G2532\"* gave|strong=\"G1325\"* their|strong=\"G1438\"* own|strong=\"G1438\"* selves|strong=\"G1438\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* us|strong=\"G1325\"* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"G3779\"* we|strong=\"G2249\"* urged|strong=\"G3870\"* Titus|strong=\"G5103\"*, that|strong=\"G2443\"* as|strong=\"G2531\"* he|strong=\"G2532\"* had|strong=\"G2532\"* made|strong=\"G1519\"* a|strong=\"G2532\"* beginning|strong=\"G4278\"* before|strong=\"G1519\"*, so|strong=\"G3779\"* he|strong=\"G2532\"* would|strong=\"G2532\"* also|strong=\"G2532\"* complete|strong=\"G2005\"* in|strong=\"G1519\"* you|strong=\"G5210\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G2532\"* as|strong=\"G5618\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* everything|strong=\"G3956\"*—in|strong=\"G1722\"* faith|strong=\"G4102\"*, utterance|strong=\"G3056\"*, knowledge|strong=\"G1108\"*, all|strong=\"G3956\"* earnestness|strong=\"G4710\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2532\"* love to|strong=\"G2443\"* us|strong=\"G2249\"*—see that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* speak|strong=\"G3004\"* not|strong=\"G3756\"* by|strong=\"G1223\"* way|strong=\"G2596\"* of|strong=\"G1223\"* commandment|strong=\"G2003\"*, but|strong=\"G2532\"* as|strong=\"G2596\"* proving|strong=\"G1381\"* through|strong=\"G1223\"* the|strong=\"G2532\"* earnestness|strong=\"G4710\"* of|strong=\"G1223\"* others|strong=\"G2087\"* the|strong=\"G2532\"* sincerity|strong=\"G1103\"* also|strong=\"G2532\"* of|strong=\"G1223\"* your|strong=\"G5212\"* love." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1097\"* the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* though|strong=\"G3754\"* he|strong=\"G3754\"* was|strong=\"G1510\"* rich|strong=\"G4145\"*, yet|strong=\"G1063\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* he|strong=\"G3754\"* became|strong=\"G4433\"* poor|strong=\"G4433\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* through|strong=\"G1223\"* his|strong=\"G1223\"* poverty|strong=\"G4432\"* might|strong=\"G5210\"* become|strong=\"G1510\"* rich|strong=\"G4145\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G2532\"* give|strong=\"G1325\"* advice|strong=\"G1106\"* in|strong=\"G1722\"* this|strong=\"G3778\"*: it|strong=\"G2532\"* is|strong=\"G3588\"* expedient|strong=\"G4851\"* for|strong=\"G1063\"* you|strong=\"G5210\"* who|strong=\"G3588\"* were|strong=\"G3588\"* the|strong=\"G1722\"* first|strong=\"G3588\"* to|strong=\"G2532\"* start a|strong=\"G2532\"* year|strong=\"G4070\"* ago|strong=\"G4070\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G2532\"* do|strong=\"G4160\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* willing|strong=\"G2309\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* complete|strong=\"G2005\"* the|strong=\"G2532\"* doing|strong=\"G4160\"* also|strong=\"G2532\"*, that|strong=\"G3588\"* as|strong=\"G1161\"* there|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G2532\"* readiness|strong=\"G4288\"* to|strong=\"G2532\"* be|strong=\"G2532\"* willing|strong=\"G2309\"*, so|strong=\"G3779\"* there|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* the|strong=\"G2532\"* completion|strong=\"G2005\"* also|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G2192\"* ability|strong=\"G2192\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G3588\"* readiness|strong=\"G4288\"* is|strong=\"G3588\"* there|strong=\"G1063\"*, it|strong=\"G1063\"* is|strong=\"G3588\"* acceptable|strong=\"G2144\"* according|strong=\"G3756\"* to|strong=\"G3756\"* what|strong=\"G3588\"* you|strong=\"G1437\"* have|strong=\"G2192\"*, not|strong=\"G3756\"* according|strong=\"G3756\"* to|strong=\"G3756\"* what|strong=\"G3588\"* you|strong=\"G1437\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* not|strong=\"G3756\"* that|strong=\"G2443\"* others|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G3756\"* eased and|strong=\"G3588\"* you|strong=\"G5210\"* distressed," + }, + { + "verseNum": 14, + "text": "but|strong=\"G2532\"* for|strong=\"G1519\"* equality|strong=\"G2471\"*. Your|strong=\"G2532\"* abundance|strong=\"G4051\"* at|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* time|strong=\"G2540\"* supplies their|strong=\"G2532\"* lack|strong=\"G5303\"*, that|strong=\"G2443\"* their|strong=\"G2532\"* abundance|strong=\"G4051\"* also|strong=\"G2532\"* may|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* supply for|strong=\"G1519\"* your|strong=\"G2532\"* lack|strong=\"G5303\"*, that|strong=\"G2443\"* there|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1096\"* equality|strong=\"G2471\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “He|strong=\"G2532\"* who|strong=\"G3588\"* gathered much|strong=\"G4183\"* had|strong=\"G2532\"* nothing|strong=\"G3756\"* left over|strong=\"G4121\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* gathered little|strong=\"G3641\"* had|strong=\"G2532\"* no|strong=\"G3756\"* lack|strong=\"G1641\"*.”+ 8:15 Exodus 16:18*" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1722\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* puts|strong=\"G1325\"* the|strong=\"G1722\"* same earnest care|strong=\"G4710\"* for|strong=\"G5228\"* you|strong=\"G5210\"* into|strong=\"G1722\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* of|strong=\"G2316\"* Titus|strong=\"G5103\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* he|strong=\"G1161\"* indeed|strong=\"G3303\"* accepted|strong=\"G1209\"* our|strong=\"G4314\"* exhortation|strong=\"G3874\"*, but|strong=\"G1161\"* being|strong=\"G5225\"* himself very|strong=\"G3588\"* earnest|strong=\"G4705\"*, he|strong=\"G1161\"* went|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* you|strong=\"G5210\"* of|strong=\"G3588\"* his|strong=\"G3754\"* own accord|strong=\"G4314\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"G3739\"* have|strong=\"G3956\"* sent|strong=\"G4842\"* together|strong=\"G3326\"* with|strong=\"G3326\"* him|strong=\"G3588\"* the|strong=\"G1722\"* brother whose|strong=\"G3739\"* praise|strong=\"G1868\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* is|strong=\"G3588\"* known throughout|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 19, + "text": "Not|strong=\"G3756\"* only|strong=\"G3440\"* so|strong=\"G2532\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* was|strong=\"G3588\"* also|strong=\"G2532\"* appointed|strong=\"G5500\"* by|strong=\"G5259\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* to|strong=\"G4314\"* travel|strong=\"G4898\"* with|strong=\"G4862\"* us|strong=\"G2249\"* in|strong=\"G2532\"* this|strong=\"G3778\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* served|strong=\"G1247\"* by|strong=\"G5259\"* us|strong=\"G2249\"* to|strong=\"G4314\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G5259\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* himself|strong=\"G4862\"*, and|strong=\"G2532\"* to|strong=\"G4314\"* show our|strong=\"G2532\"* readiness|strong=\"G4288\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* are|strong=\"G3588\"* avoiding|strong=\"G4724\"* this|strong=\"G3778\"*, that|strong=\"G3588\"* any|strong=\"G5100\"* man|strong=\"G5100\"* should|strong=\"G5100\"* blame|strong=\"G3469\"* us|strong=\"G2249\"* concerning|strong=\"G1722\"* this|strong=\"G3778\"* abundance which|strong=\"G3588\"* is|strong=\"G3588\"* administered|strong=\"G1247\"* by|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 21, + "text": "Having|strong=\"G2532\"* regard|strong=\"G4306\"* for|strong=\"G1063\"* honorable|strong=\"G2570\"* things|strong=\"G2570\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* men." + }, + { + "verseNum": 22, + "text": "We|strong=\"G2249\"* have|strong=\"G1473\"* sent|strong=\"G4842\"* with|strong=\"G1722\"* them|strong=\"G3588\"* our|strong=\"G1722\"* brother whom|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G1473\"* many|strong=\"G4183\"* times|strong=\"G4178\"* proved|strong=\"G1381\"* earnest|strong=\"G4705\"* in|strong=\"G1722\"* many|strong=\"G4183\"* things|strong=\"G3588\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* much|strong=\"G4183\"* more|strong=\"G4183\"* earnest|strong=\"G4705\"*, by|strong=\"G1722\"* reason of|strong=\"G1722\"* the|strong=\"G1722\"* great|strong=\"G4183\"* confidence|strong=\"G4006\"* which|strong=\"G3739\"* he|strong=\"G1161\"* has|strong=\"G3739\"* in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "As|strong=\"G1519\"* for|strong=\"G1519\"* Titus|strong=\"G5103\"*, he|strong=\"G2532\"* is|strong=\"G5547\"* my|strong=\"G1699\"* partner|strong=\"G2844\"* and|strong=\"G2532\"* fellow|strong=\"G4904\"* worker|strong=\"G4904\"* for|strong=\"G1519\"* you|strong=\"G5210\"*. As|strong=\"G1519\"* for|strong=\"G1519\"* our|strong=\"G2532\"* brothers, they|strong=\"G2532\"* are|strong=\"G2532\"* the|strong=\"G2532\"* apostles of|strong=\"G2532\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*, the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G3767\"* show|strong=\"G1731\"* the|strong=\"G2532\"* proof|strong=\"G1732\"* of|strong=\"G2532\"* your|strong=\"G2532\"* love to|strong=\"G1519\"* them|strong=\"G3588\"* before|strong=\"G1519\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* our|strong=\"G2532\"* boasting|strong=\"G2746\"* on|strong=\"G1519\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G1063\"* is|strong=\"G1510\"* indeed|strong=\"G3303\"* unnecessary for|strong=\"G1063\"* me|strong=\"G1473\"* to|strong=\"G1519\"* write|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* the|strong=\"G1519\"* service|strong=\"G1248\"* to|strong=\"G1519\"* the|strong=\"G1519\"* saints," + }, + { + "verseNum": 2, + "text": "for|strong=\"G1063\"* I|strong=\"G3739\"* know|strong=\"G1492\"* your|strong=\"G2532\"* readiness|strong=\"G4288\"*, of|strong=\"G2532\"* which|strong=\"G3739\"* I|strong=\"G3739\"* boast|strong=\"G2744\"* on|strong=\"G5228\"* your|strong=\"G2532\"* behalf|strong=\"G5228\"* to|strong=\"G2532\"* those|strong=\"G3588\"* of|strong=\"G2532\"* Macedonia|strong=\"G3110\"*, that|strong=\"G3754\"* Achaia has|strong=\"G3739\"* been|strong=\"G2532\"* prepared|strong=\"G3903\"* for|strong=\"G1063\"* the|strong=\"G2532\"* past year|strong=\"G4070\"*. Your|strong=\"G2532\"* zeal|strong=\"G2205\"* has|strong=\"G3739\"* stirred|strong=\"G2532\"* up|strong=\"G2532\"* very|strong=\"G4183\"* many|strong=\"G4183\"* of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* have|strong=\"G1473\"* sent|strong=\"G3992\"* the|strong=\"G1722\"* brothers so|strong=\"G2443\"* that|strong=\"G2443\"* our|strong=\"G1722\"* boasting|strong=\"G2745\"* on|strong=\"G1722\"* your|strong=\"G1722\"* behalf|strong=\"G5228\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G1510\"* in|strong=\"G1722\"* vain|strong=\"G2758\"* in|strong=\"G1722\"* this|strong=\"G3778\"* respect|strong=\"G3313\"*, that|strong=\"G2443\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1510\"* prepared|strong=\"G3903\"*," + }, + { + "verseNum": 4, + "text": "lest|strong=\"G3361\"* by|strong=\"G1722\"* any|strong=\"G1437\"* means|strong=\"G3381\"*, if|strong=\"G1437\"* anyone|strong=\"G1437\"* from|strong=\"G2064\"* Macedonia|strong=\"G3110\"* comes|strong=\"G2064\"* there|strong=\"G2532\"* with|strong=\"G1722\"* me|strong=\"G1473\"* and|strong=\"G2532\"* finds|strong=\"G2147\"* you|strong=\"G5210\"* unprepared, we|strong=\"G2249\"* (to|strong=\"G2443\"* say|strong=\"G3004\"* nothing|strong=\"G3361\"* of|strong=\"G2532\"* you|strong=\"G5210\"*) would|strong=\"G2532\"* be|strong=\"G2532\"* disappointed|strong=\"G2617\"* in|strong=\"G1722\"* this|strong=\"G3778\"* confident|strong=\"G1722\"* boasting|strong=\"G3004\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G2532\"* thought|strong=\"G2233\"* it|strong=\"G2532\"* necessary|strong=\"G3767\"* therefore|strong=\"G3767\"* to|strong=\"G1519\"* entreat|strong=\"G3870\"* the|strong=\"G2532\"* brothers that|strong=\"G2443\"* they|strong=\"G2532\"* would|strong=\"G2532\"* go|strong=\"G4281\"* before|strong=\"G1519\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* arrange|strong=\"G4294\"* ahead|strong=\"G4281\"* of|strong=\"G2532\"* time the|strong=\"G2532\"* generous gift|strong=\"G2129\"* that|strong=\"G2443\"* you|strong=\"G5210\"* promised|strong=\"G4279\"* before|strong=\"G1519\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* same|strong=\"G3778\"* might|strong=\"G2532\"* be|strong=\"G1510\"* ready|strong=\"G2092\"* as|strong=\"G5613\"* a|strong=\"G5613\"* matter of|strong=\"G2532\"* generosity, and|strong=\"G2532\"* not|strong=\"G3361\"* of|strong=\"G2532\"* greediness|strong=\"G4124\"*." + }, + { + "verseNum": 6, + "text": "Remember this|strong=\"G3778\"*: he|strong=\"G2532\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* sparingly|strong=\"G5340\"* will|strong=\"G2532\"* also|strong=\"G2532\"* reap|strong=\"G2325\"* sparingly|strong=\"G5340\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* bountifully|strong=\"G2129\"* will|strong=\"G2532\"* also|strong=\"G2532\"* reap|strong=\"G2325\"* bountifully|strong=\"G2129\"*." + }, + { + "verseNum": 7, + "text": "Let|strong=\"G1063\"* each|strong=\"G1538\"* man|strong=\"G1538\"* give according|strong=\"G1538\"* as|strong=\"G2531\"* he|strong=\"G3588\"* has|strong=\"G2316\"* determined in|strong=\"G2316\"* his|strong=\"G3588\"* heart|strong=\"G2588\"*, not|strong=\"G3361\"* grudgingly|strong=\"G1537\"* or|strong=\"G2228\"* under|strong=\"G1537\"* compulsion, for|strong=\"G1063\"* God|strong=\"G2316\"* loves a|strong=\"G2228\"* cheerful|strong=\"G2431\"* giver|strong=\"G1395\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G2192\"* to|strong=\"G1519\"* make|strong=\"G1519\"* all|strong=\"G3956\"* grace|strong=\"G5485\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"*, always|strong=\"G3842\"* having|strong=\"G2192\"* all|strong=\"G3956\"* sufficiency in|strong=\"G1722\"* everything|strong=\"G3956\"*, may|strong=\"G2443\"* abound|strong=\"G4052\"* to|strong=\"G1519\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"G2531\"* it|strong=\"G2531\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 10, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* supplies|strong=\"G5524\"* seed|strong=\"G4690\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sower|strong=\"G4687\"* and|strong=\"G2532\"* bread for|strong=\"G1519\"* food|strong=\"G1035\"*, supply|strong=\"G2023\"* and|strong=\"G2532\"* multiply|strong=\"G4129\"* your|strong=\"G2532\"* seed|strong=\"G4690\"* for|strong=\"G1519\"* sowing|strong=\"G4687\"*, and|strong=\"G2532\"* increase|strong=\"G4129\"* the|strong=\"G2532\"* fruits|strong=\"G1081\"* of|strong=\"G2532\"* your|strong=\"G2532\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 11, + "text": "you|strong=\"G1722\"* being|strong=\"G1722\"* enriched|strong=\"G4148\"* in|strong=\"G1722\"* everything|strong=\"G3956\"* for|strong=\"G1519\"* all|strong=\"G3956\"* generosity, which|strong=\"G3588\"* produces|strong=\"G2716\"* thanksgiving|strong=\"G2169\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* us|strong=\"G1519\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* service|strong=\"G1248\"* of|strong=\"G1223\"* giving|strong=\"G2169\"* that|strong=\"G3754\"* you|strong=\"G3754\"* perform not|strong=\"G3756\"* only|strong=\"G3440\"* makes up|strong=\"G2532\"* for|strong=\"G3754\"* lack|strong=\"G3756\"* among|strong=\"G3588\"* the|strong=\"G2532\"* saints, but|strong=\"G2532\"* abounds also|strong=\"G2532\"* through|strong=\"G1223\"* much|strong=\"G4183\"* giving|strong=\"G2169\"* of|strong=\"G1223\"* thanks|strong=\"G2169\"* to|strong=\"G2532\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 13, + "text": "seeing|strong=\"G1223\"* that|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G2532\"* proof|strong=\"G1382\"* given by|strong=\"G1223\"* this|strong=\"G3778\"* service|strong=\"G1248\"*, they|strong=\"G2532\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G2532\"* obedience|strong=\"G5292\"* of|strong=\"G1223\"* your|strong=\"G1223\"* confession|strong=\"G3671\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* for|strong=\"G1519\"* the|strong=\"G2532\"* generosity of|strong=\"G1223\"* your|strong=\"G1223\"* contribution|strong=\"G2842\"* to|strong=\"G1519\"* them|strong=\"G3588\"* and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 14, + "text": "while|strong=\"G2532\"* they|strong=\"G2532\"* themselves also|strong=\"G2532\"*, with|strong=\"G1223\"* supplication|strong=\"G1162\"* on|strong=\"G1909\"* your|strong=\"G1223\"* behalf|strong=\"G5228\"*, yearn|strong=\"G1971\"* for|strong=\"G5228\"* you|strong=\"G5210\"* by|strong=\"G1223\"* reason|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* exceeding|strong=\"G5235\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* in|strong=\"G1909\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "Now thanks|strong=\"G5485\"* be|strong=\"G2316\"* to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G1909\"* his|strong=\"G1909\"* unspeakable gift|strong=\"G1431\"*!" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* Paul|strong=\"G3972\"*, myself|strong=\"G1473\"*, entreat|strong=\"G3870\"* you|strong=\"G5210\"* by|strong=\"G1223\"* the|strong=\"G1722\"* humility|strong=\"G4240\"* and|strong=\"G2532\"* gentleness|strong=\"G4240\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"*, I|strong=\"G1473\"* who|strong=\"G3739\"* in|strong=\"G1722\"* your|strong=\"G1223\"* presence|strong=\"G4383\"* am|strong=\"G1473\"* lowly|strong=\"G5011\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, but|strong=\"G1161\"* being|strong=\"G2532\"* absent am|strong=\"G1473\"* bold|strong=\"G2292\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G3739\"* that|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G5100\"* not|strong=\"G3361\"*, when|strong=\"G1161\"* present|strong=\"G3918\"*, show courage|strong=\"G5111\"* with|strong=\"G1909\"* the|strong=\"G1161\"* confidence|strong=\"G4006\"* with|strong=\"G1909\"* which|strong=\"G3739\"* I|strong=\"G1473\"* intend to|strong=\"G2596\"* be|strong=\"G3361\"* bold|strong=\"G5111\"* against|strong=\"G2596\"* some|strong=\"G5100\"*, who|strong=\"G3739\"* consider|strong=\"G3049\"* us|strong=\"G2249\"* to|strong=\"G2596\"* be|strong=\"G3361\"* walking|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* though|strong=\"G1722\"* we|strong=\"G1063\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, we|strong=\"G1063\"* don’t wage|strong=\"G4754\"* war|strong=\"G4754\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"G1063\"* the|strong=\"G4314\"* weapons|strong=\"G3696\"* of|strong=\"G2316\"* our|strong=\"G2316\"* warfare|strong=\"G4752\"* are|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G2316\"* the|strong=\"G4314\"* flesh|strong=\"G4559\"*, but|strong=\"G1063\"* mighty|strong=\"G1415\"* before|strong=\"G4314\"* God|strong=\"G2316\"* to|strong=\"G4314\"* the|strong=\"G4314\"* throwing down|strong=\"G2507\"* of|strong=\"G2316\"* strongholds|strong=\"G3794\"*," + }, + { + "verseNum": 5, + "text": "throwing down|strong=\"G2507\"* imaginations|strong=\"G3053\"* and|strong=\"G2532\"* every|strong=\"G3956\"* high|strong=\"G3956\"* thing|strong=\"G3956\"* that|strong=\"G3588\"* is|strong=\"G3588\"* exalted against|strong=\"G2596\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* bringing every|strong=\"G3956\"* thought|strong=\"G3540\"* into|strong=\"G1519\"* captivity to|strong=\"G1519\"* the|strong=\"G2532\"* obedience|strong=\"G5218\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* being|strong=\"G2532\"* in|strong=\"G1722\"* readiness|strong=\"G2092\"* to|strong=\"G2532\"* avenge|strong=\"G1556\"* all|strong=\"G3956\"* disobedience|strong=\"G3876\"* when|strong=\"G3752\"* your|strong=\"G2192\"* obedience|strong=\"G5218\"* is|strong=\"G3588\"* made|strong=\"G4137\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 7, + "text": "Do|strong=\"G2532\"* you|strong=\"G1487\"* look at|strong=\"G1909\"* things|strong=\"G3778\"* only|strong=\"G1487\"* as|strong=\"G2531\"* they|strong=\"G2532\"* appear|strong=\"G1510\"* in|strong=\"G1909\"* front of|strong=\"G2532\"* your|strong=\"G2532\"* face|strong=\"G4383\"*? If|strong=\"G1487\"* anyone|strong=\"G5100\"* trusts|strong=\"G3982\"* in|strong=\"G1909\"* himself|strong=\"G1438\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, let|strong=\"G3049\"* him|strong=\"G3588\"* consider|strong=\"G3049\"* this|strong=\"G3778\"* again|strong=\"G3825\"* with|strong=\"G2532\"* himself|strong=\"G1438\"*, that|strong=\"G3754\"* even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, so|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G1510\"* Christ|strong=\"G5547\"*’s." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* if|strong=\"G1437\"* I|strong=\"G1473\"* boast|strong=\"G2744\"* somewhat|strong=\"G5100\"* abundantly concerning|strong=\"G4012\"* our|strong=\"G2532\"* authority|strong=\"G1849\"*, which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* for|strong=\"G1063\"* building|strong=\"G3619\"* you|strong=\"G5210\"* up|strong=\"G1519\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1063\"* casting|strong=\"G5100\"* you|strong=\"G5210\"* down|strong=\"G2506\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* ashamed," + }, + { + "verseNum": 9, + "text": "that|strong=\"G2443\"* I|strong=\"G5613\"* may|strong=\"G2443\"* not|strong=\"G3361\"* seem|strong=\"G1380\"* as|strong=\"G5613\"* if|strong=\"G5613\"* I|strong=\"G5613\"* desire to|strong=\"G2443\"* terrify|strong=\"G1629\"* you|strong=\"G5210\"* by|strong=\"G1223\"* my|strong=\"G3588\"* letters|strong=\"G1992\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G3754\"*, “His|strong=\"G2532\"* letters|strong=\"G1992\"*”, they|strong=\"G2532\"* say|strong=\"G5346\"*, “are|strong=\"G3588\"* weighty and|strong=\"G2532\"* strong|strong=\"G2478\"*, but|strong=\"G1161\"* his|strong=\"G2532\"* bodily|strong=\"G4983\"* presence|strong=\"G3952\"* is|strong=\"G3588\"* weak, and|strong=\"G2532\"* his|strong=\"G2532\"* speech|strong=\"G3056\"* is|strong=\"G3588\"* despised|strong=\"G1848\"*.”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"G3049\"* such|strong=\"G5108\"* a|strong=\"G2532\"* person|strong=\"G5108\"* consider|strong=\"G3049\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* what|strong=\"G3588\"* we|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G2532\"* word|strong=\"G3056\"* by|strong=\"G1223\"* letters|strong=\"G1992\"* when|strong=\"G2532\"* we|strong=\"G3754\"* are|strong=\"G1510\"* absent, such|strong=\"G5108\"* are|strong=\"G1510\"* we|strong=\"G3754\"* also|strong=\"G2532\"* in|strong=\"G2532\"* deed|strong=\"G2041\"* when|strong=\"G2532\"* we|strong=\"G3754\"* are|strong=\"G1510\"* present|strong=\"G3918\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* are|strong=\"G3588\"* not|strong=\"G3756\"* bold|strong=\"G5111\"* to|strong=\"G2532\"* number|strong=\"G3756\"* or|strong=\"G2228\"* compare|strong=\"G4793\"* ourselves|strong=\"G1438\"* with|strong=\"G1722\"* some|strong=\"G5100\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* commend|strong=\"G4921\"* themselves|strong=\"G1438\"*. But|strong=\"G2532\"* they|strong=\"G2532\"* themselves|strong=\"G1438\"*, measuring|strong=\"G3354\"* themselves|strong=\"G1438\"* by|strong=\"G1722\"* themselves|strong=\"G1438\"*, and|strong=\"G2532\"* comparing|strong=\"G4793\"* themselves|strong=\"G1438\"* with|strong=\"G1722\"* themselves|strong=\"G1438\"*, are|strong=\"G3588\"* without|strong=\"G2532\"* understanding|strong=\"G4920\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* will|strong=\"G2316\"* not|strong=\"G3756\"* boast|strong=\"G2744\"* beyond|strong=\"G1519\"* proper|strong=\"G3358\"* limits, but|strong=\"G1161\"* within|strong=\"G2596\"* the|strong=\"G2532\"* boundaries with|strong=\"G2532\"* which|strong=\"G3739\"* God|strong=\"G2316\"* appointed to|strong=\"G1519\"* us|strong=\"G1519\"*, which|strong=\"G3739\"* reach|strong=\"G2185\"* even|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* stretch|strong=\"G5239\"* ourselves|strong=\"G1438\"* too|strong=\"G2532\"* much, as|strong=\"G5613\"* though|strong=\"G5613\"* we|strong=\"G1063\"* didn’t|strong=\"G3588\"* reach|strong=\"G2185\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* we|strong=\"G1063\"* came|strong=\"G2532\"* even|strong=\"G2532\"* as|strong=\"G5613\"* far|strong=\"G3588\"* as|strong=\"G5613\"* to|strong=\"G1519\"* you|strong=\"G5210\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3756\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 15, + "text": "not|strong=\"G3756\"* boasting|strong=\"G2744\"* beyond|strong=\"G1519\"* proper limits in|strong=\"G1722\"* other|strong=\"G1161\"* men|strong=\"G3588\"*’s|strong=\"G2192\"* labors|strong=\"G2873\"*, but|strong=\"G1161\"* having|strong=\"G2192\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* as|strong=\"G1519\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* grows, we|strong=\"G2249\"* will|strong=\"G1473\"* be|strong=\"G3756\"* abundantly|strong=\"G4050\"* enlarged|strong=\"G3170\"* by|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* our|strong=\"G1722\"* sphere|strong=\"G2583\"* of|strong=\"G1722\"* influence," + }, + { + "verseNum": 16, + "text": "so|strong=\"G1519\"* as|strong=\"G1519\"* to|strong=\"G1519\"* preach|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* even|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G1722\"* parts beyond|strong=\"G1519\"* you|strong=\"G5210\"*, not|strong=\"G3756\"* to|strong=\"G1519\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* what|strong=\"G3588\"* someone else has|strong=\"G1519\"* already done." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* “he|strong=\"G1161\"* who|strong=\"G3588\"* boasts|strong=\"G2744\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*.”+ 10:17 Jeremiah 9:24 *" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* isn’t|strong=\"G3588\"* he|strong=\"G3739\"* who|strong=\"G3739\"* commends|strong=\"G4921\"* himself|strong=\"G1438\"* who|strong=\"G3739\"* is|strong=\"G1510\"* approved|strong=\"G1384\"*, but|strong=\"G1063\"* whom|strong=\"G3739\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* commends|strong=\"G4921\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* wish|strong=\"G3785\"* that|strong=\"G2532\"* you|strong=\"G2532\"* would|strong=\"G2532\"* bear|strong=\"G2532\"* with|strong=\"G2532\"* me|strong=\"G1473\"* in|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G3398\"* foolishness, but|strong=\"G2532\"* indeed|strong=\"G2532\"* you|strong=\"G2532\"* do|strong=\"G2532\"* bear|strong=\"G2532\"* with|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* am|strong=\"G3588\"* jealous|strong=\"G2206\"* over|strong=\"G2206\"* you|strong=\"G5210\"* with|strong=\"G2316\"* a|strong=\"G1520\"* godly|strong=\"G2316\"* jealousy|strong=\"G2205\"*. For|strong=\"G1063\"* I|strong=\"G1063\"* promised you|strong=\"G5210\"* in|strong=\"G2316\"* marriage to|strong=\"G2316\"* one|strong=\"G1520\"* husband, that|strong=\"G3588\"* I|strong=\"G1063\"* might|strong=\"G2316\"* present|strong=\"G3936\"* you|strong=\"G5210\"* as|strong=\"G1063\"* a|strong=\"G1520\"* pure virgin|strong=\"G3933\"* to|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* am|strong=\"G2532\"* afraid|strong=\"G5399\"* that|strong=\"G3588\"* somehow, as|strong=\"G5613\"* the|strong=\"G1722\"* serpent|strong=\"G3789\"* deceived|strong=\"G1818\"* Eve|strong=\"G2096\"* in|strong=\"G1722\"* his|strong=\"G1519\"* craftiness|strong=\"G3834\"*, so|strong=\"G2532\"* your|strong=\"G2532\"* minds|strong=\"G3540\"* might|strong=\"G2532\"* be|strong=\"G2532\"* corrupted|strong=\"G5351\"* from|strong=\"G2532\"* the|strong=\"G1722\"* simplicity that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* he|strong=\"G3739\"* who|strong=\"G3739\"* comes|strong=\"G2064\"* preaches|strong=\"G2784\"* another|strong=\"G2087\"* Jesus|strong=\"G2424\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* didn’t|strong=\"G3588\"* preach|strong=\"G2784\"*, or|strong=\"G2228\"* if|strong=\"G1487\"* you|strong=\"G3739\"* receive|strong=\"G2983\"* a|strong=\"G2983\"* different|strong=\"G2087\"* spirit|strong=\"G4151\"* which|strong=\"G3739\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"*, or|strong=\"G2228\"* a|strong=\"G2983\"* different|strong=\"G2087\"* “good|strong=\"G2573\"* news|strong=\"G2098\"*” which|strong=\"G3739\"* you|strong=\"G3739\"* didn’t|strong=\"G3588\"* accept|strong=\"G2983\"*, you|strong=\"G3739\"* put|strong=\"G2424\"* up|strong=\"G1209\"* with|strong=\"G2064\"* that|strong=\"G3739\"* well|strong=\"G2573\"* enough|strong=\"G2573\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* reckon|strong=\"G3049\"* that|strong=\"G3588\"* I|strong=\"G1063\"* am|strong=\"G3588\"* not|strong=\"G3367\"* at|strong=\"G3588\"* all|strong=\"G3588\"* behind|strong=\"G5302\"* the|strong=\"G3588\"* very|strong=\"G3029\"* best apostles." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* though|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G2532\"* unskilled|strong=\"G2399\"* in|strong=\"G1722\"* speech|strong=\"G3056\"*, yet|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G2532\"* not|strong=\"G3756\"* unskilled|strong=\"G2399\"* in|strong=\"G1722\"* knowledge|strong=\"G1108\"*. No|strong=\"G3756\"*, in|strong=\"G1722\"* every|strong=\"G3956\"* way|strong=\"G1722\"* we|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* to|strong=\"G1519\"* you|strong=\"G5210\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "Or|strong=\"G2228\"* did|strong=\"G4160\"* I|strong=\"G3754\"* commit|strong=\"G4160\"* a|strong=\"G4160\"* sin in|strong=\"G2316\"* humbling|strong=\"G5013\"* myself|strong=\"G1683\"* that|strong=\"G3754\"* you|strong=\"G5210\"* might|strong=\"G2316\"* be|strong=\"G2316\"* exalted|strong=\"G5312\"*, because|strong=\"G3754\"* I|strong=\"G3754\"* preached|strong=\"G2097\"* to|strong=\"G2443\"* you|strong=\"G5210\"* God|strong=\"G2316\"*’s Good|strong=\"G2097\"* News|strong=\"G2097\"* free of|strong=\"G2316\"* charge?" + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* robbed|strong=\"G4813\"* other|strong=\"G3588\"* assemblies|strong=\"G1577\"*, taking|strong=\"G2983\"* wages|strong=\"G3800\"* from|strong=\"G2532\"* them|strong=\"G3588\"* that|strong=\"G3588\"* I|strong=\"G2532\"* might|strong=\"G2532\"* serve|strong=\"G1248\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G2532\"* I|strong=\"G1473\"* was|strong=\"G3588\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"* and|strong=\"G2532\"* was|strong=\"G3588\"* in|strong=\"G1722\"* need|strong=\"G5303\"*, I|strong=\"G1473\"* wasn’t|strong=\"G3588\"* a|strong=\"G2532\"* burden|strong=\"G2655\"* on|strong=\"G1722\"* anyone|strong=\"G3956\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* brothers, when|strong=\"G2532\"* they|strong=\"G2532\"* came|strong=\"G2064\"* from|strong=\"G2064\"* Macedonia|strong=\"G3109\"*, supplied|strong=\"G4322\"* the|strong=\"G1722\"* measure of|strong=\"G2532\"* my|strong=\"G5083\"* need|strong=\"G5303\"*. In|strong=\"G1722\"* everything|strong=\"G3956\"* I|strong=\"G1473\"* kept|strong=\"G5083\"* myself|strong=\"G1683\"* from|strong=\"G2064\"* being|strong=\"G2532\"* burdensome|strong=\"G2655\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* continue|strong=\"G2532\"* to|strong=\"G4314\"* do|strong=\"G2532\"* so|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G1519\"* the|strong=\"G1722\"* truth of|strong=\"G1722\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, no|strong=\"G3756\"* one|strong=\"G3588\"* will|strong=\"G1510\"* stop me|strong=\"G1473\"* from|strong=\"G3756\"* this|strong=\"G3778\"* boasting|strong=\"G2746\"* in|strong=\"G1722\"* the|strong=\"G1722\"* regions|strong=\"G2824\"* of|strong=\"G1722\"* Achaia." + }, + { + "verseNum": 11, + "text": "Why|strong=\"G5101\"*? Because|strong=\"G3754\"* I|strong=\"G3754\"* don’t|strong=\"G3588\"* love you|strong=\"G5210\"*? God|strong=\"G2316\"* knows|strong=\"G1492\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* what|strong=\"G3739\"* I|strong=\"G1473\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* will|strong=\"G2309\"* continue|strong=\"G2532\"* to|strong=\"G2443\"* do|strong=\"G4160\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* cut|strong=\"G1581\"* off|strong=\"G1581\"* opportunity from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* desire|strong=\"G2309\"* an|strong=\"G2532\"* opportunity, that|strong=\"G2443\"* in|strong=\"G1722\"* which|strong=\"G3739\"* they|strong=\"G2532\"* boast|strong=\"G2744\"*, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* recognized just|strong=\"G2531\"* like|strong=\"G2531\"* us|strong=\"G4160\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* such|strong=\"G5108\"* men|strong=\"G5108\"* are|strong=\"G3588\"* false|strong=\"G5570\"* apostles|strong=\"G5570\"*, deceitful|strong=\"G1386\"* workers|strong=\"G2040\"*, masquerading as|strong=\"G1519\"* Christ|strong=\"G5547\"*’s apostles|strong=\"G5570\"*." + }, + { + "verseNum": 14, + "text": "And|strong=\"G2532\"* no|strong=\"G3756\"* wonder|strong=\"G2295\"*, for|strong=\"G1063\"* even|strong=\"G2532\"* Satan|strong=\"G4567\"* masquerades as|strong=\"G1519\"* an|strong=\"G2532\"* angel of|strong=\"G2532\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* great|strong=\"G3173\"* thing|strong=\"G3739\"* therefore|strong=\"G3767\"* if|strong=\"G1487\"* his|strong=\"G2532\"* servants|strong=\"G1249\"* also|strong=\"G2532\"* masquerade as|strong=\"G5613\"* servants|strong=\"G1249\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*, whose|strong=\"G3739\"* end|strong=\"G5056\"* will|strong=\"G1510\"* be|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"G1473\"* say|strong=\"G3004\"* again|strong=\"G3825\"*, let|strong=\"G1161\"* no|strong=\"G3361\"* one|strong=\"G5100\"* think|strong=\"G1380\"* me|strong=\"G1473\"* foolish. But|strong=\"G1161\"* if|strong=\"G1487\"* so|strong=\"G2443\"*, yet|strong=\"G1161\"* receive|strong=\"G1209\"* me|strong=\"G1473\"* as|strong=\"G5613\"* foolish, that|strong=\"G2443\"* I|strong=\"G1473\"* also|strong=\"G2504\"* may|strong=\"G2443\"* boast|strong=\"G2744\"* a|strong=\"G5613\"* little|strong=\"G3398\"*." + }, + { + "verseNum": 17, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* I|strong=\"G3739\"* speak|strong=\"G2980\"*, I|strong=\"G3739\"* don’t|strong=\"G3588\"* speak|strong=\"G2980\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, but|strong=\"G3588\"* as|strong=\"G5613\"* in|strong=\"G1722\"* foolishness, in|strong=\"G1722\"* this|strong=\"G3778\"* confidence|strong=\"G5287\"* of|strong=\"G2962\"* boasting|strong=\"G2746\"*." + }, + { + "verseNum": 18, + "text": "Seeing|strong=\"G1893\"* that|strong=\"G2596\"* many|strong=\"G4183\"* boast|strong=\"G2744\"* after|strong=\"G2596\"* the|strong=\"G2596\"* flesh|strong=\"G4561\"*, I|strong=\"G2504\"* will|strong=\"G4183\"* also|strong=\"G2504\"* boast|strong=\"G2744\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* you|strong=\"G1510\"* bear with|strong=\"G3588\"* the|strong=\"G3588\"* foolish gladly|strong=\"G2234\"*, being|strong=\"G1510\"* wise|strong=\"G5429\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* bear with|strong=\"G1519\"* a|strong=\"G1519\"* man|strong=\"G5100\"* if|strong=\"G1487\"* he|strong=\"G1063\"* brings|strong=\"G1519\"* you|strong=\"G5210\"* into|strong=\"G1519\"* bondage|strong=\"G2615\"*, if|strong=\"G1487\"* he|strong=\"G1063\"* devours|strong=\"G2719\"* you|strong=\"G5210\"*, if|strong=\"G1487\"* he|strong=\"G1063\"* takes|strong=\"G2983\"* you|strong=\"G5210\"* captive, if|strong=\"G1487\"* he|strong=\"G1063\"* exalts|strong=\"G1869\"* himself|strong=\"G1519\"*, or|strong=\"G1487\"* if|strong=\"G1487\"* he|strong=\"G1063\"* strikes|strong=\"G1194\"* you|strong=\"G5210\"* on|strong=\"G1519\"* the|strong=\"G1519\"* face|strong=\"G4383\"*." + }, + { + "verseNum": 21, + "text": "To|strong=\"G2596\"* my|strong=\"G1722\"* shame, I|strong=\"G1473\"* speak|strong=\"G3004\"* as|strong=\"G5613\"* though|strong=\"G5613\"* we|strong=\"G2249\"* had|strong=\"G3739\"* been|strong=\"G5100\"* weak. Yet|strong=\"G1161\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* way|strong=\"G2596\"* anyone|strong=\"G5100\"* is|strong=\"G3739\"* bold|strong=\"G5111\"* (I|strong=\"G1473\"* speak|strong=\"G3004\"* in|strong=\"G1722\"* foolishness), I|strong=\"G1473\"* am|strong=\"G1473\"* bold|strong=\"G5111\"* also|strong=\"G2504\"*." + }, + { + "verseNum": 22, + "text": "Are|strong=\"G1510\"* they|strong=\"G1510\"* Hebrews|strong=\"G1445\"*? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*. Are|strong=\"G1510\"* they|strong=\"G1510\"* Israelites|strong=\"G2475\"*? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*. Are|strong=\"G1510\"* they|strong=\"G1510\"* the|strong=\"G1510\"* offspring+ 11:22 or, seed* of|strong=\"G4690\"* Abraham? So|strong=\"G2504\"* am|strong=\"G1510\"* I|strong=\"G2504\"*." + }, + { + "verseNum": 23, + "text": "Are|strong=\"G1510\"* they|strong=\"G1510\"* servants|strong=\"G1249\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*? (I|strong=\"G1473\"* speak|strong=\"G2980\"* as|strong=\"G1722\"* one|strong=\"G1722\"* beside himself.) I|strong=\"G1473\"* am|strong=\"G1510\"* more|strong=\"G5228\"* so|strong=\"G1722\"*: in|strong=\"G1722\"* labors|strong=\"G2873\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, in|strong=\"G1722\"* prisons|strong=\"G5438\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, in|strong=\"G1722\"* stripes|strong=\"G4127\"* above|strong=\"G5228\"* measure|strong=\"G5234\"*, and|strong=\"G2980\"* in|strong=\"G1722\"* deaths|strong=\"G2288\"* often|strong=\"G4178\"*." + }, + { + "verseNum": 24, + "text": "Five|strong=\"G3999\"* times|strong=\"G3999\"* I|strong=\"G2453\"* received|strong=\"G2983\"* forty|strong=\"G5062\"* stripes minus one|strong=\"G1520\"* from|strong=\"G3844\"* the|strong=\"G2983\"* Jews|strong=\"G2453\"*." + }, + { + "verseNum": 25, + "text": "Three|strong=\"G5151\"* times|strong=\"G5151\"* I|strong=\"G1722\"* was|strong=\"G3588\"* beaten|strong=\"G4463\"* with|strong=\"G1722\"* rods|strong=\"G4463\"*. Once I|strong=\"G1722\"* was|strong=\"G3588\"* stoned|strong=\"G3034\"*. Three|strong=\"G5151\"* times|strong=\"G5151\"* I|strong=\"G1722\"* suffered|strong=\"G3489\"* shipwreck|strong=\"G3489\"*. I|strong=\"G1722\"* have|strong=\"G4160\"* been|strong=\"G4160\"* a|strong=\"G1722\"* night|strong=\"G3574\"* and|strong=\"G4160\"* a|strong=\"G1722\"* day|strong=\"G3574\"* in|strong=\"G1722\"* the|strong=\"G1722\"* deep|strong=\"G1037\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"G1722\"* have|strong=\"G1484\"* been|strong=\"G4178\"* in|strong=\"G1722\"* travels often|strong=\"G4178\"*, perils|strong=\"G2794\"* of|strong=\"G1537\"* rivers|strong=\"G4215\"*, perils|strong=\"G2794\"* of|strong=\"G1537\"* robbers|strong=\"G3027\"*, perils|strong=\"G2794\"* from|strong=\"G1537\"* my|strong=\"G1722\"* countrymen|strong=\"G1085\"*, perils|strong=\"G2794\"* from|strong=\"G1537\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* city|strong=\"G4172\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2047\"*, perils|strong=\"G2794\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, perils|strong=\"G2794\"* among|strong=\"G1722\"* false|strong=\"G5569\"* brothers;" + }, + { + "verseNum": 27, + "text": "in|strong=\"G1722\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"*, in|strong=\"G1722\"* watchings often|strong=\"G4178\"*, in|strong=\"G1722\"* hunger|strong=\"G3042\"* and|strong=\"G2532\"* thirst|strong=\"G1373\"*, in|strong=\"G1722\"* fastings|strong=\"G3521\"* often|strong=\"G4178\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* cold|strong=\"G5592\"* and|strong=\"G2532\"* nakedness|strong=\"G1132\"*." + }, + { + "verseNum": 28, + "text": "Besides|strong=\"G5565\"* those|strong=\"G3588\"* things|strong=\"G3956\"* that|strong=\"G3588\"* are|strong=\"G3588\"* outside, there|strong=\"G2250\"* is|strong=\"G3588\"* that|strong=\"G3588\"* which|strong=\"G3588\"* presses on|strong=\"G2596\"* me|strong=\"G1473\"* daily|strong=\"G2250\"*: anxiety|strong=\"G3308\"* for|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* assemblies|strong=\"G1577\"*." + }, + { + "verseNum": 29, + "text": "Who|strong=\"G5101\"* is|strong=\"G5101\"* weak, and|strong=\"G2532\"* I|strong=\"G1473\"* am|strong=\"G1473\"* not|strong=\"G3756\"* weak? Who|strong=\"G5101\"* is|strong=\"G5101\"* caused to|strong=\"G2532\"* stumble|strong=\"G4624\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* don’t burn|strong=\"G4448\"* with|strong=\"G2532\"* indignation?" + }, + { + "verseNum": 30, + "text": "If|strong=\"G1487\"* I|strong=\"G1473\"* must|strong=\"G1163\"* boast|strong=\"G2744\"*, I|strong=\"G1473\"* will|strong=\"G1473\"* boast|strong=\"G2744\"* of|strong=\"G3588\"* the|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G3588\"* concern my|strong=\"G1473\"* weakness." + }, + { + "verseNum": 31, + "text": "The|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* blessed|strong=\"G2128\"* forever|strong=\"G1519\"* more|strong=\"G2532\"*, knows|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G2532\"* don’t|strong=\"G3588\"* lie|strong=\"G5574\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"G1722\"* Damascus|strong=\"G1154\"* the|strong=\"G1722\"* governor|strong=\"G1481\"* under|strong=\"G1722\"* King|strong=\"G3588\"* Aretas guarded the|strong=\"G1722\"* Damascenes|strong=\"G1153\"*’ city|strong=\"G4172\"*, desiring to|strong=\"G1722\"* arrest|strong=\"G4084\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"G2532\"* was|strong=\"G3588\"* let|strong=\"G5465\"* down|strong=\"G5465\"* in|strong=\"G1722\"* a|strong=\"G2532\"* basket|strong=\"G4553\"* through|strong=\"G1223\"* a|strong=\"G2532\"* window|strong=\"G2376\"* by|strong=\"G1223\"* the|strong=\"G1722\"* wall|strong=\"G5038\"*, and|strong=\"G2532\"* escaped|strong=\"G1628\"* his|strong=\"G1223\"* hands|strong=\"G5495\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"G2532\"* is|strong=\"G2962\"* doubtless not|strong=\"G3756\"* profitable|strong=\"G4851\"* for|strong=\"G1519\"* me|strong=\"G3756\"* to|strong=\"G1519\"* boast|strong=\"G2744\"*, but|strong=\"G1161\"* I|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* visions|strong=\"G3701\"* and|strong=\"G2532\"* revelations of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2193\"* know|strong=\"G1492\"* a|strong=\"G1722\"* man|strong=\"G5108\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* who|strong=\"G3588\"* was|strong=\"G3588\"* caught|strong=\"G5108\"* up|strong=\"G1722\"* into|strong=\"G1722\"* the|strong=\"G1722\"* third|strong=\"G5154\"* heaven|strong=\"G3772\"* fourteen|strong=\"G1180\"* years|strong=\"G2094\"* ago|strong=\"G4253\"*—whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2193\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*, or|strong=\"G1535\"* whether|strong=\"G1535\"* out|strong=\"G1535\"* of|strong=\"G2316\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2193\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; God|strong=\"G2316\"* knows|strong=\"G1492\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* such|strong=\"G5108\"* a|strong=\"G2532\"* man|strong=\"G5108\"* (whether|strong=\"G1535\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, or|strong=\"G1535\"* outside of|strong=\"G2316\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*; God|strong=\"G2316\"* knows|strong=\"G1492\"*)," + }, + { + "verseNum": 4, + "text": "how|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* caught up|strong=\"G1519\"* into|strong=\"G1519\"* Paradise|strong=\"G3857\"* and|strong=\"G2532\"* heard unspeakable words|strong=\"G4487\"*, which|strong=\"G3739\"* it|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* lawful|strong=\"G1832\"* for|strong=\"G3754\"* a|strong=\"G2532\"* man|strong=\"G3739\"* to|strong=\"G1519\"* utter|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1722\"* such|strong=\"G5108\"* a|strong=\"G1722\"* one|strong=\"G5108\"* I|strong=\"G1473\"* will|strong=\"G1473\"* boast|strong=\"G2744\"*, but|strong=\"G1161\"* on|strong=\"G1722\"* my|strong=\"G1722\"* own|strong=\"G1683\"* behalf|strong=\"G5228\"* I|strong=\"G1473\"* will|strong=\"G1473\"* not|strong=\"G3756\"* boast|strong=\"G2744\"*, except|strong=\"G1487\"* in|strong=\"G1722\"* my|strong=\"G1722\"* weaknesses." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* I|strong=\"G1473\"* would|strong=\"G2309\"* desire|strong=\"G2309\"* to|strong=\"G1519\"* boast|strong=\"G2744\"*, I|strong=\"G1473\"* will|strong=\"G2309\"* not|strong=\"G3756\"* be|strong=\"G1510\"* foolish; for|strong=\"G1063\"* I|strong=\"G1473\"* will|strong=\"G2309\"* speak|strong=\"G3004\"* the|strong=\"G1519\"* truth. But|strong=\"G1161\"* I|strong=\"G1473\"* refrain|strong=\"G3756\"*, so|strong=\"G1161\"* that|strong=\"G3739\"* no|strong=\"G3756\"* man|strong=\"G5100\"* may|strong=\"G5100\"* think|strong=\"G3049\"* more|strong=\"G5228\"* of|strong=\"G1537\"* me|strong=\"G1473\"* than|strong=\"G2228\"* that|strong=\"G3739\"* which|strong=\"G3739\"* he|strong=\"G1161\"* sees in|strong=\"G1519\"* me|strong=\"G1473\"* or|strong=\"G2228\"* hears from|strong=\"G1537\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 7, + "text": "By|strong=\"G2532\"* reason|strong=\"G1352\"* of|strong=\"G2532\"* the|strong=\"G2532\"* exceeding|strong=\"G5236\"* greatness|strong=\"G5236\"* of|strong=\"G2532\"* the|strong=\"G2532\"* revelations, that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G2532\"* exalted excessively|strong=\"G5236\"*, a|strong=\"G2532\"* thorn|strong=\"G4647\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* me|strong=\"G1325\"*: a|strong=\"G2532\"* messenger of|strong=\"G2532\"* Satan|strong=\"G4567\"* to|strong=\"G2443\"* torment|strong=\"G2852\"* me|strong=\"G1325\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* should|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G2532\"* exalted excessively|strong=\"G5236\"*." + }, + { + "verseNum": 8, + "text": "Concerning|strong=\"G5228\"* this|strong=\"G3778\"* thing|strong=\"G3778\"*, I|strong=\"G1473\"* begged|strong=\"G3870\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* three|strong=\"G5151\"* times|strong=\"G5151\"* that|strong=\"G2443\"* it|strong=\"G3778\"* might|strong=\"G3778\"* depart from|strong=\"G3588\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* has|strong=\"G5547\"* said|strong=\"G3004\"* to|strong=\"G2443\"* me|strong=\"G1473\"*, “\\+w My|strong=\"G1722\"\\+w* \\+w grace|strong=\"G5485\"\\+w* \\+w is|strong=\"G3588\"\\+w* sufficient \\+w for|strong=\"G1063\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w for|strong=\"G1063\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w power|strong=\"G1411\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w made|strong=\"G3004\"\\+w* perfect \\+w in|strong=\"G1722\"\\+w* weakness.”* Most|strong=\"G3123\"* gladly|strong=\"G2236\"* therefore|strong=\"G3767\"* I|strong=\"G1473\"* will|strong=\"G2532\"* rather|strong=\"G3123\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* my|strong=\"G1722\"* weaknesses, that|strong=\"G2443\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"* may|strong=\"G2532\"* rest|strong=\"G1981\"* on|strong=\"G1909\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* take|strong=\"G2106\"* pleasure|strong=\"G2106\"* in|strong=\"G1722\"* weaknesses, in|strong=\"G1722\"* injuries, in|strong=\"G1722\"* necessities, in|strong=\"G1722\"* persecutions|strong=\"G1375\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* distresses|strong=\"G4730\"*, for|strong=\"G1063\"* Christ|strong=\"G5547\"*’s sake|strong=\"G5228\"*. For|strong=\"G1063\"* when|strong=\"G3752\"* I|strong=\"G2532\"* am|strong=\"G1510\"* weak, then|strong=\"G2532\"* am|strong=\"G1510\"* I|strong=\"G2532\"* strong|strong=\"G1415\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* become|strong=\"G1096\"* foolish|strong=\"G2532\"* in|strong=\"G2532\"* boasting. You|strong=\"G5210\"* compelled me|strong=\"G1473\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G1510\"* commended|strong=\"G4921\"* by|strong=\"G5259\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1510\"* in|strong=\"G2532\"* no|strong=\"G3762\"* way inferior|strong=\"G5302\"* to|strong=\"G2532\"* the|strong=\"G2532\"* very|strong=\"G3029\"* best apostles, though|strong=\"G1487\"* I|strong=\"G1473\"* am|strong=\"G1510\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 12, + "text": "Truly|strong=\"G3303\"* the|strong=\"G1722\"* signs|strong=\"G4592\"* of|strong=\"G2532\"* an|strong=\"G2532\"* apostle were|strong=\"G3588\"* worked among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* all|strong=\"G3956\"* perseverance|strong=\"G5281\"*, in|strong=\"G1722\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"* and|strong=\"G2532\"* mighty|strong=\"G1411\"* works|strong=\"G1411\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* is|strong=\"G1510\"* there|strong=\"G1063\"* in|strong=\"G1577\"* which|strong=\"G3739\"* you|strong=\"G5210\"* were|strong=\"G1510\"* made|strong=\"G3756\"* inferior|strong=\"G2274\"* to|strong=\"G3756\"* the|strong=\"G3588\"* rest|strong=\"G3062\"* of|strong=\"G1577\"* the|strong=\"G3588\"* assemblies|strong=\"G1577\"*, unless|strong=\"G1487\"* it|strong=\"G3754\"* is|strong=\"G1510\"* that|strong=\"G3754\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* was|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G1510\"* burden|strong=\"G2655\"* to|strong=\"G3756\"* you|strong=\"G5210\"*? Forgive|strong=\"G5483\"* me|strong=\"G1473\"* this|strong=\"G3778\"* wrong!" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"G2400\"*, this|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"* I|strong=\"G2532\"* am|strong=\"G2532\"* ready|strong=\"G2093\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G2532\"* a|strong=\"G2192\"* burden|strong=\"G2655\"* to|strong=\"G4314\"* you|strong=\"G5210\"*; for|strong=\"G1063\"* I|strong=\"G2532\"* seek|strong=\"G2212\"* not|strong=\"G3756\"* your|strong=\"G2192\"* possessions, but|strong=\"G2532\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* the|strong=\"G2532\"* children|strong=\"G5043\"* ought|strong=\"G3784\"* not|strong=\"G3756\"* to|strong=\"G4314\"* save|strong=\"G2343\"* up|strong=\"G2343\"* for|strong=\"G1063\"* the|strong=\"G2532\"* parents|strong=\"G1118\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* parents|strong=\"G1118\"* for|strong=\"G1063\"* the|strong=\"G2532\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"G1473\"* will|strong=\"G2532\"* most|strong=\"G5228\"* gladly|strong=\"G2236\"* spend|strong=\"G1159\"* and|strong=\"G2532\"* be|strong=\"G2532\"* spent|strong=\"G1159\"* for|strong=\"G5228\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*. If|strong=\"G1487\"* I|strong=\"G1473\"* love you|strong=\"G5210\"* more|strong=\"G5228\"* abundantly|strong=\"G4056\"*, am|strong=\"G1473\"* I|strong=\"G1473\"* loved the|strong=\"G2532\"* less|strong=\"G2276\"*?" + }, + { + "verseNum": 16, + "text": "Even|strong=\"G1161\"* so|strong=\"G1161\"*, I|strong=\"G1473\"* myself|strong=\"G1473\"* didn’t burden|strong=\"G2599\"* you|strong=\"G5210\"*. But|strong=\"G1161\"* you|strong=\"G5210\"* might|strong=\"G5210\"* say|strong=\"G1473\"* that|strong=\"G1161\"* being|strong=\"G1510\"* crafty|strong=\"G3835\"*, I|strong=\"G1473\"* caught|strong=\"G2983\"* you|strong=\"G5210\"* with|strong=\"G3756\"* deception." + }, + { + "verseNum": 17, + "text": "Did|strong=\"G3361\"* I|strong=\"G3739\"* take|strong=\"G4122\"* advantage|strong=\"G4122\"* of|strong=\"G1223\"* you|strong=\"G5210\"* by|strong=\"G1223\"* anyone|strong=\"G5100\"* of|strong=\"G1223\"* those|strong=\"G3739\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G5210\"* sent to|strong=\"G4314\"* you|strong=\"G5210\"*?" + }, + { + "verseNum": 18, + "text": "I|strong=\"G2532\"* exhorted|strong=\"G3870\"* Titus|strong=\"G5103\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* sent|strong=\"G4882\"* the|strong=\"G2532\"* brother with|strong=\"G2532\"* him|strong=\"G3588\"*. Did|strong=\"G2532\"* Titus|strong=\"G5103\"* take|strong=\"G2532\"* any|strong=\"G3756\"* advantage|strong=\"G4122\"* of|strong=\"G4151\"* you|strong=\"G5210\"*? Didn’t|strong=\"G3588\"* we|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* spirit|strong=\"G4151\"*? Didn’t|strong=\"G3588\"* we|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* steps|strong=\"G2487\"*?" + }, + { + "verseNum": 19, + "text": "Again, do|strong=\"G1380\"* you|strong=\"G5210\"* think|strong=\"G1380\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G3588\"* excusing ourselves to|strong=\"G1722\"* you|strong=\"G5210\"*? In|strong=\"G1722\"* the|strong=\"G1722\"* sight|strong=\"G2713\"* of|strong=\"G2316\"* God|strong=\"G2316\"* we|strong=\"G3754\"* speak|strong=\"G2980\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*. But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, beloved, are|strong=\"G3588\"* for|strong=\"G3754\"* your|strong=\"G3956\"* edifying|strong=\"G3619\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* I|strong=\"G2504\"* am|strong=\"G2309\"* afraid|strong=\"G5399\"* that|strong=\"G3361\"* perhaps|strong=\"G3381\"* when|strong=\"G2064\"* I|strong=\"G2504\"* come|strong=\"G2064\"*, I|strong=\"G2504\"* might|strong=\"G5210\"* find|strong=\"G2147\"* you|strong=\"G5210\"* not|strong=\"G3756\"* the|strong=\"G1063\"* way I|strong=\"G2504\"* want|strong=\"G2309\"* to|strong=\"G2309\"*, and|strong=\"G2064\"* that|strong=\"G3361\"* I|strong=\"G2504\"* might|strong=\"G5210\"* be|strong=\"G3756\"* found|strong=\"G2147\"* by|strong=\"G2064\"* you|strong=\"G5210\"* as|strong=\"G3634\"* you|strong=\"G5210\"* don’t desire|strong=\"G2309\"*, that|strong=\"G3361\"* perhaps|strong=\"G3381\"* there|strong=\"G1063\"* would|strong=\"G2309\"* be|strong=\"G3756\"* strife|strong=\"G2054\"*, jealousy|strong=\"G2205\"*, outbursts|strong=\"G2372\"* of|strong=\"G2372\"* anger|strong=\"G2372\"*, factions, slander|strong=\"G2636\"*, whisperings|strong=\"G5587\"*, proud thoughts, or|strong=\"G3361\"* riots," + }, + { + "verseNum": 21, + "text": "that|strong=\"G3739\"* again|strong=\"G3825\"* when|strong=\"G2532\"* I|strong=\"G1473\"* come|strong=\"G2064\"* my|strong=\"G1473\"* God|strong=\"G2316\"* would|strong=\"G2316\"* humble|strong=\"G5013\"* me|strong=\"G1473\"* before|strong=\"G1909\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* would|strong=\"G2316\"* mourn|strong=\"G3996\"* for|strong=\"G1909\"* many|strong=\"G4183\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* sinned|strong=\"G4258\"* before|strong=\"G1909\"* now|strong=\"G2532\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* repented|strong=\"G3340\"* of|strong=\"G2316\"* the|strong=\"G2532\"* uncleanness, sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* lustfulness which|strong=\"G3739\"* they|strong=\"G2532\"* committed|strong=\"G4238\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3778\"* is|strong=\"G3778\"* the|strong=\"G2532\"* third|strong=\"G5154\"* time|strong=\"G5154\"* I|strong=\"G2532\"* am|strong=\"G2532\"* coming|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*. “At|strong=\"G1909\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G2532\"* two|strong=\"G1417\"* or|strong=\"G2532\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"* shall|strong=\"G2532\"* every|strong=\"G3956\"* word|strong=\"G4487\"* be|strong=\"G2532\"* established|strong=\"G2476\"*.”+ 13:1 Deuteronomy 19:15*" + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* warned previously, and|strong=\"G2532\"* I|strong=\"G2532\"* warn again|strong=\"G3825\"*, as|strong=\"G5613\"* when|strong=\"G5613\"* I|strong=\"G2532\"* was|strong=\"G3588\"* present|strong=\"G3568\"* the|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, so|strong=\"G2532\"* now|strong=\"G3568\"*, being|strong=\"G2532\"* absent, I|strong=\"G2532\"* write to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* sinned|strong=\"G4258\"* before|strong=\"G1519\"* now|strong=\"G3568\"* and|strong=\"G2532\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* that|strong=\"G3754\"* if|strong=\"G1437\"* I|strong=\"G2532\"* come|strong=\"G2064\"* again|strong=\"G3825\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* spare|strong=\"G5339\"*," + }, + { + "verseNum": 3, + "text": "seeing|strong=\"G1893\"* that|strong=\"G3739\"* you|strong=\"G5210\"* seek|strong=\"G2212\"* a|strong=\"G1519\"* proof|strong=\"G1382\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"* who|strong=\"G3739\"* speaks|strong=\"G2980\"* in|strong=\"G1722\"* me|strong=\"G1473\"* who|strong=\"G3739\"* is|strong=\"G3588\"* not|strong=\"G3756\"* weak, but|strong=\"G3588\"* is|strong=\"G3588\"* powerful in|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G2532\"* crucified|strong=\"G4717\"* through|strong=\"G1722\"* weakness, yet|strong=\"G2532\"* he|strong=\"G2532\"* lives|strong=\"G2198\"* through|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* also|strong=\"G2532\"* are|strong=\"G2532\"* weak in|strong=\"G1722\"* him|strong=\"G2532\"*, but|strong=\"G2532\"* we|strong=\"G2249\"* will|strong=\"G2316\"* live|strong=\"G2198\"* with|strong=\"G1722\"* him|strong=\"G2532\"* through|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1537\"* God|strong=\"G2316\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "Examine|strong=\"G1381\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, whether|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*. Test|strong=\"G3985\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*. Or|strong=\"G2228\"* don’t|strong=\"G3588\"* you|strong=\"G5210\"* know|strong=\"G1921\"* about|strong=\"G1722\"* your|strong=\"G1487\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*, that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"*?—unless|strong=\"G1487\"* indeed|strong=\"G1510\"* you|strong=\"G5210\"* are|strong=\"G1510\"* disqualified." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* you|strong=\"G3754\"* will|strong=\"G1510\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* aren’t disqualified." + }, + { + "verseNum": 7, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* pray|strong=\"G2172\"* to|strong=\"G4314\"* God|strong=\"G2316\"* that|strong=\"G2443\"* you|strong=\"G5210\"* do|strong=\"G4160\"* no|strong=\"G3756\"* evil|strong=\"G2556\"*; not|strong=\"G3756\"* that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2443\"* appear|strong=\"G5316\"* approved|strong=\"G1384\"*, but|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* do|strong=\"G4160\"* that|strong=\"G2443\"* which|strong=\"G3588\"* is|strong=\"G1510\"* honorable|strong=\"G2570\"*, though|strong=\"G5613\"* we|strong=\"G2249\"* may|strong=\"G2443\"* seem|strong=\"G5316\"* to|strong=\"G4314\"* have|strong=\"G1473\"* failed|strong=\"G3756\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* can|strong=\"G1410\"* do|strong=\"G1410\"* nothing|strong=\"G3756\"* against|strong=\"G2596\"* the|strong=\"G2596\"* truth, but|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G2596\"* truth." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* rejoice|strong=\"G5463\"* when|strong=\"G3752\"* we|strong=\"G2249\"* are|strong=\"G1510\"* weak and|strong=\"G2532\"* you|strong=\"G5210\"* are|strong=\"G1510\"* strong|strong=\"G1415\"*. We|strong=\"G2249\"* also|strong=\"G2532\"* pray|strong=\"G2172\"* for|strong=\"G1063\"* this|strong=\"G3778\"*: your|strong=\"G2532\"* becoming perfect|strong=\"G3778\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* while|strong=\"G3739\"* absent, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* not|strong=\"G3756\"* deal sharply when|strong=\"G2532\"* present|strong=\"G3918\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* authority|strong=\"G1849\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* gave|strong=\"G1325\"* me|strong=\"G1325\"* for|strong=\"G1519\"* building|strong=\"G3619\"* up|strong=\"G1519\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G1519\"* tearing|strong=\"G2506\"* down|strong=\"G2596\"*." + }, + { + "verseNum": 11, + "text": "Finally|strong=\"G3063\"*, brothers, rejoice|strong=\"G5463\"*! Be|strong=\"G1510\"* perfected. Be|strong=\"G1510\"* comforted|strong=\"G3870\"*. Be|strong=\"G1510\"* of|strong=\"G2316\"* the|strong=\"G2532\"* same|strong=\"G2532\"* mind|strong=\"G5426\"*. Live|strong=\"G2532\"* in|strong=\"G2532\"* peace|strong=\"G1515\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G2316\"* love and|strong=\"G2532\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* saints greet you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "The grace of the Lord Jesus Christ, God’s love, and the fellowship of the Holy Spirit be with you all. Amen." + } + ] + } + ] + }, + { + "name": "Galatians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle—not|strong=\"G3756\"* from|strong=\"G1537\"* men|strong=\"G3588\"*, nor|strong=\"G3761\"* through|strong=\"G1223\"* man|strong=\"G3498\"*, but|strong=\"G2532\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* and|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*—" + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G4862\"* me|strong=\"G1473\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* assemblies|strong=\"G1577\"* of|strong=\"G2532\"* Galatia|strong=\"G1053\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3588\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* for|strong=\"G5228\"* our|strong=\"G2316\"* sins, that|strong=\"G3588\"* he|strong=\"G2532\"* might|strong=\"G2532\"* deliver|strong=\"G1807\"* us|strong=\"G1325\"* out|strong=\"G1537\"* of|strong=\"G1537\"* this|strong=\"G3588\"* present|strong=\"G1764\"* evil|strong=\"G4190\"* age, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1537\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*—" + }, + { + "verseNum": 5, + "text": "to|strong=\"G1519\"* whom|strong=\"G3739\"* be|strong=\"G1519\"* the|strong=\"G1519\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G1391\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 6, + "text": "I|strong=\"G3754\"* marvel|strong=\"G2296\"* that|strong=\"G3754\"* you|strong=\"G5210\"* are|strong=\"G3588\"* so|strong=\"G3779\"* quickly|strong=\"G5030\"* deserting|strong=\"G3346\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* a|strong=\"G1519\"* different|strong=\"G2087\"* “good|strong=\"G3588\"* news|strong=\"G2098\"*”," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* there|strong=\"G2532\"* isn’t|strong=\"G3588\"* another|strong=\"G3739\"* “good|strong=\"G3756\"* news|strong=\"G2098\"*.” Only|strong=\"G1487\"* there|strong=\"G2532\"* are|strong=\"G1510\"* some|strong=\"G5100\"* who|strong=\"G3739\"* trouble|strong=\"G5015\"* you|strong=\"G5210\"* and|strong=\"G2532\"* want|strong=\"G2309\"* to|strong=\"G2532\"* pervert|strong=\"G3344\"* the|strong=\"G2532\"* Good|strong=\"G3756\"* News|strong=\"G2098\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G2532\"* even|strong=\"G2532\"* though|strong=\"G1437\"* we|strong=\"G2249\"*, or|strong=\"G2228\"* an|strong=\"G2532\"* angel from|strong=\"G1537\"* heaven|strong=\"G3772\"*, should|strong=\"G2532\"* preach|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"* any|strong=\"G1437\"* “good|strong=\"G2097\"* news|strong=\"G2097\"*” other|strong=\"G3739\"* than|strong=\"G2228\"* that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* be|strong=\"G1510\"* cursed." + }, + { + "verseNum": 9, + "text": "As|strong=\"G5613\"* we|strong=\"G3739\"* have|strong=\"G2532\"* said|strong=\"G3004\"* before|strong=\"G3844\"*, so|strong=\"G2532\"* I|strong=\"G3739\"* now|strong=\"G2532\"* say|strong=\"G3004\"* again|strong=\"G3825\"*: if|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* preaches to|strong=\"G2532\"* you|strong=\"G5210\"* any|strong=\"G5100\"* “good|strong=\"G2097\"* news|strong=\"G2097\"*” other|strong=\"G3739\"* than|strong=\"G3844\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G3880\"*, let|strong=\"G1510\"* him|strong=\"G3739\"* be|strong=\"G1510\"* cursed." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* am|strong=\"G1510\"* I|strong=\"G1063\"* now|strong=\"G1510\"* seeking|strong=\"G2212\"* the|strong=\"G3588\"* favor|strong=\"G3982\"* of|strong=\"G2316\"* men|strong=\"G1401\"*, or|strong=\"G2228\"* of|strong=\"G2316\"* God|strong=\"G2316\"*? Or|strong=\"G2228\"* am|strong=\"G1510\"* I|strong=\"G1063\"* striving|strong=\"G2212\"* to|strong=\"G2212\"* please men|strong=\"G1401\"*? For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G1063\"* were|strong=\"G1510\"* still|strong=\"G2089\"* pleasing men|strong=\"G1401\"*, I|strong=\"G1063\"* wouldn’t|strong=\"G3588\"* be|strong=\"G1510\"* a|strong=\"G1510\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2596\"* you|strong=\"G5210\"*, brothers, concerning|strong=\"G2596\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* which|strong=\"G3588\"* was|strong=\"G1510\"* preached|strong=\"G2097\"* by|strong=\"G5259\"* me|strong=\"G1473\"*, that|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G1510\"* not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* man|strong=\"G3756\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* didn’t receive|strong=\"G3880\"* it|strong=\"G1063\"* from|strong=\"G3844\"* man, nor|strong=\"G3761\"* was|strong=\"G2424\"* I|strong=\"G1473\"* taught|strong=\"G1321\"* it|strong=\"G1063\"*, but|strong=\"G1063\"* it|strong=\"G1063\"* came|strong=\"G1223\"* to|strong=\"G2424\"* me|strong=\"G1473\"* through|strong=\"G1223\"* revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* have|strong=\"G2532\"* heard of|strong=\"G2316\"* my|strong=\"G1699\"* way|strong=\"G2596\"* of|strong=\"G2316\"* living in|strong=\"G1722\"* time|strong=\"G4218\"* past|strong=\"G4218\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Jews’ religion, how|strong=\"G3754\"* that|strong=\"G3754\"* beyond|strong=\"G3754\"* measure|strong=\"G5236\"* I|strong=\"G2532\"* persecuted|strong=\"G1377\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* ravaged it|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* advanced in|strong=\"G1722\"* the|strong=\"G1722\"* Jews’ religion beyond|strong=\"G5228\"* many|strong=\"G4183\"* of|strong=\"G2532\"* my|strong=\"G1722\"* own age among|strong=\"G1722\"* my|strong=\"G1722\"* countrymen|strong=\"G1085\"*, being|strong=\"G5225\"* more|strong=\"G4183\"* exceedingly|strong=\"G4056\"* zealous|strong=\"G2207\"* for|strong=\"G5228\"* the|strong=\"G1722\"* traditions|strong=\"G3862\"* of|strong=\"G2532\"* my|strong=\"G1722\"* fathers|strong=\"G3862\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* it|strong=\"G2532\"* was|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G2106\"* pleasure|strong=\"G2106\"* of|strong=\"G1537\"* God|strong=\"G2532\"*, who|strong=\"G3588\"* separated me|strong=\"G1473\"* from|strong=\"G1537\"* my|strong=\"G1473\"* mother|strong=\"G3384\"*’s womb|strong=\"G2836\"* and|strong=\"G2532\"* called|strong=\"G2564\"* me|strong=\"G1473\"* through|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"G2443\"* reveal his|strong=\"G1722\"* Son|strong=\"G5207\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* preach|strong=\"G2097\"* him|strong=\"G3588\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, I|strong=\"G1473\"* didn’t|strong=\"G3588\"* immediately|strong=\"G2112\"* confer with|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood," + }, + { + "verseNum": 17, + "text": "nor|strong=\"G3761\"* did|strong=\"G2532\"* I|strong=\"G1473\"* go|strong=\"G1519\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* apostles before|strong=\"G4253\"* me|strong=\"G1473\"*, but|strong=\"G2532\"* I|strong=\"G1473\"* went|strong=\"G2532\"* away|strong=\"G5290\"* into|strong=\"G1519\"* Arabia. Then|strong=\"G2532\"* I|strong=\"G1473\"* returned|strong=\"G5290\"* to|strong=\"G1519\"* Damascus|strong=\"G1154\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"G2532\"* after|strong=\"G3326\"* three|strong=\"G5140\"* years|strong=\"G2094\"* I|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* to|strong=\"G1519\"* visit Peter|strong=\"G2532\"*, and|strong=\"G2532\"* stayed|strong=\"G1961\"* with|strong=\"G3326\"* him|strong=\"G2532\"* fifteen|strong=\"G1178\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* of|strong=\"G2962\"* the|strong=\"G1161\"* other|strong=\"G2087\"* apostles I|strong=\"G1161\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* one|strong=\"G3588\"* except|strong=\"G1487\"* James|strong=\"G2385\"*, the|strong=\"G1161\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* brother." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* about|strong=\"G3754\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G3756\"* you|strong=\"G5210\"*, behold|strong=\"G2400\"*,+ 1:20 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* before|strong=\"G1799\"* God|strong=\"G2316\"*, I|strong=\"G3739\"*’m not|strong=\"G3756\"* lying|strong=\"G5574\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"G2532\"* I|strong=\"G2532\"* came|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* regions|strong=\"G2824\"* of|strong=\"G2532\"* Syria|strong=\"G4947\"* and|strong=\"G2532\"* Cilicia|strong=\"G2791\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1161\"* was|strong=\"G1510\"* still unknown by|strong=\"G1722\"* face|strong=\"G4383\"* to|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G1577\"* Judea|strong=\"G2449\"* which|strong=\"G3588\"* were|strong=\"G1510\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"G1161\"* they|strong=\"G1161\"* only|strong=\"G3440\"* heard, “He|strong=\"G1161\"* who|strong=\"G3739\"* once|strong=\"G4218\"* persecuted|strong=\"G1377\"* us|strong=\"G2097\"* now|strong=\"G1161\"* preaches the|strong=\"G1161\"* faith|strong=\"G4102\"* that|strong=\"G3754\"* he|strong=\"G1161\"* once|strong=\"G4218\"* tried to|strong=\"G1161\"* destroy|strong=\"G4199\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"G2532\"* they|strong=\"G2532\"* glorified|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* after|strong=\"G3326\"* a|strong=\"G2532\"* period|strong=\"G2532\"* of|strong=\"G1223\"* fourteen|strong=\"G1180\"* years|strong=\"G2094\"* I|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* again|strong=\"G3825\"* to|strong=\"G1519\"* Jerusalem|strong=\"G2414\"* with|strong=\"G3326\"* Barnabas, taking|strong=\"G4838\"* Titus|strong=\"G5103\"* also|strong=\"G2532\"* with|strong=\"G3326\"* me|strong=\"G1223\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* went|strong=\"G2532\"* up|strong=\"G1519\"* by|strong=\"G1722\"* revelation, and|strong=\"G2532\"* I|strong=\"G3739\"* laid|strong=\"G2532\"* before|strong=\"G1722\"* them|strong=\"G3588\"* the|strong=\"G1722\"* Good|strong=\"G1380\"* News|strong=\"G2098\"* which|strong=\"G3739\"* I|strong=\"G3739\"* preach|strong=\"G2784\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, but|strong=\"G1161\"* privately|strong=\"G2398\"* before|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* respected, for|strong=\"G1519\"* fear|strong=\"G3381\"* that|strong=\"G3739\"* I|strong=\"G3739\"* might|strong=\"G2532\"* be|strong=\"G2532\"* running|strong=\"G5143\"*, or|strong=\"G2228\"* had|strong=\"G2532\"* run|strong=\"G5143\"*, in|strong=\"G1722\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G3588\"* not|strong=\"G3761\"* even|strong=\"G3761\"* Titus|strong=\"G5103\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* with|strong=\"G4862\"* me|strong=\"G1473\"*, being|strong=\"G1510\"* a|strong=\"G1510\"* Greek|strong=\"G1672\"*, was|strong=\"G1510\"* compelled to|strong=\"G1510\"* be|strong=\"G1510\"* circumcised|strong=\"G4059\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* false|strong=\"G5569\"* brothers secretly|strong=\"G3920\"* brought|strong=\"G1161\"* in|strong=\"G1722\"*, who|strong=\"G3739\"* stole in|strong=\"G1722\"* to|strong=\"G2443\"* spy|strong=\"G2684\"* out|strong=\"G2684\"* our|strong=\"G2424\"* liberty|strong=\"G1657\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* they|strong=\"G1161\"* might|strong=\"G2192\"* bring|strong=\"G2615\"* us|strong=\"G2249\"* into|strong=\"G1722\"* bondage|strong=\"G2615\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G4314\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* gave|strong=\"G3588\"* no|strong=\"G3761\"* place|strong=\"G1502\"* in|strong=\"G4314\"* the|strong=\"G4314\"* way|strong=\"G3739\"* of|strong=\"G2098\"* subjection|strong=\"G5292\"*, not|strong=\"G3761\"* for|strong=\"G4314\"* an|strong=\"G4314\"* hour|strong=\"G5610\"*, that|strong=\"G2443\"* the|strong=\"G4314\"* truth of|strong=\"G2098\"* the|strong=\"G4314\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* might|strong=\"G5610\"* continue|strong=\"G1265\"* with|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* from|strong=\"G3756\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* reputed|strong=\"G1380\"* to|strong=\"G3756\"* be|strong=\"G1510\"* important—whatever|strong=\"G5100\"* they|strong=\"G1161\"* were|strong=\"G1510\"*, it|strong=\"G1161\"* makes|strong=\"G1308\"* no|strong=\"G3756\"* difference|strong=\"G1308\"* to|strong=\"G3756\"* me|strong=\"G1473\"*; God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* show|strong=\"G2983\"* partiality|strong=\"G4383\"* to|strong=\"G3756\"* man|strong=\"G5100\"*—they|strong=\"G1161\"*, I|strong=\"G1473\"* say|strong=\"G1473\"*, who|strong=\"G3588\"* were|strong=\"G1510\"* respected imparted nothing|strong=\"G3762\"* to|strong=\"G3756\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"G3588\"* to|strong=\"G3708\"* the|strong=\"G3588\"* contrary|strong=\"G5121\"*, when|strong=\"G3754\"* they|strong=\"G3588\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* I|strong=\"G3754\"* had|strong=\"G3588\"* been entrusted|strong=\"G4100\"* with|strong=\"G3588\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* for|strong=\"G3754\"* the|strong=\"G3588\"* uncircumcised, even|strong=\"G2531\"* as|strong=\"G2531\"* Peter|strong=\"G4074\"* with|strong=\"G3588\"* the|strong=\"G3588\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* for|strong=\"G3754\"* the|strong=\"G3588\"* circumcised|strong=\"G4061\"*—" + }, + { + "verseNum": 8, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* worked|strong=\"G1754\"* through Peter|strong=\"G4074\"* in|strong=\"G1519\"* the|strong=\"G2532\"* apostleship with|strong=\"G2532\"* the|strong=\"G2532\"* circumcised|strong=\"G4061\"* also|strong=\"G2532\"* worked|strong=\"G1754\"* through me|strong=\"G1473\"* with|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*—" + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* when|strong=\"G1161\"* they|strong=\"G2532\"* perceived|strong=\"G1097\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* that|strong=\"G2443\"* was|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G1519\"* me|strong=\"G1325\"*, James|strong=\"G2385\"* and|strong=\"G2532\"* Cephas|strong=\"G2786\"* and|strong=\"G2532\"* John|strong=\"G2491\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G1510\"* reputed|strong=\"G1380\"* to|strong=\"G1519\"* be|strong=\"G1510\"* pillars|strong=\"G4769\"*, gave|strong=\"G1325\"* to|strong=\"G1519\"* Barnabas and|strong=\"G2532\"* me|strong=\"G1325\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2532\"* fellowship|strong=\"G2842\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* should|strong=\"G3588\"* go|strong=\"G1519\"* to|strong=\"G1519\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* only|strong=\"G3440\"* asked us|strong=\"G4160\"* to|strong=\"G2443\"* remember|strong=\"G3421\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*—which|strong=\"G3739\"* very|strong=\"G2532\"* thing|strong=\"G3778\"* I|strong=\"G3739\"* was|strong=\"G3588\"* also|strong=\"G2532\"* zealous to|strong=\"G2443\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* Peter came|strong=\"G2064\"* to|strong=\"G1519\"* Antioch, I|strong=\"G1161\"* resisted him|strong=\"G1519\"* to|strong=\"G1519\"* his|strong=\"G1519\"* face|strong=\"G4383\"*, because|strong=\"G3754\"* he|strong=\"G1161\"* stood condemned|strong=\"G2607\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* before|strong=\"G4253\"* some|strong=\"G5100\"* people|strong=\"G1484\"* came|strong=\"G2064\"* from|strong=\"G1537\"* James|strong=\"G2385\"*, he|strong=\"G2532\"* ate|strong=\"G4906\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"*. But|strong=\"G1161\"* when|strong=\"G3753\"* they|strong=\"G2532\"* came|strong=\"G2064\"*, he|strong=\"G2532\"* drew|strong=\"G2532\"* back|strong=\"G5288\"* and|strong=\"G2532\"* separated himself|strong=\"G1438\"*, fearing|strong=\"G5399\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*." + }, + { + "verseNum": 13, + "text": "And|strong=\"G2532\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* joined|strong=\"G4942\"* him|strong=\"G3588\"* in|strong=\"G2532\"* his|strong=\"G2532\"* hypocrisy|strong=\"G5272\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* even|strong=\"G2532\"* Barnabas was|strong=\"G3588\"* carried|strong=\"G4879\"* away|strong=\"G4879\"* with|strong=\"G2532\"* their|strong=\"G2532\"* hypocrisy|strong=\"G5272\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G2532\"* when|strong=\"G3753\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* walk|strong=\"G2532\"* uprightly|strong=\"G3716\"* according|strong=\"G3756\"* to|strong=\"G4314\"* the|strong=\"G2532\"* truth of|strong=\"G2532\"* the|strong=\"G2532\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, I|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G4314\"* Peter|strong=\"G2532\"* before|strong=\"G1715\"* them|strong=\"G3588\"* all|strong=\"G3956\"*, “If|strong=\"G1487\"* you|strong=\"G4771\"*, being|strong=\"G5225\"* a|strong=\"G2532\"* Jew|strong=\"G2453\"*, live|strong=\"G2198\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* do|strong=\"G2532\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* do|strong=\"G2532\"*, why|strong=\"G3754\"* do|strong=\"G2532\"* you|strong=\"G4771\"* compel the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* to|strong=\"G4314\"* live|strong=\"G2198\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Jews|strong=\"G2453\"* do|strong=\"G2532\"*?" + }, + { + "verseNum": 15, + "text": "“We|strong=\"G2249\"*, being|strong=\"G2532\"* Jews|strong=\"G2453\"* by|strong=\"G1537\"* nature|strong=\"G5449\"* and|strong=\"G2532\"* not|strong=\"G3756\"* Gentile|strong=\"G1484\"* sinners," + }, + { + "verseNum": 16, + "text": "yet|strong=\"G2532\"* knowing|strong=\"G1492\"* that|strong=\"G3754\"* a|strong=\"G2532\"* man|strong=\"G3956\"* is|strong=\"G5547\"* not|strong=\"G3756\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"* but|strong=\"G1161\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, even|strong=\"G2532\"* we|strong=\"G2249\"* believed|strong=\"G4100\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* might|strong=\"G2532\"* be|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* not|strong=\"G3756\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, because|strong=\"G3754\"* no|strong=\"G3756\"* flesh|strong=\"G4561\"* will|strong=\"G2532\"* be|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1223\"* the|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* while|strong=\"G1722\"* we|strong=\"G2532\"* sought|strong=\"G2212\"* to|strong=\"G2532\"* be|strong=\"G1096\"* justified|strong=\"G1344\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, we|strong=\"G2532\"* ourselves|strong=\"G1096\"* also|strong=\"G2532\"* were|strong=\"G1096\"* found|strong=\"G2147\"* sinners, is|strong=\"G1096\"* Christ|strong=\"G5547\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* of|strong=\"G2532\"* sin? Certainly|strong=\"G2532\"* not|strong=\"G3361\"*!" + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* I|strong=\"G3739\"* build|strong=\"G3618\"* up|strong=\"G3618\"* again|strong=\"G3825\"* those|strong=\"G3778\"* things|strong=\"G3778\"* which|strong=\"G3739\"* I|strong=\"G3739\"* destroyed|strong=\"G2647\"*, I|strong=\"G3739\"* prove|strong=\"G4921\"* myself|strong=\"G1683\"* a|strong=\"G1487\"* law-breaker." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"* died to|strong=\"G2443\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2316\"* live|strong=\"G2198\"* to|strong=\"G2443\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* been|strong=\"G2532\"* crucified|strong=\"G4957\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* I|strong=\"G1473\"* who|strong=\"G3739\"* live|strong=\"G2198\"*, but|strong=\"G1161\"* Christ|strong=\"G5547\"* lives|strong=\"G2198\"* in|strong=\"G1722\"* me|strong=\"G1473\"*. That|strong=\"G3739\"* life|strong=\"G2198\"* which|strong=\"G3739\"* I|strong=\"G1473\"* now|strong=\"G1161\"* live|strong=\"G2198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, I|strong=\"G1473\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* loved me|strong=\"G1473\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G5228\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G1063\"* don’t|strong=\"G3588\"* reject the|strong=\"G1223\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* law|strong=\"G3551\"*, then|strong=\"G1063\"* Christ|strong=\"G5547\"* died|strong=\"G3588\"* for|strong=\"G1063\"* nothing|strong=\"G3756\"*!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Foolish Galatians|strong=\"G1052\"*, who|strong=\"G3739\"* has|strong=\"G5101\"* bewitched you|strong=\"G5210\"* not|strong=\"G3739\"* to|strong=\"G2596\"* obey the|strong=\"G2596\"* truth, before|strong=\"G2596\"* whose|strong=\"G3739\"* eyes|strong=\"G3788\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* was|strong=\"G2424\"* openly portrayed|strong=\"G4270\"* among|strong=\"G2596\"* you|strong=\"G5210\"* as|strong=\"G2596\"* crucified|strong=\"G4717\"*?" + }, + { + "verseNum": 2, + "text": "I|strong=\"G3778\"* just|strong=\"G3440\"* want|strong=\"G2309\"* to|strong=\"G2309\"* learn|strong=\"G3129\"* this|strong=\"G3778\"* from|strong=\"G1537\"* you|strong=\"G5210\"*: Did|strong=\"G3588\"* you|strong=\"G5210\"* receive|strong=\"G2983\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"* by|strong=\"G1537\"* the|strong=\"G1537\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, or|strong=\"G2228\"* by|strong=\"G1537\"* hearing of|strong=\"G1537\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 3, + "text": "Are|strong=\"G1510\"* you|strong=\"G1510\"* so|strong=\"G3779\"* foolish? Having|strong=\"G4151\"* begun|strong=\"G1728\"* in|strong=\"G4151\"* the|strong=\"G4151\"* Spirit|strong=\"G4151\"*, are|strong=\"G1510\"* you|strong=\"G1510\"* now|strong=\"G3568\"* completed in|strong=\"G4151\"* the|strong=\"G4151\"* flesh|strong=\"G4561\"*?" + }, + { + "verseNum": 4, + "text": "Did|strong=\"G2532\"* you|strong=\"G1487\"* suffer|strong=\"G3958\"* so|strong=\"G2532\"* many|strong=\"G5118\"* things|strong=\"G5118\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*, if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G2532\"* indeed|strong=\"G2532\"* in|strong=\"G2532\"* vain|strong=\"G1500\"*?" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* therefore|strong=\"G3767\"* who|strong=\"G3588\"* supplies|strong=\"G2023\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* does|strong=\"G2023\"* miracles|strong=\"G1411\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, does|strong=\"G2023\"* he|strong=\"G2532\"* do|strong=\"G2532\"* it|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, or|strong=\"G2228\"* by|strong=\"G1722\"* hearing of|strong=\"G1537\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 6, + "text": "Even|strong=\"G2532\"* so|strong=\"G2532\"*, Abraham|strong=\"G4100\"* “believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* counted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* for|strong=\"G1519\"* righteousness|strong=\"G1343\"*.”+ 3:6 Genesis 15:6*" + }, + { + "verseNum": 7, + "text": "Know|strong=\"G1097\"* therefore|strong=\"G3754\"* that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* are|strong=\"G1510\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Abraham." + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* Scripture|strong=\"G1124\"*, foreseeing that|strong=\"G3754\"* God|strong=\"G2316\"* would|strong=\"G2316\"* justify|strong=\"G1344\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*, preached|strong=\"G4283\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News beforehand|strong=\"G4283\"* to|strong=\"G1722\"* Abraham, saying|strong=\"G3754\"*, “In|strong=\"G1722\"* you|strong=\"G4771\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* will|strong=\"G2316\"* be|strong=\"G3956\"* blessed|strong=\"G1757\"*.”+ 3:8 Genesis 12:3; 18:18; 22:18*" + }, + { + "verseNum": 9, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* faith|strong=\"G4102\"* are|strong=\"G3588\"* blessed|strong=\"G2127\"* with|strong=\"G4862\"* the|strong=\"G1537\"* faithful|strong=\"G4103\"* Abraham." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"* are|strong=\"G1510\"* under|strong=\"G5259\"* a|strong=\"G1722\"* curse|strong=\"G2671\"*. For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “Cursed|strong=\"G1944\"* is|strong=\"G1510\"* everyone|strong=\"G3956\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* continue|strong=\"G1696\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3754\"* are|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, to|strong=\"G1722\"* do|strong=\"G4160\"* them|strong=\"G3588\"*.”+ 3:10 Deuteronomy 27:26*" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* that|strong=\"G3754\"* no|strong=\"G3762\"* man|strong=\"G3762\"* is|strong=\"G3588\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"* before|strong=\"G3844\"* God|strong=\"G2316\"* is|strong=\"G3588\"* evident|strong=\"G1212\"*, for|strong=\"G3754\"*, “The|strong=\"G1722\"* righteous|strong=\"G1342\"* will|strong=\"G2316\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*.”+ 3:11 Habakkuk 2:4*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G1722\"* law|strong=\"G3551\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"*, “The|strong=\"G1722\"* man|strong=\"G3756\"* who|strong=\"G3588\"* does|strong=\"G4160\"* them|strong=\"G3588\"* will|strong=\"G1510\"* live|strong=\"G2198\"* by|strong=\"G1722\"* them|strong=\"G3588\"*.”+ 3:12 Leviticus 18:5*" + }, + { + "verseNum": 13, + "text": "Christ|strong=\"G5547\"* redeemed|strong=\"G1805\"* us|strong=\"G2249\"* from|strong=\"G1537\"* the|strong=\"G3956\"* curse|strong=\"G2671\"* of|strong=\"G1537\"* the|strong=\"G3956\"* law|strong=\"G3551\"*, having become|strong=\"G1096\"* a|strong=\"G1096\"* curse|strong=\"G2671\"* for|strong=\"G3754\"* us|strong=\"G2249\"*. For|strong=\"G3754\"* it|strong=\"G3754\"* is|strong=\"G3588\"* written|strong=\"G1125\"*, “Cursed|strong=\"G1944\"* is|strong=\"G3588\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* hangs|strong=\"G2910\"* on|strong=\"G1909\"* a|strong=\"G1096\"* tree|strong=\"G3586\"*,”+ 3:13 Deuteronomy 21:23*" + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"* of|strong=\"G4151\"* Abraham might|strong=\"G1484\"* come|strong=\"G1096\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* through|strong=\"G1223\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* might|strong=\"G1484\"* receive|strong=\"G2983\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 15, + "text": "Brothers, speaking|strong=\"G3004\"* of|strong=\"G2596\"* human terms|strong=\"G2596\"*, though|strong=\"G3676\"* it|strong=\"G3004\"* is|strong=\"G3762\"* only a|strong=\"G2228\"* man|strong=\"G3762\"*’s covenant|strong=\"G1242\"*, yet|strong=\"G3676\"* when|strong=\"G3004\"* it|strong=\"G3004\"* has|strong=\"G3762\"* been confirmed|strong=\"G2964\"*, no|strong=\"G3762\"* one|strong=\"G3762\"* makes it|strong=\"G3004\"* void or|strong=\"G2228\"* adds|strong=\"G1928\"* to|strong=\"G2596\"* it|strong=\"G3004\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* the|strong=\"G2532\"* promises|strong=\"G1860\"* were|strong=\"G1510\"* spoken|strong=\"G3004\"* to|strong=\"G2532\"* Abraham and|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G1909\"* offspring.+ 3:16 or, seed* He|strong=\"G2532\"* doesn’t|strong=\"G3588\"* say|strong=\"G3004\"*, “To|strong=\"G2532\"* descendants|strong=\"G4690\"*+ 3:16 or, seeds*”, as|strong=\"G5613\"* of|strong=\"G2532\"* many|strong=\"G4183\"*, but|strong=\"G1161\"* as|strong=\"G5613\"* of|strong=\"G2532\"* one|strong=\"G1520\"*, “To|strong=\"G2532\"* your|strong=\"G2532\"* offspring”,+ 3:16 Genesis 12:7; 13:15; 24:7* which|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"* this|strong=\"G3778\"*: A|strong=\"G1096\"* covenant|strong=\"G1242\"* confirmed beforehand by|strong=\"G5259\"* God|strong=\"G2316\"* in|strong=\"G1519\"* Christ, the|strong=\"G2532\"* law|strong=\"G3551\"*, which|strong=\"G3588\"* came|strong=\"G1096\"* four|strong=\"G5071\"* hundred|strong=\"G5071\"* thirty|strong=\"G5144\"* years|strong=\"G2094\"* after|strong=\"G3326\"*, does|strong=\"G2316\"* not|strong=\"G3756\"* annul, so|strong=\"G2532\"* as|strong=\"G1519\"* to|strong=\"G1519\"* make|strong=\"G2673\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G5259\"* no|strong=\"G3756\"* effect|strong=\"G2673\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G1537\"* inheritance|strong=\"G2817\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, it|strong=\"G1161\"* is|strong=\"G3588\"* no|strong=\"G3765\"* more|strong=\"G3765\"* of|strong=\"G1537\"* promise|strong=\"G1860\"*; but|strong=\"G1161\"* God|strong=\"G2316\"* has|strong=\"G2316\"* granted|strong=\"G5483\"* it|strong=\"G1161\"* to|strong=\"G1161\"* Abraham by|strong=\"G1223\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"G3767\"* why|strong=\"G5101\"* is|strong=\"G3588\"* there|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*? It|strong=\"G5101\"* was|strong=\"G3588\"* added|strong=\"G4369\"* because|strong=\"G1223\"* of|strong=\"G1223\"* transgressions|strong=\"G3847\"*, until|strong=\"G1722\"* the|strong=\"G1722\"* offspring should|strong=\"G3588\"* come|strong=\"G2064\"* to|strong=\"G2064\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* promise|strong=\"G1861\"* has|strong=\"G5101\"* been made|strong=\"G1861\"*. It|strong=\"G5101\"* was|strong=\"G3588\"* ordained|strong=\"G1299\"* through|strong=\"G1223\"* angels by|strong=\"G1223\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1223\"* a|strong=\"G1722\"* mediator|strong=\"G3316\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* a|strong=\"G1510\"* mediator|strong=\"G3316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* between|strong=\"G3316\"* one|strong=\"G1520\"*, but|strong=\"G1161\"* God|strong=\"G2316\"* is|strong=\"G1510\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 21, + "text": "Is|strong=\"G1510\"* the|strong=\"G1537\"* law|strong=\"G3551\"* then|strong=\"G3767\"* against|strong=\"G2596\"* the|strong=\"G1537\"* promises|strong=\"G1860\"* of|strong=\"G1537\"* God|strong=\"G2316\"*? Certainly|strong=\"G3689\"* not|strong=\"G3361\"*! For|strong=\"G1063\"* if|strong=\"G1487\"* there|strong=\"G1063\"* had|strong=\"G2316\"* been|strong=\"G1510\"* a|strong=\"G1096\"* law|strong=\"G3551\"* given|strong=\"G1325\"* which|strong=\"G3588\"* could|strong=\"G1410\"* make|strong=\"G1325\"* alive|strong=\"G2227\"*, most|strong=\"G2316\"* certainly|strong=\"G3689\"* righteousness|strong=\"G1343\"* would|strong=\"G1096\"* have|strong=\"G1510\"* been|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1537\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G3588\"* the|strong=\"G3956\"* Scripture|strong=\"G1124\"* imprisoned|strong=\"G4788\"* all|strong=\"G3956\"* things|strong=\"G3956\"* under|strong=\"G5259\"* sin, that|strong=\"G2443\"* the|strong=\"G3956\"* promise|strong=\"G1860\"* by|strong=\"G5259\"* faith|strong=\"G4102\"* in|strong=\"G3956\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* might|strong=\"G1124\"* be|strong=\"G3956\"* given|strong=\"G1325\"* to|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* before|strong=\"G4253\"* faith|strong=\"G4102\"* came|strong=\"G2064\"*, we|strong=\"G1161\"* were|strong=\"G3588\"* kept|strong=\"G5432\"* in|strong=\"G1519\"* custody|strong=\"G5432\"* under|strong=\"G5259\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, confined for|strong=\"G1519\"* the|strong=\"G1519\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* should|strong=\"G3195\"* afterwards|strong=\"G3195\"* be|strong=\"G3195\"* revealed." + }, + { + "verseNum": 24, + "text": "So|strong=\"G2443\"* that|strong=\"G2443\"* the|strong=\"G1519\"* law|strong=\"G3551\"* has|strong=\"G4102\"* become|strong=\"G1096\"* our|strong=\"G5547\"* tutor|strong=\"G3807\"* to|strong=\"G1519\"* bring|strong=\"G1519\"* us|strong=\"G1519\"* to|strong=\"G1519\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* might|strong=\"G1096\"* be|strong=\"G1096\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* that|strong=\"G3588\"* faith|strong=\"G4102\"* has|strong=\"G4102\"* come|strong=\"G2064\"*, we|strong=\"G1161\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* under|strong=\"G5259\"* a|strong=\"G1510\"* tutor|strong=\"G3807\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* you|strong=\"G1722\"* are|strong=\"G1510\"* all|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* of|strong=\"G1519\"* you|strong=\"G3745\"* as|strong=\"G3745\"* were|strong=\"G3745\"* baptized into|strong=\"G1519\"* Christ|strong=\"G5547\"* have|strong=\"G3745\"* put|strong=\"G1746\"* on|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 28, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* Jew|strong=\"G2453\"* nor|strong=\"G3761\"* Greek|strong=\"G1672\"*, there|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* slave|strong=\"G1401\"* nor|strong=\"G3761\"* free|strong=\"G1658\"* man|strong=\"G3956\"*, there|strong=\"G2532\"* is|strong=\"G1510\"* neither|strong=\"G3761\"* male nor|strong=\"G3761\"* female|strong=\"G2338\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* all|strong=\"G3956\"* one|strong=\"G1520\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 29, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G1510\"* Christ|strong=\"G5547\"*’s, then|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G1510\"* Abraham’s offspring and|strong=\"G1161\"* heirs|strong=\"G2818\"* according|strong=\"G2596\"* to|strong=\"G2596\"* promise|strong=\"G1860\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* say|strong=\"G3004\"* that|strong=\"G3588\"* so|strong=\"G1161\"* long|strong=\"G5550\"* as|strong=\"G3745\"* the|strong=\"G3956\"* heir|strong=\"G2818\"* is|strong=\"G1510\"* a|strong=\"G1510\"* child|strong=\"G3516\"*, he|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3762\"* different|strong=\"G1308\"* from|strong=\"G3588\"* a|strong=\"G1510\"* bondservant, though|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G1510\"* lord|strong=\"G2962\"* of|strong=\"G2962\"* all|strong=\"G3956\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"G2532\"* is|strong=\"G1510\"* under|strong=\"G5259\"* guardians|strong=\"G2012\"* and|strong=\"G2532\"* stewards|strong=\"G3623\"* until|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G3588\"* appointed|strong=\"G4287\"* by|strong=\"G5259\"* the|strong=\"G2532\"* father|strong=\"G3962\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"G3779\"* we|strong=\"G2249\"* also|strong=\"G2532\"*, when|strong=\"G3753\"* we|strong=\"G2249\"* were|strong=\"G1510\"* children|strong=\"G3516\"*, were|strong=\"G1510\"* held|strong=\"G1402\"* in|strong=\"G2532\"* bondage|strong=\"G1402\"* under|strong=\"G5259\"* the|strong=\"G2532\"* elemental|strong=\"G4747\"* principles|strong=\"G4747\"* of|strong=\"G5259\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G1537\"* fullness|strong=\"G4138\"* of|strong=\"G1537\"* the|strong=\"G1537\"* time|strong=\"G5550\"* came|strong=\"G2064\"*, God|strong=\"G2316\"* sent|strong=\"G1821\"* out|strong=\"G1537\"* his|strong=\"G5259\"* Son|strong=\"G5207\"*, born|strong=\"G1096\"* to|strong=\"G2064\"* a|strong=\"G1096\"* woman|strong=\"G1135\"*, born|strong=\"G1096\"* under|strong=\"G5259\"* the|strong=\"G1537\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* might redeem|strong=\"G1805\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* under|strong=\"G5259\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, that|strong=\"G2443\"* we|strong=\"G2443\"* might receive the|strong=\"G3588\"* adoption|strong=\"G5206\"* as|strong=\"G5206\"* children|strong=\"G5206\"*." + }, + { + "verseNum": 6, + "text": "And|strong=\"G1161\"* because|strong=\"G3754\"* you|strong=\"G3754\"* are|strong=\"G1510\"* children|strong=\"G5207\"*, God|strong=\"G2316\"* sent|strong=\"G1821\"* out|strong=\"G2896\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* his|strong=\"G1519\"* Son|strong=\"G5207\"* into|strong=\"G1519\"* your|strong=\"G3588\"* hearts|strong=\"G2588\"*, crying|strong=\"G2896\"*, “Abba,+ 4:6 Abba is a Greek spelling for the Aramaic word for “Father” or “Daddy” used in a familiar, respectful, and loving way. * Father|strong=\"G3962\"*!”" + }, + { + "verseNum": 7, + "text": "So|strong=\"G2532\"* you|strong=\"G1487\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* a|strong=\"G2532\"* bondservant, but|strong=\"G1161\"* a|strong=\"G2532\"* son|strong=\"G5207\"*; and|strong=\"G2532\"* if|strong=\"G1487\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, then|strong=\"G2532\"* an|strong=\"G2532\"* heir|strong=\"G2818\"* of|strong=\"G5207\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Christ." + }, + { + "verseNum": 8, + "text": "However|strong=\"G3303\"* at|strong=\"G3756\"* that|strong=\"G3588\"* time|strong=\"G5119\"*, not|strong=\"G3756\"* knowing|strong=\"G1492\"* God|strong=\"G2316\"*, you|strong=\"G1510\"* were|strong=\"G1510\"* in|strong=\"G2316\"* bondage|strong=\"G1398\"* to|strong=\"G3756\"* those|strong=\"G3588\"* who|strong=\"G3588\"* by|strong=\"G3361\"* nature|strong=\"G5449\"* are|strong=\"G1510\"* not|strong=\"G3756\"* gods|strong=\"G2316\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* that|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2309\"* come|strong=\"G2532\"* to|strong=\"G2532\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, or|strong=\"G2532\"* rather|strong=\"G3123\"* to|strong=\"G2532\"* be|strong=\"G2532\"* known|strong=\"G1097\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, why|strong=\"G4459\"* do|strong=\"G2532\"* you|strong=\"G3739\"* turn|strong=\"G1994\"* back|strong=\"G3825\"* again|strong=\"G3825\"* to|strong=\"G2532\"* the|strong=\"G2532\"* weak and|strong=\"G2532\"* miserable elemental|strong=\"G4747\"* principles|strong=\"G4747\"*, to|strong=\"G2532\"* which|strong=\"G3739\"* you|strong=\"G3739\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1909\"* bondage|strong=\"G1398\"* all|strong=\"G2532\"* over|strong=\"G1909\"* again|strong=\"G3825\"*?" + }, + { + "verseNum": 10, + "text": "You|strong=\"G2532\"* observe|strong=\"G3906\"* days|strong=\"G2250\"*, months|strong=\"G3376\"*, seasons|strong=\"G2540\"*, and|strong=\"G2532\"* years|strong=\"G1763\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G2872\"* am|strong=\"G5399\"* afraid|strong=\"G5399\"* for|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G1519\"* I|strong=\"G2872\"* might|strong=\"G5210\"* have|strong=\"G5210\"* wasted my labor|strong=\"G2872\"* for|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* beg|strong=\"G1189\"* you|strong=\"G5210\"*, brothers, become|strong=\"G1096\"* as|strong=\"G5613\"* I|strong=\"G1473\"* am|strong=\"G1473\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* also|strong=\"G2504\"* have|strong=\"G1473\"* become|strong=\"G1096\"* as|strong=\"G5613\"* you|strong=\"G5210\"* are|strong=\"G3748\"*. You|strong=\"G5210\"* did|strong=\"G1096\"* me|strong=\"G1473\"* no|strong=\"G3762\"* wrong," + }, + { + "verseNum": 13, + "text": "but|strong=\"G1161\"* you|strong=\"G5210\"* know|strong=\"G1492\"* that|strong=\"G3754\"* because|strong=\"G3754\"* of|strong=\"G1223\"* weakness in|strong=\"G1223\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* I|strong=\"G1161\"* preached|strong=\"G2097\"* the|strong=\"G1161\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1161\"* you|strong=\"G5210\"* the|strong=\"G1161\"* first|strong=\"G4386\"* time|strong=\"G4387\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* a|strong=\"G5613\"* temptation|strong=\"G3986\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"*, you|strong=\"G5210\"* didn’t|strong=\"G3588\"* despise|strong=\"G1848\"* nor|strong=\"G3761\"* reject|strong=\"G1609\"*; but|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G1209\"* me|strong=\"G1473\"* as|strong=\"G5613\"* an|strong=\"G2532\"* angel of|strong=\"G2316\"* God|strong=\"G2316\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"G3588\"* was|strong=\"G3588\"* the|strong=\"G3588\"* blessing|strong=\"G3108\"* you|strong=\"G5210\"* enjoyed? For|strong=\"G1063\"* I|strong=\"G1473\"* testify|strong=\"G3140\"* to|strong=\"G1325\"* you|strong=\"G5210\"* that|strong=\"G3754\"*, if|strong=\"G1487\"* possible|strong=\"G1415\"*, you|strong=\"G5210\"* would|strong=\"G1325\"* have|strong=\"G1473\"* plucked|strong=\"G1846\"* out|strong=\"G1063\"* your|strong=\"G1487\"* eyes|strong=\"G3788\"* and|strong=\"G3767\"* given|strong=\"G1325\"* them|strong=\"G3588\"* to|strong=\"G1325\"* me|strong=\"G1325\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"G5620\"* then|strong=\"G5620\"*, have|strong=\"G5210\"* I|strong=\"G1096\"* become|strong=\"G1096\"* your|strong=\"G5210\"* enemy|strong=\"G2190\"* by|strong=\"G1096\"* telling you|strong=\"G5210\"* the|strong=\"G1096\"* truth?" + }, + { + "verseNum": 17, + "text": "They|strong=\"G2443\"* zealously seek|strong=\"G2206\"* you|strong=\"G5210\"* in|strong=\"G1438\"* no|strong=\"G3756\"* good|strong=\"G2573\"* way. No|strong=\"G3756\"*, they|strong=\"G2443\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* alienate you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* seek|strong=\"G2206\"* them|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3588\"* always|strong=\"G3842\"* good|strong=\"G2570\"* to|strong=\"G4314\"* be|strong=\"G2532\"* zealous in|strong=\"G1722\"* a|strong=\"G2532\"* good|strong=\"G2570\"* cause|strong=\"G3588\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* only|strong=\"G3440\"* when|strong=\"G1161\"* I|strong=\"G1473\"* am|strong=\"G1473\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"G1722\"* little children|strong=\"G5043\"*, of|strong=\"G1722\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* again|strong=\"G3825\"* in|strong=\"G1722\"* travail until|strong=\"G3360\"* Christ|strong=\"G5547\"* is|strong=\"G3739\"* formed|strong=\"G3445\"* in|strong=\"G1722\"* you|strong=\"G5210\"*—" + }, + { + "verseNum": 20, + "text": "but|strong=\"G1161\"* I|strong=\"G1473\"* could|strong=\"G3588\"* wish|strong=\"G2309\"* to|strong=\"G4314\"* be|strong=\"G2532\"* present|strong=\"G3918\"* with|strong=\"G1722\"* you|strong=\"G5210\"* now|strong=\"G1161\"*, and|strong=\"G2532\"* to|strong=\"G4314\"* change my|strong=\"G1722\"* tone|strong=\"G5456\"*, for|strong=\"G3754\"* I|strong=\"G1473\"* am|strong=\"G1473\"* perplexed about|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 21, + "text": "Tell|strong=\"G3004\"* me|strong=\"G1473\"*, you|strong=\"G3004\"* that|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G3004\"* be|strong=\"G1510\"* under|strong=\"G5259\"* the|strong=\"G3588\"* law|strong=\"G3551\"*, don’t|strong=\"G3588\"* you|strong=\"G3004\"* listen to|strong=\"G3004\"* the|strong=\"G3588\"* law|strong=\"G3551\"*?" + }, + { + "verseNum": 22, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"* that|strong=\"G3754\"* Abraham had|strong=\"G2192\"* two|strong=\"G1417\"* sons|strong=\"G5207\"*, one|strong=\"G1520\"* by|strong=\"G1537\"* the|strong=\"G2532\"* servant|strong=\"G3588\"*, and|strong=\"G2532\"* one|strong=\"G1520\"* by|strong=\"G1537\"* the|strong=\"G2532\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*." + }, + { + "verseNum": 23, + "text": "However|strong=\"G1161\"*, the|strong=\"G1537\"* son by|strong=\"G1223\"* the|strong=\"G1537\"* servant|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1537\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* the|strong=\"G1537\"* son by|strong=\"G1223\"* the|strong=\"G1537\"* free|strong=\"G1658\"* woman|strong=\"G1658\"* was|strong=\"G3588\"* born|strong=\"G1080\"* through|strong=\"G1223\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* contain an|strong=\"G1519\"* allegory, for|strong=\"G1063\"* these|strong=\"G3778\"* are|strong=\"G1510\"* two|strong=\"G1417\"* covenants|strong=\"G1242\"*. One|strong=\"G1520\"* is|strong=\"G1510\"* from|strong=\"G1519\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"*, bearing|strong=\"G1080\"* children|strong=\"G1080\"* to|strong=\"G1519\"* bondage|strong=\"G1397\"*, which|strong=\"G3748\"* is|strong=\"G1510\"* Hagar." + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* Hagar is|strong=\"G1510\"* Mount|strong=\"G3735\"* Sinai|strong=\"G4614\"* in|strong=\"G1722\"* Arabia, and|strong=\"G1161\"* answers to|strong=\"G1722\"* the|strong=\"G1722\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3588\"* exists now|strong=\"G1161\"*, for|strong=\"G1063\"* she|strong=\"G1161\"* is|strong=\"G1510\"* in|strong=\"G1722\"* bondage|strong=\"G1398\"* with|strong=\"G3326\"* her|strong=\"G3588\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* Jerusalem|strong=\"G2419\"* that|strong=\"G3588\"* is|strong=\"G1510\"* above is|strong=\"G1510\"* free|strong=\"G1658\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1161\"* mother|strong=\"G3384\"* of|strong=\"G3384\"* us|strong=\"G2249\"* all|strong=\"G1161\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* written|strong=\"G1125\"*," + }, + { + "verseNum": 28, + "text": "Now|strong=\"G1161\"* we|strong=\"G1161\"*, brothers, as|strong=\"G1161\"* Isaac|strong=\"G2464\"* was|strong=\"G1510\"*, are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G5043\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"G2532\"* as|strong=\"G5618\"* then|strong=\"G2532\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* persecuted|strong=\"G1377\"* him|strong=\"G3588\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, so|strong=\"G3779\"* also|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* now|strong=\"G3568\"*." + }, + { + "verseNum": 30, + "text": "However, what|strong=\"G5101\"* does|strong=\"G5101\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* say|strong=\"G3004\"*? “Throw|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* servant|strong=\"G3588\"* and|strong=\"G2532\"* her|strong=\"G3588\"* son|strong=\"G5207\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* servant|strong=\"G3588\"* will|strong=\"G5101\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* with|strong=\"G3326\"* the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*.”+ 4:30 Genesis 21:10*" + }, + { + "verseNum": 31, + "text": "So|strong=\"G1352\"* then|strong=\"G1352\"*, brothers, we|strong=\"G1352\"* are|strong=\"G1510\"* not|strong=\"G3756\"* children|strong=\"G5043\"* of|strong=\"G5043\"* a|strong=\"G1510\"* servant|strong=\"G3588\"*, but|strong=\"G3588\"* of|strong=\"G5043\"* the|strong=\"G3588\"* free|strong=\"G1658\"* woman|strong=\"G1658\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Stand|strong=\"G4739\"* firm|strong=\"G4739\"* therefore|strong=\"G3767\"* in|strong=\"G2532\"* the|strong=\"G2532\"* liberty|strong=\"G1657\"* by|strong=\"G2532\"* which|strong=\"G3588\"* Christ|strong=\"G5547\"* has|strong=\"G5547\"* made|strong=\"G1659\"* us|strong=\"G2249\"* free|strong=\"G1659\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* be|strong=\"G2532\"* entangled|strong=\"G1758\"* again|strong=\"G3825\"* with|strong=\"G2532\"* a|strong=\"G2532\"* yoke|strong=\"G2218\"* of|strong=\"G2532\"* bondage|strong=\"G1397\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"G2396\"*, I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, tell|strong=\"G3004\"* you|strong=\"G5210\"* that|strong=\"G3754\"* if|strong=\"G1437\"* you|strong=\"G5210\"* receive|strong=\"G4059\"* circumcision|strong=\"G4059\"*, Christ|strong=\"G5547\"* will|strong=\"G1473\"* profit|strong=\"G5623\"* you|strong=\"G5210\"* nothing|strong=\"G3762\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G1161\"* testify|strong=\"G3143\"* again|strong=\"G3825\"* to|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* who|strong=\"G3588\"* receives|strong=\"G4059\"* circumcision|strong=\"G4059\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G1510\"* a|strong=\"G1510\"* debtor|strong=\"G3781\"* to|strong=\"G1161\"* do|strong=\"G4160\"* the|strong=\"G3956\"* whole|strong=\"G3650\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G1722\"* are|strong=\"G3588\"* alienated from|strong=\"G3588\"* Christ|strong=\"G5547\"*, you|strong=\"G1722\"* who|strong=\"G3588\"* desire to|strong=\"G1722\"* be|strong=\"G3588\"* justified|strong=\"G1344\"* by|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*. You|strong=\"G1722\"* have|strong=\"G3748\"* fallen|strong=\"G1601\"* away|strong=\"G2673\"* from|strong=\"G3588\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* through|strong=\"G1537\"* the|strong=\"G1537\"* Spirit|strong=\"G4151\"*, by|strong=\"G1537\"* faith|strong=\"G4102\"* wait|strong=\"G4151\"* for|strong=\"G1063\"* the|strong=\"G1537\"* hope|strong=\"G1680\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* neither|strong=\"G3777\"* circumcision|strong=\"G4061\"* nor|strong=\"G3777\"* uncircumcision amounts to|strong=\"G1722\"* anything|strong=\"G5100\"*, but|strong=\"G1063\"* faith|strong=\"G4102\"* working|strong=\"G1754\"* through|strong=\"G1223\"* love." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* were|strong=\"G5101\"* running|strong=\"G5143\"* well|strong=\"G2573\"*! Who|strong=\"G5101\"* interfered with|strong=\"G3361\"* you|strong=\"G5210\"* that|strong=\"G3361\"* you|strong=\"G5210\"* should|strong=\"G3982\"* not|strong=\"G3361\"* obey|strong=\"G3982\"* the|strong=\"G3361\"* truth?" + }, + { + "verseNum": 8, + "text": "This|strong=\"G3588\"* persuasion|strong=\"G3988\"* is|strong=\"G3588\"* not|strong=\"G3756\"* from|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* calls|strong=\"G2564\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"G3588\"* little|strong=\"G3398\"* yeast|strong=\"G2219\"* grows through the|strong=\"G3588\"* whole|strong=\"G3650\"* lump|strong=\"G5445\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* have|strong=\"G1473\"* confidence|strong=\"G3982\"* toward|strong=\"G1519\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* you|strong=\"G5210\"* will|strong=\"G1510\"* think|strong=\"G5426\"* no|strong=\"G3762\"* other|strong=\"G1161\"* way|strong=\"G1722\"*. But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* troubles you|strong=\"G5210\"* will|strong=\"G1510\"* bear his|strong=\"G1519\"* judgment|strong=\"G2917\"*, whoever|strong=\"G3748\"* he|strong=\"G1161\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"*, brothers, if|strong=\"G1487\"* I|strong=\"G1473\"* still|strong=\"G2089\"* preach|strong=\"G2784\"* circumcision|strong=\"G4061\"*, why|strong=\"G5101\"* am|strong=\"G1473\"* I|strong=\"G1473\"* still|strong=\"G2089\"* persecuted|strong=\"G1377\"*? Then|strong=\"G1161\"* the|strong=\"G1161\"* stumbling|strong=\"G4625\"* block|strong=\"G4625\"* of|strong=\"G3588\"* the|strong=\"G1161\"* cross|strong=\"G4716\"* has|strong=\"G5101\"* been removed|strong=\"G2673\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* wish|strong=\"G3785\"* that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* disturb you|strong=\"G5210\"* would|strong=\"G2532\"* cut|strong=\"G2532\"* themselves off." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"*, brothers, were|strong=\"G3588\"* called|strong=\"G2564\"* for|strong=\"G1063\"* freedom|strong=\"G1657\"*. Only|strong=\"G3440\"* don’t|strong=\"G3588\"* use|strong=\"G3588\"* your|strong=\"G1223\"* freedom|strong=\"G1657\"* as|strong=\"G1519\"* an|strong=\"G1519\"* opportunity for|strong=\"G1063\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"*, but|strong=\"G3361\"* through|strong=\"G1223\"* love be|strong=\"G3361\"* servants to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* whole|strong=\"G3956\"* law|strong=\"G3551\"* is|strong=\"G3588\"* fulfilled|strong=\"G4137\"* in|strong=\"G1722\"* one|strong=\"G1520\"* word|strong=\"G3056\"*, in|strong=\"G1722\"* this|strong=\"G3588\"*: “You|strong=\"G4771\"* shall|strong=\"G3956\"* love your|strong=\"G3956\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*.”+ 5:14 Leviticus 19:18*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* bite|strong=\"G1143\"* and|strong=\"G2532\"* devour|strong=\"G2719\"* one|strong=\"G3361\"* another|strong=\"G1161\"*, be|strong=\"G2532\"* careful that|strong=\"G2532\"* you|strong=\"G1487\"* don’t consume|strong=\"G2719\"* one|strong=\"G3361\"* another|strong=\"G1161\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* say|strong=\"G3004\"*, walk|strong=\"G4043\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* you|strong=\"G3004\"* won’t fulfill the|strong=\"G2532\"* lust|strong=\"G1939\"* of|strong=\"G4151\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* lusts against|strong=\"G2596\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, and|strong=\"G1161\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* against|strong=\"G2596\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"*; and|strong=\"G1161\"* these|strong=\"G3778\"* are|strong=\"G3588\"* contrary|strong=\"G2596\"* to|strong=\"G2443\"* one|strong=\"G3739\"* another|strong=\"G3739\"*, that|strong=\"G2443\"* you|strong=\"G3739\"* may|strong=\"G2443\"* not|strong=\"G3361\"* do|strong=\"G4160\"* the|strong=\"G1161\"* things|strong=\"G3778\"* that|strong=\"G2443\"* you|strong=\"G3739\"* desire|strong=\"G2309\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* are|strong=\"G1510\"* led by|strong=\"G5259\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"*, you|strong=\"G1487\"* are|strong=\"G1510\"* not|strong=\"G3756\"* under|strong=\"G5259\"* the|strong=\"G1161\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"G1161\"* the|strong=\"G1161\"* deeds|strong=\"G2041\"* of|strong=\"G2041\"* the|strong=\"G1161\"* flesh|strong=\"G4561\"* are|strong=\"G1510\"* obvious|strong=\"G5318\"*, which|strong=\"G3588\"* are|strong=\"G1510\"*: adultery, sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, uncleanness, lustfulness," + }, + { + "verseNum": 20, + "text": "idolatry|strong=\"G1495\"*, sorcery|strong=\"G5331\"*, hatred|strong=\"G2189\"*, strife|strong=\"G2054\"*, jealousies, outbursts|strong=\"G2372\"* of|strong=\"G2372\"* anger|strong=\"G2372\"*, rivalries, divisions|strong=\"G1370\"*, heresies," + }, + { + "verseNum": 21, + "text": "envy|strong=\"G5355\"*, murders, drunkenness|strong=\"G3178\"*, orgies, and|strong=\"G2532\"* things|strong=\"G3778\"* like|strong=\"G3664\"* these|strong=\"G3778\"*; of|strong=\"G2316\"* which|strong=\"G3739\"* I|strong=\"G3739\"* forewarn|strong=\"G4302\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* I|strong=\"G3739\"* also|strong=\"G2532\"* forewarned you|strong=\"G5210\"*, that|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3739\"* practice|strong=\"G4238\"* such|strong=\"G5108\"* things|strong=\"G3778\"* will|strong=\"G2316\"* not|strong=\"G3756\"* inherit|strong=\"G2816\"* God|strong=\"G2316\"*’s Kingdom." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* the|strong=\"G1161\"* fruit|strong=\"G2590\"* of|strong=\"G4151\"* the|strong=\"G1161\"* Spirit|strong=\"G4151\"* is|strong=\"G1510\"* love, joy|strong=\"G5479\"*, peace|strong=\"G1515\"*, patience|strong=\"G3115\"*, kindness|strong=\"G5544\"*, goodness|strong=\"G5544\"*, faith|strong=\"G4102\"*,+ 5:22 or, faithfulness*" + }, + { + "verseNum": 23, + "text": "gentleness|strong=\"G4240\"*, and|strong=\"G3551\"* self-control|strong=\"G1466\"*. Against|strong=\"G2596\"* such|strong=\"G5108\"* things|strong=\"G3588\"* there|strong=\"G1510\"* is|strong=\"G1510\"* no|strong=\"G3756\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 24, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* belong to|strong=\"G2532\"* Christ|strong=\"G5547\"* have|strong=\"G2532\"* crucified|strong=\"G4717\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* with|strong=\"G4862\"* its passions|strong=\"G3804\"* and|strong=\"G2532\"* lusts|strong=\"G1939\"*." + }, + { + "verseNum": 25, + "text": "If|strong=\"G1487\"* we|strong=\"G2532\"* live|strong=\"G2198\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, let|strong=\"G2532\"*’s also|strong=\"G2532\"* walk|strong=\"G4748\"* by|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 26, + "text": "Let|strong=\"G1096\"*’s not|strong=\"G3361\"* become|strong=\"G1096\"* conceited|strong=\"G2755\"*, provoking|strong=\"G4292\"* one|strong=\"G3361\"* another, and|strong=\"G1096\"* envying|strong=\"G5354\"* one|strong=\"G3361\"* another." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Brothers, even|strong=\"G2532\"* if|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"* is|strong=\"G3588\"* caught|strong=\"G4301\"* in|strong=\"G1722\"* some|strong=\"G5100\"* fault|strong=\"G3900\"*, you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G3588\"* spiritual|strong=\"G4152\"* must|strong=\"G5100\"* restore|strong=\"G2675\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5100\"* in|strong=\"G1722\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* gentleness|strong=\"G4240\"*, looking|strong=\"G2532\"* to|strong=\"G2532\"* yourself|strong=\"G4572\"* so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* also|strong=\"G2532\"* aren’t|strong=\"G3588\"* tempted|strong=\"G3985\"*." + }, + { + "verseNum": 2, + "text": "Bear|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"*’s burdens, and|strong=\"G2532\"* so|strong=\"G3779\"* fulfill the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* a|strong=\"G1510\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* himself|strong=\"G1438\"* to|strong=\"G5100\"* be|strong=\"G1510\"* something|strong=\"G5100\"* when|strong=\"G1510\"* he|strong=\"G1063\"* is|strong=\"G1510\"* nothing|strong=\"G3367\"*, he|strong=\"G1063\"* deceives|strong=\"G5422\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* each|strong=\"G1538\"* man|strong=\"G1538\"* examine|strong=\"G1381\"* his|strong=\"G1438\"* own|strong=\"G1438\"* work|strong=\"G2041\"*, and|strong=\"G2532\"* then|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* have|strong=\"G2192\"* reason|strong=\"G2745\"* to|strong=\"G1519\"* boast|strong=\"G2745\"* in|strong=\"G1519\"* himself|strong=\"G1438\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* in|strong=\"G1519\"* someone|strong=\"G2087\"* else|strong=\"G2087\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* each|strong=\"G1538\"* man|strong=\"G1538\"* will|strong=\"G1538\"* bear his|strong=\"G2398\"* own|strong=\"G2398\"* burden|strong=\"G5413\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* taught|strong=\"G2727\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* share|strong=\"G2841\"* all|strong=\"G3956\"* good|strong=\"G3956\"* things|strong=\"G3956\"* with|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3588\"* teaches|strong=\"G2727\"*." + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"G2532\"* deceived|strong=\"G4105\"*. God|strong=\"G2316\"* is|strong=\"G2316\"* not|strong=\"G3756\"* mocked|strong=\"G3456\"*, for|strong=\"G1063\"* whatever|strong=\"G3739\"* a|strong=\"G2532\"* man|strong=\"G3778\"* sows|strong=\"G4687\"*, that|strong=\"G3739\"* he|strong=\"G2532\"* will|strong=\"G2316\"* also|strong=\"G2532\"* reap|strong=\"G2325\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G3754\"* he|strong=\"G1161\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* to|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* flesh|strong=\"G4561\"* will|strong=\"G3748\"* from|strong=\"G1537\"* the|strong=\"G1519\"* flesh|strong=\"G4561\"* reap|strong=\"G2325\"* corruption|strong=\"G5356\"*. But|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* sows|strong=\"G4687\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* will|strong=\"G3748\"* from|strong=\"G1537\"* the|strong=\"G1519\"* Spirit|strong=\"G4151\"* reap|strong=\"G2325\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1161\"*’s not|strong=\"G3361\"* be|strong=\"G3361\"* weary|strong=\"G1573\"* in|strong=\"G1161\"* doing|strong=\"G4160\"* good|strong=\"G2570\"*, for|strong=\"G1063\"* we|strong=\"G1063\"* will|strong=\"G4160\"* reap|strong=\"G2325\"* in|strong=\"G1161\"* due|strong=\"G2398\"* season|strong=\"G2540\"* if|strong=\"G1161\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* give|strong=\"G4160\"* up|strong=\"G3361\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, as|strong=\"G5613\"* we|strong=\"G1161\"* have|strong=\"G2192\"* opportunity|strong=\"G2540\"*, let|strong=\"G1161\"*’s|strong=\"G2192\"* do|strong=\"G2192\"* what|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* toward|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, and|strong=\"G1161\"* especially|strong=\"G3122\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G3956\"* the|strong=\"G3956\"* household|strong=\"G3609\"* of|strong=\"G3956\"* the|strong=\"G3956\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 11, + "text": "See|strong=\"G3708\"* with|strong=\"G5495\"* what|strong=\"G3588\"* large|strong=\"G4080\"* letters|strong=\"G1121\"* I|strong=\"G1125\"* write|strong=\"G1125\"* to|strong=\"G3708\"* you|strong=\"G5210\"* with|strong=\"G5495\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* make|strong=\"G2309\"* a|strong=\"G1722\"* good|strong=\"G3588\"* impression in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* compel you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G3361\"* circumcised|strong=\"G4059\"*, just|strong=\"G3440\"* so|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* persecuted|strong=\"G1377\"* for|strong=\"G1722\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* even|strong=\"G3761\"* they|strong=\"G3588\"* who|strong=\"G3588\"* receive|strong=\"G4059\"* circumcision|strong=\"G4059\"* don’t|strong=\"G3588\"* keep|strong=\"G5442\"* the|strong=\"G1722\"* law|strong=\"G3551\"* themselves|strong=\"G1722\"*, but|strong=\"G1063\"* they|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2443\"* have|strong=\"G2309\"* you|strong=\"G5210\"* circumcised|strong=\"G4059\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* boast|strong=\"G2744\"* in|strong=\"G1722\"* your|strong=\"G5212\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* far|strong=\"G3588\"* be|strong=\"G1096\"* it|strong=\"G1161\"* from|strong=\"G3588\"* me|strong=\"G1473\"* to|strong=\"G1722\"* boast|strong=\"G2744\"* except|strong=\"G1487\"* in|strong=\"G1722\"* the|strong=\"G1722\"* cross|strong=\"G4716\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* the|strong=\"G1722\"* world|strong=\"G2889\"* has|strong=\"G2962\"* been|strong=\"G1096\"* crucified|strong=\"G4717\"* to|strong=\"G1722\"* me|strong=\"G1473\"*, and|strong=\"G1161\"* I|strong=\"G1473\"* to|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* in|strong=\"G1063\"* Christ Jesus|strong=\"G1510\"* neither|strong=\"G3777\"* is|strong=\"G1510\"* circumcision|strong=\"G4061\"* anything|strong=\"G5100\"*, nor|strong=\"G3777\"* uncircumcision, but|strong=\"G1063\"* a|strong=\"G1510\"* new|strong=\"G2537\"* creation|strong=\"G2937\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* walk|strong=\"G4748\"* by|strong=\"G1909\"* this|strong=\"G3778\"* rule|strong=\"G2583\"*, peace|strong=\"G1515\"* and|strong=\"G2532\"* mercy|strong=\"G1656\"* be|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* God|strong=\"G2316\"*’s Israel|strong=\"G2474\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"G3588\"* now|strong=\"G1722\"* on|strong=\"G1722\"*, let|strong=\"G3930\"* no|strong=\"G3367\"* one|strong=\"G3367\"* cause|strong=\"G3930\"* me|strong=\"G1473\"* any|strong=\"G3367\"* trouble|strong=\"G2873\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* bear the|strong=\"G1722\"* marks|strong=\"G4742\"* of|strong=\"G4983\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* branded on|strong=\"G1722\"* my|strong=\"G1722\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*, brothers. Amen." + } + ] + } + ] + }, + { + "name": "Ephesians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* saints who|strong=\"G3588\"* are|strong=\"G1510\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2127\"* be|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* has|strong=\"G2316\"* blessed|strong=\"G2127\"* us|strong=\"G2249\"* with|strong=\"G1722\"* every|strong=\"G3956\"* spiritual|strong=\"G4152\"* blessing|strong=\"G2129\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 4, + "text": "even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* chose|strong=\"G1586\"* us|strong=\"G2249\"* in|strong=\"G1722\"* him|strong=\"G2532\"* before|strong=\"G4253\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, that|strong=\"G2532\"* we|strong=\"G2249\"* would|strong=\"G2532\"* be|strong=\"G1510\"* holy and|strong=\"G2532\"* without|strong=\"G2532\"* defect before|strong=\"G4253\"* him|strong=\"G2532\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 5, + "text": "having predestined|strong=\"G4309\"* us|strong=\"G1519\"* for|strong=\"G1519\"* adoption|strong=\"G5206\"* as|strong=\"G1519\"* children|strong=\"G5206\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* himself|strong=\"G1519\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"* of|strong=\"G1223\"* his|strong=\"G1223\"* desire|strong=\"G2107\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* praise|strong=\"G1868\"* of|strong=\"G5485\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G5485\"* his|strong=\"G1519\"* grace|strong=\"G5485\"*, by|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G3739\"* freely|strong=\"G5487\"* gave|strong=\"G3588\"* us|strong=\"G1519\"* favor|strong=\"G5485\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Beloved." + }, + { + "verseNum": 7, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G3739\"* have|strong=\"G2192\"* our|strong=\"G1223\"* redemption through|strong=\"G1223\"* his|strong=\"G1223\"* blood, the|strong=\"G1722\"* forgiveness of|strong=\"G1223\"* our|strong=\"G1223\"* trespasses|strong=\"G3900\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G1223\"* his|strong=\"G1223\"* grace|strong=\"G5485\"*" + }, + { + "verseNum": 8, + "text": "which|strong=\"G3739\"* he|strong=\"G2532\"* made|strong=\"G3956\"* to|strong=\"G1519\"* abound|strong=\"G4052\"* toward|strong=\"G1519\"* us|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* prudence|strong=\"G5428\"*," + }, + { + "verseNum": 9, + "text": "making known|strong=\"G1107\"* to|strong=\"G2596\"* us|strong=\"G2249\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2307\"* his|strong=\"G1722\"* will|strong=\"G2307\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G1722\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"* which|strong=\"G3739\"* he|strong=\"G3739\"* purposed|strong=\"G4388\"* in|strong=\"G1722\"* him|strong=\"G3588\"*" + }, + { + "verseNum": 10, + "text": "to|strong=\"G1519\"* an|strong=\"G2532\"* administration|strong=\"G3622\"* of|strong=\"G2532\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G2532\"* the|strong=\"G1722\"* times|strong=\"G2540\"*, to|strong=\"G1519\"* sum up|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3956\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* assigned an|strong=\"G2532\"* inheritance|strong=\"G2820\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* foreordained according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* purpose|strong=\"G4286\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* does all|strong=\"G3956\"* things|strong=\"G3956\"* after|strong=\"G2596\"* the|strong=\"G1722\"* counsel|strong=\"G1012\"* of|strong=\"G2532\"* his|strong=\"G3956\"* will|strong=\"G2307\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G3588\"* be|strong=\"G1510\"* to|strong=\"G1519\"* the|strong=\"G1722\"* praise|strong=\"G1868\"* of|strong=\"G1391\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*, we|strong=\"G2249\"* who|strong=\"G3588\"* had|strong=\"G1510\"* before|strong=\"G1722\"* hoped in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* heard the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth, the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"* of|strong=\"G3056\"* your|strong=\"G2532\"* salvation|strong=\"G4991\"*—in|strong=\"G1722\"* whom|strong=\"G3739\"*, having|strong=\"G2532\"* also|strong=\"G2532\"* believed|strong=\"G4100\"*, you|strong=\"G5210\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"* with|strong=\"G1722\"* the|strong=\"G1722\"* promised|strong=\"G1860\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G1519\"* pledge of|strong=\"G1391\"* our|strong=\"G1519\"* inheritance|strong=\"G2817\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* redemption of|strong=\"G1391\"* God|strong=\"G1519\"*’s own possession|strong=\"G4047\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* praise|strong=\"G1868\"* of|strong=\"G1391\"* his|strong=\"G1519\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G2532\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* heard of|strong=\"G1223\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* which|strong=\"G3588\"* is|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"* and|strong=\"G2532\"* the|strong=\"G1722\"* love which|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 16, + "text": "don’t|strong=\"G3588\"* cease|strong=\"G3973\"* to|strong=\"G1909\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* for|strong=\"G5228\"* you|strong=\"G5210\"*, making|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G1909\"* you|strong=\"G5210\"* in|strong=\"G1909\"* my|strong=\"G1473\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* Father|strong=\"G3962\"* of|strong=\"G4151\"* glory|strong=\"G1391\"*, may|strong=\"G2532\"* give|strong=\"G1325\"* to|strong=\"G2443\"* you|strong=\"G5210\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* revelation in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G4151\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 18, + "text": "having|strong=\"G1492\"* the|strong=\"G1722\"* eyes|strong=\"G3788\"* of|strong=\"G1391\"* your|strong=\"G1722\"* hearts|strong=\"G2588\"*+ 1:18 TR reads “understanding” instead of “hearts”* enlightened|strong=\"G5461\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G1391\"* his|strong=\"G1519\"* calling|strong=\"G2821\"*, and|strong=\"G1391\"* what|strong=\"G5101\"* are|strong=\"G1510\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G1391\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G1391\"* his|strong=\"G1519\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G2532\"* exceeding|strong=\"G5235\"* greatness|strong=\"G3174\"* of|strong=\"G2532\"* his|strong=\"G1519\"* power|strong=\"G1411\"* toward|strong=\"G1519\"* us|strong=\"G1519\"* who|strong=\"G5101\"* believe|strong=\"G4100\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* that|strong=\"G3588\"* working|strong=\"G1753\"* of|strong=\"G2532\"* the|strong=\"G2532\"* strength|strong=\"G2479\"* of|strong=\"G2532\"* his|strong=\"G1519\"* might|strong=\"G2479\"*" + }, + { + "verseNum": 20, + "text": "which|strong=\"G3739\"* he|strong=\"G2532\"* worked|strong=\"G1754\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* when|strong=\"G2532\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* made him|strong=\"G3588\"* to|strong=\"G2532\"* sit|strong=\"G2523\"* at|strong=\"G1722\"* his|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places," + }, + { + "verseNum": 21, + "text": "far|strong=\"G5231\"* above|strong=\"G5231\"* all|strong=\"G3956\"* rule, authority|strong=\"G1849\"*, power|strong=\"G1411\"*, dominion|strong=\"G2963\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* name|strong=\"G3686\"* that|strong=\"G3588\"* is|strong=\"G3588\"* named|strong=\"G3686\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G1722\"* this|strong=\"G3778\"* age, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"G2532\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* under|strong=\"G5259\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* head|strong=\"G2776\"* over|strong=\"G5228\"* all|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G5228\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 23, + "text": "which|strong=\"G3588\"* is|strong=\"G1510\"* his|strong=\"G3956\"* body|strong=\"G4983\"*, the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G4983\"* him|strong=\"G3588\"* who|strong=\"G3588\"* fills|strong=\"G4137\"* all|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"G5210\"* were|strong=\"G1510\"* made alive when|strong=\"G2532\"* you|strong=\"G5210\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* in|strong=\"G2532\"* transgressions|strong=\"G3900\"* and|strong=\"G2532\"* sins|strong=\"G3900\"*," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* once|strong=\"G4218\"* walked|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* course of|strong=\"G5207\"* this|strong=\"G3778\"* world|strong=\"G2889\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* prince of|strong=\"G5207\"* the|strong=\"G1722\"* power|strong=\"G1849\"* of|strong=\"G5207\"* the|strong=\"G1722\"* air, the|strong=\"G1722\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* now|strong=\"G3568\"* works|strong=\"G1754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 3, + "text": "We|strong=\"G2249\"* also|strong=\"G2532\"* all|strong=\"G3956\"* once|strong=\"G4218\"* lived|strong=\"G1510\"* among|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2532\"* our|strong=\"G2532\"* flesh|strong=\"G4561\"*, doing|strong=\"G4160\"* the|strong=\"G1722\"* desires|strong=\"G1939\"* of|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* mind|strong=\"G1271\"*, and|strong=\"G2532\"* were|strong=\"G1510\"* by|strong=\"G1722\"* nature|strong=\"G5449\"* children|strong=\"G5043\"* of|strong=\"G2532\"* wrath|strong=\"G3709\"*, even|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G1722\"* rest|strong=\"G3062\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"*, being|strong=\"G1510\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* mercy|strong=\"G1656\"*, for|strong=\"G1223\"* his|strong=\"G1223\"* great|strong=\"G4183\"* love with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G1161\"* loved us|strong=\"G2249\"*," + }, + { + "verseNum": 5, + "text": "even|strong=\"G2532\"* when|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* through|strong=\"G3900\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*, made|strong=\"G4982\"* us|strong=\"G2249\"* alive|strong=\"G4806\"* together|strong=\"G4806\"* with|strong=\"G2532\"* Christ|strong=\"G5547\"*—by|strong=\"G2532\"* grace|strong=\"G5485\"* you|strong=\"G1510\"* have|strong=\"G2532\"* been|strong=\"G1510\"* saved|strong=\"G4982\"*—" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* raised|strong=\"G4891\"* us|strong=\"G1722\"* up|strong=\"G2532\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* made|strong=\"G4776\"* us|strong=\"G1722\"* to|strong=\"G2532\"* sit with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* in|strong=\"G1722\"* the|strong=\"G1722\"* ages to|strong=\"G2443\"* come|strong=\"G1904\"* he|strong=\"G3588\"* might|strong=\"G5547\"* show|strong=\"G1731\"* the|strong=\"G1722\"* exceeding|strong=\"G5235\"* riches|strong=\"G4149\"* of|strong=\"G5485\"* his|strong=\"G1909\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* kindness|strong=\"G5544\"* toward|strong=\"G1909\"* us|strong=\"G2249\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*;" + }, + { + "verseNum": 8, + "text": "for|strong=\"G1063\"* by|strong=\"G1223\"* grace|strong=\"G5485\"* you|strong=\"G5210\"* have|strong=\"G2532\"* been|strong=\"G1510\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G1537\"* yourselves|strong=\"G4771\"*; it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* gift|strong=\"G1435\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3756\"* of|strong=\"G1537\"* works|strong=\"G2041\"*, that|strong=\"G2443\"* no|strong=\"G3756\"* one|strong=\"G5100\"* would|strong=\"G5100\"* boast|strong=\"G2744\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* we|strong=\"G3739\"* are|strong=\"G1510\"* his|strong=\"G1909\"* workmanship|strong=\"G4161\"*, created|strong=\"G2936\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* for|strong=\"G1063\"* good|strong=\"G3588\"* works|strong=\"G2041\"*, which|strong=\"G3739\"* God|strong=\"G2316\"* prepared|strong=\"G4282\"* before|strong=\"G1909\"* that|strong=\"G2443\"* we|strong=\"G3739\"* would|strong=\"G2316\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G1352\"* remember|strong=\"G3421\"* that|strong=\"G3754\"* once|strong=\"G4218\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G3004\"* “uncircumcision” by|strong=\"G1722\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* “circumcision|strong=\"G4061\"*” (in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, made|strong=\"G5499\"* by|strong=\"G1722\"* hands|strong=\"G5499\"*)," + }, + { + "verseNum": 12, + "text": "that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G1510\"* at|strong=\"G1722\"* that|strong=\"G3754\"* time|strong=\"G2540\"* separate|strong=\"G5565\"* from|strong=\"G2532\"* Christ|strong=\"G5547\"*, alienated from|strong=\"G2532\"* the|strong=\"G1722\"* commonwealth|strong=\"G4174\"* of|strong=\"G2532\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* strangers|strong=\"G3581\"* from|strong=\"G2532\"* the|strong=\"G1722\"* covenants|strong=\"G1242\"* of|strong=\"G2532\"* the|strong=\"G1722\"* promise|strong=\"G1860\"*, having|strong=\"G2192\"* no|strong=\"G3361\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* without|strong=\"G5565\"* God|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* you|strong=\"G5210\"* who|strong=\"G3588\"* once|strong=\"G4218\"* were|strong=\"G1510\"* far|strong=\"G3112\"* off|strong=\"G3112\"* are|strong=\"G1510\"* made|strong=\"G1096\"* near|strong=\"G1451\"* in|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* is|strong=\"G1510\"* our|strong=\"G2532\"* peace|strong=\"G1515\"*, who|strong=\"G3588\"* made|strong=\"G4160\"* both|strong=\"G2532\"* one|strong=\"G1520\"*, and|strong=\"G2532\"* broke|strong=\"G3089\"* down|strong=\"G3089\"* the|strong=\"G1722\"* middle wall|strong=\"G3320\"* of|strong=\"G2532\"* separation," + }, + { + "verseNum": 15, + "text": "having|strong=\"G4160\"* abolished|strong=\"G2673\"* in|strong=\"G1722\"* his|strong=\"G1438\"* flesh|strong=\"G4561\"* the|strong=\"G1722\"* hostility|strong=\"G2189\"*, the|strong=\"G1722\"* law|strong=\"G3551\"* of|strong=\"G3551\"* commandments|strong=\"G1785\"* contained in|strong=\"G1722\"* ordinances|strong=\"G1378\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* might|strong=\"G1785\"* create|strong=\"G2936\"* in|strong=\"G1722\"* himself|strong=\"G1438\"* one|strong=\"G1520\"* new|strong=\"G2537\"* man|strong=\"G1520\"* of|strong=\"G3551\"* the|strong=\"G1722\"* two|strong=\"G1417\"*, making|strong=\"G4160\"* peace|strong=\"G1515\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* might|strong=\"G2532\"* reconcile them|strong=\"G3588\"* both|strong=\"G2532\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"* to|strong=\"G2532\"* God|strong=\"G2316\"* through|strong=\"G1223\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*, having|strong=\"G2532\"* killed the|strong=\"G1722\"* hostility|strong=\"G2189\"* through|strong=\"G1223\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* came|strong=\"G2064\"* and|strong=\"G2532\"* preached|strong=\"G2097\"* peace|strong=\"G1515\"* to|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* were|strong=\"G3588\"* far|strong=\"G3112\"* off|strong=\"G3112\"* and|strong=\"G2532\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* near|strong=\"G1451\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G3754\"* through|strong=\"G1223\"* him|strong=\"G3588\"* we|strong=\"G3754\"* both|strong=\"G3588\"* have|strong=\"G2192\"* our|strong=\"G1223\"* access|strong=\"G4318\"* in|strong=\"G1722\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"* to|strong=\"G4314\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"* you|strong=\"G1510\"* are|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* strangers|strong=\"G3581\"* and|strong=\"G2532\"* foreigners|strong=\"G3941\"*, but|strong=\"G2532\"* you|strong=\"G1510\"* are|strong=\"G1510\"* fellow|strong=\"G4847\"* citizens|strong=\"G4847\"* with|strong=\"G2532\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G2532\"* household|strong=\"G3609\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 20, + "text": "being|strong=\"G1510\"* built|strong=\"G2026\"* on|strong=\"G1909\"* the|strong=\"G2532\"* foundation|strong=\"G2310\"* of|strong=\"G2532\"* the|strong=\"G2532\"* apostles and|strong=\"G2532\"* prophets|strong=\"G4396\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* himself being|strong=\"G1510\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* cornerstone;" + }, + { + "verseNum": 21, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* the|strong=\"G1722\"* whole|strong=\"G3956\"* building|strong=\"G3619\"*, fitted|strong=\"G4883\"* together|strong=\"G4883\"*, grows into|strong=\"G1519\"* a|strong=\"G1519\"* holy temple|strong=\"G3485\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 22, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* are|strong=\"G3588\"* built|strong=\"G4925\"* together|strong=\"G4925\"* for|strong=\"G1519\"* a|strong=\"G2532\"* habitation|strong=\"G2732\"* of|strong=\"G4151\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G5228\"* this|strong=\"G3778\"* cause|strong=\"G5484\"* I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, am|strong=\"G1473\"* the|strong=\"G3588\"* prisoner|strong=\"G1198\"* of|strong=\"G5228\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G5228\"* you|strong=\"G5210\"* Gentiles|strong=\"G1484\"*," + }, + { + "verseNum": 2, + "text": "if|strong=\"G1487\"* it|strong=\"G1487\"* is|strong=\"G3588\"* so|strong=\"G1519\"* that|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G1473\"* heard of|strong=\"G2316\"* the|strong=\"G1519\"* administration|strong=\"G3622\"* of|strong=\"G2316\"* that|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* me|strong=\"G1325\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 3, + "text": "how|strong=\"G3754\"* that|strong=\"G3754\"* by|strong=\"G1722\"* revelation the|strong=\"G1722\"* mystery|strong=\"G3466\"* was|strong=\"G3588\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2596\"* me|strong=\"G1473\"*, as|strong=\"G2531\"* I|strong=\"G1473\"* wrote|strong=\"G4270\"* before|strong=\"G1722\"* in|strong=\"G1722\"* few|strong=\"G3641\"* words|strong=\"G3641\"*," + }, + { + "verseNum": 4, + "text": "by|strong=\"G1722\"* which|strong=\"G3739\"*, when|strong=\"G1722\"* you|strong=\"G3739\"* read, you|strong=\"G3739\"* can|strong=\"G1410\"* perceive|strong=\"G3539\"* my|strong=\"G1722\"* understanding|strong=\"G4907\"* in|strong=\"G1722\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 5, + "text": "which|strong=\"G3739\"* in|strong=\"G1722\"* other|strong=\"G2087\"* generations|strong=\"G1074\"* was|strong=\"G3588\"* not|strong=\"G3756\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5207\"* of|strong=\"G5207\"* men|strong=\"G3588\"*, as|strong=\"G5613\"* it|strong=\"G2532\"* has|strong=\"G3739\"* now|strong=\"G3568\"* been|strong=\"G2532\"* revealed to|strong=\"G2532\"* his|strong=\"G1722\"* holy|strong=\"G4151\"* apostles and|strong=\"G2532\"* prophets|strong=\"G4396\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* are|strong=\"G1510\"* fellow|strong=\"G4789\"* heirs|strong=\"G4789\"* and|strong=\"G2532\"* fellow|strong=\"G4789\"* members|strong=\"G4954\"* of|strong=\"G1223\"* the|strong=\"G1722\"* body|strong=\"G4954\"*, and|strong=\"G2532\"* fellow|strong=\"G4789\"* partakers|strong=\"G4830\"* of|strong=\"G1223\"* his|strong=\"G1223\"* promise|strong=\"G1860\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 7, + "text": "of|strong=\"G2316\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* gift|strong=\"G1431\"* of|strong=\"G2316\"* that|strong=\"G3739\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1096\"* given|strong=\"G1325\"* me|strong=\"G1325\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* working|strong=\"G1753\"* of|strong=\"G2316\"* his|strong=\"G1325\"* power|strong=\"G1411\"*." + }, + { + "verseNum": 8, + "text": "To|strong=\"G1325\"* me|strong=\"G1325\"*, the|strong=\"G3956\"* very|strong=\"G1646\"* least|strong=\"G1646\"* of|strong=\"G5485\"* all|strong=\"G3956\"* saints, was|strong=\"G3588\"* this|strong=\"G3778\"* grace|strong=\"G5485\"* given|strong=\"G1325\"*, to|strong=\"G1325\"* preach|strong=\"G2097\"* to|strong=\"G1325\"* the|strong=\"G3956\"* Gentiles|strong=\"G1484\"* the|strong=\"G3956\"* unsearchable riches|strong=\"G4149\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* make|strong=\"G2936\"* all|strong=\"G3956\"* men|strong=\"G3956\"* see|strong=\"G5461\"* what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* administration|strong=\"G3622\"*+ 3:9 TR reads “fellowship” instead of “administration”* of|strong=\"G2316\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* which|strong=\"G3588\"* for|strong=\"G1722\"* ages has|strong=\"G2316\"* been|strong=\"G2532\"* hidden in|strong=\"G1722\"* God|strong=\"G2316\"*, who|strong=\"G5101\"* created|strong=\"G2936\"* all|strong=\"G3956\"* things|strong=\"G3956\"* through|strong=\"G1722\"* Jesus|strong=\"G2532\"* Christ," + }, + { + "verseNum": 10, + "text": "to|strong=\"G2443\"* the|strong=\"G1722\"* intent that|strong=\"G2443\"* now|strong=\"G3568\"* through|strong=\"G1223\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* the|strong=\"G1722\"* manifold|strong=\"G4182\"* wisdom|strong=\"G4678\"* of|strong=\"G1223\"* God|strong=\"G2316\"* might|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2443\"* the|strong=\"G1722\"* principalities and|strong=\"G2532\"* the|strong=\"G1722\"* powers|strong=\"G1849\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places," + }, + { + "verseNum": 11, + "text": "according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* eternal purpose|strong=\"G4286\"* which|strong=\"G3739\"* he|strong=\"G3739\"* accomplished|strong=\"G4160\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* we|strong=\"G3739\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* and|strong=\"G2532\"* access|strong=\"G4318\"* in|strong=\"G1722\"* confidence|strong=\"G3954\"* through|strong=\"G1223\"* our|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* ask that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5210\"* not|strong=\"G3361\"* lose heart at|strong=\"G1722\"* my|strong=\"G1722\"* troubles|strong=\"G2347\"* for|strong=\"G5228\"* you|strong=\"G5210\"*, which|strong=\"G3588\"* are|strong=\"G1510\"* your|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G4314\"* this|strong=\"G3778\"* cause|strong=\"G5484\"*, I|strong=\"G1473\"* bow|strong=\"G2578\"* my|strong=\"G1473\"* knees|strong=\"G1119\"* to|strong=\"G4314\"* the|strong=\"G4314\"* Father|strong=\"G3962\"* of|strong=\"G3962\"* our|strong=\"G4314\"* Lord|strong=\"G3588\"* Jesus|strong=\"G3778\"* Christ," + }, + { + "verseNum": 15, + "text": "from|strong=\"G1537\"* whom|strong=\"G3739\"* every|strong=\"G3956\"* family|strong=\"G3965\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* on|strong=\"G1909\"* earth|strong=\"G1093\"* is|strong=\"G3739\"* named|strong=\"G3687\"*," + }, + { + "verseNum": 16, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* would|strong=\"G1325\"* grant|strong=\"G1325\"* you|strong=\"G5210\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* riches|strong=\"G4149\"* of|strong=\"G4151\"* his|strong=\"G1223\"* glory|strong=\"G1391\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2443\"* be|strong=\"G1519\"* strengthened|strong=\"G2901\"* with|strong=\"G1223\"* power|strong=\"G1411\"* through|strong=\"G1223\"* his|strong=\"G1223\"* Spirit|strong=\"G4151\"* in|strong=\"G1519\"* the|strong=\"G1519\"* inner|strong=\"G2080\"* person," + }, + { + "verseNum": 17, + "text": "that|strong=\"G3588\"* Christ|strong=\"G5547\"* may|strong=\"G2532\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* your|strong=\"G1223\"* hearts|strong=\"G2588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* end that|strong=\"G3588\"* you|strong=\"G5210\"*, being|strong=\"G2532\"* rooted and|strong=\"G2532\"* grounded|strong=\"G2311\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 18, + "text": "may|strong=\"G2532\"* be|strong=\"G2532\"* strengthened to|strong=\"G2443\"* comprehend|strong=\"G2638\"* with|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints what|strong=\"G5101\"* is|strong=\"G3588\"* the|strong=\"G1722\"* width|strong=\"G4114\"* and|strong=\"G2532\"* length|strong=\"G3372\"* and|strong=\"G2532\"* height|strong=\"G5311\"* and|strong=\"G2532\"* depth," + }, + { + "verseNum": 19, + "text": "and|strong=\"G5037\"* to|strong=\"G1519\"* know|strong=\"G1097\"* Christ|strong=\"G5547\"*’s love which|strong=\"G3588\"* surpasses|strong=\"G5235\"* knowledge|strong=\"G1108\"*, that|strong=\"G2443\"* you|strong=\"G3956\"* may|strong=\"G2443\"* be|strong=\"G3956\"* filled|strong=\"G4137\"* with|strong=\"G2316\"* all|strong=\"G3956\"* the|strong=\"G1519\"* fullness|strong=\"G4138\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* to|strong=\"G2596\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2596\"* do|strong=\"G4160\"* exceedingly abundantly|strong=\"G4053\"* above|strong=\"G5228\"* all|strong=\"G3956\"* that|strong=\"G3739\"* we|strong=\"G2249\"* ask or|strong=\"G2228\"* think|strong=\"G3539\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* power|strong=\"G1411\"* that|strong=\"G3739\"* works|strong=\"G1754\"* in|strong=\"G1722\"* us|strong=\"G4160\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* to|strong=\"G1519\"* all|strong=\"G3956\"* generations|strong=\"G1074\"*, forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G1473\"* therefore|strong=\"G3767\"*, the|strong=\"G1722\"* prisoner|strong=\"G1198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, beg|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G1722\"* walk|strong=\"G4043\"* worthily of|strong=\"G2962\"* the|strong=\"G1722\"* calling|strong=\"G2821\"* with|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"*," + }, + { + "verseNum": 2, + "text": "with|strong=\"G3326\"* all|strong=\"G3956\"* lowliness|strong=\"G5012\"* and|strong=\"G2532\"* humility|strong=\"G5012\"*, with|strong=\"G3326\"* patience|strong=\"G3115\"*, bearing with|strong=\"G3326\"* one|strong=\"G3956\"* another|strong=\"G1722\"* in|strong=\"G1722\"* love," + }, + { + "verseNum": 3, + "text": "being|strong=\"G1722\"* eager|strong=\"G4704\"* to|strong=\"G1722\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* unity|strong=\"G1775\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* in|strong=\"G1722\"* the|strong=\"G1722\"* bond|strong=\"G4886\"* of|strong=\"G4151\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 4, + "text": "There|strong=\"G2532\"* is|strong=\"G3588\"* one|strong=\"G1520\"* body|strong=\"G4983\"* and|strong=\"G2532\"* one|strong=\"G1520\"* Spirit|strong=\"G4151\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G5210\"* also|strong=\"G2532\"* were|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1722\"* one|strong=\"G1520\"* hope|strong=\"G1680\"* of|strong=\"G4151\"* your|strong=\"G2532\"* calling|strong=\"G2821\"*," + }, + { + "verseNum": 5, + "text": "one|strong=\"G1520\"* Lord|strong=\"G2962\"*, one|strong=\"G1520\"* faith|strong=\"G4102\"*, one|strong=\"G1520\"* baptism," + }, + { + "verseNum": 6, + "text": "one|strong=\"G1520\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G1223\"* all|strong=\"G3956\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* over|strong=\"G1909\"* all|strong=\"G3956\"* and|strong=\"G2532\"* through|strong=\"G1223\"* all|strong=\"G3956\"* and|strong=\"G2532\"* in|strong=\"G1722\"* us|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* to|strong=\"G2596\"* each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G5485\"* us|strong=\"G1325\"*, the|strong=\"G1161\"* grace|strong=\"G5485\"* was|strong=\"G3588\"* given|strong=\"G1325\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1161\"* measure|strong=\"G3358\"* of|strong=\"G5485\"* the|strong=\"G1161\"* gift|strong=\"G1431\"* of|strong=\"G5485\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* he|strong=\"G3588\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 9, + "text": "Now|strong=\"G1161\"* this|strong=\"G3588\"*, “He|strong=\"G2532\"* ascended|strong=\"G3588\"*”, what|strong=\"G5101\"* is|strong=\"G1510\"* it|strong=\"G2532\"* but|strong=\"G1161\"* that|strong=\"G3754\"* he|strong=\"G2532\"* also|strong=\"G2532\"* first|strong=\"G3588\"* descended|strong=\"G2597\"* into|strong=\"G1519\"* the|strong=\"G2532\"* lower|strong=\"G2737\"* parts|strong=\"G3313\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* descended|strong=\"G2597\"* is|strong=\"G1510\"* the|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* also|strong=\"G2532\"* ascended|strong=\"G3588\"* far|strong=\"G5231\"* above|strong=\"G5231\"* all|strong=\"G3956\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* fill|strong=\"G4137\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* gave|strong=\"G1325\"* some|strong=\"G3588\"* to|strong=\"G2532\"* be|strong=\"G2532\"* apostles; and|strong=\"G2532\"* some|strong=\"G3588\"*, prophets|strong=\"G4396\"*; and|strong=\"G2532\"* some|strong=\"G3588\"*, evangelists|strong=\"G2099\"*; and|strong=\"G2532\"* some|strong=\"G3588\"*, shepherds|strong=\"G4166\"*+ 4:11 or, pastors* and|strong=\"G2532\"* teachers|strong=\"G1320\"*;" + }, + { + "verseNum": 12, + "text": "for|strong=\"G1519\"* the|strong=\"G1519\"* perfecting|strong=\"G2677\"* of|strong=\"G2041\"* the|strong=\"G1519\"* saints, to|strong=\"G1519\"* the|strong=\"G1519\"* work|strong=\"G2041\"* of|strong=\"G2041\"* serving|strong=\"G1248\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* building|strong=\"G3619\"* up|strong=\"G1519\"* of|strong=\"G2041\"* the|strong=\"G1519\"* body|strong=\"G4983\"* of|strong=\"G2041\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 13, + "text": "until|strong=\"G3360\"* we|strong=\"G2532\"* all|strong=\"G3956\"* attain|strong=\"G2658\"* to|strong=\"G1519\"* the|strong=\"G2532\"* unity|strong=\"G1775\"* of|strong=\"G5207\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G5207\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* a|strong=\"G2532\"* full|strong=\"G4138\"* grown man|strong=\"G3956\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* measure|strong=\"G3358\"* of|strong=\"G5207\"* the|strong=\"G2532\"* stature|strong=\"G2244\"* of|strong=\"G5207\"* the|strong=\"G2532\"* fullness|strong=\"G4138\"* of|strong=\"G5207\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* be|strong=\"G1510\"* children|strong=\"G3516\"*, tossed|strong=\"G2831\"* back|strong=\"G4314\"* and|strong=\"G2532\"* forth and|strong=\"G2532\"* carried|strong=\"G2532\"* about|strong=\"G1722\"* with|strong=\"G1722\"* every|strong=\"G3956\"* wind of|strong=\"G2532\"* doctrine|strong=\"G1319\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* trickery|strong=\"G3834\"* of|strong=\"G2532\"* men|strong=\"G3956\"*, in|strong=\"G1722\"* craftiness|strong=\"G3834\"*, after|strong=\"G2532\"* the|strong=\"G1722\"* wiles|strong=\"G3180\"* of|strong=\"G2532\"* error|strong=\"G4106\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* speaking truth in|strong=\"G1722\"* love, we|strong=\"G3739\"* may|strong=\"G5547\"* grow up|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* into|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"*, Christ|strong=\"G5547\"*," + }, + { + "verseNum": 16, + "text": "from|strong=\"G1537\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, being|strong=\"G2532\"* fitted|strong=\"G4883\"* and|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* through|strong=\"G1223\"* that|strong=\"G3739\"* which|strong=\"G3739\"* every|strong=\"G3956\"* joint supplies|strong=\"G2024\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* working|strong=\"G1753\"* in|strong=\"G1722\"* measure|strong=\"G3358\"* of|strong=\"G1537\"* each|strong=\"G1538\"* individual|strong=\"G1520\"* part|strong=\"G3313\"*, makes|strong=\"G4160\"* the|strong=\"G1722\"* body|strong=\"G4983\"* increase to|strong=\"G1519\"* the|strong=\"G1722\"* building|strong=\"G3619\"* up|strong=\"G1519\"* of|strong=\"G1537\"* itself|strong=\"G1438\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 17, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* say|strong=\"G3004\"* therefore|strong=\"G3767\"*, and|strong=\"G2532\"* testify|strong=\"G3143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* walk|strong=\"G4043\"* as|strong=\"G2531\"* the|strong=\"G1722\"* rest of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* also|strong=\"G2532\"* walk|strong=\"G4043\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* futility|strong=\"G3153\"* of|strong=\"G2532\"* their|strong=\"G2532\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 18, + "text": "being|strong=\"G1510\"* darkened|strong=\"G4656\"* in|strong=\"G1722\"* their|strong=\"G1722\"* understanding|strong=\"G1271\"*, alienated from|strong=\"G3588\"* the|strong=\"G1722\"* life|strong=\"G2222\"* of|strong=\"G1223\"* God|strong=\"G2316\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* ignorance that|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hardening|strong=\"G4457\"* of|strong=\"G1223\"* their|strong=\"G1722\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"G3588\"*, having become callous, gave|strong=\"G3860\"* themselves|strong=\"G1438\"* up|strong=\"G3860\"* to|strong=\"G1519\"* lust, to|strong=\"G1519\"* work|strong=\"G2039\"* all|strong=\"G3956\"* uncleanness with|strong=\"G1722\"* greediness|strong=\"G4124\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* didn’t|strong=\"G3588\"* learn|strong=\"G3129\"* Christ|strong=\"G5547\"* that|strong=\"G3588\"* way|strong=\"G3779\"*," + }, + { + "verseNum": 21, + "text": "if|strong=\"G1487\"* indeed|strong=\"G2532\"* you|strong=\"G1487\"* heard him|strong=\"G3588\"* and|strong=\"G2532\"* were|strong=\"G1510\"* taught|strong=\"G1321\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* truth is|strong=\"G1510\"* in|strong=\"G1722\"* Jesus|strong=\"G2424\"*:" + }, + { + "verseNum": 22, + "text": "that|strong=\"G3588\"* you|strong=\"G5210\"* put away, as|strong=\"G2596\"* concerning|strong=\"G2596\"* your|strong=\"G3588\"* former|strong=\"G4387\"* way|strong=\"G2596\"* of|strong=\"G2596\"* life, the|strong=\"G2596\"* old|strong=\"G3820\"* man that|strong=\"G3588\"* grows corrupt|strong=\"G5351\"* after|strong=\"G2596\"* the|strong=\"G2596\"* lusts|strong=\"G1939\"* of|strong=\"G2596\"* deceit," + }, + { + "verseNum": 23, + "text": "and|strong=\"G1161\"* that|strong=\"G3588\"* you|strong=\"G5210\"* be|strong=\"G3588\"* renewed in|strong=\"G1161\"* the|strong=\"G1161\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* your|strong=\"G3588\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 24, + "text": "and|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1722\"* the|strong=\"G1722\"* new|strong=\"G2537\"* man|strong=\"G2316\"*, who|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness of|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* been|strong=\"G2532\"* created|strong=\"G2936\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* holiness|strong=\"G3742\"* of|strong=\"G2316\"* truth." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1352\"*, putting|strong=\"G1352\"* away|strong=\"G3326\"* falsehood|strong=\"G5579\"*, speak|strong=\"G2980\"* truth each|strong=\"G1538\"* one|strong=\"G1538\"* with|strong=\"G3326\"* his|strong=\"G3754\"* neighbor|strong=\"G4139\"*, for|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G3588\"* one|strong=\"G1538\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "“Be|strong=\"G2532\"* angry|strong=\"G3710\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* sin.”+ 4:26 Psalms 4:4* Don’t|strong=\"G3588\"* let|strong=\"G1931\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* go|strong=\"G2246\"* down|strong=\"G1931\"* on|strong=\"G1909\"* your|strong=\"G2532\"* wrath|strong=\"G3950\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"G3588\"* don’t|strong=\"G3588\"* give|strong=\"G1325\"* place|strong=\"G5117\"*+ 4:27 or, opportunity* to|strong=\"G1325\"* the|strong=\"G3588\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 28, + "text": "Let|strong=\"G1161\"* him|strong=\"G3588\"* who|strong=\"G3588\"* stole|strong=\"G2813\"* steal|strong=\"G2813\"* no|strong=\"G3371\"* more|strong=\"G3123\"*; but|strong=\"G1161\"* rather|strong=\"G3123\"* let|strong=\"G1161\"* him|strong=\"G3588\"* labor|strong=\"G2872\"*, producing with|strong=\"G2192\"* his|strong=\"G2398\"* hands|strong=\"G5495\"* something that|strong=\"G2443\"* is|strong=\"G3588\"* good|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* have|strong=\"G2192\"* something to|strong=\"G2443\"* give|strong=\"G3330\"* to|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 29, + "text": "Let|strong=\"G2443\"* no|strong=\"G3361\"* corrupt|strong=\"G4550\"* speech|strong=\"G3056\"* proceed|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G1487\"* mouth|strong=\"G4750\"*, but|strong=\"G1487\"* only|strong=\"G1487\"* what|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* for|strong=\"G4314\"* building|strong=\"G3619\"* others|strong=\"G3588\"* up|strong=\"G1325\"* as|strong=\"G1607\"* the|strong=\"G3956\"* need|strong=\"G5532\"* may|strong=\"G2443\"* be|strong=\"G3361\"*, that|strong=\"G2443\"* it|strong=\"G1487\"* may|strong=\"G2443\"* give|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear." + }, + { + "verseNum": 30, + "text": "Don’t|strong=\"G3588\"* grieve|strong=\"G3076\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, in|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"* for|strong=\"G1519\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G4151\"* redemption." + }, + { + "verseNum": 31, + "text": "Let|strong=\"G2532\"* all|strong=\"G3956\"* bitterness|strong=\"G4088\"*, wrath|strong=\"G3709\"*, anger|strong=\"G3709\"*, outcry, and|strong=\"G2532\"* slander be|strong=\"G2532\"* put|strong=\"G2532\"* away from|strong=\"G2532\"* you|strong=\"G5210\"*, with|strong=\"G4862\"* all|strong=\"G3956\"* malice|strong=\"G2549\"*." + }, + { + "verseNum": 32, + "text": "And|strong=\"G2532\"* be|strong=\"G1096\"* kind|strong=\"G5543\"* to|strong=\"G1519\"* one|strong=\"G1438\"* another|strong=\"G1438\"*, tender hearted, forgiving|strong=\"G5483\"* each|strong=\"G1438\"* other|strong=\"G1161\"*, just|strong=\"G2531\"* as|strong=\"G2531\"* God|strong=\"G2316\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* forgave|strong=\"G5483\"* you|strong=\"G5210\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"G1096\"* therefore|strong=\"G3767\"* imitators|strong=\"G3402\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, as|strong=\"G5613\"* beloved children|strong=\"G5043\"*." + }, + { + "verseNum": 2, + "text": "Walk|strong=\"G4043\"* in|strong=\"G1722\"* love, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* loved us|strong=\"G1519\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G1519\"* us|strong=\"G1519\"*, an|strong=\"G2532\"* offering|strong=\"G4376\"* and|strong=\"G2532\"* a|strong=\"G2532\"* sacrifice|strong=\"G2378\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G1519\"* a|strong=\"G2532\"* sweet-smelling fragrance|strong=\"G3744\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* uncleanness or|strong=\"G2228\"* covetousness|strong=\"G4124\"*, let|strong=\"G1161\"* it|strong=\"G2532\"* not|strong=\"G3366\"* even|strong=\"G2532\"* be|strong=\"G2532\"* mentioned among|strong=\"G1722\"* you|strong=\"G5210\"*, as|strong=\"G2531\"* becomes saints;" + }, + { + "verseNum": 4, + "text": "nor|strong=\"G2532\"* filthiness, nor|strong=\"G2532\"* foolish|strong=\"G2532\"* talking|strong=\"G3473\"*, nor|strong=\"G2532\"* jesting|strong=\"G2160\"*, which|strong=\"G3739\"* are|strong=\"G3739\"* not|strong=\"G3756\"* appropriate, but|strong=\"G2532\"* rather|strong=\"G3123\"* giving|strong=\"G2169\"* of|strong=\"G2532\"* thanks|strong=\"G2169\"*." + }, + { + "verseNum": 5, + "text": "Know|strong=\"G1492\"* this|strong=\"G3778\"* for|strong=\"G1063\"* sure|strong=\"G1097\"*, that|strong=\"G3754\"* no|strong=\"G3756\"* sexually immoral|strong=\"G4205\"* person|strong=\"G3739\"*, nor|strong=\"G2532\"* unclean|strong=\"G2228\"* person|strong=\"G3739\"*, nor|strong=\"G2532\"* covetous|strong=\"G4123\"* man|strong=\"G3778\"* (who|strong=\"G3739\"* is|strong=\"G1510\"* an|strong=\"G2192\"* idolater|strong=\"G1496\"*), has|strong=\"G2192\"* any|strong=\"G3956\"* inheritance|strong=\"G2817\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2316\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Let|strong=\"G1063\"* no|strong=\"G3367\"* one|strong=\"G3367\"* deceive you|strong=\"G5210\"* with|strong=\"G1223\"* empty|strong=\"G2756\"* words|strong=\"G3056\"*, for|strong=\"G1063\"* because|strong=\"G1223\"* of|strong=\"G5207\"* these|strong=\"G3778\"* things|strong=\"G3778\"* the|strong=\"G1909\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* comes|strong=\"G2064\"* on|strong=\"G1909\"* the|strong=\"G1909\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G3767\"* don’t be|strong=\"G1096\"* partakers|strong=\"G4830\"* with|strong=\"G1096\"* them." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* you|strong=\"G1722\"* were|strong=\"G1510\"* once|strong=\"G4218\"* darkness|strong=\"G4655\"*, but|strong=\"G1161\"* are|strong=\"G1510\"* now|strong=\"G1161\"* light|strong=\"G5457\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Walk|strong=\"G4043\"* as|strong=\"G5613\"* children|strong=\"G5043\"* of|strong=\"G2962\"* light|strong=\"G5457\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"G1063\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Spirit|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* goodness and|strong=\"G2532\"* righteousness|strong=\"G1343\"* and|strong=\"G2532\"* truth," + }, + { + "verseNum": 10, + "text": "proving|strong=\"G1381\"* what|strong=\"G5101\"* is|strong=\"G1510\"* well|strong=\"G2101\"* pleasing|strong=\"G2101\"* to|strong=\"G5101\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 11, + "text": "Have|strong=\"G2532\"* no|strong=\"G3361\"* fellowship|strong=\"G4790\"* with|strong=\"G2532\"* the|strong=\"G2532\"* unfruitful deeds|strong=\"G2041\"* of|strong=\"G2532\"* darkness|strong=\"G4655\"*, but|strong=\"G1161\"* rather|strong=\"G3123\"* even|strong=\"G2532\"* reprove|strong=\"G1651\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G1096\"* shame even|strong=\"G2532\"* to|strong=\"G2532\"* speak|strong=\"G3004\"* of|strong=\"G5259\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G1510\"* done|strong=\"G1096\"* by|strong=\"G5259\"* them|strong=\"G3588\"* in|strong=\"G2532\"* secret|strong=\"G2931\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, when|strong=\"G1161\"* they|strong=\"G1161\"* are|strong=\"G1510\"* reproved|strong=\"G1651\"*, are|strong=\"G1510\"* revealed|strong=\"G5319\"* by|strong=\"G5259\"* the|strong=\"G3956\"* light|strong=\"G5457\"*, for|strong=\"G1063\"* everything|strong=\"G3956\"* that|strong=\"G3588\"* reveals is|strong=\"G1510\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1352\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “Awake|strong=\"G1453\"*, you|strong=\"G4771\"* who|strong=\"G3588\"* sleep|strong=\"G2518\"*, and|strong=\"G2532\"* arise|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* Christ|strong=\"G5547\"* will|strong=\"G1510\"* shine|strong=\"G2017\"* on|strong=\"G1537\"* you|strong=\"G4771\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G3767\"* watch carefully|strong=\"G4459\"* how|strong=\"G4459\"* you|strong=\"G4459\"* walk|strong=\"G4043\"*, not|strong=\"G3361\"* as|strong=\"G5613\"* unwise, but|strong=\"G3361\"* as|strong=\"G5613\"* wise|strong=\"G4680\"*," + }, + { + "verseNum": 16, + "text": "redeeming|strong=\"G1805\"* the|strong=\"G3588\"* time|strong=\"G2540\"*, because|strong=\"G3754\"* the|strong=\"G3588\"* days|strong=\"G2250\"* are|strong=\"G1510\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G1223\"*, don’t|strong=\"G3588\"* be|strong=\"G1096\"* foolish, but|strong=\"G3361\"* understand|strong=\"G4920\"* what|strong=\"G5101\"* the|strong=\"G1223\"* will|strong=\"G2307\"* of|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Don’t be|strong=\"G1510\"* drunken|strong=\"G3182\"* with|strong=\"G1722\"* wine|strong=\"G3631\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* is|strong=\"G1510\"* dissipation, but|strong=\"G2532\"* be|strong=\"G1510\"* filled|strong=\"G4137\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 19, + "text": "speaking|strong=\"G2980\"* to|strong=\"G2532\"* one|strong=\"G1438\"* another|strong=\"G1438\"* in|strong=\"G2532\"* psalms|strong=\"G5568\"*, hymns|strong=\"G5215\"*, and|strong=\"G2532\"* spiritual|strong=\"G4152\"* songs|strong=\"G5603\"*; singing and|strong=\"G2532\"* making|strong=\"G5567\"* melody|strong=\"G5567\"* in|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 20, + "text": "giving|strong=\"G2168\"* thanks|strong=\"G2168\"* always|strong=\"G3842\"* concerning|strong=\"G5228\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, even|strong=\"G2532\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*;" + }, + { + "verseNum": 21, + "text": "subjecting|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G1722\"* one|strong=\"G1722\"* another|strong=\"G5293\"* in|strong=\"G1722\"* the|strong=\"G1722\"* fear|strong=\"G5401\"* of|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 22, + "text": "Wives|strong=\"G1135\"*, be|strong=\"G3588\"* subject to|strong=\"G2962\"* your|strong=\"G2962\"* own|strong=\"G2398\"* husbands, as|strong=\"G5613\"* to|strong=\"G2962\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* husband is|strong=\"G1510\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* the|strong=\"G2532\"* wife|strong=\"G1135\"*, as|strong=\"G5613\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* head|strong=\"G2776\"* of|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*, being|strong=\"G1510\"* himself the|strong=\"G2532\"* savior|strong=\"G4990\"* of|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G2532\"* as|strong=\"G5613\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* is|strong=\"G3588\"* subject|strong=\"G5293\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"*, so|strong=\"G3779\"* let|strong=\"G2532\"* the|strong=\"G1722\"* wives|strong=\"G1135\"* also|strong=\"G2532\"* be|strong=\"G2532\"* to|strong=\"G2532\"* their|strong=\"G2532\"* own husbands in|strong=\"G1722\"* everything|strong=\"G3956\"*." + }, + { + "verseNum": 25, + "text": "Husbands, love your|strong=\"G2532\"* wives|strong=\"G1135\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* loved the|strong=\"G2532\"* assembly|strong=\"G1577\"* and|strong=\"G2532\"* gave|strong=\"G3860\"* himself|strong=\"G1438\"* up|strong=\"G3860\"* for|strong=\"G5228\"* her|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "that|strong=\"G2443\"* he|strong=\"G3588\"* might sanctify her|strong=\"G1438\"*, having cleansed|strong=\"G2511\"* her|strong=\"G1438\"* by|strong=\"G1722\"* the|strong=\"G1722\"* washing|strong=\"G3067\"* of|strong=\"G1722\"* water|strong=\"G5204\"* with|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G4487\"*," + }, + { + "verseNum": 27, + "text": "that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* present|strong=\"G3936\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* to|strong=\"G2443\"* himself|strong=\"G1438\"* gloriously, not|strong=\"G3361\"* having|strong=\"G2192\"* spot|strong=\"G4696\"* or|strong=\"G2228\"* wrinkle|strong=\"G4512\"* or|strong=\"G2228\"* any|strong=\"G5100\"* such|strong=\"G5108\"* thing|strong=\"G5100\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* she|strong=\"G2532\"* should|strong=\"G5100\"* be|strong=\"G1510\"* holy and|strong=\"G2532\"* without|strong=\"G3361\"* defect." + }, + { + "verseNum": 28, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* husbands also|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* love their|strong=\"G1438\"* own|strong=\"G1438\"* wives|strong=\"G1135\"* as|strong=\"G5613\"* their|strong=\"G1438\"* own|strong=\"G1438\"* bodies|strong=\"G4983\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* loves his|strong=\"G1438\"* own|strong=\"G1438\"* wife|strong=\"G1135\"* loves himself|strong=\"G1438\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"G1063\"* no|strong=\"G3762\"* man|strong=\"G3762\"* ever|strong=\"G4218\"* hated|strong=\"G3404\"* his|strong=\"G1438\"* own|strong=\"G1438\"* flesh|strong=\"G4561\"*, but|strong=\"G2532\"* nourishes|strong=\"G1625\"* and|strong=\"G2532\"* cherishes|strong=\"G2282\"* it|strong=\"G2532\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* also|strong=\"G2532\"* does|strong=\"G3404\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 30, + "text": "because|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* members|strong=\"G3196\"* of|strong=\"G4983\"* his|strong=\"G3754\"* body|strong=\"G4983\"*, of|strong=\"G4983\"* his|strong=\"G3754\"* flesh and|strong=\"G4983\"* bones." + }, + { + "verseNum": 31, + "text": "“For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G3588\"* a|strong=\"G2532\"* man|strong=\"G3778\"* will|strong=\"G1510\"* leave|strong=\"G2641\"* his|strong=\"G1519\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"* and|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* joined|strong=\"G4347\"* to|strong=\"G1519\"* his|strong=\"G1519\"* wife|strong=\"G1135\"*. Then|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* will|strong=\"G1510\"* become|strong=\"G1510\"* one|strong=\"G1520\"* flesh|strong=\"G4561\"*.”+ 5:31 Genesis 2:24*" + }, + { + "verseNum": 32, + "text": "This|strong=\"G3778\"* mystery|strong=\"G3466\"* is|strong=\"G1510\"* great|strong=\"G3173\"*, but|strong=\"G1161\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* concerning|strong=\"G1519\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 33, + "text": "Nevertheless|strong=\"G4133\"* each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G5210\"* must|strong=\"G1135\"* also|strong=\"G2532\"* love his|strong=\"G1438\"* own|strong=\"G1438\"* wife|strong=\"G1135\"* even|strong=\"G2532\"* as|strong=\"G5613\"* himself|strong=\"G1438\"*; and|strong=\"G2532\"* let|strong=\"G1161\"* the|strong=\"G2532\"* wife|strong=\"G1135\"* see that|strong=\"G2443\"* she|strong=\"G2532\"* respects|strong=\"G5399\"* her|strong=\"G1438\"* husband." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Children|strong=\"G5043\"*, obey|strong=\"G5219\"* your|strong=\"G2962\"* parents|strong=\"G1118\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* right|strong=\"G1342\"*." + }, + { + "verseNum": 2, + "text": "“Honor|strong=\"G5091\"* your|strong=\"G5091\"* father|strong=\"G3962\"* and|strong=\"G2532\"* mother|strong=\"G3384\"*,” which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1722\"* first|strong=\"G4413\"* commandment|strong=\"G1785\"* with|strong=\"G1722\"* a|strong=\"G2532\"* promise|strong=\"G1860\"*:" + }, + { + "verseNum": 3, + "text": "“that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1096\"* well|strong=\"G2532\"* with|strong=\"G2532\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* may|strong=\"G2532\"* live|strong=\"G2532\"* long|strong=\"G3118\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”+ 6:3 Deuteronomy 5:16*" + }, + { + "verseNum": 4, + "text": "You|strong=\"G5210\"* fathers|strong=\"G3962\"*, don’t|strong=\"G3588\"* provoke|strong=\"G3949\"* your|strong=\"G2962\"* children|strong=\"G5043\"* to|strong=\"G2532\"* wrath|strong=\"G3949\"*, but|strong=\"G2532\"* nurture|strong=\"G3809\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* discipline|strong=\"G3809\"* and|strong=\"G2532\"* instruction|strong=\"G3559\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 5, + "text": "Servants|strong=\"G1401\"*, be|strong=\"G2532\"* obedient|strong=\"G5219\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* are|strong=\"G3588\"* your|strong=\"G2962\"* masters|strong=\"G2962\"*, with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"*, in|strong=\"G1722\"* singleness of|strong=\"G2532\"* your|strong=\"G2962\"* heart|strong=\"G2588\"*, as|strong=\"G5613\"* to|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 6, + "text": "not|strong=\"G3361\"* in|strong=\"G2596\"* the|strong=\"G1537\"* way|strong=\"G2596\"* of|strong=\"G1537\"* service|strong=\"G3787\"* only when|strong=\"G5613\"* eyes are|strong=\"G3588\"* on|strong=\"G1537\"* you|strong=\"G4160\"*, as|strong=\"G5613\"* men|strong=\"G1401\"* pleasers, but|strong=\"G3361\"* as|strong=\"G5613\"* servants|strong=\"G1401\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, doing|strong=\"G4160\"* the|strong=\"G1537\"* will|strong=\"G2307\"* of|strong=\"G1537\"* God|strong=\"G2316\"* from|strong=\"G1537\"* the|strong=\"G1537\"* heart|strong=\"G5590\"*," + }, + { + "verseNum": 7, + "text": "with|strong=\"G3326\"* good|strong=\"G3756\"* will|strong=\"G2532\"* doing|strong=\"G2133\"* service|strong=\"G1398\"* as|strong=\"G5613\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* men|strong=\"G3588\"*," + }, + { + "verseNum": 8, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* whatever|strong=\"G1437\"* good|strong=\"G1437\"* thing|strong=\"G5100\"* each|strong=\"G1538\"* one|strong=\"G5100\"* does|strong=\"G4160\"*, he|strong=\"G3754\"* will|strong=\"G2962\"* receive|strong=\"G2865\"* the|strong=\"G3754\"* same|strong=\"G3778\"* good|strong=\"G1437\"* again from|strong=\"G3844\"* the|strong=\"G3754\"* Lord|strong=\"G2962\"*, whether|strong=\"G1535\"* he|strong=\"G3754\"* is|strong=\"G3778\"* bound or|strong=\"G1535\"* free|strong=\"G1658\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"G5210\"* masters|strong=\"G2962\"*, do|strong=\"G4160\"* the|strong=\"G1722\"* same|strong=\"G2532\"* things|strong=\"G3588\"* to|strong=\"G4314\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* give|strong=\"G4160\"* up|strong=\"G2532\"* threatening, knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* both|strong=\"G2532\"* their|strong=\"G1438\"* Master|strong=\"G2962\"* and|strong=\"G2532\"* yours|strong=\"G4771\"* is|strong=\"G1510\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"* with|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "Finally|strong=\"G3064\"*, be|strong=\"G2532\"* strong|strong=\"G1743\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* strength|strong=\"G2479\"* of|strong=\"G2532\"* his|strong=\"G1722\"* might|strong=\"G2479\"*." + }, + { + "verseNum": 11, + "text": "Put|strong=\"G1746\"* on|strong=\"G1746\"* the|strong=\"G4314\"* whole armor|strong=\"G3833\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G1410\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G4314\"* stand|strong=\"G2476\"* against|strong=\"G4314\"* the|strong=\"G4314\"* wiles|strong=\"G3180\"* of|strong=\"G2316\"* the|strong=\"G4314\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* our|strong=\"G2532\"* wrestling is|strong=\"G1510\"* not|strong=\"G3756\"* against|strong=\"G4314\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood, but|strong=\"G2532\"* against|strong=\"G4314\"* the|strong=\"G1722\"* principalities, against|strong=\"G4314\"* the|strong=\"G1722\"* powers|strong=\"G1849\"*, against|strong=\"G4314\"* the|strong=\"G1722\"* world|strong=\"G2888\"*’s rulers|strong=\"G2888\"* of|strong=\"G2532\"* the|strong=\"G1722\"* darkness|strong=\"G4655\"* of|strong=\"G2532\"* this|strong=\"G3778\"* age, and|strong=\"G2532\"* against|strong=\"G4314\"* the|strong=\"G1722\"* spiritual|strong=\"G4152\"* forces|strong=\"G4189\"* of|strong=\"G2532\"* wickedness|strong=\"G4189\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* places." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* put|strong=\"G2476\"* on|strong=\"G1722\"* the|strong=\"G1722\"* whole|strong=\"G1722\"* armor|strong=\"G3833\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* you|strong=\"G1722\"* may|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2443\"* withstand in|strong=\"G1722\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* day|strong=\"G2250\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* done|strong=\"G2716\"* all|strong=\"G2532\"*, to|strong=\"G2443\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 14, + "text": "Stand|strong=\"G2476\"* therefore|strong=\"G3767\"*, having|strong=\"G2532\"* the|strong=\"G1722\"* utility belt|strong=\"G4024\"* of|strong=\"G2532\"* truth buckled around your|strong=\"G2532\"* waist|strong=\"G3751\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1722\"* the|strong=\"G1722\"* breastplate|strong=\"G2382\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* having|strong=\"G2532\"* fitted your|strong=\"G2532\"* feet|strong=\"G4228\"* with|strong=\"G1722\"* the|strong=\"G1722\"* preparation|strong=\"G2091\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2532\"* peace|strong=\"G1515\"*," + }, + { + "verseNum": 16, + "text": "above all|strong=\"G3956\"*, taking up|strong=\"G1722\"* the|strong=\"G1722\"* shield|strong=\"G2375\"* of|strong=\"G1722\"* faith|strong=\"G4102\"*, with|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* will|strong=\"G3739\"* be|strong=\"G1410\"* able|strong=\"G1410\"* to|strong=\"G1410\"* quench|strong=\"G4570\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fiery|strong=\"G4448\"* darts of|strong=\"G1722\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* one|strong=\"G3739\"*." + }, + { + "verseNum": 17, + "text": "And|strong=\"G2532\"* take|strong=\"G1209\"* the|strong=\"G2532\"* helmet|strong=\"G4030\"* of|strong=\"G4151\"* salvation|strong=\"G4992\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sword|strong=\"G3162\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* word|strong=\"G4487\"*+ 6:17 from the Greek “ῥῆμα” (rhema), which means “spoken word”* of|strong=\"G4151\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 18, + "text": "with|strong=\"G1722\"* all|strong=\"G3956\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* requests|strong=\"G1162\"*, praying|strong=\"G4336\"* at|strong=\"G1722\"* all|strong=\"G3956\"* times|strong=\"G2540\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* being|strong=\"G2532\"* watchful to|strong=\"G1519\"* this|strong=\"G3588\"* end|strong=\"G1519\"* in|strong=\"G1722\"* all|strong=\"G3956\"* perseverance|strong=\"G4343\"* and|strong=\"G2532\"* requests|strong=\"G1162\"* for|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 19, + "text": "Pray|strong=\"G5228\"* for|strong=\"G5228\"* me|strong=\"G1325\"*, that|strong=\"G2443\"* utterance|strong=\"G3056\"* may|strong=\"G2532\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2443\"* me|strong=\"G1325\"* in|strong=\"G1722\"* opening my|strong=\"G1722\"* mouth|strong=\"G4750\"*, to|strong=\"G2443\"* make|strong=\"G1107\"* known|strong=\"G1107\"* with|strong=\"G1722\"* boldness|strong=\"G3954\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G5228\"* which|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* an|strong=\"G1722\"* ambassador|strong=\"G4243\"* in|strong=\"G1722\"* chains|strong=\"G1210\"*; that|strong=\"G2443\"* in|strong=\"G1722\"* it|strong=\"G3739\"* I|strong=\"G1473\"* may|strong=\"G2443\"* speak|strong=\"G2980\"* boldly|strong=\"G3955\"*, as|strong=\"G5613\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"G1161\"* that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1492\"* my|strong=\"G1722\"* affairs|strong=\"G3588\"*, how|strong=\"G5101\"* I|strong=\"G1473\"* am|strong=\"G1473\"* doing|strong=\"G4238\"*, Tychicus|strong=\"G5190\"*, the|strong=\"G1722\"* beloved brother and|strong=\"G2532\"* faithful|strong=\"G4103\"* servant|strong=\"G1249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, will|strong=\"G5101\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2443\"* you|strong=\"G5210\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G1473\"* have|strong=\"G2532\"* sent|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G5210\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose|strong=\"G3739\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* know|strong=\"G1097\"* our|strong=\"G2532\"* state|strong=\"G4012\"* and|strong=\"G2532\"* that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "Peace|strong=\"G1515\"* be|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* brothers, and|strong=\"G2532\"* love with|strong=\"G3326\"* faith|strong=\"G4102\"*, from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "Grace|strong=\"G5485\"* be|strong=\"G3956\"* with|strong=\"G3326\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* love our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G3326\"* incorruptible love. Amen." + } + ] + } + ] + }, + { + "name": "Philippians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"* and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, servants|strong=\"G1401\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* are|strong=\"G1510\"* at|strong=\"G1722\"* Philippi|strong=\"G5375\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* overseers|strong=\"G1985\"*+ 1:1 or, superintendents, or bishops* and|strong=\"G2532\"* servants|strong=\"G1401\"*:+ 1:1 Or, deacons*" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G3956\"* God|strong=\"G2316\"* whenever I|strong=\"G1473\"* remember you|strong=\"G5210\"*," + }, + { + "verseNum": 4, + "text": "always|strong=\"G3842\"* in|strong=\"G1722\"* every|strong=\"G3956\"* request|strong=\"G1162\"* of|strong=\"G1722\"* mine|strong=\"G1473\"* on|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1722\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, making|strong=\"G4160\"* my|strong=\"G1722\"* requests|strong=\"G1162\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G1519\"* your|strong=\"G1909\"* partnership+ 1:5 The word translated “partnership” (κοινωνίᾳ) also means “fellowship” and “sharing”.* in|strong=\"G1519\"* furtherance of|strong=\"G2250\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* from|strong=\"G3588\"* the|strong=\"G1519\"* first|strong=\"G4413\"* day|strong=\"G2250\"* until|strong=\"G1519\"* now|strong=\"G3568\"*;" + }, + { + "verseNum": 6, + "text": "being|strong=\"G5547\"* confident|strong=\"G3982\"* of|strong=\"G2250\"* this|strong=\"G3778\"* very|strong=\"G3778\"* thing|strong=\"G3778\"*, that|strong=\"G3754\"* he|strong=\"G3754\"* who|strong=\"G3588\"* began|strong=\"G1728\"* a|strong=\"G1722\"* good|strong=\"G3588\"* work|strong=\"G2041\"* in|strong=\"G1722\"* you|strong=\"G5210\"* will|strong=\"G3778\"* complete|strong=\"G2005\"* it|strong=\"G3754\"* until|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"G2532\"* is|strong=\"G1510\"* even|strong=\"G2532\"* right|strong=\"G1342\"* for|strong=\"G5228\"* me|strong=\"G1473\"* to|strong=\"G2532\"* think|strong=\"G5426\"* this|strong=\"G3778\"* way|strong=\"G1722\"* on|strong=\"G1722\"* behalf|strong=\"G5228\"* of|strong=\"G1223\"* all|strong=\"G3956\"* of|strong=\"G1223\"* you|strong=\"G5210\"*, because|strong=\"G1223\"* I|strong=\"G1473\"* have|strong=\"G2192\"* you|strong=\"G5210\"* in|strong=\"G1722\"* my|strong=\"G1722\"* heart|strong=\"G2588\"*, because|strong=\"G1223\"* both|strong=\"G2532\"* in|strong=\"G1722\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* defense and|strong=\"G2532\"* confirmation of|strong=\"G1223\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"*, you|strong=\"G5210\"* all|strong=\"G3956\"* are|strong=\"G1510\"* partakers|strong=\"G4791\"* with|strong=\"G1722\"* me|strong=\"G1473\"* of|strong=\"G1223\"* grace|strong=\"G5485\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G3588\"* my|strong=\"G1722\"* witness|strong=\"G3144\"*, how|strong=\"G5613\"* I|strong=\"G1473\"* long|strong=\"G1971\"* after|strong=\"G5613\"* all|strong=\"G3956\"* of|strong=\"G2316\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* tender|strong=\"G4698\"* mercies of|strong=\"G2316\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3778\"* I|strong=\"G2532\"* pray|strong=\"G4336\"*, that|strong=\"G2443\"* your|strong=\"G2532\"* love may|strong=\"G2532\"* abound|strong=\"G4052\"* yet|strong=\"G2089\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"* in|strong=\"G1722\"* knowledge|strong=\"G1922\"* and|strong=\"G2532\"* all|strong=\"G3956\"* discernment," + }, + { + "verseNum": 10, + "text": "so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* approve|strong=\"G1381\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G1510\"* excellent|strong=\"G1308\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G1510\"* sincere|strong=\"G1506\"* and|strong=\"G2532\"* without|strong=\"G2532\"* offense to|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 11, + "text": "being|strong=\"G2532\"* filled|strong=\"G4137\"* with|strong=\"G1223\"* the|strong=\"G2532\"* fruits|strong=\"G2590\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* are|strong=\"G3588\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* praise|strong=\"G1868\"* of|strong=\"G1223\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* I|strong=\"G1473\"* desire|strong=\"G1014\"* to|strong=\"G1519\"* have|strong=\"G1473\"* you|strong=\"G5210\"* know|strong=\"G1097\"*, brothers,+ 1:12 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* that|strong=\"G3754\"* the|strong=\"G1519\"* things|strong=\"G3588\"* which|strong=\"G3588\"* happened|strong=\"G3588\"* to|strong=\"G1519\"* me|strong=\"G1473\"* have|strong=\"G1473\"* turned|strong=\"G2064\"* out|strong=\"G2064\"* rather|strong=\"G3123\"* to|strong=\"G1519\"* the|strong=\"G1519\"* progress|strong=\"G4297\"* of|strong=\"G2098\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 13, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* it|strong=\"G2532\"* became|strong=\"G1096\"* evident|strong=\"G5318\"* to|strong=\"G2532\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* palace|strong=\"G4232\"*+ 1:13 or, praetorian * guard|strong=\"G2532\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* rest|strong=\"G3062\"*, that|strong=\"G3588\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* most|strong=\"G4183\"* of|strong=\"G3056\"* the|strong=\"G1722\"* brothers in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, being|strong=\"G2532\"* confident|strong=\"G3982\"* through|strong=\"G1722\"* my|strong=\"G1722\"* bonds|strong=\"G1199\"*, are|strong=\"G3588\"* more|strong=\"G4119\"* abundantly|strong=\"G4056\"* bold|strong=\"G5111\"* to|strong=\"G2532\"* speak|strong=\"G2980\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* without|strong=\"G2532\"* fear." + }, + { + "verseNum": 15, + "text": "Some|strong=\"G5100\"* indeed|strong=\"G2532\"* preach|strong=\"G2784\"* Christ|strong=\"G5547\"* even|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G1223\"* envy|strong=\"G5355\"* and|strong=\"G2532\"* strife|strong=\"G2054\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* also|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G1223\"* good|strong=\"G2107\"* will|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G1519\"* former|strong=\"G3588\"* insincerely preach Christ from|strong=\"G1537\"* selfish ambition, thinking that|strong=\"G3754\"* they|strong=\"G3588\"* add affliction to|strong=\"G1519\"* my|strong=\"G3754\"* chains;" + }, + { + "verseNum": 17, + "text": "but|strong=\"G1161\"* the|strong=\"G1537\"* latter out|strong=\"G1537\"* of|strong=\"G1537\"* love, knowing that|strong=\"G3588\"* I|strong=\"G1473\"* am|strong=\"G1473\"* appointed for|strong=\"G1161\"* the|strong=\"G1537\"* defense of|strong=\"G1537\"* the|strong=\"G1537\"* Good|strong=\"G3756\"* News." + }, + { + "verseNum": 18, + "text": "What|strong=\"G5101\"* does|strong=\"G5101\"* it|strong=\"G2532\"* matter? Only|strong=\"G2532\"* that|strong=\"G3754\"* in|strong=\"G1722\"* every|strong=\"G3956\"* way|strong=\"G5158\"*, whether|strong=\"G1535\"* in|strong=\"G1722\"* pretense|strong=\"G4392\"* or|strong=\"G1535\"* in|strong=\"G1722\"* truth, Christ|strong=\"G5547\"* is|strong=\"G5101\"* proclaimed|strong=\"G2605\"*. I|strong=\"G2532\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* this|strong=\"G3778\"*, yes|strong=\"G1063\"*, and|strong=\"G2532\"* will|strong=\"G5101\"* rejoice|strong=\"G5463\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* know|strong=\"G1492\"* that|strong=\"G3754\"* this|strong=\"G3778\"* will|strong=\"G2532\"* turn out|strong=\"G2532\"* to|strong=\"G1519\"* my|strong=\"G1473\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* your|strong=\"G1223\"* prayers|strong=\"G1162\"* and|strong=\"G2532\"* the|strong=\"G2532\"* supply|strong=\"G2024\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 20, + "text": "according|strong=\"G2596\"* to|strong=\"G2532\"* my|strong=\"G1722\"* earnest expectation and|strong=\"G2532\"* hope|strong=\"G1680\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3762\"* way|strong=\"G2596\"* be|strong=\"G2532\"* disappointed, but|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3956\"* boldness|strong=\"G3954\"*, as|strong=\"G5613\"* always|strong=\"G3842\"*, now|strong=\"G3568\"* also|strong=\"G2532\"* Christ|strong=\"G5547\"* will|strong=\"G2532\"* be|strong=\"G2532\"* magnified|strong=\"G3170\"* in|strong=\"G1722\"* my|strong=\"G1722\"* body|strong=\"G4983\"*, whether|strong=\"G1535\"* by|strong=\"G1223\"* life|strong=\"G2222\"* or|strong=\"G1535\"* by|strong=\"G1223\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* to|strong=\"G2532\"* me|strong=\"G1473\"* to|strong=\"G2532\"* live|strong=\"G2198\"* is|strong=\"G3588\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* die is|strong=\"G3588\"* gain|strong=\"G2771\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* I|strong=\"G1473\"* live|strong=\"G2198\"* on|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, this|strong=\"G3778\"* will|strong=\"G5101\"* bring|strong=\"G2532\"* fruit|strong=\"G2590\"* from|strong=\"G2532\"* my|strong=\"G1722\"* work|strong=\"G2041\"*; yet|strong=\"G2532\"* I|strong=\"G1473\"* don’t|strong=\"G3588\"* know|strong=\"G1722\"* what|strong=\"G5101\"* I|strong=\"G1473\"* will|strong=\"G5101\"* choose." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* am|strong=\"G1510\"* hard|strong=\"G4183\"* pressed|strong=\"G4912\"* between|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* desire|strong=\"G1939\"* to|strong=\"G1519\"* depart and|strong=\"G2532\"* be|strong=\"G1510\"* with|strong=\"G4862\"* Christ|strong=\"G5547\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* far|strong=\"G3123\"* better|strong=\"G2909\"*." + }, + { + "verseNum": 24, + "text": "Yet|strong=\"G1161\"* to|strong=\"G1722\"* remain|strong=\"G1961\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* is|strong=\"G3588\"* more|strong=\"G1161\"* needful for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*." + }, + { + "verseNum": 25, + "text": "Having|strong=\"G2532\"* this|strong=\"G3778\"* confidence|strong=\"G3982\"*, I|strong=\"G2532\"* know|strong=\"G1492\"* that|strong=\"G3754\"* I|strong=\"G2532\"* will|strong=\"G2532\"* remain|strong=\"G3306\"*, yes, and|strong=\"G2532\"* remain|strong=\"G3306\"* with|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"* for|strong=\"G3754\"* your|strong=\"G2532\"* progress|strong=\"G4297\"* and|strong=\"G2532\"* joy|strong=\"G5479\"* in|strong=\"G1519\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 26, + "text": "that|strong=\"G2443\"* your|strong=\"G1223\"* boasting|strong=\"G2745\"*+ 1:26 or, rejoicing* may|strong=\"G2443\"* abound|strong=\"G4052\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* in|strong=\"G1722\"* me|strong=\"G1473\"* through|strong=\"G1223\"* my|strong=\"G1699\"* presence|strong=\"G3952\"* with|strong=\"G1722\"* you|strong=\"G5210\"* again|strong=\"G3825\"*." + }, + { + "verseNum": 27, + "text": "Only|strong=\"G3440\"* let|strong=\"G2443\"* your|strong=\"G2532\"* way|strong=\"G1722\"* of|strong=\"G4012\"* life|strong=\"G5590\"* be|strong=\"G2532\"* worthy of|strong=\"G4012\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G4012\"* Christ|strong=\"G5547\"*, that|strong=\"G3754\"* whether|strong=\"G1535\"* I|strong=\"G2532\"* come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"* you|strong=\"G5210\"* or|strong=\"G1535\"* am|strong=\"G2532\"* absent, I|strong=\"G2532\"* may|strong=\"G2532\"* hear of|strong=\"G4012\"* your|strong=\"G2532\"* state|strong=\"G4012\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* one|strong=\"G1520\"* spirit|strong=\"G4151\"*, with|strong=\"G1722\"* one|strong=\"G1520\"* soul|strong=\"G5590\"* striving|strong=\"G4866\"* for|strong=\"G3754\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G4012\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"* frightened by|strong=\"G1722\"* the|strong=\"G1722\"* adversaries, which|strong=\"G3588\"* is|strong=\"G1510\"* for|strong=\"G1161\"* them|strong=\"G3588\"* a|strong=\"G2532\"* proof|strong=\"G1732\"* of|strong=\"G5259\"* destruction, but|strong=\"G1161\"* to|strong=\"G2532\"* you|strong=\"G5210\"* of|strong=\"G5259\"* salvation|strong=\"G4991\"*, and|strong=\"G2532\"* that|strong=\"G3588\"* from|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 29, + "text": "Because|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G5547\"* been|strong=\"G2532\"* granted|strong=\"G5483\"* to|strong=\"G1519\"* you|strong=\"G5210\"* on|strong=\"G1519\"* behalf|strong=\"G5228\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* him|strong=\"G3588\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G1519\"* suffer|strong=\"G3958\"* on|strong=\"G1519\"* his|strong=\"G1519\"* behalf|strong=\"G5228\"*," + }, + { + "verseNum": 30, + "text": "having|strong=\"G2192\"* the|strong=\"G1722\"* same|strong=\"G2532\"* conflict which|strong=\"G3588\"* you|strong=\"G1722\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* me|strong=\"G1473\"* and|strong=\"G2532\"* now|strong=\"G3568\"* hear is|strong=\"G3588\"* in|strong=\"G1722\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1487\"* therefore|strong=\"G3767\"* there|strong=\"G2532\"* is|strong=\"G5547\"* any|strong=\"G5100\"* exhortation|strong=\"G3874\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* consolation|strong=\"G3874\"* of|strong=\"G4151\"* love, if|strong=\"G1487\"* any|strong=\"G5100\"* fellowship|strong=\"G2842\"* of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, if|strong=\"G1487\"* any|strong=\"G5100\"* tender|strong=\"G4698\"* mercies|strong=\"G3628\"* and|strong=\"G2532\"* compassion|strong=\"G3628\"*," + }, + { + "verseNum": 2, + "text": "make|strong=\"G4137\"* my|strong=\"G1473\"* joy|strong=\"G5479\"* full|strong=\"G4137\"* by|strong=\"G1520\"* being|strong=\"G2192\"* like-minded, having|strong=\"G2192\"* the|strong=\"G3588\"* same love, being|strong=\"G2192\"* of|strong=\"G1520\"* one|strong=\"G1520\"* accord|strong=\"G4861\"*, of|strong=\"G1520\"* one|strong=\"G1520\"* mind|strong=\"G5426\"*;" + }, + { + "verseNum": 3, + "text": "doing nothing|strong=\"G3367\"* through|strong=\"G2596\"* rivalry or|strong=\"G3366\"* through|strong=\"G2596\"* conceit|strong=\"G2754\"*, but|strong=\"G3588\"* in|strong=\"G2596\"* humility|strong=\"G5012\"*, each|strong=\"G2596\"* counting others|strong=\"G3588\"* better|strong=\"G5242\"* than|strong=\"G5242\"* himself|strong=\"G1438\"*;" + }, + { + "verseNum": 4, + "text": "each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G1438\"* not|strong=\"G3361\"* just|strong=\"G2532\"* looking|strong=\"G2532\"* to|strong=\"G2532\"* his|strong=\"G1438\"* own|strong=\"G1438\"* things|strong=\"G3588\"*, but|strong=\"G2532\"* each|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G1438\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* things|strong=\"G3588\"* of|strong=\"G2532\"* others|strong=\"G2087\"*." + }, + { + "verseNum": 5, + "text": "Have|strong=\"G2532\"* this|strong=\"G3778\"* in|strong=\"G1722\"* your|strong=\"G2532\"* mind|strong=\"G5426\"*, which|strong=\"G3739\"* was|strong=\"G2424\"* also|strong=\"G2532\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3739\"*, existing in|strong=\"G1722\"* the|strong=\"G1722\"* form|strong=\"G3444\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, didn’t|strong=\"G3588\"* consider|strong=\"G2233\"* equality|strong=\"G2470\"* with|strong=\"G1722\"* God|strong=\"G2316\"* a|strong=\"G1722\"* thing|strong=\"G3739\"* to|strong=\"G1722\"* be|strong=\"G1510\"* grasped," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* emptied|strong=\"G2758\"* himself|strong=\"G1438\"*, taking|strong=\"G2983\"* the|strong=\"G1722\"* form|strong=\"G3444\"* of|strong=\"G2532\"* a|strong=\"G1096\"* servant|strong=\"G1401\"*, being|strong=\"G1096\"* made|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* likeness|strong=\"G3667\"* of|strong=\"G2532\"* men|strong=\"G1401\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G1161\"* being|strong=\"G1096\"* found|strong=\"G1096\"* in|strong=\"G1096\"* human form, he|strong=\"G1161\"* humbled|strong=\"G5013\"* himself|strong=\"G1438\"*, becoming|strong=\"G1096\"* obedient|strong=\"G5255\"* to|strong=\"G1096\"* the|strong=\"G1161\"* point|strong=\"G3360\"* of|strong=\"G4716\"* death|strong=\"G2288\"*, yes|strong=\"G1161\"*, the|strong=\"G1161\"* death|strong=\"G2288\"* of|strong=\"G4716\"* the|strong=\"G1161\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"G1352\"* God|strong=\"G2316\"* also|strong=\"G2532\"* highly|strong=\"G5251\"* exalted|strong=\"G5251\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* to|strong=\"G2532\"* him|strong=\"G3588\"* the|strong=\"G2532\"* name|strong=\"G3686\"* which|strong=\"G3588\"* is|strong=\"G3588\"* above|strong=\"G5228\"* every|strong=\"G3956\"* name|strong=\"G3686\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G2443\"* at|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* Jesus|strong=\"G2424\"* every|strong=\"G3956\"* knee|strong=\"G1119\"* should|strong=\"G3588\"* bow|strong=\"G2578\"*, of|strong=\"G2532\"* those|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G2032\"*, those|strong=\"G3588\"* on|strong=\"G1722\"* earth|strong=\"G2709\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* under|strong=\"G1722\"* the|strong=\"G1722\"* earth|strong=\"G2709\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* every|strong=\"G3956\"* tongue|strong=\"G1100\"* should|strong=\"G2316\"* confess|strong=\"G1843\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G2316\"* Lord|strong=\"G2962\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G2532\"* then|strong=\"G2532\"*, my|strong=\"G1722\"* beloved, even|strong=\"G2532\"* as|strong=\"G5613\"* you|strong=\"G1722\"* have|strong=\"G2532\"* always|strong=\"G3842\"* obeyed|strong=\"G5219\"*, not|strong=\"G3361\"* only|strong=\"G3440\"* in|strong=\"G1722\"* my|strong=\"G1722\"* presence|strong=\"G3952\"*, but|strong=\"G2532\"* now|strong=\"G3568\"* much|strong=\"G4183\"* more|strong=\"G3123\"* in|strong=\"G1722\"* my|strong=\"G1722\"* absence, work|strong=\"G2716\"* out|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G1438\"* salvation|strong=\"G4991\"* with|strong=\"G3326\"* fear|strong=\"G5401\"* and|strong=\"G2532\"* trembling|strong=\"G5156\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* God|strong=\"G2316\"* who|strong=\"G3588\"* works|strong=\"G1754\"* in|strong=\"G1722\"* you|strong=\"G5210\"* both|strong=\"G2532\"* to|strong=\"G2532\"* will|strong=\"G2309\"* and|strong=\"G2532\"* to|strong=\"G2532\"* work|strong=\"G1754\"* for|strong=\"G1063\"* his|strong=\"G1722\"* good|strong=\"G2107\"* pleasure|strong=\"G2107\"*." + }, + { + "verseNum": 14, + "text": "Do|strong=\"G4160\"* all|strong=\"G3956\"* things|strong=\"G3956\"* without|strong=\"G5565\"* complaining|strong=\"G1112\"* and|strong=\"G2532\"* arguing|strong=\"G1261\"*," + }, + { + "verseNum": 15, + "text": "that|strong=\"G2443\"* you|strong=\"G3739\"* may|strong=\"G2532\"* become|strong=\"G1096\"* blameless and|strong=\"G2532\"* harmless, children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"* without|strong=\"G2532\"* defect in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2316\"* a|strong=\"G1096\"* crooked|strong=\"G4646\"* and|strong=\"G2532\"* perverse|strong=\"G1294\"* generation|strong=\"G1074\"*, among|strong=\"G1722\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* are|strong=\"G3739\"* seen|strong=\"G5316\"* as|strong=\"G5613\"* lights|strong=\"G5458\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*," + }, + { + "verseNum": 16, + "text": "holding|strong=\"G1907\"* up|strong=\"G1519\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* life|strong=\"G2222\"*, that|strong=\"G3754\"* I|strong=\"G1473\"* may|strong=\"G5547\"* have|strong=\"G1473\"* something|strong=\"G2745\"* to|strong=\"G1519\"* boast|strong=\"G2745\"* in|strong=\"G1519\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* that|strong=\"G3754\"* I|strong=\"G1473\"* didn’t run|strong=\"G5143\"* in|strong=\"G1519\"* vain|strong=\"G2756\"* nor|strong=\"G3761\"* labor|strong=\"G2872\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 17, + "text": "Yes, and|strong=\"G2532\"* if|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G2532\"* poured|strong=\"G2532\"* out|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sacrifice|strong=\"G2378\"* and|strong=\"G2532\"* service|strong=\"G3009\"* of|strong=\"G2532\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*, I|strong=\"G2532\"* am|strong=\"G2532\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* way, you|strong=\"G5210\"* also|strong=\"G2532\"* should|strong=\"G3588\"* be|strong=\"G2532\"* glad|strong=\"G5463\"* and|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"G1161\"* I|strong=\"G2504\"* hope|strong=\"G1679\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* to|strong=\"G2443\"* send|strong=\"G3992\"* Timothy|strong=\"G5095\"* to|strong=\"G2443\"* you|strong=\"G5210\"* soon|strong=\"G5030\"*, that|strong=\"G2443\"* I|strong=\"G2504\"* also|strong=\"G2504\"* may|strong=\"G2443\"* be|strong=\"G2443\"* cheered up|strong=\"G1722\"* when|strong=\"G1161\"* I|strong=\"G2504\"* know|strong=\"G1097\"* how|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* doing." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* I|strong=\"G1063\"* have|strong=\"G2192\"* no|strong=\"G3762\"* one|strong=\"G3762\"* else like-minded, who|strong=\"G3588\"* will|strong=\"G3748\"* truly care|strong=\"G3309\"* about|strong=\"G4012\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* they|strong=\"G3588\"* all|strong=\"G3956\"* seek|strong=\"G2212\"* their|strong=\"G1438\"* own|strong=\"G1438\"*, not|strong=\"G3756\"* the|strong=\"G3956\"* things|strong=\"G3956\"* of|strong=\"G3956\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* you|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G1161\"* has|strong=\"G3962\"* proved himself|strong=\"G4862\"*. As|strong=\"G5613\"* a|strong=\"G5613\"* child|strong=\"G5043\"* serves|strong=\"G1398\"* a|strong=\"G5613\"* father|strong=\"G3962\"*, so|strong=\"G1161\"* he|strong=\"G1161\"* served|strong=\"G1398\"* with|strong=\"G4862\"* me|strong=\"G1473\"* in|strong=\"G1519\"* furtherance of|strong=\"G3962\"* the|strong=\"G1519\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* to|strong=\"G1679\"* send|strong=\"G3992\"* him|strong=\"G3588\"* at|strong=\"G4012\"* once|strong=\"G1824\"*, as|strong=\"G5613\"* soon|strong=\"G5613\"* as|strong=\"G5613\"* I|strong=\"G1473\"* see how|strong=\"G5613\"* it|strong=\"G3778\"* will|strong=\"G1473\"* go with|strong=\"G4012\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* trust|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* that|strong=\"G3754\"* I|strong=\"G2532\"* myself also|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G2064\"* shortly|strong=\"G5030\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* thought|strong=\"G2233\"* it|strong=\"G2532\"* necessary|strong=\"G5532\"* to|strong=\"G4314\"* send|strong=\"G3992\"* to|strong=\"G4314\"* you|strong=\"G5210\"* Epaphroditus|strong=\"G1891\"*, my|strong=\"G1473\"* brother, fellow|strong=\"G4904\"* worker|strong=\"G4904\"*, fellow|strong=\"G4904\"* soldier|strong=\"G4961\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* apostle and|strong=\"G2532\"* servant|strong=\"G3588\"* of|strong=\"G2532\"* my|strong=\"G1473\"* need|strong=\"G5532\"*," + }, + { + "verseNum": 26, + "text": "since|strong=\"G3754\"* he|strong=\"G2532\"* longed|strong=\"G2532\"* for|strong=\"G3754\"* you|strong=\"G5210\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* very|strong=\"G2532\"* troubled because|strong=\"G3754\"* you|strong=\"G5210\"* had|strong=\"G2532\"* heard that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* sick|strong=\"G3956\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sick nearly to|strong=\"G2443\"* death|strong=\"G2288\"*, but|strong=\"G1161\"* God|strong=\"G2316\"* had|strong=\"G2192\"* mercy|strong=\"G1653\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* on|strong=\"G1909\"* him|strong=\"G3588\"* only|strong=\"G3441\"*, but|strong=\"G1161\"* on|strong=\"G1909\"* me|strong=\"G1473\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* I|strong=\"G1473\"* might|strong=\"G2532\"* not|strong=\"G3756\"* have|strong=\"G2192\"* sorrow|strong=\"G3077\"* on|strong=\"G1909\"* sorrow|strong=\"G3077\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"G2504\"* have|strong=\"G1510\"* sent|strong=\"G3992\"* him|strong=\"G3708\"* therefore|strong=\"G3767\"* the|strong=\"G3767\"* more|strong=\"G3825\"* diligently|strong=\"G4709\"*, that|strong=\"G2443\"* when|strong=\"G3767\"* you|strong=\"G3708\"* see|strong=\"G3708\"* him|strong=\"G3708\"* again|strong=\"G3825\"*, you|strong=\"G3708\"* may|strong=\"G2443\"* rejoice|strong=\"G5463\"*, and|strong=\"G3767\"* that|strong=\"G2443\"* I|strong=\"G2504\"* may|strong=\"G2443\"* be|strong=\"G1510\"* the|strong=\"G3767\"* less sorrowful." + }, + { + "verseNum": 29, + "text": "Receive|strong=\"G4327\"* him|strong=\"G3588\"* therefore|strong=\"G3767\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* with|strong=\"G3326\"* all|strong=\"G3956\"* joy|strong=\"G5479\"*, and|strong=\"G2532\"* hold|strong=\"G2192\"* such|strong=\"G5108\"* people|strong=\"G3956\"* in|strong=\"G1722\"* honor|strong=\"G1784\"*," + }, + { + "verseNum": 30, + "text": "because|strong=\"G3754\"* for|strong=\"G3754\"* the|strong=\"G1223\"* work|strong=\"G2041\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* he|strong=\"G3754\"* came|strong=\"G3588\"* near|strong=\"G1448\"* to|strong=\"G4314\"* death|strong=\"G2288\"*, risking his|strong=\"G1223\"* life|strong=\"G5590\"* to|strong=\"G4314\"* supply that|strong=\"G3754\"* which|strong=\"G3588\"* was|strong=\"G3588\"* lacking|strong=\"G5303\"* in|strong=\"G1223\"* your|strong=\"G1223\"* service|strong=\"G3009\"* toward|strong=\"G4314\"* me|strong=\"G1473\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"*, my|strong=\"G1722\"* brothers, rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*! To|strong=\"G1722\"* write|strong=\"G1125\"* the|strong=\"G1722\"* same things|strong=\"G3588\"* to|strong=\"G1722\"* you|strong=\"G5210\"*, to|strong=\"G1722\"* me|strong=\"G1473\"* indeed|strong=\"G3303\"* is|strong=\"G3588\"* not|strong=\"G3756\"* tiresome, but|strong=\"G1161\"* for|strong=\"G1161\"* you|strong=\"G5210\"* it|strong=\"G1161\"* is|strong=\"G3588\"* safe|strong=\"G1722\"*." + }, + { + "verseNum": 2, + "text": "Beware of|strong=\"G3588\"* the|strong=\"G3588\"* dogs|strong=\"G2965\"*; beware of|strong=\"G3588\"* the|strong=\"G3588\"* evil|strong=\"G2556\"* workers|strong=\"G2040\"*; beware of|strong=\"G3588\"* the|strong=\"G3588\"* false|strong=\"G2699\"* circumcision|strong=\"G2699\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G1510\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"*, who|strong=\"G3588\"* worship|strong=\"G3000\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, and|strong=\"G2532\"* rejoice|strong=\"G2744\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* no|strong=\"G3756\"* confidence|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 4, + "text": "though|strong=\"G1487\"* I|strong=\"G1473\"* myself|strong=\"G1473\"* might|strong=\"G2532\"* have|strong=\"G2192\"* confidence|strong=\"G4006\"* even|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*. If|strong=\"G1487\"* any|strong=\"G5100\"* other|strong=\"G5100\"* man|strong=\"G5100\"* thinks|strong=\"G1380\"* that|strong=\"G2532\"* he|strong=\"G2532\"* has|strong=\"G2192\"* confidence|strong=\"G4006\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, I|strong=\"G1473\"* yet|strong=\"G2532\"* more|strong=\"G3123\"*:" + }, + { + "verseNum": 5, + "text": "circumcised|strong=\"G4061\"* the|strong=\"G1537\"* eighth|strong=\"G3637\"* day|strong=\"G3637\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* stock|strong=\"G1085\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Benjamin, a|strong=\"G1537\"* Hebrew|strong=\"G1445\"* of|strong=\"G1537\"* Hebrews|strong=\"G1445\"*; concerning|strong=\"G2596\"* the|strong=\"G1537\"* law|strong=\"G3551\"*, a|strong=\"G1537\"* Pharisee|strong=\"G5330\"*;" + }, + { + "verseNum": 6, + "text": "concerning|strong=\"G2596\"* zeal|strong=\"G2205\"*, persecuting|strong=\"G1377\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*; concerning|strong=\"G2596\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, found|strong=\"G1096\"* blameless." + }, + { + "verseNum": 7, + "text": "However, I|strong=\"G1473\"* consider|strong=\"G2233\"* those|strong=\"G3588\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G1510\"* gain|strong=\"G2771\"* to|strong=\"G3778\"* me|strong=\"G1473\"* as|strong=\"G2233\"* a|strong=\"G1510\"* loss|strong=\"G2209\"* for|strong=\"G1223\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 8, + "text": "Yes most certainly|strong=\"G2532\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* count|strong=\"G2233\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2443\"* be|strong=\"G1510\"* a|strong=\"G2532\"* loss|strong=\"G2209\"* for|strong=\"G1223\"* the|strong=\"G2532\"* excellency|strong=\"G5242\"* of|strong=\"G1223\"* the|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G1223\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, my|strong=\"G3956\"* Lord|strong=\"G2962\"*, for|strong=\"G1223\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* suffered|strong=\"G2210\"* the|strong=\"G2532\"* loss|strong=\"G2209\"* of|strong=\"G1223\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* count|strong=\"G2233\"* them|strong=\"G3588\"* nothing|strong=\"G3956\"* but|strong=\"G2532\"* refuse, that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2532\"* gain|strong=\"G2770\"* Christ|strong=\"G5547\"*" + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* a|strong=\"G2192\"* righteousness|strong=\"G1343\"* of|strong=\"G1537\"* my|strong=\"G1699\"* own|strong=\"G1699\"*, that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, but|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* righteousness|strong=\"G1343\"* which|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G1537\"* God|strong=\"G2316\"* by|strong=\"G1223\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G3588\"* I|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1097\"* him|strong=\"G3588\"* and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"* of|strong=\"G2532\"* his|strong=\"G2532\"* resurrection, and|strong=\"G2532\"* the|strong=\"G2532\"* fellowship|strong=\"G2842\"* of|strong=\"G2532\"* his|strong=\"G2532\"* sufferings|strong=\"G3804\"*, becoming conformed to|strong=\"G2532\"* his|strong=\"G2532\"* death|strong=\"G2288\"*," + }, + { + "verseNum": 11, + "text": "if|strong=\"G1487\"* by|strong=\"G1537\"* any|strong=\"G1487\"* means|strong=\"G1513\"* I|strong=\"G1487\"* may|strong=\"G1487\"* attain|strong=\"G2658\"* to|strong=\"G1519\"* the|strong=\"G1519\"* resurrection|strong=\"G1815\"* from|strong=\"G1537\"* the|strong=\"G1519\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 12, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G3739\"* have|strong=\"G2532\"* already|strong=\"G2235\"* obtained|strong=\"G2983\"*, or|strong=\"G2228\"* am|strong=\"G2532\"* already|strong=\"G2235\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*; but|strong=\"G1161\"* I|strong=\"G3739\"* press|strong=\"G1377\"* on|strong=\"G1909\"*, that|strong=\"G3754\"* I|strong=\"G3739\"* may|strong=\"G2532\"* take|strong=\"G2983\"* hold|strong=\"G2638\"* of|strong=\"G5259\"* that|strong=\"G3754\"* for|strong=\"G3754\"* which|strong=\"G3739\"* also|strong=\"G2532\"* I|strong=\"G3739\"* was|strong=\"G2424\"* taken|strong=\"G2983\"* hold|strong=\"G2638\"* of|strong=\"G5259\"* by|strong=\"G5259\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 13, + "text": "Brothers, I|strong=\"G1473\"* don’t regard|strong=\"G3049\"* myself|strong=\"G1683\"* as|strong=\"G1161\"* yet|strong=\"G1161\"* having taken|strong=\"G2638\"* hold|strong=\"G2638\"*, but|strong=\"G1161\"* one|strong=\"G1520\"* thing|strong=\"G1520\"* I|strong=\"G1473\"* do|strong=\"G1950\"*: forgetting|strong=\"G1950\"* the|strong=\"G1161\"* things which are|strong=\"G1473\"* behind|strong=\"G3694\"* and|strong=\"G1161\"* stretching forward|strong=\"G1901\"* to|strong=\"G1161\"* the|strong=\"G1161\"* things which are|strong=\"G1473\"* before|strong=\"G1715\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"G1161\"* press|strong=\"G1377\"* on|strong=\"G1722\"* toward|strong=\"G1519\"* the|strong=\"G1722\"* goal|strong=\"G4649\"* for|strong=\"G1519\"* the|strong=\"G1722\"* prize|strong=\"G1017\"* of|strong=\"G2316\"* the|strong=\"G1722\"* high|strong=\"G2316\"* calling|strong=\"G2821\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"G3767\"* us|strong=\"G5426\"* therefore|strong=\"G3767\"*, as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G3588\"* perfect|strong=\"G5046\"*, think|strong=\"G5426\"* this|strong=\"G3778\"* way|strong=\"G5100\"*. If|strong=\"G1487\"* in|strong=\"G2532\"* anything|strong=\"G5100\"* you|strong=\"G5210\"* think|strong=\"G5426\"* otherwise|strong=\"G1487\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* also|strong=\"G2532\"* reveal that|strong=\"G3588\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 16, + "text": "Nevertheless|strong=\"G4133\"*, to|strong=\"G1519\"* the|strong=\"G1519\"* extent that|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G3588\"* already attained|strong=\"G5348\"*, let’s walk|strong=\"G4748\"* by|strong=\"G1519\"* the|strong=\"G1519\"* same|strong=\"G3739\"* rule. Let’s be|strong=\"G1519\"* of|strong=\"G3588\"* the|strong=\"G1519\"* same|strong=\"G3739\"* mind." + }, + { + "verseNum": 17, + "text": "Brothers, be|strong=\"G1096\"* imitators|strong=\"G4831\"* together|strong=\"G4831\"* of|strong=\"G2532\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* note those|strong=\"G3588\"* who|strong=\"G3588\"* walk|strong=\"G4043\"* this|strong=\"G3588\"* way|strong=\"G3779\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G3779\"* have|strong=\"G2192\"* us|strong=\"G2249\"* for|strong=\"G2532\"* an|strong=\"G2192\"* example|strong=\"G5179\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* many|strong=\"G4183\"* walk|strong=\"G4043\"*, of|strong=\"G2532\"* whom|strong=\"G3739\"* I|strong=\"G3739\"* told|strong=\"G3004\"* you|strong=\"G5210\"* often|strong=\"G4178\"*, and|strong=\"G2532\"* now|strong=\"G1161\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* even|strong=\"G2532\"* weeping|strong=\"G2799\"*, as|strong=\"G1161\"* the|strong=\"G2532\"* enemies|strong=\"G2190\"* of|strong=\"G2532\"* the|strong=\"G2532\"* cross|strong=\"G4716\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 19, + "text": "whose|strong=\"G3739\"* end|strong=\"G5056\"* is|strong=\"G3588\"* destruction, whose|strong=\"G3739\"* god|strong=\"G2316\"* is|strong=\"G3588\"* the|strong=\"G1722\"* belly|strong=\"G2836\"*, and|strong=\"G2532\"* whose|strong=\"G3739\"* glory|strong=\"G1391\"* is|strong=\"G3588\"* in|strong=\"G1722\"* their|strong=\"G2532\"* shame, who|strong=\"G3739\"* think|strong=\"G5426\"* about|strong=\"G1722\"* earthly|strong=\"G1919\"* things|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* our|strong=\"G2424\"* citizenship|strong=\"G4175\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, from|strong=\"G1537\"* where|strong=\"G3739\"* we|strong=\"G2249\"* also|strong=\"G2532\"* wait for|strong=\"G1063\"* a|strong=\"G2532\"* Savior|strong=\"G4990\"*, the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 21, + "text": "who|strong=\"G3739\"* will|strong=\"G2532\"* change|strong=\"G3345\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2532\"* our|strong=\"G2532\"* humiliation|strong=\"G5014\"* to|strong=\"G2532\"* be|strong=\"G2532\"* conformed|strong=\"G4832\"* to|strong=\"G2532\"* the|strong=\"G2532\"* body|strong=\"G4983\"* of|strong=\"G2532\"* his|strong=\"G1438\"* glory|strong=\"G1391\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* working|strong=\"G1753\"* by|strong=\"G2596\"* which|strong=\"G3739\"* he|strong=\"G2532\"* is|strong=\"G3588\"* able|strong=\"G1410\"* even|strong=\"G2532\"* to|strong=\"G2532\"* subject|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G2532\"* himself|strong=\"G1438\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G5620\"*, my|strong=\"G1722\"* brothers, beloved and|strong=\"G2532\"* longed|strong=\"G2532\"* for|strong=\"G1722\"*, my|strong=\"G1722\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* crown|strong=\"G4735\"*, stand|strong=\"G4739\"* firm|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* this|strong=\"G3779\"* way|strong=\"G3779\"*, my|strong=\"G1722\"* beloved." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* exhort|strong=\"G3870\"* Euodia|strong=\"G2136\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* Syntyche|strong=\"G4941\"*, to|strong=\"G2532\"* think|strong=\"G5426\"* the|strong=\"G1722\"* same|strong=\"G2532\"* way|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"G3483\"*, I|strong=\"G1473\"* beg|strong=\"G2065\"* you|strong=\"G4771\"* also|strong=\"G2532\"*, true|strong=\"G1103\"* partner, help|strong=\"G4815\"* these|strong=\"G3739\"* women|strong=\"G3062\"*, for|strong=\"G1722\"* they|strong=\"G2532\"* labored with|strong=\"G3326\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* with|strong=\"G3326\"* Clement|strong=\"G2815\"* also|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G2532\"* my|strong=\"G1722\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"*, whose|strong=\"G3739\"* names|strong=\"G3686\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 4, + "text": "Rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* always|strong=\"G3842\"*! Again|strong=\"G3825\"* I|strong=\"G3004\"* will|strong=\"G2962\"* say|strong=\"G3004\"*, “Rejoice|strong=\"G5463\"*!”" + }, + { + "verseNum": 5, + "text": "Let|strong=\"G1097\"* your|strong=\"G2962\"* gentleness|strong=\"G1933\"* be|strong=\"G3956\"* known|strong=\"G1097\"* to|strong=\"G2962\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. The|strong=\"G3956\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* nothing|strong=\"G3367\"* be|strong=\"G2532\"* anxious|strong=\"G3309\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* everything|strong=\"G3956\"*, by|strong=\"G1722\"* prayer|strong=\"G4335\"* and|strong=\"G2532\"* petition|strong=\"G1162\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"*, let|strong=\"G2532\"* your|strong=\"G2532\"* requests|strong=\"G1162\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G4314\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* the|strong=\"G1722\"* peace|strong=\"G1515\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* surpasses|strong=\"G5242\"* all|strong=\"G3956\"* understanding|strong=\"G3563\"*, will|strong=\"G2316\"* guard|strong=\"G2532\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* and|strong=\"G2532\"* your|strong=\"G2532\"* thoughts in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 8, + "text": "Finally|strong=\"G3063\"*, brothers, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* true|strong=\"G3588\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* honorable|strong=\"G4586\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* just|strong=\"G1342\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* pure, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* lovely|strong=\"G4375\"*, whatever|strong=\"G3745\"* things|strong=\"G3778\"* are|strong=\"G1510\"* of|strong=\"G2532\"* good|strong=\"G3588\"* report|strong=\"G2163\"*: if|strong=\"G1487\"* there|strong=\"G2532\"* is|strong=\"G1510\"* any|strong=\"G5100\"* virtue and|strong=\"G2532\"* if|strong=\"G1487\"* there|strong=\"G2532\"* is|strong=\"G1510\"* anything|strong=\"G5100\"* worthy|strong=\"G1868\"* of|strong=\"G2532\"* praise|strong=\"G1868\"*, think|strong=\"G3049\"* about|strong=\"G3588\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "Do|strong=\"G4238\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G5210\"* learned|strong=\"G3129\"*, received|strong=\"G3880\"*, heard, and|strong=\"G2532\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* me|strong=\"G1473\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* I|strong=\"G1473\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* greatly|strong=\"G3171\"* that|strong=\"G3754\"* now|strong=\"G1161\"* at|strong=\"G1722\"* length|strong=\"G4218\"* you|strong=\"G3739\"* have|strong=\"G2532\"* revived your|strong=\"G2962\"* thought for|strong=\"G3754\"* me|strong=\"G1473\"*; in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* did|strong=\"G2532\"* indeed|strong=\"G2532\"* take|strong=\"G1161\"* thought, but|strong=\"G1161\"* you|strong=\"G3739\"* lacked opportunity." + }, + { + "verseNum": 11, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G1473\"* speak|strong=\"G3004\"* because|strong=\"G3754\"* of|strong=\"G1722\"* lack|strong=\"G3756\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G1473\"* learned|strong=\"G3129\"* in|strong=\"G1722\"* whatever|strong=\"G3739\"* state|strong=\"G2596\"* I|strong=\"G1473\"* am|strong=\"G1510\"*, to|strong=\"G2596\"* be|strong=\"G1510\"* content in|strong=\"G1722\"* it|strong=\"G3754\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* be|strong=\"G2532\"* humbled|strong=\"G5013\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* also|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* abound|strong=\"G4052\"*. In|strong=\"G1722\"* any|strong=\"G3956\"* and|strong=\"G2532\"* all|strong=\"G3956\"* circumstances|strong=\"G1722\"* I|strong=\"G2532\"* have|strong=\"G2532\"* learned|strong=\"G3453\"* the|strong=\"G1722\"* secret|strong=\"G3453\"* both|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G5526\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* hungry|strong=\"G3983\"*, both|strong=\"G2532\"* to|strong=\"G2532\"* abound|strong=\"G4052\"* and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1722\"* need|strong=\"G5302\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G1473\"* can|strong=\"G2480\"* do|strong=\"G2480\"* all|strong=\"G3956\"* things|strong=\"G3956\"* through|strong=\"G1722\"* Christ who|strong=\"G3588\"* strengthens|strong=\"G1743\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 14, + "text": "However|strong=\"G4133\"* you|strong=\"G4160\"* did|strong=\"G4160\"* well|strong=\"G2573\"* that|strong=\"G3588\"* you|strong=\"G4160\"* shared in|strong=\"G4160\"* my|strong=\"G1473\"* affliction|strong=\"G2347\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"G5210\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* know|strong=\"G1492\"*, you|strong=\"G5210\"* Philippians|strong=\"G5374\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* beginning of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G3056\"*, when|strong=\"G3753\"* I|strong=\"G1473\"* departed|strong=\"G1831\"* from|strong=\"G2532\"* Macedonia|strong=\"G3109\"*, no|strong=\"G3762\"* assembly|strong=\"G1577\"* shared|strong=\"G2841\"* with|strong=\"G1722\"* me|strong=\"G1473\"* in|strong=\"G1722\"* the|strong=\"G1722\"* matter|strong=\"G3056\"* of|strong=\"G3056\"* giving|strong=\"G1394\"* and|strong=\"G2532\"* receiving|strong=\"G3028\"* but|strong=\"G1161\"* you|strong=\"G5210\"* only|strong=\"G3441\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* even|strong=\"G2532\"* in|strong=\"G1722\"* Thessalonica|strong=\"G2332\"* you|strong=\"G3754\"* sent|strong=\"G3992\"* once and|strong=\"G2532\"* again|strong=\"G1364\"* to|strong=\"G1519\"* my|strong=\"G1722\"* need|strong=\"G5532\"*." + }, + { + "verseNum": 17, + "text": "Not|strong=\"G3756\"* that|strong=\"G3754\"* I|strong=\"G3754\"* seek|strong=\"G1934\"* for|strong=\"G3754\"* the|strong=\"G1519\"* gift|strong=\"G1390\"*, but|strong=\"G3588\"* I|strong=\"G3754\"* seek|strong=\"G1934\"* for|strong=\"G3754\"* the|strong=\"G1519\"* fruit|strong=\"G2590\"* that|strong=\"G3754\"* increases|strong=\"G4121\"* to|strong=\"G1519\"* your|strong=\"G3588\"* account|strong=\"G3056\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* have|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* abound|strong=\"G4052\"*. I|strong=\"G2532\"* am|strong=\"G2532\"* filled|strong=\"G4137\"*, having|strong=\"G2532\"* received|strong=\"G1209\"* from|strong=\"G3844\"* Epaphroditus|strong=\"G1891\"* the|strong=\"G2532\"* things|strong=\"G3956\"* that|strong=\"G3588\"* came|strong=\"G2532\"* from|strong=\"G3844\"* you|strong=\"G5210\"*, a|strong=\"G2532\"* sweet-smelling fragrance|strong=\"G3744\"*, an|strong=\"G2532\"* acceptable|strong=\"G2101\"* and|strong=\"G2532\"* well-pleasing|strong=\"G2101\"* sacrifice|strong=\"G2378\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"G1722\"* God|strong=\"G2316\"* will|strong=\"G2316\"* supply|strong=\"G4137\"* every|strong=\"G3956\"* need|strong=\"G5532\"* of|strong=\"G2316\"* yours|strong=\"G4771\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G3956\"* riches|strong=\"G4149\"* in|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* to|strong=\"G1519\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen." + }, + { + "verseNum": 21, + "text": "Greet every|strong=\"G3956\"* saint in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*. The|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G1722\"* me|strong=\"G1473\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"G3956\"* the|strong=\"G3956\"* saints greet you|strong=\"G5210\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* of|strong=\"G1537\"* Caesar|strong=\"G2541\"*’s household|strong=\"G3614\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3588\"*. Amen." + } + ] + } + ] + }, + { + "name": "Colossians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G1223\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"* through|strong=\"G1223\"* the|strong=\"G2532\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2316\"* brother," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* saints and|strong=\"G2532\"* faithful|strong=\"G4103\"* brothers+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* in|strong=\"G1722\"* Christ|strong=\"G5547\"* at|strong=\"G1722\"* Colossae|strong=\"G2857\"*: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2532\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "We|strong=\"G2249\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G4012\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, praying|strong=\"G4336\"* always|strong=\"G3842\"* for|strong=\"G4012\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 4, + "text": "having|strong=\"G2192\"* heard of|strong=\"G2532\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* love which|strong=\"G3739\"* you|strong=\"G5210\"* have|strong=\"G2192\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* saints," + }, + { + "verseNum": 5, + "text": "because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* which|strong=\"G3739\"* is|strong=\"G3588\"* laid up|strong=\"G1722\"* for|strong=\"G1223\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*, of|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard|strong=\"G4257\"* before|strong=\"G1722\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* truth of|strong=\"G3056\"* the|strong=\"G1722\"* Good|strong=\"G1223\"* News|strong=\"G3056\"*" + }, + { + "verseNum": 6, + "text": "which|strong=\"G3739\"* has|strong=\"G2316\"* come|strong=\"G1510\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* world|strong=\"G2889\"* and|strong=\"G2532\"* is|strong=\"G1510\"* bearing|strong=\"G2592\"* fruit|strong=\"G2592\"* and|strong=\"G2532\"* growing|strong=\"G1722\"*, as|strong=\"G2531\"* it|strong=\"G2532\"* does|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"* also|strong=\"G2532\"*, since the|strong=\"G1722\"* day|strong=\"G2250\"* you|strong=\"G5210\"* heard and|strong=\"G2532\"* knew|strong=\"G1921\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2250\"* God|strong=\"G2316\"* in|strong=\"G1722\"* truth," + }, + { + "verseNum": 7, + "text": "even|strong=\"G2531\"* as|strong=\"G2531\"* you|strong=\"G5210\"* learned|strong=\"G3129\"* from|strong=\"G3588\"* Epaphras|strong=\"G1889\"* our|strong=\"G5547\"* beloved fellow|strong=\"G4889\"* servant|strong=\"G1249\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* a|strong=\"G1510\"* faithful|strong=\"G4103\"* servant|strong=\"G1249\"* of|strong=\"G5228\"* Christ|strong=\"G5547\"* on|strong=\"G5228\"* your|strong=\"G5228\"*+ 1:7 NU reads our* behalf|strong=\"G5228\"*," + }, + { + "verseNum": 8, + "text": "who|strong=\"G3588\"* also|strong=\"G2532\"* declared|strong=\"G1213\"* to|strong=\"G2532\"* us|strong=\"G2249\"* your|strong=\"G2532\"* love in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G5228\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, we|strong=\"G2249\"* also|strong=\"G2532\"*, since|strong=\"G1223\"* the|strong=\"G1722\"* day|strong=\"G2250\"* we|strong=\"G2249\"* heard this|strong=\"G3778\"*, don’t|strong=\"G3588\"* cease|strong=\"G3973\"* praying|strong=\"G4336\"* and|strong=\"G2532\"* making|strong=\"G2532\"* requests for|strong=\"G5228\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* filled|strong=\"G4137\"* with|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2250\"* his|strong=\"G3956\"* will|strong=\"G2307\"* in|strong=\"G1722\"* all|strong=\"G3956\"* spiritual|strong=\"G4152\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* understanding|strong=\"G4907\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"G3588\"* you|strong=\"G1722\"* may|strong=\"G2532\"* walk|strong=\"G4043\"* worthily of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, to|strong=\"G1519\"* please him|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* respects|strong=\"G3956\"*, bearing|strong=\"G2592\"* fruit|strong=\"G2592\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"* and|strong=\"G2532\"* increasing in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 11, + "text": "strengthened|strong=\"G1412\"* with|strong=\"G3326\"* all|strong=\"G3956\"* power|strong=\"G1411\"*, according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* might|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G3956\"* glory|strong=\"G1391\"*, for|strong=\"G1519\"* all|strong=\"G3956\"* endurance|strong=\"G5281\"* and|strong=\"G2532\"* perseverance|strong=\"G5281\"* with|strong=\"G3326\"* joy|strong=\"G5479\"*," + }, + { + "verseNum": 12, + "text": "giving|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* made|strong=\"G2427\"* us|strong=\"G2427\"* fit to|strong=\"G1519\"* be|strong=\"G1519\"* partakers|strong=\"G3310\"* of|strong=\"G3962\"* the|strong=\"G1722\"* inheritance|strong=\"G2819\"* of|strong=\"G3962\"* the|strong=\"G1722\"* saints in|strong=\"G1722\"* light|strong=\"G5457\"*," + }, + { + "verseNum": 13, + "text": "who|strong=\"G3739\"* delivered|strong=\"G4506\"* us|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* power|strong=\"G1849\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"*, and|strong=\"G2532\"* translated|strong=\"G3179\"* us|strong=\"G1519\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Kingdom of|strong=\"G1537\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* his|strong=\"G1519\"* love," + }, + { + "verseNum": 14, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G2192\"* our|strong=\"G1722\"* redemption,+ 1:14 TR adds “through his blood,” * the|strong=\"G1722\"* forgiveness of|strong=\"G1722\"* our|strong=\"G1722\"* sins." + }, + { + "verseNum": 15, + "text": "He|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3956\"* image|strong=\"G1504\"* of|strong=\"G2316\"* the|strong=\"G3956\"* invisible God|strong=\"G2316\"*, the|strong=\"G3956\"* firstborn|strong=\"G4416\"* of|strong=\"G2316\"* all|strong=\"G3956\"* creation|strong=\"G2937\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* by|strong=\"G1223\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* were|strong=\"G3588\"* created|strong=\"G2936\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, visible|strong=\"G3707\"* things|strong=\"G3956\"* and|strong=\"G2532\"* invisible things|strong=\"G3956\"*, whether|strong=\"G1535\"* thrones|strong=\"G2362\"* or|strong=\"G1535\"* dominions|strong=\"G2963\"* or|strong=\"G1535\"* principalities or|strong=\"G1535\"* powers|strong=\"G1849\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G2532\"* created|strong=\"G2936\"* through|strong=\"G1223\"* him|strong=\"G3588\"* and|strong=\"G2532\"* for|strong=\"G3754\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"G2532\"* is|strong=\"G1510\"* before|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* held together|strong=\"G2532\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"* of|strong=\"G1537\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, the|strong=\"G1722\"* assembly|strong=\"G1577\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* beginning, the|strong=\"G1722\"* firstborn|strong=\"G4416\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* he|strong=\"G2532\"* might|strong=\"G2532\"* have|strong=\"G2532\"* the|strong=\"G1722\"* preeminence|strong=\"G4409\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* was|strong=\"G3588\"* pleased|strong=\"G2106\"* to|strong=\"G1722\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"G2532\"* through|strong=\"G1223\"* him|strong=\"G3588\"* to|strong=\"G1519\"* reconcile all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G1519\"* himself|strong=\"G1519\"* by|strong=\"G1223\"* him|strong=\"G3588\"*, whether|strong=\"G1535\"* things|strong=\"G3956\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* or|strong=\"G1535\"* things|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*, having|strong=\"G2532\"* made|strong=\"G3956\"* peace|strong=\"G1517\"* through|strong=\"G1223\"* the|strong=\"G1722\"* blood of|strong=\"G1223\"* his|strong=\"G3956\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"G5210\"*, being|strong=\"G1510\"* in|strong=\"G1722\"* past|strong=\"G4218\"* times|strong=\"G4218\"* alienated and|strong=\"G2532\"* enemies|strong=\"G2190\"* in|strong=\"G1722\"* your|strong=\"G2532\"* mind|strong=\"G1271\"* in|strong=\"G1722\"* your|strong=\"G2532\"* evil|strong=\"G4190\"* deeds|strong=\"G2041\"*," + }, + { + "verseNum": 22, + "text": "yet|strong=\"G2532\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G2288\"* reconciled in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G1223\"* his|strong=\"G1223\"* flesh|strong=\"G4561\"* through|strong=\"G1223\"* death|strong=\"G2288\"*, to|strong=\"G2532\"* present|strong=\"G3936\"* you|strong=\"G5210\"* holy and|strong=\"G2532\"* without|strong=\"G2532\"* defect and|strong=\"G2532\"* blameless before|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 23, + "text": "if|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* so|strong=\"G2532\"* that|strong=\"G3739\"* you|strong=\"G3739\"* continue|strong=\"G1961\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, grounded|strong=\"G2311\"* and|strong=\"G2532\"* steadfast|strong=\"G1476\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* moved|strong=\"G3361\"* away|strong=\"G3334\"* from|strong=\"G2532\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G5259\"* the|strong=\"G1722\"* Good|strong=\"G3956\"* News|strong=\"G2098\"* which|strong=\"G3739\"* you|strong=\"G3739\"* heard, which|strong=\"G3739\"* was|strong=\"G1096\"* proclaimed|strong=\"G2784\"* in|strong=\"G1722\"* all|strong=\"G3956\"* creation|strong=\"G2937\"* under|strong=\"G5259\"* heaven|strong=\"G3772\"*, of|strong=\"G5259\"* which|strong=\"G3739\"* I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G3568\"* I|strong=\"G1473\"* rejoice|strong=\"G5463\"* in|strong=\"G1722\"* my|strong=\"G1722\"* sufferings|strong=\"G3804\"* for|strong=\"G5228\"* your|strong=\"G2532\"* sake|strong=\"G5228\"*, and|strong=\"G2532\"* fill|strong=\"G2532\"* up|strong=\"G2532\"* on|strong=\"G1722\"* my|strong=\"G1722\"* part|strong=\"G1473\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G1510\"* lacking|strong=\"G5303\"* of|strong=\"G2532\"* the|strong=\"G1722\"* afflictions|strong=\"G2347\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* my|strong=\"G1722\"* flesh|strong=\"G4561\"* for|strong=\"G5228\"* his|strong=\"G1722\"* body|strong=\"G4983\"*’s sake|strong=\"G5228\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*," + }, + { + "verseNum": 25, + "text": "of|strong=\"G3056\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* servant|strong=\"G1249\"* according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1519\"* stewardship|strong=\"G3622\"* of|strong=\"G3056\"* God|strong=\"G2316\"* which|strong=\"G3739\"* was|strong=\"G1096\"* given|strong=\"G1325\"* me|strong=\"G1325\"* toward|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* fulfill|strong=\"G4137\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"G2532\"* mystery|strong=\"G3466\"* which|strong=\"G3588\"* has|strong=\"G5319\"* been|strong=\"G2532\"* hidden for|strong=\"G1161\"* ages|strong=\"G1074\"* and|strong=\"G2532\"* generations|strong=\"G1074\"*. But|strong=\"G1161\"* now|strong=\"G1161\"* it|strong=\"G2532\"* has|strong=\"G5319\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* to|strong=\"G2532\"* his|strong=\"G2532\"* saints," + }, + { + "verseNum": 27, + "text": "to|strong=\"G2309\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* was|strong=\"G1510\"* pleased to|strong=\"G2309\"* make|strong=\"G1107\"* known|strong=\"G1107\"* what|strong=\"G5101\"* are|strong=\"G1510\"* the|strong=\"G1722\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* this|strong=\"G3778\"* mystery|strong=\"G3466\"* among|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* hope|strong=\"G1680\"* of|strong=\"G2316\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 28, + "text": "We|strong=\"G2249\"* proclaim|strong=\"G2605\"* him|strong=\"G3739\"*, admonishing|strong=\"G3560\"* every|strong=\"G3956\"* man|strong=\"G3956\"* and|strong=\"G2532\"* teaching|strong=\"G1321\"* every|strong=\"G3956\"* man|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2532\"* present|strong=\"G3936\"* every|strong=\"G3956\"* man|strong=\"G3956\"* perfect|strong=\"G5046\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2532\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* also|strong=\"G2532\"* labor|strong=\"G2872\"*, striving according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G1519\"* working|strong=\"G1753\"*, which|strong=\"G3739\"* works|strong=\"G1754\"* in|strong=\"G1722\"* me|strong=\"G1473\"* mightily|strong=\"G1411\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* have|strong=\"G2192\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G1492\"* greatly|strong=\"G3756\"* I|strong=\"G1473\"* struggle for|strong=\"G1063\"* you|strong=\"G5210\"* and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* at|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* have|strong=\"G2192\"* not|strong=\"G3756\"* seen|strong=\"G3708\"* my|strong=\"G3708\"* face|strong=\"G4383\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"G2443\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* may|strong=\"G2532\"* be|strong=\"G2532\"* comforted|strong=\"G3870\"*, they|strong=\"G2532\"* being|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* in|strong=\"G1722\"* love, and|strong=\"G2532\"* gaining all|strong=\"G3956\"* riches|strong=\"G4149\"* of|strong=\"G2316\"* the|strong=\"G1722\"* full|strong=\"G3956\"* assurance|strong=\"G4136\"* of|strong=\"G2316\"* understanding|strong=\"G4907\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1722\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, both|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Father and|strong=\"G2532\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G1722\"* treasures|strong=\"G2344\"* of|strong=\"G2532\"* wisdom|strong=\"G4678\"* and|strong=\"G2532\"* knowledge|strong=\"G1108\"* are|strong=\"G1510\"* hidden." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1722\"* I|strong=\"G3778\"* say|strong=\"G3004\"* this|strong=\"G3778\"* that|strong=\"G2443\"* no|strong=\"G3367\"* one|strong=\"G3367\"* may|strong=\"G2443\"* delude|strong=\"G3884\"* you|strong=\"G5210\"* with|strong=\"G1722\"* persuasiveness of|strong=\"G1722\"* speech." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* though|strong=\"G1487\"* I|strong=\"G2532\"* am|strong=\"G1510\"* absent in|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, yet|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G1510\"* with|strong=\"G4862\"* you|strong=\"G5210\"* in|strong=\"G1519\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*, rejoicing|strong=\"G5463\"* and|strong=\"G2532\"* seeing your|strong=\"G2532\"* order|strong=\"G5010\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* steadfastness of|strong=\"G4151\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1519\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"G5613\"* therefore|strong=\"G3767\"* you|strong=\"G1722\"* received|strong=\"G3880\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, walk|strong=\"G4043\"* in|strong=\"G1722\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 7, + "text": "rooted|strong=\"G4492\"* and|strong=\"G2532\"* built|strong=\"G2026\"* up|strong=\"G2026\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* established in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1722\"* were|strong=\"G3588\"* taught|strong=\"G1321\"*, abounding|strong=\"G4052\"* in|strong=\"G1722\"* it|strong=\"G2532\"* in|strong=\"G1722\"* thanksgiving|strong=\"G2169\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"G1510\"* careful that|strong=\"G3588\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* let|strong=\"G1510\"* anyone|strong=\"G5100\"* rob you|strong=\"G5210\"* through|strong=\"G1223\"* his|strong=\"G1223\"* philosophy|strong=\"G5385\"* and|strong=\"G2532\"* vain|strong=\"G2756\"* deceit, after|strong=\"G2596\"* the|strong=\"G2532\"* tradition|strong=\"G3862\"* of|strong=\"G1223\"* men|strong=\"G5100\"*, after|strong=\"G2596\"* the|strong=\"G2532\"* elemental|strong=\"G4747\"* spirits|strong=\"G2889\"* of|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* after|strong=\"G2596\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G3754\"* in|strong=\"G1722\"* him|strong=\"G3588\"* all|strong=\"G3956\"* the|strong=\"G1722\"* fullness|strong=\"G4138\"* of|strong=\"G1722\"* the|strong=\"G1722\"* Deity|strong=\"G2320\"* dwells|strong=\"G2730\"* bodily|strong=\"G4985\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G3739\"* are|strong=\"G1510\"* made|strong=\"G4137\"* full|strong=\"G4137\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* head|strong=\"G2776\"* of|strong=\"G2532\"* all|strong=\"G3956\"* principality and|strong=\"G2532\"* power|strong=\"G1849\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"G1722\"* him|strong=\"G3588\"* you|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* circumcised|strong=\"G4059\"* with|strong=\"G1722\"* a|strong=\"G2532\"* circumcision|strong=\"G4061\"* not|strong=\"G3739\"* made with|strong=\"G1722\"* hands, in|strong=\"G1722\"* the|strong=\"G1722\"* putting|strong=\"G2532\"* off of|strong=\"G2532\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sins of|strong=\"G2532\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* circumcision|strong=\"G4061\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* buried|strong=\"G4916\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* baptism, in|strong=\"G1722\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* also|strong=\"G2532\"* raised|strong=\"G1453\"* with|strong=\"G1722\"* him|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* working|strong=\"G1753\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"G5210\"* were|strong=\"G1510\"* dead|strong=\"G3498\"* through|strong=\"G1722\"* your|strong=\"G2532\"* trespasses|strong=\"G3900\"* and|strong=\"G2532\"* the|strong=\"G1722\"* uncircumcision of|strong=\"G2532\"* your|strong=\"G2532\"* flesh|strong=\"G4561\"*. He|strong=\"G2532\"* made|strong=\"G4806\"* you|strong=\"G5210\"* alive|strong=\"G4806\"* together|strong=\"G4806\"* with|strong=\"G1722\"* him|strong=\"G3588\"*, having|strong=\"G2532\"* forgiven|strong=\"G5483\"* us|strong=\"G5483\"* all|strong=\"G3956\"* our|strong=\"G2532\"* trespasses|strong=\"G3900\"*," + }, + { + "verseNum": 14, + "text": "wiping out|strong=\"G1537\"* the|strong=\"G2532\"* handwriting|strong=\"G5498\"* in|strong=\"G2596\"* ordinances|strong=\"G1378\"* which|strong=\"G3739\"* was|strong=\"G1510\"* against|strong=\"G2596\"* us|strong=\"G2249\"*. He|strong=\"G2532\"* has|strong=\"G3739\"* taken it|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* way|strong=\"G2596\"*, nailing|strong=\"G4338\"* it|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* cross|strong=\"G4716\"*." + }, + { + "verseNum": 15, + "text": "Having|strong=\"G2532\"* stripped the|strong=\"G1722\"* principalities and|strong=\"G2532\"* the|strong=\"G1722\"* powers|strong=\"G1849\"*, he|strong=\"G2532\"* made|strong=\"G1165\"* a|strong=\"G2532\"* show of|strong=\"G2532\"* them|strong=\"G3588\"* openly|strong=\"G3954\"*, triumphing over|strong=\"G1849\"* them|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G2919\"* no|strong=\"G3361\"* one|strong=\"G5100\"* therefore|strong=\"G3767\"* judge|strong=\"G2919\"* you|strong=\"G5210\"* in|strong=\"G1722\"* eating|strong=\"G1035\"* or|strong=\"G2228\"* drinking|strong=\"G4213\"*, or|strong=\"G2228\"* with|strong=\"G1722\"* respect|strong=\"G3313\"* to|strong=\"G1722\"* a|strong=\"G1722\"* feast|strong=\"G1859\"* day|strong=\"G4521\"* or|strong=\"G2228\"* a|strong=\"G1722\"* new|strong=\"G5100\"* moon|strong=\"G3561\"* or|strong=\"G2228\"* a|strong=\"G1722\"* Sabbath|strong=\"G4521\"* day|strong=\"G4521\"*," + }, + { + "verseNum": 17, + "text": "which|strong=\"G3739\"* are|strong=\"G1510\"* a|strong=\"G1510\"* shadow|strong=\"G4639\"* of|strong=\"G4983\"* the|strong=\"G1161\"* things|strong=\"G3588\"* to|strong=\"G3195\"* come|strong=\"G3195\"*; but|strong=\"G1161\"* the|strong=\"G1161\"* body|strong=\"G4983\"* is|strong=\"G1510\"* Christ|strong=\"G5547\"*’s." + }, + { + "verseNum": 18, + "text": "Let|strong=\"G2532\"* no|strong=\"G3367\"* one|strong=\"G3367\"* rob you|strong=\"G5210\"* of|strong=\"G5259\"* your|strong=\"G2532\"* prize|strong=\"G2603\"* by|strong=\"G1722\"* self-abasement|strong=\"G5012\"* and|strong=\"G2532\"* worshiping of|strong=\"G5259\"* the|strong=\"G1722\"* angels, dwelling in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* not|strong=\"G3367\"* seen|strong=\"G3708\"*, vainly|strong=\"G1500\"* puffed|strong=\"G1500\"* up|strong=\"G5448\"* by|strong=\"G1722\"* his|strong=\"G1722\"* fleshly|strong=\"G4561\"* mind|strong=\"G3563\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"G2532\"* not|strong=\"G3756\"* holding|strong=\"G2902\"* firmly to|strong=\"G2532\"* the|strong=\"G2532\"* Head|strong=\"G2776\"*, from|strong=\"G1537\"* whom|strong=\"G3739\"* all|strong=\"G3956\"* the|strong=\"G2532\"* body|strong=\"G4983\"*, being|strong=\"G2532\"* supplied|strong=\"G2023\"* and|strong=\"G2532\"* knit|strong=\"G4822\"* together|strong=\"G4822\"* through|strong=\"G1223\"* the|strong=\"G2532\"* joints and|strong=\"G2532\"* ligaments|strong=\"G4886\"*, grows with|strong=\"G1537\"* God|strong=\"G2316\"*’s growth." + }, + { + "verseNum": 20, + "text": "If|strong=\"G1487\"* you|strong=\"G1487\"* died|strong=\"G3588\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"* from|strong=\"G3588\"* the|strong=\"G1722\"* elemental|strong=\"G4747\"* spirits|strong=\"G2889\"* of|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, why|strong=\"G5101\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* living|strong=\"G2198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, do|strong=\"G5101\"* you|strong=\"G1487\"* subject yourselves|strong=\"G1722\"* to|strong=\"G1722\"* ordinances|strong=\"G1379\"*," + }, + { + "verseNum": 21, + "text": "“Don’t handle|strong=\"G2345\"*, nor|strong=\"G3366\"* taste|strong=\"G1089\"*, nor|strong=\"G3366\"* touch|strong=\"G2345\"*”" + }, + { + "verseNum": 22, + "text": "(all|strong=\"G3956\"* of|strong=\"G2532\"* which|strong=\"G3739\"* perish|strong=\"G5356\"* with|strong=\"G2532\"* use|strong=\"G3588\"*), according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G2532\"* precepts|strong=\"G1778\"* and|strong=\"G2532\"* doctrines|strong=\"G1319\"* of|strong=\"G2532\"* men|strong=\"G3956\"*?" + }, + { + "verseNum": 23, + "text": "These|strong=\"G3588\"* things|strong=\"G3588\"* indeed|strong=\"G2532\"* appear|strong=\"G1510\"* like|strong=\"G4314\"* wisdom|strong=\"G4678\"* in|strong=\"G1722\"* self-imposed worship|strong=\"G1479\"*, humility|strong=\"G5012\"*, and|strong=\"G2532\"* severity to|strong=\"G4314\"* the|strong=\"G1722\"* body|strong=\"G4983\"*, but|strong=\"G2532\"* aren’t|strong=\"G3588\"* of|strong=\"G3056\"* any|strong=\"G5100\"* value|strong=\"G5092\"* against|strong=\"G4314\"* the|strong=\"G1722\"* indulgence|strong=\"G4140\"* of|strong=\"G3056\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* you|strong=\"G1487\"* were|strong=\"G1510\"* raised|strong=\"G4891\"* together|strong=\"G4891\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"*, seek|strong=\"G2212\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* above, where|strong=\"G3757\"* Christ|strong=\"G5547\"* is|strong=\"G1510\"*, seated|strong=\"G2521\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 2, + "text": "Set|strong=\"G5426\"* your|strong=\"G1909\"* mind|strong=\"G5426\"* on|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* above|strong=\"G1909\"*, not|strong=\"G3361\"* on|strong=\"G1909\"* the|strong=\"G1909\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G1909\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* died|strong=\"G3588\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* life|strong=\"G2222\"* is|strong=\"G3588\"* hidden|strong=\"G2928\"* with|strong=\"G1722\"* Christ|strong=\"G5547\"* in|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G3752\"* Christ|strong=\"G5547\"*, our|strong=\"G2532\"* life|strong=\"G2222\"*, is|strong=\"G3588\"* revealed|strong=\"G5319\"*, then|strong=\"G2532\"* you|strong=\"G5210\"* will|strong=\"G2532\"* also|strong=\"G2532\"* be|strong=\"G2532\"* revealed|strong=\"G5319\"* with|strong=\"G1722\"* him|strong=\"G3588\"* in|strong=\"G1722\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 5, + "text": "Put|strong=\"G2532\"* to|strong=\"G2532\"* death therefore|strong=\"G3767\"* your|strong=\"G2532\"* members|strong=\"G3196\"* which|strong=\"G3588\"* are|strong=\"G1510\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*: sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, uncleanness, depraved passion|strong=\"G3806\"*, evil|strong=\"G2556\"* desire|strong=\"G1939\"*, and|strong=\"G2532\"* covetousness|strong=\"G4124\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* idolatry|strong=\"G1495\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1223\"* these|strong=\"G3739\"* things|strong=\"G3588\"*’ sake|strong=\"G1223\"* the|strong=\"G1909\"* wrath|strong=\"G3709\"* of|strong=\"G5207\"* God|strong=\"G2316\"* comes|strong=\"G2064\"* on|strong=\"G1909\"* the|strong=\"G1909\"* children|strong=\"G5207\"* of|strong=\"G5207\"* disobedience." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* also|strong=\"G2532\"* once|strong=\"G4218\"* walked|strong=\"G4043\"* in|strong=\"G1722\"* those|strong=\"G3778\"*, when|strong=\"G3753\"* you|strong=\"G5210\"* lived|strong=\"G2198\"* in|strong=\"G1722\"* them|strong=\"G1722\"*," + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* now|strong=\"G1161\"* you|strong=\"G5210\"* must|strong=\"G3588\"* put|strong=\"G2532\"* them|strong=\"G3588\"* all|strong=\"G3956\"* away: anger|strong=\"G3709\"*, wrath|strong=\"G3709\"*, malice|strong=\"G2549\"*, slander, and|strong=\"G2532\"* shameful speaking out|strong=\"G1537\"* of|strong=\"G1537\"* your|strong=\"G2532\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* lie|strong=\"G5574\"* to|strong=\"G1519\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, seeing that|strong=\"G3588\"* you|strong=\"G3361\"* have|strong=\"G3588\"* put|strong=\"G3361\"* off the|strong=\"G1519\"* old|strong=\"G3820\"* man|strong=\"G3361\"* with|strong=\"G4862\"* his|strong=\"G1519\"* doings," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* have|strong=\"G2532\"* put|strong=\"G1746\"* on|strong=\"G1519\"* the|strong=\"G2532\"* new|strong=\"G3501\"* man|strong=\"G1519\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* being|strong=\"G2532\"* renewed in|strong=\"G1519\"* knowledge|strong=\"G1922\"* after|strong=\"G2596\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G2532\"* his|strong=\"G1519\"* Creator|strong=\"G2936\"*," + }, + { + "verseNum": 11, + "text": "where|strong=\"G3699\"* there|strong=\"G2532\"* can’t|strong=\"G3588\"* be|strong=\"G2532\"* Greek|strong=\"G1672\"* and|strong=\"G2532\"* Jew|strong=\"G2453\"*, circumcision|strong=\"G4061\"* and|strong=\"G2532\"* uncircumcision, barbarian, Scythian|strong=\"G4658\"*, bondservant, or|strong=\"G2532\"* free|strong=\"G1658\"* person; but|strong=\"G2532\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Put|strong=\"G1746\"* on|strong=\"G1746\"* therefore|strong=\"G3767\"*, as|strong=\"G5613\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones, holy and|strong=\"G2532\"* beloved, a|strong=\"G5613\"* heart|strong=\"G4698\"* of|strong=\"G2316\"* compassion|strong=\"G3628\"*, kindness|strong=\"G5544\"*, lowliness|strong=\"G5012\"*, humility|strong=\"G5012\"*, and|strong=\"G2532\"* perseverance|strong=\"G3115\"*;" + }, + { + "verseNum": 13, + "text": "bearing|strong=\"G2192\"* with|strong=\"G4314\"* one|strong=\"G5100\"* another|strong=\"G1438\"*, and|strong=\"G2532\"* forgiving|strong=\"G5483\"* each|strong=\"G1438\"* other|strong=\"G5100\"*, if|strong=\"G1437\"* any|strong=\"G5100\"* man|strong=\"G5100\"* has|strong=\"G2192\"* a|strong=\"G2192\"* complaint|strong=\"G3437\"* against|strong=\"G4314\"* any|strong=\"G5100\"*; even|strong=\"G2532\"* as|strong=\"G2531\"* Christ|strong=\"G5547\"* forgave|strong=\"G5483\"* you|strong=\"G5210\"*, so|strong=\"G3779\"* you|strong=\"G5210\"* also|strong=\"G2532\"* do|strong=\"G2532\"*." + }, + { + "verseNum": 14, + "text": "Above|strong=\"G1909\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, walk in|strong=\"G1909\"* love, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G3956\"* bond|strong=\"G4886\"* of|strong=\"G1909\"* perfection|strong=\"G5047\"*." + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* let|strong=\"G1096\"* the|strong=\"G1722\"* peace|strong=\"G1515\"* of|strong=\"G2532\"* God|strong=\"G2532\"* rule|strong=\"G1018\"* in|strong=\"G1722\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*, to|strong=\"G1519\"* which|strong=\"G3739\"* also|strong=\"G2532\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1722\"* one|strong=\"G1520\"* body|strong=\"G4983\"*, and|strong=\"G2532\"* be|strong=\"G1096\"* thankful|strong=\"G2170\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G1774\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* dwell|strong=\"G1774\"* in|strong=\"G1722\"* you|strong=\"G5210\"* richly|strong=\"G4146\"*; in|strong=\"G1722\"* all|strong=\"G3956\"* wisdom|strong=\"G4678\"* teaching|strong=\"G1321\"* and|strong=\"G2532\"* admonishing|strong=\"G3560\"* one|strong=\"G3956\"* another|strong=\"G1438\"* with|strong=\"G1722\"* psalms|strong=\"G5568\"*, hymns|strong=\"G5215\"*, and|strong=\"G2532\"* spiritual|strong=\"G4152\"* songs|strong=\"G5603\"*, singing with|strong=\"G1722\"* grace|strong=\"G5485\"* in|strong=\"G1722\"* your|strong=\"G2532\"* heart|strong=\"G2588\"* to|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Whatever|strong=\"G3739\"* you|strong=\"G3739\"* do|strong=\"G4160\"*, in|strong=\"G1722\"* word|strong=\"G3056\"* or|strong=\"G2228\"* in|strong=\"G1722\"* deed|strong=\"G2041\"*, do|strong=\"G4160\"* all|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, giving|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Wives|strong=\"G1135\"*, be|strong=\"G3588\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G1722\"* your|strong=\"G2962\"* husbands, as|strong=\"G5613\"* is|strong=\"G3588\"* fitting in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 19, + "text": "Husbands, love your|strong=\"G2532\"* wives|strong=\"G1135\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* be|strong=\"G2532\"* bitter|strong=\"G4087\"* against|strong=\"G4314\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "Children|strong=\"G5043\"*, obey|strong=\"G5219\"* your|strong=\"G2962\"* parents|strong=\"G1118\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* pleases the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Fathers|strong=\"G3962\"*, don’t|strong=\"G3588\"* provoke|strong=\"G2042\"* your|strong=\"G3588\"* children|strong=\"G5043\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G3588\"* won’t|strong=\"G3588\"* be|strong=\"G3361\"* discouraged." + }, + { + "verseNum": 22, + "text": "Servants|strong=\"G1401\"*, obey|strong=\"G5219\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* your|strong=\"G2962\"* masters|strong=\"G2962\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, not|strong=\"G3361\"* just|strong=\"G5613\"* when|strong=\"G5613\"* they|strong=\"G3588\"* are|strong=\"G3588\"* looking, as|strong=\"G5613\"* men|strong=\"G3956\"* pleasers, but|strong=\"G3361\"* in|strong=\"G1722\"* singleness of|strong=\"G2962\"* heart|strong=\"G2588\"*, fearing|strong=\"G5399\"* God|strong=\"G3361\"*." + }, + { + "verseNum": 23, + "text": "And|strong=\"G2532\"* whatever|strong=\"G3739\"* you|strong=\"G3739\"* do|strong=\"G4160\"*, work|strong=\"G2038\"* heartily|strong=\"G5590\"*, as|strong=\"G5613\"* for|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G2532\"* men|strong=\"G3588\"*," + }, + { + "verseNum": 24, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* from|strong=\"G3588\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* you|strong=\"G3754\"* will|strong=\"G2962\"* receive the|strong=\"G3588\"* reward of|strong=\"G2962\"* the|strong=\"G3588\"* inheritance|strong=\"G2817\"*; for|strong=\"G3754\"* you|strong=\"G3754\"* serve|strong=\"G1398\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* does|strong=\"G1510\"* wrong|strong=\"G2865\"* will|strong=\"G1510\"* receive|strong=\"G2865\"* again|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* wrong|strong=\"G2865\"* that|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* done, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* partiality|strong=\"G4382\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Masters|strong=\"G2962\"*, give|strong=\"G3930\"* to|strong=\"G2532\"* your|strong=\"G2192\"* servants|strong=\"G1401\"* that|strong=\"G3754\"* which|strong=\"G3588\"* is|strong=\"G3588\"* just|strong=\"G1342\"* and|strong=\"G2532\"* equal|strong=\"G2471\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* also|strong=\"G2532\"* have|strong=\"G2192\"* a|strong=\"G2192\"* Master|strong=\"G2962\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 2, + "text": "Continue|strong=\"G4342\"* steadfastly in|strong=\"G1722\"* prayer|strong=\"G4335\"*, watching|strong=\"G1127\"* in|strong=\"G1722\"* it|strong=\"G3588\"* with|strong=\"G1722\"* thanksgiving|strong=\"G2169\"*," + }, + { + "verseNum": 3, + "text": "praying|strong=\"G4336\"* together|strong=\"G2532\"* for|strong=\"G1223\"* us|strong=\"G2249\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* God|strong=\"G2316\"* may|strong=\"G2532\"* open to|strong=\"G2443\"* us|strong=\"G2249\"* a|strong=\"G2532\"* door|strong=\"G2374\"* for|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, to|strong=\"G2443\"* speak|strong=\"G2980\"* the|strong=\"G2532\"* mystery|strong=\"G3466\"* of|strong=\"G4012\"* Christ|strong=\"G5547\"*, for|strong=\"G1223\"* which|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1473\"* also|strong=\"G2532\"* in|strong=\"G2532\"* bonds|strong=\"G1210\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* I|strong=\"G1473\"* may|strong=\"G2443\"* reveal|strong=\"G5319\"* it|strong=\"G5613\"* as|strong=\"G5613\"* I|strong=\"G1473\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* speak|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "Walk|strong=\"G4043\"* in|strong=\"G1722\"* wisdom|strong=\"G4678\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, redeeming|strong=\"G1805\"* the|strong=\"G1722\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 6, + "text": "Let your|strong=\"G1722\"* speech|strong=\"G3056\"* always|strong=\"G3842\"* be|strong=\"G1163\"* with|strong=\"G1722\"* grace|strong=\"G5485\"*, seasoned with|strong=\"G1722\"* salt, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G5485\"* know|strong=\"G1492\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1722\"* answer|strong=\"G3056\"* each|strong=\"G1538\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"G3956\"* my|strong=\"G1722\"* affairs|strong=\"G3588\"* will|strong=\"G2532\"* be|strong=\"G2532\"* made|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* by|strong=\"G1722\"* Tychicus|strong=\"G5190\"*, the|strong=\"G1722\"* beloved brother, faithful|strong=\"G4103\"* servant|strong=\"G1249\"*, and|strong=\"G2532\"* fellow|strong=\"G4889\"* bondservant in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"G1473\"* am|strong=\"G1473\"* sending|strong=\"G3992\"* him|strong=\"G3588\"* to|strong=\"G1519\"* you|strong=\"G5210\"* for|strong=\"G1519\"* this|strong=\"G3778\"* very|strong=\"G2532\"* purpose|strong=\"G3739\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* know|strong=\"G1097\"* your|strong=\"G2532\"* circumstances|strong=\"G3588\"* and|strong=\"G2532\"* comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 9, + "text": "together|strong=\"G4862\"* with|strong=\"G4862\"* Onesimus|strong=\"G3682\"*, the|strong=\"G2532\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* beloved brother, who|strong=\"G3739\"* is|strong=\"G1510\"* one|strong=\"G3739\"* of|strong=\"G1537\"* you|strong=\"G5210\"*. They|strong=\"G2532\"* will|strong=\"G1510\"* make|strong=\"G1107\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* everything|strong=\"G3956\"* that|strong=\"G3739\"* is|strong=\"G1510\"* going|strong=\"G2532\"* on|strong=\"G1537\"* here|strong=\"G5602\"*." + }, + { + "verseNum": 10, + "text": "Aristarchus, my|strong=\"G1473\"* fellow|strong=\"G4869\"* prisoner|strong=\"G4869\"*, greets you|strong=\"G5210\"*, and|strong=\"G2532\"* Mark|strong=\"G3138\"* the|strong=\"G2532\"* cousin of|strong=\"G4012\"* Barnabas (concerning|strong=\"G4012\"* whom|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G2983\"* instructions|strong=\"G1785\"*, “if|strong=\"G1437\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, receive|strong=\"G2983\"* him|strong=\"G3588\"*”)," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* is|strong=\"G1510\"* called|strong=\"G3004\"* Justus|strong=\"G2459\"*. These|strong=\"G3778\"* are|strong=\"G1510\"* my|strong=\"G1473\"* only|strong=\"G3441\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* for|strong=\"G1519\"* God|strong=\"G2316\"*’s Kingdom who|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*, men|strong=\"G3778\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* a|strong=\"G1096\"* comfort|strong=\"G3931\"* to|strong=\"G1519\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "Epaphras|strong=\"G1889\"*, who|strong=\"G3588\"* is|strong=\"G3588\"* one|strong=\"G3956\"* of|strong=\"G1537\"* you|strong=\"G5210\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G1537\"* Christ|strong=\"G5547\"*, salutes you|strong=\"G5210\"*, always|strong=\"G3842\"* striving for|strong=\"G5228\"* you|strong=\"G5210\"* in|strong=\"G1722\"* his|strong=\"G3956\"* prayers|strong=\"G4335\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* stand|strong=\"G2476\"* perfect|strong=\"G5046\"* and|strong=\"G2532\"* complete|strong=\"G3956\"* in|strong=\"G1722\"* all|strong=\"G3956\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* testify|strong=\"G3140\"* about|strong=\"G1722\"* him|strong=\"G3588\"* that|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G2192\"* great|strong=\"G4183\"* zeal for|strong=\"G1063\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, and|strong=\"G2532\"* for|strong=\"G1063\"* those|strong=\"G3588\"* in|strong=\"G1722\"* Hierapolis|strong=\"G2404\"*." + }, + { + "verseNum": 14, + "text": "Luke|strong=\"G3065\"* the|strong=\"G2532\"* beloved physician|strong=\"G2395\"* and|strong=\"G2532\"* Demas|strong=\"G1214\"* greet you|strong=\"G5210\"*." + }, + { + "verseNum": 15, + "text": "Greet the|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* Laodicea|strong=\"G2993\"*, with|strong=\"G1722\"* Nymphas|strong=\"G3564\"* and|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* his|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"G3752\"* this|strong=\"G3588\"* letter|strong=\"G1992\"* has|strong=\"G2532\"* been|strong=\"G2532\"* read among|strong=\"G1722\"* you|strong=\"G5210\"*, cause|strong=\"G4160\"* it|strong=\"G2532\"* to|strong=\"G2443\"* be|strong=\"G2532\"* read also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Laodiceans|strong=\"G2994\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* read the|strong=\"G1722\"* letter|strong=\"G1992\"* from|strong=\"G1537\"* Laodicea|strong=\"G2993\"*." + }, + { + "verseNum": 17, + "text": "Tell|strong=\"G3004\"* Archippus, “Take|strong=\"G3880\"* heed to|strong=\"G2443\"* the|strong=\"G1722\"* ministry|strong=\"G1248\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* received|strong=\"G3880\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G2443\"* you|strong=\"G3739\"* fulfill|strong=\"G4137\"* it|strong=\"G2532\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, write this|strong=\"G3588\"* greeting with|strong=\"G3326\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*. Remember|strong=\"G3421\"* my|strong=\"G1699\"* chains|strong=\"G1199\"*. Grace|strong=\"G5485\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 Thessalonians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Thessalonians|strong=\"G2331\"* in|strong=\"G1722\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:+ 1:1 “Christ” means “Anointed One”.* Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 2, + "text": "We|strong=\"G2249\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G4012\"* all|strong=\"G3956\"* of|strong=\"G4012\"* you|strong=\"G5210\"*, mentioning you|strong=\"G5210\"* in|strong=\"G1909\"* our|strong=\"G2316\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 3, + "text": "remembering|strong=\"G3421\"* without|strong=\"G2532\"* ceasing your|strong=\"G2962\"* work|strong=\"G2041\"* of|strong=\"G2316\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* labor|strong=\"G2873\"* of|strong=\"G2316\"* love and|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* hope|strong=\"G1680\"* in|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"G1492\"* know|strong=\"G1492\"*, brothers+ 1:4 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * loved by|strong=\"G5259\"* God|strong=\"G2316\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* chosen|strong=\"G1589\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* that|strong=\"G3754\"* our|strong=\"G2532\"* Good|strong=\"G1223\"* News|strong=\"G3056\"* came|strong=\"G1096\"* to|strong=\"G1519\"* you|strong=\"G5210\"* not|strong=\"G3756\"* in|strong=\"G1722\"* word|strong=\"G3056\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* with|strong=\"G1722\"* much|strong=\"G4183\"* assurance|strong=\"G4136\"*. You|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G3588\"* kind|strong=\"G3634\"* of|strong=\"G3056\"* men|strong=\"G3588\"* we|strong=\"G2249\"* showed ourselves|strong=\"G2249\"* to|strong=\"G1519\"* be|strong=\"G1096\"* among|strong=\"G1722\"* you|strong=\"G5210\"* for|strong=\"G3754\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"G5210\"* became|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G3056\"* us|strong=\"G2249\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, having|strong=\"G2532\"* received|strong=\"G1209\"* the|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* much|strong=\"G4183\"* affliction|strong=\"G2347\"*, with|strong=\"G3326\"* joy|strong=\"G5479\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 7, + "text": "so|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* became|strong=\"G1096\"* an|strong=\"G2532\"* example|strong=\"G5179\"* to|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* in|strong=\"G1722\"* Achaia." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* from|strong=\"G2532\"* you|strong=\"G5210\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* has|strong=\"G2192\"* been|strong=\"G2192\"* declared|strong=\"G2980\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* in|strong=\"G1722\"* Macedonia|strong=\"G3109\"* and|strong=\"G2532\"* Achaia, but|strong=\"G2532\"* also|strong=\"G2532\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* toward|strong=\"G4314\"* God|strong=\"G2316\"* has|strong=\"G2192\"* gone|strong=\"G1831\"* out|strong=\"G1831\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* we|strong=\"G2249\"* need|strong=\"G5532\"* not|strong=\"G3756\"* to|strong=\"G4314\"* say|strong=\"G2980\"* anything|strong=\"G5100\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* themselves report concerning|strong=\"G4012\"* us|strong=\"G2249\"* what|strong=\"G3588\"* kind|strong=\"G3697\"* of|strong=\"G4012\"* a|strong=\"G2192\"* reception|strong=\"G1529\"* we|strong=\"G2249\"* had|strong=\"G2192\"* from|strong=\"G2532\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* how|strong=\"G4459\"* you|strong=\"G5210\"* turned|strong=\"G1994\"* to|strong=\"G4314\"* God|strong=\"G2316\"* from|strong=\"G2532\"* idols|strong=\"G1497\"* to|strong=\"G4314\"* serve|strong=\"G1398\"* a|strong=\"G2192\"* living|strong=\"G2198\"* and|strong=\"G2532\"* true|strong=\"G3588\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* wait for|strong=\"G2532\"* his|strong=\"G2532\"* Son|strong=\"G5207\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* raised|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*: Jesus|strong=\"G2424\"*, who|strong=\"G3739\"* delivers us|strong=\"G2249\"* from|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* to|strong=\"G2532\"* come|strong=\"G2064\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* know|strong=\"G1492\"*, brothers, our|strong=\"G4314\"* visit to|strong=\"G4314\"* you|strong=\"G5210\"* wasn’t|strong=\"G3588\"* in|strong=\"G1096\"* vain|strong=\"G2756\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"G2532\"* having|strong=\"G2532\"* suffered|strong=\"G4310\"* before|strong=\"G4314\"* and|strong=\"G2532\"* been|strong=\"G2532\"* shamefully treated, as|strong=\"G2531\"* you|strong=\"G5210\"* know|strong=\"G1492\"*, at|strong=\"G1722\"* Philippi|strong=\"G5375\"*, we|strong=\"G2249\"* grew bold|strong=\"G3955\"* in|strong=\"G1722\"* our|strong=\"G2316\"* God|strong=\"G2316\"* to|strong=\"G4314\"* tell|strong=\"G1492\"* you|strong=\"G5210\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* much|strong=\"G4183\"* conflict." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* our|strong=\"G1722\"* exhortation|strong=\"G3874\"* is|strong=\"G3588\"* not|strong=\"G3756\"* of|strong=\"G1537\"* error|strong=\"G4106\"*, nor|strong=\"G3761\"* of|strong=\"G1537\"* uncleanness, nor|strong=\"G3761\"* in|strong=\"G1722\"* deception|strong=\"G4106\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G2316\"* even|strong=\"G2531\"* as|strong=\"G5613\"* we|strong=\"G2249\"* have|strong=\"G1473\"* been|strong=\"G3756\"* approved|strong=\"G1381\"* by|strong=\"G5259\"* God|strong=\"G2316\"* to|strong=\"G3756\"* be|strong=\"G3756\"* entrusted|strong=\"G4100\"* with|strong=\"G2980\"* the|strong=\"G3588\"* Good|strong=\"G3756\"* News|strong=\"G2098\"*, so|strong=\"G3779\"* we|strong=\"G2249\"* speak|strong=\"G2980\"*—not|strong=\"G3756\"* as|strong=\"G5613\"* pleasing men|strong=\"G3588\"*, but|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* tests our|strong=\"G2316\"* hearts|strong=\"G2588\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* neither|strong=\"G3777\"* were|strong=\"G1096\"* we|strong=\"G1063\"* at|strong=\"G1722\"* any|strong=\"G1492\"* time|strong=\"G4218\"* found|strong=\"G1096\"* using words|strong=\"G3056\"* of|strong=\"G3056\"* flattery, as|strong=\"G2531\"* you|strong=\"G1722\"* know|strong=\"G1492\"*, nor|strong=\"G3777\"* a|strong=\"G1096\"* cloak of|strong=\"G3056\"* covetousness|strong=\"G4124\"* (God|strong=\"G2316\"* is|strong=\"G2316\"* witness|strong=\"G3144\"*)," + }, + { + "verseNum": 6, + "text": "nor|strong=\"G3777\"* seeking|strong=\"G2212\"* glory|strong=\"G1391\"* from|strong=\"G1537\"* men|strong=\"G1722\"* (neither|strong=\"G3777\"* from|strong=\"G1537\"* you|strong=\"G5210\"* nor|strong=\"G3777\"* from|strong=\"G1537\"* others), when|strong=\"G5613\"* we|strong=\"G5613\"* might|strong=\"G1410\"* have|strong=\"G1510\"* claimed authority|strong=\"G2212\"* as|strong=\"G5613\"* apostles of|strong=\"G1537\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1437\"* we|strong=\"G1437\"* were|strong=\"G1510\"* gentle|strong=\"G2261\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, like|strong=\"G5613\"* a|strong=\"G1096\"* nursing|strong=\"G5162\"* mother cherishes|strong=\"G2282\"* her|strong=\"G1437\"* own|strong=\"G1438\"* children|strong=\"G5043\"*." + }, + { + "verseNum": 8, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"*, affectionately longing for|strong=\"G1360\"* you|strong=\"G5210\"*, we|strong=\"G2249\"* were|strong=\"G3588\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"* to|strong=\"G2532\"* impart|strong=\"G3330\"* to|strong=\"G2532\"* you|strong=\"G5210\"* not|strong=\"G3756\"* the|strong=\"G2532\"* Good|strong=\"G2106\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* our|strong=\"G2316\"* own|strong=\"G1438\"* souls|strong=\"G5590\"*, because|strong=\"G1360\"* you|strong=\"G5210\"* had|strong=\"G2532\"* become|strong=\"G1096\"* very|strong=\"G2532\"* dear to|strong=\"G2532\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* remember|strong=\"G3421\"*, brothers, our|strong=\"G2316\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"*; for|strong=\"G1063\"* working|strong=\"G2038\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, that|strong=\"G3588\"* we|strong=\"G2249\"* might|strong=\"G2532\"* not|strong=\"G3361\"* burden|strong=\"G1912\"* any|strong=\"G5100\"* of|strong=\"G2250\"* you|strong=\"G5210\"*, we|strong=\"G2249\"* preached|strong=\"G2784\"* to|strong=\"G1519\"* you|strong=\"G5210\"* the|strong=\"G2532\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2250\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"G5210\"* are|strong=\"G3588\"* witnesses|strong=\"G3144\"* with|strong=\"G2532\"* God|strong=\"G2316\"* how|strong=\"G5613\"* holy, righteously|strong=\"G1346\"*, and|strong=\"G2532\"* blamelessly we|strong=\"G2532\"* behaved|strong=\"G1096\"* ourselves|strong=\"G1096\"* toward you|strong=\"G5210\"* who|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"G5613\"* you|strong=\"G5210\"* know|strong=\"G1492\"*, we|strong=\"G2532\"* exhorted|strong=\"G3870\"*, comforted|strong=\"G3870\"*, and|strong=\"G2532\"* implored|strong=\"G3870\"* every|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G2532\"* you|strong=\"G5210\"*, as|strong=\"G5613\"* a|strong=\"G5613\"* father|strong=\"G3962\"* does|strong=\"G1492\"* his|strong=\"G1438\"* own|strong=\"G1438\"* children|strong=\"G5043\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G2316\"* walk|strong=\"G4043\"* worthily of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* calls|strong=\"G2564\"* you|strong=\"G5210\"* into|strong=\"G1519\"* his|strong=\"G1438\"* own|strong=\"G1438\"* Kingdom and|strong=\"G2532\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* we|strong=\"G2249\"* also|strong=\"G2532\"* thank|strong=\"G2168\"* God|strong=\"G2316\"* without|strong=\"G2532\"* ceasing that|strong=\"G3754\"* when|strong=\"G2532\"* you|strong=\"G5210\"* received|strong=\"G1209\"* from|strong=\"G3844\"* us|strong=\"G2249\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* message|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, you|strong=\"G5210\"* accepted|strong=\"G1209\"* it|strong=\"G2532\"* not|strong=\"G3756\"* as|strong=\"G2531\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* men|strong=\"G3778\"*, but|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* truth, God|strong=\"G2316\"*’s word|strong=\"G3056\"*, which|strong=\"G3739\"* also|strong=\"G2532\"* works|strong=\"G1754\"* in|strong=\"G1722\"* you|strong=\"G5210\"* who|strong=\"G3739\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"*, brothers, became|strong=\"G1096\"* imitators|strong=\"G3402\"* of|strong=\"G5259\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G5259\"* God|strong=\"G2316\"* which|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Judea|strong=\"G2453\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*; for|strong=\"G1063\"* you|strong=\"G5210\"* also|strong=\"G2532\"* suffered|strong=\"G3958\"* the|strong=\"G1722\"* same|strong=\"G2532\"* things|strong=\"G3588\"* from|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G2398\"* countrymen|strong=\"G4853\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* they|strong=\"G2532\"* did|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G1722\"* Jews|strong=\"G2453\"*" + }, + { + "verseNum": 15, + "text": "who|strong=\"G3588\"* killed both|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* their|strong=\"G2532\"* own prophets|strong=\"G4396\"*, and|strong=\"G2532\"* drove|strong=\"G1559\"* us|strong=\"G2249\"* out|strong=\"G2532\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* please God|strong=\"G2316\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* contrary|strong=\"G1727\"* to|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 16, + "text": "forbidding|strong=\"G2967\"* us|strong=\"G1519\"* to|strong=\"G1519\"* speak|strong=\"G2980\"* to|strong=\"G1519\"* the|strong=\"G1519\"* Gentiles|strong=\"G1484\"* that|strong=\"G2443\"* they|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G1519\"* saved|strong=\"G4982\"*, to|strong=\"G1519\"* fill|strong=\"G1519\"* up|strong=\"G1519\"* their|strong=\"G1438\"* sins always|strong=\"G3842\"*. But|strong=\"G1161\"* wrath|strong=\"G3709\"* has|strong=\"G3709\"* come|strong=\"G5348\"* on|strong=\"G1909\"* them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G1519\"* uttermost|strong=\"G5056\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"*, brothers, being|strong=\"G1722\"* bereaved of|strong=\"G1722\"* you|strong=\"G5210\"* for|strong=\"G4314\"* a|strong=\"G1722\"* short|strong=\"G3588\"* season|strong=\"G2540\"* in|strong=\"G1722\"* presence|strong=\"G4383\"*, not|strong=\"G3756\"* in|strong=\"G1722\"* heart|strong=\"G2588\"*, tried even|strong=\"G1161\"* harder to|strong=\"G4314\"* see|strong=\"G3708\"* your|strong=\"G3708\"* face|strong=\"G4383\"* with|strong=\"G1722\"* great|strong=\"G4183\"* desire|strong=\"G1939\"*," + }, + { + "verseNum": 18, + "text": "because|strong=\"G1360\"* we|strong=\"G2249\"* wanted|strong=\"G2309\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G5210\"*—indeed|strong=\"G2532\"*, I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, once and|strong=\"G2532\"* again|strong=\"G1364\"*—but|strong=\"G2532\"* Satan|strong=\"G4567\"* hindered|strong=\"G1465\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* is|strong=\"G3588\"* our|strong=\"G2424\"* hope|strong=\"G1680\"*, or|strong=\"G2228\"* joy|strong=\"G5479\"*, or|strong=\"G2228\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* rejoicing|strong=\"G2746\"*? Isn’t|strong=\"G3588\"* it|strong=\"G2532\"* even|strong=\"G2532\"* you|strong=\"G5210\"*, before|strong=\"G1715\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*+ 2:19 TR adds “Christ”* at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*?" + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* our|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* our|strong=\"G2532\"* joy|strong=\"G5479\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* when|strong=\"G1722\"* we|strong=\"G1352\"* couldn’t stand it|strong=\"G2106\"* any|strong=\"G1722\"* longer|strong=\"G3371\"*, we|strong=\"G1352\"* thought|strong=\"G2106\"* it|strong=\"G2106\"* good|strong=\"G2106\"* to|strong=\"G1722\"* be|strong=\"G3371\"* left|strong=\"G2641\"* behind|strong=\"G2641\"* at|strong=\"G1722\"* Athens alone|strong=\"G3441\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* sent|strong=\"G3992\"* Timothy|strong=\"G5095\"*, our|strong=\"G2316\"* brother and|strong=\"G2532\"* God|strong=\"G2316\"*’s servant|strong=\"G1249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G1519\"* comfort|strong=\"G3870\"* you|strong=\"G5210\"* concerning|strong=\"G1519\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"G3754\"* no|strong=\"G3367\"* one|strong=\"G3367\"* would|strong=\"G1722\"* be|strong=\"G1519\"* moved|strong=\"G4525\"* by|strong=\"G1722\"* these|strong=\"G3778\"* afflictions|strong=\"G2347\"*. For|strong=\"G1063\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G3588\"* appointed|strong=\"G2749\"* to|strong=\"G1519\"* this|strong=\"G3778\"* task." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G3195\"*, when|strong=\"G3753\"* we|strong=\"G3754\"* were|strong=\"G1510\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, we|strong=\"G3754\"* told|strong=\"G4314\"* you|strong=\"G5210\"* beforehand that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* to|strong=\"G4314\"* suffer|strong=\"G2532\"* affliction|strong=\"G2346\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* happened|strong=\"G1096\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* know|strong=\"G1492\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* also|strong=\"G2532\"*, when|strong=\"G2532\"* I|strong=\"G1473\"* couldn’t|strong=\"G3588\"* stand|strong=\"G5210\"* it|strong=\"G2532\"* any|strong=\"G3361\"* longer|strong=\"G3371\"*, sent|strong=\"G3992\"* that|strong=\"G3588\"* I|strong=\"G1473\"* might|strong=\"G2532\"* know|strong=\"G1097\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*, for|strong=\"G1519\"* fear|strong=\"G3381\"* that|strong=\"G3588\"* by|strong=\"G1223\"* any|strong=\"G3361\"* means|strong=\"G3381\"* the|strong=\"G2532\"* tempter|strong=\"G3985\"* had|strong=\"G2532\"* tempted|strong=\"G3985\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* our|strong=\"G2532\"* labor|strong=\"G2873\"* would|strong=\"G1096\"* have|strong=\"G2532\"* been|strong=\"G1096\"* in|strong=\"G1519\"* vain|strong=\"G2756\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* Timothy|strong=\"G5095\"* has|strong=\"G2192\"* just|strong=\"G2509\"* now|strong=\"G1161\"* come|strong=\"G2064\"* to|strong=\"G4314\"* us|strong=\"G2097\"* from|strong=\"G2064\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* brought|strong=\"G2064\"* us|strong=\"G2097\"* glad news|strong=\"G2097\"* of|strong=\"G2532\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love, and|strong=\"G2532\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* good|strong=\"G2097\"* memories of|strong=\"G2532\"* us|strong=\"G2097\"* always|strong=\"G3842\"*, longing|strong=\"G1971\"* to|strong=\"G4314\"* see|strong=\"G3708\"* us|strong=\"G2097\"*, even|strong=\"G2532\"* as|strong=\"G1161\"* we|strong=\"G2249\"* also|strong=\"G2532\"* long|strong=\"G1971\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, brothers, we|strong=\"G2249\"* were|strong=\"G3588\"* comforted|strong=\"G3870\"* over|strong=\"G1909\"* you|strong=\"G5210\"* in|strong=\"G1909\"* all|strong=\"G3956\"* our|strong=\"G2532\"* distress|strong=\"G2347\"* and|strong=\"G2532\"* affliction|strong=\"G2347\"* through|strong=\"G1223\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G3754\"* now|strong=\"G3568\"* we|strong=\"G1437\"* live|strong=\"G2198\"*, if|strong=\"G1437\"* you|strong=\"G5210\"* stand|strong=\"G4739\"* fast|strong=\"G4739\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* what|strong=\"G5101\"* thanksgiving|strong=\"G2169\"* can|strong=\"G1410\"* we|strong=\"G2249\"* give|strong=\"G1473\"* again to|strong=\"G1909\"* God|strong=\"G2316\"* for|strong=\"G1063\"* you|strong=\"G5210\"*, for|strong=\"G1063\"* all|strong=\"G3956\"* the|strong=\"G3956\"* joy|strong=\"G5479\"* with|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G2249\"* rejoice|strong=\"G5463\"* for|strong=\"G1063\"* your|strong=\"G1223\"* sakes|strong=\"G1223\"* before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 10, + "text": "night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"* praying|strong=\"G1189\"* exceedingly that|strong=\"G3588\"* we|strong=\"G2532\"* may|strong=\"G2532\"* see|strong=\"G3708\"* your|strong=\"G2532\"* face|strong=\"G4383\"* and|strong=\"G2532\"* may|strong=\"G2532\"* perfect|strong=\"G2675\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* lacking|strong=\"G5303\"* in|strong=\"G1519\"* your|strong=\"G2532\"* faith|strong=\"G4102\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"G1161\"* may|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* himself, and|strong=\"G2532\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"*, direct|strong=\"G2720\"* our|strong=\"G2316\"* way|strong=\"G3598\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* make|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* increase|strong=\"G4121\"* and|strong=\"G2532\"* abound|strong=\"G4052\"* in|strong=\"G1519\"* love toward|strong=\"G1519\"* one|strong=\"G3956\"* another|strong=\"G3588\"* and|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, even|strong=\"G2532\"* as|strong=\"G1519\"* we|strong=\"G2249\"* also|strong=\"G2532\"* do|strong=\"G2532\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* he|strong=\"G2532\"* may|strong=\"G2532\"* establish|strong=\"G4741\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"* blameless in|strong=\"G1722\"* holiness before|strong=\"G1715\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* at|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* with|strong=\"G3326\"* all|strong=\"G3956\"* his|strong=\"G3956\"* saints." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"* then|strong=\"G3767\"*, brothers, we|strong=\"G2249\"* beg|strong=\"G3870\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*, that|strong=\"G2443\"* as|strong=\"G2531\"* you|strong=\"G5210\"* received|strong=\"G3880\"* from|strong=\"G3844\"* us|strong=\"G2249\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* walk|strong=\"G4043\"* and|strong=\"G2532\"* to|strong=\"G2443\"* please|strong=\"G2065\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1492\"* what|strong=\"G5101\"* instructions we|strong=\"G1063\"* gave|strong=\"G1325\"* you|strong=\"G5210\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*: your|strong=\"G3588\"* sanctification, that|strong=\"G3588\"* you|strong=\"G5210\"* abstain from|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G3588\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G2532\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G2532\"* control his|strong=\"G1438\"* own|strong=\"G1438\"* body|strong=\"G4632\"*+ 4:4 literally, possess his own vessel* in|strong=\"G1722\"* sanctification and|strong=\"G2532\"* honor|strong=\"G5092\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3361\"* in|strong=\"G1722\"* the|strong=\"G1722\"* passion|strong=\"G3806\"* of|strong=\"G2316\"* lust|strong=\"G1939\"*, even|strong=\"G2532\"* as|strong=\"G1722\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* no|strong=\"G3361\"* one|strong=\"G3956\"* should|strong=\"G3588\"* take|strong=\"G2532\"* advantage|strong=\"G4122\"* of|strong=\"G4012\"* and|strong=\"G2532\"* wrong a|strong=\"G2532\"* brother or|strong=\"G2532\"* sister in|strong=\"G1722\"* this|strong=\"G3778\"* matter|strong=\"G4229\"*; because|strong=\"G1360\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* an|strong=\"G2532\"* avenger|strong=\"G1558\"* in|strong=\"G1722\"* all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"*, as|strong=\"G2531\"* also|strong=\"G2532\"* we|strong=\"G2532\"* forewarned you|strong=\"G5210\"* and|strong=\"G2532\"* testified|strong=\"G1263\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* called|strong=\"G2564\"* us|strong=\"G2249\"* not|strong=\"G3756\"* for|strong=\"G1063\"* uncleanness, but|strong=\"G1063\"* in|strong=\"G1722\"* sanctification." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G5105\"* he|strong=\"G2532\"* who|strong=\"G3588\"* rejects this|strong=\"G3588\"* doesn’t|strong=\"G3588\"* reject man|strong=\"G3756\"*, but|strong=\"G2532\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* has|strong=\"G2316\"* also|strong=\"G2532\"* given|strong=\"G1325\"* his|strong=\"G1519\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* to|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* brotherly|strong=\"G5360\"* love|strong=\"G5360\"*, you|strong=\"G5210\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* that|strong=\"G3588\"* one|strong=\"G3588\"* write|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"*. For|strong=\"G1063\"* you|strong=\"G5210\"* yourselves|strong=\"G4771\"* are|strong=\"G1510\"* taught|strong=\"G2312\"* by|strong=\"G1519\"* God|strong=\"G2312\"* to|strong=\"G1519\"* love|strong=\"G5360\"* one|strong=\"G3588\"* another|strong=\"G3588\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* indeed|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* it|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* brothers who|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* all|strong=\"G3956\"* Macedonia|strong=\"G3109\"*. But|strong=\"G1161\"* we|strong=\"G1063\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, that|strong=\"G3588\"* you|strong=\"G5210\"* abound|strong=\"G4052\"* more|strong=\"G3123\"* and|strong=\"G2532\"* more|strong=\"G3123\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* that|strong=\"G3588\"* you|strong=\"G5210\"* make|strong=\"G2532\"* it|strong=\"G2532\"* your|strong=\"G2532\"* ambition|strong=\"G5389\"* to|strong=\"G2532\"* lead|strong=\"G2270\"* a|strong=\"G2532\"* quiet|strong=\"G2270\"* life|strong=\"G2270\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* do|strong=\"G4238\"* your|strong=\"G2532\"* own|strong=\"G2398\"* business|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* work|strong=\"G2038\"* with|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G2398\"* hands|strong=\"G5495\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* we|strong=\"G2532\"* instructed|strong=\"G3853\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* you|strong=\"G2532\"* may|strong=\"G2532\"* walk|strong=\"G4043\"* properly|strong=\"G2156\"* toward|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1854\"*, and|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* need|strong=\"G5532\"* of|strong=\"G2532\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* don’t|strong=\"G3588\"* want|strong=\"G2309\"* you|strong=\"G5210\"* to|strong=\"G2443\"* be|strong=\"G2532\"* ignorant|strong=\"G3361\"*, brothers, concerning|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* grieve|strong=\"G3076\"* like|strong=\"G2531\"* the|strong=\"G2532\"* rest|strong=\"G3062\"*, who|strong=\"G3588\"* have|strong=\"G2192\"* no|strong=\"G3756\"* hope|strong=\"G1680\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* we|strong=\"G3754\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* died|strong=\"G2837\"* and|strong=\"G2532\"* rose|strong=\"G2532\"* again|strong=\"G2532\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* God|strong=\"G2316\"* will|strong=\"G2316\"* bring|strong=\"G2532\"* with|strong=\"G4862\"* him|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"* in|strong=\"G2532\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* we|strong=\"G2249\"* tell|strong=\"G3004\"* you|strong=\"G5210\"* by|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G3588\"* alive|strong=\"G2198\"*, who|strong=\"G3588\"* are|strong=\"G3588\"* left until|strong=\"G1519\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G3056\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, will|strong=\"G2962\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* precede|strong=\"G5348\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1473\"* fallen|strong=\"G2837\"* asleep|strong=\"G2837\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* himself will|strong=\"G2316\"* descend|strong=\"G2597\"* from|strong=\"G2597\"* heaven|strong=\"G3772\"* with|strong=\"G1722\"* a|strong=\"G2532\"* shout|strong=\"G2752\"*, with|strong=\"G1722\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* the|strong=\"G1722\"* archangel and|strong=\"G2532\"* with|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* trumpet|strong=\"G4536\"*. The|strong=\"G1722\"* dead|strong=\"G3498\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* will|strong=\"G2316\"* rise first|strong=\"G4413\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"G2532\"* we|strong=\"G2249\"* who|strong=\"G3588\"* are|strong=\"G1510\"* alive|strong=\"G2198\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* left, will|strong=\"G1510\"* be|strong=\"G1510\"* caught|strong=\"G2962\"* up|strong=\"G1519\"* together|strong=\"G4862\"* with|strong=\"G1722\"* them|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* clouds|strong=\"G3507\"* to|strong=\"G1519\"* meet|strong=\"G3588\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* in|strong=\"G1722\"* the|strong=\"G1722\"* air. So|strong=\"G3779\"* we|strong=\"G2249\"* will|strong=\"G1510\"* be|strong=\"G1510\"* with|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"G5620\"* comfort|strong=\"G3870\"* one|strong=\"G3588\"* another|strong=\"G3588\"* with|strong=\"G1722\"* these|strong=\"G3778\"* words|strong=\"G3056\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* times|strong=\"G2540\"* and|strong=\"G2532\"* the|strong=\"G2532\"* seasons|strong=\"G2540\"*, brothers, you|strong=\"G5210\"* have|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* that|strong=\"G3588\"* anything be|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* yourselves|strong=\"G1722\"* know|strong=\"G1492\"* well|strong=\"G1063\"* that|strong=\"G3754\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* comes|strong=\"G2064\"* like|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1722\"* when|strong=\"G3752\"* they|strong=\"G2532\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*, “Peace|strong=\"G1515\"* and|strong=\"G2532\"* safety,” then|strong=\"G2532\"* sudden destruction|strong=\"G3639\"* will|strong=\"G2532\"* come|strong=\"G2186\"* on|strong=\"G1722\"* them|strong=\"G3588\"*, like|strong=\"G5618\"* birth|strong=\"G5604\"* pains|strong=\"G5604\"* on|strong=\"G1722\"* a|strong=\"G2192\"* pregnant|strong=\"G1064\"* woman|strong=\"G2192\"*. Then|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* escape|strong=\"G1628\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, brothers, aren’t|strong=\"G3588\"* in|strong=\"G1722\"* darkness|strong=\"G4655\"*, that|strong=\"G2443\"* the|strong=\"G1722\"* day|strong=\"G2250\"* should|strong=\"G3588\"* overtake|strong=\"G2638\"* you|strong=\"G5210\"* like|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* all|strong=\"G3956\"* children|strong=\"G5207\"* of|strong=\"G5207\"* light|strong=\"G5457\"* and|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G2532\"* day|strong=\"G2250\"*. We|strong=\"G1063\"* don’t belong|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*, nor|strong=\"G3761\"* to|strong=\"G2532\"* darkness|strong=\"G4655\"*," + }, + { + "verseNum": 6, + "text": "so|strong=\"G3767\"* then|strong=\"G3767\"* let|strong=\"G3767\"*’s not|strong=\"G3361\"* sleep|strong=\"G2518\"*, as|strong=\"G5613\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* do|strong=\"G2532\"*, but|strong=\"G2532\"* let|strong=\"G3767\"*’s watch|strong=\"G1127\"* and|strong=\"G2532\"* be|strong=\"G2532\"* sober|strong=\"G3525\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sleep|strong=\"G2518\"*, sleep|strong=\"G2518\"* in|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* drunk|strong=\"G3184\"* are|strong=\"G3588\"* drunk|strong=\"G3184\"* in|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* since|strong=\"G1161\"* we|strong=\"G2249\"* belong|strong=\"G1510\"* to|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"*, let|strong=\"G1161\"*’s be|strong=\"G1510\"* sober|strong=\"G3525\"*, putting|strong=\"G2532\"* on|strong=\"G1746\"* the|strong=\"G2532\"* breastplate|strong=\"G2382\"* of|strong=\"G2250\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love, and|strong=\"G2532\"* for|strong=\"G1161\"* a|strong=\"G2532\"* helmet|strong=\"G4030\"*, the|strong=\"G2532\"* hope|strong=\"G1680\"* of|strong=\"G2250\"* salvation|strong=\"G4991\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G3754\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* appoint|strong=\"G5087\"* us|strong=\"G1519\"* to|strong=\"G1519\"* wrath|strong=\"G3709\"*, but|strong=\"G2316\"* to|strong=\"G1519\"* the|strong=\"G1519\"* obtaining|strong=\"G4047\"* of|strong=\"G1223\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"G3588\"* died|strong=\"G3588\"* for|strong=\"G4012\"* us|strong=\"G2249\"*, that|strong=\"G2443\"*, whether|strong=\"G1535\"* we|strong=\"G2249\"* wake|strong=\"G1127\"* or|strong=\"G1535\"* sleep|strong=\"G2518\"*, we|strong=\"G2249\"* should|strong=\"G3588\"* live|strong=\"G2198\"* together|strong=\"G4862\"* with|strong=\"G4862\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G1352\"* exhort|strong=\"G3870\"* one|strong=\"G1520\"* another|strong=\"G1520\"*, and|strong=\"G2532\"* build|strong=\"G3618\"* each other|strong=\"G1520\"* up|strong=\"G3618\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G4160\"* also|strong=\"G2532\"* do|strong=\"G4160\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* beg|strong=\"G2065\"* you|strong=\"G5210\"*, brothers, to|strong=\"G2532\"* know|strong=\"G1492\"* those|strong=\"G3588\"* who|strong=\"G3588\"* labor|strong=\"G2872\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* are|strong=\"G3588\"* over|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* admonish|strong=\"G3560\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* respect and|strong=\"G2532\"* honor them|strong=\"G3588\"* in|strong=\"G1722\"* love for|strong=\"G1223\"* their|strong=\"G1438\"* work|strong=\"G2041\"*’s sake|strong=\"G1223\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G1161\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers: Admonish|strong=\"G3560\"* the|strong=\"G3956\"* disorderly; encourage|strong=\"G3870\"* the|strong=\"G3956\"* faint-hearted; support the|strong=\"G3956\"* weak; be|strong=\"G3956\"* patient|strong=\"G3114\"* toward|strong=\"G4314\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 15, + "text": "See|strong=\"G3708\"* that|strong=\"G3588\"* no|strong=\"G3361\"* one|strong=\"G5100\"* returns evil|strong=\"G2556\"* for|strong=\"G1519\"* evil|strong=\"G2556\"* to|strong=\"G1519\"* anyone|strong=\"G5100\"*, but|strong=\"G2532\"* always|strong=\"G3842\"* follow|strong=\"G1377\"* after|strong=\"G1377\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G3956\"* for|strong=\"G1519\"* one|strong=\"G5100\"* another|strong=\"G5100\"* and|strong=\"G2532\"* for|strong=\"G1519\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "Always|strong=\"G3842\"* rejoice|strong=\"G5463\"*." + }, + { + "verseNum": 17, + "text": "Pray|strong=\"G4336\"* without|strong=\"G4336\"* ceasing." + }, + { + "verseNum": 18, + "text": "In|strong=\"G1722\"* everything|strong=\"G3956\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G2316\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* toward|strong=\"G1519\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 19, + "text": "Don’t|strong=\"G3588\"* quench|strong=\"G4570\"* the|strong=\"G3588\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 20, + "text": "Don’t despise|strong=\"G1848\"* prophecies|strong=\"G4394\"*." + }, + { + "verseNum": 21, + "text": "Test|strong=\"G1381\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G1161\"* hold|strong=\"G2722\"* firmly|strong=\"G2722\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G2570\"*." + }, + { + "verseNum": 22, + "text": "Abstain from|strong=\"G4190\"* every|strong=\"G3956\"* form|strong=\"G1491\"* of|strong=\"G3956\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 23, + "text": "May|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G4151\"* peace|strong=\"G1515\"* himself sanctify you|strong=\"G5210\"* completely|strong=\"G3648\"*. May|strong=\"G2532\"* your|strong=\"G2962\"* whole|strong=\"G3648\"* spirit|strong=\"G4151\"*, soul|strong=\"G5590\"*, and|strong=\"G2532\"* body|strong=\"G4983\"* be|strong=\"G2532\"* preserved|strong=\"G5083\"* blameless at|strong=\"G1722\"* the|strong=\"G1722\"* coming|strong=\"G3952\"* of|strong=\"G4151\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* calls|strong=\"G2564\"* you|strong=\"G5210\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G2532\"* also|strong=\"G2532\"* do|strong=\"G4160\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "Brothers, pray|strong=\"G4336\"* for|strong=\"G4012\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 26, + "text": "Greet all|strong=\"G3956\"* the|strong=\"G1722\"* brothers with|strong=\"G1722\"* a|strong=\"G1722\"* holy kiss|strong=\"G5370\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"G3956\"* solemnly command you|strong=\"G5210\"* by|strong=\"G3956\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* that|strong=\"G3588\"* this|strong=\"G3588\"* letter|strong=\"G1992\"* be|strong=\"G3956\"* read to|strong=\"G3956\"* all|strong=\"G3956\"* the|strong=\"G3956\"* holy brothers." + }, + { + "verseNum": 28, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "2 Thessalonians", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, Silvanus|strong=\"G4610\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Thessalonians|strong=\"G2331\"* in|strong=\"G1722\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 3, + "text": "We|strong=\"G3754\"* are|strong=\"G1510\"* bound|strong=\"G3784\"* to|strong=\"G1519\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G3754\"* you|strong=\"G5210\"*, brothers,+ 1:3 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* even|strong=\"G2532\"* as|strong=\"G2531\"* it|strong=\"G2532\"* is|strong=\"G1510\"* appropriate, because|strong=\"G3754\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* grows|strong=\"G4121\"* exceedingly|strong=\"G5232\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* love of|strong=\"G4012\"* each|strong=\"G1538\"* and|strong=\"G2532\"* every|strong=\"G3956\"* one|strong=\"G1520\"* of|strong=\"G4012\"* you|strong=\"G5210\"* toward|strong=\"G1519\"* one|strong=\"G1520\"* another|strong=\"G1520\"* abounds," + }, + { + "verseNum": 4, + "text": "so|strong=\"G2532\"* that|strong=\"G3739\"* we|strong=\"G2249\"* ourselves|strong=\"G1438\"* boast|strong=\"G2744\"* about|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* assemblies|strong=\"G1577\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G5228\"* your|strong=\"G2532\"* perseverance|strong=\"G5281\"* and|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* all|strong=\"G3956\"* your|strong=\"G2532\"* persecutions|strong=\"G1375\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* afflictions|strong=\"G2347\"* which|strong=\"G3739\"* you|strong=\"G5210\"* endure." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* an|strong=\"G2532\"* obvious sign of|strong=\"G2316\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"* judgment|strong=\"G2920\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* the|strong=\"G2532\"* end|strong=\"G1519\"* that|strong=\"G3739\"* you|strong=\"G5210\"* may|strong=\"G2532\"* be|strong=\"G2532\"* counted worthy|strong=\"G2661\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s Kingdom, for|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G5210\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G3844\"* it|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2316\"* righteous|strong=\"G1342\"* thing|strong=\"G1342\"* with|strong=\"G3844\"* God|strong=\"G2316\"* to|strong=\"G2316\"* repay affliction|strong=\"G2347\"* to|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* afflict|strong=\"G2346\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1473\"* relief to|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* are|strong=\"G3588\"* afflicted|strong=\"G2346\"* with|strong=\"G3326\"* us|strong=\"G2249\"* when|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* is|strong=\"G3588\"* revealed from|strong=\"G2532\"* heaven|strong=\"G3772\"* with|strong=\"G3326\"* his|strong=\"G1722\"* mighty|strong=\"G1411\"* angels in|strong=\"G1722\"* flaming fire," + }, + { + "verseNum": 8, + "text": "punishing those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* obey|strong=\"G5219\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 9, + "text": "who|strong=\"G3588\"* will|strong=\"G2532\"* pay|strong=\"G5099\"* the|strong=\"G2532\"* penalty|strong=\"G1349\"*: eternal destruction|strong=\"G3639\"* from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2532\"* his|strong=\"G2532\"* might|strong=\"G2479\"*," + }, + { + "verseNum": 10, + "text": "when|strong=\"G3752\"* he|strong=\"G2532\"* comes|strong=\"G2064\"* in|strong=\"G1722\"* that|strong=\"G3754\"* day|strong=\"G2250\"* to|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1740\"* in|strong=\"G1722\"* his|strong=\"G3956\"* saints and|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* admired|strong=\"G2296\"* among|strong=\"G1722\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"*, because|strong=\"G3754\"* our|strong=\"G2532\"* testimony|strong=\"G3142\"* to|strong=\"G2532\"* you|strong=\"G5210\"* was|strong=\"G3588\"* believed|strong=\"G4100\"*." + }, + { + "verseNum": 11, + "text": "To|strong=\"G1519\"* this|strong=\"G3588\"* end|strong=\"G1519\"* we|strong=\"G2249\"* also|strong=\"G2532\"* pray|strong=\"G4336\"* always|strong=\"G3842\"* for|strong=\"G1519\"* you|strong=\"G5210\"* that|strong=\"G2443\"* our|strong=\"G2316\"* God|strong=\"G2316\"* may|strong=\"G2532\"* count you|strong=\"G5210\"* worthy of|strong=\"G4012\"* your|strong=\"G2532\"* calling|strong=\"G2821\"*, and|strong=\"G2532\"* fulfill|strong=\"G4137\"* every|strong=\"G3956\"* desire|strong=\"G2107\"* of|strong=\"G4012\"* goodness and|strong=\"G2532\"* work|strong=\"G2041\"* of|strong=\"G4012\"* faith|strong=\"G4102\"* with|strong=\"G1722\"* power|strong=\"G1411\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*+ 1:12 TR adds “Christ”* may|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1740\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"*, brothers, concerning|strong=\"G5228\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* our|strong=\"G2424\"* gathering|strong=\"G1997\"* together|strong=\"G1909\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, we|strong=\"G2249\"* ask|strong=\"G2065\"* you|strong=\"G5210\"*" + }, + { + "verseNum": 2, + "text": "not|strong=\"G3361\"* to|strong=\"G1519\"* be|strong=\"G3361\"* quickly|strong=\"G5030\"* shaken|strong=\"G4531\"* in|strong=\"G1519\"* your|strong=\"G1223\"* mind|strong=\"G3563\"* or|strong=\"G3366\"* troubled|strong=\"G2360\"*, either|strong=\"G3383\"* by|strong=\"G1223\"* spirit|strong=\"G4151\"* or|strong=\"G3366\"* by|strong=\"G1223\"* word|strong=\"G3056\"* or|strong=\"G3366\"* by|strong=\"G1223\"* letter|strong=\"G1992\"* as|strong=\"G5613\"* if|strong=\"G5613\"* from|strong=\"G3588\"* us|strong=\"G1519\"*, saying|strong=\"G3056\"* that|strong=\"G3754\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G3056\"* Christ|strong=\"G2962\"* has|strong=\"G2962\"* already come|strong=\"G1764\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1818\"* no|strong=\"G3361\"* one|strong=\"G5100\"* deceive|strong=\"G1818\"* you|strong=\"G5210\"* in|strong=\"G2596\"* any|strong=\"G5100\"* way|strong=\"G5158\"*. For|strong=\"G3754\"* it|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* unless|strong=\"G1437\"* the|strong=\"G2532\"* rebellion+ 2:3 or, falling away, or, defection* comes|strong=\"G2064\"* first|strong=\"G4413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* man|strong=\"G5100\"* of|strong=\"G5207\"* sin is|strong=\"G3588\"* revealed, the|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* destruction." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* opposes and|strong=\"G2532\"* exalts|strong=\"G5229\"* himself|strong=\"G1438\"* against|strong=\"G1909\"* all|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G1510\"* called|strong=\"G3004\"* God|strong=\"G2316\"* or|strong=\"G2228\"* that|strong=\"G3754\"* is|strong=\"G1510\"* worshiped, so|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* sits|strong=\"G2523\"* as|strong=\"G1519\"* God|strong=\"G2316\"* in|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, setting himself|strong=\"G1438\"* up|strong=\"G1519\"* as|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Don’t you|strong=\"G5210\"* remember|strong=\"G3421\"* that|strong=\"G3754\"* when|strong=\"G1510\"* I|strong=\"G3754\"* was|strong=\"G1510\"* still|strong=\"G2089\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G3754\"* told|strong=\"G3004\"* you|strong=\"G5210\"* these|strong=\"G3778\"* things|strong=\"G3778\"*?" + }, + { + "verseNum": 6, + "text": "Now|strong=\"G3568\"* you|strong=\"G1722\"* know|strong=\"G1492\"* what|strong=\"G3588\"* is|strong=\"G3588\"* restraining him|strong=\"G3588\"*, to|strong=\"G1519\"* the|strong=\"G1722\"* end|strong=\"G1519\"* that|strong=\"G3588\"* he|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* revealed in|strong=\"G1722\"* his|strong=\"G1438\"* own|strong=\"G1438\"* season|strong=\"G2540\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G1537\"* mystery|strong=\"G3466\"* of|strong=\"G1537\"* lawlessness already|strong=\"G2235\"* works|strong=\"G1754\"*. Only|strong=\"G3440\"* there|strong=\"G1063\"* is|strong=\"G3588\"* one|strong=\"G3588\"* who|strong=\"G3588\"* restrains|strong=\"G2722\"* now|strong=\"G2235\"*, until|strong=\"G2193\"* he|strong=\"G3588\"* is|strong=\"G3588\"* taken|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1537\"* way|strong=\"G3319\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"G2532\"* the|strong=\"G2532\"* lawless one|strong=\"G3739\"* will|strong=\"G2532\"* be|strong=\"G2532\"* revealed, whom|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* kill with|strong=\"G2532\"* the|strong=\"G2532\"* breath|strong=\"G4151\"* of|strong=\"G4151\"* his|strong=\"G2532\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* destroy|strong=\"G2673\"* by|strong=\"G2532\"* the|strong=\"G2532\"* manifestation of|strong=\"G4151\"* his|strong=\"G2532\"* coming|strong=\"G3952\"*;" + }, + { + "verseNum": 9, + "text": "even|strong=\"G2532\"* he|strong=\"G2532\"* whose|strong=\"G3739\"* coming|strong=\"G3952\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* working|strong=\"G1753\"* of|strong=\"G2532\"* Satan|strong=\"G4567\"* with|strong=\"G1722\"* all|strong=\"G3956\"* power|strong=\"G1411\"* and|strong=\"G2532\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* lying|strong=\"G5579\"* wonders|strong=\"G5059\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* with|strong=\"G1722\"* all|strong=\"G3956\"* deception of|strong=\"G2532\"* wickedness|strong=\"G1722\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* being|strong=\"G2532\"* lost, because|strong=\"G1722\"* they|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G1209\"* the|strong=\"G1722\"* love of|strong=\"G2532\"* the|strong=\"G1722\"* truth, that|strong=\"G3739\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*." + }, + { + "verseNum": 11, + "text": "Because|strong=\"G1223\"* of|strong=\"G1223\"* this|strong=\"G3778\"*, God|strong=\"G2316\"* sends|strong=\"G3992\"* them|strong=\"G3588\"* a|strong=\"G2532\"* powerful delusion|strong=\"G4106\"*, that|strong=\"G3588\"* they|strong=\"G2532\"* should|strong=\"G2316\"* believe|strong=\"G4100\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* they|strong=\"G3588\"* all|strong=\"G3956\"* might|strong=\"G3956\"* be|strong=\"G3361\"* judged|strong=\"G2919\"* who|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"* the|strong=\"G3956\"* truth, but|strong=\"G3361\"* had|strong=\"G3588\"* pleasure|strong=\"G2106\"* in|strong=\"G3956\"* unrighteousness." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G3588\"* bound|strong=\"G3784\"* to|strong=\"G1519\"* always|strong=\"G3842\"* give|strong=\"G2168\"* thanks|strong=\"G2168\"* to|strong=\"G1519\"* God|strong=\"G2316\"* for|strong=\"G3754\"* you|strong=\"G5210\"*, brothers loved by|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, because|strong=\"G3754\"* God|strong=\"G2316\"* chose you|strong=\"G5210\"* from|strong=\"G2532\"* the|strong=\"G1722\"* beginning for|strong=\"G3754\"* salvation|strong=\"G4991\"* through|strong=\"G1722\"* sanctification of|strong=\"G4012\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* belief|strong=\"G4102\"* in|strong=\"G1722\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 14, + "text": "to|strong=\"G1519\"* which|strong=\"G3739\"* he|strong=\"G2532\"* called|strong=\"G2564\"* you|strong=\"G5210\"* through|strong=\"G1223\"* our|strong=\"G2424\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*, for|strong=\"G1519\"* the|strong=\"G2532\"* obtaining|strong=\"G4047\"* of|strong=\"G1223\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"G3767\"* then|strong=\"G3767\"*, brothers, stand|strong=\"G4739\"* firm|strong=\"G4739\"* and|strong=\"G2532\"* hold|strong=\"G2902\"* the|strong=\"G2532\"* traditions|strong=\"G3862\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* taught|strong=\"G1321\"* by|strong=\"G1223\"* us|strong=\"G2249\"*, whether|strong=\"G1535\"* by|strong=\"G1223\"* word|strong=\"G3056\"* or|strong=\"G1535\"* by|strong=\"G1223\"* letter|strong=\"G1992\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* himself, and|strong=\"G2532\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* loved us|strong=\"G1325\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"* eternal comfort|strong=\"G3874\"* and|strong=\"G2532\"* good|strong=\"G3588\"* hope|strong=\"G1680\"* through|strong=\"G1722\"* grace|strong=\"G5485\"*," + }, + { + "verseNum": 17, + "text": "comfort|strong=\"G3870\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* and|strong=\"G2532\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"* and|strong=\"G2532\"* word|strong=\"G3056\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Finally|strong=\"G3063\"*, brothers, pray|strong=\"G4336\"* for|strong=\"G4012\"* us|strong=\"G2249\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G4012\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* may|strong=\"G2532\"* spread|strong=\"G5143\"* rapidly|strong=\"G5143\"* and|strong=\"G2532\"* be|strong=\"G2532\"* glorified|strong=\"G1392\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* also|strong=\"G2532\"* with|strong=\"G4314\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* we|strong=\"G1063\"* may|strong=\"G2532\"* be|strong=\"G2532\"* delivered|strong=\"G4506\"* from|strong=\"G2532\"* unreasonable and|strong=\"G2532\"* evil|strong=\"G4190\"* men|strong=\"G3956\"*; for|strong=\"G1063\"* not|strong=\"G3756\"* all|strong=\"G3956\"* have|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, who|strong=\"G3739\"* will|strong=\"G1510\"* establish|strong=\"G4741\"* you|strong=\"G5210\"* and|strong=\"G2532\"* guard|strong=\"G5442\"* you|strong=\"G5210\"* from|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3739\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"G3739\"* have|strong=\"G2532\"* confidence|strong=\"G3982\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* concerning|strong=\"G1909\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* both|strong=\"G2532\"* do|strong=\"G4160\"* and|strong=\"G2532\"* will|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G1722\"* things|strong=\"G3739\"* we|strong=\"G3739\"* command|strong=\"G3853\"*." + }, + { + "verseNum": 5, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* direct|strong=\"G2720\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"* into|strong=\"G1519\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love and|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* we|strong=\"G2249\"* command|strong=\"G3853\"* you|strong=\"G5210\"*, brothers, in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G3739\"* you|strong=\"G5210\"* withdraw yourselves|strong=\"G4771\"* from|strong=\"G3844\"* every|strong=\"G3956\"* brother who|strong=\"G3739\"* walks|strong=\"G4043\"* in|strong=\"G1722\"* rebellion and|strong=\"G2532\"* not|strong=\"G3361\"* after|strong=\"G2596\"* the|strong=\"G1722\"* tradition|strong=\"G3862\"* which|strong=\"G3739\"* they|strong=\"G2532\"* received|strong=\"G3880\"* from|strong=\"G3844\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* know|strong=\"G1492\"* how|strong=\"G4459\"* you|strong=\"G5210\"* ought|strong=\"G1163\"* to|strong=\"G1722\"* imitate|strong=\"G3401\"* us|strong=\"G2249\"*. For|strong=\"G1063\"* we|strong=\"G2249\"* didn’t behave|strong=\"G3756\"* ourselves|strong=\"G2249\"* rebelliously among|strong=\"G1722\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 8, + "text": "neither|strong=\"G3761\"* did|strong=\"G2532\"* we|strong=\"G2532\"* eat|strong=\"G2068\"* bread from|strong=\"G3844\"* anyone|strong=\"G5100\"*’s hand without|strong=\"G3361\"* paying for|strong=\"G4314\"* it|strong=\"G2532\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* labor|strong=\"G2873\"* and|strong=\"G2532\"* travail|strong=\"G3449\"* worked|strong=\"G2038\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*, that|strong=\"G3588\"* we|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3361\"* burden|strong=\"G1912\"* any|strong=\"G5100\"* of|strong=\"G2250\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* was|strong=\"G3588\"* not|strong=\"G3756\"* because|strong=\"G3754\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G1519\"* right|strong=\"G1849\"*, but|strong=\"G3588\"* to|strong=\"G1519\"* make|strong=\"G1519\"* ourselves|strong=\"G1438\"* an|strong=\"G2192\"* example|strong=\"G5179\"* to|strong=\"G1519\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* should|strong=\"G3588\"* imitate|strong=\"G3401\"* us|strong=\"G1325\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* even|strong=\"G2532\"* when|strong=\"G3753\"* we|strong=\"G3754\"* were|strong=\"G1510\"* with|strong=\"G4314\"* you|strong=\"G5210\"*, we|strong=\"G3754\"* commanded|strong=\"G3853\"* you|strong=\"G5210\"* this|strong=\"G3778\"*: “If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* not|strong=\"G3756\"* willing|strong=\"G2309\"* to|strong=\"G4314\"* work|strong=\"G2038\"*, don’t let|strong=\"G1510\"* him|strong=\"G2532\"* eat|strong=\"G2068\"*.”" + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* hear of|strong=\"G5100\"* some|strong=\"G5100\"* who|strong=\"G5100\"* walk|strong=\"G4043\"* among|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* rebellion, who|strong=\"G5100\"* don’t work|strong=\"G2038\"* at|strong=\"G1722\"* all|strong=\"G1722\"*, but|strong=\"G1063\"* are|strong=\"G4043\"* busybodies|strong=\"G4020\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* that|strong=\"G2443\"* way|strong=\"G1722\"*, we|strong=\"G2532\"* command|strong=\"G3853\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* work|strong=\"G2038\"* with|strong=\"G3326\"* quietness|strong=\"G2271\"* and|strong=\"G2532\"* eat|strong=\"G2068\"* their|strong=\"G1438\"* own|strong=\"G1438\"* bread." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, brothers, don’t be|strong=\"G3361\"* weary|strong=\"G1573\"* in|strong=\"G1161\"* doing|strong=\"G2569\"* what|strong=\"G1161\"* is|strong=\"G3361\"* right." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* doesn’t|strong=\"G3588\"* obey|strong=\"G5219\"* our|strong=\"G1223\"* word|strong=\"G3056\"* in|strong=\"G1223\"* this|strong=\"G3778\"* letter|strong=\"G1992\"*, note|strong=\"G4593\"* that|strong=\"G2443\"* man|strong=\"G5100\"* and|strong=\"G1161\"* have|strong=\"G1473\"* no|strong=\"G3756\"* company|strong=\"G4874\"* with|strong=\"G1223\"* him|strong=\"G3588\"*, to|strong=\"G2443\"* the|strong=\"G1161\"* end|strong=\"G3778\"* that|strong=\"G2443\"* he|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G3756\"* ashamed|strong=\"G1788\"*." + }, + { + "verseNum": 15, + "text": "Don’t count|strong=\"G2233\"* him|strong=\"G2532\"* as|strong=\"G5613\"* an|strong=\"G2532\"* enemy|strong=\"G2190\"*, but|strong=\"G2532\"* admonish|strong=\"G3560\"* him|strong=\"G2532\"* as|strong=\"G5613\"* a|strong=\"G5613\"* brother." + }, + { + "verseNum": 16, + "text": "Now|strong=\"G1161\"* may|strong=\"G3956\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* of|strong=\"G1223\"* peace|strong=\"G1515\"* himself give|strong=\"G1325\"* you|strong=\"G5210\"* peace|strong=\"G1515\"* at|strong=\"G1722\"* all|strong=\"G3956\"* times in|strong=\"G1722\"* all|strong=\"G3956\"* ways. The|strong=\"G1722\"* Lord|strong=\"G2962\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"G3739\"*, Paul|strong=\"G3972\"*, write|strong=\"G1125\"* this|strong=\"G3588\"* greeting with|strong=\"G1722\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* sign|strong=\"G4592\"* in|strong=\"G1722\"* every|strong=\"G3956\"* letter|strong=\"G1992\"*. This|strong=\"G3588\"* is|strong=\"G1510\"* how|strong=\"G3779\"* I|strong=\"G3739\"* write|strong=\"G1125\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 Timothy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G2003\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 NU reads Christ Jesus and omits the Lord. * our|strong=\"G2316\"* hope|strong=\"G1680\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* Timothy|strong=\"G5095\"*, my|strong=\"G1722\"* true|strong=\"G1103\"* child|strong=\"G5043\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*: Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"G2531\"* I|strong=\"G2443\"* urged|strong=\"G3870\"* you|strong=\"G4771\"* when|strong=\"G1722\"* I|strong=\"G2443\"* was|strong=\"G4771\"* going|strong=\"G4198\"* into|strong=\"G1519\"* Macedonia|strong=\"G3109\"*, stay at|strong=\"G1722\"* Ephesus|strong=\"G2181\"* that|strong=\"G2443\"* you|strong=\"G4771\"* might|strong=\"G5100\"* command|strong=\"G3853\"* certain|strong=\"G5100\"* men|strong=\"G5100\"* not|strong=\"G3361\"* to|strong=\"G1519\"* teach|strong=\"G2085\"* a|strong=\"G1519\"* different|strong=\"G2085\"* doctrine|strong=\"G2085\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* not|strong=\"G3366\"* to|strong=\"G2532\"* pay|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* myths|strong=\"G3454\"* and|strong=\"G2532\"* endless genealogies|strong=\"G1076\"*, which|strong=\"G3588\"* cause|strong=\"G3930\"* disputes rather|strong=\"G3123\"* than|strong=\"G2228\"* God|strong=\"G2316\"*’s stewardship|strong=\"G3622\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* goal|strong=\"G5056\"* of|strong=\"G1537\"* this|strong=\"G3588\"* command|strong=\"G3852\"* is|strong=\"G1510\"* love from|strong=\"G1537\"* a|strong=\"G2532\"* pure|strong=\"G2513\"* heart|strong=\"G2588\"*, a|strong=\"G2532\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*, and|strong=\"G2532\"* sincere faith|strong=\"G4102\"*," + }, + { + "verseNum": 6, + "text": "from|strong=\"G1519\"* which|strong=\"G3739\"* things|strong=\"G3739\"* some|strong=\"G5100\"*, having|strong=\"G5100\"* missed the|strong=\"G1519\"* mark, have|strong=\"G5100\"* turned|strong=\"G1624\"* away to|strong=\"G1519\"* vain|strong=\"G1519\"* talking," + }, + { + "verseNum": 7, + "text": "desiring|strong=\"G2309\"* to|strong=\"G3004\"* be|strong=\"G1510\"* teachers|strong=\"G3547\"* of|strong=\"G4012\"* the|strong=\"G3004\"* law|strong=\"G3547\"*, though they|strong=\"G3739\"* understand|strong=\"G3539\"* neither|strong=\"G3383\"* what|strong=\"G5101\"* they|strong=\"G3739\"* say|strong=\"G3004\"* nor|strong=\"G3383\"* about|strong=\"G4012\"* what|strong=\"G5101\"* they|strong=\"G3739\"* strongly affirm|strong=\"G1226\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* we|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1161\"* law|strong=\"G3551\"* is|strong=\"G3588\"* good|strong=\"G2570\"* if|strong=\"G1437\"* a|strong=\"G1437\"* person|strong=\"G5100\"* uses|strong=\"G5530\"* it|strong=\"G3754\"* lawfully|strong=\"G3545\"*," + }, + { + "verseNum": 9, + "text": "as|strong=\"G1161\"* knowing|strong=\"G1492\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* law|strong=\"G3551\"* is|strong=\"G3778\"* not|strong=\"G3756\"* made|strong=\"G3756\"* for|strong=\"G3754\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* person|strong=\"G1342\"*, but|strong=\"G1161\"* for|strong=\"G3754\"* the|strong=\"G2532\"* lawless and|strong=\"G2532\"* insubordinate, for|strong=\"G3754\"* the|strong=\"G2532\"* ungodly and|strong=\"G2532\"* sinners, for|strong=\"G3754\"* the|strong=\"G2532\"* unholy and|strong=\"G2532\"* profane, for|strong=\"G3754\"* murderers of|strong=\"G2532\"* fathers|strong=\"G3964\"* and|strong=\"G2532\"* murderers of|strong=\"G2532\"* mothers|strong=\"G3389\"*, for|strong=\"G3754\"* manslayers," + }, + { + "verseNum": 10, + "text": "for|strong=\"G2532\"* the|strong=\"G2532\"* sexually immoral|strong=\"G4205\"*, for|strong=\"G2532\"* homosexuals, for|strong=\"G2532\"* slave-traders, for|strong=\"G2532\"* liars|strong=\"G5583\"*, for|strong=\"G2532\"* perjurers|strong=\"G1965\"*, and|strong=\"G2532\"* for|strong=\"G2532\"* any|strong=\"G5100\"* other|strong=\"G2087\"* thing|strong=\"G5100\"* contrary to|strong=\"G2532\"* the|strong=\"G2532\"* sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*," + }, + { + "verseNum": 11, + "text": "according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* of|strong=\"G2316\"* the|strong=\"G2596\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* the|strong=\"G2596\"* blessed|strong=\"G3107\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* was|strong=\"G3588\"* committed|strong=\"G4100\"* to|strong=\"G2596\"* my|strong=\"G1473\"* trust|strong=\"G4100\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* him|strong=\"G3588\"* who|strong=\"G3588\"* enabled|strong=\"G1743\"* me|strong=\"G1473\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* counted|strong=\"G2233\"* me|strong=\"G1473\"* faithful|strong=\"G4103\"*, appointing me|strong=\"G1473\"* to|strong=\"G1519\"* service|strong=\"G1248\"*," + }, + { + "verseNum": 13, + "text": "although|strong=\"G3748\"* I|strong=\"G2532\"* used to|strong=\"G2532\"* be|strong=\"G1510\"* a|strong=\"G2532\"* blasphemer, a|strong=\"G2532\"* persecutor|strong=\"G1376\"*, and|strong=\"G2532\"* insolent|strong=\"G5197\"*. However, I|strong=\"G2532\"* obtained mercy|strong=\"G1653\"* because|strong=\"G3754\"* I|strong=\"G2532\"* did|strong=\"G4160\"* it|strong=\"G2532\"* ignorantly in|strong=\"G1722\"* unbelief." + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* grace|strong=\"G5485\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* abounded exceedingly with|strong=\"G3326\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* saying|strong=\"G3056\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* worthy of|strong=\"G3056\"* all|strong=\"G3956\"* acceptance, that|strong=\"G3754\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* came|strong=\"G2064\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"* to|strong=\"G1519\"* save|strong=\"G4982\"* sinners, of|strong=\"G3056\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* chief|strong=\"G4413\"*." + }, + { + "verseNum": 16, + "text": "However, for|strong=\"G1519\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* obtained mercy|strong=\"G1653\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* me|strong=\"G1473\"* first|strong=\"G4413\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* might|strong=\"G3778\"* display all|strong=\"G1722\"* his|strong=\"G1223\"* patience|strong=\"G3115\"* for|strong=\"G1519\"* an|strong=\"G1519\"* example|strong=\"G5296\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* going|strong=\"G3195\"* to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1722\"* him|strong=\"G3588\"* for|strong=\"G1519\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"G1161\"* to|strong=\"G1519\"* the|strong=\"G2532\"* King|strong=\"G3588\"* eternal, immortal, invisible, to|strong=\"G1519\"* God|strong=\"G2316\"* who|strong=\"G3588\"* alone|strong=\"G3441\"* is|strong=\"G3588\"* wise, be|strong=\"G2532\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 18, + "text": "I|strong=\"G3778\"* commit|strong=\"G3908\"* this|strong=\"G3778\"* instruction|strong=\"G3852\"* to|strong=\"G2443\"* you|strong=\"G4771\"*, my|strong=\"G1722\"* child|strong=\"G5043\"* Timothy|strong=\"G5095\"*, according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* prophecies|strong=\"G4394\"* which|strong=\"G3588\"* were|strong=\"G3588\"* given to|strong=\"G2443\"* you|strong=\"G4771\"* before|strong=\"G1909\"*, that|strong=\"G2443\"* by|strong=\"G1722\"* them|strong=\"G3588\"* you|strong=\"G4771\"* may|strong=\"G2443\"* wage|strong=\"G4754\"* the|strong=\"G1722\"* good|strong=\"G2570\"* warfare|strong=\"G4752\"*," + }, + { + "verseNum": 19, + "text": "holding|strong=\"G2192\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* a|strong=\"G2192\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*, which|strong=\"G3739\"* some|strong=\"G5100\"* having|strong=\"G2192\"* thrust away made|strong=\"G4102\"* a|strong=\"G2192\"* shipwreck|strong=\"G3489\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 20, + "text": "of|strong=\"G2532\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* Hymenaeus|strong=\"G5211\"* and|strong=\"G2532\"* Alexander, whom|strong=\"G3739\"* I|strong=\"G3739\"* delivered|strong=\"G3860\"* to|strong=\"G2443\"* Satan|strong=\"G4567\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G1510\"* taught|strong=\"G3811\"* not|strong=\"G3361\"* to|strong=\"G2443\"* blaspheme." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G3767\"* exhort|strong=\"G3870\"* therefore|strong=\"G3767\"*, first|strong=\"G4413\"* of|strong=\"G5228\"* all|strong=\"G3956\"*, that|strong=\"G3956\"* petitions|strong=\"G1783\"*, prayers|strong=\"G4335\"*, intercessions|strong=\"G1783\"*, and|strong=\"G3767\"* givings of|strong=\"G5228\"* thanks|strong=\"G2169\"* be|strong=\"G3956\"* made|strong=\"G4160\"* for|strong=\"G5228\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"G5228\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* high|strong=\"G3956\"* places, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* lead|strong=\"G1236\"* a|strong=\"G2532\"* tranquil|strong=\"G2263\"* and|strong=\"G2532\"* quiet|strong=\"G2272\"* life|strong=\"G1236\"* in|strong=\"G1722\"* all|strong=\"G3956\"* godliness|strong=\"G2150\"* and|strong=\"G2532\"* reverence." + }, + { + "verseNum": 3, + "text": "For|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G3588\"* good|strong=\"G2570\"* and|strong=\"G2532\"* acceptable in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"G3739\"* desires|strong=\"G2309\"* all|strong=\"G3956\"* people|strong=\"G3956\"* to|strong=\"G1519\"* be|strong=\"G2532\"* saved|strong=\"G4982\"* and|strong=\"G2532\"* come|strong=\"G2064\"* to|strong=\"G1519\"* full|strong=\"G3956\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G2316\"* one|strong=\"G1520\"* God|strong=\"G2316\"* and|strong=\"G2532\"* one|strong=\"G1520\"* mediator|strong=\"G3316\"* between|strong=\"G3316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* men, the|strong=\"G2532\"* man|strong=\"G1520\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"G3588\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* as|strong=\"G1438\"* a|strong=\"G1325\"* ransom for|strong=\"G5228\"* all|strong=\"G3956\"*, the|strong=\"G3956\"* testimony|strong=\"G3142\"* at|strong=\"G3588\"* the|strong=\"G3956\"* proper|strong=\"G2398\"* time|strong=\"G2540\"*," + }, + { + "verseNum": 7, + "text": "to|strong=\"G1519\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3739\"* appointed|strong=\"G5087\"* a|strong=\"G2532\"* preacher|strong=\"G2783\"* and|strong=\"G2532\"* an|strong=\"G2532\"* apostle—I|strong=\"G1473\"* am|strong=\"G1473\"* telling|strong=\"G3004\"* the|strong=\"G1722\"* truth in|strong=\"G1722\"* Christ, not|strong=\"G3756\"* lying|strong=\"G5574\"*—a|strong=\"G2532\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"* in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 8, + "text": "I|strong=\"G2532\"* desire|strong=\"G1014\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G1722\"* men|strong=\"G3956\"* in|strong=\"G1722\"* every|strong=\"G3956\"* place|strong=\"G5117\"* pray|strong=\"G4336\"*, lifting|strong=\"G1869\"* up|strong=\"G1869\"* holy|strong=\"G3741\"* hands|strong=\"G5495\"* without|strong=\"G5565\"* anger|strong=\"G3709\"* and|strong=\"G2532\"* doubting|strong=\"G1261\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G5615\"* way|strong=\"G1722\"*, that|strong=\"G2532\"* women|strong=\"G1135\"* also|strong=\"G2532\"* adorn|strong=\"G2885\"* themselves|strong=\"G1438\"* in|strong=\"G1722\"* decent clothing|strong=\"G2441\"*, with|strong=\"G3326\"* modesty and|strong=\"G2532\"* propriety, not|strong=\"G3361\"*+ 2:9 The word for “not” is the negative particle “μη” which denies an expected idea, as opposed to the usual word for “not” (ου) which denies a fact. Thus “μη” in this context is denying an expected idea (that women can be properly dressed without good works).* with|strong=\"G3326\"* braided|strong=\"G4117\"* hair|strong=\"G4117\"*, gold|strong=\"G5553\"*, pearls|strong=\"G3135\"*, or|strong=\"G2228\"* expensive|strong=\"G4185\"* clothing|strong=\"G2441\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"G3739\"* with|strong=\"G1223\"* good|strong=\"G1223\"* works|strong=\"G2041\"*, which|strong=\"G3739\"* is|strong=\"G3739\"* appropriate for|strong=\"G1223\"* women|strong=\"G1135\"* professing|strong=\"G1861\"* godliness|strong=\"G2317\"*." + }, + { + "verseNum": 11, + "text": "Let|strong=\"G3129\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* learn|strong=\"G3129\"* in|strong=\"G1722\"* quietness|strong=\"G2271\"* with|strong=\"G1722\"* full|strong=\"G3956\"* submission." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* don’t permit|strong=\"G2010\"* a|strong=\"G1722\"* woman|strong=\"G1135\"* to|strong=\"G1722\"* teach|strong=\"G1321\"*, nor|strong=\"G3761\"* to|strong=\"G1722\"* exercise authority over|strong=\"G1722\"* a|strong=\"G1722\"* man|strong=\"G3756\"*, but|strong=\"G1161\"* to|strong=\"G1722\"* be|strong=\"G1510\"* in|strong=\"G1722\"* quietness|strong=\"G2271\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* Adam was|strong=\"G4111\"* formed|strong=\"G4111\"* first|strong=\"G4413\"*, then|strong=\"G1534\"* Eve|strong=\"G2096\"*." + }, + { + "verseNum": 14, + "text": "Adam wasn’t|strong=\"G3588\"* deceived|strong=\"G1818\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* woman|strong=\"G1135\"*, being|strong=\"G1096\"* deceived|strong=\"G1818\"*, has|strong=\"G1096\"* fallen into|strong=\"G1722\"* disobedience;" + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* she|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"* through|strong=\"G1223\"* her|strong=\"G1437\"* childbearing|strong=\"G5042\"*, if|strong=\"G1437\"* they|strong=\"G2532\"* continue|strong=\"G3306\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*, love, and|strong=\"G2532\"* holiness with|strong=\"G3326\"* sobriety|strong=\"G4997\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1487\"* faithful|strong=\"G4103\"* saying|strong=\"G3056\"*: someone|strong=\"G5100\"* who|strong=\"G3588\"* seeks to|strong=\"G5100\"* be|strong=\"G3588\"* an|strong=\"G3056\"* overseer|strong=\"G1984\"*+ 3:1 or, superintendent, or bishop* desires|strong=\"G1937\"* a|strong=\"G1487\"* good|strong=\"G2570\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G3588\"* overseer|strong=\"G1985\"* therefore|strong=\"G3767\"* must|strong=\"G1163\"* be|strong=\"G1510\"* without|strong=\"G3588\"* reproach, the|strong=\"G3588\"* husband of|strong=\"G1520\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, temperate|strong=\"G3524\"*, sensible|strong=\"G4998\"*, modest|strong=\"G2887\"*, hospitable|strong=\"G5382\"*, good|strong=\"G3588\"* at|strong=\"G3588\"* teaching;" + }, + { + "verseNum": 3, + "text": "not|strong=\"G3361\"* a|strong=\"G3361\"* drinker, not|strong=\"G3361\"* violent|strong=\"G4131\"*, not|strong=\"G3361\"* greedy for|strong=\"G3361\"* money, but|strong=\"G3361\"* gentle|strong=\"G1933\"*, not|strong=\"G3361\"* quarrelsome, not|strong=\"G3361\"* covetous;" + }, + { + "verseNum": 4, + "text": "one|strong=\"G3956\"* who|strong=\"G3588\"* rules his|strong=\"G3956\"* own|strong=\"G2398\"* house|strong=\"G3624\"* well|strong=\"G2573\"*, having|strong=\"G2192\"* children|strong=\"G5043\"* in|strong=\"G1722\"* subjection|strong=\"G5292\"* with|strong=\"G3326\"* all|strong=\"G3956\"* reverence;" + }, + { + "verseNum": 5, + "text": "(for|strong=\"G1161\"* how|strong=\"G4459\"* could|strong=\"G1492\"* someone|strong=\"G5100\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* how|strong=\"G4459\"* to|strong=\"G3756\"* rule|strong=\"G4291\"* his|strong=\"G2398\"* own|strong=\"G2398\"* house|strong=\"G3624\"* take|strong=\"G1959\"* care|strong=\"G1959\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s assembly|strong=\"G1577\"*?)" + }, + { + "verseNum": 6, + "text": "not|strong=\"G3361\"* a|strong=\"G1519\"* new|strong=\"G3504\"* convert|strong=\"G3504\"*, lest|strong=\"G3361\"* being|strong=\"G2443\"* puffed up|strong=\"G1519\"* he|strong=\"G3588\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* the|strong=\"G1519\"* same condemnation|strong=\"G2917\"* as|strong=\"G1519\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"G1161\"* he|strong=\"G2532\"* must|strong=\"G1163\"* have|strong=\"G2192\"* good|strong=\"G2570\"* testimony|strong=\"G3141\"* from|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* outside|strong=\"G1855\"*, to|strong=\"G1519\"* avoid falling into|strong=\"G1519\"* reproach|strong=\"G3680\"* and|strong=\"G2532\"* the|strong=\"G2532\"* snare|strong=\"G3803\"* of|strong=\"G2532\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 8, + "text": "Servants|strong=\"G1249\"*,+ 3:8 or, Deacons.* in|strong=\"G4183\"* the|strong=\"G3361\"* same|strong=\"G5615\"* way|strong=\"G5615\"*, must be|strong=\"G3361\"* reverent, not|strong=\"G3361\"* double-tongued|strong=\"G1351\"*, not|strong=\"G3361\"* addicted|strong=\"G4337\"* to|strong=\"G3361\"* much|strong=\"G4183\"* wine|strong=\"G3631\"*, not|strong=\"G3361\"* greedy for|strong=\"G4183\"* money," + }, + { + "verseNum": 9, + "text": "holding|strong=\"G2192\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* in|strong=\"G1722\"* a|strong=\"G2192\"* pure|strong=\"G2513\"* conscience|strong=\"G4893\"*." + }, + { + "verseNum": 10, + "text": "Let|strong=\"G1161\"* them|strong=\"G3778\"* also|strong=\"G2532\"* first|strong=\"G4413\"* be|strong=\"G1510\"* tested|strong=\"G1381\"*; then|strong=\"G2532\"* let|strong=\"G1161\"* them|strong=\"G3778\"* serve|strong=\"G1247\"*+ 3:10 or, serve as deacons* if|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* blameless." + }, + { + "verseNum": 11, + "text": "Their|strong=\"G1722\"* wives|strong=\"G1135\"* in|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G5615\"* way|strong=\"G1722\"* must|strong=\"G1135\"* be|strong=\"G3361\"* reverent, not|strong=\"G3361\"* slanderers|strong=\"G1228\"*, temperate|strong=\"G3524\"*, and|strong=\"G1135\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"G1510\"* servants|strong=\"G1249\"*+ 3:12 or, deacons* be|strong=\"G1510\"* husbands of|strong=\"G2532\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, ruling|strong=\"G4291\"* their|strong=\"G2532\"* children|strong=\"G5043\"* and|strong=\"G2532\"* their|strong=\"G2532\"* own|strong=\"G2398\"* houses|strong=\"G3624\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* served|strong=\"G1247\"* well|strong=\"G2573\"*+ 3:13 or, served well as deacons* gain|strong=\"G4046\"* for|strong=\"G1063\"* themselves|strong=\"G1438\"* a|strong=\"G2532\"* good|strong=\"G2570\"* standing and|strong=\"G2532\"* great|strong=\"G4183\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3778\"* write|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G4771\"*, hoping|strong=\"G1679\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* you|strong=\"G4771\"* shortly|strong=\"G5034\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"G1161\"* if|strong=\"G1437\"* I|strong=\"G2532\"* wait long|strong=\"G1019\"*, that|strong=\"G2443\"* you|strong=\"G1437\"* may|strong=\"G2532\"* know|strong=\"G1492\"* how|strong=\"G4459\"* men|strong=\"G3588\"* ought|strong=\"G1163\"* to|strong=\"G2443\"* behave themselves|strong=\"G1722\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s house|strong=\"G3624\"*, which|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"* of|strong=\"G2316\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* pillar|strong=\"G4769\"* and|strong=\"G2532\"* ground|strong=\"G1477\"* of|strong=\"G2316\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 16, + "text": "Without|strong=\"G2532\"* controversy|strong=\"G3672\"*, the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G4151\"* godliness|strong=\"G2150\"* is|strong=\"G1510\"* great|strong=\"G3173\"*:" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"* expressly|strong=\"G4490\"* that|strong=\"G3754\"* in|strong=\"G1722\"* later|strong=\"G5306\"* times|strong=\"G2540\"* some|strong=\"G5100\"* will|strong=\"G2532\"* fall away from|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*, paying|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* seducing|strong=\"G4108\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* doctrines|strong=\"G1319\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*," + }, + { + "verseNum": 2, + "text": "through|strong=\"G1722\"* the|strong=\"G1722\"* hypocrisy|strong=\"G5272\"* of|strong=\"G1722\"* men|strong=\"G3588\"* who|strong=\"G3588\"* speak lies|strong=\"G5573\"*, branded in|strong=\"G1722\"* their|strong=\"G1722\"* own|strong=\"G2398\"* conscience|strong=\"G4893\"* as|strong=\"G1722\"* with|strong=\"G1722\"* a|strong=\"G1722\"* hot iron|strong=\"G2743\"*," + }, + { + "verseNum": 3, + "text": "forbidding|strong=\"G2967\"* marriage|strong=\"G1060\"* and|strong=\"G2532\"* commanding to|strong=\"G1519\"* abstain from|strong=\"G2532\"* foods|strong=\"G1033\"* which|strong=\"G3739\"* God|strong=\"G2316\"* created|strong=\"G2936\"* to|strong=\"G1519\"* be|strong=\"G2532\"* received|strong=\"G3336\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"* by|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* believe|strong=\"G4103\"* and|strong=\"G2532\"* know|strong=\"G1921\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 4, + "text": "For|strong=\"G3754\"* every|strong=\"G3956\"* creature|strong=\"G2938\"* of|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G2316\"* good|strong=\"G2570\"*, and|strong=\"G2532\"* nothing|strong=\"G3762\"* is|strong=\"G2316\"* to|strong=\"G2532\"* be|strong=\"G2532\"* rejected if|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G2316\"* received|strong=\"G2983\"* with|strong=\"G3326\"* thanksgiving|strong=\"G2169\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G2316\"* sanctified through|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* and|strong=\"G2532\"* prayer|strong=\"G1783\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"G2532\"* you|strong=\"G3739\"* instruct the|strong=\"G2532\"* brothers of|strong=\"G3056\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, you|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G2532\"* good|strong=\"G2570\"* servant|strong=\"G1249\"* of|strong=\"G3056\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, nourished|strong=\"G1789\"* in|strong=\"G2532\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* good|strong=\"G2570\"* doctrine|strong=\"G1319\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* followed|strong=\"G3877\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* profane and|strong=\"G2532\"* old|strong=\"G2532\"* wives’ fables|strong=\"G3454\"*. Exercise|strong=\"G1128\"* yourself|strong=\"G4572\"* toward|strong=\"G4314\"* godliness|strong=\"G2150\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* bodily|strong=\"G4984\"* exercise|strong=\"G1129\"* has|strong=\"G2192\"* some|strong=\"G3588\"* value|strong=\"G5624\"*, but|strong=\"G1161\"* godliness|strong=\"G2150\"* has|strong=\"G2192\"* value|strong=\"G5624\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G2532\"* the|strong=\"G2532\"* life|strong=\"G2222\"* which|strong=\"G3588\"* is|strong=\"G1510\"* now|strong=\"G1161\"* and|strong=\"G2532\"* of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G4314\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* saying|strong=\"G3056\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* worthy of|strong=\"G3056\"* all|strong=\"G3956\"* acceptance." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* we|strong=\"G3739\"* both|strong=\"G2532\"* labor|strong=\"G2872\"* and|strong=\"G2532\"* suffer|strong=\"G2532\"* reproach|strong=\"G3679\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* have|strong=\"G2532\"* set|strong=\"G1679\"* our|strong=\"G2316\"* trust|strong=\"G1679\"* in|strong=\"G1519\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G2316\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, especially|strong=\"G3122\"* of|strong=\"G2316\"* those|strong=\"G3778\"* who|strong=\"G3739\"* believe|strong=\"G4103\"*." + }, + { + "verseNum": 11, + "text": "Command|strong=\"G3853\"* and|strong=\"G2532\"* teach|strong=\"G1321\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"G1096\"* no|strong=\"G3367\"* man|strong=\"G3367\"* despise|strong=\"G2706\"* your|strong=\"G1722\"* youth|strong=\"G3503\"*; but|strong=\"G3588\"* be|strong=\"G1096\"* an|strong=\"G1722\"* example|strong=\"G5179\"* to|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* believe|strong=\"G4103\"*, in|strong=\"G1722\"* word|strong=\"G3056\"*, in|strong=\"G1722\"* your|strong=\"G1722\"* way|strong=\"G1722\"* of|strong=\"G3056\"* life, in|strong=\"G1722\"* love, in|strong=\"G1722\"* spirit|strong=\"G3588\"*, in|strong=\"G1722\"* faith|strong=\"G4102\"*, and|strong=\"G4102\"* in|strong=\"G1722\"* purity." + }, + { + "verseNum": 13, + "text": "Until|strong=\"G2193\"* I|strong=\"G2193\"* come|strong=\"G2064\"*, pay|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2064\"* reading, to|strong=\"G2064\"* exhortation|strong=\"G3874\"*, and|strong=\"G2064\"* to|strong=\"G2064\"* teaching|strong=\"G1319\"*." + }, + { + "verseNum": 14, + "text": "Don’t|strong=\"G3588\"* neglect the|strong=\"G1722\"* gift|strong=\"G5486\"* that|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, which|strong=\"G3739\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1722\"* you|strong=\"G4771\"* by|strong=\"G1223\"* prophecy|strong=\"G4394\"* with|strong=\"G3326\"* the|strong=\"G1722\"* laying|strong=\"G1936\"* on|strong=\"G1722\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hands|strong=\"G5495\"* of|strong=\"G1223\"* the|strong=\"G1722\"* elders|strong=\"G4244\"*." + }, + { + "verseNum": 15, + "text": "Be|strong=\"G1510\"* diligent in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3956\"*. Give|strong=\"G3956\"* yourself|strong=\"G4771\"* wholly to|strong=\"G2443\"* them|strong=\"G3588\"*, that|strong=\"G2443\"* your|strong=\"G3956\"* progress|strong=\"G4297\"* may|strong=\"G2443\"* be|strong=\"G1510\"* revealed|strong=\"G5318\"* to|strong=\"G2443\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 16, + "text": "Pay|strong=\"G1907\"* attention|strong=\"G1907\"* to|strong=\"G2532\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* to|strong=\"G2532\"* your|strong=\"G2532\"* teaching|strong=\"G1319\"*. Continue|strong=\"G1961\"* in|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, for|strong=\"G1063\"* in|strong=\"G2532\"* doing|strong=\"G4160\"* this|strong=\"G3778\"* you|strong=\"G4771\"* will|strong=\"G2532\"* save|strong=\"G4982\"* both|strong=\"G2532\"* yourself|strong=\"G4572\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear you|strong=\"G4771\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Don’t rebuke|strong=\"G1969\"* an|strong=\"G5613\"* older|strong=\"G4245\"* man|strong=\"G3361\"*, but|strong=\"G3361\"* exhort|strong=\"G3870\"* him|strong=\"G3870\"* as|strong=\"G5613\"* a|strong=\"G5613\"* father|strong=\"G3962\"*; the|strong=\"G5613\"* younger|strong=\"G3501\"* men|strong=\"G3501\"* as|strong=\"G5613\"* brothers;" + }, + { + "verseNum": 2, + "text": "the|strong=\"G1722\"* elder|strong=\"G4245\"* women|strong=\"G4245\"* as|strong=\"G5613\"* mothers|strong=\"G3384\"*; the|strong=\"G1722\"* younger|strong=\"G3501\"* as|strong=\"G5613\"* sisters, in|strong=\"G1722\"* all|strong=\"G3956\"* purity." + }, + { + "verseNum": 3, + "text": "Honor|strong=\"G5091\"* widows|strong=\"G5503\"* who|strong=\"G3588\"* are|strong=\"G3588\"* widows|strong=\"G5503\"* indeed|strong=\"G3689\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* widow|strong=\"G5503\"* has|strong=\"G2192\"* children|strong=\"G5043\"* or|strong=\"G2228\"* grandchildren|strong=\"G1549\"*, let|strong=\"G1161\"* them|strong=\"G3588\"* learn|strong=\"G3129\"* first|strong=\"G4412\"* to|strong=\"G2532\"* show|strong=\"G2192\"* piety|strong=\"G2151\"* toward their|strong=\"G2532\"* own|strong=\"G2398\"* family|strong=\"G3624\"* and|strong=\"G2532\"* to|strong=\"G2532\"* repay|strong=\"G2192\"* their|strong=\"G2532\"* parents|strong=\"G4269\"*, for|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"*+ 5:4 TR adds “good and”* acceptable in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* she|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* widow|strong=\"G5503\"* indeed|strong=\"G2532\"* and|strong=\"G2532\"* desolate|strong=\"G3443\"*, has|strong=\"G2316\"* her|strong=\"G3588\"* hope|strong=\"G1679\"* set|strong=\"G1679\"* on|strong=\"G1909\"* God|strong=\"G2316\"* and|strong=\"G2532\"* continues|strong=\"G4357\"* in|strong=\"G1909\"* petitions and|strong=\"G2532\"* prayers|strong=\"G4335\"* night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* she|strong=\"G1161\"* who|strong=\"G3588\"* gives|strong=\"G4684\"* herself|strong=\"G4684\"* to|strong=\"G1161\"* pleasure|strong=\"G4684\"* is|strong=\"G3588\"* dead|strong=\"G2348\"* while|strong=\"G1161\"* she|strong=\"G1161\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"G2532\"* command|strong=\"G3853\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* without|strong=\"G2532\"* reproach." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* doesn’t|strong=\"G3588\"* provide|strong=\"G4306\"* for|strong=\"G1161\"* his|strong=\"G2398\"* own|strong=\"G2398\"*, and|strong=\"G2532\"* especially|strong=\"G3122\"* his|strong=\"G2398\"* own|strong=\"G2398\"* household|strong=\"G3609\"*, he|strong=\"G2532\"* has|strong=\"G4102\"* denied the|strong=\"G2532\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* is|strong=\"G1510\"* worse|strong=\"G5501\"* than|strong=\"G2532\"* an|strong=\"G2532\"* unbeliever." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1096\"* no|strong=\"G3361\"* one|strong=\"G1520\"* be|strong=\"G1096\"* enrolled as|strong=\"G1096\"* a|strong=\"G1096\"* widow|strong=\"G5503\"* under|strong=\"G1640\"* sixty|strong=\"G1835\"* years|strong=\"G2094\"* old|strong=\"G2094\"*, having|strong=\"G3361\"* been|strong=\"G1096\"* the|strong=\"G3361\"* wife|strong=\"G1135\"* of|strong=\"G1520\"* one|strong=\"G1520\"* man|strong=\"G1520\"*," + }, + { + "verseNum": 10, + "text": "being|strong=\"G1722\"* approved by|strong=\"G1722\"* good|strong=\"G2570\"* works|strong=\"G2041\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* brought|strong=\"G5044\"* up|strong=\"G1722\"* children|strong=\"G5044\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* been hospitable to|strong=\"G1722\"* strangers|strong=\"G3580\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* washed|strong=\"G3538\"* the|strong=\"G1722\"* saints’ feet|strong=\"G4228\"*, if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* relieved|strong=\"G1884\"* the|strong=\"G1722\"* afflicted|strong=\"G2346\"*, and|strong=\"G3956\"* if|strong=\"G1487\"* she|strong=\"G3956\"* has|strong=\"G2041\"* diligently followed|strong=\"G1872\"* every|strong=\"G3956\"* good|strong=\"G2570\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* younger|strong=\"G3501\"* widows|strong=\"G5503\"*, for|strong=\"G1063\"* when|strong=\"G3752\"* they|strong=\"G1161\"* have|strong=\"G2309\"* grown wanton against|strong=\"G2691\"* Christ|strong=\"G5547\"*, they|strong=\"G1161\"* desire|strong=\"G2309\"* to|strong=\"G2309\"* marry|strong=\"G1060\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* condemnation|strong=\"G2917\"*, because|strong=\"G3754\"* they|strong=\"G3588\"* have|strong=\"G2192\"* rejected their|strong=\"G3588\"* first|strong=\"G4413\"* pledge|strong=\"G4102\"*." + }, + { + "verseNum": 13, + "text": "Besides|strong=\"G2532\"*, they|strong=\"G2532\"* also|strong=\"G2532\"* learn|strong=\"G3129\"* to|strong=\"G2532\"* be|strong=\"G2532\"* idle, going|strong=\"G2532\"* about|strong=\"G4022\"* from|strong=\"G2532\"* house|strong=\"G3614\"* to|strong=\"G2532\"* house|strong=\"G3614\"*. Not|strong=\"G3756\"* only|strong=\"G3440\"* idle, but|strong=\"G1161\"* also|strong=\"G2532\"* gossips|strong=\"G5397\"* and|strong=\"G2532\"* busybodies|strong=\"G4021\"*, saying|strong=\"G2980\"* things|strong=\"G3588\"* which|strong=\"G3588\"* they|strong=\"G2532\"* ought|strong=\"G1163\"* not|strong=\"G3756\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"G3767\"* desire|strong=\"G1014\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G3588\"* younger|strong=\"G3501\"* widows marry|strong=\"G1060\"*, bear|strong=\"G5041\"* children|strong=\"G5041\"*, rule the|strong=\"G3588\"* household, and|strong=\"G3767\"* give|strong=\"G1325\"* no|strong=\"G3367\"* occasion to|strong=\"G1325\"* the|strong=\"G3588\"* adversary for|strong=\"G3367\"* insulting." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* already|strong=\"G2235\"* some|strong=\"G5100\"* have|strong=\"G5100\"* turned|strong=\"G1624\"* away after|strong=\"G3694\"* Satan|strong=\"G4567\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1487\"* any|strong=\"G5100\"* man|strong=\"G5100\"* or|strong=\"G2532\"* woman|strong=\"G4103\"* who|strong=\"G3588\"* believes has|strong=\"G2192\"* widows|strong=\"G5503\"*, let|strong=\"G2443\"* them|strong=\"G3588\"* relieve|strong=\"G1884\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* let|strong=\"G2443\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* be|strong=\"G2532\"* burdened, that|strong=\"G2443\"* it|strong=\"G2532\"* might|strong=\"G2532\"* relieve|strong=\"G1884\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* widows|strong=\"G5503\"* indeed|strong=\"G2532\"*." + }, + { + "verseNum": 17, + "text": "Let|strong=\"G2532\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* who|strong=\"G3588\"* rule|strong=\"G4291\"* well|strong=\"G2573\"* be|strong=\"G2532\"* counted worthy of|strong=\"G3056\"* double|strong=\"G1362\"* honor|strong=\"G5092\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* labor|strong=\"G2872\"* in|strong=\"G1722\"* the|strong=\"G1722\"* word|strong=\"G3056\"* and|strong=\"G2532\"* in|strong=\"G1722\"* teaching|strong=\"G1319\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"*, “You|strong=\"G3004\"* shall|strong=\"G2532\"* not|strong=\"G3756\"* muzzle|strong=\"G5392\"* the|strong=\"G2532\"* ox|strong=\"G1016\"* when|strong=\"G2532\"* it|strong=\"G2532\"* treads out|strong=\"G2532\"* the|strong=\"G2532\"* grain.”+ 5:18 Deuteronomy 25:4* And|strong=\"G2532\"*, “\\+w The|strong=\"G2532\"\\+w* \\+w laborer|strong=\"G2040\"\\+w* \\+w is|strong=\"G3588\"\\+w* worthy \\+w of|strong=\"G2532\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w wages|strong=\"G3408\"\\+w*.”*+ 5:18 Luke 10:7; Leviticus 19:13*" + }, + { + "verseNum": 19, + "text": "Don’t receive|strong=\"G3858\"* an|strong=\"G2228\"* accusation|strong=\"G2724\"* against|strong=\"G2596\"* an|strong=\"G2228\"* elder|strong=\"G4245\"* except|strong=\"G1487\"* at|strong=\"G1909\"* the|strong=\"G1909\"* word of|strong=\"G1909\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 20, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* sin, reprove|strong=\"G1651\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* all|strong=\"G3956\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* also|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G2532\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"G2532\"* command you|strong=\"G4160\"* in|strong=\"G2596\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* chosen|strong=\"G1588\"* angels, that|strong=\"G2443\"* you|strong=\"G4160\"* observe|strong=\"G5442\"* these|strong=\"G3778\"* things|strong=\"G3778\"* without|strong=\"G5565\"* prejudice|strong=\"G4299\"*, doing|strong=\"G4160\"* nothing|strong=\"G3367\"* by|strong=\"G2596\"* partiality|strong=\"G4346\"*." + }, + { + "verseNum": 22, + "text": "Lay|strong=\"G2007\"* hands|strong=\"G5495\"* hastily|strong=\"G5030\"* on|strong=\"G5495\"* no|strong=\"G3367\"* one|strong=\"G3367\"*. Don’t be|strong=\"G3366\"* a|strong=\"G2007\"* participant in|strong=\"G5083\"* other|strong=\"G2841\"* people’s sins. Keep|strong=\"G5083\"* yourself|strong=\"G4572\"* pure." + }, + { + "verseNum": 23, + "text": "Be|strong=\"G2532\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* a|strong=\"G2532\"* drinker of|strong=\"G1223\"* water|strong=\"G5202\"* only|strong=\"G2532\"*, but|strong=\"G2532\"* use|strong=\"G5530\"* a|strong=\"G2532\"* little|strong=\"G3641\"* wine|strong=\"G3631\"* for|strong=\"G1223\"* your|strong=\"G1223\"* stomach|strong=\"G4751\"*’s sake|strong=\"G1223\"* and|strong=\"G2532\"* your|strong=\"G1223\"* frequent|strong=\"G4437\"* infirmities." + }, + { + "verseNum": 24, + "text": "Some|strong=\"G5100\"* men|strong=\"G5100\"*’s sins are|strong=\"G1510\"* evident|strong=\"G4271\"*, preceding them|strong=\"G3588\"* to|strong=\"G1519\"* judgment|strong=\"G2920\"*, and|strong=\"G2532\"* some|strong=\"G5100\"* also|strong=\"G2532\"* follow|strong=\"G1872\"* later." + }, + { + "verseNum": 25, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G5615\"* way|strong=\"G5615\"* also|strong=\"G2532\"* there|strong=\"G2532\"* are|strong=\"G3588\"* good|strong=\"G2570\"* works|strong=\"G2041\"* that|strong=\"G3588\"* are|strong=\"G3588\"* obvious|strong=\"G4271\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* otherwise can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G2532\"* hidden|strong=\"G2928\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1510\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* are|strong=\"G1510\"* bondservants under|strong=\"G5259\"* the|strong=\"G2532\"* yoke|strong=\"G2218\"* count|strong=\"G2233\"* their|strong=\"G2532\"* own|strong=\"G2398\"* masters|strong=\"G1203\"* worthy of|strong=\"G5259\"* all|strong=\"G3956\"* honor|strong=\"G5092\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G5259\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1319\"* not|strong=\"G3361\"* be|strong=\"G1510\"* blasphemed." + }, + { + "verseNum": 2, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2192\"* believing|strong=\"G4103\"* masters|strong=\"G1203\"*, let|strong=\"G1161\"* them|strong=\"G3588\"* not|strong=\"G3361\"* despise|strong=\"G2706\"* them|strong=\"G3588\"* because|strong=\"G3754\"* they|strong=\"G2532\"* are|strong=\"G1510\"* brothers, but|strong=\"G1161\"* rather|strong=\"G3123\"* let|strong=\"G1161\"* them|strong=\"G3588\"* serve|strong=\"G1398\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* those|strong=\"G3588\"* who|strong=\"G3588\"* partake of|strong=\"G2532\"* the|strong=\"G2532\"* benefit|strong=\"G2108\"* are|strong=\"G1510\"* believing|strong=\"G4103\"* and|strong=\"G2532\"* beloved. Teach|strong=\"G1321\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* teaches a|strong=\"G2532\"* different|strong=\"G2085\"* doctrine|strong=\"G1319\"* and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* consent|strong=\"G4334\"* to|strong=\"G2532\"* sound|strong=\"G5198\"* words|strong=\"G3056\"*, the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* doctrine|strong=\"G1319\"* which|strong=\"G3588\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 4, + "text": "he|strong=\"G2532\"* is|strong=\"G3739\"* conceited|strong=\"G5187\"*, knowing|strong=\"G1987\"* nothing|strong=\"G3367\"*, but|strong=\"G2532\"* obsessed with|strong=\"G1537\"* arguments, disputes|strong=\"G3055\"*, and|strong=\"G2532\"* word battles, from|strong=\"G1537\"* which|strong=\"G3739\"* come|strong=\"G1096\"* envy|strong=\"G5355\"*, strife|strong=\"G2054\"*, insulting, evil|strong=\"G4190\"* suspicions|strong=\"G5283\"*," + }, + { + "verseNum": 5, + "text": "constant friction of|strong=\"G2532\"* people|strong=\"G1510\"* of|strong=\"G2532\"* corrupt|strong=\"G1311\"* minds|strong=\"G3563\"* and|strong=\"G2532\"* destitute of|strong=\"G2532\"* the|strong=\"G2532\"* truth, who|strong=\"G3588\"* suppose|strong=\"G3543\"* that|strong=\"G3588\"* godliness|strong=\"G2150\"* is|strong=\"G1510\"* a|strong=\"G2532\"* means|strong=\"G1510\"* of|strong=\"G2532\"* gain|strong=\"G4200\"*. Withdraw yourself from|strong=\"G2532\"* such|strong=\"G3588\"*.+ 6:5 NU omits “Withdraw yourself from such.”*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* godliness|strong=\"G2150\"* with|strong=\"G3326\"* contentment is|strong=\"G1510\"* great|strong=\"G3173\"* gain|strong=\"G4200\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* brought|strong=\"G1533\"* nothing|strong=\"G3762\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*, and|strong=\"G3588\"* we|strong=\"G3754\"* certainly|strong=\"G1063\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* carry|strong=\"G1627\"* anything|strong=\"G5100\"* out|strong=\"G1627\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* having|strong=\"G2192\"* food|strong=\"G1305\"* and|strong=\"G2532\"* clothing, we|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* content with|strong=\"G2532\"* that|strong=\"G2532\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* determined to|strong=\"G1519\"* be|strong=\"G2532\"* rich|strong=\"G4147\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* a|strong=\"G2532\"* temptation|strong=\"G3986\"*, a|strong=\"G2532\"* snare|strong=\"G3803\"*, and|strong=\"G2532\"* many|strong=\"G4183\"* foolish|strong=\"G2532\"* and|strong=\"G2532\"* harmful lusts|strong=\"G1939\"*, such|strong=\"G1161\"* as|strong=\"G1519\"* drown|strong=\"G1036\"* men|strong=\"G3588\"* in|strong=\"G1519\"* ruin|strong=\"G3639\"* and|strong=\"G2532\"* destruction|strong=\"G3639\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* love|strong=\"G5365\"* of|strong=\"G2532\"* money|strong=\"G5365\"* is|strong=\"G1510\"* a|strong=\"G2532\"* root|strong=\"G4491\"* of|strong=\"G2532\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G2532\"* evil|strong=\"G2556\"*. Some|strong=\"G5100\"* have|strong=\"G2532\"* been|strong=\"G1510\"* led astray from|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* in|strong=\"G2532\"* their|strong=\"G1438\"* greed, and|strong=\"G2532\"* have|strong=\"G2532\"* pierced|strong=\"G4044\"* themselves|strong=\"G1438\"* through|strong=\"G4044\"* with|strong=\"G2532\"* many|strong=\"G4183\"* sorrows|strong=\"G3601\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"*, man|strong=\"G3778\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, flee|strong=\"G5343\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, and|strong=\"G1161\"* follow|strong=\"G1377\"* after|strong=\"G1161\"* righteousness|strong=\"G1343\"*, godliness|strong=\"G2150\"*, faith|strong=\"G4102\"*, love, perseverance|strong=\"G5281\"*, and|strong=\"G1161\"* gentleness|strong=\"G4240\"*." + }, + { + "verseNum": 12, + "text": "Fight the|strong=\"G2532\"* good|strong=\"G2570\"* fight of|strong=\"G2532\"* faith|strong=\"G4102\"*. Take|strong=\"G1949\"* hold|strong=\"G1949\"* of|strong=\"G2532\"* the|strong=\"G2532\"* eternal life|strong=\"G2222\"* to|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G3739\"* were|strong=\"G3588\"* called|strong=\"G2564\"*, and|strong=\"G2532\"* you|strong=\"G3739\"* confessed|strong=\"G3670\"* the|strong=\"G2532\"* good|strong=\"G2570\"* confession|strong=\"G3671\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* many|strong=\"G4183\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* command|strong=\"G3853\"* you|strong=\"G4771\"* before|strong=\"G1799\"* God|strong=\"G2316\"* who|strong=\"G3588\"* gives|strong=\"G2225\"* life|strong=\"G2225\"* to|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* before|strong=\"G1799\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* who|strong=\"G3588\"* before|strong=\"G1799\"* Pontius|strong=\"G4194\"* Pilate|strong=\"G4091\"* testified|strong=\"G3140\"* the|strong=\"G2532\"* good|strong=\"G2570\"* confession|strong=\"G3671\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"G3588\"* you|strong=\"G4771\"* keep|strong=\"G5083\"* the|strong=\"G3588\"* commandment|strong=\"G1785\"* without|strong=\"G3588\"* spot, blameless until|strong=\"G3360\"* the|strong=\"G3588\"* appearing|strong=\"G2015\"* of|strong=\"G2962\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 15, + "text": "which|strong=\"G3739\"* at|strong=\"G3588\"* the|strong=\"G2532\"* right|strong=\"G2540\"* time|strong=\"G2540\"* he|strong=\"G2532\"* will|strong=\"G2532\"* show|strong=\"G1166\"*, who|strong=\"G3739\"* is|strong=\"G3588\"* the|strong=\"G2532\"* blessed|strong=\"G3107\"* and|strong=\"G2532\"* only|strong=\"G3441\"* Ruler, the|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* lords|strong=\"G2962\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* alone|strong=\"G3441\"* has|strong=\"G2192\"* immortality, dwelling in|strong=\"G2532\"* unapproachable light|strong=\"G5457\"*, whom|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* has|strong=\"G2192\"* seen|strong=\"G3708\"* nor|strong=\"G3761\"* can|strong=\"G1410\"* see|strong=\"G3708\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* be|strong=\"G2532\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* eternal power|strong=\"G2904\"*. Amen." + }, + { + "verseNum": 17, + "text": "Charge|strong=\"G3853\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* age that|strong=\"G3588\"* they|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* arrogant, nor|strong=\"G3366\"* have|strong=\"G1473\"* their|strong=\"G1722\"* hope|strong=\"G1679\"* set|strong=\"G5426\"* on|strong=\"G1909\"* the|strong=\"G1722\"* uncertainty of|strong=\"G2316\"* riches|strong=\"G4149\"*, but|strong=\"G3361\"* on|strong=\"G1909\"* the|strong=\"G1722\"* living God|strong=\"G2316\"*, who|strong=\"G3588\"* richly|strong=\"G4146\"* provides|strong=\"G3930\"* us|strong=\"G1519\"* with|strong=\"G1722\"* everything|strong=\"G3956\"* to|strong=\"G1519\"* enjoy;" + }, + { + "verseNum": 18, + "text": "that|strong=\"G1722\"* they|strong=\"G1510\"* do|strong=\"G1510\"* good|strong=\"G2570\"*, that|strong=\"G1722\"* they|strong=\"G1510\"* be|strong=\"G1510\"* rich|strong=\"G4147\"* in|strong=\"G1722\"* good|strong=\"G2570\"* works|strong=\"G2041\"*, that|strong=\"G1722\"* they|strong=\"G1510\"* be|strong=\"G1510\"* ready|strong=\"G2843\"* to|strong=\"G1722\"* distribute|strong=\"G2130\"*, willing to|strong=\"G1722\"* share|strong=\"G2843\"*;" + }, + { + "verseNum": 19, + "text": "laying up|strong=\"G1519\"* in|strong=\"G1519\"* store for|strong=\"G1519\"* themselves|strong=\"G1438\"* a|strong=\"G1519\"* good|strong=\"G2570\"* foundation|strong=\"G2310\"* against|strong=\"G1519\"* the|strong=\"G1519\"* time to|strong=\"G1519\"* come|strong=\"G3195\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* lay hold|strong=\"G1949\"* of|strong=\"G3588\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 20, + "text": "Timothy|strong=\"G5095\"*, guard|strong=\"G5442\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* committed|strong=\"G3866\"* to|strong=\"G2532\"* you|strong=\"G2532\"*, turning away from|strong=\"G2532\"* the|strong=\"G2532\"* empty|strong=\"G2757\"* chatter|strong=\"G2757\"* and|strong=\"G2532\"* oppositions of|strong=\"G2532\"* what|strong=\"G3588\"* is|strong=\"G3588\"* falsely|strong=\"G5581\"* called|strong=\"G5581\"* knowledge|strong=\"G1108\"*," + }, + { + "verseNum": 21, + "text": "which|strong=\"G3739\"* some|strong=\"G5100\"* profess, and|strong=\"G4102\"* thus have|strong=\"G5210\"* wandered from|strong=\"G3588\"* the|strong=\"G3588\"* faith|strong=\"G4102\"*." + } + ] + } + ] + }, + { + "name": "2 Timothy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, an|strong=\"G1722\"* apostle of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* through|strong=\"G1223\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* of|strong=\"G1223\"* the|strong=\"G1722\"* life|strong=\"G2222\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* Timothy|strong=\"G5095\"*, my|strong=\"G1473\"* beloved child|strong=\"G5043\"*: Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"*, from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* thank|strong=\"G5485\"* God|strong=\"G2316\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* serve|strong=\"G3000\"* as|strong=\"G5613\"* my|strong=\"G1722\"* forefathers|strong=\"G4269\"* did|strong=\"G2532\"*, with|strong=\"G1722\"* a|strong=\"G2192\"* pure|strong=\"G2513\"* conscience|strong=\"G4893\"*. How|strong=\"G5613\"* unceasing is|strong=\"G3588\"* my|strong=\"G1722\"* memory of|strong=\"G4012\"* you|strong=\"G4771\"* in|strong=\"G1722\"* my|strong=\"G1722\"* petitions, night|strong=\"G3571\"* and|strong=\"G2532\"* day|strong=\"G2250\"*" + }, + { + "verseNum": 4, + "text": "longing|strong=\"G1971\"* to|strong=\"G2443\"* see|strong=\"G3708\"* you|strong=\"G4771\"*, remembering your|strong=\"G3708\"* tears|strong=\"G1144\"*, that|strong=\"G2443\"* I|strong=\"G2443\"* may|strong=\"G2443\"* be|strong=\"G2443\"* filled|strong=\"G4137\"* with|strong=\"G4137\"* joy|strong=\"G5479\"*;" + }, + { + "verseNum": 5, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* reminded of|strong=\"G2532\"* the|strong=\"G1722\"* sincere faith|strong=\"G4102\"* that|strong=\"G3754\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, which|strong=\"G3588\"* lived|strong=\"G2532\"* first|strong=\"G4413\"* in|strong=\"G1722\"* your|strong=\"G2532\"* grandmother|strong=\"G3125\"* Lois|strong=\"G3090\"* and|strong=\"G2532\"* your|strong=\"G2532\"* mother|strong=\"G3384\"* Eunice|strong=\"G2131\"* and|strong=\"G2532\"*, I|strong=\"G2532\"* am|strong=\"G2532\"* persuaded|strong=\"G3982\"*, in|strong=\"G1722\"* you|strong=\"G4771\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1223\"* this|strong=\"G3588\"* cause|strong=\"G1223\"*, I|strong=\"G1473\"* remind you|strong=\"G4771\"* that|strong=\"G3739\"* you|strong=\"G4771\"* should|strong=\"G2316\"* stir up|strong=\"G1722\"* the|strong=\"G1722\"* gift|strong=\"G5486\"* of|strong=\"G1223\"* God|strong=\"G2316\"* which|strong=\"G3739\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G4771\"* through|strong=\"G1223\"* the|strong=\"G1722\"* laying|strong=\"G1936\"* on|strong=\"G1722\"* of|strong=\"G1223\"* my|strong=\"G1722\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* us|strong=\"G1325\"* a|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G4151\"* fear|strong=\"G1167\"*, but|strong=\"G2532\"* of|strong=\"G4151\"* power|strong=\"G1411\"*, love, and|strong=\"G2532\"* self-control|strong=\"G4995\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* be|strong=\"G3361\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* the|strong=\"G2596\"* testimony|strong=\"G3142\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*, nor|strong=\"G3366\"* of|strong=\"G2316\"* me|strong=\"G1473\"* his|strong=\"G2596\"* prisoner|strong=\"G1198\"*; but|strong=\"G3361\"* endure|strong=\"G3767\"* hardship|strong=\"G4777\"* for|strong=\"G2316\"* the|strong=\"G2596\"* Good|strong=\"G3588\"* News|strong=\"G2098\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* power|strong=\"G1411\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 9, + "text": "who|strong=\"G3588\"* saved|strong=\"G4982\"* us|strong=\"G1325\"* and|strong=\"G2532\"* called|strong=\"G2564\"* us|strong=\"G1325\"* with|strong=\"G1722\"* a|strong=\"G2532\"* holy calling|strong=\"G2821\"*, not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2532\"* our|strong=\"G2424\"* works|strong=\"G2041\"*, but|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* own|strong=\"G2398\"* purpose|strong=\"G4286\"* and|strong=\"G2532\"* grace|strong=\"G5485\"*, which|strong=\"G3588\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* before|strong=\"G4253\"* times|strong=\"G5550\"* eternal," + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* has|strong=\"G5547\"* now|strong=\"G1161\"* been|strong=\"G2532\"* revealed|strong=\"G5319\"* by|strong=\"G1223\"* the|strong=\"G2532\"* appearing|strong=\"G2015\"* of|strong=\"G1223\"* our|strong=\"G2424\"* Savior|strong=\"G4990\"*, Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, who|strong=\"G3588\"* abolished|strong=\"G2673\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* brought|strong=\"G5461\"* life|strong=\"G2222\"* and|strong=\"G2532\"* immortality to|strong=\"G2532\"* light|strong=\"G5461\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Good|strong=\"G1223\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1519\"* this|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3739\"* appointed|strong=\"G5087\"* as|strong=\"G1519\"* a|strong=\"G2532\"* preacher|strong=\"G2783\"*, an|strong=\"G2532\"* apostle, and|strong=\"G2532\"* a|strong=\"G2532\"* teacher|strong=\"G1320\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Gentiles." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* I|strong=\"G1473\"* also|strong=\"G2532\"* suffer|strong=\"G3958\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 13, + "text": "Hold|strong=\"G2192\"* the|strong=\"G1722\"* pattern|strong=\"G5296\"* of|strong=\"G3056\"* sound|strong=\"G5198\"* words|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2192\"* heard from|strong=\"G3844\"* me|strong=\"G1473\"*, in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* love which|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"G3588\"* good|strong=\"G2570\"* thing|strong=\"G2570\"* which|strong=\"G3588\"* was|strong=\"G3588\"* committed|strong=\"G3866\"* to|strong=\"G1722\"* you|strong=\"G1722\"*, guard|strong=\"G5442\"* through|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* dwells|strong=\"G1774\"* in|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* you|strong=\"G3739\"* know|strong=\"G1492\"*, that|strong=\"G3754\"* all|strong=\"G3956\"* who|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"* turned away from|strong=\"G2532\"* me|strong=\"G1473\"*, of|strong=\"G2532\"* whom|strong=\"G3739\"* are|strong=\"G1510\"* Phygelus|strong=\"G5436\"* and|strong=\"G2532\"* Hermogenes|strong=\"G2061\"*." + }, + { + "verseNum": 16, + "text": "May|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* grant|strong=\"G1325\"* mercy|strong=\"G1656\"* to|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Onesiphorus|strong=\"G3683\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* often|strong=\"G4178\"* refreshed me|strong=\"G1325\"*, and|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2532\"* my|strong=\"G1325\"* chain," + }, + { + "verseNum": 17, + "text": "but|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* Rome|strong=\"G4516\"*, he|strong=\"G2532\"* sought|strong=\"G2212\"* me|strong=\"G1473\"* diligently|strong=\"G4709\"* and|strong=\"G2532\"* found|strong=\"G2147\"* me|strong=\"G1473\"*" + }, + { + "verseNum": 18, + "text": "(the|strong=\"G1722\"* Lord|strong=\"G2962\"* grant|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* find|strong=\"G2147\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* mercy|strong=\"G1656\"* in|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G2250\"*); and|strong=\"G2532\"* in|strong=\"G1722\"* how|strong=\"G3745\"* many|strong=\"G3745\"* things|strong=\"G3588\"* he|strong=\"G2532\"* served|strong=\"G1247\"* at|strong=\"G1722\"* Ephesus|strong=\"G2181\"*, you|strong=\"G4771\"* know|strong=\"G1097\"* very|strong=\"G2532\"* well|strong=\"G2532\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"G4771\"* therefore|strong=\"G3767\"*, my|strong=\"G1722\"* child|strong=\"G5043\"*, be|strong=\"G3588\"* strengthened|strong=\"G1743\"* in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* things|strong=\"G3778\"* which|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* heard from|strong=\"G3844\"* me|strong=\"G1473\"* among|strong=\"G3844\"* many|strong=\"G4183\"* witnesses|strong=\"G3144\"*, commit|strong=\"G3908\"* the|strong=\"G2532\"* same|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2532\"* faithful|strong=\"G4103\"* men|strong=\"G3778\"* who|strong=\"G3739\"* will|strong=\"G1510\"* be|strong=\"G1510\"* able|strong=\"G2425\"* to|strong=\"G2532\"* teach|strong=\"G1321\"* others|strong=\"G2087\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"G5613\"* therefore must|strong=\"G5547\"* endure hardship|strong=\"G4777\"* as|strong=\"G5613\"* a|strong=\"G5613\"* good|strong=\"G2570\"* soldier|strong=\"G4757\"* of|strong=\"G2424\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 4, + "text": "No|strong=\"G3762\"* soldier|strong=\"G4754\"* on|strong=\"G2443\"* duty entangles|strong=\"G1707\"* himself|strong=\"G1707\"* in|strong=\"G3588\"* the|strong=\"G3588\"* affairs|strong=\"G4230\"* of|strong=\"G3588\"* life|strong=\"G3762\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* please him|strong=\"G3588\"* who|strong=\"G3588\"* enrolled him|strong=\"G3588\"* as|strong=\"G2443\"* a|strong=\"G2443\"* soldier|strong=\"G4754\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"G2532\"*, if|strong=\"G1437\"* anyone|strong=\"G5100\"* competes in|strong=\"G2532\"* athletics, he|strong=\"G2532\"* isn’t crowned|strong=\"G4737\"* unless|strong=\"G1437\"* he|strong=\"G2532\"* has|strong=\"G5100\"* competed by|strong=\"G2532\"* the|strong=\"G2532\"* rules|strong=\"G3545\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G3588\"* farmer|strong=\"G1092\"* who|strong=\"G3588\"* labors|strong=\"G2872\"* must|strong=\"G1163\"* be|strong=\"G1163\"* the|strong=\"G3588\"* first|strong=\"G4413\"* to|strong=\"G1163\"* get a|strong=\"G2590\"* share|strong=\"G3335\"* of|strong=\"G3588\"* the|strong=\"G3588\"* crops|strong=\"G2590\"*." + }, + { + "verseNum": 7, + "text": "Consider|strong=\"G3539\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*, and|strong=\"G2962\"* may|strong=\"G3956\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* give|strong=\"G1325\"* you|strong=\"G4771\"* understanding|strong=\"G4907\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 8, + "text": "Remember|strong=\"G3421\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, risen|strong=\"G1453\"* from|strong=\"G1537\"* the|strong=\"G1537\"* dead|strong=\"G3498\"*, of|strong=\"G1537\"* the|strong=\"G1537\"* offspring+ 2:8 or, seed* of|strong=\"G1537\"* David|strong=\"G1138\"*, according|strong=\"G2596\"* to|strong=\"G2596\"* my|strong=\"G1473\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*," + }, + { + "verseNum": 9, + "text": "in|strong=\"G1722\"* which|strong=\"G3739\"* I|strong=\"G3739\"* suffer|strong=\"G2553\"* hardship|strong=\"G2553\"* to|strong=\"G1722\"* the|strong=\"G1722\"* point|strong=\"G3360\"* of|strong=\"G3056\"* chains|strong=\"G1199\"* as|strong=\"G5613\"* a|strong=\"G5613\"* criminal|strong=\"G2557\"*. But|strong=\"G2316\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* isn’t|strong=\"G3588\"* chained." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1223\"* I|strong=\"G2532\"* endure|strong=\"G5278\"* all|strong=\"G3956\"* things|strong=\"G3956\"* for|strong=\"G1223\"* the|strong=\"G1722\"* chosen|strong=\"G1588\"* ones’ sake|strong=\"G1223\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* also|strong=\"G2532\"* may|strong=\"G2532\"* obtain|strong=\"G5177\"* the|strong=\"G1722\"* salvation|strong=\"G4991\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* with|strong=\"G3326\"* eternal glory|strong=\"G1391\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"G3588\"* saying|strong=\"G3056\"* is|strong=\"G3588\"* trustworthy|strong=\"G4103\"*:" + }, + { + "verseNum": 12, + "text": "If|strong=\"G1487\"* we|strong=\"G2249\"* endure|strong=\"G5278\"*," + }, + { + "verseNum": 13, + "text": "If|strong=\"G1487\"* we|strong=\"G1063\"* are|strong=\"G3306\"* faithless," + }, + { + "verseNum": 14, + "text": "Remind|strong=\"G5279\"* them|strong=\"G3588\"* of|strong=\"G2316\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, charging|strong=\"G1263\"* them|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G1909\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* the|strong=\"G1909\"* Lord|strong=\"G2962\"* that|strong=\"G3588\"* they|strong=\"G3588\"* don’t|strong=\"G3588\"* argue about|strong=\"G1909\"* words|strong=\"G3054\"* to|strong=\"G1909\"* no|strong=\"G3762\"* profit|strong=\"G5539\"*, to|strong=\"G1909\"* the|strong=\"G1909\"* subverting|strong=\"G2692\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear." + }, + { + "verseNum": 15, + "text": "Give diligence|strong=\"G4704\"* to|strong=\"G4704\"* present|strong=\"G3936\"* yourself|strong=\"G4572\"* approved|strong=\"G1384\"* by|strong=\"G3936\"* God|strong=\"G2316\"*, a|strong=\"G3056\"* workman|strong=\"G2040\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* need to|strong=\"G4704\"* be|strong=\"G2316\"* ashamed, properly handling|strong=\"G3718\"* the|strong=\"G3588\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* Truth." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* shun|strong=\"G4026\"* empty|strong=\"G2757\"* chatter|strong=\"G2757\"*, for|strong=\"G1063\"* it|strong=\"G1161\"* will|strong=\"G4183\"* go|strong=\"G4298\"* further|strong=\"G4119\"* in|strong=\"G1909\"* ungodliness," + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* those|strong=\"G3588\"* words|strong=\"G3056\"* will|strong=\"G1510\"* consume like|strong=\"G5613\"* gangrene|strong=\"G1044\"*, of|strong=\"G3056\"* whom|strong=\"G3739\"* is|strong=\"G1510\"* Hymenaeus|strong=\"G5211\"* and|strong=\"G2532\"* Philetus|strong=\"G5372\"*:" + }, + { + "verseNum": 18, + "text": "men|strong=\"G5100\"* who|strong=\"G3588\"* have|strong=\"G2532\"* erred concerning|strong=\"G4012\"* the|strong=\"G2532\"* truth, saying|strong=\"G3004\"* that|strong=\"G3588\"* the|strong=\"G2532\"* resurrection is|strong=\"G3588\"* already|strong=\"G2235\"* past|strong=\"G1096\"*, and|strong=\"G2532\"* overthrowing the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G4012\"* some|strong=\"G5100\"*." + }, + { + "verseNum": 19, + "text": "However|strong=\"G3305\"*, God|strong=\"G2316\"*’s|strong=\"G2962\"* firm|strong=\"G2476\"* foundation|strong=\"G2310\"* stands|strong=\"G2476\"*, having|strong=\"G2192\"* this|strong=\"G3778\"* seal|strong=\"G4973\"*: “The|strong=\"G2532\"* Lord|strong=\"G2962\"* knows|strong=\"G1097\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* his|strong=\"G3956\"*,”+ 2:19 Numbers 16:5* and|strong=\"G2532\"*, “Let|strong=\"G1097\"* every|strong=\"G3956\"* one|strong=\"G3956\"* who|strong=\"G3588\"* names|strong=\"G3686\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*+ 2:19 TR reads “Christ” instead of “the Lord”* depart from|strong=\"G2532\"* unrighteousness.”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* a|strong=\"G2532\"* large|strong=\"G3173\"* house|strong=\"G3614\"* there|strong=\"G2532\"* are|strong=\"G1510\"* not|strong=\"G3756\"* only|strong=\"G3440\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* gold|strong=\"G5552\"* and|strong=\"G2532\"* of|strong=\"G2532\"* silver, but|strong=\"G1161\"* also|strong=\"G2532\"* of|strong=\"G2532\"* wood|strong=\"G3585\"* and|strong=\"G2532\"* of|strong=\"G2532\"* clay|strong=\"G3749\"*. Some|strong=\"G3739\"* are|strong=\"G1510\"* for|strong=\"G1519\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* some|strong=\"G3739\"* for|strong=\"G1519\"* dishonor." + }, + { + "verseNum": 21, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* therefore|strong=\"G3767\"* purges himself|strong=\"G1438\"* from|strong=\"G3588\"* these|strong=\"G3778\"*, he|strong=\"G3778\"* will|strong=\"G1510\"* be|strong=\"G1510\"* a|strong=\"G1519\"* vessel|strong=\"G4632\"* for|strong=\"G1519\"* honor|strong=\"G5092\"*, sanctified|strong=\"G3956\"*, and|strong=\"G5092\"* suitable|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G1519\"* master|strong=\"G1203\"*’s use|strong=\"G2173\"*, prepared|strong=\"G2090\"* for|strong=\"G1519\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + }, + { + "verseNum": 22, + "text": "Flee|strong=\"G5343\"* from|strong=\"G1537\"* youthful|strong=\"G3512\"* lusts|strong=\"G1939\"*; but|strong=\"G1161\"* pursue|strong=\"G1377\"* righteousness|strong=\"G1343\"*, faith|strong=\"G4102\"*, love, and|strong=\"G1161\"* peace|strong=\"G1515\"* with|strong=\"G3326\"* those|strong=\"G3588\"* who|strong=\"G3588\"* call|strong=\"G1941\"* on|strong=\"G1537\"* the|strong=\"G1537\"* Lord|strong=\"G2962\"* out|strong=\"G1537\"* of|strong=\"G1537\"* a|strong=\"G1161\"* pure|strong=\"G2513\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"G1161\"* refuse|strong=\"G3868\"* foolish|strong=\"G3474\"* and|strong=\"G2532\"* ignorant questionings, knowing|strong=\"G1492\"* that|strong=\"G3754\"* they|strong=\"G2532\"* generate strife." + }, + { + "verseNum": 24, + "text": "The|strong=\"G3956\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* servant|strong=\"G1401\"* must|strong=\"G1163\"* not|strong=\"G3756\"* quarrel, but|strong=\"G1161\"* be|strong=\"G1510\"* gentle|strong=\"G2261\"* toward|strong=\"G4314\"* all|strong=\"G3956\"*, able|strong=\"G1317\"* to|strong=\"G4314\"* teach|strong=\"G1317\"*, patient," + }, + { + "verseNum": 25, + "text": "in|strong=\"G1722\"* gentleness|strong=\"G4240\"* correcting|strong=\"G3811\"* those|strong=\"G3588\"* who|strong=\"G3588\"* oppose him|strong=\"G3588\"*. Perhaps|strong=\"G3379\"* God|strong=\"G2316\"* may|strong=\"G2316\"* give|strong=\"G1325\"* them|strong=\"G3588\"* repentance|strong=\"G3341\"* leading|strong=\"G1519\"* to|strong=\"G1519\"* a|strong=\"G1519\"* full|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* may|strong=\"G2532\"* recover themselves|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* devil|strong=\"G1228\"*’s snare|strong=\"G3803\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* taken captive|strong=\"G2221\"* by|strong=\"G5259\"* him|strong=\"G3588\"* to|strong=\"G1519\"* do|strong=\"G2532\"* his|strong=\"G1519\"* will|strong=\"G2307\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* know|strong=\"G1097\"* this|strong=\"G3778\"*: that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*, grievous times|strong=\"G2540\"* will|strong=\"G3778\"* come|strong=\"G1764\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* men|strong=\"G3588\"* will|strong=\"G1510\"* be|strong=\"G1510\"* lovers|strong=\"G5366\"* of|strong=\"G3588\"* self|strong=\"G5367\"*, lovers|strong=\"G5366\"* of|strong=\"G3588\"* money|strong=\"G5366\"*, boastful, arrogant|strong=\"G5244\"*, blasphemers, disobedient to|strong=\"G1510\"* parents|strong=\"G1118\"*, unthankful, unholy," + }, + { + "verseNum": 3, + "text": "without natural affection, unforgiving, slanderers|strong=\"G1228\"*, without self-control, fierce, not lovers of|strong=\"G1228\"* good," + }, + { + "verseNum": 4, + "text": "traitors|strong=\"G4273\"*, headstrong, conceited|strong=\"G5187\"*, lovers|strong=\"G5377\"* of|strong=\"G2228\"* pleasure|strong=\"G5369\"* rather|strong=\"G3123\"* than|strong=\"G2228\"* lovers|strong=\"G5377\"* of|strong=\"G2228\"* God|strong=\"G5377\"*," + }, + { + "verseNum": 5, + "text": "holding|strong=\"G2192\"* a|strong=\"G2192\"* form|strong=\"G3446\"* of|strong=\"G2532\"* godliness|strong=\"G2150\"* but|strong=\"G1161\"* having|strong=\"G2192\"* denied its power|strong=\"G1411\"*. Turn away from|strong=\"G2532\"* these|strong=\"G3778\"*, also|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* some|strong=\"G3588\"* of|strong=\"G1537\"* these|strong=\"G3778\"* are|strong=\"G1510\"* people|strong=\"G1510\"* who|strong=\"G3588\"* creep|strong=\"G1744\"* into|strong=\"G1519\"* houses|strong=\"G3614\"* and|strong=\"G2532\"* take|strong=\"G2532\"* captive gullible women|strong=\"G1133\"* loaded down|strong=\"G1537\"* with|strong=\"G1537\"* sins, led away by|strong=\"G1537\"* various|strong=\"G4164\"* lusts|strong=\"G1939\"*," + }, + { + "verseNum": 7, + "text": "always|strong=\"G3842\"* learning|strong=\"G3129\"* and|strong=\"G2532\"* never|strong=\"G3368\"* able|strong=\"G1410\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 8, + "text": "Even|strong=\"G2532\"* as|strong=\"G1161\"* Jannes|strong=\"G2389\"* and|strong=\"G2532\"* Jambres|strong=\"G2387\"* opposed Moses|strong=\"G3475\"*, so|strong=\"G3779\"* these|strong=\"G3778\"* also|strong=\"G2532\"* oppose the|strong=\"G2532\"* truth, men|strong=\"G3778\"* corrupted in|strong=\"G2532\"* mind|strong=\"G3563\"*, who|strong=\"G3739\"* concerning|strong=\"G4012\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* are|strong=\"G3588\"* rejected." + }, + { + "verseNum": 9, + "text": "But|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G1510\"* proceed|strong=\"G4298\"* no|strong=\"G3756\"* further|strong=\"G4119\"*. For|strong=\"G1063\"* their|strong=\"G2532\"* folly will|strong=\"G1510\"* be|strong=\"G1096\"* evident to|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, as|strong=\"G5613\"* theirs|strong=\"G1565\"* also|strong=\"G2532\"* came|strong=\"G1096\"* to|strong=\"G2532\"* be|strong=\"G1096\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* followed|strong=\"G3877\"* my|strong=\"G1473\"* teaching|strong=\"G1319\"*, conduct, purpose|strong=\"G4286\"*, faith|strong=\"G4102\"*, patience|strong=\"G5281\"*, love, steadfastness|strong=\"G5281\"*," + }, + { + "verseNum": 11, + "text": "persecutions|strong=\"G1375\"*, and|strong=\"G2532\"* sufferings|strong=\"G3804\"*—those|strong=\"G3588\"* things|strong=\"G3956\"* that|strong=\"G3588\"* happened|strong=\"G1096\"* to|strong=\"G2532\"* me|strong=\"G1473\"* at|strong=\"G1722\"* Antioch, Iconium|strong=\"G2430\"*, and|strong=\"G2532\"* Lystra|strong=\"G3082\"*. I|strong=\"G1473\"* endured|strong=\"G5297\"* those|strong=\"G3588\"* persecutions|strong=\"G1375\"*. The|strong=\"G1722\"* Lord|strong=\"G2962\"* delivered|strong=\"G4506\"* me|strong=\"G1473\"* out|strong=\"G1537\"* of|strong=\"G1537\"* them|strong=\"G3588\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 12, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* desire|strong=\"G2309\"* to|strong=\"G2532\"* live|strong=\"G2198\"* godly|strong=\"G2153\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"* will|strong=\"G2309\"* suffer|strong=\"G2532\"* persecution|strong=\"G1377\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* evil|strong=\"G4190\"* men|strong=\"G3588\"* and|strong=\"G2532\"* impostors|strong=\"G1114\"* will|strong=\"G2532\"* grow worse|strong=\"G5501\"* and|strong=\"G2532\"* worse|strong=\"G5501\"*, deceiving|strong=\"G4105\"* and|strong=\"G2532\"* being|strong=\"G2532\"* deceived|strong=\"G4105\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* learned|strong=\"G3129\"* and|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* assured of|strong=\"G2532\"*, knowing|strong=\"G1492\"* from|strong=\"G3844\"* whom|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2532\"* learned|strong=\"G3129\"* them|strong=\"G1722\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"G2532\"* infancy|strong=\"G1025\"*, you|strong=\"G4771\"* have|strong=\"G2532\"* known|strong=\"G1492\"* the|strong=\"G1722\"* holy|strong=\"G2413\"* Scriptures|strong=\"G1121\"* which|strong=\"G3588\"* are|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1519\"* make|strong=\"G1519\"* you|strong=\"G4771\"* wise|strong=\"G4679\"* for|strong=\"G3754\"* salvation|strong=\"G4991\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*." + }, + { + "verseNum": 16, + "text": "Every|strong=\"G3956\"* Scripture|strong=\"G1124\"* is|strong=\"G3588\"* God-breathed and|strong=\"G2532\"*+ 3:16 or, Every writing inspired by God is* profitable|strong=\"G5624\"* for|strong=\"G4314\"* teaching|strong=\"G1319\"*, for|strong=\"G4314\"* reproof|strong=\"G1650\"*, for|strong=\"G4314\"* correction|strong=\"G1882\"*, and|strong=\"G2532\"* for|strong=\"G4314\"* instruction|strong=\"G1319\"* in|strong=\"G1722\"* righteousness|strong=\"G1343\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"G2443\"* each person who|strong=\"G3588\"* belongs|strong=\"G1510\"* to|strong=\"G4314\"* God|strong=\"G2316\"* may|strong=\"G2443\"* be|strong=\"G1510\"* complete|strong=\"G3956\"*, thoroughly equipped|strong=\"G1822\"* for|strong=\"G4314\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* command you|strong=\"G2532\"* therefore|strong=\"G2532\"* before|strong=\"G1799\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* at|strong=\"G2316\"* his|strong=\"G2532\"* appearing|strong=\"G2015\"* and|strong=\"G2532\"* his|strong=\"G2532\"* Kingdom:" + }, + { + "verseNum": 2, + "text": "preach|strong=\"G2784\"* the|strong=\"G1722\"* word|strong=\"G3056\"*; be|strong=\"G2532\"* urgent in|strong=\"G1722\"* season|strong=\"G2122\"* and|strong=\"G2532\"* out|strong=\"G2532\"* of|strong=\"G3056\"* season|strong=\"G2122\"*; reprove|strong=\"G1651\"*, rebuke|strong=\"G2008\"*, and|strong=\"G2532\"* exhort|strong=\"G3870\"* with|strong=\"G1722\"* all|strong=\"G3956\"* patience|strong=\"G3115\"* and|strong=\"G2532\"* teaching|strong=\"G1322\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* the|strong=\"G2596\"* time|strong=\"G2540\"* will|strong=\"G1510\"* come|strong=\"G1510\"* when|strong=\"G3753\"* they|strong=\"G3588\"* will|strong=\"G1510\"* not|strong=\"G3756\"* listen to|strong=\"G2596\"* the|strong=\"G2596\"* sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*, but|strong=\"G1063\"* having itching|strong=\"G2833\"* ears, will|strong=\"G1510\"* heap|strong=\"G2002\"* up for|strong=\"G1063\"* themselves|strong=\"G1438\"* teachers|strong=\"G1320\"* after|strong=\"G2596\"* their|strong=\"G1438\"* own|strong=\"G2398\"* lusts|strong=\"G1939\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* will|strong=\"G2532\"* turn|strong=\"G1624\"* away their|strong=\"G2532\"* ears from|strong=\"G2532\"* the|strong=\"G2532\"* truth, and|strong=\"G2532\"* turn|strong=\"G1624\"* away to|strong=\"G2532\"* fables|strong=\"G3454\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* you|strong=\"G4771\"* be|strong=\"G3956\"* sober|strong=\"G3525\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, suffer|strong=\"G2553\"* hardship|strong=\"G2553\"*, do|strong=\"G4160\"* the|strong=\"G1722\"* work|strong=\"G2041\"* of|strong=\"G2041\"* an|strong=\"G1722\"* evangelist|strong=\"G2099\"*, and|strong=\"G1161\"* fulfill|strong=\"G4135\"* your|strong=\"G4160\"* ministry|strong=\"G1248\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* I|strong=\"G1473\"* am|strong=\"G1473\"* already|strong=\"G2235\"* being|strong=\"G2532\"* offered|strong=\"G4689\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* time|strong=\"G2540\"* of|strong=\"G2532\"* my|strong=\"G1473\"* departure has|strong=\"G2532\"* come|strong=\"G2186\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"G5083\"* have|strong=\"G3588\"* fought the|strong=\"G3588\"* good|strong=\"G2570\"* fight. I|strong=\"G5083\"* have|strong=\"G3588\"* finished|strong=\"G5055\"* the|strong=\"G3588\"* course|strong=\"G1408\"*. I|strong=\"G5083\"* have|strong=\"G3588\"* kept|strong=\"G5083\"* the|strong=\"G3588\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"G2532\"* now|strong=\"G1161\"* on|strong=\"G1722\"*, the|strong=\"G1722\"* crown|strong=\"G4735\"* of|strong=\"G2250\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* stored up|strong=\"G2532\"* for|strong=\"G1161\"* me|strong=\"G1473\"*, which|strong=\"G3739\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*, the|strong=\"G1722\"* righteous|strong=\"G1342\"* judge|strong=\"G2923\"*, will|strong=\"G2532\"* give|strong=\"G1473\"* to|strong=\"G2532\"* me|strong=\"G1473\"* on|strong=\"G1722\"* that|strong=\"G3739\"* day|strong=\"G2250\"*; and|strong=\"G2532\"* not|strong=\"G3756\"* to|strong=\"G2532\"* me|strong=\"G1473\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* to|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* loved his|strong=\"G3956\"* appearing|strong=\"G2015\"*." + }, + { + "verseNum": 9, + "text": "Be diligent|strong=\"G4704\"* to|strong=\"G4314\"* come|strong=\"G2064\"* to|strong=\"G4314\"* me|strong=\"G1473\"* soon|strong=\"G5030\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* Demas|strong=\"G1214\"* left|strong=\"G1459\"* me|strong=\"G1473\"*, having|strong=\"G2532\"* loved this|strong=\"G3588\"* present|strong=\"G3568\"* world, and|strong=\"G2532\"* went|strong=\"G4198\"* to|strong=\"G1519\"* Thessalonica|strong=\"G2332\"*; Crescens|strong=\"G2913\"* to|strong=\"G1519\"* Galatia|strong=\"G1053\"*; and|strong=\"G2532\"* Titus|strong=\"G5103\"* to|strong=\"G1519\"* Dalmatia|strong=\"G1149\"*." + }, + { + "verseNum": 11, + "text": "Only|strong=\"G3441\"* Luke|strong=\"G3065\"* is|strong=\"G1510\"* with|strong=\"G3326\"* me|strong=\"G1473\"*. Take Mark|strong=\"G3138\"* and|strong=\"G3326\"* bring|strong=\"G1519\"* him|strong=\"G1519\"* with|strong=\"G3326\"* you|strong=\"G1510\"*, for|strong=\"G1063\"* he|strong=\"G1063\"* is|strong=\"G1510\"* useful|strong=\"G2173\"* to|strong=\"G1519\"* me|strong=\"G1473\"* for|strong=\"G1063\"* service|strong=\"G1248\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* sent Tychicus|strong=\"G5190\"* to|strong=\"G1519\"* Ephesus|strong=\"G2181\"*." + }, + { + "verseNum": 13, + "text": "Bring|strong=\"G5342\"* the|strong=\"G1722\"* cloak that|strong=\"G3739\"* I|strong=\"G3739\"* left at|strong=\"G1722\"* Troas|strong=\"G5174\"* with|strong=\"G1722\"* Carpus|strong=\"G2591\"* when|strong=\"G2532\"* you|strong=\"G3739\"* come|strong=\"G2064\"*—and|strong=\"G2532\"* the|strong=\"G1722\"* books, especially|strong=\"G3122\"* the|strong=\"G1722\"* parchments|strong=\"G3200\"*." + }, + { + "verseNum": 14, + "text": "Alexander the|strong=\"G2596\"* coppersmith|strong=\"G5471\"* did|strong=\"G1731\"* much|strong=\"G4183\"* evil|strong=\"G2556\"* to|strong=\"G2596\"* me|strong=\"G1473\"*. The|strong=\"G2596\"* Lord|strong=\"G2962\"* will|strong=\"G2962\"* repay him|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2596\"* his|strong=\"G2596\"* deeds|strong=\"G2041\"*." + }, + { + "verseNum": 15, + "text": "Beware|strong=\"G5442\"* of|strong=\"G3056\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* greatly|strong=\"G3029\"* opposed our|strong=\"G2251\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"G1722\"* my|strong=\"G1722\"* first|strong=\"G4413\"* defense, no|strong=\"G3762\"* one|strong=\"G3762\"* came|strong=\"G3854\"* to|strong=\"G1722\"* help me|strong=\"G1473\"*, but|strong=\"G3361\"* all|strong=\"G3956\"* left|strong=\"G1459\"* me|strong=\"G1473\"*. May|strong=\"G3956\"* it|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* held against|strong=\"G1722\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* stood|strong=\"G3936\"* by|strong=\"G1223\"* me|strong=\"G1473\"* and|strong=\"G2532\"* strengthened|strong=\"G1743\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* me|strong=\"G1473\"* the|strong=\"G2532\"* message|strong=\"G2782\"* might|strong=\"G2532\"* be|strong=\"G2532\"* fully|strong=\"G4135\"* proclaimed, and|strong=\"G2532\"* that|strong=\"G2443\"* all|strong=\"G3956\"* the|strong=\"G2532\"* Gentiles|strong=\"G1484\"* might|strong=\"G2532\"* hear. So|strong=\"G2443\"* I|strong=\"G1473\"* was|strong=\"G3588\"* delivered|strong=\"G4506\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* lion|strong=\"G3023\"*." + }, + { + "verseNum": 18, + "text": "And|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* deliver|strong=\"G4506\"* me|strong=\"G1473\"* from|strong=\"G2532\"* every|strong=\"G3956\"* evil|strong=\"G4190\"* work|strong=\"G2041\"* and|strong=\"G2532\"* will|strong=\"G2532\"* preserve|strong=\"G4982\"* me|strong=\"G1473\"* for|strong=\"G1519\"* his|strong=\"G3956\"* heavenly|strong=\"G2032\"* Kingdom. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 19, + "text": "Greet Prisca|strong=\"G4251\"* and|strong=\"G2532\"* Aquila, and|strong=\"G2532\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2532\"* Onesiphorus|strong=\"G3683\"*." + }, + { + "verseNum": 20, + "text": "Erastus|strong=\"G2037\"* remained|strong=\"G3306\"* at|strong=\"G1722\"* Corinth|strong=\"G2882\"*, but|strong=\"G1161\"* I|strong=\"G1161\"* left Trophimus|strong=\"G5161\"* at|strong=\"G1722\"* Miletus|strong=\"G3399\"* sick." + }, + { + "verseNum": 21, + "text": "Be|strong=\"G2532\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* come|strong=\"G2064\"* before|strong=\"G4253\"* winter|strong=\"G5494\"*. Eubulus|strong=\"G2103\"* salutes you|strong=\"G4771\"*, as|strong=\"G2532\"* do|strong=\"G2532\"* Pudens|strong=\"G4227\"*, Linus|strong=\"G3044\"*, Claudia|strong=\"G2803\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* brothers." + }, + { + "verseNum": 22, + "text": "The|strong=\"G3588\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2962\"* Christ|strong=\"G2962\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*. Grace|strong=\"G5485\"* be|strong=\"G3588\"* with|strong=\"G3326\"* you|strong=\"G5210\"*. Amen." + } + ] + } + ] + }, + { + "name": "Titus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* an|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G2316\"* God|strong=\"G2316\"*’s chosen|strong=\"G1588\"* ones and|strong=\"G2532\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* the|strong=\"G2532\"* truth which|strong=\"G3588\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1909\"* hope|strong=\"G1680\"* of|strong=\"G2316\"* eternal life|strong=\"G2222\"*, which|strong=\"G3739\"* God|strong=\"G2316\"*, who|strong=\"G3739\"* can’t|strong=\"G3588\"* lie, promised|strong=\"G1861\"* before|strong=\"G4253\"* time|strong=\"G5550\"* began|strong=\"G1909\"*;" + }, + { + "verseNum": 3, + "text": "but|strong=\"G1161\"* in|strong=\"G1722\"* his|strong=\"G1722\"* own|strong=\"G2398\"* time|strong=\"G2540\"* revealed|strong=\"G5319\"* his|strong=\"G1722\"* word|strong=\"G3056\"* in|strong=\"G1722\"* the|strong=\"G1722\"* message|strong=\"G3056\"* with|strong=\"G1722\"* which|strong=\"G3739\"* I|strong=\"G1473\"* was|strong=\"G3588\"* entrusted|strong=\"G4100\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* commandment|strong=\"G2003\"* of|strong=\"G3056\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"G2532\"* Titus|strong=\"G5103\"*, my|strong=\"G1473\"* true|strong=\"G1103\"* child|strong=\"G5043\"* according|strong=\"G2596\"* to|strong=\"G2532\"* a|strong=\"G2532\"* common|strong=\"G2839\"* faith|strong=\"G4102\"*: Grace|strong=\"G5485\"*, mercy, and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"G1473\"* left|strong=\"G5484\"* you|strong=\"G4771\"* in|strong=\"G1722\"* Crete|strong=\"G2914\"* for|strong=\"G1722\"* this|strong=\"G3778\"* reason|strong=\"G5484\"*, that|strong=\"G2443\"* you|strong=\"G4771\"* would|strong=\"G2532\"* set|strong=\"G2525\"* in|strong=\"G1722\"* order|strong=\"G2443\"* the|strong=\"G1722\"* things|strong=\"G3778\"* that|strong=\"G2443\"* were|strong=\"G3588\"* lacking|strong=\"G3007\"* and|strong=\"G2532\"* appoint|strong=\"G2525\"* elders|strong=\"G4245\"* in|strong=\"G1722\"* every|strong=\"G2596\"* city|strong=\"G4172\"*, as|strong=\"G5613\"* I|strong=\"G1473\"* directed|strong=\"G1299\"* you|strong=\"G4771\"*—" + }, + { + "verseNum": 6, + "text": "if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* blameless, the|strong=\"G1722\"* husband of|strong=\"G1520\"* one|strong=\"G1520\"* wife|strong=\"G1135\"*, having|strong=\"G2192\"* children|strong=\"G5043\"* who|strong=\"G5101\"* believe|strong=\"G4103\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* not|strong=\"G3361\"* accused|strong=\"G2724\"* of|strong=\"G1520\"* loose|strong=\"G5101\"* or|strong=\"G2228\"* unruly behavior." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G3588\"* overseer|strong=\"G1985\"* must|strong=\"G1163\"* be|strong=\"G1510\"* blameless, as|strong=\"G5613\"* God|strong=\"G2316\"*’s steward|strong=\"G3623\"*, not|strong=\"G3361\"* self-pleasing, not|strong=\"G3361\"* easily angered, not|strong=\"G3361\"* given|strong=\"G3361\"* to|strong=\"G1163\"* wine|strong=\"G3943\"*, not|strong=\"G3361\"* violent|strong=\"G4131\"*, not|strong=\"G3361\"* greedy for|strong=\"G1063\"* dishonest gain;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1342\"* given to|strong=\"G3741\"* hospitality|strong=\"G5382\"*, a lover of|strong=\"G3741\"* good|strong=\"G5358\"*, sober|strong=\"G4998\"* minded, fair, holy|strong=\"G3741\"*, self-controlled|strong=\"G4998\"*," + }, + { + "verseNum": 9, + "text": "holding to|strong=\"G2443\"* the|strong=\"G1722\"* faithful|strong=\"G4103\"* word|strong=\"G3056\"* which|strong=\"G3588\"* is|strong=\"G1510\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G1510\"* able|strong=\"G1415\"* to|strong=\"G2443\"* exhort|strong=\"G3870\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sound|strong=\"G5198\"* doctrine|strong=\"G1322\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* convict|strong=\"G1651\"* those|strong=\"G3588\"* who|strong=\"G3588\"* contradict him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* are|strong=\"G1510\"* also|strong=\"G2532\"* many|strong=\"G4183\"* unruly men|strong=\"G3588\"*, vain|strong=\"G2532\"* talkers|strong=\"G3151\"* and|strong=\"G2532\"* deceivers|strong=\"G5423\"*, especially|strong=\"G3122\"* those|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* circumcision|strong=\"G4061\"*," + }, + { + "verseNum": 11, + "text": "whose|strong=\"G3739\"* mouths|strong=\"G1993\"* must|strong=\"G1163\"* be|strong=\"G1163\"* stopped|strong=\"G1993\"*: men|strong=\"G3739\"* who|strong=\"G3739\"* overthrow whole|strong=\"G3650\"* houses|strong=\"G3624\"*, teaching|strong=\"G1321\"* things|strong=\"G3739\"* which|strong=\"G3739\"* they|strong=\"G3739\"* ought|strong=\"G1163\"* not|strong=\"G3361\"*, for|strong=\"G5484\"* dishonest gain|strong=\"G2771\"*’s sake|strong=\"G5484\"*." + }, + { + "verseNum": 12, + "text": "One|strong=\"G5100\"* of|strong=\"G1537\"* them|strong=\"G3004\"*, a|strong=\"G1537\"* prophet|strong=\"G4396\"* of|strong=\"G1537\"* their|strong=\"G2398\"* own|strong=\"G2398\"*, said|strong=\"G3004\"*, “Cretans|strong=\"G2912\"* are|strong=\"G4396\"* always liars|strong=\"G5583\"*, evil|strong=\"G2556\"* beasts|strong=\"G2342\"*, and|strong=\"G4396\"* idle gluttons|strong=\"G1064\"*.”" + }, + { + "verseNum": 13, + "text": "This|strong=\"G3778\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*. For|strong=\"G1223\"* this|strong=\"G3778\"* cause|strong=\"G1223\"*, reprove|strong=\"G1651\"* them|strong=\"G3588\"* sharply, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* be|strong=\"G1510\"* sound|strong=\"G5198\"* in|strong=\"G1722\"* the|strong=\"G1722\"* faith|strong=\"G4102\"*," + }, + { + "verseNum": 14, + "text": "not|strong=\"G3361\"* paying|strong=\"G4337\"* attention|strong=\"G4337\"* to|strong=\"G2532\"* Jewish|strong=\"G2451\"* fables|strong=\"G3454\"* and|strong=\"G2532\"* commandments|strong=\"G1785\"* of|strong=\"G2532\"* men|strong=\"G3588\"* who|strong=\"G3588\"* turn away from|strong=\"G2532\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 15, + "text": "To|strong=\"G2532\"* the|strong=\"G2532\"* pure|strong=\"G2513\"*, all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G3588\"* pure|strong=\"G2513\"*, but|strong=\"G1161\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* defiled|strong=\"G3392\"* and|strong=\"G2532\"* unbelieving, nothing|strong=\"G3762\"* is|strong=\"G3588\"* pure|strong=\"G2513\"*; but|strong=\"G1161\"* both|strong=\"G2532\"* their|strong=\"G2532\"* mind|strong=\"G3563\"* and|strong=\"G2532\"* their|strong=\"G2532\"* conscience|strong=\"G4893\"* are|strong=\"G3588\"* defiled|strong=\"G3392\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* profess|strong=\"G3670\"* that|strong=\"G3588\"* they|strong=\"G2532\"* know|strong=\"G1492\"* God|strong=\"G2316\"*, but|strong=\"G1161\"* by|strong=\"G4314\"* their|strong=\"G2532\"* deeds|strong=\"G2041\"* they|strong=\"G2532\"* deny|strong=\"G3588\"* him|strong=\"G3588\"*, being|strong=\"G1510\"* abominable, disobedient, and|strong=\"G2532\"* unfit for|strong=\"G4314\"* any|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* say|strong=\"G2980\"* the|strong=\"G1161\"* things|strong=\"G3588\"* which|strong=\"G3739\"* fit sound|strong=\"G5198\"* doctrine|strong=\"G1319\"*," + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* older|strong=\"G4246\"* men|strong=\"G3588\"* should|strong=\"G3588\"* be|strong=\"G1510\"* temperate|strong=\"G3524\"*, sensible|strong=\"G4998\"*, sober|strong=\"G4998\"* minded, sound|strong=\"G5198\"* in|strong=\"G4102\"* faith|strong=\"G4102\"*, in|strong=\"G4102\"* love, and|strong=\"G4102\"* in|strong=\"G4102\"* perseverance|strong=\"G5281\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G3366\"* that|strong=\"G3361\"* older|strong=\"G4247\"* women|strong=\"G4247\"* likewise|strong=\"G5615\"* be|strong=\"G3361\"* reverent|strong=\"G2412\"* in|strong=\"G1722\"* behavior|strong=\"G2688\"*, not|strong=\"G3361\"* slanderers|strong=\"G1228\"* nor|strong=\"G3366\"* enslaved|strong=\"G1402\"* to|strong=\"G1722\"* much|strong=\"G4183\"* wine|strong=\"G3631\"*, teachers of|strong=\"G1722\"* that|strong=\"G3361\"* which|strong=\"G1722\"* is|strong=\"G3631\"* good|strong=\"G2567\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* train the|strong=\"G3588\"* young|strong=\"G3501\"* wives to|strong=\"G2443\"* love|strong=\"G5388\"* their|strong=\"G3588\"* husbands|strong=\"G5362\"*, to|strong=\"G2443\"* love|strong=\"G5388\"* their|strong=\"G3588\"* children|strong=\"G5388\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"G2443\"* be|strong=\"G3361\"* sober|strong=\"G4998\"* minded, chaste, workers|strong=\"G3626\"* at|strong=\"G2316\"* home|strong=\"G3626\"*, kind, being|strong=\"G2443\"* in|strong=\"G2316\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* their|strong=\"G2398\"* own|strong=\"G2398\"* husbands, that|strong=\"G2443\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* may|strong=\"G2443\"* not|strong=\"G3361\"* be|strong=\"G3361\"* blasphemed." + }, + { + "verseNum": 6, + "text": "Likewise|strong=\"G5615\"*, exhort|strong=\"G3870\"* the|strong=\"G3588\"* younger|strong=\"G3501\"* men|strong=\"G3501\"* to|strong=\"G3870\"* be|strong=\"G3588\"* sober|strong=\"G4993\"* minded|strong=\"G4993\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* show|strong=\"G3930\"* yourself|strong=\"G4572\"* an|strong=\"G1722\"* example|strong=\"G5179\"* of|strong=\"G4012\"* good|strong=\"G2570\"* works|strong=\"G2041\"*. In|strong=\"G1722\"* your|strong=\"G3956\"* teaching|strong=\"G1319\"*, show|strong=\"G3930\"* integrity, seriousness, incorruptibility," + }, + { + "verseNum": 8, + "text": "and|strong=\"G3056\"* soundness of|strong=\"G1537\"* speech|strong=\"G3056\"* that|strong=\"G2443\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* be|strong=\"G2443\"* condemned, that|strong=\"G2443\"* he|strong=\"G3588\"* who|strong=\"G3588\"* opposes you|strong=\"G3004\"* may|strong=\"G2443\"* be|strong=\"G2443\"* ashamed|strong=\"G1788\"*, having|strong=\"G2192\"* no|strong=\"G3367\"* evil|strong=\"G5337\"* thing|strong=\"G3056\"* to|strong=\"G2443\"* say|strong=\"G3004\"* about|strong=\"G4012\"* us|strong=\"G3004\"*." + }, + { + "verseNum": 9, + "text": "Exhort servants|strong=\"G1401\"* to|strong=\"G1722\"* be|strong=\"G1510\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G1722\"* their|strong=\"G1722\"* own|strong=\"G2398\"* masters|strong=\"G1203\"* and|strong=\"G1401\"* to|strong=\"G1722\"* be|strong=\"G1510\"* well-pleasing|strong=\"G2101\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, not|strong=\"G3361\"* contradicting," + }, + { + "verseNum": 10, + "text": "not|strong=\"G3361\"* stealing, but|strong=\"G3361\"* showing|strong=\"G1731\"* all|strong=\"G3956\"* good|strong=\"G3956\"* fidelity|strong=\"G4102\"*, that|strong=\"G2443\"* they|strong=\"G3588\"* may|strong=\"G2443\"* adorn|strong=\"G2885\"* the|strong=\"G1722\"* doctrine|strong=\"G1319\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, our|strong=\"G2316\"* Savior|strong=\"G4990\"*, in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* has|strong=\"G2316\"* appeared|strong=\"G2014\"*, bringing|strong=\"G4992\"* salvation|strong=\"G4992\"* to|strong=\"G2316\"* all|strong=\"G3956\"* men|strong=\"G3956\"*," + }, + { + "verseNum": 12, + "text": "instructing|strong=\"G3811\"* us|strong=\"G2249\"* to|strong=\"G2443\"* the|strong=\"G1722\"* intent that|strong=\"G2443\"*, denying ungodliness and|strong=\"G2532\"* worldly|strong=\"G2886\"* lusts|strong=\"G1939\"*, we|strong=\"G2249\"* would|strong=\"G2532\"* live|strong=\"G2198\"* soberly|strong=\"G4996\"*, righteously|strong=\"G1346\"*, and|strong=\"G2532\"* godly|strong=\"G2153\"* in|strong=\"G1722\"* this|strong=\"G3588\"* present|strong=\"G3568\"* age;" + }, + { + "verseNum": 13, + "text": "looking|strong=\"G4327\"* for|strong=\"G2532\"* the|strong=\"G2532\"* blessed|strong=\"G3107\"* hope|strong=\"G1680\"* and|strong=\"G2532\"* appearing|strong=\"G2015\"* of|strong=\"G2316\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* our|strong=\"G2316\"* great|strong=\"G3173\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"G3739\"* gave|strong=\"G1325\"* himself|strong=\"G1438\"* for|strong=\"G5228\"* us|strong=\"G1325\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* redeem|strong=\"G3084\"* us|strong=\"G1325\"* from|strong=\"G2532\"* all|strong=\"G3956\"* iniquity and|strong=\"G2532\"* purify|strong=\"G2511\"* for|strong=\"G5228\"* himself|strong=\"G1438\"* a|strong=\"G2532\"* people|strong=\"G2992\"* for|strong=\"G5228\"* his|strong=\"G1438\"* own|strong=\"G1438\"* possession|strong=\"G4041\"*, zealous|strong=\"G2207\"* for|strong=\"G5228\"* good|strong=\"G2570\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 15, + "text": "Say|strong=\"G2980\"* these|strong=\"G3778\"* things|strong=\"G3956\"* and|strong=\"G2532\"* exhort|strong=\"G3870\"* and|strong=\"G2532\"* reprove|strong=\"G1651\"* with|strong=\"G3326\"* all|strong=\"G3956\"* authority|strong=\"G2003\"*. Let|strong=\"G4065\"* no|strong=\"G3367\"* one|strong=\"G3367\"* despise|strong=\"G4065\"* you|strong=\"G4771\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Remind|strong=\"G5279\"* them|strong=\"G1438\"* to|strong=\"G4314\"* be|strong=\"G1510\"* in|strong=\"G3956\"* subjection|strong=\"G5293\"* to|strong=\"G4314\"* rulers and|strong=\"G1849\"* to|strong=\"G4314\"* authorities|strong=\"G1849\"*, to|strong=\"G4314\"* be|strong=\"G1510\"* obedient|strong=\"G5293\"*, to|strong=\"G4314\"* be|strong=\"G1510\"* ready|strong=\"G2092\"* for|strong=\"G4314\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G2041\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G4314\"* speak evil|strong=\"G3367\"* of|strong=\"G3956\"* no|strong=\"G3367\"* one|strong=\"G3367\"*, not|strong=\"G3367\"* to|strong=\"G4314\"* be|strong=\"G1510\"* contentious, to|strong=\"G4314\"* be|strong=\"G1510\"* gentle|strong=\"G1933\"*, showing|strong=\"G1731\"* all|strong=\"G3956\"* humility|strong=\"G4240\"* toward|strong=\"G4314\"* all|strong=\"G3956\"* men|strong=\"G3956\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* were|strong=\"G1510\"* also|strong=\"G2532\"* once|strong=\"G4218\"* foolish|strong=\"G2532\"*, disobedient, deceived|strong=\"G4105\"*, serving|strong=\"G1398\"* various|strong=\"G4164\"* lusts|strong=\"G1939\"* and|strong=\"G2532\"* pleasures|strong=\"G2237\"*, living|strong=\"G1236\"* in|strong=\"G1722\"* malice|strong=\"G2549\"* and|strong=\"G2532\"* envy|strong=\"G5355\"*, hateful|strong=\"G4767\"*, and|strong=\"G2532\"* hating|strong=\"G3404\"* one|strong=\"G1722\"* another|strong=\"G1722\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"G1161\"* when|strong=\"G3753\"* the|strong=\"G2532\"* kindness|strong=\"G5544\"* of|strong=\"G2316\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"* and|strong=\"G2532\"* his|strong=\"G2532\"* love|strong=\"G5363\"* toward|strong=\"G4990\"* mankind|strong=\"G5363\"* appeared|strong=\"G2014\"*," + }, + { + "verseNum": 5, + "text": "not|strong=\"G3756\"* by|strong=\"G1223\"* works|strong=\"G2041\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"* which|strong=\"G3739\"* we|strong=\"G2249\"* did|strong=\"G4160\"* ourselves|strong=\"G2249\"*, but|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1223\"* mercy|strong=\"G1656\"*, he|strong=\"G2532\"* saved|strong=\"G4982\"* us|strong=\"G4160\"* through|strong=\"G1223\"* the|strong=\"G1722\"* washing|strong=\"G3067\"* of|strong=\"G1537\"* regeneration|strong=\"G3824\"* and|strong=\"G2532\"* renewing by|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 6, + "text": "whom|strong=\"G3739\"* he|strong=\"G3739\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* on|strong=\"G1909\"* us|strong=\"G2249\"* richly|strong=\"G4146\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* our|strong=\"G2424\"* Savior|strong=\"G4990\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* being|strong=\"G1096\"* justified|strong=\"G1344\"* by|strong=\"G2596\"* his|strong=\"G1565\"* grace|strong=\"G5485\"*, we|strong=\"G2443\"* might|strong=\"G1680\"* be|strong=\"G1096\"* made|strong=\"G1096\"* heirs|strong=\"G2818\"* according|strong=\"G2596\"* to|strong=\"G2443\"* the|strong=\"G2596\"* hope|strong=\"G1680\"* of|strong=\"G5485\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 8, + "text": "This|strong=\"G3778\"* saying|strong=\"G3056\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"*, and|strong=\"G2532\"* concerning|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* desire|strong=\"G1014\"* that|strong=\"G2443\"* you|strong=\"G4771\"* insist confidently|strong=\"G1226\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* believed|strong=\"G4100\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* careful|strong=\"G5431\"* to|strong=\"G2443\"* maintain|strong=\"G4291\"* good|strong=\"G2570\"* works|strong=\"G2041\"*. These|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G1510\"* good|strong=\"G2570\"* and|strong=\"G2532\"* profitable|strong=\"G5624\"* to|strong=\"G2443\"* men|strong=\"G3778\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"G1161\"* shun|strong=\"G4026\"* foolish|strong=\"G3474\"* questionings, genealogies|strong=\"G1076\"*, strife|strong=\"G2054\"*, and|strong=\"G2532\"* disputes|strong=\"G3163\"* about|strong=\"G4026\"* the|strong=\"G2532\"* law|strong=\"G3544\"*; for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* unprofitable and|strong=\"G2532\"* vain|strong=\"G3152\"*." + }, + { + "verseNum": 10, + "text": "Avoid|strong=\"G3868\"* a|strong=\"G2532\"* factious man|strong=\"G1520\"* after|strong=\"G3326\"* a|strong=\"G2532\"* first|strong=\"G1520\"* and|strong=\"G2532\"* second|strong=\"G1208\"* warning|strong=\"G3559\"*," + }, + { + "verseNum": 11, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* such|strong=\"G5108\"* a|strong=\"G2532\"* one|strong=\"G5108\"* is|strong=\"G1510\"* perverted|strong=\"G1612\"* and|strong=\"G2532\"* sinful, being|strong=\"G1510\"* self-condemned." + }, + { + "verseNum": 12, + "text": "When|strong=\"G3752\"* I|strong=\"G1473\"* send|strong=\"G3992\"* Artemas to|strong=\"G1519\"* you|strong=\"G4771\"*, or|strong=\"G2228\"* Tychicus|strong=\"G5190\"*, be|strong=\"G1519\"* diligent|strong=\"G4704\"* to|strong=\"G1519\"* come|strong=\"G2064\"* to|strong=\"G1519\"* me|strong=\"G1473\"* to|strong=\"G1519\"* Nicopolis|strong=\"G3533\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* have|strong=\"G1473\"* determined|strong=\"G2919\"* to|strong=\"G1519\"* winter|strong=\"G3914\"* there|strong=\"G1563\"*." + }, + { + "verseNum": 13, + "text": "Send|strong=\"G4311\"* Zenas|strong=\"G2211\"* the|strong=\"G2532\"* lawyer|strong=\"G3544\"* and|strong=\"G2532\"* Apollos on|strong=\"G4311\"* their|strong=\"G2532\"* journey|strong=\"G4311\"* speedily, that|strong=\"G2443\"* nothing|strong=\"G3367\"* may|strong=\"G2532\"* be|strong=\"G2532\"* lacking|strong=\"G3007\"* for|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"G1161\"* our|strong=\"G2251\"* people|strong=\"G1510\"* also|strong=\"G2532\"* learn|strong=\"G3129\"* to|strong=\"G1519\"* maintain|strong=\"G4291\"* good|strong=\"G2570\"* works|strong=\"G2041\"* to|strong=\"G1519\"* meet|strong=\"G2570\"* necessary|strong=\"G5532\"* needs|strong=\"G5532\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G1510\"* unfruitful." + }, + { + "verseNum": 15, + "text": "All|strong=\"G3956\"* who|strong=\"G3588\"* are|strong=\"G3588\"* with|strong=\"G3326\"* me|strong=\"G1473\"* greet you|strong=\"G5210\"*. Greet those|strong=\"G3588\"* who|strong=\"G3588\"* love|strong=\"G5368\"* us|strong=\"G2249\"* in|strong=\"G1722\"* faith|strong=\"G4102\"*." + } + ] + } + ] + }, + { + "name": "Philemon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Paul|strong=\"G3972\"*, a|strong=\"G2532\"* prisoner|strong=\"G1198\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*+ 1:1 “Christ” means “Anointed One”.* Jesus|strong=\"G2424\"*, and|strong=\"G2532\"* Timothy|strong=\"G5095\"* our|strong=\"G2424\"* brother, to|strong=\"G2532\"* Philemon|strong=\"G5371\"*, our|strong=\"G2424\"* beloved fellow|strong=\"G4904\"* worker|strong=\"G4904\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* the|strong=\"G2532\"* beloved Apphia, to|strong=\"G2532\"* Archippus our|strong=\"G2532\"* fellow|strong=\"G4961\"* soldier|strong=\"G4961\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"* in|strong=\"G2596\"* your|strong=\"G2532\"* house|strong=\"G3624\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G1515\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* thank|strong=\"G2168\"* my|strong=\"G1473\"* God|strong=\"G2316\"* always|strong=\"G3842\"*, making|strong=\"G4160\"* mention|strong=\"G3417\"* of|strong=\"G2316\"* you|strong=\"G4771\"* in|strong=\"G1909\"* my|strong=\"G1473\"* prayers|strong=\"G4335\"*," + }, + { + "verseNum": 5, + "text": "hearing of|strong=\"G2532\"* your|strong=\"G2192\"* love and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* which|strong=\"G3739\"* you|strong=\"G4771\"* have|strong=\"G2192\"* toward|strong=\"G1519\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* toward|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints," + }, + { + "verseNum": 6, + "text": "that|strong=\"G3588\"* the|strong=\"G1722\"* fellowship|strong=\"G2842\"* of|strong=\"G1722\"* your|strong=\"G3956\"* faith|strong=\"G4102\"* may|strong=\"G5547\"* become|strong=\"G1096\"* effective|strong=\"G1756\"* in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* thing|strong=\"G3956\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* us|strong=\"G1519\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G1096\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* we|strong=\"G3754\"* have|strong=\"G2192\"* much|strong=\"G4183\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* comfort|strong=\"G3874\"* in|strong=\"G1909\"* your|strong=\"G1223\"* love, because|strong=\"G3754\"* the|strong=\"G2532\"* hearts|strong=\"G4698\"* of|strong=\"G1223\"* the|strong=\"G2532\"* saints have|strong=\"G2192\"* been|strong=\"G2192\"* refreshed through|strong=\"G1223\"* you|strong=\"G4771\"*, brother." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1352\"* though|strong=\"G1722\"* I|strong=\"G1352\"* have|strong=\"G2192\"* all|strong=\"G1722\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* to|strong=\"G1722\"* command|strong=\"G2004\"* you|strong=\"G4771\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* appropriate," + }, + { + "verseNum": 9, + "text": "yet|strong=\"G2532\"* for|strong=\"G1223\"* love’s sake|strong=\"G1223\"* I|strong=\"G2532\"* rather|strong=\"G3123\"* appeal|strong=\"G3870\"* to|strong=\"G2532\"* you|strong=\"G1510\"*, being|strong=\"G1510\"* such|strong=\"G5108\"* a|strong=\"G5613\"* one|strong=\"G5108\"* as|strong=\"G5613\"* Paul|strong=\"G3972\"*, the|strong=\"G2532\"* aged|strong=\"G4246\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* a|strong=\"G5613\"* prisoner|strong=\"G1198\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* appeal|strong=\"G3870\"* to|strong=\"G1722\"* you|strong=\"G4771\"* for|strong=\"G4012\"* my|strong=\"G1699\"* child|strong=\"G5043\"* Onesimus|strong=\"G3682\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* have|strong=\"G1473\"* become the|strong=\"G1722\"* father|strong=\"G1080\"* of|strong=\"G4012\"* in|strong=\"G1722\"* my|strong=\"G1699\"* chains|strong=\"G1199\"*,+ 1:10 Onesimus means “useful”.*" + }, + { + "verseNum": 11, + "text": "who|strong=\"G3739\"* once|strong=\"G4218\"* was|strong=\"G3588\"* useless to|strong=\"G2532\"* you|strong=\"G4771\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* is|strong=\"G3588\"* useful|strong=\"G2173\"* to|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3778\"* am|strong=\"G1510\"* sending him|strong=\"G3588\"* back. Therefore receive him|strong=\"G3588\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, my|strong=\"G1699\"* own|strong=\"G1699\"* heart|strong=\"G4698\"*," + }, + { + "verseNum": 13, + "text": "whom|strong=\"G3739\"* I|strong=\"G1473\"* desired to|strong=\"G4314\"* keep|strong=\"G2722\"* with|strong=\"G1722\"* me|strong=\"G1473\"*, that|strong=\"G2443\"* on|strong=\"G1722\"* your|strong=\"G1722\"* behalf|strong=\"G5228\"* he|strong=\"G3739\"* might|strong=\"G2098\"* serve|strong=\"G1247\"* me|strong=\"G1473\"* in|strong=\"G1722\"* my|strong=\"G1722\"* chains|strong=\"G1199\"* for|strong=\"G5228\"* the|strong=\"G1722\"* Good|strong=\"G3588\"* News|strong=\"G2098\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* I|strong=\"G1161\"* was|strong=\"G1510\"* willing|strong=\"G2309\"* to|strong=\"G2443\"* do|strong=\"G4160\"* nothing|strong=\"G3762\"* without|strong=\"G5565\"* your|strong=\"G4674\"* consent|strong=\"G1106\"*, that|strong=\"G2443\"* your|strong=\"G4674\"* goodness would|strong=\"G2309\"* not|strong=\"G3361\"* be|strong=\"G1510\"* as|strong=\"G5613\"* of|strong=\"G2596\"* necessity, but|strong=\"G1161\"* of|strong=\"G2596\"* free|strong=\"G1595\"* will|strong=\"G2309\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* perhaps|strong=\"G5029\"* he|strong=\"G3778\"* was|strong=\"G5610\"* therefore|strong=\"G1223\"* separated|strong=\"G5563\"* from|strong=\"G1223\"* you|strong=\"G3778\"* for|strong=\"G1063\"* a|strong=\"G4314\"* while|strong=\"G5610\"* that|strong=\"G2443\"* you|strong=\"G3778\"* would have|strong=\"G3778\"* him|strong=\"G4314\"* forever|strong=\"G1223\"*," + }, + { + "verseNum": 16, + "text": "no|strong=\"G3756\"* longer|strong=\"G2089\"* as|strong=\"G5613\"* a|strong=\"G5613\"* slave|strong=\"G1401\"*, but|strong=\"G1161\"* more|strong=\"G3123\"* than|strong=\"G5228\"* a|strong=\"G5613\"* slave|strong=\"G1401\"*, a|strong=\"G5613\"* beloved brother—especially|strong=\"G3122\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, but|strong=\"G1161\"* how|strong=\"G5613\"* much|strong=\"G4214\"* rather|strong=\"G3123\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, both|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* then|strong=\"G3767\"* you|strong=\"G1487\"* count|strong=\"G2192\"* me|strong=\"G1473\"* a|strong=\"G2192\"* partner|strong=\"G2844\"*, receive|strong=\"G4355\"* him|strong=\"G4355\"* as|strong=\"G5613\"* you|strong=\"G1487\"* would receive|strong=\"G4355\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* he|strong=\"G1161\"* has|strong=\"G3778\"* wronged you|strong=\"G4771\"* at|strong=\"G1161\"* all|strong=\"G1161\"* or|strong=\"G2228\"* owes|strong=\"G3784\"* you|strong=\"G4771\"* anything|strong=\"G5100\"*, put|strong=\"G1677\"* that|strong=\"G1487\"* to|strong=\"G5100\"* my|strong=\"G1473\"* account|strong=\"G1677\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G1473\"*, Paul|strong=\"G3972\"*, write|strong=\"G1125\"* this|strong=\"G3588\"* with|strong=\"G2532\"* my|strong=\"G1699\"* own|strong=\"G1699\"* hand|strong=\"G5495\"*: I|strong=\"G1473\"* will|strong=\"G2532\"* repay it|strong=\"G2532\"* (not|strong=\"G3361\"* to|strong=\"G2443\"* mention|strong=\"G3004\"* to|strong=\"G2443\"* you|strong=\"G4771\"* that|strong=\"G3754\"* you|strong=\"G4771\"* owe|strong=\"G4359\"* to|strong=\"G2443\"* me|strong=\"G1473\"* even|strong=\"G2532\"* your|strong=\"G2532\"* own|strong=\"G1699\"* self|strong=\"G4572\"* besides|strong=\"G2532\"*)." + }, + { + "verseNum": 20, + "text": "Yes|strong=\"G3483\"*, brother, let|strong=\"G3685\"* me|strong=\"G1473\"* have|strong=\"G1473\"* joy|strong=\"G3685\"* from|strong=\"G3588\"* you|strong=\"G4771\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*. Refresh my|strong=\"G1722\"* heart|strong=\"G4698\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 21, + "text": "Having|strong=\"G2532\"* confidence|strong=\"G3982\"* in|strong=\"G2532\"* your|strong=\"G2532\"* obedience|strong=\"G5218\"*, I|strong=\"G3739\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G4771\"* will|strong=\"G2532\"* do|strong=\"G4160\"* even|strong=\"G2532\"* beyond|strong=\"G5228\"* what|strong=\"G3739\"* I|strong=\"G3739\"* say|strong=\"G3004\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"G2532\"*, prepare|strong=\"G2090\"* a|strong=\"G2532\"* guest room for|strong=\"G1063\"* me|strong=\"G1473\"*, for|strong=\"G1063\"* I|strong=\"G1473\"* hope|strong=\"G1679\"* that|strong=\"G3754\"* through|strong=\"G1223\"* your|strong=\"G1223\"* prayers|strong=\"G4335\"* I|strong=\"G1473\"* will|strong=\"G2532\"* be|strong=\"G2532\"* restored to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 23, + "text": "Epaphras|strong=\"G1889\"*, my|strong=\"G1722\"* fellow|strong=\"G4869\"* prisoner|strong=\"G4869\"* in|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G2424\"*, greets you|strong=\"G4771\"*," + }, + { + "verseNum": 24, + "text": "as|strong=\"G3588\"* do|strong=\"G3588\"* Mark|strong=\"G3138\"*, Aristarchus, Demas|strong=\"G1214\"*, and|strong=\"G3588\"* Luke|strong=\"G3065\"*, my|strong=\"G1473\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"G3588\"* grace|strong=\"G5485\"* of|strong=\"G4151\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* be|strong=\"G3588\"* with|strong=\"G3326\"* your|strong=\"G2962\"* spirit|strong=\"G4151\"*. Amen." + } + ] + } + ] + }, + { + "name": "Hebrews", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"G2316\"*, having|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* past|strong=\"G3819\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* the|strong=\"G1722\"* fathers|strong=\"G3962\"* through|strong=\"G1722\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* at|strong=\"G1722\"* many|strong=\"G2980\"* times|strong=\"G4181\"* and|strong=\"G2532\"* in|strong=\"G1722\"* various ways|strong=\"G4187\"*," + }, + { + "verseNum": 2, + "text": "has|strong=\"G3739\"* at|strong=\"G1722\"* the|strong=\"G1722\"* end|strong=\"G2078\"* of|strong=\"G5207\"* these|strong=\"G3956\"* days|strong=\"G2250\"* spoken|strong=\"G2980\"* to|strong=\"G2532\"* us|strong=\"G4160\"* by|strong=\"G1223\"* his|strong=\"G3956\"* Son|strong=\"G5207\"*, whom|strong=\"G3739\"* he|strong=\"G2532\"* appointed|strong=\"G5087\"* heir|strong=\"G2818\"* of|strong=\"G5207\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, through|strong=\"G1223\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* he|strong=\"G2532\"* made|strong=\"G4160\"* the|strong=\"G1722\"* worlds." + }, + { + "verseNum": 3, + "text": "His|strong=\"G1438\"* Son is|strong=\"G1510\"* the|strong=\"G1722\"* radiance|strong=\"G1391\"* of|strong=\"G1223\"* his|strong=\"G1438\"* glory|strong=\"G1391\"*, the|strong=\"G1722\"* very|strong=\"G2532\"* image|strong=\"G5481\"* of|strong=\"G1223\"* his|strong=\"G1438\"* substance|strong=\"G5287\"*, and|strong=\"G2532\"* upholding|strong=\"G5342\"* all|strong=\"G3956\"* things|strong=\"G3956\"* by|strong=\"G1223\"* the|strong=\"G1722\"* word|strong=\"G4487\"* of|strong=\"G1223\"* his|strong=\"G1438\"* power|strong=\"G1411\"*, who|strong=\"G3739\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* had|strong=\"G2532\"* by|strong=\"G1223\"* himself|strong=\"G1438\"* purified us|strong=\"G4160\"* of|strong=\"G1223\"* our|strong=\"G2532\"* sins, sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1223\"* the|strong=\"G1722\"* Majesty|strong=\"G3172\"* on|strong=\"G1722\"* high|strong=\"G5308\"*," + }, + { + "verseNum": 4, + "text": "having become|strong=\"G1096\"* as|strong=\"G3745\"* much|strong=\"G5118\"* better|strong=\"G2909\"* than|strong=\"G3844\"* the|strong=\"G3588\"* angels as|strong=\"G3745\"* the|strong=\"G3588\"* more|strong=\"G1313\"* excellent|strong=\"G1313\"* name|strong=\"G3686\"* he|strong=\"G3588\"* has|strong=\"G1096\"* inherited|strong=\"G2816\"* is|strong=\"G3588\"* better|strong=\"G2909\"* than|strong=\"G3844\"* theirs." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* which|strong=\"G3588\"* of|strong=\"G5207\"* the|strong=\"G2532\"* angels did|strong=\"G2532\"* he|strong=\"G2532\"* say|strong=\"G3004\"* at|strong=\"G1519\"* any|strong=\"G5101\"* time|strong=\"G4218\"*," + }, + { + "verseNum": 6, + "text": "When|strong=\"G3752\"* he|strong=\"G2532\"* again|strong=\"G3825\"* brings|strong=\"G1521\"* in|strong=\"G1519\"* the|strong=\"G2532\"* firstborn|strong=\"G4416\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G3625\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “Let|strong=\"G1161\"* all|strong=\"G3956\"* the|strong=\"G2532\"* angels of|strong=\"G2316\"* God|strong=\"G2316\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*.”+ 1:6 Deuteronomy 32:43 LXX*" + }, + { + "verseNum": 7, + "text": "Of|strong=\"G4151\"* the|strong=\"G2532\"* angels he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* of|strong=\"G5207\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* he|strong=\"G2532\"* says," + }, + { + "verseNum": 9, + "text": "You|strong=\"G4771\"* have|strong=\"G2532\"* loved righteousness|strong=\"G1343\"* and|strong=\"G2532\"* hated|strong=\"G3404\"* iniquity;" + }, + { + "verseNum": 10, + "text": "And|strong=\"G2532\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* perish, but|strong=\"G1161\"* you|strong=\"G4771\"* continue|strong=\"G1265\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"G4771\"* will|strong=\"G1510\"* roll|strong=\"G1667\"* them|strong=\"G3588\"* up|strong=\"G1667\"* like|strong=\"G5613\"* a|strong=\"G5613\"* mantle|strong=\"G4018\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"* which|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1537\"* angels has|strong=\"G5101\"* he|strong=\"G1161\"* told|strong=\"G3004\"* at|strong=\"G4314\"* any|strong=\"G4314\"* time|strong=\"G4218\"*," + }, + { + "verseNum": 14, + "text": "Aren’t|strong=\"G3588\"* they|strong=\"G3588\"* all|strong=\"G3956\"* serving|strong=\"G1248\"* spirits|strong=\"G4151\"*, sent|strong=\"G4151\"* out|strong=\"G1519\"* to|strong=\"G1519\"* do|strong=\"G1510\"* service|strong=\"G1248\"* for|strong=\"G1519\"* the|strong=\"G1519\"* sake|strong=\"G1223\"* of|strong=\"G4151\"* those|strong=\"G3588\"* who|strong=\"G3588\"* will|strong=\"G3195\"* inherit|strong=\"G2816\"* salvation|strong=\"G4991\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"* we|strong=\"G2249\"* ought|strong=\"G1163\"* to|strong=\"G1163\"* pay|strong=\"G4337\"* greater attention|strong=\"G4337\"* to|strong=\"G1163\"* the|strong=\"G1223\"* things|strong=\"G3778\"* that|strong=\"G3588\"* were|strong=\"G3588\"* heard, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* we|strong=\"G2249\"* drift|strong=\"G3901\"* away|strong=\"G3901\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G2532\"* word|strong=\"G3056\"* spoken|strong=\"G2980\"* through|strong=\"G1223\"* angels proved|strong=\"G1096\"* steadfast, and|strong=\"G2532\"* every|strong=\"G3956\"* transgression|strong=\"G3847\"* and|strong=\"G2532\"* disobedience|strong=\"G3876\"* received|strong=\"G2983\"* a|strong=\"G1096\"* just|strong=\"G2532\"* penalty|strong=\"G3405\"*," + }, + { + "verseNum": 3, + "text": "how|strong=\"G4459\"* will|strong=\"G2962\"* we|strong=\"G2249\"* escape|strong=\"G1628\"* if|strong=\"G3748\"* we|strong=\"G2249\"* neglect so|strong=\"G1519\"* great|strong=\"G5082\"* a|strong=\"G1519\"* salvation|strong=\"G4991\"*—which|strong=\"G3588\"* at|strong=\"G1519\"* the|strong=\"G1519\"* first|strong=\"G3588\"* having been|strong=\"G2962\"* spoken|strong=\"G2980\"* through|strong=\"G1223\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*, was|strong=\"G3588\"* confirmed to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard," + }, + { + "verseNum": 4, + "text": "God|strong=\"G2316\"* also|strong=\"G2532\"* testifying with|strong=\"G2532\"* them|strong=\"G3588\"*, both|strong=\"G2532\"* by|strong=\"G2596\"* signs|strong=\"G4592\"* and|strong=\"G2532\"* wonders|strong=\"G5059\"*, by|strong=\"G2596\"* various|strong=\"G4164\"* works|strong=\"G1411\"* of|strong=\"G4151\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* by|strong=\"G2596\"* gifts|strong=\"G3311\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G2532\"* own will|strong=\"G2316\"*?" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* didn’t|strong=\"G3588\"* subject|strong=\"G5293\"* the|strong=\"G3588\"* world|strong=\"G3625\"* to|strong=\"G3195\"* come|strong=\"G3195\"*, of|strong=\"G4012\"* which|strong=\"G3739\"* we|strong=\"G3739\"* speak|strong=\"G2980\"*, to|strong=\"G3195\"* angels." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* one|strong=\"G5100\"* has|strong=\"G5101\"* somewhere|strong=\"G4225\"* testified|strong=\"G1263\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"G2532\"* made|strong=\"G1642\"* him|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G1024\"* lower|strong=\"G1642\"* than|strong=\"G3844\"* the|strong=\"G2532\"* angels." + }, + { + "verseNum": 8, + "text": "You|strong=\"G1722\"* have|strong=\"G3956\"* put|strong=\"G5293\"* all|strong=\"G3956\"* things|strong=\"G3956\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* under|strong=\"G5270\"* his|strong=\"G3956\"* feet|strong=\"G4228\"*.”+ 2:8 Psalms 8:4-6 *" + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* we|strong=\"G2532\"* see|strong=\"G5092\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2316\"* been|strong=\"G2532\"* made|strong=\"G2316\"* a|strong=\"G2532\"* little|strong=\"G1024\"* lower|strong=\"G1642\"* than|strong=\"G3844\"* the|strong=\"G2532\"* angels, Jesus|strong=\"G2424\"*, because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* suffering|strong=\"G3804\"* of|strong=\"G1223\"* death|strong=\"G2288\"* crowned|strong=\"G4737\"* with|strong=\"G3844\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* honor|strong=\"G5092\"*, that|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* he|strong=\"G2532\"* should|strong=\"G5100\"* taste|strong=\"G1089\"* of|strong=\"G1223\"* death|strong=\"G2288\"* for|strong=\"G5228\"* everyone|strong=\"G3956\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* became|strong=\"G4241\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* through|strong=\"G1223\"* whom|strong=\"G3739\"* are|strong=\"G3588\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, in|strong=\"G1519\"* bringing many|strong=\"G4183\"* children|strong=\"G5207\"* to|strong=\"G1519\"* glory|strong=\"G1391\"*, to|strong=\"G1519\"* make|strong=\"G5048\"* the|strong=\"G2532\"* author of|strong=\"G5207\"* their|strong=\"G2532\"* salvation|strong=\"G4991\"* perfect|strong=\"G5048\"* through|strong=\"G1223\"* sufferings|strong=\"G3804\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* both|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* sanctifies and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* sanctified|strong=\"G3956\"* are|strong=\"G3588\"* all|strong=\"G3956\"* from|strong=\"G1537\"* one|strong=\"G1520\"*, for|strong=\"G1063\"* which|strong=\"G3739\"* cause|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G3588\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* to|strong=\"G2532\"* call|strong=\"G2564\"* them|strong=\"G3588\"* brothers,+ 2:11 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”*" + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"*," + }, + { + "verseNum": 13, + "text": "Again|strong=\"G3825\"*, “I|strong=\"G1473\"* will|strong=\"G2316\"* put|strong=\"G1325\"* my|strong=\"G3708\"* trust|strong=\"G3982\"* in|strong=\"G1909\"* him|strong=\"G3588\"*.” Again|strong=\"G3825\"*, “Behold|strong=\"G2400\"*, here|strong=\"G2400\"* I|strong=\"G1473\"* am|strong=\"G1510\"* with|strong=\"G2532\"* the|strong=\"G2532\"* children|strong=\"G3813\"* whom|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* given|strong=\"G1325\"* me|strong=\"G1325\"*.”+ 2:13 Isaiah 8:18*" + }, + { + "verseNum": 14, + "text": "Since|strong=\"G1893\"* then|strong=\"G3767\"* the|strong=\"G2532\"* children|strong=\"G3813\"* have|strong=\"G2192\"* shared|strong=\"G2841\"* in|strong=\"G2532\"* flesh|strong=\"G4561\"* and|strong=\"G2532\"* blood, he|strong=\"G2532\"* also|strong=\"G2532\"* himself in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G1223\"* partook|strong=\"G3348\"* of|strong=\"G1223\"* the|strong=\"G2532\"* same|strong=\"G3778\"*, that|strong=\"G2443\"* through|strong=\"G1223\"* death|strong=\"G2288\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G2532\"* to|strong=\"G2443\"* nothing him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* power|strong=\"G2904\"* of|strong=\"G1223\"* death|strong=\"G2288\"*, that|strong=\"G2443\"* is|strong=\"G1510\"*, the|strong=\"G2532\"* devil|strong=\"G1228\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* might|strong=\"G2532\"* deliver all|strong=\"G3956\"* of|strong=\"G1223\"* them|strong=\"G3588\"* who|strong=\"G3588\"* through|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* death|strong=\"G2288\"* were|strong=\"G1510\"* all|strong=\"G3956\"* their|strong=\"G2532\"* lifetime|strong=\"G2198\"* subject|strong=\"G1777\"* to|strong=\"G2532\"* bondage|strong=\"G1397\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* most certainly|strong=\"G1063\"*, he|strong=\"G1063\"* doesn’t give|strong=\"G1949\"* help|strong=\"G1949\"* to|strong=\"G3756\"* angels, but|strong=\"G1063\"* he|strong=\"G1063\"* gives|strong=\"G1949\"* help|strong=\"G1949\"* to|strong=\"G3756\"* the|strong=\"G1063\"* offspring+ 2:16 or, seed* of|strong=\"G4690\"* Abraham." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"G3606\"* he|strong=\"G2532\"* was|strong=\"G1096\"* obligated|strong=\"G3784\"* in|strong=\"G1519\"* all|strong=\"G3956\"* things|strong=\"G3956\"* to|strong=\"G1519\"* be|strong=\"G1096\"* made|strong=\"G1096\"* like|strong=\"G2596\"* his|strong=\"G3956\"* brothers, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* merciful|strong=\"G1655\"* and|strong=\"G2532\"* faithful|strong=\"G4103\"* high|strong=\"G3956\"* priest in|strong=\"G1519\"* things|strong=\"G3956\"* pertaining|strong=\"G4314\"* to|strong=\"G1519\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* make|strong=\"G1519\"* atonement for|strong=\"G1519\"* the|strong=\"G2532\"* sins of|strong=\"G2316\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* in|strong=\"G1722\"* that|strong=\"G3739\"* he|strong=\"G3739\"* himself has|strong=\"G3739\"* suffered|strong=\"G3958\"* being|strong=\"G1722\"* tempted|strong=\"G3985\"*, he|strong=\"G3739\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1410\"* help those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* tempted|strong=\"G3985\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3606\"*, holy brothers, partakers|strong=\"G3353\"* of|strong=\"G2532\"* a|strong=\"G2532\"* heavenly|strong=\"G2032\"* calling|strong=\"G2821\"*, consider|strong=\"G2657\"* the|strong=\"G2532\"* Apostle and|strong=\"G2532\"* High|strong=\"G2532\"* Priest of|strong=\"G2532\"* our|strong=\"G2424\"* confession|strong=\"G3671\"*: Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 2, + "text": "who|strong=\"G3588\"* was|strong=\"G1510\"* faithful|strong=\"G4103\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* appointed|strong=\"G4160\"* him|strong=\"G3588\"*, as|strong=\"G5613\"* also|strong=\"G2532\"* Moses|strong=\"G3475\"* was|strong=\"G1510\"* in|strong=\"G1722\"* all|strong=\"G3650\"* his|strong=\"G1722\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* he|strong=\"G3778\"* has|strong=\"G2192\"* been|strong=\"G2192\"* counted|strong=\"G2192\"* worthy of|strong=\"G3844\"* more|strong=\"G4119\"* glory|strong=\"G1391\"* than|strong=\"G3844\"* Moses|strong=\"G3475\"*, because|strong=\"G1063\"* he|strong=\"G3778\"* who|strong=\"G3588\"* built|strong=\"G2680\"* the|strong=\"G2596\"* house|strong=\"G3624\"* has|strong=\"G2192\"* more|strong=\"G4119\"* honor|strong=\"G5092\"* than|strong=\"G3844\"* the|strong=\"G2596\"* house|strong=\"G3624\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* house|strong=\"G3624\"* is|strong=\"G3588\"* built|strong=\"G2680\"* by|strong=\"G5259\"* someone|strong=\"G5100\"*; but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G3588\"* built|strong=\"G2680\"* all|strong=\"G3956\"* things|strong=\"G3956\"* is|strong=\"G3588\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Moses|strong=\"G3475\"* indeed|strong=\"G2532\"* was|strong=\"G3588\"* faithful|strong=\"G4103\"* in|strong=\"G1722\"* all|strong=\"G3650\"* his|strong=\"G1519\"* house|strong=\"G3624\"* as|strong=\"G5613\"* a|strong=\"G5613\"* servant|strong=\"G2324\"*, for|strong=\"G1519\"* a|strong=\"G5613\"* testimony|strong=\"G3142\"* of|strong=\"G2532\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* were|strong=\"G3588\"* afterward to|strong=\"G1519\"* be|strong=\"G2532\"* spoken|strong=\"G2980\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"G1161\"* Christ|strong=\"G5547\"*+ 3:6 “Christ” means “Anointed One”.* is|strong=\"G1510\"* faithful as|strong=\"G5613\"* a|strong=\"G5613\"* Son|strong=\"G5207\"* over|strong=\"G1909\"* his|strong=\"G1909\"* house|strong=\"G3624\"*. We|strong=\"G2249\"* are|strong=\"G1510\"* his|strong=\"G1909\"* house|strong=\"G3624\"*, if|strong=\"G1437\"* we|strong=\"G2249\"* hold|strong=\"G2722\"* fast|strong=\"G2722\"* our|strong=\"G2532\"* confidence|strong=\"G3954\"* and|strong=\"G2532\"* the|strong=\"G2532\"* glorying|strong=\"G2745\"* of|strong=\"G5207\"* our|strong=\"G2532\"* hope|strong=\"G1680\"* firm to|strong=\"G2532\"* the|strong=\"G2532\"* end|strong=\"G5056\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"G1352\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* the|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 8, + "text": "don’t|strong=\"G3588\"* harden|strong=\"G4645\"* your|strong=\"G1722\"* hearts|strong=\"G2588\"* as|strong=\"G5613\"* in|strong=\"G1722\"* the|strong=\"G1722\"* rebellion," + }, + { + "verseNum": 9, + "text": "where|strong=\"G3757\"* your|strong=\"G2532\"* fathers|strong=\"G3962\"* tested|strong=\"G3985\"* me|strong=\"G1473\"* and|strong=\"G2532\"* tried|strong=\"G3985\"* me|strong=\"G1473\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G1473\"* was|strong=\"G3588\"* displeased with|strong=\"G2532\"* that|strong=\"G3588\"* generation|strong=\"G1074\"*," + }, + { + "verseNum": 11, + "text": "As|strong=\"G5613\"* I|strong=\"G1473\"* swore|strong=\"G3660\"* in|strong=\"G1722\"* my|strong=\"G1722\"* wrath|strong=\"G3709\"*," + }, + { + "verseNum": 12, + "text": "Beware, brothers, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* there|strong=\"G1510\"* might|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* any|strong=\"G5100\"* one|strong=\"G5100\"* of|strong=\"G2316\"* you|strong=\"G5210\"* an|strong=\"G1722\"* evil|strong=\"G4190\"* heart|strong=\"G2588\"* of|strong=\"G2316\"* unbelief, in|strong=\"G1722\"* falling away from|strong=\"G3588\"* the|strong=\"G1722\"* living|strong=\"G2198\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 13, + "text": "but|strong=\"G3361\"* exhort|strong=\"G3870\"* one|strong=\"G5100\"* another|strong=\"G1438\"* day|strong=\"G2250\"* by|strong=\"G1537\"* day|strong=\"G2250\"*, so|strong=\"G2443\"* long|strong=\"G2250\"* as|strong=\"G2596\"* it|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “today|strong=\"G4594\"*”, lest|strong=\"G3361\"* any|strong=\"G5100\"* one|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* be|strong=\"G3361\"* hardened|strong=\"G4645\"* by|strong=\"G1537\"* the|strong=\"G1537\"* deceitfulness of|strong=\"G1537\"* sin." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1437\"* have|strong=\"G1096\"* become|strong=\"G1096\"* partakers|strong=\"G3353\"* of|strong=\"G3588\"* Christ|strong=\"G5547\"*, if|strong=\"G1437\"* we|strong=\"G1437\"* hold|strong=\"G2722\"* the|strong=\"G3588\"* beginning of|strong=\"G3588\"* our|strong=\"G5547\"* confidence|strong=\"G5287\"* firm to|strong=\"G1096\"* the|strong=\"G3588\"* end|strong=\"G5056\"*," + }, + { + "verseNum": 15, + "text": "while|strong=\"G1722\"* it|strong=\"G1437\"* is|strong=\"G3588\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* who|strong=\"G5101\"*, when|strong=\"G1831\"* they|strong=\"G3588\"* heard, rebelled|strong=\"G3893\"*? Wasn’t|strong=\"G3588\"* it|strong=\"G1063\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G5101\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* Egypt led by|strong=\"G1223\"* Moses|strong=\"G3475\"*?" + }, + { + "verseNum": 17, + "text": "With|strong=\"G1722\"* whom|strong=\"G3739\"* was|strong=\"G3588\"* he|strong=\"G1161\"* displeased forty|strong=\"G5062\"* years|strong=\"G2094\"*? Wasn’t|strong=\"G3588\"* it|strong=\"G1161\"* with|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3739\"* sinned, whose|strong=\"G3739\"* bodies|strong=\"G2966\"* fell|strong=\"G4098\"* in|strong=\"G1722\"* the|strong=\"G1722\"* wilderness|strong=\"G2048\"*?" + }, + { + "verseNum": 18, + "text": "To|strong=\"G1519\"* whom|strong=\"G5101\"* did|strong=\"G5101\"* he|strong=\"G1161\"* swear|strong=\"G3660\"* that|strong=\"G3588\"* they|strong=\"G1161\"* wouldn’t|strong=\"G3588\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"*, but|strong=\"G1161\"* to|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G5101\"* were|strong=\"G3588\"* disobedient?" + }, + { + "verseNum": 19, + "text": "We|strong=\"G3754\"* see that|strong=\"G3754\"* they|strong=\"G2532\"* weren’t able|strong=\"G1410\"* to|strong=\"G2532\"* enter|strong=\"G1525\"* in|strong=\"G1525\"* because|strong=\"G3754\"* of|strong=\"G1223\"* unbelief." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G3767\"*’s fear|strong=\"G5399\"* therefore|strong=\"G3767\"*, lest|strong=\"G3379\"* perhaps|strong=\"G3379\"* anyone|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* should|strong=\"G5100\"* seem|strong=\"G1380\"* to|strong=\"G1519\"* have|strong=\"G5210\"* come|strong=\"G1525\"* short|strong=\"G5302\"* of|strong=\"G1537\"* a|strong=\"G1519\"* promise|strong=\"G1860\"* of|strong=\"G1537\"* entering|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* indeed|strong=\"G2532\"* we|strong=\"G1063\"* have|strong=\"G2532\"* had|strong=\"G2532\"* good|strong=\"G2097\"* news|strong=\"G2097\"* preached|strong=\"G2097\"* to|strong=\"G2532\"* us|strong=\"G2097\"*, even|strong=\"G2532\"* as|strong=\"G2509\"* they|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G2532\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* word|strong=\"G3056\"* they|strong=\"G2532\"* heard didn’t|strong=\"G3588\"* profit|strong=\"G5623\"* them|strong=\"G3588\"*, because|strong=\"G1063\"* it|strong=\"G2532\"* wasn’t|strong=\"G3588\"* mixed with|strong=\"G2532\"* faith|strong=\"G4102\"* by|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* heard." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* who|strong=\"G3588\"* have|strong=\"G1473\"* believed|strong=\"G4100\"* do|strong=\"G1096\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G3588\"* rest|strong=\"G2663\"*, even|strong=\"G2531\"* as|strong=\"G5613\"* he|strong=\"G3588\"* has|strong=\"G1096\"* said|strong=\"G3004\"*, “As|strong=\"G5613\"* I|strong=\"G1473\"* swore|strong=\"G3660\"* in|strong=\"G1722\"* my|strong=\"G1722\"* wrath|strong=\"G3709\"*, they|strong=\"G3588\"* will|strong=\"G1473\"* not|strong=\"G1487\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1722\"* rest|strong=\"G2663\"*;”+ 4:3 Psalms 95:11 * although|strong=\"G2543\"* the|strong=\"G1722\"* works|strong=\"G2041\"* were|strong=\"G3588\"* finished|strong=\"G1096\"* from|strong=\"G3588\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2041\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* has|strong=\"G2316\"* said|strong=\"G3004\"* this|strong=\"G3588\"* somewhere|strong=\"G4225\"* about|strong=\"G4012\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* day|strong=\"G2250\"*, “God|strong=\"G2316\"* rested|strong=\"G2664\"* on|strong=\"G1722\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* day|strong=\"G2250\"* from|strong=\"G2532\"* all|strong=\"G3956\"* his|strong=\"G3956\"* works|strong=\"G2041\"*;”+ 4:4 Genesis 2:2*" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* in|strong=\"G1722\"* this|strong=\"G3778\"* place|strong=\"G1722\"* again|strong=\"G3825\"*, “They|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G2532\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* my|strong=\"G1722\"* rest|strong=\"G2663\"*.”+ 4:5 Psalms 95:11*" + }, + { + "verseNum": 6, + "text": "Seeing|strong=\"G1893\"* therefore|strong=\"G3767\"* it|strong=\"G2532\"* remains that|strong=\"G3588\"* some|strong=\"G5100\"* should|strong=\"G5100\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* to|strong=\"G1519\"* whom|strong=\"G3588\"* the|strong=\"G2532\"* good|strong=\"G2097\"* news|strong=\"G2097\"* was|strong=\"G3588\"* preached|strong=\"G2097\"* before|strong=\"G4386\"* failed|strong=\"G3756\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* in|strong=\"G1519\"* because|strong=\"G1223\"* of|strong=\"G1223\"* disobedience," + }, + { + "verseNum": 7, + "text": "he|strong=\"G3588\"* again|strong=\"G3825\"* defines a|strong=\"G1722\"* certain|strong=\"G5100\"* day|strong=\"G2250\"*, “today|strong=\"G4594\"*”, saying|strong=\"G3004\"* through|strong=\"G1722\"* David|strong=\"G1138\"* so|strong=\"G5118\"* long|strong=\"G5550\"* a|strong=\"G1722\"* time|strong=\"G5550\"* afterward|strong=\"G3326\"* (just|strong=\"G2531\"* as|strong=\"G2531\"* has|strong=\"G5100\"* been|strong=\"G3361\"* said|strong=\"G3004\"*)," + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* Joshua|strong=\"G2424\"* had|strong=\"G2424\"* given|strong=\"G2664\"* them|strong=\"G1438\"* rest|strong=\"G2664\"*, he|strong=\"G3778\"* would|strong=\"G2980\"* not|strong=\"G3756\"* have|strong=\"G2980\"* spoken|strong=\"G2980\"* afterward|strong=\"G3326\"* of|strong=\"G4012\"* another|strong=\"G1438\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 9, + "text": "There remains therefore a|strong=\"G2316\"* Sabbath|strong=\"G4520\"* rest|strong=\"G4520\"* for|strong=\"G2316\"* the|strong=\"G3588\"* people|strong=\"G2992\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2316\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* his|strong=\"G1519\"* rest|strong=\"G2663\"* has|strong=\"G2316\"* himself|strong=\"G2398\"* also|strong=\"G2532\"* rested|strong=\"G2664\"* from|strong=\"G2532\"* his|strong=\"G1519\"* works|strong=\"G2041\"*, as|strong=\"G5618\"* God|strong=\"G2316\"* did|strong=\"G2532\"* from|strong=\"G2532\"* his|strong=\"G1519\"*." + }, + { + "verseNum": 11, + "text": "Let|strong=\"G2443\"*’s therefore|strong=\"G3767\"* give diligence|strong=\"G4704\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G2443\"* rest|strong=\"G2663\"*, lest|strong=\"G3361\"* anyone|strong=\"G5100\"* fall|strong=\"G4098\"* after|strong=\"G1722\"* the|strong=\"G1722\"* same|strong=\"G1565\"* example|strong=\"G5262\"* of|strong=\"G5100\"* disobedience." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* is|strong=\"G3588\"* living|strong=\"G2198\"* and|strong=\"G2532\"* active|strong=\"G1756\"*, and|strong=\"G2532\"* sharper|strong=\"G5114\"* than|strong=\"G5228\"* any|strong=\"G3956\"* two-edged|strong=\"G1366\"* sword|strong=\"G3162\"*, piercing|strong=\"G1338\"* even|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* dividing of|strong=\"G3056\"* soul|strong=\"G5590\"* and|strong=\"G2532\"* spirit|strong=\"G4151\"*, of|strong=\"G3056\"* both|strong=\"G2532\"* joints and|strong=\"G2532\"* marrow|strong=\"G3452\"*, and|strong=\"G2532\"* is|strong=\"G3588\"* able|strong=\"G2924\"* to|strong=\"G2532\"* discern the|strong=\"G2532\"* thoughts|strong=\"G1761\"* and|strong=\"G2532\"* intentions|strong=\"G1771\"* of|strong=\"G3056\"* the|strong=\"G2532\"* heart|strong=\"G2588\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* creature|strong=\"G2937\"* that|strong=\"G3739\"* is|strong=\"G1510\"* hidden from|strong=\"G2532\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*, but|strong=\"G1161\"* all|strong=\"G3956\"* things|strong=\"G3956\"* are|strong=\"G1510\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* laid|strong=\"G2532\"* open|strong=\"G1131\"* before|strong=\"G1799\"* the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G3056\"* him|strong=\"G3588\"* to|strong=\"G4314\"* whom|strong=\"G3739\"* we|strong=\"G2249\"* must|strong=\"G1510\"* give|strong=\"G1473\"* an|strong=\"G2532\"* account|strong=\"G3056\"*." + }, + { + "verseNum": 14, + "text": "Having|strong=\"G2192\"* then|strong=\"G3767\"* a|strong=\"G2192\"* great|strong=\"G3173\"* high|strong=\"G3173\"* priest who|strong=\"G3588\"* has|strong=\"G2192\"* passed|strong=\"G1330\"* through|strong=\"G1330\"* the|strong=\"G3588\"* heavens|strong=\"G3772\"*, Jesus|strong=\"G2424\"*, the|strong=\"G3588\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, let|strong=\"G3767\"*’s|strong=\"G2192\"* hold|strong=\"G2902\"* tightly to|strong=\"G2316\"* our|strong=\"G2316\"* confession|strong=\"G3671\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* a|strong=\"G2192\"* high|strong=\"G3956\"* priest who|strong=\"G3588\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* be|strong=\"G3756\"* touched with|strong=\"G2596\"* the|strong=\"G3956\"* feeling of|strong=\"G2596\"* our|strong=\"G3956\"* infirmities, but|strong=\"G1161\"* one|strong=\"G3956\"* who|strong=\"G3588\"* has|strong=\"G2192\"* been|strong=\"G2192\"* in|strong=\"G2596\"* all|strong=\"G3956\"* points|strong=\"G3956\"* tempted|strong=\"G3985\"* like|strong=\"G2596\"* we|strong=\"G2249\"* are|strong=\"G3588\"*, yet|strong=\"G1161\"* without|strong=\"G5565\"* sin." + }, + { + "verseNum": 16, + "text": "Let|strong=\"G2443\"*’s therefore|strong=\"G3767\"* draw|strong=\"G4334\"* near|strong=\"G4334\"* with|strong=\"G3326\"* boldness|strong=\"G3954\"* to|strong=\"G1519\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G2532\"* grace|strong=\"G5485\"*, that|strong=\"G2443\"* we|strong=\"G2532\"* may|strong=\"G2532\"* receive|strong=\"G2983\"* mercy|strong=\"G1656\"* and|strong=\"G2532\"* may|strong=\"G2532\"* find|strong=\"G2147\"* grace|strong=\"G5485\"* for|strong=\"G1519\"* help in|strong=\"G1519\"* time|strong=\"G2121\"* of|strong=\"G2532\"* need|strong=\"G2121\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* high|strong=\"G3956\"* priest|strong=\"G4374\"*, being|strong=\"G2532\"* taken|strong=\"G2983\"* from|strong=\"G1537\"* among|strong=\"G1537\"* men|strong=\"G3956\"*, is|strong=\"G3588\"* appointed|strong=\"G2525\"* for|strong=\"G1063\"* men|strong=\"G3956\"* in|strong=\"G2532\"* things|strong=\"G3956\"* pertaining|strong=\"G4314\"* to|strong=\"G4314\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* may|strong=\"G2532\"* offer|strong=\"G4374\"* both|strong=\"G2532\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* for|strong=\"G1063\"* sins." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* high|strong=\"G2532\"* priest can|strong=\"G1410\"* deal|strong=\"G3356\"* gently|strong=\"G3356\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* ignorant and|strong=\"G2532\"* going|strong=\"G2532\"* astray|strong=\"G4105\"*, because|strong=\"G1893\"* he|strong=\"G2532\"* himself is|strong=\"G3588\"* also|strong=\"G2532\"* surrounded with|strong=\"G2532\"* weakness." + }, + { + "verseNum": 3, + "text": "Because|strong=\"G1223\"* of|strong=\"G4012\"* this|strong=\"G3588\"*, he|strong=\"G2532\"* must|strong=\"G3784\"* offer|strong=\"G4374\"* sacrifices for|strong=\"G1223\"* sins for|strong=\"G1223\"* the|strong=\"G2532\"* people|strong=\"G2992\"*, as|strong=\"G2531\"* well|strong=\"G2532\"* as|strong=\"G2531\"* for|strong=\"G1223\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 4, + "text": "Nobody takes|strong=\"G2983\"* this|strong=\"G3588\"* honor|strong=\"G5092\"* on|strong=\"G3588\"* himself|strong=\"G1438\"*, but|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* called|strong=\"G2564\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, just|strong=\"G2531\"* like|strong=\"G2531\"* Aaron was|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3779\"* also|strong=\"G2532\"* Christ|strong=\"G5547\"* didn’t|strong=\"G3588\"* glorify|strong=\"G1392\"* himself|strong=\"G1438\"* to|strong=\"G4314\"* be|strong=\"G1096\"* made|strong=\"G1096\"* a|strong=\"G1096\"* high|strong=\"G2532\"* priest, but|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* said|strong=\"G2980\"* to|strong=\"G4314\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 6, + "text": "As|strong=\"G2531\"* he|strong=\"G2532\"* says|strong=\"G3004\"* also|strong=\"G2532\"* in|strong=\"G1722\"* another|strong=\"G2087\"* place|strong=\"G1722\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G1537\"* his|strong=\"G1722\"* flesh|strong=\"G4561\"*, having|strong=\"G2532\"* offered|strong=\"G4374\"* up|strong=\"G4374\"* prayers|strong=\"G1162\"* and|strong=\"G2532\"* petitions with|strong=\"G3326\"* strong|strong=\"G2478\"* crying|strong=\"G2906\"* and|strong=\"G2532\"* tears|strong=\"G1144\"* to|strong=\"G4314\"* him|strong=\"G3588\"* who|strong=\"G3739\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G4314\"* save|strong=\"G4982\"* him|strong=\"G3588\"* from|strong=\"G1537\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* been|strong=\"G2532\"* heard|strong=\"G1522\"* for|strong=\"G4314\"* his|strong=\"G1722\"* godly|strong=\"G2532\"* fear|strong=\"G2124\"*," + }, + { + "verseNum": 8, + "text": "though|strong=\"G2539\"* he|strong=\"G3739\"* was|strong=\"G1510\"* a|strong=\"G1510\"* Son|strong=\"G5207\"*, yet|strong=\"G2539\"* learned|strong=\"G3129\"* obedience|strong=\"G5218\"* by|strong=\"G3739\"* the|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3739\"* he|strong=\"G3739\"* suffered|strong=\"G3958\"*." + }, + { + "verseNum": 9, + "text": "Having|strong=\"G2532\"* been|strong=\"G1096\"* made|strong=\"G1096\"* perfect|strong=\"G5048\"*, he|strong=\"G2532\"* became|strong=\"G1096\"* to|strong=\"G2532\"* all|strong=\"G3956\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* obey|strong=\"G5219\"* him|strong=\"G3588\"* the|strong=\"G2532\"* author of|strong=\"G2532\"* eternal salvation|strong=\"G4991\"*," + }, + { + "verseNum": 10, + "text": "named by|strong=\"G5259\"* God|strong=\"G2316\"* a|strong=\"G5259\"* high|strong=\"G2316\"* priest after|strong=\"G2596\"* the|strong=\"G2596\"* order|strong=\"G5010\"* of|strong=\"G5259\"* Melchizedek|strong=\"G3198\"*." + }, + { + "verseNum": 11, + "text": "About|strong=\"G4012\"* him|strong=\"G3588\"* we|strong=\"G2249\"* have|strong=\"G2532\"* many|strong=\"G4183\"* words|strong=\"G3056\"* to|strong=\"G2532\"* say|strong=\"G3004\"*, and|strong=\"G2532\"* hard|strong=\"G4183\"* to|strong=\"G2532\"* interpret, seeing|strong=\"G1893\"* you|strong=\"G3739\"* have|strong=\"G2532\"* become|strong=\"G1096\"* dull|strong=\"G3576\"* of|strong=\"G4012\"* hearing." + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* although|strong=\"G5210\"* by|strong=\"G1223\"* this|strong=\"G3588\"* time|strong=\"G5550\"* you|strong=\"G5210\"* should|strong=\"G5100\"* be|strong=\"G1096\"* teachers|strong=\"G1320\"*, you|strong=\"G5210\"* again|strong=\"G3825\"* need|strong=\"G5532\"* to|strong=\"G2532\"* have|strong=\"G2192\"* someone|strong=\"G5100\"* teach|strong=\"G1321\"* you|strong=\"G5210\"* the|strong=\"G2532\"* rudiments|strong=\"G4747\"* of|strong=\"G1223\"* the|strong=\"G2532\"* first|strong=\"G3588\"* principles|strong=\"G4747\"* of|strong=\"G1223\"* the|strong=\"G2532\"* revelations of|strong=\"G1223\"* God|strong=\"G2316\"*. You|strong=\"G5210\"* have|strong=\"G2192\"* come|strong=\"G1096\"* to|strong=\"G2532\"* need|strong=\"G5532\"* milk|strong=\"G1051\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* solid|strong=\"G4731\"* food|strong=\"G5160\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* lives on|strong=\"G3588\"* milk|strong=\"G1051\"* is|strong=\"G1510\"* not|strong=\"G1510\"* experienced in|strong=\"G3956\"* the|strong=\"G3956\"* word|strong=\"G3056\"* of|strong=\"G3056\"* righteousness|strong=\"G1343\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* is|strong=\"G1510\"* a|strong=\"G1510\"* baby." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* solid|strong=\"G4731\"* food|strong=\"G5160\"* is|strong=\"G1510\"* for|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* full|strong=\"G2192\"* grown, who|strong=\"G3588\"* by|strong=\"G1223\"* reason|strong=\"G1223\"* of|strong=\"G1223\"* use|strong=\"G1838\"* have|strong=\"G2192\"* their|strong=\"G2532\"* senses exercised|strong=\"G1128\"* to|strong=\"G4314\"* discern|strong=\"G1253\"* good|strong=\"G2570\"* and|strong=\"G2532\"* evil|strong=\"G2556\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1352\"* leaving|strong=\"G3588\"* the|strong=\"G2532\"* teaching|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* first|strong=\"G3588\"* principles of|strong=\"G3056\"* Christ|strong=\"G5547\"*, let|strong=\"G2532\"*’s press|strong=\"G5342\"* on|strong=\"G1909\"* to|strong=\"G2532\"* perfection|strong=\"G5047\"*—not|strong=\"G3361\"* laying|strong=\"G2598\"* again|strong=\"G3825\"* a|strong=\"G2532\"* foundation|strong=\"G2310\"* of|strong=\"G3056\"* repentance|strong=\"G3341\"* from|strong=\"G2532\"* dead|strong=\"G3498\"* works|strong=\"G2041\"*, of|strong=\"G3056\"* faith|strong=\"G4102\"* toward|strong=\"G1909\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 2, + "text": "of|strong=\"G2532\"* the|strong=\"G2532\"* teaching|strong=\"G1322\"* of|strong=\"G2532\"* baptisms, of|strong=\"G2532\"* laying|strong=\"G1936\"* on|strong=\"G5495\"* of|strong=\"G2532\"* hands|strong=\"G5495\"*, of|strong=\"G2532\"* resurrection of|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* eternal judgment|strong=\"G2917\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"G3778\"* will|strong=\"G2316\"* we|strong=\"G1437\"* do|strong=\"G4160\"*, if|strong=\"G1437\"* God|strong=\"G2316\"* permits|strong=\"G2010\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* concerning those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* once enlightened|strong=\"G5461\"* and|strong=\"G2532\"* tasted|strong=\"G1089\"* of|strong=\"G4151\"* the|strong=\"G2532\"* heavenly|strong=\"G2032\"* gift|strong=\"G1431\"*, and|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* partakers|strong=\"G3353\"* of|strong=\"G4151\"* the|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* tasted|strong=\"G1089\"* the|strong=\"G2532\"* good|strong=\"G2570\"* word|strong=\"G4487\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* powers|strong=\"G1411\"* of|strong=\"G2316\"* the|strong=\"G2532\"* age to|strong=\"G2532\"* come|strong=\"G3195\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* then|strong=\"G2532\"* fell|strong=\"G2532\"* away|strong=\"G3895\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* impossible to|strong=\"G1519\"* renew them|strong=\"G3588\"* again|strong=\"G3825\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*; seeing they|strong=\"G2532\"* crucify the|strong=\"G2532\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* for|strong=\"G1519\"* themselves|strong=\"G1438\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* put|strong=\"G3856\"* him|strong=\"G3588\"* to|strong=\"G1519\"* open|strong=\"G3856\"* shame|strong=\"G3856\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* land|strong=\"G1093\"* which|strong=\"G3739\"* has|strong=\"G2316\"* drunk|strong=\"G4095\"* the|strong=\"G2532\"* rain|strong=\"G5205\"* that|strong=\"G3739\"* comes|strong=\"G2064\"* often|strong=\"G4178\"* on|strong=\"G1909\"* it|strong=\"G2532\"* and|strong=\"G2532\"* produces a|strong=\"G2532\"* crop suitable|strong=\"G3588\"* for|strong=\"G1063\"* them|strong=\"G3588\"* for|strong=\"G1063\"* whose|strong=\"G3739\"* sake|strong=\"G1223\"* it|strong=\"G2532\"* is|strong=\"G3588\"* also|strong=\"G2532\"* tilled|strong=\"G1090\"*, receives|strong=\"G3335\"* blessing|strong=\"G2129\"* from|strong=\"G2064\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* if|strong=\"G2532\"* it|strong=\"G2532\"* bears thorns and|strong=\"G2532\"* thistles|strong=\"G5146\"*, it|strong=\"G2532\"* is|strong=\"G3588\"* rejected and|strong=\"G2532\"* near|strong=\"G1451\"* being|strong=\"G2532\"* cursed|strong=\"G2671\"*, whose|strong=\"G3739\"* end|strong=\"G5056\"* is|strong=\"G3588\"* to|strong=\"G1519\"* be|strong=\"G2532\"* burned|strong=\"G2740\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"*, beloved, we|strong=\"G2532\"* are|strong=\"G3588\"* persuaded|strong=\"G3982\"* of|strong=\"G4012\"* better|strong=\"G2909\"* things|strong=\"G3588\"* for|strong=\"G4012\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3588\"* accompany|strong=\"G2192\"* salvation|strong=\"G4991\"*, even|strong=\"G2532\"* though|strong=\"G1487\"* we|strong=\"G2532\"* speak|strong=\"G2980\"* like|strong=\"G3779\"* this|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* is|strong=\"G3588\"* not|strong=\"G3756\"* unrighteous, so|strong=\"G2532\"* as|strong=\"G1519\"* to|strong=\"G1519\"* forget|strong=\"G1950\"* your|strong=\"G2532\"* work|strong=\"G2041\"* and|strong=\"G2532\"* the|strong=\"G2532\"* labor|strong=\"G2041\"* of|strong=\"G2316\"* love which|strong=\"G3739\"* you|strong=\"G5210\"* showed toward|strong=\"G1519\"* his|strong=\"G1519\"* name|strong=\"G3686\"*, in|strong=\"G1519\"* that|strong=\"G3739\"* you|strong=\"G5210\"* served|strong=\"G1247\"* the|strong=\"G2532\"* saints, and|strong=\"G2532\"* still do|strong=\"G2532\"* serve|strong=\"G1247\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"G1161\"* desire|strong=\"G1937\"* that|strong=\"G3588\"* each|strong=\"G1538\"* one|strong=\"G1538\"* of|strong=\"G1680\"* you|strong=\"G5210\"* may|strong=\"G5210\"* show|strong=\"G1731\"* the|strong=\"G1161\"* same diligence|strong=\"G4710\"* to|strong=\"G4314\"* the|strong=\"G1161\"* fullness of|strong=\"G1680\"* hope|strong=\"G1680\"* even|strong=\"G1161\"* to|strong=\"G4314\"* the|strong=\"G1161\"* end|strong=\"G5056\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"G2443\"* you|strong=\"G2532\"* won’t|strong=\"G3588\"* be|strong=\"G1096\"* sluggish|strong=\"G3576\"*, but|strong=\"G1161\"* imitators|strong=\"G3402\"* of|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3588\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* perseverance|strong=\"G3115\"* inherited|strong=\"G2816\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* when|strong=\"G2192\"* God|strong=\"G2316\"* made|strong=\"G1861\"* a|strong=\"G2192\"* promise|strong=\"G1861\"* to|strong=\"G2596\"* Abraham, since|strong=\"G1893\"* he|strong=\"G3588\"* could|strong=\"G2192\"* swear|strong=\"G3660\"* by|strong=\"G2596\"* no|strong=\"G3762\"* one|strong=\"G3762\"* greater|strong=\"G3173\"*, he|strong=\"G3588\"* swore|strong=\"G3660\"* by|strong=\"G2596\"* himself|strong=\"G1438\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"G3004\"*, “Surely|strong=\"G3375\"* blessing|strong=\"G2127\"* I|strong=\"G2532\"* will|strong=\"G2532\"* bless|strong=\"G2127\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* multiplying|strong=\"G4129\"* I|strong=\"G2532\"* will|strong=\"G2532\"* multiply|strong=\"G4129\"* you|strong=\"G4771\"*.”+ 6:14 Genesis 22:17*" + }, + { + "verseNum": 15, + "text": "Thus|strong=\"G3779\"*, having|strong=\"G2532\"* patiently|strong=\"G3114\"* endured|strong=\"G3114\"*, he|strong=\"G2532\"* obtained|strong=\"G2013\"* the|strong=\"G2532\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* men|strong=\"G3956\"* indeed|strong=\"G2532\"* swear|strong=\"G3660\"* by|strong=\"G2596\"* a|strong=\"G2532\"* greater|strong=\"G3173\"* one|strong=\"G3956\"*, and|strong=\"G2532\"* in|strong=\"G1519\"* every|strong=\"G3956\"* dispute of|strong=\"G2532\"* theirs the|strong=\"G2532\"* oath|strong=\"G3727\"* is|strong=\"G3588\"* final for|strong=\"G1063\"* confirmation." + }, + { + "verseNum": 17, + "text": "In|strong=\"G1722\"* this|strong=\"G3588\"* way|strong=\"G1722\"* God|strong=\"G2316\"*, being|strong=\"G1722\"* determined|strong=\"G1012\"* to|strong=\"G1722\"* show|strong=\"G1925\"* more|strong=\"G4054\"* abundantly|strong=\"G4054\"* to|strong=\"G1722\"* the|strong=\"G1722\"* heirs|strong=\"G2818\"* of|strong=\"G2316\"* the|strong=\"G1722\"* promise|strong=\"G1860\"* the|strong=\"G1722\"* immutability of|strong=\"G2316\"* his|strong=\"G1722\"* counsel|strong=\"G1012\"*, interposed|strong=\"G3315\"* with|strong=\"G1722\"* an|strong=\"G1722\"* oath|strong=\"G3727\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"G2443\"* by|strong=\"G1223\"* two|strong=\"G1417\"* immutable things|strong=\"G3588\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* it|strong=\"G3739\"* is|strong=\"G3588\"* impossible for|strong=\"G1223\"* God|strong=\"G2316\"* to|strong=\"G2443\"* lie|strong=\"G5574\"*, we|strong=\"G3739\"* may|strong=\"G2443\"* have|strong=\"G2192\"* a|strong=\"G2192\"* strong|strong=\"G2478\"* encouragement|strong=\"G3874\"*, who|strong=\"G3739\"* have|strong=\"G2192\"* fled|strong=\"G2703\"* for|strong=\"G1223\"* refuge|strong=\"G2703\"* to|strong=\"G2443\"* take|strong=\"G2902\"* hold|strong=\"G2902\"* of|strong=\"G1223\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* set|strong=\"G4295\"* before|strong=\"G1722\"* us|strong=\"G4295\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"G3588\"* hope|strong=\"G2532\"* we|strong=\"G3739\"* have|strong=\"G2192\"* as|strong=\"G5613\"* an|strong=\"G2192\"* anchor of|strong=\"G2532\"* the|strong=\"G2532\"* soul|strong=\"G5590\"*, a|strong=\"G2192\"* hope|strong=\"G2532\"* both|strong=\"G2532\"* sure and|strong=\"G2532\"* steadfast and|strong=\"G2532\"* entering|strong=\"G1525\"* into|strong=\"G1519\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* within|strong=\"G2082\"* the|strong=\"G2532\"* veil|strong=\"G2665\"*," + }, + { + "verseNum": 20, + "text": "where|strong=\"G3699\"* as|strong=\"G1519\"* a|strong=\"G1096\"* forerunner|strong=\"G4274\"* Jesus|strong=\"G2424\"* entered|strong=\"G1525\"* for|strong=\"G1519\"* us|strong=\"G1519\"*, having become|strong=\"G1096\"* a|strong=\"G1096\"* high priest forever|strong=\"G1519\"* after|strong=\"G2596\"* the|strong=\"G1519\"* order|strong=\"G5010\"* of|strong=\"G2596\"* Melchizedek|strong=\"G3198\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* Melchizedek|strong=\"G3198\"*, king|strong=\"G3588\"* of|strong=\"G2316\"* Salem|strong=\"G4532\"*, priest|strong=\"G2409\"* of|strong=\"G2316\"* God|strong=\"G2316\"* Most|strong=\"G5310\"* High|strong=\"G5310\"*, who|strong=\"G3588\"* met|strong=\"G4876\"* Abraham returning|strong=\"G5290\"* from|strong=\"G2532\"* the|strong=\"G2532\"* slaughter|strong=\"G2871\"* of|strong=\"G2316\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* blessed|strong=\"G2127\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"G2532\"* whom|strong=\"G3739\"* also|strong=\"G2532\"* Abraham divided|strong=\"G3307\"* a|strong=\"G2532\"* tenth|strong=\"G1181\"* part|strong=\"G1181\"* of|strong=\"G2532\"* all|strong=\"G3956\"* (being|strong=\"G1510\"* first|strong=\"G4413\"*, by|strong=\"G2532\"* interpretation|strong=\"G2059\"*, “king of|strong=\"G2532\"* righteousness|strong=\"G1343\"*”, and|strong=\"G2532\"* then|strong=\"G2532\"* also|strong=\"G2532\"* “king of|strong=\"G2532\"* Salem|strong=\"G4532\"*”, which|strong=\"G3739\"* means|strong=\"G1510\"* “king of|strong=\"G2532\"* peace|strong=\"G1515\"*”," + }, + { + "verseNum": 3, + "text": "without|strong=\"G2316\"* father, without|strong=\"G2316\"* mother, without|strong=\"G2316\"* genealogy, having|strong=\"G2192\"* neither|strong=\"G3383\"* beginning of|strong=\"G5207\"* days|strong=\"G2250\"* nor|strong=\"G3383\"* end|strong=\"G5056\"* of|strong=\"G5207\"* life|strong=\"G2222\"*, but|strong=\"G1161\"* made|strong=\"G2316\"* like|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*), remains|strong=\"G3306\"* a|strong=\"G2192\"* priest|strong=\"G2409\"* continually|strong=\"G1336\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"G1161\"* consider|strong=\"G2334\"* how|strong=\"G1161\"* great|strong=\"G4080\"* this|strong=\"G3778\"* man|strong=\"G3778\"* was|strong=\"G3588\"*, to|strong=\"G2532\"* whom|strong=\"G3739\"* even|strong=\"G2532\"* Abraham the|strong=\"G2532\"* patriarch|strong=\"G3966\"* gave|strong=\"G1325\"* a|strong=\"G2532\"* tenth|strong=\"G1181\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* best plunder." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* indeed|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G1537\"* Levi|strong=\"G3017\"* who|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* priest’s|strong=\"G2192\"* office|strong=\"G2405\"* have|strong=\"G2192\"* a|strong=\"G2192\"* commandment|strong=\"G1785\"* to|strong=\"G2532\"* take|strong=\"G2983\"* tithes from|strong=\"G1537\"* the|strong=\"G2532\"* people|strong=\"G2992\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, of|strong=\"G1537\"* their|strong=\"G2532\"* brothers, though|strong=\"G2539\"* these|strong=\"G3778\"* have|strong=\"G2192\"* come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* body of|strong=\"G1537\"* Abraham," + }, + { + "verseNum": 6, + "text": "but|strong=\"G1161\"* he|strong=\"G2532\"* whose|strong=\"G3588\"* genealogy|strong=\"G1075\"* is|strong=\"G3588\"* not|strong=\"G3361\"* counted|strong=\"G2192\"* from|strong=\"G1537\"* them|strong=\"G3588\"* has|strong=\"G2192\"* accepted tithes|strong=\"G1183\"* from|strong=\"G1537\"* Abraham, and|strong=\"G2532\"* has|strong=\"G2192\"* blessed|strong=\"G2127\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* without|strong=\"G5565\"* any|strong=\"G3956\"* dispute the|strong=\"G3956\"* lesser|strong=\"G1640\"* is|strong=\"G3588\"* blessed|strong=\"G2127\"* by|strong=\"G5259\"* the|strong=\"G3956\"* greater|strong=\"G2909\"*." + }, + { + "verseNum": 8, + "text": "Here|strong=\"G5602\"* people|strong=\"G2983\"* who|strong=\"G3748\"* die receive|strong=\"G2983\"* tithes|strong=\"G1181\"*, but|strong=\"G1161\"* there|strong=\"G1563\"* one|strong=\"G3303\"* receives|strong=\"G2983\"* tithes|strong=\"G1181\"* of|strong=\"G2532\"* whom|strong=\"G1161\"* it|strong=\"G2532\"* is|strong=\"G3748\"* testified|strong=\"G3140\"* that|strong=\"G3754\"* he|strong=\"G2532\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 9, + "text": "We|strong=\"G2532\"* can|strong=\"G3004\"* say|strong=\"G3004\"* that|strong=\"G3588\"* through|strong=\"G1223\"* Abraham even|strong=\"G2532\"* Levi|strong=\"G3018\"*, who|strong=\"G3588\"* receives|strong=\"G2983\"* tithes|strong=\"G1181\"*, has|strong=\"G2532\"* paid|strong=\"G1183\"* tithes|strong=\"G1181\"*," + }, + { + "verseNum": 10, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* was|strong=\"G1510\"* yet|strong=\"G2089\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body of|strong=\"G3962\"* his|strong=\"G1722\"* father|strong=\"G3962\"* when|strong=\"G3753\"* Melchizedek|strong=\"G3198\"* met|strong=\"G4876\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"G2532\"* if|strong=\"G1487\"* perfection|strong=\"G5050\"* was|strong=\"G1510\"* through|strong=\"G1223\"* the|strong=\"G2532\"* Levitical|strong=\"G3020\"* priesthood|strong=\"G2420\"* (for|strong=\"G1063\"* under|strong=\"G1909\"* it|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"* have|strong=\"G2532\"* received|strong=\"G3549\"* the|strong=\"G2532\"* law|strong=\"G3549\"*), what|strong=\"G5101\"* further|strong=\"G2089\"* need|strong=\"G5532\"* was|strong=\"G1510\"* there|strong=\"G2532\"* for|strong=\"G1063\"* another|strong=\"G2087\"* priest|strong=\"G2409\"* to|strong=\"G2532\"* arise after|strong=\"G2596\"* the|strong=\"G2532\"* order|strong=\"G5010\"* of|strong=\"G1223\"* Melchizedek|strong=\"G3198\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G3004\"* after|strong=\"G2596\"* the|strong=\"G2532\"* order|strong=\"G5010\"* of|strong=\"G1223\"* Aaron?" + }, + { + "verseNum": 12, + "text": "For|strong=\"G1063\"* the|strong=\"G2532\"* priesthood|strong=\"G2420\"* being|strong=\"G1096\"* changed|strong=\"G3346\"*, there|strong=\"G2532\"* is|strong=\"G3588\"* of|strong=\"G1537\"* necessity a|strong=\"G1096\"* change|strong=\"G3331\"* made|strong=\"G1096\"* also|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* of|strong=\"G1909\"* whom|strong=\"G3739\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G3588\"* said|strong=\"G3004\"* belongs|strong=\"G3348\"* to|strong=\"G1909\"* another|strong=\"G2087\"* tribe|strong=\"G5443\"*, from|strong=\"G3588\"* which|strong=\"G3739\"* no|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G3739\"* officiated|strong=\"G4337\"* at|strong=\"G1909\"* the|strong=\"G1909\"* altar|strong=\"G2379\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* evident|strong=\"G4271\"* that|strong=\"G3754\"* our|strong=\"G2962\"* Lord|strong=\"G2962\"* has|strong=\"G2962\"* sprung out|strong=\"G1537\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*, about|strong=\"G4012\"* which|strong=\"G3739\"* tribe|strong=\"G5443\"* Moses|strong=\"G3475\"* spoke|strong=\"G2980\"* nothing|strong=\"G3762\"* concerning|strong=\"G4012\"* priesthood." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3588\"* is|strong=\"G1510\"* yet|strong=\"G2089\"* more|strong=\"G2089\"* abundantly|strong=\"G4054\"* evident|strong=\"G2612\"*, if|strong=\"G1487\"* after|strong=\"G2596\"* the|strong=\"G2532\"* likeness|strong=\"G3665\"* of|strong=\"G2532\"* Melchizedek|strong=\"G3198\"* there|strong=\"G2532\"* arises another|strong=\"G2087\"* priest|strong=\"G2409\"*," + }, + { + "verseNum": 16, + "text": "who|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* made|strong=\"G1096\"*, not|strong=\"G3756\"* after|strong=\"G2596\"* the|strong=\"G2596\"* law|strong=\"G3551\"* of|strong=\"G3551\"* a|strong=\"G1096\"* fleshly commandment|strong=\"G1785\"*, but|strong=\"G3551\"* after|strong=\"G2596\"* the|strong=\"G2596\"* power|strong=\"G1411\"* of|strong=\"G3551\"* an|strong=\"G1096\"* endless life|strong=\"G2222\"*;" + }, + { + "verseNum": 17, + "text": "for|strong=\"G1063\"* it|strong=\"G3754\"* is|strong=\"G3588\"* testified|strong=\"G3140\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* is|strong=\"G3588\"* an|strong=\"G2532\"* annulling of|strong=\"G1223\"* a|strong=\"G1096\"* foregoing commandment|strong=\"G1785\"* because|strong=\"G1223\"* of|strong=\"G1223\"* its|strong=\"G1223\"* weakness and|strong=\"G2532\"* uselessness" + }, + { + "verseNum": 19, + "text": "(for|strong=\"G1063\"* the|strong=\"G1161\"* law|strong=\"G3551\"* made|strong=\"G5048\"* nothing|strong=\"G3762\"* perfect|strong=\"G5048\"*), and|strong=\"G1161\"* a|strong=\"G1161\"* bringing|strong=\"G1898\"* in|strong=\"G2316\"* of|strong=\"G1223\"* a|strong=\"G1161\"* better|strong=\"G2909\"* hope|strong=\"G1680\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G3739\"* draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G1161\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "Inasmuch|strong=\"G2596\"* as|strong=\"G3745\"* he|strong=\"G2532\"* was|strong=\"G1510\"* not|strong=\"G3756\"* made|strong=\"G1096\"* priest|strong=\"G2409\"* without|strong=\"G5565\"* the|strong=\"G2532\"* taking|strong=\"G1096\"* of|strong=\"G2532\"* an|strong=\"G2532\"* oath|strong=\"G3728\"*" + }, + { + "verseNum": 21, + "text": "(for|strong=\"G1519\"* they|strong=\"G2532\"* indeed|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* made|strong=\"G3756\"* priests|strong=\"G2409\"* without|strong=\"G2532\"* an|strong=\"G2532\"* oath|strong=\"G3728\"*), but|strong=\"G1161\"* he|strong=\"G2532\"* with|strong=\"G3326\"* an|strong=\"G2532\"* oath|strong=\"G3728\"* by|strong=\"G1223\"* him|strong=\"G3588\"* that|strong=\"G3588\"* says|strong=\"G3004\"* of|strong=\"G1223\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 22, + "text": "By|strong=\"G2596\"* so|strong=\"G2532\"* much|strong=\"G5118\"*, Jesus|strong=\"G2424\"* has|strong=\"G1096\"* become|strong=\"G1096\"* the|strong=\"G2532\"* guarantee|strong=\"G1450\"* of|strong=\"G2532\"* a|strong=\"G1096\"* better|strong=\"G2909\"* covenant|strong=\"G1242\"*." + }, + { + "verseNum": 23, + "text": "Many|strong=\"G4183\"*, indeed|strong=\"G2532\"*, have|strong=\"G2532\"* been|strong=\"G1510\"* made|strong=\"G1096\"* priests|strong=\"G2409\"*, because|strong=\"G1223\"* they|strong=\"G2532\"* are|strong=\"G1510\"* hindered|strong=\"G2967\"* from|strong=\"G2532\"* continuing|strong=\"G3887\"* by|strong=\"G1223\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"*, because|strong=\"G1223\"* he|strong=\"G1161\"* lives|strong=\"G3306\"* forever|strong=\"G1519\"*, has|strong=\"G2192\"* his|strong=\"G1223\"* priesthood|strong=\"G2420\"* unchangeable." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G3588\"* also|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G1519\"* save|strong=\"G4982\"* to|strong=\"G1519\"* the|strong=\"G2532\"* uttermost|strong=\"G3838\"* those|strong=\"G3588\"* who|strong=\"G3588\"* draw|strong=\"G4334\"* near|strong=\"G4334\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* him|strong=\"G3588\"*, seeing|strong=\"G1223\"* that|strong=\"G3588\"* he|strong=\"G2532\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* to|strong=\"G1519\"* make|strong=\"G1519\"* intercession|strong=\"G1793\"* for|strong=\"G1519\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* such|strong=\"G5108\"* a|strong=\"G1096\"* high|strong=\"G5308\"* priest was|strong=\"G1096\"* fitting|strong=\"G4241\"* for|strong=\"G1063\"* us|strong=\"G1096\"*: holy|strong=\"G3741\"*, guiltless, undefiled, separated|strong=\"G5563\"* from|strong=\"G2532\"* sinners, and|strong=\"G2532\"* made|strong=\"G1096\"* higher|strong=\"G5308\"* than|strong=\"G2532\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*;" + }, + { + "verseNum": 27, + "text": "who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* need|strong=\"G2192\"*, like|strong=\"G5618\"* those|strong=\"G3588\"* high priests, to|strong=\"G2596\"* offer|strong=\"G4374\"* up|strong=\"G4374\"* sacrifices|strong=\"G2378\"* daily|strong=\"G2250\"*, first|strong=\"G4386\"* for|strong=\"G1063\"* his|strong=\"G1438\"* own|strong=\"G2398\"* sins, and|strong=\"G2250\"* then|strong=\"G1899\"* for|strong=\"G1063\"* the|strong=\"G2596\"* sins of|strong=\"G2250\"* the|strong=\"G2596\"* people|strong=\"G2992\"*. For|strong=\"G1063\"* he|strong=\"G3739\"* did|strong=\"G4160\"* this|strong=\"G3778\"* once|strong=\"G2178\"* for|strong=\"G1063\"* all|strong=\"G2596\"*, when|strong=\"G3739\"* he|strong=\"G3739\"* offered|strong=\"G4374\"* up|strong=\"G4374\"* himself|strong=\"G1438\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* law|strong=\"G3551\"* appoints|strong=\"G2525\"* men|strong=\"G3588\"* as|strong=\"G1519\"* high priests who|strong=\"G3588\"* have|strong=\"G2192\"* weakness, but|strong=\"G1161\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G5207\"* the|strong=\"G1519\"* oath|strong=\"G3728\"*, which|strong=\"G3588\"* came|strong=\"G3588\"* after|strong=\"G3326\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, appoints|strong=\"G2525\"* a|strong=\"G2192\"* Son|strong=\"G5207\"* forever|strong=\"G1519\"* who|strong=\"G3588\"* has|strong=\"G2192\"* been|strong=\"G2192\"* perfected|strong=\"G5048\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* in|strong=\"G1722\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* we|strong=\"G3739\"* are|strong=\"G3588\"* saying|strong=\"G3004\"*, the|strong=\"G1722\"* main|strong=\"G2774\"* point|strong=\"G2774\"* is|strong=\"G3588\"* this|strong=\"G3588\"*: we|strong=\"G3739\"* have|strong=\"G2192\"* such|strong=\"G5108\"* a|strong=\"G2192\"* high priest, who|strong=\"G3739\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1909\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G1909\"* the|strong=\"G1722\"* Majesty|strong=\"G3172\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"*," + }, + { + "verseNum": 2, + "text": "a|strong=\"G2532\"* servant|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sanctuary and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* true|strong=\"G3588\"* tabernacle|strong=\"G4633\"* which|strong=\"G3739\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* pitched|strong=\"G4078\"*, not|strong=\"G3756\"* man|strong=\"G3739\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* high|strong=\"G3956\"* priest|strong=\"G4374\"* is|strong=\"G3588\"* appointed|strong=\"G2525\"* to|strong=\"G1519\"* offer|strong=\"G4374\"* both|strong=\"G2532\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"*. Therefore|strong=\"G3606\"* it|strong=\"G2532\"* is|strong=\"G3588\"* necessary that|strong=\"G3739\"* this|strong=\"G3778\"* high|strong=\"G3956\"* priest|strong=\"G4374\"* also|strong=\"G2532\"* have|strong=\"G2192\"* something|strong=\"G5100\"* to|strong=\"G1519\"* offer|strong=\"G4374\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1909\"* if|strong=\"G1487\"* he|strong=\"G3588\"* were|strong=\"G1510\"* on|strong=\"G1909\"* earth|strong=\"G1093\"*, he|strong=\"G3588\"* would|strong=\"G1510\"* not|strong=\"G3761\"* be|strong=\"G1510\"* a|strong=\"G1510\"* priest|strong=\"G2409\"* at|strong=\"G1909\"* all|strong=\"G2596\"*, seeing there|strong=\"G1510\"* are|strong=\"G1510\"* priests|strong=\"G2409\"* who|strong=\"G3588\"* offer|strong=\"G4374\"* the|strong=\"G1909\"* gifts|strong=\"G1435\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1909\"* law|strong=\"G3551\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"G3588\"* serve|strong=\"G3000\"* a|strong=\"G2532\"* copy|strong=\"G5262\"* and|strong=\"G2532\"* shadow|strong=\"G4639\"* of|strong=\"G2532\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* things|strong=\"G3956\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* Moses|strong=\"G3475\"* was|strong=\"G3588\"* warned|strong=\"G5537\"* by|strong=\"G1722\"* God|strong=\"G5537\"* when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* make|strong=\"G4160\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* said|strong=\"G5346\"*, “See|strong=\"G3708\"*, you|strong=\"G4771\"* shall|strong=\"G2532\"* make|strong=\"G4160\"* everything|strong=\"G3956\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* pattern|strong=\"G5179\"* that|strong=\"G3588\"* was|strong=\"G3588\"* shown|strong=\"G1166\"* to|strong=\"G2532\"* you|strong=\"G4771\"* on|strong=\"G1722\"* the|strong=\"G1722\"* mountain|strong=\"G3735\"*.”+ 8:5 Exodus 25:40*" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G3748\"* obtained|strong=\"G5177\"* a|strong=\"G2532\"* more|strong=\"G1313\"* excellent|strong=\"G1313\"* ministry|strong=\"G3009\"*, by|strong=\"G1909\"* as|strong=\"G3745\"* much|strong=\"G3745\"* as|strong=\"G3745\"* he|strong=\"G2532\"* is|strong=\"G1510\"* also|strong=\"G2532\"* the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G2532\"* a|strong=\"G2532\"* better|strong=\"G2909\"* covenant|strong=\"G1242\"*, which|strong=\"G3748\"* on|strong=\"G1909\"* better|strong=\"G2909\"* promises|strong=\"G1860\"* has|strong=\"G3748\"* been|strong=\"G1510\"* given as|strong=\"G3745\"* law|strong=\"G3549\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* that|strong=\"G3588\"* first|strong=\"G4413\"* covenant had|strong=\"G1510\"* been|strong=\"G1510\"* faultless, then|strong=\"G1063\"* no|strong=\"G3756\"* place|strong=\"G5117\"* would|strong=\"G1510\"* have|strong=\"G1510\"* been|strong=\"G1510\"* sought|strong=\"G2212\"* for|strong=\"G1063\"* a|strong=\"G1510\"* second|strong=\"G1208\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* finding|strong=\"G3201\"* fault|strong=\"G3201\"* with|strong=\"G2532\"* them|strong=\"G3588\"*, he|strong=\"G2532\"* said|strong=\"G3004\"*," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3756\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* that|strong=\"G3754\"* I|strong=\"G1473\"* made|strong=\"G4160\"* with|strong=\"G1722\"* their|strong=\"G1438\"* fathers|strong=\"G3962\"*" + }, + { + "verseNum": 10, + "text": "“For|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* that|strong=\"G3754\"* I|strong=\"G1473\"* will|strong=\"G2316\"* make|strong=\"G1303\"* with|strong=\"G3326\"* the|strong=\"G2532\"* house|strong=\"G3624\"* of|strong=\"G2250\"* Israel|strong=\"G2474\"*" + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* teach|strong=\"G1321\"* every|strong=\"G3956\"* man|strong=\"G1538\"* his|strong=\"G3956\"* fellow|strong=\"G4177\"* citizen|strong=\"G4177\"*+ 8:11 TR reads “neighbor” instead of “fellow citizen”*" + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* I|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* merciful|strong=\"G2436\"* to|strong=\"G2532\"* their|strong=\"G2532\"* unrighteousness." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* he|strong=\"G2532\"* says|strong=\"G3004\"*, “A|strong=\"G2532\"* new|strong=\"G2537\"* covenant”, he|strong=\"G2532\"* has|strong=\"G2532\"* made|strong=\"G1161\"* the|strong=\"G1722\"* first|strong=\"G4413\"* obsolete|strong=\"G3822\"*. But|strong=\"G1161\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* becoming|strong=\"G3822\"* obsolete|strong=\"G3822\"* and|strong=\"G2532\"* grows aged is|strong=\"G3588\"* near|strong=\"G1451\"* to|strong=\"G2532\"* vanishing away." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G2532\"* indeed|strong=\"G2532\"* even|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"*+ 9:1 TR adds “tabernacle”* covenant had|strong=\"G2192\"* ordinances|strong=\"G1345\"* of|strong=\"G2532\"* divine|strong=\"G2999\"* service|strong=\"G2999\"* and|strong=\"G2532\"* an|strong=\"G2192\"* earthly|strong=\"G2886\"* sanctuary." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* a|strong=\"G2532\"* tabernacle|strong=\"G4633\"* was|strong=\"G3588\"* prepared|strong=\"G2680\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G4413\"* part|strong=\"G2532\"* were|strong=\"G3588\"* the|strong=\"G1722\"* lamp stand, the|strong=\"G1722\"* table|strong=\"G5132\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* show bread, which|strong=\"G3739\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1722\"* Holy Place|strong=\"G1722\"*." + }, + { + "verseNum": 3, + "text": "After|strong=\"G3326\"* the|strong=\"G1161\"* second|strong=\"G1208\"* veil|strong=\"G2665\"* was|strong=\"G3588\"* the|strong=\"G1161\"* tabernacle|strong=\"G4633\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G3004\"* the|strong=\"G1161\"* Holy of|strong=\"G3588\"* Holies," + }, + { + "verseNum": 4, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* altar|strong=\"G2369\"* of|strong=\"G2532\"* incense|strong=\"G2369\"* and|strong=\"G2532\"* the|strong=\"G1722\"* ark|strong=\"G2787\"* of|strong=\"G2532\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* overlaid|strong=\"G4028\"* on|strong=\"G1722\"* all|strong=\"G2532\"* sides|strong=\"G3840\"* with|strong=\"G1722\"* gold|strong=\"G5553\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* was|strong=\"G3588\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* pot|strong=\"G4713\"* holding|strong=\"G2192\"* the|strong=\"G1722\"* manna|strong=\"G3131\"*, Aaron’s|strong=\"G2192\"* rod|strong=\"G4464\"* that|strong=\"G3739\"* budded, and|strong=\"G2532\"* the|strong=\"G1722\"* tablets|strong=\"G4109\"* of|strong=\"G2532\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G1161\"* above|strong=\"G5231\"* it|strong=\"G1161\"* cherubim|strong=\"G5502\"* of|strong=\"G4012\"* glory|strong=\"G1391\"* overshadowing|strong=\"G2683\"* the|strong=\"G1161\"* mercy|strong=\"G2435\"* seat|strong=\"G2435\"*, of|strong=\"G4012\"* which|strong=\"G3739\"* things|strong=\"G3588\"* we|strong=\"G3739\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* speak|strong=\"G3004\"* now|strong=\"G1161\"* in|strong=\"G2596\"* detail|strong=\"G3313\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"G1161\"* these|strong=\"G3778\"* things|strong=\"G3956\"* having been thus|strong=\"G3779\"* prepared|strong=\"G2680\"*, the|strong=\"G1519\"* priests|strong=\"G2409\"* go|strong=\"G1524\"* in|strong=\"G1519\"* continually|strong=\"G1223\"* into|strong=\"G1519\"* the|strong=\"G1519\"* first|strong=\"G4413\"* tabernacle|strong=\"G4633\"*, accomplishing|strong=\"G2005\"* the|strong=\"G1519\"* services," + }, + { + "verseNum": 7, + "text": "but|strong=\"G1161\"* into|strong=\"G1519\"* the|strong=\"G2532\"* second|strong=\"G1208\"* the|strong=\"G2532\"* high|strong=\"G2532\"* priest|strong=\"G4374\"* alone|strong=\"G3441\"*, once|strong=\"G3739\"* in|strong=\"G1519\"* the|strong=\"G2532\"* year|strong=\"G1763\"*, not|strong=\"G3756\"* without|strong=\"G5565\"* blood, which|strong=\"G3739\"* he|strong=\"G2532\"* offers|strong=\"G4374\"* for|strong=\"G1519\"* himself|strong=\"G1438\"* and|strong=\"G2532\"* for|strong=\"G1519\"* the|strong=\"G2532\"* errors of|strong=\"G2532\"* the|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G3588\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* is|strong=\"G3588\"* indicating|strong=\"G1213\"* this|strong=\"G3778\"*, that|strong=\"G3588\"* the|strong=\"G3588\"* way|strong=\"G3598\"* into the|strong=\"G3588\"* Holy|strong=\"G4151\"* Place wasn’t|strong=\"G3588\"* yet|strong=\"G2089\"* revealed|strong=\"G5319\"* while|strong=\"G3778\"* the|strong=\"G3588\"* first|strong=\"G4413\"* tabernacle|strong=\"G4633\"* was|strong=\"G3588\"* still|strong=\"G2089\"* standing|strong=\"G4714\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G2532\"* symbol|strong=\"G3850\"* of|strong=\"G2532\"* the|strong=\"G2532\"* present|strong=\"G1764\"* age|strong=\"G2540\"*, where|strong=\"G3739\"* gifts|strong=\"G1435\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* are|strong=\"G3588\"* offered|strong=\"G4374\"* that|strong=\"G3739\"* are|strong=\"G3588\"* incapable|strong=\"G3361\"*, concerning|strong=\"G1519\"* the|strong=\"G2532\"* conscience|strong=\"G4893\"*, of|strong=\"G2532\"* making|strong=\"G2532\"* the|strong=\"G2532\"* worshiper|strong=\"G3000\"* perfect|strong=\"G5048\"*," + }, + { + "verseNum": 10, + "text": "being|strong=\"G2532\"* only|strong=\"G3440\"* (with|strong=\"G2532\"* foods|strong=\"G1033\"* and|strong=\"G2532\"* drinks|strong=\"G4188\"* and|strong=\"G2532\"* various|strong=\"G1313\"* washings) fleshly|strong=\"G4561\"* ordinances|strong=\"G1345\"*, imposed|strong=\"G1945\"* until|strong=\"G3360\"* a|strong=\"G2532\"* time|strong=\"G2540\"* of|strong=\"G2532\"* reformation|strong=\"G1357\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* Christ|strong=\"G5547\"* having|strong=\"G2532\"* come|strong=\"G1096\"* as|strong=\"G1161\"* a|strong=\"G1096\"* high|strong=\"G3173\"* priest of|strong=\"G1223\"* the|strong=\"G2532\"* coming|strong=\"G3854\"* good|strong=\"G1223\"* things|strong=\"G3778\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* greater|strong=\"G3173\"* and|strong=\"G2532\"* more|strong=\"G3173\"* perfect|strong=\"G5046\"* tabernacle|strong=\"G4633\"*, not|strong=\"G3756\"* made|strong=\"G1096\"* with|strong=\"G1223\"* hands|strong=\"G5499\"*, that|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G2532\"* say|strong=\"G1223\"*, not|strong=\"G3756\"* of|strong=\"G1223\"* this|strong=\"G3778\"* creation|strong=\"G2937\"*," + }, + { + "verseNum": 12, + "text": "nor|strong=\"G3761\"* yet|strong=\"G2532\"* through|strong=\"G1223\"* the|strong=\"G2532\"* blood of|strong=\"G1223\"* goats|strong=\"G5131\"* and|strong=\"G2532\"* calves|strong=\"G3448\"*, but|strong=\"G1161\"* through|strong=\"G1223\"* his|strong=\"G1223\"* own|strong=\"G2398\"* blood, entered|strong=\"G1525\"* in|strong=\"G1519\"* once|strong=\"G2178\"* for|strong=\"G1519\"* all|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* Holy Place, having|strong=\"G2532\"* obtained|strong=\"G2147\"* eternal redemption|strong=\"G3085\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* goats|strong=\"G5131\"* and|strong=\"G2532\"* bulls|strong=\"G5022\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* ashes|strong=\"G4700\"* of|strong=\"G2532\"* a|strong=\"G2532\"* heifer|strong=\"G1151\"* sprinkling|strong=\"G4472\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G2532\"* defiled|strong=\"G2840\"*, sanctify to|strong=\"G4314\"* the|strong=\"G2532\"* cleanness of|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 14, + "text": "how|strong=\"G4214\"* much|strong=\"G4214\"* more|strong=\"G3123\"* will|strong=\"G2316\"* the|strong=\"G1519\"* blood of|strong=\"G4151\"* Christ|strong=\"G5547\"*, who|strong=\"G3739\"* through|strong=\"G1223\"* the|strong=\"G1519\"* eternal Spirit|strong=\"G4151\"* offered|strong=\"G4374\"* himself|strong=\"G1438\"* without|strong=\"G1438\"* defect to|strong=\"G1519\"* God|strong=\"G2316\"*, cleanse|strong=\"G2511\"* your|strong=\"G1223\"* conscience|strong=\"G4893\"* from|strong=\"G3588\"* dead|strong=\"G3498\"* works|strong=\"G2041\"* to|strong=\"G1519\"* serve|strong=\"G3000\"* the|strong=\"G1519\"* living|strong=\"G2198\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"G1519\"* this|strong=\"G3778\"* reason|strong=\"G1223\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G1223\"* a|strong=\"G1096\"* new|strong=\"G2537\"* covenant|strong=\"G1242\"*, since|strong=\"G1223\"* a|strong=\"G1096\"* death|strong=\"G2288\"* has|strong=\"G1096\"* occurred|strong=\"G1096\"* for|strong=\"G1519\"* the|strong=\"G2532\"* redemption of|strong=\"G1223\"* the|strong=\"G2532\"* transgressions|strong=\"G3847\"* that|strong=\"G3588\"* were|strong=\"G1510\"* under|strong=\"G1909\"* the|strong=\"G2532\"* first|strong=\"G4413\"* covenant|strong=\"G1242\"*, that|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G1510\"* called|strong=\"G2564\"* may|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G1223\"* the|strong=\"G2532\"* eternal inheritance|strong=\"G2817\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* where|strong=\"G3699\"* a|strong=\"G5342\"* last will and|strong=\"G3588\"* testament|strong=\"G1242\"* is|strong=\"G3588\"*, there|strong=\"G1063\"* must|strong=\"G3588\"* of|strong=\"G3588\"* necessity be|strong=\"G3588\"* the|strong=\"G3588\"* death|strong=\"G2288\"* of|strong=\"G3588\"* him|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G1303\"* it|strong=\"G1063\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* a|strong=\"G1909\"* will|strong=\"G3498\"* is|strong=\"G3588\"* in|strong=\"G1909\"* force|strong=\"G2480\"* where there|strong=\"G1063\"* has|strong=\"G2480\"* been|strong=\"G2480\"* death|strong=\"G3498\"*, for|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* never|strong=\"G3379\"* in|strong=\"G1909\"* force|strong=\"G2480\"* while|strong=\"G3753\"* he|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G1303\"* it|strong=\"G1063\"* lives|strong=\"G2198\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"G3606\"* even|strong=\"G3761\"* the|strong=\"G3588\"* first|strong=\"G4413\"* covenant has|strong=\"G3761\"* not|strong=\"G3761\"* been dedicated|strong=\"G1457\"* without|strong=\"G5565\"* blood." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* when|strong=\"G2532\"* every|strong=\"G3956\"* commandment|strong=\"G1785\"* had|strong=\"G2532\"* been|strong=\"G2532\"* spoken|strong=\"G2980\"* by|strong=\"G5259\"* Moses|strong=\"G3475\"* to|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, he|strong=\"G2532\"* took|strong=\"G2983\"* the|strong=\"G2532\"* blood of|strong=\"G5259\"* the|strong=\"G2532\"* calves|strong=\"G3448\"* and|strong=\"G2532\"* the|strong=\"G2532\"* goats|strong=\"G5131\"*, with|strong=\"G3326\"* water|strong=\"G5204\"* and|strong=\"G2532\"* scarlet|strong=\"G2847\"* wool|strong=\"G2053\"* and|strong=\"G2532\"* hyssop|strong=\"G5301\"*, and|strong=\"G2532\"* sprinkled|strong=\"G4472\"* both|strong=\"G2532\"* the|strong=\"G2532\"* book|strong=\"G3588\"* itself and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* people|strong=\"G2992\"*," + }, + { + "verseNum": 20, + "text": "saying|strong=\"G3004\"*, “This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G4314\"* blood of|strong=\"G2316\"* the|strong=\"G4314\"* covenant|strong=\"G1242\"* which|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2316\"* commanded|strong=\"G1781\"* you|strong=\"G5210\"*.”+ 9:20 Exodus 24:8*" + }, + { + "verseNum": 21, + "text": "He|strong=\"G2532\"* sprinkled|strong=\"G4472\"* the|strong=\"G2532\"* tabernacle|strong=\"G4633\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* vessels|strong=\"G4632\"* of|strong=\"G2532\"* the|strong=\"G2532\"* ministry|strong=\"G3009\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"* with|strong=\"G2532\"* the|strong=\"G2532\"* blood." + }, + { + "verseNum": 22, + "text": "According|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* law|strong=\"G3551\"*, nearly|strong=\"G4975\"* everything|strong=\"G3956\"* is|strong=\"G3588\"* cleansed|strong=\"G2511\"* with|strong=\"G1722\"* blood, and|strong=\"G2532\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* shedding of|strong=\"G2532\"* blood there|strong=\"G2532\"* is|strong=\"G3588\"* no|strong=\"G3756\"* remission." + }, + { + "verseNum": 23, + "text": "It|strong=\"G1161\"* was|strong=\"G3588\"* necessary|strong=\"G3767\"* therefore|strong=\"G3767\"* that|strong=\"G3588\"* the|strong=\"G1722\"* copies|strong=\"G5262\"* of|strong=\"G3844\"* the|strong=\"G1722\"* things|strong=\"G3778\"* in|strong=\"G1722\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* should|strong=\"G3588\"* be|strong=\"G3588\"* cleansed|strong=\"G2511\"* with|strong=\"G1722\"* these|strong=\"G3778\"*, but|strong=\"G1161\"* the|strong=\"G1722\"* heavenly|strong=\"G2032\"* things|strong=\"G3778\"* themselves|strong=\"G3778\"* with|strong=\"G1722\"* better|strong=\"G2909\"* sacrifices|strong=\"G2378\"* than|strong=\"G3844\"* these|strong=\"G3778\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1063\"* Christ|strong=\"G5547\"* hasn’t|strong=\"G3588\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* holy places made|strong=\"G5499\"* with|strong=\"G2316\"* hands|strong=\"G5499\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* representations of|strong=\"G2316\"* the|strong=\"G1519\"* true|strong=\"G3588\"*, but|strong=\"G1063\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* itself, now|strong=\"G3568\"* to|strong=\"G1519\"* appear|strong=\"G1718\"* in|strong=\"G1519\"* the|strong=\"G1519\"* presence|strong=\"G4383\"* of|strong=\"G2316\"* God|strong=\"G2316\"* for|strong=\"G1063\"* us|strong=\"G1519\"*;" + }, + { + "verseNum": 25, + "text": "nor|strong=\"G3761\"* yet|strong=\"G3761\"* that|strong=\"G2443\"* he|strong=\"G3588\"* should|strong=\"G3588\"* offer|strong=\"G4374\"* himself|strong=\"G1438\"* often|strong=\"G4178\"*, as|strong=\"G5618\"* the|strong=\"G1722\"* high priest|strong=\"G4374\"* enters|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G1722\"* holy place|strong=\"G1722\"* year|strong=\"G1763\"* by|strong=\"G1722\"* year|strong=\"G1763\"* with|strong=\"G1722\"* blood not|strong=\"G3761\"* his|strong=\"G1438\"* own|strong=\"G1438\"*," + }, + { + "verseNum": 26, + "text": "or|strong=\"G1161\"* else|strong=\"G1893\"* he|strong=\"G1161\"* must|strong=\"G1163\"* have|strong=\"G1163\"* suffered|strong=\"G3958\"* often|strong=\"G4178\"* since|strong=\"G1893\"* the|strong=\"G1519\"* foundation|strong=\"G2602\"* of|strong=\"G1223\"* the|strong=\"G1519\"* world|strong=\"G2889\"*. But|strong=\"G1161\"* now|strong=\"G1161\"* once at|strong=\"G1909\"* the|strong=\"G1519\"* end|strong=\"G4930\"* of|strong=\"G1223\"* the|strong=\"G1519\"* ages, he|strong=\"G1161\"* has|strong=\"G2889\"* been|strong=\"G5319\"* revealed|strong=\"G5319\"* to|strong=\"G1519\"* put|strong=\"G1163\"* away sin by|strong=\"G1223\"* the|strong=\"G1519\"* sacrifice|strong=\"G2378\"* of|strong=\"G1223\"* himself|strong=\"G1519\"*." + }, + { + "verseNum": 27, + "text": "Inasmuch|strong=\"G2596\"* as|strong=\"G3745\"* it|strong=\"G2532\"* is|strong=\"G3588\"* appointed for|strong=\"G1161\"* men|strong=\"G3778\"* to|strong=\"G2532\"* die once, and|strong=\"G2532\"* after|strong=\"G3326\"* this|strong=\"G3778\"*, judgment|strong=\"G2920\"*," + }, + { + "verseNum": 28, + "text": "so|strong=\"G3779\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* offered|strong=\"G4374\"* once to|strong=\"G1519\"* bear|strong=\"G2532\"* the|strong=\"G2532\"* sins of|strong=\"G1537\"* many|strong=\"G4183\"*, will|strong=\"G2532\"* appear|strong=\"G3708\"* a|strong=\"G2532\"* second|strong=\"G1208\"* time|strong=\"G1208\"*, not|strong=\"G2532\"* to|strong=\"G1519\"* deal|strong=\"G4183\"* with|strong=\"G1537\"* sin, but|strong=\"G2532\"* to|strong=\"G1519\"* save those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* eagerly waiting for|strong=\"G1519\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* law|strong=\"G3551\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* shadow|strong=\"G4639\"* of|strong=\"G3551\"* the|strong=\"G1519\"* good|strong=\"G3756\"* to|strong=\"G1519\"* come|strong=\"G3195\"*, not|strong=\"G3756\"* the|strong=\"G1519\"* very|strong=\"G3588\"* image|strong=\"G1504\"* of|strong=\"G3551\"* the|strong=\"G1519\"* things|strong=\"G3588\"*, can|strong=\"G1410\"* never|strong=\"G3756\"* with|strong=\"G2596\"* the|strong=\"G1519\"* same|strong=\"G3739\"* sacrifices|strong=\"G2378\"* year|strong=\"G1763\"* by|strong=\"G2596\"* year|strong=\"G1763\"*, which|strong=\"G3739\"* they|strong=\"G3588\"* offer|strong=\"G4374\"* continually|strong=\"G1336\"*, make|strong=\"G5048\"* perfect|strong=\"G5048\"* those|strong=\"G3588\"* who|strong=\"G3739\"* draw|strong=\"G4334\"* near|strong=\"G4334\"*." + }, + { + "verseNum": 2, + "text": "Or|strong=\"G3588\"* else|strong=\"G1893\"* wouldn’t|strong=\"G3588\"* they|strong=\"G3588\"* have|strong=\"G2192\"* ceased|strong=\"G3973\"* to|strong=\"G3756\"* be|strong=\"G3756\"* offered|strong=\"G4374\"*, because|strong=\"G1223\"* the|strong=\"G1223\"* worshipers|strong=\"G3000\"*, having|strong=\"G2192\"* been|strong=\"G2192\"* once cleansed|strong=\"G2511\"*, would|strong=\"G1893\"* have|strong=\"G2192\"* had|strong=\"G2192\"* no|strong=\"G3756\"* more|strong=\"G2089\"* consciousness|strong=\"G4893\"* of|strong=\"G1223\"* sins?" + }, + { + "verseNum": 3, + "text": "But in|strong=\"G1722\"* those|strong=\"G1722\"* sacrifices there|strong=\"G1722\"* is|strong=\"G1722\"* a|strong=\"G1722\"* yearly reminder of|strong=\"G1722\"* sins." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G2532\"* impossible that|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* bulls|strong=\"G5022\"* and|strong=\"G2532\"* goats|strong=\"G5131\"* should|strong=\"G2532\"* take|strong=\"G2532\"* away sins." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"G1352\"* when|strong=\"G1161\"* he|strong=\"G2532\"* comes|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, he|strong=\"G2532\"* says|strong=\"G3004\"*," + }, + { + "verseNum": 6, + "text": "You|strong=\"G2532\"* had|strong=\"G2532\"* no|strong=\"G3756\"* pleasure|strong=\"G2106\"* in|strong=\"G2532\"* whole|strong=\"G3646\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices for|strong=\"G4012\"* sin." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G5119\"* I|strong=\"G1473\"* said|strong=\"G3004\"*, ‘Behold|strong=\"G2400\"*, I|strong=\"G1473\"* have|strong=\"G1473\"* come|strong=\"G2240\"* (in|strong=\"G1722\"* the|strong=\"G1722\"* scroll|strong=\"G2777\"* of|strong=\"G4012\"* the|strong=\"G1722\"* book|strong=\"G3588\"* it|strong=\"G4160\"* is|strong=\"G3588\"* written|strong=\"G1125\"* of|strong=\"G4012\"* me|strong=\"G1473\"*)" + }, + { + "verseNum": 8, + "text": "Previously saying|strong=\"G3004\"*, “Sacrifices|strong=\"G2378\"* and|strong=\"G2532\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* whole|strong=\"G3646\"* burnt|strong=\"G3646\"* offerings|strong=\"G3646\"* and|strong=\"G2532\"* sacrifices|strong=\"G2378\"* for|strong=\"G3754\"* sin you|strong=\"G3754\"* didn’t desire|strong=\"G2309\"*, neither|strong=\"G3761\"* had|strong=\"G2532\"* pleasure|strong=\"G2106\"* in|strong=\"G2596\"* them|strong=\"G3004\"*” (those|strong=\"G4012\"* which|strong=\"G3748\"* are|strong=\"G2532\"* offered|strong=\"G4374\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*)," + }, + { + "verseNum": 9, + "text": "then|strong=\"G5119\"* he|strong=\"G3588\"* has|strong=\"G3708\"* said|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, I|strong=\"G2443\"* have|strong=\"G4160\"* come|strong=\"G2240\"* to|strong=\"G2443\"* do|strong=\"G4160\"* your|strong=\"G3708\"* will|strong=\"G2307\"*.” He|strong=\"G3588\"* takes away the|strong=\"G3588\"* first|strong=\"G4413\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* establish|strong=\"G2476\"* the|strong=\"G3588\"* second|strong=\"G1208\"*," + }, + { + "verseNum": 10, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* will|strong=\"G2307\"* we|strong=\"G3739\"* have|strong=\"G1510\"* been|strong=\"G1510\"* sanctified through|strong=\"G1223\"* the|strong=\"G1722\"* offering|strong=\"G4376\"* of|strong=\"G1223\"* the|strong=\"G1722\"* body|strong=\"G4983\"* of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* once|strong=\"G2178\"* for|strong=\"G1223\"* all|strong=\"G1722\"*." + }, + { + "verseNum": 11, + "text": "Every|strong=\"G3956\"* priest|strong=\"G2409\"* indeed|strong=\"G2532\"* stands|strong=\"G2476\"* day|strong=\"G2250\"* by|strong=\"G2596\"* day|strong=\"G2250\"* serving|strong=\"G3008\"* and|strong=\"G2532\"* offering|strong=\"G4374\"* often|strong=\"G4178\"* the|strong=\"G2532\"* same|strong=\"G2532\"* sacrifices|strong=\"G2378\"*, which|strong=\"G3588\"* can|strong=\"G1410\"* never|strong=\"G3763\"* take|strong=\"G1410\"* away|strong=\"G4014\"* sins," + }, + { + "verseNum": 12, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"*, when|strong=\"G1161\"* he|strong=\"G1161\"* had|strong=\"G2316\"* offered|strong=\"G4374\"* one|strong=\"G1520\"* sacrifice|strong=\"G2378\"* for|strong=\"G1519\"* sins forever|strong=\"G1519\"*, sat|strong=\"G2523\"* down|strong=\"G2523\"* on|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 13, + "text": "from|strong=\"G3588\"* that|strong=\"G3588\"* time waiting|strong=\"G1551\"* until|strong=\"G2193\"* his|strong=\"G5087\"* enemies|strong=\"G2190\"* are|strong=\"G3588\"* made|strong=\"G5087\"* the|strong=\"G3588\"* footstool|strong=\"G5286\"* of|strong=\"G3588\"* his|strong=\"G5087\"* feet|strong=\"G4228\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* by|strong=\"G1519\"* one|strong=\"G1520\"* offering|strong=\"G4376\"* he|strong=\"G3588\"* has|strong=\"G1519\"* perfected|strong=\"G5048\"* forever|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* being sanctified." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* also|strong=\"G2532\"* testifies|strong=\"G3140\"* to|strong=\"G2532\"* us|strong=\"G3004\"*, for|strong=\"G1063\"* after|strong=\"G3326\"* saying|strong=\"G3004\"*," + }, + { + "verseNum": 16, + "text": "“This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G2532\"* covenant|strong=\"G1242\"* that|strong=\"G3739\"* I|strong=\"G1473\"* will|strong=\"G2532\"* make|strong=\"G1303\"* with|strong=\"G3326\"* them|strong=\"G3588\"*" + }, + { + "verseNum": 17, + "text": "“I|strong=\"G2532\"* will|strong=\"G2532\"* remember|strong=\"G3403\"* their|strong=\"G2532\"* sins and|strong=\"G2532\"* their|strong=\"G2532\"* iniquities no|strong=\"G3756\"* more|strong=\"G2089\"*.”+ 10:17 Jeremiah 31:34*" + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* where|strong=\"G3699\"* remission of|strong=\"G4012\"* these|strong=\"G3778\"* is|strong=\"G3778\"*, there|strong=\"G1161\"* is|strong=\"G3778\"* no|strong=\"G3765\"* more|strong=\"G3765\"* offering|strong=\"G4376\"* for|strong=\"G4012\"* sin." + }, + { + "verseNum": 19, + "text": "Having|strong=\"G2192\"* therefore|strong=\"G3767\"*, brothers, boldness|strong=\"G3954\"* to|strong=\"G1519\"* enter|strong=\"G1529\"* into|strong=\"G1519\"* the|strong=\"G1722\"* holy place|strong=\"G1722\"* by|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1722\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 20, + "text": "by|strong=\"G1223\"* the|strong=\"G2532\"* way|strong=\"G3598\"* which|strong=\"G3739\"* he|strong=\"G2532\"* dedicated|strong=\"G1457\"* for|strong=\"G1223\"* us|strong=\"G2249\"*, a|strong=\"G2532\"* new|strong=\"G4372\"* and|strong=\"G2532\"* living|strong=\"G2198\"* way|strong=\"G3598\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* veil|strong=\"G2665\"*, that|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G2532\"* say|strong=\"G1223\"*, his|strong=\"G1223\"* flesh|strong=\"G4561\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"G2532\"* having|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* priest|strong=\"G2409\"* over|strong=\"G1909\"* God|strong=\"G2316\"*’s house|strong=\"G3624\"*," + }, + { + "verseNum": 22, + "text": "let|strong=\"G2532\"*’s draw|strong=\"G4334\"* near|strong=\"G4334\"* with|strong=\"G3326\"* a|strong=\"G2532\"* true|strong=\"G3588\"* heart|strong=\"G2588\"* in|strong=\"G1722\"* fullness of|strong=\"G2532\"* faith|strong=\"G4102\"*, having|strong=\"G2532\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* sprinkled|strong=\"G4472\"* from|strong=\"G2532\"* an|strong=\"G2532\"* evil|strong=\"G4190\"* conscience|strong=\"G4893\"* and|strong=\"G2532\"* having|strong=\"G2532\"* our|strong=\"G2532\"* body|strong=\"G4983\"* washed|strong=\"G3068\"* with|strong=\"G3326\"* pure|strong=\"G2513\"* water," + }, + { + "verseNum": 23, + "text": "let|strong=\"G1063\"*’s hold|strong=\"G2722\"* fast|strong=\"G2722\"* the|strong=\"G2532\"* confession|strong=\"G3671\"* of|strong=\"G2532\"* our|strong=\"G2532\"* hope|strong=\"G1680\"* without|strong=\"G2532\"* wavering; for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* promised|strong=\"G1861\"* is|strong=\"G3588\"* faithful|strong=\"G4103\"*." + }, + { + "verseNum": 24, + "text": "Let|strong=\"G2532\"*’s consider|strong=\"G2657\"* how|strong=\"G2657\"* to|strong=\"G1519\"* provoke|strong=\"G3948\"* one|strong=\"G2657\"* another to|strong=\"G1519\"* love and|strong=\"G2532\"* good|strong=\"G2570\"* works|strong=\"G2041\"*," + }, + { + "verseNum": 25, + "text": "not|strong=\"G3361\"* forsaking|strong=\"G1459\"* our|strong=\"G2532\"* own|strong=\"G1438\"* assembling|strong=\"G1997\"* together|strong=\"G1997\"*, as|strong=\"G2531\"* the|strong=\"G2532\"* custom|strong=\"G1485\"* of|strong=\"G2250\"* some|strong=\"G5100\"* is|strong=\"G3588\"*, but|strong=\"G2532\"* exhorting|strong=\"G3870\"* one|strong=\"G5100\"* another|strong=\"G1438\"*, and|strong=\"G2532\"* so|strong=\"G2532\"* much|strong=\"G5118\"* the|strong=\"G2532\"* more|strong=\"G3123\"* as|strong=\"G2531\"* you|strong=\"G1438\"* see the|strong=\"G2532\"* Day|strong=\"G2250\"* approaching|strong=\"G1448\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* if we|strong=\"G2249\"* sin willfully|strong=\"G1596\"* after|strong=\"G3326\"* we|strong=\"G2249\"* have|strong=\"G1473\"* received|strong=\"G2983\"* the|strong=\"G3588\"* knowledge|strong=\"G1922\"* of|strong=\"G4012\"* the|strong=\"G3588\"* truth, there|strong=\"G1063\"* remains no|strong=\"G3765\"* more|strong=\"G3765\"* a|strong=\"G2983\"* sacrifice|strong=\"G2378\"* for|strong=\"G1063\"* sins," + }, + { + "verseNum": 27, + "text": "but|strong=\"G1161\"* a|strong=\"G2532\"* certain|strong=\"G5100\"* fearful|strong=\"G5398\"* expectation|strong=\"G1561\"* of|strong=\"G2532\"* judgment|strong=\"G2920\"*, and|strong=\"G2532\"* a|strong=\"G2532\"* fierceness of|strong=\"G2532\"* fire|strong=\"G4442\"* which|strong=\"G3588\"* will|strong=\"G3195\"* devour|strong=\"G2068\"* the|strong=\"G2532\"* adversaries|strong=\"G5227\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"G1909\"* man|strong=\"G5100\"* who|strong=\"G5100\"* disregards Moses|strong=\"G3475\"*’ law|strong=\"G3551\"* dies without|strong=\"G5565\"* compassion|strong=\"G3628\"* on|strong=\"G1909\"* the|strong=\"G1909\"* word of|strong=\"G3551\"* two|strong=\"G1417\"* or|strong=\"G2228\"* three|strong=\"G5140\"* witnesses|strong=\"G3144\"*." + }, + { + "verseNum": 29, + "text": "How|strong=\"G4214\"* much|strong=\"G4214\"* worse|strong=\"G5501\"* punishment|strong=\"G5098\"* do|strong=\"G2532\"* you|strong=\"G3739\"* think|strong=\"G1380\"* he|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* judged|strong=\"G2233\"* worthy of|strong=\"G5207\"* who|strong=\"G3739\"* has|strong=\"G2316\"* trodden under|strong=\"G1722\"* foot|strong=\"G2662\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* has|strong=\"G2316\"* counted|strong=\"G2233\"* the|strong=\"G1722\"* blood of|strong=\"G5207\"* the|strong=\"G1722\"* covenant|strong=\"G1242\"* with|strong=\"G1722\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3588\"* sanctified an|strong=\"G2532\"* unholy|strong=\"G2839\"* thing|strong=\"G3739\"*, and|strong=\"G2532\"* has|strong=\"G2316\"* insulted|strong=\"G1796\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G5207\"* grace|strong=\"G5485\"*?" + }, + { + "verseNum": 30, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* know|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “Vengeance|strong=\"G1557\"* belongs to|strong=\"G2532\"* me|strong=\"G1473\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* repay,” says|strong=\"G3004\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*.+ 10:30 Deuteronomy 32:35* Again|strong=\"G3825\"*, “The|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* judge|strong=\"G2919\"* his|strong=\"G2532\"* people|strong=\"G2992\"*.”+ 10:30 Deuteronomy 32:36; Psalms 135:14*" + }, + { + "verseNum": 31, + "text": "It|strong=\"G1519\"* is|strong=\"G3588\"* a|strong=\"G1519\"* fearful|strong=\"G5398\"* thing|strong=\"G5398\"* to|strong=\"G1519\"* fall|strong=\"G1706\"* into|strong=\"G1519\"* the|strong=\"G1519\"* hands|strong=\"G5495\"* of|strong=\"G2316\"* the|strong=\"G1519\"* living|strong=\"G2198\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 32, + "text": "But|strong=\"G1161\"* remember the|strong=\"G1722\"* former|strong=\"G4387\"* days|strong=\"G2250\"*, in|strong=\"G1722\"* which|strong=\"G3739\"*, after|strong=\"G1161\"* you|strong=\"G3739\"* were|strong=\"G3588\"* enlightened|strong=\"G5461\"*, you|strong=\"G3739\"* endured|strong=\"G5278\"* a|strong=\"G1722\"* great|strong=\"G4183\"* struggle with|strong=\"G1722\"* sufferings|strong=\"G3804\"*:" + }, + { + "verseNum": 33, + "text": "partly|strong=\"G3778\"*, being|strong=\"G1096\"* exposed to|strong=\"G2532\"* both|strong=\"G2532\"* reproaches|strong=\"G3680\"* and|strong=\"G2532\"* oppressions, and|strong=\"G2532\"* partly|strong=\"G3778\"*, becoming|strong=\"G1096\"* partakers|strong=\"G2844\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* treated so|strong=\"G3779\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* both|strong=\"G2532\"* had|strong=\"G2192\"* compassion|strong=\"G4834\"* on|strong=\"G3326\"* me|strong=\"G2192\"* in|strong=\"G2532\"* my|strong=\"G3326\"* chains and|strong=\"G2532\"* joyfully|strong=\"G5479\"* accepted|strong=\"G4327\"* the|strong=\"G2532\"* plundering of|strong=\"G2532\"* your|strong=\"G2192\"* possessions|strong=\"G5225\"*, knowing|strong=\"G1097\"* that|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2192\"* for|strong=\"G1063\"* yourselves|strong=\"G1438\"* a|strong=\"G2192\"* better|strong=\"G2909\"* possession|strong=\"G5223\"* and|strong=\"G2532\"* an|strong=\"G2192\"* enduring|strong=\"G3306\"* one|strong=\"G1438\"* in|strong=\"G2532\"* the|strong=\"G2532\"* heavens." + }, + { + "verseNum": 35, + "text": "Therefore|strong=\"G3767\"* don’t|strong=\"G3588\"* throw away your|strong=\"G2192\"* boldness|strong=\"G3954\"*, which|strong=\"G3588\"* has|strong=\"G2192\"* a|strong=\"G2192\"* great|strong=\"G3173\"* reward|strong=\"G3405\"*." + }, + { + "verseNum": 36, + "text": "For|strong=\"G1063\"* you|strong=\"G4160\"* need|strong=\"G5532\"* endurance|strong=\"G5281\"* so|strong=\"G2443\"* that|strong=\"G2443\"*, having|strong=\"G2192\"* done|strong=\"G4160\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, you|strong=\"G4160\"* may|strong=\"G2443\"* receive|strong=\"G2865\"* the|strong=\"G3588\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 37, + "text": "“In|strong=\"G2532\"* a|strong=\"G2532\"* very|strong=\"G2532\"* little|strong=\"G3398\"* while|strong=\"G3398\"*," + }, + { + "verseNum": 38, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* righteous|strong=\"G1342\"* one|strong=\"G3588\"* will|strong=\"G2532\"* live|strong=\"G2198\"* by|strong=\"G1722\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"G1161\"* we|strong=\"G2249\"* are|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G4102\"* those|strong=\"G1161\"* who|strong=\"G3756\"* shrink|strong=\"G5289\"* back|strong=\"G1519\"* to|strong=\"G1519\"* destruction, but|strong=\"G1161\"* of|strong=\"G4102\"* those|strong=\"G1161\"* who|strong=\"G3756\"* have|strong=\"G1473\"* faith|strong=\"G4102\"* to|strong=\"G1519\"* the|strong=\"G1519\"* saving|strong=\"G4047\"* of|strong=\"G4102\"* the|strong=\"G1519\"* soul|strong=\"G5590\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"G1161\"* faith|strong=\"G4102\"* is|strong=\"G1510\"* assurance|strong=\"G5287\"* of|strong=\"G4102\"* things|strong=\"G4229\"* hoped|strong=\"G1679\"* for|strong=\"G1161\"*, proof|strong=\"G4102\"* of|strong=\"G4102\"* things|strong=\"G4229\"* not|strong=\"G3756\"* seen." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* by|strong=\"G1722\"* this|strong=\"G3778\"*, the|strong=\"G1722\"* elders|strong=\"G4245\"* obtained|strong=\"G3140\"* approval|strong=\"G3140\"*." + }, + { + "verseNum": 3, + "text": "By|strong=\"G1537\"* faith|strong=\"G4102\"* we|strong=\"G4102\"* understand|strong=\"G3539\"* that|strong=\"G3588\"* the|strong=\"G1519\"* universe has|strong=\"G2316\"* been|strong=\"G1096\"* framed|strong=\"G2675\"* by|strong=\"G1537\"* the|strong=\"G1519\"* word|strong=\"G4487\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, so|strong=\"G1519\"* that|strong=\"G3588\"* what|strong=\"G3588\"* is|strong=\"G3588\"* seen|strong=\"G5316\"* has|strong=\"G2316\"* not|strong=\"G3361\"* been|strong=\"G1096\"* made|strong=\"G1096\"* out|strong=\"G1537\"* of|strong=\"G1537\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* visible|strong=\"G5316\"*." + }, + { + "verseNum": 4, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* Abel offered|strong=\"G4374\"* to|strong=\"G2532\"* God|strong=\"G2316\"* a|strong=\"G2532\"* more|strong=\"G2089\"* excellent|strong=\"G4119\"* sacrifice|strong=\"G2378\"* than|strong=\"G3844\"* Cain|strong=\"G2535\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* had|strong=\"G2532\"* testimony|strong=\"G3140\"* given|strong=\"G1435\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G1510\"* righteous|strong=\"G1342\"*, God|strong=\"G2316\"* testifying|strong=\"G3140\"* with|strong=\"G3844\"* respect|strong=\"G3739\"* to|strong=\"G2532\"* his|strong=\"G1223\"* gifts|strong=\"G1435\"*; and|strong=\"G2532\"* through|strong=\"G1223\"* it|strong=\"G2532\"* he|strong=\"G2532\"*, being|strong=\"G1510\"* dead, still|strong=\"G2089\"* speaks|strong=\"G2980\"*." + }, + { + "verseNum": 5, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Enoch|strong=\"G1802\"* was|strong=\"G3588\"* taken|strong=\"G3331\"* away, so|strong=\"G2532\"* that|strong=\"G3588\"* he|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* see|strong=\"G3708\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* not|strong=\"G3756\"* found|strong=\"G2147\"*, because|strong=\"G1063\"* God|strong=\"G2316\"* translated|strong=\"G3346\"* him|strong=\"G3588\"*. For|strong=\"G1063\"* he|strong=\"G2532\"* has|strong=\"G2316\"* had|strong=\"G2532\"* testimony|strong=\"G3140\"* given|strong=\"G3361\"* to|strong=\"G2532\"* him|strong=\"G3588\"* that|strong=\"G3588\"* before|strong=\"G4253\"* his|strong=\"G3708\"* translation|strong=\"G3331\"* he|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* well|strong=\"G2532\"* pleasing|strong=\"G2100\"* to|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Without|strong=\"G5565\"* faith|strong=\"G4102\"* it|strong=\"G2532\"* is|strong=\"G1510\"* impossible to|strong=\"G2532\"* be|strong=\"G1096\"* well|strong=\"G2532\"* pleasing|strong=\"G2100\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* comes|strong=\"G1096\"* to|strong=\"G2532\"* God|strong=\"G2316\"* must|strong=\"G1163\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* he|strong=\"G2532\"* exists, and|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G1096\"* rewarder|strong=\"G3406\"* of|strong=\"G2316\"* those|strong=\"G3588\"* who|strong=\"G3588\"* seek|strong=\"G1567\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* Noah|strong=\"G3575\"*, being|strong=\"G1096\"* warned|strong=\"G5537\"* about|strong=\"G4012\"* things|strong=\"G3588\"* not|strong=\"G3739\"* yet|strong=\"G2532\"* seen, moved with|strong=\"G1223\"* godly|strong=\"G2596\"* fear|strong=\"G2125\"*,+ 11:7 or, reverence* prepared|strong=\"G2680\"* a|strong=\"G1096\"* ship for|strong=\"G1519\"* the|strong=\"G2532\"* saving|strong=\"G4991\"* of|strong=\"G4012\"* his|strong=\"G1223\"* house|strong=\"G3624\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* condemned|strong=\"G2632\"* the|strong=\"G2532\"* world|strong=\"G2889\"* and|strong=\"G2532\"* became|strong=\"G1096\"* heir|strong=\"G2818\"* of|strong=\"G4012\"* the|strong=\"G2532\"* righteousness|strong=\"G1343\"* which|strong=\"G3739\"* is|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Abraham, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3739\"* called|strong=\"G2564\"*, obeyed|strong=\"G5219\"* to|strong=\"G1519\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* which|strong=\"G3739\"* he|strong=\"G2532\"* was|strong=\"G3739\"* to|strong=\"G1519\"* receive|strong=\"G2983\"* for|strong=\"G1519\"* an|strong=\"G2532\"* inheritance|strong=\"G2817\"*. He|strong=\"G2532\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, not|strong=\"G3361\"* knowing|strong=\"G1987\"* where|strong=\"G4226\"* he|strong=\"G2532\"* went|strong=\"G1831\"*." + }, + { + "verseNum": 9, + "text": "By|strong=\"G1722\"* faith|strong=\"G4102\"* he|strong=\"G2532\"* lived|strong=\"G2730\"* as|strong=\"G5613\"* an|strong=\"G2532\"* alien|strong=\"G3939\"* in|strong=\"G1722\"* the|strong=\"G1722\"* land|strong=\"G1093\"* of|strong=\"G2532\"* promise|strong=\"G1860\"*, as|strong=\"G5613\"* in|strong=\"G1722\"* a|strong=\"G5613\"* land|strong=\"G1093\"* not|strong=\"G2532\"* his|strong=\"G1519\"* own, dwelling|strong=\"G2730\"* in|strong=\"G1722\"* tents|strong=\"G4633\"* with|strong=\"G3326\"* Isaac|strong=\"G2464\"* and|strong=\"G2532\"* Jacob|strong=\"G2384\"*, the|strong=\"G1722\"* heirs|strong=\"G4789\"* with|strong=\"G3326\"* him|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G1722\"* same|strong=\"G2532\"* promise|strong=\"G1860\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* was|strong=\"G3588\"* looking|strong=\"G2532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* city|strong=\"G4172\"* which|strong=\"G3739\"* has|strong=\"G2192\"* foundations|strong=\"G2310\"*, whose|strong=\"G3739\"* builder|strong=\"G1217\"* and|strong=\"G2532\"* maker|strong=\"G1217\"* is|strong=\"G3588\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 11, + "text": "By|strong=\"G3844\"* faith|strong=\"G4102\"* even|strong=\"G2532\"* Sarah|strong=\"G4564\"* herself received|strong=\"G2983\"* power|strong=\"G1411\"* to|strong=\"G1519\"* conceive|strong=\"G2602\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* bore a|strong=\"G2532\"* child when|strong=\"G2532\"* she|strong=\"G2532\"* was|strong=\"G3588\"* past|strong=\"G3844\"* age|strong=\"G2244\"*, since|strong=\"G1893\"* she|strong=\"G2532\"* counted|strong=\"G2233\"* him|strong=\"G3588\"* faithful|strong=\"G4103\"* who|strong=\"G3588\"* had|strong=\"G2532\"* promised|strong=\"G1861\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* as|strong=\"G5613\"* many as|strong=\"G5613\"* the|strong=\"G2532\"* stars of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* in|strong=\"G2532\"* multitude|strong=\"G4128\"*, and|strong=\"G2532\"* as|strong=\"G5613\"* innumerable as|strong=\"G5613\"* the|strong=\"G2532\"* sand which|strong=\"G3588\"* is|strong=\"G3588\"* by|strong=\"G3844\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* shore|strong=\"G5491\"*, were|strong=\"G3588\"* fathered|strong=\"G1080\"* by|strong=\"G3844\"* one|strong=\"G1520\"* man|strong=\"G3778\"*, and|strong=\"G2532\"* him|strong=\"G3588\"* as|strong=\"G5613\"* good|strong=\"G3588\"* as|strong=\"G5613\"* dead|strong=\"G3499\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* all|strong=\"G3956\"* died|strong=\"G3588\"* in|strong=\"G1909\"* faith|strong=\"G4102\"*, not|strong=\"G3361\"* having|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G2532\"* promises|strong=\"G1860\"*, but|strong=\"G2532\"* having|strong=\"G2532\"* seen|strong=\"G3708\"*+ 11:13 TR adds “and being convinced of”* them|strong=\"G3588\"* and|strong=\"G2532\"* embraced them|strong=\"G3588\"* from|strong=\"G2532\"* afar|strong=\"G3588\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* confessed|strong=\"G3670\"* that|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G1510\"* strangers|strong=\"G3581\"* and|strong=\"G2532\"* pilgrims|strong=\"G3927\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* those|strong=\"G3588\"* who|strong=\"G3588\"* say|strong=\"G3004\"* such|strong=\"G5108\"* things|strong=\"G3588\"* make|strong=\"G1718\"* it|strong=\"G3754\"* clear|strong=\"G1718\"* that|strong=\"G3754\"* they|strong=\"G3588\"* are|strong=\"G3588\"* seeking|strong=\"G1934\"* a|strong=\"G5108\"* country|strong=\"G3968\"* of|strong=\"G3588\"* their|strong=\"G3588\"* own|strong=\"G3968\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* indeed|strong=\"G2532\"* they|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G2192\"* thinking|strong=\"G3421\"* of|strong=\"G2532\"* that|strong=\"G3739\"* country from|strong=\"G2532\"* which|strong=\"G3739\"* they|strong=\"G2532\"* went|strong=\"G2532\"* out|strong=\"G2532\"*, they|strong=\"G2532\"* would|strong=\"G2532\"* have|strong=\"G2192\"* had|strong=\"G2192\"* enough time|strong=\"G2540\"* to|strong=\"G2532\"* return." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* they|strong=\"G1161\"* desire|strong=\"G3713\"* a|strong=\"G1510\"* better|strong=\"G2909\"* country, that|strong=\"G3588\"* is|strong=\"G1510\"*, a|strong=\"G1510\"* heavenly|strong=\"G2032\"* one|strong=\"G1438\"*. Therefore|strong=\"G1352\"* God|strong=\"G2316\"* is|strong=\"G1510\"* not|strong=\"G3756\"* ashamed|strong=\"G1870\"* of|strong=\"G2316\"* them|strong=\"G3588\"*, to|strong=\"G3756\"* be|strong=\"G1510\"* called|strong=\"G1941\"* their|strong=\"G1438\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* he|strong=\"G1161\"* has|strong=\"G2316\"* prepared|strong=\"G2090\"* a|strong=\"G1510\"* city|strong=\"G4172\"* for|strong=\"G1063\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"*, Abraham, being|strong=\"G2532\"* tested|strong=\"G3985\"*, offered|strong=\"G4374\"* up|strong=\"G4374\"* Isaac|strong=\"G2464\"*. Yes, he|strong=\"G2532\"* who|strong=\"G3588\"* had|strong=\"G2532\"* gladly received the|strong=\"G2532\"* promises|strong=\"G1860\"* was|strong=\"G3588\"* offering|strong=\"G4374\"* up|strong=\"G4374\"* his|strong=\"G2532\"* only|strong=\"G3439\"* born+ 11:17 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* son," + }, + { + "verseNum": 18, + "text": "to|strong=\"G4314\"* whom|strong=\"G3739\"* it|strong=\"G3754\"* was|strong=\"G3739\"* said|strong=\"G2980\"*, “Your|strong=\"G1722\"* offspring will|strong=\"G3739\"* be|strong=\"G4690\"* accounted as|strong=\"G1722\"* from|strong=\"G2980\"* Isaac|strong=\"G2464\"*,” + 11:18 Genesis 21:12*" + }, + { + "verseNum": 19, + "text": "concluding that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G3588\"* able|strong=\"G1415\"* to|strong=\"G2532\"* raise|strong=\"G1453\"* up|strong=\"G1453\"* even|strong=\"G2532\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*. Figuratively speaking, he|strong=\"G2532\"* also|strong=\"G2532\"* did|strong=\"G2532\"* receive|strong=\"G2865\"* him|strong=\"G3588\"* back|strong=\"G2865\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 20, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Isaac|strong=\"G2464\"* blessed|strong=\"G2127\"* Jacob|strong=\"G2384\"* and|strong=\"G2532\"* Esau|strong=\"G2269\"*, even|strong=\"G2532\"* concerning|strong=\"G4012\"* things|strong=\"G3588\"* to|strong=\"G2532\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 21, + "text": "By|strong=\"G1909\"* faith|strong=\"G4102\"* Jacob|strong=\"G2384\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* dying, blessed|strong=\"G2127\"* each|strong=\"G1538\"* of|strong=\"G5207\"* the|strong=\"G2532\"* sons|strong=\"G5207\"* of|strong=\"G5207\"* Joseph|strong=\"G2501\"*, and|strong=\"G2532\"* worshiped|strong=\"G4352\"*, leaning on|strong=\"G1909\"* the|strong=\"G2532\"* top of|strong=\"G5207\"* his|strong=\"G1909\"* staff|strong=\"G4464\"*." + }, + { + "verseNum": 22, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* Joseph|strong=\"G2501\"*, when|strong=\"G2532\"* his|strong=\"G4012\"* end was|strong=\"G3588\"* near, made|strong=\"G4102\"* mention|strong=\"G3421\"* of|strong=\"G5207\"* the|strong=\"G2532\"* departure|strong=\"G1841\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*, and|strong=\"G2532\"* gave|strong=\"G2532\"* instructions concerning|strong=\"G4012\"* his|strong=\"G4012\"* bones|strong=\"G3747\"*." + }, + { + "verseNum": 23, + "text": "By|strong=\"G5259\"* faith|strong=\"G4102\"* Moses|strong=\"G3475\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* born|strong=\"G1080\"*, was|strong=\"G3588\"* hidden|strong=\"G2928\"* for|strong=\"G1360\"* three|strong=\"G5150\"* months|strong=\"G5150\"* by|strong=\"G5259\"* his|strong=\"G3708\"* parents|strong=\"G3962\"*, because|strong=\"G1360\"* they|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* he|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* beautiful child|strong=\"G3813\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* not|strong=\"G3756\"* afraid|strong=\"G5399\"* of|strong=\"G5259\"* the|strong=\"G2532\"* king|strong=\"G3588\"*’s commandment|strong=\"G1297\"*." + }, + { + "verseNum": 24, + "text": "By|strong=\"G3004\"* faith|strong=\"G4102\"* Moses|strong=\"G3475\"*, when|strong=\"G1096\"* he|strong=\"G3004\"* had|strong=\"G1096\"* grown|strong=\"G3173\"* up, refused to|strong=\"G3004\"* be|strong=\"G1096\"* called|strong=\"G3004\"* the|strong=\"G3004\"* son|strong=\"G5207\"* of|strong=\"G5207\"* Pharaoh|strong=\"G5328\"*’s daughter|strong=\"G2364\"*," + }, + { + "verseNum": 25, + "text": "choosing rather|strong=\"G3123\"* to|strong=\"G2228\"* share ill|strong=\"G2192\"* treatment with|strong=\"G2316\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* people|strong=\"G2992\"* than|strong=\"G2228\"* to|strong=\"G2228\"* enjoy|strong=\"G2192\"* the|strong=\"G3588\"* pleasures of|strong=\"G2316\"* sin for|strong=\"G2316\"* a|strong=\"G2192\"* time," + }, + { + "verseNum": 26, + "text": "considering|strong=\"G2233\"* the|strong=\"G1519\"* reproach|strong=\"G3680\"* of|strong=\"G3588\"* Christ|strong=\"G5547\"* greater|strong=\"G3173\"* riches|strong=\"G4149\"* than|strong=\"G3173\"* the|strong=\"G1519\"* treasures|strong=\"G2344\"* of|strong=\"G3588\"* Egypt; for|strong=\"G1063\"* he|strong=\"G3588\"* looked to|strong=\"G1519\"* the|strong=\"G1519\"* reward|strong=\"G3405\"*." + }, + { + "verseNum": 27, + "text": "By|strong=\"G1063\"* faith|strong=\"G4102\"* he|strong=\"G3588\"* left|strong=\"G2641\"* Egypt, not|strong=\"G3361\"* fearing|strong=\"G5399\"* the|strong=\"G3588\"* wrath|strong=\"G2372\"* of|strong=\"G4102\"* the|strong=\"G3588\"* king|strong=\"G3588\"*; for|strong=\"G1063\"* he|strong=\"G3588\"* endured|strong=\"G2594\"*, as|strong=\"G5613\"* seeing|strong=\"G3708\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* invisible." + }, + { + "verseNum": 28, + "text": "By|strong=\"G2532\"* faith|strong=\"G4102\"* he|strong=\"G2532\"* kept|strong=\"G4160\"* the|strong=\"G2532\"* Passover|strong=\"G3957\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sprinkling|strong=\"G4378\"* of|strong=\"G2532\"* the|strong=\"G2532\"* blood, that|strong=\"G2443\"* the|strong=\"G2532\"* destroyer of|strong=\"G2532\"* the|strong=\"G2532\"* firstborn|strong=\"G4416\"* should|strong=\"G3588\"* not|strong=\"G3361\"* touch|strong=\"G2345\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 29, + "text": "By|strong=\"G1223\"* faith|strong=\"G4102\"* they|strong=\"G3588\"* passed|strong=\"G3588\"* through|strong=\"G1223\"* the|strong=\"G1223\"* Red|strong=\"G2063\"* Sea|strong=\"G2281\"* as|strong=\"G5613\"* on|strong=\"G4102\"* dry|strong=\"G3584\"* land|strong=\"G1093\"*. When|strong=\"G5613\"* the|strong=\"G1223\"* Egyptians tried|strong=\"G3984\"* to|strong=\"G1093\"* do|strong=\"G2983\"* so|strong=\"G1223\"*, they|strong=\"G3588\"* were|strong=\"G3588\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"*." + }, + { + "verseNum": 30, + "text": "By|strong=\"G1909\"* faith|strong=\"G4102\"* the|strong=\"G1909\"* walls|strong=\"G5038\"* of|strong=\"G2250\"* Jericho|strong=\"G2410\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* after|strong=\"G1909\"* they|strong=\"G3588\"* had|strong=\"G3588\"* been encircled|strong=\"G2944\"* for|strong=\"G1909\"* seven|strong=\"G2033\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 31, + "text": "By|strong=\"G3588\"* faith|strong=\"G4102\"* Rahab|strong=\"G4460\"* the|strong=\"G3588\"* prostitute|strong=\"G4204\"* didn’t|strong=\"G3588\"* perish|strong=\"G4881\"* with|strong=\"G3326\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* disobedient, having received|strong=\"G1209\"* the|strong=\"G3588\"* spies|strong=\"G2685\"* in|strong=\"G4102\"* peace|strong=\"G1515\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"G5101\"* more|strong=\"G2089\"* shall|strong=\"G2532\"* I|strong=\"G1473\"* say|strong=\"G3004\"*? For|strong=\"G1063\"* the|strong=\"G2532\"* time|strong=\"G5550\"* would|strong=\"G2532\"* fail|strong=\"G1952\"* me|strong=\"G1473\"* if|strong=\"G2532\"* I|strong=\"G1473\"* told|strong=\"G3004\"* of|strong=\"G4012\"* Gideon|strong=\"G1066\"*, Barak, Samson|strong=\"G4546\"*, Jephthah|strong=\"G2422\"*, David|strong=\"G1138\"*, Samuel|strong=\"G4545\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* prophets|strong=\"G4396\"*—" + }, + { + "verseNum": 33, + "text": "who|strong=\"G3739\"* through|strong=\"G1223\"* faith|strong=\"G4102\"* subdued|strong=\"G2610\"* kingdoms, worked|strong=\"G2038\"* out|strong=\"G1223\"* righteousness|strong=\"G1343\"*, obtained|strong=\"G2013\"* promises|strong=\"G1860\"*, stopped|strong=\"G5420\"* the|strong=\"G1223\"* mouths|strong=\"G4750\"* of|strong=\"G1223\"* lions|strong=\"G3023\"*,+ 11:33 Daniel 6:22-23*" + }, + { + "verseNum": 34, + "text": "quenched|strong=\"G4570\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1411\"* fire|strong=\"G4442\"*,+ 11:34 Daniel 3:1-30* escaped|strong=\"G5343\"* the|strong=\"G1722\"* edge|strong=\"G4750\"* of|strong=\"G1411\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*,+ 11:34 1 Kings 19:1-3; 2 Kings 6:31—7:20* from|strong=\"G5343\"* weakness were|strong=\"G1096\"* made|strong=\"G1096\"* strong|strong=\"G2478\"*, grew mighty|strong=\"G2478\"* in|strong=\"G1722\"* war|strong=\"G4171\"*, and|strong=\"G1411\"* caused foreign armies|strong=\"G3925\"* to|strong=\"G1722\"* flee|strong=\"G5343\"*." + }, + { + "verseNum": 35, + "text": "Women|strong=\"G1135\"* received|strong=\"G2983\"* their|strong=\"G3588\"* dead|strong=\"G3498\"* by|strong=\"G1537\"* resurrection.+ 11:35 1 Kings 17:17-23; 2 Kings 4:32-37* Others|strong=\"G3588\"* were|strong=\"G3588\"* tortured|strong=\"G5178\"*, not|strong=\"G3756\"* accepting|strong=\"G4327\"* their|strong=\"G3588\"* deliverance, that|strong=\"G2443\"* they|strong=\"G1161\"* might obtain|strong=\"G5177\"* a|strong=\"G2983\"* better|strong=\"G2909\"* resurrection." + }, + { + "verseNum": 36, + "text": "Others|strong=\"G2087\"* were|strong=\"G2532\"* tried|strong=\"G3984\"* by|strong=\"G2532\"* mocking|strong=\"G1701\"* and|strong=\"G2532\"* scourging|strong=\"G3148\"*, yes|strong=\"G2089\"*, moreover|strong=\"G1161\"* by|strong=\"G2532\"* bonds|strong=\"G1199\"* and|strong=\"G2532\"* imprisonment|strong=\"G1199\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"G1722\"* were stoned|strong=\"G3034\"*.+ 11:37 2 Chronicles 24:20-21* They|strong=\"G1722\"* were sawn|strong=\"G4249\"* apart. They|strong=\"G1722\"* were tempted|strong=\"G3985\"*. They|strong=\"G1722\"* were slain with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*.+ 11:37 Jeremiah 26:20-23; 1 Kings 19:10* They|strong=\"G1722\"* went|strong=\"G4022\"* around|strong=\"G4022\"* in|strong=\"G1722\"* sheep skins|strong=\"G1192\"* and|strong=\"G3162\"* in|strong=\"G1722\"* goat skins|strong=\"G1192\"*; being|strong=\"G1722\"* destitute|strong=\"G5302\"*, afflicted|strong=\"G2346\"*, ill-treated|strong=\"G2558\"*—" + }, + { + "verseNum": 38, + "text": "of|strong=\"G2532\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* world|strong=\"G2889\"* was|strong=\"G1510\"* not|strong=\"G3756\"* worthy—wandering|strong=\"G4105\"* in|strong=\"G1909\"* deserts|strong=\"G2047\"*, mountains|strong=\"G3735\"*, caves|strong=\"G4693\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* holes|strong=\"G3692\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 39, + "text": "These|strong=\"G3778\"* all|strong=\"G3956\"*, having|strong=\"G2532\"* been|strong=\"G2532\"* commended|strong=\"G3140\"* for|strong=\"G1223\"* their|strong=\"G2532\"* faith|strong=\"G4102\"*, didn’t|strong=\"G3588\"* receive|strong=\"G2865\"* the|strong=\"G2532\"* promise|strong=\"G1860\"*," + }, + { + "verseNum": 40, + "text": "God|strong=\"G2316\"* having|strong=\"G5100\"* provided|strong=\"G4265\"* some|strong=\"G5100\"* better|strong=\"G2909\"* thing|strong=\"G5100\"* concerning|strong=\"G4012\"* us|strong=\"G2249\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* us|strong=\"G2249\"* they|strong=\"G3588\"* should|strong=\"G5100\"* not|strong=\"G3361\"* be|strong=\"G3361\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G1223\"* let|strong=\"G2192\"*’s|strong=\"G2192\"* also|strong=\"G2532\"*, seeing|strong=\"G1223\"* we|strong=\"G2249\"* are|strong=\"G3588\"* surrounded by|strong=\"G1223\"* so|strong=\"G2532\"* great|strong=\"G5118\"* a|strong=\"G2192\"* cloud|strong=\"G3509\"* of|strong=\"G1223\"* witnesses|strong=\"G3144\"*, lay aside every|strong=\"G3956\"* weight|strong=\"G3591\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sin which|strong=\"G3588\"* so|strong=\"G2532\"* easily|strong=\"G2139\"* entangles|strong=\"G2139\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* let|strong=\"G2192\"*’s|strong=\"G2192\"* run|strong=\"G5143\"* with|strong=\"G1223\"* perseverance|strong=\"G5281\"* the|strong=\"G2532\"* race that|strong=\"G3588\"* is|strong=\"G3588\"* set|strong=\"G4295\"* before|strong=\"G4295\"* us|strong=\"G2249\"*," + }, + { + "verseNum": 2, + "text": "looking|strong=\"G2424\"* to|strong=\"G1519\"* Jesus|strong=\"G2424\"*, the|strong=\"G1722\"* author and|strong=\"G2532\"* perfecter|strong=\"G5051\"* of|strong=\"G2316\"* faith|strong=\"G4102\"*, who|strong=\"G3739\"* for|strong=\"G1519\"* the|strong=\"G1722\"* joy|strong=\"G5479\"* that|strong=\"G3739\"* was|strong=\"G3588\"* set|strong=\"G2523\"* before|strong=\"G1722\"* him|strong=\"G3588\"* endured|strong=\"G5278\"* the|strong=\"G1722\"* cross|strong=\"G4716\"*, despising|strong=\"G2706\"* its shame, and|strong=\"G2532\"* has|strong=\"G2316\"* sat|strong=\"G2523\"* down|strong=\"G2523\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* consider him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G1519\"* endured|strong=\"G5278\"* such|strong=\"G5108\"* contradiction of|strong=\"G5259\"* sinners against|strong=\"G1519\"* himself|strong=\"G1438\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* grow|strong=\"G2577\"* weary|strong=\"G1590\"*, fainting in|strong=\"G1519\"* your|strong=\"G5259\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 4, + "text": "You have|strong=\"G3588\"* not|strong=\"G3768\"* yet|strong=\"G3768\"* resisted to|strong=\"G4314\"* blood, striving against|strong=\"G4314\"* sin." + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* have|strong=\"G2532\"* forgotten|strong=\"G1585\"* the|strong=\"G2532\"* exhortation|strong=\"G3874\"* which|strong=\"G3588\"* reasons with|strong=\"G2532\"* you|strong=\"G5210\"* as|strong=\"G5613\"* with|strong=\"G2532\"* children|strong=\"G5207\"*," + }, + { + "verseNum": 6, + "text": "for|strong=\"G1063\"* whom|strong=\"G3739\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* loves, he|strong=\"G1161\"* disciplines|strong=\"G3811\"*," + }, + { + "verseNum": 7, + "text": "It|strong=\"G1063\"* is|strong=\"G3588\"* for|strong=\"G1063\"* discipline|strong=\"G3809\"* that|strong=\"G3739\"* you|strong=\"G5210\"* endure|strong=\"G5278\"*. God|strong=\"G2316\"* deals|strong=\"G4374\"* with|strong=\"G2316\"* you|strong=\"G5210\"* as|strong=\"G5613\"* with|strong=\"G2316\"* children|strong=\"G5207\"*, for|strong=\"G1063\"* what|strong=\"G5101\"* son|strong=\"G5207\"* is|strong=\"G3588\"* there|strong=\"G1063\"* whom|strong=\"G3739\"* his|strong=\"G1519\"* father|strong=\"G3962\"* doesn’t|strong=\"G3588\"* discipline|strong=\"G3809\"*?" + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G3739\"* are|strong=\"G1510\"* without|strong=\"G5565\"* discipline|strong=\"G3809\"*, of|strong=\"G5207\"* which|strong=\"G3739\"* all|strong=\"G3956\"* have|strong=\"G2532\"* been|strong=\"G1510\"* made|strong=\"G1096\"* partakers|strong=\"G3353\"*, then|strong=\"G2532\"* you|strong=\"G3739\"* are|strong=\"G1510\"* illegitimate|strong=\"G3541\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* children|strong=\"G5207\"*." + }, + { + "verseNum": 9, + "text": "Furthermore|strong=\"G1534\"*, we|strong=\"G2249\"* had|strong=\"G2192\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"* of|strong=\"G4151\"* our|strong=\"G2532\"* flesh|strong=\"G4561\"* to|strong=\"G2532\"* chasten us|strong=\"G2249\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* paid them|strong=\"G3588\"* respect|strong=\"G1788\"*. Shall|strong=\"G2532\"* we|strong=\"G2249\"* not|strong=\"G3756\"* much|strong=\"G4183\"* rather|strong=\"G3123\"* be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G4151\"* spirits|strong=\"G4151\"* and|strong=\"G2532\"* live|strong=\"G2198\"*?" + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* they|strong=\"G1161\"* indeed|strong=\"G3303\"* for|strong=\"G1063\"* a|strong=\"G1519\"* few|strong=\"G3641\"* days|strong=\"G2250\"* disciplined|strong=\"G3811\"* us|strong=\"G1519\"* as|strong=\"G1519\"* seemed|strong=\"G1380\"* good|strong=\"G1380\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* for|strong=\"G1063\"* our|strong=\"G2596\"* profit|strong=\"G4851\"*, that|strong=\"G3588\"* we|strong=\"G1063\"* may|strong=\"G1380\"* be|strong=\"G1519\"* partakers|strong=\"G3335\"* of|strong=\"G2250\"* his|strong=\"G1519\"* holiness." + }, + { + "verseNum": 11, + "text": "All|strong=\"G3956\"* chastening|strong=\"G3809\"* seems|strong=\"G1380\"* for|strong=\"G1223\"* the|strong=\"G3956\"* present|strong=\"G3918\"* to|strong=\"G4314\"* be|strong=\"G1510\"* not|strong=\"G3756\"* joyous|strong=\"G5479\"* but|strong=\"G1161\"* grievous|strong=\"G3077\"*; yet|strong=\"G1161\"* afterward|strong=\"G5305\"* it|strong=\"G1161\"* yields the|strong=\"G3956\"* peaceful|strong=\"G1516\"* fruit|strong=\"G2590\"* of|strong=\"G1223\"* righteousness|strong=\"G1343\"* to|strong=\"G4314\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G1510\"* been|strong=\"G1510\"* trained|strong=\"G1128\"* by|strong=\"G1223\"* it|strong=\"G1161\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* lift|strong=\"G1352\"* up|strong=\"G2532\"* the|strong=\"G2532\"* hands|strong=\"G5495\"* that|strong=\"G3588\"* hang down|strong=\"G1119\"* and|strong=\"G2532\"* the|strong=\"G2532\"* feeble|strong=\"G3886\"* knees|strong=\"G1119\"*,+ 12:12 Isaiah 35:3*" + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* make|strong=\"G4160\"* straight|strong=\"G3717\"* paths|strong=\"G5163\"* for|strong=\"G1161\"* your|strong=\"G2532\"* feet|strong=\"G4228\"*,+ 12:13 Proverbs 4:26* so|strong=\"G2443\"* what|strong=\"G3588\"* is|strong=\"G3588\"* lame|strong=\"G5560\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* dislocated, but|strong=\"G1161\"* rather|strong=\"G3123\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*." + }, + { + "verseNum": 14, + "text": "Follow|strong=\"G1377\"* after|strong=\"G3326\"* peace|strong=\"G1515\"* with|strong=\"G3326\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sanctification without|strong=\"G5565\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3762\"* will|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 15, + "text": "looking|strong=\"G2532\"* carefully lest|strong=\"G3361\"* there|strong=\"G2532\"* be|strong=\"G2532\"* any|strong=\"G5100\"* man|strong=\"G5100\"* who|strong=\"G3588\"* falls short|strong=\"G5302\"* of|strong=\"G1223\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"*, lest|strong=\"G3361\"* any|strong=\"G5100\"* root|strong=\"G4491\"* of|strong=\"G1223\"* bitterness|strong=\"G4088\"* springing|strong=\"G5453\"* up|strong=\"G3361\"* trouble|strong=\"G1776\"* you|strong=\"G2532\"* and|strong=\"G2532\"* many|strong=\"G4183\"* be|strong=\"G2532\"* defiled|strong=\"G3392\"* by|strong=\"G1223\"* it|strong=\"G2532\"*," + }, + { + "verseNum": 16, + "text": "lest|strong=\"G3361\"* there|strong=\"G3361\"* be|strong=\"G3361\"* any|strong=\"G5100\"* sexually immoral|strong=\"G4205\"* person|strong=\"G3739\"* or|strong=\"G2228\"* profane|strong=\"G2228\"* person|strong=\"G3739\"*, like|strong=\"G5613\"* Esau|strong=\"G2269\"*, who|strong=\"G3739\"* sold his|strong=\"G1438\"* birthright|strong=\"G4415\"* for|strong=\"G1520\"* one|strong=\"G1520\"* meal|strong=\"G1035\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* even|strong=\"G2532\"* when|strong=\"G2532\"* he|strong=\"G2532\"* afterward|strong=\"G3326\"* desired|strong=\"G2309\"* to|strong=\"G2532\"* inherit|strong=\"G2816\"* the|strong=\"G2532\"* blessing|strong=\"G2129\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* rejected, for|strong=\"G1063\"* he|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3756\"* place|strong=\"G5117\"* for|strong=\"G1063\"* a|strong=\"G2532\"* change of|strong=\"G2532\"* mind|strong=\"G1438\"* though|strong=\"G2539\"* he|strong=\"G2532\"* sought|strong=\"G1567\"* it|strong=\"G2532\"* diligently with|strong=\"G3326\"* tears|strong=\"G1144\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"* you|strong=\"G2532\"* have|strong=\"G2532\"* not|strong=\"G3756\"* come|strong=\"G4334\"* to|strong=\"G2532\"* a|strong=\"G2532\"* mountain that|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* touched|strong=\"G5584\"* and|strong=\"G2532\"* that|strong=\"G2532\"* burned|strong=\"G2545\"* with|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* blackness|strong=\"G1105\"*, darkness|strong=\"G2217\"*, storm," + }, + { + "verseNum": 19, + "text": "the|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G3056\"* a|strong=\"G2532\"* trumpet|strong=\"G4536\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G3056\"* words|strong=\"G3056\"*; which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* heard it|strong=\"G2532\"* begged|strong=\"G3868\"* that|strong=\"G3739\"* not|strong=\"G3361\"* one|strong=\"G3739\"* more|strong=\"G2532\"* word|strong=\"G3056\"* should|strong=\"G3588\"* be|strong=\"G2532\"* spoken|strong=\"G4369\"* to|strong=\"G2532\"* them|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* could|strong=\"G3588\"* not|strong=\"G3756\"* stand that|strong=\"G3588\"* which|strong=\"G3588\"* was|strong=\"G3588\"* commanded|strong=\"G1291\"*, “If|strong=\"G2579\"* even|strong=\"G2579\"* an|strong=\"G3735\"* animal touches|strong=\"G2345\"* the|strong=\"G3588\"* mountain|strong=\"G3735\"*, it|strong=\"G1063\"* shall|strong=\"G3588\"* be|strong=\"G3756\"* stoned|strong=\"G3036\"*”.+ 12:20 TR adds “or shot with an arrow”*+ 12:20 Exodus 19:12-13*" + }, + { + "verseNum": 21, + "text": "So|strong=\"G3779\"* fearful|strong=\"G5398\"* was|strong=\"G1510\"* the|strong=\"G2532\"* appearance that|strong=\"G3588\"* Moses|strong=\"G3475\"* said|strong=\"G3004\"*, “I|strong=\"G2532\"* am|strong=\"G1510\"* terrified|strong=\"G1630\"* and|strong=\"G2532\"* trembling|strong=\"G1790\"*.”+ 12:21 Deuteronomy 9:19*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G2532\"* you|strong=\"G2532\"* have|strong=\"G2532\"* come|strong=\"G4334\"* to|strong=\"G2532\"* Mount|strong=\"G3735\"* Zion|strong=\"G4622\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* heavenly|strong=\"G2032\"* Jerusalem|strong=\"G2419\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* innumerable multitudes of|strong=\"G2316\"* angels," + }, + { + "verseNum": 23, + "text": "to|strong=\"G2532\"* the|strong=\"G1722\"* festal gathering and|strong=\"G2532\"* assembly|strong=\"G1577\"* of|strong=\"G4151\"* the|strong=\"G1722\"* firstborn|strong=\"G4416\"* who|strong=\"G3956\"* are|strong=\"G3956\"* enrolled in|strong=\"G1722\"* heaven|strong=\"G3772\"*, to|strong=\"G2532\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Judge|strong=\"G2923\"* of|strong=\"G4151\"* all|strong=\"G3956\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* just|strong=\"G1342\"* men|strong=\"G3956\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"*," + }, + { + "verseNum": 24, + "text": "to|strong=\"G2532\"* Jesus|strong=\"G2424\"*, the|strong=\"G2532\"* mediator|strong=\"G3316\"* of|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G3501\"* covenant|strong=\"G1242\"*,+ 12:24 Jeremiah 31:31* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* sprinkling|strong=\"G4473\"* that|strong=\"G3588\"* speaks|strong=\"G2980\"* better|strong=\"G2909\"* than|strong=\"G3844\"* that|strong=\"G3588\"* of|strong=\"G2532\"* Abel." + }, + { + "verseNum": 25, + "text": "See that|strong=\"G3588\"* you|strong=\"G1487\"* don’t|strong=\"G3588\"* refuse|strong=\"G3868\"* him|strong=\"G3588\"* who|strong=\"G3588\"* speaks|strong=\"G2980\"*. For|strong=\"G1063\"* if|strong=\"G1487\"* they|strong=\"G3588\"* didn’t|strong=\"G3588\"* escape|strong=\"G1628\"* when|strong=\"G2980\"* they|strong=\"G3588\"* refused|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3588\"* warned|strong=\"G5537\"* on|strong=\"G1909\"* the|strong=\"G1909\"* earth|strong=\"G1093\"*, how much|strong=\"G4183\"* more|strong=\"G3123\"* will|strong=\"G1473\"* we|strong=\"G2249\"* not|strong=\"G3756\"* escape|strong=\"G1628\"* who|strong=\"G3588\"* turn away from|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3588\"* warns from|strong=\"G3756\"* heaven|strong=\"G3772\"*," + }, + { + "verseNum": 26, + "text": "whose|strong=\"G3739\"* voice|strong=\"G5456\"* shook|strong=\"G4531\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* then|strong=\"G2532\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* he|strong=\"G2532\"* has|strong=\"G3739\"* promised|strong=\"G1861\"*, saying|strong=\"G3004\"*, “Yet|strong=\"G2089\"* once|strong=\"G3739\"* more|strong=\"G2089\"* I|strong=\"G1473\"* will|strong=\"G2532\"* shake|strong=\"G4579\"* not|strong=\"G3756\"* only|strong=\"G3440\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"*.”+ 12:26 Haggai 2:6*" + }, + { + "verseNum": 27, + "text": "This|strong=\"G3588\"* phrase, “Yet|strong=\"G2089\"* once more|strong=\"G2089\"*” signifies the|strong=\"G1161\"* removing|strong=\"G3331\"* of|strong=\"G3588\"* those|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G2443\"* are|strong=\"G3588\"* shaken|strong=\"G4531\"*, as|strong=\"G5613\"* of|strong=\"G3588\"* things|strong=\"G3588\"* that|strong=\"G2443\"* have|strong=\"G4160\"* been|strong=\"G4160\"* made|strong=\"G4160\"*, that|strong=\"G2443\"* those|strong=\"G3588\"* things|strong=\"G3588\"* which|strong=\"G3588\"* are|strong=\"G3588\"* not|strong=\"G3361\"* shaken|strong=\"G4531\"* may|strong=\"G2443\"* remain|strong=\"G3306\"*." + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"G1352\"*, receiving|strong=\"G3880\"* a|strong=\"G2192\"* Kingdom that|strong=\"G3739\"* can’t|strong=\"G3588\"* be|strong=\"G2532\"* shaken, let|strong=\"G2192\"*’s|strong=\"G2192\"* have|strong=\"G2192\"* grace|strong=\"G5485\"*, through|strong=\"G1223\"* which|strong=\"G3739\"* we|strong=\"G3739\"* serve|strong=\"G3000\"* God|strong=\"G2316\"* acceptably|strong=\"G2102\"*, with|strong=\"G3326\"* reverence|strong=\"G2124\"* and|strong=\"G2532\"* awe," + }, + { + "verseNum": 29, + "text": "for|strong=\"G1063\"* our|strong=\"G2316\"* God|strong=\"G2316\"* is|strong=\"G3588\"* a|strong=\"G2532\"* consuming|strong=\"G2654\"* fire|strong=\"G4442\"*.+ 12:29 Deuteronomy 4:24*" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G3306\"* brotherly|strong=\"G5360\"* love|strong=\"G5360\"* continue|strong=\"G3306\"*." + }, + { + "verseNum": 2, + "text": "Don’t|strong=\"G3588\"* forget|strong=\"G1950\"* to|strong=\"G5100\"* show hospitality|strong=\"G5381\"* to|strong=\"G5100\"* strangers|strong=\"G5381\"*, for|strong=\"G1063\"* in|strong=\"G1223\"* doing so|strong=\"G1223\"*, some|strong=\"G5100\"* have|strong=\"G5100\"* entertained|strong=\"G3579\"* angels without|strong=\"G3361\"* knowing|strong=\"G2990\"* it|strong=\"G1063\"*." + }, + { + "verseNum": 3, + "text": "Remember|strong=\"G3403\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* bonds|strong=\"G1198\"*, as|strong=\"G5613\"* bound with|strong=\"G1722\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* ill-treated|strong=\"G2558\"*, since|strong=\"G5613\"* you|strong=\"G1722\"* are|strong=\"G1510\"* also|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"G2919\"* marriage|strong=\"G1062\"* be|strong=\"G2532\"* held in|strong=\"G1722\"* honor|strong=\"G5093\"* among|strong=\"G1722\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* let|strong=\"G2919\"* the|strong=\"G1722\"* bed|strong=\"G2845\"* be|strong=\"G2532\"* undefiled; but|strong=\"G2532\"* God|strong=\"G2316\"* will|strong=\"G2316\"* judge|strong=\"G2919\"* the|strong=\"G1722\"* sexually immoral|strong=\"G4205\"* and|strong=\"G2532\"* adulterers|strong=\"G3432\"*." + }, + { + "verseNum": 5, + "text": "Be|strong=\"G3756\"* free from|strong=\"G3756\"* the|strong=\"G3588\"* love of|strong=\"G3588\"* money, content with|strong=\"G3756\"* such|strong=\"G3588\"* things|strong=\"G3588\"* as|strong=\"G5158\"* you|strong=\"G4771\"* have|strong=\"G3588\"*, for|strong=\"G1063\"* he|strong=\"G3588\"* has|strong=\"G3761\"* said|strong=\"G3004\"*, “I|strong=\"G1063\"* will|strong=\"G3004\"* in|strong=\"G3004\"* no|strong=\"G3756\"* way|strong=\"G5158\"* leave|strong=\"G1459\"* you|strong=\"G4771\"*, neither|strong=\"G3761\"* will|strong=\"G3004\"* I|strong=\"G1063\"* in|strong=\"G3004\"* any|strong=\"G3361\"* way|strong=\"G5158\"* forsake|strong=\"G1459\"* you|strong=\"G4771\"*.”+ 13:5 Deuteronomy 31:6*" + }, + { + "verseNum": 6, + "text": "So|strong=\"G5620\"* that|strong=\"G5620\"* with|strong=\"G2962\"* good|strong=\"G2292\"* courage|strong=\"G2292\"* we|strong=\"G2249\"* say|strong=\"G3004\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"G3421\"* your|strong=\"G3588\"* leaders|strong=\"G2233\"*, men|strong=\"G3588\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* to|strong=\"G2980\"* you|strong=\"G5210\"* the|strong=\"G3588\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2316\"* considering|strong=\"G2233\"* the|strong=\"G3588\"* results of|strong=\"G3056\"* their|strong=\"G3588\"* conduct, imitate|strong=\"G3401\"* their|strong=\"G3588\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 8, + "text": "Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* is|strong=\"G3588\"* the|strong=\"G2532\"* same|strong=\"G2532\"* yesterday|strong=\"G5504\"*, today|strong=\"G4594\"*, and|strong=\"G2532\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* carried|strong=\"G3911\"* away|strong=\"G3911\"* by|strong=\"G1722\"* various|strong=\"G4164\"* and|strong=\"G2532\"* strange|strong=\"G3581\"* teachings|strong=\"G1322\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G3588\"* good|strong=\"G2570\"* that|strong=\"G3739\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* be|strong=\"G2532\"* established by|strong=\"G1722\"* grace|strong=\"G5485\"*, not|strong=\"G3756\"* by|strong=\"G1722\"* foods|strong=\"G1033\"*, through|strong=\"G1722\"* which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G3588\"* so|strong=\"G2532\"* occupied|strong=\"G4043\"* were|strong=\"G3588\"* not|strong=\"G3756\"* benefited|strong=\"G5623\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"G3739\"* have|strong=\"G2192\"* an|strong=\"G2192\"* altar|strong=\"G2379\"* from|strong=\"G1537\"* which|strong=\"G3739\"* those|strong=\"G3588\"* who|strong=\"G3739\"* serve|strong=\"G3000\"* the|strong=\"G1537\"* holy tabernacle|strong=\"G4633\"* have|strong=\"G2192\"* no|strong=\"G3756\"* right|strong=\"G1849\"* to|strong=\"G1849\"* eat|strong=\"G2068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G1519\"* bodies|strong=\"G4983\"* of|strong=\"G4012\"* those|strong=\"G3588\"* animals|strong=\"G2226\"*, whose|strong=\"G3739\"* blood is|strong=\"G3588\"* brought|strong=\"G1533\"* into|strong=\"G1519\"* the|strong=\"G1519\"* holy place|strong=\"G3739\"* by|strong=\"G1223\"* the|strong=\"G1519\"* high priest as|strong=\"G1519\"* an|strong=\"G1519\"* offering for|strong=\"G1063\"* sin, are|strong=\"G3588\"* burned|strong=\"G2618\"* outside|strong=\"G1854\"* of|strong=\"G4012\"* the|strong=\"G1519\"* camp|strong=\"G3925\"*.+ 13:11 Leviticus 16:27*" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* Jesus|strong=\"G2424\"* also|strong=\"G2532\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* sanctify the|strong=\"G2532\"* people|strong=\"G2992\"* through|strong=\"G1223\"* his|strong=\"G1223\"* own|strong=\"G2398\"* blood, suffered|strong=\"G3958\"* outside|strong=\"G1854\"* of|strong=\"G1223\"* the|strong=\"G2532\"* gate|strong=\"G4439\"*." + }, + { + "verseNum": 13, + "text": "Let’s therefore|strong=\"G5106\"* go|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G4314\"* him|strong=\"G3588\"* outside|strong=\"G1854\"* of|strong=\"G3588\"* the|strong=\"G4314\"* camp|strong=\"G3925\"*, bearing|strong=\"G5342\"* his|strong=\"G4314\"* reproach|strong=\"G3680\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* here|strong=\"G5602\"* an|strong=\"G2192\"* enduring|strong=\"G3306\"* city|strong=\"G4172\"*, but|strong=\"G1063\"* we|strong=\"G1063\"* seek|strong=\"G1934\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* to|strong=\"G3195\"* come|strong=\"G3195\"*." + }, + { + "verseNum": 15, + "text": "Through|strong=\"G1223\"* him|strong=\"G3588\"*, then|strong=\"G3767\"*, let|strong=\"G1510\"*’s offer up a|strong=\"G1510\"* sacrifice|strong=\"G2378\"* of|strong=\"G1223\"* praise to|strong=\"G2316\"* God|strong=\"G2316\"*+ 13:15 Psalms 50:23* continually|strong=\"G1223\"*, that|strong=\"G3588\"* is|strong=\"G1510\"*, the|strong=\"G3956\"* fruit|strong=\"G2590\"* of|strong=\"G1223\"* lips|strong=\"G5491\"* which|strong=\"G3588\"* proclaim allegiance to|strong=\"G2316\"* his|strong=\"G3956\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* don’t|strong=\"G3588\"* forget|strong=\"G1950\"* to|strong=\"G2532\"* be|strong=\"G2532\"* doing|strong=\"G2140\"* good|strong=\"G2140\"* and|strong=\"G2532\"* sharing|strong=\"G2842\"*, for|strong=\"G1063\"* with|strong=\"G2532\"* such|strong=\"G5108\"* sacrifices|strong=\"G2378\"* God|strong=\"G2316\"* is|strong=\"G3588\"* well|strong=\"G2532\"* pleased|strong=\"G2100\"*." + }, + { + "verseNum": 17, + "text": "Obey|strong=\"G3982\"* your|strong=\"G2532\"* leaders|strong=\"G2233\"* and|strong=\"G2532\"* submit|strong=\"G5226\"* to|strong=\"G2443\"* them|strong=\"G3588\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* watch on|strong=\"G5228\"* behalf|strong=\"G5228\"* of|strong=\"G3056\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*, as|strong=\"G5613\"* those|strong=\"G3588\"* who|strong=\"G3588\"* will|strong=\"G2532\"* give|strong=\"G4160\"* account|strong=\"G3056\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* may|strong=\"G2532\"* do|strong=\"G4160\"* this|strong=\"G3778\"* with|strong=\"G3326\"* joy|strong=\"G5479\"* and|strong=\"G2532\"* not|strong=\"G3361\"* with|strong=\"G3326\"* groaning, for|strong=\"G1063\"* that|strong=\"G2443\"* would|strong=\"G2532\"* be|strong=\"G2532\"* unprofitable for|strong=\"G1063\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 18, + "text": "Pray|strong=\"G4336\"* for|strong=\"G1063\"* us|strong=\"G2249\"*, for|strong=\"G1063\"* we|strong=\"G2249\"* are|strong=\"G3956\"* persuaded|strong=\"G3982\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* a|strong=\"G2192\"* good|strong=\"G2570\"* conscience|strong=\"G4893\"*, desiring|strong=\"G2309\"* to|strong=\"G2309\"* live|strong=\"G2192\"* honorably|strong=\"G2573\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"G1161\"* strongly urge|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G2443\"* do|strong=\"G4160\"* this|strong=\"G3778\"*, that|strong=\"G2443\"* I|strong=\"G1161\"* may|strong=\"G2443\"* be|strong=\"G2443\"* restored to|strong=\"G2443\"* you|strong=\"G5210\"* sooner|strong=\"G5032\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"G1161\"* may|strong=\"G2316\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G1537\"* peace|strong=\"G1515\"*, who|strong=\"G3588\"* brought|strong=\"G1161\"* again|strong=\"G1537\"* from|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* the|strong=\"G1722\"* great|strong=\"G3173\"* shepherd|strong=\"G4166\"* of|strong=\"G1537\"* the|strong=\"G1722\"* sheep|strong=\"G4263\"* with|strong=\"G1722\"* the|strong=\"G1722\"* blood of|strong=\"G1537\"* an|strong=\"G1722\"* eternal covenant|strong=\"G1242\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"*," + }, + { + "verseNum": 21, + "text": "make|strong=\"G4160\"* you|strong=\"G5210\"* complete|strong=\"G3956\"* in|strong=\"G1722\"* every|strong=\"G3956\"* good|strong=\"G3956\"* work|strong=\"G3956\"* to|strong=\"G1519\"* do|strong=\"G4160\"* his|strong=\"G3956\"* will|strong=\"G2307\"*, working|strong=\"G4160\"* in|strong=\"G1722\"* you|strong=\"G5210\"* that|strong=\"G3739\"* which|strong=\"G3739\"* is|strong=\"G3588\"* well|strong=\"G1722\"* pleasing|strong=\"G2101\"* in|strong=\"G1722\"* his|strong=\"G3956\"* sight|strong=\"G1799\"*, through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* be|strong=\"G3956\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* forever|strong=\"G1519\"* and|strong=\"G1391\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* you|strong=\"G5210\"*, brothers, endure the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* exhortation|strong=\"G3874\"*, for|strong=\"G1063\"* I|strong=\"G2532\"* have|strong=\"G2532\"* written|strong=\"G1989\"* to|strong=\"G2532\"* you|strong=\"G5210\"* in|strong=\"G2532\"* few|strong=\"G1223\"* words|strong=\"G3056\"*." + }, + { + "verseNum": 23, + "text": "Know|strong=\"G1097\"* that|strong=\"G3739\"* our|strong=\"G3326\"* brother Timothy|strong=\"G5095\"* has|strong=\"G3739\"* been freed, with|strong=\"G3326\"* whom|strong=\"G3739\"*, if|strong=\"G1437\"* he|strong=\"G3739\"* comes|strong=\"G2064\"* shortly|strong=\"G5032\"*, I|strong=\"G1473\"* will|strong=\"G3739\"* see|strong=\"G3708\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 24, + "text": "Greet all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* leaders|strong=\"G2233\"* and|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints. The|strong=\"G2532\"* Italians greet you|strong=\"G5210\"*." + }, + { + "verseNum": 25, + "text": "Grace|strong=\"G5485\"* be|strong=\"G3956\"* with|strong=\"G3326\"* you|strong=\"G5210\"* all|strong=\"G3956\"*. Amen." + } + ] + } + ] + }, + { + "name": "James", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "James|strong=\"G2385\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* the|strong=\"G1722\"* twelve|strong=\"G1427\"* tribes|strong=\"G5443\"* which|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Dispersion|strong=\"G1290\"*: Greetings|strong=\"G5463\"*." + }, + { + "verseNum": 2, + "text": "Count|strong=\"G2233\"* it|strong=\"G2233\"* all|strong=\"G3956\"* joy|strong=\"G5479\"*, my|strong=\"G3956\"* brothers,+ 1:2 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* when|strong=\"G3752\"* you|strong=\"G3752\"* fall into|strong=\"G4045\"* various|strong=\"G4164\"* temptations|strong=\"G3986\"*," + }, + { + "verseNum": 3, + "text": "knowing|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G3588\"* testing|strong=\"G1383\"* of|strong=\"G4102\"* your|strong=\"G3588\"* faith|strong=\"G4102\"* produces|strong=\"G2716\"* endurance|strong=\"G5281\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"G1161\"* endurance|strong=\"G5281\"* have|strong=\"G2192\"* its perfect|strong=\"G5046\"* work|strong=\"G2041\"*, that|strong=\"G2443\"* you|strong=\"G1722\"* may|strong=\"G2532\"* be|strong=\"G1510\"* perfect|strong=\"G5046\"* and|strong=\"G2532\"* complete|strong=\"G3648\"*, lacking|strong=\"G3007\"* in|strong=\"G1722\"* nothing|strong=\"G3367\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* any|strong=\"G5100\"* of|strong=\"G2316\"* you|strong=\"G5210\"* lacks|strong=\"G3007\"* wisdom|strong=\"G4678\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* ask of|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* gives|strong=\"G1325\"* to|strong=\"G2532\"* all|strong=\"G3956\"* liberally and|strong=\"G2532\"* without|strong=\"G3361\"* reproach|strong=\"G3679\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* ask in|strong=\"G1722\"* faith|strong=\"G4102\"*, without|strong=\"G3367\"* any|strong=\"G3367\"* doubting|strong=\"G1252\"*, for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doubts|strong=\"G1252\"* is|strong=\"G3588\"* like|strong=\"G1503\"* a|strong=\"G2532\"* wave|strong=\"G2830\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, driven by|strong=\"G1722\"* the|strong=\"G1722\"* wind|strong=\"G4494\"* and|strong=\"G2532\"* tossed|strong=\"G4494\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* that|strong=\"G3754\"* man|strong=\"G5100\"* shouldn’t|strong=\"G3588\"* think|strong=\"G5100\"* that|strong=\"G3754\"* he|strong=\"G3754\"* will|strong=\"G2962\"* receive|strong=\"G2983\"* anything|strong=\"G5100\"* from|strong=\"G3844\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3588\"* is|strong=\"G3588\"* a|strong=\"G1722\"* double-minded|strong=\"G1374\"* man|strong=\"G3956\"*, unstable in|strong=\"G1722\"* all|strong=\"G3956\"* his|strong=\"G3956\"* ways|strong=\"G3598\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"G1161\"* the|strong=\"G1722\"* brother in|strong=\"G1722\"* humble|strong=\"G5011\"* circumstances|strong=\"G1722\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* his|strong=\"G1722\"* high|strong=\"G5311\"* position|strong=\"G5311\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"G1161\"* the|strong=\"G1722\"* rich|strong=\"G4145\"*, in|strong=\"G1722\"* that|strong=\"G3754\"* he|strong=\"G1161\"* is|strong=\"G3588\"* made|strong=\"G1161\"* humble|strong=\"G5014\"*, because|strong=\"G3754\"* like|strong=\"G5613\"* the|strong=\"G1722\"* flower in|strong=\"G1722\"* the|strong=\"G1722\"* grass|strong=\"G5528\"*, he|strong=\"G1161\"* will|strong=\"G3748\"* pass|strong=\"G3928\"* away|strong=\"G3928\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* sun|strong=\"G2246\"* arises with|strong=\"G1722\"* the|strong=\"G1722\"* scorching|strong=\"G2742\"* wind|strong=\"G2742\"* and|strong=\"G2532\"* withers|strong=\"G3583\"* the|strong=\"G1722\"* grass|strong=\"G5528\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* flower in|strong=\"G1722\"* it|strong=\"G2532\"* falls|strong=\"G1601\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* beauty|strong=\"G2143\"* of|strong=\"G2532\"* its appearance|strong=\"G4383\"* perishes. So|strong=\"G3779\"* the|strong=\"G1722\"* rich|strong=\"G4145\"* man|strong=\"G4145\"* will|strong=\"G2532\"* also|strong=\"G2532\"* fade|strong=\"G3133\"* away|strong=\"G3583\"* in|strong=\"G1722\"* his|strong=\"G1722\"* pursuits|strong=\"G4197\"*." + }, + { + "verseNum": 12, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3588\"* a|strong=\"G1096\"* person|strong=\"G3739\"* who|strong=\"G3739\"* endures|strong=\"G5278\"* temptation|strong=\"G3986\"*, for|strong=\"G3754\"* when|strong=\"G1096\"* he|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G1096\"* approved|strong=\"G1384\"*, he|strong=\"G3739\"* will|strong=\"G3739\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* crown|strong=\"G4735\"* of|strong=\"G4735\"* life|strong=\"G2222\"* which|strong=\"G3739\"* the|strong=\"G3588\"* Lord|strong=\"G3588\"* promised|strong=\"G1861\"* to|strong=\"G1096\"* those|strong=\"G3588\"* who|strong=\"G3739\"* love him|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"G1161\"* no|strong=\"G3762\"* man|strong=\"G3762\"* say|strong=\"G3004\"* when|strong=\"G1161\"* he|strong=\"G1161\"* is|strong=\"G1510\"* tempted|strong=\"G3985\"*, “I|strong=\"G1161\"* am|strong=\"G1510\"* tempted|strong=\"G3985\"* by|strong=\"G3004\"* God|strong=\"G2316\"*,” for|strong=\"G1063\"* God|strong=\"G2316\"* can|strong=\"G3004\"*’t|strong=\"G3588\"* be|strong=\"G1510\"* tempted|strong=\"G3985\"* by|strong=\"G3004\"* evil|strong=\"G2556\"*, and|strong=\"G1161\"* he|strong=\"G1161\"* himself tempts|strong=\"G3985\"* no|strong=\"G3762\"* one|strong=\"G3762\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* each|strong=\"G1538\"* one|strong=\"G1538\"* is|strong=\"G3588\"* tempted|strong=\"G3985\"* when|strong=\"G1161\"* he|strong=\"G2532\"* is|strong=\"G3588\"* drawn away|strong=\"G1828\"* by|strong=\"G5259\"* his|strong=\"G2398\"* own|strong=\"G2398\"* lust|strong=\"G1939\"* and|strong=\"G2532\"* enticed|strong=\"G1185\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"G1161\"* the|strong=\"G1161\"* lust|strong=\"G1939\"*, when|strong=\"G1161\"* it|strong=\"G1161\"* has|strong=\"G2288\"* conceived|strong=\"G4815\"*, bears sin. The|strong=\"G1161\"* sin, when|strong=\"G1161\"* it|strong=\"G1161\"* is|strong=\"G3588\"* full grown, produces death|strong=\"G2288\"*." + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"G3361\"* deceived|strong=\"G4105\"*, my|strong=\"G1473\"* beloved brothers." + }, + { + "verseNum": 17, + "text": "Every|strong=\"G3956\"* good|strong=\"G3956\"* gift|strong=\"G1434\"* and|strong=\"G2532\"* every|strong=\"G3956\"* perfect|strong=\"G5046\"* gift|strong=\"G1434\"* is|strong=\"G1510\"* from|strong=\"G3844\"* above|strong=\"G3844\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G2532\"* lights|strong=\"G5457\"*, with|strong=\"G3844\"* whom|strong=\"G3739\"* can be|strong=\"G1510\"* no|strong=\"G3756\"* variation|strong=\"G3883\"* nor|strong=\"G2532\"* turning|strong=\"G5157\"* shadow." + }, + { + "verseNum": 18, + "text": "Of|strong=\"G3056\"* his|strong=\"G1519\"* own will|strong=\"G1510\"* he|strong=\"G3588\"* gave|strong=\"G3588\"* birth to|strong=\"G1519\"* us|strong=\"G1519\"* by|strong=\"G1519\"* the|strong=\"G1519\"* word|strong=\"G3056\"* of|strong=\"G3056\"* truth, that|strong=\"G3588\"* we|strong=\"G2249\"* should|strong=\"G5100\"* be|strong=\"G1510\"* a|strong=\"G1519\"* kind|strong=\"G5100\"* of|strong=\"G3056\"* first|strong=\"G3588\"* fruits of|strong=\"G3056\"* his|strong=\"G1519\"* creatures|strong=\"G2938\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"G1161\"*, then|strong=\"G1161\"*, my|strong=\"G3956\"* beloved brothers, let|strong=\"G1161\"* every|strong=\"G3956\"* man|strong=\"G3956\"* be|strong=\"G1510\"* swift|strong=\"G5036\"* to|strong=\"G1519\"* hear, slow|strong=\"G1021\"* to|strong=\"G1519\"* speak|strong=\"G2980\"*, and|strong=\"G1161\"* slow|strong=\"G1021\"* to|strong=\"G1519\"* anger|strong=\"G3709\"*;" + }, + { + "verseNum": 20, + "text": "for|strong=\"G1063\"* the|strong=\"G1063\"* anger|strong=\"G3709\"* of|strong=\"G2316\"* man|strong=\"G3756\"* doesn’t produce the|strong=\"G1063\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"G1352\"*, putting|strong=\"G2532\"* away all|strong=\"G3956\"* filthiness|strong=\"G4507\"* and|strong=\"G2532\"* overflowing of|strong=\"G3056\"* wickedness|strong=\"G2549\"*, receive|strong=\"G1209\"* with|strong=\"G1722\"* humility|strong=\"G4240\"* the|strong=\"G1722\"* implanted|strong=\"G1721\"* word|strong=\"G3056\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* save|strong=\"G4982\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*.+ 1:21 or, preserve your life.*" + }, + { + "verseNum": 22, + "text": "But|strong=\"G1161\"* be|strong=\"G1096\"* doers|strong=\"G4163\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"*, and|strong=\"G2532\"* not|strong=\"G3361\"* only|strong=\"G3440\"* hearers, deluding your|strong=\"G2532\"* own|strong=\"G1438\"* selves|strong=\"G1438\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"G3754\"* if|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* a|strong=\"G2532\"* hearer of|strong=\"G3056\"* the|strong=\"G1722\"* word|strong=\"G3056\"* and|strong=\"G2532\"* not|strong=\"G3756\"* a|strong=\"G2532\"* doer|strong=\"G4163\"*, he|strong=\"G2532\"* is|strong=\"G1510\"* like|strong=\"G1503\"* a|strong=\"G2532\"* man|strong=\"G5100\"* looking|strong=\"G2532\"* at|strong=\"G1722\"* his|strong=\"G1722\"* natural|strong=\"G1078\"* face|strong=\"G4383\"* in|strong=\"G1722\"* a|strong=\"G2532\"* mirror|strong=\"G2072\"*;" + }, + { + "verseNum": 24, + "text": "for|strong=\"G1063\"* he|strong=\"G2532\"* sees himself|strong=\"G1438\"*, and|strong=\"G2532\"* goes away, and|strong=\"G2532\"* immediately|strong=\"G2112\"* forgets|strong=\"G1950\"* what|strong=\"G1063\"* kind|strong=\"G3697\"* of|strong=\"G2532\"* man|strong=\"G3697\"* he|strong=\"G2532\"* was|strong=\"G1510\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* looks|strong=\"G3879\"* into|strong=\"G1519\"* the|strong=\"G1722\"* perfect|strong=\"G5046\"* law|strong=\"G3551\"* of|strong=\"G2532\"* freedom|strong=\"G1657\"* and|strong=\"G2532\"* continues, not|strong=\"G3756\"* being|strong=\"G1510\"* a|strong=\"G1096\"* hearer who|strong=\"G3588\"* forgets but|strong=\"G1161\"* a|strong=\"G1096\"* doer|strong=\"G4163\"* of|strong=\"G2532\"* the|strong=\"G1722\"* work|strong=\"G2041\"*, this|strong=\"G3778\"* man|strong=\"G3778\"* will|strong=\"G1510\"* be|strong=\"G1096\"* blessed|strong=\"G3107\"* in|strong=\"G1722\"* what|strong=\"G3588\"* he|strong=\"G2532\"* does|strong=\"G1510\"*." + }, + { + "verseNum": 26, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* among|strong=\"G3588\"* you|strong=\"G1487\"* thinks|strong=\"G1380\"* himself|strong=\"G2588\"* to|strong=\"G5100\"* be|strong=\"G1510\"* religious|strong=\"G2357\"* while|strong=\"G1510\"* he|strong=\"G3778\"* doesn’t|strong=\"G3588\"* bridle|strong=\"G5468\"* his|strong=\"G3588\"* tongue|strong=\"G1100\"*, but|strong=\"G1487\"* deceives his|strong=\"G3588\"* heart|strong=\"G2588\"*, this|strong=\"G3778\"* man|strong=\"G5100\"*’s religion|strong=\"G2356\"* is|strong=\"G1510\"* worthless|strong=\"G3152\"*." + }, + { + "verseNum": 27, + "text": "Pure|strong=\"G2513\"* religion|strong=\"G2356\"* and|strong=\"G2532\"* undefiled before|strong=\"G3844\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: to|strong=\"G2532\"* visit|strong=\"G1980\"* the|strong=\"G1722\"* fatherless|strong=\"G3737\"* and|strong=\"G2532\"* widows|strong=\"G5503\"* in|strong=\"G1722\"* their|strong=\"G1438\"* affliction|strong=\"G2347\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* keep|strong=\"G5083\"* oneself|strong=\"G1438\"* unstained by|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"G1722\"* brothers, don’t|strong=\"G3588\"* hold|strong=\"G2192\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G1391\"* our|strong=\"G2424\"* glorious|strong=\"G1391\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* with|strong=\"G1722\"* partiality|strong=\"G4382\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* if|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G4434\"* with|strong=\"G1722\"* a|strong=\"G2532\"* gold|strong=\"G5554\"* ring|strong=\"G5554\"*, in|strong=\"G1722\"* fine|strong=\"G2986\"* clothing|strong=\"G2066\"*, comes|strong=\"G1525\"* into|strong=\"G1519\"* your|strong=\"G1437\"* synagogue|strong=\"G4864\"*,+ 2:2 or, meeting* and|strong=\"G2532\"* a|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4434\"* in|strong=\"G1722\"* filthy|strong=\"G4508\"* clothing|strong=\"G2066\"* also|strong=\"G2532\"* comes|strong=\"G1525\"* in|strong=\"G1722\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* you|strong=\"G4771\"* pay|strong=\"G1914\"* special|strong=\"G1914\"* attention|strong=\"G1914\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* wears the|strong=\"G2532\"* fine|strong=\"G2986\"* clothing|strong=\"G2066\"* and|strong=\"G2532\"* say|strong=\"G3004\"*, “Sit|strong=\"G2521\"* here|strong=\"G5602\"* in|strong=\"G1909\"* a|strong=\"G2532\"* good|strong=\"G2573\"* place|strong=\"G1563\"*;” and|strong=\"G2532\"* you|strong=\"G4771\"* tell|strong=\"G3004\"* the|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4434\"*, “Stand|strong=\"G2476\"* there|strong=\"G1563\"*,” or|strong=\"G2228\"* “Sit|strong=\"G2521\"* by|strong=\"G5259\"* my|strong=\"G1473\"* footstool|strong=\"G5286\"*”" + }, + { + "verseNum": 4, + "text": "haven’t you|strong=\"G1722\"* shown partiality among|strong=\"G1722\"* yourselves|strong=\"G1438\"*, and|strong=\"G2532\"* become|strong=\"G1096\"* judges|strong=\"G2923\"* with|strong=\"G1722\"* evil|strong=\"G4190\"* thoughts|strong=\"G1261\"*?" + }, + { + "verseNum": 5, + "text": "Listen, my|strong=\"G1722\"* beloved brothers. Didn’t|strong=\"G3588\"* God|strong=\"G2316\"* choose|strong=\"G1586\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* poor|strong=\"G4434\"* in|strong=\"G1722\"* this|strong=\"G3588\"* world|strong=\"G2889\"* to|strong=\"G2532\"* be|strong=\"G2532\"* rich|strong=\"G4145\"* in|strong=\"G1722\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* heirs|strong=\"G2818\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Kingdom which|strong=\"G3739\"* he|strong=\"G2532\"* promised|strong=\"G1861\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* love him|strong=\"G3588\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G2532\"* dishonored the|strong=\"G2532\"* poor|strong=\"G4434\"* man|strong=\"G4145\"*. Don’t|strong=\"G3588\"* the|strong=\"G2532\"* rich|strong=\"G4145\"* oppress|strong=\"G2616\"* you|strong=\"G5210\"* and|strong=\"G2532\"* personally drag|strong=\"G1670\"* you|strong=\"G5210\"* before|strong=\"G1519\"* the|strong=\"G2532\"* courts|strong=\"G2922\"*?" + }, + { + "verseNum": 7, + "text": "Don’t|strong=\"G3588\"* they|strong=\"G3588\"* blaspheme the|strong=\"G1909\"* honorable|strong=\"G2570\"* name|strong=\"G3686\"* by|strong=\"G1909\"* which|strong=\"G3588\"* you|strong=\"G5210\"* are|strong=\"G3588\"* called|strong=\"G1941\"*?" + }, + { + "verseNum": 8, + "text": "However|strong=\"G3305\"*, if|strong=\"G1487\"* you|strong=\"G4771\"* fulfill the|strong=\"G2596\"* royal law|strong=\"G3551\"* according|strong=\"G2596\"* to|strong=\"G2596\"* the|strong=\"G2596\"* Scripture|strong=\"G1124\"*, “You|strong=\"G4771\"* shall|strong=\"G4160\"* love your|strong=\"G4160\"* neighbor|strong=\"G4139\"* as|strong=\"G5613\"* yourself|strong=\"G4572\"*,”+ 2:8 Leviticus 19:18* you|strong=\"G4771\"* do|strong=\"G4160\"* well|strong=\"G2573\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* show|strong=\"G4380\"* partiality|strong=\"G4380\"*, you|strong=\"G1487\"* commit|strong=\"G2038\"* sin, being|strong=\"G1161\"* convicted|strong=\"G1651\"* by|strong=\"G5259\"* the|strong=\"G1161\"* law|strong=\"G3551\"* as|strong=\"G5613\"* transgressors|strong=\"G3848\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"* whoever|strong=\"G3748\"* keeps|strong=\"G5083\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* law|strong=\"G3551\"*, and|strong=\"G1161\"* yet|strong=\"G1161\"* stumbles|strong=\"G4417\"* in|strong=\"G1722\"* one|strong=\"G1520\"* point, he|strong=\"G1161\"* has|strong=\"G1096\"* become|strong=\"G1096\"* guilty|strong=\"G1777\"* of|strong=\"G3551\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3588\"* said|strong=\"G3004\"*, “Do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"*,”+ 2:11 Exodus 20:14; Deuteronomy 5:18* also|strong=\"G2532\"* said|strong=\"G3004\"*, “Do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* murder|strong=\"G5407\"*.”+ 2:11 Exodus 20:13; Deuteronomy 5:17 * Now|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* do|strong=\"G1096\"* not|strong=\"G3756\"* commit|strong=\"G3431\"* adultery|strong=\"G3431\"* but|strong=\"G1161\"* do|strong=\"G1096\"* murder|strong=\"G5407\"*, you|strong=\"G1487\"* have|strong=\"G2532\"* become|strong=\"G1096\"* a|strong=\"G1096\"* transgressor|strong=\"G3848\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"G3779\"* speak|strong=\"G2980\"* and|strong=\"G2532\"* so|strong=\"G3779\"* do|strong=\"G4160\"* as|strong=\"G5613\"* men who|strong=\"G2532\"* are|strong=\"G2532\"* to|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* by|strong=\"G1223\"* the|strong=\"G2532\"* law|strong=\"G3551\"* of|strong=\"G1223\"* freedom|strong=\"G1657\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"G1063\"* judgment|strong=\"G2920\"* is|strong=\"G3588\"* without|strong=\"G3361\"* mercy|strong=\"G1656\"* to|strong=\"G3361\"* him|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2920\"* shown|strong=\"G4160\"* no|strong=\"G3361\"* mercy|strong=\"G1656\"*. Mercy|strong=\"G1656\"* triumphs|strong=\"G2620\"* over|strong=\"G2620\"* judgment|strong=\"G2920\"*." + }, + { + "verseNum": 14, + "text": "What|strong=\"G5101\"* good|strong=\"G3786\"* is|strong=\"G3588\"* it|strong=\"G1161\"*, my|strong=\"G1473\"* brothers, if|strong=\"G1437\"* a|strong=\"G2192\"* man|strong=\"G5100\"* says|strong=\"G3004\"* he|strong=\"G1161\"* has|strong=\"G2192\"* faith|strong=\"G4102\"*, but|strong=\"G1161\"* has|strong=\"G2192\"* no|strong=\"G3361\"* works|strong=\"G2041\"*? Can|strong=\"G1410\"* faith|strong=\"G4102\"* save|strong=\"G4982\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* if|strong=\"G1437\"* a|strong=\"G2532\"* brother or|strong=\"G2228\"* sister is|strong=\"G3588\"* naked|strong=\"G1131\"* and|strong=\"G2532\"* in|strong=\"G2532\"* lack|strong=\"G3007\"* of|strong=\"G2532\"* daily|strong=\"G2184\"* food|strong=\"G5160\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"G2532\"* one|strong=\"G5100\"* of|strong=\"G1537\"* you|strong=\"G5210\"* tells them|strong=\"G3588\"*, “Go|strong=\"G5217\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*. Be|strong=\"G2532\"* warmed|strong=\"G2532\"* and|strong=\"G2532\"* filled|strong=\"G5526\"*;” yet|strong=\"G2532\"* you|strong=\"G5210\"* didn’t|strong=\"G3588\"* give|strong=\"G1325\"* them|strong=\"G3588\"* the|strong=\"G1722\"* things|strong=\"G3588\"* the|strong=\"G1722\"* body|strong=\"G4983\"* needs|strong=\"G2006\"*, what|strong=\"G5101\"* good|strong=\"G3786\"* is|strong=\"G3588\"* it|strong=\"G2532\"*?" + }, + { + "verseNum": 17, + "text": "Even|strong=\"G2532\"* so|strong=\"G3779\"* faith|strong=\"G4102\"*, if|strong=\"G1437\"* it|strong=\"G2532\"* has|strong=\"G2192\"* no|strong=\"G3361\"* works|strong=\"G2041\"*, is|strong=\"G1510\"* dead|strong=\"G3498\"* in|strong=\"G2596\"* itself|strong=\"G1438\"*." + }, + { + "verseNum": 18, + "text": "Yes, a|strong=\"G2192\"* man|strong=\"G5100\"* will|strong=\"G1473\"* say|strong=\"G3004\"*, “You|strong=\"G4771\"* have|strong=\"G2192\"* faith|strong=\"G4102\"*, and|strong=\"G4102\"* I|strong=\"G1473\"* have|strong=\"G2192\"* works|strong=\"G2041\"*.” Show|strong=\"G1166\"* me|strong=\"G1473\"* your|strong=\"G2192\"* faith|strong=\"G4102\"* without|strong=\"G5565\"* works|strong=\"G2041\"*, and|strong=\"G4102\"* I|strong=\"G1473\"* will|strong=\"G1473\"* show|strong=\"G1166\"* you|strong=\"G4771\"* my|strong=\"G1473\"* faith|strong=\"G4102\"* by|strong=\"G1537\"* my|strong=\"G1473\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"G4771\"* believe|strong=\"G4100\"* that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* one|strong=\"G1520\"*. You|strong=\"G4771\"* do|strong=\"G4160\"* well|strong=\"G2573\"*. The|strong=\"G2532\"* demons|strong=\"G1140\"* also|strong=\"G2532\"* believe|strong=\"G4100\"*—and|strong=\"G2532\"* shudder|strong=\"G5425\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* do|strong=\"G1510\"* you|strong=\"G3754\"* want|strong=\"G2309\"* to|strong=\"G2309\"* know|strong=\"G1097\"*, vain|strong=\"G2756\"* man, that|strong=\"G3754\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G3588\"* works|strong=\"G2041\"* is|strong=\"G1510\"* dead?" + }, + { + "verseNum": 21, + "text": "Wasn’t|strong=\"G3588\"* Abraham our|strong=\"G1537\"* father|strong=\"G3962\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"*, in|strong=\"G1909\"* that|strong=\"G3588\"* he|strong=\"G3588\"* offered up|strong=\"G1537\"* Isaac|strong=\"G2464\"* his|strong=\"G1909\"* son|strong=\"G5207\"* on|strong=\"G1909\"* the|strong=\"G1537\"* altar|strong=\"G2379\"*?" + }, + { + "verseNum": 22, + "text": "You|strong=\"G3754\"* see that|strong=\"G3754\"* faith|strong=\"G4102\"* worked|strong=\"G4903\"* with|strong=\"G1537\"* his|strong=\"G2532\"* works|strong=\"G2041\"*, and|strong=\"G2532\"* by|strong=\"G1537\"* works|strong=\"G2041\"* faith|strong=\"G4102\"* was|strong=\"G3588\"* perfected|strong=\"G5048\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"G2532\"* the|strong=\"G2532\"* Scripture|strong=\"G1124\"* was|strong=\"G3588\"* fulfilled|strong=\"G4137\"* which|strong=\"G3588\"* says|strong=\"G3004\"*, “Abraham|strong=\"G4100\"* believed|strong=\"G4100\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* accounted|strong=\"G3049\"* to|strong=\"G1519\"* him|strong=\"G3588\"* as|strong=\"G1519\"* righteousness|strong=\"G1343\"*,”+ 2:23 Genesis 15:6* and|strong=\"G2532\"* he|strong=\"G2532\"* was|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* friend|strong=\"G5384\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"G3754\"* see|strong=\"G3708\"* then|strong=\"G2532\"* that|strong=\"G3754\"* by|strong=\"G1537\"* works|strong=\"G2041\"* a|strong=\"G2532\"* man|strong=\"G3756\"* is|strong=\"G3748\"* justified|strong=\"G1344\"*, and|strong=\"G2532\"* not|strong=\"G3756\"* only|strong=\"G3440\"* by|strong=\"G1537\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3598\"*, wasn’t|strong=\"G3588\"* Rahab|strong=\"G4460\"* the|strong=\"G2532\"* prostitute|strong=\"G4204\"* also|strong=\"G2532\"* justified|strong=\"G1344\"* by|strong=\"G1537\"* works|strong=\"G2041\"* when|strong=\"G1161\"* she|strong=\"G2532\"* received|strong=\"G5264\"* the|strong=\"G2532\"* messengers and|strong=\"G2532\"* sent|strong=\"G1544\"* them|strong=\"G3588\"* out|strong=\"G1537\"* another|strong=\"G2087\"* way|strong=\"G3598\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"G1063\"* as|strong=\"G5618\"* the|strong=\"G2532\"* body|strong=\"G4983\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* is|strong=\"G1510\"* dead|strong=\"G3498\"*, even|strong=\"G2532\"* so|strong=\"G3779\"* faith|strong=\"G4102\"* apart|strong=\"G5565\"* from|strong=\"G2532\"* works|strong=\"G2041\"* is|strong=\"G1510\"* dead|strong=\"G3498\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"G1096\"* not|strong=\"G3361\"* many|strong=\"G4183\"* of|strong=\"G1096\"* you|strong=\"G3754\"* be|strong=\"G1096\"* teachers|strong=\"G1320\"*, my|strong=\"G1473\"* brothers, knowing|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* will|strong=\"G1473\"* receive|strong=\"G2983\"* heavier judgment|strong=\"G2917\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* all|strong=\"G3650\"* stumble|strong=\"G4417\"* in|strong=\"G1722\"* many|strong=\"G4183\"* things|strong=\"G3778\"*. Anyone|strong=\"G5100\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* stumble|strong=\"G4417\"* in|strong=\"G1722\"* word|strong=\"G3056\"* is|strong=\"G3588\"* a|strong=\"G2532\"* perfect|strong=\"G5046\"* person|strong=\"G5100\"*, able|strong=\"G1415\"* to|strong=\"G2532\"* bridle|strong=\"G5468\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* body|strong=\"G4983\"* also|strong=\"G2532\"*." + }, + { + "verseNum": 3, + "text": "Indeed|strong=\"G2532\"*, we|strong=\"G2249\"* put|strong=\"G3982\"* bits|strong=\"G5469\"* into|strong=\"G1519\"* the|strong=\"G2532\"* horses|strong=\"G2462\"*’ mouths|strong=\"G4750\"* so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* obey|strong=\"G3982\"* us|strong=\"G1519\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* guide their|strong=\"G1438\"* whole|strong=\"G3650\"* body|strong=\"G4983\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"G2400\"*,+ 3:4 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G2532\"* ships|strong=\"G4143\"* also|strong=\"G2532\"*, though|strong=\"G2532\"* they|strong=\"G2532\"* are|strong=\"G1510\"* so|strong=\"G2532\"* big and|strong=\"G2532\"* are|strong=\"G1510\"* driven|strong=\"G1643\"* by|strong=\"G5259\"* fierce|strong=\"G4642\"* winds, are|strong=\"G1510\"* yet|strong=\"G2532\"* guided by|strong=\"G5259\"* a|strong=\"G2532\"* very|strong=\"G2532\"* small|strong=\"G1646\"* rudder|strong=\"G4079\"*, wherever|strong=\"G3699\"* the|strong=\"G2532\"* pilot|strong=\"G2116\"* desires|strong=\"G1014\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"G3779\"* the|strong=\"G2532\"* tongue|strong=\"G1100\"* is|strong=\"G1510\"* also|strong=\"G2532\"* a|strong=\"G2532\"* little|strong=\"G3398\"* member|strong=\"G3196\"*, and|strong=\"G2532\"* boasts great|strong=\"G3173\"* things|strong=\"G3588\"*. See|strong=\"G3708\"* how|strong=\"G3779\"* a|strong=\"G2532\"* small|strong=\"G3398\"* fire|strong=\"G4442\"* can spread to|strong=\"G2532\"* a|strong=\"G2532\"* large|strong=\"G3173\"* forest|strong=\"G5208\"*!" + }, + { + "verseNum": 6, + "text": "And|strong=\"G2532\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"* is|strong=\"G3588\"* a|strong=\"G2532\"* fire|strong=\"G4442\"*. The|strong=\"G1722\"* world|strong=\"G2889\"* of|strong=\"G5259\"* iniquity among|strong=\"G1722\"* our|strong=\"G2532\"* members|strong=\"G3196\"* is|strong=\"G3588\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"*, which|strong=\"G3588\"* defiles|strong=\"G4695\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* body|strong=\"G4983\"*, and|strong=\"G2532\"* sets|strong=\"G5394\"* on|strong=\"G1722\"* fire|strong=\"G4442\"* the|strong=\"G1722\"* course|strong=\"G5164\"* of|strong=\"G5259\"* nature|strong=\"G1078\"*, and|strong=\"G2532\"* is|strong=\"G3588\"* set|strong=\"G2525\"* on|strong=\"G1722\"* fire|strong=\"G4442\"* by|strong=\"G1722\"* Gehenna.+ 3:6 or, Hell*" + }, + { + "verseNum": 7, + "text": "For|strong=\"G1063\"* every|strong=\"G3956\"* kind|strong=\"G3956\"* of|strong=\"G2532\"* animal, bird|strong=\"G4071\"*, creeping|strong=\"G2532\"* thing|strong=\"G3956\"*, and|strong=\"G2532\"* sea|strong=\"G1724\"* creature|strong=\"G2342\"* is|strong=\"G3588\"* tamed|strong=\"G1150\"*, and|strong=\"G2532\"* has|strong=\"G2532\"* been|strong=\"G2532\"* tamed|strong=\"G1150\"* by|strong=\"G2532\"* mankind;" + }, + { + "verseNum": 8, + "text": "but|strong=\"G1161\"* nobody|strong=\"G3762\"* can|strong=\"G1410\"* tame|strong=\"G1150\"* the|strong=\"G1161\"* tongue|strong=\"G1100\"*. It|strong=\"G1161\"* is|strong=\"G3588\"* a|strong=\"G1161\"* restless evil|strong=\"G2556\"*, full|strong=\"G3324\"* of|strong=\"G3324\"* deadly|strong=\"G2287\"* poison|strong=\"G2447\"*." + }, + { + "verseNum": 9, + "text": "With|strong=\"G1722\"* it|strong=\"G2532\"* we|strong=\"G2532\"* bless|strong=\"G2127\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* it|strong=\"G2532\"* we|strong=\"G2532\"* curse|strong=\"G2672\"* men|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* made|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* image|strong=\"G3669\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "Out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* same|strong=\"G3778\"* mouth|strong=\"G4750\"* comes|strong=\"G1096\"* blessing|strong=\"G2129\"* and|strong=\"G2532\"* cursing|strong=\"G2671\"*. My|strong=\"G1473\"* brothers, these|strong=\"G3778\"* things|strong=\"G3778\"* ought|strong=\"G5534\"* not|strong=\"G3756\"* to|strong=\"G2532\"* be|strong=\"G1096\"* so|strong=\"G3779\"*." + }, + { + "verseNum": 11, + "text": "Does|strong=\"G1032\"* a|strong=\"G2532\"* spring|strong=\"G4077\"* send|strong=\"G1032\"* out|strong=\"G1537\"* from|strong=\"G1537\"* the|strong=\"G2532\"* same|strong=\"G2532\"* opening|strong=\"G3692\"* fresh|strong=\"G1099\"* and|strong=\"G2532\"* bitter|strong=\"G4089\"* water?" + }, + { + "verseNum": 12, + "text": "Can|strong=\"G1410\"* a|strong=\"G4160\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"*, my|strong=\"G1473\"* brothers, yield|strong=\"G4160\"* olives|strong=\"G1636\"*, or|strong=\"G2228\"* a|strong=\"G4160\"* vine figs|strong=\"G4810\"*? Thus no|strong=\"G3361\"* spring yields both salt water|strong=\"G5204\"* and|strong=\"G4160\"* fresh|strong=\"G1099\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 13, + "text": "Who|strong=\"G5101\"* is|strong=\"G3588\"* wise|strong=\"G4680\"* and|strong=\"G2532\"* understanding|strong=\"G1990\"* among|strong=\"G1722\"* you|strong=\"G5210\"*? Let|strong=\"G2532\"* him|strong=\"G3588\"* show|strong=\"G1166\"* by|strong=\"G1722\"* his|strong=\"G1722\"* good|strong=\"G2570\"* conduct|strong=\"G2041\"* that|strong=\"G3588\"* his|strong=\"G1722\"* deeds|strong=\"G2041\"* are|strong=\"G3588\"* done|strong=\"G2041\"* in|strong=\"G1722\"* gentleness|strong=\"G4240\"* of|strong=\"G1537\"* wisdom|strong=\"G4678\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G5210\"* have|strong=\"G2192\"* bitter|strong=\"G4089\"* jealousy|strong=\"G2205\"* and|strong=\"G2532\"* selfish|strong=\"G2052\"* ambition|strong=\"G2052\"* in|strong=\"G1722\"* your|strong=\"G2192\"* heart|strong=\"G2588\"*, don’t|strong=\"G3588\"* boast|strong=\"G2620\"* and|strong=\"G2532\"* don’t|strong=\"G3588\"* lie|strong=\"G5574\"* against|strong=\"G2596\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 15, + "text": "This|strong=\"G3778\"* wisdom|strong=\"G4678\"* is|strong=\"G1510\"* not|strong=\"G3756\"* that|strong=\"G3588\"* which|strong=\"G3588\"* comes|strong=\"G1510\"* down|strong=\"G2718\"* from|strong=\"G3756\"* above, but|strong=\"G3588\"* is|strong=\"G1510\"* earthly|strong=\"G1919\"*, sensual|strong=\"G5591\"*, and|strong=\"G4678\"* demonic|strong=\"G1141\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* where|strong=\"G3699\"* jealousy|strong=\"G2205\"* and|strong=\"G2532\"* selfish|strong=\"G2052\"* ambition|strong=\"G2052\"* are|strong=\"G3956\"*, there|strong=\"G1563\"* is|strong=\"G3956\"* confusion and|strong=\"G2532\"* every|strong=\"G3956\"* evil|strong=\"G5337\"* deed|strong=\"G4229\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* that|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G2532\"* above|strong=\"G4412\"* is|strong=\"G1510\"* first|strong=\"G4413\"* pure, then|strong=\"G2532\"* peaceful|strong=\"G1516\"*, gentle|strong=\"G1933\"*, reasonable|strong=\"G2138\"*, full|strong=\"G3324\"* of|strong=\"G2532\"* mercy|strong=\"G1656\"* and|strong=\"G2532\"* good|strong=\"G3588\"* fruits|strong=\"G2590\"*, without|strong=\"G2532\"* partiality, and|strong=\"G2532\"* without|strong=\"G2532\"* hypocrisy." + }, + { + "verseNum": 18, + "text": "Now|strong=\"G1161\"* the|strong=\"G1722\"* fruit|strong=\"G2590\"* of|strong=\"G1722\"* righteousness|strong=\"G1343\"* is|strong=\"G3588\"* sown|strong=\"G4687\"* in|strong=\"G1722\"* peace|strong=\"G1515\"* by|strong=\"G1722\"* those|strong=\"G3588\"* who|strong=\"G3588\"* make|strong=\"G4160\"* peace|strong=\"G1515\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Where|strong=\"G4159\"* do|strong=\"G2532\"* wars|strong=\"G4171\"* and|strong=\"G2532\"* fightings|strong=\"G3163\"* among|strong=\"G1722\"* you|strong=\"G5210\"* come|strong=\"G2532\"* from|strong=\"G1537\"*? Don’t|strong=\"G3588\"* they|strong=\"G2532\"* come|strong=\"G2532\"* from|strong=\"G1537\"* your|strong=\"G2532\"* pleasures|strong=\"G2237\"* that|strong=\"G3588\"* war|strong=\"G4171\"* in|strong=\"G1722\"* your|strong=\"G2532\"* members|strong=\"G3196\"*?" + }, + { + "verseNum": 2, + "text": "You|strong=\"G5210\"* lust|strong=\"G1937\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*. You|strong=\"G5210\"* murder|strong=\"G5407\"* and|strong=\"G2532\"* covet|strong=\"G1937\"*, and|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* obtain|strong=\"G2013\"*. You|strong=\"G5210\"* fight|strong=\"G3164\"* and|strong=\"G2532\"* make|strong=\"G2532\"* war|strong=\"G4170\"*. You|strong=\"G5210\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"*, because|strong=\"G1223\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* ask." + }, + { + "verseNum": 3, + "text": "You|strong=\"G5210\"* ask, and|strong=\"G2532\"* don’t|strong=\"G3588\"* receive|strong=\"G2983\"*, because|strong=\"G1360\"* you|strong=\"G5210\"* ask with|strong=\"G1722\"* wrong|strong=\"G2560\"* motives|strong=\"G2560\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* spend|strong=\"G1159\"* it|strong=\"G2532\"* on|strong=\"G1722\"* your|strong=\"G2532\"* pleasures|strong=\"G2237\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G3739\"* adulterers|strong=\"G3428\"* and|strong=\"G2316\"* adulteresses|strong=\"G3428\"*, don’t|strong=\"G3588\"* you|strong=\"G3739\"* know|strong=\"G1492\"* that|strong=\"G3754\"* friendship|strong=\"G5373\"* with|strong=\"G2316\"* the|strong=\"G3588\"* world|strong=\"G2889\"* is|strong=\"G1510\"* hostility|strong=\"G2189\"* toward|strong=\"G2189\"* God|strong=\"G2316\"*? Whoever|strong=\"G3739\"* therefore|strong=\"G3767\"* wants to|strong=\"G1014\"* be|strong=\"G1510\"* a|strong=\"G1510\"* friend|strong=\"G5384\"* of|strong=\"G2316\"* the|strong=\"G3588\"* world|strong=\"G2889\"* makes|strong=\"G2525\"* himself an|strong=\"G1510\"* enemy|strong=\"G2190\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 5, + "text": "Or|strong=\"G2228\"* do|strong=\"G1380\"* you|strong=\"G3739\"* think|strong=\"G1380\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Scripture|strong=\"G1124\"* says|strong=\"G3004\"* in|strong=\"G1722\"* vain|strong=\"G2761\"*, “The|strong=\"G1722\"* Spirit|strong=\"G4151\"* who|strong=\"G3739\"* lives|strong=\"G2730\"* in|strong=\"G1722\"* us|strong=\"G3004\"* yearns jealously|strong=\"G5355\"*”?" + }, + { + "verseNum": 6, + "text": "But|strong=\"G1161\"* he|strong=\"G1161\"* gives|strong=\"G1325\"* more|strong=\"G3173\"* grace|strong=\"G5485\"*. Therefore|strong=\"G1352\"* it|strong=\"G1161\"* says|strong=\"G3004\"*, “God|strong=\"G2316\"* resists the|strong=\"G1161\"* proud|strong=\"G5244\"*, but|strong=\"G1161\"* gives|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G3004\"* the|strong=\"G1161\"* humble|strong=\"G5011\"*.”+ 4:6 Proverbs 3:34*" + }, + { + "verseNum": 7, + "text": "Be|strong=\"G2532\"* subject|strong=\"G5293\"* therefore|strong=\"G3767\"* to|strong=\"G2532\"* God|strong=\"G2316\"*. Resist the|strong=\"G2532\"* devil|strong=\"G1228\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* flee|strong=\"G5343\"* from|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 8, + "text": "Draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G2532\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* draw|strong=\"G1448\"* near|strong=\"G1448\"* to|strong=\"G2532\"* you|strong=\"G5210\"*. Cleanse|strong=\"G2511\"* your|strong=\"G2532\"* hands|strong=\"G5495\"*, you|strong=\"G5210\"* sinners. Purify|strong=\"G2511\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"*, you|strong=\"G5210\"* double-minded|strong=\"G1374\"*." + }, + { + "verseNum": 9, + "text": "Lament, mourn|strong=\"G3996\"*, and|strong=\"G2532\"* weep|strong=\"G2799\"*. Let|strong=\"G2532\"* your|strong=\"G2532\"* laughter|strong=\"G1071\"* be|strong=\"G2532\"* turned|strong=\"G3344\"* to|strong=\"G1519\"* mourning|strong=\"G3997\"* and|strong=\"G2532\"* your|strong=\"G2532\"* joy|strong=\"G5479\"* to|strong=\"G1519\"* gloom|strong=\"G2726\"*." + }, + { + "verseNum": 10, + "text": "Humble|strong=\"G5013\"* yourselves|strong=\"G4771\"* in|strong=\"G2532\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* exalt|strong=\"G5312\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "Don’t|strong=\"G3588\"* speak|strong=\"G2635\"* against|strong=\"G2635\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, brothers. He|strong=\"G2532\"* who|strong=\"G3588\"* speaks|strong=\"G2635\"* against|strong=\"G2635\"* a|strong=\"G2532\"* brother and|strong=\"G2532\"* judges|strong=\"G2919\"* his|strong=\"G2532\"* brother, speaks|strong=\"G2635\"* against|strong=\"G2635\"* the|strong=\"G2532\"* law|strong=\"G3551\"* and|strong=\"G2532\"* judges|strong=\"G2919\"* the|strong=\"G2532\"* law|strong=\"G3551\"*. But|strong=\"G1161\"* if|strong=\"G1487\"* you|strong=\"G1487\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* law|strong=\"G3551\"*, you|strong=\"G1487\"* are|strong=\"G1510\"* not|strong=\"G3756\"* a|strong=\"G2532\"* doer|strong=\"G4163\"* of|strong=\"G2532\"* the|strong=\"G2532\"* law|strong=\"G3551\"* but|strong=\"G1161\"* a|strong=\"G2532\"* judge|strong=\"G2919\"*." + }, + { + "verseNum": 12, + "text": "Only|strong=\"G2532\"* one|strong=\"G1520\"* is|strong=\"G1510\"* the|strong=\"G2532\"* lawgiver|strong=\"G3550\"*, who|strong=\"G5101\"* is|strong=\"G1510\"* able|strong=\"G1410\"* to|strong=\"G2532\"* save|strong=\"G4982\"* and|strong=\"G2532\"* to|strong=\"G2532\"* destroy. But|strong=\"G1161\"* who|strong=\"G5101\"* are|strong=\"G1510\"* you|strong=\"G4771\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* another|strong=\"G1520\"*?" + }, + { + "verseNum": 13, + "text": "Come|strong=\"G2532\"* now|strong=\"G3568\"*, you|strong=\"G3004\"* who|strong=\"G3588\"* say|strong=\"G3004\"*, “Today|strong=\"G4594\"* or|strong=\"G2228\"* tomorrow let|strong=\"G2532\"*’s go|strong=\"G4198\"* into|strong=\"G1519\"* this|strong=\"G3588\"* city|strong=\"G4172\"* and|strong=\"G2532\"* spend|strong=\"G4160\"* a|strong=\"G2532\"* year|strong=\"G1763\"* there|strong=\"G1563\"*, trade, and|strong=\"G2532\"* make|strong=\"G4160\"* a|strong=\"G2532\"* profit|strong=\"G2770\"*.”" + }, + { + "verseNum": 14, + "text": "Yet|strong=\"G2532\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1987\"* what|strong=\"G4169\"* your|strong=\"G2532\"* life|strong=\"G2222\"* will|strong=\"G1510\"* be|strong=\"G1510\"* like|strong=\"G4314\"* tomorrow. For|strong=\"G1063\"* what|strong=\"G4169\"* is|strong=\"G1510\"* your|strong=\"G2532\"* life|strong=\"G2222\"*? For|strong=\"G1063\"* you|strong=\"G5210\"* are|strong=\"G1510\"* a|strong=\"G2532\"* vapor that|strong=\"G3588\"* appears|strong=\"G5316\"* for|strong=\"G1063\"* a|strong=\"G2532\"* little|strong=\"G3641\"* time|strong=\"G3641\"* and|strong=\"G2532\"* then|strong=\"G2532\"* vanishes away." + }, + { + "verseNum": 15, + "text": "For|strong=\"G2532\"* you|strong=\"G5210\"* ought to|strong=\"G2532\"* say|strong=\"G3004\"*, “If|strong=\"G1437\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* wills|strong=\"G2309\"*, we|strong=\"G1437\"* will|strong=\"G2309\"* both|strong=\"G2532\"* live|strong=\"G2198\"*, and|strong=\"G2532\"* do|strong=\"G4160\"* this|strong=\"G3778\"* or|strong=\"G2228\"* that|strong=\"G3588\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* now|strong=\"G1161\"* you|strong=\"G5210\"* glory|strong=\"G2744\"* in|strong=\"G1722\"* your|strong=\"G3956\"* boasting|strong=\"G2746\"*. All|strong=\"G3956\"* such|strong=\"G5108\"* boasting|strong=\"G2746\"* is|strong=\"G1510\"* evil|strong=\"G4190\"*." + }, + { + "verseNum": 17, + "text": "To|strong=\"G2532\"* him|strong=\"G4160\"* therefore|strong=\"G3767\"* who|strong=\"G2532\"* knows|strong=\"G1492\"* to|strong=\"G2532\"* do|strong=\"G4160\"* good|strong=\"G2570\"* and|strong=\"G2532\"* doesn’t do|strong=\"G4160\"* it|strong=\"G2532\"*, to|strong=\"G2532\"* him|strong=\"G4160\"* it|strong=\"G2532\"* is|strong=\"G1510\"* sin." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Come|strong=\"G1904\"* now|strong=\"G3568\"*, you|strong=\"G5210\"* rich|strong=\"G4145\"*, weep|strong=\"G2799\"* and|strong=\"G2799\"* howl|strong=\"G3649\"* for|strong=\"G1909\"* your|strong=\"G1909\"* miseries|strong=\"G5004\"* that|strong=\"G3588\"* are|strong=\"G3588\"* coming|strong=\"G1904\"* on|strong=\"G1909\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 2, + "text": "Your|strong=\"G2532\"* riches|strong=\"G4149\"* are|strong=\"G3588\"* corrupted|strong=\"G4595\"* and|strong=\"G2532\"* your|strong=\"G2532\"* garments|strong=\"G2440\"* are|strong=\"G3588\"* moth-eaten|strong=\"G4598\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"G2532\"* gold|strong=\"G5557\"* and|strong=\"G2532\"* your|strong=\"G2532\"* silver are|strong=\"G1510\"* corroded, and|strong=\"G2532\"* their|strong=\"G2532\"* corrosion will|strong=\"G1510\"* be|strong=\"G1510\"* for|strong=\"G1519\"* a|strong=\"G5613\"* testimony|strong=\"G3142\"* against|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* will|strong=\"G1510\"* eat|strong=\"G2068\"* your|strong=\"G2532\"* flesh|strong=\"G4561\"* like|strong=\"G5613\"* fire|strong=\"G4442\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* laid|strong=\"G2532\"* up|strong=\"G2343\"* your|strong=\"G2532\"* treasure|strong=\"G2343\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"G2400\"*, the|strong=\"G2532\"* wages|strong=\"G3408\"* of|strong=\"G2532\"* the|strong=\"G2532\"* laborers|strong=\"G2040\"* who|strong=\"G3588\"* mowed your|strong=\"G2962\"* fields|strong=\"G5561\"*, which|strong=\"G3588\"* you|strong=\"G5210\"* have|strong=\"G2532\"* kept|strong=\"G2532\"* back|strong=\"G1519\"* by|strong=\"G2532\"* fraud, cry|strong=\"G2896\"* out|strong=\"G2896\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* cries|strong=\"G2896\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* reaped|strong=\"G2325\"* have|strong=\"G2532\"* entered|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* ears|strong=\"G3775\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* Armies.+ 5:4 Greek: Sabaoth (or Hebrew: Tze’va’ot)*" + }, + { + "verseNum": 5, + "text": "You|strong=\"G5210\"* have|strong=\"G2532\"* lived|strong=\"G2532\"* in|strong=\"G1722\"* luxury on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* taken your|strong=\"G2532\"* pleasure|strong=\"G4684\"*. You|strong=\"G5210\"* have|strong=\"G2532\"* nourished|strong=\"G5142\"* your|strong=\"G2532\"* hearts|strong=\"G2588\"* as|strong=\"G1722\"* in|strong=\"G1722\"* a|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* slaughter|strong=\"G4967\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"G5210\"* have|strong=\"G5210\"* condemned|strong=\"G2613\"* and|strong=\"G1342\"* you|strong=\"G5210\"* have|strong=\"G5210\"* murdered|strong=\"G5407\"* the|strong=\"G3588\"* righteous|strong=\"G1342\"* one|strong=\"G3588\"*. He|strong=\"G3588\"* doesn’t|strong=\"G3588\"* resist you|strong=\"G5210\"*." + }, + { + "verseNum": 7, + "text": "Be|strong=\"G2532\"* patient|strong=\"G3114\"* therefore|strong=\"G3767\"*, brothers, until|strong=\"G2193\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*. Behold|strong=\"G2400\"*, the|strong=\"G2532\"* farmer|strong=\"G1092\"* waits|strong=\"G1551\"* for|strong=\"G1909\"* the|strong=\"G2532\"* precious|strong=\"G5093\"* fruit|strong=\"G2590\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, being|strong=\"G2532\"* patient|strong=\"G3114\"* over|strong=\"G1909\"* it|strong=\"G2532\"*, until|strong=\"G2193\"* it|strong=\"G2532\"* receives|strong=\"G2983\"* the|strong=\"G2532\"* early|strong=\"G4406\"* and|strong=\"G2532\"* late|strong=\"G3797\"* rain." + }, + { + "verseNum": 8, + "text": "You|strong=\"G5210\"* also|strong=\"G2532\"* be|strong=\"G2532\"* patient|strong=\"G3114\"*. Establish|strong=\"G4741\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* at|strong=\"G3588\"* hand|strong=\"G1448\"*." + }, + { + "verseNum": 9, + "text": "Don’t|strong=\"G3588\"* grumble|strong=\"G4727\"*, brothers, against|strong=\"G2596\"* one|strong=\"G3588\"* another|strong=\"G2596\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G3708\"* won’t|strong=\"G3588\"* be|strong=\"G3361\"* judged|strong=\"G2919\"*. Behold|strong=\"G2400\"*, the|strong=\"G2596\"* judge|strong=\"G2919\"* stands|strong=\"G2476\"* at|strong=\"G2596\"* the|strong=\"G2596\"* door|strong=\"G2374\"*." + }, + { + "verseNum": 10, + "text": "Take|strong=\"G2983\"*, brothers, for|strong=\"G1722\"* an|strong=\"G2532\"* example|strong=\"G5262\"* of|strong=\"G2532\"* suffering|strong=\"G1722\"* and|strong=\"G2532\"* of|strong=\"G2532\"* perseverance|strong=\"G3115\"*, the|strong=\"G1722\"* prophets|strong=\"G4396\"* who|strong=\"G3739\"* spoke|strong=\"G2980\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"G2400\"*, we|strong=\"G3754\"* call|strong=\"G2532\"* them|strong=\"G3588\"* blessed|strong=\"G3106\"* who|strong=\"G3588\"* endured|strong=\"G5278\"*. You|strong=\"G3754\"* have|strong=\"G2532\"* heard of|strong=\"G2532\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2532\"* Job|strong=\"G2492\"* and|strong=\"G2532\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* in|strong=\"G2532\"* the|strong=\"G2532\"* outcome|strong=\"G5056\"*, and|strong=\"G2532\"* how|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* is|strong=\"G1510\"* full|strong=\"G4184\"* of|strong=\"G2532\"* compassion|strong=\"G4184\"* and|strong=\"G2532\"* mercy|strong=\"G3629\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* above|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, my|strong=\"G3956\"* brothers, don’t|strong=\"G3588\"* swear|strong=\"G3660\"*—not|strong=\"G3756\"* by|strong=\"G5259\"* heaven|strong=\"G3772\"*, or|strong=\"G2532\"* by|strong=\"G5259\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* by|strong=\"G5259\"* any|strong=\"G5100\"* other|strong=\"G1161\"* oath|strong=\"G3727\"*; but|strong=\"G1161\"* let|strong=\"G1161\"* your|strong=\"G2532\"* “yes|strong=\"G3483\"*” be|strong=\"G1510\"* “yes|strong=\"G3483\"*”, and|strong=\"G2532\"* your|strong=\"G2532\"* “no|strong=\"G3756\"*”, “no|strong=\"G3756\"*”, so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* fall|strong=\"G4098\"* into|strong=\"G5259\"* hypocrisy.+ 5:12 TR reads “under judgment” instead of “into hypocrisy”*" + }, + { + "verseNum": 13, + "text": "Is|strong=\"G5100\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* suffering|strong=\"G2553\"*? Let him|strong=\"G1722\"* pray|strong=\"G4336\"*. Is|strong=\"G5100\"* any|strong=\"G5100\"* cheerful|strong=\"G2114\"*? Let him|strong=\"G1722\"* sing|strong=\"G5567\"* praises|strong=\"G5567\"*." + }, + { + "verseNum": 14, + "text": "Is|strong=\"G3588\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* sick? Let|strong=\"G2532\"* him|strong=\"G3588\"* call|strong=\"G4341\"* for|strong=\"G1909\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* of|strong=\"G2532\"* the|strong=\"G1722\"* assembly|strong=\"G1577\"*, and|strong=\"G2532\"* let|strong=\"G2532\"* them|strong=\"G3588\"* pray|strong=\"G4336\"* over|strong=\"G1909\"* him|strong=\"G3588\"*, anointing him|strong=\"G3588\"* with|strong=\"G1722\"* oil|strong=\"G1637\"* in|strong=\"G1722\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"G2532\"* the|strong=\"G2532\"* prayer|strong=\"G2171\"* of|strong=\"G2532\"* faith|strong=\"G4102\"* will|strong=\"G1510\"* heal him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* sick|strong=\"G2577\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* will|strong=\"G1510\"* raise|strong=\"G1453\"* him|strong=\"G3588\"* up|strong=\"G1453\"*. If|strong=\"G2579\"* he|strong=\"G2532\"* has|strong=\"G2962\"* committed|strong=\"G4160\"* sins, he|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* forgiven." + }, + { + "verseNum": 16, + "text": "Confess|strong=\"G1843\"* your|strong=\"G2532\"* sins to|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"* and|strong=\"G2532\"* pray|strong=\"G2172\"* for|strong=\"G5228\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, that|strong=\"G3588\"* you|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* healed|strong=\"G2390\"*. The|strong=\"G2532\"* insistent prayer|strong=\"G1162\"* of|strong=\"G2532\"* a|strong=\"G2532\"* righteous|strong=\"G1342\"* person|strong=\"G1342\"* is|strong=\"G3588\"* powerfully effective|strong=\"G1754\"*." + }, + { + "verseNum": 17, + "text": "Elijah|strong=\"G2243\"* was|strong=\"G1510\"* a|strong=\"G2532\"* man|strong=\"G3361\"* with|strong=\"G2532\"* a|strong=\"G2532\"* nature|strong=\"G3663\"* like|strong=\"G3663\"* ours|strong=\"G1473\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* prayed|strong=\"G4336\"* earnestly|strong=\"G4335\"* that|strong=\"G3588\"* it|strong=\"G2532\"* might|strong=\"G2532\"* not|strong=\"G3756\"* rain|strong=\"G1026\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* didn’t|strong=\"G3588\"* rain|strong=\"G1026\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* for|strong=\"G1909\"* three|strong=\"G5140\"* years|strong=\"G1763\"* and|strong=\"G2532\"* six|strong=\"G1803\"* months|strong=\"G3376\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"G2532\"* prayed|strong=\"G4336\"* again|strong=\"G3825\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* gave|strong=\"G1325\"* rain|strong=\"G5205\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* produced|strong=\"G1325\"* its|strong=\"G1325\"* fruit|strong=\"G2590\"*." + }, + { + "verseNum": 19, + "text": "Brothers, if|strong=\"G1437\"* any|strong=\"G5100\"* among|strong=\"G1722\"* you|strong=\"G5210\"* wanders|strong=\"G4105\"* from|strong=\"G2532\"* the|strong=\"G1722\"* truth and|strong=\"G2532\"* someone|strong=\"G5100\"* turns|strong=\"G1994\"* him|strong=\"G3588\"* back|strong=\"G1994\"*," + }, + { + "verseNum": 20, + "text": "let|strong=\"G1097\"* him|strong=\"G3588\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* turns|strong=\"G1994\"* a|strong=\"G2532\"* sinner from|strong=\"G1537\"* the|strong=\"G2532\"* error|strong=\"G4106\"* of|strong=\"G1537\"* his|strong=\"G2532\"* way|strong=\"G3598\"* will|strong=\"G2532\"* save|strong=\"G4982\"* a|strong=\"G2532\"* soul|strong=\"G5590\"* from|strong=\"G1537\"* death|strong=\"G2288\"* and|strong=\"G2532\"* will|strong=\"G2532\"* cover|strong=\"G2572\"* a|strong=\"G2532\"* multitude|strong=\"G4128\"* of|strong=\"G1537\"* sins." + } + ] + } + ] + }, + { + "name": "1 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Peter|strong=\"G4074\"*, an|strong=\"G2532\"* apostle of|strong=\"G2532\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* the|strong=\"G2532\"* chosen|strong=\"G1588\"* ones who|strong=\"G2532\"* are|strong=\"G2532\"* living as|strong=\"G2532\"* foreigners|strong=\"G3927\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Dispersion|strong=\"G1290\"* in|strong=\"G2532\"* Pontus|strong=\"G4195\"*, Galatia|strong=\"G1053\"*, Cappadocia|strong=\"G2587\"*, Asia, and|strong=\"G2532\"* Bithynia," + }, + { + "verseNum": 2, + "text": "according|strong=\"G2596\"* to|strong=\"G1519\"* the|strong=\"G1722\"* foreknowledge|strong=\"G4268\"* of|strong=\"G4151\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, in|strong=\"G1722\"* sanctification of|strong=\"G4151\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*, that|strong=\"G2532\"* you|strong=\"G5210\"* may|strong=\"G2532\"* obey|strong=\"G5218\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* be|strong=\"G2532\"* sprinkled|strong=\"G4473\"* with|strong=\"G1722\"* his|strong=\"G1519\"* blood: Grace|strong=\"G5485\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* be|strong=\"G2532\"* multiplied|strong=\"G4129\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G2128\"* be|strong=\"G2532\"* the|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"* of|strong=\"G1537\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, who|strong=\"G3588\"* according|strong=\"G2596\"* to|strong=\"G1519\"* his|strong=\"G1223\"* great|strong=\"G4183\"* mercy|strong=\"G1656\"* caused us|strong=\"G1519\"* to|strong=\"G1519\"* be|strong=\"G2532\"* born again|strong=\"G1519\"* to|strong=\"G1519\"* a|strong=\"G2532\"* living|strong=\"G2198\"* hope|strong=\"G1680\"* through|strong=\"G1223\"* the|strong=\"G2532\"* resurrection of|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"G1519\"* an|strong=\"G2532\"* incorruptible and|strong=\"G2532\"* undefiled inheritance|strong=\"G2817\"* that|strong=\"G2532\"* doesn’t fade away, reserved|strong=\"G5083\"* in|strong=\"G1722\"* Heaven|strong=\"G3772\"* for|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"G3588\"* by|strong=\"G1223\"* the|strong=\"G1722\"* power|strong=\"G1411\"* of|strong=\"G1223\"* God|strong=\"G2316\"* are|strong=\"G3588\"* guarded through|strong=\"G1223\"* faith|strong=\"G4102\"* for|strong=\"G1519\"* a|strong=\"G1519\"* salvation|strong=\"G4991\"* ready|strong=\"G2092\"* to|strong=\"G1519\"* be|strong=\"G1519\"* revealed in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* time|strong=\"G2540\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* this|strong=\"G3739\"* you|strong=\"G3739\"* greatly rejoice, though|strong=\"G1487\"* now|strong=\"G1722\"* for|strong=\"G1722\"* a|strong=\"G1722\"* little|strong=\"G3641\"* while|strong=\"G1722\"*, if|strong=\"G1487\"* need|strong=\"G1487\"* be|strong=\"G1163\"*, you|strong=\"G3739\"* have|strong=\"G1163\"* been|strong=\"G1210\"* grieved|strong=\"G3076\"* in|strong=\"G1722\"* various|strong=\"G4164\"* trials|strong=\"G3986\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"G2443\"* the|strong=\"G1722\"* proof|strong=\"G4102\"* of|strong=\"G1223\"* your|strong=\"G1223\"* faith|strong=\"G4102\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* more|strong=\"G2532\"* precious|strong=\"G5092\"* than|strong=\"G2532\"* gold|strong=\"G5553\"* that|strong=\"G2443\"* perishes, even|strong=\"G2532\"* though|strong=\"G2532\"* it|strong=\"G2532\"* is|strong=\"G3588\"* tested|strong=\"G1381\"* by|strong=\"G1223\"* fire|strong=\"G4442\"*, may|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* to|strong=\"G1519\"* result|strong=\"G1519\"* in|strong=\"G1722\"* praise|strong=\"G1868\"*, glory|strong=\"G1391\"*, and|strong=\"G2532\"* honor|strong=\"G5092\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—" + }, + { + "verseNum": 8, + "text": "whom|strong=\"G3739\"*, not|strong=\"G3756\"* having|strong=\"G2532\"* known, you|strong=\"G3739\"* love. In|strong=\"G1519\"* him|strong=\"G3739\"*, though|strong=\"G2532\"* now|strong=\"G1161\"* you|strong=\"G3739\"* don’t see|strong=\"G3708\"* him|strong=\"G3739\"*, yet|strong=\"G2532\"* believing|strong=\"G4100\"*, you|strong=\"G3739\"* rejoice|strong=\"G2532\"* greatly|strong=\"G5479\"* with|strong=\"G2532\"* joy|strong=\"G5479\"* that|strong=\"G3739\"* is|strong=\"G3739\"* unspeakable and|strong=\"G2532\"* full|strong=\"G1392\"* of|strong=\"G2532\"* glory|strong=\"G1392\"*," + }, + { + "verseNum": 9, + "text": "receiving|strong=\"G2865\"* the|strong=\"G3588\"* result of|strong=\"G4102\"* your|strong=\"G3588\"* faith|strong=\"G4102\"*, the|strong=\"G3588\"* salvation|strong=\"G4991\"* of|strong=\"G4102\"* your|strong=\"G3588\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 10, + "text": "Concerning|strong=\"G4012\"* this|strong=\"G3588\"* salvation|strong=\"G4991\"*, the|strong=\"G2532\"* prophets|strong=\"G4396\"* sought|strong=\"G1567\"* and|strong=\"G2532\"* searched|strong=\"G1567\"* diligently|strong=\"G1830\"*. They|strong=\"G2532\"* prophesied|strong=\"G4395\"* of|strong=\"G4012\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* that|strong=\"G3739\"* would|strong=\"G2532\"* come|strong=\"G2532\"* to|strong=\"G1519\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 11, + "text": "searching|strong=\"G2045\"* for|strong=\"G1519\"* who|strong=\"G5101\"* or|strong=\"G2228\"* what|strong=\"G5101\"* kind|strong=\"G4169\"* of|strong=\"G4151\"* time|strong=\"G2540\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* which|strong=\"G3588\"* was|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"* pointed to|strong=\"G1519\"* when|strong=\"G2532\"* he|strong=\"G2532\"* predicted|strong=\"G4303\"* the|strong=\"G1722\"* sufferings|strong=\"G3804\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"* and|strong=\"G2532\"* the|strong=\"G1722\"* glories|strong=\"G1391\"* that|strong=\"G3588\"* would|strong=\"G2532\"* follow|strong=\"G3326\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "To|strong=\"G1519\"* them|strong=\"G3588\"* it|strong=\"G3754\"* was|strong=\"G3588\"* revealed that|strong=\"G3754\"* they|strong=\"G1161\"* served|strong=\"G1247\"* not|strong=\"G3756\"* themselves|strong=\"G1438\"*, but|strong=\"G1161\"* you|strong=\"G5210\"*, in|strong=\"G1722\"* these|strong=\"G3739\"* things|strong=\"G3588\"*, which|strong=\"G3739\"* now|strong=\"G1161\"* have|strong=\"G3748\"* been|strong=\"G3568\"* announced to|strong=\"G1519\"* you|strong=\"G5210\"* through|strong=\"G1223\"* those|strong=\"G3588\"* who|strong=\"G3739\"* preached|strong=\"G2097\"* the|strong=\"G1722\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G1519\"* you|strong=\"G5210\"* by|strong=\"G1223\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"* sent|strong=\"G4151\"* out|strong=\"G1438\"* from|strong=\"G3756\"* heaven|strong=\"G3772\"*; which|strong=\"G3739\"* things|strong=\"G3588\"* angels desire|strong=\"G1937\"* to|strong=\"G1519\"* look|strong=\"G3879\"* into|strong=\"G1519\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1352\"* prepare your|strong=\"G1909\"* minds|strong=\"G1271\"* for|strong=\"G1909\"* action.+ 1:13 literally, “gird up the waist of your mind” or “put on the belt of the waist of your mind”* Be|strong=\"G3588\"* sober|strong=\"G3525\"*, and|strong=\"G2424\"* set|strong=\"G1679\"* your|strong=\"G1909\"* hope|strong=\"G1679\"* fully on|strong=\"G1909\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* that|strong=\"G3588\"* will|strong=\"G5547\"* be|strong=\"G3588\"* brought|strong=\"G5342\"* to|strong=\"G1909\"* you|strong=\"G5210\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G5485\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*—" + }, + { + "verseNum": 14, + "text": "as|strong=\"G5613\"* children|strong=\"G5043\"* of|strong=\"G1722\"* obedience|strong=\"G5218\"*, not|strong=\"G3361\"* conforming yourselves|strong=\"G4771\"* according|strong=\"G5613\"* to|strong=\"G1722\"* your|strong=\"G1722\"* former|strong=\"G4387\"* lusts|strong=\"G1939\"* as|strong=\"G5613\"* in|strong=\"G1722\"* your|strong=\"G1722\"* ignorance," + }, + { + "verseNum": 15, + "text": "but|strong=\"G2532\"* just|strong=\"G2532\"* as|strong=\"G1722\"* he|strong=\"G2532\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* is|strong=\"G3588\"* holy, you|strong=\"G5210\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* be|strong=\"G1096\"* holy in|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G2532\"* your|strong=\"G2532\"* behavior," + }, + { + "verseNum": 16, + "text": "because|strong=\"G1360\"* it|strong=\"G1510\"* is|strong=\"G1510\"* written|strong=\"G1125\"*, “You|strong=\"G1510\"* shall|strong=\"G3748\"* be|strong=\"G1510\"* holy, for|strong=\"G1360\"* I|strong=\"G1473\"* am|strong=\"G1510\"* holy.”+ 1:16 Leviticus 11:44-45*" + }, + { + "verseNum": 17, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* call|strong=\"G1941\"* on|strong=\"G1722\"* him|strong=\"G3588\"* as|strong=\"G1722\"* Father|strong=\"G3962\"*, who|strong=\"G3588\"* without|strong=\"G2532\"* respect|strong=\"G5401\"* of|strong=\"G2532\"* persons judges|strong=\"G2919\"* according|strong=\"G2596\"* to|strong=\"G2532\"* each|strong=\"G1538\"* man|strong=\"G1538\"*’s work|strong=\"G2041\"*, pass|strong=\"G2919\"* the|strong=\"G1722\"* time|strong=\"G5550\"* of|strong=\"G2532\"* your|strong=\"G2532\"* living as|strong=\"G1722\"* foreigners here|strong=\"G1722\"* in|strong=\"G1722\"* reverent fear|strong=\"G5401\"*," + }, + { + "verseNum": 18, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* were|strong=\"G3588\"* redeemed|strong=\"G3084\"*, not|strong=\"G3756\"* with|strong=\"G1537\"* corruptible|strong=\"G5349\"* things|strong=\"G3588\"* like|strong=\"G5349\"* silver or|strong=\"G2228\"* gold|strong=\"G5553\"*, from|strong=\"G1537\"* the|strong=\"G1537\"* useless|strong=\"G3152\"* way|strong=\"G1537\"* of|strong=\"G1537\"* life handed down|strong=\"G1537\"* from|strong=\"G1537\"* your|strong=\"G3588\"* fathers|strong=\"G3970\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"G2532\"* with|strong=\"G2532\"* precious|strong=\"G5093\"* blood, as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G5613\"* lamb without|strong=\"G2532\"* blemish or|strong=\"G2532\"* spot, the|strong=\"G2532\"* blood of|strong=\"G2532\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 20, + "text": "who|strong=\"G3588\"* was|strong=\"G3588\"* foreknown|strong=\"G4267\"* indeed|strong=\"G3303\"* before|strong=\"G4253\"* the|strong=\"G1161\"* foundation|strong=\"G2602\"* of|strong=\"G1223\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* was|strong=\"G3588\"* revealed|strong=\"G5319\"* in|strong=\"G1909\"* this|strong=\"G3588\"* last|strong=\"G2078\"* age|strong=\"G2889\"* for|strong=\"G1223\"* your|strong=\"G1223\"* sake|strong=\"G1223\"*," + }, + { + "verseNum": 21, + "text": "who|strong=\"G3588\"* through|strong=\"G1223\"* him|strong=\"G3588\"* are|strong=\"G1510\"* believers|strong=\"G4103\"* in|strong=\"G1519\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* raised|strong=\"G1453\"* him|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*, so|strong=\"G2532\"* that|strong=\"G3588\"* your|strong=\"G1223\"* faith|strong=\"G4102\"* and|strong=\"G2532\"* hope|strong=\"G1680\"* might|strong=\"G2532\"* be|strong=\"G1510\"* in|strong=\"G1519\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 22, + "text": "Seeing you|strong=\"G5210\"* have|strong=\"G5210\"* purified your|strong=\"G1722\"* souls|strong=\"G5590\"* in|strong=\"G1722\"* your|strong=\"G1722\"* obedience|strong=\"G5218\"* to|strong=\"G1519\"* the|strong=\"G1722\"* truth through|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G2588\"* in|strong=\"G1722\"* sincere brotherly|strong=\"G5360\"* affection, love|strong=\"G5360\"* one|strong=\"G3588\"* another|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G1722\"* heart|strong=\"G2588\"* fervently|strong=\"G1619\"*," + }, + { + "verseNum": 23, + "text": "having|strong=\"G2532\"* been|strong=\"G2532\"* born again|strong=\"G2532\"*, not|strong=\"G3756\"* of|strong=\"G1537\"* corruptible|strong=\"G5349\"* seed|strong=\"G4701\"*, but|strong=\"G2532\"* of|strong=\"G1537\"* incorruptible, through|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, which|strong=\"G2532\"* lives|strong=\"G2198\"* and|strong=\"G2532\"* remains|strong=\"G3306\"* forever|strong=\"G1223\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"G1360\"*," + }, + { + "verseNum": 25, + "text": "but|strong=\"G1161\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* word|strong=\"G4487\"* endures|strong=\"G3306\"* forever|strong=\"G1519\"*.”+ 1:25 Isaiah 40:6-8*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Putting|strong=\"G2532\"* away therefore|strong=\"G3767\"* all|strong=\"G3956\"* wickedness|strong=\"G2549\"*, all|strong=\"G3956\"* deceit|strong=\"G1388\"*, hypocrisies|strong=\"G5272\"*, envies|strong=\"G5355\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* evil|strong=\"G2549\"* speaking," + }, + { + "verseNum": 2, + "text": "as|strong=\"G5613\"* newborn babies|strong=\"G1025\"*, long|strong=\"G1971\"* for|strong=\"G1519\"* the|strong=\"G1722\"* pure spiritual|strong=\"G3050\"* milk|strong=\"G1051\"*, that|strong=\"G2443\"* with|strong=\"G1722\"* it|strong=\"G5613\"* you|strong=\"G1722\"* may|strong=\"G2443\"* grow," + }, + { + "verseNum": 3, + "text": "if|strong=\"G1487\"* indeed you|strong=\"G1487\"* have|strong=\"G3748\"* tasted|strong=\"G1089\"* that|strong=\"G3754\"* the|strong=\"G3588\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* gracious|strong=\"G5543\"*." + }, + { + "verseNum": 4, + "text": "Come|strong=\"G4334\"* to|strong=\"G4314\"* him|strong=\"G3739\"*, a|strong=\"G1161\"* living|strong=\"G2198\"* stone|strong=\"G3037\"*, rejected indeed|strong=\"G3303\"* by|strong=\"G5259\"* men|strong=\"G3739\"*, but|strong=\"G1161\"* chosen|strong=\"G1588\"* by|strong=\"G5259\"* God|strong=\"G2316\"*, precious|strong=\"G1784\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"G2532\"* also|strong=\"G2532\"* as|strong=\"G5613\"* living|strong=\"G2198\"* stones|strong=\"G3037\"* are|strong=\"G2532\"* built|strong=\"G3618\"* up|strong=\"G1519\"* as|strong=\"G5613\"* a|strong=\"G5613\"* spiritual|strong=\"G4152\"* house|strong=\"G3624\"*, to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G5613\"* holy priesthood|strong=\"G2406\"*, to|strong=\"G1519\"* offer up|strong=\"G1519\"* spiritual|strong=\"G4152\"* sacrifices|strong=\"G2378\"*, acceptable|strong=\"G2144\"* to|strong=\"G1519\"* God|strong=\"G2316\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 6, + "text": "Because|strong=\"G1360\"* it|strong=\"G2532\"* is|strong=\"G3588\"* contained|strong=\"G4023\"* in|strong=\"G1722\"* Scripture|strong=\"G1124\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"G1519\"* you|strong=\"G5210\"* who|strong=\"G3739\"* believe|strong=\"G4100\"* therefore|strong=\"G3767\"* is|strong=\"G3588\"* the|strong=\"G2532\"* honor|strong=\"G5092\"*, but|strong=\"G1161\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* disobedient," + }, + { + "verseNum": 8, + "text": "and|strong=\"G2532\"*," + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"* are|strong=\"G3588\"* a|strong=\"G1519\"* chosen|strong=\"G1588\"* race|strong=\"G1085\"*, a|strong=\"G1519\"* royal priesthood|strong=\"G2406\"*, a|strong=\"G1519\"* holy nation|strong=\"G1484\"*, a|strong=\"G1519\"* people|strong=\"G2992\"* for|strong=\"G1519\"* God|strong=\"G1519\"*’s own possession|strong=\"G4047\"*, that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G3704\"* proclaim|strong=\"G1804\"* the|strong=\"G1519\"* excellence of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* out|strong=\"G1537\"* of|strong=\"G1537\"* darkness|strong=\"G4655\"* into|strong=\"G1519\"* his|strong=\"G1519\"* marvelous|strong=\"G2298\"* light|strong=\"G5457\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G2316\"* the|strong=\"G1161\"* past|strong=\"G4218\"*, you|strong=\"G3739\"* were|strong=\"G3588\"* not|strong=\"G3756\"* a|strong=\"G1161\"* people|strong=\"G2992\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* are|strong=\"G3588\"* God|strong=\"G2316\"*’s people|strong=\"G2992\"*, who|strong=\"G3739\"* had|strong=\"G2316\"* not|strong=\"G3756\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"*, but|strong=\"G1161\"* now|strong=\"G1161\"* have|strong=\"G1653\"* obtained|strong=\"G3568\"* mercy|strong=\"G1653\"*." + }, + { + "verseNum": 11, + "text": "Beloved, I|strong=\"G2532\"* beg|strong=\"G3870\"* you|strong=\"G2532\"* as|strong=\"G5613\"* foreigners|strong=\"G3941\"* and|strong=\"G2532\"* pilgrims|strong=\"G3927\"* to|strong=\"G2532\"* abstain from|strong=\"G2532\"* fleshly|strong=\"G4559\"* lusts|strong=\"G1939\"* which|strong=\"G3588\"* war|strong=\"G4754\"* against|strong=\"G2596\"* the|strong=\"G2532\"* soul|strong=\"G5590\"*," + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* good|strong=\"G2570\"* behavior|strong=\"G2041\"* among|strong=\"G1722\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*, so|strong=\"G2443\"* in|strong=\"G1722\"* that|strong=\"G2443\"* of|strong=\"G1537\"* which|strong=\"G3739\"* they|strong=\"G3588\"* speak|strong=\"G2635\"* against|strong=\"G1722\"* you|strong=\"G5210\"* as|strong=\"G5613\"* evildoers|strong=\"G2555\"*, they|strong=\"G3588\"* may|strong=\"G2443\"* see your|strong=\"G2192\"* good|strong=\"G2570\"* works|strong=\"G2041\"* and|strong=\"G2316\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G1537\"* visitation|strong=\"G1984\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"G1223\"* subject|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G5293\"* every|strong=\"G3956\"* ordinance|strong=\"G2937\"* of|strong=\"G1223\"* man|strong=\"G3956\"* for|strong=\"G1223\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"*’s|strong=\"G2962\"* sake|strong=\"G1223\"*: whether|strong=\"G1535\"* to|strong=\"G5293\"* the|strong=\"G3956\"* king|strong=\"G3588\"*, as|strong=\"G5613\"* supreme|strong=\"G5242\"*," + }, + { + "verseNum": 14, + "text": "or|strong=\"G1535\"* to|strong=\"G1519\"* governors|strong=\"G2232\"*, as|strong=\"G5613\"* sent|strong=\"G3992\"* by|strong=\"G1223\"* him|strong=\"G1519\"* for|strong=\"G1519\"* vengeance|strong=\"G1557\"* on|strong=\"G1519\"* evildoers|strong=\"G2555\"* and|strong=\"G1161\"* for|strong=\"G1519\"* praise|strong=\"G1868\"* to|strong=\"G1519\"* those|strong=\"G1161\"* who|strong=\"G3992\"* do|strong=\"G1223\"* well|strong=\"G5613\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"G3754\"* this|strong=\"G3588\"* is|strong=\"G1510\"* the|strong=\"G3588\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* by|strong=\"G3588\"* well-doing you|strong=\"G3754\"* should|strong=\"G2316\"* put|strong=\"G5392\"* to|strong=\"G2316\"* silence|strong=\"G5392\"* the|strong=\"G3588\"* ignorance of|strong=\"G2316\"* foolish men|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "Live|strong=\"G2532\"* as|strong=\"G5613\"* free|strong=\"G1658\"* people|strong=\"G3361\"*, yet|strong=\"G2532\"* not|strong=\"G3361\"* using|strong=\"G2192\"* your|strong=\"G2192\"* freedom|strong=\"G1657\"* for|strong=\"G2532\"* a|strong=\"G2192\"* cloak of|strong=\"G2316\"* wickedness|strong=\"G2549\"*, but|strong=\"G2532\"* as|strong=\"G5613\"* bondservants of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 17, + "text": "Honor|strong=\"G5091\"* all|strong=\"G3956\"* men|strong=\"G3956\"*. Love the|strong=\"G3956\"* brotherhood. Fear|strong=\"G5399\"* God|strong=\"G2316\"*. Honor|strong=\"G5091\"* the|strong=\"G3956\"* king|strong=\"G3588\"*." + }, + { + "verseNum": 18, + "text": "Servants|strong=\"G3610\"*, be|strong=\"G2532\"* in|strong=\"G1722\"* subjection|strong=\"G5293\"* to|strong=\"G2532\"* your|strong=\"G2532\"* masters|strong=\"G1203\"* with|strong=\"G1722\"* all|strong=\"G3956\"* respect|strong=\"G3956\"*, not|strong=\"G3756\"* only|strong=\"G3440\"* to|strong=\"G2532\"* the|strong=\"G1722\"* good|strong=\"G3956\"* and|strong=\"G2532\"* gentle|strong=\"G1933\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G1722\"* wicked|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G2316\"* commendable if|strong=\"G1487\"* someone|strong=\"G5100\"* endures|strong=\"G5297\"* pain|strong=\"G3077\"*, suffering|strong=\"G3958\"* unjustly, because|strong=\"G1223\"* of|strong=\"G1223\"* conscience|strong=\"G4893\"* toward|strong=\"G4893\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* what|strong=\"G4169\"* glory|strong=\"G2811\"* is|strong=\"G2316\"* it|strong=\"G2532\"* if|strong=\"G1487\"*, when|strong=\"G2532\"* you|strong=\"G1487\"* sin, you|strong=\"G1487\"* patiently|strong=\"G5278\"* endure|strong=\"G5278\"* beating? But|strong=\"G2532\"* if|strong=\"G1487\"* when|strong=\"G2532\"* you|strong=\"G1487\"* do|strong=\"G2532\"* well|strong=\"G2532\"*, you|strong=\"G1487\"* patiently|strong=\"G5278\"* endure|strong=\"G5278\"* suffering|strong=\"G3958\"*, this|strong=\"G3778\"* is|strong=\"G2316\"* commendable with|strong=\"G3844\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G3588\"* called|strong=\"G2564\"* to|strong=\"G1519\"* this|strong=\"G3778\"*, because|strong=\"G3754\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* suffered|strong=\"G3958\"* for|strong=\"G1063\"* us|strong=\"G1519\"*, leaving|strong=\"G5277\"* you|strong=\"G5210\"*+ 2:21 TR reads “us” instead of “you”* an|strong=\"G2532\"* example|strong=\"G5261\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* should|strong=\"G3588\"* follow|strong=\"G1872\"* his|strong=\"G1519\"* steps|strong=\"G2487\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3739\"* didn’t|strong=\"G3588\"* sin, “neither|strong=\"G3761\"* was|strong=\"G3588\"* deceit|strong=\"G1388\"* found|strong=\"G2147\"* in|strong=\"G1722\"* his|strong=\"G1722\"* mouth|strong=\"G4750\"*.”+ 2:22 Isaiah 53:9*" + }, + { + "verseNum": 23, + "text": "When|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* cursed, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* curse back. When|strong=\"G1161\"* he|strong=\"G1161\"* suffered|strong=\"G3958\"*, he|strong=\"G1161\"* didn’t|strong=\"G3588\"* threaten, but|strong=\"G1161\"* committed|strong=\"G3860\"* himself to|strong=\"G3756\"* him|strong=\"G3588\"* who|strong=\"G3739\"* judges|strong=\"G2919\"* righteously|strong=\"G1346\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G3739\"* himself bore our|strong=\"G1722\"* sins in|strong=\"G1722\"* his|strong=\"G1909\"* body|strong=\"G4983\"* on|strong=\"G1909\"* the|strong=\"G1722\"* tree|strong=\"G3586\"*, that|strong=\"G2443\"* we|strong=\"G2249\"*, having died|strong=\"G3588\"* to|strong=\"G2443\"* sins, might|strong=\"G1473\"* live|strong=\"G2198\"* to|strong=\"G2443\"* righteousness|strong=\"G1343\"*. You|strong=\"G3739\"* were|strong=\"G3588\"* healed|strong=\"G2390\"* by|strong=\"G1722\"* his|strong=\"G1909\"* wounds|strong=\"G3468\"*.+ 2:24 or, stripes*" + }, + { + "verseNum": 25, + "text": "For|strong=\"G1063\"* you|strong=\"G5210\"* were|strong=\"G1510\"* going|strong=\"G2532\"* astray|strong=\"G4105\"* like|strong=\"G5613\"* sheep|strong=\"G4263\"*; but|strong=\"G2532\"* now|strong=\"G3568\"* you|strong=\"G5210\"* have|strong=\"G2532\"* returned|strong=\"G1994\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Shepherd|strong=\"G4166\"* and|strong=\"G2532\"* Overseer|strong=\"G1985\"*+ 2:25 “Overseer” is from the Greek ἐπίσκοπον, which can mean overseer, curator, guardian, or superintendent.* of|strong=\"G2532\"* your|strong=\"G2532\"* souls|strong=\"G5590\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, wives|strong=\"G1135\"*, be|strong=\"G2532\"* in|strong=\"G2532\"* subjection|strong=\"G5293\"* to|strong=\"G2443\"* your|strong=\"G1223\"* own|strong=\"G2398\"* husbands, so|strong=\"G2443\"* that|strong=\"G2443\"*, even|strong=\"G2532\"* if|strong=\"G1487\"* any|strong=\"G5100\"* don’t|strong=\"G3588\"* obey|strong=\"G5100\"* the|strong=\"G2532\"* Word|strong=\"G3056\"*, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* won|strong=\"G2770\"* by|strong=\"G1223\"* the|strong=\"G2532\"* behavior of|strong=\"G3056\"* their|strong=\"G2532\"* wives|strong=\"G1135\"* without|strong=\"G2532\"* a|strong=\"G2532\"* word|strong=\"G3056\"*," + }, + { + "verseNum": 2, + "text": "seeing your|strong=\"G1722\"* pure behavior in|strong=\"G1722\"* fear|strong=\"G5401\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"G1510\"* your|strong=\"G2532\"* beauty|strong=\"G3756\"* come|strong=\"G1510\"* not|strong=\"G3756\"* from|strong=\"G2532\"* the|strong=\"G2532\"* outward|strong=\"G1855\"* adorning|strong=\"G2889\"* of|strong=\"G2532\"* braiding|strong=\"G1708\"* your|strong=\"G2532\"* hair|strong=\"G2359\"*, and|strong=\"G2532\"* of|strong=\"G2532\"* wearing|strong=\"G4025\"* gold|strong=\"G5553\"* ornaments or|strong=\"G2228\"* of|strong=\"G2532\"* putting|strong=\"G1745\"* on|strong=\"G1745\"* fine|strong=\"G2532\"* clothing|strong=\"G2440\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G1722\"* hidden|strong=\"G2927\"* person|strong=\"G3739\"* of|strong=\"G4151\"* the|strong=\"G1722\"* heart|strong=\"G2588\"*, in|strong=\"G1722\"* the|strong=\"G1722\"* incorruptible adornment of|strong=\"G4151\"* a|strong=\"G2532\"* gentle|strong=\"G4239\"* and|strong=\"G2532\"* quiet|strong=\"G2272\"* spirit|strong=\"G4151\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* very|strong=\"G2532\"* precious|strong=\"G4185\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s sight|strong=\"G1799\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* this|strong=\"G3588\"* is|strong=\"G3588\"* how|strong=\"G3779\"* in|strong=\"G1519\"* the|strong=\"G2532\"* past|strong=\"G4218\"* the|strong=\"G2532\"* holy women|strong=\"G1135\"* who|strong=\"G3588\"* hoped|strong=\"G1679\"* in|strong=\"G1519\"* God|strong=\"G2316\"* also|strong=\"G2532\"* adorned|strong=\"G2885\"* themselves|strong=\"G1438\"*, being|strong=\"G2532\"* in|strong=\"G1519\"* subjection|strong=\"G5293\"* to|strong=\"G1519\"* their|strong=\"G1438\"* own|strong=\"G2398\"* husbands." + }, + { + "verseNum": 6, + "text": "So|strong=\"G2532\"* Sarah|strong=\"G4564\"* obeyed|strong=\"G5219\"* Abraham, calling|strong=\"G2564\"* him|strong=\"G3588\"* lord|strong=\"G2962\"*, whose|strong=\"G3739\"* children|strong=\"G5043\"* you|strong=\"G3739\"* now|strong=\"G2532\"* are|strong=\"G3588\"* if|strong=\"G5613\"* you|strong=\"G3739\"* do|strong=\"G1096\"* well|strong=\"G2532\"* and|strong=\"G2532\"* are|strong=\"G3588\"* not|strong=\"G3361\"* put|strong=\"G2532\"* in|strong=\"G2532\"* fear|strong=\"G5399\"* by|strong=\"G2532\"* any|strong=\"G3367\"* terror." + }, + { + "verseNum": 7, + "text": "You|strong=\"G5210\"* husbands, in|strong=\"G1519\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*, live|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2532\"* wives|strong=\"G5613\"* according|strong=\"G2596\"* to|strong=\"G1519\"* knowledge|strong=\"G1108\"*, giving honor|strong=\"G5092\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1134\"* as|strong=\"G5613\"* to|strong=\"G1519\"* the|strong=\"G2532\"* weaker vessel|strong=\"G4632\"*, as|strong=\"G5613\"* also|strong=\"G2532\"* being|strong=\"G2532\"* joint heirs|strong=\"G4789\"* of|strong=\"G2532\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, that|strong=\"G3588\"* your|strong=\"G2532\"* prayers|strong=\"G4335\"* may|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* hindered|strong=\"G1465\"*." + }, + { + "verseNum": 8, + "text": "Finally|strong=\"G5056\"*, all|strong=\"G3956\"* of|strong=\"G3956\"* you|strong=\"G3956\"* be|strong=\"G3956\"* like-minded, compassionate|strong=\"G2155\"*, loving as|strong=\"G1161\"* brothers, tenderhearted|strong=\"G2155\"*, courteous," + }, + { + "verseNum": 9, + "text": "not|strong=\"G3361\"* rendering evil|strong=\"G2556\"* for|strong=\"G3754\"* evil|strong=\"G2556\"* or|strong=\"G2228\"* insult|strong=\"G3059\"* for|strong=\"G3754\"* insult|strong=\"G3059\"*; but|strong=\"G1161\"* instead|strong=\"G1161\"* blessing|strong=\"G2129\"*, knowing that|strong=\"G3754\"* you|strong=\"G3754\"* were|strong=\"G3778\"* called|strong=\"G2564\"* to|strong=\"G1519\"* this|strong=\"G3778\"*, that|strong=\"G3754\"* you|strong=\"G3754\"* may|strong=\"G2443\"* inherit|strong=\"G2816\"* a|strong=\"G1519\"* blessing|strong=\"G2129\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"G1063\"*," + }, + { + "verseNum": 11, + "text": "Let|strong=\"G1161\"* him|strong=\"G4160\"* turn|strong=\"G1578\"* away|strong=\"G1578\"* from|strong=\"G1515\"* evil|strong=\"G2556\"* and|strong=\"G2532\"* do|strong=\"G4160\"* good|strong=\"G2532\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"G3754\"* the|strong=\"G2532\"* eyes|strong=\"G3788\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* are|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"*," + }, + { + "verseNum": 13, + "text": "Now|strong=\"G2532\"* who|strong=\"G5101\"* will|strong=\"G5101\"* harm|strong=\"G2559\"* you|strong=\"G5210\"* if|strong=\"G1437\"* you|strong=\"G5210\"* become|strong=\"G1096\"* imitators of|strong=\"G2532\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G3588\"* good|strong=\"G5101\"*?" + }, + { + "verseNum": 14, + "text": "But|strong=\"G1161\"* even|strong=\"G2532\"* if|strong=\"G1487\"* you|strong=\"G1487\"* should|strong=\"G3588\"* suffer|strong=\"G3958\"* for|strong=\"G1223\"* righteousness|strong=\"G1343\"*’ sake|strong=\"G1223\"*, you|strong=\"G1487\"* are|strong=\"G3588\"* blessed|strong=\"G3107\"*. “Don’t|strong=\"G3588\"* fear|strong=\"G5401\"* what|strong=\"G3588\"* they|strong=\"G2532\"* fear|strong=\"G5401\"*, neither|strong=\"G3366\"* be|strong=\"G2532\"* troubled|strong=\"G5015\"*.”+ 3:14 Isaiah 8:12*" + }, + { + "verseNum": 15, + "text": "But|strong=\"G1161\"* sanctify the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2532\"* in|strong=\"G1722\"* your|strong=\"G2962\"* hearts|strong=\"G2588\"*. Always|strong=\"G3956\"* be|strong=\"G2532\"* ready|strong=\"G2092\"* to|strong=\"G4314\"* give|strong=\"G3956\"* an|strong=\"G2532\"* answer|strong=\"G3056\"* to|strong=\"G4314\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* asks you|strong=\"G5210\"* a|strong=\"G2532\"* reason|strong=\"G3056\"* concerning|strong=\"G4012\"* the|strong=\"G1722\"* hope|strong=\"G1680\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, with|strong=\"G3326\"* humility|strong=\"G4240\"* and|strong=\"G2532\"* fear|strong=\"G5401\"*," + }, + { + "verseNum": 16, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* good|strong=\"G3588\"* conscience|strong=\"G4893\"*. Thus|strong=\"G2532\"*, while|strong=\"G1722\"* you|strong=\"G5210\"* are|strong=\"G3588\"* spoken against|strong=\"G3326\"* as|strong=\"G1722\"* evildoers, they|strong=\"G2532\"* may|strong=\"G2532\"* be|strong=\"G2532\"* disappointed|strong=\"G2617\"* who|strong=\"G3739\"* curse|strong=\"G2617\"* your|strong=\"G2192\"* good|strong=\"G3588\"* way|strong=\"G1722\"* of|strong=\"G2532\"* life in|strong=\"G1722\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* is|strong=\"G3588\"* better|strong=\"G2909\"*, if|strong=\"G1487\"* it|strong=\"G1063\"* is|strong=\"G3588\"* God|strong=\"G2316\"*’s will|strong=\"G2307\"*, that|strong=\"G3588\"* you|strong=\"G1487\"* suffer|strong=\"G3958\"* for|strong=\"G1063\"* doing|strong=\"G2554\"* what|strong=\"G3588\"* is|strong=\"G3588\"* right than|strong=\"G2228\"* for|strong=\"G1063\"* doing|strong=\"G2554\"* evil|strong=\"G2554\"*." + }, + { + "verseNum": 18, + "text": "Because|strong=\"G3754\"* Christ|strong=\"G5547\"* also|strong=\"G2532\"* suffered for|strong=\"G3754\"* sins once, the|strong=\"G2532\"* righteous|strong=\"G1342\"* for|strong=\"G3754\"* the|strong=\"G2532\"* unrighteous, that|strong=\"G3754\"* he|strong=\"G2532\"* might|strong=\"G2532\"* bring|strong=\"G4317\"* you|strong=\"G5210\"* to|strong=\"G2443\"* God|strong=\"G2316\"*, being|strong=\"G2532\"* put|strong=\"G2289\"* to|strong=\"G2443\"* death|strong=\"G2289\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* made|strong=\"G2316\"* alive|strong=\"G2227\"* in|strong=\"G2532\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"G1722\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* also|strong=\"G2532\"* went|strong=\"G4198\"* and|strong=\"G2532\"* preached|strong=\"G2784\"* to|strong=\"G2532\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* in|strong=\"G1722\"* prison|strong=\"G5438\"*," + }, + { + "verseNum": 20, + "text": "who|strong=\"G3739\"* before|strong=\"G1722\"* were|strong=\"G1510\"* disobedient when|strong=\"G3753\"* God|strong=\"G2316\"* waited patiently|strong=\"G3115\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* Noah|strong=\"G3575\"* while|strong=\"G1722\"* the|strong=\"G1722\"* ship was|strong=\"G1510\"* being|strong=\"G1510\"* built|strong=\"G2680\"*. In|strong=\"G1722\"* it|strong=\"G3778\"*, few|strong=\"G3641\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, eight|strong=\"G3638\"* souls|strong=\"G5590\"*, were|strong=\"G1510\"* saved|strong=\"G1295\"* through|strong=\"G1223\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"G3739\"* is|strong=\"G2316\"* a|strong=\"G2532\"* symbol of|strong=\"G1223\"* baptism, which|strong=\"G3739\"* now|strong=\"G3568\"* saves|strong=\"G4982\"* you|strong=\"G5210\"*—not|strong=\"G3756\"* the|strong=\"G2532\"* putting|strong=\"G2532\"* away of|strong=\"G1223\"* the|strong=\"G2532\"* filth|strong=\"G4509\"* of|strong=\"G1223\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G2532\"* the|strong=\"G2532\"* answer|strong=\"G1906\"* of|strong=\"G1223\"* a|strong=\"G2532\"* good|strong=\"G1223\"* conscience|strong=\"G4893\"* toward|strong=\"G1519\"* God|strong=\"G2316\"*—through|strong=\"G1223\"* the|strong=\"G2532\"* resurrection of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*," + }, + { + "verseNum": 22, + "text": "who|strong=\"G3739\"* is|strong=\"G1510\"* at|strong=\"G1722\"* the|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, having|strong=\"G2532\"* gone|strong=\"G4198\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"*, angels and|strong=\"G2532\"* authorities|strong=\"G1849\"* and|strong=\"G2532\"* powers|strong=\"G1411\"* being|strong=\"G1510\"* made|strong=\"G2316\"* subject|strong=\"G5293\"* to|strong=\"G1519\"* him|strong=\"G3739\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"*, since|strong=\"G3754\"* Christ|strong=\"G5547\"* suffered|strong=\"G3958\"* for|strong=\"G3754\"* us in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, arm|strong=\"G3695\"* yourselves|strong=\"G4771\"* also|strong=\"G2532\"* with|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* mind|strong=\"G1771\"*; for|strong=\"G3754\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G5547\"* suffered|strong=\"G3958\"* in|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* has|strong=\"G5547\"* ceased|strong=\"G3973\"* from|strong=\"G2532\"* sin," + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* you|strong=\"G1722\"* no|strong=\"G3371\"* longer|strong=\"G3371\"* should|strong=\"G2316\"* live the|strong=\"G1722\"* rest|strong=\"G1954\"* of|strong=\"G2316\"* your|strong=\"G1722\"* time|strong=\"G5550\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* for|strong=\"G1519\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G2316\"* men|strong=\"G3588\"*, but|strong=\"G2316\"* for|strong=\"G1519\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* we|strong=\"G1063\"* have|strong=\"G2532\"* spent enough of|strong=\"G2532\"* our|strong=\"G2532\"* past|strong=\"G3928\"* time|strong=\"G5550\"* doing|strong=\"G2716\"* the|strong=\"G1722\"* desire|strong=\"G1939\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Gentiles|strong=\"G1484\"*, and|strong=\"G2532\"* having|strong=\"G2532\"* walked|strong=\"G4198\"* in|strong=\"G1722\"* lewdness, lusts|strong=\"G1939\"*, drunken binges, orgies, carousings, and|strong=\"G2532\"* abominable idolatries|strong=\"G1495\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G3588\"* think it|strong=\"G3739\"* is|strong=\"G3588\"* strange|strong=\"G3579\"* that|strong=\"G3739\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* run|strong=\"G4936\"* with|strong=\"G1722\"* them|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G1722\"* same|strong=\"G3739\"* excess of|strong=\"G1722\"* riot, speaking evil of|strong=\"G1722\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* give|strong=\"G2192\"* account|strong=\"G3056\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* is|strong=\"G3588\"* ready|strong=\"G2093\"* to|strong=\"G2532\"* judge|strong=\"G2919\"* the|strong=\"G2532\"* living|strong=\"G2198\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G1063\"* to|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* the|strong=\"G2532\"* Good|strong=\"G2097\"* News|strong=\"G2097\"* was|strong=\"G2532\"* preached|strong=\"G2097\"* even|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G2532\"* dead|strong=\"G3498\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"* indeed|strong=\"G2532\"* as|strong=\"G1519\"* men|strong=\"G3778\"* in|strong=\"G1519\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, but|strong=\"G1161\"* live|strong=\"G2198\"* as|strong=\"G1519\"* to|strong=\"G1519\"* God|strong=\"G2316\"* in|strong=\"G1519\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* end|strong=\"G5056\"* of|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* is|strong=\"G3588\"* near|strong=\"G1448\"*. Therefore|strong=\"G3767\"* be|strong=\"G2532\"* of|strong=\"G2532\"* sound|strong=\"G4993\"* mind|strong=\"G4993\"*, self-controlled, and|strong=\"G2532\"* sober|strong=\"G3525\"* in|strong=\"G1519\"* prayer|strong=\"G4335\"*." + }, + { + "verseNum": 8, + "text": "And|strong=\"G3956\"* above|strong=\"G4253\"* all|strong=\"G3956\"* things|strong=\"G3956\"* be|strong=\"G3956\"* earnest in|strong=\"G1519\"* your|strong=\"G2192\"* love among|strong=\"G1519\"* yourselves|strong=\"G1438\"*, for|strong=\"G3754\"* love covers|strong=\"G2572\"* a|strong=\"G2192\"* multitude|strong=\"G4128\"* of|strong=\"G3956\"* sins." + }, + { + "verseNum": 9, + "text": "Be|strong=\"G1519\"* hospitable|strong=\"G5382\"* to|strong=\"G1519\"* one|strong=\"G1519\"* another without grumbling|strong=\"G1112\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"G5613\"* each|strong=\"G1538\"* has|strong=\"G2316\"* received|strong=\"G2983\"* a|strong=\"G5613\"* gift|strong=\"G5486\"*, employ|strong=\"G1247\"* it|strong=\"G2531\"* in|strong=\"G1519\"* serving|strong=\"G1247\"* one|strong=\"G1538\"* another|strong=\"G1438\"*, as|strong=\"G5613\"* good|strong=\"G2570\"* managers|strong=\"G3623\"* of|strong=\"G2316\"* the|strong=\"G1519\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1519\"* its various|strong=\"G4164\"* forms." + }, + { + "verseNum": 11, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* speaks|strong=\"G2980\"*, let|strong=\"G1510\"* it|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* it|strong=\"G2532\"* were|strong=\"G1510\"* the|strong=\"G1722\"* very|strong=\"G2532\"* words|strong=\"G2532\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* serves|strong=\"G1247\"*, let|strong=\"G1510\"* it|strong=\"G2532\"* be|strong=\"G1510\"* as|strong=\"G5613\"* of|strong=\"G1537\"* the|strong=\"G1722\"* strength|strong=\"G2479\"* which|strong=\"G3739\"* God|strong=\"G2316\"* supplies|strong=\"G5524\"*, that|strong=\"G2443\"* in|strong=\"G1722\"* all|strong=\"G3956\"* things|strong=\"G3956\"* God|strong=\"G2316\"* may|strong=\"G2532\"* be|strong=\"G1510\"* glorified|strong=\"G1392\"* through|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, to|strong=\"G1519\"* whom|strong=\"G3739\"* belong|strong=\"G1510\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G1722\"* dominion|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 12, + "text": "Beloved, don’t|strong=\"G3588\"* be|strong=\"G1096\"* astonished at|strong=\"G1722\"* the|strong=\"G1722\"* fiery|strong=\"G4451\"* trial|strong=\"G3986\"* which|strong=\"G3588\"* has|strong=\"G1096\"* come|strong=\"G1096\"* upon|strong=\"G1722\"* you|strong=\"G5210\"* to|strong=\"G4314\"* test you|strong=\"G5210\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* a|strong=\"G1096\"* strange|strong=\"G3581\"* thing|strong=\"G3581\"* happened|strong=\"G1096\"* to|strong=\"G4314\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"G2532\"* because|strong=\"G1722\"* you|strong=\"G1722\"* are|strong=\"G3588\"* partakers|strong=\"G2841\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*’s sufferings|strong=\"G3804\"*, rejoice|strong=\"G5463\"*, that|strong=\"G2443\"* at|strong=\"G1722\"* the|strong=\"G1722\"* revelation of|strong=\"G2532\"* his|strong=\"G1722\"* glory|strong=\"G1391\"* you|strong=\"G1722\"* also|strong=\"G2532\"* may|strong=\"G2532\"* rejoice|strong=\"G5463\"* with|strong=\"G1722\"* exceeding|strong=\"G1722\"* joy|strong=\"G5463\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"G1487\"* you|strong=\"G5210\"* are|strong=\"G3588\"* insulted for|strong=\"G3754\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G4151\"* Christ|strong=\"G5547\"*, you|strong=\"G5210\"* are|strong=\"G3588\"* blessed|strong=\"G3107\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* of|strong=\"G4151\"* God|strong=\"G2316\"* rests on|strong=\"G1909\"* you|strong=\"G5210\"*. On|strong=\"G1909\"* their|strong=\"G2532\"* part|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* blasphemed, but|strong=\"G2532\"* on|strong=\"G1909\"* your|strong=\"G2532\"* part|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G3588\"* glorified|strong=\"G2532\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"G3361\"* let|strong=\"G1063\"* none|strong=\"G3361\"* of|strong=\"G5100\"* you|strong=\"G5210\"* suffer|strong=\"G3958\"* as|strong=\"G5613\"* a|strong=\"G5613\"* murderer|strong=\"G5406\"*, or|strong=\"G2228\"* a|strong=\"G5613\"* thief|strong=\"G2812\"*, or|strong=\"G2228\"* an|strong=\"G2228\"* evil|strong=\"G5100\"* doer, or|strong=\"G2228\"* a|strong=\"G5613\"* meddler in|strong=\"G1063\"* other|strong=\"G5100\"* men|strong=\"G5100\"*’s matters." + }, + { + "verseNum": 16, + "text": "But|strong=\"G1161\"* if|strong=\"G1487\"* one|strong=\"G3588\"* of|strong=\"G2316\"* you|strong=\"G1487\"* suffers for|strong=\"G1161\"* being|strong=\"G1722\"* a|strong=\"G5613\"* Christian|strong=\"G5546\"*, let|strong=\"G1161\"* him|strong=\"G3588\"* not|strong=\"G3361\"* be|strong=\"G3361\"* ashamed; but|strong=\"G1161\"* let|strong=\"G1161\"* him|strong=\"G3588\"* glorify|strong=\"G1392\"* God|strong=\"G2316\"* in|strong=\"G1722\"* this|strong=\"G3778\"* matter." + }, + { + "verseNum": 17, + "text": "For|strong=\"G3754\"* the|strong=\"G1161\"* time|strong=\"G2540\"* has|strong=\"G2316\"* come for|strong=\"G3754\"* judgment|strong=\"G2917\"* to|strong=\"G1161\"* begin with|strong=\"G2316\"* the|strong=\"G1161\"* household|strong=\"G3624\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. If|strong=\"G1487\"* it|strong=\"G3754\"* begins first|strong=\"G4413\"* with|strong=\"G2316\"* us|strong=\"G2249\"*, what|strong=\"G5101\"* will|strong=\"G2316\"* happen to|strong=\"G1161\"* those|strong=\"G3588\"* who|strong=\"G5101\"* don’t|strong=\"G3588\"* obey the|strong=\"G1161\"* Good|strong=\"G5101\"* News|strong=\"G2098\"* of|strong=\"G2316\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 18, + "text": "“If|strong=\"G1487\"* it|strong=\"G2532\"* is|strong=\"G3588\"* hard for|strong=\"G2532\"* the|strong=\"G2532\"* righteous|strong=\"G1342\"* to|strong=\"G2532\"* be|strong=\"G2532\"* saved|strong=\"G4982\"*, what|strong=\"G3588\"* will|strong=\"G2532\"* happen to|strong=\"G2532\"* the|strong=\"G2532\"* ungodly and|strong=\"G2532\"* the|strong=\"G2532\"* sinner?”+ 4:18 Proverbs 11:31*" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"G5620\"* let|strong=\"G3958\"* them|strong=\"G3588\"* also|strong=\"G2532\"* who|strong=\"G3588\"* suffer|strong=\"G3958\"* according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G1722\"* will|strong=\"G2307\"* of|strong=\"G2316\"* God|strong=\"G2316\"* in|strong=\"G1722\"* doing good|strong=\"G3588\"* entrust|strong=\"G3908\"* their|strong=\"G2532\"* souls|strong=\"G5590\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, as|strong=\"G1722\"* to|strong=\"G2532\"* a|strong=\"G2532\"* faithful|strong=\"G4103\"* Creator|strong=\"G2939\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"G3767\"* I|strong=\"G2532\"* exhort|strong=\"G3870\"* the|strong=\"G1722\"* elders|strong=\"G4245\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, as|strong=\"G1722\"* a|strong=\"G2532\"* fellow|strong=\"G4850\"* elder|strong=\"G4245\"* and|strong=\"G2532\"* a|strong=\"G2532\"* witness|strong=\"G3144\"* of|strong=\"G2532\"* the|strong=\"G1722\"* sufferings|strong=\"G3804\"* of|strong=\"G2532\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* who|strong=\"G3588\"* will|strong=\"G3195\"* also|strong=\"G2532\"* share|strong=\"G2844\"* in|strong=\"G1722\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* will|strong=\"G3195\"* be|strong=\"G2532\"* revealed:" + }, + { + "verseNum": 2, + "text": "shepherd|strong=\"G4165\"* the|strong=\"G1722\"* flock|strong=\"G4168\"* of|strong=\"G2316\"* God|strong=\"G2316\"* which|strong=\"G3588\"* is|strong=\"G3588\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, exercising the|strong=\"G1722\"* oversight|strong=\"G1983\"*, not|strong=\"G3361\"* under|strong=\"G1722\"* compulsion, but|strong=\"G3361\"* voluntarily|strong=\"G1596\"*; not|strong=\"G3361\"* for|strong=\"G1722\"* dishonest gain, but|strong=\"G3361\"* willingly|strong=\"G1596\"*;" + }, + { + "verseNum": 3, + "text": "not|strong=\"G3366\"* as|strong=\"G5613\"* lording|strong=\"G2634\"* it|strong=\"G5613\"* over|strong=\"G2634\"* those|strong=\"G3588\"* entrusted to|strong=\"G1096\"* you|strong=\"G5613\"*, but|strong=\"G3588\"* making yourselves|strong=\"G1096\"* examples|strong=\"G5179\"* to|strong=\"G1096\"* the|strong=\"G3588\"* flock|strong=\"G4168\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G2532\"* the|strong=\"G2532\"* chief|strong=\"G2532\"* Shepherd is|strong=\"G3588\"* revealed|strong=\"G5319\"*, you|strong=\"G2532\"* will|strong=\"G2532\"* receive|strong=\"G2865\"* the|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* glory|strong=\"G1391\"* that|strong=\"G3588\"* doesn’t|strong=\"G3588\"* fade away." + }, + { + "verseNum": 5, + "text": "Likewise|strong=\"G3668\"*, you|strong=\"G3754\"* younger|strong=\"G3501\"* ones|strong=\"G3748\"*, be|strong=\"G3956\"* subject|strong=\"G5293\"* to|strong=\"G1325\"* the|strong=\"G3956\"* elder|strong=\"G4245\"*. Yes|strong=\"G1161\"*, all|strong=\"G3956\"* of|strong=\"G2316\"* you|strong=\"G3754\"* clothe|strong=\"G1463\"* yourselves|strong=\"G5293\"* with|strong=\"G2316\"* humility|strong=\"G5012\"* and|strong=\"G1161\"* subject|strong=\"G5293\"* yourselves|strong=\"G5293\"* to|strong=\"G1325\"* one|strong=\"G3956\"* another|strong=\"G3588\"*; for|strong=\"G3754\"* “God|strong=\"G2316\"* resists the|strong=\"G3956\"* proud|strong=\"G5244\"*, but|strong=\"G1161\"* gives|strong=\"G1325\"* grace|strong=\"G5485\"* to|strong=\"G1325\"* the|strong=\"G3956\"* humble|strong=\"G5011\"*.”+ 5:5 Proverbs 3:34 *" + }, + { + "verseNum": 6, + "text": "Humble|strong=\"G5013\"* yourselves|strong=\"G4771\"* therefore|strong=\"G3767\"* under|strong=\"G5259\"* the|strong=\"G1722\"* mighty|strong=\"G2900\"* hand|strong=\"G5495\"* of|strong=\"G5259\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* he|strong=\"G3588\"* may|strong=\"G2443\"* exalt|strong=\"G5312\"* you|strong=\"G5210\"* in|strong=\"G1722\"* due|strong=\"G1722\"* time|strong=\"G2540\"*," + }, + { + "verseNum": 7, + "text": "casting|strong=\"G1977\"* all|strong=\"G3956\"* your|strong=\"G3956\"* worries|strong=\"G3308\"* on|strong=\"G1909\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* he|strong=\"G3754\"* cares|strong=\"G3308\"* for|strong=\"G3754\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"G3588\"* sober|strong=\"G3525\"* and|strong=\"G3588\"* self-controlled. Be|strong=\"G3588\"* watchful|strong=\"G1127\"*. Your|strong=\"G3588\"* adversary, the|strong=\"G3588\"* devil|strong=\"G1228\"*, walks|strong=\"G4043\"* around|strong=\"G4043\"* like|strong=\"G5613\"* a|strong=\"G5613\"* roaring|strong=\"G5612\"* lion|strong=\"G3023\"*, seeking|strong=\"G2212\"* whom|strong=\"G5101\"* he|strong=\"G3588\"* may|strong=\"G5210\"* devour|strong=\"G2666\"*." + }, + { + "verseNum": 9, + "text": "Withstand him|strong=\"G3588\"* steadfast in|strong=\"G1722\"* your|strong=\"G1722\"* faith|strong=\"G4102\"*, knowing|strong=\"G1492\"* that|strong=\"G3739\"* your|strong=\"G1722\"* brothers who|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* are|strong=\"G3588\"* undergoing the|strong=\"G1722\"* same|strong=\"G3739\"* sufferings|strong=\"G3804\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* may|strong=\"G5547\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* all|strong=\"G3956\"* grace|strong=\"G5485\"*, who|strong=\"G3588\"* called|strong=\"G2564\"* you|strong=\"G5210\"* to|strong=\"G1519\"* his|strong=\"G3956\"* eternal glory|strong=\"G1391\"* by|strong=\"G1722\"* Christ|strong=\"G5547\"* Jesus|strong=\"G4741\"*, after|strong=\"G1161\"* you|strong=\"G5210\"* have|strong=\"G5210\"* suffered|strong=\"G3958\"* a|strong=\"G1519\"* little|strong=\"G3641\"* while|strong=\"G1722\"*, perfect|strong=\"G2675\"*, establish|strong=\"G4741\"*, strengthen|strong=\"G4741\"*, and|strong=\"G1161\"* settle|strong=\"G2311\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 11, + "text": "To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G1519\"* the|strong=\"G1519\"* glory and|strong=\"G3588\"* the|strong=\"G1519\"* power|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G3588\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 12, + "text": "Through|strong=\"G1223\"* Silvanus|strong=\"G4610\"*, our|strong=\"G2316\"* faithful|strong=\"G4103\"* brother, as|strong=\"G5613\"* I|strong=\"G3739\"* consider|strong=\"G3049\"* him|strong=\"G3588\"*, I|strong=\"G3739\"* have|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* briefly|strong=\"G3641\"*, exhorting|strong=\"G3870\"* and|strong=\"G2532\"* testifying|strong=\"G1957\"* that|strong=\"G3739\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* true|strong=\"G4103\"* grace|strong=\"G5485\"* of|strong=\"G1223\"* God|strong=\"G2316\"* in|strong=\"G1519\"* which|strong=\"G3739\"* you|strong=\"G5210\"* stand|strong=\"G2476\"*." + }, + { + "verseNum": 13, + "text": "She|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* Babylon, chosen|strong=\"G4899\"* together|strong=\"G2532\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, greets you|strong=\"G5210\"*. So|strong=\"G2532\"* does|strong=\"G5207\"* Mark|strong=\"G3138\"*, my|strong=\"G1722\"* son|strong=\"G5207\"*." + }, + { + "verseNum": 14, + "text": "Greet one|strong=\"G3956\"* another|strong=\"G3588\"* with|strong=\"G1722\"* a|strong=\"G1722\"* kiss|strong=\"G5370\"* of|strong=\"G1722\"* love." + } + ] + } + ] + }, + { + "name": "2 Peter", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Simon|strong=\"G4826\"* Peter|strong=\"G4074\"*, a|strong=\"G2532\"* servant|strong=\"G1401\"* and|strong=\"G2532\"* apostle of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* have|strong=\"G2532\"* obtained|strong=\"G2975\"* a|strong=\"G2532\"* like|strong=\"G2975\"* precious|strong=\"G2472\"* faith|strong=\"G4102\"* with|strong=\"G1722\"* us|strong=\"G2249\"* in|strong=\"G1722\"* the|strong=\"G1722\"* righteousness|strong=\"G1343\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* be|strong=\"G2532\"* multiplied|strong=\"G4129\"* in|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"*," + }, + { + "verseNum": 3, + "text": "seeing|strong=\"G1223\"* that|strong=\"G3588\"* his|strong=\"G3956\"* divine|strong=\"G2304\"* power|strong=\"G1411\"* has|strong=\"G2532\"* granted|strong=\"G1433\"* to|strong=\"G4314\"* us|strong=\"G2249\"* all|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* pertain|strong=\"G3588\"* to|strong=\"G4314\"* life|strong=\"G2222\"* and|strong=\"G2532\"* godliness|strong=\"G2150\"*, through|strong=\"G1223\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G1223\"* him|strong=\"G3588\"* who|strong=\"G3588\"* called|strong=\"G2564\"* us|strong=\"G2249\"* by|strong=\"G1223\"* his|strong=\"G3956\"* own|strong=\"G2398\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* virtue|strong=\"G1411\"*," + }, + { + "verseNum": 4, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G3739\"* granted|strong=\"G1433\"* to|strong=\"G2443\"* us|strong=\"G2249\"* his|strong=\"G1223\"* precious|strong=\"G5093\"* and|strong=\"G2532\"* exceedingly|strong=\"G3173\"* great|strong=\"G3173\"* promises|strong=\"G1862\"*; that|strong=\"G2443\"* through|strong=\"G1223\"* these|strong=\"G3778\"* you|strong=\"G3739\"* may|strong=\"G2532\"* become|strong=\"G1096\"* partakers|strong=\"G2844\"* of|strong=\"G1223\"* the|strong=\"G1722\"* divine|strong=\"G2304\"* nature|strong=\"G5449\"*, having|strong=\"G2532\"* escaped from|strong=\"G2532\"* the|strong=\"G1722\"* corruption|strong=\"G5356\"* that|strong=\"G2443\"* is|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* by|strong=\"G1223\"* lust|strong=\"G1939\"*." + }, + { + "verseNum": 5, + "text": "Yes|strong=\"G1161\"*, and|strong=\"G2532\"* for|strong=\"G1161\"* this|strong=\"G3778\"* very|strong=\"G2532\"* cause|strong=\"G3588\"* adding on|strong=\"G1722\"* your|strong=\"G2532\"* part|strong=\"G1161\"* all|strong=\"G3956\"* diligence|strong=\"G4710\"*, in|strong=\"G1722\"* your|strong=\"G2532\"* faith|strong=\"G4102\"* supply|strong=\"G2023\"* moral excellence; and|strong=\"G2532\"* in|strong=\"G1722\"* moral excellence, knowledge|strong=\"G1108\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"G1161\"* in|strong=\"G1722\"* knowledge|strong=\"G1108\"*, self-control|strong=\"G1466\"*; and|strong=\"G1161\"* in|strong=\"G1722\"* self-control|strong=\"G1466\"*, perseverance|strong=\"G5281\"*; and|strong=\"G1161\"* in|strong=\"G1722\"* perseverance|strong=\"G5281\"*, godliness|strong=\"G2150\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"G1161\"* in|strong=\"G1722\"* godliness|strong=\"G2150\"*, brotherly|strong=\"G5360\"* affection; and|strong=\"G1161\"* in|strong=\"G1722\"* brotherly|strong=\"G5360\"* affection, love|strong=\"G5360\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"G1063\"* if|strong=\"G2532\"* these|strong=\"G3778\"* things|strong=\"G3778\"* are|strong=\"G3588\"* yours|strong=\"G4771\"* and|strong=\"G2532\"* abound|strong=\"G4121\"*, they|strong=\"G2532\"* make|strong=\"G1519\"* you|strong=\"G5210\"* to|strong=\"G1519\"* not|strong=\"G3756\"* be|strong=\"G2532\"* idle or|strong=\"G2532\"* unfruitful in|strong=\"G1519\"* the|strong=\"G2532\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"G1063\"* he|strong=\"G3739\"* who|strong=\"G3739\"* lacks|strong=\"G3361\"* these|strong=\"G3778\"* things|strong=\"G3778\"* is|strong=\"G1510\"* blind|strong=\"G5185\"*, seeing only what|strong=\"G3739\"* is|strong=\"G1510\"* near, having|strong=\"G3361\"* forgotten|strong=\"G2983\"* the|strong=\"G3588\"* cleansing|strong=\"G2512\"* from|strong=\"G3588\"* his|strong=\"G2983\"* old|strong=\"G3819\"* sins." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1352\"*, brothers,+ 1:10 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.” * be|strong=\"G2532\"* more|strong=\"G3123\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* make|strong=\"G4160\"* your|strong=\"G2532\"* calling|strong=\"G2821\"* and|strong=\"G2532\"* election|strong=\"G1589\"* sure. For|strong=\"G1063\"* if|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, you|strong=\"G5210\"* will|strong=\"G2532\"* never|strong=\"G3756\"* stumble|strong=\"G4417\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"G1063\"* thus|strong=\"G3779\"* you|strong=\"G5210\"* will|strong=\"G2532\"* be|strong=\"G2532\"* richly|strong=\"G4146\"* supplied|strong=\"G2023\"* with|strong=\"G2532\"* the|strong=\"G2532\"* entrance|strong=\"G1529\"* into|strong=\"G1519\"* the|strong=\"G2532\"* eternal Kingdom of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1352\"* I|strong=\"G2532\"* will|strong=\"G3195\"* not|strong=\"G2532\"* be|strong=\"G2532\"* negligent to|strong=\"G2532\"* remind|strong=\"G5279\"* you|strong=\"G5210\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, though|strong=\"G2539\"* you|strong=\"G5210\"* know|strong=\"G1492\"* them|strong=\"G3588\"* and|strong=\"G2532\"* are|strong=\"G3588\"* established|strong=\"G4741\"* in|strong=\"G1722\"* the|strong=\"G1722\"* present|strong=\"G3918\"* truth." + }, + { + "verseNum": 13, + "text": "I|strong=\"G1161\"* think|strong=\"G2233\"* it|strong=\"G1161\"* right|strong=\"G1342\"*, as|strong=\"G3745\"* long|strong=\"G3745\"* as|strong=\"G3745\"* I|strong=\"G1161\"* am|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3778\"* tent, to|strong=\"G1909\"* stir|strong=\"G1326\"* you|strong=\"G5210\"* up|strong=\"G1326\"* by|strong=\"G1722\"* reminding you|strong=\"G5210\"*," + }, + { + "verseNum": 14, + "text": "knowing|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G2532\"* putting|strong=\"G2532\"* off of|strong=\"G2532\"* my|strong=\"G3708\"* tent comes|strong=\"G1510\"* swiftly, even|strong=\"G2532\"* as|strong=\"G2531\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* made|strong=\"G1213\"* clear|strong=\"G1213\"* to|strong=\"G2532\"* me|strong=\"G1473\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"G1161\"*, I|strong=\"G2532\"* will|strong=\"G2532\"* make|strong=\"G4160\"* every|strong=\"G2532\"* effort|strong=\"G4704\"* that|strong=\"G3588\"* you|strong=\"G5210\"* may|strong=\"G2532\"* always|strong=\"G1539\"* be|strong=\"G2532\"* able|strong=\"G2192\"* to|strong=\"G2532\"* remember|strong=\"G4160\"* these|strong=\"G3778\"* things|strong=\"G3778\"* even|strong=\"G2532\"* after|strong=\"G3326\"* my|strong=\"G1699\"* departure|strong=\"G1841\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G1063\"* we|strong=\"G2249\"* didn’t|strong=\"G3588\"* follow|strong=\"G1811\"* cunningly|strong=\"G1811\"* devised|strong=\"G4679\"* fables|strong=\"G3454\"* when|strong=\"G2532\"* we|strong=\"G2249\"* made|strong=\"G1096\"* known|strong=\"G1107\"* to|strong=\"G2532\"* you|strong=\"G5210\"* the|strong=\"G2532\"* power|strong=\"G1411\"* and|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2532\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, but|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G3588\"* eyewitnesses|strong=\"G2030\"* of|strong=\"G2532\"* his|strong=\"G2532\"* majesty|strong=\"G3168\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* he|strong=\"G2532\"* received|strong=\"G2983\"* from|strong=\"G3844\"* God|strong=\"G2316\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* honor|strong=\"G5092\"* and|strong=\"G2532\"* glory|strong=\"G1391\"* when|strong=\"G2532\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G2532\"* to|strong=\"G1519\"* him|strong=\"G3588\"* from|strong=\"G3844\"* the|strong=\"G2532\"* Majestic|strong=\"G3169\"* Glory|strong=\"G1391\"*, “This|strong=\"G3778\"* is|strong=\"G1510\"* my|strong=\"G1473\"* beloved Son|strong=\"G5207\"*, in|strong=\"G1519\"* whom|strong=\"G3739\"* I|strong=\"G1473\"* am|strong=\"G1510\"* well|strong=\"G2532\"* pleased|strong=\"G2106\"*.”+ 1:17 Matthew 17:5; Mark 9:7; Luke 9:35*" + }, + { + "verseNum": 18, + "text": "We|strong=\"G2249\"* heard this|strong=\"G3778\"* voice|strong=\"G5456\"* come|strong=\"G1510\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* when|strong=\"G2532\"* we|strong=\"G2249\"* were|strong=\"G1510\"* with|strong=\"G1722\"* him|strong=\"G3588\"* on|strong=\"G1722\"* the|strong=\"G1722\"* holy mountain|strong=\"G3735\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"G3739\"* have|strong=\"G2192\"* the|strong=\"G1722\"* more|strong=\"G2192\"* sure word|strong=\"G3056\"* of|strong=\"G3056\"* prophecy|strong=\"G4397\"*; and|strong=\"G2532\"* you|strong=\"G5210\"* do|strong=\"G4160\"* well|strong=\"G2573\"* that|strong=\"G3739\"* you|strong=\"G5210\"* heed|strong=\"G4337\"* it|strong=\"G2532\"* as|strong=\"G5613\"* to|strong=\"G2532\"* a|strong=\"G2192\"* lamp|strong=\"G3088\"* shining|strong=\"G5316\"* in|strong=\"G1722\"* a|strong=\"G2192\"* dark place|strong=\"G5117\"*, until|strong=\"G2193\"* the|strong=\"G1722\"* day|strong=\"G2250\"* dawns|strong=\"G1306\"* and|strong=\"G2532\"* the|strong=\"G1722\"* morning|strong=\"G2250\"* star|strong=\"G5459\"* arises in|strong=\"G1722\"* your|strong=\"G2192\"* hearts|strong=\"G2588\"*," + }, + { + "verseNum": 20, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"* first|strong=\"G4413\"*, that|strong=\"G3754\"* no|strong=\"G3756\"* prophecy|strong=\"G4394\"* of|strong=\"G3956\"* Scripture|strong=\"G1124\"* is|strong=\"G3778\"* of|strong=\"G3956\"* private|strong=\"G2398\"* interpretation|strong=\"G1955\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* no|strong=\"G3756\"* prophecy|strong=\"G4394\"* ever|strong=\"G4218\"* came|strong=\"G5342\"* by|strong=\"G5259\"* the|strong=\"G1063\"* will|strong=\"G2307\"* of|strong=\"G5259\"* man|strong=\"G3756\"*, but|strong=\"G1063\"* holy|strong=\"G4151\"* men of|strong=\"G5259\"* God|strong=\"G2316\"* spoke|strong=\"G2980\"*, being moved|strong=\"G5342\"* by|strong=\"G5259\"* the|strong=\"G1063\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"G1161\"* false|strong=\"G5578\"* prophets|strong=\"G5578\"* also|strong=\"G2532\"* arose|strong=\"G1096\"* among|strong=\"G1722\"* the|strong=\"G1722\"* people|strong=\"G2992\"*, as|strong=\"G5613\"* false|strong=\"G5578\"* teachers|strong=\"G5572\"* will|strong=\"G1510\"* also|strong=\"G2532\"* be|strong=\"G1096\"* among|strong=\"G1722\"* you|strong=\"G5210\"*, who|strong=\"G3588\"* will|strong=\"G1510\"* secretly|strong=\"G3919\"* bring|strong=\"G1863\"* in|strong=\"G1722\"* destructive heresies, denying even|strong=\"G2532\"* the|strong=\"G1722\"* Master|strong=\"G1203\"* who|strong=\"G3588\"* bought them|strong=\"G3588\"*, bringing|strong=\"G1863\"* on|strong=\"G1722\"* themselves|strong=\"G1438\"* swift|strong=\"G5031\"* destruction." + }, + { + "verseNum": 2, + "text": "Many|strong=\"G4183\"* will|strong=\"G2532\"* follow|strong=\"G1811\"* their|strong=\"G2532\"* immoral+ 2:2 TR reads “destructive” instead of “immoral”* ways|strong=\"G3598\"*, and|strong=\"G2532\"* as|strong=\"G2532\"* a|strong=\"G2532\"* result, the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G1223\"* the|strong=\"G2532\"* truth will|strong=\"G2532\"* be|strong=\"G2532\"* maligned." + }, + { + "verseNum": 3, + "text": "In|strong=\"G1722\"* covetousness|strong=\"G4124\"* they|strong=\"G2532\"* will|strong=\"G2532\"* exploit|strong=\"G1710\"* you|strong=\"G5210\"* with|strong=\"G1722\"* deceptive words|strong=\"G3056\"*: whose|strong=\"G3739\"* sentence|strong=\"G2917\"* now|strong=\"G2532\"* from|strong=\"G2532\"* of|strong=\"G3056\"* old|strong=\"G2532\"* doesn’t|strong=\"G3588\"* linger, and|strong=\"G2532\"* their|strong=\"G2532\"* destruction will|strong=\"G2532\"* not|strong=\"G3756\"* slumber." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"* God|strong=\"G2316\"* didn’t|strong=\"G3588\"* spare|strong=\"G5339\"* angels when|strong=\"G3588\"* they|strong=\"G3588\"* sinned, but|strong=\"G1487\"* cast|strong=\"G3756\"* them|strong=\"G3588\"* down|strong=\"G3860\"* to|strong=\"G1519\"* Tartarus,+ 2:4 Tartarus is another name for Hell* and|strong=\"G2316\"* committed|strong=\"G3860\"* them|strong=\"G3588\"* to|strong=\"G1519\"* pits of|strong=\"G2316\"* darkness|strong=\"G2217\"* to|strong=\"G1519\"* be|strong=\"G3756\"* reserved|strong=\"G5083\"* for|strong=\"G1063\"* judgment|strong=\"G2920\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* didn’t spare|strong=\"G5339\"* the|strong=\"G2532\"* ancient world|strong=\"G2889\"*, but|strong=\"G2532\"* preserved|strong=\"G5442\"* Noah|strong=\"G3575\"* with|strong=\"G2532\"* seven|strong=\"G3590\"* others|strong=\"G3590\"*, a|strong=\"G2532\"* preacher|strong=\"G2783\"* of|strong=\"G2532\"* righteousness|strong=\"G1343\"*, when|strong=\"G2532\"* he|strong=\"G2532\"* brought|strong=\"G1863\"* a|strong=\"G2532\"* flood|strong=\"G2627\"* on|strong=\"G3756\"* the|strong=\"G2532\"* world|strong=\"G2889\"* of|strong=\"G2532\"* the|strong=\"G2532\"* ungodly," + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* turning|strong=\"G5077\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2532\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Gomorrah|strong=\"G1116\"* into|strong=\"G1116\"* ashes|strong=\"G5077\"*, condemned|strong=\"G2632\"* them|strong=\"G2532\"* to|strong=\"G2532\"* destruction|strong=\"G2692\"*, having|strong=\"G2532\"* made|strong=\"G5087\"* them|strong=\"G2532\"* an|strong=\"G2532\"* example|strong=\"G5262\"* to|strong=\"G2532\"* those|strong=\"G3195\"* who|strong=\"G2532\"* would|strong=\"G3195\"* live|strong=\"G2532\"* in|strong=\"G2532\"* an|strong=\"G2532\"* ungodly way," + }, + { + "verseNum": 7, + "text": "and|strong=\"G2532\"* delivered|strong=\"G4506\"* righteous|strong=\"G1342\"* Lot|strong=\"G3091\"*, who|strong=\"G3588\"* was|strong=\"G3588\"* very|strong=\"G2532\"* distressed by|strong=\"G1722\"* the|strong=\"G1722\"* lustful life of|strong=\"G5259\"* the|strong=\"G1722\"* wicked|strong=\"G3588\"*" + }, + { + "verseNum": 8, + "text": "(for|strong=\"G1063\"* that|strong=\"G3588\"* righteous|strong=\"G1342\"* man|strong=\"G1342\"* dwelling|strong=\"G1460\"* among|strong=\"G1722\"* them|strong=\"G3588\"* was|strong=\"G3588\"* tormented in|strong=\"G1722\"* his|strong=\"G1722\"* righteous|strong=\"G1342\"* soul|strong=\"G5590\"* from|strong=\"G1537\"* day|strong=\"G2250\"* to|strong=\"G2532\"* day|strong=\"G2250\"* with|strong=\"G1722\"* seeing and|strong=\"G2532\"* hearing lawless deeds|strong=\"G2041\"*)," + }, + { + "verseNum": 9, + "text": "then|strong=\"G1161\"* the|strong=\"G1519\"* Lord|strong=\"G2962\"* knows|strong=\"G1492\"* how|strong=\"G1492\"* to|strong=\"G1519\"* deliver|strong=\"G4506\"* the|strong=\"G1519\"* godly|strong=\"G2152\"* out|strong=\"G1537\"* of|strong=\"G1537\"* temptation|strong=\"G3986\"* and|strong=\"G1161\"* to|strong=\"G1519\"* keep|strong=\"G5083\"* the|strong=\"G1519\"* unrighteous under|strong=\"G1537\"* punishment|strong=\"G2849\"* for|strong=\"G1519\"* the|strong=\"G1519\"* day|strong=\"G2250\"* of|strong=\"G1537\"* judgment|strong=\"G2920\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"G1161\"* chiefly|strong=\"G3122\"* those|strong=\"G3588\"* who|strong=\"G3588\"* walk|strong=\"G4198\"* after|strong=\"G3694\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G2532\"* defilement and|strong=\"G2532\"* despise|strong=\"G2706\"* authority|strong=\"G2963\"*. Daring|strong=\"G5113\"*, self-willed, they|strong=\"G2532\"* are|strong=\"G3588\"* not|strong=\"G3756\"* afraid|strong=\"G5141\"* to|strong=\"G2532\"* speak|strong=\"G1161\"* evil|strong=\"G2532\"* of|strong=\"G2532\"* dignitaries," + }, + { + "verseNum": 11, + "text": "whereas|strong=\"G3699\"* angels, though|strong=\"G2532\"* greater|strong=\"G3173\"* in|strong=\"G2596\"* might|strong=\"G2479\"* and|strong=\"G2532\"* power|strong=\"G1411\"*, don’t bring|strong=\"G5342\"* a|strong=\"G2532\"* slanderous judgment|strong=\"G2920\"* against|strong=\"G2596\"* them|strong=\"G5342\"* before|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"*, as|strong=\"G5613\"* unreasoning creatures|strong=\"G2226\"*, born|strong=\"G1080\"* natural|strong=\"G5446\"* animals|strong=\"G2226\"* to|strong=\"G1519\"* be|strong=\"G2532\"* taken and|strong=\"G2532\"* destroyed|strong=\"G5356\"*, speaking evil|strong=\"G2532\"* in|strong=\"G1722\"* matters about|strong=\"G5613\"* which|strong=\"G3739\"* they|strong=\"G2532\"* are|strong=\"G3588\"* ignorant, will|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* destroying surely be|strong=\"G2532\"* destroyed|strong=\"G5356\"*," + }, + { + "verseNum": 13, + "text": "receiving|strong=\"G2865\"* the|strong=\"G1722\"* wages|strong=\"G3408\"* of|strong=\"G2250\"* unrighteousness; people|strong=\"G3588\"* who|strong=\"G3588\"* count|strong=\"G2233\"* it|strong=\"G2532\"* pleasure|strong=\"G2237\"* to|strong=\"G2532\"* revel|strong=\"G5172\"* in|strong=\"G1722\"* the|strong=\"G1722\"* daytime|strong=\"G2250\"*, spots|strong=\"G4696\"* and|strong=\"G2532\"* defects, reveling|strong=\"G1792\"* in|strong=\"G1722\"* their|strong=\"G2532\"* deceit while|strong=\"G1722\"* they|strong=\"G2532\"* feast|strong=\"G4910\"* with|strong=\"G1722\"* you|strong=\"G5210\"*;" + }, + { + "verseNum": 14, + "text": "having|strong=\"G2192\"* eyes|strong=\"G3788\"* full|strong=\"G3324\"* of|strong=\"G2532\"* adultery|strong=\"G3428\"*, and|strong=\"G2532\"* who|strong=\"G2532\"* can’t cease from|strong=\"G2532\"* sin, enticing|strong=\"G1185\"* unsettled souls|strong=\"G5590\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* heart|strong=\"G2588\"* trained|strong=\"G1128\"* in|strong=\"G2532\"* greed|strong=\"G4124\"*, accursed|strong=\"G2671\"* children|strong=\"G5043\"*!" + }, + { + "verseNum": 15, + "text": "Forsaking|strong=\"G2641\"* the|strong=\"G3588\"* right|strong=\"G2117\"* way|strong=\"G3598\"*, they|strong=\"G3588\"* went|strong=\"G3588\"* astray|strong=\"G4105\"*, having followed|strong=\"G1811\"* the|strong=\"G3588\"* way|strong=\"G3598\"* of|strong=\"G3598\"* Balaam the|strong=\"G3588\"* son of|strong=\"G3598\"* Beor, who|strong=\"G3739\"* loved the|strong=\"G3588\"* wages|strong=\"G3408\"* of|strong=\"G3598\"* wrongdoing;" + }, + { + "verseNum": 16, + "text": "but|strong=\"G1161\"* he|strong=\"G1161\"* was|strong=\"G3588\"* rebuked|strong=\"G1649\"* for|strong=\"G1161\"* his|strong=\"G1722\"* own|strong=\"G2398\"* disobedience. A|strong=\"G2192\"* speechless donkey|strong=\"G5268\"* spoke with|strong=\"G1722\"* a|strong=\"G2192\"* man’s|strong=\"G2192\"* voice|strong=\"G5456\"* and|strong=\"G1161\"* stopped the|strong=\"G1722\"* madness|strong=\"G3913\"* of|strong=\"G1722\"* the|strong=\"G1722\"* prophet|strong=\"G4396\"*." + }, + { + "verseNum": 17, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* wells|strong=\"G4077\"* without|strong=\"G2532\"* water, clouds driven|strong=\"G1643\"* by|strong=\"G5259\"* a|strong=\"G2532\"* storm|strong=\"G2978\"*, for|strong=\"G2532\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* blackness|strong=\"G2217\"* of|strong=\"G5259\"* darkness|strong=\"G4655\"* has|strong=\"G3739\"* been|strong=\"G1510\"* reserved|strong=\"G5083\"* forever." + }, + { + "verseNum": 18, + "text": "For|strong=\"G1063\"*, uttering great|strong=\"G5350\"* swelling|strong=\"G5246\"* words|strong=\"G3641\"* of|strong=\"G1722\"* emptiness, they|strong=\"G3588\"* entice|strong=\"G1185\"* in|strong=\"G1722\"* the|strong=\"G1722\"* lusts|strong=\"G1939\"* of|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, by|strong=\"G1722\"* licentiousness, those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* indeed|strong=\"G1063\"* escaping from|strong=\"G3588\"* those|strong=\"G3588\"* who|strong=\"G3588\"* live in|strong=\"G1722\"* error|strong=\"G4106\"*;" + }, + { + "verseNum": 19, + "text": "promising|strong=\"G1861\"* them|strong=\"G3588\"* liberty|strong=\"G1657\"*, while|strong=\"G3739\"* they|strong=\"G2532\"* themselves|strong=\"G3778\"* are|strong=\"G3588\"* bondservants of|strong=\"G2532\"* corruption|strong=\"G5356\"*; for|strong=\"G1063\"* a|strong=\"G2532\"* man|strong=\"G5100\"* is|strong=\"G3588\"* brought|strong=\"G2532\"* into|strong=\"G1401\"* bondage|strong=\"G1402\"* by|strong=\"G2532\"* whoever|strong=\"G3739\"* overcomes him|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"G1063\"* if|strong=\"G1487\"*, after|strong=\"G1161\"* they|strong=\"G2532\"* have|strong=\"G2532\"* escaped the|strong=\"G1722\"* defilement of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* through|strong=\"G1722\"* the|strong=\"G1722\"* knowledge|strong=\"G1922\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, they|strong=\"G2532\"* are|strong=\"G3588\"* again|strong=\"G3825\"* entangled|strong=\"G1707\"* in|strong=\"G1722\"* it|strong=\"G2532\"* and|strong=\"G2532\"* overcome|strong=\"G2274\"*, the|strong=\"G1722\"* last|strong=\"G2078\"* state has|strong=\"G2962\"* become|strong=\"G1096\"* worse|strong=\"G5501\"* for|strong=\"G1063\"* them|strong=\"G3588\"* than|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"G1063\"* it|strong=\"G1063\"* would|strong=\"G1510\"* be|strong=\"G1510\"* better|strong=\"G2909\"* for|strong=\"G1063\"* them|strong=\"G3588\"* not|strong=\"G3361\"* to|strong=\"G3361\"* have|strong=\"G1510\"* known|strong=\"G1921\"* the|strong=\"G1537\"* way|strong=\"G3598\"* of|strong=\"G1537\"* righteousness|strong=\"G1343\"*, than|strong=\"G2228\"* after|strong=\"G1063\"* knowing|strong=\"G1921\"* it|strong=\"G1063\"*, to|strong=\"G3361\"* turn|strong=\"G3860\"* back|strong=\"G5290\"* from|strong=\"G1537\"* the|strong=\"G1537\"* holy commandment|strong=\"G1785\"* delivered|strong=\"G3860\"* to|strong=\"G3361\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"G2532\"* it|strong=\"G2532\"* has|strong=\"G2532\"* happened|strong=\"G4819\"* to|strong=\"G1519\"* them|strong=\"G3588\"* according|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* true|strong=\"G3588\"* proverb|strong=\"G3942\"*, “The|strong=\"G2532\"* dog|strong=\"G2965\"* turns|strong=\"G1994\"* to|strong=\"G1519\"* his|strong=\"G1519\"* own|strong=\"G2398\"* vomit|strong=\"G1829\"* again|strong=\"G1994\"*,”+ 2:22 Proverbs 26:11* and|strong=\"G2532\"* “the|strong=\"G2532\"* sow|strong=\"G5300\"* that|strong=\"G3588\"* has|strong=\"G2532\"* washed|strong=\"G3068\"* to|strong=\"G1519\"* wallowing|strong=\"G2946\"* in|strong=\"G1519\"* the|strong=\"G2532\"* mire|strong=\"G1004\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* now|strong=\"G2235\"*, beloved, the|strong=\"G1722\"* second|strong=\"G1208\"* letter|strong=\"G1992\"* that|strong=\"G3739\"* I|strong=\"G3739\"* have|strong=\"G5210\"* written|strong=\"G1125\"* to|strong=\"G1722\"* you|strong=\"G5210\"*; and|strong=\"G3588\"* in|strong=\"G1722\"* both|strong=\"G3588\"* of|strong=\"G1722\"* them|strong=\"G3588\"* I|strong=\"G3739\"* stir|strong=\"G1326\"* up|strong=\"G1326\"* your|strong=\"G1722\"* sincere|strong=\"G1506\"* mind|strong=\"G1271\"* by|strong=\"G1722\"* reminding you|strong=\"G5210\"*" + }, + { + "verseNum": 2, + "text": "that|strong=\"G3588\"* you|strong=\"G5210\"* should|strong=\"G3588\"* remember|strong=\"G3403\"* the|strong=\"G2532\"* words|strong=\"G4487\"* which|strong=\"G3588\"* were|strong=\"G3588\"* spoken before|strong=\"G4302\"* by|strong=\"G5259\"* the|strong=\"G2532\"* holy prophets|strong=\"G4396\"* and|strong=\"G2532\"* the|strong=\"G2532\"* commandment|strong=\"G1785\"* of|strong=\"G5259\"* us, the|strong=\"G2532\"* apostles of|strong=\"G5259\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"*," + }, + { + "verseNum": 3, + "text": "knowing|strong=\"G1097\"* this|strong=\"G3778\"* first|strong=\"G4413\"*, that|strong=\"G3754\"* in|strong=\"G1722\"* the|strong=\"G1722\"* last|strong=\"G2078\"* days|strong=\"G2250\"* mockers|strong=\"G1703\"* will|strong=\"G3778\"* come|strong=\"G2064\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G2596\"* own|strong=\"G2398\"* lusts|strong=\"G1939\"*" + }, + { + "verseNum": 4, + "text": "and|strong=\"G2532\"* saying|strong=\"G3004\"*, “Where|strong=\"G4226\"* is|strong=\"G1510\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* of|strong=\"G2532\"* his|strong=\"G3956\"* coming|strong=\"G3952\"*? For|strong=\"G1063\"*, from|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G3588\"* that|strong=\"G3739\"* the|strong=\"G2532\"* fathers|strong=\"G3962\"* fell|strong=\"G2837\"* asleep|strong=\"G2837\"*, all|strong=\"G3956\"* things|strong=\"G3956\"* continue|strong=\"G1265\"* as|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning of|strong=\"G2532\"* the|strong=\"G2532\"* creation|strong=\"G2937\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"G1063\"* they|strong=\"G2532\"* willfully forget that|strong=\"G3754\"* there|strong=\"G2532\"* were|strong=\"G1510\"* heavens|strong=\"G3772\"* from|strong=\"G1537\"* of|strong=\"G1537\"* old|strong=\"G2532\"*, and|strong=\"G2532\"* an|strong=\"G2532\"* earth|strong=\"G1093\"* formed|strong=\"G4921\"* out|strong=\"G1537\"* of|strong=\"G1537\"* water|strong=\"G5204\"* and|strong=\"G2532\"* amid water|strong=\"G5204\"* by|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 6, + "text": "by|strong=\"G1223\"* which|strong=\"G3739\"* means|strong=\"G1223\"* the|strong=\"G1223\"* world|strong=\"G2889\"* that|strong=\"G3739\"* existed then|strong=\"G5119\"*, being|strong=\"G3739\"* overflowed|strong=\"G2626\"* with|strong=\"G1223\"* water|strong=\"G5204\"*, perished." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* the|strong=\"G2532\"* heavens|strong=\"G3772\"* that|strong=\"G3588\"* exist|strong=\"G1510\"* now|strong=\"G1161\"* and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, by|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G2532\"* word|strong=\"G3056\"* have|strong=\"G2532\"* been|strong=\"G1510\"* stored|strong=\"G2343\"* up|strong=\"G2343\"* for|strong=\"G1519\"* fire|strong=\"G4442\"*, being|strong=\"G1510\"* reserved|strong=\"G5083\"* against|strong=\"G1519\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G3056\"* judgment|strong=\"G2920\"* and|strong=\"G2532\"* destruction of|strong=\"G3056\"* ungodly men|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"G1161\"* don’t forget this|strong=\"G3778\"* one|strong=\"G1520\"* thing|strong=\"G1520\"*, beloved, that|strong=\"G3754\"* one|strong=\"G1520\"* day|strong=\"G2250\"* is|strong=\"G3778\"* with|strong=\"G3844\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* as|strong=\"G5613\"* a|strong=\"G5613\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*, and|strong=\"G2532\"* a|strong=\"G5613\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* as|strong=\"G5613\"* one|strong=\"G1520\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G1519\"* Lord|strong=\"G2962\"* is|strong=\"G3588\"* not|strong=\"G3756\"* slow|strong=\"G1019\"* concerning|strong=\"G1519\"* his|strong=\"G3956\"* promise|strong=\"G1860\"*, as|strong=\"G5613\"* some|strong=\"G5100\"* count|strong=\"G2233\"* slowness|strong=\"G1022\"*; but|strong=\"G3361\"* he|strong=\"G3588\"* is|strong=\"G3588\"* patient|strong=\"G3114\"* with|strong=\"G1223\"* us|strong=\"G1519\"*, not|strong=\"G3756\"* wishing|strong=\"G1014\"* that|strong=\"G3588\"* anyone|strong=\"G5100\"* should|strong=\"G5100\"* perish, but|strong=\"G3361\"* that|strong=\"G3588\"* all|strong=\"G3956\"* should|strong=\"G5100\"* come|strong=\"G5562\"* to|strong=\"G1519\"* repentance|strong=\"G3341\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* will|strong=\"G2532\"* come|strong=\"G2240\"* as|strong=\"G5613\"* a|strong=\"G5613\"* thief|strong=\"G2812\"* in|strong=\"G1722\"* the|strong=\"G1722\"* night, in|strong=\"G1722\"* which|strong=\"G3739\"* the|strong=\"G1722\"* heavens|strong=\"G3772\"* will|strong=\"G2532\"* pass|strong=\"G3928\"* away|strong=\"G3928\"* with|strong=\"G1722\"* a|strong=\"G5613\"* great|strong=\"G2532\"* noise|strong=\"G4500\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* elements|strong=\"G4747\"* will|strong=\"G2532\"* be|strong=\"G2532\"* dissolved|strong=\"G3089\"* with|strong=\"G1722\"* fervent heat|strong=\"G2741\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G1722\"* works|strong=\"G2041\"* that|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* burned|strong=\"G2618\"* up|strong=\"G2618\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"G3767\"*, since all|strong=\"G3956\"* these|strong=\"G3778\"* things|strong=\"G3956\"* will|strong=\"G2532\"* be|strong=\"G2532\"* destroyed|strong=\"G3089\"* like this|strong=\"G3778\"*, what|strong=\"G4217\"* kind|strong=\"G3956\"* of|strong=\"G2532\"* people|strong=\"G3956\"* ought|strong=\"G1163\"* you|strong=\"G5210\"* to|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1722\"* holy living and|strong=\"G2532\"* godliness|strong=\"G2150\"*," + }, + { + "verseNum": 12, + "text": "looking|strong=\"G4328\"* for|strong=\"G1223\"* and|strong=\"G2532\"* earnestly|strong=\"G2532\"* desiring the|strong=\"G2532\"* coming|strong=\"G3952\"* of|strong=\"G2250\"* the|strong=\"G2532\"* day|strong=\"G2250\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, which|strong=\"G3739\"* will|strong=\"G2316\"* cause|strong=\"G1223\"* the|strong=\"G2532\"* burning|strong=\"G4448\"* heavens|strong=\"G3772\"* to|strong=\"G2532\"* be|strong=\"G2532\"* dissolved|strong=\"G3089\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elements|strong=\"G4747\"* will|strong=\"G2316\"* melt|strong=\"G5080\"* with|strong=\"G1223\"* fervent heat|strong=\"G2741\"*?" + }, + { + "verseNum": 13, + "text": "But|strong=\"G1161\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* promise|strong=\"G1862\"*, we|strong=\"G3739\"* look|strong=\"G4328\"* for|strong=\"G1161\"* new|strong=\"G2537\"* heavens|strong=\"G3772\"* and|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G2537\"* earth|strong=\"G1093\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* righteousness|strong=\"G1343\"* dwells|strong=\"G2730\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"G1352\"*, beloved, seeing that|strong=\"G2532\"* you|strong=\"G1722\"* look|strong=\"G4328\"* for|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, be|strong=\"G2532\"* diligent|strong=\"G4704\"* to|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* in|strong=\"G1722\"* peace|strong=\"G1515\"*, without|strong=\"G2532\"* defect and|strong=\"G2532\"* blameless in|strong=\"G1722\"* his|strong=\"G1722\"* sight." + }, + { + "verseNum": 15, + "text": "Regard|strong=\"G2233\"* the|strong=\"G2532\"* patience|strong=\"G3115\"* of|strong=\"G2532\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* as|strong=\"G2531\"* salvation|strong=\"G4991\"*; even|strong=\"G2532\"* as|strong=\"G2531\"* our|strong=\"G2532\"* beloved brother Paul|strong=\"G3972\"* also|strong=\"G2532\"*, according|strong=\"G2596\"* to|strong=\"G2532\"* the|strong=\"G2532\"* wisdom|strong=\"G4678\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*, wrote|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*," + }, + { + "verseNum": 16, + "text": "as|strong=\"G5613\"* also|strong=\"G2532\"* in|strong=\"G1722\"* all|strong=\"G3956\"* of|strong=\"G4012\"* his|strong=\"G3956\"* letters|strong=\"G1992\"*, speaking|strong=\"G2980\"* in|strong=\"G1722\"* them|strong=\"G3588\"* of|strong=\"G4012\"* these|strong=\"G3778\"* things|strong=\"G3956\"*. In|strong=\"G1722\"* those|strong=\"G3588\"*, there|strong=\"G2532\"* are|strong=\"G1510\"* some|strong=\"G5100\"* things|strong=\"G3956\"* that|strong=\"G3739\"* are|strong=\"G1510\"* hard|strong=\"G1425\"* to|strong=\"G4314\"* understand|strong=\"G1425\"*, which|strong=\"G3739\"* the|strong=\"G1722\"* ignorant and|strong=\"G2532\"* unsettled twist|strong=\"G4761\"*, as|strong=\"G5613\"* they|strong=\"G2532\"* also|strong=\"G2532\"* do|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* other|strong=\"G3062\"* Scriptures|strong=\"G1124\"*, to|strong=\"G4314\"* their|strong=\"G2532\"* own|strong=\"G2398\"* destruction." + }, + { + "verseNum": 17, + "text": "You|strong=\"G5210\"* therefore|strong=\"G3767\"*, beloved, knowing|strong=\"G4267\"* these|strong=\"G3588\"* things|strong=\"G3588\"* beforehand|strong=\"G4267\"*, beware|strong=\"G5442\"*, lest|strong=\"G3361\"* being|strong=\"G2443\"* carried|strong=\"G4879\"* away|strong=\"G4879\"* with|strong=\"G3588\"* the|strong=\"G3588\"* error|strong=\"G4106\"* of|strong=\"G3588\"* the|strong=\"G3588\"* wicked|strong=\"G3588\"*, you|strong=\"G5210\"* fall|strong=\"G1601\"* from|strong=\"G3588\"* your|strong=\"G3588\"* own|strong=\"G2398\"* steadfastness|strong=\"G4740\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"G1161\"* grow in|strong=\"G1722\"* the|strong=\"G1722\"* grace|strong=\"G5485\"* and|strong=\"G2532\"* knowledge|strong=\"G1108\"* of|strong=\"G2250\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* Savior|strong=\"G4990\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. To|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G1722\"* glory|strong=\"G1391\"* both|strong=\"G2532\"* now|strong=\"G1161\"* and|strong=\"G2532\"* forever|strong=\"G1519\"*. Amen." + } + ] + } + ] + }, + { + "name": "1 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "That|strong=\"G3739\"* which|strong=\"G3739\"* was|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* heard, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G3708\"* with|strong=\"G2532\"* our|strong=\"G2532\"* eyes|strong=\"G3788\"*, that|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G2249\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* our|strong=\"G2532\"* hands|strong=\"G5495\"* touched|strong=\"G5584\"*, concerning|strong=\"G4012\"* the|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G4012\"* life|strong=\"G2222\"*" + }, + { + "verseNum": 2, + "text": "(and|strong=\"G2532\"* the|strong=\"G2532\"* life|strong=\"G2222\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"*, and|strong=\"G2532\"* we|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G3708\"*, and|strong=\"G2532\"* testify|strong=\"G3140\"*, and|strong=\"G2532\"* declare to|strong=\"G4314\"* you|strong=\"G5210\"* the|strong=\"G2532\"* life|strong=\"G2222\"*, the|strong=\"G2532\"* eternal life|strong=\"G2222\"*, which|strong=\"G3588\"* was|strong=\"G1510\"* with|strong=\"G4314\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"* to|strong=\"G4314\"* us|strong=\"G2249\"*);" + }, + { + "verseNum": 3, + "text": "that|strong=\"G2443\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* seen|strong=\"G3708\"* and|strong=\"G2532\"* heard we|strong=\"G2249\"* declare to|strong=\"G2443\"* you|strong=\"G5210\"*, that|strong=\"G2443\"* you|strong=\"G5210\"* also|strong=\"G2532\"* may|strong=\"G2532\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* us|strong=\"G2249\"*. Yes|strong=\"G1161\"*, and|strong=\"G2532\"* our|strong=\"G2424\"* fellowship|strong=\"G2842\"* is|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* with|strong=\"G3326\"* his|strong=\"G3708\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*.+ 1:3 “Christ” means “Anointed One”.*" + }, + { + "verseNum": 4, + "text": "And|strong=\"G2532\"* we|strong=\"G2249\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G2443\"* you|strong=\"G1510\"*, that|strong=\"G2443\"* our|strong=\"G2532\"* joy|strong=\"G5479\"* may|strong=\"G2532\"* be|strong=\"G1510\"* fulfilled|strong=\"G4137\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* message which|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G2532\"* heard from|strong=\"G2532\"* him|strong=\"G3588\"* and|strong=\"G2532\"* announce to|strong=\"G2532\"* you|strong=\"G5210\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"* is|strong=\"G1510\"* no|strong=\"G3756\"* darkness|strong=\"G4653\"* at|strong=\"G1722\"* all|strong=\"G2532\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"G1437\"* we|strong=\"G1437\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G1437\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* him|strong=\"G3588\"* and|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4655\"*, we|strong=\"G1437\"* lie|strong=\"G5574\"* and|strong=\"G2532\"* don’t|strong=\"G3588\"* tell|strong=\"G3004\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 7, + "text": "But|strong=\"G1161\"* if|strong=\"G1437\"* we|strong=\"G2249\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"* as|strong=\"G5613\"* he|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* fellowship|strong=\"G2842\"* with|strong=\"G3326\"* one|strong=\"G3956\"* another|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* blood of|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5613\"* his|strong=\"G3956\"* Son|strong=\"G5207\"*, cleanses|strong=\"G2511\"* us|strong=\"G2249\"* from|strong=\"G2532\"* all|strong=\"G3956\"* sin." + }, + { + "verseNum": 8, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* no|strong=\"G3756\"* sin, we|strong=\"G2249\"* deceive|strong=\"G4105\"* ourselves|strong=\"G1438\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* truth is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* us|strong=\"G3004\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* confess|strong=\"G3670\"* our|strong=\"G2532\"* sins, he|strong=\"G2532\"* is|strong=\"G1510\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* to|strong=\"G2443\"* forgive us|strong=\"G2249\"* the|strong=\"G2532\"* sins and|strong=\"G2532\"* to|strong=\"G2443\"* cleanse|strong=\"G2511\"* us|strong=\"G2249\"* from|strong=\"G2532\"* all|strong=\"G3956\"* unrighteousness." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1437\"* we|strong=\"G2249\"* say|strong=\"G3004\"* that|strong=\"G3754\"* we|strong=\"G2249\"* haven’t|strong=\"G3588\"* sinned, we|strong=\"G2249\"* make|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* word|strong=\"G3056\"* is|strong=\"G1510\"* not|strong=\"G3756\"* in|strong=\"G1722\"* us|strong=\"G3004\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"G1473\"* little|strong=\"G5040\"* children|strong=\"G5040\"*, I|strong=\"G1473\"* write|strong=\"G1125\"* these|strong=\"G3778\"* things|strong=\"G3778\"* to|strong=\"G4314\"* you|strong=\"G5210\"* so|strong=\"G2443\"* that|strong=\"G2443\"* you|strong=\"G5210\"* may|strong=\"G2532\"* not|strong=\"G3361\"* sin. If|strong=\"G1437\"* anyone|strong=\"G5100\"* sins, we|strong=\"G1437\"* have|strong=\"G2192\"* a|strong=\"G2192\"* Counselor+ 2:1 Greek παρακλητον: Counselor, Helper, Intercessor, Advocate, and Comforter.* with|strong=\"G4314\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G2532\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 2, + "text": "And|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* atoning sacrifice+ 2:2 “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. * for|strong=\"G4012\"* our|strong=\"G2251\"* sins, and|strong=\"G2532\"* not|strong=\"G3756\"* for|strong=\"G4012\"* ours|strong=\"G1473\"* only|strong=\"G3440\"*, but|strong=\"G1161\"* also|strong=\"G2532\"* for|strong=\"G4012\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"G3778\"* is|strong=\"G3588\"* how|strong=\"G3754\"* we|strong=\"G1437\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G1437\"* know|strong=\"G1097\"* him|strong=\"G3588\"*: if|strong=\"G1437\"* we|strong=\"G1437\"* keep|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*." + }, + { + "verseNum": 4, + "text": "One|strong=\"G3588\"* who|strong=\"G3588\"* says|strong=\"G3004\"*, “I|strong=\"G2532\"* know|strong=\"G1097\"* him|strong=\"G3588\"*,” and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* keep|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*, is|strong=\"G1510\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* truth isn’t|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"G1161\"* God|strong=\"G2316\"*’s love has|strong=\"G2316\"* most|strong=\"G2316\"* certainly been|strong=\"G1510\"* perfected|strong=\"G5048\"* in|strong=\"G1722\"* whoever|strong=\"G3739\"* keeps|strong=\"G5083\"* his|strong=\"G1722\"* word|strong=\"G3056\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* how|strong=\"G3754\"* we|strong=\"G3739\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*:" + }, + { + "verseNum": 6, + "text": "he|strong=\"G2532\"* who|strong=\"G3588\"* says|strong=\"G3004\"* he|strong=\"G2532\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* ought|strong=\"G3784\"* himself|strong=\"G1565\"* also|strong=\"G2532\"* to|strong=\"G2532\"* walk|strong=\"G4043\"* just|strong=\"G2531\"* like|strong=\"G3779\"* he|strong=\"G2532\"* walked|strong=\"G4043\"*." + }, + { + "verseNum": 7, + "text": "Brothers, I|strong=\"G3739\"* write|strong=\"G1125\"* no|strong=\"G3756\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"* to|strong=\"G3756\"* you|strong=\"G5210\"*, but|strong=\"G3588\"* an|strong=\"G2192\"* old|strong=\"G3820\"* commandment|strong=\"G1785\"* which|strong=\"G3739\"* you|strong=\"G5210\"* had|strong=\"G2192\"* from|strong=\"G3756\"* the|strong=\"G3588\"* beginning. The|strong=\"G3588\"* old|strong=\"G3820\"* commandment|strong=\"G1785\"* is|strong=\"G1510\"* the|strong=\"G3588\"* word|strong=\"G3056\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G3756\"* the|strong=\"G3588\"* beginning." + }, + { + "verseNum": 8, + "text": "Again|strong=\"G3825\"*, I|strong=\"G3739\"* write|strong=\"G1125\"* a|strong=\"G2532\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, which|strong=\"G3739\"* is|strong=\"G1510\"* true|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* is|strong=\"G1510\"* passing|strong=\"G3855\"* away|strong=\"G3855\"* and|strong=\"G2532\"* the|strong=\"G1722\"* true|strong=\"G3588\"* light|strong=\"G5457\"* already|strong=\"G2235\"* shines|strong=\"G5316\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* says|strong=\"G3004\"* he|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"* and|strong=\"G2532\"* hates|strong=\"G3404\"* his|strong=\"G1722\"* brother is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* even|strong=\"G2532\"* until|strong=\"G2193\"* now|strong=\"G2532\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* loves his|strong=\"G1722\"* brother remains|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* light|strong=\"G5457\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* occasion for|strong=\"G1722\"* stumbling|strong=\"G4625\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* hates|strong=\"G3404\"* his|strong=\"G1722\"* brother is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* walks|strong=\"G4043\"* in|strong=\"G1722\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"*, and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* know|strong=\"G1492\"* where|strong=\"G4226\"* he|strong=\"G2532\"* is|strong=\"G1510\"* going|strong=\"G5217\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* darkness|strong=\"G4653\"* has|strong=\"G3748\"* blinded|strong=\"G5186\"* his|strong=\"G1722\"* eyes|strong=\"G3788\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3754\"* write|strong=\"G1125\"* to|strong=\"G3588\"* you|strong=\"G5210\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, because|strong=\"G3754\"* your|strong=\"G1223\"* sins are|strong=\"G3588\"* forgiven you|strong=\"G5210\"* for|strong=\"G3754\"* his|strong=\"G1223\"* name|strong=\"G3686\"*’s sake|strong=\"G1223\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G3754\"* write|strong=\"G1125\"* to|strong=\"G3962\"* you|strong=\"G5210\"*, fathers|strong=\"G3962\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1097\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* from|strong=\"G3588\"* the|strong=\"G3588\"* beginning." + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"*, fathers|strong=\"G3962\"*, because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1097\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* from|strong=\"G2532\"* the|strong=\"G1722\"* beginning." + }, + { + "verseNum": 15, + "text": "Don’t|strong=\"G3588\"* love the|strong=\"G1722\"* world|strong=\"G2889\"* or|strong=\"G3366\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*. If|strong=\"G1437\"* anyone|strong=\"G5100\"* loves the|strong=\"G1722\"* world|strong=\"G2889\"*, the|strong=\"G1722\"* Father|strong=\"G3962\"*’s love isn’t|strong=\"G3588\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* that|strong=\"G3754\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*—the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G1537\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*, the|strong=\"G1722\"* lust|strong=\"G1939\"* of|strong=\"G1537\"* the|strong=\"G1722\"* eyes|strong=\"G3788\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* pride of|strong=\"G1537\"* life|strong=\"G4561\"*—isn’t|strong=\"G3588\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*’s, but|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* world|strong=\"G2889\"*’s." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* world|strong=\"G2889\"* is|strong=\"G3588\"* passing|strong=\"G3855\"* away|strong=\"G3855\"* with|strong=\"G2532\"* its lusts|strong=\"G1939\"*, but|strong=\"G1161\"* he|strong=\"G2532\"* who|strong=\"G3588\"* does|strong=\"G4160\"* God|strong=\"G2316\"*’s will|strong=\"G2307\"* remains|strong=\"G3306\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 18, + "text": "Little children|strong=\"G3813\"*, these|strong=\"G3748\"* are|strong=\"G1510\"* the|strong=\"G2532\"* end|strong=\"G2078\"* times, and|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G3754\"* heard|strong=\"G1097\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Antichrist is|strong=\"G1510\"* coming|strong=\"G2064\"*, even|strong=\"G2532\"* now|strong=\"G3568\"* many|strong=\"G4183\"* antichrists have|strong=\"G2532\"* arisen. By|strong=\"G2532\"* this|strong=\"G3748\"* we|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* final|strong=\"G2078\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"G3754\"* went|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* us|strong=\"G2249\"*, but|strong=\"G1487\"* they|strong=\"G3754\"* didn’t belong|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*; for|strong=\"G1063\"* if|strong=\"G1487\"* they|strong=\"G3754\"* had|strong=\"G1510\"* belonged|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*, they|strong=\"G3754\"* would|strong=\"G1510\"* have|strong=\"G1473\"* continued|strong=\"G3306\"* with|strong=\"G3326\"* us|strong=\"G2249\"*. But|strong=\"G1487\"* they|strong=\"G3754\"* left|strong=\"G1831\"*, that|strong=\"G3754\"* they|strong=\"G3754\"* might|strong=\"G3956\"* be|strong=\"G1510\"* revealed|strong=\"G5319\"* that|strong=\"G3754\"* none|strong=\"G3756\"* of|strong=\"G1537\"* them|strong=\"G3956\"* belong|strong=\"G1510\"* to|strong=\"G2443\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"G5210\"* have|strong=\"G2192\"* an|strong=\"G2192\"* anointing|strong=\"G5545\"* from|strong=\"G2532\"* the|strong=\"G2532\"* Holy One|strong=\"G3956\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* all|strong=\"G3956\"* have|strong=\"G2192\"* knowledge|strong=\"G1492\"*.+ 2:20 Or, “know what is true”, or, “know all things”*" + }, + { + "verseNum": 21, + "text": "I|strong=\"G2532\"* have|strong=\"G2532\"* not|strong=\"G3756\"* written|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G5210\"* because|strong=\"G3754\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"* the|strong=\"G2532\"* truth, but|strong=\"G2532\"* because|strong=\"G3754\"* you|strong=\"G5210\"* know|strong=\"G1492\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* because|strong=\"G3754\"* no|strong=\"G3756\"* lie|strong=\"G5579\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* truth." + }, + { + "verseNum": 22, + "text": "Who|strong=\"G5101\"* is|strong=\"G1510\"* the|strong=\"G2532\"* liar|strong=\"G5583\"* but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G5101\"* denies that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"*? This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Antichrist, he|strong=\"G2532\"* who|strong=\"G5101\"* denies the|strong=\"G2532\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 23, + "text": "Whoever|strong=\"G3956\"* denies the|strong=\"G2532\"* Son|strong=\"G5207\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G2532\"* Father|strong=\"G3962\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* confesses|strong=\"G3670\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* also|strong=\"G2532\"*.+ 2:23 MT omits: He who confesses the Son has the Father also.*" + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"G2532\"*, as|strong=\"G1722\"* for|strong=\"G1722\"* you|strong=\"G5210\"*, let|strong=\"G3306\"* that|strong=\"G3739\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning. If|strong=\"G1437\"* that|strong=\"G3739\"* which|strong=\"G3739\"* you|strong=\"G5210\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning remains|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, you|strong=\"G5210\"* also|strong=\"G2532\"* will|strong=\"G2532\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 25, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* promise|strong=\"G1860\"* which|strong=\"G3739\"* he|strong=\"G2532\"* promised|strong=\"G1861\"* us|strong=\"G2249\"*, the|strong=\"G2532\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3778\"* have|strong=\"G5210\"* written|strong=\"G1125\"* to|strong=\"G3778\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* would lead you|strong=\"G5210\"* astray|strong=\"G4105\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"G5613\"* for|strong=\"G4012\"* you|strong=\"G5210\"*, the|strong=\"G1722\"* anointing|strong=\"G5545\"* which|strong=\"G3739\"* you|strong=\"G5210\"* received|strong=\"G2983\"* from|strong=\"G2532\"* him|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* you|strong=\"G5210\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* don’t|strong=\"G3588\"* need|strong=\"G5532\"* for|strong=\"G4012\"* anyone|strong=\"G5100\"* to|strong=\"G2443\"* teach|strong=\"G1321\"* you|strong=\"G5210\"*. But|strong=\"G2532\"* as|strong=\"G5613\"* his|strong=\"G3956\"* anointing|strong=\"G5545\"* teaches|strong=\"G1321\"* you|strong=\"G5210\"* concerning|strong=\"G4012\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* true|strong=\"G3588\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* no|strong=\"G3756\"* lie|strong=\"G5579\"*, and|strong=\"G2532\"* even|strong=\"G2532\"* as|strong=\"G5613\"* it|strong=\"G2532\"* taught|strong=\"G1321\"* you|strong=\"G5210\"*, you|strong=\"G5210\"* will|strong=\"G1510\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"G3568\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* when|strong=\"G2532\"* he|strong=\"G2532\"* appears|strong=\"G5319\"*, we|strong=\"G1437\"* may|strong=\"G2532\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* and|strong=\"G2532\"* not|strong=\"G3361\"* be|strong=\"G2532\"* ashamed before|strong=\"G1722\"* him|strong=\"G3588\"* at|strong=\"G1722\"* his|strong=\"G1722\"* coming|strong=\"G3952\"*." + }, + { + "verseNum": 29, + "text": "If|strong=\"G1437\"* you|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*, you|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* practices|strong=\"G4160\"* righteousness|strong=\"G1343\"* has|strong=\"G3748\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "See|strong=\"G3708\"* how|strong=\"G3754\"* great|strong=\"G2532\"* a|strong=\"G2532\"* love the|strong=\"G2532\"* Father|strong=\"G3962\"* has|strong=\"G2316\"* given|strong=\"G1325\"* to|strong=\"G2443\"* us|strong=\"G1325\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* should|strong=\"G2316\"* be|strong=\"G1510\"* called|strong=\"G2564\"* children|strong=\"G5043\"* of|strong=\"G1223\"* God|strong=\"G2316\"*! For|strong=\"G3754\"* this|strong=\"G3778\"* cause|strong=\"G1223\"* the|strong=\"G2532\"* world|strong=\"G2889\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* it|strong=\"G2532\"* didn’t|strong=\"G3588\"* know|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "Beloved, now|strong=\"G3568\"* we|strong=\"G1437\"* are|strong=\"G1510\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. It|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G2532\"* revealed|strong=\"G5319\"* what|strong=\"G5101\"* we|strong=\"G1437\"* will|strong=\"G2316\"* be|strong=\"G1510\"*; but|strong=\"G2532\"* we|strong=\"G1437\"* know|strong=\"G1492\"* that|strong=\"G3754\"* when|strong=\"G2532\"* he|strong=\"G2532\"* is|strong=\"G1510\"* revealed|strong=\"G5319\"*, we|strong=\"G1437\"* will|strong=\"G2316\"* be|strong=\"G1510\"* like|strong=\"G3664\"* him|strong=\"G3708\"*, for|strong=\"G3754\"* we|strong=\"G1437\"* will|strong=\"G2316\"* see|strong=\"G3708\"* him|strong=\"G3708\"* just|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"*." + }, + { + "verseNum": 3, + "text": "Everyone|strong=\"G3956\"* who|strong=\"G3588\"* has|strong=\"G2192\"* this|strong=\"G3778\"* hope|strong=\"G1680\"* set|strong=\"G2532\"* on|strong=\"G1909\"* him|strong=\"G3588\"* purifies himself|strong=\"G1438\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"* pure." + }, + { + "verseNum": 4, + "text": "Everyone|strong=\"G3956\"* who|strong=\"G3588\"* sins also|strong=\"G2532\"* commits|strong=\"G4160\"* lawlessness. Sin is|strong=\"G1510\"* lawlessness." + }, + { + "verseNum": 5, + "text": "You|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"* to|strong=\"G2443\"* take|strong=\"G2532\"* away our|strong=\"G2532\"* sins, and|strong=\"G2532\"* no|strong=\"G3756\"* sin is|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "Whoever|strong=\"G3956\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* doesn’t|strong=\"G3588\"* sin. Whoever|strong=\"G3956\"* sins hasn’t|strong=\"G3588\"* seen|strong=\"G3708\"* him|strong=\"G3588\"* and|strong=\"G3708\"* doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "Little|strong=\"G5040\"* children|strong=\"G5040\"*, let|strong=\"G1510\"* no|strong=\"G3367\"* one|strong=\"G3367\"* lead|strong=\"G1510\"* you|strong=\"G5210\"* astray|strong=\"G4105\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G4160\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*, even|strong=\"G2531\"* as|strong=\"G2531\"* he|strong=\"G3588\"* is|strong=\"G1510\"* righteous|strong=\"G1342\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* sins is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*, for|strong=\"G3754\"* the|strong=\"G1519\"* devil|strong=\"G1228\"* has|strong=\"G2316\"* been|strong=\"G1510\"* sinning from|strong=\"G1537\"* the|strong=\"G1519\"* beginning. To|strong=\"G1519\"* this|strong=\"G3778\"* end|strong=\"G1519\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G1537\"* God|strong=\"G2316\"* was|strong=\"G1510\"* revealed|strong=\"G5319\"*: that|strong=\"G3754\"* he|strong=\"G3754\"* might|strong=\"G2316\"* destroy|strong=\"G3089\"* the|strong=\"G1519\"* works|strong=\"G2041\"* of|strong=\"G1537\"* the|strong=\"G1519\"* devil|strong=\"G1228\"*." + }, + { + "verseNum": 9, + "text": "Whoever|strong=\"G3748\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* commit|strong=\"G4160\"* sin, because|strong=\"G3754\"* his|strong=\"G3956\"* seed|strong=\"G4690\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* sin, because|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G1537\"* God|strong=\"G2316\"* are|strong=\"G1510\"* revealed|strong=\"G5318\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G1537\"* the|strong=\"G1722\"* devil|strong=\"G1228\"*. Whoever|strong=\"G3956\"* doesn’t|strong=\"G3588\"* do|strong=\"G4160\"* righteousness|strong=\"G1343\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, neither|strong=\"G3756\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love his|strong=\"G3956\"* brother." + }, + { + "verseNum": 11, + "text": "For|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G3588\"* message which|strong=\"G3739\"* you|strong=\"G3739\"* heard from|strong=\"G3588\"* the|strong=\"G3588\"* beginning, that|strong=\"G3754\"* we|strong=\"G3739\"* should|strong=\"G3588\"* love one|strong=\"G3739\"* another|strong=\"G3739\"*—" + }, + { + "verseNum": 12, + "text": "unlike Cain|strong=\"G2535\"*, who|strong=\"G5101\"* was|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3588\"* and|strong=\"G2532\"* killed his|strong=\"G2532\"* brother. Why|strong=\"G5101\"* did|strong=\"G2532\"* he|strong=\"G2532\"* kill|strong=\"G4969\"* him|strong=\"G3588\"*? Because|strong=\"G3754\"* his|strong=\"G2532\"* deeds|strong=\"G2041\"* were|strong=\"G1510\"* evil|strong=\"G4190\"*, and|strong=\"G2532\"* his|strong=\"G2532\"* brother’s righteous|strong=\"G1342\"*." + }, + { + "verseNum": 13, + "text": "Don’t|strong=\"G3588\"* be|strong=\"G2532\"* surprised|strong=\"G2296\"*, my|strong=\"G3588\"* brothers, if|strong=\"G1487\"* the|strong=\"G2532\"* world|strong=\"G2889\"* hates|strong=\"G3404\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G1473\"* passed|strong=\"G3327\"* out|strong=\"G1537\"* of|strong=\"G1537\"* death|strong=\"G2288\"* into|strong=\"G1519\"* life|strong=\"G2222\"*, because|strong=\"G3754\"* we|strong=\"G2249\"* love the|strong=\"G1722\"* brothers. He|strong=\"G3754\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love his|strong=\"G1519\"* brother remains|strong=\"G3306\"* in|strong=\"G1722\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 15, + "text": "Whoever|strong=\"G3748\"* hates|strong=\"G3404\"* his|strong=\"G1438\"* brother is|strong=\"G1510\"* a|strong=\"G2192\"* murderer, and|strong=\"G2532\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* no|strong=\"G3756\"* murderer has|strong=\"G2192\"* eternal life|strong=\"G2222\"* remaining|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* love, because|strong=\"G3754\"* he|strong=\"G2532\"* laid|strong=\"G5087\"* down|strong=\"G5087\"* his|strong=\"G1722\"* life|strong=\"G5590\"* for|strong=\"G3754\"* us|strong=\"G2249\"*. And|strong=\"G2532\"* we|strong=\"G2249\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* lay|strong=\"G5087\"* down|strong=\"G5087\"* our|strong=\"G2532\"* lives|strong=\"G5590\"* for|strong=\"G3754\"* the|strong=\"G1722\"* brothers." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* whoever|strong=\"G3739\"* has|strong=\"G2192\"* the|strong=\"G1722\"* world|strong=\"G2889\"*’s|strong=\"G2192\"* goods and|strong=\"G2532\"* sees|strong=\"G2334\"* his|strong=\"G1722\"* brother in|strong=\"G1722\"* need|strong=\"G5532\"*, then|strong=\"G2532\"* closes|strong=\"G2808\"* his|strong=\"G1722\"* heart|strong=\"G4698\"* of|strong=\"G2316\"* compassion|strong=\"G4698\"* against|strong=\"G1722\"* him|strong=\"G3588\"*, how|strong=\"G4459\"* does|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* love remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*?" + }, + { + "verseNum": 18, + "text": "My|strong=\"G1722\"* little|strong=\"G5040\"* children|strong=\"G5040\"*, let|strong=\"G2532\"*’s not|strong=\"G3361\"* love in|strong=\"G1722\"* word|strong=\"G3056\"* only|strong=\"G2532\"*, or|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* tongue|strong=\"G1100\"* only|strong=\"G2532\"*, but|strong=\"G2532\"* in|strong=\"G1722\"* deed|strong=\"G2041\"* and|strong=\"G2532\"* truth." + }, + { + "verseNum": 19, + "text": "And|strong=\"G2532\"* by|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G1722\"* truth and|strong=\"G2532\"* persuade|strong=\"G3982\"* our|strong=\"G2532\"* hearts|strong=\"G2588\"* before|strong=\"G1715\"* him|strong=\"G3588\"*," + }, + { + "verseNum": 20, + "text": "because|strong=\"G3754\"* if|strong=\"G1437\"* our|strong=\"G2316\"* heart|strong=\"G2588\"* condemns|strong=\"G2607\"* us|strong=\"G2249\"*, God|strong=\"G2316\"* is|strong=\"G1510\"* greater|strong=\"G3173\"* than|strong=\"G3173\"* our|strong=\"G2316\"* heart|strong=\"G2588\"*, and|strong=\"G2532\"* knows|strong=\"G1097\"* all|strong=\"G3956\"* things|strong=\"G3956\"*." + }, + { + "verseNum": 21, + "text": "Beloved, if|strong=\"G1437\"* our|strong=\"G2316\"* hearts|strong=\"G2588\"* don’t|strong=\"G3588\"* condemn|strong=\"G2607\"* us|strong=\"G2249\"*, we|strong=\"G2249\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* toward|strong=\"G4314\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 22, + "text": "so|strong=\"G2532\"* whatever|strong=\"G3739\"* we|strong=\"G3739\"* ask, we|strong=\"G3739\"* receive|strong=\"G2983\"* from|strong=\"G2532\"* him|strong=\"G3588\"*, because|strong=\"G3754\"* we|strong=\"G3739\"* keep|strong=\"G5083\"* his|strong=\"G4160\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* do|strong=\"G4160\"* the|strong=\"G2532\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G3588\"* pleasing in|strong=\"G2532\"* his|strong=\"G4160\"* sight|strong=\"G1799\"*." + }, + { + "verseNum": 23, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* his|strong=\"G2532\"* commandment|strong=\"G1785\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* should|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G5207\"* his|strong=\"G2532\"* Son|strong=\"G5207\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* love one|strong=\"G3588\"* another|strong=\"G3588\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* he|strong=\"G2532\"* commanded|strong=\"G1785\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"G2532\"* who|strong=\"G3739\"* keeps|strong=\"G5083\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* him|strong=\"G3588\"*. By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* he|strong=\"G2532\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G1325\"*, by|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* which|strong=\"G3739\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* us|strong=\"G1325\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Beloved, don’t|strong=\"G3588\"* believe|strong=\"G4100\"* every|strong=\"G3956\"* spirit|strong=\"G4151\"*, but|strong=\"G1487\"* test|strong=\"G1381\"* the|strong=\"G1519\"* spirits|strong=\"G4151\"*, whether|strong=\"G1487\"* they|strong=\"G3588\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, because|strong=\"G3754\"* many|strong=\"G4183\"* false|strong=\"G5578\"* prophets|strong=\"G5578\"* have|strong=\"G3748\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* the|strong=\"G1519\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 2, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* you|strong=\"G3739\"* know|strong=\"G1097\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* of|strong=\"G1537\"* God|strong=\"G2316\"*: every|strong=\"G3956\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* confesses|strong=\"G3670\"* that|strong=\"G3739\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* every|strong=\"G3956\"* spirit|strong=\"G4151\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* confess|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ has|strong=\"G2316\"* come|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; and|strong=\"G2532\"* this|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Antichrist, of|strong=\"G1537\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* have|strong=\"G2532\"* heard that|strong=\"G3754\"* it|strong=\"G2532\"* comes|strong=\"G2064\"*. Now|strong=\"G3568\"* it|strong=\"G2532\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"* already|strong=\"G2235\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"G5210\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, little|strong=\"G5040\"* children|strong=\"G5040\"*, and|strong=\"G2532\"* have|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, because|strong=\"G3754\"* greater|strong=\"G3173\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* you|strong=\"G5210\"* than|strong=\"G2228\"* he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* in|strong=\"G1722\"* the|strong=\"G1722\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* are|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"*. Therefore|strong=\"G1223\"* they|strong=\"G2532\"* speak|strong=\"G2980\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* world|strong=\"G2889\"* hears them|strong=\"G3588\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"G2249\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* who|strong=\"G3739\"* knows|strong=\"G1097\"* God|strong=\"G2316\"* listens to|strong=\"G2532\"* us|strong=\"G2249\"*. He|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* not|strong=\"G3756\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* listen to|strong=\"G2532\"* us|strong=\"G2249\"*. By|strong=\"G1537\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* truth, and|strong=\"G2532\"* the|strong=\"G2532\"* spirit|strong=\"G4151\"* of|strong=\"G1537\"* error|strong=\"G4106\"*." + }, + { + "verseNum": 7, + "text": "Beloved, let|strong=\"G1097\"*’s love one|strong=\"G3956\"* another|strong=\"G3588\"*, for|strong=\"G3754\"* love is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*; and|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* loves has|strong=\"G2316\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* knows|strong=\"G1097\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"G3754\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* love doesn’t|strong=\"G3588\"* know|strong=\"G1097\"* God|strong=\"G2316\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* is|strong=\"G1510\"* love." + }, + { + "verseNum": 9, + "text": "By|strong=\"G1223\"* this|strong=\"G3778\"* God|strong=\"G2316\"*’s love was|strong=\"G3588\"* revealed|strong=\"G5319\"* in|strong=\"G1722\"* us|strong=\"G1519\"*, that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* sent|strong=\"G2316\"* his|strong=\"G1223\"* only|strong=\"G3439\"* born+ 4:9 The phrase “only born” is from the Greek word “μονογενη”, which is sometimes translated “only begotten” or “one and only”.* Son|strong=\"G5207\"* into|strong=\"G1519\"* the|strong=\"G1722\"* world|strong=\"G2889\"* that|strong=\"G3754\"* we|strong=\"G2249\"* might|strong=\"G2316\"* live|strong=\"G2198\"* through|strong=\"G1223\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"* is|strong=\"G1510\"* love, not|strong=\"G3756\"* that|strong=\"G3754\"* we|strong=\"G2249\"* loved God|strong=\"G2316\"*, but|strong=\"G2532\"* that|strong=\"G3754\"* he|strong=\"G2532\"* loved us|strong=\"G2249\"*, and|strong=\"G2532\"* sent|strong=\"G2316\"* his|strong=\"G4012\"* Son|strong=\"G5207\"* as|strong=\"G1722\"* the|strong=\"G1722\"* atoning sacrifice+ 4:10 “atoning sacrifice” is from the Greek “ιλασμος”, an appeasing, propitiating, or the means of appeasement or propitiation—the sacrifice that turns away God’s wrath because of our sin. * for|strong=\"G3754\"* our|strong=\"G2316\"* sins." + }, + { + "verseNum": 11, + "text": "Beloved, if|strong=\"G1487\"* God|strong=\"G2316\"* loved us|strong=\"G2249\"* in|strong=\"G2532\"* this|strong=\"G3588\"* way|strong=\"G3779\"*, we|strong=\"G2249\"* also|strong=\"G2532\"* ought|strong=\"G3784\"* to|strong=\"G2532\"* love one|strong=\"G3588\"* another|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* has|strong=\"G2316\"* seen|strong=\"G2300\"* God|strong=\"G2316\"* at|strong=\"G1722\"* any|strong=\"G3762\"* time|strong=\"G4455\"*. If|strong=\"G1437\"* we|strong=\"G2249\"* love one|strong=\"G3762\"* another|strong=\"G3588\"*, God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G2249\"*, and|strong=\"G2532\"* his|strong=\"G1722\"* love has|strong=\"G2316\"* been|strong=\"G1510\"* perfected|strong=\"G5048\"* in|strong=\"G1722\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 13, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G2249\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G2249\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"* and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* us|strong=\"G1325\"*, because|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G3778\"* given|strong=\"G1325\"* us|strong=\"G1325\"* of|strong=\"G1537\"* his|strong=\"G1722\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 14, + "text": "We|strong=\"G2249\"* have|strong=\"G2532\"* seen|strong=\"G2300\"* and|strong=\"G2532\"* testify|strong=\"G3140\"* that|strong=\"G3754\"* the|strong=\"G2532\"* Father|strong=\"G3962\"* has|strong=\"G3962\"* sent|strong=\"G2532\"* the|strong=\"G2532\"* Son|strong=\"G5207\"* as|strong=\"G2532\"* the|strong=\"G2532\"* Savior|strong=\"G4990\"* of|strong=\"G5207\"* the|strong=\"G2532\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 15, + "text": "Whoever|strong=\"G3739\"* confesses|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* in|strong=\"G1722\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 16, + "text": "We|strong=\"G2249\"* know|strong=\"G1097\"* and|strong=\"G2532\"* have|strong=\"G2192\"* believed|strong=\"G4100\"* the|strong=\"G1722\"* love which|strong=\"G3739\"* God|strong=\"G2316\"* has|strong=\"G2192\"* for|strong=\"G1722\"* us|strong=\"G2249\"*. God|strong=\"G2316\"* is|strong=\"G1510\"* love, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3739\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* love remains|strong=\"G3306\"* in|strong=\"G1722\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"G1722\"* this|strong=\"G3778\"*, love has|strong=\"G2192\"* been|strong=\"G1510\"* made|strong=\"G5048\"* perfect|strong=\"G5048\"* among|strong=\"G1722\"* us|strong=\"G2249\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* may|strong=\"G2532\"* have|strong=\"G2192\"* boldness|strong=\"G3954\"* in|strong=\"G1722\"* the|strong=\"G1722\"* day|strong=\"G2250\"* of|strong=\"G2250\"* judgment|strong=\"G2920\"*, because|strong=\"G3754\"* as|strong=\"G2531\"* he|strong=\"G2532\"* is|strong=\"G1510\"*, even|strong=\"G2532\"* so|strong=\"G2443\"* we|strong=\"G2249\"* are|strong=\"G1510\"* in|strong=\"G1722\"* this|strong=\"G3778\"* world|strong=\"G2889\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"G1161\"* is|strong=\"G1510\"* no|strong=\"G3756\"* fear|strong=\"G5401\"* in|strong=\"G1722\"* love; but|strong=\"G1161\"* perfect|strong=\"G5046\"* love casts out|strong=\"G1854\"* fear|strong=\"G5401\"*, because|strong=\"G3754\"* fear|strong=\"G5401\"* has|strong=\"G2192\"* punishment|strong=\"G2851\"*. He|strong=\"G1161\"* who|strong=\"G3588\"* fears|strong=\"G5401\"* is|strong=\"G1510\"* not|strong=\"G3756\"* made|strong=\"G5048\"* perfect|strong=\"G5046\"* in|strong=\"G1722\"* love." + }, + { + "verseNum": 19, + "text": "We|strong=\"G2249\"* love him,+ 4:19 NU omits “him”.* because|strong=\"G3754\"* he|strong=\"G3754\"* first|strong=\"G4413\"* loved us|strong=\"G2249\"*." + }, + { + "verseNum": 20, + "text": "If|strong=\"G1437\"* a|strong=\"G2532\"* man|strong=\"G5100\"* says|strong=\"G3004\"*, “I|strong=\"G3739\"* love God|strong=\"G2316\"*,” and|strong=\"G2532\"* hates|strong=\"G3404\"* his|strong=\"G3708\"* brother, he|strong=\"G2532\"* is|strong=\"G1510\"* a|strong=\"G2532\"* liar|strong=\"G5583\"*; for|strong=\"G1063\"* he|strong=\"G2532\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* love his|strong=\"G3708\"* brother whom|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G2316\"* seen|strong=\"G3708\"*, how|strong=\"G3754\"* can|strong=\"G1410\"* he|strong=\"G2532\"* love God|strong=\"G2316\"* whom|strong=\"G3739\"* he|strong=\"G2532\"* has|strong=\"G2316\"* not|strong=\"G3756\"* seen|strong=\"G3708\"*?" + }, + { + "verseNum": 21, + "text": "This|strong=\"G3778\"* commandment|strong=\"G1785\"* we|strong=\"G2532\"* have|strong=\"G2192\"* from|strong=\"G2532\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* who|strong=\"G3588\"* loves God|strong=\"G2316\"* should|strong=\"G2316\"* also|strong=\"G2532\"* love his|strong=\"G2192\"* brother." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Whoever|strong=\"G3748\"* believes|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* been|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. Whoever|strong=\"G3748\"* loves the|strong=\"G2532\"* Father|strong=\"G1080\"* also|strong=\"G2532\"* loves the|strong=\"G2532\"* child|strong=\"G1080\"* who|strong=\"G3588\"* is|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "By|strong=\"G1722\"* this|strong=\"G3778\"* we|strong=\"G3754\"* know|strong=\"G1097\"* that|strong=\"G3754\"* we|strong=\"G3754\"* love the|strong=\"G1722\"* children|strong=\"G5043\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, when|strong=\"G3752\"* we|strong=\"G3754\"* love God|strong=\"G2316\"* and|strong=\"G2532\"* keep|strong=\"G4160\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* this|strong=\"G3778\"* is|strong=\"G1510\"* loving God|strong=\"G2316\"*, that|strong=\"G2443\"* we|strong=\"G1063\"* keep|strong=\"G5083\"* his|strong=\"G2532\"* commandments|strong=\"G1785\"*. His|strong=\"G2532\"* commandments|strong=\"G1785\"* are|strong=\"G1510\"* not|strong=\"G3756\"* grievous." + }, + { + "verseNum": 4, + "text": "For|strong=\"G3754\"* whatever|strong=\"G3956\"* is|strong=\"G1510\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* overcomes|strong=\"G3528\"* the|strong=\"G2532\"* world|strong=\"G2889\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* victory|strong=\"G3529\"* that|strong=\"G3754\"* has|strong=\"G2316\"* overcome|strong=\"G3528\"* the|strong=\"G2532\"* world|strong=\"G2889\"*: your|strong=\"G2532\"* faith|strong=\"G4102\"*." + }, + { + "verseNum": 5, + "text": "Who|strong=\"G5101\"* is|strong=\"G1510\"* he|strong=\"G1161\"* who|strong=\"G5101\"* overcomes|strong=\"G3528\"* the|strong=\"G1161\"* world|strong=\"G2889\"*, but|strong=\"G1161\"* he|strong=\"G1161\"* who|strong=\"G5101\"* believes|strong=\"G4100\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G1161\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*?" + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* came|strong=\"G2064\"* by|strong=\"G1223\"* water|strong=\"G5204\"* and|strong=\"G2532\"* blood, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*; not|strong=\"G3756\"* with|strong=\"G1722\"* the|strong=\"G1722\"* water|strong=\"G5204\"* only|strong=\"G3440\"*, but|strong=\"G2532\"* with|strong=\"G1722\"* the|strong=\"G1722\"* water|strong=\"G5204\"* and|strong=\"G2532\"* the|strong=\"G1722\"* blood. It|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* is|strong=\"G1510\"* the|strong=\"G1722\"* truth." + }, + { + "verseNum": 7, + "text": "For|strong=\"G3754\"* there|strong=\"G3754\"* are|strong=\"G1510\"* three|strong=\"G5140\"* who|strong=\"G3588\"* testify|strong=\"G3140\"*:+ 5:7 Only a few recent manuscripts add “in heaven: the Father, the Word, and the Holy Spirit; and these three are one. And there are three that testify on earth:”*" + }, + { + "verseNum": 8, + "text": "the|strong=\"G2532\"* Spirit|strong=\"G4151\"*, the|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* blood; and|strong=\"G2532\"* the|strong=\"G2532\"* three|strong=\"G5140\"* agree|strong=\"G1510\"* as|strong=\"G1519\"* one|strong=\"G1520\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1487\"* we|strong=\"G3754\"* receive|strong=\"G2983\"* the|strong=\"G3588\"* witness|strong=\"G3140\"* of|strong=\"G5207\"* men|strong=\"G3778\"*, the|strong=\"G3588\"* witness|strong=\"G3140\"* of|strong=\"G5207\"* God|strong=\"G2316\"* is|strong=\"G1510\"* greater|strong=\"G3173\"*; for|strong=\"G3754\"* this|strong=\"G3778\"* is|strong=\"G1510\"* God|strong=\"G2316\"*’s testimony|strong=\"G3141\"* which|strong=\"G3588\"* he|strong=\"G3754\"* has|strong=\"G2316\"* testified|strong=\"G3140\"* concerning|strong=\"G4012\"* his|strong=\"G4012\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"G3739\"* who|strong=\"G3739\"* believes|strong=\"G4100\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* has|strong=\"G2192\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* in|strong=\"G1722\"* himself|strong=\"G1438\"*. He|strong=\"G3739\"* who|strong=\"G3739\"* doesn’t|strong=\"G3588\"* believe|strong=\"G4100\"* God|strong=\"G2316\"* has|strong=\"G2192\"* made|strong=\"G4160\"* him|strong=\"G3588\"* a|strong=\"G2192\"* liar|strong=\"G5583\"*, because|strong=\"G3754\"* he|strong=\"G3739\"* has|strong=\"G2192\"* not|strong=\"G3756\"* believed|strong=\"G4100\"* in|strong=\"G1722\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* that|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2192\"* given|strong=\"G3361\"* concerning|strong=\"G4012\"* his|strong=\"G1438\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G1722\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* this|strong=\"G3778\"*: that|strong=\"G3754\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* to|strong=\"G2532\"* us|strong=\"G1325\"* eternal life|strong=\"G2222\"*, and|strong=\"G2532\"* this|strong=\"G3778\"* life|strong=\"G2222\"* is|strong=\"G1510\"* in|strong=\"G1722\"* his|strong=\"G1722\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G3588\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G3588\"* Son|strong=\"G5207\"* has|strong=\"G2192\"* the|strong=\"G3588\"* life|strong=\"G2222\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* Son|strong=\"G5207\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* the|strong=\"G3588\"* life|strong=\"G2222\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G3754\"* have|strong=\"G2192\"* written|strong=\"G1125\"* to|strong=\"G1519\"* you|strong=\"G5210\"* who|strong=\"G3588\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*, that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2443\"* know|strong=\"G1492\"* that|strong=\"G3754\"* you|strong=\"G5210\"* have|strong=\"G2192\"* eternal life|strong=\"G2222\"*, and|strong=\"G2316\"* that|strong=\"G3754\"* you|strong=\"G5210\"* may|strong=\"G2443\"* continue to|strong=\"G1519\"* believe|strong=\"G4100\"* in|strong=\"G1519\"* the|strong=\"G1519\"* name|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G1519\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* boldness|strong=\"G3954\"* which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* toward|strong=\"G4314\"* him|strong=\"G3588\"*, that|strong=\"G3754\"* if|strong=\"G1437\"* we|strong=\"G2249\"* ask anything|strong=\"G5100\"* according|strong=\"G2596\"* to|strong=\"G4314\"* his|strong=\"G2192\"* will|strong=\"G2307\"*, he|strong=\"G2532\"* listens to|strong=\"G4314\"* us|strong=\"G2249\"*." + }, + { + "verseNum": 15, + "text": "And|strong=\"G2532\"* if|strong=\"G1437\"* we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* listens to|strong=\"G2532\"* us|strong=\"G2249\"*, whatever|strong=\"G3739\"* we|strong=\"G2249\"* ask, we|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G2249\"* have|strong=\"G2192\"* the|strong=\"G2532\"* petitions which|strong=\"G3739\"* we|strong=\"G2249\"* have|strong=\"G2192\"* asked of|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* sees|strong=\"G3708\"* his|strong=\"G4012\"* brother sinning a|strong=\"G2532\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*, he|strong=\"G2532\"* shall|strong=\"G2532\"* ask|strong=\"G2065\"*, and|strong=\"G2532\"* God|strong=\"G3004\"* will|strong=\"G1510\"* give|strong=\"G1325\"* him|strong=\"G3588\"* life|strong=\"G2222\"* for|strong=\"G4012\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*. There|strong=\"G2532\"* is|strong=\"G1510\"* sin leading to|strong=\"G4314\"* death|strong=\"G2288\"*. I|strong=\"G2532\"* don’t|strong=\"G3588\"* say|strong=\"G3004\"* that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G5100\"* make|strong=\"G2532\"* a|strong=\"G2532\"* request|strong=\"G2065\"* concerning|strong=\"G4012\"* this|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"G3956\"* unrighteousness is|strong=\"G1510\"* sin, and|strong=\"G2532\"* there|strong=\"G2532\"* is|strong=\"G1510\"* sin not|strong=\"G3756\"* leading to|strong=\"G4314\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* whoever|strong=\"G3748\"* is|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* doesn’t|strong=\"G3588\"* sin, but|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* born|strong=\"G1080\"* of|strong=\"G1537\"* God|strong=\"G2316\"* keeps|strong=\"G5083\"* himself, and|strong=\"G2532\"* the|strong=\"G2532\"* evil|strong=\"G4190\"* one|strong=\"G3956\"* doesn’t|strong=\"G3588\"* touch him|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* we|strong=\"G3754\"* are|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* whole|strong=\"G3650\"* world|strong=\"G2889\"* lies|strong=\"G2749\"* in|strong=\"G1722\"* the|strong=\"G1722\"* power|strong=\"G2316\"* of|strong=\"G1537\"* the|strong=\"G1722\"* evil|strong=\"G4190\"* one|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"G2249\"* know|strong=\"G1492\"* that|strong=\"G3754\"* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* God|strong=\"G2316\"* has|strong=\"G2316\"* come|strong=\"G2240\"* and|strong=\"G2532\"* has|strong=\"G2316\"* given|strong=\"G1325\"* us|strong=\"G1325\"* an|strong=\"G2532\"* understanding|strong=\"G1271\"*, that|strong=\"G3754\"* we|strong=\"G2249\"* know|strong=\"G1492\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* true|strong=\"G3588\"*; and|strong=\"G2532\"* we|strong=\"G2249\"* are|strong=\"G1510\"* in|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* true|strong=\"G3588\"*, in|strong=\"G1722\"* his|strong=\"G1722\"* Son|strong=\"G5207\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* true|strong=\"G3588\"* God|strong=\"G2316\"* and|strong=\"G2532\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 21, + "text": "Little|strong=\"G5040\"* children|strong=\"G5040\"*, keep|strong=\"G5442\"* yourselves|strong=\"G1438\"* from|strong=\"G3588\"* idols|strong=\"G1497\"*." + } + ] + } + ] + }, + { + "name": "2 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* elder|strong=\"G4245\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* chosen|strong=\"G1588\"* lady|strong=\"G2959\"* and|strong=\"G2532\"* her|strong=\"G3956\"* children|strong=\"G5043\"*, whom|strong=\"G3739\"* I|strong=\"G1473\"* love in|strong=\"G1722\"* truth, and|strong=\"G2532\"* not|strong=\"G3756\"* I|strong=\"G1473\"* only|strong=\"G3441\"*, but|strong=\"G2532\"* also|strong=\"G2532\"* all|strong=\"G3956\"* those|strong=\"G3588\"* who|strong=\"G3739\"* know|strong=\"G1097\"* the|strong=\"G1722\"* truth," + }, + { + "verseNum": 2, + "text": "for|strong=\"G1519\"* the|strong=\"G1722\"* truth’s sake|strong=\"G1223\"*, which|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* us|strong=\"G1519\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* will|strong=\"G1510\"* be|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G1519\"* forever|strong=\"G1519\"*:" + }, + { + "verseNum": 3, + "text": "Grace|strong=\"G5485\"*, mercy|strong=\"G1656\"*, and|strong=\"G2532\"* peace|strong=\"G1515\"* will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* us|strong=\"G2249\"*, from|strong=\"G3844\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* from|strong=\"G3844\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:3 “Christ” means “Anointed One”.* the|strong=\"G1722\"* Son|strong=\"G5207\"* of|strong=\"G5207\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, in|strong=\"G1722\"* truth and|strong=\"G2532\"* love." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3754\"* rejoice|strong=\"G5463\"* greatly|strong=\"G3029\"* that|strong=\"G3754\"* I|strong=\"G3754\"* have|strong=\"G3748\"* found|strong=\"G2147\"* some|strong=\"G3588\"* of|strong=\"G1537\"* your|strong=\"G2983\"* children|strong=\"G5043\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* truth, even|strong=\"G2531\"* as|strong=\"G2531\"* we|strong=\"G3754\"* have|strong=\"G3748\"* been commanded|strong=\"G1785\"* by|strong=\"G1722\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G3568\"* I|strong=\"G3739\"* beg|strong=\"G2065\"* you|strong=\"G4771\"*, dear lady|strong=\"G2959\"*, not|strong=\"G3756\"* as|strong=\"G5613\"* though|strong=\"G5613\"* I|strong=\"G3739\"* wrote|strong=\"G1125\"* to|strong=\"G2443\"* you|strong=\"G4771\"* a|strong=\"G5613\"* new|strong=\"G2537\"* commandment|strong=\"G1785\"*, but|strong=\"G2532\"* that|strong=\"G2443\"* which|strong=\"G3739\"* we|strong=\"G3739\"* had|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* beginning, that|strong=\"G2443\"* we|strong=\"G3739\"* love one|strong=\"G3739\"* another|strong=\"G3739\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"G3778\"* is|strong=\"G1510\"* love, that|strong=\"G2443\"* we|strong=\"G2532\"* should|strong=\"G3588\"* walk|strong=\"G4043\"* according|strong=\"G2596\"* to|strong=\"G2443\"* his|strong=\"G1722\"* commandments|strong=\"G1785\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* commandment|strong=\"G1785\"*, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G1722\"* heard from|strong=\"G2532\"* the|strong=\"G1722\"* beginning, that|strong=\"G2443\"* you|strong=\"G1722\"* should|strong=\"G3588\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"G3754\"* many|strong=\"G4183\"* deceivers|strong=\"G4108\"* have|strong=\"G2532\"* gone|strong=\"G1831\"* out|strong=\"G1831\"* into|strong=\"G1519\"* the|strong=\"G1722\"* world|strong=\"G2889\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* confess|strong=\"G3670\"* that|strong=\"G3754\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* came|strong=\"G2064\"* in|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G1722\"* deceiver|strong=\"G4108\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Antichrist." + }, + { + "verseNum": 8, + "text": "Watch yourselves|strong=\"G1438\"*, that|strong=\"G2443\"* we|strong=\"G3739\"* don’t lose the|strong=\"G3739\"* things|strong=\"G3739\"* which|strong=\"G3739\"* we|strong=\"G3739\"* have|strong=\"G3361\"* accomplished|strong=\"G2038\"*, but|strong=\"G3361\"* that|strong=\"G2443\"* we|strong=\"G3739\"* receive a|strong=\"G3739\"* full|strong=\"G4134\"* reward|strong=\"G3408\"*." + }, + { + "verseNum": 9, + "text": "Whoever|strong=\"G3956\"* transgresses and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* remain|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"* of|strong=\"G5207\"* Christ|strong=\"G5547\"* doesn’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* remains|strong=\"G3306\"* in|strong=\"G1722\"* the|strong=\"G1722\"* teaching|strong=\"G1322\"* has|strong=\"G2192\"* both|strong=\"G2532\"* the|strong=\"G1722\"* Father|strong=\"G3962\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Son|strong=\"G5207\"*." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* comes|strong=\"G2064\"* to|strong=\"G1519\"* you|strong=\"G5210\"* and|strong=\"G2532\"* doesn’t|strong=\"G3588\"* bring|strong=\"G5342\"* this|strong=\"G3778\"* teaching|strong=\"G1322\"*, don’t|strong=\"G3588\"* receive|strong=\"G2983\"* him|strong=\"G3588\"* into|strong=\"G1519\"* your|strong=\"G2532\"* house|strong=\"G3614\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* welcome him|strong=\"G3588\"*," + }, + { + "verseNum": 11, + "text": "for|strong=\"G1063\"* he|strong=\"G3588\"* who|strong=\"G3588\"* welcomes him|strong=\"G3588\"* participates|strong=\"G2841\"* in|strong=\"G3004\"* his|strong=\"G3588\"* evil|strong=\"G4190\"* deeds|strong=\"G2041\"*." + }, + { + "verseNum": 12, + "text": "Having|strong=\"G2192\"* many|strong=\"G4183\"* things|strong=\"G3588\"* to|strong=\"G4314\"* write|strong=\"G1125\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, I|strong=\"G2532\"* don’t|strong=\"G3588\"* want|strong=\"G1014\"* to|strong=\"G4314\"* do|strong=\"G1096\"* so|strong=\"G2443\"* with|strong=\"G4314\"* paper|strong=\"G5489\"* and|strong=\"G2532\"* ink|strong=\"G3188\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* come|strong=\"G1096\"* to|strong=\"G4314\"* you|strong=\"G5210\"* and|strong=\"G2532\"* to|strong=\"G4314\"* speak|strong=\"G2980\"* face|strong=\"G4750\"* to|strong=\"G4314\"* face|strong=\"G4750\"*, that|strong=\"G2443\"* our|strong=\"G2532\"* joy|strong=\"G5479\"* may|strong=\"G2532\"* be|strong=\"G1096\"* made|strong=\"G1096\"* full|strong=\"G4137\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G3588\"* children|strong=\"G5043\"* of|strong=\"G5043\"* your|strong=\"G3588\"* chosen|strong=\"G1588\"* sister greet you|strong=\"G4771\"*. Amen." + } + ] + } + ] + }, + { + "name": "3 John", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G1722\"* elder|strong=\"G4245\"* to|strong=\"G1722\"* Gaius|strong=\"G1050\"* the|strong=\"G1722\"* beloved, whom|strong=\"G3739\"* I|strong=\"G1473\"* love in|strong=\"G1722\"* truth." + }, + { + "verseNum": 2, + "text": "Beloved, I|strong=\"G2532\"* pray|strong=\"G2172\"* that|strong=\"G3588\"* you|strong=\"G4771\"* may|strong=\"G2532\"* prosper|strong=\"G2137\"* in|strong=\"G2532\"* all|strong=\"G3956\"* things|strong=\"G3956\"* and|strong=\"G2532\"* be|strong=\"G2532\"* healthy, even|strong=\"G2532\"* as|strong=\"G2531\"* your|strong=\"G2532\"* soul|strong=\"G5590\"* prospers|strong=\"G2137\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"G1063\"* I|strong=\"G2532\"* rejoiced|strong=\"G5463\"* greatly|strong=\"G3029\"* when|strong=\"G2532\"* brothers came|strong=\"G2064\"* and|strong=\"G2532\"* testified|strong=\"G3140\"* about|strong=\"G1722\"* your|strong=\"G2532\"* truth, even|strong=\"G2532\"* as|strong=\"G2531\"* you|strong=\"G4771\"* walk|strong=\"G4043\"* in|strong=\"G1722\"* truth." + }, + { + "verseNum": 4, + "text": "I|strong=\"G3778\"* have|strong=\"G2192\"* no|strong=\"G3756\"* greater|strong=\"G3173\"* joy|strong=\"G5479\"* than|strong=\"G3173\"* this|strong=\"G3778\"*: to|strong=\"G2443\"* hear about|strong=\"G1722\"* my|strong=\"G1699\"* children|strong=\"G5043\"* walking|strong=\"G4043\"* in|strong=\"G1722\"* truth." + }, + { + "verseNum": 5, + "text": "Beloved, you|strong=\"G3739\"* do|strong=\"G4160\"* a|strong=\"G2532\"* faithful|strong=\"G4103\"* work|strong=\"G2038\"* in|strong=\"G1519\"* whatever|strong=\"G3739\"* you|strong=\"G3739\"* accomplish|strong=\"G2038\"* for|strong=\"G1519\"* those|strong=\"G3588\"* who|strong=\"G3739\"* are|strong=\"G3588\"* brothers and|strong=\"G2532\"* strangers|strong=\"G3581\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"G3588\"* have|strong=\"G4160\"* testified|strong=\"G3140\"* about|strong=\"G4160\"* your|strong=\"G4160\"* love before|strong=\"G1799\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"*. You|strong=\"G4771\"* will|strong=\"G2316\"* do|strong=\"G4160\"* well|strong=\"G2573\"* to|strong=\"G4160\"* send|strong=\"G4311\"* them|strong=\"G3588\"* forward on|strong=\"G4311\"* their|strong=\"G3588\"* journey|strong=\"G4311\"* in|strong=\"G2316\"* a|strong=\"G4160\"* way|strong=\"G4311\"* worthy of|strong=\"G2316\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 7, + "text": "because|strong=\"G1063\"* for|strong=\"G1063\"* the|strong=\"G3588\"* sake|strong=\"G5228\"* of|strong=\"G3686\"* the|strong=\"G3588\"* Name|strong=\"G3686\"* they|strong=\"G3588\"* went|strong=\"G1831\"* out|strong=\"G1831\"*, taking|strong=\"G2983\"* nothing|strong=\"G3367\"* from|strong=\"G1831\"* the|strong=\"G3588\"* Gentiles|strong=\"G1482\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"G2249\"* therefore|strong=\"G3767\"* ought|strong=\"G3784\"* to|strong=\"G2443\"* receive such|strong=\"G5108\"*, that|strong=\"G2443\"* we|strong=\"G2249\"* may|strong=\"G2443\"* be|strong=\"G1096\"* fellow|strong=\"G4904\"* workers|strong=\"G4904\"* for|strong=\"G2443\"* the|strong=\"G3588\"* truth." + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* wrote|strong=\"G1125\"* to|strong=\"G3756\"* the|strong=\"G3588\"* assembly|strong=\"G1577\"*, but|strong=\"G3588\"* Diotrephes|strong=\"G1361\"*, who|strong=\"G3588\"* loves|strong=\"G5383\"* to|strong=\"G3756\"* be|strong=\"G3756\"* first|strong=\"G3588\"* among|strong=\"G5383\"* them|strong=\"G3588\"*, doesn’t|strong=\"G3588\"* accept|strong=\"G1926\"* what|strong=\"G3588\"* we|strong=\"G2249\"* say|strong=\"G1473\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"G1223\"*, if|strong=\"G1437\"* I|strong=\"G1473\"* come|strong=\"G2064\"*, I|strong=\"G1473\"* will|strong=\"G2532\"* call|strong=\"G2532\"* attention|strong=\"G5279\"* to|strong=\"G2532\"* his|strong=\"G1223\"* deeds|strong=\"G2041\"* which|strong=\"G3739\"* he|strong=\"G2532\"* does|strong=\"G4160\"*, unjustly|strong=\"G5396\"* accusing|strong=\"G5396\"* us|strong=\"G4160\"* with|strong=\"G1223\"* wicked|strong=\"G4190\"* words|strong=\"G3056\"*. Not|strong=\"G3361\"* content|strong=\"G4160\"* with|strong=\"G1223\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* doesn’t|strong=\"G3588\"* receive|strong=\"G1926\"* the|strong=\"G2532\"* brothers himself, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* would|strong=\"G1014\"*, he|strong=\"G2532\"* forbids|strong=\"G2967\"* and|strong=\"G2532\"* throws|strong=\"G1544\"* out|strong=\"G1544\"* of|strong=\"G3056\"* the|strong=\"G2532\"* assembly|strong=\"G1577\"*." + }, + { + "verseNum": 11, + "text": "Beloved, don’t|strong=\"G3588\"* imitate|strong=\"G3401\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* evil|strong=\"G2556\"*, but|strong=\"G3361\"* that|strong=\"G3588\"* which|strong=\"G3588\"* is|strong=\"G1510\"* good|strong=\"G3756\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G1510\"* good|strong=\"G3756\"* is|strong=\"G1510\"* of|strong=\"G1537\"* God|strong=\"G2316\"*. He|strong=\"G3588\"* who|strong=\"G3588\"* does|strong=\"G1510\"* evil|strong=\"G2556\"* hasn’t|strong=\"G3588\"* seen|strong=\"G3708\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 12, + "text": "Demetrius|strong=\"G1216\"* has|strong=\"G3748\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G5259\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* of|strong=\"G5259\"* the|strong=\"G2532\"* truth itself; yes|strong=\"G1161\"*, we|strong=\"G2249\"* also|strong=\"G2532\"* testify|strong=\"G3140\"*, and|strong=\"G2532\"* you|strong=\"G3754\"* know|strong=\"G1492\"* that|strong=\"G3754\"* our|strong=\"G2532\"* testimony|strong=\"G3141\"* is|strong=\"G1510\"* true|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* had|strong=\"G2192\"* many|strong=\"G4183\"* things|strong=\"G4183\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"*, but|strong=\"G2532\"* I|strong=\"G2532\"* am|strong=\"G2532\"* unwilling|strong=\"G3756\"* to|strong=\"G2532\"* write|strong=\"G1125\"* to|strong=\"G2532\"* you|strong=\"G4771\"* with|strong=\"G1223\"* ink|strong=\"G3188\"* and|strong=\"G2532\"* pen|strong=\"G2563\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"G1161\"* I|strong=\"G2532\"* hope|strong=\"G1679\"* to|strong=\"G4314\"* see|strong=\"G3708\"* you|strong=\"G4771\"* soon. Then|strong=\"G2532\"* we|strong=\"G2532\"* will|strong=\"G2532\"* speak|strong=\"G2980\"* face|strong=\"G4750\"* to|strong=\"G4314\"* face|strong=\"G4750\"*." + } + ] + } + ] + }, + { + "name": "Jude", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Jude|strong=\"G2455\"*,+ 1:1 or, Judah* a|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* and|strong=\"G2532\"* brother of|strong=\"G2316\"* James|strong=\"G2385\"*, to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* called|strong=\"G2822\"*, sanctified by|strong=\"G1722\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Father|strong=\"G3962\"*, and|strong=\"G2532\"* kept|strong=\"G5083\"* for|strong=\"G1161\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*:" + }, + { + "verseNum": 2, + "text": "May|strong=\"G2532\"* mercy|strong=\"G1656\"*, peace|strong=\"G1515\"*, and|strong=\"G2532\"* love be|strong=\"G2532\"* multiplied|strong=\"G4129\"* to|strong=\"G2532\"* you|strong=\"G5210\"*." + }, + { + "verseNum": 3, + "text": "Beloved, while|strong=\"G3956\"* I|strong=\"G1473\"* was|strong=\"G3588\"* very|strong=\"G3588\"* eager|strong=\"G4710\"* to|strong=\"G4160\"* write|strong=\"G1125\"* to|strong=\"G4160\"* you|strong=\"G5210\"* about|strong=\"G4012\"* our|strong=\"G3956\"* common|strong=\"G2839\"* salvation|strong=\"G4991\"*, I|strong=\"G1473\"* was|strong=\"G3588\"* constrained to|strong=\"G4160\"* write|strong=\"G1125\"* to|strong=\"G4160\"* you|strong=\"G5210\"* exhorting|strong=\"G3870\"* you|strong=\"G5210\"* to|strong=\"G4160\"* contend|strong=\"G1864\"* earnestly|strong=\"G1864\"* for|strong=\"G4012\"* the|strong=\"G3956\"* faith|strong=\"G4102\"* which|strong=\"G3588\"* was|strong=\"G3588\"* once for|strong=\"G4012\"* all|strong=\"G3956\"* delivered|strong=\"G3860\"* to|strong=\"G4160\"* the|strong=\"G3956\"* saints." + }, + { + "verseNum": 4, + "text": "For|strong=\"G1063\"* there|strong=\"G2532\"* are|strong=\"G3588\"* certain|strong=\"G5100\"* men|strong=\"G3778\"* who|strong=\"G3588\"* crept|strong=\"G3921\"* in|strong=\"G1519\"* secretly, even|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* long|strong=\"G3819\"* ago|strong=\"G3819\"* written|strong=\"G4270\"* about|strong=\"G1519\"* for|strong=\"G1063\"* this|strong=\"G3778\"* condemnation|strong=\"G2917\"*: ungodly men|strong=\"G3778\"*, turning|strong=\"G3346\"* the|strong=\"G2532\"* grace|strong=\"G5485\"* of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* into|strong=\"G1519\"* indecency, and|strong=\"G2532\"* denying our|strong=\"G2316\"* only|strong=\"G3441\"* Master|strong=\"G2962\"*, God|strong=\"G2316\"*, and|strong=\"G2532\"* Lord|strong=\"G2962\"*, Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"G1161\"* I|strong=\"G1161\"* desire|strong=\"G1014\"* to|strong=\"G1014\"* remind|strong=\"G5279\"* you|strong=\"G5210\"*, though|strong=\"G1161\"* you|strong=\"G5210\"* already know|strong=\"G1492\"* this|strong=\"G3588\"*, that|strong=\"G3754\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"*, having|strong=\"G1492\"* saved|strong=\"G4982\"* a|strong=\"G3708\"* people|strong=\"G2992\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G3956\"* land|strong=\"G1093\"* of|strong=\"G1537\"* Egypt, afterward|strong=\"G1208\"* destroyed those|strong=\"G3588\"* who|strong=\"G3588\"* didn’t|strong=\"G3588\"* believe|strong=\"G4100\"*." + }, + { + "verseNum": 6, + "text": "Angels who|strong=\"G3588\"* didn’t|strong=\"G3588\"* keep|strong=\"G5083\"* their|strong=\"G1438\"* first|strong=\"G3588\"* domain, but|strong=\"G3361\"* deserted their|strong=\"G1438\"* own|strong=\"G2398\"* dwelling|strong=\"G3613\"* place, he|strong=\"G3588\"* has|strong=\"G2920\"* kept|strong=\"G5083\"* in|strong=\"G1519\"* everlasting bonds|strong=\"G1199\"* under|strong=\"G5259\"* darkness|strong=\"G2217\"* for|strong=\"G1519\"* the|strong=\"G1519\"* judgment|strong=\"G2920\"* of|strong=\"G5259\"* the|strong=\"G1519\"* great|strong=\"G3173\"* day|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "Even|strong=\"G2532\"* as|strong=\"G5613\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Gomorrah|strong=\"G1116\"* and|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* around|strong=\"G4012\"* them|strong=\"G3588\"*, having|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G5158\"* as|strong=\"G5613\"* these|strong=\"G3778\"* given themselves|strong=\"G1438\"* over|strong=\"G4012\"* to|strong=\"G2532\"* sexual immorality|strong=\"G1608\"* and|strong=\"G2532\"* gone after|strong=\"G3694\"* strange|strong=\"G2087\"* flesh|strong=\"G4561\"*, are|strong=\"G3588\"* shown as|strong=\"G5613\"* an|strong=\"G2532\"* example|strong=\"G1164\"*, suffering|strong=\"G5254\"* the|strong=\"G2532\"* punishment|strong=\"G1349\"* of|strong=\"G4012\"* eternal fire|strong=\"G4442\"*." + }, + { + "verseNum": 8, + "text": "Yet|strong=\"G2532\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3778\"* way|strong=\"G3668\"*, these|strong=\"G3778\"* also|strong=\"G2532\"* in|strong=\"G2532\"* their|strong=\"G2532\"* dreaming|strong=\"G1797\"* defile|strong=\"G3392\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"*, despise authority|strong=\"G2963\"*, and|strong=\"G2532\"* slander celestial beings." + }, + { + "verseNum": 9, + "text": "But|strong=\"G1161\"* Michael|strong=\"G3413\"*, the|strong=\"G1161\"* archangel, when|strong=\"G3753\"* contending|strong=\"G1252\"* with|strong=\"G4012\"* the|strong=\"G1161\"* devil|strong=\"G1228\"* and|strong=\"G1161\"* arguing|strong=\"G1256\"* about|strong=\"G4012\"* the|strong=\"G1161\"* body|strong=\"G4983\"* of|strong=\"G4012\"* Moses|strong=\"G3475\"*, dared|strong=\"G5111\"* not|strong=\"G3756\"* bring|strong=\"G3004\"* against|strong=\"G4012\"* him|strong=\"G3588\"* an|strong=\"G1161\"* abusive condemnation|strong=\"G2920\"*, but|strong=\"G1161\"* said|strong=\"G3004\"*, “May|strong=\"G3004\"* the|strong=\"G1161\"* Lord|strong=\"G2962\"* rebuke|strong=\"G2008\"* you|strong=\"G4771\"*!”" + }, + { + "verseNum": 10, + "text": "But|strong=\"G1161\"* these|strong=\"G3778\"* speak|strong=\"G1161\"* evil of|strong=\"G1722\"* whatever|strong=\"G3745\"* things|strong=\"G3778\"* they|strong=\"G1161\"* don’t|strong=\"G3588\"* know|strong=\"G1492\"*. They|strong=\"G1161\"* are|strong=\"G3588\"* destroyed|strong=\"G5351\"* in|strong=\"G1722\"* these|strong=\"G3778\"* things|strong=\"G3778\"* that|strong=\"G3588\"* they|strong=\"G1161\"* understand|strong=\"G1492\"* naturally|strong=\"G5447\"*, like|strong=\"G5613\"* the|strong=\"G1722\"* creatures|strong=\"G2226\"* without|strong=\"G3756\"* reason." + }, + { + "verseNum": 11, + "text": "Woe|strong=\"G3759\"* to|strong=\"G2532\"* them|strong=\"G3588\"*! For|strong=\"G3754\"* they|strong=\"G2532\"* went|strong=\"G4198\"* in|strong=\"G2532\"* the|strong=\"G2532\"* way|strong=\"G3598\"* of|strong=\"G2532\"* Cain|strong=\"G2535\"*, and|strong=\"G2532\"* ran|strong=\"G2532\"* riotously in|strong=\"G2532\"* the|strong=\"G2532\"* error|strong=\"G4106\"* of|strong=\"G2532\"* Balaam for|strong=\"G3754\"* hire|strong=\"G3408\"*, and|strong=\"G2532\"* perished in|strong=\"G2532\"* Korah|strong=\"G2879\"*’s rebellion." + }, + { + "verseNum": 12, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* hidden|strong=\"G4694\"* rocky reefs|strong=\"G4694\"* in|strong=\"G1722\"* your|strong=\"G1722\"* love feasts when|strong=\"G1722\"* they|strong=\"G3588\"* feast|strong=\"G4910\"* with|strong=\"G1722\"* you|strong=\"G5210\"*, shepherds who|strong=\"G3588\"* without|strong=\"G1438\"* fear feed|strong=\"G4165\"* themselves|strong=\"G1438\"*; clouds|strong=\"G3507\"* without|strong=\"G1438\"* water, carried|strong=\"G3911\"* along|strong=\"G1722\"* by|strong=\"G1722\"* winds; autumn|strong=\"G5352\"* trees|strong=\"G1186\"* without|strong=\"G1438\"* fruit, twice|strong=\"G1364\"* dead, plucked up|strong=\"G1722\"* by|strong=\"G1722\"* the|strong=\"G1722\"* roots|strong=\"G1610\"*;" + }, + { + "verseNum": 13, + "text": "wild waves|strong=\"G2949\"* of|strong=\"G2281\"* the|strong=\"G1519\"* sea|strong=\"G2281\"*, foaming out|strong=\"G1438\"* their|strong=\"G1438\"* own|strong=\"G1438\"* shame; wandering|strong=\"G4107\"* stars, for|strong=\"G1519\"* whom|strong=\"G3739\"* the|strong=\"G1519\"* blackness|strong=\"G2217\"* of|strong=\"G2281\"* darkness|strong=\"G4655\"* has|strong=\"G3739\"* been reserved|strong=\"G5083\"* forever|strong=\"G1519\"*." + }, + { + "verseNum": 14, + "text": "About|strong=\"G1722\"* these|strong=\"G3778\"* also|strong=\"G2532\"* Enoch|strong=\"G1802\"*, the|strong=\"G1722\"* seventh|strong=\"G1442\"* from|strong=\"G2064\"* Adam, prophesied|strong=\"G4395\"*, saying|strong=\"G3004\"*, “Behold|strong=\"G2400\"*,+ 1:14 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"G1722\"* Lord|strong=\"G2962\"* came|strong=\"G2064\"* with|strong=\"G1722\"* ten|strong=\"G1722\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* his|strong=\"G1722\"* holy ones," + }, + { + "verseNum": 15, + "text": "to|strong=\"G2532\"* execute|strong=\"G4160\"* judgment|strong=\"G2920\"* on|strong=\"G2596\"* all|strong=\"G3956\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* convict|strong=\"G1651\"* all|strong=\"G3956\"* the|strong=\"G2532\"* ungodly of|strong=\"G4012\"* all|strong=\"G3956\"* their|strong=\"G2532\"* works|strong=\"G2041\"* of|strong=\"G4012\"* ungodliness which|strong=\"G3739\"* they|strong=\"G2532\"* have|strong=\"G2532\"* done|strong=\"G4160\"* in|strong=\"G2596\"* an|strong=\"G2532\"* ungodly way|strong=\"G2596\"*, and|strong=\"G2532\"* of|strong=\"G4012\"* all|strong=\"G3956\"* the|strong=\"G2532\"* hard|strong=\"G4642\"* things|strong=\"G3956\"* which|strong=\"G3739\"* ungodly sinners have|strong=\"G2532\"* spoken|strong=\"G2980\"* against|strong=\"G2596\"* him|strong=\"G3588\"*.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* murmurers|strong=\"G1113\"* and|strong=\"G2532\"* complainers|strong=\"G3202\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G2532\"* lusts|strong=\"G1939\"*—and|strong=\"G2532\"* their|strong=\"G2532\"* mouth|strong=\"G4750\"* speaks|strong=\"G2980\"* proud things|strong=\"G3778\"*—showing respect of|strong=\"G2532\"* persons|strong=\"G4383\"* to|strong=\"G2532\"* gain advantage|strong=\"G5622\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, beloved, remember|strong=\"G3403\"* the|strong=\"G1161\"* words|strong=\"G4487\"* which|strong=\"G3588\"* have|strong=\"G1473\"* been|strong=\"G2962\"* spoken before|strong=\"G4302\"* by|strong=\"G5259\"* the|strong=\"G1161\"* apostles of|strong=\"G5259\"* our|strong=\"G2424\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"G3588\"* said|strong=\"G3004\"* to|strong=\"G2596\"* you|strong=\"G5210\"*, “In|strong=\"G1909\"* the|strong=\"G1909\"* last|strong=\"G2078\"* time|strong=\"G5550\"* there|strong=\"G3754\"* will|strong=\"G1510\"* be|strong=\"G1510\"* mockers|strong=\"G1703\"*, walking|strong=\"G4198\"* after|strong=\"G2596\"* their|strong=\"G1438\"* own|strong=\"G1438\"* ungodly lusts|strong=\"G1939\"*.”" + }, + { + "verseNum": 19, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3588\"* cause|strong=\"G3588\"* divisions and|strong=\"G4151\"* are|strong=\"G1510\"* sensual|strong=\"G5591\"*, not|strong=\"G3361\"* having|strong=\"G2192\"* the|strong=\"G3588\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"G1161\"* you|strong=\"G5210\"*, beloved, keep building|strong=\"G2026\"* up|strong=\"G2026\"* yourselves|strong=\"G1438\"* on|strong=\"G1722\"* your|strong=\"G1722\"* most holy|strong=\"G4151\"* faith|strong=\"G4102\"*, praying|strong=\"G4336\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Holy|strong=\"G4151\"* Spirit|strong=\"G4151\"*." + }, + { + "verseNum": 21, + "text": "Keep|strong=\"G5083\"* yourselves|strong=\"G1438\"* in|strong=\"G1722\"* God|strong=\"G2316\"*’s|strong=\"G2962\"* love, looking|strong=\"G4327\"* for|strong=\"G1519\"* the|strong=\"G1722\"* mercy|strong=\"G1656\"* of|strong=\"G2316\"* our|strong=\"G2316\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"* to|strong=\"G1519\"* eternal life|strong=\"G2222\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"G2532\"* some|strong=\"G3739\"* have|strong=\"G2532\"* compassion, making|strong=\"G2532\"* a|strong=\"G2532\"* distinction|strong=\"G1252\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"G2532\"* some|strong=\"G3739\"* save|strong=\"G4982\"*, snatching them|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* fire|strong=\"G4442\"* with|strong=\"G1722\"* fear|strong=\"G5401\"*, hating|strong=\"G3404\"* even|strong=\"G2532\"* the|strong=\"G1722\"* clothing stained|strong=\"G4695\"* by|strong=\"G1722\"* the|strong=\"G1722\"* flesh|strong=\"G4561\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"G1161\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* keep|strong=\"G5442\"* them|strong=\"G3588\"*+ 1:24 TR and NU read “you”* from|strong=\"G2532\"* stumbling, and|strong=\"G2532\"* to|strong=\"G2532\"* present|strong=\"G2476\"* you|strong=\"G5210\"* faultless before|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G2714\"* of|strong=\"G2532\"* his|strong=\"G1722\"* glory|strong=\"G1391\"* in|strong=\"G1722\"* great|strong=\"G2532\"* joy," + }, + { + "verseNum": 25, + "text": "to|strong=\"G1519\"* God|strong=\"G2316\"* our|strong=\"G2316\"* Savior|strong=\"G4990\"*, who|strong=\"G3588\"* alone|strong=\"G3441\"* is|strong=\"G3588\"* wise, be|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* majesty|strong=\"G3172\"*, dominion|strong=\"G2904\"* and|strong=\"G2532\"* power|strong=\"G1849\"*, both|strong=\"G2532\"* now|strong=\"G3568\"* and|strong=\"G2532\"* forever|strong=\"G1519\"*. Amen." + } + ] + } + ] + }, + { + "name": "Revelation", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G1722\"* Revelation of|strong=\"G1223\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*,+ 1:1 “Christ” means “Anointed One”.* which|strong=\"G3739\"* God|strong=\"G2316\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* to|strong=\"G2532\"* show|strong=\"G1166\"* to|strong=\"G2532\"* his|strong=\"G1223\"* servants|strong=\"G1401\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* soon|strong=\"G5034\"*, which|strong=\"G3739\"* he|strong=\"G2532\"* sent|strong=\"G2316\"* and|strong=\"G2532\"* made|strong=\"G1096\"* known by|strong=\"G1223\"* his|strong=\"G1223\"* angel+ 1:1 or, messenger (here and wherever angel is mentioned)* to|strong=\"G2532\"* his|strong=\"G1223\"* servant|strong=\"G1401\"*, John|strong=\"G2491\"*," + }, + { + "verseNum": 2, + "text": "who|strong=\"G3739\"* testified|strong=\"G3140\"* to|strong=\"G2532\"* God|strong=\"G2316\"*’s word|strong=\"G3056\"* and|strong=\"G2532\"* of|strong=\"G3056\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, about|strong=\"G2424\"* everything|strong=\"G3745\"* that|strong=\"G3739\"* he|strong=\"G2532\"* saw|strong=\"G3708\"*." + }, + { + "verseNum": 3, + "text": "Blessed|strong=\"G3107\"* is|strong=\"G3588\"* he|strong=\"G2532\"* who|strong=\"G3588\"* reads and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* hear the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophecy|strong=\"G4394\"*, and|strong=\"G2532\"* keep|strong=\"G5083\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* time|strong=\"G2540\"* is|strong=\"G3588\"* near|strong=\"G1451\"*." + }, + { + "verseNum": 4, + "text": "John|strong=\"G2491\"*, to|strong=\"G2532\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* assemblies|strong=\"G1577\"* that|strong=\"G3739\"* are|strong=\"G1510\"* in|strong=\"G1722\"* Asia|strong=\"G3588\"*: Grace|strong=\"G5485\"* to|strong=\"G2532\"* you|strong=\"G5210\"* and|strong=\"G2532\"* peace|strong=\"G1515\"* from|strong=\"G2064\"* God|strong=\"G2532\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3739\"* was|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3739\"* is|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G2064\"*; and|strong=\"G2532\"* from|strong=\"G2064\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* who|strong=\"G3739\"* are|strong=\"G1510\"* before|strong=\"G1799\"* his|strong=\"G1722\"* throne|strong=\"G2362\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"G2532\"* from|strong=\"G1537\"* Jesus|strong=\"G2424\"* Christ|strong=\"G5547\"*, the|strong=\"G1722\"* faithful|strong=\"G4103\"* witness|strong=\"G3144\"*, the|strong=\"G1722\"* firstborn|strong=\"G4416\"* of|strong=\"G1537\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* ruler of|strong=\"G1537\"* the|strong=\"G1722\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*. To|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* loves us|strong=\"G2249\"*, and|strong=\"G2532\"* washed us|strong=\"G2249\"* from|strong=\"G1537\"* our|strong=\"G2424\"* sins by|strong=\"G1722\"* his|strong=\"G1722\"* blood—" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* made|strong=\"G4160\"* us|strong=\"G4160\"* to|strong=\"G1519\"* be|strong=\"G2532\"* a|strong=\"G2532\"* Kingdom, priests|strong=\"G2409\"*+ 1:6 Exodus 19:6; Isaiah 61:6 * to|strong=\"G1519\"* his|strong=\"G1519\"* God|strong=\"G2316\"* and|strong=\"G2532\"* Father|strong=\"G3962\"*—to|strong=\"G1519\"* him|strong=\"G3588\"* be|strong=\"G2532\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G2532\"* dominion|strong=\"G2904\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*. Amen." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"G2400\"*,+ 1:7 “Behold”, from “ἰδοὺ”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"G2532\"* is|strong=\"G3588\"* coming|strong=\"G2064\"* with|strong=\"G3326\"* the|strong=\"G2532\"* clouds|strong=\"G3507\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* eye|strong=\"G3788\"* will|strong=\"G2532\"* see|strong=\"G3708\"* him|strong=\"G3588\"*, including|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* pierced|strong=\"G1574\"* him|strong=\"G3588\"*. All|strong=\"G3956\"* the|strong=\"G2532\"* tribes|strong=\"G5443\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* mourn|strong=\"G2875\"* over|strong=\"G1909\"* him|strong=\"G3588\"*. Even|strong=\"G2532\"* so|strong=\"G2532\"*, Amen." + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*,*+ 1:8 TR adds “the Beginning and the End”*”* says|strong=\"G3004\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"*,+ 1:8 TR omits “God”* “\\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Almighty|strong=\"G3841\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* John|strong=\"G2491\"*, your|strong=\"G1223\"* brother and|strong=\"G2532\"* partner with|strong=\"G1722\"* you|strong=\"G5210\"* in|strong=\"G1722\"* the|strong=\"G1722\"* oppression, Kingdom, and|strong=\"G2532\"* perseverance|strong=\"G5281\"* in|strong=\"G1722\"* Christ Jesus|strong=\"G2424\"*, was|strong=\"G1096\"* on|strong=\"G1722\"* the|strong=\"G1722\"* isle|strong=\"G3520\"* that|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Patmos|strong=\"G3963\"* because|strong=\"G1223\"* of|strong=\"G3056\"* God|strong=\"G2316\"*’s Word|strong=\"G3056\"* and|strong=\"G2532\"* the|strong=\"G1722\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* Christ." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* on|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*’s day|strong=\"G2250\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* heard behind|strong=\"G3694\"* me|strong=\"G1473\"* a|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, like|strong=\"G5613\"* a|strong=\"G1096\"* trumpet|strong=\"G4536\"*" + }, + { + "verseNum": 11, + "text": "saying|strong=\"G3004\"*,+ 1:11 TR adds “I am the Alpha and the Omega, the First and the Last.”* “\\+w What|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* see, \\+w write|strong=\"G1125\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w send|strong=\"G3992\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*:*+ 1:11 TR adds “which are in Asia”* \\+w to|strong=\"G1519\"\\+w* \\+w Ephesus|strong=\"G2181\"\\+w*, \\+w Smyrna|strong=\"G4667\"\\+w*, \\+w Pergamum|strong=\"G4010\"\\+w*, \\+w Thyatira|strong=\"G2363\"\\+w*, \\+w Sardis|strong=\"G4554\"\\+w*, \\+w Philadelphia|strong=\"G5359\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w Laodicea|strong=\"G2993\"\\+w*.”*" + }, + { + "verseNum": 12, + "text": "I|strong=\"G1473\"* turned|strong=\"G1994\"* to|strong=\"G2532\"* see|strong=\"G3708\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* that|strong=\"G3588\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*. Having|strong=\"G2532\"* turned|strong=\"G1994\"*, I|strong=\"G1473\"* saw|strong=\"G3708\"* seven|strong=\"G2033\"* golden|strong=\"G5552\"* lamp stands." + }, + { + "verseNum": 13, + "text": "And|strong=\"G2532\"* among|strong=\"G1722\"* the|strong=\"G1722\"* lamp stands was|strong=\"G3588\"* one|strong=\"G3588\"* like|strong=\"G3664\"* a|strong=\"G2532\"* son|strong=\"G5207\"* of|strong=\"G5207\"* man|strong=\"G5207\"*,+ 1:13 Daniel 7:13 * clothed|strong=\"G1746\"* with|strong=\"G1722\"* a|strong=\"G2532\"* robe|strong=\"G4158\"* reaching|strong=\"G4158\"* down to|strong=\"G4314\"* his|strong=\"G1722\"* feet|strong=\"G4158\"*, and|strong=\"G2532\"* with|strong=\"G1722\"* a|strong=\"G2532\"* golden|strong=\"G5552\"* sash|strong=\"G2223\"* around|strong=\"G4314\"* his|strong=\"G1722\"* chest|strong=\"G3149\"*." + }, + { + "verseNum": 14, + "text": "His|strong=\"G2532\"* head|strong=\"G2776\"* and|strong=\"G2532\"* his|strong=\"G2532\"* hair|strong=\"G2359\"* were|strong=\"G3588\"* white|strong=\"G3022\"* as|strong=\"G5613\"* white|strong=\"G3022\"* wool|strong=\"G2053\"*, like|strong=\"G5613\"* snow|strong=\"G5510\"*. His|strong=\"G2532\"* eyes|strong=\"G3788\"* were|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G5613\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"G1722\"* feet|strong=\"G4228\"* were|strong=\"G3588\"* like|strong=\"G5613\"* burnished|strong=\"G5474\"* brass|strong=\"G5474\"*, as|strong=\"G5613\"* if|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* refined|strong=\"G4448\"* in|strong=\"G1722\"* a|strong=\"G5613\"* furnace|strong=\"G2575\"*. His|strong=\"G1722\"* voice|strong=\"G5456\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* had|strong=\"G2192\"* seven|strong=\"G2033\"* stars in|strong=\"G1722\"* his|strong=\"G1722\"* right|strong=\"G1188\"* hand|strong=\"G5495\"*. Out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1722\"* mouth|strong=\"G4750\"* proceeded|strong=\"G1607\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* two-edged|strong=\"G1366\"* sword|strong=\"G4501\"*. His|strong=\"G1722\"* face|strong=\"G4750\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sun|strong=\"G2246\"* shining|strong=\"G5316\"* at|strong=\"G1722\"* its|strong=\"G1537\"* brightest." + }, + { + "verseNum": 17, + "text": "When|strong=\"G3753\"* I|strong=\"G1473\"* saw|strong=\"G3708\"* him|strong=\"G3588\"*, I|strong=\"G1473\"* fell|strong=\"G4098\"* at|strong=\"G1909\"* his|strong=\"G1909\"* feet|strong=\"G4228\"* like|strong=\"G5613\"* a|strong=\"G5613\"* dead|strong=\"G3498\"* man|strong=\"G3361\"*." + }, + { + "verseNum": 18, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Living|strong=\"G2198\"\\+w* \\+w one|strong=\"G3588\"\\+w*. \\+w I|strong=\"G2532\"\\+w* \\+w was|strong=\"G1510\"\\+w* \\+w dead|strong=\"G3498\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w alive|strong=\"G2198\"\\+w* \\+w forever|strong=\"G1519\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w ever|strong=\"G1519\"\\+w*. Amen. \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w keys|strong=\"G2807\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w Death|strong=\"G2288\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w of|strong=\"G2532\"\\+w* Hades.*+ 1:18 or, Hell*" + }, + { + "verseNum": 19, + "text": "\\+w Write|strong=\"G1125\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w seen|strong=\"G3708\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w are|strong=\"G1510\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w happen|strong=\"G1096\"\\+w* \\+w hereafter|strong=\"G3326\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w The|strong=\"G2532\"\\+w* \\+w mystery|strong=\"G3466\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* stars \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w saw|strong=\"G3708\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w my|strong=\"G3708\"\\+w* \\+w right|strong=\"G1188\"\\+w* \\+w hand|strong=\"G1188\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w golden|strong=\"G5552\"\\+w* lamp stands \\+w is|strong=\"G1510\"\\+w* \\+w this|strong=\"G3588\"\\+w*: \\+w The|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* stars \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* angels*+ 1:20 or, messengers (here and wherever angels are mentioned)* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w The|strong=\"G2532\"\\+w* \\+w seven|strong=\"G2033\"\\+w* lamp stands \\+w are|strong=\"G1510\"\\+w* \\+w seven|strong=\"G2033\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w To|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G1577\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Ephesus|strong=\"G2181\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 2, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w toil|strong=\"G2873\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w can|strong=\"G1410\"\\+w*’\\+w t|strong=\"G3588\"\\+w* tolerate \\+w evil|strong=\"G2556\"\\+w* \\+w men|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w tested|strong=\"G3985\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w call|strong=\"G3004\"\\+w* \\+w themselves|strong=\"G1438\"\\+w* apostles, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w false|strong=\"G5571\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w You|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w perseverance|strong=\"G5281\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w endured|strong=\"G5281\"\\+w* \\+w for|strong=\"G1223\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w name|strong=\"G3686\"\\+w*’\\+w s|strong=\"G2192\"\\+w* \\+w sake|strong=\"G1223\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* *+ 2:3 TR adds “have labored and”* \\+w not|strong=\"G3756\"\\+w* \\+w grown|strong=\"G2872\"\\+w* \\+w weary|strong=\"G2872\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w I|strong=\"G3754\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* left \\+w your|strong=\"G2192\"\\+w* \\+w first|strong=\"G4413\"\\+w* love. *" + }, + { + "verseNum": 5, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w where|strong=\"G4159\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w fallen|strong=\"G4098\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w do|strong=\"G4160\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w* \\+w works|strong=\"G2041\"\\+w*; \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* swiftly, \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w move|strong=\"G2795\"\\+w* \\+w your|strong=\"G1437\"\\+w* lamp stand \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w its|strong=\"G1537\"\\+w* \\+w place|strong=\"G5117\"\\+w*, \\+w unless|strong=\"G1437\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. *" + }, + { + "verseNum": 6, + "text": "\\+w But|strong=\"G3588\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w hate|strong=\"G3404\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2041\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Nicolaitans|strong=\"G3531\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w hate|strong=\"G3404\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G1510\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w To|strong=\"G3004\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w tree|strong=\"G3586\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w Paradise|strong=\"G3857\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*.*" + }, + { + "verseNum": 8, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Smyrna|strong=\"G4667\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 9, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* works, oppression, \\+w and|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w poverty|strong=\"G4432\"\\+w* (\\+w but|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w rich|strong=\"G4145\"\\+w*), \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* blasphemy \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w synagogue|strong=\"G4864\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "Don’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w afraid|strong=\"G5399\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w suffer|strong=\"G3958\"\\+w*. \\+w Behold|strong=\"G2400\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w devil|strong=\"G1228\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G1519\"\\+w* throw \\+w some|strong=\"G3739\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w prison|strong=\"G5438\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w be|strong=\"G1096\"\\+w* \\+w tested|strong=\"G3985\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w have|strong=\"G2192\"\\+w* oppression \\+w for|strong=\"G1519\"\\+w* \\+w ten|strong=\"G1176\"\\+w* \\+w days|strong=\"G2250\"\\+w*. \\+w Be|strong=\"G1096\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w crown|strong=\"G4735\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* won’\\+w t|strong=\"G3588\"\\+w* \\+w be|strong=\"G3756\"\\+w* harmed \\+w by|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w death|strong=\"G2288\"\\+w*.*" + }, + { + "verseNum": 12, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Pergamum|strong=\"G4010\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 13, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* works \\+w and|strong=\"G2532\"\\+w* \\+w where|strong=\"G3699\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w dwell|strong=\"G2730\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*’s \\+w throne|strong=\"G2362\"\\+w* \\+w is|strong=\"G3588\"\\+w*. \\+w You|strong=\"G5210\"\\+w* \\+w hold|strong=\"G2902\"\\+w* firmly \\+w to|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w faith|strong=\"G4102\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w days|strong=\"G2250\"\\+w* \\+w of|strong=\"G2250\"\\+w* Antipas \\+w my|strong=\"G1722\"\\+w* \\+w witness|strong=\"G3144\"\\+w*, \\+w my|strong=\"G1722\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w one|strong=\"G3739\"\\+w*, \\+w who|strong=\"G3739\"\\+w* \\+w was|strong=\"G3588\"\\+w* killed \\+w among|strong=\"G1722\"\\+w* \\+w you|strong=\"G5210\"\\+w*, \\+w where|strong=\"G3699\"\\+w* \\+w Satan|strong=\"G4567\"\\+w* \\+w dwells|strong=\"G2730\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w there|strong=\"G1563\"\\+w* \\+w some|strong=\"G3739\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w hold|strong=\"G2902\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teaching|strong=\"G1321\"\\+w* \\+w of|strong=\"G5207\"\\+w* Balaam, \\+w who|strong=\"G3739\"\\+w* \\+w taught|strong=\"G1321\"\\+w* Balak \\+w to|strong=\"G2532\"\\+w* throw \\+w a|strong=\"G2192\"\\+w* \\+w stumbling|strong=\"G4625\"\\+w* \\+w block|strong=\"G4625\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w children|strong=\"G5207\"\\+w* \\+w of|strong=\"G5207\"\\+w* \\+w Israel|strong=\"G2474\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w sacrificed|strong=\"G1494\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w idols|strong=\"G1494\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w commit|strong=\"G4203\"\\+w* sexual \\+w immorality|strong=\"G4203\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w So|strong=\"G3779\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w likewise|strong=\"G3668\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w hold|strong=\"G2902\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w teaching|strong=\"G1322\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Nicolaitans|strong=\"G3531\"\\+w*.*+ 2:15 TR reads “which I hate” instead of “likewise”*" + }, + { + "verseNum": 16, + "text": "\\+w Repent|strong=\"G3340\"\\+w* \\+w therefore|strong=\"G3767\"\\+w*, \\+w or|strong=\"G2532\"\\+w* \\+w else|strong=\"G3361\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w quickly|strong=\"G5035\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w make|strong=\"G2532\"\\+w* \\+w war|strong=\"G4170\"\\+w* \\+w against|strong=\"G3326\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w sword|strong=\"G4501\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2983\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w To|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w hidden|strong=\"G2928\"\\+w* \\+w manna|strong=\"G3131\"\\+w*, *+ 2:17 Manna is supernatural food, named after the Hebrew for “What is it?”. See Exodus 11:7-9.* \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G3739\"\\+w* \\+w will|strong=\"G5101\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w stone|strong=\"G5586\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w stone|strong=\"G5586\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w written|strong=\"G1125\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3762\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w knows|strong=\"G1492\"\\+w* \\+w but|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3739\"\\+w* \\+w receives|strong=\"G2983\"\\+w* \\+w it|strong=\"G2532\"\\+w*.*" + }, + { + "verseNum": 18, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G5207\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Thyatira|strong=\"G2363\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 19, + "text": "“\\+w I|strong=\"G2532\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w your|strong=\"G2532\"\\+w* love, \\+w faith|strong=\"G4102\"\\+w*, \\+w service|strong=\"G1248\"\\+w*, \\+w patient|strong=\"G5281\"\\+w* \\+w endurance|strong=\"G5281\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G3588\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w last|strong=\"G2078\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w more|strong=\"G4119\"\\+w* \\+w than|strong=\"G4183\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w first|strong=\"G4413\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w But|strong=\"G2532\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3588\"\\+w* \\+w against|strong=\"G2596\"\\+w* \\+w you|strong=\"G4771\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* tolerate \\+w your|strong=\"G2192\"\\+w**+ 2:20 TR, NU read “that” instead of “your”* \\+w woman|strong=\"G1135\"\\+w* \\+w Jezebel|strong=\"G2403\"\\+w*, \\+w who|strong=\"G3588\"\\+w* \\+w calls|strong=\"G3004\"\\+w* \\+w herself|strong=\"G1438\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w prophetess|strong=\"G4398\"\\+w*. \\+w She|strong=\"G2532\"\\+w* \\+w teaches|strong=\"G1321\"\\+w* \\+w and|strong=\"G2532\"\\+w* seduces \\+w my|strong=\"G1699\"\\+w* \\+w servants|strong=\"G1401\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w commit|strong=\"G4203\"\\+w* sexual \\+w immorality|strong=\"G4203\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w eat|strong=\"G2068\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w sacrificed|strong=\"G1494\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w idols|strong=\"G1494\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w I|strong=\"G2532\"\\+w* \\+w gave|strong=\"G1325\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w time|strong=\"G5550\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w repent|strong=\"G3340\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w she|strong=\"G2532\"\\+w* refuses \\+w to|strong=\"G2443\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1325\"\\+w* \\+w sexual|strong=\"G4202\"\\+w* \\+w immorality|strong=\"G4202\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* throw \\+w her|strong=\"G1437\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w commit|strong=\"G3431\"\\+w* \\+w adultery|strong=\"G3431\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w bed|strong=\"G2825\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w great|strong=\"G3173\"\\+w* oppression, \\+w unless|strong=\"G1437\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w her|strong=\"G1437\"\\+w* \\+w works|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 23, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* kill \\+w her|strong=\"G1325\"\\+w* \\+w children|strong=\"G5043\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w Death|strong=\"G2288\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w searches|strong=\"G2045\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w minds|strong=\"G2588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w hearts|strong=\"G2588\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w one|strong=\"G1538\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w according|strong=\"G2596\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w deeds|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 24, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w rest|strong=\"G3062\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Thyatira|strong=\"G2363\"\\+w*—\\+w as|strong=\"G5613\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G5613\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w teaching|strong=\"G1322\"\\+w*, \\+w who|strong=\"G3588\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G3588\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w call|strong=\"G3004\"\\+w* ‘\\+w the|strong=\"G1722\"\\+w* deep \\+w things|strong=\"G3778\"\\+w* \\+w of|strong=\"G1909\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*’—\\+w to|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w I|strong=\"G1161\"\\+w* \\+w say|strong=\"G3004\"\\+w*, \\+w I|strong=\"G1161\"\\+w* \\+w am|strong=\"G2192\"\\+w* \\+w not|strong=\"G3756\"\\+w* \\+w putting|strong=\"G1722\"\\+w* \\+w any|strong=\"G2192\"\\+w* \\+w other|strong=\"G3062\"\\+w* burden \\+w on|strong=\"G1909\"\\+w* \\+w you|strong=\"G5210\"\\+w*. *" + }, + { + "verseNum": 25, + "text": "\\+w Nevertheless|strong=\"G4133\"\\+w*, \\+w hold|strong=\"G2902\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* firmly until \\+w I|strong=\"G3739\"\\+w* \\+w come|strong=\"G2240\"\\+w*. *" + }, + { + "verseNum": 26, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w end|strong=\"G5056\"\\+w*, \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w authority|strong=\"G1849\"\\+w* \\+w over|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w nations|strong=\"G1484\"\\+w*. *" + }, + { + "verseNum": 27, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w rule|strong=\"G4165\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w rod|strong=\"G4464\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w iron|strong=\"G4603\"\\+w*, shattering \\+w them|strong=\"G3588\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w clay|strong=\"G2764\"\\+w* pots,*+ 2:27 Psalms 2:9* \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*; *" + }, + { + "verseNum": 28, + "text": "\\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w morning|strong=\"G4407\"\\+w* star. *" + }, + { + "verseNum": 29, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“\\+w And|strong=\"G2532\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G4151\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sardis|strong=\"G4554\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 2, + "text": "\\+w Wake|strong=\"G1127\"\\+w* \\+w up|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w strengthen|strong=\"G4741\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w things|strong=\"G3588\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w remain|strong=\"G1096\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G3588\"\\+w* \\+w about|strong=\"G3195\"\\+w* \\+w to|strong=\"G2532\"\\+w* throw away,*+ 3:2 NU & TR read “which were about to die” instead of “which you were about to throw away”.* \\+w for|strong=\"G1063\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w found|strong=\"G2147\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w works|strong=\"G2041\"\\+w* \\+w of|strong=\"G2316\"\\+w* \\+w yours|strong=\"G4771\"\\+w* perfected \\+w before|strong=\"G1799\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w God|strong=\"G2316\"\\+w*. *" + }, + { + "verseNum": 3, + "text": "\\+w Remember|strong=\"G3421\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w how|strong=\"G4459\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w received|strong=\"G2983\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w heard|strong=\"G1097\"\\+w*. \\+w Keep|strong=\"G5083\"\\+w* \\+w it|strong=\"G2532\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w therefore|strong=\"G3767\"\\+w* \\+w you|strong=\"G4771\"\\+w* won’t \\+w watch|strong=\"G1127\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w as|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w thief|strong=\"G2812\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w you|strong=\"G4771\"\\+w* won’t \\+w know|strong=\"G1097\"\\+w* \\+w what|strong=\"G4169\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w I|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w upon|strong=\"G1909\"\\+w* \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 4, + "text": "\\+w Nevertheless|strong=\"G3756\"\\+w* \\+w you|strong=\"G3739\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w few|strong=\"G3641\"\\+w* \\+w names|strong=\"G3686\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Sardis|strong=\"G4554\"\\+w* \\+w that|strong=\"G3754\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* defile \\+w their|strong=\"G2532\"\\+w* \\+w garments|strong=\"G2440\"\\+w*. \\+w They|strong=\"G2532\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w white|strong=\"G3022\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* worthy. *" + }, + { + "verseNum": 5, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w arrayed|strong=\"G4016\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w garments|strong=\"G2440\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w way|strong=\"G3779\"\\+w* blot \\+w his|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w book|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w confess|strong=\"G3670\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w his|strong=\"G1722\"\\+w* angels. *" + }, + { + "verseNum": 6, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + }, + { + "verseNum": 7, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Philadelphia|strong=\"G5359\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 8, + "text": "“\\+w I|strong=\"G1473\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w works|strong=\"G2041\"\\+w* (\\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w set|strong=\"G2532\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w an|strong=\"G2192\"\\+w* open \\+w door|strong=\"G2374\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w one|strong=\"G3762\"\\+w* \\+w can|strong=\"G1410\"\\+w* \\+w shut|strong=\"G2808\"\\+w*), \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w a|strong=\"G2192\"\\+w* \\+w little|strong=\"G3398\"\\+w* \\+w power|strong=\"G1411\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w word|strong=\"G3056\"\\+w*, \\+w and|strong=\"G2532\"\\+w* didn’\\+w t|strong=\"G3588\"\\+w* \\+w deny|strong=\"G3588\"\\+w* \\+w my|strong=\"G5083\"\\+w* \\+w name|strong=\"G3686\"\\+w*. *" + }, + { + "verseNum": 9, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w some|strong=\"G3588\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w synagogue|strong=\"G4864\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w Satan|strong=\"G4567\"\\+w*, \\+w of|strong=\"G1537\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w say|strong=\"G3004\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w Jews|strong=\"G2453\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w not|strong=\"G3756\"\\+w*, \\+w but|strong=\"G2532\"\\+w* \\+w lie|strong=\"G5574\"\\+w*—\\+w behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G1510\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w them|strong=\"G3588\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w come|strong=\"G2240\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w worship|strong=\"G4352\"\\+w* \\+w before|strong=\"G1799\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w feet|strong=\"G4228\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w know|strong=\"G1097\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w have|strong=\"G2532\"\\+w* loved \\+w you|strong=\"G4771\"\\+w*. *" + }, + { + "verseNum": 10, + "text": "\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w kept|strong=\"G5083\"\\+w* \\+w my|strong=\"G5083\"\\+w* command \\+w to|strong=\"G1909\"\\+w* endure, \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2504\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w keep|strong=\"G5083\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w hour|strong=\"G5610\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w testing|strong=\"G3985\"\\+w* \\+w which|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w to|strong=\"G1909\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w whole|strong=\"G3650\"\\+w* \\+w world|strong=\"G3625\"\\+w*, \\+w to|strong=\"G1909\"\\+w* \\+w test|strong=\"G3985\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w dwell|strong=\"G2730\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w the|strong=\"G1537\"\\+w* \\+w earth|strong=\"G1093\"\\+w*. *" + }, + { + "verseNum": 11, + "text": "\\+w I|strong=\"G3739\"\\+w* \\+w am|strong=\"G2192\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w quickly|strong=\"G5035\"\\+w*! \\+w Hold|strong=\"G2902\"\\+w* firmly \\+w that|strong=\"G2443\"\\+w* \\+w which|strong=\"G3739\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w have|strong=\"G2192\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w no|strong=\"G3367\"\\+w* \\+w one|strong=\"G3367\"\\+w* \\+w takes|strong=\"G2983\"\\+w* \\+w your|strong=\"G2192\"\\+w* \\+w crown|strong=\"G4735\"\\+w*. *" + }, + { + "verseNum": 12, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w make|strong=\"G4160\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w a|strong=\"G2532\"\\+w* \\+w pillar|strong=\"G4769\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w temple|strong=\"G3485\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w go|strong=\"G1831\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w there|strong=\"G2532\"\\+w* \\+w no|strong=\"G3756\"\\+w* \\+w more|strong=\"G2089\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w write|strong=\"G1125\"\\+w* \\+w on|strong=\"G1909\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w name|strong=\"G3686\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w city|strong=\"G4172\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w the|strong=\"G1722\"\\+w* \\+w new|strong=\"G2537\"\\+w* \\+w Jerusalem|strong=\"G2419\"\\+w*, \\+w which|strong=\"G3588\"\\+w* \\+w comes|strong=\"G2597\"\\+w* \\+w down|strong=\"G2597\"\\+w* \\+w out|strong=\"G1831\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w heaven|strong=\"G3772\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w my|strong=\"G1722\"\\+w* own \\+w new|strong=\"G2537\"\\+w* \\+w name|strong=\"G3686\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.*" + }, + { + "verseNum": 14, + "text": "“\\+w To|strong=\"G2532\"\\+w* \\+w the|strong=\"G1722\"\\+w* angel \\+w of|strong=\"G2316\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w assembly|strong=\"G1577\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w Laodicea|strong=\"G2993\"\\+w* \\+w write|strong=\"G1125\"\\+w*:*" + }, + { + "verseNum": 15, + "text": "“\\+w I|strong=\"G3754\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w your|strong=\"G3588\"\\+w* \\+w works|strong=\"G2041\"\\+w*, \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w hot|strong=\"G2200\"\\+w*. \\+w I|strong=\"G3754\"\\+w* \\+w wish|strong=\"G3785\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w were|strong=\"G1510\"\\+w* \\+w cold|strong=\"G5593\"\\+w* \\+w or|strong=\"G2228\"\\+w* \\+w hot|strong=\"G2200\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w So|strong=\"G3779\"\\+w*, \\+w because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w lukewarm|strong=\"G5513\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w neither|strong=\"G3777\"\\+w* \\+w hot|strong=\"G2200\"\\+w* \\+w nor|strong=\"G3777\"\\+w* \\+w cold|strong=\"G5593\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G3195\"\\+w* \\+w vomit|strong=\"G1692\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w out|strong=\"G1537\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w mouth|strong=\"G4750\"\\+w*. *" + }, + { + "verseNum": 17, + "text": "\\+w Because|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w say|strong=\"G3004\"\\+w*, ‘\\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w rich|strong=\"G4145\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* gotten \\+w riches|strong=\"G4147\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w have|strong=\"G2192\"\\+w* \\+w need|strong=\"G5532\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w nothing|strong=\"G3762\"\\+w*,’ \\+w and|strong=\"G2532\"\\+w* don’\\+w t|strong=\"G3588\"\\+w* \\+w know|strong=\"G1492\"\\+w* \\+w that|strong=\"G3754\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w wretched|strong=\"G5005\"\\+w* \\+w one|strong=\"G3762\"\\+w*, \\+w miserable|strong=\"G1652\"\\+w*, \\+w poor|strong=\"G4434\"\\+w*, \\+w blind|strong=\"G5185\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w naked|strong=\"G1131\"\\+w*; *" + }, + { + "verseNum": 18, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w counsel|strong=\"G4823\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w to|strong=\"G2443\"\\+w* buy \\+w from|strong=\"G1537\"\\+w* \\+w me|strong=\"G1473\"\\+w* \\+w gold|strong=\"G5553\"\\+w* \\+w refined|strong=\"G4448\"\\+w* \\+w by|strong=\"G1537\"\\+w* \\+w fire|strong=\"G4442\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w become|strong=\"G4147\"\\+w* \\+w rich|strong=\"G4147\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w white|strong=\"G3022\"\\+w* \\+w garments|strong=\"G2440\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w clothe|strong=\"G4016\"\\+w* \\+w yourself|strong=\"G4771\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w the|strong=\"G2532\"\\+w* shame \\+w of|strong=\"G1537\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w nakedness|strong=\"G1132\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w not|strong=\"G3361\"\\+w* \\+w be|strong=\"G2532\"\\+w* \\+w revealed|strong=\"G5319\"\\+w*; \\+w and|strong=\"G2532\"\\+w* \\+w eye|strong=\"G3788\"\\+w* \\+w salve|strong=\"G2854\"\\+w* \\+w to|strong=\"G2443\"\\+w* \\+w anoint|strong=\"G1472\"\\+w* \\+w your|strong=\"G2532\"\\+w* \\+w eyes|strong=\"G3788\"\\+w*, \\+w that|strong=\"G2443\"\\+w* \\+w you|strong=\"G4771\"\\+w* \\+w may|strong=\"G2532\"\\+w* see. *" + }, + { + "verseNum": 19, + "text": "\\+w As|strong=\"G3745\"\\+w* \\+w many|strong=\"G3745\"\\+w* \\+w as|strong=\"G3745\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w love|strong=\"G5368\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w reprove|strong=\"G1651\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w chasten|strong=\"G3811\"\\+w*. \\+w Be|strong=\"G2532\"\\+w* zealous \\+w therefore|strong=\"G3767\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w repent|strong=\"G3340\"\\+w*. *" + }, + { + "verseNum": 20, + "text": "\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w stand|strong=\"G2476\"\\+w* \\+w at|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w knock|strong=\"G2925\"\\+w*. \\+w If|strong=\"G1437\"\\+w* \\+w anyone|strong=\"G5100\"\\+w* hears \\+w my|strong=\"G3708\"\\+w* \\+w voice|strong=\"G5456\"\\+w* \\+w and|strong=\"G2532\"\\+w* opens \\+w the|strong=\"G2532\"\\+w* \\+w door|strong=\"G2374\"\\+w*, \\+w then|strong=\"G2532\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w come|strong=\"G1525\"\\+w* \\+w in|strong=\"G1909\"\\+w* \\+w to|strong=\"G4314\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w dine|strong=\"G1172\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w him|strong=\"G3588\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*. *" + }, + { + "verseNum": 21, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w sit|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1325\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w*, \\+w as|strong=\"G5613\"\\+w* \\+w I|strong=\"G1473\"\\+w* \\+w also|strong=\"G2532\"\\+w* \\+w overcame|strong=\"G3528\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sat|strong=\"G2523\"\\+w* \\+w down|strong=\"G2523\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w my|strong=\"G1722\"\\+w* \\+w Father|strong=\"G3962\"\\+w* \\+w on|strong=\"G1722\"\\+w* \\+w his|strong=\"G1722\"\\+w* \\+w throne|strong=\"G2362\"\\+w*. *" + }, + { + "verseNum": 22, + "text": "\\+w He|strong=\"G3588\"\\+w* \\+w who|strong=\"G5101\"\\+w* \\+w has|strong=\"G2192\"\\+w* \\+w an|strong=\"G2192\"\\+w* \\+w ear|strong=\"G3775\"\\+w*, \\+w let|strong=\"G2192\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w hear|strong=\"G5101\"\\+w* \\+w what|strong=\"G5101\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w Spirit|strong=\"G4151\"\\+w* \\+w says|strong=\"G3004\"\\+w* \\+w to|strong=\"G3004\"\\+w* \\+w the|strong=\"G3588\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*.”*" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G1473\"* looked|strong=\"G3708\"* and|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G1096\"* door|strong=\"G2374\"* opened in|strong=\"G1722\"* heaven|strong=\"G3772\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"* voice|strong=\"G5456\"* that|strong=\"G3739\"* I|strong=\"G1473\"* heard, like|strong=\"G5613\"* a|strong=\"G1096\"* trumpet|strong=\"G4536\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, was|strong=\"G1096\"* one|strong=\"G3739\"* saying|strong=\"G3004\"*, “Come|strong=\"G1096\"* up|strong=\"G1210\"* here|strong=\"G5602\"*, and|strong=\"G2532\"* I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* after|strong=\"G3326\"* this|strong=\"G3778\"*.”" + }, + { + "verseNum": 2, + "text": "Immediately|strong=\"G2112\"* I|strong=\"G2532\"* was|strong=\"G1096\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"*. Behold|strong=\"G2400\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* throne|strong=\"G2362\"* set|strong=\"G2749\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*" + }, + { + "verseNum": 3, + "text": "that|strong=\"G3588\"* looked|strong=\"G2532\"* like|strong=\"G3664\"* a|strong=\"G2532\"* jasper|strong=\"G2393\"* stone|strong=\"G3037\"* and|strong=\"G2532\"* a|strong=\"G2532\"* sardius|strong=\"G4556\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* a|strong=\"G2532\"* rainbow|strong=\"G2463\"* around|strong=\"G2943\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, like|strong=\"G3664\"* an|strong=\"G2532\"* emerald|strong=\"G4664\"* to|strong=\"G2532\"* look at|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "Around|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* were|strong=\"G3588\"* twenty-four|strong=\"G1501\"* thrones|strong=\"G2362\"*. On|strong=\"G1909\"* the|strong=\"G1722\"* thrones|strong=\"G2362\"* were|strong=\"G3588\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* sitting|strong=\"G2521\"*, dressed|strong=\"G4016\"* in|strong=\"G1722\"* white|strong=\"G3022\"* garments|strong=\"G2440\"*, with|strong=\"G1722\"* crowns|strong=\"G4735\"* of|strong=\"G2532\"* gold|strong=\"G5552\"* on|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*." + }, + { + "verseNum": 5, + "text": "Out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* proceed|strong=\"G1607\"* lightnings, sounds|strong=\"G5456\"*, and|strong=\"G2532\"* thunders|strong=\"G1027\"*. There|strong=\"G2532\"* were|strong=\"G1510\"* seven|strong=\"G2033\"* lamps|strong=\"G2985\"* of|strong=\"G1537\"* fire|strong=\"G4442\"* burning|strong=\"G2545\"* before|strong=\"G1799\"* his|strong=\"G2532\"* throne|strong=\"G2362\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 6, + "text": "Before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* was|strong=\"G3588\"* something|strong=\"G3788\"* like|strong=\"G5613\"* a|strong=\"G5613\"* sea|strong=\"G2281\"* of|strong=\"G2532\"* glass|strong=\"G5193\"*, similar|strong=\"G3664\"* to|strong=\"G2532\"* crystal|strong=\"G2930\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* around|strong=\"G2945\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* were|strong=\"G3588\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* full|strong=\"G1073\"* of|strong=\"G2532\"* eyes|strong=\"G3788\"* before|strong=\"G1799\"* and|strong=\"G2532\"* behind|strong=\"G3693\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* creature|strong=\"G2226\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* lion|strong=\"G3023\"*, the|strong=\"G2532\"* second|strong=\"G1208\"* creature|strong=\"G2226\"* like|strong=\"G5613\"* a|strong=\"G2192\"* calf|strong=\"G3448\"*, the|strong=\"G2532\"* third|strong=\"G5154\"* creature|strong=\"G2226\"* had|strong=\"G2192\"* a|strong=\"G2192\"* face|strong=\"G4383\"* like|strong=\"G5613\"* a|strong=\"G2192\"* man|strong=\"G4413\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* fourth|strong=\"G5067\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* flying|strong=\"G4072\"* eagle." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, each|strong=\"G2596\"* one|strong=\"G1520\"* of|strong=\"G2250\"* them|strong=\"G3588\"* having|strong=\"G2192\"* six|strong=\"G1803\"* wings|strong=\"G4420\"*, are|strong=\"G1510\"* full|strong=\"G1073\"* of|strong=\"G2250\"* eyes|strong=\"G3788\"* around|strong=\"G2943\"* and|strong=\"G2532\"* within|strong=\"G2081\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* rest|strong=\"G1510\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*, saying|strong=\"G3004\"*, “Holy, holy, holy+ 4:8 Hodges/Farstad MT reads “holy” 9 times instead of 3.* is|strong=\"G1510\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, who|strong=\"G3588\"* was|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G1510\"* to|strong=\"G2532\"* come|strong=\"G2064\"*!”" + }, + { + "verseNum": 9, + "text": "When|strong=\"G3752\"* the|strong=\"G2532\"* living|strong=\"G2198\"* creatures|strong=\"G2226\"* give|strong=\"G1325\"* glory|strong=\"G1391\"*, honor|strong=\"G5092\"*, and|strong=\"G2532\"* thanks|strong=\"G2169\"* to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, to|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* fall|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1799\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"* who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*, and|strong=\"G2532\"* throw|strong=\"G4098\"* their|strong=\"G2532\"* crowns|strong=\"G4735\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 11, + "text": "“Worthy are|strong=\"G1510\"* you|strong=\"G4771\"*, our|strong=\"G2316\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Holy One|strong=\"G3956\"*,+ 4:11 TR omits “and God, the Holy One,”* to|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* glory|strong=\"G1391\"*, the|strong=\"G2532\"* honor|strong=\"G5092\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* power|strong=\"G1411\"*, for|strong=\"G3754\"* you|strong=\"G4771\"* created|strong=\"G2936\"* all|strong=\"G3956\"* things|strong=\"G3956\"*, and|strong=\"G2532\"* because|strong=\"G3754\"* of|strong=\"G1223\"* your|strong=\"G1223\"* desire|strong=\"G2307\"* they|strong=\"G2532\"* existed|strong=\"G1510\"* and|strong=\"G2532\"* were|strong=\"G1510\"* created|strong=\"G2936\"*!”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, in|strong=\"G1909\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, a|strong=\"G2532\"* book|strong=\"G3588\"* written|strong=\"G1125\"* inside|strong=\"G2081\"* and|strong=\"G2532\"* outside, sealed|strong=\"G2696\"* shut with|strong=\"G2532\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* mighty|strong=\"G2478\"* angel proclaiming|strong=\"G2784\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* worthy to|strong=\"G2532\"* open the|strong=\"G1722\"* book|strong=\"G3588\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* break|strong=\"G3089\"* its|strong=\"G3089\"* seals|strong=\"G4973\"*?”" + }, + { + "verseNum": 3, + "text": "No|strong=\"G3762\"* one|strong=\"G3762\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* above|strong=\"G1909\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* under|strong=\"G5270\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* open the|strong=\"G1722\"* book|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* look in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"G2532\"* I|strong=\"G1473\"* wept|strong=\"G2799\"* much|strong=\"G4183\"*, because|strong=\"G3754\"* no|strong=\"G3762\"* one|strong=\"G3762\"* was|strong=\"G3588\"* found|strong=\"G2147\"* worthy to|strong=\"G2532\"* open the|strong=\"G2532\"* book|strong=\"G3588\"* or|strong=\"G2532\"* to|strong=\"G2532\"* look in|strong=\"G2532\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Don’t|strong=\"G3588\"* weep|strong=\"G2799\"*. Behold|strong=\"G2400\"*, the|strong=\"G2532\"* Lion|strong=\"G3023\"* who|strong=\"G3588\"* is|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"*, the|strong=\"G2532\"* Root|strong=\"G4491\"* of|strong=\"G1537\"* David|strong=\"G1138\"*, has|strong=\"G3708\"* overcome|strong=\"G3528\"*: he|strong=\"G2532\"* who|strong=\"G3588\"* opens the|strong=\"G2532\"* book|strong=\"G3588\"* and|strong=\"G2532\"* its|strong=\"G1537\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G4151\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* of|strong=\"G4151\"* the|strong=\"G1722\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G4151\"* the|strong=\"G1722\"* elders|strong=\"G4245\"*, a|strong=\"G2192\"* Lamb standing|strong=\"G2476\"*, as|strong=\"G5613\"* though|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2192\"* been|strong=\"G1510\"* slain|strong=\"G4969\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* horns|strong=\"G2768\"* and|strong=\"G2532\"* seven|strong=\"G2033\"* eyes|strong=\"G3788\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* Spirits|strong=\"G4151\"* of|strong=\"G4151\"* God|strong=\"G2316\"*, sent|strong=\"G2316\"* out|strong=\"G2532\"* into|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G2064\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* took|strong=\"G2983\"* it|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* right|strong=\"G1188\"* hand|strong=\"G1188\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"G2532\"* when|strong=\"G3753\"* he|strong=\"G2532\"* had|strong=\"G2192\"* taken|strong=\"G2983\"* the|strong=\"G2532\"* book|strong=\"G3588\"*, the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* and|strong=\"G2532\"* the|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1799\"* the|strong=\"G2532\"* Lamb, each|strong=\"G1538\"* one|strong=\"G1538\"* having|strong=\"G2192\"* a|strong=\"G2192\"* harp|strong=\"G2788\"*, and|strong=\"G2532\"* golden|strong=\"G5552\"* bowls|strong=\"G5357\"* full|strong=\"G1073\"* of|strong=\"G2532\"* incense|strong=\"G2368\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* sang a|strong=\"G2532\"* new|strong=\"G2537\"* song|strong=\"G5603\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"G2532\"* made|strong=\"G4160\"* us|strong=\"G4160\"* kings|strong=\"G3588\"* and|strong=\"G2532\"* priests|strong=\"G2409\"* to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* a|strong=\"G5613\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* angels around|strong=\"G2945\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, the|strong=\"G2532\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*. The|strong=\"G2532\"* number of|strong=\"G2532\"* them|strong=\"G3588\"* was|strong=\"G1510\"* ten|strong=\"G3461\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* ten|strong=\"G3461\"* thousands|strong=\"G3461\"*, and|strong=\"G2532\"* thousands|strong=\"G3461\"* of|strong=\"G2532\"* thousands|strong=\"G3461\"*," + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Worthy is|strong=\"G1510\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* who|strong=\"G3588\"* has|strong=\"G1510\"* been|strong=\"G1510\"* killed to|strong=\"G2532\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* power|strong=\"G1411\"*, wealth|strong=\"G4149\"*, wisdom|strong=\"G4678\"*, strength|strong=\"G2479\"*, honor|strong=\"G5092\"*, glory|strong=\"G1391\"*, and|strong=\"G2532\"* blessing|strong=\"G2129\"*!”" + }, + { + "verseNum": 13, + "text": "I|strong=\"G3739\"* heard every|strong=\"G3956\"* created|strong=\"G2938\"* thing|strong=\"G3956\"* which|strong=\"G3739\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, under|strong=\"G5270\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* everything|strong=\"G3956\"* in|strong=\"G1722\"* them|strong=\"G3588\"*, saying|strong=\"G3004\"*, “To|strong=\"G1519\"* him|strong=\"G3588\"* who|strong=\"G3739\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* to|strong=\"G1519\"* the|strong=\"G1722\"* Lamb|strong=\"G3004\"* be|strong=\"G2532\"* the|strong=\"G1722\"* blessing|strong=\"G2129\"*, the|strong=\"G1722\"* honor|strong=\"G5092\"*, the|strong=\"G1722\"* glory|strong=\"G1391\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* dominion|strong=\"G2904\"*, forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen!”+ 5:13 TR omits “Amen!”*" + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* said|strong=\"G3004\"*, “Amen!” Then|strong=\"G2532\"* the|strong=\"G2532\"*+ 5:14 TR adds “twenty-four”* elders|strong=\"G4245\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"*.+ 5:14 TR adds “the one living forever and ever”*" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* that|strong=\"G3588\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"* opened one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* seals|strong=\"G4973\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* saying|strong=\"G3004\"*, as|strong=\"G5613\"* with|strong=\"G1537\"* a|strong=\"G5613\"* voice|strong=\"G5456\"* of|strong=\"G1537\"* thunder|strong=\"G1027\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"*!”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"G2532\"* a|strong=\"G2192\"* white|strong=\"G3022\"* horse|strong=\"G2462\"* appeared|strong=\"G3708\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* bow|strong=\"G5115\"*. A|strong=\"G2192\"* crown|strong=\"G4735\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* came|strong=\"G1831\"* out|strong=\"G1831\"* conquering|strong=\"G3528\"*, and|strong=\"G2532\"* to|strong=\"G2443\"* conquer|strong=\"G3528\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* second|strong=\"G1208\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G2532\"* second|strong=\"G1208\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"*!”" + }, + { + "verseNum": 4, + "text": "Another|strong=\"G3588\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, a|strong=\"G2532\"* red|strong=\"G4450\"* horse|strong=\"G2462\"*. To|strong=\"G2443\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* power|strong=\"G1325\"* to|strong=\"G2443\"* take|strong=\"G2983\"* peace|strong=\"G1515\"* from|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3588\"* kill|strong=\"G4969\"* one|strong=\"G3588\"* another|strong=\"G3588\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"* a|strong=\"G2532\"* great|strong=\"G3173\"* sword|strong=\"G3162\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G1722\"* third|strong=\"G5154\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G1722\"* third|strong=\"G5154\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see|strong=\"G3708\"*!” And|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2192\"* black|strong=\"G3189\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* balance in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* heard a|strong=\"G5613\"* voice|strong=\"G5456\"* in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* the|strong=\"G1722\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* saying|strong=\"G3004\"*, “A|strong=\"G5613\"* choenix+ 6:6 A choenix is a dry volume measure that is a little more than a liter (a little more than a quart).* of|strong=\"G2532\"* wheat|strong=\"G4621\"* for|strong=\"G1722\"* a|strong=\"G5613\"* denarius|strong=\"G1220\"*, and|strong=\"G2532\"* three|strong=\"G5140\"* choenix of|strong=\"G2532\"* barley|strong=\"G2915\"* for|strong=\"G1722\"* a|strong=\"G5613\"* denarius|strong=\"G1220\"*! Don’t|strong=\"G3588\"* damage the|strong=\"G1722\"* oil|strong=\"G1637\"* and|strong=\"G2532\"* the|strong=\"G1722\"* wine|strong=\"G3631\"*!”" + }, + { + "verseNum": 7, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* fourth|strong=\"G5067\"* seal|strong=\"G4973\"*, I|strong=\"G2532\"* heard the|strong=\"G2532\"* fourth|strong=\"G5067\"* living|strong=\"G2226\"* creature|strong=\"G2226\"* saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* and|strong=\"G2532\"* see!”" + }, + { + "verseNum": 8, + "text": "And|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* pale|strong=\"G5515\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* name|strong=\"G3686\"* of|strong=\"G5259\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* was|strong=\"G3588\"* Death|strong=\"G2288\"*. Hades+ 6:8 or, Hell* followed with|strong=\"G3326\"* him|strong=\"G3588\"*. Authority|strong=\"G1849\"* over|strong=\"G1909\"* one|strong=\"G3588\"* fourth|strong=\"G5067\"* of|strong=\"G5259\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, to|strong=\"G2532\"* kill with|strong=\"G3326\"* the|strong=\"G1722\"* sword|strong=\"G4501\"*, with|strong=\"G3326\"* famine|strong=\"G3042\"*, with|strong=\"G3326\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* by|strong=\"G1722\"* the|strong=\"G1722\"* wild|strong=\"G2342\"* animals of|strong=\"G5259\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* fifth|strong=\"G3991\"* seal|strong=\"G4973\"*, I|strong=\"G3739\"* saw|strong=\"G3708\"* underneath|strong=\"G5270\"* the|strong=\"G2532\"* altar|strong=\"G2379\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2192\"* been|strong=\"G2192\"* killed for|strong=\"G1223\"* the|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb which|strong=\"G3739\"* they|strong=\"G2532\"* had|strong=\"G2192\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1537\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “How|strong=\"G2193\"* long|strong=\"G2193\"*, Master|strong=\"G1203\"*, the|strong=\"G2532\"* holy and|strong=\"G2532\"* true|strong=\"G3588\"*, until|strong=\"G2193\"* you|strong=\"G3004\"* judge|strong=\"G2919\"* and|strong=\"G2532\"* avenge|strong=\"G1556\"* our|strong=\"G2532\"* blood on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*?”" + }, + { + "verseNum": 11, + "text": "A|strong=\"G5613\"* long|strong=\"G5550\"* white|strong=\"G3022\"* robe|strong=\"G4749\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* each|strong=\"G1538\"* of|strong=\"G2532\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* told that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G3195\"* rest yet|strong=\"G2089\"* for|strong=\"G2532\"* a|strong=\"G5613\"* while|strong=\"G5613\"*, until|strong=\"G2193\"* their|strong=\"G2532\"* fellow|strong=\"G4889\"* servants|strong=\"G4889\"* and|strong=\"G2532\"* their|strong=\"G2532\"* brothers,+ 6:11 The word for “brothers” here and where context allows may also be correctly translated “brothers and sisters” or “siblings.”* who|strong=\"G3588\"* would|strong=\"G3195\"* also|strong=\"G2532\"* be|strong=\"G2532\"* killed even|strong=\"G2532\"* as|strong=\"G5613\"* they|strong=\"G2532\"* were|strong=\"G3588\"*, should|strong=\"G3195\"* complete|strong=\"G4137\"* their|strong=\"G2532\"* course." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* when|strong=\"G3753\"* he|strong=\"G2532\"* opened the|strong=\"G2532\"* sixth|strong=\"G1623\"* seal|strong=\"G4973\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*. The|strong=\"G2532\"* sun|strong=\"G2246\"* became|strong=\"G1096\"* black|strong=\"G3189\"* as|strong=\"G5613\"* sackcloth|strong=\"G4526\"* made|strong=\"G1096\"* of|strong=\"G2532\"* hair|strong=\"G5155\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* moon|strong=\"G4582\"* became|strong=\"G1096\"* as|strong=\"G5613\"* blood." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* stars of|strong=\"G5259\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* fell|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, like|strong=\"G5613\"* a|strong=\"G5613\"* fig|strong=\"G4808\"* tree|strong=\"G4808\"* dropping its|strong=\"G5259\"* unripe|strong=\"G3653\"* figs|strong=\"G3653\"* when|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G3588\"* shaken|strong=\"G4579\"* by|strong=\"G5259\"* a|strong=\"G5613\"* great|strong=\"G3173\"* wind." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* sky|strong=\"G3772\"* was|strong=\"G3588\"* removed like|strong=\"G5613\"* a|strong=\"G5613\"* scroll when|strong=\"G5613\"* it|strong=\"G2532\"* is|strong=\"G3588\"* rolled|strong=\"G1667\"* up|strong=\"G1667\"*. Every|strong=\"G3956\"* mountain|strong=\"G3735\"* and|strong=\"G2532\"* island|strong=\"G3520\"* was|strong=\"G3588\"* moved|strong=\"G2795\"* out|strong=\"G1537\"* of|strong=\"G1537\"* its|strong=\"G3956\"* place|strong=\"G5117\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, the|strong=\"G2532\"* princes, the|strong=\"G2532\"* commanding officers, the|strong=\"G2532\"* rich|strong=\"G4145\"*, the|strong=\"G2532\"* strong|strong=\"G2478\"*, and|strong=\"G2532\"* every|strong=\"G3956\"* slave|strong=\"G1401\"* and|strong=\"G2532\"* free|strong=\"G1658\"* person, hid|strong=\"G2928\"* themselves|strong=\"G1438\"* in|strong=\"G1519\"* the|strong=\"G2532\"* caves|strong=\"G4693\"* and|strong=\"G2532\"* in|strong=\"G1519\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"* of|strong=\"G2532\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G2532\"* told|strong=\"G3004\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"* and|strong=\"G2532\"* the|strong=\"G2532\"* rocks|strong=\"G4073\"*, “Fall|strong=\"G4098\"* on|strong=\"G1909\"* us|strong=\"G3004\"*, and|strong=\"G2532\"* hide|strong=\"G2928\"* us|strong=\"G3004\"* from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* wrath|strong=\"G3709\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*," + }, + { + "verseNum": 17, + "text": "for|strong=\"G3754\"* the|strong=\"G2532\"* great|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G2250\"* his|strong=\"G2532\"* wrath|strong=\"G3709\"* has|strong=\"G5101\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* who|strong=\"G5101\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* stand|strong=\"G2476\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* this|strong=\"G3778\"*, I|strong=\"G2532\"* saw|strong=\"G3708\"* four|strong=\"G5064\"* angels standing|strong=\"G2476\"* at|strong=\"G1909\"* the|strong=\"G2532\"* four|strong=\"G5064\"* corners|strong=\"G1137\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, holding|strong=\"G2902\"* the|strong=\"G2532\"* four|strong=\"G5064\"* winds of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* no|strong=\"G3361\"* wind|strong=\"G4154\"* would|strong=\"G2532\"* blow|strong=\"G4154\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, or|strong=\"G2532\"* on|strong=\"G1909\"* any|strong=\"G3956\"* tree|strong=\"G1186\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* another|strong=\"G3739\"* angel ascend from|strong=\"G2532\"* the|strong=\"G2532\"* sunrise, having|strong=\"G2192\"* the|strong=\"G2532\"* seal|strong=\"G4973\"* of|strong=\"G2316\"* the|strong=\"G2532\"* living|strong=\"G2198\"* God|strong=\"G2316\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2192\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* angels to|strong=\"G2532\"* whom|strong=\"G3739\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* harm the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*," + }, + { + "verseNum": 3, + "text": "saying|strong=\"G3004\"*, “Don’t|strong=\"G3588\"* harm the|strong=\"G1909\"* earth|strong=\"G1093\"*, the|strong=\"G1909\"* sea|strong=\"G2281\"*, or|strong=\"G3383\"* the|strong=\"G1909\"* trees|strong=\"G1186\"*, until we|strong=\"G2249\"* have|strong=\"G1473\"* sealed|strong=\"G4972\"* the|strong=\"G1909\"* bondservants of|strong=\"G2316\"* our|strong=\"G2316\"* God|strong=\"G2316\"* on|strong=\"G1909\"* their|strong=\"G3588\"* foreheads|strong=\"G3359\"*!”" + }, + { + "verseNum": 4, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* number of|strong=\"G1537\"* those|strong=\"G3588\"* who|strong=\"G3588\"* were|strong=\"G3588\"* sealed|strong=\"G4972\"*, one|strong=\"G3956\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, sealed|strong=\"G4972\"* out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G1537\"* Israel|strong=\"G2474\"*:" + }, + { + "verseNum": 5, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Judah|strong=\"G2455\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"* were sealed|strong=\"G4972\"*," + }, + { + "verseNum": 6, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Asher twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 7, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Simeon|strong=\"G4826\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 8, + "text": "of|strong=\"G1537\"* the|strong=\"G1537\"* tribe|strong=\"G5443\"* of|strong=\"G1537\"* Zebulun|strong=\"G2194\"* twelve|strong=\"G1427\"* thousand|strong=\"G5505\"*," + }, + { + "verseNum": 9, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3956\"* I|strong=\"G3739\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"* which|strong=\"G3739\"* no|strong=\"G3762\"* man|strong=\"G3778\"* could|strong=\"G1410\"* count, out|strong=\"G1537\"* of|strong=\"G1537\"* every|strong=\"G3956\"* nation|strong=\"G1484\"* and|strong=\"G2532\"* of|strong=\"G1537\"* all|strong=\"G3956\"* tribes|strong=\"G5443\"*, peoples|strong=\"G2992\"*, and|strong=\"G2532\"* languages|strong=\"G1100\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* before|strong=\"G1799\"* the|strong=\"G1722\"* Lamb, dressed|strong=\"G4016\"* in|strong=\"G1722\"* white|strong=\"G3022\"* robes|strong=\"G4749\"*, with|strong=\"G3326\"* palm|strong=\"G5404\"* branches|strong=\"G5404\"* in|strong=\"G1722\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Salvation|strong=\"G4991\"* be|strong=\"G2532\"* to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*!”" + }, + { + "verseNum": 11, + "text": "All|strong=\"G3956\"* the|strong=\"G2532\"* angels were|strong=\"G3588\"* standing|strong=\"G2476\"* around|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, the|strong=\"G2532\"* elders|strong=\"G4245\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* before|strong=\"G1799\"* his|strong=\"G3956\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 12, + "text": "saying|strong=\"G3004\"*, “Amen! Blessing|strong=\"G2129\"*, glory|strong=\"G1391\"*, wisdom|strong=\"G4678\"*, thanksgiving|strong=\"G2169\"*, honor|strong=\"G5092\"*, power|strong=\"G1411\"*, and|strong=\"G2532\"* might|strong=\"G2479\"*, be|strong=\"G2532\"* to|strong=\"G1519\"* our|strong=\"G2316\"* God|strong=\"G2316\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*! Amen.”" + }, + { + "verseNum": 13, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* elders|strong=\"G4245\"* answered|strong=\"G3004\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* who|strong=\"G5101\"* are|strong=\"G1510\"* arrayed|strong=\"G4016\"* in|strong=\"G2532\"* the|strong=\"G2532\"* white|strong=\"G3022\"* robes|strong=\"G4749\"*, who|strong=\"G5101\"* are|strong=\"G1510\"* they|strong=\"G2532\"*, and|strong=\"G2532\"* where|strong=\"G4159\"* did|strong=\"G2532\"* they|strong=\"G2532\"* come|strong=\"G2064\"* from|strong=\"G1537\"*?”" + }, + { + "verseNum": 14, + "text": "I|strong=\"G1473\"* told|strong=\"G3004\"* him|strong=\"G3588\"*, “My|strong=\"G1722\"* lord|strong=\"G2962\"*, you|strong=\"G4771\"* know|strong=\"G1492\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"G1223\"* they|strong=\"G2532\"* are|strong=\"G1510\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2250\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* serve|strong=\"G3000\"* him|strong=\"G3588\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* in|strong=\"G1722\"* his|strong=\"G1438\"* temple|strong=\"G3485\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* throne|strong=\"G2362\"* will|strong=\"G2316\"* spread|strong=\"G4637\"* his|strong=\"G1438\"* tabernacle|strong=\"G4637\"* over|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"G3588\"* will|strong=\"G3956\"* never|strong=\"G3756\"* be|strong=\"G3756\"* hungry|strong=\"G3983\"* or|strong=\"G3761\"* thirsty|strong=\"G1372\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G3956\"* sun|strong=\"G2246\"* won’t|strong=\"G3588\"* beat|strong=\"G4098\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, nor|strong=\"G3761\"* any|strong=\"G3956\"* heat|strong=\"G2738\"*;" + }, + { + "verseNum": 17, + "text": "for|strong=\"G3754\"* the|strong=\"G2532\"* Lamb who|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1909\"* the|strong=\"G2532\"* middle|strong=\"G3319\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* shepherds them|strong=\"G3588\"* and|strong=\"G2532\"* leads|strong=\"G3594\"* them|strong=\"G3588\"* to|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G1537\"* life-giving waters|strong=\"G5204\"*. And|strong=\"G2532\"* God|strong=\"G2316\"* will|strong=\"G2316\"* wipe|strong=\"G1813\"* away|strong=\"G1813\"* every|strong=\"G3956\"* tear|strong=\"G1144\"* from|strong=\"G1537\"* their|strong=\"G1438\"* eyes|strong=\"G3788\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"G3752\"* he|strong=\"G2532\"* opened the|strong=\"G1722\"* seventh|strong=\"G1442\"* seal|strong=\"G4973\"*, there|strong=\"G2532\"* was|strong=\"G1096\"* silence|strong=\"G4602\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* for|strong=\"G1722\"* about|strong=\"G5613\"* half|strong=\"G2256\"* an|strong=\"G2532\"* hour|strong=\"G2256\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3739\"* stand|strong=\"G2476\"* before|strong=\"G1799\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* seven|strong=\"G2033\"* trumpets|strong=\"G4536\"* were|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 3, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G2064\"* and|strong=\"G2532\"* stood|strong=\"G2476\"* over|strong=\"G1909\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, having|strong=\"G2192\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* censer|strong=\"G3031\"*. Much|strong=\"G4183\"* incense|strong=\"G2368\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G3588\"* add|strong=\"G1325\"* it|strong=\"G2532\"* to|strong=\"G2443\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G2532\"* saints on|strong=\"G1909\"* the|strong=\"G2532\"* golden|strong=\"G5552\"* altar|strong=\"G2379\"* which|strong=\"G3588\"* was|strong=\"G3588\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G1537\"* the|strong=\"G2532\"* incense|strong=\"G2368\"*, with|strong=\"G1537\"* the|strong=\"G2532\"* prayers|strong=\"G4335\"* of|strong=\"G1537\"* the|strong=\"G2532\"* saints, went|strong=\"G2532\"* up|strong=\"G2532\"* before|strong=\"G1799\"* God|strong=\"G2316\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* angel’s hand|strong=\"G5495\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* angel took|strong=\"G2983\"* the|strong=\"G2532\"* censer|strong=\"G3031\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* filled|strong=\"G1072\"* it|strong=\"G2532\"* with|strong=\"G1537\"* the|strong=\"G2532\"* fire|strong=\"G4442\"* of|strong=\"G1537\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, then|strong=\"G2532\"* threw it|strong=\"G2532\"* on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. Thunders|strong=\"G1027\"*, sounds|strong=\"G5456\"*, lightnings, and|strong=\"G2532\"* an|strong=\"G2532\"* earthquake|strong=\"G4578\"* followed|strong=\"G1096\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* trumpets|strong=\"G4536\"* prepared|strong=\"G2090\"* themselves|strong=\"G1438\"* to|strong=\"G2443\"* sound|strong=\"G4537\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G1722\"* first|strong=\"G4413\"* sounded|strong=\"G4537\"*, and|strong=\"G2532\"* there|strong=\"G2532\"* followed|strong=\"G1096\"* hail|strong=\"G5464\"* and|strong=\"G2532\"* fire|strong=\"G4442\"*, mixed|strong=\"G3396\"* with|strong=\"G1722\"* blood, and|strong=\"G2532\"* they|strong=\"G2532\"* were|strong=\"G3588\"* thrown to|strong=\"G1519\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*. One|strong=\"G3956\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* was|strong=\"G1096\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*,+ 8:7 TR omits “One third of the earth was burned up”* and|strong=\"G2532\"* one|strong=\"G3956\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* trees|strong=\"G1186\"* were|strong=\"G3588\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*, and|strong=\"G2532\"* all|strong=\"G3956\"* green|strong=\"G5515\"* grass|strong=\"G5528\"* was|strong=\"G1096\"* burned|strong=\"G2618\"* up|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* second|strong=\"G1208\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* something like|strong=\"G5613\"* a|strong=\"G1096\"* great|strong=\"G3173\"* burning|strong=\"G2545\"* mountain|strong=\"G3735\"* was|strong=\"G1096\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*. One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* became|strong=\"G1096\"* blood," + }, + { + "verseNum": 9, + "text": "and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* living|strong=\"G2192\"* creatures|strong=\"G2938\"* which|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* died|strong=\"G3588\"*. One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G1722\"* ships|strong=\"G4143\"* were|strong=\"G3588\"* destroyed|strong=\"G1311\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* a|strong=\"G5613\"* great|strong=\"G3173\"* star fell|strong=\"G4098\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, burning|strong=\"G2545\"* like|strong=\"G5613\"* a|strong=\"G5613\"* torch|strong=\"G2985\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* fell|strong=\"G4098\"* on|strong=\"G1909\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* the|strong=\"G2532\"* rivers|strong=\"G4215\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G1537\"* water|strong=\"G5204\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G1537\"* the|strong=\"G2532\"* star is|strong=\"G3588\"* “Wormwood|strong=\"G4183\"*.” One|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* the|strong=\"G2532\"* waters|strong=\"G5204\"* became|strong=\"G1096\"* wormwood|strong=\"G4183\"*. Many|strong=\"G4183\"* people|strong=\"G3004\"* died|strong=\"G3588\"* from|strong=\"G1537\"* the|strong=\"G2532\"* waters|strong=\"G5204\"*, because|strong=\"G3754\"* they|strong=\"G2532\"* were|strong=\"G3588\"* made|strong=\"G1096\"* bitter|strong=\"G4087\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* fourth|strong=\"G5067\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* was|strong=\"G3588\"* struck|strong=\"G4141\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* moon|strong=\"G4582\"*, and|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* the|strong=\"G2532\"* stars, so|strong=\"G2443\"* that|strong=\"G2443\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* them|strong=\"G3588\"* would|strong=\"G2532\"* be|strong=\"G2532\"* darkened|strong=\"G4654\"*; and|strong=\"G2532\"* the|strong=\"G2532\"* day|strong=\"G2250\"* wouldn’t|strong=\"G3588\"* shine|strong=\"G5316\"* for|strong=\"G2532\"* one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* night|strong=\"G3571\"* in|strong=\"G2532\"* the|strong=\"G2532\"* same|strong=\"G3668\"* way|strong=\"G3668\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* heard an|strong=\"G2532\"* eagle,+ 8:13 TR reads “angel” instead of “eagle” * flying|strong=\"G4072\"* in|strong=\"G1722\"* mid heaven|strong=\"G3321\"*, saying|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Woe|strong=\"G3759\"*! Woe|strong=\"G3759\"*! Woe|strong=\"G3759\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* other|strong=\"G3062\"* blasts|strong=\"G5456\"* of|strong=\"G1537\"* the|strong=\"G1722\"* trumpets|strong=\"G4536\"* of|strong=\"G1537\"* the|strong=\"G1722\"* three|strong=\"G5140\"* angels, who|strong=\"G3588\"* are|strong=\"G3588\"* yet|strong=\"G2532\"* to|strong=\"G2532\"* sound|strong=\"G5456\"*!”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"G2532\"* fifth|strong=\"G3991\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* star from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* which|strong=\"G3588\"* had|strong=\"G2532\"* fallen|strong=\"G4098\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. The|strong=\"G2532\"* key|strong=\"G2807\"* to|strong=\"G1519\"* the|strong=\"G2532\"* pit|strong=\"G5421\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* opened the|strong=\"G2532\"* pit|strong=\"G5421\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss, and|strong=\"G2532\"* smoke|strong=\"G2586\"* went|strong=\"G2532\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* pit|strong=\"G5421\"*, like|strong=\"G5613\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* a|strong=\"G5613\"*+ 9:2 TR adds “great”* burning furnace|strong=\"G2575\"*. The|strong=\"G2532\"* sun|strong=\"G2246\"* and|strong=\"G2532\"* the|strong=\"G2532\"* air were|strong=\"G3588\"* darkened|strong=\"G4656\"* because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* the|strong=\"G2532\"* pit|strong=\"G5421\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"G2532\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* came|strong=\"G1831\"* locusts on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* power|strong=\"G1849\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, as|strong=\"G5613\"* the|strong=\"G2532\"* scorpions|strong=\"G4651\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* have|strong=\"G2192\"* power|strong=\"G1849\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* told that|strong=\"G2443\"* they|strong=\"G2532\"* should|strong=\"G2316\"* not|strong=\"G3756\"* hurt the|strong=\"G2532\"* grass|strong=\"G5528\"* of|strong=\"G2316\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, neither|strong=\"G3761\"* any|strong=\"G3956\"* green|strong=\"G5515\"* thing|strong=\"G3956\"*, neither|strong=\"G3761\"* any|strong=\"G3956\"* tree|strong=\"G1186\"*, but|strong=\"G2532\"* only|strong=\"G1487\"* those|strong=\"G3588\"* people|strong=\"G3956\"* who|strong=\"G3588\"* don’t|strong=\"G3588\"* have|strong=\"G2192\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* seal|strong=\"G4973\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"G2532\"* were|strong=\"G3588\"* given|strong=\"G1325\"* power|strong=\"G1325\"*, not|strong=\"G3361\"* to|strong=\"G2443\"* kill them|strong=\"G3588\"*, but|strong=\"G2532\"* to|strong=\"G2443\"* torment them|strong=\"G3588\"* for|strong=\"G2532\"* five|strong=\"G4002\"* months|strong=\"G3376\"*. Their|strong=\"G1438\"* torment was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* torment of|strong=\"G2532\"* a|strong=\"G5613\"* scorpion|strong=\"G4651\"* when|strong=\"G3752\"* it|strong=\"G2532\"* strikes a|strong=\"G5613\"* person." + }, + { + "verseNum": 6, + "text": "In|strong=\"G1722\"* those|strong=\"G3588\"* days|strong=\"G2250\"* people|strong=\"G3361\"* will|strong=\"G2532\"* seek|strong=\"G2212\"* death|strong=\"G2288\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* find|strong=\"G2147\"* it|strong=\"G2532\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* desire|strong=\"G1937\"* to|strong=\"G2532\"* die|strong=\"G2288\"*, and|strong=\"G2532\"* death|strong=\"G2288\"* will|strong=\"G2532\"* flee|strong=\"G5343\"* from|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* shapes|strong=\"G3667\"* of|strong=\"G2532\"* the|strong=\"G2532\"* locusts were|strong=\"G3588\"* like|strong=\"G5613\"* horses|strong=\"G2462\"* prepared|strong=\"G2090\"* for|strong=\"G1519\"* war|strong=\"G4171\"*. On|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"* were|strong=\"G3588\"* something like|strong=\"G5613\"* golden crowns|strong=\"G4735\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* were|strong=\"G3588\"* like|strong=\"G5613\"* people|strong=\"G4383\"*’s faces|strong=\"G4383\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* had|strong=\"G2192\"* hair|strong=\"G2359\"* like|strong=\"G5613\"* women|strong=\"G1135\"*’s|strong=\"G2192\"* hair|strong=\"G2359\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* teeth|strong=\"G3599\"* were|strong=\"G1510\"* like|strong=\"G5613\"* those|strong=\"G3588\"* of|strong=\"G2532\"* lions|strong=\"G3023\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* had|strong=\"G2192\"* breastplates|strong=\"G2382\"* like|strong=\"G5613\"* breastplates|strong=\"G2382\"* of|strong=\"G2532\"* iron|strong=\"G4603\"*. The|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* their|strong=\"G2532\"* wings|strong=\"G4420\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* many|strong=\"G4183\"* chariots and|strong=\"G2532\"* horses|strong=\"G2462\"* rushing|strong=\"G5143\"* to|strong=\"G1519\"* war|strong=\"G4171\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* have|strong=\"G2192\"* tails|strong=\"G3769\"* like|strong=\"G3664\"* those|strong=\"G3588\"* of|strong=\"G2532\"* scorpions|strong=\"G4651\"*, with|strong=\"G1722\"* stingers|strong=\"G2759\"*. In|strong=\"G1722\"* their|strong=\"G2532\"* tails|strong=\"G3769\"* they|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* to|strong=\"G2532\"* harm men|strong=\"G3588\"* for|strong=\"G1722\"* five|strong=\"G4002\"* months|strong=\"G3376\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* have|strong=\"G2192\"* over|strong=\"G1909\"* them|strong=\"G3588\"* as|strong=\"G1722\"* king|strong=\"G3588\"* the|strong=\"G1722\"* angel of|strong=\"G2532\"* the|strong=\"G1722\"* abyss. His|strong=\"G1909\"* name|strong=\"G3686\"* in|strong=\"G1722\"* Hebrew|strong=\"G1447\"* is|strong=\"G3588\"* “Abaddon”,+ 9:11 “Abaddon” is a Hebrew word that means “ruin”, “destruction”, or “the place of destruction”* but|strong=\"G2532\"* in|strong=\"G1722\"* Greek|strong=\"G1673\"*, he|strong=\"G2532\"* has|strong=\"G2192\"* the|strong=\"G1722\"* name|strong=\"G3686\"* “Apollyon”.+ 9:11 “Apollyon” means “Destroyer”.*" + }, + { + "verseNum": 12, + "text": "The|strong=\"G3588\"* first|strong=\"G1520\"* woe|strong=\"G3759\"* is|strong=\"G3588\"* past. Behold|strong=\"G2400\"*, there|strong=\"G3778\"* are|strong=\"G3588\"* still|strong=\"G2089\"* two|strong=\"G1417\"* woes|strong=\"G3759\"* coming|strong=\"G2064\"* after|strong=\"G3326\"* this|strong=\"G3778\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G2532\"* sixth|strong=\"G1623\"* angel sounded|strong=\"G4537\"*. I|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* the|strong=\"G2532\"* horns|strong=\"G2768\"* of|strong=\"G1537\"* the|strong=\"G2532\"* golden|strong=\"G5552\"* altar|strong=\"G2379\"* which|strong=\"G3588\"* is|strong=\"G3588\"* before|strong=\"G1799\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"G3004\"* to|strong=\"G1909\"* the|strong=\"G1909\"* sixth|strong=\"G1623\"* angel who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G1909\"* trumpet|strong=\"G4536\"*, “Free|strong=\"G3089\"* the|strong=\"G1909\"* four|strong=\"G5064\"* angels who|strong=\"G3588\"* are|strong=\"G3588\"* bound|strong=\"G1210\"* at|strong=\"G1909\"* the|strong=\"G1909\"* great|strong=\"G3173\"* river|strong=\"G4215\"* Euphrates|strong=\"G2166\"*!”" + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* four|strong=\"G5064\"* angels were|strong=\"G3588\"* freed who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* prepared|strong=\"G2090\"* for|strong=\"G1519\"* that|strong=\"G2443\"* hour|strong=\"G5610\"* and|strong=\"G2532\"* day|strong=\"G2250\"* and|strong=\"G2532\"* month|strong=\"G3376\"* and|strong=\"G2532\"* year|strong=\"G1763\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* they|strong=\"G2532\"* might|strong=\"G2532\"* kill one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G2250\"* mankind." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* number of|strong=\"G2532\"* the|strong=\"G2532\"* armies|strong=\"G4753\"* of|strong=\"G2532\"* the|strong=\"G2532\"* horsemen|strong=\"G2461\"* was|strong=\"G3588\"* two hundred million|strong=\"G3461\"*.+ 9:16 literally, “ten thousands of ten thousands”* I|strong=\"G2532\"* heard the|strong=\"G2532\"* number of|strong=\"G2532\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 17, + "text": "Thus|strong=\"G3779\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* horses|strong=\"G2462\"* in|strong=\"G1722\"* the|strong=\"G1722\"* vision|strong=\"G3706\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, having|strong=\"G2192\"* breastplates|strong=\"G2382\"* of|strong=\"G1537\"* fiery|strong=\"G4442\"* red, hyacinth|strong=\"G5191\"* blue, and|strong=\"G2532\"* sulfur|strong=\"G2303\"* yellow|strong=\"G5191\"*; and|strong=\"G2532\"* the|strong=\"G1722\"* horses|strong=\"G2462\"*’ heads|strong=\"G2776\"* resembled lions|strong=\"G3023\"*’ heads|strong=\"G2776\"*. Out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"* proceed|strong=\"G1607\"* fire|strong=\"G4442\"*, smoke|strong=\"G2586\"*, and|strong=\"G2532\"* sulfur|strong=\"G2303\"*." + }, + { + "verseNum": 18, + "text": "By|strong=\"G1537\"* these|strong=\"G3778\"* three|strong=\"G5140\"* plagues|strong=\"G4127\"*, one|strong=\"G3588\"* third|strong=\"G5154\"* of|strong=\"G1537\"* mankind was|strong=\"G3588\"* killed: by|strong=\"G1537\"* the|strong=\"G2532\"* fire|strong=\"G4442\"*, the|strong=\"G2532\"* smoke|strong=\"G2586\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* sulfur|strong=\"G2303\"*, which|strong=\"G3588\"* proceeded|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"G1063\"* the|strong=\"G1722\"* power|strong=\"G1849\"* of|strong=\"G2532\"* the|strong=\"G1722\"* horses|strong=\"G2462\"* is|strong=\"G1510\"* in|strong=\"G1722\"* their|strong=\"G2532\"* mouths|strong=\"G4750\"* and|strong=\"G2532\"* in|strong=\"G1722\"* their|strong=\"G2532\"* tails|strong=\"G3769\"*. For|strong=\"G1063\"* their|strong=\"G2532\"* tails|strong=\"G3769\"* are|strong=\"G1510\"* like|strong=\"G3664\"* serpents|strong=\"G3789\"*, and|strong=\"G2532\"* have|strong=\"G2192\"* heads|strong=\"G2776\"*; and|strong=\"G2532\"* with|strong=\"G1722\"* them|strong=\"G3588\"* they|strong=\"G2532\"* harm." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* rest|strong=\"G3062\"* of|strong=\"G1537\"* mankind, who|strong=\"G3739\"* were|strong=\"G3588\"* not|strong=\"G3756\"* killed with|strong=\"G1722\"* these|strong=\"G3778\"* plagues|strong=\"G4127\"*, didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* the|strong=\"G1722\"* works|strong=\"G2041\"* of|strong=\"G1537\"* their|strong=\"G2532\"* hands|strong=\"G5495\"*, that|strong=\"G2443\"* they|strong=\"G2532\"* wouldn’t|strong=\"G3588\"* worship|strong=\"G4352\"* demons|strong=\"G1140\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* idols|strong=\"G1497\"* of|strong=\"G1537\"* gold|strong=\"G5552\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* silver, and|strong=\"G2532\"* of|strong=\"G1537\"* brass|strong=\"G5470\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* stone|strong=\"G3035\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* wood|strong=\"G3585\"*, which|strong=\"G3739\"* can|strong=\"G1410\"*’t|strong=\"G3588\"* see, hear, or|strong=\"G2532\"* walk|strong=\"G4043\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* their|strong=\"G2532\"* murders|strong=\"G5408\"*, their|strong=\"G2532\"* sorceries|strong=\"G5331\"*,+ 9:21 The word for “sorceries” (pharmakeia) also implies the use of potions, poisons, and drugs* their|strong=\"G2532\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, or|strong=\"G2532\"* their|strong=\"G2532\"* thefts|strong=\"G2809\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G5613\"* mighty|strong=\"G2478\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, clothed|strong=\"G4016\"* with|strong=\"G1537\"* a|strong=\"G5613\"* cloud|strong=\"G3507\"*. A|strong=\"G5613\"* rainbow|strong=\"G2463\"* was|strong=\"G3588\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"*. His|strong=\"G1909\"* face|strong=\"G4383\"* was|strong=\"G3588\"* like|strong=\"G5613\"* the|strong=\"G2532\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* feet|strong=\"G4228\"* like|strong=\"G5613\"* pillars|strong=\"G4769\"* of|strong=\"G1537\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* had|strong=\"G2192\"* in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* little open book|strong=\"G3588\"*. He|strong=\"G2532\"* set|strong=\"G5087\"* his|strong=\"G1909\"* right|strong=\"G1188\"* foot|strong=\"G4228\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* left|strong=\"G2176\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G2532\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, as|strong=\"G5618\"* a|strong=\"G2532\"* lion|strong=\"G3023\"* roars|strong=\"G3455\"*. When|strong=\"G3753\"* he|strong=\"G2532\"* cried|strong=\"G2896\"*, the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* uttered|strong=\"G2980\"* their|strong=\"G1438\"* voices|strong=\"G5456\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* sounded|strong=\"G2980\"*, I|strong=\"G3739\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G2532\"* write|strong=\"G1125\"*; but|strong=\"G2532\"* I|strong=\"G3739\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* saying|strong=\"G3004\"*, “Seal|strong=\"G4972\"* up|strong=\"G4972\"* the|strong=\"G2532\"* things|strong=\"G3588\"* which|strong=\"G3739\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* thunders|strong=\"G1027\"* said|strong=\"G3004\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* write|strong=\"G1125\"* them|strong=\"G3588\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"G2532\"* angel whom|strong=\"G3739\"* I|strong=\"G3739\"* saw|strong=\"G3708\"* standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G2532\"* land|strong=\"G1093\"* lifted|strong=\"G2532\"* up|strong=\"G1519\"* his|strong=\"G1519\"* right|strong=\"G1188\"* hand|strong=\"G5495\"* to|strong=\"G1519\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*" + }, + { + "verseNum": 6, + "text": "and|strong=\"G2532\"* swore|strong=\"G3660\"* by|strong=\"G1722\"* him|strong=\"G3588\"* who|strong=\"G3739\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*, who|strong=\"G3739\"* created|strong=\"G2936\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* the|strong=\"G1722\"* things|strong=\"G3588\"* that|strong=\"G3754\"* are|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, that|strong=\"G3754\"* there|strong=\"G2532\"* will|strong=\"G1510\"* no|strong=\"G3765\"* longer|strong=\"G3765\"* be|strong=\"G1510\"* delay|strong=\"G5550\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* the|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2250\"* the|strong=\"G1722\"* seventh|strong=\"G1442\"* angel, when|strong=\"G3752\"* he|strong=\"G2532\"* is|strong=\"G3588\"* about|strong=\"G5613\"* to|strong=\"G2532\"* sound|strong=\"G5456\"*, then|strong=\"G2532\"* the|strong=\"G1722\"* mystery|strong=\"G3466\"* of|strong=\"G2250\"* God|strong=\"G2316\"* is|strong=\"G3588\"* finished|strong=\"G5055\"*, as|strong=\"G5613\"* he|strong=\"G2532\"* declared|strong=\"G2097\"* to|strong=\"G2532\"* his|strong=\"G1438\"* servants|strong=\"G1401\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* voice|strong=\"G5456\"* which|strong=\"G3739\"* I|strong=\"G1473\"* heard from|strong=\"G1537\"* heaven|strong=\"G3772\"*, again|strong=\"G3825\"* speaking|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, said|strong=\"G3004\"*, “Go|strong=\"G5217\"*, take|strong=\"G2983\"* the|strong=\"G1722\"* book|strong=\"G3588\"* which|strong=\"G3739\"* is|strong=\"G3588\"* open in|strong=\"G1722\"* the|strong=\"G1722\"* hand|strong=\"G5495\"* of|strong=\"G1537\"* the|strong=\"G1722\"* angel who|strong=\"G3739\"* stands|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* land|strong=\"G1093\"*.”" + }, + { + "verseNum": 9, + "text": "I|strong=\"G1473\"* went|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* angel, telling|strong=\"G3004\"* him|strong=\"G3588\"* to|strong=\"G4314\"* give|strong=\"G1325\"* me|strong=\"G1325\"* the|strong=\"G1722\"* little book|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* took|strong=\"G2983\"* the|strong=\"G1722\"* little book|strong=\"G3588\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* angel’s hand|strong=\"G5495\"*, and|strong=\"G2532\"* ate|strong=\"G2068\"* it|strong=\"G2532\"*. It|strong=\"G2532\"* was|strong=\"G1510\"* as|strong=\"G5613\"* sweet|strong=\"G1099\"* as|strong=\"G5613\"* honey|strong=\"G3192\"* in|strong=\"G1722\"* my|strong=\"G1722\"* mouth|strong=\"G4750\"*. When|strong=\"G3753\"* I|strong=\"G1473\"* had|strong=\"G2532\"* eaten|strong=\"G5315\"* it|strong=\"G2532\"*, my|strong=\"G1722\"* stomach|strong=\"G2836\"* was|strong=\"G1510\"* made|strong=\"G4087\"* bitter|strong=\"G4087\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"*+ 10:11 TR reads “He” instead of “They”* told|strong=\"G3004\"* me|strong=\"G1473\"*, “You|strong=\"G4771\"* must|strong=\"G1163\"* prophesy|strong=\"G4395\"* again|strong=\"G3825\"* over|strong=\"G1909\"* many|strong=\"G4183\"* peoples|strong=\"G2992\"*, nations|strong=\"G1484\"*, languages|strong=\"G1100\"*, and|strong=\"G2532\"* kings.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"G2532\"* reed|strong=\"G2563\"* like|strong=\"G3664\"* a|strong=\"G2532\"* rod|strong=\"G4464\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* me|strong=\"G1325\"*. Someone said|strong=\"G3004\"*, “Rise|strong=\"G1453\"* and|strong=\"G2532\"* measure|strong=\"G3354\"* God|strong=\"G2316\"*’s temple|strong=\"G3485\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* altar|strong=\"G2379\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* worship|strong=\"G4352\"* in|strong=\"G1722\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 2, + "text": "Leave|strong=\"G1544\"* out|strong=\"G1544\"* the|strong=\"G2532\"* court which|strong=\"G3588\"* is|strong=\"G3588\"* outside|strong=\"G1855\"* of|strong=\"G2532\"* the|strong=\"G2532\"* temple|strong=\"G3485\"*, and|strong=\"G2532\"* don’t|strong=\"G3588\"* measure|strong=\"G3354\"* it|strong=\"G2532\"*, for|strong=\"G3754\"* it|strong=\"G2532\"* has|strong=\"G3748\"* been|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* tread|strong=\"G3961\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"* under|strong=\"G3961\"* foot|strong=\"G3961\"* for|strong=\"G3754\"* forty-two months|strong=\"G3376\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"G1473\"* will|strong=\"G2532\"* give|strong=\"G1325\"* power|strong=\"G1325\"* to|strong=\"G2532\"* my|strong=\"G1325\"* two|strong=\"G1417\"* witnesses|strong=\"G3144\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* prophesy|strong=\"G4395\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* two|strong=\"G1417\"* hundred|strong=\"G1250\"* sixty|strong=\"G1835\"* days|strong=\"G2250\"*, clothed|strong=\"G4016\"* in|strong=\"G2532\"* sackcloth|strong=\"G4526\"*.”" + }, + { + "verseNum": 4, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* the|strong=\"G2532\"* two|strong=\"G1417\"* olive|strong=\"G1636\"* trees|strong=\"G1636\"* and|strong=\"G2532\"* the|strong=\"G2532\"* two|strong=\"G1417\"* lamp stands|strong=\"G2476\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* desires|strong=\"G2309\"* to|strong=\"G2532\"* harm them|strong=\"G3588\"*, fire|strong=\"G4442\"* proceeds|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G1438\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* devours|strong=\"G2719\"* their|strong=\"G1438\"* enemies|strong=\"G2190\"*. If|strong=\"G1487\"* anyone|strong=\"G5100\"* desires|strong=\"G2309\"* to|strong=\"G2532\"* harm them|strong=\"G3588\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G2532\"* killed in|strong=\"G2532\"* this|strong=\"G3588\"* way|strong=\"G3779\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"G3778\"* have|strong=\"G2192\"* the|strong=\"G1722\"* power|strong=\"G1849\"* to|strong=\"G1519\"* shut|strong=\"G2808\"* up|strong=\"G1519\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*, that|strong=\"G2443\"* it|strong=\"G2532\"* may|strong=\"G2532\"* not|strong=\"G3361\"* rain|strong=\"G5205\"* during|strong=\"G1722\"* the|strong=\"G1722\"* days|strong=\"G2250\"* of|strong=\"G2250\"* their|strong=\"G2532\"* prophecy|strong=\"G4394\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G1909\"* the|strong=\"G1722\"* waters|strong=\"G5204\"*, to|strong=\"G1519\"* turn|strong=\"G4762\"* them|strong=\"G3588\"* into|strong=\"G1519\"* blood, and|strong=\"G2532\"* to|strong=\"G1519\"* strike|strong=\"G3960\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* with|strong=\"G1722\"* every|strong=\"G3956\"* plague|strong=\"G4127\"*, as|strong=\"G1519\"* often|strong=\"G3740\"* as|strong=\"G1519\"* they|strong=\"G2532\"* desire|strong=\"G2309\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"G3752\"* they|strong=\"G2532\"* have|strong=\"G2532\"* finished|strong=\"G5055\"* their|strong=\"G1438\"* testimony|strong=\"G3141\"*, the|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3588\"* comes|strong=\"G2532\"* up|strong=\"G5055\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss will|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* kill them|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* will|strong=\"G2532\"* be|strong=\"G2532\"* in|strong=\"G1909\"* the|strong=\"G2532\"* street|strong=\"G4113\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, which|strong=\"G3588\"* spiritually|strong=\"G4153\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Sodom|strong=\"G4670\"* and|strong=\"G2532\"* Egypt, where|strong=\"G3699\"* also|strong=\"G2532\"* their|strong=\"G2532\"* Lord|strong=\"G2962\"* was|strong=\"G3588\"* crucified|strong=\"G4717\"*." + }, + { + "verseNum": 9, + "text": "From|strong=\"G1537\"* among|strong=\"G1519\"* the|strong=\"G2532\"* peoples|strong=\"G2992\"*, tribes|strong=\"G5443\"*, languages|strong=\"G1100\"*, and|strong=\"G2532\"* nations|strong=\"G1484\"*, people|strong=\"G2992\"* will|strong=\"G2532\"* look at|strong=\"G1519\"* their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* for|strong=\"G1519\"* three|strong=\"G5140\"* and|strong=\"G2532\"* a|strong=\"G2532\"* half|strong=\"G2255\"* days|strong=\"G2250\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* not|strong=\"G3756\"* allow their|strong=\"G2532\"* dead|strong=\"G4430\"* bodies|strong=\"G4430\"* to|strong=\"G1519\"* be|strong=\"G2532\"* laid|strong=\"G5087\"* in|strong=\"G1519\"* a|strong=\"G2532\"* tomb|strong=\"G3418\"*." + }, + { + "verseNum": 10, + "text": "Those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* rejoice|strong=\"G5463\"* over|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* glad|strong=\"G5463\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* give gifts|strong=\"G1435\"* to|strong=\"G2532\"* one|strong=\"G3588\"* another|strong=\"G3588\"*, because|strong=\"G3754\"* these|strong=\"G3778\"* two|strong=\"G1417\"* prophets|strong=\"G4396\"* tormented those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"G3326\"* the|strong=\"G1722\"* three|strong=\"G5140\"* and|strong=\"G2532\"* a|strong=\"G2532\"* half|strong=\"G2255\"* days|strong=\"G2250\"*, the|strong=\"G1722\"* breath|strong=\"G4151\"* of|strong=\"G1537\"* life|strong=\"G2222\"* from|strong=\"G1537\"* God|strong=\"G2316\"* entered|strong=\"G1525\"* into|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* stood|strong=\"G2476\"* on|strong=\"G1909\"* their|strong=\"G1438\"* feet|strong=\"G4228\"*. Great|strong=\"G3173\"* fear|strong=\"G5401\"* fell|strong=\"G1968\"* on|strong=\"G1909\"* those|strong=\"G3588\"* who|strong=\"G3588\"* saw|strong=\"G2334\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* saying|strong=\"G3004\"* to|strong=\"G1519\"* them|strong=\"G3588\"*, “Come|strong=\"G2532\"* up|strong=\"G1519\"* here|strong=\"G5602\"*!” They|strong=\"G2532\"* went|strong=\"G2532\"* up|strong=\"G1519\"* into|strong=\"G1519\"* heaven|strong=\"G3772\"* in|strong=\"G1722\"* a|strong=\"G2532\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* their|strong=\"G1438\"* enemies|strong=\"G2190\"* saw|strong=\"G2334\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"G1722\"* that|strong=\"G3588\"* day|strong=\"G5610\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* tenth|strong=\"G1182\"* of|strong=\"G2316\"* the|strong=\"G1722\"* city|strong=\"G4172\"* fell|strong=\"G4098\"*. Seven|strong=\"G2033\"* thousand|strong=\"G5505\"* people|strong=\"G3588\"* were|strong=\"G3588\"* killed in|strong=\"G1722\"* the|strong=\"G1722\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* terrified|strong=\"G1719\"* and|strong=\"G2532\"* gave|strong=\"G1325\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* the|strong=\"G1722\"* God|strong=\"G2316\"* of|strong=\"G2316\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G3588\"* second|strong=\"G1208\"* woe|strong=\"G3759\"* is|strong=\"G3588\"* past. Behold|strong=\"G2400\"*, the|strong=\"G3588\"* third|strong=\"G5154\"* woe|strong=\"G3759\"* comes|strong=\"G2064\"* quickly|strong=\"G5035\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G1722\"* seventh|strong=\"G1442\"* angel sounded|strong=\"G4537\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* voices|strong=\"G5456\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* followed|strong=\"G1096\"*, saying|strong=\"G3004\"*, “The|strong=\"G1722\"* kingdom of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* has|strong=\"G2962\"* become|strong=\"G1096\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2532\"* our|strong=\"G2532\"* Lord|strong=\"G2962\"* and|strong=\"G2532\"* of|strong=\"G2532\"* his|strong=\"G1519\"* Christ|strong=\"G5547\"*. He|strong=\"G2532\"* will|strong=\"G2532\"* reign|strong=\"G2532\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"*, who|strong=\"G3739\"* sit|strong=\"G2521\"* on|strong=\"G1909\"* their|strong=\"G2532\"* thrones|strong=\"G2362\"* before|strong=\"G1799\"* God|strong=\"G2316\"*’s throne|strong=\"G2362\"*, fell|strong=\"G4098\"* on|strong=\"G1909\"* their|strong=\"G2532\"* faces|strong=\"G4383\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 17, + "text": "saying|strong=\"G3004\"*: “We|strong=\"G3754\"* give|strong=\"G2168\"* you|strong=\"G4771\"* thanks|strong=\"G2168\"*, Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* is|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G1510\"*,+ 11:17 TR adds “and who is coming”* because|strong=\"G3754\"* you|strong=\"G4771\"* have|strong=\"G2532\"* taken|strong=\"G2983\"* your|strong=\"G2962\"* great|strong=\"G3173\"* power|strong=\"G1411\"* and|strong=\"G2532\"* reigned." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* nations|strong=\"G1484\"* were|strong=\"G3588\"* angry|strong=\"G3710\"*, and|strong=\"G2532\"* your|strong=\"G2532\"* wrath|strong=\"G3709\"* came|strong=\"G2064\"*, as|strong=\"G2532\"* did|strong=\"G2532\"* the|strong=\"G2532\"* time|strong=\"G2540\"* for|strong=\"G2532\"* the|strong=\"G2532\"* dead|strong=\"G3498\"* to|strong=\"G2532\"* be|strong=\"G2532\"* judged|strong=\"G2919\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* give|strong=\"G1325\"* your|strong=\"G2532\"* bondservants the|strong=\"G2532\"* prophets|strong=\"G4396\"*, their|strong=\"G2532\"* reward|strong=\"G3408\"*, as|strong=\"G2532\"* well|strong=\"G2532\"* as|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* your|strong=\"G2532\"* name|strong=\"G3686\"*, to|strong=\"G2532\"* the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*, and|strong=\"G2532\"* to|strong=\"G2532\"* destroy|strong=\"G1311\"* those|strong=\"G3588\"* who|strong=\"G3588\"* destroy|strong=\"G1311\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”" + }, + { + "verseNum": 19, + "text": "God|strong=\"G2316\"*’s temple|strong=\"G3485\"* that|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* was|strong=\"G1096\"* opened, and|strong=\"G2532\"* the|strong=\"G1722\"* ark|strong=\"G2787\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*’s covenant|strong=\"G1242\"* was|strong=\"G1096\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* his|strong=\"G1722\"* temple|strong=\"G3485\"*. Lightnings, sounds|strong=\"G5456\"*, thunders|strong=\"G1027\"*, an|strong=\"G2532\"* earthquake|strong=\"G4578\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* hail|strong=\"G5464\"* followed|strong=\"G1096\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"G2532\"* great|strong=\"G3173\"* sign|strong=\"G4592\"* was|strong=\"G3588\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*: a|strong=\"G2532\"* woman|strong=\"G1135\"* clothed|strong=\"G4016\"* with|strong=\"G1722\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* moon|strong=\"G4582\"* under|strong=\"G5270\"* her|strong=\"G3708\"* feet|strong=\"G4228\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* her|strong=\"G3708\"* head|strong=\"G2776\"* a|strong=\"G2532\"* crown|strong=\"G4735\"* of|strong=\"G2532\"* twelve|strong=\"G1427\"* stars." + }, + { + "verseNum": 2, + "text": "She|strong=\"G2532\"* was|strong=\"G2532\"* with|strong=\"G1722\"* child|strong=\"G1064\"*. She|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* in|strong=\"G1722\"* pain, laboring to|strong=\"G2532\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*." + }, + { + "verseNum": 3, + "text": "Another|strong=\"G3588\"* sign|strong=\"G4592\"* was|strong=\"G3588\"* seen|strong=\"G3708\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*. Behold|strong=\"G2400\"*, a|strong=\"G2192\"* great|strong=\"G3173\"* red|strong=\"G4450\"* dragon|strong=\"G1404\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* heads|strong=\"G2776\"* seven|strong=\"G2033\"* crowns|strong=\"G1238\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"G1438\"* tail|strong=\"G3769\"* drew|strong=\"G2532\"* one|strong=\"G1438\"* third|strong=\"G5154\"* of|strong=\"G2532\"* the|strong=\"G2532\"* stars of|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, and|strong=\"G2532\"* threw them|strong=\"G3588\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. The|strong=\"G2532\"* dragon|strong=\"G1404\"* stood|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* was|strong=\"G3588\"* about|strong=\"G3195\"* to|strong=\"G1519\"* give|strong=\"G5088\"* birth|strong=\"G5088\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* when|strong=\"G3752\"* she|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* he|strong=\"G2532\"* might|strong=\"G2532\"* devour|strong=\"G2719\"* her|strong=\"G1438\"* child|strong=\"G5043\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"G2532\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G4314\"* a|strong=\"G2532\"* son|strong=\"G5207\"*, a|strong=\"G2532\"* male child|strong=\"G5043\"*, who|strong=\"G3739\"* is|strong=\"G3588\"* to|strong=\"G4314\"* rule|strong=\"G4165\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* with|strong=\"G1722\"* a|strong=\"G2532\"* rod|strong=\"G4464\"* of|strong=\"G5207\"* iron|strong=\"G4603\"*. Her|strong=\"G3956\"* child|strong=\"G5043\"* was|strong=\"G3588\"* caught up|strong=\"G2532\"* to|strong=\"G4314\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G4314\"* his|strong=\"G3956\"* throne|strong=\"G2362\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* fled|strong=\"G5343\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"*, where|strong=\"G3699\"* she|strong=\"G2532\"* has|strong=\"G2192\"* a|strong=\"G2192\"* place|strong=\"G5117\"* prepared|strong=\"G2090\"* by|strong=\"G2532\"* God|strong=\"G2316\"*, that|strong=\"G2443\"* there|strong=\"G1563\"* they|strong=\"G2532\"* may|strong=\"G2532\"* nourish her|strong=\"G1438\"* one|strong=\"G1438\"* thousand|strong=\"G5507\"* two|strong=\"G1250\"* hundred|strong=\"G1250\"* sixty|strong=\"G1835\"* days|strong=\"G2250\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"G2532\"* was|strong=\"G1096\"* war|strong=\"G4171\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*. Michael|strong=\"G3413\"* and|strong=\"G2532\"* his|strong=\"G1722\"* angels made|strong=\"G1096\"* war|strong=\"G4171\"* on|strong=\"G1722\"* the|strong=\"G1722\"* dragon|strong=\"G1404\"*. The|strong=\"G1722\"* dragon|strong=\"G1404\"* and|strong=\"G2532\"* his|strong=\"G1722\"* angels made|strong=\"G1096\"* war|strong=\"G4171\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"G2532\"* didn’t|strong=\"G3588\"* prevail. No|strong=\"G3756\"* place|strong=\"G5117\"* was|strong=\"G3588\"* found|strong=\"G2147\"* for|strong=\"G1722\"* them|strong=\"G3588\"* any|strong=\"G2089\"* more|strong=\"G2089\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* great|strong=\"G3173\"* dragon|strong=\"G1404\"* was|strong=\"G3588\"* thrown down, the|strong=\"G2532\"* old|strong=\"G2532\"* serpent|strong=\"G3789\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* and|strong=\"G2532\"* Satan|strong=\"G4567\"*, the|strong=\"G2532\"* deceiver of|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* world|strong=\"G3625\"*. He|strong=\"G2532\"* was|strong=\"G3588\"* thrown down to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* his|strong=\"G1519\"* angels were|strong=\"G3588\"* thrown down with|strong=\"G3326\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* heard a|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Now|strong=\"G2532\"* the|strong=\"G1722\"* salvation|strong=\"G4991\"*, the|strong=\"G1722\"* power|strong=\"G1411\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* Kingdom of|strong=\"G2250\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* of|strong=\"G2250\"* his|strong=\"G1438\"* Christ|strong=\"G5547\"* has|strong=\"G2316\"* come|strong=\"G1096\"*; for|strong=\"G3754\"* the|strong=\"G1722\"* accuser|strong=\"G2725\"* of|strong=\"G2250\"* our|strong=\"G2316\"* brothers has|strong=\"G2316\"* been|strong=\"G1096\"* thrown down, who|strong=\"G3588\"* accuses|strong=\"G2723\"* them|strong=\"G3588\"* before|strong=\"G1799\"* our|strong=\"G2316\"* God|strong=\"G2316\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"G2532\"* overcame|strong=\"G3528\"* him|strong=\"G3588\"* because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb’s blood, and|strong=\"G2532\"* because|strong=\"G1223\"* of|strong=\"G3056\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* their|strong=\"G2532\"* testimony|strong=\"G3141\"*. They|strong=\"G2532\"* didn’t|strong=\"G3588\"* love their|strong=\"G2532\"* life|strong=\"G5590\"*, even|strong=\"G2532\"* to|strong=\"G2532\"* death|strong=\"G2288\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"G1223\"* rejoice|strong=\"G2165\"*, heavens|strong=\"G3772\"*, and|strong=\"G2532\"* you|strong=\"G5210\"* who|strong=\"G3588\"* dwell|strong=\"G4637\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. Woe|strong=\"G3759\"* to|strong=\"G4314\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* to|strong=\"G4314\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, because|strong=\"G3754\"* the|strong=\"G1722\"* devil|strong=\"G1228\"* has|strong=\"G2192\"* gone down|strong=\"G2597\"* to|strong=\"G4314\"* you|strong=\"G5210\"*, having|strong=\"G2192\"* great|strong=\"G3173\"* wrath|strong=\"G2372\"*, knowing|strong=\"G1492\"* that|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G2192\"* but|strong=\"G2532\"* a|strong=\"G2192\"* short|strong=\"G3641\"* time|strong=\"G2540\"*.”" + }, + { + "verseNum": 13, + "text": "When|strong=\"G3753\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* saw|strong=\"G3708\"* that|strong=\"G3754\"* he|strong=\"G2532\"* was|strong=\"G3588\"* thrown down to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, he|strong=\"G2532\"* persecuted|strong=\"G1377\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* who|strong=\"G3588\"* gave|strong=\"G5088\"* birth|strong=\"G5088\"* to|strong=\"G1519\"* the|strong=\"G2532\"* male child|strong=\"G5088\"*." + }, + { + "verseNum": 14, + "text": "Two|strong=\"G1417\"* wings|strong=\"G4420\"* of|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"* eagle were|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, that|strong=\"G2443\"* she|strong=\"G2532\"* might|strong=\"G2532\"* fly|strong=\"G4072\"* into|strong=\"G1519\"* the|strong=\"G2532\"* wilderness|strong=\"G2048\"* to|strong=\"G1519\"* her|strong=\"G1325\"* place|strong=\"G5117\"*, so|strong=\"G2443\"* that|strong=\"G2443\"* she|strong=\"G2532\"* might|strong=\"G2532\"* be|strong=\"G2532\"* nourished|strong=\"G5142\"* for|strong=\"G1519\"* a|strong=\"G2532\"* time|strong=\"G2540\"*, times|strong=\"G2540\"*, and|strong=\"G2532\"* half|strong=\"G2255\"* a|strong=\"G2532\"* time|strong=\"G2540\"*, from|strong=\"G2532\"* the|strong=\"G2532\"* face|strong=\"G4383\"* of|strong=\"G2532\"* the|strong=\"G2532\"* serpent|strong=\"G3789\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* serpent|strong=\"G3789\"* spewed water|strong=\"G5204\"* out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1438\"* mouth|strong=\"G4750\"* after|strong=\"G3694\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* like|strong=\"G5613\"* a|strong=\"G5613\"* river|strong=\"G4215\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* might|strong=\"G2532\"* cause|strong=\"G4160\"* her|strong=\"G1438\"* to|strong=\"G2443\"* be|strong=\"G2532\"* carried|strong=\"G2532\"* away|strong=\"G4216\"* by|strong=\"G1537\"* the|strong=\"G2532\"* stream." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* earth|strong=\"G1093\"* helped the|strong=\"G2532\"* woman|strong=\"G1135\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* opened its|strong=\"G1537\"* mouth|strong=\"G4750\"* and|strong=\"G2532\"* swallowed|strong=\"G2666\"* up|strong=\"G2666\"* the|strong=\"G2532\"* river|strong=\"G4215\"* which|strong=\"G3739\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* spewed out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G2532\"* mouth|strong=\"G4750\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* dragon|strong=\"G1404\"* grew angry|strong=\"G3710\"* with|strong=\"G3326\"* the|strong=\"G2532\"* woman|strong=\"G1135\"*, and|strong=\"G2532\"* went|strong=\"G2424\"* away|strong=\"G3326\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* the|strong=\"G2532\"* rest|strong=\"G3062\"* of|strong=\"G2316\"* her|strong=\"G2192\"* offspring,+ 12:17 or, seed* who|strong=\"G3588\"* keep|strong=\"G5083\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* commandments|strong=\"G1785\"* and|strong=\"G2532\"* hold|strong=\"G2192\"* Jesus|strong=\"G2424\"*’ testimony|strong=\"G3141\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"G2532\"* I|strong=\"G2532\"* stood|strong=\"G3588\"*+ 13:1 NU reads he stood* on|strong=\"G1909\"* the|strong=\"G2532\"* sand of|strong=\"G1537\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*. I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* beast|strong=\"G2342\"* coming|strong=\"G2342\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, having|strong=\"G2192\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* and|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"*. On|strong=\"G1909\"* his|strong=\"G1909\"* horns|strong=\"G2768\"* were|strong=\"G3588\"* ten|strong=\"G1176\"* crowns|strong=\"G1238\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* heads|strong=\"G2776\"*, blasphemous names|strong=\"G3686\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* which|strong=\"G3739\"* I|strong=\"G3739\"* saw|strong=\"G3708\"* was|strong=\"G1510\"* like|strong=\"G5613\"* a|strong=\"G5613\"* leopard|strong=\"G3917\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* feet|strong=\"G4228\"* were|strong=\"G1510\"* like|strong=\"G5613\"* those|strong=\"G3588\"* of|strong=\"G2532\"* a|strong=\"G5613\"* bear|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G3708\"* mouth|strong=\"G4750\"* like|strong=\"G5613\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G2532\"* a|strong=\"G5613\"* lion|strong=\"G3023\"*. The|strong=\"G2532\"* dragon|strong=\"G1404\"* gave|strong=\"G1325\"* him|strong=\"G3588\"* his|strong=\"G3708\"* power|strong=\"G1411\"*, his|strong=\"G3708\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* great|strong=\"G3173\"* authority|strong=\"G1849\"*." + }, + { + "verseNum": 3, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* his|strong=\"G1519\"* heads|strong=\"G2776\"* looked|strong=\"G2532\"* like|strong=\"G5613\"* it|strong=\"G2532\"* had|strong=\"G2532\"* been|strong=\"G2532\"* wounded|strong=\"G4969\"* fatally. His|strong=\"G1519\"* fatal|strong=\"G2288\"* wound|strong=\"G4127\"* was|strong=\"G3588\"* healed|strong=\"G2323\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* whole|strong=\"G3650\"* earth|strong=\"G1093\"* marveled|strong=\"G2296\"* at|strong=\"G1519\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* worshiped|strong=\"G4352\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"* because|strong=\"G3754\"* he|strong=\"G2532\"* gave|strong=\"G1325\"* his|strong=\"G2532\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*; and|strong=\"G2532\"* they|strong=\"G2532\"* worshiped|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, saying|strong=\"G3004\"*, “Who|strong=\"G5101\"* is|strong=\"G3588\"* like|strong=\"G3664\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*? Who|strong=\"G5101\"* is|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G2532\"* make|strong=\"G2532\"* war|strong=\"G4170\"* with|strong=\"G3326\"* him|strong=\"G3588\"*?”" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2532\"* mouth|strong=\"G4750\"* speaking|strong=\"G2980\"* great|strong=\"G3173\"* things|strong=\"G3173\"* and|strong=\"G2532\"* blasphemy was|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G1325\"*. Authority|strong=\"G1849\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war for|strong=\"G2532\"* forty-two months|strong=\"G3376\"* was|strong=\"G2532\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G1325\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* opened his|strong=\"G1519\"* mouth|strong=\"G4750\"* for|strong=\"G1519\"* blasphemy against|strong=\"G4314\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* blaspheme his|strong=\"G1519\"* name|strong=\"G3686\"*, his|strong=\"G1519\"* dwelling, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G4637\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* with|strong=\"G3326\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* to|strong=\"G2532\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*. Authority|strong=\"G1849\"* over|strong=\"G1909\"* every|strong=\"G3956\"* tribe|strong=\"G5443\"*, people|strong=\"G2992\"*, language|strong=\"G1100\"*, and|strong=\"G2532\"* nation|strong=\"G1484\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"G3956\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* will|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*, everyone|strong=\"G3956\"* whose|strong=\"G3739\"* name|strong=\"G3686\"* has|strong=\"G3739\"* not|strong=\"G3756\"* been|strong=\"G2532\"* written|strong=\"G1125\"* from|strong=\"G2532\"* the|strong=\"G1722\"* foundation|strong=\"G2602\"* of|strong=\"G2532\"* the|strong=\"G1722\"* world|strong=\"G2889\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"* of|strong=\"G2532\"* the|strong=\"G1722\"* Lamb who|strong=\"G3739\"* has|strong=\"G3739\"* been|strong=\"G2532\"* killed." + }, + { + "verseNum": 9, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* has|strong=\"G2192\"* an|strong=\"G2192\"* ear|strong=\"G3775\"*, let|strong=\"G2192\"* him hear." + }, + { + "verseNum": 10, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* to|strong=\"G1519\"* go|strong=\"G5217\"* into|strong=\"G1519\"* captivity, he|strong=\"G2532\"* will|strong=\"G1510\"* go|strong=\"G5217\"* into|strong=\"G1519\"* captivity. If|strong=\"G1487\"* anyone|strong=\"G5100\"* is|strong=\"G1510\"* to|strong=\"G1519\"* be|strong=\"G1510\"* killed with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G3162\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G1510\"* killed.+ 13:10 TR reads “If anyone leads into captivity, into captivity he goes. If anyone will kill with the sword, he must be killed with a sword.” instead of “If anyone is to go into captivity, he will go into captivity. If anyone is to be killed with the sword, he must be killed.” * Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G1722\"* endurance|strong=\"G5281\"* and|strong=\"G2532\"* the|strong=\"G1722\"* faith|strong=\"G4102\"* of|strong=\"G2532\"* the|strong=\"G1722\"* saints." + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* beast|strong=\"G2342\"* coming|strong=\"G2342\"* up|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*. He|strong=\"G2532\"* had|strong=\"G2192\"* two|strong=\"G1417\"* horns|strong=\"G2768\"* like|strong=\"G5613\"* a|strong=\"G2192\"* lamb and|strong=\"G2532\"* it|strong=\"G2532\"* spoke|strong=\"G2980\"* like|strong=\"G5613\"* a|strong=\"G2192\"* dragon|strong=\"G1404\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"G2532\"* exercises|strong=\"G4160\"* all|strong=\"G3956\"* the|strong=\"G1722\"* authority|strong=\"G1849\"* of|strong=\"G2532\"* the|strong=\"G1722\"* first|strong=\"G4413\"* beast|strong=\"G2342\"* in|strong=\"G1722\"* his|strong=\"G3956\"* presence|strong=\"G1799\"*. He|strong=\"G2532\"* makes|strong=\"G4160\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* in|strong=\"G1722\"* it|strong=\"G2532\"* to|strong=\"G2443\"* worship|strong=\"G4352\"* the|strong=\"G1722\"* first|strong=\"G4413\"* beast|strong=\"G2342\"*, whose|strong=\"G3739\"* fatal|strong=\"G2288\"* wound|strong=\"G4127\"* was|strong=\"G3588\"* healed|strong=\"G2323\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* performs|strong=\"G4160\"* great|strong=\"G3173\"* signs|strong=\"G4592\"*, even|strong=\"G2532\"* making|strong=\"G4160\"* fire|strong=\"G4442\"* come|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* to|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G1537\"* people|strong=\"G4160\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"G2532\"* deceives|strong=\"G4105\"* my|strong=\"G1325\"* own+ 13:14 NU omits “my own”* people|strong=\"G4160\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* because|strong=\"G1223\"* of|strong=\"G1223\"* the|strong=\"G2532\"* signs|strong=\"G4592\"* he|strong=\"G2532\"* was|strong=\"G3588\"* granted|strong=\"G1325\"* to|strong=\"G2532\"* do|strong=\"G4160\"* in|strong=\"G1909\"* front|strong=\"G1799\"* of|strong=\"G1223\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, saying|strong=\"G3004\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* that|strong=\"G3739\"* they|strong=\"G2532\"* should|strong=\"G3588\"* make|strong=\"G4160\"* an|strong=\"G2192\"* image|strong=\"G1504\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* who|strong=\"G3739\"* had|strong=\"G2192\"* the|strong=\"G2532\"* sword|strong=\"G3162\"* wound|strong=\"G4127\"* and|strong=\"G2532\"* lived|strong=\"G2730\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2443\"* him|strong=\"G3588\"* to|strong=\"G2443\"* give|strong=\"G1325\"* breath|strong=\"G4151\"* to|strong=\"G2443\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* should|strong=\"G3588\"* both|strong=\"G2532\"* speak|strong=\"G2980\"*, and|strong=\"G2532\"* cause|strong=\"G4160\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* wouldn’t|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* image|strong=\"G1504\"* of|strong=\"G4151\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* to|strong=\"G2443\"* be|strong=\"G2532\"* killed." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* causes|strong=\"G4160\"* all|strong=\"G3956\"*, the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*, the|strong=\"G2532\"* rich|strong=\"G4145\"* and|strong=\"G2532\"* the|strong=\"G2532\"* poor|strong=\"G4434\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* free|strong=\"G1658\"* and|strong=\"G2532\"* the|strong=\"G2532\"* slave|strong=\"G1401\"*, to|strong=\"G2443\"* be|strong=\"G2532\"* given|strong=\"G1325\"* marks on|strong=\"G1909\"* their|strong=\"G2532\"* right|strong=\"G1188\"* hands|strong=\"G5495\"* or|strong=\"G2228\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"G2532\"* that|strong=\"G2443\"* no|strong=\"G3361\"* one|strong=\"G5100\"* would|strong=\"G2532\"* be|strong=\"G2532\"* able|strong=\"G1410\"* to|strong=\"G2443\"* buy or|strong=\"G2228\"* to|strong=\"G2443\"* sell|strong=\"G4453\"* unless|strong=\"G1487\"* he|strong=\"G2532\"* has|strong=\"G2192\"* that|strong=\"G2443\"* mark|strong=\"G5480\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* or|strong=\"G2228\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* his|strong=\"G2192\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 18, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* wisdom|strong=\"G4678\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* understanding|strong=\"G3563\"*, let|strong=\"G1510\"* him|strong=\"G3588\"* calculate|strong=\"G5585\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, for|strong=\"G1063\"* it|strong=\"G2532\"* is|strong=\"G1510\"* the|strong=\"G2532\"* number of|strong=\"G2532\"* a|strong=\"G2192\"* man. His|strong=\"G2192\"* number is|strong=\"G1510\"* six|strong=\"G1803\"* hundred|strong=\"G1812\"* sixty-six|strong=\"G1835\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"*, and|strong=\"G2532\"* behold|strong=\"G2400\"*, the|strong=\"G2532\"* Lamb standing|strong=\"G2476\"* on|strong=\"G1909\"* Mount|strong=\"G3735\"* Zion|strong=\"G4622\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* a|strong=\"G2192\"* number, one|strong=\"G3588\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, having|strong=\"G2192\"* his|strong=\"G1909\"* name|strong=\"G3686\"* and|strong=\"G2532\"* the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2532\"* his|strong=\"G1909\"* Father|strong=\"G3962\"* written|strong=\"G1125\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G3739\"* heard a|strong=\"G5613\"* sound|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G1537\"* many|strong=\"G4183\"* waters|strong=\"G5204\"* and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G1537\"* a|strong=\"G5613\"* great|strong=\"G3173\"* thunder|strong=\"G1027\"*. The|strong=\"G1722\"* sound|strong=\"G5456\"* which|strong=\"G3739\"* I|strong=\"G3739\"* heard was|strong=\"G3588\"* like|strong=\"G5613\"* that|strong=\"G3739\"* of|strong=\"G1537\"* harpists|strong=\"G2790\"* playing|strong=\"G2789\"* on|strong=\"G1722\"* their|strong=\"G2532\"* harps|strong=\"G2788\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* sing a|strong=\"G5613\"* new|strong=\"G2537\"* song|strong=\"G5603\"* before|strong=\"G1799\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* before|strong=\"G1799\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* and|strong=\"G2532\"* the|strong=\"G2532\"* elders|strong=\"G4245\"*. No|strong=\"G3762\"* one|strong=\"G3762\"* could|strong=\"G1410\"* learn|strong=\"G3129\"* the|strong=\"G2532\"* song|strong=\"G5603\"* except|strong=\"G1487\"* the|strong=\"G2532\"* one|strong=\"G3762\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* thousand|strong=\"G5505\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2532\"* been|strong=\"G2532\"* redeemed out|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3739\"* were|strong=\"G1510\"* not|strong=\"G3756\"* defiled|strong=\"G3435\"* with|strong=\"G3326\"* women|strong=\"G1135\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* virgins|strong=\"G3933\"*. These|strong=\"G3778\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3739\"* follow|strong=\"G3326\"* the|strong=\"G2532\"* Lamb wherever|strong=\"G3699\"* he|strong=\"G2532\"* goes|strong=\"G5217\"*. These|strong=\"G3778\"* were|strong=\"G1510\"* redeemed by|strong=\"G2532\"* Jesus|strong=\"G1510\"* from|strong=\"G2532\"* among|strong=\"G3326\"* men|strong=\"G3778\"*, the|strong=\"G2532\"* first|strong=\"G3588\"* fruits to|strong=\"G2532\"* God|strong=\"G2316\"* and|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 5, + "text": "In|strong=\"G1722\"* their|strong=\"G2532\"* mouth|strong=\"G4750\"* was|strong=\"G1510\"* found|strong=\"G2147\"* no|strong=\"G3756\"* lie|strong=\"G5579\"*, for|strong=\"G1063\"* they|strong=\"G2532\"* are|strong=\"G1510\"* blameless.+ 14:5 TR adds “before the throne of God”*" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2192\"* angel flying|strong=\"G4072\"* in|strong=\"G1722\"* mid heaven|strong=\"G3321\"*, having|strong=\"G2192\"* an|strong=\"G2192\"* eternal Good|strong=\"G2097\"* News|strong=\"G2097\"* to|strong=\"G2532\"* proclaim|strong=\"G2097\"* to|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* dwell|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*—to|strong=\"G2532\"* every|strong=\"G3956\"* nation|strong=\"G1484\"*, tribe|strong=\"G5443\"*, language|strong=\"G1100\"*, and|strong=\"G2532\"* people|strong=\"G2992\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, “Fear|strong=\"G5399\"* the|strong=\"G1722\"* Lord|strong=\"G3588\"*, and|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* of|strong=\"G2316\"* his|strong=\"G1722\"* judgment|strong=\"G2920\"* has|strong=\"G2316\"* come|strong=\"G2064\"*. Worship|strong=\"G4352\"* him|strong=\"G3588\"* who|strong=\"G3588\"* made|strong=\"G4160\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"*, the|strong=\"G1722\"* earth|strong=\"G1093\"*, the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* springs|strong=\"G4077\"* of|strong=\"G2316\"* waters|strong=\"G5204\"*!”" + }, + { + "verseNum": 8, + "text": "Another|strong=\"G3739\"*, a|strong=\"G2532\"* second|strong=\"G1208\"* angel, followed, saying|strong=\"G3004\"*, “Babylon the|strong=\"G2532\"* great|strong=\"G3173\"* has|strong=\"G3739\"* fallen|strong=\"G4098\"*, which|strong=\"G3739\"* has|strong=\"G3739\"* made|strong=\"G4222\"* all|strong=\"G3956\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* to|strong=\"G2532\"* drink|strong=\"G4222\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* her|strong=\"G3956\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 9, + "text": "Another|strong=\"G5100\"* angel, a|strong=\"G2532\"* third|strong=\"G5154\"*, followed them|strong=\"G3588\"*, saying|strong=\"G3004\"* with|strong=\"G1722\"* a|strong=\"G2532\"* great|strong=\"G3173\"* voice|strong=\"G5456\"*, “If|strong=\"G1487\"* anyone|strong=\"G5100\"* worships|strong=\"G4352\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* his|strong=\"G1909\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* receives|strong=\"G2983\"* a|strong=\"G2532\"* mark|strong=\"G5480\"* on|strong=\"G1909\"* his|strong=\"G1909\"* forehead|strong=\"G3359\"* or|strong=\"G2228\"* on|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*," + }, + { + "verseNum": 10, + "text": "he|strong=\"G2532\"* also|strong=\"G2532\"* will|strong=\"G2316\"* drink|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, which|strong=\"G3588\"* is|strong=\"G3588\"* prepared unmixed in|strong=\"G1722\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* of|strong=\"G1537\"* his|strong=\"G1722\"* anger|strong=\"G3709\"*. He|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* tormented with|strong=\"G1722\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* sulfur|strong=\"G2303\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G1722\"* holy angels and|strong=\"G2532\"* in|strong=\"G1722\"* the|strong=\"G1722\"* presence|strong=\"G1799\"* of|strong=\"G1537\"* the|strong=\"G1722\"* Lamb." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2250\"* their|strong=\"G2532\"* torment goes up|strong=\"G1519\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G3756\"*. They|strong=\"G2532\"* have|strong=\"G2192\"* no|strong=\"G3756\"* rest|strong=\"G2192\"* day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"*, those|strong=\"G3588\"* who|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* his|strong=\"G1519\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* whoever|strong=\"G3588\"* receives|strong=\"G2983\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* of|strong=\"G2250\"* his|strong=\"G1519\"* name|strong=\"G3686\"*." + }, + { + "verseNum": 12, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G2532\"* perseverance|strong=\"G5281\"* of|strong=\"G2316\"* the|strong=\"G2532\"* saints, those|strong=\"G3588\"* who|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G2532\"* commandments|strong=\"G1785\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* the|strong=\"G2532\"* faith|strong=\"G4102\"* of|strong=\"G2316\"* Jesus|strong=\"G2424\"*.”" + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"* saying|strong=\"G3004\"*, “Write|strong=\"G1125\"*, ‘Blessed|strong=\"G3107\"* are|strong=\"G3588\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* die in|strong=\"G1722\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* from|strong=\"G1537\"* now|strong=\"G2532\"* on|strong=\"G1722\"*.’”" + }, + { + "verseNum": 14, + "text": "I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* white|strong=\"G3022\"* cloud|strong=\"G3507\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"* one|strong=\"G3588\"* sitting|strong=\"G2521\"* like|strong=\"G3664\"* a|strong=\"G2192\"* son|strong=\"G5207\"* of|strong=\"G5207\"* man|strong=\"G5207\"*,+ 14:14 Daniel 7:13* having|strong=\"G2192\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* crown|strong=\"G4735\"*, and|strong=\"G2532\"* in|strong=\"G1722\"* his|strong=\"G1909\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*." + }, + { + "verseNum": 15, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G2064\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* temple|strong=\"G3485\"*, crying|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* cloud|strong=\"G3507\"*, “Send|strong=\"G3992\"* your|strong=\"G2532\"* sickle|strong=\"G1407\"* and|strong=\"G2532\"* reap|strong=\"G2325\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* hour|strong=\"G5610\"* to|strong=\"G2532\"* reap|strong=\"G2325\"* has|strong=\"G5610\"* come|strong=\"G2064\"*; for|strong=\"G3754\"* the|strong=\"G1722\"* harvest|strong=\"G2326\"* of|strong=\"G1537\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* is|strong=\"G3588\"* ripe|strong=\"G3583\"*!”" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* cloud|strong=\"G3507\"* thrust his|strong=\"G1909\"* sickle|strong=\"G1407\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* reaped|strong=\"G2325\"*." + }, + { + "verseNum": 17, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* which|strong=\"G3588\"* is|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*. He|strong=\"G2532\"* also|strong=\"G2532\"* had|strong=\"G2192\"* a|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*." + }, + { + "verseNum": 18, + "text": "Another|strong=\"G3588\"* angel came|strong=\"G1831\"* out|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* altar|strong=\"G2379\"*, he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* power|strong=\"G1849\"* over|strong=\"G1909\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* called|strong=\"G3004\"* with|strong=\"G1537\"* a|strong=\"G2192\"* great|strong=\"G3173\"* voice|strong=\"G5456\"* to|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"*, saying|strong=\"G3004\"*, “Send|strong=\"G3992\"* your|strong=\"G2192\"* sharp|strong=\"G3691\"* sickle|strong=\"G1407\"* and|strong=\"G2532\"* gather|strong=\"G5166\"* the|strong=\"G2532\"* clusters|strong=\"G1009\"* of|strong=\"G1537\"* the|strong=\"G2532\"* vine|strong=\"G1093\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, for|strong=\"G3754\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*’s|strong=\"G2192\"* grapes|strong=\"G4718\"* are|strong=\"G3588\"* fully ripe!”" + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* angel thrust his|strong=\"G1519\"* sickle|strong=\"G1407\"* into|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* gathered|strong=\"G5166\"* the|strong=\"G2532\"* vintage of|strong=\"G2316\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* threw it|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* great|strong=\"G3173\"* wine|strong=\"G3025\"* press|strong=\"G3025\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G2316\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G2532\"* wine|strong=\"G3025\"* press|strong=\"G3025\"* was|strong=\"G3588\"* trodden|strong=\"G3961\"* outside|strong=\"G1855\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, and|strong=\"G2532\"* blood came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3025\"* press|strong=\"G3025\"*, up|strong=\"G2532\"* to|strong=\"G2532\"* the|strong=\"G2532\"* bridles|strong=\"G5469\"* of|strong=\"G1537\"* the|strong=\"G2532\"* horses|strong=\"G2462\"*, as|strong=\"G2532\"* far|strong=\"G3588\"* as|strong=\"G2532\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* six|strong=\"G1812\"* hundred|strong=\"G1812\"* stadia.+ 14:20 1600 stadia = 296 kilometers or 184 miles*" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* great|strong=\"G3173\"* and|strong=\"G2532\"* marvelous|strong=\"G2298\"* sign|strong=\"G4592\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky|strong=\"G3772\"*: seven|strong=\"G2033\"* angels having|strong=\"G2192\"* the|strong=\"G1722\"* seven|strong=\"G2033\"* last|strong=\"G2078\"* plagues|strong=\"G4127\"*, for|strong=\"G3754\"* in|strong=\"G1722\"* them|strong=\"G3588\"* God|strong=\"G2316\"*’s|strong=\"G2192\"* wrath|strong=\"G2372\"* is|strong=\"G3588\"* finished|strong=\"G5055\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* something|strong=\"G3708\"* like|strong=\"G5613\"* a|strong=\"G2192\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* glass|strong=\"G5193\"* mixed|strong=\"G3396\"* with|strong=\"G1537\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* overcame|strong=\"G3528\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, his|strong=\"G1909\"* image|strong=\"G1504\"*,+ 15:2 TR adds “his mark,”* and|strong=\"G2532\"* the|strong=\"G2532\"* number of|strong=\"G1537\"* his|strong=\"G1909\"* name|strong=\"G3686\"*, standing|strong=\"G2476\"* on|strong=\"G1909\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* of|strong=\"G1537\"* glass|strong=\"G5193\"*, having|strong=\"G2192\"* harps|strong=\"G2788\"* of|strong=\"G1537\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"G2532\"* sang the|strong=\"G2532\"* song|strong=\"G5603\"* of|strong=\"G2316\"* Moses|strong=\"G3475\"*, the|strong=\"G2532\"* servant|strong=\"G1401\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* song|strong=\"G5603\"* of|strong=\"G2316\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*, saying|strong=\"G3004\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"G5101\"* wouldn’t|strong=\"G3588\"* fear|strong=\"G5399\"* you|strong=\"G4771\"*, Lord|strong=\"G2962\"*," + }, + { + "verseNum": 5, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G2532\"* looked|strong=\"G3708\"*, and|strong=\"G2532\"* the|strong=\"G1722\"* temple|strong=\"G3485\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tabernacle|strong=\"G4633\"* of|strong=\"G2532\"* the|strong=\"G1722\"* testimony|strong=\"G3142\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"* was|strong=\"G3588\"* opened." + }, + { + "verseNum": 6, + "text": "The|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* plagues|strong=\"G4127\"* came|strong=\"G1831\"* out|strong=\"G1831\"*, clothed|strong=\"G1746\"* with|strong=\"G1537\"* pure|strong=\"G2513\"*, bright|strong=\"G2986\"* linen|strong=\"G3043\"*, and|strong=\"G2532\"* wearing|strong=\"G1746\"* golden|strong=\"G5552\"* sashes|strong=\"G2223\"* around|strong=\"G4012\"* their|strong=\"G2532\"* chests|strong=\"G4738\"*." + }, + { + "verseNum": 7, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2198\"* creatures|strong=\"G2226\"* gave|strong=\"G1325\"* to|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels seven|strong=\"G2033\"* golden|strong=\"G5552\"* bowls|strong=\"G5357\"* full|strong=\"G1073\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, who|strong=\"G3588\"* lives|strong=\"G2198\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* temple|strong=\"G3485\"* was|strong=\"G3588\"* filled|strong=\"G1072\"* with|strong=\"G1537\"* smoke|strong=\"G2586\"* from|strong=\"G1537\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* from|strong=\"G1537\"* his|strong=\"G1519\"* power|strong=\"G1411\"*. No|strong=\"G3762\"* one|strong=\"G3762\"* was|strong=\"G3588\"* able|strong=\"G1410\"* to|strong=\"G1519\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* until|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* plagues|strong=\"G4127\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels would|strong=\"G2316\"* be|strong=\"G2532\"* finished|strong=\"G5055\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G3485\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels, “Go|strong=\"G5217\"* and|strong=\"G2532\"* pour|strong=\"G1632\"* out|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* God|strong=\"G2316\"* on|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*!”" + }, + { + "verseNum": 2, + "text": "The|strong=\"G2532\"* first|strong=\"G4413\"* went|strong=\"G2532\"*, and|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1519\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* became|strong=\"G1096\"* a|strong=\"G2192\"* harmful and|strong=\"G2532\"* painful|strong=\"G4190\"* sore|strong=\"G1668\"* on|strong=\"G1909\"* the|strong=\"G2532\"* people|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* of|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* who|strong=\"G3588\"* worshiped|strong=\"G4352\"* his|strong=\"G1519\"* image|strong=\"G1504\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"G1722\"* second|strong=\"G1208\"* angel|strong=\"G1632\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G3956\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* became|strong=\"G1096\"* blood as|strong=\"G5613\"* of|strong=\"G2532\"* a|strong=\"G1096\"* dead|strong=\"G3498\"* man|strong=\"G3956\"*. Every|strong=\"G3956\"* living|strong=\"G2222\"* thing|strong=\"G3956\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* died|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* third|strong=\"G5154\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1519\"* bowl|strong=\"G5357\"* into|strong=\"G1519\"* the|strong=\"G2532\"* rivers|strong=\"G4215\"* and|strong=\"G2532\"* springs|strong=\"G4077\"* of|strong=\"G2532\"* water|strong=\"G5204\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* became|strong=\"G1096\"* blood." + }, + { + "verseNum": 5, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* angel of|strong=\"G2532\"* the|strong=\"G2532\"* waters|strong=\"G5204\"* saying|strong=\"G3004\"*, “You|strong=\"G3754\"* are|strong=\"G1510\"* righteous|strong=\"G1342\"*, who|strong=\"G3588\"* are|strong=\"G1510\"* and|strong=\"G2532\"* who|strong=\"G3588\"* were|strong=\"G1510\"*, O Holy|strong=\"G3741\"* One|strong=\"G3588\"*, because|strong=\"G3754\"* you|strong=\"G3754\"* have|strong=\"G2532\"* judged|strong=\"G2919\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"G3754\"* they|strong=\"G2532\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* the|strong=\"G2532\"* blood of|strong=\"G2532\"* saints and|strong=\"G2532\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* you|strong=\"G3754\"* have|strong=\"G2532\"* given|strong=\"G1325\"* them|strong=\"G1325\"* blood to|strong=\"G2532\"* drink|strong=\"G4095\"*. They|strong=\"G2532\"* deserve this|strong=\"G3748\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"G2532\"* heard the|strong=\"G2532\"* altar|strong=\"G2379\"* saying|strong=\"G3004\"*, “Yes|strong=\"G3483\"*, Lord|strong=\"G2962\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, true|strong=\"G3588\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"* are|strong=\"G3588\"* your|strong=\"G2962\"* judgments|strong=\"G2920\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"G1722\"* fourth|strong=\"G5067\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*, and|strong=\"G2532\"* it|strong=\"G2532\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* him|strong=\"G3588\"* to|strong=\"G2532\"* scorch|strong=\"G2739\"* men|strong=\"G3588\"* with|strong=\"G1722\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 9, + "text": "People|strong=\"G3588\"* were|strong=\"G3588\"* scorched|strong=\"G2739\"* with|strong=\"G2532\"* great|strong=\"G3173\"* heat|strong=\"G2738\"*, and|strong=\"G2532\"* people|strong=\"G3588\"* blasphemed the|strong=\"G2532\"* name|strong=\"G3686\"* of|strong=\"G2316\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* power|strong=\"G1849\"* over|strong=\"G1909\"* these|strong=\"G3778\"* plagues|strong=\"G4127\"*. They|strong=\"G2532\"* didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* and|strong=\"G2532\"* give|strong=\"G1325\"* him|strong=\"G3588\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* fifth|strong=\"G3991\"* poured|strong=\"G1632\"* out|strong=\"G1537\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G1537\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* kingdom was|strong=\"G1096\"* darkened|strong=\"G4656\"*. They|strong=\"G2532\"* gnawed|strong=\"G3145\"* their|strong=\"G2532\"* tongues|strong=\"G1100\"* because|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* pain|strong=\"G4192\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* blasphemed the|strong=\"G2532\"* God|strong=\"G2316\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* because|strong=\"G1537\"* of|strong=\"G1537\"* their|strong=\"G2532\"* pains|strong=\"G4192\"* and|strong=\"G2532\"* their|strong=\"G2532\"* sores|strong=\"G1668\"*. They|strong=\"G2532\"* still didn’t|strong=\"G3588\"* repent|strong=\"G3340\"* of|strong=\"G1537\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* sixth|strong=\"G1623\"* poured|strong=\"G1632\"* out|strong=\"G1632\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* on|strong=\"G1909\"* the|strong=\"G2532\"* great|strong=\"G3173\"* river|strong=\"G4215\"*, the|strong=\"G2532\"* Euphrates|strong=\"G2166\"*. Its water|strong=\"G5204\"* was|strong=\"G3588\"* dried|strong=\"G3583\"* up|strong=\"G3583\"*, that|strong=\"G2443\"* the|strong=\"G2532\"* way|strong=\"G3598\"* might|strong=\"G2532\"* be|strong=\"G2532\"* prepared|strong=\"G2090\"* for|strong=\"G1909\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* that|strong=\"G2443\"* come|strong=\"G2532\"* from|strong=\"G2532\"* the|strong=\"G2532\"* sunrise.+ 16:12 or, east*" + }, + { + "verseNum": 13, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* coming|strong=\"G2342\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* mouth|strong=\"G4750\"* of|strong=\"G1537\"* the|strong=\"G2532\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"*, three|strong=\"G5140\"* unclean spirits|strong=\"G4151\"*, something|strong=\"G3708\"* like|strong=\"G5613\"* frogs;" + }, + { + "verseNum": 14, + "text": "for|strong=\"G1063\"* they|strong=\"G3588\"* are|strong=\"G1510\"* spirits|strong=\"G4151\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*, performing|strong=\"G4160\"* signs|strong=\"G4592\"*, which|strong=\"G3739\"* go|strong=\"G1607\"* out|strong=\"G1607\"* to|strong=\"G1519\"* the|strong=\"G1519\"* kings|strong=\"G3588\"* of|strong=\"G4151\"* the|strong=\"G1519\"* whole|strong=\"G3650\"* inhabited|strong=\"G3625\"* earth|strong=\"G3625\"*, to|strong=\"G1519\"* gather|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* for|strong=\"G1063\"* the|strong=\"G1519\"* war|strong=\"G4171\"* of|strong=\"G4151\"* that|strong=\"G3739\"* great|strong=\"G3173\"* day|strong=\"G2250\"* of|strong=\"G4151\"* God|strong=\"G2316\"* the|strong=\"G1519\"* Almighty|strong=\"G3841\"*." + }, + { + "verseNum": 15, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w come|strong=\"G2064\"\\+w* \\+w like|strong=\"G5613\"\\+w* \\+w a|strong=\"G5613\"\\+w* \\+w thief|strong=\"G2812\"\\+w*. \\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* watches, \\+w and|strong=\"G2532\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w clothes|strong=\"G2440\"\\+w*, \\+w so|strong=\"G2443\"\\+w* \\+w that|strong=\"G2443\"\\+w* \\+w he|strong=\"G2532\"\\+w* doesn’\\+w t|strong=\"G3588\"\\+w* \\+w walk|strong=\"G4043\"\\+w* \\+w naked|strong=\"G1131\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w see|strong=\"G3708\"\\+w* \\+w his|strong=\"G3708\"\\+w* shame.” *" + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* gathered|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* into|strong=\"G1519\"* the|strong=\"G2532\"* place|strong=\"G5117\"* which|strong=\"G3588\"* is|strong=\"G3588\"* called|strong=\"G2564\"* in|strong=\"G1519\"* Hebrew|strong=\"G1447\"*, “Harmagedon”." + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* seventh|strong=\"G1442\"* poured|strong=\"G1632\"* out|strong=\"G1831\"* his|strong=\"G1909\"* bowl|strong=\"G5357\"* into|strong=\"G1909\"* the|strong=\"G2532\"* air. A|strong=\"G1096\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* came|strong=\"G1096\"* out|strong=\"G1831\"* of|strong=\"G1537\"* the|strong=\"G2532\"* temple|strong=\"G3485\"* of|strong=\"G1537\"* heaven, from|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “It|strong=\"G2532\"* is|strong=\"G3588\"* done|strong=\"G1096\"*!”" + }, + { + "verseNum": 18, + "text": "There|strong=\"G2532\"* were|strong=\"G3588\"* lightnings, sounds|strong=\"G5456\"*, and|strong=\"G2532\"* thunders|strong=\"G1027\"*; and|strong=\"G2532\"* there|strong=\"G2532\"* was|strong=\"G1096\"* a|strong=\"G1096\"* great|strong=\"G3173\"* earthquake|strong=\"G4578\"* such|strong=\"G3779\"* as|strong=\"G2532\"* has|strong=\"G3739\"* not|strong=\"G3756\"* happened|strong=\"G1096\"* since|strong=\"G1096\"* there|strong=\"G2532\"* were|strong=\"G3588\"* men|strong=\"G3588\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*—so|strong=\"G3779\"* great|strong=\"G3173\"* an|strong=\"G2532\"* earthquake|strong=\"G4578\"* and|strong=\"G2532\"* so|strong=\"G3779\"* mighty|strong=\"G3173\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"* was|strong=\"G1096\"* divided|strong=\"G1096\"* into|strong=\"G1519\"* three|strong=\"G5140\"* parts|strong=\"G3313\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* cities|strong=\"G4172\"* of|strong=\"G2316\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* fell|strong=\"G4098\"*. Babylon the|strong=\"G2532\"* great|strong=\"G3173\"* was|strong=\"G1096\"* remembered|strong=\"G3403\"* in|strong=\"G1519\"* the|strong=\"G2532\"* sight|strong=\"G1799\"* of|strong=\"G2316\"* God|strong=\"G2316\"*, to|strong=\"G1519\"* give|strong=\"G1325\"* to|strong=\"G1519\"* her|strong=\"G1325\"* the|strong=\"G2532\"* cup|strong=\"G4221\"* of|strong=\"G2316\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G2316\"* the|strong=\"G2532\"* fierceness|strong=\"G2372\"* of|strong=\"G2316\"* his|strong=\"G1519\"* wrath|strong=\"G3709\"*." + }, + { + "verseNum": 20, + "text": "Every|strong=\"G3956\"* island|strong=\"G3520\"* fled|strong=\"G5343\"* away|strong=\"G5343\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* mountains|strong=\"G3735\"* were|strong=\"G2532\"* not|strong=\"G3756\"* found|strong=\"G2147\"*." + }, + { + "verseNum": 21, + "text": "Great|strong=\"G3173\"* hailstones|strong=\"G5464\"*, about|strong=\"G5613\"* the|strong=\"G2532\"* weight of|strong=\"G1537\"* a|strong=\"G5613\"* talent|strong=\"G5006\"*,+ 16:21 A talent is about 30 kilograms or 66 pounds.* came|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"* on|strong=\"G1909\"* people|strong=\"G1510\"*. People|strong=\"G1510\"* blasphemed God|strong=\"G2316\"* because|strong=\"G3754\"* of|strong=\"G1537\"* the|strong=\"G2532\"* plague|strong=\"G4127\"* of|strong=\"G1537\"* the|strong=\"G2532\"* hail|strong=\"G5464\"*, for|strong=\"G3754\"* this|strong=\"G3588\"* plague|strong=\"G4127\"* was|strong=\"G1510\"* exceedingly|strong=\"G4970\"* severe|strong=\"G3173\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* came|strong=\"G2064\"* and|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* here|strong=\"G1204\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G2532\"* judgment|strong=\"G2917\"* of|strong=\"G1537\"* the|strong=\"G2532\"* great|strong=\"G3173\"* prostitute|strong=\"G4204\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*," + }, + { + "verseNum": 2, + "text": "with|strong=\"G3326\"* whom|strong=\"G3739\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* committed|strong=\"G4203\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*. Those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* in|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* were|strong=\"G3588\"* made|strong=\"G3184\"* drunken|strong=\"G3184\"* with|strong=\"G3326\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* her|strong=\"G3588\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"G2532\"* carried|strong=\"G2532\"* me|strong=\"G1473\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* into|strong=\"G1519\"* a|strong=\"G2192\"* wilderness|strong=\"G2048\"*. I|strong=\"G1473\"* saw|strong=\"G3708\"* a|strong=\"G2192\"* woman|strong=\"G1135\"* sitting|strong=\"G2521\"* on|strong=\"G1909\"* a|strong=\"G2192\"* scarlet-colored beast|strong=\"G2342\"*, full|strong=\"G1073\"* of|strong=\"G4151\"* blasphemous names|strong=\"G3686\"*, having|strong=\"G2192\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"G1722\"* woman|strong=\"G1135\"* was|strong=\"G1510\"* dressed|strong=\"G4016\"* in|strong=\"G1722\"* purple|strong=\"G4210\"* and|strong=\"G2532\"* scarlet|strong=\"G2847\"*, and|strong=\"G2532\"* decked|strong=\"G5558\"* with|strong=\"G1722\"* gold|strong=\"G5553\"* and|strong=\"G2532\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* pearls|strong=\"G3135\"*, having|strong=\"G2192\"* in|strong=\"G1722\"* her|strong=\"G2192\"* hand|strong=\"G5495\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* cup|strong=\"G4221\"* full|strong=\"G1073\"* of|strong=\"G2532\"* abominations and|strong=\"G2532\"* the|strong=\"G1722\"* impurities of|strong=\"G2532\"* the|strong=\"G1722\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G2532\"*." + }, + { + "verseNum": 5, + "text": "And|strong=\"G2532\"* on|strong=\"G1909\"* her|strong=\"G3588\"* forehead|strong=\"G3359\"* a|strong=\"G2532\"* name|strong=\"G3686\"* was|strong=\"G3588\"* written|strong=\"G1125\"*, “MYSTERY|strong=\"G3466\"*, BABYLON THE|strong=\"G2532\"* GREAT|strong=\"G3173\"*, THE|strong=\"G2532\"* MOTHER|strong=\"G3384\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* PROSTITUTES|strong=\"G4204\"* AND|strong=\"G2532\"* OF|strong=\"G2532\"* THE|strong=\"G2532\"* ABOMINATIONS OF|strong=\"G2532\"* THE|strong=\"G2532\"* EARTH|strong=\"G1093\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* drunken|strong=\"G3184\"* with|strong=\"G1537\"* the|strong=\"G2532\"* blood of|strong=\"G1537\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* with|strong=\"G1537\"* the|strong=\"G2532\"* blood of|strong=\"G1537\"* the|strong=\"G2532\"* martyrs|strong=\"G3144\"* of|strong=\"G1537\"* Jesus|strong=\"G2424\"*. When|strong=\"G2532\"* I|strong=\"G2532\"* saw|strong=\"G3708\"* her|strong=\"G1438\"*, I|strong=\"G2532\"* wondered|strong=\"G2296\"* with|strong=\"G1537\"* great|strong=\"G3173\"* amazement|strong=\"G2296\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"G2532\"* angel said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Why|strong=\"G5101\"* do|strong=\"G5101\"* you|strong=\"G4771\"* wonder|strong=\"G2296\"*? I|strong=\"G1473\"* will|strong=\"G5101\"* tell|strong=\"G3004\"* you|strong=\"G4771\"* the|strong=\"G2532\"* mystery|strong=\"G3466\"* of|strong=\"G1223\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* and|strong=\"G2532\"* of|strong=\"G1223\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3588\"* carries her|strong=\"G1438\"*, which|strong=\"G3588\"* has|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* and|strong=\"G2532\"* the|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3754\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*; and|strong=\"G2532\"* is|strong=\"G1510\"* about|strong=\"G3195\"* to|strong=\"G1519\"* come|strong=\"G3195\"* up|strong=\"G1519\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss and|strong=\"G2532\"* to|strong=\"G1519\"* go|strong=\"G5217\"* into|strong=\"G1519\"* destruction. Those|strong=\"G3588\"* who|strong=\"G3739\"* dwell|strong=\"G2730\"* on|strong=\"G1909\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* whose|strong=\"G3739\"* names|strong=\"G3686\"* have|strong=\"G2532\"* not|strong=\"G3756\"* been|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1519\"* the|strong=\"G2532\"* book|strong=\"G3588\"* of|strong=\"G1537\"* life|strong=\"G2222\"* from|strong=\"G1537\"* the|strong=\"G2532\"* foundation|strong=\"G2602\"* of|strong=\"G1537\"* the|strong=\"G2532\"* world|strong=\"G2889\"* will|strong=\"G3195\"* marvel|strong=\"G2296\"* when|strong=\"G2532\"* they|strong=\"G2532\"* see|strong=\"G3708\"* that|strong=\"G3754\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*, and|strong=\"G2532\"* shall|strong=\"G2532\"* be|strong=\"G1510\"* present|strong=\"G3918\"*.+ 17:8 TR reads “yet is” instead of “shall be present”*" + }, + { + "verseNum": 9, + "text": "Here|strong=\"G5602\"* is|strong=\"G1510\"* the|strong=\"G2532\"* mind|strong=\"G3563\"* that|strong=\"G3588\"* has|strong=\"G2192\"* wisdom|strong=\"G4678\"*. The|strong=\"G2532\"* seven|strong=\"G2033\"* heads|strong=\"G2776\"* are|strong=\"G1510\"* seven|strong=\"G2033\"* mountains|strong=\"G3735\"* on|strong=\"G1909\"* which|strong=\"G3588\"* the|strong=\"G2532\"* woman|strong=\"G1135\"* sits|strong=\"G2521\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"G2532\"* are|strong=\"G1510\"* seven|strong=\"G2033\"* kings|strong=\"G3588\"*. Five|strong=\"G4002\"* have|strong=\"G2532\"* fallen|strong=\"G4098\"*, the|strong=\"G2532\"* one|strong=\"G1520\"* is|strong=\"G1510\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* other|strong=\"G1520\"* has|strong=\"G1510\"* not|strong=\"G1510\"* yet|strong=\"G2532\"* come|strong=\"G2064\"*. When|strong=\"G3752\"* he|strong=\"G2532\"* comes|strong=\"G2064\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* continue|strong=\"G3306\"* a|strong=\"G2532\"* little|strong=\"G3641\"* while|strong=\"G1510\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* beast|strong=\"G2342\"* that|strong=\"G3739\"* was|strong=\"G1510\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* not|strong=\"G3756\"*, is|strong=\"G1510\"* himself|strong=\"G1519\"* also|strong=\"G2532\"* an|strong=\"G2532\"* eighth|strong=\"G3590\"*, and|strong=\"G2532\"* is|strong=\"G1510\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* goes|strong=\"G5217\"* to|strong=\"G1519\"* destruction." + }, + { + "verseNum": 12, + "text": "The|strong=\"G2532\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* that|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* are|strong=\"G1510\"* ten|strong=\"G1176\"* kings|strong=\"G3588\"* who|strong=\"G3739\"* have|strong=\"G2532\"* received|strong=\"G2983\"* no|strong=\"G2532\"* kingdom as|strong=\"G5613\"* yet|strong=\"G2532\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* receive|strong=\"G2983\"* authority|strong=\"G1849\"* as|strong=\"G5613\"* kings|strong=\"G3588\"* with|strong=\"G3326\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* for|strong=\"G1520\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 13, + "text": "These|strong=\"G3778\"* have|strong=\"G2192\"* one|strong=\"G1520\"* mind|strong=\"G1106\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* give|strong=\"G1325\"* their|strong=\"G2532\"* power|strong=\"G1411\"* and|strong=\"G2532\"* authority|strong=\"G1849\"* to|strong=\"G2532\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"G3778\"* will|strong=\"G1510\"* war|strong=\"G4170\"* against|strong=\"G3326\"* the|strong=\"G2532\"* Lamb, and|strong=\"G2532\"* the|strong=\"G2532\"* Lamb will|strong=\"G1510\"* overcome|strong=\"G3528\"* them|strong=\"G3588\"*, for|strong=\"G3754\"* he|strong=\"G2532\"* is|strong=\"G1510\"* Lord|strong=\"G2962\"* of|strong=\"G2532\"* lords|strong=\"G2962\"* and|strong=\"G2532\"* King|strong=\"G3588\"* of|strong=\"G2532\"* kings|strong=\"G3588\"*; and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* with|strong=\"G3326\"* him|strong=\"G3588\"* are|strong=\"G1510\"* called|strong=\"G2822\"*, chosen|strong=\"G1588\"*, and|strong=\"G2532\"* faithful|strong=\"G4103\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “The|strong=\"G2532\"* waters|strong=\"G5204\"* which|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"*, where|strong=\"G3757\"* the|strong=\"G2532\"* prostitute|strong=\"G4204\"* sits|strong=\"G2521\"*, are|strong=\"G1510\"* peoples|strong=\"G2992\"*, multitudes|strong=\"G3793\"*, nations|strong=\"G1484\"*, and|strong=\"G2532\"* languages|strong=\"G1100\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G1722\"* ten|strong=\"G1176\"* horns|strong=\"G2768\"* which|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"*, they|strong=\"G2532\"* and|strong=\"G2532\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* will|strong=\"G2532\"* hate|strong=\"G3404\"* the|strong=\"G1722\"* prostitute|strong=\"G4204\"*, will|strong=\"G2532\"* make|strong=\"G4160\"* her|strong=\"G1438\"* desolate|strong=\"G2049\"*, will|strong=\"G2532\"* strip her|strong=\"G1438\"* naked|strong=\"G1131\"*, will|strong=\"G2532\"* eat|strong=\"G2068\"* her|strong=\"G1438\"* flesh|strong=\"G4561\"*, and|strong=\"G2532\"* will|strong=\"G2532\"* burn|strong=\"G2618\"* her|strong=\"G1438\"* utterly with|strong=\"G1722\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"G1063\"* God|strong=\"G2316\"* has|strong=\"G2316\"* put|strong=\"G1325\"* in|strong=\"G1519\"* their|strong=\"G2532\"* hearts|strong=\"G2588\"* to|strong=\"G1519\"* do|strong=\"G4160\"* what|strong=\"G3588\"* he|strong=\"G2532\"* has|strong=\"G2316\"* in|strong=\"G1519\"* mind|strong=\"G2588\"*, to|strong=\"G1519\"* be|strong=\"G2532\"* of|strong=\"G3056\"* one|strong=\"G1520\"* mind|strong=\"G2588\"*, and|strong=\"G2532\"* to|strong=\"G1519\"* give|strong=\"G1325\"* their|strong=\"G2532\"* kingdom to|strong=\"G1519\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, until|strong=\"G1519\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"* should|strong=\"G2316\"* be|strong=\"G2532\"* accomplished|strong=\"G5055\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* woman|strong=\"G1135\"* whom|strong=\"G3739\"* you|strong=\"G3739\"* saw|strong=\"G3708\"* is|strong=\"G1510\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"* which|strong=\"G3739\"* reigns|strong=\"G2192\"* over|strong=\"G1909\"* the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, I|strong=\"G2532\"* saw|strong=\"G3708\"* another|strong=\"G3588\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, having|strong=\"G2192\"* great|strong=\"G3173\"* authority|strong=\"G1849\"*. The|strong=\"G2532\"* earth|strong=\"G1093\"* was|strong=\"G3588\"* illuminated|strong=\"G5461\"* with|strong=\"G3326\"* his|strong=\"G3708\"* glory|strong=\"G1391\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G1096\"* mighty|strong=\"G2478\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"*, “Fallen|strong=\"G4098\"*, fallen|strong=\"G4098\"* is|strong=\"G3588\"* Babylon the|strong=\"G1722\"* great|strong=\"G3173\"*, and|strong=\"G2532\"* she|strong=\"G2532\"* has|strong=\"G1096\"* become|strong=\"G1096\"* a|strong=\"G1096\"* habitation|strong=\"G2732\"* of|strong=\"G4151\"* demons|strong=\"G1140\"*, a|strong=\"G1096\"* prison|strong=\"G5438\"* of|strong=\"G4151\"* every|strong=\"G3956\"* unclean spirit|strong=\"G4151\"*, and|strong=\"G2532\"* a|strong=\"G1096\"* prison|strong=\"G5438\"* of|strong=\"G4151\"* every|strong=\"G3956\"* unclean and|strong=\"G2532\"* hated|strong=\"G3404\"* bird|strong=\"G3732\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"G3754\"* all|strong=\"G3956\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* have|strong=\"G2532\"* drunk|strong=\"G4095\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wine|strong=\"G3631\"* of|strong=\"G1537\"* the|strong=\"G2532\"* wrath|strong=\"G2372\"* of|strong=\"G1537\"* her|strong=\"G3956\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* committed|strong=\"G4203\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"* with|strong=\"G3326\"* her|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* grew rich|strong=\"G4147\"* from|strong=\"G1537\"* the|strong=\"G2532\"* abundance|strong=\"G1411\"* of|strong=\"G1537\"* her|strong=\"G3956\"* luxury.”" + }, + { + "verseNum": 4, + "text": "I|strong=\"G1473\"* heard another|strong=\"G3588\"* voice|strong=\"G5456\"* from|strong=\"G1537\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Come|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* her|strong=\"G3588\"*, my|strong=\"G1473\"* people|strong=\"G2992\"*, that|strong=\"G2443\"* you|strong=\"G3004\"* have|strong=\"G2532\"* no|strong=\"G3361\"* participation in|strong=\"G2532\"* her|strong=\"G3588\"* sins, and|strong=\"G2532\"* that|strong=\"G2443\"* you|strong=\"G3004\"* don’t|strong=\"G3588\"* receive|strong=\"G2983\"* of|strong=\"G1537\"* her|strong=\"G3588\"* plagues|strong=\"G4127\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"G3754\"* her|strong=\"G3754\"* sins have|strong=\"G2532\"* reached to|strong=\"G2532\"* the|strong=\"G2532\"* sky|strong=\"G3772\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* has|strong=\"G2316\"* remembered|strong=\"G3421\"* her|strong=\"G3754\"* iniquities." + }, + { + "verseNum": 6, + "text": "Return to|strong=\"G2532\"* her|strong=\"G2596\"* just|strong=\"G5613\"* as|strong=\"G5613\"* she|strong=\"G2532\"* returned, and|strong=\"G2532\"* repay her|strong=\"G2596\"* double|strong=\"G1362\"* as|strong=\"G5613\"* she|strong=\"G2532\"* did|strong=\"G2532\"*, and|strong=\"G2532\"* according|strong=\"G2596\"* to|strong=\"G2532\"* her|strong=\"G2596\"* works|strong=\"G2041\"*. In|strong=\"G1722\"* the|strong=\"G1722\"* cup|strong=\"G4221\"* which|strong=\"G3739\"* she|strong=\"G2532\"* mixed|strong=\"G2767\"*, mix|strong=\"G2767\"* to|strong=\"G2532\"* her|strong=\"G2596\"* double|strong=\"G1362\"*." + }, + { + "verseNum": 7, + "text": "However much|strong=\"G5118\"* she|strong=\"G2532\"* glorified|strong=\"G1392\"* herself|strong=\"G1438\"* and|strong=\"G2532\"* grew wanton, so|strong=\"G2532\"* much|strong=\"G5118\"* give|strong=\"G1325\"* her|strong=\"G1325\"* of|strong=\"G2532\"* torment and|strong=\"G2532\"* mourning|strong=\"G3997\"*. For|strong=\"G3754\"* she|strong=\"G2532\"* says|strong=\"G3004\"* in|strong=\"G1722\"* her|strong=\"G1325\"* heart|strong=\"G2588\"*, ‘I|strong=\"G2532\"* sit|strong=\"G2521\"* a|strong=\"G2532\"* queen, and|strong=\"G2532\"* am|strong=\"G1510\"* no|strong=\"G3756\"* widow|strong=\"G5503\"*, and|strong=\"G2532\"* will|strong=\"G1510\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* see|strong=\"G3708\"* mourning|strong=\"G3997\"*.’" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"G1223\"* in|strong=\"G1722\"* one|strong=\"G1520\"* day|strong=\"G2250\"* her|strong=\"G1438\"* plagues|strong=\"G4127\"* will|strong=\"G2316\"* come|strong=\"G2240\"*: death|strong=\"G2288\"*, mourning|strong=\"G3997\"*, and|strong=\"G2532\"* famine|strong=\"G3042\"*; and|strong=\"G2532\"* she|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G2532\"* utterly burned|strong=\"G2618\"* with|strong=\"G1722\"* fire|strong=\"G4442\"*, for|strong=\"G3754\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* who|strong=\"G3588\"* has|strong=\"G2316\"* judged|strong=\"G2919\"* her|strong=\"G1438\"* is|strong=\"G3588\"* strong|strong=\"G2478\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* who|strong=\"G3588\"* committed|strong=\"G4203\"* sexual immorality|strong=\"G4203\"* and|strong=\"G2532\"* lived|strong=\"G2532\"* wantonly with|strong=\"G3326\"* her|strong=\"G1438\"* will|strong=\"G2532\"* weep|strong=\"G2799\"* and|strong=\"G2532\"* wail|strong=\"G2875\"* over|strong=\"G1909\"* her|strong=\"G1438\"*, when|strong=\"G3752\"* they|strong=\"G2532\"* look at|strong=\"G1909\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2532\"* her|strong=\"G1438\"* burning|strong=\"G4451\"*," + }, + { + "verseNum": 10, + "text": "standing|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"* for|strong=\"G3754\"* the|strong=\"G1223\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* her|strong=\"G3754\"* torment, saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1223\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, Babylon, the|strong=\"G1223\"* strong|strong=\"G2478\"* city|strong=\"G4172\"*! For|strong=\"G3754\"* your|strong=\"G1223\"* judgment|strong=\"G2920\"* has|strong=\"G5610\"* come|strong=\"G2064\"* in|strong=\"G1223\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*.’" + }, + { + "verseNum": 11, + "text": "The|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* weep|strong=\"G2799\"* and|strong=\"G2532\"* mourn|strong=\"G3996\"* over|strong=\"G1909\"* her|strong=\"G1438\"*, for|strong=\"G3754\"* no|strong=\"G3762\"* one|strong=\"G3762\"* buys their|strong=\"G1438\"* merchandise|strong=\"G1117\"* any|strong=\"G3762\"* more|strong=\"G3765\"*:" + }, + { + "verseNum": 12, + "text": "merchandise|strong=\"G1117\"* of|strong=\"G1537\"* gold|strong=\"G5557\"*, silver, precious|strong=\"G5093\"* stones|strong=\"G3037\"*, pearls|strong=\"G3135\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, purple|strong=\"G4209\"*, silk|strong=\"G4596\"*, scarlet|strong=\"G2847\"*, all|strong=\"G3956\"* expensive|strong=\"G5093\"* wood|strong=\"G3586\"*, every|strong=\"G3956\"* vessel|strong=\"G4632\"* of|strong=\"G1537\"* ivory|strong=\"G1661\"*, every|strong=\"G3956\"* vessel|strong=\"G4632\"* made|strong=\"G3956\"* of|strong=\"G1537\"* most|strong=\"G1537\"* precious|strong=\"G5093\"* wood|strong=\"G3586\"*, and|strong=\"G2532\"* of|strong=\"G1537\"* brass|strong=\"G5475\"*, and|strong=\"G2532\"* iron|strong=\"G4604\"*, and|strong=\"G2532\"* marble|strong=\"G3139\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"G2532\"* cinnamon|strong=\"G2792\"*, incense|strong=\"G2368\"*, perfume|strong=\"G3464\"*, frankincense|strong=\"G3030\"*, wine|strong=\"G3631\"*, olive|strong=\"G1637\"* oil|strong=\"G1637\"*, fine|strong=\"G2532\"* flour|strong=\"G4585\"*, wheat|strong=\"G4621\"*, cattle|strong=\"G2934\"*, sheep|strong=\"G4263\"*, horses|strong=\"G2462\"*, chariots|strong=\"G4480\"*, and|strong=\"G2532\"* people|strong=\"G5590\"*’s bodies|strong=\"G4983\"* and|strong=\"G2532\"* souls|strong=\"G5590\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* fruits|strong=\"G3703\"* which|strong=\"G3588\"* your|strong=\"G2532\"* soul|strong=\"G5590\"* lusted|strong=\"G5590\"* after|strong=\"G2532\"* have|strong=\"G2532\"* been|strong=\"G2532\"* lost to|strong=\"G2532\"* you|strong=\"G4771\"*. All|strong=\"G3956\"* things|strong=\"G3956\"* that|strong=\"G3588\"* were|strong=\"G3588\"* dainty|strong=\"G3045\"* and|strong=\"G2532\"* sumptuous have|strong=\"G2532\"* perished from|strong=\"G2532\"* you|strong=\"G4771\"*, and|strong=\"G2532\"* you|strong=\"G4771\"* will|strong=\"G2532\"* find|strong=\"G2147\"* them|strong=\"G3588\"* no|strong=\"G3756\"* more|strong=\"G3765\"* at|strong=\"G3756\"* all|strong=\"G3956\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"G2532\"* merchants|strong=\"G1713\"* of|strong=\"G1223\"* these|strong=\"G3778\"* things|strong=\"G3778\"*, who|strong=\"G3588\"* were|strong=\"G3588\"* made rich|strong=\"G4147\"* by|strong=\"G1223\"* her|strong=\"G3588\"*, will|strong=\"G2532\"* stand|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"* for|strong=\"G1223\"* the|strong=\"G2532\"* fear|strong=\"G5401\"* of|strong=\"G1223\"* her|strong=\"G3588\"* torment, weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G3996\"*," + }, + { + "verseNum": 16, + "text": "saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, she|strong=\"G2532\"* who|strong=\"G3588\"* was|strong=\"G3588\"* dressed|strong=\"G4016\"* in|strong=\"G1722\"* fine|strong=\"G1039\"* linen|strong=\"G1039\"*, purple|strong=\"G4210\"*, and|strong=\"G2532\"* scarlet|strong=\"G2847\"*, and|strong=\"G2532\"* decked|strong=\"G5558\"* with|strong=\"G1722\"* gold|strong=\"G5553\"* and|strong=\"G2532\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"* and|strong=\"G2532\"* pearls|strong=\"G3135\"*!" + }, + { + "verseNum": 17, + "text": "For|strong=\"G1909\"* in|strong=\"G1909\"* an|strong=\"G2532\"* hour|strong=\"G5610\"* such|strong=\"G5118\"* great|strong=\"G5118\"* riches|strong=\"G4149\"* are|strong=\"G3588\"* made|strong=\"G3956\"* desolate.’ Every|strong=\"G3956\"* ship master|strong=\"G2942\"*, and|strong=\"G2532\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* sails anywhere, and|strong=\"G2532\"* mariners, and|strong=\"G2532\"* as|strong=\"G3745\"* many|strong=\"G3745\"* as|strong=\"G3745\"* gain their|strong=\"G2532\"* living|strong=\"G2038\"* by|strong=\"G1909\"* sea|strong=\"G2281\"*, stood|strong=\"G2476\"* far|strong=\"G3113\"* away|strong=\"G3113\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"G2532\"* cried|strong=\"G2896\"* out|strong=\"G2896\"* as|strong=\"G2532\"* they|strong=\"G2532\"* looked|strong=\"G2532\"* at|strong=\"G3588\"* the|strong=\"G2532\"* smoke|strong=\"G2586\"* of|strong=\"G2532\"* her|strong=\"G3588\"* burning|strong=\"G4451\"*, saying|strong=\"G3004\"*, ‘What|strong=\"G5101\"* is|strong=\"G3588\"* like|strong=\"G3664\"* the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*?’" + }, + { + "verseNum": 19, + "text": "They|strong=\"G2532\"* cast|strong=\"G2532\"* dust|strong=\"G5522\"* on|strong=\"G1909\"* their|strong=\"G2532\"* heads|strong=\"G2776\"*, and|strong=\"G2532\"* cried|strong=\"G2896\"*, weeping|strong=\"G2799\"* and|strong=\"G2532\"* mourning|strong=\"G3996\"*, saying|strong=\"G3004\"*, ‘Woe|strong=\"G3759\"*, woe|strong=\"G3759\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, in|strong=\"G1722\"* which|strong=\"G3739\"* all|strong=\"G3956\"* who|strong=\"G3739\"* had|strong=\"G2192\"* their|strong=\"G2532\"* ships|strong=\"G4143\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sea|strong=\"G2281\"* were|strong=\"G3588\"* made|strong=\"G3956\"* rich|strong=\"G4147\"* by|strong=\"G1722\"* reason|strong=\"G1537\"* of|strong=\"G1537\"* her|strong=\"G3956\"* great|strong=\"G3173\"* wealth|strong=\"G5094\"*!’ For|strong=\"G3754\"* she|strong=\"G2532\"* is|strong=\"G3588\"* made|strong=\"G3956\"* desolate|strong=\"G2049\"* in|strong=\"G1722\"* one|strong=\"G1520\"* hour|strong=\"G5610\"*." + }, + { + "verseNum": 20, + "text": "“Rejoice|strong=\"G2165\"* over|strong=\"G1909\"* her|strong=\"G3754\"*, O heaven|strong=\"G3772\"*, you|strong=\"G5210\"* saints, apostles, and|strong=\"G2532\"* prophets|strong=\"G4396\"*, for|strong=\"G3754\"* God|strong=\"G2316\"* has|strong=\"G2316\"* judged|strong=\"G2919\"* your|strong=\"G2532\"* judgment|strong=\"G2917\"* on|strong=\"G1909\"* her|strong=\"G3754\"*.”" + }, + { + "verseNum": 21, + "text": "A|strong=\"G5613\"* mighty|strong=\"G2478\"* angel took|strong=\"G2532\"* up|strong=\"G1519\"* a|strong=\"G5613\"* stone|strong=\"G3037\"* like|strong=\"G5613\"* a|strong=\"G5613\"* great|strong=\"G3173\"* millstone|strong=\"G3458\"* and|strong=\"G2532\"* cast|strong=\"G2532\"* it|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G2532\"* sea|strong=\"G2281\"*, saying|strong=\"G3004\"*, “Thus|strong=\"G3779\"* with|strong=\"G2532\"* violence|strong=\"G3731\"* will|strong=\"G2532\"* Babylon, the|strong=\"G2532\"* great|strong=\"G3173\"* city|strong=\"G4172\"*, be|strong=\"G2532\"* thrown down, and|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1519\"* all|strong=\"G2532\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* harpists|strong=\"G2790\"*, minstrels, flute players, and|strong=\"G2532\"* trumpeters|strong=\"G4538\"* will|strong=\"G2532\"* be|strong=\"G2532\"* heard no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. No|strong=\"G3756\"* craftsman|strong=\"G5079\"* of|strong=\"G2532\"* whatever|strong=\"G3956\"* craft|strong=\"G5078\"* will|strong=\"G2532\"* be|strong=\"G2532\"* found|strong=\"G2147\"* any|strong=\"G3956\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. The|strong=\"G1722\"* sound|strong=\"G5456\"* of|strong=\"G2532\"* a|strong=\"G2532\"* mill|strong=\"G3458\"* will|strong=\"G2532\"* be|strong=\"G2532\"* heard no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G1722\"* light|strong=\"G5457\"* of|strong=\"G2532\"* a|strong=\"G2532\"* lamp|strong=\"G3088\"* will|strong=\"G1510\"* shine|strong=\"G5316\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*. The|strong=\"G1722\"* voice|strong=\"G5456\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bridegroom|strong=\"G3566\"* and|strong=\"G2532\"* of|strong=\"G2532\"* the|strong=\"G1722\"* bride|strong=\"G3565\"* will|strong=\"G1510\"* be|strong=\"G1510\"* heard|strong=\"G1484\"* no|strong=\"G3756\"* more|strong=\"G2089\"* at|strong=\"G1722\"* all|strong=\"G3956\"* in|strong=\"G1722\"* you|strong=\"G4771\"*, for|strong=\"G3754\"* your|strong=\"G2532\"* merchants|strong=\"G1713\"* were|strong=\"G1510\"* the|strong=\"G1722\"* princes of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*; for|strong=\"G3754\"* with|strong=\"G1722\"* your|strong=\"G2532\"* sorcery|strong=\"G5331\"* all|strong=\"G3956\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* were|strong=\"G1510\"* deceived|strong=\"G4105\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"G1722\"* her|strong=\"G3956\"* was|strong=\"G3588\"* found|strong=\"G2147\"* the|strong=\"G1722\"* blood of|strong=\"G2532\"* prophets|strong=\"G4396\"* and|strong=\"G2532\"* of|strong=\"G2532\"* saints, and|strong=\"G2532\"* of|strong=\"G2532\"* all|strong=\"G3956\"* who|strong=\"G3588\"* have|strong=\"G2532\"* been|strong=\"G2532\"* slain|strong=\"G4969\"* on|strong=\"G1909\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*.”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"G3326\"* these|strong=\"G3778\"* things|strong=\"G3778\"* I|strong=\"G1473\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* a|strong=\"G5613\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G5613\"* great|strong=\"G3173\"* multitude|strong=\"G3793\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, saying|strong=\"G3004\"*, “Hallelujah! Salvation|strong=\"G4991\"*, power|strong=\"G1411\"*, and|strong=\"G2532\"* glory|strong=\"G1391\"* belong to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*;" + }, + { + "verseNum": 2, + "text": "for|strong=\"G3754\"* his|strong=\"G1722\"* judgments|strong=\"G2920\"* are|strong=\"G3588\"* true|strong=\"G3588\"* and|strong=\"G2532\"* righteous|strong=\"G1342\"*. For|strong=\"G3754\"* he|strong=\"G2532\"* has|strong=\"G3748\"* judged|strong=\"G2919\"* the|strong=\"G1722\"* great|strong=\"G3173\"* prostitute|strong=\"G4204\"* who|strong=\"G3588\"* corrupted|strong=\"G5351\"* the|strong=\"G1722\"* earth|strong=\"G1093\"* with|strong=\"G1722\"* her|strong=\"G3754\"* sexual|strong=\"G4202\"* immorality|strong=\"G4202\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* has|strong=\"G3748\"* avenged|strong=\"G1556\"* the|strong=\"G1722\"* blood of|strong=\"G1537\"* his|strong=\"G1722\"* servants|strong=\"G1401\"* at|strong=\"G1722\"* her|strong=\"G3754\"* hand|strong=\"G5495\"*.”" + }, + { + "verseNum": 3, + "text": "A|strong=\"G2532\"* second|strong=\"G1208\"* said|strong=\"G3004\"*, “Hallelujah! Her|strong=\"G1519\"* smoke|strong=\"G2586\"* goes up|strong=\"G1519\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"G2532\"* twenty-four|strong=\"G1501\"* elders|strong=\"G4245\"* and|strong=\"G2532\"* the|strong=\"G2532\"* four|strong=\"G5064\"* living|strong=\"G2226\"* creatures|strong=\"G2226\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* and|strong=\"G2532\"* worshiped|strong=\"G4352\"* God|strong=\"G2316\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “Amen! Hallelujah!”" + }, + { + "verseNum": 5, + "text": "A|strong=\"G2532\"* voice|strong=\"G5456\"* came|strong=\"G1831\"* from|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"*, saying|strong=\"G3004\"*, “Give|strong=\"G3004\"* praise to|strong=\"G2532\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, all|strong=\"G3956\"* you|strong=\"G3004\"* his|strong=\"G3956\"* servants|strong=\"G1401\"*, you|strong=\"G3004\"* who|strong=\"G3588\"* fear|strong=\"G5399\"* him|strong=\"G3588\"*, the|strong=\"G2532\"* small|strong=\"G3398\"* and|strong=\"G2532\"* the|strong=\"G2532\"* great|strong=\"G3173\"*!”" + }, + { + "verseNum": 6, + "text": "I|strong=\"G2532\"* heard something|strong=\"G4183\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* a|strong=\"G5613\"* great|strong=\"G4183\"* multitude|strong=\"G3793\"*, and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* many|strong=\"G4183\"* waters|strong=\"G5204\"*, and|strong=\"G2532\"* like|strong=\"G5613\"* the|strong=\"G2532\"* voice|strong=\"G5456\"* of|strong=\"G2316\"* mighty|strong=\"G2478\"* thunders|strong=\"G1027\"*, saying|strong=\"G3004\"*, “Hallelujah! For|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* our|strong=\"G2316\"* God|strong=\"G2316\"*, the|strong=\"G2532\"* Almighty|strong=\"G3841\"*, reigns!" + }, + { + "verseNum": 7, + "text": "Let|strong=\"G2532\"*’s rejoice|strong=\"G5463\"* and|strong=\"G2532\"* be|strong=\"G2532\"* exceedingly glad|strong=\"G5463\"*, and|strong=\"G2532\"* let|strong=\"G2532\"*’s give|strong=\"G1325\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* to|strong=\"G2532\"* him|strong=\"G3588\"*. For|strong=\"G3754\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"* of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb has|strong=\"G3748\"* come|strong=\"G2064\"*, and|strong=\"G2532\"* his|strong=\"G1438\"* wife|strong=\"G1135\"* has|strong=\"G3748\"* made|strong=\"G2090\"* herself|strong=\"G1438\"* ready|strong=\"G2090\"*.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"G2532\"* was|strong=\"G1510\"* given|strong=\"G1325\"* to|strong=\"G2443\"* her|strong=\"G1325\"* that|strong=\"G2443\"* she|strong=\"G2532\"* would|strong=\"G2532\"* array herself in|strong=\"G2532\"* bright|strong=\"G2986\"*, pure|strong=\"G2513\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* fine|strong=\"G1039\"* linen|strong=\"G1039\"* is|strong=\"G1510\"* the|strong=\"G2532\"* righteous|strong=\"G1345\"* acts|strong=\"G1345\"* of|strong=\"G2532\"* the|strong=\"G2532\"* saints." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, “Write|strong=\"G1125\"*, ‘Blessed|strong=\"G3107\"* are|strong=\"G1510\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G1510\"* invited|strong=\"G2564\"* to|strong=\"G1519\"* the|strong=\"G2532\"* wedding|strong=\"G1062\"* supper|strong=\"G1173\"* of|strong=\"G3056\"* the|strong=\"G2532\"* Lamb|strong=\"G3004\"*.’” He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G1519\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* are|strong=\"G1510\"* true|strong=\"G3588\"* words|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 10, + "text": "I|strong=\"G1473\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* before|strong=\"G1715\"* his|strong=\"G3708\"* feet|strong=\"G4228\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* him|strong=\"G3588\"*. He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Look|strong=\"G3708\"*! Don’t|strong=\"G3588\"* do|strong=\"G2532\"* it|strong=\"G2532\"*! I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2192\"* fellow|strong=\"G4889\"* bondservant with|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2192\"* brothers who|strong=\"G3588\"* hold|strong=\"G2192\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"*. Worship|strong=\"G4352\"* God|strong=\"G2316\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G4151\"* Jesus|strong=\"G2424\"* is|strong=\"G1510\"* the|strong=\"G2532\"* Spirit|strong=\"G4151\"* of|strong=\"G4151\"* Prophecy|strong=\"G4394\"*.”" + }, + { + "verseNum": 11, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* heaven|strong=\"G3772\"* opened, and|strong=\"G2532\"* behold|strong=\"G2400\"*, a|strong=\"G2532\"* white|strong=\"G3022\"* horse|strong=\"G2462\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"* is|strong=\"G3588\"* called|strong=\"G2564\"* Faithful|strong=\"G4103\"* and|strong=\"G2532\"* True|strong=\"G4103\"*. In|strong=\"G1722\"* righteousness|strong=\"G1343\"* he|strong=\"G2532\"* judges|strong=\"G2919\"* and|strong=\"G2532\"* makes war|strong=\"G4170\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"G1909\"* eyes|strong=\"G3788\"* are|strong=\"G3588\"* a|strong=\"G2192\"* flame|strong=\"G5395\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* head|strong=\"G2776\"* are|strong=\"G3588\"* many|strong=\"G4183\"* crowns|strong=\"G1238\"*. He|strong=\"G2532\"* has|strong=\"G2192\"* names|strong=\"G3686\"* written|strong=\"G1125\"* and|strong=\"G2532\"* a|strong=\"G2192\"* name|strong=\"G3686\"* written|strong=\"G1125\"* which|strong=\"G3739\"* no|strong=\"G3762\"* one|strong=\"G3762\"* knows|strong=\"G1492\"* but|strong=\"G1161\"* he|strong=\"G2532\"* himself." + }, + { + "verseNum": 13, + "text": "He|strong=\"G2532\"* is|strong=\"G3588\"* clothed|strong=\"G4016\"* in|strong=\"G2532\"* a|strong=\"G2532\"* garment|strong=\"G2440\"* sprinkled|strong=\"G4472\"* with|strong=\"G2532\"* blood. His|strong=\"G2532\"* name|strong=\"G3686\"* is|strong=\"G3588\"* called|strong=\"G2564\"* “The|strong=\"G2532\"* Word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"G1722\"* armies|strong=\"G4753\"* which|strong=\"G3588\"* are|strong=\"G3588\"* in|strong=\"G1722\"* heaven|strong=\"G3772\"*, clothed|strong=\"G1746\"* in|strong=\"G1722\"* white|strong=\"G3022\"*, pure|strong=\"G2513\"*, fine|strong=\"G1039\"* linen|strong=\"G1039\"*, followed him|strong=\"G3588\"* on|strong=\"G1909\"* white|strong=\"G3022\"* horses|strong=\"G2462\"*." + }, + { + "verseNum": 15, + "text": "Out|strong=\"G1537\"* of|strong=\"G1537\"* his|strong=\"G1438\"* mouth|strong=\"G4750\"* proceeds|strong=\"G1607\"* a|strong=\"G2532\"* sharp|strong=\"G3691\"*, double-edged sword|strong=\"G4501\"* that|strong=\"G2443\"* with|strong=\"G1722\"* it|strong=\"G2532\"* he|strong=\"G2532\"* should|strong=\"G2316\"* strike|strong=\"G3960\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*. He|strong=\"G2532\"* will|strong=\"G2316\"* rule|strong=\"G4165\"* them|strong=\"G3588\"* with|strong=\"G1722\"* an|strong=\"G2532\"* iron|strong=\"G4603\"* rod|strong=\"G4464\"*.+ 19:15 Psalms 2:9 * He|strong=\"G2532\"* treads|strong=\"G3961\"* the|strong=\"G1722\"* wine|strong=\"G3631\"* press|strong=\"G3025\"* of|strong=\"G1537\"* the|strong=\"G1722\"* fierceness|strong=\"G2372\"* of|strong=\"G1537\"* the|strong=\"G1722\"* wrath|strong=\"G3709\"* of|strong=\"G1537\"* God|strong=\"G2316\"*, the|strong=\"G1722\"* Almighty|strong=\"G3841\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"G2532\"* has|strong=\"G2192\"* on|strong=\"G1909\"* his|strong=\"G1909\"* garment|strong=\"G2440\"* and|strong=\"G2532\"* on|strong=\"G1909\"* his|strong=\"G1909\"* thigh|strong=\"G3382\"* a|strong=\"G2192\"* name|strong=\"G3686\"* written|strong=\"G1125\"*, “KING|strong=\"G3588\"* OF|strong=\"G2532\"* KINGS|strong=\"G3588\"* AND|strong=\"G2532\"* LORD|strong=\"G2962\"* OF|strong=\"G2532\"* LORDS|strong=\"G2962\"*.”" + }, + { + "verseNum": 17, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2532\"* angel standing|strong=\"G2476\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sun|strong=\"G2246\"*. He|strong=\"G2532\"* cried|strong=\"G2896\"* with|strong=\"G1722\"* a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"*, saying|strong=\"G3004\"* to|strong=\"G1519\"* all|strong=\"G3956\"* the|strong=\"G1722\"* birds|strong=\"G3732\"* that|strong=\"G3588\"* fly|strong=\"G4072\"* in|strong=\"G1722\"* the|strong=\"G1722\"* sky, “Come|strong=\"G1205\"*! Be|strong=\"G2532\"* gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G1519\"* the|strong=\"G1722\"* great|strong=\"G3173\"* supper|strong=\"G1173\"* of|strong=\"G2316\"* God|strong=\"G2316\"*,+ 19:17 TR reads “supper of the great God” instead of “great supper of God”*" + }, + { + "verseNum": 18, + "text": "that|strong=\"G2443\"* you|strong=\"G3956\"* may|strong=\"G2532\"* eat|strong=\"G2068\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* kings|strong=\"G3588\"*, the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* captains|strong=\"G5506\"*, the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* mighty|strong=\"G2478\"* men|strong=\"G3956\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* horses|strong=\"G2462\"* and|strong=\"G2532\"* of|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* sit|strong=\"G2521\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* the|strong=\"G2532\"* flesh|strong=\"G4561\"* of|strong=\"G2532\"* all|strong=\"G3956\"* men|strong=\"G3956\"*, both|strong=\"G2532\"* free|strong=\"G1658\"* and|strong=\"G2532\"* slave|strong=\"G1401\"*, small|strong=\"G3398\"* and|strong=\"G2532\"* great|strong=\"G3173\"*.”" + }, + { + "verseNum": 19, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* beast|strong=\"G2342\"*, the|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G2532\"* the|strong=\"G2532\"* earth|strong=\"G1093\"*, and|strong=\"G2532\"* their|strong=\"G2532\"* armies|strong=\"G4753\"*, gathered|strong=\"G4863\"* together|strong=\"G4863\"* to|strong=\"G2532\"* make|strong=\"G4160\"* war|strong=\"G4171\"* against|strong=\"G1909\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* horse|strong=\"G2462\"* and|strong=\"G2532\"* against|strong=\"G1909\"* his|strong=\"G1909\"* army|strong=\"G4753\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"G1722\"* beast|strong=\"G2342\"* was|strong=\"G3588\"* taken|strong=\"G2983\"*, and|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* the|strong=\"G1722\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"* who|strong=\"G3739\"* worked|strong=\"G4160\"* the|strong=\"G1722\"* signs|strong=\"G4592\"* in|strong=\"G1722\"* his|strong=\"G1519\"* sight|strong=\"G1799\"*, with|strong=\"G3326\"* which|strong=\"G3739\"* he|strong=\"G2532\"* deceived|strong=\"G4105\"* those|strong=\"G3588\"* who|strong=\"G3739\"* had|strong=\"G2532\"* received|strong=\"G2983\"* the|strong=\"G1722\"* mark|strong=\"G5480\"* of|strong=\"G2532\"* the|strong=\"G1722\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3739\"* worshiped|strong=\"G4352\"* his|strong=\"G1519\"* image|strong=\"G1504\"*. These|strong=\"G3739\"* two|strong=\"G1417\"* were|strong=\"G3588\"* thrown alive|strong=\"G2198\"* into|strong=\"G1519\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"* that|strong=\"G3739\"* burns|strong=\"G2545\"* with|strong=\"G3326\"* sulfur|strong=\"G2303\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"G1722\"* rest|strong=\"G3062\"* were|strong=\"G3588\"* killed with|strong=\"G1722\"* the|strong=\"G1722\"* sword|strong=\"G4501\"* of|strong=\"G1537\"* him|strong=\"G3588\"* who|strong=\"G3588\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G1722\"* horse|strong=\"G2462\"*, the|strong=\"G1722\"* sword|strong=\"G4501\"* which|strong=\"G3588\"* came|strong=\"G1831\"* out|strong=\"G1831\"* of|strong=\"G1537\"* his|strong=\"G3956\"* mouth|strong=\"G4750\"*. So|strong=\"G2532\"* all|strong=\"G3956\"* the|strong=\"G1722\"* birds|strong=\"G3732\"* were|strong=\"G3588\"* filled|strong=\"G5526\"* with|strong=\"G1722\"* their|strong=\"G2532\"* flesh|strong=\"G4561\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* an|strong=\"G2192\"* angel|strong=\"G2597\"* coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"*, having|strong=\"G2192\"* the|strong=\"G2532\"* key|strong=\"G2807\"* of|strong=\"G1537\"* the|strong=\"G2532\"* abyss and|strong=\"G2532\"* a|strong=\"G2192\"* great|strong=\"G3173\"* chain in|strong=\"G1909\"* his|strong=\"G1909\"* hand|strong=\"G5495\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"G2532\"* seized|strong=\"G2902\"* the|strong=\"G2532\"* dragon|strong=\"G1404\"*, the|strong=\"G2532\"* old|strong=\"G2094\"* serpent|strong=\"G3789\"*, who|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G2532\"* devil|strong=\"G1228\"* and|strong=\"G2532\"* Satan|strong=\"G4567\"*, who|strong=\"G3739\"* deceives the|strong=\"G2532\"* whole inhabited earth|strong=\"G2532\"*,+ 20:2 TR and NU omit “who deceives the whole inhabited earth”.* and|strong=\"G2532\"* bound|strong=\"G1210\"* him|strong=\"G3588\"* for|strong=\"G2532\"* a|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"G2532\"* cast|strong=\"G2532\"* him|strong=\"G3588\"* into|strong=\"G1519\"* the|strong=\"G2532\"* abyss, and|strong=\"G2532\"* shut|strong=\"G2808\"* it|strong=\"G2532\"* and|strong=\"G2532\"* sealed|strong=\"G4972\"* it|strong=\"G2532\"* over|strong=\"G1883\"* him|strong=\"G3588\"*, that|strong=\"G2443\"* he|strong=\"G2532\"* should|strong=\"G1163\"* deceive|strong=\"G4105\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* no|strong=\"G3361\"* more|strong=\"G2089\"* until|strong=\"G1519\"* the|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* were|strong=\"G3588\"* finished|strong=\"G5055\"*. After|strong=\"G3326\"* this|strong=\"G3778\"*, he|strong=\"G2532\"* must|strong=\"G1163\"* be|strong=\"G2532\"* freed for|strong=\"G1519\"* a|strong=\"G2532\"* short|strong=\"G3588\"* time|strong=\"G5550\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* thrones|strong=\"G2362\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* sat|strong=\"G2523\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* judgment|strong=\"G2917\"* was|strong=\"G3588\"* given|strong=\"G1325\"* to|strong=\"G2532\"* them|strong=\"G3588\"*. I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* souls|strong=\"G5590\"* of|strong=\"G3056\"* those|strong=\"G3588\"* who|strong=\"G3588\"* had|strong=\"G2424\"* been|strong=\"G2532\"* beheaded|strong=\"G3990\"* for|strong=\"G1223\"* the|strong=\"G2532\"* testimony|strong=\"G3141\"* of|strong=\"G3056\"* Jesus|strong=\"G2424\"* and|strong=\"G2532\"* for|strong=\"G1223\"* the|strong=\"G2532\"* word|strong=\"G3056\"* of|strong=\"G3056\"* God|strong=\"G2316\"*, and|strong=\"G2532\"* such|strong=\"G3588\"* as|strong=\"G2532\"* didn’t|strong=\"G3588\"* worship|strong=\"G4352\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* nor|strong=\"G3761\"* his|strong=\"G1438\"* image|strong=\"G1504\"*, and|strong=\"G2532\"* didn’t|strong=\"G3588\"* receive|strong=\"G2983\"* the|strong=\"G2532\"* mark|strong=\"G5480\"* on|strong=\"G1909\"* their|strong=\"G1438\"* forehead|strong=\"G3359\"* and|strong=\"G2532\"* on|strong=\"G1909\"* their|strong=\"G1438\"* hand|strong=\"G5495\"*. They|strong=\"G2532\"* lived|strong=\"G2198\"* and|strong=\"G2532\"* reigned with|strong=\"G3326\"* Christ|strong=\"G5547\"* for|strong=\"G1223\"* a|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"G3588\"* rest|strong=\"G3062\"* of|strong=\"G3588\"* the|strong=\"G3588\"* dead|strong=\"G3498\"* didn’t|strong=\"G3588\"* live|strong=\"G2198\"* until the|strong=\"G3588\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"* were|strong=\"G3588\"* finished|strong=\"G5055\"*. This|strong=\"G3778\"* is|strong=\"G3588\"* the|strong=\"G3588\"* first|strong=\"G4413\"* resurrection." + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"G3107\"* and|strong=\"G2532\"* holy is|strong=\"G1510\"* he|strong=\"G2532\"* who|strong=\"G3588\"* has|strong=\"G2192\"* part|strong=\"G3313\"* in|strong=\"G1722\"* the|strong=\"G1722\"* first|strong=\"G4413\"* resurrection. Over|strong=\"G1909\"* these|strong=\"G3778\"*, the|strong=\"G1722\"* second|strong=\"G1208\"* death|strong=\"G2288\"* has|strong=\"G2192\"* no|strong=\"G3756\"* power|strong=\"G1849\"*, but|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* priests|strong=\"G2409\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* Christ|strong=\"G5547\"*, and|strong=\"G2532\"* will|strong=\"G2316\"* reign|strong=\"G2532\"* with|strong=\"G3326\"* him|strong=\"G3588\"* one|strong=\"G3588\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*." + }, + { + "verseNum": 7, + "text": "And|strong=\"G2532\"* after|strong=\"G2532\"* the|strong=\"G2532\"* thousand|strong=\"G5507\"* years|strong=\"G2094\"*, Satan|strong=\"G4567\"* will|strong=\"G2532\"* be|strong=\"G2532\"* released|strong=\"G3089\"* from|strong=\"G1537\"* his|strong=\"G2532\"* prison|strong=\"G5438\"*" + }, + { + "verseNum": 8, + "text": "and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2532\"* come|strong=\"G1831\"* out|strong=\"G1831\"* to|strong=\"G1519\"* deceive|strong=\"G4105\"* the|strong=\"G1722\"* nations|strong=\"G1484\"* which|strong=\"G3739\"* are|strong=\"G3588\"* in|strong=\"G1722\"* the|strong=\"G1722\"* four|strong=\"G5064\"* corners|strong=\"G1137\"* of|strong=\"G2532\"* the|strong=\"G1722\"* earth|strong=\"G1093\"*, Gog|strong=\"G1136\"* and|strong=\"G2532\"* Magog|strong=\"G3098\"*, to|strong=\"G1519\"* gather|strong=\"G4863\"* them|strong=\"G3588\"* together|strong=\"G4863\"* to|strong=\"G1519\"* the|strong=\"G1722\"* war|strong=\"G4171\"*, whose|strong=\"G3739\"* number|strong=\"G1484\"* is|strong=\"G3588\"* as|strong=\"G5613\"* the|strong=\"G1722\"* sand of|strong=\"G2532\"* the|strong=\"G1722\"* sea|strong=\"G2281\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"G2532\"* went|strong=\"G2597\"* up|strong=\"G2719\"* over|strong=\"G1909\"* the|strong=\"G2532\"* width|strong=\"G4114\"* of|strong=\"G1537\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* surrounded|strong=\"G2944\"* the|strong=\"G2532\"* camp|strong=\"G3925\"* of|strong=\"G1537\"* the|strong=\"G2532\"* saints and|strong=\"G2532\"* the|strong=\"G2532\"* beloved city|strong=\"G4172\"*. Fire|strong=\"G4442\"* came|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2532\"* and|strong=\"G2532\"* devoured|strong=\"G2719\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"G2532\"* devil|strong=\"G1228\"* who|strong=\"G3588\"* deceived|strong=\"G4105\"* them|strong=\"G3588\"* was|strong=\"G3588\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2250\"* fire|strong=\"G4442\"* and|strong=\"G2532\"* sulfur|strong=\"G2303\"*, where|strong=\"G3699\"* the|strong=\"G2532\"* beast|strong=\"G2342\"* and|strong=\"G2532\"* the|strong=\"G2532\"* false|strong=\"G5578\"* prophet|strong=\"G5578\"* are|strong=\"G3588\"* also|strong=\"G2532\"*. They|strong=\"G2532\"* will|strong=\"G2532\"* be|strong=\"G2532\"* tormented day|strong=\"G2250\"* and|strong=\"G2532\"* night|strong=\"G3571\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G1519\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* great|strong=\"G3173\"* white|strong=\"G3022\"* throne|strong=\"G2362\"* and|strong=\"G2532\"* him|strong=\"G3588\"* who|strong=\"G3739\"* sat|strong=\"G2521\"* on|strong=\"G1909\"* it|strong=\"G2532\"*, from|strong=\"G2532\"* whose|strong=\"G3739\"* face|strong=\"G4383\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* and|strong=\"G2532\"* the|strong=\"G2532\"* heaven|strong=\"G3772\"* fled|strong=\"G5343\"* away|strong=\"G5343\"*. There|strong=\"G2532\"* was|strong=\"G3588\"* found|strong=\"G2147\"* no|strong=\"G3756\"* place|strong=\"G5117\"* for|strong=\"G1909\"* them|strong=\"G3588\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"G3739\"* saw|strong=\"G3708\"* the|strong=\"G1722\"* dead|strong=\"G3498\"*, the|strong=\"G1722\"* great|strong=\"G3173\"* and|strong=\"G2532\"* the|strong=\"G1722\"* small|strong=\"G3398\"*, standing|strong=\"G2476\"* before|strong=\"G1799\"* the|strong=\"G1722\"* throne|strong=\"G2362\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* opened books. Another|strong=\"G3739\"* book|strong=\"G3588\"* was|strong=\"G1510\"* opened, which|strong=\"G3739\"* is|strong=\"G1510\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* life|strong=\"G2222\"*. The|strong=\"G1722\"* dead|strong=\"G3498\"* were|strong=\"G1510\"* judged|strong=\"G2919\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* things|strong=\"G3588\"* which|strong=\"G3739\"* were|strong=\"G1510\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* books, according|strong=\"G2596\"* to|strong=\"G2532\"* their|strong=\"G2532\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"G1722\"* sea|strong=\"G2281\"* gave|strong=\"G1325\"* up|strong=\"G1325\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* it|strong=\"G2532\"*. Death|strong=\"G2288\"* and|strong=\"G2532\"* Hades+ 20:13 or, Hell * gave|strong=\"G1325\"* up|strong=\"G1325\"* the|strong=\"G1722\"* dead|strong=\"G3498\"* who|strong=\"G3588\"* were|strong=\"G3588\"* in|strong=\"G1722\"* them|strong=\"G3588\"*. They|strong=\"G2532\"* were|strong=\"G3588\"* judged|strong=\"G2919\"*, each|strong=\"G1538\"* one|strong=\"G1538\"* according|strong=\"G2596\"* to|strong=\"G2532\"* his|strong=\"G1722\"* works|strong=\"G2041\"*." + }, + { + "verseNum": 14, + "text": "Death|strong=\"G2288\"* and|strong=\"G2532\"* Hades+ 20:14 or, Hell* were|strong=\"G1510\"* thrown into|strong=\"G1519\"* the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*. This|strong=\"G3778\"* is|strong=\"G1510\"* the|strong=\"G2532\"* second|strong=\"G1208\"* death|strong=\"G2288\"*, the|strong=\"G2532\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"G1487\"* anyone|strong=\"G5100\"* was|strong=\"G3588\"* not|strong=\"G3756\"* found|strong=\"G2147\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, he|strong=\"G2532\"* was|strong=\"G3588\"* cast|strong=\"G2532\"* into|strong=\"G1519\"* the|strong=\"G1722\"* lake|strong=\"G3041\"* of|strong=\"G2532\"* fire|strong=\"G4442\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* a|strong=\"G2532\"* new|strong=\"G2537\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* a|strong=\"G2532\"* new|strong=\"G2537\"* earth|strong=\"G1093\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* first|strong=\"G4413\"* heaven|strong=\"G3772\"* and|strong=\"G2532\"* the|strong=\"G2532\"* first|strong=\"G4413\"* earth|strong=\"G1093\"* have|strong=\"G2532\"* passed|strong=\"G3588\"* away, and|strong=\"G2532\"* the|strong=\"G2532\"* sea|strong=\"G2281\"* is|strong=\"G1510\"* no|strong=\"G3756\"* more|strong=\"G2089\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* the|strong=\"G2532\"* holy city|strong=\"G4172\"*, New|strong=\"G2537\"* Jerusalem|strong=\"G2419\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2316\"*, prepared|strong=\"G2090\"* like|strong=\"G5613\"* a|strong=\"G5613\"* bride|strong=\"G3565\"* adorned|strong=\"G2885\"* for|strong=\"G2532\"* her|strong=\"G3708\"* husband." + }, + { + "verseNum": 3, + "text": "I|strong=\"G2532\"* heard a|strong=\"G2532\"* loud|strong=\"G3173\"* voice|strong=\"G5456\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven saying|strong=\"G3004\"*, “Behold|strong=\"G2400\"*, God|strong=\"G2316\"*’s dwelling is|strong=\"G1510\"* with|strong=\"G3326\"* people|strong=\"G2992\"*; and|strong=\"G2532\"* he|strong=\"G2532\"* will|strong=\"G2316\"* dwell|strong=\"G4637\"* with|strong=\"G3326\"* them|strong=\"G3588\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* his|strong=\"G3708\"* people|strong=\"G2992\"*, and|strong=\"G2532\"* God|strong=\"G2316\"* himself will|strong=\"G2316\"* be|strong=\"G1510\"* with|strong=\"G3326\"* them|strong=\"G3588\"* as|strong=\"G2532\"* their|strong=\"G2532\"* God|strong=\"G2316\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"G2532\"* will|strong=\"G1510\"* wipe|strong=\"G1813\"* away|strong=\"G1813\"* every|strong=\"G3956\"* tear|strong=\"G1144\"* from|strong=\"G1537\"* their|strong=\"G2532\"* eyes|strong=\"G3788\"*. Death|strong=\"G2288\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* more|strong=\"G2089\"*; neither|strong=\"G3777\"* will|strong=\"G1510\"* there|strong=\"G2532\"* be|strong=\"G1510\"* mourning|strong=\"G3997\"*, nor|strong=\"G3777\"* crying|strong=\"G2906\"*, nor|strong=\"G3777\"* pain|strong=\"G4192\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G2532\"* first|strong=\"G4413\"* things|strong=\"G3956\"* have|strong=\"G2532\"* passed|strong=\"G3588\"* away|strong=\"G1813\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* sits|strong=\"G2521\"* on|strong=\"G1909\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* said|strong=\"G3004\"*, “\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w making|strong=\"G4160\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w things|strong=\"G3956\"\\+w* \\+w new|strong=\"G2537\"\\+w*.”* He|strong=\"G2532\"* said|strong=\"G3004\"*, “\\+w Write|strong=\"G1125\"\\+w*, \\+w for|strong=\"G3754\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w God|strong=\"G3004\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w faithful|strong=\"G4103\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w true|strong=\"G4103\"\\+w*.” *" + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1325\"*, “\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* Beginning \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w End|strong=\"G5056\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2532\"\\+w* \\+w give|strong=\"G1325\"\\+w* \\+w freely|strong=\"G1432\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w thirsty|strong=\"G1372\"\\+w* \\+w from|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w spring|strong=\"G4077\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w water|strong=\"G5204\"\\+w* \\+w of|strong=\"G1537\"\\+w* \\+w life|strong=\"G2222\"\\+w*. *" + }, + { + "verseNum": 7, + "text": "\\+w He|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w overcomes|strong=\"G3528\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w give|strong=\"G1473\"\\+w* \\+w him|strong=\"G3588\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w his|strong=\"G2532\"\\+w* \\+w God|strong=\"G2316\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w will|strong=\"G2316\"\\+w* \\+w be|strong=\"G1510\"\\+w* \\+w my|strong=\"G1473\"\\+w* \\+w son|strong=\"G5207\"\\+w*. *" + }, + { + "verseNum": 8, + "text": "\\+w But|strong=\"G1161\"\\+w* \\+w for|strong=\"G1161\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w cowardly|strong=\"G1169\"\\+w*, unbelieving, sinners,*+ 21:8 TR and NU omit “sinners”* abominable, \\+w murderers|strong=\"G5406\"\\+w*, sexually \\+w immoral|strong=\"G4205\"\\+w*, \\+w sorcerers|strong=\"G5333\"\\+w*,*+ 21:8 The word for “sorcerers” here also includes users of potions and drugs.* \\+w idolaters|strong=\"G1496\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w all|strong=\"G3956\"\\+w* \\+w liars|strong=\"G5571\"\\+w*, \\+w their|strong=\"G2532\"\\+w* \\+w part|strong=\"G3313\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w in|strong=\"G1722\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w lake|strong=\"G3041\"\\+w* \\+w that|strong=\"G3739\"\\+w* \\+w burns|strong=\"G2545\"\\+w* \\+w with|strong=\"G1722\"\\+w* \\+w fire|strong=\"G4442\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w sulfur|strong=\"G2303\"\\+w*, \\+w which|strong=\"G3739\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w the|strong=\"G1722\"\\+w* \\+w second|strong=\"G1208\"\\+w* \\+w death|strong=\"G2288\"\\+w*.”*" + }, + { + "verseNum": 9, + "text": "One|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* angels who|strong=\"G3588\"* had|strong=\"G2192\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* bowls|strong=\"G5357\"* which|strong=\"G3588\"* were|strong=\"G3588\"* loaded with|strong=\"G3326\"* the|strong=\"G2532\"* seven|strong=\"G2033\"* last|strong=\"G2078\"* plagues|strong=\"G4127\"* came|strong=\"G2064\"*, and|strong=\"G2532\"* he|strong=\"G2532\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"*, saying|strong=\"G3004\"*, “Come|strong=\"G2064\"* here|strong=\"G1204\"*. I|strong=\"G1473\"* will|strong=\"G2532\"* show|strong=\"G1166\"* you|strong=\"G4771\"* the|strong=\"G2532\"* bride|strong=\"G3565\"*, the|strong=\"G2532\"* Lamb|strong=\"G3004\"*’s|strong=\"G2192\"* wife|strong=\"G1135\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* carried|strong=\"G2532\"* me|strong=\"G1473\"* away in|strong=\"G1722\"* the|strong=\"G1722\"* Spirit|strong=\"G4151\"* to|strong=\"G2532\"* a|strong=\"G2532\"* great|strong=\"G3173\"* and|strong=\"G2532\"* high|strong=\"G5308\"* mountain|strong=\"G3735\"*, and|strong=\"G2532\"* showed|strong=\"G1166\"* me|strong=\"G1473\"* the|strong=\"G1722\"* holy|strong=\"G4151\"* city|strong=\"G4172\"*, Jerusalem|strong=\"G2419\"*, coming|strong=\"G2597\"* down|strong=\"G2597\"* out|strong=\"G1537\"* of|strong=\"G1537\"* heaven|strong=\"G3772\"* from|strong=\"G1537\"* God|strong=\"G2316\"*," + }, + { + "verseNum": 11, + "text": "having|strong=\"G2192\"* the|strong=\"G3588\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"*. Her|strong=\"G2192\"* light|strong=\"G5458\"* was|strong=\"G3588\"* like|strong=\"G5613\"* a|strong=\"G2192\"* most|strong=\"G2316\"* precious|strong=\"G5093\"* stone|strong=\"G3037\"*, like|strong=\"G5613\"* a|strong=\"G2192\"* jasper|strong=\"G2393\"* stone|strong=\"G3037\"*, clear as|strong=\"G5613\"* crystal|strong=\"G2929\"*;" + }, + { + "verseNum": 12, + "text": "having|strong=\"G2192\"* a|strong=\"G2192\"* great|strong=\"G3173\"* and|strong=\"G2532\"* high|strong=\"G5308\"* wall|strong=\"G5038\"* with|strong=\"G2532\"* twelve|strong=\"G1427\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* at|strong=\"G1909\"* the|strong=\"G2532\"* gates|strong=\"G4440\"* twelve|strong=\"G1427\"* angels, and|strong=\"G2532\"* names|strong=\"G3686\"* written|strong=\"G3686\"* on|strong=\"G1909\"* them|strong=\"G3588\"*, which|strong=\"G3739\"* are|strong=\"G1510\"* the|strong=\"G2532\"* names|strong=\"G3686\"* of|strong=\"G5207\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* tribes|strong=\"G5443\"* of|strong=\"G5207\"* the|strong=\"G2532\"* children|strong=\"G5207\"* of|strong=\"G5207\"* Israel|strong=\"G2474\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"G2532\"* the|strong=\"G2532\"* east were|strong=\"G2532\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* north|strong=\"G1005\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* south|strong=\"G3558\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* on|strong=\"G2532\"* the|strong=\"G2532\"* west|strong=\"G1424\"* three|strong=\"G5140\"* gates|strong=\"G4440\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"G2532\"* wall|strong=\"G5038\"* of|strong=\"G2532\"* the|strong=\"G2532\"* city|strong=\"G4172\"* had|strong=\"G2192\"* twelve|strong=\"G1427\"* foundations|strong=\"G2310\"*, and|strong=\"G2532\"* on|strong=\"G1909\"* them|strong=\"G3588\"* twelve|strong=\"G1427\"* names|strong=\"G3686\"* of|strong=\"G2532\"* the|strong=\"G2532\"* twelve|strong=\"G1427\"* Apostles of|strong=\"G2532\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 15, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* spoke|strong=\"G2980\"* with|strong=\"G3326\"* me|strong=\"G1473\"* had|strong=\"G2192\"* for|strong=\"G2532\"* a|strong=\"G2192\"* measure|strong=\"G3358\"* a|strong=\"G2192\"* golden|strong=\"G5552\"* reed|strong=\"G2563\"* to|strong=\"G2443\"* measure|strong=\"G3358\"* the|strong=\"G2532\"* city|strong=\"G4172\"*, its|strong=\"G3354\"* gates|strong=\"G4440\"*, and|strong=\"G2532\"* its|strong=\"G3354\"* walls|strong=\"G5038\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"G2532\"* city|strong=\"G4172\"* is|strong=\"G1510\"* square|strong=\"G5068\"*. Its|strong=\"G3354\"* length|strong=\"G3372\"* is|strong=\"G1510\"* as|strong=\"G3745\"* great|strong=\"G3745\"* as|strong=\"G3745\"* its|strong=\"G3354\"* width|strong=\"G4114\"*. He|strong=\"G2532\"* measured|strong=\"G3354\"* the|strong=\"G2532\"* city|strong=\"G4172\"* with|strong=\"G2532\"* the|strong=\"G2532\"* reed|strong=\"G2563\"*: twelve|strong=\"G1427\"* thousand|strong=\"G5505\"* twelve|strong=\"G1427\"* stadia.+ 21:16 12,012 stadia = 2,221 kilometers or 1,380 miles. TR reads 12,000 stadia instead of 12,012 stadia.* Its|strong=\"G3354\"* length|strong=\"G3372\"*, width|strong=\"G4114\"*, and|strong=\"G2532\"* height|strong=\"G5311\"* are|strong=\"G1510\"* equal|strong=\"G2470\"*." + }, + { + "verseNum": 17, + "text": "Its|strong=\"G3354\"* wall|strong=\"G5038\"* is|strong=\"G1510\"* one|strong=\"G3739\"* hundred|strong=\"G1540\"* forty-four|strong=\"G5062\"* cubits|strong=\"G4083\"*,+ 21:17 144 cubits is about 65.8 meters or 216 feet* by|strong=\"G2532\"* the|strong=\"G2532\"* measure|strong=\"G3358\"* of|strong=\"G2532\"* a|strong=\"G2532\"* man|strong=\"G3739\"*, that|strong=\"G3739\"* is|strong=\"G1510\"*, of|strong=\"G2532\"* an|strong=\"G2532\"* angel." + }, + { + "verseNum": 18, + "text": "The|strong=\"G2532\"* construction of|strong=\"G2532\"* its wall|strong=\"G5038\"* was|strong=\"G3588\"* jasper|strong=\"G2393\"*. The|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G3588\"* pure|strong=\"G2513\"* gold|strong=\"G5553\"*, like|strong=\"G3664\"* pure|strong=\"G2513\"* glass|strong=\"G5194\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"G3956\"* foundations|strong=\"G2310\"* of|strong=\"G4172\"* the|strong=\"G3956\"* city|strong=\"G4172\"*’s wall|strong=\"G5038\"* were|strong=\"G3588\"* adorned|strong=\"G2885\"* with|strong=\"G2885\"* all|strong=\"G3956\"* kinds|strong=\"G3956\"* of|strong=\"G4172\"* precious|strong=\"G5093\"* stones|strong=\"G3037\"*. The|strong=\"G3956\"* first|strong=\"G4413\"* foundation|strong=\"G2310\"* was|strong=\"G3588\"* jasper|strong=\"G2393\"*, the|strong=\"G3956\"* second|strong=\"G1208\"* sapphire|strong=\"G4552\"*,+ 21:19 or, lapis lazuli* the|strong=\"G3956\"* third|strong=\"G5154\"* chalcedony|strong=\"G5472\"*, the|strong=\"G3956\"* fourth|strong=\"G5067\"* emerald|strong=\"G4665\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"G3588\"* fifth|strong=\"G3991\"* sardonyx|strong=\"G4557\"*, the|strong=\"G3588\"* sixth|strong=\"G1623\"* sardius|strong=\"G4556\"*, the|strong=\"G3588\"* seventh|strong=\"G1442\"* chrysolite|strong=\"G5555\"*, the|strong=\"G3588\"* eighth|strong=\"G3590\"* beryl, the|strong=\"G3588\"* ninth|strong=\"G1766\"* topaz|strong=\"G5116\"*, the|strong=\"G3588\"* tenth|strong=\"G1182\"* chrysoprase|strong=\"G5556\"*, the|strong=\"G3588\"* eleventh|strong=\"G1734\"* jacinth|strong=\"G5192\"*, and|strong=\"G3588\"* the|strong=\"G3588\"* twelfth|strong=\"G1428\"* amethyst." + }, + { + "verseNum": 21, + "text": "The|strong=\"G2532\"* twelve|strong=\"G1427\"* gates|strong=\"G4440\"* were|strong=\"G1510\"* twelve|strong=\"G1427\"* pearls|strong=\"G3135\"*. Each|strong=\"G1538\"* one|strong=\"G1520\"* of|strong=\"G1537\"* the|strong=\"G2532\"* gates|strong=\"G4440\"* was|strong=\"G1510\"* made of|strong=\"G1537\"* one|strong=\"G1520\"* pearl|strong=\"G3135\"*. The|strong=\"G2532\"* street|strong=\"G4113\"* of|strong=\"G1537\"* the|strong=\"G2532\"* city|strong=\"G4172\"* was|strong=\"G1510\"* pure|strong=\"G2513\"* gold|strong=\"G5553\"*, like|strong=\"G5613\"* transparent|strong=\"G1306\"* glass|strong=\"G5194\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"G2532\"* saw|strong=\"G3708\"* no|strong=\"G3756\"* temple|strong=\"G3485\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, for|strong=\"G1063\"* the|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* the|strong=\"G1722\"* Almighty|strong=\"G3841\"* and|strong=\"G2532\"* the|strong=\"G1722\"* Lamb are|strong=\"G1510\"* its temple|strong=\"G3485\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"G2532\"* city|strong=\"G4172\"* has|strong=\"G2192\"* no|strong=\"G3756\"* need|strong=\"G5532\"* for|strong=\"G1063\"* the|strong=\"G2532\"* sun|strong=\"G2246\"* or|strong=\"G2532\"* moon|strong=\"G4582\"* to|strong=\"G2443\"* shine|strong=\"G5316\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* very|strong=\"G2532\"* glory|strong=\"G1391\"* of|strong=\"G2316\"* God|strong=\"G2316\"* illuminated|strong=\"G5461\"* it|strong=\"G2532\"* and|strong=\"G2532\"* its lamp|strong=\"G3088\"* is|strong=\"G3588\"* the|strong=\"G2532\"* Lamb." + }, + { + "verseNum": 24, + "text": "The|strong=\"G2532\"* nations|strong=\"G1484\"* will|strong=\"G2532\"* walk|strong=\"G4043\"* in|strong=\"G1519\"* its|strong=\"G1223\"* light|strong=\"G5457\"*. The|strong=\"G2532\"* kings|strong=\"G3588\"* of|strong=\"G1223\"* the|strong=\"G2532\"* earth|strong=\"G1093\"* bring|strong=\"G5342\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* honor|strong=\"G1391\"* of|strong=\"G1223\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* into|strong=\"G1519\"* it|strong=\"G2532\"*." + }, + { + "verseNum": 25, + "text": "Its gates|strong=\"G4440\"* will|strong=\"G1510\"* in|strong=\"G2532\"* no|strong=\"G3756\"* way be|strong=\"G1510\"* shut|strong=\"G2808\"* by|strong=\"G2532\"* day|strong=\"G2250\"* (for|strong=\"G1063\"* there|strong=\"G1563\"* will|strong=\"G1510\"* be|strong=\"G1510\"* no|strong=\"G3756\"* night|strong=\"G3571\"* there|strong=\"G1563\"*)," + }, + { + "verseNum": 26, + "text": "and|strong=\"G2532\"* they|strong=\"G2532\"* shall|strong=\"G2532\"* bring|strong=\"G5342\"* the|strong=\"G2532\"* glory|strong=\"G1391\"* and|strong=\"G2532\"* the|strong=\"G2532\"* honor|strong=\"G5092\"* of|strong=\"G2532\"* the|strong=\"G2532\"* nations|strong=\"G1484\"* into|strong=\"G1519\"* it|strong=\"G2532\"* so|strong=\"G2532\"* that|strong=\"G3588\"* they|strong=\"G2532\"* may|strong=\"G2532\"* enter|strong=\"G1519\"*." + }, + { + "verseNum": 27, + "text": "There|strong=\"G2532\"* will|strong=\"G2532\"* in|strong=\"G1722\"* no|strong=\"G3756\"* way|strong=\"G1722\"* enter|strong=\"G1525\"* into|strong=\"G1519\"* it|strong=\"G2532\"* anything|strong=\"G3956\"* profane, or|strong=\"G2532\"* one|strong=\"G3956\"* who|strong=\"G3588\"* causes|strong=\"G4160\"* an|strong=\"G2532\"* abomination or|strong=\"G2532\"* a|strong=\"G2532\"* lie|strong=\"G5579\"*, but|strong=\"G2532\"* only|strong=\"G1487\"* those|strong=\"G3588\"* who|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* the|strong=\"G1722\"* Lamb’s book|strong=\"G3588\"* of|strong=\"G2532\"* life|strong=\"G2222\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"G2532\"* showed|strong=\"G1166\"* me|strong=\"G1473\"* a|strong=\"G5613\"*+ 22:1 TR adds “pure”* river|strong=\"G4215\"* of|strong=\"G1537\"* water|strong=\"G5204\"* of|strong=\"G1537\"* life|strong=\"G2222\"*, clear|strong=\"G2986\"* as|strong=\"G5613\"* crystal|strong=\"G2930\"*, proceeding|strong=\"G1607\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G2532\"* throne|strong=\"G2362\"* of|strong=\"G1537\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G1537\"* the|strong=\"G2532\"* Lamb," + }, + { + "verseNum": 2, + "text": "in|strong=\"G1722\"* the|strong=\"G1722\"* middle|strong=\"G3319\"* of|strong=\"G2532\"* its|strong=\"G3586\"* street|strong=\"G4113\"*. On|strong=\"G1722\"* this|strong=\"G3588\"* side|strong=\"G1782\"* of|strong=\"G2532\"* the|strong=\"G1722\"* river|strong=\"G4215\"* and|strong=\"G2532\"* on|strong=\"G1722\"* that|strong=\"G3588\"* was|strong=\"G3588\"* the|strong=\"G1722\"* tree|strong=\"G3586\"* of|strong=\"G2532\"* life|strong=\"G2222\"*, bearing|strong=\"G4160\"* twelve|strong=\"G1427\"* kinds|strong=\"G2590\"* of|strong=\"G2532\"* fruits|strong=\"G2590\"*, yielding|strong=\"G4160\"* its|strong=\"G3586\"* fruit|strong=\"G2590\"* every|strong=\"G2596\"* month|strong=\"G3376\"*. The|strong=\"G1722\"* leaves|strong=\"G5444\"* of|strong=\"G2532\"* the|strong=\"G1722\"* tree|strong=\"G3586\"* were|strong=\"G3588\"* for|strong=\"G1519\"* the|strong=\"G1722\"* healing|strong=\"G2322\"* of|strong=\"G2532\"* the|strong=\"G1722\"* nations|strong=\"G1484\"*." + }, + { + "verseNum": 3, + "text": "There|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* no|strong=\"G3756\"* curse|strong=\"G2652\"* any|strong=\"G3956\"* more|strong=\"G2089\"*. The|strong=\"G1722\"* throne|strong=\"G2362\"* of|strong=\"G2316\"* God|strong=\"G2316\"* and|strong=\"G2532\"* of|strong=\"G2316\"* the|strong=\"G1722\"* Lamb will|strong=\"G2316\"* be|strong=\"G1510\"* in|strong=\"G1722\"* it|strong=\"G2532\"*, and|strong=\"G2532\"* his|strong=\"G3956\"* servants|strong=\"G1401\"* will|strong=\"G2316\"* serve|strong=\"G3000\"* him|strong=\"G3588\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"G2532\"* will|strong=\"G2532\"* see|strong=\"G3708\"* his|strong=\"G1909\"* face|strong=\"G4383\"*, and|strong=\"G2532\"* his|strong=\"G1909\"* name|strong=\"G3686\"* will|strong=\"G2532\"* be|strong=\"G2532\"* on|strong=\"G1909\"* their|strong=\"G2532\"* foreheads|strong=\"G3359\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"G2532\"* will|strong=\"G2316\"* be|strong=\"G1510\"* no|strong=\"G3756\"* night|strong=\"G3571\"*, and|strong=\"G2532\"* they|strong=\"G2532\"* need|strong=\"G5532\"* no|strong=\"G3756\"* lamp|strong=\"G3088\"* light|strong=\"G5457\"* or|strong=\"G2532\"* sun|strong=\"G2246\"* light|strong=\"G5457\"*; for|strong=\"G3754\"* the|strong=\"G2532\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* will|strong=\"G2316\"* illuminate them|strong=\"G3588\"*. They|strong=\"G2532\"* will|strong=\"G2316\"* reign|strong=\"G2532\"* forever|strong=\"G1519\"* and|strong=\"G2532\"* ever|strong=\"G3756\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “These|strong=\"G3778\"* words|strong=\"G3056\"* are|strong=\"G3588\"* faithful|strong=\"G4103\"* and|strong=\"G2532\"* true|strong=\"G4103\"*. The|strong=\"G1722\"* Lord|strong=\"G2962\"* God|strong=\"G2316\"* of|strong=\"G3056\"* the|strong=\"G1722\"* spirits|strong=\"G4151\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophets|strong=\"G4396\"* sent|strong=\"G2316\"* his|strong=\"G1722\"* angel to|strong=\"G2532\"* show|strong=\"G1166\"* to|strong=\"G2532\"* his|strong=\"G1722\"* bondservants the|strong=\"G1722\"* things|strong=\"G3778\"* which|strong=\"G3739\"* must|strong=\"G1163\"* happen|strong=\"G1096\"* soon|strong=\"G5034\"*.”" + }, + { + "verseNum": 7, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G2532\"\\+w* \\+w am|strong=\"G2532\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*! \\+w Blessed|strong=\"G3107\"\\+w* \\+w is|strong=\"G3588\"\\+w* \\+w he|strong=\"G2532\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w keeps|strong=\"G5083\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w words|strong=\"G3056\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w prophecy|strong=\"G4394\"\\+w* \\+w of|strong=\"G3056\"\\+w* \\+w this|strong=\"G3778\"\\+w* \\+w book|strong=\"G3588\"\\+w*.”*" + }, + { + "verseNum": 8, + "text": "Now|strong=\"G2532\"* I|strong=\"G1473\"*, John|strong=\"G2491\"*, am|strong=\"G1473\"* the|strong=\"G2532\"* one|strong=\"G3588\"* who|strong=\"G3588\"* heard and|strong=\"G2532\"* saw these|strong=\"G3778\"* things|strong=\"G3778\"*. When|strong=\"G3753\"* I|strong=\"G1473\"* heard and|strong=\"G2532\"* saw, I|strong=\"G1473\"* fell|strong=\"G4098\"* down|strong=\"G4098\"* to|strong=\"G2532\"* worship|strong=\"G4352\"* before|strong=\"G1715\"* the|strong=\"G2532\"* feet|strong=\"G4228\"* of|strong=\"G2532\"* the|strong=\"G2532\"* angel who|strong=\"G3588\"* had|strong=\"G2532\"* shown|strong=\"G1166\"* me|strong=\"G1473\"* these|strong=\"G3778\"* things|strong=\"G3778\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “You|strong=\"G4771\"* must|strong=\"G1510\"* not|strong=\"G3361\"* do|strong=\"G2532\"* that|strong=\"G3588\"*! I|strong=\"G1473\"* am|strong=\"G1510\"* a|strong=\"G2532\"* fellow|strong=\"G4889\"* bondservant with|strong=\"G2532\"* you|strong=\"G4771\"* and|strong=\"G2532\"* with|strong=\"G2532\"* your|strong=\"G2532\"* brothers, the|strong=\"G2532\"* prophets|strong=\"G4396\"*, and|strong=\"G2532\"* with|strong=\"G2532\"* those|strong=\"G3588\"* who|strong=\"G3588\"* keep|strong=\"G5083\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*. Worship|strong=\"G4352\"* God|strong=\"G2316\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"G2532\"* said|strong=\"G3004\"* to|strong=\"G2532\"* me|strong=\"G1473\"*, “Don’t|strong=\"G3588\"* seal|strong=\"G4972\"* up|strong=\"G4972\"* the|strong=\"G2532\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G2532\"* prophecy|strong=\"G4394\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*, for|strong=\"G1063\"* the|strong=\"G2532\"* time|strong=\"G2540\"* is|strong=\"G1510\"* at|strong=\"G3588\"* hand|strong=\"G1451\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"G2532\"* who|strong=\"G3588\"* acts|strong=\"G4160\"* unjustly, let|strong=\"G2532\"* him|strong=\"G3588\"* act|strong=\"G4160\"* unjustly still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* filthy|strong=\"G4510\"*, let|strong=\"G2532\"* him|strong=\"G3588\"* be|strong=\"G2532\"* filthy|strong=\"G4510\"* still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* righteous|strong=\"G1342\"*, let|strong=\"G2532\"* him|strong=\"G3588\"* do|strong=\"G4160\"* righteousness|strong=\"G1343\"* still|strong=\"G2089\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* holy, let|strong=\"G2532\"* him|strong=\"G3588\"* be|strong=\"G2532\"* holy still|strong=\"G2089\"*.”" + }, + { + "verseNum": 12, + "text": "“\\+w Behold|strong=\"G2400\"\\+w*, \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*! \\+w My|strong=\"G3708\"\\+w* \\+w reward|strong=\"G3408\"\\+w* \\+w is|strong=\"G1510\"\\+w* \\+w with|strong=\"G3326\"\\+w* \\+w me|strong=\"G1473\"\\+w*, \\+w to|strong=\"G2532\"\\+w* repay \\+w to|strong=\"G2532\"\\+w* \\+w each|strong=\"G1538\"\\+w* \\+w man|strong=\"G1538\"\\+w* \\+w according|strong=\"G1538\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w his|strong=\"G3708\"\\+w* \\+w work|strong=\"G2041\"\\+w*. *" + }, + { + "verseNum": 13, + "text": "\\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1473\"\\+w* \\+w the|strong=\"G2532\"\\+w* Alpha \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Omega|strong=\"G5598\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w First|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w Last|strong=\"G2078\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Beginning|strong=\"G4413\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w End|strong=\"G5056\"\\+w*. *" + }, + { + "verseNum": 14, + "text": "\\+w Blessed|strong=\"G3107\"\\+w* \\+w are|strong=\"G1510\"\\+w* \\+w those|strong=\"G3588\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w do|strong=\"G2532\"\\+w* \\+w his|strong=\"G1519\"\\+w* commandments,*+ 22:14 NU reads “wash their robes” instead of “do his commandments”.* \\+w that|strong=\"G2443\"\\+w* \\+w they|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w have|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w right|strong=\"G1849\"\\+w* \\+w to|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w tree|strong=\"G3586\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w life|strong=\"G2222\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w may|strong=\"G2532\"\\+w* \\+w enter|strong=\"G1525\"\\+w* \\+w in|strong=\"G1519\"\\+w* \\+w by|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w gates|strong=\"G4440\"\\+w* \\+w into|strong=\"G1519\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w city|strong=\"G4172\"\\+w*. *" + }, + { + "verseNum": 15, + "text": "\\+w Outside|strong=\"G1854\"\\+w* \\+w are|strong=\"G3588\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w dogs|strong=\"G2965\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w sorcerers|strong=\"G5333\"\\+w*, \\+w the|strong=\"G2532\"\\+w* sexually \\+w immoral|strong=\"G4205\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w murderers|strong=\"G5406\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w idolaters|strong=\"G1496\"\\+w*, \\+w and|strong=\"G2532\"\\+w* \\+w everyone|strong=\"G3956\"\\+w* \\+w who|strong=\"G3588\"\\+w* \\+w loves|strong=\"G5368\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w practices|strong=\"G4160\"\\+w* \\+w falsehood|strong=\"G5579\"\\+w*. *" + }, + { + "verseNum": 16, + "text": "\\+w I|strong=\"G1473\"\\+w*, \\+w Jesus|strong=\"G2424\"\\+w*, \\+w have|strong=\"G2532\"\\+w* \\+w sent|strong=\"G3992\"\\+w* \\+w my|strong=\"G1473\"\\+w* angel \\+w to|strong=\"G2532\"\\+w* \\+w testify|strong=\"G3140\"\\+w* \\+w these|strong=\"G3778\"\\+w* \\+w things|strong=\"G3778\"\\+w* \\+w to|strong=\"G2532\"\\+w* \\+w you|strong=\"G5210\"\\+w* \\+w for|strong=\"G1909\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w assemblies|strong=\"G1577\"\\+w*. \\+w I|strong=\"G1473\"\\+w* \\+w am|strong=\"G1510\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w root|strong=\"G4491\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w the|strong=\"G2532\"\\+w* \\+w offspring|strong=\"G1085\"\\+w* \\+w of|strong=\"G2532\"\\+w* \\+w David|strong=\"G1138\"\\+w*, \\+w the|strong=\"G2532\"\\+w* \\+w Bright|strong=\"G2986\"\\+w* \\+w and|strong=\"G2532\"\\+w* \\+w Morning|strong=\"G4407\"\\+w* Star.”*" + }, + { + "verseNum": 17, + "text": "The|strong=\"G2532\"* Spirit|strong=\"G4151\"* and|strong=\"G2532\"* the|strong=\"G2532\"* bride|strong=\"G3565\"* say|strong=\"G3004\"*, “Come|strong=\"G2064\"*!” He|strong=\"G2532\"* who|strong=\"G3588\"* hears, let|strong=\"G2983\"* him|strong=\"G3588\"* say|strong=\"G3004\"*, “Come|strong=\"G2064\"*!” He|strong=\"G2532\"* who|strong=\"G3588\"* is|strong=\"G3588\"* thirsty|strong=\"G1372\"*, let|strong=\"G2983\"* him|strong=\"G3588\"* come|strong=\"G2064\"*. He|strong=\"G2532\"* who|strong=\"G3588\"* desires|strong=\"G2309\"*, let|strong=\"G2983\"* him|strong=\"G3588\"* take|strong=\"G2983\"* the|strong=\"G2532\"* water|strong=\"G5204\"* of|strong=\"G4151\"* life|strong=\"G2222\"* freely|strong=\"G1432\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"G1473\"* testify|strong=\"G3140\"* to|strong=\"G1909\"* everyone|strong=\"G3956\"* who|strong=\"G3588\"* hears the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G3056\"* the|strong=\"G1722\"* prophecy|strong=\"G4394\"* of|strong=\"G3056\"* this|strong=\"G3778\"* book|strong=\"G3588\"*: if|strong=\"G1437\"* anyone|strong=\"G5100\"* adds|strong=\"G2007\"* to|strong=\"G1909\"* them|strong=\"G3588\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* add|strong=\"G2007\"* to|strong=\"G1909\"* him|strong=\"G3588\"* the|strong=\"G1722\"* plagues|strong=\"G4127\"* which|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"G1437\"* anyone|strong=\"G5100\"* takes away from|strong=\"G1537\"* the|strong=\"G1722\"* words|strong=\"G3056\"* of|strong=\"G1537\"* the|strong=\"G1722\"* book|strong=\"G3588\"* of|strong=\"G1537\"* this|strong=\"G3778\"* prophecy|strong=\"G4394\"*, God|strong=\"G2316\"* will|strong=\"G2316\"* take|strong=\"G2316\"* away his|strong=\"G1722\"* part|strong=\"G3313\"* from|strong=\"G1537\"* the|strong=\"G1722\"* tree|strong=\"G3586\"*+ 22:19 TR reads “Book” instead of “tree”* of|strong=\"G1537\"* life|strong=\"G2222\"*, and|strong=\"G2532\"* out|strong=\"G1537\"* of|strong=\"G1537\"* the|strong=\"G1722\"* holy city|strong=\"G4172\"*, which|strong=\"G3588\"* are|strong=\"G3588\"* written|strong=\"G1125\"* in|strong=\"G1722\"* this|strong=\"G3778\"* book|strong=\"G3588\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"G3778\"* who|strong=\"G3588\"* testifies|strong=\"G3140\"* these|strong=\"G3778\"* things|strong=\"G3778\"* says|strong=\"G3004\"*, “\\+w Yes|strong=\"G3483\"\\+w*, \\+w I|strong=\"G3778\"\\+w* \\+w am|strong=\"G3588\"\\+w* \\+w coming|strong=\"G2064\"\\+w* \\+w soon|strong=\"G5035\"\\+w*.” *" + }, + { + "verseNum": 21, + "text": "The|strong=\"G3956\"* grace|strong=\"G5485\"* of|strong=\"G5485\"* the|strong=\"G3956\"* Lord|strong=\"G2962\"* Jesus|strong=\"G2424\"* Christ|strong=\"G2962\"* be|strong=\"G3956\"* with|strong=\"G3326\"* all|strong=\"G3956\"* the|strong=\"G3956\"* saints. Amen." + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/data/en_bible/WEB/old_testament.json b/data/en_bible/WEB/old_testament.json new file mode 100644 index 0000000..e456c2f --- /dev/null +++ b/data/en_bible/WEB/old_testament.json @@ -0,0 +1,97425 @@ +{ + "testament": "Old Testament", + "books": [ + { + "name": "Genesis", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8064\"* the|strong=\"H1254\"* beginning|strong=\"H7225\"*, God|strong=\"H8064\"*+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* created|strong=\"H1254\"* the|strong=\"H1254\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H1254\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* earth was|strong=\"H1961\"* formless|strong=\"H8414\"* and|strong=\"H6440\"* empty|strong=\"H8414\"*. Darkness|strong=\"H2822\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* deep|strong=\"H8415\"* and|strong=\"H6440\"* God’s Spirit|strong=\"H7307\"* was|strong=\"H1961\"* hovering|strong=\"H7363\"* over|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 3, + "text": "God said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* light,” and|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* light." + }, + { + "verseNum": 4, + "text": "God saw|strong=\"H7200\"* the|strong=\"H7200\"* light, and|strong=\"H7200\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H2896\"* good|strong=\"H2896\"*. God divided the|strong=\"H7200\"* light from|strong=\"H7200\"* the|strong=\"H7200\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "God called|strong=\"H7121\"* the|strong=\"H3117\"* light “day|strong=\"H3117\"*”, and|strong=\"H3117\"* the|strong=\"H3117\"* darkness|strong=\"H2822\"* he|strong=\"H3117\"* called|strong=\"H7121\"* “night|strong=\"H3915\"*”. There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, the|strong=\"H3117\"* first|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "God said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* expanse|strong=\"H7549\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4325\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* let|strong=\"H1961\"* it|strong=\"H8432\"* divide the|strong=\"H8432\"* waters|strong=\"H4325\"* from|strong=\"H1961\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*.”" + }, + { + "verseNum": 7, + "text": "God made|strong=\"H6213\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"*, and|strong=\"H6213\"* divided the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H4325\"* were|strong=\"H1961\"* under|strong=\"H8478\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* from|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H4325\"* were|strong=\"H1961\"* above|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"*; and|strong=\"H6213\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 8, + "text": "God|strong=\"H8064\"* called|strong=\"H7121\"* the|strong=\"H3117\"* expanse|strong=\"H7549\"* “sky|strong=\"H8064\"*”. There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* second|strong=\"H8145\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"H8064\"* said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sky|strong=\"H8064\"* be|strong=\"H1961\"* gathered|strong=\"H6960\"* together|strong=\"H6960\"* to|strong=\"H1961\"* one|strong=\"H1961\"* place|strong=\"H4725\"*, and|strong=\"H8064\"* let|strong=\"H3651\"* the|strong=\"H7200\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* appear|strong=\"H7200\"*;” and|strong=\"H8064\"* it|strong=\"H3651\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 10, + "text": "God called|strong=\"H7121\"* the|strong=\"H7200\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* “earth”, and|strong=\"H7200\"* the|strong=\"H7200\"* gathering|strong=\"H4723\"* together|strong=\"H7121\"* of|strong=\"H4325\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* he|strong=\"H3588\"* called|strong=\"H7121\"* “seas|strong=\"H3220\"*”. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H7121\"* was|strong=\"H4325\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 11, + "text": "God said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H5921\"* earth yield|strong=\"H6213\"* grass|strong=\"H6212\"*, herbs|strong=\"H6212\"* yielding|strong=\"H2232\"* seeds|strong=\"H2233\"*, and|strong=\"H6086\"* fruit|strong=\"H6529\"* trees|strong=\"H6086\"* bearing|strong=\"H6213\"* fruit|strong=\"H6529\"* after|strong=\"H5921\"* their|strong=\"H5921\"* kind|strong=\"H4327\"*, with|strong=\"H6213\"* their|strong=\"H5921\"* seeds|strong=\"H2233\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* earth;” and|strong=\"H6086\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* earth yielded|strong=\"H2232\"* grass|strong=\"H6212\"*, herbs|strong=\"H6212\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"* after|strong=\"H2233\"* their|strong=\"H7200\"* kind|strong=\"H4327\"*, and|strong=\"H6086\"* trees|strong=\"H6086\"* bearing|strong=\"H6213\"* fruit|strong=\"H6529\"*, with|strong=\"H6213\"* their|strong=\"H7200\"* seeds|strong=\"H2233\"* in|strong=\"H6213\"* it|strong=\"H3588\"*, after|strong=\"H2233\"* their|strong=\"H7200\"* kind|strong=\"H4327\"*; and|strong=\"H6086\"* God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H6086\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* third|strong=\"H7992\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H8064\"* said, “Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* lights|strong=\"H3974\"* in|strong=\"H8141\"* the|strong=\"H3117\"* expanse|strong=\"H7549\"* of|strong=\"H3117\"* the|strong=\"H3117\"* sky|strong=\"H8064\"* to|strong=\"H1961\"* divide the|strong=\"H3117\"* day|strong=\"H3117\"* from|strong=\"H3117\"* the|strong=\"H3117\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* signs to|strong=\"H1961\"* mark seasons|strong=\"H4150\"*, days|strong=\"H3117\"*, and|strong=\"H3117\"* years|strong=\"H8141\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H8064\"* let|strong=\"H3651\"* them|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* lights|strong=\"H3974\"* in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H1961\"* give|strong=\"H1961\"* light|strong=\"H3974\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*;” and|strong=\"H8064\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 16, + "text": "God made|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* great|strong=\"H1419\"* lights|strong=\"H3974\"*: the|strong=\"H6213\"* greater|strong=\"H1419\"* light|strong=\"H3974\"* to|strong=\"H6213\"* rule|strong=\"H4475\"* the|strong=\"H6213\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* lesser|strong=\"H6996\"* light|strong=\"H3974\"* to|strong=\"H6213\"* rule|strong=\"H4475\"* the|strong=\"H6213\"* night|strong=\"H3915\"*. He|strong=\"H3117\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* stars|strong=\"H3556\"*." + }, + { + "verseNum": 17, + "text": "God|strong=\"H5414\"* set|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H5921\"* give|strong=\"H5414\"* light to|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3117\"* to|strong=\"H3117\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H7200\"* day|strong=\"H3117\"* and|strong=\"H3117\"* over|strong=\"H4910\"* the|strong=\"H7200\"* night|strong=\"H3915\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* divide the|strong=\"H7200\"* light from|strong=\"H3117\"* the|strong=\"H7200\"* darkness|strong=\"H2822\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3117\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "God|strong=\"H8064\"* said, “Let|strong=\"H5315\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* abound|strong=\"H8317\"* with|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, and|strong=\"H8064\"* let|strong=\"H5315\"* birds|strong=\"H5775\"* fly|strong=\"H5774\"* above|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* expanse|strong=\"H7549\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*.”" + }, + { + "verseNum": 21, + "text": "God created|strong=\"H1254\"* the|strong=\"H3605\"* large|strong=\"H1419\"* sea|strong=\"H8577\"* creatures|strong=\"H2416\"* and|strong=\"H1419\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3588\"* moves|strong=\"H7430\"*, with|strong=\"H5315\"* which|strong=\"H4325\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* swarmed|strong=\"H8317\"*, after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H1419\"* every|strong=\"H3605\"* winged|strong=\"H3671\"* bird|strong=\"H5775\"* after|strong=\"H3588\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H5315\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 22, + "text": "God blessed|strong=\"H1288\"* them|strong=\"H1288\"*, saying, “Be|strong=\"H1288\"* fruitful|strong=\"H6509\"*, and|strong=\"H6509\"* multiply|strong=\"H7235\"*, and|strong=\"H6509\"* fill|strong=\"H4390\"* the|strong=\"H1288\"* waters|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H1288\"* seas|strong=\"H3220\"*, and|strong=\"H6509\"* let birds|strong=\"H5775\"* multiply|strong=\"H7235\"* on|strong=\"H3220\"* the|strong=\"H1288\"* earth.”" + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "God said|strong=\"H3651\"*, “Let|strong=\"H3651\"* the|strong=\"H3318\"* earth produce|strong=\"H1961\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* after|strong=\"H1961\"* their|strong=\"H1961\"* kind|strong=\"H4327\"*, livestock, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H3318\"* animals|strong=\"H2416\"* of|strong=\"H3318\"* the|strong=\"H3318\"* earth after|strong=\"H1961\"* their|strong=\"H1961\"* kind|strong=\"H4327\"*;” and|strong=\"H3318\"* it|strong=\"H3651\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 25, + "text": "God made|strong=\"H6213\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H7200\"* the|strong=\"H3605\"* livestock after|strong=\"H3588\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H7200\"* everything|strong=\"H3605\"* that|strong=\"H3588\"* creeps|strong=\"H7431\"* on|strong=\"H7200\"* the|strong=\"H3605\"* ground after|strong=\"H3588\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*. God saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3605\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 26, + "text": "God|strong=\"H8064\"* said, “Let’s make|strong=\"H6213\"* man|strong=\"H3605\"* in|strong=\"H5921\"* our|strong=\"H3605\"* image|strong=\"H6754\"*, after|strong=\"H5921\"* our|strong=\"H3605\"* likeness|strong=\"H1823\"*. Let them|strong=\"H5921\"* have|strong=\"H3605\"* dominion|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H3605\"* fish|strong=\"H1710\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* the|strong=\"H3605\"* livestock, and|strong=\"H8064\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 27, + "text": "God created|strong=\"H1254\"* man|strong=\"H2145\"* in|strong=\"H2145\"* his own image|strong=\"H6754\"*. In|strong=\"H2145\"* God’s image|strong=\"H6754\"* he|strong=\"H5347\"* created|strong=\"H1254\"* him|strong=\"H2145\"*; male|strong=\"H2145\"* and|strong=\"H2145\"* female|strong=\"H5347\"* he|strong=\"H5347\"* created|strong=\"H1254\"* them|strong=\"H1254\"*." + }, + { + "verseNum": 28, + "text": "God|strong=\"H8064\"* blessed|strong=\"H1288\"* them|strong=\"H5921\"*. God|strong=\"H8064\"* said to|strong=\"H5921\"* them|strong=\"H5921\"*, “Be|strong=\"H1288\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"*, fill|strong=\"H4390\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* subdue|strong=\"H3533\"* it|strong=\"H5921\"*. Have|strong=\"H3605\"* dominion|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H3605\"* fish|strong=\"H1710\"* of|strong=\"H4390\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H4390\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* over|strong=\"H5921\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 29, + "text": "God|strong=\"H5414\"* said, “Behold|strong=\"H2009\"*,+ 1:29 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* you|strong=\"H5414\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"*, which|strong=\"H6086\"* is|strong=\"H2009\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, and|strong=\"H6086\"* every|strong=\"H3605\"* tree|strong=\"H6086\"*, which|strong=\"H6086\"* bears fruit|strong=\"H6529\"* yielding|strong=\"H2232\"* seed|strong=\"H2233\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* food." + }, + { + "verseNum": 30, + "text": "To|strong=\"H1961\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, in|strong=\"H5921\"* which|strong=\"H2416\"* there|strong=\"H1961\"* is|strong=\"H5315\"* life|strong=\"H5315\"*, I|strong=\"H5921\"* have|strong=\"H1961\"* given every|strong=\"H3605\"* green|strong=\"H3418\"* herb|strong=\"H6212\"* for|strong=\"H5921\"* food;” and|strong=\"H8064\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 31, + "text": "God saw|strong=\"H7200\"* everything|strong=\"H3605\"* that|strong=\"H7200\"* he|strong=\"H3117\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H3117\"*, behold|strong=\"H2009\"*, it|strong=\"H6213\"* was|strong=\"H1961\"* very|strong=\"H3966\"* good|strong=\"H2896\"*. There|strong=\"H2009\"* was|strong=\"H1961\"* evening|strong=\"H6153\"* and|strong=\"H3117\"* there|strong=\"H2009\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, a|strong=\"H3068\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* heavens|strong=\"H8064\"*, the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* their|strong=\"H3605\"* vast|strong=\"H6635\"* array|strong=\"H6635\"* were|strong=\"H8064\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* God finished|strong=\"H3615\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H4399\"* he|strong=\"H3117\"* had|strong=\"H4399\"* done|strong=\"H6213\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* rested|strong=\"H7673\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* from|strong=\"H3117\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H4399\"* he|strong=\"H3117\"* had|strong=\"H4399\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "God blessed|strong=\"H1288\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H3588\"* holy|strong=\"H6942\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* rested|strong=\"H7673\"* in|strong=\"H6213\"* it|strong=\"H3588\"* from|strong=\"H3117\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3117\"* creation|strong=\"H1254\"* which|strong=\"H4399\"* he|strong=\"H3588\"* had|strong=\"H3588\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H6213\"* is|strong=\"H3068\"* the|strong=\"H6213\"* history|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H6213\"* generations|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* when|strong=\"H3117\"* they|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*, in|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"*+ 2:4 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* God|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* plant|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* was|strong=\"H3068\"* yet|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H3068\"* no|strong=\"H3808\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* had|strong=\"H3068\"* yet|strong=\"H3588\"* sprung|strong=\"H6779\"* up|strong=\"H6779\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* caused|strong=\"H1961\"* it|strong=\"H5921\"* to|strong=\"H3068\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth. There|strong=\"H1961\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* to|strong=\"H3068\"* till|strong=\"H5647\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"H3605\"* a|strong=\"H3068\"* mist went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth|strong=\"H5927\"*, and|strong=\"H6440\"* watered|strong=\"H8248\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* formed|strong=\"H3335\"* man|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H3068\"* dust|strong=\"H6083\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ground|strong=\"H6083\"*, and|strong=\"H3068\"* breathed|strong=\"H5397\"* into|strong=\"H1961\"* his|strong=\"H3068\"* nostrils the|strong=\"H3068\"* breath|strong=\"H5397\"* of|strong=\"H3068\"* life|strong=\"H5315\"*; and|strong=\"H3068\"* man|strong=\"H5315\"* became|strong=\"H1961\"* a|strong=\"H3068\"* living|strong=\"H2416\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* eastward|strong=\"H6924\"*, in|strong=\"H3068\"* Eden|strong=\"H5731\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* put|strong=\"H7760\"* the|strong=\"H3068\"* man whom he|strong=\"H8033\"* had|strong=\"H3068\"* formed|strong=\"H3335\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H6779\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* to|strong=\"H3068\"* grow|strong=\"H6779\"* that|strong=\"H3605\"* is|strong=\"H3068\"* pleasant|strong=\"H2896\"* to|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H4758\"*, and|strong=\"H3068\"* good|strong=\"H2896\"* for|strong=\"H3068\"* food|strong=\"H3978\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* life|strong=\"H2416\"* in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* and|strong=\"H3068\"* the|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* knowledge|strong=\"H1847\"* of|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3068\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* river|strong=\"H5104\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H7218\"* Eden|strong=\"H5731\"* to|strong=\"H3318\"* water|strong=\"H8248\"* the|strong=\"H3318\"* garden|strong=\"H1588\"*; and|strong=\"H7218\"* from|strong=\"H3318\"* there|strong=\"H8033\"* it|strong=\"H8033\"* was|strong=\"H1961\"* parted|strong=\"H6504\"*, and|strong=\"H7218\"* became|strong=\"H1961\"* the|strong=\"H3318\"* source of|strong=\"H7218\"* four rivers|strong=\"H5104\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3605\"* first is|strong=\"H1931\"* Pishon|strong=\"H6376\"*: it|strong=\"H1931\"* flows|strong=\"H5437\"* through|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land of|strong=\"H8034\"* Havilah|strong=\"H2341\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* is|strong=\"H1931\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H2091\"* the|strong=\"H8033\"* gold|strong=\"H2091\"* of|strong=\"H2091\"* that|strong=\"H1931\"* land is|strong=\"H1931\"* good|strong=\"H2896\"*. Bdellium+ 2:12 or, aromatic resin* and|strong=\"H2091\"* onyx|strong=\"H7718\"* stone are|strong=\"H2896\"* also|strong=\"H1931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3605\"* second|strong=\"H8145\"* river|strong=\"H5104\"* is|strong=\"H1931\"* Gihon|strong=\"H1521\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* same|strong=\"H1931\"* river|strong=\"H5104\"* that|strong=\"H3605\"* flows|strong=\"H5437\"* through|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land of|strong=\"H8034\"* Cush|strong=\"H3568\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1980\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1980\"* third|strong=\"H7992\"* river|strong=\"H5104\"* is|strong=\"H1931\"* Hiddekel|strong=\"H2313\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1980\"* one|strong=\"H7992\"* which|strong=\"H1931\"* flows|strong=\"H1980\"* in|strong=\"H1980\"* front of|strong=\"H8034\"* Assyria. The|strong=\"H1980\"* fourth|strong=\"H7243\"* river|strong=\"H5104\"* is|strong=\"H1931\"* the|strong=\"H1980\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3947\"* man|strong=\"H5647\"*, and|strong=\"H3068\"* put|strong=\"H3240\"* him|strong=\"H3947\"* into|strong=\"H3947\"* the|strong=\"H3947\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"* to|strong=\"H3068\"* cultivate|strong=\"H5647\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* man|strong=\"H3605\"*, saying, “You|strong=\"H6680\"* may|strong=\"H3068\"* freely eat of|strong=\"H3068\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* eat of|strong=\"H3117\"* the|strong=\"H3588\"* tree|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H3588\"* knowledge|strong=\"H1847\"* of|strong=\"H3117\"* good|strong=\"H2896\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* in|strong=\"H4191\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* eat of|strong=\"H3117\"* it|strong=\"H3588\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said, “It|strong=\"H6213\"* is|strong=\"H3068\"* not|strong=\"H3808\"* good|strong=\"H2896\"* for|strong=\"H6213\"* the|strong=\"H6213\"* man|strong=\"H2896\"* to|strong=\"H3068\"* be|strong=\"H1961\"* alone|strong=\"H6213\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* helper|strong=\"H5828\"* comparable to|strong=\"H3068\"*+ 2:18 or, suitable for, or appropriate for.* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 19, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H7704\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* formed|strong=\"H3335\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3605\"* man|strong=\"H5315\"* to|strong=\"H3068\"* see|strong=\"H7200\"* what|strong=\"H4100\"* he|strong=\"H1931\"* would|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H7121\"*. Whatever|strong=\"H3605\"* the|strong=\"H3605\"* man|strong=\"H5315\"* called|strong=\"H7121\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* became|strong=\"H7200\"* its|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* gave|strong=\"H7121\"* names|strong=\"H8034\"* to|strong=\"H7121\"* all|strong=\"H3605\"* livestock, and|strong=\"H8064\"* to|strong=\"H7121\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H8034\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H7121\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H8034\"* the|strong=\"H3605\"* field|strong=\"H7704\"*; but|strong=\"H3808\"* for|strong=\"H7121\"* man|strong=\"H3605\"* there|strong=\"H4672\"* was|strong=\"H8034\"* not|strong=\"H3808\"* found|strong=\"H4672\"* a|strong=\"H3068\"* helper|strong=\"H5828\"* comparable to|strong=\"H7121\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* caused|strong=\"H5307\"* the|strong=\"H5921\"* man|strong=\"H5307\"* to|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H3462\"*. As|strong=\"H3068\"* the|strong=\"H5921\"* man|strong=\"H5307\"* slept|strong=\"H3462\"*, he|strong=\"H3068\"* took|strong=\"H3947\"* one|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* ribs|strong=\"H6763\"*, and|strong=\"H3068\"* closed|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* in|strong=\"H5921\"* its|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H1129\"* a|strong=\"H3068\"* woman from|strong=\"H4480\"* the|strong=\"H3947\"* rib|strong=\"H6763\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* taken|strong=\"H3947\"* from|strong=\"H4480\"* the|strong=\"H3947\"* man, and|strong=\"H3068\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H3068\"* the|strong=\"H3947\"* man." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3588\"* man|strong=\"H1320\"* said|strong=\"H7121\"*, “This|strong=\"H2063\"* is|strong=\"H1320\"* now|strong=\"H6471\"* bone|strong=\"H6106\"* of|strong=\"H6106\"* my|strong=\"H3947\"* bones|strong=\"H6106\"*, and|strong=\"H3947\"* flesh|strong=\"H1320\"* of|strong=\"H6106\"* my|strong=\"H3947\"* flesh|strong=\"H1320\"*. She|strong=\"H3588\"* will|strong=\"H1320\"* be|strong=\"H1320\"* called|strong=\"H7121\"* ‘woman,’ because|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1320\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6106\"* Man|strong=\"H1320\"*.”" + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* man|strong=\"H1320\"* will|strong=\"H1961\"* leave|strong=\"H5800\"* his|strong=\"H5921\"* father and|strong=\"H1320\"* his|strong=\"H5921\"* mother, and|strong=\"H1320\"* will|strong=\"H1961\"* join with|strong=\"H5921\"* his|strong=\"H5921\"* wife, and|strong=\"H1320\"* they|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* man and|strong=\"H8147\"* his|strong=\"H1961\"* wife were|strong=\"H1961\"* both|strong=\"H8147\"* naked|strong=\"H6174\"*, and|strong=\"H8147\"* they|strong=\"H3808\"* were|strong=\"H1961\"* not|strong=\"H3808\"* ashamed." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"* was|strong=\"H3068\"* more|strong=\"H3808\"* subtle than|strong=\"H3808\"* any|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"*. He|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* woman, “Has|strong=\"H3068\"* God|strong=\"H3068\"* really said, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* any|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"*’?”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6086\"* woman said to|strong=\"H6086\"* the|strong=\"H6086\"* serpent|strong=\"H5175\"*, “We may|strong=\"H5175\"* eat fruit|strong=\"H6529\"* from|strong=\"H6086\"* the|strong=\"H6086\"* trees|strong=\"H6086\"* of|strong=\"H6086\"* the|strong=\"H6086\"* garden|strong=\"H1588\"*," + }, + { + "verseNum": 3, + "text": "but|strong=\"H3808\"* not|strong=\"H3808\"* the|strong=\"H8432\"* fruit|strong=\"H6529\"* of|strong=\"H4480\"* the|strong=\"H8432\"* tree|strong=\"H6086\"* which|strong=\"H6086\"* is|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H8432\"* garden|strong=\"H1588\"*. God|strong=\"H3808\"* has|strong=\"H6086\"* said, ‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H4480\"* it|strong=\"H8432\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* it|strong=\"H8432\"*, lest|strong=\"H6435\"* you|strong=\"H3808\"* die|strong=\"H4191\"*.’”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H4191\"* serpent|strong=\"H5175\"* said to|strong=\"H4191\"* the|strong=\"H4191\"* woman, “You|strong=\"H3808\"* won’t really die|strong=\"H4191\"*," + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"* God knows|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* eat it|strong=\"H3588\"*, your|strong=\"H3045\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* opened|strong=\"H6491\"*, and|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* God, knowing|strong=\"H3045\"* good|strong=\"H2896\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* woman saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* tree|strong=\"H6086\"* was|strong=\"H1931\"* good|strong=\"H2896\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, and|strong=\"H6086\"* that|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H1931\"* a|strong=\"H3068\"* delight|strong=\"H2530\"* to|strong=\"H5414\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H6086\"* that|strong=\"H3588\"* the|strong=\"H7200\"* tree|strong=\"H6086\"* was|strong=\"H1931\"* to|strong=\"H5414\"* be|strong=\"H1571\"* desired|strong=\"H2530\"* to|strong=\"H5414\"* make|strong=\"H5414\"* one|strong=\"H1931\"* wise|strong=\"H7919\"*, she|strong=\"H1931\"* took|strong=\"H3947\"* some of|strong=\"H5869\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H6086\"* ate. Then|strong=\"H3947\"* she|strong=\"H1931\"* gave|strong=\"H5414\"* some to|strong=\"H5414\"* her|strong=\"H5414\"* husband with|strong=\"H5973\"* her|strong=\"H5414\"*, and|strong=\"H6086\"* he|strong=\"H1931\"* ate it|strong=\"H5414\"*, too|strong=\"H1571\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H1992\"* eyes|strong=\"H5869\"* were|strong=\"H5869\"* opened|strong=\"H6491\"*, and|strong=\"H5869\"* they|strong=\"H1992\"* both|strong=\"H8147\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H5869\"* naked|strong=\"H5903\"*. They|strong=\"H1992\"* sewed|strong=\"H8609\"* fig|strong=\"H8384\"* leaves|strong=\"H5929\"* together|strong=\"H8609\"*, and|strong=\"H5869\"* made|strong=\"H6213\"* coverings|strong=\"H2290\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* heard|strong=\"H8085\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H6440\"* garden|strong=\"H1588\"* in|strong=\"H1980\"* the|strong=\"H6440\"* cool|strong=\"H7307\"* of|strong=\"H3068\"* the|strong=\"H6440\"* day|strong=\"H3117\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* man|strong=\"H6440\"* and|strong=\"H1980\"* his|strong=\"H3068\"* wife hid|strong=\"H2244\"* themselves|strong=\"H2244\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* among|strong=\"H8432\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H6440\"* garden|strong=\"H1588\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* man, and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"*, “Where are|strong=\"H3068\"* you|strong=\"H7121\"*?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8085\"* man said|strong=\"H8085\"*, “I|strong=\"H3588\"* heard|strong=\"H8085\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* in|strong=\"H8085\"* the|strong=\"H8085\"* garden|strong=\"H1588\"*, and|strong=\"H6963\"* I|strong=\"H3588\"* was|strong=\"H6963\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H6963\"* naked|strong=\"H5903\"*; so|strong=\"H3588\"* I|strong=\"H3588\"* hid|strong=\"H2244\"* myself|strong=\"H2244\"*.”" + }, + { + "verseNum": 11, + "text": "God|strong=\"H4310\"* said, “Who|strong=\"H4310\"* told|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H4480\"* naked|strong=\"H5903\"*? Have|strong=\"H3588\"* you|strong=\"H3588\"* eaten from|strong=\"H4480\"* the|strong=\"H3588\"* tree|strong=\"H6086\"* that|strong=\"H3588\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* not|strong=\"H1115\"* to|strong=\"H6680\"* eat from|strong=\"H4480\"*?”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* man said, “The|strong=\"H5414\"* woman whom you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* with|strong=\"H6086\"* me|strong=\"H5414\"*, she|strong=\"H1931\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* fruit|strong=\"H6086\"* from|strong=\"H4480\"* the|strong=\"H5414\"* tree|strong=\"H6086\"*, and|strong=\"H6086\"* I|strong=\"H5414\"* ate it|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* woman, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6213\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"*," + }, + { + "verseNum": 15, + "text": "I will|strong=\"H2233\"* put|strong=\"H7896\"* hostility between you|strong=\"H2233\"* and|strong=\"H7218\"* the|strong=\"H1931\"* woman," + }, + { + "verseNum": 16, + "text": "To|strong=\"H3205\"* the|strong=\"H3205\"* woman|strong=\"H3205\"* he|strong=\"H1931\"* said," + }, + { + "verseNum": 17, + "text": "To|strong=\"H3117\"* Adam he|strong=\"H3588\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 18, + "text": "It will|strong=\"H7704\"* yield thorns|strong=\"H6975\"* and|strong=\"H7704\"* thistles|strong=\"H1863\"* to|strong=\"H7704\"* you;" + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* will|strong=\"H5704\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* by|strong=\"H5704\"* the|strong=\"H3588\"* sweat|strong=\"H2188\"* of|strong=\"H4480\"* your|strong=\"H3947\"* face until|strong=\"H5704\"* you|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3588\"* ground|strong=\"H6083\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* called|strong=\"H7121\"* his|strong=\"H3605\"* wife|strong=\"H2416\"* Eve|strong=\"H2332\"* because|strong=\"H3588\"* she|strong=\"H1931\"* would|strong=\"H3605\"* be|strong=\"H1961\"* the|strong=\"H3605\"* mother of|strong=\"H8034\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H6213\"* garments|strong=\"H3801\"* of|strong=\"H3068\"* animal skins|strong=\"H5785\"* for|strong=\"H6213\"* Adam and|strong=\"H3068\"* for|strong=\"H6213\"* his|strong=\"H3068\"* wife, and|strong=\"H3068\"* clothed|strong=\"H3847\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* said, “Behold|strong=\"H2005\"*, the|strong=\"H3947\"* man|strong=\"H7451\"* has|strong=\"H3068\"* become|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H4480\"* of|strong=\"H3068\"* us|strong=\"H3045\"*, knowing|strong=\"H3045\"* good|strong=\"H2896\"* and|strong=\"H3068\"* evil|strong=\"H7451\"*. Now|strong=\"H6258\"*, lest|strong=\"H6435\"* he|strong=\"H3068\"* reach|strong=\"H1961\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* take|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H3947\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* eat, and|strong=\"H3068\"* live|strong=\"H2416\"* forever|strong=\"H5769\"*—”" + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* out|strong=\"H7971\"* from|strong=\"H7971\"* the|strong=\"H3947\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"*, to|strong=\"H3068\"* till|strong=\"H5647\"* the|strong=\"H3947\"* ground from|strong=\"H7971\"* which|strong=\"H3068\"* he|strong=\"H8033\"* was|strong=\"H3068\"* taken|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "So he|strong=\"H2416\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* the|strong=\"H8104\"* man|strong=\"H2416\"*; and|strong=\"H6086\"* he|strong=\"H2416\"* placed|strong=\"H7931\"* cherubim|strong=\"H3742\"*+ 3:24 cherubim are powerful angelic creatures, messengers of God with wings. See Ezekiel 10.* at|strong=\"H7931\"* the|strong=\"H8104\"* east|strong=\"H6924\"* of|strong=\"H1870\"* the|strong=\"H8104\"* garden|strong=\"H1588\"* of|strong=\"H1870\"* Eden|strong=\"H5731\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* flaming|strong=\"H3858\"* sword|strong=\"H2719\"* which|strong=\"H6086\"* turned|strong=\"H2015\"* every|strong=\"H8104\"* way|strong=\"H1870\"*, to|strong=\"H8104\"* guard|strong=\"H8104\"* the|strong=\"H8104\"* way|strong=\"H1870\"* to|strong=\"H8104\"* the|strong=\"H8104\"* tree|strong=\"H6086\"* of|strong=\"H1870\"* life|strong=\"H2416\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3205\"* man|strong=\"H3045\"* knew|strong=\"H3045\"*+ 4:1 or, lay with, or, had relations with* Eve|strong=\"H2332\"* his|strong=\"H3068\"* wife. She conceived|strong=\"H2029\"*,+ 4:1 or, became pregnant* and|strong=\"H3068\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3068\"* Cain|strong=\"H7014\"*, and|strong=\"H3068\"* said, “I|strong=\"H3045\"* have|strong=\"H3068\"* gotten|strong=\"H7069\"* a|strong=\"H3068\"* man|strong=\"H3045\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s help.”" + }, + { + "verseNum": 2, + "text": "Again|strong=\"H3254\"* she gave|strong=\"H3205\"* birth|strong=\"H3205\"*, to|strong=\"H1961\"* Cain|strong=\"H7014\"*’s brother Abel|strong=\"H1893\"*. Abel|strong=\"H1893\"* was|strong=\"H1961\"* a|strong=\"H3068\"* keeper|strong=\"H7462\"* of|strong=\"H3205\"* sheep|strong=\"H6629\"*, but|strong=\"H1961\"* Cain|strong=\"H7014\"* was|strong=\"H1961\"* a|strong=\"H3068\"* tiller|strong=\"H5647\"* of|strong=\"H3205\"* the|strong=\"H5647\"* ground." + }, + { + "verseNum": 3, + "text": "As|strong=\"H3117\"* time|strong=\"H3117\"* passed|strong=\"H3068\"*, Cain|strong=\"H7014\"* brought|strong=\"H1961\"* an|strong=\"H1961\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H3068\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ground." + }, + { + "verseNum": 4, + "text": "Abel|strong=\"H1893\"* also|strong=\"H1571\"* brought|strong=\"H3068\"* some of|strong=\"H3068\"* the|strong=\"H3068\"* firstborn|strong=\"H1062\"* of|strong=\"H3068\"* his|strong=\"H3068\"* flock|strong=\"H6629\"* and|strong=\"H3068\"* of|strong=\"H3068\"* its fat|strong=\"H2459\"*. Yahweh|strong=\"H3068\"* respected Abel|strong=\"H1893\"* and|strong=\"H3068\"* his|strong=\"H3068\"* offering|strong=\"H4503\"*," + }, + { + "verseNum": 5, + "text": "but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t respect|strong=\"H8159\"* Cain|strong=\"H7014\"* and|strong=\"H6440\"* his|strong=\"H6440\"* offering|strong=\"H4503\"*. Cain|strong=\"H7014\"* was|strong=\"H3966\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H5307\"* his|strong=\"H6440\"* face|strong=\"H6440\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Cain|strong=\"H7014\"*, “Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6440\"* angry|strong=\"H2734\"*? Why|strong=\"H4100\"* has|strong=\"H3068\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* of|strong=\"H3068\"* your|strong=\"H3068\"* face|strong=\"H6440\"* fallen|strong=\"H5307\"*?" + }, + { + "verseNum": 7, + "text": "If you|strong=\"H3808\"* do|strong=\"H3190\"* well|strong=\"H3190\"*, won’t it|strong=\"H3190\"* be|strong=\"H3808\"* lifted|strong=\"H7613\"* up|strong=\"H7613\"*? If you|strong=\"H3808\"* don’t do|strong=\"H3190\"* well|strong=\"H3190\"*, sin|strong=\"H2403\"* crouches at|strong=\"H3808\"* the|strong=\"H3808\"* door|strong=\"H6607\"*. Its|strong=\"H3808\"* desire|strong=\"H8669\"* is|strong=\"H2403\"* for|strong=\"H3808\"* you|strong=\"H3808\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* are|strong=\"H2403\"* to|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* it|strong=\"H3190\"*.”" + }, + { + "verseNum": 8, + "text": "Cain|strong=\"H7014\"* said to|strong=\"H1961\"* Abel|strong=\"H1893\"*, his|strong=\"H1961\"* brother, “Let|strong=\"H1961\"*’s go|strong=\"H6965\"* into|strong=\"H1961\"* the|strong=\"H6965\"* field|strong=\"H7704\"*.” While|strong=\"H1961\"* they were|strong=\"H1961\"* in|strong=\"H6965\"* the|strong=\"H6965\"* field|strong=\"H7704\"*, Cain|strong=\"H7014\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* Abel|strong=\"H1893\"*, his|strong=\"H1961\"* brother, and|strong=\"H6965\"* killed|strong=\"H2026\"* him|strong=\"H2026\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Cain|strong=\"H7014\"*, “Where|strong=\"H3808\"* is|strong=\"H3068\"* Abel|strong=\"H1893\"*, your|strong=\"H3068\"* brother?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said, “What|strong=\"H4100\"* have you|strong=\"H6213\"* done|strong=\"H6213\"*? The|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H6213\"* brother’s blood|strong=\"H1818\"* cries|strong=\"H6963\"* to|strong=\"H6213\"* me|strong=\"H6963\"* from|strong=\"H4480\"* the|strong=\"H6213\"* ground." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* you|strong=\"H3947\"* are|strong=\"H3027\"* cursed because|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H3947\"* ground, which|strong=\"H1818\"* has|strong=\"H3027\"* opened|strong=\"H6475\"* its|strong=\"H6475\"* mouth|strong=\"H6310\"* to|strong=\"H3027\"* receive|strong=\"H3947\"* your|strong=\"H3947\"* brother’s blood|strong=\"H1818\"* from|strong=\"H4480\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "From|strong=\"H1961\"* now|strong=\"H1961\"* on|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* till|strong=\"H5647\"* the|strong=\"H3588\"* ground, it|strong=\"H5414\"* won’t yield|strong=\"H5414\"* its|strong=\"H5414\"* strength|strong=\"H3581\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H5128\"* and|strong=\"H3254\"* a|strong=\"H3068\"* wanderer|strong=\"H5110\"* in|strong=\"H5414\"* the|strong=\"H3588\"* earth.”" + }, + { + "verseNum": 13, + "text": "Cain|strong=\"H7014\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “My|strong=\"H3068\"* punishment|strong=\"H5771\"* is|strong=\"H3068\"* greater|strong=\"H1419\"* than|strong=\"H1419\"* I|strong=\"H3068\"* can bear|strong=\"H5375\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6440\"* have|strong=\"H1961\"* driven|strong=\"H1644\"* me|strong=\"H6440\"* out|strong=\"H1644\"* today|strong=\"H3117\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* hidden|strong=\"H5641\"* from|strong=\"H6440\"* your|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H5128\"* and|strong=\"H3117\"* a|strong=\"H3068\"* wanderer|strong=\"H5110\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth. Whoever|strong=\"H3605\"* finds|strong=\"H4672\"* me|strong=\"H6440\"* will|strong=\"H1961\"* kill|strong=\"H2026\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H5221\"*, “Therefore|strong=\"H3651\"* whoever|strong=\"H3605\"* slays|strong=\"H2026\"* Cain|strong=\"H7014\"*, vengeance|strong=\"H5358\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H5358\"* on|strong=\"H7760\"* him|strong=\"H5221\"* sevenfold|strong=\"H7659\"*.” Yahweh|strong=\"H3068\"* appointed|strong=\"H7760\"* a|strong=\"H3068\"* sign for|strong=\"H3068\"* Cain|strong=\"H7014\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* anyone|strong=\"H3605\"* finding|strong=\"H4672\"* him|strong=\"H5221\"* would|strong=\"H3068\"* not|strong=\"H1115\"* strike|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Cain|strong=\"H7014\"* left|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s presence|strong=\"H6440\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Nod|strong=\"H5113\"*, east|strong=\"H6926\"* of|strong=\"H3068\"* Eden|strong=\"H5731\"*." + }, + { + "verseNum": 17, + "text": "Cain|strong=\"H7014\"* knew|strong=\"H3045\"* his|strong=\"H7121\"* wife. She|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1961\"* Enoch|strong=\"H2585\"*. He|strong=\"H7121\"* built|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* the|strong=\"H3205\"* city|strong=\"H5892\"* after|strong=\"H1961\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* son|strong=\"H1121\"*, Enoch|strong=\"H2585\"*." + }, + { + "verseNum": 18, + "text": "Irad|strong=\"H5897\"* was|strong=\"H3205\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Enoch|strong=\"H2585\"*. Irad|strong=\"H5897\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Mehujael|strong=\"H4232\"*. Mehujael|strong=\"H4232\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Methushael|strong=\"H4967\"*. Methushael|strong=\"H4967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Lamech|strong=\"H3929\"*." + }, + { + "verseNum": 19, + "text": "Lamech|strong=\"H3929\"* took|strong=\"H3947\"* two|strong=\"H8147\"* wives: the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3947\"* first one|strong=\"H8147\"* was|strong=\"H8034\"* Adah|strong=\"H5711\"*, and|strong=\"H8147\"* the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3947\"* second|strong=\"H8145\"* one|strong=\"H8147\"* was|strong=\"H8034\"* Zillah|strong=\"H6741\"*." + }, + { + "verseNum": 20, + "text": "Adah|strong=\"H5711\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1961\"* Jabal|strong=\"H2989\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* those|strong=\"H1931\"* who|strong=\"H1931\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* tents and|strong=\"H3427\"* have|strong=\"H1961\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H3605\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jubal|strong=\"H3106\"*, who|strong=\"H3605\"* was|strong=\"H8034\"* the|strong=\"H3605\"* father of|strong=\"H8034\"* all|strong=\"H3605\"* who|strong=\"H3605\"* handle|strong=\"H8610\"* the|strong=\"H3605\"* harp|strong=\"H3658\"* and|strong=\"H3658\"* pipe|strong=\"H5748\"*." + }, + { + "verseNum": 22, + "text": "Zillah|strong=\"H6741\"* also|strong=\"H1571\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3205\"* Tubal Cain, the|strong=\"H3605\"* forger|strong=\"H3913\"* of|strong=\"H3205\"* every|strong=\"H3605\"* cutting instrument of|strong=\"H3205\"* bronze|strong=\"H5178\"* and|strong=\"H5178\"* iron|strong=\"H1270\"*. Tubal Cain’s sister was|strong=\"H1931\"* Naamah|strong=\"H5279\"*." + }, + { + "verseNum": 23, + "text": "Lamech|strong=\"H3929\"* said|strong=\"H8085\"* to|strong=\"H8085\"* his|strong=\"H8085\"* wives," + }, + { + "verseNum": 24, + "text": "If|strong=\"H3588\"* Cain|strong=\"H7014\"* will|strong=\"H3588\"* be|strong=\"H3588\"* avenged|strong=\"H5358\"* seven|strong=\"H7651\"* times|strong=\"H7651\"*," + }, + { + "verseNum": 25, + "text": "Adam knew|strong=\"H3045\"* his|strong=\"H7121\"* wife again|strong=\"H5750\"*. She|strong=\"H3588\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Seth|strong=\"H8352\"*, saying, “for|strong=\"H3588\"* God has|strong=\"H3588\"* given|strong=\"H3205\"* me|strong=\"H7121\"* another|strong=\"H5750\"* child|strong=\"H1121\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Abel|strong=\"H1893\"*, for|strong=\"H3588\"* Cain|strong=\"H7014\"* killed|strong=\"H2026\"* him|strong=\"H3205\"*.”" + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* son|strong=\"H1121\"* was|strong=\"H3068\"* also|strong=\"H1571\"* born|strong=\"H3205\"* to|strong=\"H3068\"* Seth|strong=\"H8352\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Enosh. At|strong=\"H3068\"* that|strong=\"H1931\"* time men|strong=\"H1121\"* began|strong=\"H2490\"* to|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6213\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H6213\"* generations|strong=\"H8435\"* of|strong=\"H3117\"* Adam. In|strong=\"H6213\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* God created|strong=\"H1254\"* man|strong=\"H2088\"*, he|strong=\"H3117\"* made|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H6213\"* God’s likeness|strong=\"H1823\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* created|strong=\"H1254\"* them|strong=\"H7121\"* male|strong=\"H2145\"* and|strong=\"H3117\"* female|strong=\"H5347\"*, and|strong=\"H3117\"* blessed|strong=\"H1288\"* them|strong=\"H7121\"*. On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* they|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*, he|strong=\"H3117\"* named|strong=\"H7121\"* them|strong=\"H7121\"* Adam.+ 5:2 “Adam” and “Man” are spelled with the exact same consonants in Hebrew, so this can be correctly translated either way.*" + }, + { + "verseNum": 3, + "text": "Adam lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* a|strong=\"H3068\"* son|strong=\"H3205\"* in|strong=\"H8141\"* his|strong=\"H7121\"* own likeness|strong=\"H1823\"*, after|strong=\"H7121\"* his|strong=\"H7121\"* image|strong=\"H6754\"*, and|strong=\"H3967\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Seth|strong=\"H8352\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3205\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Adam after|strong=\"H1961\"* he|strong=\"H3117\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Seth|strong=\"H8352\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* he|strong=\"H3117\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* Adam lived|strong=\"H2425\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "Seth|strong=\"H8352\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Enosh." + }, + { + "verseNum": 7, + "text": "Seth|strong=\"H8352\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Enosh eight|strong=\"H8083\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Seth|strong=\"H8352\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 9, + "text": "Enosh lived|strong=\"H2421\"* ninety|strong=\"H8673\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Kenan|strong=\"H7018\"*." + }, + { + "verseNum": 10, + "text": "Enosh lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Kenan|strong=\"H7018\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Enosh were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "Kenan|strong=\"H7018\"* lived|strong=\"H2421\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Mahalalel|strong=\"H4111\"*." + }, + { + "verseNum": 13, + "text": "Kenan|strong=\"H7018\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Mahalalel|strong=\"H4111\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* forty years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3967\"* all|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Kenan|strong=\"H7018\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "Mahalalel|strong=\"H4111\"* lived|strong=\"H2421\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Jared|strong=\"H3382\"*." + }, + { + "verseNum": 16, + "text": "Mahalalel|strong=\"H4111\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jared|strong=\"H3382\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Mahalalel|strong=\"H4111\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* ninety-five|strong=\"H8673\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Jared|strong=\"H3382\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* sixty-two|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Enoch|strong=\"H2585\"*." + }, + { + "verseNum": 19, + "text": "Jared|strong=\"H3382\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Enoch|strong=\"H2585\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jared|strong=\"H3382\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* sixty-two|strong=\"H8346\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "Enoch|strong=\"H2585\"* lived|strong=\"H2421\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Methuselah|strong=\"H4968\"*." + }, + { + "verseNum": 22, + "text": "After|strong=\"H1980\"* Methuselah|strong=\"H4968\"*’s birth|strong=\"H3205\"*, Enoch|strong=\"H2585\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God for|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H1980\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Enoch|strong=\"H2585\"* were|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "Enoch|strong=\"H2585\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God, and|strong=\"H1980\"* he|strong=\"H3588\"* was|strong=\"H2585\"* not|strong=\"H3588\"* found, for|strong=\"H3588\"* God took|strong=\"H3947\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 25, + "text": "Methuselah|strong=\"H4968\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* eighty-seven|strong=\"H8084\"* years|strong=\"H8141\"*, then became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Lamech|strong=\"H3929\"*." + }, + { + "verseNum": 26, + "text": "Methuselah|strong=\"H4968\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H8147\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Lamech|strong=\"H3929\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* eighty-two|strong=\"H8084\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 27, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Methuselah|strong=\"H4968\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* sixty-nine|strong=\"H8346\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 28, + "text": "Lamech|strong=\"H3929\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* eighty-two|strong=\"H8084\"* years|strong=\"H8141\"*, then|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3068\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Noah|strong=\"H5146\"*, saying, “This|strong=\"H2088\"* one|strong=\"H2088\"* will|strong=\"H3068\"* comfort|strong=\"H5162\"* us|strong=\"H3027\"* in|strong=\"H3068\"* our|strong=\"H3068\"* work|strong=\"H4639\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* toil|strong=\"H6093\"* of|strong=\"H3068\"* our|strong=\"H3068\"* hands|strong=\"H3027\"*, caused by|strong=\"H3027\"* the|strong=\"H3068\"* ground which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cursed.”" + }, + { + "verseNum": 30, + "text": "Lamech|strong=\"H3929\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* ninety-five|strong=\"H8673\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* other|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Lamech|strong=\"H3929\"* were|strong=\"H1961\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-seven|strong=\"H7657\"* years|strong=\"H8141\"*, then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "Noah|strong=\"H5146\"* was|strong=\"H1961\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* Noah|strong=\"H5146\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H3967\"* Japheth|strong=\"H3315\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* men|strong=\"H2490\"* began|strong=\"H2490\"* to|strong=\"H1961\"* multiply|strong=\"H7231\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1323\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, and|strong=\"H6440\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 2, + "text": "God’s sons|strong=\"H1121\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* men|strong=\"H1121\"*’s daughters|strong=\"H1323\"* were|strong=\"H1121\"* beautiful|strong=\"H2896\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* took|strong=\"H3947\"* any|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* wanted for|strong=\"H3588\"* themselves|strong=\"H2896\"* as|strong=\"H3588\"* wives." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said, “My|strong=\"H3068\"* Spirit|strong=\"H7307\"* will|strong=\"H3068\"* not|strong=\"H3808\"* strive|strong=\"H1777\"* with|strong=\"H3068\"* man|strong=\"H1320\"* forever|strong=\"H5769\"*, because|strong=\"H3117\"* he|strong=\"H1931\"* also|strong=\"H1571\"* is|strong=\"H3068\"* flesh|strong=\"H1320\"*; so|strong=\"H1961\"* his|strong=\"H3068\"* days|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3205\"* Nephilim|strong=\"H5303\"*+ 6:4 or, giants* were|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3205\"* earth in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* after|strong=\"H1961\"* that|strong=\"H3117\"*, when|strong=\"H1961\"* God’s sons|strong=\"H1121\"* came|strong=\"H1961\"* in|strong=\"H3117\"* to|strong=\"H1961\"* men|strong=\"H1368\"*’s daughters|strong=\"H1323\"* and|strong=\"H1121\"* had|strong=\"H1961\"* children|strong=\"H1121\"* with|strong=\"H3117\"* them|strong=\"H1992\"*. Those|strong=\"H1992\"* were|strong=\"H1961\"* the|strong=\"H3205\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* who|strong=\"H1121\"* were|strong=\"H1961\"* of|strong=\"H1121\"* old|strong=\"H1121\"*, men|strong=\"H1368\"* of|strong=\"H1121\"* renown|strong=\"H8034\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* of|strong=\"H3068\"* man|strong=\"H7451\"* was|strong=\"H3068\"* great|strong=\"H7227\"* in|strong=\"H3068\"* the|strong=\"H3605\"* earth, and|strong=\"H3068\"* that|strong=\"H3588\"* every|strong=\"H3605\"* imagination|strong=\"H3336\"* of|strong=\"H3068\"* the|strong=\"H3605\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* man|strong=\"H7451\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* continually|strong=\"H3605\"* only|strong=\"H7535\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* sorry|strong=\"H5162\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H6213\"* man|strong=\"H3820\"* on|strong=\"H3068\"* the|strong=\"H3588\"* earth, and|strong=\"H3068\"* it|strong=\"H3588\"* grieved|strong=\"H6087\"* him|strong=\"H6213\"* in|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said, “I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H4229\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* have|strong=\"H3068\"* created|strong=\"H1254\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*—man|strong=\"H6440\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* animals, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H3068\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*—for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* sorry|strong=\"H5162\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H3068\"* Noah|strong=\"H5146\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H1961\"* is|strong=\"H6662\"* the|strong=\"H1961\"* history|strong=\"H8435\"* of|strong=\"H8435\"* the|strong=\"H1961\"* generations|strong=\"H1755\"* of|strong=\"H8435\"* Noah|strong=\"H5146\"*: Noah|strong=\"H5146\"* was|strong=\"H1961\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"*, blameless|strong=\"H8549\"* among|strong=\"H1755\"* the|strong=\"H1961\"* people of|strong=\"H8435\"* his|strong=\"H1961\"* time|strong=\"H1755\"*. Noah|strong=\"H5146\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* God." + }, + { + "verseNum": 10, + "text": "Noah|strong=\"H5146\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*: Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* earth was|strong=\"H6440\"* corrupt|strong=\"H7843\"* before|strong=\"H6440\"* God, and|strong=\"H6440\"* the|strong=\"H6440\"* earth was|strong=\"H6440\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 12, + "text": "God saw|strong=\"H7200\"* the|strong=\"H3605\"* earth, and|strong=\"H1870\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H1320\"* corrupt|strong=\"H7843\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* had|strong=\"H3588\"* corrupted|strong=\"H7843\"* their|strong=\"H3605\"* way|strong=\"H1870\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 13, + "text": "God said to|strong=\"H6440\"* Noah|strong=\"H5146\"*, “I|strong=\"H3588\"* will|strong=\"H1320\"* bring an|strong=\"H3588\"* end|strong=\"H7093\"* to|strong=\"H6440\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* earth is|strong=\"H3605\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"* through|strong=\"H3605\"* them|strong=\"H6440\"*. Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H1320\"* destroy|strong=\"H7843\"* them|strong=\"H6440\"* and|strong=\"H6440\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 14, + "text": "Make|strong=\"H6213\"* a|strong=\"H3068\"* ship|strong=\"H8392\"* of|strong=\"H1004\"* gopher|strong=\"H1613\"* wood|strong=\"H6086\"*. You|strong=\"H6213\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* rooms|strong=\"H7064\"* in|strong=\"H6213\"* the|strong=\"H6213\"* ship|strong=\"H8392\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* seal it|strong=\"H6213\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"* with|strong=\"H1004\"* pitch|strong=\"H3724\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* how|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H2088\"* make|strong=\"H6213\"* it|strong=\"H6213\"*. The|strong=\"H6213\"* length|strong=\"H6967\"* of|strong=\"H7341\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* shall|strong=\"H2088\"* be|strong=\"H7970\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* cubits,+ 6:15 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* cubits, and|strong=\"H3967\"* its|strong=\"H6213\"* height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits." + }, + { + "verseNum": 16, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* roof in|strong=\"H6213\"* the|strong=\"H6213\"* ship|strong=\"H8392\"*, and|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* finish|strong=\"H3615\"* it|strong=\"H7760\"* to|strong=\"H6213\"* a|strong=\"H3068\"* cubit upward|strong=\"H4605\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3615\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* in|strong=\"H6213\"* its|strong=\"H6213\"* side|strong=\"H6654\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H7760\"* with|strong=\"H6213\"* lower|strong=\"H8482\"*, second|strong=\"H8145\"*, and|strong=\"H6213\"* third|strong=\"H7992\"* levels." + }, + { + "verseNum": 17, + "text": "I|strong=\"H2009\"*, even|strong=\"H5921\"* I|strong=\"H2009\"*, will|strong=\"H8064\"* bring the|strong=\"H3605\"* flood|strong=\"H3999\"* of|strong=\"H7307\"* waters|strong=\"H4325\"* on|strong=\"H5921\"* this|strong=\"H7843\"* earth|strong=\"H8064\"*, to|strong=\"H5921\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* having the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H2009\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* die|strong=\"H1478\"*." + }, + { + "verseNum": 18, + "text": "But I|strong=\"H6965\"* will|strong=\"H1121\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6965\"*. You|strong=\"H6965\"* shall|strong=\"H1121\"* come|strong=\"H6965\"* into the|strong=\"H6965\"* ship|strong=\"H8392\"*, you|strong=\"H6965\"*, your|strong=\"H6965\"* sons|strong=\"H1121\"*, your|strong=\"H6965\"* wife, and|strong=\"H1121\"* your|strong=\"H6965\"* sons|strong=\"H1121\"*’ wives with|strong=\"H1285\"* you|strong=\"H6965\"*." + }, + { + "verseNum": 19, + "text": "Of|strong=\"H3605\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* of|strong=\"H3605\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, you|strong=\"H3605\"* shall|strong=\"H1320\"* bring|strong=\"H1961\"* two|strong=\"H8147\"* of|strong=\"H3605\"* every|strong=\"H3605\"* sort into|strong=\"H1961\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, to|strong=\"H1961\"* keep|strong=\"H2421\"* them|strong=\"H8147\"* alive|strong=\"H2416\"* with|strong=\"H1320\"* you|strong=\"H3605\"*. They|strong=\"H3605\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* male|strong=\"H2145\"* and|strong=\"H8147\"* female|strong=\"H5347\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H4480\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* after|strong=\"H4480\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, of|strong=\"H4480\"* the|strong=\"H3605\"* livestock after|strong=\"H4480\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, of|strong=\"H4480\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* of|strong=\"H4480\"* the|strong=\"H3605\"* ground after|strong=\"H4480\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, two|strong=\"H8147\"* of|strong=\"H4480\"* every|strong=\"H3605\"* sort will|strong=\"H5775\"* come|strong=\"H2421\"* to|strong=\"H4480\"* you|strong=\"H3605\"*, to|strong=\"H4480\"* keep|strong=\"H2421\"* them|strong=\"H8147\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 21, + "text": "Take|strong=\"H3947\"* with|strong=\"H3605\"* you|strong=\"H3605\"* some|strong=\"H3605\"* of|strong=\"H3605\"* all|strong=\"H3605\"* food|strong=\"H3978\"* that|strong=\"H3605\"* is|strong=\"H3605\"* eaten|strong=\"H3978\"*, and|strong=\"H3947\"* gather it|strong=\"H1961\"* to|strong=\"H1961\"* yourself; and|strong=\"H3947\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3605\"* food|strong=\"H3978\"* for|strong=\"H3605\"* you|strong=\"H3605\"*, and|strong=\"H3947\"* for|strong=\"H3605\"* them|strong=\"H3947\"*.”" + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H3651\"* Noah|strong=\"H5146\"* did|strong=\"H6213\"*. He|strong=\"H3651\"* did|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* God commanded|strong=\"H6680\"* him|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Noah|strong=\"H5146\"*, “Come with|strong=\"H1004\"* all|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3068\"* household|strong=\"H1004\"* into|strong=\"H7200\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* righteousness before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H3068\"* this|strong=\"H2088\"* generation|strong=\"H1755\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* take|strong=\"H3947\"* seven|strong=\"H7651\"* pairs|strong=\"H2889\"* of|strong=\"H4480\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* animal with|strong=\"H3605\"* you|strong=\"H3605\"*, the|strong=\"H3605\"* male and|strong=\"H8147\"* his|strong=\"H3605\"* female|strong=\"H8147\"*. Of|strong=\"H4480\"* the|strong=\"H3605\"* animals that|strong=\"H3605\"* are|strong=\"H8147\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*, take|strong=\"H3947\"* two|strong=\"H8147\"*, the|strong=\"H3605\"* male and|strong=\"H8147\"* his|strong=\"H3605\"* female|strong=\"H8147\"*." + }, + { + "verseNum": 3, + "text": "Also|strong=\"H1571\"* of|strong=\"H6440\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, seven|strong=\"H7651\"* and|strong=\"H8064\"* seven|strong=\"H7651\"*, male|strong=\"H2145\"* and|strong=\"H8064\"* female|strong=\"H5347\"*, to|strong=\"H5921\"* keep|strong=\"H2421\"* seed|strong=\"H2233\"* alive|strong=\"H2421\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, I|strong=\"H3588\"* will|strong=\"H3117\"* cause|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H6213\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth for|strong=\"H3588\"* forty days|strong=\"H3117\"* and|strong=\"H3117\"* forty nights|strong=\"H3915\"*. I|strong=\"H3588\"* will|strong=\"H3117\"* destroy|strong=\"H4229\"* every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H3351\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3117\"* made|strong=\"H6213\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*.”" + }, + { + "verseNum": 5, + "text": "Noah|strong=\"H5146\"* did|strong=\"H6213\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Noah|strong=\"H5146\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* the|strong=\"H5921\"* flood|strong=\"H3999\"* of|strong=\"H1121\"* waters|strong=\"H4325\"* came|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 7, + "text": "Noah|strong=\"H5146\"* went|strong=\"H1121\"* into|strong=\"H4325\"* the|strong=\"H6440\"* ship|strong=\"H8392\"* with|strong=\"H6440\"* his|strong=\"H6440\"* sons|strong=\"H1121\"*, his|strong=\"H6440\"* wife, and|strong=\"H1121\"* his|strong=\"H6440\"* sons|strong=\"H1121\"*’ wives, because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* floodwaters|strong=\"H3999\"*." + }, + { + "verseNum": 8, + "text": "Clean|strong=\"H2889\"* animals, unclean animals, birds|strong=\"H5775\"*, and|strong=\"H5775\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground" + }, + { + "verseNum": 9, + "text": "went|strong=\"H8147\"* by|strong=\"H2145\"* pairs|strong=\"H8147\"* to|strong=\"H6680\"* Noah|strong=\"H5146\"* into the|strong=\"H6680\"* ship|strong=\"H8392\"*, male|strong=\"H2145\"* and|strong=\"H8147\"* female|strong=\"H5347\"*, as|strong=\"H6680\"* God commanded|strong=\"H6680\"* Noah|strong=\"H5146\"*." + }, + { + "verseNum": 10, + "text": "After|strong=\"H5921\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, the|strong=\"H5921\"* floodwaters|strong=\"H3999\"* came|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 11, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* six|strong=\"H8337\"* hundredth|strong=\"H3967\"* year|strong=\"H8141\"* of|strong=\"H3117\"* Noah|strong=\"H5146\"*’s life|strong=\"H2416\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* seventeenth|strong=\"H7651\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fountains|strong=\"H4599\"* of|strong=\"H3117\"* the|strong=\"H3605\"* great|strong=\"H7227\"* deep|strong=\"H8415\"* burst|strong=\"H1234\"* open|strong=\"H6605\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*’s windows opened|strong=\"H6605\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* rained on|strong=\"H5921\"* the|strong=\"H5921\"* earth forty days|strong=\"H3117\"* and|strong=\"H3117\"* forty nights|strong=\"H3915\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"* Noah|strong=\"H5146\"*, and|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*—the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*—and|strong=\"H1121\"* Noah|strong=\"H5146\"*’s wife and|strong=\"H1121\"* the|strong=\"H3117\"* three|strong=\"H7969\"* wives of|strong=\"H1121\"* his|strong=\"H3117\"* sons|strong=\"H1121\"* with|strong=\"H3117\"* them|strong=\"H1121\"*, entered into|strong=\"H2088\"* the|strong=\"H3117\"* ship|strong=\"H8392\"*—" + }, + { + "verseNum": 14, + "text": "they|strong=\"H1992\"*, and|strong=\"H5775\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* livestock after|strong=\"H5921\"* their|strong=\"H3605\"* kind|strong=\"H4327\"*, every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, and|strong=\"H5775\"* every|strong=\"H3605\"* bird|strong=\"H6833\"* after|strong=\"H5921\"* its|strong=\"H3605\"* kind|strong=\"H4327\"*, every|strong=\"H3605\"* bird|strong=\"H6833\"* of|strong=\"H5921\"* every|strong=\"H3605\"* sort|strong=\"H3671\"*." + }, + { + "verseNum": 15, + "text": "Pairs|strong=\"H8147\"* from|strong=\"H7307\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* with|strong=\"H1320\"* the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"* in|strong=\"H1320\"* them|strong=\"H8147\"* went|strong=\"H8147\"* into|strong=\"H2416\"* the|strong=\"H3605\"* ship|strong=\"H8392\"* to|strong=\"H7307\"* Noah|strong=\"H5146\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3068\"* in|strong=\"H3068\"*, went|strong=\"H3068\"* in|strong=\"H3068\"* male|strong=\"H2145\"* and|strong=\"H3068\"* female|strong=\"H5347\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, as|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*; then|strong=\"H6680\"* Yahweh|strong=\"H3068\"* shut|strong=\"H5462\"* him|strong=\"H6680\"* in|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* flood|strong=\"H3999\"* was|strong=\"H1961\"* forty days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth. The|strong=\"H5921\"* waters|strong=\"H4325\"* increased|strong=\"H7235\"*, and|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5921\"* ship|strong=\"H8392\"*, and|strong=\"H3117\"* it|strong=\"H5921\"* was|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"*, and|strong=\"H3212\"* increased|strong=\"H7235\"* greatly|strong=\"H3966\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth; and|strong=\"H3212\"* the|strong=\"H6440\"* ship|strong=\"H8392\"* floated|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"* very|strong=\"H3966\"* high|strong=\"H1364\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H1364\"* mountains|strong=\"H2022\"* that|strong=\"H3605\"* were|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"* were|strong=\"H4325\"* covered|strong=\"H3680\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3680\"* waters|strong=\"H4325\"* rose|strong=\"H1396\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 7:20 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* higher|strong=\"H4605\"*, and|strong=\"H2568\"* the|strong=\"H3680\"* mountains|strong=\"H2022\"* were|strong=\"H4325\"* covered|strong=\"H3680\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* flesh|strong=\"H1320\"* died|strong=\"H1478\"* that|strong=\"H3605\"* moved|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, including|strong=\"H3605\"* birds|strong=\"H5775\"*, livestock, animals|strong=\"H2416\"*, every|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H1320\"* every|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"H3605\"* on|strong=\"H4191\"* the|strong=\"H3605\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*, in|strong=\"H4191\"* whose|strong=\"H3605\"* nostrils was|strong=\"H7307\"* the|strong=\"H3605\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* life|strong=\"H2416\"*, died|strong=\"H4191\"*." + }, + { + "verseNum": 23, + "text": "Every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H7431\"* was|strong=\"H5146\"* destroyed|strong=\"H4229\"* that|strong=\"H3605\"* was|strong=\"H5146\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, including|strong=\"H5704\"* man|strong=\"H3605\"*, livestock, creeping|strong=\"H7431\"* things|strong=\"H7431\"*, and|strong=\"H8064\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. They|strong=\"H5921\"* were|strong=\"H8064\"* destroyed|strong=\"H4229\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. Only|strong=\"H5704\"* Noah|strong=\"H5146\"* was|strong=\"H5146\"* left|strong=\"H7604\"*, and|strong=\"H8064\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8064\"* with|strong=\"H5921\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* waters|strong=\"H4325\"* flooded the|strong=\"H5921\"* earth one|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "God remembered|strong=\"H2142\"* Noah|strong=\"H5146\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"*, and|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock that|strong=\"H3605\"* were|strong=\"H4325\"* with|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*; and|strong=\"H4325\"* God made|strong=\"H5674\"* a|strong=\"H3068\"* wind|strong=\"H7307\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* waters|strong=\"H4325\"* subsided|strong=\"H7918\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H4480\"* deep|strong=\"H8415\"*’s fountains|strong=\"H4599\"* and|strong=\"H8064\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*’s windows were|strong=\"H8064\"* also|strong=\"H8064\"* stopped|strong=\"H5534\"*, and|strong=\"H8064\"* the|strong=\"H4480\"* rain|strong=\"H1653\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* was|strong=\"H8064\"* restrained|strong=\"H3607\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* waters|strong=\"H4325\"* continually|strong=\"H3117\"* receded|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* earth. After|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3117\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* receded|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* ship|strong=\"H8392\"* rested|strong=\"H5117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* seventeenth|strong=\"H7651\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* Ararat’s mountains|strong=\"H2022\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* waters|strong=\"H4325\"* receded continually|strong=\"H1980\"* until|strong=\"H5704\"* the|strong=\"H7200\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*. In|strong=\"H1980\"* the|strong=\"H7200\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, on|strong=\"H1980\"* the|strong=\"H7200\"* first|strong=\"H7218\"* day|strong=\"H2320\"* of|strong=\"H2022\"* the|strong=\"H7200\"* month|strong=\"H2320\"*, the|strong=\"H7200\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"* were|strong=\"H1961\"* visible|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H3117\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H3117\"* forty days|strong=\"H3117\"*, Noah|strong=\"H5146\"* opened|strong=\"H6605\"* the|strong=\"H6213\"* window|strong=\"H2474\"* of|strong=\"H3117\"* the|strong=\"H6213\"* ship|strong=\"H8392\"* which|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H1961\"* made|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7971\"* he|strong=\"H5704\"* sent|strong=\"H7971\"* out|strong=\"H3318\"* a|strong=\"H3068\"* raven|strong=\"H6158\"*. It|strong=\"H5921\"* went|strong=\"H3318\"* back|strong=\"H7725\"* and|strong=\"H7971\"* forth|strong=\"H3318\"*, until|strong=\"H5704\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* from|strong=\"H7725\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* himself|strong=\"H6440\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* dove|strong=\"H3123\"* to|strong=\"H7971\"* see|strong=\"H7200\"* if|strong=\"H7200\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* abated|strong=\"H7043\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H3588\"* the|strong=\"H3605\"* dove|strong=\"H3123\"* found|strong=\"H4672\"* no|strong=\"H3808\"* place|strong=\"H3027\"* to|strong=\"H7725\"* rest|strong=\"H4494\"* her|strong=\"H3605\"* foot|strong=\"H7272\"*, and|strong=\"H7971\"* she|strong=\"H3588\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* ship|strong=\"H8392\"* to|strong=\"H7725\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3027\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth. He|strong=\"H3588\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* her|strong=\"H3605\"*, and|strong=\"H7971\"* brought|strong=\"H7725\"* her|strong=\"H3605\"* to|strong=\"H7725\"* him|strong=\"H6440\"* into|strong=\"H7725\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3117\"* waited|strong=\"H2342\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H7971\"* again|strong=\"H5750\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H4480\"* dove|strong=\"H3123\"* out|strong=\"H7971\"* of|strong=\"H3117\"* the|strong=\"H4480\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* dove|strong=\"H3123\"* came|strong=\"H4325\"* back|strong=\"H3045\"* to|strong=\"H5921\"* him|strong=\"H5921\"* at|strong=\"H5921\"* evening|strong=\"H6153\"* and|strong=\"H3045\"*, behold|strong=\"H2009\"*, in|strong=\"H5921\"* her|strong=\"H5921\"* mouth|strong=\"H6310\"* was|strong=\"H4325\"* a|strong=\"H3068\"* freshly|strong=\"H2965\"* plucked|strong=\"H2965\"* olive|strong=\"H2132\"* leaf|strong=\"H5929\"*. So|strong=\"H3588\"* Noah|strong=\"H5146\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* abated|strong=\"H7043\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* waited|strong=\"H3176\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3117\"* dove|strong=\"H3123\"*; and|strong=\"H7971\"* she|strong=\"H3808\"* didn’t return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7971\"* any|strong=\"H5750\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* first|strong=\"H7223\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* waters|strong=\"H4325\"* were|strong=\"H1961\"* dried|strong=\"H2717\"* up|strong=\"H7200\"* from|strong=\"H5493\"* the|strong=\"H6440\"* earth. Noah|strong=\"H5146\"* removed|strong=\"H5493\"* the|strong=\"H6440\"* covering|strong=\"H4372\"* of|strong=\"H8141\"* the|strong=\"H6440\"* ship|strong=\"H8392\"*, and|strong=\"H3967\"* looked|strong=\"H7200\"*. He|strong=\"H5921\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H8141\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* was|strong=\"H1961\"* dry|strong=\"H2717\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* twenty-seventh|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, the|strong=\"H3117\"* earth was|strong=\"H3117\"* dry|strong=\"H3001\"*." + }, + { + "verseNum": 15, + "text": "God spoke|strong=\"H1696\"* to|strong=\"H1696\"* Noah|strong=\"H5146\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* ship|strong=\"H8392\"*, you|strong=\"H4480\"*, your|strong=\"H4480\"* wife, your|strong=\"H4480\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H4480\"* sons|strong=\"H1121\"*’ wives with|strong=\"H3318\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 17, + "text": "Bring|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5921\"* you|strong=\"H3605\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* is|strong=\"H3605\"* with|strong=\"H5921\"* you|strong=\"H3605\"* of|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, including|strong=\"H3605\"* birds|strong=\"H5775\"*, livestock, and|strong=\"H3318\"* every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, that|strong=\"H3605\"* they|strong=\"H5921\"* may|strong=\"H2416\"* breed|strong=\"H8317\"* abundantly|strong=\"H8317\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H3318\"* be|strong=\"H1320\"* fruitful|strong=\"H6509\"*, and|strong=\"H3318\"* multiply|strong=\"H7235\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 18, + "text": "Noah|strong=\"H5146\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H3318\"* his|strong=\"H3318\"* sons|strong=\"H1121\"*, his|strong=\"H3318\"* wife, and|strong=\"H1121\"* his|strong=\"H3318\"* sons|strong=\"H1121\"*’ wives with|strong=\"H3318\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 19, + "text": "Every|strong=\"H3605\"* animal|strong=\"H2416\"*, every|strong=\"H3605\"* creeping|strong=\"H7431\"* thing|strong=\"H7431\"*, and|strong=\"H3318\"* every|strong=\"H3605\"* bird|strong=\"H5775\"*, whatever|strong=\"H3605\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, after|strong=\"H4480\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*." + }, + { + "verseNum": 20, + "text": "Noah|strong=\"H5146\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* of|strong=\"H3068\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* animal, and|strong=\"H3068\"* of|strong=\"H3068\"* every|strong=\"H3605\"* clean|strong=\"H2889\"* bird|strong=\"H5775\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* smelled|strong=\"H7306\"* the|strong=\"H3605\"* pleasant aroma|strong=\"H7381\"*. Yahweh|strong=\"H3068\"* said in|strong=\"H3068\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* again|strong=\"H5750\"* curse|strong=\"H7043\"* the|strong=\"H3605\"* ground any|strong=\"H3605\"* more|strong=\"H3254\"* for|strong=\"H3588\"* man|strong=\"H7451\"*’s sake|strong=\"H5668\"* because|strong=\"H3588\"* the|strong=\"H3605\"* imagination|strong=\"H3336\"* of|strong=\"H3068\"* man|strong=\"H7451\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* from|strong=\"H3068\"* his|strong=\"H3605\"* youth|strong=\"H5271\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* never|strong=\"H3808\"* again|strong=\"H5750\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H7043\"*, as|strong=\"H6213\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "While|strong=\"H5750\"* the|strong=\"H3605\"* earth remains|strong=\"H5750\"*, seed|strong=\"H2233\"* time|strong=\"H3117\"* and|strong=\"H3117\"* harvest|strong=\"H7105\"*, and|strong=\"H3117\"* cold|strong=\"H7120\"* and|strong=\"H3117\"* heat|strong=\"H2527\"*, and|strong=\"H3117\"* summer|strong=\"H7019\"* and|strong=\"H3117\"* winter|strong=\"H2779\"*, and|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H3117\"* night|strong=\"H3915\"* will|strong=\"H3808\"* not|strong=\"H3808\"* cease|strong=\"H7673\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "God blessed|strong=\"H1288\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* his|strong=\"H1288\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Be|strong=\"H1121\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"*, and|strong=\"H1121\"* replenish|strong=\"H4390\"* the|strong=\"H1288\"* earth." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* fear|strong=\"H4172\"* of|strong=\"H3027\"* you|strong=\"H5414\"* and|strong=\"H8064\"* the|strong=\"H3605\"* dread|strong=\"H4172\"* of|strong=\"H3027\"* you|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* on|strong=\"H5921\"* every|strong=\"H3605\"* bird|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* along|strong=\"H5921\"* the|strong=\"H3605\"* ground, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H3027\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, are|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "Every|strong=\"H3605\"* moving|strong=\"H7431\"* thing|strong=\"H7431\"* that|strong=\"H3605\"* lives|strong=\"H2416\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food for|strong=\"H3605\"* you|strong=\"H5414\"*. As|strong=\"H1961\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* green|strong=\"H3418\"* herb|strong=\"H6212\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* everything|strong=\"H3605\"* to|strong=\"H1961\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* flesh|strong=\"H1320\"* with|strong=\"H5315\"* its|strong=\"H3808\"* life|strong=\"H5315\"*, that|strong=\"H5315\"* is|strong=\"H5315\"*, its|strong=\"H3808\"* blood|strong=\"H1818\"*, you|strong=\"H3808\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* surely|strong=\"H1875\"* require|strong=\"H1875\"* accounting for|strong=\"H3027\"* your|strong=\"H3605\"* life|strong=\"H5315\"*’s blood|strong=\"H1818\"*. At|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* I|strong=\"H5315\"* will|strong=\"H5315\"* require|strong=\"H1875\"* it|strong=\"H1818\"*. At|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* man|strong=\"H5315\"*, even at|strong=\"H5315\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H5315\"*’s brother, I|strong=\"H5315\"* will|strong=\"H5315\"* require|strong=\"H1875\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H3027\"* man|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "Whoever sheds|strong=\"H8210\"* man’s blood|strong=\"H1818\"*, his|strong=\"H6213\"* blood|strong=\"H1818\"* will|strong=\"H1818\"* be|strong=\"H1818\"* shed|strong=\"H8210\"* by|strong=\"H6213\"* man, for|strong=\"H3588\"* God made|strong=\"H6213\"* man in|strong=\"H6213\"* his|strong=\"H6213\"* own image|strong=\"H6754\"*." + }, + { + "verseNum": 7, + "text": "Be fruitful|strong=\"H6509\"* and|strong=\"H6509\"* multiply|strong=\"H7235\"*. Increase|strong=\"H7235\"* abundantly|strong=\"H8317\"* in|strong=\"H7235\"* the|strong=\"H7235\"* earth, and|strong=\"H6509\"* multiply|strong=\"H7235\"* in|strong=\"H7235\"* it.”" + }, + { + "verseNum": 8, + "text": "God spoke to|strong=\"H1121\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"* with|strong=\"H1121\"* him|strong=\"H1121\"*, saying," + }, + { + "verseNum": 9, + "text": "“As|strong=\"H6965\"* for|strong=\"H6965\"* me|strong=\"H6965\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6965\"*, and|strong=\"H6965\"* with|strong=\"H1285\"* your|strong=\"H6965\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3318\"* with|strong=\"H3318\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* is|strong=\"H5315\"* with|strong=\"H3318\"* you|strong=\"H3605\"*: the|strong=\"H3605\"* birds|strong=\"H5775\"*, the|strong=\"H3605\"* livestock, and|strong=\"H3318\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth with|strong=\"H3318\"* you|strong=\"H3605\"*, of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3605\"* the|strong=\"H3605\"* ship|strong=\"H8392\"*, even every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3605\"*: All|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* any|strong=\"H3605\"* more|strong=\"H5750\"* by|strong=\"H6965\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* flood|strong=\"H3999\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* never|strong=\"H3808\"* again|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* flood|strong=\"H3999\"* to|strong=\"H1961\"* destroy|strong=\"H7843\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H5414\"* said, “This|strong=\"H2063\"* is|strong=\"H5315\"* the|strong=\"H3605\"* token of|strong=\"H3605\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H2416\"* I|strong=\"H5414\"* make|strong=\"H5414\"* between me|strong=\"H5414\"* and|strong=\"H5769\"* you|strong=\"H5414\"* and|strong=\"H5769\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* is|strong=\"H5315\"* with|strong=\"H1285\"* you|strong=\"H5414\"*, for|strong=\"H5315\"* perpetual|strong=\"H5769\"* generations|strong=\"H1755\"*:" + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* rainbow|strong=\"H7198\"* in|strong=\"H5414\"* the|strong=\"H5414\"* cloud|strong=\"H6051\"*, and|strong=\"H1285\"* it|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign of|strong=\"H1285\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between me|strong=\"H5414\"* and|strong=\"H1285\"* the|strong=\"H5414\"* earth." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* I|strong=\"H5921\"* bring|strong=\"H6049\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* over|strong=\"H5921\"* the|strong=\"H5921\"* earth, that|strong=\"H7200\"* the|strong=\"H5921\"* rainbow|strong=\"H7198\"* will|strong=\"H1961\"* be|strong=\"H1961\"* seen|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5315\"* will|strong=\"H1961\"* remember|strong=\"H2142\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*, which|strong=\"H4325\"* is|strong=\"H5315\"* between me|strong=\"H5315\"* and|strong=\"H1285\"* you|strong=\"H3605\"* and|strong=\"H1285\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* of|strong=\"H4325\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, and|strong=\"H1285\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* become|strong=\"H1961\"* a|strong=\"H3068\"* flood|strong=\"H3999\"* to|strong=\"H1961\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* rainbow|strong=\"H7198\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* look|strong=\"H7200\"* at|strong=\"H5921\"* it|strong=\"H5921\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* may|strong=\"H1961\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* between|strong=\"H5921\"* God and|strong=\"H5769\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* of|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* that|strong=\"H7200\"* is|strong=\"H5315\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 17, + "text": "God said to|strong=\"H5921\"* Noah|strong=\"H5146\"*, “This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* token of|strong=\"H5921\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H1285\"* I|strong=\"H5921\"* have|strong=\"H3605\"* established|strong=\"H6965\"* between|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H6965\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* who|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* ship|strong=\"H8392\"* were|strong=\"H1961\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*. Ham|strong=\"H2526\"* is|strong=\"H1931\"* the|strong=\"H4480\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 19, + "text": "These|strong=\"H3605\"* three|strong=\"H7969\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*, and|strong=\"H1121\"* from|strong=\"H1121\"* these|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth was|strong=\"H1121\"* populated|strong=\"H5310\"*." + }, + { + "verseNum": 20, + "text": "Noah|strong=\"H5146\"* began|strong=\"H2490\"* to|strong=\"H2490\"* be|strong=\"H3754\"* a|strong=\"H3068\"* farmer, and|strong=\"H3754\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H4480\"* drank|strong=\"H8354\"* of|strong=\"H4480\"* the|strong=\"H8432\"* wine|strong=\"H3196\"* and|strong=\"H8354\"* got drunk|strong=\"H8354\"*. He|strong=\"H4480\"* was|strong=\"H3196\"* uncovered|strong=\"H1540\"* within|strong=\"H8432\"* his|strong=\"H1540\"* tent." + }, + { + "verseNum": 22, + "text": "Ham|strong=\"H2526\"*, the|strong=\"H7200\"* father of|strong=\"H2351\"* Canaan|strong=\"H3667\"*, saw|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H2351\"* his|strong=\"H7200\"* father, and|strong=\"H7200\"* told|strong=\"H5046\"* his|strong=\"H7200\"* two|strong=\"H8147\"* brothers outside|strong=\"H2351\"*." + }, + { + "verseNum": 23, + "text": "Shem|strong=\"H8035\"* and|strong=\"H3212\"* Japheth|strong=\"H3315\"* took|strong=\"H3947\"* a|strong=\"H3068\"* garment|strong=\"H8071\"*, and|strong=\"H3212\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* both|strong=\"H8147\"* their|strong=\"H3947\"* shoulders|strong=\"H7926\"*, went|strong=\"H3212\"* in|strong=\"H5921\"* backwards, and|strong=\"H3212\"* covered|strong=\"H3680\"* the|strong=\"H6440\"* nakedness|strong=\"H6172\"* of|strong=\"H6440\"* their|strong=\"H3947\"* father. Their|strong=\"H3947\"* faces|strong=\"H6440\"* were|strong=\"H8147\"* backwards, and|strong=\"H3212\"* they|strong=\"H3808\"* didn’t see|strong=\"H7200\"* their|strong=\"H3947\"* father’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 24, + "text": "Noah|strong=\"H5146\"* awoke|strong=\"H3364\"* from|strong=\"H1121\"* his|strong=\"H3045\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* knew|strong=\"H3045\"* what|strong=\"H3045\"* his|strong=\"H3045\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* had|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "He said," + }, + { + "verseNum": 26, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 27, + "text": "May|strong=\"H1961\"* God enlarge|strong=\"H6601\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 28, + "text": "Noah|strong=\"H5146\"* lived|strong=\"H2421\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H2421\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 29, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Noah|strong=\"H5146\"* were|strong=\"H1961\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"*, and|strong=\"H3967\"* then|strong=\"H1961\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now this|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H1121\"* Japheth|strong=\"H3315\"*. Sons|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* them|strong=\"H3205\"* after the|strong=\"H3205\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japheth|strong=\"H3315\"* were|strong=\"H1121\"*: Gomer|strong=\"H1586\"*, Magog|strong=\"H4031\"*, Madai|strong=\"H4074\"*, Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tiras|strong=\"H8494\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gomer|strong=\"H1586\"* were|strong=\"H1121\"*: Ashkenaz, Riphath|strong=\"H7384\"*, and|strong=\"H1121\"* Togarmah|strong=\"H8425\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Javan|strong=\"H3120\"* were|strong=\"H1121\"*: Elishah, Tarshish|strong=\"H8659\"*, Kittim|strong=\"H3794\"*, and|strong=\"H1121\"* Dodanim|strong=\"H1721\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H4940\"* these were|strong=\"H4940\"* the|strong=\"H6504\"* islands of|strong=\"H4940\"* the|strong=\"H6504\"* nations|strong=\"H1471\"* divided|strong=\"H6504\"* in|strong=\"H1471\"* their|strong=\"H1471\"* lands, everyone after his|strong=\"H1471\"* language|strong=\"H3956\"*, after their|strong=\"H1471\"* families|strong=\"H4940\"*, in|strong=\"H1471\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"* were|strong=\"H1121\"*: Cush|strong=\"H3568\"*, Mizraim|strong=\"H4714\"*, Put|strong=\"H6316\"*, and|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Cush|strong=\"H3568\"* were|strong=\"H1121\"*: Seba|strong=\"H5434\"*, Havilah|strong=\"H2341\"*, Sabtah|strong=\"H5454\"*, Raamah|strong=\"H7484\"*, and|strong=\"H1121\"* Sabteca|strong=\"H5455\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Raamah|strong=\"H7484\"* were|strong=\"H1121\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 8, + "text": "Cush|strong=\"H3568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nimrod|strong=\"H5248\"*. He|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1931\"* in|strong=\"H1368\"* the|strong=\"H3205\"* earth." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* hunter|strong=\"H6718\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H3651\"* it|strong=\"H1931\"* is|strong=\"H3068\"* said|strong=\"H3651\"*, “like|strong=\"H1961\"* Nimrod|strong=\"H5248\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* hunter|strong=\"H6718\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*”." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1961\"* beginning|strong=\"H7225\"* of|strong=\"H4467\"* his|strong=\"H1961\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* Babel, Erech, Accad, and|strong=\"H4467\"* Calneh|strong=\"H3641\"*, in|strong=\"H1961\"* the|strong=\"H1961\"* land of|strong=\"H4467\"* Shinar|strong=\"H8152\"*." + }, + { + "verseNum": 11, + "text": "Out|strong=\"H3318\"* of|strong=\"H5892\"* that|strong=\"H1931\"* land he|strong=\"H1931\"* went|strong=\"H3318\"* into|strong=\"H3318\"* Assyria, and|strong=\"H5892\"* built|strong=\"H1129\"* Nineveh|strong=\"H5210\"*, Rehoboth|strong=\"H7344\"* Ir, Calah|strong=\"H3625\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H1419\"* Resen|strong=\"H7449\"* between|strong=\"H7449\"* Nineveh|strong=\"H5210\"* and|strong=\"H1419\"* the|strong=\"H5892\"* great|strong=\"H1419\"* city|strong=\"H5892\"* Calah|strong=\"H3625\"*." + }, + { + "verseNum": 13, + "text": "Mizraim|strong=\"H4714\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ludim|strong=\"H3866\"*, Anamim|strong=\"H6047\"*, Lehabim|strong=\"H3853\"*, Naphtuhim|strong=\"H5320\"*," + }, + { + "verseNum": 14, + "text": "Pathrusim|strong=\"H6625\"*, Casluhim|strong=\"H3695\"* (which|strong=\"H8033\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* descended|strong=\"H3318\"* from|strong=\"H3318\"*), and|strong=\"H8033\"* Caphtorim|strong=\"H3732\"*." + }, + { + "verseNum": 15, + "text": "Canaan|strong=\"H3667\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sidon|strong=\"H6721\"* (his|strong=\"H3205\"* firstborn|strong=\"H1060\"*), Heth|strong=\"H2845\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H2983\"* Jebusites|strong=\"H2983\"*, the|strong=\"H2983\"* Amorites, the|strong=\"H2983\"* Girgashites|strong=\"H1622\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H2340\"* Hivites|strong=\"H2340\"*, the|strong=\"H2340\"* Arkites|strong=\"H6208\"*, the|strong=\"H2340\"* Sinites|strong=\"H5513\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H6327\"* Arvadites, the|strong=\"H6327\"* Zemarites|strong=\"H6786\"*, and|strong=\"H3669\"* the|strong=\"H6327\"* Hamathites|strong=\"H2577\"*. Afterward the|strong=\"H6327\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6327\"* Canaanites|strong=\"H3669\"* were|strong=\"H4940\"* spread|strong=\"H6327\"* abroad|strong=\"H6327\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Canaanites|strong=\"H3669\"* was|strong=\"H1961\"* from|strong=\"H5704\"* Sidon|strong=\"H6721\"*—as|strong=\"H5704\"* you|strong=\"H5704\"* go|strong=\"H1961\"* toward|strong=\"H5704\"* Gerar|strong=\"H1642\"*—to|strong=\"H5704\"* Gaza|strong=\"H5804\"*—as|strong=\"H5704\"* you|strong=\"H5704\"* go|strong=\"H1961\"* toward|strong=\"H5704\"* Sodom|strong=\"H5467\"*, Gomorrah|strong=\"H6017\"*, Admah, and|strong=\"H5467\"* Zeboiim|strong=\"H6636\"*—to|strong=\"H5704\"* Lasha|strong=\"H3962\"*." + }, + { + "verseNum": 20, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"*, after their|strong=\"H1471\"* families|strong=\"H4940\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* languages|strong=\"H3956\"*, in|strong=\"H1121\"* their|strong=\"H1471\"* lands and|strong=\"H1121\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 21, + "text": "Children|strong=\"H1121\"* were|strong=\"H1121\"* also|strong=\"H1571\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Shem|strong=\"H8035\"* (the|strong=\"H3605\"* elder|strong=\"H1419\"* brother of|strong=\"H1121\"* Japheth|strong=\"H3315\"*), the|strong=\"H3605\"* father|strong=\"H3205\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"* were|strong=\"H1121\"*: Elam|strong=\"H5867\"*, Asshur, Arpachshad, Lud|strong=\"H3865\"*, and|strong=\"H1121\"* Aram." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aram were|strong=\"H1121\"*: Uz|strong=\"H5780\"*, Hul|strong=\"H2343\"*, Gether|strong=\"H1666\"*, and|strong=\"H1121\"* Mash|strong=\"H4851\"*." + }, + { + "verseNum": 24, + "text": "Arpachshad became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shelah|strong=\"H7974\"*. Shelah|strong=\"H7974\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 25, + "text": "To|strong=\"H3117\"* Eber|strong=\"H5677\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Peleg|strong=\"H6389\"*, for|strong=\"H3588\"* in|strong=\"H3117\"* his|strong=\"H3588\"* days|strong=\"H3117\"* the|strong=\"H3588\"* earth was|strong=\"H8034\"* divided|strong=\"H6385\"*. His|strong=\"H3588\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 26, + "text": "Joktan|strong=\"H3355\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Almodad, Sheleph|strong=\"H8026\"*, Hazarmaveth|strong=\"H2700\"*, Jerah|strong=\"H3392\"*," + }, + { + "verseNum": 27, + "text": "Hadoram|strong=\"H1913\"*, Uzal, Diklah|strong=\"H1853\"*," + }, + { + "verseNum": 28, + "text": "Obal|strong=\"H5745\"*, Abimael, Sheba|strong=\"H7614\"*," + }, + { + "verseNum": 29, + "text": "Ophir, Havilah|strong=\"H2341\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"H1961\"* dwelling|strong=\"H4186\"* extended|strong=\"H1961\"* from|strong=\"H1961\"* Mesha|strong=\"H4852\"*, as|strong=\"H1961\"* you|strong=\"H2022\"* go|strong=\"H1961\"* toward Sephar|strong=\"H5611\"*, the|strong=\"H1961\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H1961\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 31, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*, by|strong=\"H4940\"* their|strong=\"H1471\"* families|strong=\"H4940\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* languages|strong=\"H3956\"*, lands, and|strong=\"H1121\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 32, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Noah|strong=\"H5146\"*, by|strong=\"H4940\"* their|strong=\"H1471\"* generations|strong=\"H8435\"*, according to|strong=\"H1121\"* their|strong=\"H1471\"* nations|strong=\"H1471\"*. The|strong=\"H1121\"* nations|strong=\"H1471\"* divided|strong=\"H6504\"* from|strong=\"H1121\"* these in|strong=\"H1121\"* the|strong=\"H1121\"* earth after the|strong=\"H1121\"* flood|strong=\"H3999\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* earth was|strong=\"H1961\"* of|strong=\"H1697\"* one|strong=\"H3605\"* language|strong=\"H8193\"* and|strong=\"H1697\"* of|strong=\"H1697\"* one|strong=\"H3605\"* speech|strong=\"H8193\"*." + }, + { + "verseNum": 2, + "text": "As|strong=\"H1961\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"* east|strong=\"H6924\"*,+ 11:2 LXX reads “from the east”.* they|strong=\"H8033\"* found|strong=\"H4672\"* a|strong=\"H3068\"* plain|strong=\"H1237\"* in|strong=\"H3427\"* the|strong=\"H1961\"* land of|strong=\"H3427\"* Shinar|strong=\"H8152\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "They said to|strong=\"H1961\"* one|strong=\"H1961\"* another|strong=\"H7453\"*, “Come|strong=\"H1961\"*, let|strong=\"H1961\"*’s make|strong=\"H3835\"* bricks|strong=\"H3843\"*, and|strong=\"H7453\"* burn|strong=\"H8313\"* them|strong=\"H8313\"* thoroughly|strong=\"H8316\"*.” They had|strong=\"H1961\"* brick|strong=\"H3843\"* for|strong=\"H1961\"* stone, and|strong=\"H7453\"* they used|strong=\"H1961\"* tar|strong=\"H2564\"* for|strong=\"H1961\"* mortar|strong=\"H2563\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* said, “Come|strong=\"H3051\"*, let’s build|strong=\"H1129\"* ourselves|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* tower|strong=\"H4026\"* whose|strong=\"H8034\"* top|strong=\"H7218\"* reaches to|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* let’s make|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"* for|strong=\"H5921\"* ourselves|strong=\"H1129\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* be|strong=\"H8034\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* see|strong=\"H7200\"* the|strong=\"H7200\"* city|strong=\"H5892\"* and|strong=\"H1121\"* the|strong=\"H7200\"* tower|strong=\"H4026\"*, which|strong=\"H3068\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said, “Behold|strong=\"H2005\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* one|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H1992\"* all|strong=\"H3605\"* have|strong=\"H3068\"* one|strong=\"H2088\"* language|strong=\"H8193\"*, and|strong=\"H3068\"* this|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* they|strong=\"H1992\"* begin|strong=\"H2490\"* to|strong=\"H3068\"* do|strong=\"H6213\"*. Now|strong=\"H6258\"* nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* withheld from|strong=\"H3068\"* them|strong=\"H1992\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* intend to|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Come|strong=\"H3381\"*, let|strong=\"H3381\"*’s go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H8033\"* there|strong=\"H8033\"* confuse|strong=\"H1101\"* their|strong=\"H8085\"* language|strong=\"H8193\"*, that|strong=\"H8085\"* they|strong=\"H8033\"* may|strong=\"H8193\"* not|strong=\"H3808\"* understand|strong=\"H8085\"* one|strong=\"H3808\"* another|strong=\"H7453\"*’s speech|strong=\"H8193\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H5921\"* Yahweh|strong=\"H3068\"* scattered|strong=\"H6327\"* them|strong=\"H5921\"* abroad|strong=\"H6327\"* from|strong=\"H6440\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. They|strong=\"H8033\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* its|strong=\"H3605\"* name|strong=\"H8034\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Babel, because|strong=\"H3588\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* confused|strong=\"H1101\"* the|strong=\"H3605\"* language|strong=\"H8193\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. From|strong=\"H6440\"* there|strong=\"H8033\"*, Yahweh|strong=\"H3068\"* scattered|strong=\"H6327\"* them|strong=\"H5921\"* abroad|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*: Shem|strong=\"H8035\"* was|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Arpachshad two|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H3205\"* flood|strong=\"H3999\"*." + }, + { + "verseNum": 11, + "text": "Shem|strong=\"H8035\"* lived|strong=\"H2421\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H2568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Arpachshad, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Arpachshad lived|strong=\"H2421\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Shelah|strong=\"H7974\"*." + }, + { + "verseNum": 13, + "text": "Arpachshad lived|strong=\"H2421\"* four|strong=\"H7969\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Shelah|strong=\"H7974\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 14, + "text": "Shelah|strong=\"H7974\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 15, + "text": "Shelah|strong=\"H7974\"* lived|strong=\"H2421\"* four|strong=\"H7969\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Eber|strong=\"H5677\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 16, + "text": "Eber|strong=\"H5677\"* lived|strong=\"H2421\"* thirty-four|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Peleg|strong=\"H6389\"*." + }, + { + "verseNum": 17, + "text": "Eber|strong=\"H5677\"* lived|strong=\"H2421\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Peleg|strong=\"H6389\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 18, + "text": "Peleg|strong=\"H6389\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Reu|strong=\"H7466\"*." + }, + { + "verseNum": 19, + "text": "Peleg|strong=\"H6389\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* nine|strong=\"H8672\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Reu|strong=\"H7466\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "Reu|strong=\"H7466\"* lived|strong=\"H2421\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Serug|strong=\"H8286\"*." + }, + { + "verseNum": 21, + "text": "Reu|strong=\"H7466\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Serug|strong=\"H8286\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Serug|strong=\"H8286\"* lived|strong=\"H2421\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, and|strong=\"H7970\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Nahor|strong=\"H5152\"*." + }, + { + "verseNum": 23, + "text": "Serug|strong=\"H8286\"* lived|strong=\"H2421\"* two|strong=\"H2421\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 24, + "text": "Nahor|strong=\"H5152\"* lived|strong=\"H2421\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"*, and|strong=\"H6242\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Terah|strong=\"H8646\"*." + }, + { + "verseNum": 25, + "text": "Nahor|strong=\"H5152\"* lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* nineteen|strong=\"H8672\"* years|strong=\"H8141\"* after|strong=\"H8141\"* he|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Terah|strong=\"H8646\"*, and|strong=\"H3967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 26, + "text": "Terah|strong=\"H8646\"* lived|strong=\"H2421\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H8141\"* Abram, Nahor|strong=\"H5152\"*, and|strong=\"H8141\"* Haran|strong=\"H2039\"*." + }, + { + "verseNum": 27, + "text": "Now this is the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H3205\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H3205\"* Terah|strong=\"H8646\"*. Terah|strong=\"H8646\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Abram, Nahor|strong=\"H5152\"*, and|strong=\"H3205\"* Haran|strong=\"H2039\"*. Haran|strong=\"H2039\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Lot|strong=\"H3876\"*." + }, + { + "verseNum": 28, + "text": "Haran|strong=\"H2039\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* birth|strong=\"H4138\"*, in|strong=\"H5921\"* Ur of|strong=\"H6440\"* the|strong=\"H6440\"* Chaldees|strong=\"H3778\"*, while|strong=\"H5921\"* his|strong=\"H6440\"* father Terah|strong=\"H8646\"* was|strong=\"H6440\"* still alive." + }, + { + "verseNum": 29, + "text": "Abram and|strong=\"H1323\"* Nahor|strong=\"H5152\"* married|strong=\"H3947\"* wives. The|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Abram’s wife was|strong=\"H8034\"* Sarai|strong=\"H8297\"*, and|strong=\"H1323\"* the|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Nahor|strong=\"H5152\"*’s wife was|strong=\"H8034\"* Milcah|strong=\"H4435\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Haran|strong=\"H2039\"*, who|strong=\"H1323\"* was|strong=\"H8034\"* also|strong=\"H8034\"* the|strong=\"H3947\"* father of|strong=\"H1323\"* Iscah|strong=\"H3252\"*." + }, + { + "verseNum": 30, + "text": "Sarai|strong=\"H8297\"* was|strong=\"H1961\"* barren|strong=\"H6135\"*. She had|strong=\"H1961\"* no|strong=\"H1961\"* child|strong=\"H2056\"*." + }, + { + "verseNum": 31, + "text": "Terah|strong=\"H8646\"* took|strong=\"H3947\"* Abram his|strong=\"H3947\"* son|strong=\"H1121\"*, Lot|strong=\"H3876\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haran|strong=\"H2771\"*, his|strong=\"H3947\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Sarai|strong=\"H8297\"* his|strong=\"H3947\"* daughter-in-law|strong=\"H3618\"*, his|strong=\"H3947\"* son|strong=\"H1121\"* Abram’s wife. They|strong=\"H8033\"* went|strong=\"H3212\"* from|strong=\"H3318\"* Ur of|strong=\"H1121\"* the|strong=\"H3947\"* Chaldees|strong=\"H3778\"*, to|strong=\"H5704\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. They|strong=\"H8033\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Haran|strong=\"H2771\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Terah|strong=\"H8646\"* were|strong=\"H1961\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* five|strong=\"H2568\"* years|strong=\"H8141\"*. Terah|strong=\"H8646\"* died|strong=\"H4191\"* in|strong=\"H8141\"* Haran|strong=\"H2771\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3212\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3212\"* Abram, “Leave your|strong=\"H3068\"* country, and|strong=\"H3068\"* your|strong=\"H3068\"* relatives|strong=\"H4138\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"*, and|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H7200\"* land that|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H3068\"* show|strong=\"H7200\"* you|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H6213\"* will|strong=\"H1961\"* make|strong=\"H6213\"* of|strong=\"H8034\"* you|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*. I|strong=\"H6213\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* and|strong=\"H1419\"* make|strong=\"H6213\"* your|strong=\"H6213\"* name|strong=\"H8034\"* great|strong=\"H1419\"*. You|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3605\"* will|strong=\"H3605\"* bless|strong=\"H1288\"* those|strong=\"H3605\"* who|strong=\"H3605\"* bless|strong=\"H1288\"* you|strong=\"H3605\"*, and|strong=\"H3605\"* I|strong=\"H3605\"* will|strong=\"H3605\"* curse|strong=\"H7043\"* him|strong=\"H3605\"* who|strong=\"H3605\"* treats you|strong=\"H3605\"* with|strong=\"H3605\"* contempt|strong=\"H7043\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* earth will|strong=\"H3605\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* through|strong=\"H3605\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3318\"* Abram went|strong=\"H3212\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* told|strong=\"H1696\"* him|strong=\"H3318\"*. Lot|strong=\"H3876\"* went|strong=\"H3212\"* with|strong=\"H3068\"* him|strong=\"H3318\"*. Abram was|strong=\"H3068\"* seventy-five|strong=\"H7657\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* he|strong=\"H3068\"* departed|strong=\"H3212\"* from|strong=\"H3318\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 5, + "text": "Abram took|strong=\"H3947\"* Sarai|strong=\"H8297\"* his|strong=\"H3605\"* wife, Lot|strong=\"H3876\"* his|strong=\"H3605\"* brother’s son|strong=\"H1121\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* possessions|strong=\"H7399\"* that|strong=\"H3605\"* they|strong=\"H6213\"* had|strong=\"H1121\"* gathered|strong=\"H7408\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H1121\"* whom they|strong=\"H6213\"* had|strong=\"H1121\"* acquired|strong=\"H6213\"* in|strong=\"H6213\"* Haran|strong=\"H2771\"*, and|strong=\"H1121\"* they|strong=\"H6213\"* went|strong=\"H3212\"* to|strong=\"H3318\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. They|strong=\"H6213\"* entered|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Abram passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5704\"* land|strong=\"H4725\"* to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H4725\"* of|strong=\"H4725\"* Shechem|strong=\"H7927\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* oak of|strong=\"H4725\"* Moreh|strong=\"H4176\"*. At|strong=\"H5704\"* that|strong=\"H3669\"* time|strong=\"H5704\"*, Canaanites|strong=\"H3669\"* were|strong=\"H3669\"* in|strong=\"H4725\"* the|strong=\"H5704\"* land|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Abram and|strong=\"H3068\"* said, “I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.”+ 12:7 or, seed*" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8033\"* left|strong=\"H5186\"* from|strong=\"H3068\"* there|strong=\"H8033\"* to|strong=\"H3068\"* go|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* on|strong=\"H3068\"* the|strong=\"H3068\"* east|strong=\"H6924\"* of|strong=\"H3068\"* Bethel|strong=\"H1008\"* and|strong=\"H3068\"* pitched|strong=\"H5186\"* his|strong=\"H3068\"* tent, having Bethel|strong=\"H1008\"* on|strong=\"H3068\"* the|strong=\"H3068\"* west|strong=\"H3220\"*, and|strong=\"H3068\"* Ai|strong=\"H5857\"* on|strong=\"H3068\"* the|strong=\"H3068\"* east|strong=\"H6924\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 9, + "text": "Abram traveled|strong=\"H5265\"*, still|strong=\"H1980\"* going|strong=\"H1980\"* on|strong=\"H1980\"* toward|strong=\"H1980\"* the|strong=\"H1980\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H1481\"* the|strong=\"H3588\"* land. Abram went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"* to|strong=\"H3381\"* live|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner there|strong=\"H8033\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H3515\"* in|strong=\"H1481\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* enter Egypt|strong=\"H4714\"*, he|strong=\"H3588\"* said to|strong=\"H1961\"* Sarai|strong=\"H8297\"* his|strong=\"H3045\"* wife, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4714\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* woman|strong=\"H4758\"* to|strong=\"H1961\"* look|strong=\"H2009\"* at|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* see|strong=\"H7200\"* you|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* say, ‘This|strong=\"H2063\"* is|strong=\"H1961\"* his|strong=\"H7200\"* wife.’ They|strong=\"H3588\"* will|strong=\"H1961\"* kill|strong=\"H2026\"* me|strong=\"H7200\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* save|strong=\"H2421\"* you|strong=\"H3588\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 13, + "text": "Please|strong=\"H4994\"* say that|strong=\"H5315\"* you|strong=\"H5315\"* are|strong=\"H5315\"* my|strong=\"H2421\"* sister, that|strong=\"H5315\"* it|strong=\"H3190\"* may|strong=\"H4994\"* be|strong=\"H5315\"* well|strong=\"H3190\"* with|strong=\"H5315\"* me|strong=\"H4994\"* for|strong=\"H4616\"* your|strong=\"H3190\"* sake|strong=\"H4616\"*, and|strong=\"H5315\"* that|strong=\"H5315\"* my|strong=\"H2421\"* soul|strong=\"H5315\"* may|strong=\"H4994\"* live|strong=\"H2421\"* because|strong=\"H4616\"* of|strong=\"H5315\"* you|strong=\"H5315\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* Abram had|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, some Egyptians|strong=\"H4714\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* woman was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H3303\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* princes|strong=\"H8269\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* saw|strong=\"H7200\"* her|strong=\"H3947\"*, and|strong=\"H1004\"* praised|strong=\"H1984\"* her|strong=\"H3947\"* to|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H1004\"* the|strong=\"H7200\"* woman|strong=\"H1004\"* was|strong=\"H1004\"* taken|strong=\"H3947\"* into|strong=\"H3947\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1241\"* dealt well|strong=\"H3190\"* with|strong=\"H1241\"* Abram for|strong=\"H5650\"* her|strong=\"H3190\"* sake|strong=\"H5668\"*. He|strong=\"H1241\"* had|strong=\"H1961\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, male|strong=\"H5650\"* donkeys|strong=\"H2543\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"*, female|strong=\"H8198\"* servants|strong=\"H5650\"*, female|strong=\"H8198\"* donkeys|strong=\"H2543\"*, and|strong=\"H5650\"* camels|strong=\"H1581\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* afflicted|strong=\"H5060\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"* with|strong=\"H1004\"* great|strong=\"H1419\"* plagues|strong=\"H5061\"* because|strong=\"H5921\"* of|strong=\"H1004\"* Sarai|strong=\"H8297\"*, Abram’s wife." + }, + { + "verseNum": 18, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* Abram and|strong=\"H6213\"* said|strong=\"H7121\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* this|strong=\"H2063\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H5046\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H3588\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* your|strong=\"H6213\"* wife?" + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H3947\"* say, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3947\"* sister,’ so|strong=\"H3947\"* that|strong=\"H1931\"* I|strong=\"H2009\"* took|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H3212\"* be|strong=\"H6258\"* my|strong=\"H3947\"* wife? Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, see|strong=\"H2009\"* your|strong=\"H3947\"* wife, take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*.”" + }, + { + "verseNum": 20, + "text": "Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* men|strong=\"H3605\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* escorted|strong=\"H7971\"* him|strong=\"H5921\"* away|strong=\"H7971\"* with|strong=\"H5921\"* his|strong=\"H3605\"* wife and|strong=\"H7971\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H6547\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Abram went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3605\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"*—he|strong=\"H1931\"*, his|strong=\"H3605\"* wife, all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H4714\"*, and|strong=\"H4714\"* Lot|strong=\"H3876\"* with|strong=\"H5973\"* him|strong=\"H5973\"*—into|strong=\"H5927\"* the|strong=\"H3605\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 2, + "text": "Abram was|strong=\"H3966\"* very|strong=\"H3966\"* rich|strong=\"H3513\"* in|strong=\"H3701\"* livestock|strong=\"H4735\"*, in|strong=\"H3701\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* in|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5704\"* went|strong=\"H3212\"* on|strong=\"H1961\"* his|strong=\"H1961\"* journeys|strong=\"H4550\"* from|strong=\"H5704\"* the|strong=\"H5704\"* South|strong=\"H5045\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Bethel|strong=\"H1008\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H4725\"* where|strong=\"H8033\"* his|strong=\"H1961\"* tent had|strong=\"H1961\"* been|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* beginning|strong=\"H8462\"*, between|strong=\"H5704\"* Bethel|strong=\"H1008\"* and|strong=\"H3212\"* Ai|strong=\"H5857\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"H3068\"* the|strong=\"H6213\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* had|strong=\"H3068\"* made|strong=\"H6213\"* there|strong=\"H8033\"* at|strong=\"H3068\"* the|strong=\"H6213\"* first|strong=\"H7223\"*. There|strong=\"H8033\"* Abram called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 5, + "text": "Lot|strong=\"H3876\"* also|strong=\"H1571\"*, who|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Abram, had|strong=\"H1961\"* flocks|strong=\"H6629\"*, herds|strong=\"H1241\"*, and|strong=\"H1980\"* tents." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* land was|strong=\"H1961\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* them|strong=\"H5375\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* might|strong=\"H3201\"* live|strong=\"H3427\"* together|strong=\"H3162\"*; for|strong=\"H3588\"* their|strong=\"H5375\"* possessions|strong=\"H7399\"* were|strong=\"H1961\"* so|strong=\"H1961\"* great|strong=\"H7227\"* that|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t live|strong=\"H3427\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* strife|strong=\"H7379\"* between|strong=\"H3427\"* the|strong=\"H1961\"* herdsmen|strong=\"H4735\"* of|strong=\"H3427\"* Abram’s livestock|strong=\"H4735\"* and|strong=\"H3427\"* the|strong=\"H1961\"* herdsmen|strong=\"H4735\"* of|strong=\"H3427\"* Lot|strong=\"H3876\"*’s livestock|strong=\"H4735\"*. The|strong=\"H1961\"* Canaanites|strong=\"H3669\"* and|strong=\"H3427\"* the|strong=\"H1961\"* Perizzites|strong=\"H6522\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1961\"* land at|strong=\"H3427\"* that|strong=\"H3669\"* time|strong=\"H1961\"*." + }, + { + "verseNum": 8, + "text": "Abram said to|strong=\"H1961\"* Lot|strong=\"H3876\"*, “Please|strong=\"H4994\"*, let|strong=\"H4994\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H1961\"* strife|strong=\"H4808\"* between you|strong=\"H3588\"* and|strong=\"H4994\"* me|strong=\"H4994\"*, and|strong=\"H4994\"* between your|strong=\"H3588\"* herdsmen|strong=\"H7473\"* and|strong=\"H4994\"* my|strong=\"H1961\"* herdsmen|strong=\"H7473\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H1961\"* relatives." + }, + { + "verseNum": 9, + "text": "Isn’t the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*? Please|strong=\"H4994\"* separate|strong=\"H6504\"* yourself|strong=\"H3231\"* from|strong=\"H6440\"* me|strong=\"H6440\"*. If you|strong=\"H6440\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, then|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H3808\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"*. Or|strong=\"H3808\"* if you|strong=\"H6440\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, then|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H3808\"* go|strong=\"H8041\"* to|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"*.”" + }, + { + "verseNum": 10, + "text": "Lot|strong=\"H3876\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H3603\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* well-watered everywhere|strong=\"H3605\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H7843\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* Gomorrah|strong=\"H6017\"*, like|strong=\"H3068\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, like|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, as|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 11, + "text": "So|strong=\"H5921\"* Lot|strong=\"H3876\"* chose the|strong=\"H3605\"* Plain|strong=\"H3603\"* of|strong=\"H3603\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* for|strong=\"H5921\"* himself|strong=\"H6504\"*. Lot|strong=\"H3876\"* traveled|strong=\"H5265\"* east|strong=\"H6924\"*, and|strong=\"H5265\"* they|strong=\"H5921\"* separated|strong=\"H6504\"* themselves|strong=\"H6504\"* from|strong=\"H5265\"* one|strong=\"H3605\"* another." + }, + { + "verseNum": 12, + "text": "Abram lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*, and|strong=\"H5892\"* Lot|strong=\"H3876\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H5704\"* plain|strong=\"H3603\"*, and|strong=\"H5892\"* moved his|strong=\"H3427\"* tent as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Sodom|strong=\"H5467\"*." + }, + { + "verseNum": 13, + "text": "Now the|strong=\"H3068\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"* were|strong=\"H7451\"* exceedingly|strong=\"H3966\"* wicked|strong=\"H7451\"* and|strong=\"H3068\"* sinners|strong=\"H2400\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Abram, after|strong=\"H4480\"* Lot|strong=\"H3876\"* was|strong=\"H3068\"* separated|strong=\"H6504\"* from|strong=\"H4480\"* him|strong=\"H7200\"*, “Now|strong=\"H4994\"*, lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* look|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H5973\"* are|strong=\"H5869\"*, northward|strong=\"H6828\"* and|strong=\"H3068\"* southward|strong=\"H5045\"* and|strong=\"H3068\"* eastward|strong=\"H6924\"* and|strong=\"H3068\"* westward|strong=\"H3220\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land which|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* to|strong=\"H5704\"* you|strong=\"H3588\"* and|strong=\"H5769\"* to|strong=\"H5704\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* will|strong=\"H1571\"* make|strong=\"H7760\"* your|strong=\"H7760\"* offspring|strong=\"H2233\"* as|strong=\"H1571\"* the|strong=\"H7760\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H7760\"* earth|strong=\"H6083\"*, so|strong=\"H1571\"* that|strong=\"H1571\"* if|strong=\"H7760\"* a|strong=\"H3068\"* man can|strong=\"H3201\"* count|strong=\"H4487\"* the|strong=\"H7760\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H7760\"* earth|strong=\"H6083\"*, then|strong=\"H1571\"* your|strong=\"H7760\"* offspring|strong=\"H2233\"* may|strong=\"H3201\"* also|strong=\"H1571\"* be|strong=\"H1571\"* counted|strong=\"H4487\"*." + }, + { + "verseNum": 17, + "text": "Arise|strong=\"H6965\"*, walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3588\"* land in|strong=\"H1980\"* its|strong=\"H5414\"* length and|strong=\"H1980\"* in|strong=\"H1980\"* its|strong=\"H5414\"* width|strong=\"H7341\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 18, + "text": "Abram moved his|strong=\"H3068\"* tent, and|strong=\"H3068\"* came|strong=\"H3068\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* by|strong=\"H3068\"* the|strong=\"H3068\"* oaks of|strong=\"H3068\"* Mamre|strong=\"H4471\"*, which|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3427\"* Hebron|strong=\"H2275\"*, and|strong=\"H3068\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H4428\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Amraphel, king|strong=\"H4428\"* of|strong=\"H4428\"* Shinar|strong=\"H8152\"*; Arioch, king|strong=\"H4428\"* of|strong=\"H4428\"* Ellasar; Chedorlaomer|strong=\"H3540\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*; and|strong=\"H4428\"* Tidal|strong=\"H8413\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Goiim|strong=\"H1471\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H1931\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H6213\"* Bera|strong=\"H1298\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*; Birsha|strong=\"H1306\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Gomorrah|strong=\"H6017\"*; Shinab|strong=\"H8134\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Admah; Shemeber|strong=\"H8038\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Zeboiim|strong=\"H6636\"*; and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bela|strong=\"H1106\"* (also|strong=\"H6213\"* called Zoar|strong=\"H6820\"*)." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* these|strong=\"H1931\"* joined|strong=\"H2266\"* together|strong=\"H2266\"* in|strong=\"H3220\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Siddim|strong=\"H7708\"* (also|strong=\"H1931\"* called the|strong=\"H3605\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*)." + }, + { + "verseNum": 4, + "text": "They|strong=\"H8141\"* served|strong=\"H5647\"* Chedorlaomer|strong=\"H3540\"* for|strong=\"H8141\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H5647\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* they|strong=\"H8141\"* rebelled|strong=\"H4775\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H8141\"* the|strong=\"H5221\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* Chedorlaomer|strong=\"H3540\"* and|strong=\"H4428\"* the|strong=\"H5221\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H4428\"* him|strong=\"H5221\"* came|strong=\"H4428\"* and|strong=\"H4428\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Rephaim|strong=\"H7497\"* in|strong=\"H8141\"* Ashteroth Karnaim|strong=\"H6255\"*, the|strong=\"H5221\"* Zuzim|strong=\"H2104\"* in|strong=\"H8141\"* Ham|strong=\"H1990\"*, the|strong=\"H5221\"* Emim in|strong=\"H8141\"* Shaveh|strong=\"H7740\"* Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H2022\"* the|strong=\"H5921\"* Horites|strong=\"H2752\"* in|strong=\"H5921\"* their|strong=\"H5921\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, to|strong=\"H5704\"* El Paran, which|strong=\"H2022\"* is|strong=\"H4057\"* by|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* En Mishpat (also|strong=\"H1571\"* called Kadesh|strong=\"H6946\"*), and|strong=\"H7725\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H3427\"* the|strong=\"H3605\"* Amalekites|strong=\"H6003\"*, and|strong=\"H7725\"* also|strong=\"H1571\"* the|strong=\"H3605\"* Amorites, that|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Hazazon Tamar." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*, and|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gomorrah|strong=\"H6017\"*, the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Admah, the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zeboiim|strong=\"H6636\"*, and|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bela|strong=\"H1106\"* (also|strong=\"H4428\"* called Zoar|strong=\"H6820\"*) went|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H4428\"* they|strong=\"H1931\"* set|strong=\"H6186\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4428\"* array|strong=\"H6186\"* against|strong=\"H4421\"* them|strong=\"H3318\"* in|strong=\"H4428\"* the|strong=\"H3318\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Siddim|strong=\"H7708\"*" + }, + { + "verseNum": 9, + "text": "against|strong=\"H1471\"* Chedorlaomer|strong=\"H3540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*, Tidal|strong=\"H8413\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Goiim|strong=\"H1471\"*, Amraphel king|strong=\"H4428\"* of|strong=\"H4428\"* Shinar|strong=\"H8152\"*, and|strong=\"H4428\"* Arioch king|strong=\"H4428\"* of|strong=\"H4428\"* Ellasar; four kings|strong=\"H4428\"* against|strong=\"H1471\"* the|strong=\"H1471\"* five|strong=\"H2568\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H4428\"* the|strong=\"H8033\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Siddim|strong=\"H7708\"* was|strong=\"H4428\"* full of|strong=\"H4428\"* tar|strong=\"H2564\"* pits|strong=\"H5127\"*; and|strong=\"H4428\"* the|strong=\"H8033\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* and|strong=\"H4428\"* Gomorrah|strong=\"H6017\"* fled|strong=\"H5127\"*, and|strong=\"H4428\"* some|strong=\"H8033\"* fell|strong=\"H5307\"* there|strong=\"H8033\"*. Those who|strong=\"H4428\"* remained|strong=\"H7604\"* fled|strong=\"H5127\"* to|strong=\"H4428\"* the|strong=\"H8033\"* hills|strong=\"H2022\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goods|strong=\"H7399\"* of|strong=\"H3605\"* Sodom|strong=\"H5467\"* and|strong=\"H3212\"* Gomorrah|strong=\"H6017\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* their|strong=\"H3605\"* food, and|strong=\"H3212\"* went|strong=\"H3212\"* their|strong=\"H3605\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H1931\"* took|strong=\"H3947\"* Lot|strong=\"H3876\"*, Abram’s brother’s son|strong=\"H1121\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Sodom|strong=\"H5467\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* goods|strong=\"H7399\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* had|strong=\"H1167\"* escaped|strong=\"H6412\"* came and|strong=\"H1285\"* told|strong=\"H5046\"* Abram, the|strong=\"H5046\"* Hebrew|strong=\"H5680\"*. At|strong=\"H7931\"* that|strong=\"H1931\"* time, he|strong=\"H1931\"* lived|strong=\"H7931\"* by|strong=\"H1167\"* the|strong=\"H5046\"* oaks of|strong=\"H1167\"* Mamre|strong=\"H4471\"*, the|strong=\"H5046\"* Amorite, brother of|strong=\"H1167\"* Eshcol and|strong=\"H1285\"* brother of|strong=\"H1167\"* Aner|strong=\"H6063\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* allies|strong=\"H1167\"* of|strong=\"H1167\"* Abram." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* Abram heard|strong=\"H8085\"* that|strong=\"H3588\"* his|strong=\"H8085\"* relative was|strong=\"H1004\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, he|strong=\"H3588\"* led|strong=\"H7617\"* out|strong=\"H7324\"* his|strong=\"H8085\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* eighteen|strong=\"H8083\"* trained|strong=\"H2593\"* men|strong=\"H2593\"*, born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H8085\"* house|strong=\"H1004\"*, and|strong=\"H3967\"* pursued|strong=\"H7291\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* divided|strong=\"H2505\"* himself|strong=\"H1931\"* against|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* night|strong=\"H3915\"*, he|strong=\"H1931\"* and|strong=\"H5650\"* his|strong=\"H5921\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, and|strong=\"H5650\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"* to|strong=\"H5704\"* Hobah|strong=\"H2327\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H8040\"* of|strong=\"H5650\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goods|strong=\"H7399\"*, and|strong=\"H7725\"* also|strong=\"H1571\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H3605\"* relative Lot|strong=\"H3876\"* and|strong=\"H7725\"* his|strong=\"H3605\"* goods|strong=\"H7399\"*, and|strong=\"H7725\"* the|strong=\"H3605\"* women also|strong=\"H1571\"*, and|strong=\"H7725\"* the|strong=\"H3605\"* other|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* him|strong=\"H5221\"* after|strong=\"H3318\"* his|strong=\"H7725\"* return|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"* of|strong=\"H4428\"* Chedorlaomer|strong=\"H3540\"* and|strong=\"H7725\"* the|strong=\"H5221\"* kings|strong=\"H4428\"* who|strong=\"H1931\"* were|strong=\"H4428\"* with|strong=\"H3318\"* him|strong=\"H5221\"*, at|strong=\"H4428\"* the|strong=\"H5221\"* valley|strong=\"H6010\"* of|strong=\"H4428\"* Shaveh|strong=\"H7740\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, the|strong=\"H5221\"* King|strong=\"H4428\"*’s Valley|strong=\"H6010\"*)." + }, + { + "verseNum": 18, + "text": "Melchizedek|strong=\"H4442\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Salem|strong=\"H8004\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* bread|strong=\"H3899\"* and|strong=\"H4428\"* wine|strong=\"H3196\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* priest|strong=\"H3548\"* of|strong=\"H4428\"* God Most|strong=\"H5945\"* High|strong=\"H5945\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H7069\"* blessed|strong=\"H1288\"* him|strong=\"H1288\"*, and|strong=\"H8064\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H1288\"* Abram of|strong=\"H8064\"* God|strong=\"H8064\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*, possessor|strong=\"H7069\"* of|strong=\"H8064\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3027\"* God|strong=\"H5414\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*, who|strong=\"H3605\"* has|strong=\"H3027\"* delivered|strong=\"H5414\"* your|strong=\"H3605\"* enemies|strong=\"H6862\"* into|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"* said to|strong=\"H5414\"* Abram, “Give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5315\"*, and|strong=\"H4428\"* take|strong=\"H3947\"* the|strong=\"H5414\"* goods|strong=\"H7399\"* for|strong=\"H4428\"* yourself|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Abram said to|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sodom|strong=\"H5467\"*, “I|strong=\"H3027\"* have|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, God|strong=\"H3068\"* Most|strong=\"H5945\"* High|strong=\"H7311\"*, possessor|strong=\"H7069\"* of|strong=\"H4428\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 23, + "text": "that|strong=\"H3605\"* I|strong=\"H5704\"* will|strong=\"H3808\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* thread|strong=\"H2339\"* nor|strong=\"H3808\"* a|strong=\"H3068\"* sandal|strong=\"H5275\"* strap|strong=\"H8288\"* nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* yours, lest you|strong=\"H3605\"* should say, ‘I|strong=\"H5704\"* have|strong=\"H3605\"* made|strong=\"H6238\"* Abram rich|strong=\"H6238\"*.’" + }, + { + "verseNum": 24, + "text": "I|strong=\"H5288\"* will|strong=\"H5288\"* accept|strong=\"H3947\"* nothing|strong=\"H1107\"* from|strong=\"H1980\"* you|strong=\"H3947\"* except|strong=\"H7535\"* that|strong=\"H5288\"* which|strong=\"H1992\"* the|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* have|strong=\"H5288\"* eaten, and|strong=\"H1980\"* the|strong=\"H3947\"* portion|strong=\"H2506\"* of|strong=\"H2506\"* the|strong=\"H3947\"* men|strong=\"H5288\"* who|strong=\"H1992\"* went|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H3947\"*: Aner|strong=\"H6063\"*, Eshcol, and|strong=\"H1980\"* Mamre|strong=\"H4471\"*. Let|strong=\"H1980\"* them|strong=\"H1992\"* take|strong=\"H3947\"* their|strong=\"H3947\"* portion|strong=\"H2506\"*.”" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Abram in|strong=\"H3068\"* a|strong=\"H3068\"* vision|strong=\"H4236\"*, saying|strong=\"H1697\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, Abram. I|strong=\"H1697\"* am|strong=\"H1961\"* your|strong=\"H3068\"* shield|strong=\"H4043\"*, your|strong=\"H3068\"* exceedingly|strong=\"H3966\"* great|strong=\"H3966\"* reward|strong=\"H7939\"*.”" + }, + { + "verseNum": 2, + "text": "Abram said, “Lord|strong=\"H3069\"*+ 15:2 The word translated “Lord” is “Adonai”.* Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* will|strong=\"H1121\"* you|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"*, since I|strong=\"H5414\"* go|strong=\"H1980\"* childless|strong=\"H6185\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H1121\"* inherit my|strong=\"H5414\"* estate|strong=\"H1004\"* is|strong=\"H1931\"* Eliezer of|strong=\"H1121\"* Damascus|strong=\"H1834\"*?”" + }, + { + "verseNum": 3, + "text": "Abram said, “Behold|strong=\"H2009\"*, you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* no|strong=\"H3808\"* children|strong=\"H1121\"* to|strong=\"H5414\"* me|strong=\"H5414\"*: and|strong=\"H1121\"*, behold|strong=\"H2009\"*, one|strong=\"H3808\"* born|strong=\"H1121\"* in|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"* is|strong=\"H2009\"* my|strong=\"H5414\"* heir|strong=\"H3423\"*.”" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* man|strong=\"H2088\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* your|strong=\"H3068\"* heir|strong=\"H3423\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H4578\"* body|strong=\"H4578\"* will|strong=\"H3068\"* be|strong=\"H3808\"* your|strong=\"H3068\"* heir|strong=\"H3423\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* him|strong=\"H3318\"* outside|strong=\"H2351\"*, and|strong=\"H8064\"* said|strong=\"H3318\"*, “Look|strong=\"H5027\"* now|strong=\"H4994\"* toward|strong=\"H3318\"* the|strong=\"H3541\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* count|strong=\"H5608\"* the|strong=\"H3541\"* stars|strong=\"H3556\"*, if|strong=\"H1961\"* you|strong=\"H4994\"* are|strong=\"H8064\"* able|strong=\"H3201\"* to|strong=\"H3318\"* count|strong=\"H5608\"* them|strong=\"H3318\"*.” He|strong=\"H3201\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abram, “So|strong=\"H3541\"* your|strong=\"H4994\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* believed in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* credited|strong=\"H2803\"* it|strong=\"H2803\"* to|strong=\"H3068\"* him|strong=\"H2803\"* for|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abram, “I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Ur of|strong=\"H3068\"* the|strong=\"H5414\"* Chaldees|strong=\"H3778\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H3318\"* inherit|strong=\"H3423\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, how|strong=\"H4100\"* will|strong=\"H4100\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4100\"* inherit|strong=\"H3423\"* it|strong=\"H3588\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H5795\"* said to|strong=\"H3947\"* him|strong=\"H3947\"*, “Bring|strong=\"H3947\"* me|strong=\"H3947\"* a|strong=\"H3068\"* heifer|strong=\"H5697\"* three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* female|strong=\"H5795\"* goat|strong=\"H5795\"* three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* ram three|strong=\"H8027\"* years old|strong=\"H8027\"*, a|strong=\"H3068\"* turtledove|strong=\"H8449\"*, and|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1469\"* pigeon|strong=\"H1469\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3605\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3947\"*, and|strong=\"H3947\"* divided|strong=\"H1334\"* them|strong=\"H5414\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"*, and|strong=\"H3947\"* laid|strong=\"H5414\"* each|strong=\"H3605\"* half|strong=\"H1335\"* opposite|strong=\"H7125\"* the|strong=\"H3605\"* other|strong=\"H7453\"*; but|strong=\"H3808\"* he|strong=\"H3605\"* didn’t divide|strong=\"H5414\"* the|strong=\"H3605\"* birds|strong=\"H6833\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* birds|strong=\"H5861\"* of|strong=\"H5921\"* prey|strong=\"H5861\"* came|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* carcasses|strong=\"H6297\"*, and|strong=\"H3381\"* Abram drove|strong=\"H5380\"* them|strong=\"H5921\"* away|strong=\"H5380\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* was|strong=\"H1961\"* going|strong=\"H5307\"* down|strong=\"H5307\"*, a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* Abram. Now|strong=\"H1961\"* terror and|strong=\"H1419\"* great|strong=\"H1419\"* darkness|strong=\"H2825\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3588\"* said to|strong=\"H1961\"* Abram, “Know|strong=\"H3045\"* for|strong=\"H3588\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3045\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* live|strong=\"H8141\"* as|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H8141\"* a|strong=\"H3068\"* land that|strong=\"H3588\"* is|strong=\"H1961\"* not|strong=\"H3808\"* theirs, and|strong=\"H3967\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* them|strong=\"H1961\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* afflict|strong=\"H6031\"* them|strong=\"H1961\"* four hundred|strong=\"H3967\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3651\"* will|strong=\"H1471\"* also|strong=\"H1571\"* judge|strong=\"H1777\"* that|strong=\"H1471\"* nation|strong=\"H1471\"*, whom they|strong=\"H3651\"* will|strong=\"H1471\"* serve|strong=\"H5647\"*. Afterward they|strong=\"H3651\"* will|strong=\"H1471\"* come|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* great|strong=\"H1419\"* wealth|strong=\"H7399\"*;" + }, + { + "verseNum": 15, + "text": "but you|strong=\"H2896\"* will|strong=\"H2896\"* go|strong=\"H7872\"* to|strong=\"H2896\"* your|strong=\"H6912\"* fathers in|strong=\"H6912\"* peace|strong=\"H7965\"*. You|strong=\"H2896\"* will|strong=\"H2896\"* be|strong=\"H7965\"* buried|strong=\"H6912\"* at|strong=\"H6912\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H7872\"* age|strong=\"H7872\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H7725\"* the|strong=\"H3588\"* fourth|strong=\"H7243\"* generation|strong=\"H1755\"* they|strong=\"H3588\"* will|strong=\"H3808\"* come|strong=\"H7725\"* here|strong=\"H2008\"* again|strong=\"H7725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H5771\"* the|strong=\"H3588\"* Amorite is|strong=\"H5771\"* not|strong=\"H3808\"* yet|strong=\"H3588\"* full|strong=\"H8003\"*.”" + }, + { + "verseNum": 17, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H5674\"* that|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H5674\"* sun|strong=\"H8121\"* went|strong=\"H5674\"* down, and|strong=\"H5674\"* it|strong=\"H1961\"* was|strong=\"H1961\"* dark|strong=\"H5939\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* smoking|strong=\"H6227\"* furnace|strong=\"H8574\"* and|strong=\"H5674\"* a|strong=\"H3068\"* flaming torch|strong=\"H3940\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* these pieces|strong=\"H1506\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* Abram, saying, “I|strong=\"H3117\"* have|strong=\"H3068\"* given|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H5704\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, from|strong=\"H3772\"* the|strong=\"H5414\"* river|strong=\"H5104\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* the|strong=\"H5414\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H5414\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*:" + }, + { + "verseNum": 19, + "text": "the land of the Kenites|strong=\"H7017\"*, the Kenizzites|strong=\"H7074\"*, the Kadmonites|strong=\"H6935\"*," + }, + { + "verseNum": 20, + "text": "the Hittites|strong=\"H2850\"*, the Perizzites|strong=\"H6522\"*, the Rephaim|strong=\"H7497\"*," + }, + { + "verseNum": 21, + "text": "the|strong=\"H2983\"* Amorites, the|strong=\"H2983\"* Canaanites|strong=\"H3669\"*, the|strong=\"H2983\"* Girgashites|strong=\"H1622\"*, and|strong=\"H2983\"* the|strong=\"H2983\"* Jebusites|strong=\"H2983\"*.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now Sarai|strong=\"H8297\"*, Abram’s wife, bore|strong=\"H3205\"* him|strong=\"H3205\"* no|strong=\"H3808\"* children|strong=\"H3205\"*. She|strong=\"H3808\"* had|strong=\"H3205\"* a|strong=\"H3068\"* servant|strong=\"H8198\"*, an|strong=\"H3205\"* Egyptian|strong=\"H4713\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Hagar|strong=\"H1904\"*." + }, + { + "verseNum": 2, + "text": "Sarai|strong=\"H8297\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Abram, “See|strong=\"H2009\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* restrained|strong=\"H6113\"* me|strong=\"H4994\"* from|strong=\"H4480\"* bearing|strong=\"H3205\"*. Please|strong=\"H4994\"* go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* my|strong=\"H8085\"* servant|strong=\"H8198\"*. It|strong=\"H1129\"* may|strong=\"H4994\"* be|strong=\"H3068\"* that|strong=\"H8085\"* I|strong=\"H2009\"* will|strong=\"H3068\"* obtain|strong=\"H1129\"* children|strong=\"H3205\"* by|strong=\"H3068\"* her|strong=\"H1129\"*.” Abram listened|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Sarai|strong=\"H8297\"*." + }, + { + "verseNum": 3, + "text": "Sarai|strong=\"H8297\"*, Abram’s wife, took|strong=\"H3947\"* Hagar|strong=\"H1904\"* the|strong=\"H5414\"* Egyptian|strong=\"H4713\"*, her|strong=\"H5414\"* servant|strong=\"H8198\"*, after|strong=\"H7093\"* Abram had|strong=\"H5414\"* lived|strong=\"H3427\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H8141\"* Canaan|strong=\"H3667\"*, and|strong=\"H8141\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* Abram her|strong=\"H5414\"* husband to|strong=\"H5414\"* be|strong=\"H5414\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* went|strong=\"H7200\"* in|strong=\"H5869\"* to|strong=\"H7200\"* Hagar|strong=\"H1904\"*, and|strong=\"H5869\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"*. When|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* conceived|strong=\"H2029\"*, her|strong=\"H7200\"* mistress|strong=\"H1404\"* was|strong=\"H1404\"* despised|strong=\"H7043\"* in|strong=\"H5869\"* her|strong=\"H7200\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 5, + "text": "Sarai|strong=\"H8297\"* said to|strong=\"H3068\"* Abram, “This|strong=\"H5414\"* wrong|strong=\"H2555\"* is|strong=\"H3068\"* your|strong=\"H3068\"* fault. I|strong=\"H3588\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* servant|strong=\"H8198\"* into|strong=\"H8199\"* your|strong=\"H3068\"* bosom|strong=\"H2436\"*, and|strong=\"H3068\"* when|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3068\"* conceived|strong=\"H2029\"*, she|strong=\"H3588\"* despised|strong=\"H7043\"* me|strong=\"H5414\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* me|strong=\"H5414\"* and|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H2009\"* Abram said to|strong=\"H6213\"* Sarai|strong=\"H8297\"*, “Behold|strong=\"H2009\"*, your|strong=\"H6440\"* maid|strong=\"H8198\"* is|strong=\"H3027\"* in|strong=\"H6213\"* your|strong=\"H6440\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* to|strong=\"H6213\"* her|strong=\"H6213\"* whatever|strong=\"H2896\"* is|strong=\"H3027\"* good|strong=\"H2896\"* in|strong=\"H6213\"* your|strong=\"H6440\"* eyes|strong=\"H5869\"*.” Sarai|strong=\"H8297\"* dealt|strong=\"H6213\"* harshly|strong=\"H6031\"* with|strong=\"H6213\"* her|strong=\"H6213\"*, and|strong=\"H3027\"* she|strong=\"H6440\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* her|strong=\"H6213\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* found|strong=\"H4672\"* her|strong=\"H5921\"* by|strong=\"H5921\"* a|strong=\"H3068\"* fountain|strong=\"H5869\"* of|strong=\"H3068\"* water|strong=\"H4325\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* fountain|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H3068\"* Shur|strong=\"H7793\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6440\"* said, “Hagar|strong=\"H1904\"*, Sarai|strong=\"H8297\"*’s servant|strong=\"H8198\"*, where|strong=\"H2088\"* did you|strong=\"H6440\"* come|strong=\"H3212\"* from|strong=\"H6440\"*? Where|strong=\"H2088\"* are|strong=\"H6440\"* you|strong=\"H6440\"* going|strong=\"H3212\"*?”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H7725\"* her|strong=\"H7725\"*, “Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H3068\"* mistress|strong=\"H1404\"*, and|strong=\"H3068\"* submit|strong=\"H6031\"* yourself|strong=\"H6031\"* under|strong=\"H8478\"* her|strong=\"H7725\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* her|strong=\"H7235\"*, “I|strong=\"H3808\"* will|strong=\"H3068\"* greatly|strong=\"H7235\"* multiply|strong=\"H7235\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* for|strong=\"H3068\"* multitude|strong=\"H7230\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H7121\"* to|strong=\"H3068\"* her|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* with|strong=\"H3068\"* child|strong=\"H2030\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Ishmael|strong=\"H3458\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* affliction|strong=\"H6040\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* among|strong=\"H5921\"* men|strong=\"H3605\"*. His|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H5921\"* every|strong=\"H3605\"* man|strong=\"H3605\"*, and|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s hand|strong=\"H3027\"* against|strong=\"H5921\"* him|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* live|strong=\"H7931\"* opposed|strong=\"H5921\"* to|strong=\"H1961\"* all|strong=\"H3605\"* of|strong=\"H3027\"* his|strong=\"H3605\"* brothers.”" + }, + { + "verseNum": 13, + "text": "She|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H7200\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H7200\"*, “You|strong=\"H3588\"* are|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* sees|strong=\"H7200\"*,” for|strong=\"H3588\"* she|strong=\"H3588\"* said|strong=\"H1696\"*, “Have|strong=\"H3068\"* I|strong=\"H3588\"* even|strong=\"H1571\"* stayed alive|strong=\"H7200\"* after|strong=\"H3588\"* seeing|strong=\"H7200\"* him|strong=\"H7121\"*?”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* well|strong=\"H3651\"* was|strong=\"H3651\"* called|strong=\"H7121\"* Beer Lahai Roi.+ 16:14 Beer Lahai Roi means “well of the one who lives and sees me”.* Behold|strong=\"H2009\"*, it|strong=\"H7121\"* is|strong=\"H2009\"* between|strong=\"H5921\"* Kadesh|strong=\"H6946\"* and|strong=\"H7121\"* Bered|strong=\"H1260\"*." + }, + { + "verseNum": 15, + "text": "Hagar|strong=\"H1904\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* for|strong=\"H7121\"* Abram. Abram called|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* son|strong=\"H1121\"*, whom|strong=\"H7121\"* Hagar|strong=\"H1904\"* bore|strong=\"H3205\"*, Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 16, + "text": "Abram was|strong=\"H1121\"* eighty-six|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* Hagar|strong=\"H1904\"* bore|strong=\"H3205\"* Ishmael|strong=\"H3458\"* to|strong=\"H3205\"* Abram." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Abram was|strong=\"H3068\"* ninety-nine|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H1980\"* Abram and|strong=\"H1121\"* said to|strong=\"H1980\"* him|strong=\"H6440\"*, “I|strong=\"H7200\"* am|strong=\"H1961\"* God|strong=\"H3068\"* Almighty|strong=\"H7706\"*. Walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H1121\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* between me|strong=\"H5414\"* and|strong=\"H1285\"* you|strong=\"H5414\"*, and|strong=\"H1285\"* will|strong=\"H5414\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"* exceedingly|strong=\"H3966\"*.”" + }, + { + "verseNum": 3, + "text": "Abram fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. God talked|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“As|strong=\"H1961\"* for|strong=\"H1961\"* me|strong=\"H1961\"*, behold|strong=\"H2009\"*, my|strong=\"H1961\"* covenant|strong=\"H1285\"* is|strong=\"H2009\"* with|strong=\"H1285\"* you|strong=\"H1961\"*. You|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* father of|strong=\"H1995\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5414\"* name|strong=\"H8034\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* called|strong=\"H7121\"* Abram, but|strong=\"H3588\"* your|strong=\"H5414\"* name|strong=\"H8034\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Abraham; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* made|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* father of|strong=\"H8034\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H8034\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* you|strong=\"H5414\"* exceedingly|strong=\"H3966\"* fruitful|strong=\"H6509\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* nations|strong=\"H1471\"* of|strong=\"H4428\"* you|strong=\"H5414\"*. Kings|strong=\"H4428\"* will|strong=\"H1471\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H6965\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* between me|strong=\"H1961\"* and|strong=\"H6965\"* you|strong=\"H6965\"* and|strong=\"H6965\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"* throughout|strong=\"H1755\"* their|strong=\"H1961\"* generations|strong=\"H1755\"* for|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* God to|strong=\"H1961\"* you|strong=\"H6965\"* and|strong=\"H6965\"* to|strong=\"H1961\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H6965\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*, and|strong=\"H5769\"* to|strong=\"H1961\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"*, the|strong=\"H3605\"* land where|strong=\"H4033\"* you|strong=\"H5414\"* are|strong=\"H1961\"* traveling, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, for|strong=\"H3605\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* possession|strong=\"H2233\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "God said to|strong=\"H8104\"* Abraham, “As|strong=\"H2233\"* for|strong=\"H2233\"* you|strong=\"H8104\"*, you|strong=\"H8104\"* shall|strong=\"H2233\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, you|strong=\"H8104\"* and|strong=\"H1285\"* your|strong=\"H8104\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H8104\"* throughout|strong=\"H1755\"* their|strong=\"H8104\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, which|strong=\"H1285\"* you|strong=\"H3605\"* shall|strong=\"H2233\"* keep|strong=\"H8104\"*, between me|strong=\"H8104\"* and|strong=\"H1285\"* you|strong=\"H3605\"* and|strong=\"H1285\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3605\"*. Every|strong=\"H3605\"* male|strong=\"H2145\"* among you|strong=\"H3605\"* shall|strong=\"H2233\"* be|strong=\"H2145\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1320\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* circumcised in|strong=\"H1320\"* the|strong=\"H1961\"* flesh|strong=\"H1320\"* of|strong=\"H1285\"* your|strong=\"H1961\"* foreskin|strong=\"H6190\"*. It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* token of|strong=\"H1285\"* the|strong=\"H1961\"* covenant|strong=\"H1285\"* between me|strong=\"H1961\"* and|strong=\"H1285\"* you|strong=\"H1320\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* eight|strong=\"H8083\"* days|strong=\"H3117\"* old|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* circumcised|strong=\"H4135\"* among|strong=\"H3808\"* you|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"*, he|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* born|strong=\"H3211\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, or|strong=\"H3808\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* money|strong=\"H3701\"* from|strong=\"H1121\"* any|strong=\"H3605\"* foreigner|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H1931\"* not|strong=\"H3808\"* of|strong=\"H1121\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1004\"* who|strong=\"H3211\"* is|strong=\"H3701\"* born|strong=\"H3211\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"*, and|strong=\"H3701\"* he|strong=\"H1004\"* who|strong=\"H3211\"* is|strong=\"H3701\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* your|strong=\"H1961\"* money|strong=\"H3701\"*, must be|strong=\"H1961\"* circumcised|strong=\"H4135\"*. My|strong=\"H1961\"* covenant|strong=\"H1285\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* in|strong=\"H1004\"* your|strong=\"H1961\"* flesh|strong=\"H1320\"* for|strong=\"H1004\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3772\"* uncircumcised|strong=\"H6189\"* male|strong=\"H2145\"* who|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* circumcised|strong=\"H4135\"* in|strong=\"H1320\"* the|strong=\"H3772\"* flesh|strong=\"H1320\"* of|strong=\"H5971\"* his|strong=\"H3808\"* foreskin|strong=\"H6190\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3808\"* people|strong=\"H5971\"*. He|strong=\"H1931\"* has|strong=\"H5315\"* broken|strong=\"H6565\"* my|strong=\"H6565\"* covenant|strong=\"H1285\"*.”" + }, + { + "verseNum": 15, + "text": "God|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H7121\"* Abraham, “As|strong=\"H3588\"* for|strong=\"H3588\"* Sarai|strong=\"H8297\"* your|strong=\"H3588\"* wife, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* call|strong=\"H7121\"* her|strong=\"H7121\"* name|strong=\"H8034\"* Sarai|strong=\"H8297\"*, but|strong=\"H3588\"* her|strong=\"H7121\"* name|strong=\"H8034\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* Sarah|strong=\"H8283\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* moreover|strong=\"H1571\"* I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"* by|strong=\"H5414\"* her|strong=\"H5414\"*. Yes|strong=\"H1571\"*, I|strong=\"H5414\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* she|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mother of|strong=\"H1121\"* nations|strong=\"H1471\"*. Kings|strong=\"H4428\"* of|strong=\"H1121\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* come|strong=\"H1961\"* from|strong=\"H4480\"* her|strong=\"H5414\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H5307\"* Abraham fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H3967\"* laughed|strong=\"H6711\"*, and|strong=\"H3967\"* said in|strong=\"H8141\"* his|strong=\"H6440\"* heart|strong=\"H3820\"*, “Will|strong=\"H1121\"* a|strong=\"H3068\"* child|strong=\"H1121\"* be|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H5921\"* him|strong=\"H3205\"* who|strong=\"H1121\"* is|strong=\"H3820\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"*? Will|strong=\"H1121\"* Sarah|strong=\"H8283\"*, who|strong=\"H1121\"* is|strong=\"H3820\"* ninety|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, give|strong=\"H3205\"* birth|strong=\"H3205\"*?”" + }, + { + "verseNum": 18, + "text": "Abraham said to|strong=\"H6440\"* God|strong=\"H3863\"*, “Oh|strong=\"H3863\"* that|strong=\"H3863\"* Ishmael|strong=\"H3458\"* might|strong=\"H3458\"* live|strong=\"H2421\"* before|strong=\"H6440\"* you|strong=\"H6440\"*!”" + }, + { + "verseNum": 19, + "text": "God said|strong=\"H7121\"*, “No|strong=\"H6965\"*, but|strong=\"H3205\"* Sarah|strong=\"H8283\"*, your|strong=\"H6965\"* wife, will|strong=\"H1121\"* bear|strong=\"H3205\"* you|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. You|strong=\"H3205\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Isaac|strong=\"H3327\"*.+ 17:19 Isaac means “he laughs”.* I|strong=\"H6965\"* will|strong=\"H1121\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* him|strong=\"H3205\"* for|strong=\"H7121\"* an|strong=\"H6965\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* for|strong=\"H7121\"* his|strong=\"H7121\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H5414\"* for|strong=\"H3205\"* Ishmael|strong=\"H3458\"*, I|strong=\"H5414\"* have|strong=\"H1471\"* heard|strong=\"H8085\"* you|strong=\"H5414\"*. Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1471\"* blessed|strong=\"H1288\"* him|strong=\"H5414\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* make|strong=\"H5414\"* him|strong=\"H5414\"* fruitful|strong=\"H6509\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* him|strong=\"H5414\"* exceedingly|strong=\"H3966\"*. He|strong=\"H5414\"* will|strong=\"H1471\"* become|strong=\"H3205\"* the|strong=\"H8085\"* father|strong=\"H3205\"* of|strong=\"H3205\"* twelve|strong=\"H8147\"* princes|strong=\"H5387\"*, and|strong=\"H1419\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3205\"* I|strong=\"H2088\"* will|strong=\"H2088\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, whom Sarah|strong=\"H8283\"* will|strong=\"H2088\"* bear|strong=\"H3205\"* to|strong=\"H3205\"* you|strong=\"H3205\"* at|strong=\"H6965\"* this|strong=\"H2088\"* set|strong=\"H6965\"* time|strong=\"H4150\"* next year|strong=\"H8141\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H3615\"* he|strong=\"H5921\"* finished|strong=\"H3615\"* talking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*, God went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Abraham." + }, + { + "verseNum": 23, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* Ishmael|strong=\"H3458\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* his|strong=\"H3605\"* money|strong=\"H3701\"*: every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Abraham|strong=\"H3947\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* circumcised|strong=\"H4135\"* the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H3605\"* foreskin|strong=\"H6190\"* in|strong=\"H1004\"* the|strong=\"H3605\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* God had|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "Abraham was|strong=\"H1121\"* ninety-nine|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* was|strong=\"H1121\"* circumcised|strong=\"H4135\"* in|strong=\"H8141\"* the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H4135\"* foreskin|strong=\"H6190\"*." + }, + { + "verseNum": 25, + "text": "Ishmael|strong=\"H3458\"*, his|strong=\"H3458\"* son|strong=\"H1121\"*, was|strong=\"H1121\"* thirteen|strong=\"H7969\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* was|strong=\"H1121\"* circumcised|strong=\"H4135\"* in|strong=\"H8141\"* the|strong=\"H3458\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H3458\"* foreskin|strong=\"H6190\"*." + }, + { + "verseNum": 26, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"* both Abraham and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, his|strong=\"H3117\"* son|strong=\"H1121\"*, were|strong=\"H1121\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 27, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, those|strong=\"H3605\"* born|strong=\"H3211\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* bought|strong=\"H4736\"* with|strong=\"H1004\"* money|strong=\"H3701\"* from|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"*, were|strong=\"H1121\"* circumcised|strong=\"H4135\"* with|strong=\"H1004\"* him|strong=\"H3605\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* by|strong=\"H3117\"* the|strong=\"H7200\"* oaks of|strong=\"H3068\"* Mamre|strong=\"H4471\"*, as|strong=\"H3117\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* tent door|strong=\"H6607\"* in|strong=\"H3427\"* the|strong=\"H7200\"* heat|strong=\"H2527\"* of|strong=\"H3068\"* the|strong=\"H7200\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* three|strong=\"H7969\"* men stood|strong=\"H5324\"* near|strong=\"H5921\"* him|strong=\"H5921\"*. When|strong=\"H7200\"* he|strong=\"H5921\"* saw|strong=\"H7200\"* them|strong=\"H5921\"*, he|strong=\"H5921\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* them|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* tent door|strong=\"H6607\"*, and|strong=\"H5869\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5869\"* said, “My|strong=\"H5921\"* lord, if now|strong=\"H4994\"* I|strong=\"H5921\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* don’t go|strong=\"H5674\"* away|strong=\"H5674\"* from|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* be|strong=\"H4994\"* fetched|strong=\"H3947\"*, wash|strong=\"H7364\"* your|strong=\"H3947\"* feet|strong=\"H7272\"*, and|strong=\"H6086\"* rest|strong=\"H8172\"* yourselves|strong=\"H8172\"* under|strong=\"H8478\"* the|strong=\"H3947\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H5650\"* get|strong=\"H3947\"* a|strong=\"H3068\"* piece|strong=\"H6595\"* of|strong=\"H5650\"* bread|strong=\"H3899\"* so|strong=\"H3651\"* you|strong=\"H3588\"* can|strong=\"H5650\"* refresh|strong=\"H5582\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*. After|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* go|strong=\"H5674\"* your|strong=\"H5921\"* way|strong=\"H5674\"*, now|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5650\"* come|strong=\"H5674\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 6, + "text": "Abraham hurried|strong=\"H4116\"* into|strong=\"H6213\"* the|strong=\"H6213\"* tent to|strong=\"H6213\"* Sarah|strong=\"H8283\"*, and|strong=\"H6213\"* said, “Quickly|strong=\"H4116\"* prepare|strong=\"H6213\"* three|strong=\"H7969\"* seahs|strong=\"H5429\"*+ 18:6 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H5429\"* fine|strong=\"H5560\"* meal|strong=\"H7058\"*, knead|strong=\"H3888\"* it|strong=\"H6213\"*, and|strong=\"H6213\"* make|strong=\"H6213\"* cakes|strong=\"H5692\"*.”" + }, + { + "verseNum": 7, + "text": "Abraham|strong=\"H3947\"* ran|strong=\"H7323\"* to|strong=\"H6213\"* the|strong=\"H5414\"* herd|strong=\"H1241\"*, and|strong=\"H1121\"* fetched|strong=\"H3947\"* a|strong=\"H3068\"* tender|strong=\"H7390\"* and|strong=\"H1121\"* good|strong=\"H2896\"* calf|strong=\"H1121\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H5414\"* servant|strong=\"H5288\"*. He|strong=\"H6213\"* hurried|strong=\"H4116\"* to|strong=\"H6213\"* dress|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* butter|strong=\"H2529\"*, milk|strong=\"H2461\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* calf|strong=\"H1121\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H5414\"* dressed|strong=\"H6213\"*, and|strong=\"H1121\"* set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. He|strong=\"H1931\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* them|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H6440\"* tree|strong=\"H6086\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* ate." + }, + { + "verseNum": 9, + "text": "They asked him, “Where|strong=\"H2009\"* is|strong=\"H2009\"* Sarah|strong=\"H8283\"*, your|strong=\"H8283\"* wife?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said|strong=\"H8085\"*, “I|strong=\"H2009\"* will|strong=\"H1121\"* certainly|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"* at|strong=\"H7725\"* about|strong=\"H8085\"* this|strong=\"H1931\"* time|strong=\"H6256\"* next|strong=\"H2416\"* year|strong=\"H6256\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, Sarah|strong=\"H8283\"* your|strong=\"H8085\"* wife|strong=\"H2416\"* will|strong=\"H1121\"* have|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H1961\"* Abraham and|strong=\"H3117\"* Sarah|strong=\"H8283\"* were|strong=\"H1961\"* old|strong=\"H2205\"*, well advanced in|strong=\"H3117\"* age|strong=\"H3117\"*. Sarah|strong=\"H8283\"* had|strong=\"H1961\"* passed|strong=\"H1961\"* the|strong=\"H3117\"* age|strong=\"H3117\"* of|strong=\"H3117\"* childbearing." + }, + { + "verseNum": 12, + "text": "Sarah|strong=\"H8283\"* laughed|strong=\"H6711\"* within|strong=\"H7130\"* herself|strong=\"H7130\"*, saying, “After|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* grown|strong=\"H2204\"* old|strong=\"H2204\"* will|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* pleasure|strong=\"H5730\"*, my|strong=\"H1961\"* lord being|strong=\"H1961\"* old|strong=\"H2204\"* also|strong=\"H2204\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Abraham, “Why|strong=\"H4100\"* did|strong=\"H4100\"* Sarah|strong=\"H8283\"* laugh|strong=\"H6711\"*, saying, ‘Will|strong=\"H3068\"* I|strong=\"H2088\"* really|strong=\"H2088\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* child|strong=\"H3205\"* when|strong=\"H3068\"* I|strong=\"H2088\"* am|strong=\"H2204\"* old|strong=\"H2204\"*?’" + }, + { + "verseNum": 14, + "text": "Is|strong=\"H3068\"* anything|strong=\"H1697\"* too|strong=\"H1697\"* hard|strong=\"H6381\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*? At|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H7725\"* time|strong=\"H6256\"* I|strong=\"H1697\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*, when|strong=\"H6256\"* the|strong=\"H3068\"* season|strong=\"H6256\"* comes around|strong=\"H7725\"*, and|strong=\"H1121\"* Sarah|strong=\"H8283\"* will|strong=\"H3068\"* have|strong=\"H3068\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3588\"* Sarah|strong=\"H8283\"* denied|strong=\"H3584\"* it|strong=\"H3588\"*, saying, “I|strong=\"H3588\"* didn’t laugh|strong=\"H6711\"*,” for|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H3808\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* men|strong=\"H1980\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* looked|strong=\"H8259\"* toward|strong=\"H5921\"* Sodom|strong=\"H5467\"*. Abraham went|strong=\"H1980\"* with|strong=\"H5973\"* them|strong=\"H5921\"* to|strong=\"H1980\"* see them|strong=\"H5921\"* on|strong=\"H5921\"* their|strong=\"H6440\"* way|strong=\"H1980\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said, “Will|strong=\"H3068\"* I|strong=\"H3068\"* hide|strong=\"H3680\"* from|strong=\"H3068\"* Abraham what|strong=\"H6213\"* I|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 18, + "text": "since Abraham will|strong=\"H1961\"* surely|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H1419\"* mighty|strong=\"H6099\"* nation|strong=\"H1471\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* in|strong=\"H1419\"* him|strong=\"H3605\"*?" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* known|strong=\"H3045\"* him|strong=\"H5921\"*, to|strong=\"H1696\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* command|strong=\"H6680\"* his|strong=\"H8104\"* children|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8104\"* household|strong=\"H1004\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, to|strong=\"H1696\"* do|strong=\"H6213\"* righteousness|strong=\"H6666\"* and|strong=\"H1121\"* justice|strong=\"H4941\"*; to|strong=\"H1696\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* bring|strong=\"H6213\"* on|strong=\"H5921\"* Abraham that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H1121\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said, “Because|strong=\"H3588\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* Gomorrah|strong=\"H6017\"* is|strong=\"H3068\"* great|strong=\"H7227\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* their|strong=\"H3068\"* sin|strong=\"H2403\"* is|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3513\"*," + }, + { + "verseNum": 21, + "text": "I|strong=\"H3045\"* will|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"* now|strong=\"H4994\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* their|strong=\"H7200\"* deeds are|strong=\"H6213\"* as|strong=\"H6213\"* bad as|strong=\"H6213\"* the|strong=\"H7200\"* reports which have|strong=\"H3045\"* come|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H4994\"*. If|strong=\"H7200\"* not|strong=\"H3808\"*, I|strong=\"H3045\"* will|strong=\"H3808\"* know|strong=\"H3045\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* men turned|strong=\"H6437\"* from|strong=\"H6440\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* toward|strong=\"H6440\"* Sodom|strong=\"H5467\"*, but|strong=\"H6437\"* Abraham stood|strong=\"H5975\"* yet|strong=\"H5750\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Abraham came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H5066\"* said, “Will|strong=\"H6662\"* you|strong=\"H5973\"* consume|strong=\"H5595\"* the|strong=\"H5973\"* righteous|strong=\"H6662\"* with|strong=\"H5973\"* the|strong=\"H5973\"* wicked|strong=\"H7563\"*?" + }, + { + "verseNum": 24, + "text": "What if|strong=\"H3426\"* there|strong=\"H3426\"* are|strong=\"H3426\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* within|strong=\"H7130\"* the|strong=\"H5375\"* city|strong=\"H5892\"*? Will|strong=\"H6662\"* you|strong=\"H3808\"* consume|strong=\"H5595\"* and|strong=\"H5892\"* not|strong=\"H3808\"* spare|strong=\"H5375\"* the|strong=\"H5375\"* place|strong=\"H4725\"* for|strong=\"H4616\"* the|strong=\"H5375\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* who|strong=\"H6662\"* are|strong=\"H3426\"* in|strong=\"H8432\"* it|strong=\"H8432\"*?" + }, + { + "verseNum": 25, + "text": "May|strong=\"H1961\"* it|strong=\"H6213\"* be|strong=\"H1961\"* far|strong=\"H2486\"* from|strong=\"H1961\"* you|strong=\"H3605\"* to|strong=\"H4191\"* do|strong=\"H6213\"* things|strong=\"H1697\"* like|strong=\"H1961\"* that|strong=\"H3605\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* with|strong=\"H5973\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* should|strong=\"H6213\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*. May|strong=\"H1961\"* that|strong=\"H3605\"* be|strong=\"H1961\"* far|strong=\"H2486\"* from|strong=\"H1961\"* you|strong=\"H3605\"*. Shouldn’t the|strong=\"H3605\"* Judge|strong=\"H8199\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth do|strong=\"H6213\"* right|strong=\"H4941\"*?”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* said, “If I|strong=\"H4672\"* find|strong=\"H4672\"* in|strong=\"H3068\"* Sodom|strong=\"H5467\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"* within|strong=\"H8432\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, then|strong=\"H5375\"* I|strong=\"H4672\"* will|strong=\"H3068\"* spare|strong=\"H5375\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* place|strong=\"H4725\"* for|strong=\"H3068\"* their|strong=\"H3605\"* sake|strong=\"H5668\"*.”" + }, + { + "verseNum": 27, + "text": "Abraham answered|strong=\"H6030\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H1696\"* taken it|strong=\"H1696\"* on|strong=\"H1696\"* myself to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* Lord, although I|strong=\"H2009\"* am dust|strong=\"H6083\"* and|strong=\"H6030\"* ashes|strong=\"H6083\"*." + }, + { + "verseNum": 28, + "text": "What if there|strong=\"H8033\"* will|strong=\"H6662\"* lack|strong=\"H2637\"* five|strong=\"H2568\"* of|strong=\"H5892\"* the|strong=\"H3605\"* fifty|strong=\"H2572\"* righteous|strong=\"H6662\"*? Will|strong=\"H6662\"* you|strong=\"H3605\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* for|strong=\"H5892\"* lack|strong=\"H2637\"* of|strong=\"H5892\"* five|strong=\"H2568\"*?”" + }, + { + "verseNum": 29, + "text": "He|strong=\"H8033\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*, and|strong=\"H8033\"* said|strong=\"H1696\"*, “What|strong=\"H6213\"* if there|strong=\"H8033\"* are|strong=\"H6213\"* forty found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"* don’t let|strong=\"H4994\"* the|strong=\"H6213\"* Lord be|strong=\"H3808\"* angry|strong=\"H2734\"*, and|strong=\"H7970\"* I|strong=\"H3808\"* will|strong=\"H3808\"* speak|strong=\"H1696\"*. What|strong=\"H6213\"* if there|strong=\"H8033\"* are|strong=\"H6213\"* thirty|strong=\"H7970\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 31, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H4672\"* taken|strong=\"H4672\"* it|strong=\"H8033\"* on|strong=\"H1696\"* myself to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7843\"* Lord. What|strong=\"H1696\"* if|strong=\"H2009\"* there|strong=\"H8033\"* are|strong=\"H8033\"* twenty|strong=\"H6242\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 32, + "text": "He|strong=\"H8033\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"* don’t let|strong=\"H4994\"* the|strong=\"H7843\"* Lord be|strong=\"H3808\"* angry|strong=\"H2734\"*, and|strong=\"H8033\"* I|strong=\"H3808\"* will|strong=\"H3808\"* speak|strong=\"H1696\"* just|strong=\"H1696\"* once|strong=\"H6471\"* more|strong=\"H6471\"*. What|strong=\"H1696\"* if ten|strong=\"H6235\"* are|strong=\"H8033\"* found|strong=\"H4672\"* there|strong=\"H8033\"*?”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* went|strong=\"H3212\"* his|strong=\"H3068\"* way|strong=\"H3212\"* as|strong=\"H3068\"* soon as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* communing|strong=\"H1696\"* with|strong=\"H3068\"* Abraham, and|strong=\"H3068\"* Abraham returned|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H3068\"* place|strong=\"H4725\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7200\"* two|strong=\"H8147\"* angels|strong=\"H4397\"* came|strong=\"H4397\"* to|strong=\"H4397\"* Sodom|strong=\"H5467\"* at|strong=\"H3427\"* evening|strong=\"H6153\"*. Lot|strong=\"H3876\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* of|strong=\"H3427\"* Sodom|strong=\"H5467\"*. Lot|strong=\"H3876\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H4397\"* meet|strong=\"H7125\"* them|strong=\"H7200\"*. He|strong=\"H8147\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* with|strong=\"H3427\"* his|strong=\"H7200\"* face|strong=\"H7200\"* to|strong=\"H4397\"* the|strong=\"H7200\"* earth," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1980\"* he|strong=\"H3588\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, my|strong=\"H5493\"* lords, please|strong=\"H4994\"* come|strong=\"H1980\"* into|strong=\"H1980\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"*, stay|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"*, wash|strong=\"H7364\"* your|strong=\"H3588\"* feet|strong=\"H7272\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* can|strong=\"H5650\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* on|strong=\"H1980\"* your|strong=\"H3588\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* urged|strong=\"H6484\"* them|strong=\"H6213\"* greatly|strong=\"H3966\"*, and|strong=\"H1004\"* they|strong=\"H6213\"* came in|strong=\"H6213\"* with|strong=\"H1004\"* him|strong=\"H6213\"*, and|strong=\"H1004\"* entered into|strong=\"H6213\"* his|strong=\"H5493\"* house|strong=\"H1004\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*, and|strong=\"H1004\"* baked unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, and|strong=\"H1004\"* they|strong=\"H6213\"* ate." + }, + { + "verseNum": 4, + "text": "But|strong=\"H5971\"* before|strong=\"H2962\"* they|strong=\"H5921\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, the|strong=\"H3605\"* men|strong=\"H5288\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* men|strong=\"H5288\"* of|strong=\"H1004\"* Sodom|strong=\"H5467\"*, surrounded|strong=\"H5437\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, both|strong=\"H3605\"* young|strong=\"H5288\"* and|strong=\"H1004\"* old|strong=\"H2205\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H5921\"* every|strong=\"H3605\"* quarter|strong=\"H7097\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3045\"* called|strong=\"H7121\"* to|strong=\"H3318\"* Lot|strong=\"H3876\"*, and|strong=\"H3915\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Where are|strong=\"H3045\"* the|strong=\"H3045\"* men|strong=\"H7121\"* who|strong=\"H3045\"* came|strong=\"H3318\"* in|strong=\"H7121\"* to|strong=\"H3318\"* you|strong=\"H3045\"* this|strong=\"H7121\"* night|strong=\"H3915\"*? Bring|strong=\"H3318\"* them|strong=\"H7121\"* out|strong=\"H3318\"* to|strong=\"H3318\"* us|strong=\"H3045\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may have|strong=\"H3045\"* sex with|strong=\"H3045\"* them|strong=\"H7121\"*.”" + }, + { + "verseNum": 6, + "text": "Lot|strong=\"H3876\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"* through|strong=\"H3318\"* the|strong=\"H3318\"* door|strong=\"H6607\"*, and|strong=\"H3318\"* shut|strong=\"H5462\"* the|strong=\"H3318\"* door|strong=\"H6607\"* after|strong=\"H3318\"* himself." + }, + { + "verseNum": 7, + "text": "He said, “Please|strong=\"H4994\"*, my|strong=\"H7489\"* brothers, don’t act|strong=\"H7489\"* so|strong=\"H7489\"* wickedly|strong=\"H7489\"*." + }, + { + "verseNum": 8, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* have|strong=\"H5869\"* two|strong=\"H8147\"* virgin daughters|strong=\"H1323\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* bring|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3588\"*, and|strong=\"H5869\"* you|strong=\"H3588\"* may|strong=\"H4994\"* do|strong=\"H6213\"* to|strong=\"H3318\"* them|strong=\"H5921\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H3588\"*. Only|strong=\"H7535\"* don’t do|strong=\"H6213\"* anything|strong=\"H1697\"* to|strong=\"H3318\"* these|strong=\"H6213\"* men|strong=\"H6213\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5869\"* come|strong=\"H3318\"* under|strong=\"H5921\"* the|strong=\"H5921\"* shadow|strong=\"H6738\"* of|strong=\"H1323\"* my|strong=\"H5921\"* roof|strong=\"H6982\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H1992\"* said, “Stand|strong=\"H1481\"* back|strong=\"H1973\"*!” Then|strong=\"H6258\"* they|strong=\"H1992\"* said, “This|strong=\"H6258\"* one fellow came|strong=\"H5066\"* in|strong=\"H7665\"* to|strong=\"H5066\"* live|strong=\"H1481\"* as|strong=\"H1992\"* a|strong=\"H3068\"* foreigner, and|strong=\"H5066\"* he|strong=\"H8199\"* appoints himself a|strong=\"H3068\"* judge|strong=\"H8199\"*. Now|strong=\"H6258\"* we|strong=\"H3068\"* will|strong=\"H8199\"* deal|strong=\"H3966\"* worse|strong=\"H7489\"* with|strong=\"H1481\"* you|strong=\"H7489\"* than with|strong=\"H1481\"* them|strong=\"H1992\"*!” They|strong=\"H1992\"* pressed|strong=\"H6484\"* hard|strong=\"H7489\"* on|strong=\"H6258\"* the|strong=\"H7665\"* man Lot|strong=\"H3876\"*, and|strong=\"H5066\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5066\"* break|strong=\"H7665\"* the|strong=\"H7665\"* door|strong=\"H1817\"*." + }, + { + "verseNum": 10, + "text": "But the|strong=\"H7971\"* men reached|strong=\"H7971\"* out|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* brought|strong=\"H7971\"* Lot|strong=\"H3876\"* into|strong=\"H3027\"* the|strong=\"H7971\"* house|strong=\"H1004\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* shut|strong=\"H5462\"* the|strong=\"H7971\"* door|strong=\"H1817\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* men|strong=\"H1419\"* who|strong=\"H4672\"* were|strong=\"H1419\"* at|strong=\"H1004\"* the|strong=\"H5221\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* with|strong=\"H1004\"* blindness|strong=\"H5575\"*, both small|strong=\"H6996\"* and|strong=\"H1419\"* great|strong=\"H1419\"*, so|strong=\"H4672\"* that|strong=\"H5704\"* they|strong=\"H5704\"* wearied|strong=\"H3811\"* themselves|strong=\"H3811\"* to|strong=\"H5704\"* find|strong=\"H4672\"* the|strong=\"H5221\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Lot|strong=\"H3876\"*, “Do|strong=\"H3318\"* you|strong=\"H3605\"* have|strong=\"H1121\"* anybody else|strong=\"H5750\"* here|strong=\"H6311\"*? Sons-in-law|strong=\"H2860\"*, your|strong=\"H3605\"* sons|strong=\"H1121\"*, your|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* whomever|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1121\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* place|strong=\"H4725\"*:" + }, + { + "verseNum": 13, + "text": "for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H7843\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* outcry|strong=\"H6818\"* against|strong=\"H6440\"* them|strong=\"H7971\"* has|strong=\"H3068\"* grown|strong=\"H1431\"* so|strong=\"H7971\"* great|strong=\"H1431\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* us|strong=\"H6440\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "Lot|strong=\"H3876\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H6965\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H3068\"* sons-in-law|strong=\"H2860\"*, who|strong=\"H3068\"* were|strong=\"H1961\"* pledged to|strong=\"H1696\"* marry|strong=\"H3947\"* his|strong=\"H3068\"* daughters|strong=\"H1323\"*, and|strong=\"H6965\"* said|strong=\"H1696\"*, “Get|strong=\"H3947\"* up|strong=\"H6965\"*! Get|strong=\"H3947\"* out|strong=\"H3318\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H7843\"* the|strong=\"H3588\"* city|strong=\"H5892\"*!”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3644\"* the|strong=\"H3947\"* morning|strong=\"H7837\"* came|strong=\"H5927\"*, then|strong=\"H6965\"* the|strong=\"H3947\"* angels|strong=\"H4397\"* hurried Lot|strong=\"H3876\"*, saying, “Get|strong=\"H3947\"* up|strong=\"H5927\"*! Take|strong=\"H3947\"* your|strong=\"H3947\"* wife and|strong=\"H6965\"* your|strong=\"H3947\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* who|strong=\"H4397\"* are|strong=\"H5892\"* here|strong=\"H4672\"*, lest|strong=\"H6435\"* you|strong=\"H3947\"* be|strong=\"H5892\"* consumed|strong=\"H5595\"* in|strong=\"H5892\"* the|strong=\"H3947\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* the|strong=\"H3947\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H2388\"* he|strong=\"H3068\"* lingered|strong=\"H4102\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* men|strong=\"H2388\"* grabbed|strong=\"H2388\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, his|strong=\"H3068\"* wife’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*’ hands|strong=\"H3027\"*, Yahweh|strong=\"H3068\"* being|strong=\"H3068\"* merciful|strong=\"H2551\"* to|strong=\"H3318\"* him|strong=\"H5921\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* took|strong=\"H2388\"* him|strong=\"H5921\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* set|strong=\"H3240\"* him|strong=\"H5921\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H5921\"* had|strong=\"H1961\"* taken|strong=\"H1961\"* them|strong=\"H5921\"* out|strong=\"H3318\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* said|strong=\"H3318\"*, “Escape|strong=\"H4422\"* for|strong=\"H5921\"* your|strong=\"H3605\"* life|strong=\"H5315\"*! Don’t look|strong=\"H5027\"* behind|strong=\"H5975\"* you|strong=\"H3605\"*, and|strong=\"H2022\"* don’t stay|strong=\"H5975\"* anywhere|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*. Escape|strong=\"H4422\"* to|strong=\"H3318\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* be|strong=\"H1961\"* consumed|strong=\"H5595\"*!”" + }, + { + "verseNum": 18, + "text": "Lot|strong=\"H3876\"* said to|strong=\"H4994\"* them|strong=\"H4994\"*, “Oh|strong=\"H4994\"*, not so|strong=\"H4994\"*, my|strong=\"H4994\"* lord." + }, + { + "verseNum": 19, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, your|strong=\"H6213\"* servant|strong=\"H5650\"* has|strong=\"H5650\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6213\"* sight|strong=\"H5869\"*, and|strong=\"H5869\"* you|strong=\"H6213\"* have|strong=\"H5869\"* magnified|strong=\"H1431\"* your|strong=\"H6213\"* loving kindness|strong=\"H2617\"*, which|strong=\"H5869\"* you|strong=\"H6213\"* have|strong=\"H5869\"* shown|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H4994\"* in|strong=\"H6213\"* saving|strong=\"H2421\"* my|strong=\"H6213\"* life|strong=\"H5315\"*. I|strong=\"H2009\"* can|strong=\"H3201\"*’t escape|strong=\"H4422\"* to|strong=\"H4191\"* the|strong=\"H6213\"* mountain|strong=\"H2022\"*, lest|strong=\"H6435\"* evil|strong=\"H7451\"* overtake|strong=\"H4672\"* me|strong=\"H4994\"*, and|strong=\"H5869\"* I|strong=\"H2009\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 20, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, this|strong=\"H2063\"* city|strong=\"H5892\"* is|strong=\"H1931\"* near|strong=\"H7138\"* to|strong=\"H8033\"* flee|strong=\"H5127\"* to|strong=\"H8033\"*, and|strong=\"H5892\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* little|strong=\"H4705\"* one|strong=\"H3808\"*. Oh|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* escape|strong=\"H4422\"* there|strong=\"H8033\"* (isn’t it|strong=\"H1931\"* a|strong=\"H3068\"* little|strong=\"H4705\"* one|strong=\"H3808\"*?), and|strong=\"H5892\"* my|strong=\"H3808\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* live|strong=\"H2421\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6440\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1571\"* granted|strong=\"H5375\"* your|strong=\"H5375\"* request|strong=\"H1697\"* concerning|strong=\"H1697\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* also|strong=\"H1571\"*, that|strong=\"H1697\"* I|strong=\"H2009\"* will|strong=\"H1571\"* not|strong=\"H1115\"* overthrow|strong=\"H2015\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H6440\"* have|strong=\"H1571\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 22, + "text": "Hurry|strong=\"H4116\"*, escape|strong=\"H4422\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t do|strong=\"H6213\"* anything|strong=\"H1697\"* until|strong=\"H5704\"* you|strong=\"H3588\"* get|strong=\"H6213\"* there|strong=\"H8033\"*.” Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1697\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Zoar|strong=\"H6820\"*.+ 19:22 Zoar means “little”.*" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* sun|strong=\"H8121\"* had|strong=\"H8121\"* risen|strong=\"H3318\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8121\"* when|strong=\"H3318\"* Lot|strong=\"H3876\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* rained|strong=\"H4305\"* on|strong=\"H5921\"* Sodom|strong=\"H5467\"* and|strong=\"H3068\"* on|strong=\"H5921\"* Gomorrah|strong=\"H6017\"* sulfur|strong=\"H1614\"* and|strong=\"H3068\"* fire from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* overthrew|strong=\"H2015\"* those|strong=\"H3605\"* cities|strong=\"H5892\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* that|strong=\"H3605\"* which|strong=\"H5892\"* grew|strong=\"H6780\"* on|strong=\"H3427\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 26, + "text": "But|strong=\"H1961\"* Lot’s wife looked|strong=\"H5027\"* back|strong=\"H5027\"* from|strong=\"H1961\"* behind him|strong=\"H1961\"*, and|strong=\"H5027\"* she became|strong=\"H1961\"* a|strong=\"H3068\"* pillar|strong=\"H5333\"* of|strong=\"H5333\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 27, + "text": "Abraham went|strong=\"H3068\"* up|strong=\"H5975\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"* to|strong=\"H3068\"* the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* had|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3605\"* looked|strong=\"H7200\"* toward|strong=\"H5921\"* Sodom|strong=\"H5467\"* and|strong=\"H6440\"* Gomorrah|strong=\"H6017\"*, and|strong=\"H6440\"* toward|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* plain|strong=\"H3603\"*, and|strong=\"H6440\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H3605\"* smoke|strong=\"H7008\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H5927\"* the|strong=\"H3605\"* smoke|strong=\"H7008\"* of|strong=\"H6440\"* a|strong=\"H3068\"* furnace|strong=\"H3536\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H1961\"* God|strong=\"H7971\"* destroyed|strong=\"H7843\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H8432\"* plain|strong=\"H3603\"*, God|strong=\"H7971\"* remembered|strong=\"H2142\"* Abraham, and|strong=\"H7971\"* sent|strong=\"H7971\"* Lot|strong=\"H3876\"* out|strong=\"H7971\"* of|strong=\"H3427\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H8432\"* overthrow|strong=\"H2015\"*, when|strong=\"H1961\"* he|strong=\"H7971\"* overthrew|strong=\"H2015\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* which|strong=\"H2004\"* Lot|strong=\"H3876\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 30, + "text": "Lot|strong=\"H3876\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3427\"* of|strong=\"H1323\"* Zoar|strong=\"H6820\"*, and|strong=\"H2022\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* his|strong=\"H3588\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* with|strong=\"H5973\"* him|strong=\"H5973\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afraid|strong=\"H3372\"* to|strong=\"H5927\"* live|strong=\"H3427\"* in|strong=\"H3427\"* Zoar|strong=\"H6820\"*. He|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* cave|strong=\"H4631\"* with|strong=\"H5973\"* his|strong=\"H3588\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* firstborn|strong=\"H1067\"* said to|strong=\"H5921\"* the|strong=\"H3605\"* younger|strong=\"H6810\"*, “Our|strong=\"H3605\"* father is|strong=\"H1870\"* old|strong=\"H2204\"*, and|strong=\"H1870\"* there|strong=\"H3605\"* is|strong=\"H1870\"* not|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* earth to|strong=\"H5921\"* come in|strong=\"H5921\"* to|strong=\"H5921\"* us|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 32, + "text": "Come|strong=\"H3212\"*, let|strong=\"H3212\"*’s make|strong=\"H8248\"* our|strong=\"H8248\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H2233\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, that|strong=\"H3196\"* we|strong=\"H3068\"* may|strong=\"H2233\"* preserve|strong=\"H2421\"* our|strong=\"H8248\"* father’s family|strong=\"H2233\"* line|strong=\"H2233\"*.”" + }, + { + "verseNum": 33, + "text": "They|strong=\"H3808\"* made|strong=\"H3045\"* their|strong=\"H3045\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"* that|strong=\"H3045\"* night|strong=\"H3915\"*: and|strong=\"H6965\"* the|strong=\"H3045\"* firstborn|strong=\"H1067\"* went|strong=\"H6965\"* in|strong=\"H7901\"*, and|strong=\"H6965\"* lay|strong=\"H7901\"* with|strong=\"H3045\"* her|strong=\"H3045\"* father. He|strong=\"H1931\"* didn’t know|strong=\"H3045\"* when|strong=\"H7901\"* she|strong=\"H1931\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, nor|strong=\"H3808\"* when|strong=\"H7901\"* she|strong=\"H1931\"* arose|strong=\"H6965\"*." + }, + { + "verseNum": 34, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, that|strong=\"H1961\"* the|strong=\"H1961\"* firstborn|strong=\"H1067\"* said to|strong=\"H1961\"* the|strong=\"H1961\"* younger|strong=\"H6810\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* lay|strong=\"H7901\"* last night|strong=\"H3915\"* with|strong=\"H5973\"* my|strong=\"H1961\"* father. Let|strong=\"H1961\"*’s make|strong=\"H8248\"* him|strong=\"H5973\"* drink|strong=\"H8248\"* wine|strong=\"H3196\"* again|strong=\"H1961\"* tonight|strong=\"H3915\"*. You|strong=\"H5973\"* go|strong=\"H1961\"* in|strong=\"H7901\"*, and|strong=\"H3915\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, that|strong=\"H1961\"* we|strong=\"H3068\"* may|strong=\"H1961\"* preserve|strong=\"H2421\"* our|strong=\"H1961\"* father’s family|strong=\"H2233\"* line|strong=\"H2233\"*.”" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3808\"* made|strong=\"H3045\"* their|strong=\"H3045\"* father drink|strong=\"H8248\"* wine|strong=\"H3196\"* that|strong=\"H3045\"* night|strong=\"H3915\"* also|strong=\"H1571\"*. The|strong=\"H3045\"* younger|strong=\"H6810\"* went|strong=\"H6965\"* and|strong=\"H6965\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. He|strong=\"H1931\"* didn’t know|strong=\"H3045\"* when|strong=\"H7901\"* she|strong=\"H1931\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*, nor|strong=\"H3808\"* when|strong=\"H7901\"* she|strong=\"H1931\"* got|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 36, + "text": "Thus both|strong=\"H8147\"* of|strong=\"H1323\"* Lot|strong=\"H3876\"*’s daughters|strong=\"H1323\"* were|strong=\"H1323\"* with|strong=\"H8147\"* child|strong=\"H2029\"* by|strong=\"H1323\"* their|strong=\"H8147\"* father." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3205\"* firstborn|strong=\"H1067\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Moabites|strong=\"H4124\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3205\"* younger|strong=\"H6810\"* also|strong=\"H1571\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Ben Ammi. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Abraham traveled|strong=\"H5265\"* from|strong=\"H5265\"* there|strong=\"H8033\"* toward the|strong=\"H8033\"* land of|strong=\"H3427\"* the|strong=\"H8033\"* South|strong=\"H5045\"*, and|strong=\"H8033\"* lived|strong=\"H3427\"* between|strong=\"H3427\"* Kadesh|strong=\"H6946\"* and|strong=\"H8033\"* Shur|strong=\"H7793\"*. He|strong=\"H8033\"* lived|strong=\"H3427\"* as|strong=\"H3427\"* a|strong=\"H3068\"* foreigner in|strong=\"H3427\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 2, + "text": "Abraham|strong=\"H3947\"* said about|strong=\"H4428\"* Sarah|strong=\"H8283\"* his|strong=\"H7971\"* wife, “She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3947\"* sister.” Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* Gerar|strong=\"H1642\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* Sarah|strong=\"H8283\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H2009\"* God came to|strong=\"H4191\"* Abimelech in|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* said to|strong=\"H4191\"* him|strong=\"H5921\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5921\"* are|strong=\"H2472\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* man|strong=\"H1167\"*, because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* woman whom you|strong=\"H5921\"* have|strong=\"H3947\"* taken|strong=\"H3947\"*; for|strong=\"H5921\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H1167\"*’s wife|strong=\"H1166\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1571\"* Abimelech had|strong=\"H1471\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* her|strong=\"H1571\"*. He|strong=\"H3808\"* said, “Lord|strong=\"H6662\"*, will|strong=\"H1471\"* you|strong=\"H3808\"* kill|strong=\"H2026\"* even|strong=\"H1571\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* nation|strong=\"H1471\"*?" + }, + { + "verseNum": 5, + "text": "Didn’t he|strong=\"H1931\"* tell me|strong=\"H6213\"*, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H6213\"* sister’? She|strong=\"H1931\"*, even|strong=\"H1571\"* she|strong=\"H1931\"* herself|strong=\"H1931\"*, said, ‘He|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H6213\"* brother.’ I|strong=\"H3808\"* have|strong=\"H1571\"* done|strong=\"H6213\"* this|strong=\"H2063\"* in|strong=\"H6213\"* the|strong=\"H6213\"* integrity|strong=\"H8537\"* of|strong=\"H3709\"* my|strong=\"H6213\"* heart|strong=\"H3824\"* and|strong=\"H6213\"* the|strong=\"H6213\"* innocence|strong=\"H5356\"* of|strong=\"H3709\"* my|strong=\"H6213\"* hands|strong=\"H3709\"*.”" + }, + { + "verseNum": 6, + "text": "God|strong=\"H5414\"* said|strong=\"H3651\"* to|strong=\"H6213\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dream|strong=\"H2472\"*, “Yes|strong=\"H3588\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* integrity|strong=\"H8537\"* of|strong=\"H5921\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H6213\"* I|strong=\"H3588\"* also|strong=\"H1571\"* withheld|strong=\"H2820\"* you|strong=\"H3588\"* from|strong=\"H5921\"* sinning|strong=\"H2398\"* against|strong=\"H5921\"* me|strong=\"H5414\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* didn’t allow|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H6213\"* touch|strong=\"H5060\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, restore|strong=\"H7725\"* the|strong=\"H3605\"* man|strong=\"H4191\"*’s wife. For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* will|strong=\"H1931\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* you|strong=\"H3588\"* will|strong=\"H1931\"* live|strong=\"H2421\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* don’t restore|strong=\"H7725\"* her|strong=\"H3605\"*, know|strong=\"H3045\"* for|strong=\"H3588\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1931\"* die|strong=\"H4191\"*, you|strong=\"H3588\"*, and|strong=\"H7725\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5030\"* yours|strong=\"H4191\"*.”" + }, + { + "verseNum": 8, + "text": "Abimelech rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H1696\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, and|strong=\"H5650\"* called|strong=\"H7121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* told|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* things|strong=\"H1697\"* in|strong=\"H1696\"* their|strong=\"H3605\"* ear. The|strong=\"H3605\"* men|strong=\"H5650\"* were|strong=\"H1697\"* very|strong=\"H3966\"* scared." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6213\"* Abimelech called|strong=\"H7121\"* Abraham, and|strong=\"H1419\"* said|strong=\"H7121\"* to|strong=\"H6213\"* him|strong=\"H7121\"*, “What|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H5921\"*? How|strong=\"H4100\"* have|strong=\"H3588\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* brought|strong=\"H6213\"* on|strong=\"H5921\"* me|strong=\"H5978\"* and|strong=\"H1419\"* on|strong=\"H5921\"* my|strong=\"H5921\"* kingdom|strong=\"H4467\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*? You|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"* deeds|strong=\"H4639\"* to|strong=\"H6213\"* me|strong=\"H5978\"* that|strong=\"H3588\"* ought not|strong=\"H3808\"* to|strong=\"H6213\"* be|strong=\"H3808\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 10, + "text": "Abimelech said|strong=\"H1697\"* to|strong=\"H6213\"* Abraham, “What|strong=\"H4100\"* did|strong=\"H6213\"* you|strong=\"H3588\"* see|strong=\"H7200\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7200\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 11, + "text": "Abraham said|strong=\"H1697\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* thought|strong=\"H1697\"*, ‘Surely|strong=\"H3588\"* the|strong=\"H5921\"* fear|strong=\"H3374\"* of|strong=\"H1697\"* God is|strong=\"H2088\"* not|strong=\"H2088\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. They|strong=\"H3588\"* will|strong=\"H1697\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* for|strong=\"H3588\"* my|strong=\"H5921\"* wife’s sake|strong=\"H5921\"*.’" + }, + { + "verseNum": 12, + "text": "Besides|strong=\"H1571\"*, she|strong=\"H1931\"* is|strong=\"H1931\"* indeed|strong=\"H1571\"* my|strong=\"H1961\"* sister, the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H1961\"* father, but|strong=\"H3808\"* not|strong=\"H3808\"* the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H1961\"* mother; and|strong=\"H1323\"* she|strong=\"H1931\"* became|strong=\"H1961\"* my|strong=\"H1961\"* wife." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* God caused|strong=\"H1961\"* me|strong=\"H5978\"* to|strong=\"H1961\"* wander|strong=\"H8582\"* from|strong=\"H1961\"* my|strong=\"H3605\"* father’s house|strong=\"H1004\"*, I|strong=\"H2088\"* said to|strong=\"H1961\"* her|strong=\"H3605\"*, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3605\"* kindness|strong=\"H2617\"* which|strong=\"H1931\"* you|strong=\"H3605\"* shall|strong=\"H1004\"* show|strong=\"H6213\"* to|strong=\"H1961\"* me|strong=\"H5978\"*. Everywhere|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* go|strong=\"H1961\"*, say of|strong=\"H1004\"* me|strong=\"H5978\"*, “He|strong=\"H1931\"* is|strong=\"H2088\"* my|strong=\"H3605\"* brother.”’”" + }, + { + "verseNum": 14, + "text": "Abimelech took|strong=\"H3947\"* sheep|strong=\"H6629\"* and|strong=\"H7725\"* cattle|strong=\"H1241\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H7725\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H7725\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* Abraham|strong=\"H3947\"*, and|strong=\"H7725\"* restored|strong=\"H7725\"* Sarah|strong=\"H8283\"*, his|strong=\"H5414\"* wife, to|strong=\"H7725\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Abimelech said, “Behold|strong=\"H2009\"*, my|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H2896\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Dwell|strong=\"H3427\"* where|strong=\"H2009\"* it|strong=\"H6440\"* pleases|strong=\"H5869\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "To|strong=\"H5414\"* Sarah|strong=\"H8283\"* he|strong=\"H1931\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H5869\"* given|strong=\"H5414\"* your|strong=\"H3605\"* brother a|strong=\"H3068\"* thousand pieces of|strong=\"H5869\"* silver|strong=\"H3701\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* for|strong=\"H3605\"* you|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3682\"* of|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* to|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H5869\"* with|strong=\"H3198\"* you|strong=\"H5414\"*. In|strong=\"H5414\"* front of|strong=\"H5869\"* all|strong=\"H3605\"* you|strong=\"H5414\"* are|strong=\"H5869\"* vindicated.”" + }, + { + "verseNum": 17, + "text": "Abraham prayed|strong=\"H6419\"* to|strong=\"H3205\"* God. So God healed|strong=\"H7495\"* Abimelech, his|strong=\"H3205\"* wife, and|strong=\"H6419\"* his|strong=\"H3205\"* female servants, and|strong=\"H6419\"* they|strong=\"H3205\"* bore|strong=\"H3205\"* children|strong=\"H3205\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* closed|strong=\"H6113\"* up|strong=\"H6113\"* tight all|strong=\"H3605\"* the|strong=\"H3605\"* wombs|strong=\"H7358\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Abimelech, because|strong=\"H3588\"* of|strong=\"H1004\"* Sarah|strong=\"H8283\"*, Abraham’s wife." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* visited|strong=\"H6485\"* Sarah|strong=\"H8283\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* said|strong=\"H1696\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H1696\"* Sarah|strong=\"H8283\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 2, + "text": "Sarah|strong=\"H8283\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Abraham a|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H1696\"* his|strong=\"H8283\"* old|strong=\"H1121\"* age|strong=\"H1121\"*, at|strong=\"H1121\"* the|strong=\"H3205\"* set|strong=\"H4150\"* time|strong=\"H4150\"* of|strong=\"H1121\"* which|strong=\"H4150\"* God had|strong=\"H3205\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 3, + "text": "Abraham called|strong=\"H7121\"* his|strong=\"H7121\"* son|strong=\"H1121\"* who|strong=\"H1121\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*, whom|strong=\"H7121\"* Sarah|strong=\"H8283\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*, Isaac|strong=\"H3327\"*.+ 21:3 Isaac means “He laughs”.*" + }, + { + "verseNum": 4, + "text": "Abraham circumcised|strong=\"H4135\"* his|strong=\"H6680\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* was|strong=\"H3117\"* eight|strong=\"H8083\"* days|strong=\"H3117\"* old|strong=\"H1121\"*, as|strong=\"H3117\"* God had|strong=\"H3327\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*." + }, + { + "verseNum": 5, + "text": "Abraham was|strong=\"H3327\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* his|strong=\"H3327\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, was|strong=\"H3327\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "Sarah|strong=\"H8283\"* said|strong=\"H8085\"*, “God has|strong=\"H3605\"* made|strong=\"H6213\"* me|strong=\"H6213\"* laugh|strong=\"H6711\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* hears|strong=\"H8085\"* will|strong=\"H8085\"* laugh|strong=\"H6711\"* with|strong=\"H6213\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "She|strong=\"H3588\"* said|strong=\"H4448\"*, “Who|strong=\"H4310\"* would|strong=\"H4310\"* have|strong=\"H1121\"* said|strong=\"H4448\"* to|strong=\"H3205\"* Abraham that|strong=\"H3588\"* Sarah|strong=\"H8283\"* would|strong=\"H4310\"* nurse|strong=\"H3243\"* children|strong=\"H1121\"*? For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H1121\"* his|strong=\"H3588\"* old|strong=\"H1121\"* age|strong=\"H1121\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* child|strong=\"H3206\"* grew|strong=\"H1431\"* and|strong=\"H3117\"* was|strong=\"H3117\"* weaned|strong=\"H1580\"*. Abraham made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H4960\"* on|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Isaac|strong=\"H3327\"* was|strong=\"H3117\"* weaned|strong=\"H1580\"*." + }, + { + "verseNum": 9, + "text": "Sarah|strong=\"H8283\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hagar|strong=\"H1904\"* the|strong=\"H7200\"* Egyptian|strong=\"H4713\"*, whom she had|strong=\"H3205\"* borne|strong=\"H3205\"* to|strong=\"H3205\"* Abraham, mocking|strong=\"H6711\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* she|strong=\"H3588\"* said to|strong=\"H1121\"* Abraham, “Cast|strong=\"H3423\"* out|strong=\"H3423\"* this|strong=\"H2063\"* servant and|strong=\"H1121\"* her|strong=\"H3423\"* son|strong=\"H1121\"*! For|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* this|strong=\"H2063\"* servant will|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* heir|strong=\"H3423\"* with|strong=\"H5973\"* my|strong=\"H3588\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* very|strong=\"H3966\"* grievous in|strong=\"H5921\"* Abraham’s sight|strong=\"H5869\"* on|strong=\"H5921\"* account|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "God said|strong=\"H7121\"* to|strong=\"H5921\"* Abraham, “Don’t let it|strong=\"H7121\"* be|strong=\"H5869\"* grievous in|strong=\"H5921\"* your|strong=\"H3605\"* sight|strong=\"H5869\"* because|strong=\"H3588\"* of|strong=\"H6963\"* the|strong=\"H3605\"* boy|strong=\"H5288\"*, and|strong=\"H6963\"* because|strong=\"H3588\"* of|strong=\"H6963\"* your|strong=\"H3605\"* servant|strong=\"H5288\"*. In|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Sarah|strong=\"H8283\"* says to|strong=\"H5921\"* you|strong=\"H3588\"*, listen|strong=\"H8085\"* to|strong=\"H5921\"* her|strong=\"H3605\"* voice|strong=\"H6963\"*. For|strong=\"H3588\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H5869\"* be|strong=\"H5869\"* named|strong=\"H7121\"* through|strong=\"H5921\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* will|strong=\"H1471\"* also|strong=\"H1571\"* make|strong=\"H7760\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H1121\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* servant, because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7760\"* child|strong=\"H1121\"*.”" + }, + { + "verseNum": 14, + "text": "Abraham|strong=\"H3947\"* rose|strong=\"H7925\"* up|strong=\"H5414\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* bread|strong=\"H3899\"* and|strong=\"H7971\"* a|strong=\"H3068\"* container of|strong=\"H4325\"* water|strong=\"H4325\"*, and|strong=\"H7971\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3212\"* Hagar|strong=\"H1904\"*, putting|strong=\"H7760\"* it|strong=\"H5414\"* on|strong=\"H5921\"* her|strong=\"H5414\"* shoulder|strong=\"H7926\"*; and|strong=\"H7971\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* her|strong=\"H5414\"* away|strong=\"H7971\"*. She|strong=\"H5921\"* departed|strong=\"H3212\"*, and|strong=\"H7971\"* wandered|strong=\"H8582\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H4325\"* Beersheba." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* water|strong=\"H4325\"* in|strong=\"H3615\"* the|strong=\"H4480\"* container was|strong=\"H3206\"* spent|strong=\"H3615\"*, and|strong=\"H4325\"* she put|strong=\"H3615\"* the|strong=\"H4480\"* child|strong=\"H3206\"* under|strong=\"H8478\"* one|strong=\"H4480\"* of|strong=\"H4325\"* the|strong=\"H4480\"* shrubs|strong=\"H7880\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H3588\"* went|strong=\"H3212\"* and|strong=\"H3212\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* opposite|strong=\"H5048\"* him|strong=\"H7200\"*, a|strong=\"H3068\"* good|strong=\"H7368\"* way|strong=\"H3212\"* off|strong=\"H7368\"*, about|strong=\"H5048\"* a|strong=\"H3068\"* bow|strong=\"H7198\"* shot away|strong=\"H5375\"*. For|strong=\"H3588\"* she|strong=\"H3588\"* said, “Don’t let|strong=\"H3212\"* me|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H7200\"* child|strong=\"H3206\"*.” She|strong=\"H3588\"* sat|strong=\"H3427\"* opposite|strong=\"H5048\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H3212\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 17, + "text": "God|strong=\"H8064\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* boy|strong=\"H5288\"*." + }, + { + "verseNum": 18, + "text": "Get|strong=\"H6965\"* up|strong=\"H6965\"*, lift|strong=\"H5375\"* up|strong=\"H6965\"* the|strong=\"H3588\"* boy|strong=\"H5288\"*, and|strong=\"H6965\"* hold|strong=\"H2388\"* him|strong=\"H3027\"* with|strong=\"H3027\"* your|strong=\"H7760\"* hand|strong=\"H3027\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1471\"* make|strong=\"H7760\"* him|strong=\"H3027\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*.”" + }, + { + "verseNum": 19, + "text": "God opened|strong=\"H6491\"* her|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H3212\"* she|strong=\"H8248\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* well|strong=\"H5869\"* of|strong=\"H5869\"* water|strong=\"H4325\"*. She|strong=\"H8248\"* went|strong=\"H3212\"*, filled|strong=\"H4390\"* the|strong=\"H7200\"* container with|strong=\"H4390\"* water|strong=\"H4325\"*, and|strong=\"H3212\"* gave|strong=\"H8248\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* a|strong=\"H3068\"* drink|strong=\"H8248\"*." + }, + { + "verseNum": 20, + "text": "God was|strong=\"H1961\"* with|strong=\"H3427\"* the|strong=\"H1961\"* boy|strong=\"H5288\"*, and|strong=\"H5288\"* he|strong=\"H4057\"* grew|strong=\"H1431\"*. He|strong=\"H4057\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1961\"* wilderness|strong=\"H4057\"*, and|strong=\"H5288\"* as|strong=\"H1961\"* he|strong=\"H4057\"* grew|strong=\"H1431\"* up|strong=\"H1431\"*, he|strong=\"H4057\"* became|strong=\"H1961\"* an|strong=\"H1961\"* archer|strong=\"H7235\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H4057\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Paran|strong=\"H6290\"*. His|strong=\"H3947\"* mother got|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H4714\"* him|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H3427\"* the|strong=\"H3947\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "At|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, Abimelech and|strong=\"H6213\"* Phicol|strong=\"H6369\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H3605\"* army|strong=\"H6635\"* spoke to|strong=\"H1961\"* Abraham, saying, “God is|strong=\"H1931\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"*, therefore|strong=\"H6258\"*, swear|strong=\"H7650\"* to|strong=\"H6213\"* me|strong=\"H5978\"* here|strong=\"H2008\"* by|strong=\"H7650\"* God that|strong=\"H6213\"* you|strong=\"H6213\"* will|strong=\"H6213\"* not|strong=\"H6213\"* deal|strong=\"H6213\"* falsely|strong=\"H8266\"* with|strong=\"H5973\"* me|strong=\"H5978\"*, nor|strong=\"H5209\"* with|strong=\"H5973\"* my|strong=\"H6213\"* son|strong=\"H5209\"*, nor|strong=\"H5209\"* with|strong=\"H5973\"* my|strong=\"H6213\"* son|strong=\"H5209\"*’s son|strong=\"H5209\"*. But|strong=\"H6258\"* according to|strong=\"H6213\"* the|strong=\"H6213\"* kindness|strong=\"H2617\"* that|strong=\"H6213\"* I|strong=\"H6258\"* have|strong=\"H6258\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6213\"*, you|strong=\"H6213\"* shall|strong=\"H2617\"* do|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H5978\"*, and|strong=\"H2617\"* to|strong=\"H6213\"* the|strong=\"H6213\"* land in|strong=\"H6213\"* which|strong=\"H2617\"* you|strong=\"H6213\"* have|strong=\"H6258\"* lived|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner.”" + }, + { + "verseNum": 24, + "text": "Abraham said, “I|strong=\"H7650\"* will swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 25, + "text": "Abraham complained|strong=\"H3198\"* to|strong=\"H5921\"* Abimelech because|strong=\"H5921\"* of|strong=\"H5650\"* a|strong=\"H3068\"* water|strong=\"H4325\"* well, which|strong=\"H4325\"* Abimelech’s servants|strong=\"H5650\"* had|strong=\"H4325\"* violently taken|strong=\"H1497\"* away|strong=\"H1497\"*." + }, + { + "verseNum": 26, + "text": "Abimelech said|strong=\"H1697\"*, “I|strong=\"H3117\"* don’t know|strong=\"H3045\"* who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. You|strong=\"H3117\"* didn’t tell|strong=\"H5046\"* me|strong=\"H5046\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* didn’t hear|strong=\"H8085\"* of|strong=\"H3117\"* it|strong=\"H6213\"* until|strong=\"H1115\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 27, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* cattle|strong=\"H1241\"*, and|strong=\"H6629\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* Abimelech. Those two|strong=\"H8147\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 28, + "text": "Abraham set|strong=\"H5324\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"* of|strong=\"H6629\"* the|strong=\"H5324\"* flock|strong=\"H6629\"* by|strong=\"H6629\"* themselves." + }, + { + "verseNum": 29, + "text": "Abimelech said to|strong=\"H5324\"* Abraham, “What|strong=\"H4100\"* do|strong=\"H4100\"* these|strong=\"H2007\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"*, which|strong=\"H4100\"* you|strong=\"H4100\"* have set|strong=\"H5324\"* by|strong=\"H5324\"* themselves, mean?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* these|strong=\"H2063\"* seven|strong=\"H7651\"* ewe|strong=\"H3535\"* lambs|strong=\"H3535\"* from|strong=\"H3027\"* my|strong=\"H3947\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* to|strong=\"H1961\"* me|strong=\"H3947\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* dug|strong=\"H2658\"* this|strong=\"H2063\"* well.”" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3588\"* place|strong=\"H4725\"* Beersheba,+ 21:31 Beersheba can mean “well of the oath” or “well of seven”.* because|strong=\"H3588\"* they|strong=\"H3588\"* both|strong=\"H8147\"* swore|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 32, + "text": "So|strong=\"H6965\"* they|strong=\"H1285\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* at|strong=\"H7725\"* Beersheba. Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"* with|strong=\"H1285\"* Phicol|strong=\"H6369\"*, the|strong=\"H7725\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H7725\"* army|strong=\"H6635\"*, and|strong=\"H6965\"* they|strong=\"H1285\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H8269\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 33, + "text": "Abraham|strong=\"H5193\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* tamarisk tree in|strong=\"H3068\"* Beersheba, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* called|strong=\"H7121\"* on|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Everlasting|strong=\"H5769\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "Abraham lived|strong=\"H1481\"* as|strong=\"H3117\"* a|strong=\"H3068\"* foreigner in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"*, God tested|strong=\"H5254\"* Abraham, and|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H1961\"* him|strong=\"H1697\"*, “Abraham!”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H8033\"* said, “Now|strong=\"H4994\"* take|strong=\"H3947\"* your|strong=\"H3947\"* son|strong=\"H1121\"*, your|strong=\"H3947\"* only|strong=\"H3173\"* son|strong=\"H1121\"*, Isaac|strong=\"H3327\"*, whom you|strong=\"H5921\"* love, and|strong=\"H1121\"* go|strong=\"H3212\"* into|strong=\"H5927\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Moriah|strong=\"H4179\"*. Offer|strong=\"H5927\"* him|strong=\"H5921\"* there|strong=\"H8033\"* as|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* which|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H1121\"* tell|strong=\"H4994\"* you|strong=\"H5921\"* of|strong=\"H1121\"*.”" + }, + { + "verseNum": 3, + "text": "Abraham|strong=\"H3947\"* rose|strong=\"H6965\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*, and|strong=\"H1121\"* saddled|strong=\"H2280\"* his|strong=\"H3947\"* donkey|strong=\"H2543\"*; and|strong=\"H1121\"* took|strong=\"H3947\"* two|strong=\"H8147\"* of|strong=\"H1121\"* his|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* with|strong=\"H3212\"* him|strong=\"H3947\"*, and|strong=\"H1121\"* Isaac|strong=\"H3327\"* his|strong=\"H3947\"* son|strong=\"H1121\"*. He|strong=\"H8147\"* split|strong=\"H1234\"* the|strong=\"H3947\"* wood|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H3947\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* place|strong=\"H4725\"* of|strong=\"H1121\"* which|strong=\"H6086\"* God had|strong=\"H3327\"* told him|strong=\"H3947\"*." + }, + { + "verseNum": 4, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Abraham|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3117\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"* far|strong=\"H7350\"* off|strong=\"H7350\"*." + }, + { + "verseNum": 5, + "text": "Abraham said to|strong=\"H5704\"* his|strong=\"H7725\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Stay|strong=\"H3427\"* here|strong=\"H6311\"* with|strong=\"H5973\"* the|strong=\"H3541\"* donkey|strong=\"H2543\"*. The|strong=\"H3541\"* boy|strong=\"H5288\"* and|strong=\"H7725\"* I|strong=\"H5704\"* will|strong=\"H5288\"* go|strong=\"H3212\"* over|strong=\"H3427\"* there|strong=\"H3427\"*. We|strong=\"H5704\"* will|strong=\"H5288\"* worship|strong=\"H7812\"*, and|strong=\"H7725\"* come|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H5704\"* you|strong=\"H5704\"*.”" + }, + { + "verseNum": 6, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H1121\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* Isaac|strong=\"H3327\"* his|strong=\"H7760\"* son|strong=\"H1121\"*. He|strong=\"H8147\"* took|strong=\"H3947\"* in|strong=\"H5921\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* fire and|strong=\"H1121\"* the|strong=\"H5921\"* knife|strong=\"H3979\"*. They|strong=\"H5921\"* both|strong=\"H8147\"* went|strong=\"H3212\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "Isaac|strong=\"H3327\"* spoke to|strong=\"H1121\"* Abraham his|strong=\"H3327\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “My father|strong=\"H1121\"*?”" + }, + { + "verseNum": 8, + "text": "Abraham said, “God will|strong=\"H1121\"* provide|strong=\"H7200\"* himself the|strong=\"H7200\"* lamb|strong=\"H7716\"* for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, my|strong=\"H7200\"* son|strong=\"H1121\"*.” So|strong=\"H7200\"* they|strong=\"H5930\"* both|strong=\"H8147\"* went|strong=\"H3212\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H8033\"* came to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* which|strong=\"H8033\"* God had|strong=\"H3327\"* told|strong=\"H7760\"* him|strong=\"H5921\"* of|strong=\"H1121\"*. Abraham built|strong=\"H1129\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"*, bound|strong=\"H6123\"* Isaac|strong=\"H3327\"* his|strong=\"H7760\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 10, + "text": "Abraham|strong=\"H3947\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3947\"* knife|strong=\"H3979\"* to|strong=\"H7971\"* kill|strong=\"H7819\"* his|strong=\"H7971\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* called|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Abraham, Abraham!”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said, “Don’t lay|strong=\"H7971\"* your|strong=\"H3045\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H3588\"* boy|strong=\"H5288\"* or|strong=\"H3808\"* do|strong=\"H6213\"* anything|strong=\"H3972\"* to|strong=\"H7971\"* him|strong=\"H7971\"*. For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* fear|strong=\"H3373\"* God|strong=\"H3808\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* withheld|strong=\"H2820\"* your|strong=\"H3045\"* son|strong=\"H1121\"*, your|strong=\"H3045\"* only|strong=\"H3173\"* son|strong=\"H1121\"*, from|strong=\"H4480\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 13, + "text": "Abraham|strong=\"H3947\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* looked|strong=\"H7200\"*, and|strong=\"H1121\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* behind him|strong=\"H7200\"* was|strong=\"H1121\"* a|strong=\"H3068\"* ram caught|strong=\"H3947\"* in|strong=\"H3212\"* the|strong=\"H7200\"* thicket|strong=\"H5442\"* by|strong=\"H5927\"* his|strong=\"H5375\"* horns|strong=\"H7161\"*. Abraham|strong=\"H3947\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H7200\"* ram, and|strong=\"H1121\"* offered|strong=\"H5927\"* him|strong=\"H7200\"* up|strong=\"H5927\"* for|strong=\"H8478\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H5375\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Abraham called|strong=\"H7121\"* the|strong=\"H7200\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H7200\"* place|strong=\"H4725\"* “Yahweh|strong=\"H3068\"* Will|strong=\"H3068\"* Provide|strong=\"H7200\"*”.+ 22:14 or, Yahweh-Jireh, or, Yahweh-Seeing* As|strong=\"H3117\"* it|strong=\"H1931\"* is|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* this|strong=\"H1931\"* day|strong=\"H3117\"*, “On|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s mountain|strong=\"H2022\"*, it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* provided|strong=\"H7200\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Abraham a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* said|strong=\"H1697\"*, “‘I|strong=\"H3588\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* not|strong=\"H3808\"* withheld|strong=\"H2820\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* only|strong=\"H3173\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 17, + "text": "that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8064\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* greatly|strong=\"H7235\"*, and|strong=\"H8064\"* I|strong=\"H3588\"* will|strong=\"H8064\"* multiply|strong=\"H7235\"* your|strong=\"H5921\"* offspring|strong=\"H2233\"* greatly|strong=\"H7235\"* like|strong=\"H5921\"* the|strong=\"H5921\"* stars|strong=\"H3556\"* of|strong=\"H8179\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* like|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H1288\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"*. Your|strong=\"H5921\"* offspring|strong=\"H2233\"* will|strong=\"H8064\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* his|strong=\"H5921\"* enemies." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H6963\"* the|strong=\"H3605\"* earth will|strong=\"H1471\"* be|strong=\"H1471\"* blessed|strong=\"H1288\"* by|strong=\"H3605\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, because|strong=\"H6118\"* you|strong=\"H3605\"* have|strong=\"H1471\"* obeyed|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.’”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6965\"* Abraham returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H6965\"* they|strong=\"H3162\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* together|strong=\"H3162\"* to|strong=\"H7725\"* Beersheba. Abraham lived|strong=\"H3427\"* at|strong=\"H3427\"* Beersheba." + }, + { + "verseNum": 20, + "text": "After|strong=\"H1961\"* these|strong=\"H1931\"* things|strong=\"H1697\"*, Abraham was|strong=\"H1961\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, Milcah|strong=\"H4435\"*, she|strong=\"H1931\"* also|strong=\"H1571\"* has|strong=\"H1961\"* borne|strong=\"H3205\"* children|strong=\"H1121\"* to|strong=\"H1961\"* your|strong=\"H1961\"* brother Nahor|strong=\"H5152\"*:" + }, + { + "verseNum": 21, + "text": "Uz|strong=\"H5780\"* his|strong=\"H5780\"* firstborn|strong=\"H1060\"*, Buz his|strong=\"H5780\"* brother, Kemuel|strong=\"H7055\"* the|strong=\"H7055\"* father of|strong=\"H1060\"* Aram," + }, + { + "verseNum": 22, + "text": "Chesed|strong=\"H3777\"*, Hazo|strong=\"H2375\"*, Pildash|strong=\"H6394\"*, Jidlaph|strong=\"H3044\"*, and|strong=\"H2375\"* Bethuel|strong=\"H1328\"*.”" + }, + { + "verseNum": 23, + "text": "Bethuel|strong=\"H1328\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Rebekah|strong=\"H7259\"*. These eight|strong=\"H8083\"* Milcah|strong=\"H4435\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Nahor|strong=\"H5152\"*, Abraham’s brother." + }, + { + "verseNum": 24, + "text": "His|strong=\"H1931\"* concubine|strong=\"H6370\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Reumah|strong=\"H7208\"*, also|strong=\"H1571\"* bore|strong=\"H3205\"* Tebah|strong=\"H2875\"*, Gaham|strong=\"H1514\"*, Tahash|strong=\"H8477\"*, and|strong=\"H8034\"* Maacah|strong=\"H4601\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Sarah|strong=\"H8283\"* lived|strong=\"H2416\"* one|strong=\"H2416\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* years|strong=\"H8141\"*. This|strong=\"H2416\"* was|strong=\"H1961\"* the|strong=\"H1961\"* length|strong=\"H8141\"* of|strong=\"H8141\"* Sarah|strong=\"H8283\"*’s life|strong=\"H2416\"*." + }, + { + "verseNum": 2, + "text": "Sarah|strong=\"H8283\"* died|strong=\"H4191\"* in|strong=\"H4191\"* Kiriath Arba (also|strong=\"H1931\"* called Hebron|strong=\"H2275\"*), in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H4191\"* Canaan|strong=\"H3667\"*. Abraham came to|strong=\"H4191\"* mourn|strong=\"H5594\"* for|strong=\"H4191\"* Sarah|strong=\"H8283\"*, and|strong=\"H4191\"* to|strong=\"H4191\"* weep|strong=\"H1058\"* for|strong=\"H4191\"* her|strong=\"H1058\"*." + }, + { + "verseNum": 3, + "text": "Abraham rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H6440\"* dead|strong=\"H4191\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“I|strong=\"H5414\"* am a|strong=\"H3068\"* stranger|strong=\"H1616\"* and|strong=\"H6440\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* living with|strong=\"H5973\"* you|strong=\"H5414\"*. Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* possession of|strong=\"H6440\"* a|strong=\"H3068\"* burying-place with|strong=\"H5973\"* you|strong=\"H5414\"*, that|strong=\"H1616\"* I|strong=\"H5414\"* may|strong=\"H5414\"* bury|strong=\"H6912\"* my|strong=\"H5414\"* dead|strong=\"H4191\"* out|strong=\"H5414\"* of|strong=\"H6440\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H6030\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"* answered|strong=\"H6030\"* Abraham, saying to|strong=\"H1121\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 6, + "text": "“Hear|strong=\"H8085\"* us|strong=\"H8085\"*, my|strong=\"H8085\"* lord. You|strong=\"H3808\"* are|strong=\"H6913\"* a|strong=\"H3068\"* prince|strong=\"H5387\"* of|strong=\"H4480\"* God|strong=\"H3808\"* among|strong=\"H8432\"* us|strong=\"H8085\"*. Bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H8085\"* best of|strong=\"H4480\"* our|strong=\"H8085\"* tombs|strong=\"H6913\"*. None|strong=\"H3808\"* of|strong=\"H4480\"* us|strong=\"H8085\"* will|strong=\"H3808\"* withhold|strong=\"H3607\"* from|strong=\"H4480\"* you|strong=\"H3808\"* his|strong=\"H8085\"* tomb|strong=\"H6913\"*. Bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 7, + "text": "Abraham rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H1121\"* the|strong=\"H6965\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H6965\"* land, to|strong=\"H1121\"* the|strong=\"H6965\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1696\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H6440\"*, saying|strong=\"H1696\"*, “If|strong=\"H3426\"* you|strong=\"H6440\"* agree|strong=\"H8085\"* that|strong=\"H8085\"* I|strong=\"H5315\"* should bury|strong=\"H6912\"* my|strong=\"H8085\"* dead|strong=\"H4191\"* out|strong=\"H6440\"* of|strong=\"H1121\"* my|strong=\"H8085\"* sight|strong=\"H6440\"*, hear|strong=\"H8085\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* entreat|strong=\"H6293\"* for|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zohar|strong=\"H6714\"*," + }, + { + "verseNum": 9, + "text": "that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H5414\"* sell|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* cave|strong=\"H4631\"* of|strong=\"H4392\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* he|strong=\"H5414\"* has|strong=\"H5414\"*, which|strong=\"H7704\"* is|strong=\"H3701\"* in|strong=\"H8432\"* the|strong=\"H5414\"* end|strong=\"H7097\"* of|strong=\"H4392\"* his|strong=\"H5414\"* field|strong=\"H7704\"*. For|strong=\"H3701\"* the|strong=\"H5414\"* full|strong=\"H4392\"* price|strong=\"H3701\"* let|strong=\"H5414\"* him|strong=\"H5414\"* sell|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"* among|strong=\"H8432\"* you|strong=\"H5414\"* as|strong=\"H5414\"* a|strong=\"H3068\"* possession for|strong=\"H3701\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H5414\"*.”" + }, + { + "verseNum": 10, + "text": "Now Ephron|strong=\"H6085\"* was|strong=\"H5892\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*. Ephron|strong=\"H6085\"* the|strong=\"H3605\"* Hittite|strong=\"H2850\"* answered|strong=\"H6030\"* Abraham in|strong=\"H3427\"* the|strong=\"H3605\"* hearing of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, even of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H5892\"* in|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*, saying," + }, + { + "verseNum": 11, + "text": "“No|strong=\"H3808\"*, my|strong=\"H8085\"* lord, hear|strong=\"H8085\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H8085\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H8085\"* cave|strong=\"H4631\"* that|strong=\"H5971\"* is|strong=\"H1121\"* in|strong=\"H4191\"* it|strong=\"H5414\"*. In|strong=\"H4191\"* the|strong=\"H8085\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H8085\"* people|strong=\"H5971\"* I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H4191\"* you|strong=\"H5414\"*. Bury|strong=\"H6912\"* your|strong=\"H5414\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "Abraham bowed|strong=\"H7812\"* himself|strong=\"H7812\"* down|strong=\"H7812\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H8033\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* in|strong=\"H4191\"* the|strong=\"H8085\"* audience of|strong=\"H7704\"* the|strong=\"H8085\"* people|strong=\"H5971\"* of|strong=\"H7704\"* the|strong=\"H8085\"* land|strong=\"H7704\"*, saying|strong=\"H1696\"*, “But|strong=\"H1696\"* if|strong=\"H3863\"* you|strong=\"H5414\"* will|strong=\"H5971\"*, please|strong=\"H8085\"* hear|strong=\"H8085\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* the|strong=\"H8085\"* price|strong=\"H3701\"* of|strong=\"H7704\"* the|strong=\"H8085\"* field|strong=\"H7704\"*. Take|strong=\"H3947\"* it|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*, and|strong=\"H3701\"* I|strong=\"H5414\"* will|strong=\"H5971\"* bury|strong=\"H6912\"* my|strong=\"H8085\"* dead|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 14, + "text": "Ephron|strong=\"H6085\"* answered|strong=\"H6030\"* Abraham, saying to|strong=\"H6030\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 15, + "text": "“My|strong=\"H8085\"* lord, listen|strong=\"H8085\"* to|strong=\"H4191\"* me|strong=\"H4191\"*. What|strong=\"H4100\"* is|strong=\"H1931\"* a|strong=\"H3068\"* piece of|strong=\"H8255\"* land worth four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H8255\"* silver|strong=\"H3701\"*+ 23:15 A shekel is about 10 grams, so 400 shekels would be about 4 kg. or 8.8 pounds.* between me|strong=\"H4191\"* and|strong=\"H3967\"* you|strong=\"H4100\"*? Therefore bury|strong=\"H6912\"* your|strong=\"H8085\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "Abraham listened|strong=\"H8085\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"*. Abraham weighed|strong=\"H8254\"* to|strong=\"H1696\"* Ephron|strong=\"H6085\"* the|strong=\"H8085\"* silver|strong=\"H3701\"* which|strong=\"H8085\"* he|strong=\"H1696\"* had|strong=\"H1121\"* named|strong=\"H1696\"* in|strong=\"H8085\"* the|strong=\"H8085\"* hearing|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H1696\"* the|strong=\"H8085\"* current|strong=\"H5674\"* merchants|strong=\"H5503\"*’ standard|strong=\"H5674\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H6965\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H1366\"* Ephron|strong=\"H6085\"*, which|strong=\"H6086\"* was|strong=\"H1366\"* in|strong=\"H6440\"* Machpelah|strong=\"H4375\"*, which|strong=\"H6086\"* was|strong=\"H1366\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"*, the|strong=\"H3605\"* field|strong=\"H7704\"*, the|strong=\"H3605\"* cave|strong=\"H4631\"* which|strong=\"H6086\"* was|strong=\"H1366\"* in|strong=\"H6440\"* it|strong=\"H5439\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* that|strong=\"H3605\"* were|strong=\"H5439\"* in|strong=\"H6440\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, that|strong=\"H3605\"* were|strong=\"H5439\"* in|strong=\"H6440\"* all|strong=\"H3605\"* of|strong=\"H1366\"* its|strong=\"H3605\"* borders|strong=\"H1366\"*, were|strong=\"H5439\"* deeded|strong=\"H6965\"*" + }, + { + "verseNum": 18, + "text": "to|strong=\"H1121\"* Abraham for|strong=\"H1121\"* a|strong=\"H3068\"* possession|strong=\"H4736\"* in|strong=\"H5892\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*, before|strong=\"H5869\"* all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H5892\"* in|strong=\"H5892\"* at|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "After|strong=\"H5921\"* this|strong=\"H3651\"*, Abraham buried|strong=\"H6912\"* Sarah|strong=\"H8283\"* his|strong=\"H6440\"* wife in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H6440\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H6440\"* Machpelah|strong=\"H4375\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Hebron|strong=\"H2275\"*), in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6965\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* the|strong=\"H6965\"* cave|strong=\"H4631\"* that|strong=\"H1121\"* is|strong=\"H1121\"* in|strong=\"H1121\"* it|strong=\"H6965\"*, were|strong=\"H1121\"* deeded|strong=\"H6965\"* to|strong=\"H1121\"* Abraham by|strong=\"H6965\"* the|strong=\"H6965\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"* as|strong=\"H1121\"* a|strong=\"H3068\"* possession for|strong=\"H1121\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H6913\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Abraham was|strong=\"H3068\"* old|strong=\"H2204\"*, and|strong=\"H3068\"* well advanced in|strong=\"H3068\"* age|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* blessed|strong=\"H1288\"* Abraham in|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Abraham said to|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, the|strong=\"H3605\"* elder|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, who|strong=\"H3605\"* ruled|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3027\"*, “Please|strong=\"H4994\"* put|strong=\"H7760\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* my|strong=\"H3605\"* thigh|strong=\"H3409\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H3427\"* you|strong=\"H3947\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* heaven|strong=\"H8064\"* and|strong=\"H1121\"* the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H3947\"* earth|strong=\"H8064\"*, that|strong=\"H3068\"* you|strong=\"H3947\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Canaanites|strong=\"H3669\"*, among|strong=\"H7130\"* whom I|strong=\"H3808\"* live|strong=\"H3427\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3947\"* country, and|strong=\"H1121\"* to|strong=\"H3212\"* my|strong=\"H3947\"* relatives|strong=\"H4138\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3588\"* my|strong=\"H3947\"* son|strong=\"H1121\"* Isaac|strong=\"H3327\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* servant|strong=\"H5650\"* said|strong=\"H3318\"* to|strong=\"H7725\"* him|strong=\"H7725\"*, “What|strong=\"H2063\"* if|strong=\"H1121\"* the|strong=\"H7725\"* woman isn’t willing to|strong=\"H7725\"* follow|strong=\"H3212\"* me|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land? Must|strong=\"H1121\"* I|strong=\"H5650\"* bring|strong=\"H3318\"* your|strong=\"H7725\"* son|strong=\"H1121\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* land you|strong=\"H7725\"* came|strong=\"H3318\"* from|strong=\"H7725\"*?”" + }, + { + "verseNum": 6, + "text": "Abraham said to|strong=\"H7725\"* him|strong=\"H7725\"*, “Beware|strong=\"H8104\"* that|strong=\"H1121\"* you|strong=\"H7725\"* don’t bring|strong=\"H7725\"* my|strong=\"H8104\"* son|strong=\"H1121\"* there|strong=\"H8033\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* heaven|strong=\"H8064\"*—who|strong=\"H1931\"* took|strong=\"H3947\"* me|strong=\"H5414\"* from|strong=\"H6440\"* my|strong=\"H5414\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* from|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* my|strong=\"H5414\"* birth|strong=\"H4138\"*, who|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* who|strong=\"H1931\"* swore|strong=\"H7650\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1696\"*, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land|strong=\"H6440\"* to|strong=\"H1696\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*—he|strong=\"H1931\"* will|strong=\"H3068\"* send|strong=\"H7971\"* his|strong=\"H5414\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H1696\"* for|strong=\"H6440\"* my|strong=\"H5414\"* son|strong=\"H1121\"* from|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1121\"* the|strong=\"H7725\"* woman isn’t willing to|strong=\"H7725\"* follow|strong=\"H3212\"* you|strong=\"H7725\"*, then|strong=\"H7725\"* you|strong=\"H7725\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* clear|strong=\"H5352\"* from|strong=\"H7725\"* this|strong=\"H2063\"* oath|strong=\"H7621\"* to|strong=\"H7725\"* me|strong=\"H7725\"*. Only|strong=\"H7535\"* you|strong=\"H7725\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H7725\"* my|strong=\"H7725\"* son|strong=\"H1121\"* there|strong=\"H8033\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* servant|strong=\"H5650\"* put|strong=\"H7760\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H5921\"* thigh|strong=\"H3409\"* of|strong=\"H3027\"* Abraham his|strong=\"H7760\"* master, and|strong=\"H3027\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* servant|strong=\"H5650\"* took|strong=\"H3947\"* ten|strong=\"H6235\"* of|strong=\"H3027\"* his|strong=\"H3605\"* master’s camels|strong=\"H1581\"*, and|strong=\"H6965\"* departed|strong=\"H3212\"*, having a|strong=\"H3068\"* variety|strong=\"H3605\"* of|strong=\"H3027\"* good|strong=\"H2898\"* things|strong=\"H3605\"* of|strong=\"H3027\"* his|strong=\"H3605\"* master’s with|strong=\"H3212\"* him|strong=\"H3027\"*. He|strong=\"H3605\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Mesopotamia, to|strong=\"H3212\"* the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H3027\"* Nahor|strong=\"H5152\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6256\"* made|strong=\"H1288\"* the|strong=\"H1288\"* camels|strong=\"H1581\"* kneel|strong=\"H1288\"* down|strong=\"H1288\"* outside|strong=\"H2351\"* the|strong=\"H1288\"* city|strong=\"H5892\"* by|strong=\"H3318\"* the|strong=\"H1288\"* well of|strong=\"H5892\"* water|strong=\"H4325\"* at|strong=\"H3318\"* the|strong=\"H1288\"* time|strong=\"H6256\"* of|strong=\"H5892\"* evening|strong=\"H6153\"*, the|strong=\"H1288\"* time|strong=\"H6256\"* that|strong=\"H5892\"* women go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham, please|strong=\"H4994\"* give|strong=\"H4994\"* me|strong=\"H6440\"* success|strong=\"H7136\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am standing|strong=\"H5324\"* by|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H3318\"* of|strong=\"H1323\"* water|strong=\"H4325\"*. The|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H5921\"* men of|strong=\"H1323\"* the|strong=\"H5921\"* city|strong=\"H5892\"* are|strong=\"H5869\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"H4994\"* it|strong=\"H3588\"* happen|strong=\"H1961\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* to|strong=\"H1961\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* say, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* down|strong=\"H5186\"* your|strong=\"H5186\"* pitcher|strong=\"H3537\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* drink|strong=\"H8354\"*,’ then|strong=\"H1961\"* she|strong=\"H3588\"* says|strong=\"H8354\"*, ‘Drink|strong=\"H8354\"*, and|strong=\"H5650\"* I|strong=\"H3588\"* will|strong=\"H1961\"* also|strong=\"H1571\"* give|strong=\"H8248\"* your|strong=\"H5186\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*,’—let|strong=\"H4994\"* her|strong=\"H3045\"* be|strong=\"H1961\"* the|strong=\"H3588\"* one|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* appointed|strong=\"H3198\"* for|strong=\"H3588\"* your|strong=\"H5186\"* servant|strong=\"H5650\"* Isaac|strong=\"H3327\"*. By|strong=\"H1571\"* this|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shown|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* my|strong=\"H3045\"* master.”" + }, + { + "verseNum": 15, + "text": "Before|strong=\"H2962\"* he|strong=\"H1931\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* came|strong=\"H1961\"* out|strong=\"H3318\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1696\"* Bethuel|strong=\"H1328\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Milcah|strong=\"H4435\"*, the|strong=\"H5921\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*, Abraham’s brother, with|strong=\"H1696\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* shoulder|strong=\"H7926\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3045\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* was|strong=\"H3966\"* very|strong=\"H3966\"* beautiful|strong=\"H2896\"* to|strong=\"H3381\"* look|strong=\"H5869\"* at|strong=\"H3808\"*, a|strong=\"H3068\"* virgin|strong=\"H1330\"*. No|strong=\"H3808\"* man|strong=\"H2896\"* had|strong=\"H3045\"* known|strong=\"H3045\"* her|strong=\"H4390\"*. She|strong=\"H3808\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3045\"* spring|strong=\"H5927\"*, filled|strong=\"H4390\"* her|strong=\"H4390\"* pitcher|strong=\"H3537\"*, and|strong=\"H5869\"* came|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5650\"* servant|strong=\"H5650\"* ran|strong=\"H7323\"* to|strong=\"H4325\"* meet|strong=\"H7125\"* her|strong=\"H7125\"*, and|strong=\"H5650\"* said, “Please|strong=\"H4994\"* give|strong=\"H4994\"* me|strong=\"H4994\"* a|strong=\"H3068\"* drink|strong=\"H1572\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* from|strong=\"H5650\"* your|strong=\"H4994\"* pitcher|strong=\"H3537\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H8248\"* said, “Drink|strong=\"H8354\"*, my|strong=\"H5921\"* lord.” She|strong=\"H8248\"* hurried|strong=\"H4116\"*, and|strong=\"H3027\"* let|strong=\"H3381\"* down|strong=\"H3381\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* gave|strong=\"H8248\"* him|strong=\"H5921\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3615\"* she|strong=\"H8248\"* had|strong=\"H1581\"* finished|strong=\"H3615\"* giving|strong=\"H8248\"* him|strong=\"H8248\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*, she|strong=\"H8248\"* said, “I|strong=\"H5704\"* will|strong=\"H1571\"* also|strong=\"H1571\"* draw|strong=\"H7579\"* for|strong=\"H5704\"* your|strong=\"H5704\"* camels|strong=\"H1581\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* have|strong=\"H1571\"* finished|strong=\"H3615\"* drinking|strong=\"H8354\"*.”" + }, + { + "verseNum": 20, + "text": "She hurried|strong=\"H4116\"*, and|strong=\"H4116\"* emptied|strong=\"H6168\"* her|strong=\"H3605\"* pitcher|strong=\"H3537\"* into the|strong=\"H3605\"* trough|strong=\"H8268\"*, and|strong=\"H4116\"* ran|strong=\"H7323\"* again|strong=\"H5750\"* to|strong=\"H7323\"* the|strong=\"H3605\"* well to|strong=\"H7323\"* draw|strong=\"H7579\"*, and|strong=\"H4116\"* drew|strong=\"H7579\"* for|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* camels|strong=\"H1581\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3068\"* man|strong=\"H3045\"* looked|strong=\"H3068\"* steadfastly at|strong=\"H3068\"* her|strong=\"H3045\"*, remaining silent|strong=\"H2790\"*, to|strong=\"H3068\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H3045\"* his|strong=\"H3068\"* journey|strong=\"H1870\"* prosperous|strong=\"H6743\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H1961\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* drinking|strong=\"H8354\"*, the|strong=\"H5921\"* man took|strong=\"H3947\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* ring|strong=\"H5141\"* of|strong=\"H3027\"* half a|strong=\"H3068\"* shekel|strong=\"H1235\"*+ 24:22 A shekel is about 10 grams or about 0.35 ounces.* weight|strong=\"H4948\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* bracelets|strong=\"H6781\"* for|strong=\"H5921\"* her|strong=\"H3947\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* ten|strong=\"H6235\"* shekels|strong=\"H4948\"* weight|strong=\"H4948\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"H1004\"* said, “Whose|strong=\"H4310\"* daughter|strong=\"H1323\"* are|strong=\"H3426\"* you|strong=\"H5046\"*? Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"*. Is|strong=\"H3426\"* there|strong=\"H3426\"* room|strong=\"H1004\"* in|strong=\"H1004\"* your|strong=\"H4994\"* father’s house|strong=\"H1004\"* for|strong=\"H1004\"* us|strong=\"H4994\"* to|strong=\"H1004\"* stay|strong=\"H3885\"*?”" + }, + { + "verseNum": 24, + "text": "She said to|strong=\"H3205\"* him|strong=\"H3205\"*, “I|strong=\"H1121\"* am the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Milcah|strong=\"H4435\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3205\"* Nahor|strong=\"H5152\"*.”" + }, + { + "verseNum": 25, + "text": "She|strong=\"H5973\"* said moreover|strong=\"H1571\"* to|strong=\"H5973\"* him|strong=\"H5973\"*, “We have|strong=\"H1571\"* both|strong=\"H1571\"* straw|strong=\"H8401\"* and|strong=\"H4725\"* feed|strong=\"H4554\"* enough|strong=\"H7227\"*, and|strong=\"H4725\"* room|strong=\"H4725\"* to|strong=\"H5973\"* lodge|strong=\"H3885\"* in|strong=\"H7227\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H3068\"* man bowed|strong=\"H7812\"* his|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* my|strong=\"H3068\"* master Abraham, who|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* his|strong=\"H3068\"* truth|strong=\"H3808\"* toward|strong=\"H1870\"* my|strong=\"H3068\"* master. As|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H1288\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* led|strong=\"H5148\"* me|strong=\"H1288\"* on|strong=\"H1870\"* the|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3068\"* master’s relatives.”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H1697\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* ran|strong=\"H7323\"*, and|strong=\"H1004\"* told|strong=\"H5046\"* her|strong=\"H5046\"* mother’s house|strong=\"H1004\"* about|strong=\"H1697\"* these|strong=\"H1004\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "Rebekah|strong=\"H7259\"* had|strong=\"H5869\"* a|strong=\"H3068\"* brother, and|strong=\"H5869\"* his|strong=\"H7259\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Laban|strong=\"H3837\"*. Laban|strong=\"H3837\"* ran|strong=\"H7323\"* out|strong=\"H2351\"* to|strong=\"H5869\"* the|strong=\"H2351\"* man, to|strong=\"H5869\"* the|strong=\"H2351\"* spring|strong=\"H5869\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H1961\"* he|strong=\"H3027\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* ring|strong=\"H5141\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* his|strong=\"H8085\"* sister’s hands|strong=\"H3027\"*, and|strong=\"H3027\"* when|strong=\"H1961\"* he|strong=\"H3027\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H3027\"* Rebekah|strong=\"H7259\"* his|strong=\"H8085\"* sister, saying|strong=\"H1697\"*, “This|strong=\"H3541\"* is|strong=\"H3027\"* what|strong=\"H1697\"* the|strong=\"H5921\"* man|strong=\"H7200\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*,” he|strong=\"H3027\"* came|strong=\"H1961\"* to|strong=\"H1696\"* the|strong=\"H5921\"* man|strong=\"H7200\"*. Behold|strong=\"H2009\"*, he|strong=\"H3027\"* was|strong=\"H1961\"* standing|strong=\"H5975\"* by|strong=\"H3027\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* at|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H5869\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3068\"* said, “Come in|strong=\"H3068\"*, you|strong=\"H1288\"* blessed|strong=\"H1288\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*. Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H1288\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*? For|strong=\"H3068\"* I|strong=\"H4100\"* have|strong=\"H3068\"* prepared|strong=\"H6437\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* room|strong=\"H1004\"* for|strong=\"H3068\"* the|strong=\"H3068\"* camels|strong=\"H1581\"*.”" + }, + { + "verseNum": 32, + "text": "The|strong=\"H5414\"* man came|strong=\"H4325\"* into|strong=\"H4325\"* the|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* unloaded|strong=\"H6605\"* the|strong=\"H5414\"* camels|strong=\"H1581\"*. He|strong=\"H1004\"* gave|strong=\"H5414\"* straw|strong=\"H8401\"* and|strong=\"H1004\"* feed|strong=\"H4554\"* for|strong=\"H1004\"* the|strong=\"H5414\"* camels|strong=\"H1581\"*, and|strong=\"H1004\"* water|strong=\"H4325\"* to|strong=\"H5414\"* wash|strong=\"H7364\"* his|strong=\"H5414\"* feet|strong=\"H7272\"* and|strong=\"H1004\"* the|strong=\"H5414\"* feet|strong=\"H7272\"* of|strong=\"H1004\"* the|strong=\"H5414\"* men who were|strong=\"H4325\"* with|strong=\"H1004\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 33, + "text": "Food was|strong=\"H1697\"* set before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H1696\"* eat, but|strong=\"H3808\"* he|strong=\"H5704\"* said|strong=\"H1696\"*, “I|strong=\"H5704\"* will|strong=\"H1697\"* not|strong=\"H3808\"* eat until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1697\"* told|strong=\"H1696\"* my|strong=\"H1696\"* message|strong=\"H1697\"*.”" + }, + { + "verseNum": 34, + "text": "He said, “I|strong=\"H5650\"* am Abraham’s servant|strong=\"H5650\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* my|strong=\"H5414\"* master|strong=\"H5414\"* greatly|strong=\"H3966\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* become|strong=\"H1431\"* great|strong=\"H1431\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* him|strong=\"H5414\"* flocks|strong=\"H6629\"* and|strong=\"H3068\"* herds|strong=\"H1241\"*, silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* camels|strong=\"H1581\"* and|strong=\"H3068\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 36, + "text": "Sarah|strong=\"H8283\"*, my|strong=\"H5414\"* master|strong=\"H5414\"*’s wife, bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H5414\"* my|strong=\"H5414\"* master|strong=\"H5414\"* when|strong=\"H1121\"* she was|strong=\"H1121\"* old|strong=\"H1121\"*. He|strong=\"H3605\"* has|strong=\"H3605\"* given|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3605\"* to|strong=\"H5414\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "My|strong=\"H3947\"* master|strong=\"H3427\"* made|strong=\"H7650\"* me|strong=\"H3947\"* swear|strong=\"H7650\"*, saying, ‘You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H3427\"* my|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Canaanites|strong=\"H3669\"*, in|strong=\"H3427\"* whose|strong=\"H1121\"* land I|strong=\"H3808\"* live|strong=\"H3427\"*," + }, + { + "verseNum": 38, + "text": "but|strong=\"H3808\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3947\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* to|strong=\"H3212\"* my|strong=\"H3947\"* relatives|strong=\"H4940\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H1004\"* my|strong=\"H3947\"* son|strong=\"H1121\"*.’" + }, + { + "verseNum": 39, + "text": "I|strong=\"H3808\"* asked my|strong=\"H3808\"* master, ‘What if the|strong=\"H3808\"* woman will|strong=\"H3808\"* not|strong=\"H3808\"* follow|strong=\"H3212\"* me|strong=\"H3808\"*?’" + }, + { + "verseNum": 40, + "text": "He|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H6440\"*, ‘Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H1980\"* walk|strong=\"H1980\"*, will|strong=\"H3068\"* send|strong=\"H7971\"* his|strong=\"H3068\"* angel|strong=\"H4397\"* with|strong=\"H1980\"* you|strong=\"H6440\"*, and|strong=\"H1121\"* prosper|strong=\"H6743\"* your|strong=\"H3068\"* way|strong=\"H1870\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H6440\"* my|strong=\"H3068\"* son|strong=\"H1121\"* from|strong=\"H6440\"* my|strong=\"H3068\"* relatives|strong=\"H4940\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3068\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* clear|strong=\"H5352\"* from|strong=\"H1961\"* my|strong=\"H5414\"* oath, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* my|strong=\"H5414\"* relatives|strong=\"H4940\"*. If|strong=\"H3588\"* they|strong=\"H3588\"* don’t give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* clear|strong=\"H5352\"* from|strong=\"H1961\"* my|strong=\"H5414\"* oath.’" + }, + { + "verseNum": 42, + "text": "I|strong=\"H3117\"* came|strong=\"H1980\"* today|strong=\"H3117\"* to|strong=\"H1980\"* the|strong=\"H5921\"* spring|strong=\"H5869\"*, and|strong=\"H1980\"* said, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* my|strong=\"H3068\"* master Abraham, if|strong=\"H3426\"* now|strong=\"H4994\"* you|strong=\"H5921\"* do|strong=\"H3068\"* prosper|strong=\"H6743\"* my|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3117\"* go|strong=\"H1980\"*—" + }, + { + "verseNum": 43, + "text": "behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1961\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* this|strong=\"H4994\"* spring|strong=\"H3318\"* of|strong=\"H5869\"* water|strong=\"H4325\"*. Let|strong=\"H4994\"* it|strong=\"H5921\"* happen|strong=\"H1961\"*, that|strong=\"H4325\"* the|strong=\"H5921\"* maiden|strong=\"H5959\"* who|strong=\"H5959\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"*, to|strong=\"H3318\"* whom|strong=\"H5869\"* I|strong=\"H2009\"* will|strong=\"H1961\"* say, “Please|strong=\"H4994\"* give|strong=\"H8248\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* from|strong=\"H3318\"* your|strong=\"H5921\"* pitcher|strong=\"H3537\"* to|strong=\"H3318\"* drink|strong=\"H8248\"*,”" + }, + { + "verseNum": 44, + "text": "then|strong=\"H1571\"* she|strong=\"H1931\"* tells me|strong=\"H1571\"*, “Drink|strong=\"H8354\"*, and|strong=\"H1121\"* I|strong=\"H1571\"* will|strong=\"H3068\"* also|strong=\"H1571\"* draw|strong=\"H7579\"* for|strong=\"H3068\"* your|strong=\"H3068\"* camels|strong=\"H1581\"*,”—let her|strong=\"H1571\"* be|strong=\"H3068\"* the|strong=\"H3068\"* woman whom Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* appointed|strong=\"H1121\"* for|strong=\"H3068\"* my|strong=\"H3068\"* master’s son|strong=\"H1121\"*.’" + }, + { + "verseNum": 45, + "text": "Before|strong=\"H2962\"* I|strong=\"H2009\"* had|strong=\"H5869\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* in|strong=\"H5921\"* my|strong=\"H5921\"* heart|strong=\"H3820\"*, behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* came|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H1696\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* on|strong=\"H5921\"* her|strong=\"H5921\"* shoulder|strong=\"H7926\"*. She|strong=\"H8248\"* went|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H1696\"* the|strong=\"H5921\"* spring|strong=\"H3318\"*, and|strong=\"H5869\"* drew|strong=\"H7579\"*. I|strong=\"H2009\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* drink|strong=\"H8248\"*.’" + }, + { + "verseNum": 46, + "text": "She|strong=\"H8248\"* hurried|strong=\"H4116\"* and|strong=\"H3381\"* let|strong=\"H3381\"* down|strong=\"H3381\"* her|strong=\"H5921\"* pitcher|strong=\"H3537\"* from|strong=\"H3381\"* her|strong=\"H5921\"* shoulder, and|strong=\"H3381\"* said, ‘Drink|strong=\"H8354\"*, and|strong=\"H3381\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H8248\"* your|strong=\"H5921\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*.’ So|strong=\"H1571\"* I|strong=\"H5921\"* drank|strong=\"H8354\"*, and|strong=\"H3381\"* she|strong=\"H8248\"* also|strong=\"H1571\"* gave|strong=\"H8248\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* a|strong=\"H3068\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 47, + "text": "I|strong=\"H5921\"* asked|strong=\"H7592\"* her|strong=\"H5921\"*, and|strong=\"H1121\"* said, ‘Whose|strong=\"H4310\"* daughter|strong=\"H1323\"* are|strong=\"H1121\"* you|strong=\"H5921\"*?’ She|strong=\"H5921\"* said, ‘The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"*, Nahor|strong=\"H5152\"*’s son|strong=\"H1121\"*, whom|strong=\"H4310\"* Milcah|strong=\"H4435\"* bore|strong=\"H3205\"* to|strong=\"H5921\"* him|strong=\"H3205\"*.’ I|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* ring|strong=\"H5141\"* on|strong=\"H5921\"* her|strong=\"H5921\"* nose, and|strong=\"H1121\"* the|strong=\"H5921\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* her|strong=\"H5921\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 48, + "text": "I|strong=\"H1121\"* bowed|strong=\"H7812\"* my|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H1121\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* my|strong=\"H3068\"* master Abraham|strong=\"H3947\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* led|strong=\"H5148\"* me|strong=\"H3947\"* in|strong=\"H3068\"* the|strong=\"H3947\"* right|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* take|strong=\"H3947\"* my|strong=\"H3068\"* master’s brother’s daughter|strong=\"H1323\"* for|strong=\"H3068\"* his|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 49, + "text": "Now|strong=\"H6258\"* if|strong=\"H3426\"* you|strong=\"H5921\"* will|strong=\"H3808\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H6437\"* truly|strong=\"H6213\"* with|strong=\"H6213\"* my|strong=\"H5921\"* master, tell|strong=\"H5046\"* me|strong=\"H5046\"*. If|strong=\"H3426\"* not|strong=\"H3808\"*, tell|strong=\"H5046\"* me|strong=\"H5046\"*, that|strong=\"H6213\"* I|strong=\"H5921\"* may|strong=\"H6213\"* turn|strong=\"H6437\"* to|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, or|strong=\"H3808\"* to|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"*.”" + }, + { + "verseNum": 50, + "text": "Then|strong=\"H6030\"* Laban|strong=\"H3837\"* and|strong=\"H3068\"* Bethuel|strong=\"H1328\"* answered|strong=\"H6030\"*, “The|strong=\"H3068\"* thing|strong=\"H1697\"* proceeds|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*. We|strong=\"H1697\"* can|strong=\"H3201\"*’t speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3808\"* bad|strong=\"H7451\"* or|strong=\"H3808\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 51, + "text": "Behold|strong=\"H2009\"*, Rebekah|strong=\"H7259\"* is|strong=\"H3068\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, and|strong=\"H1121\"* let|strong=\"H3212\"* her|strong=\"H3947\"* be|strong=\"H1961\"* your|strong=\"H3068\"* master’s son|strong=\"H1121\"*’s wife|strong=\"H1696\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 52, + "text": "When|strong=\"H1961\"* Abraham’s servant|strong=\"H5650\"* heard|strong=\"H8085\"* their|strong=\"H3068\"* words|strong=\"H1697\"*, he|strong=\"H3068\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3068\"* the|strong=\"H8085\"* earth to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H5414\"* servant|strong=\"H5650\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* clothing|strong=\"H3627\"*, and|strong=\"H3701\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3318\"* Rebekah|strong=\"H7259\"*. He|strong=\"H5414\"* also|strong=\"H3318\"* gave|strong=\"H5414\"* precious|strong=\"H4030\"* things|strong=\"H4030\"* to|strong=\"H3318\"* her|strong=\"H5414\"* brother and|strong=\"H3701\"* her|strong=\"H5414\"* mother." + }, + { + "verseNum": 54, + "text": "They|strong=\"H1931\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, he|strong=\"H1931\"* and|strong=\"H6965\"* the|strong=\"H7971\"* men who|strong=\"H1931\"* were with|strong=\"H5973\"* him|strong=\"H7971\"*, and|strong=\"H6965\"* stayed|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"*. They|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3885\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* said, “Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* to|strong=\"H7971\"* my|strong=\"H7971\"* master.”" + }, + { + "verseNum": 55, + "text": "Her|strong=\"H3212\"* brother and|strong=\"H3117\"* her|strong=\"H3212\"* mother said, “Let|strong=\"H3212\"* the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* stay|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H3117\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, at|strong=\"H3427\"* least ten|strong=\"H6218\"*. After|strong=\"H3117\"* that|strong=\"H3117\"* she will|strong=\"H3117\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 56, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Don’t hinder me|strong=\"H7971\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* prospered|strong=\"H6743\"* my|strong=\"H3068\"* way|strong=\"H1870\"*. Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* that|strong=\"H3068\"* I|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* my|strong=\"H3068\"* master.”" + }, + { + "verseNum": 57, + "text": "They|strong=\"H6310\"* said|strong=\"H7121\"*, “We will|strong=\"H6310\"* call|strong=\"H7121\"* the|strong=\"H7121\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, and|strong=\"H6310\"* ask|strong=\"H7592\"* her|strong=\"H7121\"*.”" + }, + { + "verseNum": 58, + "text": "They|strong=\"H7121\"* called|strong=\"H7121\"* Rebekah|strong=\"H7259\"*, and|strong=\"H3212\"* said|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H7121\"*, “Will|strong=\"H2088\"* you|strong=\"H5973\"* go|strong=\"H3212\"* with|strong=\"H5973\"* this|strong=\"H2088\"* man|strong=\"H2088\"*?”" + }, + { + "verseNum": 59, + "text": "They sent|strong=\"H7971\"* away|strong=\"H7971\"* Rebekah|strong=\"H7259\"*, their|strong=\"H7971\"* sister, with|strong=\"H7971\"* her|strong=\"H7971\"* nurse|strong=\"H3243\"*, Abraham’s servant|strong=\"H5650\"*, and|strong=\"H7971\"* his|strong=\"H7971\"* men|strong=\"H5650\"*." + }, + { + "verseNum": 60, + "text": "They|strong=\"H8179\"* blessed|strong=\"H1288\"* Rebekah|strong=\"H7259\"*, and|strong=\"H8179\"* said to|strong=\"H1961\"* her|strong=\"H8130\"*, “Our|strong=\"H1288\"* sister, may|strong=\"H1961\"* you|strong=\"H1288\"* be|strong=\"H1961\"* the|strong=\"H1288\"* mother of|strong=\"H8179\"* thousands|strong=\"H7233\"* of|strong=\"H8179\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"*, and|strong=\"H8179\"* let|strong=\"H1961\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* possess|strong=\"H3423\"* the|strong=\"H1288\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* those|strong=\"H1961\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* them|strong=\"H3423\"*.”" + }, + { + "verseNum": 61, + "text": "Rebekah|strong=\"H7259\"* arose|strong=\"H6965\"* with|strong=\"H5921\"* her|strong=\"H3947\"* ladies|strong=\"H5291\"*. They|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*, and|strong=\"H6965\"* followed|strong=\"H3212\"* the|strong=\"H5921\"* man. The|strong=\"H5921\"* servant|strong=\"H5650\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* his|strong=\"H3947\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 62, + "text": "Isaac|strong=\"H3327\"* came from|strong=\"H3427\"* the|strong=\"H3427\"* way of|strong=\"H3427\"* Beer Lahai Roi, for|strong=\"H3427\"* he|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* the|strong=\"H3427\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 63, + "text": "Isaac|strong=\"H3327\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meditate|strong=\"H7742\"* in|strong=\"H7200\"* the|strong=\"H7200\"* field|strong=\"H7704\"* at|strong=\"H7200\"* the|strong=\"H7200\"* evening|strong=\"H6153\"*. He|strong=\"H3318\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*. Behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* camels|strong=\"H1581\"* coming|strong=\"H3318\"*." + }, + { + "verseNum": 64, + "text": "Rebekah|strong=\"H7259\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* when|strong=\"H7200\"* she|strong=\"H5921\"* saw|strong=\"H7200\"* Isaac|strong=\"H3327\"*, she|strong=\"H5921\"* got off|strong=\"H5921\"* the|strong=\"H5921\"* camel|strong=\"H1581\"*." + }, + { + "verseNum": 65, + "text": "She|strong=\"H1931\"* said to|strong=\"H1980\"* the|strong=\"H3947\"* servant|strong=\"H5650\"*, “Who|strong=\"H4310\"* is|strong=\"H1931\"* the|strong=\"H3947\"* man who|strong=\"H4310\"* is|strong=\"H1931\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3947\"* field|strong=\"H7704\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* us|strong=\"H7704\"*?”" + }, + { + "verseNum": 66, + "text": "The|strong=\"H3605\"* servant|strong=\"H5650\"* told|strong=\"H5608\"* Isaac|strong=\"H3327\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3327\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 67, + "text": "Isaac|strong=\"H3327\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* into|strong=\"H1961\"* his|strong=\"H3947\"* mother Sarah|strong=\"H8283\"*’s tent, and|strong=\"H3327\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, and|strong=\"H3327\"* she|strong=\"H3327\"* became|strong=\"H1961\"* his|strong=\"H3947\"* wife. He|strong=\"H8283\"* loved her|strong=\"H3947\"*. So|strong=\"H3947\"* Isaac|strong=\"H3327\"* was|strong=\"H1961\"* comforted|strong=\"H5162\"* after|strong=\"H1961\"* his|strong=\"H3947\"* mother’s death." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Abraham|strong=\"H3947\"* took|strong=\"H3947\"* another|strong=\"H3254\"* wife, and|strong=\"H3947\"* her|strong=\"H3947\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 2, + "text": "She bore|strong=\"H3205\"* him|strong=\"H3205\"* Zimran|strong=\"H2175\"*, Jokshan|strong=\"H3370\"*, Medan|strong=\"H4091\"*, Midian|strong=\"H4080\"*, Ishbak|strong=\"H3435\"*, and|strong=\"H4080\"* Shuah|strong=\"H7744\"*." + }, + { + "verseNum": 3, + "text": "Jokshan|strong=\"H3370\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Sheba|strong=\"H7614\"*, and|strong=\"H1121\"* Dedan|strong=\"H1719\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dedan|strong=\"H1719\"* were|strong=\"H1961\"* Asshurim, Letushim|strong=\"H3912\"*, and|strong=\"H1121\"* Leummim|strong=\"H3817\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* were|strong=\"H1121\"* Ephah|strong=\"H5891\"*, Epher|strong=\"H6081\"*, Hanoch|strong=\"H2585\"*, Abida, and|strong=\"H1121\"* Eldaah. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 5, + "text": "Abraham gave|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H5414\"* to|strong=\"H5414\"* Isaac|strong=\"H3327\"*," + }, + { + "verseNum": 6, + "text": "but|strong=\"H5750\"* Abraham gave|strong=\"H5414\"* gifts|strong=\"H4979\"* to|strong=\"H7971\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abraham’s concubines|strong=\"H6370\"*. While|strong=\"H5750\"* he|strong=\"H5414\"* still|strong=\"H5750\"* lived|strong=\"H2416\"*, he|strong=\"H5414\"* sent|strong=\"H7971\"* them|strong=\"H5414\"* away|strong=\"H7971\"* from|strong=\"H5921\"* Isaac|strong=\"H3327\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, eastward|strong=\"H6924\"*, to|strong=\"H7971\"* the|strong=\"H5921\"* east|strong=\"H6924\"* country|strong=\"H6924\"*." + }, + { + "verseNum": 7, + "text": "These|strong=\"H3117\"* are|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* Abraham’s life|strong=\"H2416\"* which|strong=\"H2416\"* he|strong=\"H3117\"* lived|strong=\"H2416\"*: one|strong=\"H2416\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 8, + "text": "Abraham gave up his|strong=\"H4191\"* spirit, and|strong=\"H5971\"* died|strong=\"H4191\"* at|strong=\"H4191\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H2205\"* age|strong=\"H7872\"*, an|strong=\"H4191\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, and|strong=\"H5971\"* full|strong=\"H7649\"* of|strong=\"H2205\"* years|strong=\"H7872\"*, and|strong=\"H5971\"* was|strong=\"H2896\"* gathered to|strong=\"H4191\"* his|strong=\"H4191\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Isaac|strong=\"H3327\"* and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, his|strong=\"H6440\"* sons|strong=\"H1121\"*, buried|strong=\"H6912\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H1121\"* Machpelah|strong=\"H4375\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Ephron|strong=\"H6085\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zohar|strong=\"H6714\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, which|strong=\"H7704\"* is|strong=\"H1121\"* near|strong=\"H6440\"* Mamre|strong=\"H4471\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H8033\"* field|strong=\"H7704\"* which|strong=\"H8033\"* Abraham purchased|strong=\"H7069\"* from|strong=\"H1121\"* the|strong=\"H8033\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*. Abraham was|strong=\"H1121\"* buried|strong=\"H6912\"* there|strong=\"H8033\"* with|strong=\"H8033\"* Sarah|strong=\"H8283\"*, his|strong=\"H8283\"* wife." + }, + { + "verseNum": 11, + "text": "After|strong=\"H1961\"* the|strong=\"H1288\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Abraham, God blessed|strong=\"H1288\"* Isaac|strong=\"H3327\"*, his|strong=\"H1288\"* son|strong=\"H1121\"*. Isaac|strong=\"H3327\"* lived|strong=\"H3427\"* by|strong=\"H3427\"* Beer Lahai Roi." + }, + { + "verseNum": 12, + "text": "Now this|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Abraham’s son|strong=\"H1121\"*, whom Hagar|strong=\"H1904\"* the|strong=\"H3205\"* Egyptian|strong=\"H4713\"*, Sarah|strong=\"H8283\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* Abraham." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H3458\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, by|strong=\"H8034\"* their names|strong=\"H8034\"*, according to|strong=\"H1121\"* the|strong=\"H3458\"* order|strong=\"H8435\"* of|strong=\"H1121\"* their birth|strong=\"H8435\"*: the|strong=\"H3458\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Nebaioth|strong=\"H5032\"*, then|strong=\"H1121\"* Kedar|strong=\"H6938\"*, Adbeel, Mibsam|strong=\"H4017\"*," + }, + { + "verseNum": 14, + "text": "Mishma|strong=\"H4927\"*, Dumah|strong=\"H1746\"*, Massa|strong=\"H4854\"*," + }, + { + "verseNum": 15, + "text": "Hadad|strong=\"H2301\"*, Tema|strong=\"H8485\"*, Jetur|strong=\"H3195\"*, Naphish|strong=\"H5305\"*, and|strong=\"H5305\"* Kedemah|strong=\"H6929\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, and|strong=\"H1121\"* these|strong=\"H1992\"* are|strong=\"H1992\"* their|strong=\"H1992\"* names|strong=\"H8034\"*, by|strong=\"H8034\"* their|strong=\"H1992\"* villages|strong=\"H2691\"*, and|strong=\"H1121\"* by|strong=\"H8034\"* their|strong=\"H1992\"* encampments|strong=\"H2918\"*: twelve|strong=\"H8147\"* princes|strong=\"H5387\"*, according to|strong=\"H1121\"* their|strong=\"H1992\"* nations." + }, + { + "verseNum": 17, + "text": "These|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H3458\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3458\"* life|strong=\"H2416\"* of|strong=\"H8141\"* Ishmael|strong=\"H3458\"*: one|strong=\"H2416\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*. He|strong=\"H8141\"* gave up his|strong=\"H3458\"* spirit and|strong=\"H3967\"* died|strong=\"H4191\"*, and|strong=\"H3967\"* was|strong=\"H8141\"* gathered to|strong=\"H4191\"* his|strong=\"H3458\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* lived|strong=\"H7931\"* from|strong=\"H6440\"* Havilah|strong=\"H2341\"* to|strong=\"H5704\"* Shur|strong=\"H7793\"* that|strong=\"H3605\"* is|strong=\"H3605\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*, as|strong=\"H5704\"* you|strong=\"H6440\"* go|strong=\"H5307\"* toward|strong=\"H5921\"* Assyria. He|strong=\"H5704\"* lived|strong=\"H7931\"* opposite|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* relatives." + }, + { + "verseNum": 19, + "text": "This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*, Abraham’s son|strong=\"H1121\"*. Abraham became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 20, + "text": "Isaac|strong=\"H3327\"* was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8141\"* took|strong=\"H3947\"* Rebekah|strong=\"H7259\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H3947\"* Syrian of|strong=\"H1121\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, the|strong=\"H3947\"* sister of|strong=\"H1121\"* Laban|strong=\"H3837\"* the|strong=\"H3947\"* Syrian, to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 21, + "text": "Isaac|strong=\"H3327\"* entreated|strong=\"H6279\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* his|strong=\"H3068\"* wife, because|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H3068\"* barren|strong=\"H6135\"*. Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* him|strong=\"H1931\"*, and|strong=\"H3068\"* Rebekah|strong=\"H7259\"* his|strong=\"H3068\"* wife conceived|strong=\"H2029\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* struggled|strong=\"H7533\"* together|strong=\"H7533\"* within|strong=\"H7130\"* her|strong=\"H7130\"*. She|strong=\"H3651\"* said|strong=\"H3651\"*, “If|strong=\"H3651\"* it|strong=\"H3651\"* is|strong=\"H3068\"* like|strong=\"H3651\"* this|strong=\"H2088\"*, why|strong=\"H4100\"* do|strong=\"H3068\"* I|strong=\"H3651\"* live|strong=\"H7130\"*?” She|strong=\"H3651\"* went|strong=\"H3212\"* to|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* her|strong=\"H8147\"*," + }, + { + "verseNum": 24, + "text": "When|strong=\"H3117\"* her|strong=\"H4390\"* days|strong=\"H3117\"* to|strong=\"H3117\"* be|strong=\"H3117\"* delivered|strong=\"H3205\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H3117\"* twins|strong=\"H8380\"* in|strong=\"H3117\"* her|strong=\"H4390\"* womb." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* first|strong=\"H7223\"* came|strong=\"H3318\"* out|strong=\"H3318\"* red all|strong=\"H3605\"* over|strong=\"H3318\"*, like|strong=\"H3318\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* garment. They|strong=\"H3605\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Esau|strong=\"H6215\"*." + }, + { + "verseNum": 26, + "text": "After|strong=\"H3318\"* that|strong=\"H3651\"*, his|strong=\"H7121\"* brother came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* his|strong=\"H7121\"* hand|strong=\"H3027\"* had|strong=\"H3205\"* hold on|strong=\"H3027\"* Esau|strong=\"H6215\"*’s heel|strong=\"H6119\"*. He|strong=\"H3651\"* was|strong=\"H8034\"* named|strong=\"H7121\"* Jacob|strong=\"H3290\"*. Isaac|strong=\"H3327\"* was|strong=\"H8034\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* she|strong=\"H7121\"* bore|strong=\"H3205\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3045\"* boys|strong=\"H5288\"* grew|strong=\"H1431\"*. Esau|strong=\"H6215\"* was|strong=\"H1961\"* a|strong=\"H3068\"* skillful|strong=\"H3045\"* hunter|strong=\"H6718\"*, a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H3427\"* the|strong=\"H3045\"* field|strong=\"H7704\"*. Jacob|strong=\"H3290\"* was|strong=\"H1961\"* a|strong=\"H3068\"* quiet man|strong=\"H5288\"*, living|strong=\"H3427\"* in|strong=\"H3427\"* tents." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3588\"* Isaac|strong=\"H3327\"* loved Esau|strong=\"H6215\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* ate his|strong=\"H3327\"* venison|strong=\"H6718\"*. Rebekah|strong=\"H7259\"* loved Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 29, + "text": "Jacob|strong=\"H3290\"* boiled stew|strong=\"H5138\"*. Esau|strong=\"H6215\"* came in|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* he|strong=\"H1931\"* was|strong=\"H1931\"* famished|strong=\"H5889\"*." + }, + { + "verseNum": 30, + "text": "Esau|strong=\"H6215\"* said|strong=\"H7121\"* to|strong=\"H5921\"* Jacob|strong=\"H3290\"*, “Please|strong=\"H4994\"* feed|strong=\"H3938\"* me|strong=\"H4994\"* with|strong=\"H5921\"* some|strong=\"H4480\"* of|strong=\"H8034\"* that|strong=\"H3588\"* red stew, for|strong=\"H3588\"* I|strong=\"H3588\"* am famished|strong=\"H5889\"*.” Therefore|strong=\"H3651\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Edom.+ 25:30 “Edom” means “red”.*" + }, + { + "verseNum": 31, + "text": "Jacob|strong=\"H3290\"* said, “First|strong=\"H3117\"*, sell|strong=\"H4376\"* me|strong=\"H3117\"* your|strong=\"H4376\"* birthright|strong=\"H1062\"*.”" + }, + { + "verseNum": 32, + "text": "Esau|strong=\"H6215\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1980\"* about|strong=\"H1980\"* to|strong=\"H1980\"* die|strong=\"H4191\"*. What|strong=\"H4100\"* good|strong=\"H4100\"* is|strong=\"H2088\"* the|strong=\"H4191\"* birthright|strong=\"H1062\"* to|strong=\"H1980\"* me|strong=\"H4191\"*?”" + }, + { + "verseNum": 33, + "text": "Jacob|strong=\"H3290\"* said, “Swear|strong=\"H7650\"* to|strong=\"H3117\"* me|strong=\"H3117\"* first|strong=\"H3117\"*.”" + }, + { + "verseNum": 34, + "text": "Jacob|strong=\"H3290\"* gave|strong=\"H5414\"* Esau|strong=\"H6215\"* bread|strong=\"H3899\"* and|strong=\"H6965\"* lentil|strong=\"H5742\"* stew|strong=\"H5138\"*. He|strong=\"H5414\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* his|strong=\"H5414\"* way|strong=\"H3212\"*. So|strong=\"H5414\"* Esau|strong=\"H6215\"* despised his|strong=\"H5414\"* birthright|strong=\"H1062\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H4428\"* the|strong=\"H3117\"* land, in|strong=\"H4428\"* addition to|strong=\"H3212\"* the|strong=\"H3117\"* first|strong=\"H7223\"* famine|strong=\"H7458\"* that|strong=\"H3117\"* was|strong=\"H1961\"* in|strong=\"H4428\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Abraham. Isaac|strong=\"H3327\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"*, to|strong=\"H3212\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3381\"* him|strong=\"H7200\"*, and|strong=\"H3068\"* said, “Don’t go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*. Live|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H7200\"* land I|strong=\"H4714\"* will|strong=\"H3068\"* tell|strong=\"H7200\"* you|strong=\"H7200\"* about." + }, + { + "verseNum": 3, + "text": "Live|strong=\"H1481\"* in|strong=\"H5414\"* this|strong=\"H2063\"* land, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* will|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* to|strong=\"H1961\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, all|strong=\"H3605\"* these|strong=\"H2063\"* lands, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* the|strong=\"H3605\"* oath|strong=\"H7621\"* which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H1961\"* Abraham your|strong=\"H3605\"* father." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* as|strong=\"H5414\"* the|strong=\"H3605\"* stars|strong=\"H3556\"* of|strong=\"H2233\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* will|strong=\"H1471\"* give|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* lands to|strong=\"H5414\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*. In|strong=\"H5414\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H1471\"* be|strong=\"H1471\"* blessed|strong=\"H1288\"*," + }, + { + "verseNum": 5, + "text": "because|strong=\"H6118\"* Abraham obeyed|strong=\"H8085\"* my|strong=\"H8104\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* requirements, my|strong=\"H8104\"* commandments|strong=\"H4687\"*, my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H6963\"* my|strong=\"H8104\"* laws|strong=\"H8451\"*.”" + }, + { + "verseNum": 6, + "text": "Isaac|strong=\"H3327\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gerar|strong=\"H1642\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* men|strong=\"H2896\"* of|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* asked|strong=\"H7592\"* him|strong=\"H5921\"* about|strong=\"H5921\"* his|strong=\"H5921\"* wife. He|strong=\"H1931\"* said, “She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H5921\"* sister,” for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afraid|strong=\"H3372\"* to|strong=\"H5921\"* say, “My|strong=\"H5921\"* wife”, lest|strong=\"H6435\"*, he|strong=\"H1931\"* thought, “the|strong=\"H5921\"* men|strong=\"H2896\"* of|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* might|strong=\"H6435\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* for|strong=\"H3588\"* Rebekah|strong=\"H7259\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* beautiful|strong=\"H2896\"* to|strong=\"H5921\"* look at|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* been|strong=\"H1961\"* there|strong=\"H8033\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*, Abimelech king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* at|strong=\"H3117\"* a|strong=\"H3068\"* window|strong=\"H2474\"*, and|strong=\"H4428\"* saw|strong=\"H7200\"*, and|strong=\"H4428\"*, behold|strong=\"H2009\"*, Isaac|strong=\"H3327\"* was|strong=\"H1961\"* caressing|strong=\"H6711\"* Rebekah|strong=\"H7259\"*, his|strong=\"H7200\"* wife." + }, + { + "verseNum": 9, + "text": "Abimelech called|strong=\"H7121\"* Isaac|strong=\"H3327\"*, and|strong=\"H3327\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, surely|strong=\"H4191\"* she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H5921\"* wife. Why|strong=\"H5921\"* did|strong=\"H3327\"* you|strong=\"H3588\"* say, ‘She|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H5921\"* sister’?”" + }, + { + "verseNum": 10, + "text": "Abimelech said, “What|strong=\"H4100\"* is|strong=\"H4100\"* this|strong=\"H2063\"* you|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H5921\"*? One|strong=\"H6213\"* of|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* might|strong=\"H5971\"* easily|strong=\"H4592\"* have|strong=\"H5971\"* lain|strong=\"H7901\"* with|strong=\"H6213\"* your|strong=\"H5921\"* wife, and|strong=\"H5971\"* you|strong=\"H5921\"* would|strong=\"H5971\"* have|strong=\"H5971\"* brought|strong=\"H6213\"* guilt on|strong=\"H5921\"* us|strong=\"H5921\"*!”" + }, + { + "verseNum": 11, + "text": "Abimelech commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “He|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* this|strong=\"H2088\"* man|strong=\"H4191\"* or|strong=\"H4191\"* his|strong=\"H3605\"* wife will|strong=\"H5971\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "Isaac|strong=\"H3327\"* sowed|strong=\"H2232\"* in|strong=\"H8141\"* that|strong=\"H1931\"* land, and|strong=\"H3967\"* reaped|strong=\"H4672\"* in|strong=\"H8141\"* the|strong=\"H3068\"* same|strong=\"H1931\"* year|strong=\"H8141\"* one|strong=\"H1931\"* hundred|strong=\"H3967\"* times|strong=\"H3967\"* what he|strong=\"H1931\"* planted|strong=\"H2232\"*. Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* him|strong=\"H4672\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* man grew|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H1980\"* grew|strong=\"H1431\"* more|strong=\"H3966\"* and|strong=\"H1980\"* more|strong=\"H3966\"* until|strong=\"H5704\"* he|strong=\"H3588\"* became|strong=\"H1431\"* very|strong=\"H3966\"* great|strong=\"H1431\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1241\"* had|strong=\"H1961\"* possessions|strong=\"H4735\"* of|strong=\"H6629\"* flocks|strong=\"H6629\"*, possessions|strong=\"H4735\"* of|strong=\"H6629\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* a|strong=\"H3068\"* great|strong=\"H7227\"* household|strong=\"H5657\"*. The|strong=\"H1961\"* Philistines|strong=\"H6430\"* envied|strong=\"H7065\"* him|strong=\"H7065\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wells which|strong=\"H3117\"* his|strong=\"H3605\"* father’s servants|strong=\"H5650\"* had|strong=\"H6430\"* dug|strong=\"H2658\"* in|strong=\"H3117\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Abraham his|strong=\"H3605\"* father, the|strong=\"H3605\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* stopped|strong=\"H5640\"*, and|strong=\"H3117\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* earth|strong=\"H6083\"*." + }, + { + "verseNum": 16, + "text": "Abimelech said to|strong=\"H3212\"* Isaac|strong=\"H3327\"*, “Go|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H4480\"* us|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5973\"* much|strong=\"H3966\"* mightier|strong=\"H6105\"* than|strong=\"H4480\"* we|strong=\"H3068\"*.”" + }, + { + "verseNum": 17, + "text": "Isaac|strong=\"H3327\"* departed|strong=\"H3212\"* from|strong=\"H3212\"* there|strong=\"H8033\"*, encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H8033\"* valley|strong=\"H5158\"* of|strong=\"H3427\"* Gerar|strong=\"H1642\"*, and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 18, + "text": "Isaac|strong=\"H3327\"* dug|strong=\"H2658\"* again|strong=\"H7725\"* the|strong=\"H7725\"* wells of|strong=\"H3117\"* water|strong=\"H4325\"*, which|strong=\"H4325\"* they|strong=\"H3117\"* had|strong=\"H6430\"* dug|strong=\"H2658\"* in|strong=\"H3117\"* the|strong=\"H7725\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Abraham his|strong=\"H7121\"* father, for|strong=\"H7121\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* stopped|strong=\"H5640\"* them|strong=\"H7725\"* after|strong=\"H3117\"* the|strong=\"H7725\"* death|strong=\"H4194\"* of|strong=\"H3117\"* Abraham. He|strong=\"H3117\"* called|strong=\"H7121\"* their|strong=\"H7725\"* names|strong=\"H8034\"* after|strong=\"H3117\"* the|strong=\"H7725\"* names|strong=\"H8034\"* by|strong=\"H3117\"* which|strong=\"H4325\"* his|strong=\"H7121\"* father had|strong=\"H6430\"* called|strong=\"H7121\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 19, + "text": "Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* dug|strong=\"H2658\"* in|strong=\"H4672\"* the|strong=\"H4672\"* valley|strong=\"H5158\"*, and|strong=\"H5650\"* found|strong=\"H4672\"* there|strong=\"H8033\"* a|strong=\"H3068\"* well of|strong=\"H5650\"* flowing|strong=\"H2416\"*+ 26:19 Or, living. Or, fresh.* water|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* herdsmen|strong=\"H7473\"* of|strong=\"H4325\"* Gerar|strong=\"H1642\"* argued with|strong=\"H5973\"* Isaac|strong=\"H3327\"*’s herdsmen|strong=\"H7473\"*, saying, “The|strong=\"H3588\"* water|strong=\"H4325\"* is|strong=\"H8034\"* ours.” So|strong=\"H7121\"* he|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H4325\"* the|strong=\"H3588\"* well|strong=\"H5973\"* Esek|strong=\"H6230\"*,+ 26:20 “Esek” means “contention”.* because|strong=\"H3588\"* they|strong=\"H3588\"* contended|strong=\"H7378\"* with|strong=\"H5973\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* dug|strong=\"H2658\"* another|strong=\"H1571\"* well|strong=\"H1571\"*, and|strong=\"H8034\"* they|strong=\"H5921\"* argued over|strong=\"H5921\"* that|strong=\"H7121\"*, also|strong=\"H1571\"*. So|strong=\"H7121\"* he|strong=\"H5921\"* called|strong=\"H7121\"* its|strong=\"H5921\"* name|strong=\"H8034\"* Sitnah|strong=\"H7856\"*.+ 26:21 “Sitnah” means “hostility”.*" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3588\"* left|strong=\"H8033\"* that|strong=\"H3588\"* place|strong=\"H8033\"*, and|strong=\"H3068\"* dug|strong=\"H2658\"* another|strong=\"H3808\"* well. They|strong=\"H3588\"* didn’t argue|strong=\"H7378\"* over|strong=\"H5921\"* that|strong=\"H3588\"* one|strong=\"H3808\"*. So|strong=\"H7121\"* he|strong=\"H3588\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Rehoboth|strong=\"H7344\"*.+ 26:22 “Rehoboth” means “broad places”.* He|strong=\"H3588\"* said|strong=\"H7121\"*, “For|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H7337\"* room|strong=\"H7337\"* for|strong=\"H3588\"* us|strong=\"H5921\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3808\"* fruitful|strong=\"H6509\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H5927\"* Beersheba." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* the|strong=\"H7200\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* said, “I|strong=\"H3588\"* am|strong=\"H3068\"* the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham your|strong=\"H3068\"* father. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* multiply|strong=\"H7235\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* for|strong=\"H3588\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Abraham’s sake|strong=\"H5668\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H8033\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, and|strong=\"H3068\"* pitched|strong=\"H5186\"* his|strong=\"H3068\"* tent there|strong=\"H8033\"*. There|strong=\"H8033\"* Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* dug|strong=\"H3738\"* a|strong=\"H3068\"* well." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1980\"* Abimelech went|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H1980\"* from|strong=\"H1980\"* Gerar|strong=\"H1642\"* with|strong=\"H1980\"* Ahuzzath his|strong=\"H1980\"* friend, and|strong=\"H1980\"* Phicol|strong=\"H6369\"* the|strong=\"H1980\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* his|strong=\"H1980\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 27, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Why|strong=\"H4069\"* have|strong=\"H4069\"* you|strong=\"H7971\"* come|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, since you|strong=\"H7971\"* hate|strong=\"H8130\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* have|strong=\"H4069\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* from|strong=\"H7971\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H3588\"* said, “We|strong=\"H3588\"* saw|strong=\"H7200\"* plainly|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. We|strong=\"H3588\"* said, ‘Let|strong=\"H4994\"* there|strong=\"H1961\"* now|strong=\"H4994\"* be|strong=\"H1961\"* an|strong=\"H1961\"* oath between|strong=\"H5973\"* us|strong=\"H4994\"*, even|strong=\"H3588\"* between|strong=\"H5973\"* us|strong=\"H4994\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* let|strong=\"H4994\"*’s make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 29, + "text": "that|strong=\"H3068\"* you|strong=\"H7971\"* will|strong=\"H3068\"* do|strong=\"H6213\"* us|strong=\"H6213\"* no|strong=\"H3808\"* harm|strong=\"H7451\"*, as|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* touched|strong=\"H5060\"* you|strong=\"H7971\"*, and|strong=\"H3068\"* as|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H7971\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* good|strong=\"H2896\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*.’ You|strong=\"H7971\"* are|strong=\"H3068\"* now|strong=\"H6258\"* the|strong=\"H6213\"* blessed|strong=\"H1288\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*, and|strong=\"H6213\"* they|strong=\"H6213\"* ate and|strong=\"H6213\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H7965\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* some time in|strong=\"H3212\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, and|strong=\"H7971\"* swore|strong=\"H7650\"* an|strong=\"H7971\"* oath|strong=\"H7650\"* to|strong=\"H3212\"* one another. Isaac|strong=\"H3327\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H7965\"* departed|strong=\"H3212\"* from|strong=\"H7971\"* him|strong=\"H7971\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, Isaac|strong=\"H3327\"*’s servants|strong=\"H5650\"* came|strong=\"H1961\"*, and|strong=\"H3117\"* told|strong=\"H5046\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* well which|strong=\"H1931\"* they|strong=\"H3117\"* had|strong=\"H1961\"* dug|strong=\"H2658\"*, and|strong=\"H3117\"* said to|strong=\"H1961\"* him|strong=\"H5921\"*, “We|strong=\"H3117\"* have|strong=\"H1961\"* found|strong=\"H4672\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H3117\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “Shibah|strong=\"H7656\"*”.+ 26:33 Shibah means “oath” or “seven”.* Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* city|strong=\"H5892\"* is|strong=\"H2088\"* “Beersheba”+ 26:33 Beersheba means “well of the oath” or “well of the seven”* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "When|strong=\"H1961\"* Esau|strong=\"H6215\"* was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"*, he|strong=\"H8141\"* took|strong=\"H3947\"* as|strong=\"H1961\"* wife Judith|strong=\"H3067\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Beeri the|strong=\"H3947\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* Basemath|strong=\"H1315\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Elon the|strong=\"H3947\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 35, + "text": "They grieved Isaac|strong=\"H3327\"*’s and|strong=\"H3327\"* Rebekah|strong=\"H7259\"*’s spirits|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Isaac|strong=\"H3327\"* was|strong=\"H1961\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H7121\"* eyes|strong=\"H5869\"* were|strong=\"H1961\"* dim|strong=\"H3543\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* could not|strong=\"H1961\"* see|strong=\"H7200\"*, he|strong=\"H3588\"* called|strong=\"H7121\"* Esau|strong=\"H6215\"* his|strong=\"H7121\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H1961\"* him|strong=\"H7121\"*, “My|strong=\"H7200\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H2204\"*. I|strong=\"H3117\"* don’t know|strong=\"H3045\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H3045\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H5375\"* your|strong=\"H5375\"* weapons|strong=\"H3627\"*, your|strong=\"H5375\"* quiver|strong=\"H8522\"* and|strong=\"H7704\"* your|strong=\"H5375\"* bow|strong=\"H7198\"*, and|strong=\"H7704\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5375\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* get|strong=\"H3318\"* me|strong=\"H4994\"* venison." + }, + { + "verseNum": 4, + "text": "Make|strong=\"H6213\"* me|strong=\"H5315\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, such|strong=\"H6213\"* as|strong=\"H6213\"* I|strong=\"H2962\"* love, and|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H5315\"*, that|strong=\"H5315\"* I|strong=\"H2962\"* may|strong=\"H5315\"* eat, and|strong=\"H6213\"* that|strong=\"H5315\"* my|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* before|strong=\"H2962\"* I|strong=\"H2962\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 5, + "text": "Rebekah|strong=\"H7259\"* heard|strong=\"H8085\"* when|strong=\"H8085\"* Isaac|strong=\"H3327\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Esau|strong=\"H6215\"* his|strong=\"H8085\"* son|strong=\"H1121\"*. Esau|strong=\"H6215\"* went|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H8085\"* field|strong=\"H7704\"* to|strong=\"H1696\"* hunt|strong=\"H6679\"* for|strong=\"H1121\"* venison|strong=\"H6718\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* bring|strong=\"H3212\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "Rebekah|strong=\"H7259\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* her|strong=\"H3290\"* son|strong=\"H1121\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* heard|strong=\"H8085\"* your|strong=\"H8085\"* father|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* Esau|strong=\"H6215\"* your|strong=\"H8085\"* brother, saying|strong=\"H1696\"*," + }, + { + "verseNum": 7, + "text": "‘Bring|strong=\"H6213\"* me|strong=\"H6440\"* venison|strong=\"H6718\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* me|strong=\"H6440\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, that|strong=\"H3068\"* I|strong=\"H6440\"* may|strong=\"H3068\"* eat, and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* my|strong=\"H3068\"* death|strong=\"H4194\"*.’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* according to|strong=\"H8085\"* that|strong=\"H8085\"* which|strong=\"H8085\"* I|strong=\"H6258\"* command|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 9, + "text": "Go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3212\"* the|strong=\"H3947\"* flock|strong=\"H6629\"* and|strong=\"H3212\"* get|strong=\"H3947\"* me|strong=\"H4994\"* two|strong=\"H8147\"* good|strong=\"H2896\"* young|strong=\"H1423\"* goats|strong=\"H5795\"* from|strong=\"H3947\"* there|strong=\"H8033\"*. I|strong=\"H3212\"* will|strong=\"H6629\"* make|strong=\"H6213\"* them|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"* for|strong=\"H6213\"* your|strong=\"H3947\"* father, such|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H8033\"* loves." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* bring it|strong=\"H6440\"* to|strong=\"H6440\"* your|strong=\"H6440\"* father, that|strong=\"H5668\"* he|strong=\"H6440\"* may|strong=\"H1288\"* eat, so|strong=\"H5668\"* that|strong=\"H5668\"* he|strong=\"H6440\"* may|strong=\"H1288\"* bless|strong=\"H1288\"* you|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H6440\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 11, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3290\"* Rebekah|strong=\"H7259\"* his|strong=\"H3290\"* mother, “Behold|strong=\"H2005\"*, Esau|strong=\"H6215\"* my|strong=\"H3290\"* brother is|strong=\"H6215\"* a|strong=\"H3068\"* hairy|strong=\"H8163\"* man, and|strong=\"H3290\"* I|strong=\"H2005\"* am|strong=\"H2005\"* a|strong=\"H3068\"* smooth|strong=\"H2509\"* man." + }, + { + "verseNum": 12, + "text": "What|strong=\"H5921\"* if|strong=\"H1961\"* my|strong=\"H5921\"* father touches me|strong=\"H5921\"*? I|strong=\"H5921\"* will|strong=\"H1961\"* seem|strong=\"H5869\"* to|strong=\"H1961\"* him|strong=\"H5921\"* as|strong=\"H1961\"* a|strong=\"H3068\"* deceiver|strong=\"H8591\"*, and|strong=\"H5869\"* I|strong=\"H5921\"* would bring|strong=\"H1961\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* on|strong=\"H5921\"* myself, and|strong=\"H5869\"* not|strong=\"H3808\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*.”" + }, + { + "verseNum": 13, + "text": "His|strong=\"H3947\"* mother said|strong=\"H8085\"* to|strong=\"H3212\"* him|strong=\"H5921\"*, “Let|strong=\"H3212\"* your|strong=\"H5921\"* curse|strong=\"H7045\"* be|strong=\"H1121\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*. Only obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* go|strong=\"H3212\"* get|strong=\"H3947\"* them|strong=\"H5921\"* for|strong=\"H5921\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* went|strong=\"H3212\"*, and|strong=\"H3212\"* got|strong=\"H3947\"* them|strong=\"H6213\"*, and|strong=\"H3212\"* brought|strong=\"H3947\"* them|strong=\"H6213\"* to|strong=\"H3212\"* his|strong=\"H3947\"* mother. His|strong=\"H3947\"* mother made|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, such|strong=\"H6213\"* as|strong=\"H6213\"* his|strong=\"H3947\"* father loved." + }, + { + "verseNum": 15, + "text": "Rebekah|strong=\"H7259\"* took|strong=\"H3947\"* the|strong=\"H3947\"* good clothes|strong=\"H3847\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, her|strong=\"H3947\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, which|strong=\"H1004\"* were|strong=\"H1121\"* with|strong=\"H1004\"* her|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* them|strong=\"H3947\"* on|strong=\"H3847\"* Jacob|strong=\"H3290\"*, her|strong=\"H3947\"* younger|strong=\"H6996\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H5921\"* put|strong=\"H3847\"* the|strong=\"H5921\"* skins|strong=\"H5785\"* of|strong=\"H3027\"* the|strong=\"H5921\"* young|strong=\"H1423\"* goats|strong=\"H5795\"* on|strong=\"H5921\"* his|strong=\"H5921\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* smooth|strong=\"H2513\"* of|strong=\"H3027\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 17, + "text": "She|strong=\"H4303\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* savory|strong=\"H4303\"* food|strong=\"H3899\"* and|strong=\"H1121\"* the|strong=\"H5414\"* bread|strong=\"H3899\"*, which|strong=\"H3899\"* she|strong=\"H4303\"* had|strong=\"H3290\"* prepared|strong=\"H6213\"*, into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* her|strong=\"H5414\"* son|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H4310\"* came to|strong=\"H1121\"* his|strong=\"H1121\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “My father|strong=\"H1121\"*?”" + }, + { + "verseNum": 19, + "text": "Jacob|strong=\"H3290\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H1288\"* father, “I|strong=\"H5315\"* am Esau|strong=\"H6215\"* your|strong=\"H6213\"* firstborn|strong=\"H1060\"*. I|strong=\"H5315\"* have|strong=\"H1696\"* done|strong=\"H6213\"* what|strong=\"H6213\"* you|strong=\"H6213\"* asked|strong=\"H1696\"* me|strong=\"H4994\"* to|strong=\"H1696\"* do|strong=\"H6213\"*. Please|strong=\"H4994\"* arise|strong=\"H6965\"*, sit|strong=\"H3427\"* and|strong=\"H6965\"* eat of|strong=\"H3427\"* my|strong=\"H6965\"* venison|strong=\"H6718\"*, that|strong=\"H5315\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H4994\"* bless|strong=\"H1288\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H3068\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, “How|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* it|strong=\"H3588\"* so|strong=\"H2088\"* quickly|strong=\"H4116\"*, my|strong=\"H3068\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 21, + "text": "Isaac|strong=\"H3327\"* said to|strong=\"H1121\"* Jacob|strong=\"H3290\"*, “Please|strong=\"H4994\"* come|strong=\"H5066\"* near|strong=\"H5066\"*, that|strong=\"H1121\"* I|strong=\"H2088\"* may|strong=\"H4994\"* feel|strong=\"H4184\"* you|strong=\"H3808\"*, my|strong=\"H3290\"* son|strong=\"H1121\"*, whether you|strong=\"H3808\"* are|strong=\"H1121\"* really|strong=\"H2088\"* my|strong=\"H3290\"* son|strong=\"H1121\"* Esau|strong=\"H6215\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 22, + "text": "Jacob|strong=\"H3290\"* went|strong=\"H3290\"* near|strong=\"H5066\"* to|strong=\"H3027\"* Isaac|strong=\"H3327\"* his|strong=\"H3027\"* father. He|strong=\"H3027\"* felt|strong=\"H4959\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* said, “The|strong=\"H3027\"* voice|strong=\"H6963\"* is|strong=\"H3027\"* Jacob|strong=\"H3290\"*’s voice|strong=\"H6963\"*, but|strong=\"H3290\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Esau|strong=\"H6215\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H3027\"*, because|strong=\"H3588\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* were|strong=\"H1961\"* hairy|strong=\"H8163\"*, like|strong=\"H1961\"* his|strong=\"H3027\"* brother Esau|strong=\"H6215\"*’s hands|strong=\"H3027\"*. So|strong=\"H1961\"* he|strong=\"H3588\"* blessed|strong=\"H1288\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H2088\"* said, “Are|strong=\"H1121\"* you|strong=\"H2088\"* really|strong=\"H2088\"* my|strong=\"H6215\"* son|strong=\"H1121\"* Esau|strong=\"H6215\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H5315\"* said, “Bring|strong=\"H5066\"* it|strong=\"H5315\"* near|strong=\"H5066\"* to|strong=\"H1121\"* me|strong=\"H5315\"*, and|strong=\"H1121\"* I|strong=\"H5315\"* will|strong=\"H5315\"* eat of|strong=\"H1121\"* my|strong=\"H8354\"* son|strong=\"H1121\"*’s venison|strong=\"H6718\"*, that|strong=\"H5315\"* my|strong=\"H8354\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*.”" + }, + { + "verseNum": 26, + "text": "His|strong=\"H3327\"* father|strong=\"H1121\"* Isaac|strong=\"H3327\"* said to|strong=\"H1121\"* him|strong=\"H5401\"*, “Come|strong=\"H5066\"* near|strong=\"H5066\"* now|strong=\"H4994\"*, and|strong=\"H1121\"* kiss|strong=\"H5401\"* me|strong=\"H4994\"*, my|strong=\"H5401\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* kissed|strong=\"H5401\"* him|strong=\"H7200\"*. He|strong=\"H3068\"* smelled|strong=\"H7306\"* the|strong=\"H7200\"* smell|strong=\"H7381\"* of|strong=\"H1121\"* his|strong=\"H3068\"* clothing, and|strong=\"H1121\"* blessed|strong=\"H1288\"* him|strong=\"H7200\"*, and|strong=\"H1121\"* said," + }, + { + "verseNum": 28, + "text": "God|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* of|strong=\"H7230\"* the|strong=\"H5414\"* dew|strong=\"H2919\"* of|strong=\"H7230\"* the|strong=\"H5414\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 29, + "text": "Let peoples|strong=\"H5971\"* serve|strong=\"H5647\"* you|strong=\"H1288\"*," + }, + { + "verseNum": 30, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* Isaac|strong=\"H3327\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* blessing|strong=\"H1288\"* Jacob|strong=\"H3290\"*, and|strong=\"H6440\"* Jacob|strong=\"H3290\"* had|strong=\"H1961\"* just gone|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Isaac|strong=\"H3327\"* his|strong=\"H6440\"* father, Esau|strong=\"H6215\"* his|strong=\"H6440\"* brother came|strong=\"H1961\"* in|strong=\"H6440\"* from|strong=\"H3318\"* his|strong=\"H6440\"* hunting|strong=\"H6718\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* made|strong=\"H6213\"* savory|strong=\"H4303\"* food|strong=\"H4303\"*, and|strong=\"H1121\"* brought|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H6213\"* his|strong=\"H1288\"* father|strong=\"H1121\"*. He|strong=\"H1931\"* said to|strong=\"H6213\"* his|strong=\"H1288\"* father|strong=\"H1121\"*, “Let|strong=\"H5315\"* my|strong=\"H6965\"* father|strong=\"H1121\"* arise|strong=\"H6965\"*, and|strong=\"H1121\"* eat of|strong=\"H1121\"* his|strong=\"H1288\"* son|strong=\"H1121\"*’s venison|strong=\"H6718\"*, that|strong=\"H1931\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* may|strong=\"H5315\"* bless|strong=\"H1288\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 32, + "text": "Isaac|strong=\"H3327\"* his|strong=\"H3327\"* father|strong=\"H1121\"* said to|strong=\"H1121\"* him|strong=\"H1121\"*, “Who|strong=\"H4310\"* are|strong=\"H1121\"* you|strong=\"H4310\"*?”" + }, + { + "verseNum": 33, + "text": "Isaac|strong=\"H3327\"* trembled|strong=\"H2729\"* violently|strong=\"H3966\"*, and|strong=\"H1419\"* said, “Who|strong=\"H4310\"*, then|strong=\"H1961\"*, is|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H4310\"* has|strong=\"H4310\"* taken|strong=\"H1961\"* venison|strong=\"H6718\"*, and|strong=\"H1419\"* brought|strong=\"H1961\"* it|strong=\"H1931\"* to|strong=\"H5704\"* me|strong=\"H1288\"*, and|strong=\"H1419\"* I|strong=\"H5704\"* have|strong=\"H1961\"* eaten of|strong=\"H3605\"* all|strong=\"H3605\"* before|strong=\"H2962\"* you|strong=\"H3605\"* came|strong=\"H1961\"*, and|strong=\"H1419\"* have|strong=\"H1961\"* blessed|strong=\"H1288\"* him|strong=\"H1931\"*? Yes|strong=\"H1571\"*, he|strong=\"H1931\"* will|strong=\"H4310\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*.”" + }, + { + "verseNum": 34, + "text": "When|strong=\"H8085\"* Esau|strong=\"H6215\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H8085\"* father, he|strong=\"H5704\"* cried|strong=\"H6817\"* with|strong=\"H1697\"* an|strong=\"H1288\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H1419\"* bitter|strong=\"H4751\"* cry|strong=\"H6818\"*, and|strong=\"H1419\"* said|strong=\"H1697\"* to|strong=\"H5704\"* his|strong=\"H8085\"* father, “Bless|strong=\"H1288\"* me|strong=\"H1288\"*, even|strong=\"H1571\"* me|strong=\"H1288\"* also|strong=\"H1571\"*, my|strong=\"H8085\"* father.”" + }, + { + "verseNum": 35, + "text": "He|strong=\"H1293\"* said, “Your|strong=\"H3947\"* brother came with|strong=\"H3947\"* deceit|strong=\"H4820\"*, and|strong=\"H3947\"* has|strong=\"H3947\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* blessing|strong=\"H1293\"*.”" + }, + { + "verseNum": 36, + "text": "He|strong=\"H3588\"* said|strong=\"H7121\"*, “Isn’t he|strong=\"H3588\"* rightly|strong=\"H3588\"* named|strong=\"H7121\"* Jacob|strong=\"H3290\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* supplanted|strong=\"H6117\"* me|strong=\"H7121\"* these|strong=\"H2088\"* two|strong=\"H3947\"* times|strong=\"H6471\"*. He|strong=\"H3588\"* took|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* birthright|strong=\"H1062\"*. See|strong=\"H2009\"*, now|strong=\"H6258\"* he|strong=\"H3588\"* has|strong=\"H3588\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* blessing|strong=\"H1293\"*.” He|strong=\"H3588\"* said|strong=\"H7121\"*, “Haven’t you|strong=\"H3588\"* reserved|strong=\"H3947\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* for|strong=\"H3588\"* me|strong=\"H7121\"*?”" + }, + { + "verseNum": 37, + "text": "Isaac|strong=\"H3327\"* answered|strong=\"H6030\"* Esau|strong=\"H6215\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1121\"* made|strong=\"H6213\"* him|strong=\"H5414\"* your|strong=\"H3605\"* lord|strong=\"H1376\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* I|strong=\"H2005\"* have|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H6213\"* him|strong=\"H5414\"* for|strong=\"H6213\"* servants|strong=\"H5650\"*. I|strong=\"H2005\"* have|strong=\"H1121\"* sustained|strong=\"H5564\"* him|strong=\"H5414\"* with|strong=\"H6213\"* grain|strong=\"H1715\"* and|strong=\"H1121\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*. What|strong=\"H4100\"* then|strong=\"H6030\"* will|strong=\"H5650\"* I|strong=\"H2005\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H5414\"*, my|strong=\"H5414\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 38, + "text": "Esau|strong=\"H6215\"* said to|strong=\"H5375\"* his|strong=\"H5375\"* father, “Do you|strong=\"H1288\"* have|strong=\"H1571\"* just|strong=\"H1571\"* one|strong=\"H1931\"* blessing|strong=\"H1293\"*, my|strong=\"H5375\"* father? Bless|strong=\"H1288\"* me|strong=\"H6963\"*, even|strong=\"H1571\"* me|strong=\"H6963\"* also|strong=\"H1571\"*, my|strong=\"H5375\"* father.” Esau|strong=\"H6215\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 39, + "text": "Isaac|strong=\"H3327\"* his|strong=\"H5921\"* father answered|strong=\"H6030\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 40, + "text": "You|strong=\"H5921\"* will|strong=\"H1961\"* live|strong=\"H2421\"* by|strong=\"H5921\"* your|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* you|strong=\"H5921\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* your|strong=\"H5921\"* brother." + }, + { + "verseNum": 41, + "text": "Esau|strong=\"H6215\"* hated|strong=\"H7852\"* Jacob|strong=\"H3290\"* because|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* blessing|strong=\"H1293\"* with|strong=\"H5921\"* which|strong=\"H3117\"* his|strong=\"H5921\"* father blessed|strong=\"H1288\"* him|strong=\"H5921\"*. Esau|strong=\"H6215\"* said in|strong=\"H5921\"* his|strong=\"H5921\"* heart|strong=\"H3820\"*, “The|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* mourning for|strong=\"H5921\"* my|strong=\"H5921\"* father are|strong=\"H3117\"* at|strong=\"H5921\"* hand|strong=\"H7126\"*. Then|strong=\"H7126\"* I|strong=\"H3117\"* will|strong=\"H3820\"* kill|strong=\"H2026\"* my|strong=\"H5921\"* brother Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 42, + "text": "The|strong=\"H7121\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, her|strong=\"H7971\"* elder|strong=\"H1419\"* son|strong=\"H1121\"*, were|strong=\"H1121\"* told|strong=\"H5046\"* to|strong=\"H7971\"* Rebekah|strong=\"H7259\"*. She|strong=\"H7121\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Jacob|strong=\"H3290\"*, her|strong=\"H7971\"* younger|strong=\"H6996\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H7971\"* him|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, your|strong=\"H7971\"* brother Esau|strong=\"H6215\"* comforts|strong=\"H5162\"* himself|strong=\"H7121\"* about|strong=\"H1697\"* you|strong=\"H7971\"* by|strong=\"H7121\"* planning to|strong=\"H7971\"* kill|strong=\"H2026\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 43, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. Arise|strong=\"H6965\"*, flee|strong=\"H1272\"* to|strong=\"H8085\"* Laban|strong=\"H3837\"*, my|strong=\"H8085\"* brother, in|strong=\"H8085\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 44, + "text": "Stay|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H7725\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, until|strong=\"H5704\"* your|strong=\"H7725\"* brother’s fury|strong=\"H2534\"* turns|strong=\"H7725\"* away|strong=\"H7725\"*—" + }, + { + "verseNum": 45, + "text": "until|strong=\"H5704\"* your|strong=\"H3947\"* brother’s anger turns|strong=\"H7725\"* away|strong=\"H7971\"* from|strong=\"H4480\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H3117\"* forgets|strong=\"H7911\"* what|strong=\"H4100\"* you|strong=\"H7971\"* have|strong=\"H1571\"* done|strong=\"H6213\"* to|strong=\"H5704\"* him|strong=\"H7971\"*. Then|strong=\"H3947\"* I|strong=\"H3117\"* will|strong=\"H1571\"* send|strong=\"H7971\"*, and|strong=\"H7971\"* get|strong=\"H3947\"* you|strong=\"H7971\"* from|strong=\"H4480\"* there|strong=\"H8033\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H3117\"* be|strong=\"H1571\"* bereaved|strong=\"H7921\"* of|strong=\"H3117\"* you|strong=\"H7971\"* both|strong=\"H8147\"* in|strong=\"H6213\"* one|strong=\"H4480\"* day|strong=\"H3117\"*?”" + }, + { + "verseNum": 46, + "text": "Rebekah|strong=\"H7259\"* said to|strong=\"H6440\"* Isaac|strong=\"H3327\"*, “I|strong=\"H4100\"* am weary|strong=\"H6973\"* of|strong=\"H1323\"* my|strong=\"H3947\"* life|strong=\"H2416\"* because|strong=\"H6440\"* of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Heth|strong=\"H2845\"*. If Jacob|strong=\"H3290\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Heth|strong=\"H2845\"*, such as|strong=\"H6440\"* these|strong=\"H3947\"*, of|strong=\"H1323\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, what|strong=\"H4100\"* good|strong=\"H4100\"* will|strong=\"H3290\"* my|strong=\"H3947\"* life|strong=\"H2416\"* do|strong=\"H4100\"* me|strong=\"H6440\"*?”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Isaac|strong=\"H3327\"* called|strong=\"H7121\"* Jacob|strong=\"H3290\"*, blessed|strong=\"H1288\"* him|strong=\"H7121\"*, and|strong=\"H3290\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"*, “You|strong=\"H6680\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 2, + "text": "Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H3212\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Bethuel|strong=\"H1328\"* your|strong=\"H3947\"* mother’s father. Take|strong=\"H3947\"* a|strong=\"H3068\"* wife from|strong=\"H3947\"* there|strong=\"H8033\"* from|strong=\"H3947\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1004\"* Laban|strong=\"H3837\"*, your|strong=\"H3947\"* mother’s brother." + }, + { + "verseNum": 3, + "text": "May|strong=\"H1961\"* God Almighty|strong=\"H7706\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*, and|strong=\"H5971\"* make|strong=\"H6509\"* you|strong=\"H1288\"* fruitful|strong=\"H6509\"*, and|strong=\"H5971\"* multiply|strong=\"H7235\"* you|strong=\"H1288\"*, that|strong=\"H5971\"* you|strong=\"H1288\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H6951\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H2233\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* blessing|strong=\"H1293\"* of|strong=\"H2233\"* Abraham, to|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H2233\"* to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* with|strong=\"H1293\"* you|strong=\"H5414\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* may|strong=\"H5414\"* inherit|strong=\"H3423\"* the|strong=\"H5414\"* land where|strong=\"H4033\"* you|strong=\"H5414\"* travel, which God|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Abraham.”" + }, + { + "verseNum": 5, + "text": "Isaac|strong=\"H3327\"* sent|strong=\"H7971\"* Jacob|strong=\"H3290\"* away|strong=\"H7971\"*. He|strong=\"H7971\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"* to|strong=\"H3212\"* Laban|strong=\"H3837\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Bethuel|strong=\"H1328\"* the|strong=\"H7971\"* Syrian, the|strong=\"H7971\"* brother of|strong=\"H1121\"* Rebekah|strong=\"H7259\"*, Jacob|strong=\"H3290\"*’s and|strong=\"H1121\"* Esau|strong=\"H6215\"*’s mother." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3588\"* Esau|strong=\"H6215\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Isaac|strong=\"H3327\"* had|strong=\"H3588\"* blessed|strong=\"H1288\"* Jacob|strong=\"H3290\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* him|strong=\"H5921\"* away|strong=\"H7971\"* to|strong=\"H7971\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H7971\"* take|strong=\"H3947\"* him|strong=\"H5921\"* a|strong=\"H3068\"* wife from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* that|strong=\"H3588\"* as|strong=\"H3588\"* he|strong=\"H3588\"* blessed|strong=\"H1288\"* him|strong=\"H5921\"* he|strong=\"H3588\"* gave|strong=\"H6680\"* him|strong=\"H5921\"* a|strong=\"H3068\"* command|strong=\"H6680\"*, saying, “You|strong=\"H3588\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*;”" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3212\"* that|strong=\"H8085\"* Jacob|strong=\"H3290\"* obeyed|strong=\"H8085\"* his|strong=\"H8085\"* father and|strong=\"H3212\"* his|strong=\"H8085\"* mother, and|strong=\"H3212\"* was|strong=\"H3290\"* gone|strong=\"H3212\"* to|strong=\"H3212\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H6215\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"* didn’t please|strong=\"H7451\"* Isaac|strong=\"H3327\"*, his|strong=\"H7200\"* father." + }, + { + "verseNum": 9, + "text": "So|strong=\"H3947\"* Esau|strong=\"H6215\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ishmael|strong=\"H3458\"*, and|strong=\"H1121\"* took|strong=\"H3947\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H5921\"* wives that|strong=\"H1121\"* he|strong=\"H5921\"* had|strong=\"H1121\"*, Mahalath|strong=\"H4258\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, Abraham|strong=\"H3947\"*’s son|strong=\"H1121\"*, the|strong=\"H5921\"* sister of|strong=\"H1121\"* Nebaioth|strong=\"H5032\"*, to|strong=\"H3212\"* be|strong=\"H1121\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* went|strong=\"H3212\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Beersheba, and|strong=\"H3212\"* went|strong=\"H3212\"* toward|strong=\"H3212\"* Haran|strong=\"H2771\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H1931\"* came|strong=\"H6293\"* to|strong=\"H8033\"* a|strong=\"H3068\"* certain place|strong=\"H4725\"*, and|strong=\"H8033\"* stayed|strong=\"H7901\"* there|strong=\"H8033\"* all|strong=\"H7901\"* night|strong=\"H3885\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* had|strong=\"H3588\"* set|strong=\"H7760\"*. He|strong=\"H1931\"* took|strong=\"H3947\"* one|strong=\"H1931\"* of|strong=\"H4725\"* the|strong=\"H3588\"* stones of|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"*, and|strong=\"H8033\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under his|strong=\"H7760\"* head|strong=\"H4763\"*, and|strong=\"H8033\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H7901\"* that|strong=\"H3588\"* place|strong=\"H4725\"* to|strong=\"H8033\"* sleep|strong=\"H7901\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H4397\"* dreamed|strong=\"H2492\"* and|strong=\"H8064\"* saw|strong=\"H2009\"* a|strong=\"H3068\"* stairway set|strong=\"H5324\"* upon|strong=\"H5927\"* the|strong=\"H5927\"* earth|strong=\"H5927\"*, and|strong=\"H8064\"* its|strong=\"H5927\"* top|strong=\"H7218\"* reached|strong=\"H5060\"* to|strong=\"H3381\"* heaven|strong=\"H8064\"*. Behold|strong=\"H2009\"*, the|strong=\"H5927\"* angels|strong=\"H4397\"* of|strong=\"H7218\"* God|strong=\"H8064\"* were|strong=\"H8064\"* ascending|strong=\"H5927\"* and|strong=\"H8064\"* descending|strong=\"H3381\"* on|strong=\"H5927\"* it|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* stood|strong=\"H5324\"* above|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* said, “I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham your|strong=\"H3068\"* father, and|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Isaac|strong=\"H3327\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5921\"* land you|strong=\"H5414\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* to|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H3605\"* dust|strong=\"H6083\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H6083\"*, and|strong=\"H3220\"* you|strong=\"H3605\"* will|strong=\"H1961\"* spread|strong=\"H6555\"* abroad|strong=\"H6555\"* to|strong=\"H1961\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* east|strong=\"H6924\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H3220\"* to|strong=\"H1961\"* the|strong=\"H3605\"* south|strong=\"H5045\"*. In|strong=\"H3220\"* you|strong=\"H3605\"* and|strong=\"H3220\"* in|strong=\"H3220\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H2233\"* the|strong=\"H3605\"* earth|strong=\"H6083\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3588\"* am with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* will|strong=\"H3808\"* keep|strong=\"H8104\"* you|strong=\"H3588\"*, wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, and|strong=\"H7725\"* will|strong=\"H3808\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2063\"* land. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* you|strong=\"H3588\"* until|strong=\"H5704\"* I|strong=\"H3588\"* have|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* spoken|strong=\"H1696\"* of|strong=\"H3605\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"H3290\"* awakened|strong=\"H3364\"* out|strong=\"H3045\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sleep|strong=\"H8142\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* said, “Surely|strong=\"H3426\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* I|strong=\"H3045\"* didn’t know|strong=\"H3045\"* it|strong=\"H3045\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* was|strong=\"H1004\"* afraid|strong=\"H3372\"*, and|strong=\"H8064\"* said, “How|strong=\"H4100\"* awesome|strong=\"H3372\"* this|strong=\"H2088\"* place|strong=\"H4725\"* is|strong=\"H2088\"*! This|strong=\"H2088\"* is|strong=\"H2088\"* none other|strong=\"H2088\"* than|strong=\"H3588\"* God|strong=\"H8064\"*’s house|strong=\"H1004\"*, and|strong=\"H8064\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3588\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* heaven|strong=\"H8064\"*.”" + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* rose|strong=\"H7925\"* up|strong=\"H7760\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7218\"* took|strong=\"H3947\"* the|strong=\"H5921\"* stone that|strong=\"H8081\"* he|strong=\"H5921\"* had|strong=\"H3290\"* put|strong=\"H7760\"* under|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* set|strong=\"H7760\"* it|strong=\"H7760\"* up|strong=\"H7760\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, and|strong=\"H7218\"* poured|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* its|strong=\"H5921\"* top|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H5892\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Bethel|strong=\"H1008\"*, but|strong=\"H1931\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H7121\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Luz|strong=\"H3870\"* at|strong=\"H5892\"* the|strong=\"H7121\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, saying, “If|strong=\"H1961\"* God|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H1980\"* me|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* keep|strong=\"H8104\"* me|strong=\"H5414\"* in|strong=\"H1980\"* this|strong=\"H2088\"* way|strong=\"H1870\"* that|strong=\"H5414\"* I|strong=\"H5414\"* go|strong=\"H1980\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* give|strong=\"H5414\"* me|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H1980\"* eat|strong=\"H3899\"*, and|strong=\"H1980\"* clothing|strong=\"H3847\"* to|strong=\"H1980\"* put|strong=\"H5414\"* on|strong=\"H3847\"*," + }, + { + "verseNum": 21, + "text": "so|strong=\"H1961\"* that|strong=\"H3068\"* I|strong=\"H3068\"* come|strong=\"H1961\"* again|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H1961\"* this|strong=\"H2063\"* stone, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* set|strong=\"H7760\"* up|strong=\"H5414\"* for|strong=\"H1004\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*. Of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* me|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H1961\"* surely|strong=\"H5414\"* give|strong=\"H5414\"* a|strong=\"H3068\"* tenth|strong=\"H6237\"* to|strong=\"H1961\"* you|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H5375\"* Jacob|strong=\"H3290\"* went|strong=\"H3212\"* on|strong=\"H3212\"* his|strong=\"H5375\"* journey|strong=\"H7272\"*, and|strong=\"H1121\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5375\"* land of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5375\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1931\"* looked|strong=\"H7200\"*, and|strong=\"H1419\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* well in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*, and|strong=\"H1419\"* saw|strong=\"H7200\"* three|strong=\"H7969\"* flocks|strong=\"H6629\"* of|strong=\"H7704\"* sheep|strong=\"H6629\"* lying|strong=\"H7257\"* there|strong=\"H8033\"* by|strong=\"H5921\"* it|strong=\"H1931\"*. For|strong=\"H3588\"* out|strong=\"H4480\"* of|strong=\"H7704\"* that|strong=\"H3588\"* well they|strong=\"H3588\"* watered|strong=\"H8248\"* the|strong=\"H5921\"* flocks|strong=\"H6629\"*. The|strong=\"H5921\"* stone on|strong=\"H5921\"* the|strong=\"H5921\"* well’s mouth|strong=\"H6310\"* was|strong=\"H1931\"* large|strong=\"H1419\"*." + }, + { + "verseNum": 3, + "text": "There|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* were|strong=\"H6629\"* gathered. They|strong=\"H8033\"* rolled|strong=\"H1556\"* the|strong=\"H3605\"* stone from|strong=\"H7725\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"*, and|strong=\"H7725\"* watered|strong=\"H8248\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* the|strong=\"H3605\"* stone back|strong=\"H7725\"* on|strong=\"H5921\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"* in|strong=\"H5921\"* its|strong=\"H3605\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3290\"* them, “My|strong=\"H3290\"* relatives, where are you from|strong=\"H3290\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Do you|strong=\"H3045\"* know|strong=\"H3045\"* Laban|strong=\"H3837\"*, the|strong=\"H3045\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahor|strong=\"H5152\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H2009\"* said to|strong=\"H1323\"* them, “Is|strong=\"H2009\"* it|strong=\"H5973\"* well|strong=\"H7965\"* with|strong=\"H5973\"* him|strong=\"H5973\"*?”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* said, “Behold|strong=\"H2005\"*, it|strong=\"H3117\"* is|strong=\"H3117\"* still|strong=\"H5750\"* the|strong=\"H3117\"* middle of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, not|strong=\"H3808\"* time|strong=\"H6256\"* to|strong=\"H3212\"* gather the|strong=\"H3117\"* livestock|strong=\"H4735\"* together. Water|strong=\"H8248\"* the|strong=\"H3117\"* sheep|strong=\"H6629\"*, and|strong=\"H3117\"* go|strong=\"H3212\"* and|strong=\"H3117\"* feed|strong=\"H7462\"* them|strong=\"H8248\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* said|strong=\"H6310\"*, “We|strong=\"H5704\"* can|strong=\"H3201\"*’t, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* are|strong=\"H6310\"* gathered together|strong=\"H5921\"*, and|strong=\"H6629\"* they|strong=\"H3808\"* roll|strong=\"H1556\"* the|strong=\"H3605\"* stone from|strong=\"H5921\"* the|strong=\"H3605\"* well’s mouth|strong=\"H6310\"*. Then|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H3808\"* water|strong=\"H8248\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 9, + "text": "While|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H1931\"* yet|strong=\"H5750\"* speaking|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H7462\"*, Rachel|strong=\"H7354\"* came with|strong=\"H5973\"* her|strong=\"H1931\"* father’s sheep|strong=\"H6629\"*, for|strong=\"H3588\"* she|strong=\"H1931\"* kept|strong=\"H7462\"* them|strong=\"H7462\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H1961\"* Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* Rachel|strong=\"H7354\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"*, his|strong=\"H5921\"* mother’s brother, and|strong=\"H6629\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"*, his|strong=\"H5921\"* mother’s brother, Jacob|strong=\"H3290\"* went|strong=\"H3290\"* near|strong=\"H5066\"*, and|strong=\"H6629\"* rolled|strong=\"H1556\"* the|strong=\"H5921\"* stone from|strong=\"H5921\"* the|strong=\"H5921\"* well’s mouth|strong=\"H6310\"*, and|strong=\"H6629\"* watered|strong=\"H8248\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* of|strong=\"H1323\"* Laban|strong=\"H3837\"* his|strong=\"H5921\"* mother’s brother." + }, + { + "verseNum": 11, + "text": "Jacob|strong=\"H3290\"* kissed|strong=\"H5401\"* Rachel|strong=\"H7354\"*, and|strong=\"H6963\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 12, + "text": "Jacob|strong=\"H3290\"* told|strong=\"H5046\"* Rachel|strong=\"H7354\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* her|strong=\"H5046\"* father|strong=\"H1121\"*’s relative, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* Rebekah|strong=\"H7259\"*’s son|strong=\"H1121\"*. She|strong=\"H1931\"* ran|strong=\"H7323\"* and|strong=\"H1121\"* told|strong=\"H5046\"* her|strong=\"H5046\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Laban|strong=\"H3837\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* news|strong=\"H8088\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, his|strong=\"H3605\"* sister’s son|strong=\"H1121\"*, he|strong=\"H3605\"* ran|strong=\"H7323\"* to|strong=\"H1961\"* meet|strong=\"H7125\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* embraced|strong=\"H2263\"* him|strong=\"H3605\"*, and|strong=\"H1121\"* kissed|strong=\"H5401\"* him|strong=\"H3605\"*, and|strong=\"H1121\"* brought|strong=\"H1961\"* him|strong=\"H3605\"* to|strong=\"H1961\"* his|strong=\"H3605\"* house|strong=\"H1004\"*. Jacob|strong=\"H3290\"* told|strong=\"H5608\"* Laban|strong=\"H3837\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H3117\"* him|strong=\"H5973\"*, “Surely you|strong=\"H3117\"* are|strong=\"H3117\"* my|strong=\"H5973\"* bone|strong=\"H6106\"* and|strong=\"H3117\"* my|strong=\"H5973\"* flesh|strong=\"H1320\"*.” Jacob stayed|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H5973\"* for|strong=\"H3427\"* a|strong=\"H3068\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 15, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H5046\"* Jacob|strong=\"H3290\"*, “Because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* my|strong=\"H5046\"* relative, should|strong=\"H4100\"* you|strong=\"H3588\"* therefore|strong=\"H3588\"* serve|strong=\"H5647\"* me|strong=\"H5046\"* for|strong=\"H3588\"* nothing|strong=\"H2600\"*? Tell|strong=\"H5046\"* me|strong=\"H5046\"*, what|strong=\"H4100\"* will|strong=\"H3290\"* your|strong=\"H3588\"* wages|strong=\"H4909\"* be|strong=\"H3290\"*?”" + }, + { + "verseNum": 16, + "text": "Laban|strong=\"H3837\"* had|strong=\"H7354\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* elder|strong=\"H1419\"* was|strong=\"H8034\"* Leah|strong=\"H3812\"*, and|strong=\"H1419\"* the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* younger|strong=\"H6996\"* was|strong=\"H8034\"* Rachel|strong=\"H7354\"*." + }, + { + "verseNum": 17, + "text": "Leah|strong=\"H3812\"*’s eyes|strong=\"H5869\"* were|strong=\"H1961\"* weak|strong=\"H7390\"*, but|strong=\"H1961\"* Rachel|strong=\"H7354\"* was|strong=\"H1961\"* beautiful|strong=\"H3303\"* in|strong=\"H5869\"* form|strong=\"H8389\"* and|strong=\"H5869\"* attractive|strong=\"H3303\"*." + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* loved Rachel|strong=\"H7354\"*. He|strong=\"H8141\"* said, “I|strong=\"H8141\"* will|strong=\"H3290\"* serve|strong=\"H5647\"* you|strong=\"H5647\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* for|strong=\"H8141\"* Rachel|strong=\"H7354\"*, your|strong=\"H5647\"* younger|strong=\"H6996\"* daughter|strong=\"H1323\"*.”" + }, + { + "verseNum": 19, + "text": "Laban|strong=\"H3837\"* said, “It|strong=\"H5414\"* is|strong=\"H2896\"* better|strong=\"H2896\"* that|strong=\"H5414\"* I|strong=\"H5414\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, than|strong=\"H2896\"* that|strong=\"H5414\"* I|strong=\"H5414\"* should give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* another man|strong=\"H2896\"*. Stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* served|strong=\"H5647\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* for|strong=\"H3117\"* Rachel|strong=\"H7354\"*. They|strong=\"H3117\"* seemed|strong=\"H5869\"* to|strong=\"H1961\"* him|strong=\"H5647\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*, for|strong=\"H3117\"* the|strong=\"H5647\"* love he|strong=\"H3117\"* had|strong=\"H1961\"* for|strong=\"H3117\"* her|strong=\"H3290\"*." + }, + { + "verseNum": 21, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H3117\"* Laban|strong=\"H3837\"*, “Give|strong=\"H3051\"* me|strong=\"H3051\"* my|strong=\"H3290\"* wife, for|strong=\"H3588\"* my|strong=\"H3290\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3117\"* go in|strong=\"H3117\"* to|strong=\"H3117\"* her|strong=\"H4390\"*.”" + }, + { + "verseNum": 22, + "text": "Laban|strong=\"H3837\"* gathered|strong=\"H6213\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H4725\"* the|strong=\"H3605\"* place|strong=\"H4725\"*, and|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H1961\"* the|strong=\"H3947\"* evening|strong=\"H6153\"*, he|strong=\"H6153\"* took|strong=\"H3947\"* Leah|strong=\"H3812\"* his|strong=\"H3947\"* daughter|strong=\"H1323\"*, and|strong=\"H1323\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* to|strong=\"H1961\"* Jacob. He|strong=\"H6153\"* went|strong=\"H3812\"* in|strong=\"H1961\"* to|strong=\"H1961\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 24, + "text": "Laban|strong=\"H3837\"* gave|strong=\"H5414\"* Zilpah|strong=\"H2153\"* his|strong=\"H5414\"* servant|strong=\"H8198\"* to|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* Leah|strong=\"H3812\"* for|strong=\"H5414\"* a|strong=\"H3068\"* servant|strong=\"H8198\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, it|strong=\"H1931\"* was|strong=\"H1961\"* Leah|strong=\"H3812\"*! He|strong=\"H1931\"* said to|strong=\"H1961\"* Laban|strong=\"H3837\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* this|strong=\"H2063\"* you|strong=\"H6213\"* have|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H1961\"* me|strong=\"H6213\"*? Didn’t I|strong=\"H2009\"* serve|strong=\"H5647\"* with|strong=\"H5973\"* you|strong=\"H6213\"* for|strong=\"H6213\"* Rachel|strong=\"H7354\"*? Why|strong=\"H4100\"* then|strong=\"H1961\"* have|strong=\"H1961\"* you|strong=\"H6213\"* deceived|strong=\"H7411\"* me|strong=\"H6213\"*?”" + }, + { + "verseNum": 26, + "text": "Laban|strong=\"H3837\"* said|strong=\"H3651\"*, “It|strong=\"H5414\"* is|strong=\"H3651\"* not|strong=\"H3808\"* done|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H6213\"* our|strong=\"H5414\"* place|strong=\"H4725\"*, to|strong=\"H6213\"* give|strong=\"H5414\"* the|strong=\"H6440\"* younger|strong=\"H6810\"* before|strong=\"H6440\"* the|strong=\"H6440\"* firstborn|strong=\"H1067\"*." + }, + { + "verseNum": 27, + "text": "Fulfill|strong=\"H4390\"* the|strong=\"H5414\"* week|strong=\"H7620\"* of|strong=\"H8141\"* this|strong=\"H2063\"* one|strong=\"H2063\"*, and|strong=\"H8141\"* we|strong=\"H3068\"* will|strong=\"H1571\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* other|strong=\"H5750\"* also|strong=\"H1571\"* for|strong=\"H5414\"* the|strong=\"H5414\"* service|strong=\"H5656\"* which you|strong=\"H5414\"* will|strong=\"H1571\"* serve|strong=\"H5647\"* with|strong=\"H4390\"* me|strong=\"H5414\"* for|strong=\"H5414\"* seven|strong=\"H7651\"* more|strong=\"H5750\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H3290\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6213\"* fulfilled|strong=\"H4390\"* her|strong=\"H5414\"* week|strong=\"H7620\"*. He|strong=\"H3651\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Rachel|strong=\"H7354\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H6213\"* wife." + }, + { + "verseNum": 29, + "text": "Laban|strong=\"H3837\"* gave|strong=\"H5414\"* Bilhah|strong=\"H1090\"*, his|strong=\"H5414\"* servant|strong=\"H8198\"*, to|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* Rachel|strong=\"H7354\"* to|strong=\"H5414\"* be|strong=\"H5414\"* her|strong=\"H5414\"* servant|strong=\"H8198\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H8141\"* went|strong=\"H3812\"* in|strong=\"H8141\"* also|strong=\"H1571\"* to|strong=\"H5973\"* Rachel|strong=\"H7354\"*, and|strong=\"H8141\"* he|strong=\"H8141\"* loved also|strong=\"H1571\"* Rachel|strong=\"H7354\"* more|strong=\"H5750\"* than|strong=\"H5973\"* Leah|strong=\"H3812\"*, and|strong=\"H8141\"* served|strong=\"H5647\"* with|strong=\"H5973\"* him|strong=\"H5973\"* seven|strong=\"H7651\"* more|strong=\"H5750\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Leah|strong=\"H3812\"* was|strong=\"H3068\"* hated|strong=\"H8130\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* opened|strong=\"H6605\"* her|strong=\"H7200\"* womb|strong=\"H7358\"*, but|strong=\"H3588\"* Rachel|strong=\"H7354\"* was|strong=\"H3068\"* barren|strong=\"H6135\"*." + }, + { + "verseNum": 32, + "text": "Leah|strong=\"H3812\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Reuben|strong=\"H7205\"*. For|strong=\"H3588\"* she|strong=\"H3588\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* looked|strong=\"H7200\"* at|strong=\"H3068\"* my|strong=\"H3068\"* affliction|strong=\"H6040\"*; for|strong=\"H3588\"* now|strong=\"H6258\"* my|strong=\"H3068\"* husband will|strong=\"H3068\"* love me|strong=\"H7200\"*.”" + }, + { + "verseNum": 33, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* hated|strong=\"H8130\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* therefore|strong=\"H1571\"* given|strong=\"H5414\"* me|strong=\"H5414\"* this|strong=\"H2088\"* son|strong=\"H1121\"* also|strong=\"H1571\"*.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H5414\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 34, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. She|strong=\"H3588\"* said|strong=\"H7121\"*, “Now|strong=\"H6258\"* this|strong=\"H3651\"* time|strong=\"H6471\"* my|strong=\"H5921\"* husband will|strong=\"H1121\"* be|strong=\"H5750\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*.” Therefore|strong=\"H3651\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 35, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. She|strong=\"H7121\"* said|strong=\"H7121\"*, “This|strong=\"H3651\"* time|strong=\"H6471\"* I|strong=\"H5921\"* will|strong=\"H3068\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"*.” Therefore|strong=\"H3651\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Judah|strong=\"H3063\"*. Then|strong=\"H3651\"* she|strong=\"H7121\"* stopped|strong=\"H5975\"* bearing|strong=\"H3205\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Rachel|strong=\"H7354\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* no|strong=\"H3808\"* children|strong=\"H1121\"*, Rachel|strong=\"H7354\"* envied|strong=\"H7065\"* her|strong=\"H7200\"* sister. She|strong=\"H3588\"* said to|strong=\"H4191\"* Jacob|strong=\"H3290\"*, “Give|strong=\"H3051\"* me|strong=\"H7200\"* children|strong=\"H1121\"*, or|strong=\"H3808\"* else|strong=\"H3808\"* I|strong=\"H3588\"* will|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 2, + "text": "Jacob|strong=\"H3290\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Rachel|strong=\"H7354\"*, and|strong=\"H3290\"* he|strong=\"H4480\"* said, “Am I|strong=\"H8478\"* in|strong=\"H8478\"* God’s place|strong=\"H8478\"*, who has|strong=\"H3290\"* withheld|strong=\"H4513\"* from|strong=\"H4480\"* you|strong=\"H4480\"* the|strong=\"H4480\"* fruit|strong=\"H6529\"* of|strong=\"H4480\"* the|strong=\"H4480\"* womb?”" + }, + { + "verseNum": 3, + "text": "She|strong=\"H5921\"* said, “Behold|strong=\"H2009\"*, my|strong=\"H5921\"* maid Bilhah|strong=\"H1090\"*. Go|strong=\"H2009\"* in|strong=\"H5921\"* to|strong=\"H5921\"* her|strong=\"H5921\"*, that|strong=\"H4480\"* she|strong=\"H5921\"* may|strong=\"H1571\"* bear|strong=\"H3205\"* on|strong=\"H5921\"* my|strong=\"H5921\"* knees|strong=\"H1290\"*, and|strong=\"H1129\"* I|strong=\"H2009\"* also|strong=\"H1571\"* may|strong=\"H1571\"* obtain|strong=\"H1129\"* children|strong=\"H3205\"* by|strong=\"H5921\"* her|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "She gave|strong=\"H5414\"* him|strong=\"H5414\"* Bilhah|strong=\"H1090\"* her|strong=\"H5414\"* servant|strong=\"H8198\"* as|strong=\"H5414\"* wife, and|strong=\"H3290\"* Jacob|strong=\"H3290\"* went|strong=\"H3290\"* in|strong=\"H5414\"* to|strong=\"H5414\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "Bilhah|strong=\"H1090\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Rachel|strong=\"H7354\"* said|strong=\"H7121\"*, “God|strong=\"H5414\"* has|strong=\"H1571\"* judged|strong=\"H1777\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* has|strong=\"H1571\"* also|strong=\"H1571\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* has|strong=\"H1571\"* given|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.” Therefore|strong=\"H3651\"* she|strong=\"H7121\"* called|strong=\"H7121\"* his|strong=\"H5414\"* name|strong=\"H8034\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 7, + "text": "Bilhah|strong=\"H1090\"*, Rachel|strong=\"H7354\"*’s servant|strong=\"H8198\"*, conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* second|strong=\"H8145\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "Rachel|strong=\"H7354\"* said|strong=\"H7121\"*, “I|strong=\"H3201\"* have|strong=\"H1571\"* wrestled|strong=\"H6617\"* with|strong=\"H5973\"* my|strong=\"H7121\"* sister with|strong=\"H5973\"* mighty wrestlings|strong=\"H5319\"*, and|strong=\"H8034\"* have|strong=\"H1571\"* prevailed|strong=\"H3201\"*.” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Leah|strong=\"H3812\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3205\"* finished bearing|strong=\"H3205\"*, she|strong=\"H3588\"* took|strong=\"H3947\"* Zilpah|strong=\"H2153\"*, her|strong=\"H5414\"* servant|strong=\"H8198\"*, and|strong=\"H7200\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 10, + "text": "Zilpah|strong=\"H2153\"*, Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 11, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “How fortunate|strong=\"H1409\"*!” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 12, + "text": "Zilpah|strong=\"H2153\"*, Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*, bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* second|strong=\"H8145\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “Happy am I|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* call|strong=\"H7121\"* me|strong=\"H7121\"* happy.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Asher." + }, + { + "verseNum": 14, + "text": "Reuben|strong=\"H7205\"* went|strong=\"H3212\"* in|strong=\"H3117\"* the|strong=\"H5414\"* days|strong=\"H3117\"* of|strong=\"H1121\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* mandrakes|strong=\"H1736\"* in|strong=\"H3117\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* brought|strong=\"H3212\"* them|strong=\"H5414\"* to|strong=\"H3212\"* his|strong=\"H5414\"* mother, Leah|strong=\"H3812\"*. Then|strong=\"H5414\"* Rachel|strong=\"H7354\"* said to|strong=\"H3212\"* Leah|strong=\"H3812\"*, “Please|strong=\"H4994\"* give|strong=\"H5414\"* me|strong=\"H5414\"* some|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H5414\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*.”" + }, + { + "verseNum": 15, + "text": "Leah said|strong=\"H3651\"* to|strong=\"H1121\"* her|strong=\"H3947\"*, “Is|strong=\"H1571\"* it|strong=\"H3651\"* a|strong=\"H3068\"* small|strong=\"H4592\"* matter|strong=\"H4592\"* that|strong=\"H3651\"* you|strong=\"H3947\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* husband? Would you|strong=\"H3947\"* take|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*, also|strong=\"H1571\"*?”" + }, + { + "verseNum": 16, + "text": "Jacob|strong=\"H3290\"* came|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3588\"* field|strong=\"H7704\"* in|strong=\"H1121\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*, and|strong=\"H1121\"* Leah|strong=\"H3812\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5973\"*, and|strong=\"H1121\"* said|strong=\"H3318\"*, “You|strong=\"H3588\"* must|strong=\"H1121\"* come|strong=\"H3318\"* in|strong=\"H1121\"* to|strong=\"H3318\"* me|strong=\"H4480\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* surely|strong=\"H3588\"* hired|strong=\"H7936\"* you|strong=\"H3588\"* with|strong=\"H5973\"* my|strong=\"H3318\"* son|strong=\"H1121\"*’s mandrakes|strong=\"H1736\"*.”" + }, + { + "verseNum": 17, + "text": "God listened|strong=\"H8085\"* to|strong=\"H3205\"* Leah|strong=\"H3812\"*, and|strong=\"H1121\"* she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* Jacob|strong=\"H3290\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “God|strong=\"H5414\"* has|strong=\"H8198\"* given|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* hire|strong=\"H7939\"*, because I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* servant|strong=\"H8198\"* to|strong=\"H5414\"* my|strong=\"H5414\"* husband.” She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H5414\"* Issachar|strong=\"H3485\"*." + }, + { + "verseNum": 19, + "text": "Leah|strong=\"H3812\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* sixth|strong=\"H8345\"* son|strong=\"H1121\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 20, + "text": "Leah|strong=\"H3812\"* said|strong=\"H7121\"*, “God has|strong=\"H3588\"* endowed|strong=\"H2064\"* me|strong=\"H7121\"* with|strong=\"H2896\"* a|strong=\"H3068\"* good|strong=\"H2896\"* dowry|strong=\"H2065\"*. Now|strong=\"H6471\"* my|strong=\"H3588\"* husband will|strong=\"H1121\"* live|strong=\"H8034\"* with|strong=\"H2896\"* me|strong=\"H7121\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*.” She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 21, + "text": "Afterwards, she|strong=\"H7121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, and|strong=\"H1323\"* named|strong=\"H7121\"* her|strong=\"H7121\"* Dinah|strong=\"H1783\"*." + }, + { + "verseNum": 22, + "text": "God remembered|strong=\"H2142\"* Rachel|strong=\"H7354\"*, and|strong=\"H8085\"* God listened|strong=\"H8085\"* to|strong=\"H8085\"* her|strong=\"H6605\"*, and|strong=\"H8085\"* opened|strong=\"H6605\"* her|strong=\"H6605\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 23, + "text": "She conceived|strong=\"H2029\"*, bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* said, “God has|strong=\"H3205\"* taken away my reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 24, + "text": "She|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Joseph|strong=\"H3130\"*,+ 30:24 Joseph means “may he add”.* saying, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* add|strong=\"H3254\"* another|strong=\"H3254\"* son|strong=\"H1121\"* to|strong=\"H3068\"* me|strong=\"H7121\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H1961\"* Rachel|strong=\"H7354\"* had|strong=\"H1961\"* borne|strong=\"H3205\"* Joseph|strong=\"H3130\"*, Jacob|strong=\"H3290\"* said to|strong=\"H3212\"* Laban|strong=\"H3837\"*, “Send|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"*, that|strong=\"H1961\"* I|strong=\"H3212\"* may|strong=\"H1961\"* go|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H7971\"* own|strong=\"H1961\"* place|strong=\"H4725\"*, and|strong=\"H7971\"* to|strong=\"H3212\"* my|strong=\"H7971\"* country|strong=\"H4725\"*." + }, + { + "verseNum": 26, + "text": "Give|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* wives and|strong=\"H3212\"* my|strong=\"H5414\"* children|strong=\"H3206\"* for|strong=\"H3588\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* you|strong=\"H3588\"*, and|strong=\"H3212\"* let|strong=\"H5414\"* me|strong=\"H5414\"* go|strong=\"H3212\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* my|strong=\"H5414\"* service|strong=\"H5656\"* with|strong=\"H3045\"* which|strong=\"H2004\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 27, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H3068\"* him|strong=\"H4672\"*, “If|strong=\"H1288\"* now|strong=\"H4994\"* I|strong=\"H4672\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, stay here|strong=\"H4672\"*, for|strong=\"H3068\"* I|strong=\"H4672\"* have|strong=\"H3068\"* divined|strong=\"H5172\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* me|strong=\"H4994\"* for|strong=\"H3068\"* your|strong=\"H3068\"* sake|strong=\"H1558\"*.”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H5414\"* said, “Appoint|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* wages|strong=\"H7939\"*, and|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 29, + "text": "Jacob said to|strong=\"H1961\"* him|strong=\"H5647\"*, “You|strong=\"H3045\"* know|strong=\"H3045\"* how|strong=\"H3045\"* I|strong=\"H3045\"* have|strong=\"H1961\"* served|strong=\"H5647\"* you|strong=\"H3045\"*, and|strong=\"H3045\"* how|strong=\"H3045\"* your|strong=\"H3045\"* livestock|strong=\"H4735\"* have|strong=\"H1961\"* fared|strong=\"H1961\"* with|strong=\"H3045\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* little|strong=\"H4592\"* which|strong=\"H3068\"* you|strong=\"H3588\"* had|strong=\"H3068\"* before|strong=\"H6440\"* I|strong=\"H3588\"* came|strong=\"H1961\"*, and|strong=\"H3068\"* it|strong=\"H3588\"* has|strong=\"H3068\"* increased|strong=\"H6555\"* to|strong=\"H3068\"* a|strong=\"H3068\"* multitude|strong=\"H7230\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H3588\"* wherever I|strong=\"H3588\"* turned|strong=\"H1961\"*. Now|strong=\"H6258\"* when|strong=\"H3588\"* will|strong=\"H3068\"* I|strong=\"H3588\"* provide|strong=\"H6213\"* for|strong=\"H3588\"* my|strong=\"H3068\"* own|strong=\"H1961\"* house|strong=\"H1004\"* also|strong=\"H1571\"*?”" + }, + { + "verseNum": 31, + "text": "Laban said|strong=\"H1697\"*, “What|strong=\"H4100\"* shall|strong=\"H3808\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 32, + "text": "I|strong=\"H3117\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* all|strong=\"H3605\"* your|strong=\"H3605\"* flock|strong=\"H6629\"* today|strong=\"H3117\"*, removing|strong=\"H5493\"* from|strong=\"H5493\"* there|strong=\"H8033\"* every|strong=\"H3605\"* speckled|strong=\"H5348\"* and|strong=\"H3117\"* spotted|strong=\"H2921\"* one|strong=\"H3605\"*, and|strong=\"H3117\"* every|strong=\"H3605\"* black|strong=\"H2345\"* one|strong=\"H3605\"* among|strong=\"H8033\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* spotted|strong=\"H2921\"* and|strong=\"H3117\"* speckled|strong=\"H5348\"* among|strong=\"H8033\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*. This|strong=\"H5674\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* hire|strong=\"H7939\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H3588\"* my|strong=\"H3605\"* righteousness|strong=\"H6666\"* will|strong=\"H1931\"* answer|strong=\"H6030\"* for|strong=\"H3588\"* me|strong=\"H6440\"* hereafter, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H4279\"* concerning|strong=\"H5921\"* my|strong=\"H3605\"* hire|strong=\"H7939\"* that|strong=\"H3588\"* is|strong=\"H1931\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Every|strong=\"H3605\"* one|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H1931\"* not|strong=\"H3588\"* speckled|strong=\"H5348\"* and|strong=\"H6030\"* spotted|strong=\"H2921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*, and|strong=\"H6030\"* black|strong=\"H2345\"* among|strong=\"H5921\"* the|strong=\"H3605\"* sheep|strong=\"H3775\"*, that|strong=\"H3588\"* might be|strong=\"H3117\"* with|strong=\"H5921\"* me|strong=\"H6440\"*, will|strong=\"H1931\"* be|strong=\"H3117\"* considered stolen|strong=\"H1589\"*.”" + }, + { + "verseNum": 34, + "text": "Laban|strong=\"H3837\"* said|strong=\"H1697\"*, “Behold|strong=\"H2005\"*, let|strong=\"H1961\"* it|strong=\"H1961\"* be|strong=\"H1961\"* according to|strong=\"H1961\"* your|strong=\"H1961\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 35, + "text": "That|strong=\"H3605\"* day|strong=\"H3117\"*, he|strong=\"H1931\"* removed|strong=\"H5493\"* the|strong=\"H3605\"* male|strong=\"H8495\"* goats|strong=\"H5795\"* that|strong=\"H3605\"* were|strong=\"H1121\"* streaked and|strong=\"H1121\"* spotted|strong=\"H2921\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* female|strong=\"H5795\"* goats|strong=\"H5795\"* that|strong=\"H3605\"* were|strong=\"H1121\"* speckled|strong=\"H5348\"* and|strong=\"H1121\"* spotted|strong=\"H2921\"*, every|strong=\"H3605\"* one|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H5414\"* white|strong=\"H3836\"* in|strong=\"H3117\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* black|strong=\"H2345\"* ones|strong=\"H1121\"* among the|strong=\"H3605\"* sheep|strong=\"H3775\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H3117\"* set|strong=\"H7760\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* between himself|strong=\"H3117\"* and|strong=\"H3117\"* Jacob|strong=\"H3290\"*, and|strong=\"H3117\"* Jacob|strong=\"H3290\"* fed|strong=\"H7462\"* the|strong=\"H3117\"* rest|strong=\"H3498\"* of|strong=\"H3117\"* Laban|strong=\"H3837\"*’s flocks|strong=\"H6629\"*." + }, + { + "verseNum": 37, + "text": "Jacob|strong=\"H3290\"* took|strong=\"H3947\"* to|strong=\"H5921\"* himself rods|strong=\"H4731\"* of|strong=\"H5921\"* fresh|strong=\"H3892\"* poplar|strong=\"H3839\"*, almond|strong=\"H3869\"*, and|strong=\"H3290\"* plane|strong=\"H6196\"* tree|strong=\"H6196\"*, peeled|strong=\"H6478\"* white|strong=\"H3836\"* streaks|strong=\"H6479\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3290\"* made|strong=\"H3947\"* the|strong=\"H5921\"* white|strong=\"H3836\"* appear|strong=\"H4286\"* which|strong=\"H4286\"* was|strong=\"H3290\"* in|strong=\"H5921\"* the|strong=\"H5921\"* rods|strong=\"H4731\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"H4325\"* set|strong=\"H3322\"* the|strong=\"H8354\"* rods|strong=\"H4731\"* which|strong=\"H4325\"* he|strong=\"H4325\"* had|strong=\"H4325\"* peeled|strong=\"H6478\"* opposite|strong=\"H5227\"* the|strong=\"H8354\"* flocks|strong=\"H6629\"* in|strong=\"H6629\"* the|strong=\"H8354\"* watering|strong=\"H4325\"* troughs|strong=\"H8268\"* where the|strong=\"H8354\"* flocks|strong=\"H6629\"* came|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*. They conceived|strong=\"H3179\"* when they came|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3205\"* flocks|strong=\"H6629\"* conceived|strong=\"H3179\"* before the|strong=\"H3205\"* rods|strong=\"H4731\"*, and|strong=\"H6629\"* the|strong=\"H3205\"* flocks|strong=\"H6629\"* produced|strong=\"H3205\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H6629\"* spotted|strong=\"H2921\"*." + }, + { + "verseNum": 40, + "text": "Jacob|strong=\"H3290\"* separated|strong=\"H6504\"* the|strong=\"H3605\"* lambs|strong=\"H3775\"*, and|strong=\"H6629\"* set|strong=\"H5414\"* the|strong=\"H3605\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* streaked and|strong=\"H6629\"* all|strong=\"H3605\"* the|strong=\"H3605\"* black|strong=\"H2345\"* in|strong=\"H5921\"* Laban|strong=\"H3837\"*’s flock|strong=\"H6629\"*. He|strong=\"H3605\"* put|strong=\"H5414\"* his|strong=\"H3605\"* own|strong=\"H6440\"* droves|strong=\"H5739\"* apart|strong=\"H6504\"*, and|strong=\"H6629\"* didn’t put|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* Laban|strong=\"H3837\"*’s flock|strong=\"H6629\"*." + }, + { + "verseNum": 41, + "text": "Whenever|strong=\"H3605\"* the|strong=\"H3605\"* stronger|strong=\"H7194\"* of|strong=\"H5869\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* conceived|strong=\"H3179\"*, Jacob|strong=\"H3290\"* laid|strong=\"H7760\"* the|strong=\"H3605\"* rods|strong=\"H4731\"* in|strong=\"H6629\"* front of|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* in|strong=\"H6629\"* the|strong=\"H3605\"* watering troughs|strong=\"H7298\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* might conceive|strong=\"H3179\"* among the|strong=\"H3605\"* rods|strong=\"H4731\"*;" + }, + { + "verseNum": 42, + "text": "but|strong=\"H3808\"* when|strong=\"H1961\"* the|strong=\"H7760\"* flock|strong=\"H6629\"* were|strong=\"H1961\"* feeble|strong=\"H5848\"*, he|strong=\"H3808\"* didn’t put|strong=\"H7760\"* them|strong=\"H7760\"* in|strong=\"H6629\"*. So|strong=\"H1961\"* the|strong=\"H7760\"* feebler|strong=\"H5848\"* were|strong=\"H1961\"* Laban|strong=\"H3837\"*’s, and|strong=\"H6629\"* the|strong=\"H7760\"* stronger|strong=\"H7194\"* Jacob|strong=\"H3290\"*’s." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1961\"* man increased|strong=\"H6555\"* exceedingly|strong=\"H3966\"*, and|strong=\"H5650\"* had|strong=\"H1961\"* large|strong=\"H7227\"* flocks|strong=\"H6629\"*, female|strong=\"H8198\"* servants|strong=\"H5650\"* and|strong=\"H5650\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* camels|strong=\"H1581\"* and|strong=\"H5650\"* donkeys|strong=\"H2543\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* heard|strong=\"H8085\"* Laban|strong=\"H3837\"*’s sons|strong=\"H1121\"*’ words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “Jacob|strong=\"H3290\"* has|strong=\"H1697\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1697\"* our|strong=\"H3605\"* father|strong=\"H1121\"*’s. He|strong=\"H6213\"* has|strong=\"H1697\"* obtained all|strong=\"H3605\"* this|strong=\"H2088\"* wealth|strong=\"H3519\"* from|strong=\"H8085\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H1697\"* our|strong=\"H3605\"* father|strong=\"H1121\"*’s.”" + }, + { + "verseNum": 2, + "text": "Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H7200\"* Laban|strong=\"H3837\"*’s face|strong=\"H6440\"*, and|strong=\"H6440\"*, behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H3290\"* not|strong=\"H7200\"* toward|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H6440\"* before|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Jacob|strong=\"H3290\"*, “Return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* to|strong=\"H7725\"* your|strong=\"H3068\"* relatives|strong=\"H4138\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "Jacob|strong=\"H3290\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* Rachel|strong=\"H7354\"* and|strong=\"H7971\"* Leah|strong=\"H3812\"* to|strong=\"H7971\"* the|strong=\"H7121\"* field|strong=\"H7704\"* to|strong=\"H7971\"* his|strong=\"H7121\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6440\"* said to|strong=\"H1961\"* them|strong=\"H6440\"*, “I|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H6440\"* expression|strong=\"H6440\"* on|strong=\"H7200\"* your|strong=\"H6440\"* father’s face|strong=\"H6440\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H1961\"* not|strong=\"H1961\"* toward|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H1961\"* before|strong=\"H6440\"*; but|strong=\"H3588\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* my|strong=\"H7200\"* father has|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* served|strong=\"H5647\"* your|strong=\"H3605\"* father with|strong=\"H3045\"* all|strong=\"H3605\"* of|strong=\"H3605\"* my|strong=\"H3605\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H5414\"* father has|strong=\"H7489\"* deceived|strong=\"H2048\"* me|strong=\"H5414\"*, and|strong=\"H3808\"* changed|strong=\"H2498\"* my|strong=\"H5414\"* wages|strong=\"H4909\"* ten|strong=\"H6235\"* times|strong=\"H4489\"*, but|strong=\"H3808\"* God|strong=\"H5414\"* didn’t allow|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H5414\"* hurt|strong=\"H7489\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1961\"* he|strong=\"H3605\"* said, ‘The|strong=\"H3605\"* speckled|strong=\"H5348\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* wages|strong=\"H7939\"*,’ then|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* bore|strong=\"H3205\"* speckled|strong=\"H5348\"*. If|strong=\"H1961\"* he|strong=\"H3605\"* said, ‘The|strong=\"H3605\"* streaked will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* wages|strong=\"H7939\"*,’ then|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* bore|strong=\"H3205\"* streaked." + }, + { + "verseNum": 9, + "text": "Thus God|strong=\"H5414\"* has|strong=\"H5414\"* taken|strong=\"H5337\"* away|strong=\"H5337\"* your|strong=\"H5414\"* father’s livestock|strong=\"H4735\"*, and|strong=\"H4735\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "During|strong=\"H1961\"* mating|strong=\"H3179\"* season|strong=\"H6256\"*, I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* in|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* male|strong=\"H6260\"* goats|strong=\"H6260\"* which|strong=\"H5869\"* leaped|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* were|strong=\"H1961\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H5869\"* grizzled." + }, + { + "verseNum": 11, + "text": "The|strong=\"H2009\"* angel|strong=\"H4397\"* of|strong=\"H4397\"* God said to|strong=\"H4397\"* me|strong=\"H2472\"* in|strong=\"H3290\"* the|strong=\"H2009\"* dream|strong=\"H2472\"*, ‘Jacob|strong=\"H3290\"*,’ and|strong=\"H3290\"* I|strong=\"H2009\"* said, ‘Here|strong=\"H2009\"* I|strong=\"H2009\"* am.’" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said, ‘Now|strong=\"H4994\"* lift|strong=\"H5375\"* up|strong=\"H5927\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* behold|strong=\"H7200\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* male|strong=\"H6260\"* goats|strong=\"H6260\"* which|strong=\"H5869\"* leap|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H3605\"* flock|strong=\"H6629\"* are|strong=\"H5869\"* streaked, speckled|strong=\"H5348\"*, and|strong=\"H5869\"* grizzled, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Laban|strong=\"H3837\"* does|strong=\"H6213\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H6258\"* am the|strong=\"H4480\"* God|strong=\"H1008\"* of|strong=\"H4480\"* Bethel|strong=\"H1008\"*, where|strong=\"H8033\"* you|strong=\"H7725\"* anointed|strong=\"H4886\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, where|strong=\"H8033\"* you|strong=\"H7725\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H7725\"* me|strong=\"H7725\"*. Now|strong=\"H6258\"* arise|strong=\"H6965\"*, get|strong=\"H6965\"* out|strong=\"H3318\"* from|strong=\"H4480\"* this|strong=\"H2063\"* land, and|strong=\"H6965\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* your|strong=\"H7725\"* birth|strong=\"H4138\"*.’”" + }, + { + "verseNum": 14, + "text": "Rachel|strong=\"H7354\"* and|strong=\"H6030\"* Leah|strong=\"H3812\"* answered|strong=\"H6030\"* him|strong=\"H6030\"*, “Is|strong=\"H1004\"* there yet|strong=\"H5750\"* any|strong=\"H5750\"* portion|strong=\"H2506\"* or|strong=\"H2506\"* inheritance|strong=\"H5159\"* for|strong=\"H1004\"* us|strong=\"H6030\"* in|strong=\"H1004\"* our|strong=\"H5750\"* father’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 15, + "text": "Aren’t we|strong=\"H3068\"* considered|strong=\"H2803\"* as|strong=\"H2803\"* foreigners|strong=\"H5237\"* by|strong=\"H1571\"* him|strong=\"H2803\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* sold|strong=\"H4376\"* us|strong=\"H3588\"*, and|strong=\"H3701\"* has|strong=\"H3588\"* also|strong=\"H1571\"* used up our|strong=\"H3588\"* money|strong=\"H3701\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* riches|strong=\"H6239\"* which|strong=\"H1931\"* God has|strong=\"H3588\"* taken|strong=\"H5337\"* away|strong=\"H5337\"* from|strong=\"H1121\"* our|strong=\"H3605\"* father|strong=\"H1121\"* are|strong=\"H1121\"* ours and|strong=\"H1121\"* our|strong=\"H3605\"* children|strong=\"H1121\"*’s. Now|strong=\"H6258\"* then|strong=\"H6258\"*, whatever|strong=\"H3605\"* God has|strong=\"H3588\"* said to|strong=\"H6213\"* you|strong=\"H3588\"*, do|strong=\"H6213\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6965\"* Jacob|strong=\"H3290\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* set|strong=\"H6965\"* his|strong=\"H5375\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5375\"* wives on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3327\"* he|strong=\"H3605\"* took away|strong=\"H5090\"* all|strong=\"H3605\"* his|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H3327\"* all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H7399\"* which|strong=\"H7399\"* he|strong=\"H3605\"* had|strong=\"H3327\"* gathered|strong=\"H7408\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* which|strong=\"H7399\"* he|strong=\"H3605\"* had|strong=\"H3327\"* gained in|strong=\"H7408\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, to|strong=\"H3605\"* go to|strong=\"H3605\"* Isaac|strong=\"H3327\"* his|strong=\"H3605\"* father, to|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H1980\"* Laban|strong=\"H3837\"* had|strong=\"H7354\"* gone|strong=\"H1980\"* to|strong=\"H1980\"* shear|strong=\"H1494\"* his|strong=\"H1494\"* sheep|strong=\"H6629\"*; and|strong=\"H1980\"* Rachel|strong=\"H7354\"* stole|strong=\"H1589\"* the|strong=\"H1980\"* teraphim|strong=\"H8655\"*+ 31:19 teraphim were household idols that may have been associated with inheritance rights to the household property.* that|strong=\"H6629\"* were|strong=\"H6629\"* her|strong=\"H1980\"* father’s." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* deceived|strong=\"H1589\"* Laban|strong=\"H3837\"* the|strong=\"H5921\"* Syrian, in|strong=\"H5921\"* that|strong=\"H3588\"* he|strong=\"H1931\"* didn’t tell|strong=\"H5046\"* him|strong=\"H5921\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3820\"* running away|strong=\"H1272\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H6965\"* he|strong=\"H1931\"* fled|strong=\"H1272\"* with|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H7760\"*. He|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, and|strong=\"H6965\"* set|strong=\"H7760\"* his|strong=\"H3605\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 22, + "text": "Laban|strong=\"H3837\"* was|strong=\"H3117\"* told|strong=\"H5046\"* on|strong=\"H3117\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Jacob|strong=\"H3290\"* had|strong=\"H3588\"* fled|strong=\"H1272\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3117\"* took|strong=\"H3947\"* his|strong=\"H3947\"* relatives with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3117\"* pursued|strong=\"H7291\"* him|strong=\"H5973\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*. He|strong=\"H3117\"* overtook|strong=\"H1692\"* him|strong=\"H5973\"* in|strong=\"H3117\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"* of|strong=\"H3117\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 24, + "text": "God came|strong=\"H7451\"* to|strong=\"H1696\"* Laban|strong=\"H3837\"* the|strong=\"H8104\"* Syrian in|strong=\"H1696\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* of|strong=\"H1696\"* the|strong=\"H8104\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5973\"*, “Be|strong=\"H7451\"* careful|strong=\"H8104\"* that|strong=\"H7451\"* you|strong=\"H5704\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* either|strong=\"H3290\"* good|strong=\"H2896\"* or|strong=\"H6435\"* bad|strong=\"H7451\"*.”" + }, + { + "verseNum": 25, + "text": "Laban|strong=\"H3837\"* caught|strong=\"H5381\"* up|strong=\"H8628\"* with|strong=\"H8628\"* Jacob|strong=\"H3290\"*. Now Jacob|strong=\"H3290\"* had|strong=\"H3290\"* pitched|strong=\"H8628\"* his|strong=\"H3290\"* tent in|strong=\"H3290\"* the|strong=\"H8628\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* Laban|strong=\"H3837\"* with|strong=\"H8628\"* his|strong=\"H3290\"* relatives encamped in|strong=\"H3290\"* the|strong=\"H8628\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 26, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H6213\"* Jacob|strong=\"H3290\"*, “What|strong=\"H4100\"* have|strong=\"H1323\"* you|strong=\"H6213\"* done|strong=\"H6213\"*, that|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H1323\"* deceived|strong=\"H1589\"* me|strong=\"H6213\"*, and|strong=\"H2719\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* my|strong=\"H6213\"* daughters|strong=\"H1323\"* like|strong=\"H6213\"* captives|strong=\"H7617\"* of|strong=\"H1323\"* the|strong=\"H6213\"* sword|strong=\"H2719\"*?" + }, + { + "verseNum": 27, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H7971\"* flee|strong=\"H1272\"* secretly|strong=\"H2244\"*, and|strong=\"H7971\"* deceive|strong=\"H1589\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* didn’t tell|strong=\"H5046\"* me|strong=\"H7971\"*, that|strong=\"H3808\"* I|strong=\"H3808\"* might have|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"* with|strong=\"H7971\"* mirth|strong=\"H8057\"* and|strong=\"H7971\"* with|strong=\"H7971\"* songs|strong=\"H7892\"*, with|strong=\"H7971\"* tambourine|strong=\"H8596\"* and|strong=\"H7971\"* with|strong=\"H7971\"* harp|strong=\"H3658\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H1121\"* didn’t allow|strong=\"H5203\"* me|strong=\"H6213\"* to|strong=\"H6213\"* kiss|strong=\"H5401\"* my|strong=\"H6213\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* my|strong=\"H6213\"* daughters|strong=\"H1323\"*? Now|strong=\"H6258\"* you|strong=\"H6213\"* have|strong=\"H1121\"* done|strong=\"H6213\"* foolishly|strong=\"H5528\"*." + }, + { + "verseNum": 29, + "text": "It|strong=\"H6213\"* is|strong=\"H3426\"* in|strong=\"H6213\"* the|strong=\"H6213\"* power|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H8104\"* hand|strong=\"H3027\"* to|strong=\"H1696\"* hurt|strong=\"H7451\"* you|strong=\"H5704\"*, but|strong=\"H1696\"* the|strong=\"H6213\"* God|strong=\"H3027\"* of|strong=\"H3027\"* your|strong=\"H8104\"* father spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6213\"* last night, saying|strong=\"H1696\"*, ‘Be|strong=\"H3426\"* careful|strong=\"H8104\"* that|strong=\"H3027\"* you|strong=\"H5704\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* either|strong=\"H3290\"* good|strong=\"H2896\"* or|strong=\"H5704\"* bad|strong=\"H7451\"*.’" + }, + { + "verseNum": 30, + "text": "Now|strong=\"H6258\"*, you|strong=\"H3588\"* want to|strong=\"H1980\"* be|strong=\"H1004\"* gone|strong=\"H1980\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* greatly|strong=\"H3700\"* longed|strong=\"H3700\"* for|strong=\"H3588\"* your|strong=\"H3588\"* father’s house|strong=\"H1004\"*, but|strong=\"H3588\"* why|strong=\"H4100\"* have|strong=\"H6258\"* you|strong=\"H3588\"* stolen|strong=\"H1589\"* my|strong=\"H3588\"* gods|strong=\"H1980\"*?”" + }, + { + "verseNum": 31, + "text": "Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Laban|strong=\"H3837\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3290\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H6030\"*, ‘Lest|strong=\"H6435\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H1497\"* your|strong=\"H3588\"* daughters|strong=\"H1323\"* from|strong=\"H5973\"* me|strong=\"H5973\"* by|strong=\"H5973\"* force|strong=\"H1497\"*.’" + }, + { + "verseNum": 32, + "text": "Anyone|strong=\"H3588\"* you|strong=\"H3588\"* find|strong=\"H4672\"* your|strong=\"H3947\"* gods with|strong=\"H5973\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* live|strong=\"H2421\"*. Before|strong=\"H5048\"* our|strong=\"H3947\"* relatives, discern|strong=\"H5234\"* what|strong=\"H4100\"* is|strong=\"H4100\"* yours with|strong=\"H5973\"* me|strong=\"H5978\"*, and|strong=\"H3045\"* take|strong=\"H3947\"* it|strong=\"H3588\"*.” For|strong=\"H3588\"* Jacob|strong=\"H3290\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Rachel|strong=\"H7354\"* had|strong=\"H3588\"* stolen|strong=\"H1589\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 33, + "text": "Laban|strong=\"H3837\"* went|strong=\"H3318\"* into|strong=\"H3318\"* Jacob|strong=\"H3290\"*’s tent, into|strong=\"H3318\"* Leah|strong=\"H3812\"*’s tent, and|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* tent of|strong=\"H3318\"* the|strong=\"H3318\"* two|strong=\"H8147\"* female|strong=\"H8147\"* servants; but|strong=\"H3808\"* he|strong=\"H8147\"* didn’t find|strong=\"H4672\"* them|strong=\"H3318\"*. He|strong=\"H8147\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Leah|strong=\"H3812\"*’s tent, and|strong=\"H3318\"* entered|strong=\"H3318\"* into|strong=\"H3318\"* Rachel|strong=\"H7354\"*’s tent." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H3947\"* Rachel|strong=\"H7354\"* had|strong=\"H7354\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* teraphim|strong=\"H8655\"*, put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H3427\"* the|strong=\"H3605\"* camel|strong=\"H1581\"*’s saddle|strong=\"H3733\"*, and|strong=\"H3427\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. Laban|strong=\"H3837\"* felt|strong=\"H4959\"* around|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tent, but|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "She|strong=\"H3588\"* said to|strong=\"H3201\"* her|strong=\"H4672\"* father, “Don’t let|strong=\"H3808\"* my|strong=\"H6965\"* lord be|strong=\"H3808\"* angry|strong=\"H2734\"* that|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t rise|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*’m having|strong=\"H3808\"* my|strong=\"H6965\"* period.” He|strong=\"H3588\"* searched|strong=\"H2664\"*, but|strong=\"H3588\"* didn’t find|strong=\"H4672\"* the|strong=\"H6440\"* teraphim|strong=\"H8655\"*." + }, + { + "verseNum": 36, + "text": "Jacob|strong=\"H3290\"* was|strong=\"H3290\"* angry|strong=\"H2734\"*, and|strong=\"H6030\"* argued with|strong=\"H7378\"* Laban|strong=\"H3837\"*. Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Laban|strong=\"H3837\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3290\"* trespass|strong=\"H6588\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3290\"* sin|strong=\"H2403\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H2403\"* hotly|strong=\"H1814\"* pursued|strong=\"H1814\"* me|strong=\"H6030\"*?" + }, + { + "verseNum": 37, + "text": "Now|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H4672\"* felt|strong=\"H4959\"* around in|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* stuff|strong=\"H3627\"*, what|strong=\"H4100\"* have|strong=\"H4672\"* you|strong=\"H3588\"* found|strong=\"H4672\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* household|strong=\"H1004\"* stuff|strong=\"H3627\"*? Set|strong=\"H7760\"* it|strong=\"H7760\"* here|strong=\"H3541\"* before|strong=\"H5048\"* my|strong=\"H3605\"* relatives and|strong=\"H1004\"* your|strong=\"H3605\"* relatives, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1004\"* judge|strong=\"H3198\"* between us|strong=\"H7760\"* two|strong=\"H8147\"*." + }, + { + "verseNum": 38, + "text": "“These|strong=\"H2088\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* I|strong=\"H2088\"* have|strong=\"H3808\"* been|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H5973\"*. Your|strong=\"H3808\"* ewes|strong=\"H7353\"* and|strong=\"H6242\"* your|strong=\"H3808\"* female|strong=\"H5795\"* goats|strong=\"H5795\"* have|strong=\"H3808\"* not|strong=\"H3808\"* cast|strong=\"H7921\"* their|strong=\"H3808\"* young|strong=\"H7921\"*, and|strong=\"H6242\"* I|strong=\"H2088\"* haven’t eaten the|strong=\"H5973\"* rams of|strong=\"H8141\"* your|strong=\"H3808\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 39, + "text": "That|strong=\"H3117\"* which|strong=\"H3117\"* was|strong=\"H3117\"* torn|strong=\"H2966\"* of|strong=\"H3117\"* animals, I|strong=\"H3117\"* didn’t bring|strong=\"H2398\"* to|strong=\"H3027\"* you|strong=\"H3117\"*. I|strong=\"H3117\"* bore|strong=\"H2398\"* its|strong=\"H3808\"* loss|strong=\"H2398\"*. Of|strong=\"H3117\"* my|strong=\"H1245\"* hand|strong=\"H3027\"* you|strong=\"H3117\"* required|strong=\"H1245\"* it|strong=\"H3915\"*, whether stolen|strong=\"H1589\"* by|strong=\"H3027\"* day|strong=\"H3117\"* or|strong=\"H3808\"* stolen|strong=\"H1589\"* by|strong=\"H3027\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 40, + "text": "This|strong=\"H3117\"* was|strong=\"H1961\"* my|strong=\"H1961\"* situation: in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* drought|strong=\"H2721\"* consumed me|strong=\"H1961\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* frost|strong=\"H7140\"* by|strong=\"H3117\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* my|strong=\"H1961\"* sleep|strong=\"H8142\"* fled|strong=\"H5074\"* from|strong=\"H3117\"* my|strong=\"H1961\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H2088\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* I|strong=\"H2088\"* have|strong=\"H1323\"* been|strong=\"H5647\"* in|strong=\"H8141\"* your|strong=\"H2088\"* house|strong=\"H1004\"*. I|strong=\"H2088\"* served|strong=\"H5647\"* you|strong=\"H5647\"* fourteen|strong=\"H6240\"* years|strong=\"H8141\"* for|strong=\"H1004\"* your|strong=\"H2088\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*, and|strong=\"H6242\"* six|strong=\"H8337\"* years|strong=\"H8141\"* for|strong=\"H1004\"* your|strong=\"H2088\"* flock|strong=\"H6629\"*, and|strong=\"H6242\"* you|strong=\"H5647\"* have|strong=\"H1323\"* changed|strong=\"H2498\"* my|strong=\"H2498\"* wages|strong=\"H4909\"* ten|strong=\"H6235\"* times|strong=\"H4489\"*." + }, + { + "verseNum": 42, + "text": "Unless|strong=\"H3588\"* the|strong=\"H7200\"* God|strong=\"H7971\"* of|strong=\"H3709\"* my|strong=\"H7200\"* father, the|strong=\"H7200\"* God|strong=\"H7971\"* of|strong=\"H3709\"* Abraham, and|strong=\"H7971\"* the|strong=\"H7200\"* fear|strong=\"H6343\"* of|strong=\"H3709\"* Isaac|strong=\"H3327\"*, had|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H3198\"* me|strong=\"H7971\"*, surely|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* would have|strong=\"H1961\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* empty|strong=\"H7387\"*. God|strong=\"H7971\"* has|strong=\"H1961\"* seen|strong=\"H7200\"* my|strong=\"H7200\"* affliction|strong=\"H6040\"* and|strong=\"H7971\"* the|strong=\"H7200\"* labor|strong=\"H3018\"* of|strong=\"H3709\"* my|strong=\"H7200\"* hands|strong=\"H3709\"*, and|strong=\"H7971\"* rebuked|strong=\"H3198\"* you|strong=\"H3588\"* last|strong=\"H3588\"* night.”" + }, + { + "verseNum": 43, + "text": "Laban|strong=\"H3837\"* answered|strong=\"H6030\"* Jacob|strong=\"H3290\"*, “The|strong=\"H3605\"* daughters|strong=\"H1323\"* are|strong=\"H3117\"* my|strong=\"H3605\"* daughters|strong=\"H1323\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* are|strong=\"H3117\"* my|strong=\"H3605\"* children|strong=\"H1121\"*, the|strong=\"H3605\"* flocks|strong=\"H6629\"* are|strong=\"H3117\"* my|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"* is|strong=\"H1931\"* mine|strong=\"H7200\"*! What|strong=\"H4100\"* can|strong=\"H4100\"* I|strong=\"H3117\"* do|strong=\"H6213\"* today|strong=\"H3117\"* to|strong=\"H6213\"* these|strong=\"H6213\"* my|strong=\"H3605\"* daughters|strong=\"H1323\"*, or|strong=\"H3117\"* to|strong=\"H6213\"* their|strong=\"H3605\"* children|strong=\"H1121\"* whom they|strong=\"H3117\"* have|strong=\"H1121\"* borne|strong=\"H3205\"*?" + }, + { + "verseNum": 44, + "text": "Now|strong=\"H6258\"* come|strong=\"H1961\"*, let|strong=\"H6258\"*’s make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*, you|strong=\"H3772\"* and|strong=\"H3212\"* I|strong=\"H6258\"*. Let|strong=\"H6258\"* it|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between me|strong=\"H1961\"* and|strong=\"H3212\"* you|strong=\"H3772\"*.”" + }, + { + "verseNum": 45, + "text": "Jacob|strong=\"H3290\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone, and|strong=\"H3290\"* set|strong=\"H7311\"* it|strong=\"H3947\"* up|strong=\"H7311\"* for|strong=\"H3947\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*." + }, + { + "verseNum": 46, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H6213\"* his|strong=\"H3947\"* relatives, “Gather|strong=\"H3950\"* stones.” They|strong=\"H8033\"* took|strong=\"H3947\"* stones, and|strong=\"H8033\"* made|strong=\"H6213\"* a|strong=\"H3068\"* heap|strong=\"H1530\"*. They|strong=\"H8033\"* ate there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* heap|strong=\"H1530\"*." + }, + { + "verseNum": 47, + "text": "Laban|strong=\"H3837\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Jegar Sahadutha,+ 31:47 “Jegar Sahadutha” means “Witness Heap” in Aramaic.* but|strong=\"H3290\"* Jacob|strong=\"H3290\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Galeed|strong=\"H1567\"*.+ 31:47 “Galeed” means “Witness Heap” in Hebrew.*" + }, + { + "verseNum": 48, + "text": "Laban|strong=\"H3837\"* said|strong=\"H7121\"*, “This|strong=\"H2088\"* heap|strong=\"H1530\"* is|strong=\"H2088\"* witness|strong=\"H5707\"* between|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H3117\"* you|strong=\"H5921\"* today|strong=\"H3117\"*.” Therefore|strong=\"H3651\"* it|strong=\"H7121\"* was|strong=\"H8034\"* named|strong=\"H7121\"* Galeed|strong=\"H1567\"*" + }, + { + "verseNum": 49, + "text": "and|strong=\"H3068\"* Mizpah|strong=\"H4709\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* said, “Yahweh|strong=\"H3068\"* watch|strong=\"H6822\"* between me|strong=\"H5641\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3068\"* absent|strong=\"H5641\"* one|strong=\"H3588\"* from|strong=\"H3068\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 50, + "text": "If|strong=\"H7200\"* you|strong=\"H5921\"* afflict|strong=\"H6031\"* my|strong=\"H7200\"* daughters|strong=\"H1323\"*, or|strong=\"H7200\"* if|strong=\"H7200\"* you|strong=\"H5921\"* take|strong=\"H3947\"* wives in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* my|strong=\"H7200\"* daughters|strong=\"H1323\"*, no|strong=\"H3947\"* man|strong=\"H7200\"* is|strong=\"H1323\"* with|strong=\"H5973\"* us|strong=\"H5921\"*; behold|strong=\"H7200\"*, God is|strong=\"H1323\"* witness|strong=\"H5707\"* between|strong=\"H5973\"* me|strong=\"H7200\"* and|strong=\"H7200\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 51, + "text": "Laban|strong=\"H3837\"* said to|strong=\"H2088\"* Jacob|strong=\"H3290\"*, “See|strong=\"H2009\"* this|strong=\"H2088\"* heap|strong=\"H1530\"*, and|strong=\"H3290\"* see|strong=\"H2009\"* the|strong=\"H2009\"* pillar|strong=\"H4676\"*, which|strong=\"H2088\"* I|strong=\"H2009\"* have|strong=\"H1530\"* set|strong=\"H3384\"* between me and|strong=\"H3290\"* you|strong=\"H3384\"*." + }, + { + "verseNum": 52, + "text": "May|strong=\"H3808\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, and|strong=\"H2088\"* the|strong=\"H5674\"* pillar|strong=\"H4676\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, that|strong=\"H2088\"* I|strong=\"H2088\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* to|strong=\"H5674\"* you|strong=\"H3808\"*, and|strong=\"H2088\"* that|strong=\"H2088\"* you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* heap|strong=\"H1530\"* and|strong=\"H2088\"* this|strong=\"H2088\"* pillar|strong=\"H4676\"* to|strong=\"H5674\"* me|strong=\"H5674\"*, for|strong=\"H7451\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H8199\"* God of|strong=\"H6343\"* Abraham, and|strong=\"H3290\"* the|strong=\"H8199\"* God of|strong=\"H6343\"* Nahor|strong=\"H5152\"*, the|strong=\"H8199\"* God of|strong=\"H6343\"* their|strong=\"H3290\"* father, judge|strong=\"H8199\"* between|strong=\"H8199\"* us|strong=\"H8199\"*.” Then Jacob|strong=\"H3290\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H8199\"* fear|strong=\"H6343\"* of|strong=\"H6343\"* his|strong=\"H3327\"* father, Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 54, + "text": "Jacob|strong=\"H3290\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* in|strong=\"H3899\"* the|strong=\"H7121\"* mountain|strong=\"H2022\"*, and|strong=\"H3899\"* called|strong=\"H7121\"* his|strong=\"H7121\"* relatives to|strong=\"H7121\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*. They|strong=\"H7121\"* ate bread|strong=\"H3899\"*, and|strong=\"H3899\"* stayed|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"* in|strong=\"H3899\"* the|strong=\"H7121\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 55, + "text": "Early in the morning, Laban rose up, and kissed his sons and his daughters, and blessed them. Laban departed and returned to his place." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Jacob went|strong=\"H3212\"* on|strong=\"H4725\"* his|strong=\"H7725\"* way|strong=\"H3212\"*, and|strong=\"H1121\"* the|strong=\"H7725\"* angels of|strong=\"H1121\"* God met him|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1980\"* he|strong=\"H1980\"* saw|strong=\"H3290\"* them|strong=\"H1870\"*, Jacob|strong=\"H3290\"* said, “This|strong=\"H1870\"* is|strong=\"H1870\"* God’s army.” He|strong=\"H1980\"* called the|strong=\"H1870\"* name of|strong=\"H1870\"* that|strong=\"H4397\"* place Mahanaim.+ 32:2 “Mahanaim” means “two camps”.*" + }, + { + "verseNum": 3, + "text": "Jacob|strong=\"H3290\"* sent messengers in|strong=\"H8034\"* front of|strong=\"H8034\"* him|strong=\"H7121\"* to|strong=\"H7200\"* Esau, his|strong=\"H7121\"* brother, to|strong=\"H7200\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H8034\"* Seir, the|strong=\"H7200\"* field of|strong=\"H8034\"* Edom." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7971\"* commanded them|strong=\"H7971\"*, saying, “This|strong=\"H6440\"* is|strong=\"H6440\"* what you|strong=\"H6440\"* shall|strong=\"H7704\"* tell my|strong=\"H7971\"* lord, Esau|strong=\"H6215\"*: ‘This|strong=\"H6440\"* is|strong=\"H6440\"* what your|strong=\"H6440\"* servant, Jacob|strong=\"H3290\"*, says. I|strong=\"H6440\"* have lived as|strong=\"H6440\"* a|strong=\"H3068\"* foreigner with|strong=\"H6440\"* Laban, and|strong=\"H7971\"* stayed until|strong=\"H7704\"* now|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5704\"* have|strong=\"H5650\"* cattle, donkeys, flocks, male|strong=\"H5650\"* servants|strong=\"H5650\"*, and|strong=\"H5650\"* female servants|strong=\"H5650\"*. I|strong=\"H5704\"* have|strong=\"H5650\"* sent|strong=\"H6680\"* to|strong=\"H5704\"* tell my|strong=\"H3290\"* lord, that|strong=\"H5650\"* I|strong=\"H5704\"* may|strong=\"H3541\"* find favor in|strong=\"H5650\"* your|strong=\"H6680\"* sight.’”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H7971\"* messengers|strong=\"H5650\"* returned to|strong=\"H7971\"* Jacob|strong=\"H7971\"*, saying, “We|strong=\"H4672\"* came|strong=\"H1961\"* to|strong=\"H7971\"* your|strong=\"H7971\"* brother Esau. He|strong=\"H7971\"* is|strong=\"H5650\"* coming|strong=\"H5650\"* to|strong=\"H7971\"* meet|strong=\"H4672\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* four hundred men|strong=\"H5650\"* are|strong=\"H5869\"* with|strong=\"H5869\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1980\"* Jacob|strong=\"H3290\"* was|strong=\"H3290\"* greatly afraid and|strong=\"H3967\"* was|strong=\"H3290\"* distressed. He|strong=\"H1980\"* divided the|strong=\"H7725\"* people|strong=\"H1571\"* who|strong=\"H4397\"* were|strong=\"H3290\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, along|strong=\"H1980\"* with|strong=\"H5973\"* the|strong=\"H7725\"* flocks, the|strong=\"H7725\"* herds, and|strong=\"H3967\"* the|strong=\"H7725\"* camels, into|strong=\"H1980\"* two|strong=\"H1980\"* companies." + }, + { + "verseNum": 8, + "text": "He|strong=\"H8147\"* said, “If Esau comes to|strong=\"H5971\"* the|strong=\"H3372\"* one|strong=\"H8147\"* company|strong=\"H4264\"*, and|strong=\"H5971\"* strikes it|strong=\"H4264\"*, then|strong=\"H3372\"* the|strong=\"H3372\"* company|strong=\"H4264\"* which|strong=\"H5971\"* is|strong=\"H5971\"* left will|strong=\"H5971\"* escape.”" + }, + { + "verseNum": 9, + "text": "Jacob said, “God of|strong=\"H4264\"* my|strong=\"H1961\"* father Abraham, and|strong=\"H4264\"* God of|strong=\"H4264\"* my|strong=\"H1961\"* father Isaac, Yahweh|strong=\"H3068\"*, who|strong=\"H7604\"* said to|strong=\"H1961\"* me|strong=\"H5221\"*, ‘Return to|strong=\"H1961\"* your|strong=\"H1961\"* country, and|strong=\"H4264\"* to|strong=\"H1961\"* your|strong=\"H1961\"* relatives, and|strong=\"H4264\"* I|strong=\"H6215\"* will|strong=\"H1961\"* do you|strong=\"H5221\"* good,’" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3068\"* am|strong=\"H3068\"* not|strong=\"H7725\"* worthy of|strong=\"H3068\"* the|strong=\"H3068\"* least of|strong=\"H3068\"* all|strong=\"H7725\"* the|strong=\"H3068\"* loving kindnesses, and|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H7725\"* the|strong=\"H3068\"* truth, which|strong=\"H3068\"* you|strong=\"H7725\"* have|strong=\"H3068\"* shown|strong=\"H5973\"* to|strong=\"H7725\"* your|strong=\"H3068\"* servant; for|strong=\"H3068\"* with|strong=\"H5973\"* just my|strong=\"H3068\"* staff I|strong=\"H3068\"* crossed over|strong=\"H3068\"* this|strong=\"H7725\"* Jordan; and|strong=\"H3068\"* now|strong=\"H3327\"* I|strong=\"H3068\"* have|strong=\"H3068\"* become|strong=\"H7725\"* two companies." + }, + { + "verseNum": 11, + "text": "Please deliver me|strong=\"H6213\"* from|strong=\"H1961\"* the|strong=\"H3605\"* hand of|strong=\"H5650\"* my|strong=\"H3605\"* brother, from|strong=\"H1961\"* the|strong=\"H3605\"* hand of|strong=\"H5650\"* Esau; for|strong=\"H3588\"* I|strong=\"H3588\"* fear him|strong=\"H6213\"*, lest he|strong=\"H3588\"* come|strong=\"H1961\"* and|strong=\"H5650\"* strike me|strong=\"H6213\"* and|strong=\"H5650\"* the|strong=\"H3605\"* mothers with|strong=\"H6213\"* the|strong=\"H3605\"* children." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* will|strong=\"H1121\"* surely|strong=\"H3588\"* do|strong=\"H4994\"* you|strong=\"H3588\"* good, and|strong=\"H1121\"* make|strong=\"H3027\"* your|strong=\"H5921\"* offspring|strong=\"H1121\"* as|strong=\"H3588\"* the|strong=\"H5921\"* sand of|strong=\"H1121\"* the|strong=\"H5921\"* sea, which|strong=\"H6215\"* can|strong=\"H1121\"*’t be|strong=\"H3027\"* counted because|strong=\"H3588\"* there are|strong=\"H1121\"* so|strong=\"H6435\"* many.’”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* stayed there|strong=\"H7230\"* that|strong=\"H3808\"* night, and|strong=\"H3220\"* took|strong=\"H7760\"* from|strong=\"H5973\"* that|strong=\"H3808\"* which|strong=\"H2344\"* he|strong=\"H3808\"* had|strong=\"H7760\"* with|strong=\"H5973\"* him|strong=\"H5973\"* a|strong=\"H3068\"* present for|strong=\"H3808\"* Esau, his|strong=\"H7760\"* brother:" + }, + { + "verseNum": 14, + "text": "two|strong=\"H3947\"* hundred female goats and|strong=\"H3027\"* twenty male goats, two|strong=\"H3947\"* hundred ewes and|strong=\"H3027\"* twenty rams," + }, + { + "verseNum": 15, + "text": "thirty milk camels and|strong=\"H3967\"* their colts, forty cows, ten bulls, twenty|strong=\"H6242\"* female|strong=\"H5795\"* donkeys and|strong=\"H3967\"* ten foals." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6242\"* delivered them|strong=\"H1121\"* into the|strong=\"H1121\"* hands of|strong=\"H1121\"* his|strong=\"H1121\"* servants, every|strong=\"H1121\"* herd by|strong=\"H1121\"* itself, and|strong=\"H1121\"* said to|strong=\"H1121\"* his|strong=\"H1121\"* servants, “Pass over before me|strong=\"H1121\"*, and|strong=\"H1121\"* put a|strong=\"H3068\"* space between herd and|strong=\"H1121\"* herd.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H5414\"* commanded the|strong=\"H6440\"* foremost, saying, “When|strong=\"H5674\"* Esau, my|strong=\"H5414\"* brother, meets you|strong=\"H5414\"*, and|strong=\"H3027\"* asks you|strong=\"H5414\"*, saying, ‘Whose|strong=\"H5650\"* are|strong=\"H3027\"* you|strong=\"H5414\"*? Where|strong=\"H3027\"* are|strong=\"H3027\"* you|strong=\"H5414\"* going|strong=\"H5674\"*? Whose|strong=\"H5650\"* are|strong=\"H3027\"* these|strong=\"H7760\"* before|strong=\"H6440\"* you|strong=\"H5414\"*?’" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H4310\"* say, ‘They|strong=\"H3588\"* are|strong=\"H4310\"* your|strong=\"H6440\"* servant, Jacob’s. It|strong=\"H3588\"* is|strong=\"H4310\"* a|strong=\"H3068\"* present sent|strong=\"H6680\"* to|strong=\"H3212\"* my|strong=\"H3588\"* lord, Esau|strong=\"H6215\"*. Behold, he|strong=\"H3588\"* also|strong=\"H3588\"* is|strong=\"H4310\"* behind us|strong=\"H6440\"*.’”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* commanded|strong=\"H1571\"* also|strong=\"H1571\"* the|strong=\"H7971\"* second, and|strong=\"H7971\"* the|strong=\"H7971\"* third, and|strong=\"H7971\"* all|strong=\"H7971\"* that|strong=\"H1931\"* followed the|strong=\"H7971\"* herds, saying, “This|strong=\"H1931\"* is|strong=\"H1931\"* how|strong=\"H2009\"* you|strong=\"H7971\"* shall|strong=\"H5650\"* speak to|strong=\"H7971\"* Esau|strong=\"H6215\"*, when|strong=\"H7971\"* you|strong=\"H7971\"* find him|strong=\"H7971\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6680\"* shall|strong=\"H2088\"* say|strong=\"H1696\"*, ‘Not|strong=\"H2088\"* only|strong=\"H3605\"* that|strong=\"H3605\"*, but|strong=\"H1696\"* behold, your|strong=\"H3605\"* servant, Jacob, is|strong=\"H2088\"* behind|strong=\"H1980\"* us|strong=\"H4672\"*.’” For|strong=\"H3605\"*, he|strong=\"H3605\"* said|strong=\"H1696\"*, “I|strong=\"H1697\"* will|strong=\"H1571\"* appease him|strong=\"H4672\"* with|strong=\"H1980\"* the|strong=\"H3605\"* present|strong=\"H4672\"* that|strong=\"H3605\"* goes|strong=\"H1980\"* before|strong=\"H1980\"* me|strong=\"H1696\"*, and|strong=\"H1980\"* afterward I|strong=\"H1697\"* will|strong=\"H1571\"* see his|strong=\"H3605\"* face. Perhaps he|strong=\"H3605\"* will|strong=\"H1571\"* accept me|strong=\"H1696\"*.”" + }, + { + "verseNum": 21, + "text": "So|strong=\"H3651\"* the|strong=\"H6440\"* present|strong=\"H4503\"* passed|strong=\"H5650\"* over|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1980\"* he|strong=\"H3588\"* himself|strong=\"H6440\"* stayed that|strong=\"H3588\"* night in|strong=\"H1980\"* the|strong=\"H6440\"* camp." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* rose up|strong=\"H5921\"* that|strong=\"H1931\"* night|strong=\"H3915\"*, and|strong=\"H6440\"* took|strong=\"H5674\"* his|strong=\"H6440\"* two wives, and|strong=\"H6440\"* his|strong=\"H6440\"* two servants|strong=\"H6440\"*, and|strong=\"H6440\"* his|strong=\"H6440\"* eleven sons, and|strong=\"H6440\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H6440\"* ford|strong=\"H5674\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Jabbok." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* them|strong=\"H3947\"*, and|strong=\"H6965\"* sent|strong=\"H5674\"* them|strong=\"H3947\"* over|strong=\"H5674\"* the|strong=\"H3947\"* stream, and|strong=\"H6965\"* sent|strong=\"H5674\"* over|strong=\"H5674\"* that|strong=\"H1931\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H8198\"*." + }, + { + "verseNum": 24, + "text": "Jacob was left|strong=\"H5674\"* alone, and|strong=\"H3947\"* wrestled with|strong=\"H3947\"* a|strong=\"H3068\"* man|strong=\"H5674\"* there|strong=\"H5158\"* until the|strong=\"H3947\"* breaking of|strong=\"H5158\"* the|strong=\"H3947\"* day." + }, + { + "verseNum": 25, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* saw|strong=\"H3290\"* that|strong=\"H5704\"* he|strong=\"H5704\"* didn’t prevail against|strong=\"H5973\"* him|strong=\"H5973\"*, the|strong=\"H5704\"* man touched the|strong=\"H5704\"* hollow of|strong=\"H3498\"* his|strong=\"H3290\"* thigh, and|strong=\"H5927\"* the|strong=\"H5704\"* hollow of|strong=\"H3498\"* Jacob|strong=\"H3290\"*’s thigh was|strong=\"H3290\"* strained as|strong=\"H5704\"* he|strong=\"H5704\"* wrestled." + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* man|strong=\"H7200\"* said, “Let|strong=\"H3808\"* me|strong=\"H7200\"* go|strong=\"H3201\"*, for|strong=\"H3588\"* the|strong=\"H7200\"* day breaks.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3588\"* said to|strong=\"H7971\"* him|strong=\"H7971\"*, “What|strong=\"H5927\"* is|strong=\"H1288\"* your|strong=\"H3588\"* name?”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H3290\"* said, “Your|strong=\"H4100\"* name|strong=\"H8034\"* will|strong=\"H3290\"* no longer be|strong=\"H8034\"* called|strong=\"H8034\"* Jacob|strong=\"H3290\"*, but|strong=\"H4100\"* Israel; for|strong=\"H8034\"* you|strong=\"H4100\"* have|strong=\"H8034\"* fought with|strong=\"H8034\"* God and|strong=\"H3290\"* with|strong=\"H8034\"* men|strong=\"H8034\"*, and|strong=\"H3290\"* have|strong=\"H8034\"* prevailed.”" + }, + { + "verseNum": 29, + "text": "Jacob|strong=\"H3290\"* asked him|strong=\"H5973\"*, “Please tell me|strong=\"H5973\"* your|strong=\"H3588\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 30, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H8034\"* the|strong=\"H1288\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1288\"* place|strong=\"H8033\"* Peniel;+ 32:30 Peniel means “face of God”.* for|strong=\"H8034\"* he|strong=\"H8033\"* said, “I|strong=\"H2088\"* have|strong=\"H8034\"* seen God face to|strong=\"H8033\"* face, and|strong=\"H8033\"* my|strong=\"H5046\"* life is|strong=\"H2088\"* preserved.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H6440\"* sun rose|strong=\"H3290\"* on|strong=\"H7200\"* him|strong=\"H6440\"* as|strong=\"H5315\"* he|strong=\"H3588\"* passed over|strong=\"H6440\"* Peniel|strong=\"H6439\"*, and|strong=\"H6440\"* he|strong=\"H3588\"* limped because|strong=\"H3588\"* of|strong=\"H6440\"* his|strong=\"H7121\"* thigh." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H5921\"* the|strong=\"H5921\"* children of|strong=\"H5921\"* Israel don’t eat the|strong=\"H5921\"* sinew of|strong=\"H5921\"* the|strong=\"H5921\"* hip|strong=\"H3409\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hollow of|strong=\"H5921\"* the|strong=\"H5921\"* thigh|strong=\"H3409\"*, to|strong=\"H5921\"* this|strong=\"H1931\"* day, because|strong=\"H5921\"* he|strong=\"H1931\"* touched the|strong=\"H5921\"* hollow of|strong=\"H5921\"* Jacob’s thigh|strong=\"H3409\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sinew of|strong=\"H5921\"* the|strong=\"H5921\"* hip|strong=\"H3409\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3967\"* looked|strong=\"H7200\"*, and|strong=\"H3967\"*, behold|strong=\"H2009\"*, Esau|strong=\"H6215\"* was|strong=\"H3206\"* coming|strong=\"H2009\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* four hundred|strong=\"H3967\"* men|strong=\"H3206\"*. He|strong=\"H8147\"* divided|strong=\"H2673\"* the|strong=\"H5921\"* children|strong=\"H3206\"* between|strong=\"H5973\"* Leah|strong=\"H3812\"*, Rachel|strong=\"H7354\"*, and|strong=\"H3967\"* the|strong=\"H5921\"* two|strong=\"H8147\"* servants|strong=\"H8198\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H7760\"* put|strong=\"H7760\"* the|strong=\"H7760\"* servants|strong=\"H8198\"* and|strong=\"H7223\"* their|strong=\"H7760\"* children|strong=\"H3206\"* in|strong=\"H7760\"* front|strong=\"H7223\"*, Leah|strong=\"H3812\"* and|strong=\"H7223\"* her|strong=\"H7760\"* children|strong=\"H3206\"* after, and|strong=\"H7223\"* Rachel|strong=\"H7354\"* and|strong=\"H7223\"* Joseph|strong=\"H3130\"* at the|strong=\"H7760\"* rear." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* himself|strong=\"H1931\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H6440\"* bowed|strong=\"H7812\"* himself|strong=\"H1931\"* to|strong=\"H5704\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, until|strong=\"H5704\"* he|strong=\"H1931\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* his|strong=\"H6440\"* brother." + }, + { + "verseNum": 4, + "text": "Esau|strong=\"H6215\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, embraced|strong=\"H2263\"* him|strong=\"H5921\"*, fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*, kissed|strong=\"H5401\"* him|strong=\"H5921\"*, and|strong=\"H7323\"* they|strong=\"H5921\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H4310\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* women and|strong=\"H5869\"* the|strong=\"H7200\"* children|strong=\"H3206\"*; and|strong=\"H5869\"* said, “Who|strong=\"H4310\"* are|strong=\"H5869\"* these with|strong=\"H5869\"* you|strong=\"H7200\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5066\"* the|strong=\"H7812\"* servants|strong=\"H8198\"* came|strong=\"H5066\"* near|strong=\"H5066\"* with|strong=\"H5066\"* their|strong=\"H7812\"* children|strong=\"H3206\"*, and|strong=\"H5066\"* they|strong=\"H2007\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*." + }, + { + "verseNum": 7, + "text": "Leah|strong=\"H3812\"* also|strong=\"H1571\"* and|strong=\"H5066\"* her|strong=\"H1571\"* children|strong=\"H3206\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H5066\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*. After them|strong=\"H5066\"*, Joseph|strong=\"H3130\"* came|strong=\"H5066\"* near|strong=\"H5066\"* with|strong=\"H1571\"* Rachel|strong=\"H7354\"*, and|strong=\"H5066\"* they|strong=\"H1571\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H4310\"* said, “What|strong=\"H4310\"* do|strong=\"H5869\"* you|strong=\"H3605\"* mean by|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2088\"* company|strong=\"H4264\"* which|strong=\"H4310\"* I|strong=\"H2088\"* met|strong=\"H6298\"*?”" + }, + { + "verseNum": 9, + "text": "Esau|strong=\"H6215\"* said, “I|strong=\"H6215\"* have|strong=\"H1961\"* enough|strong=\"H7227\"*, my|strong=\"H1961\"* brother; let|strong=\"H1961\"* that|strong=\"H3426\"* which|strong=\"H3426\"* you|strong=\"H1961\"* have|strong=\"H1961\"* be|strong=\"H1961\"* yours.”" + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* said|strong=\"H3651\"*, “Please|strong=\"H4994\"*, no|strong=\"H4672\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* now|strong=\"H4994\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3947\"* sight|strong=\"H5869\"*, then|strong=\"H3947\"* receive|strong=\"H3947\"* my|strong=\"H7200\"* present|strong=\"H4503\"* at|strong=\"H5921\"* my|strong=\"H7200\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* seen|strong=\"H7200\"* your|strong=\"H3947\"* face|strong=\"H6440\"*, as|strong=\"H3651\"* one|strong=\"H3588\"* sees|strong=\"H7200\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3027\"* God|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H3588\"* were|strong=\"H5869\"* pleased|strong=\"H7521\"* with|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Please|strong=\"H4994\"* take|strong=\"H3947\"* the|strong=\"H3605\"* gift|strong=\"H1293\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3947\"* to|strong=\"H3947\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* God has|strong=\"H3588\"* dealt|strong=\"H2603\"* graciously|strong=\"H2603\"* with|strong=\"H3605\"* me|strong=\"H4994\"*, and|strong=\"H3947\"* because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3426\"* enough|strong=\"H3605\"*.” He|strong=\"H3588\"* urged|strong=\"H6484\"* him|strong=\"H3947\"*, and|strong=\"H3947\"* he|strong=\"H3588\"* took|strong=\"H3947\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "Esau said, “Let|strong=\"H3212\"*’s take|strong=\"H3212\"* our|strong=\"H5048\"* journey|strong=\"H5265\"*, and|strong=\"H3212\"* let|strong=\"H3212\"*’s go|strong=\"H3212\"*, and|strong=\"H3212\"* I|strong=\"H3212\"* will go|strong=\"H3212\"* before|strong=\"H5048\"* you|strong=\"H3212\"*.”" + }, + { + "verseNum": 13, + "text": "Jacob said to|strong=\"H4191\"* him|strong=\"H5921\"*, “My|strong=\"H3605\"* lord knows|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* children|strong=\"H3206\"* are|strong=\"H3117\"* tender|strong=\"H7390\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* and|strong=\"H3117\"* herds|strong=\"H1241\"* with|strong=\"H5921\"* me|strong=\"H5921\"* have|strong=\"H3045\"* their|strong=\"H3605\"* young|strong=\"H1241\"*, and|strong=\"H3117\"* if|strong=\"H3588\"* they|strong=\"H3588\"* overdrive|strong=\"H1849\"* them|strong=\"H5921\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* will|strong=\"H3117\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 14, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H5674\"* lord pass|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* his|strong=\"H6440\"* servant|strong=\"H5650\"*, and|strong=\"H5650\"* I|strong=\"H5704\"* will|strong=\"H5650\"* lead|strong=\"H5095\"* on|strong=\"H5674\"* gently, according to|strong=\"H5704\"* the|strong=\"H6440\"* pace|strong=\"H7272\"* of|strong=\"H6440\"* the|strong=\"H6440\"* livestock that|strong=\"H5650\"* are|strong=\"H5650\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H5650\"* according to|strong=\"H5704\"* the|strong=\"H6440\"* pace|strong=\"H7272\"* of|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H3206\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* come|strong=\"H5674\"* to|strong=\"H5704\"* my|strong=\"H5674\"* lord to|strong=\"H5704\"* Seir|strong=\"H8165\"*.”" + }, + { + "verseNum": 15, + "text": "Esau|strong=\"H6215\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* leave|strong=\"H4480\"* with|strong=\"H5973\"* you|strong=\"H5973\"* some|strong=\"H4480\"* of|strong=\"H5869\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5973\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H7725\"* Esau|strong=\"H6215\"* returned|strong=\"H7725\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H3117\"* his|strong=\"H7725\"* way|strong=\"H1870\"* to|strong=\"H7725\"* Seir|strong=\"H8165\"*." + }, + { + "verseNum": 17, + "text": "Jacob|strong=\"H3290\"* traveled|strong=\"H5265\"* to|strong=\"H5921\"* Succoth|strong=\"H5523\"*, built|strong=\"H1129\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* shelters|strong=\"H5521\"* for|strong=\"H5921\"* his|strong=\"H7121\"* livestock|strong=\"H4735\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H5921\"* place|strong=\"H4725\"* is|strong=\"H8034\"* called|strong=\"H7121\"* Succoth|strong=\"H5523\"*.+ 33:17 succoth means shelters or booths.*" + }, + { + "verseNum": 18, + "text": "Jacob|strong=\"H3290\"* came in|strong=\"H2583\"* peace to|strong=\"H6440\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Shechem|strong=\"H7927\"*, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H2583\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H5892\"* Canaan|strong=\"H3667\"*, when|strong=\"H3290\"* he|strong=\"H6440\"* came from|strong=\"H6440\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*; and|strong=\"H5892\"* encamped|strong=\"H2583\"* before|strong=\"H6440\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8033\"* bought|strong=\"H7069\"* the|strong=\"H3027\"* parcel|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* where|strong=\"H8033\"* he|strong=\"H8033\"* had|strong=\"H3027\"* spread|strong=\"H5186\"* his|strong=\"H5186\"* tent, at|strong=\"H7704\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"*, Shechem|strong=\"H7927\"*’s father|strong=\"H1121\"*, for|strong=\"H3027\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* pieces|strong=\"H7192\"* of|strong=\"H1121\"* money|strong=\"H7192\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* erected|strong=\"H5324\"* an|strong=\"H8033\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* called|strong=\"H7121\"* it|strong=\"H7121\"* El Elohe Israel|strong=\"H3478\"*.+ 33:20 El Elohe Israel means “God, the God of Israel” or “The God of Israel is mighty”.*" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Dinah|strong=\"H1783\"*, the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Leah|strong=\"H3812\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3318\"* Jacob|strong=\"H3290\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* see|strong=\"H7200\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* land." + }, + { + "verseNum": 2, + "text": "Shechem|strong=\"H7927\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H7200\"* Hivite|strong=\"H2340\"*, the|strong=\"H7200\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H7200\"* land, saw|strong=\"H7200\"* her|strong=\"H3947\"*. He|strong=\"H3947\"* took|strong=\"H3947\"* her|strong=\"H3947\"*, lay|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* humbled|strong=\"H6031\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H5921\"* soul|strong=\"H5315\"* joined|strong=\"H1692\"* to|strong=\"H1696\"* Dinah|strong=\"H1783\"*, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Jacob|strong=\"H3290\"*, and|strong=\"H3290\"* he|strong=\"H5921\"* loved the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, and|strong=\"H3290\"* spoke|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*." + }, + { + "verseNum": 4, + "text": "Shechem|strong=\"H7927\"* spoke to|strong=\"H3947\"* his|strong=\"H3947\"* father, Hamor|strong=\"H2544\"*, saying, “Get|strong=\"H3947\"* me|strong=\"H3947\"* this|strong=\"H2063\"* young|strong=\"H3207\"* lady as|strong=\"H3947\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H1961\"* Jacob|strong=\"H3290\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* defiled|strong=\"H2930\"* Dinah|strong=\"H1783\"*, his|strong=\"H8085\"* daughter|strong=\"H1323\"*; and|strong=\"H1121\"* his|strong=\"H8085\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H8085\"* his|strong=\"H8085\"* livestock|strong=\"H4735\"* in|strong=\"H8085\"* the|strong=\"H8085\"* field|strong=\"H7704\"*. Jacob|strong=\"H3290\"* held|strong=\"H1961\"* his|strong=\"H8085\"* peace|strong=\"H2790\"* until|strong=\"H5704\"* they|strong=\"H3588\"* came|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "Hamor|strong=\"H2544\"* the|strong=\"H3318\"* father of|strong=\"H3318\"* Shechem|strong=\"H7927\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"* to|strong=\"H1696\"* talk|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"* came|strong=\"H3478\"* in|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H8085\"* field|strong=\"H7704\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* it|strong=\"H3588\"*. The|strong=\"H8085\"* men|strong=\"H1121\"* were|strong=\"H3478\"* grieved|strong=\"H6087\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* were|strong=\"H3478\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* done|strong=\"H6213\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* lying|strong=\"H7901\"* with|strong=\"H6213\"* Jacob|strong=\"H3290\"*’s daughter|strong=\"H1323\"*, a|strong=\"H3068\"* thing|strong=\"H5039\"* that|strong=\"H3588\"* ought|strong=\"H3651\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Hamor|strong=\"H2544\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5414\"*, saying|strong=\"H1696\"*, “The|strong=\"H5414\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* my|strong=\"H5414\"* son|strong=\"H1121\"*, Shechem|strong=\"H7927\"*, longs|strong=\"H2836\"* for|strong=\"H1121\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"*. Please|strong=\"H4994\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1696\"* him|strong=\"H5414\"* as|strong=\"H5315\"* a|strong=\"H3068\"* wife|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "Make|strong=\"H5414\"* marriages|strong=\"H2859\"* with|strong=\"H2859\"* us|strong=\"H5414\"*. Give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* us|strong=\"H5414\"*, and|strong=\"H1323\"* take|strong=\"H3947\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"* for|strong=\"H5414\"* yourselves." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* will|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Live|strong=\"H3427\"* and|strong=\"H6440\"* trade|strong=\"H5503\"* in|strong=\"H3427\"* it|strong=\"H6440\"*, and|strong=\"H6440\"* get possessions in|strong=\"H3427\"* it|strong=\"H6440\"*.”" + }, + { + "verseNum": 11, + "text": "Shechem|strong=\"H7927\"* said to|strong=\"H5414\"* her|strong=\"H5414\"* father and|strong=\"H5869\"* to|strong=\"H5414\"* her|strong=\"H5414\"* brothers, “Let|strong=\"H5414\"* me|strong=\"H5414\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* whatever you|strong=\"H5414\"* will|strong=\"H5869\"* tell me|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5869\"* give|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Ask|strong=\"H7235\"* me|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H3966\"* amount|strong=\"H7235\"* for|strong=\"H5921\"* a|strong=\"H3068\"* dowry|strong=\"H4119\"*, and|strong=\"H3966\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* whatever you|strong=\"H5414\"* ask|strong=\"H7235\"* of|strong=\"H5921\"* me|strong=\"H5414\"*, but|strong=\"H5921\"* give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5921\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* as|strong=\"H5414\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H1696\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"* answered|strong=\"H6030\"* Shechem|strong=\"H7927\"* and|strong=\"H1121\"* Hamor|strong=\"H2544\"* his|strong=\"H2930\"* father|strong=\"H1121\"* with|strong=\"H1696\"* deceit|strong=\"H4820\"* when|strong=\"H1696\"* they|strong=\"H4820\"* spoke|strong=\"H1696\"*, because he|strong=\"H1696\"* had|strong=\"H3290\"* defiled|strong=\"H2930\"* Dinah|strong=\"H1783\"* their|strong=\"H3290\"* sister," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H3201\"* them|strong=\"H5414\"*, “We|strong=\"H3588\"* can|strong=\"H3201\"*’t do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, to|strong=\"H3201\"* give|strong=\"H5414\"* our|strong=\"H5414\"* sister to|strong=\"H3201\"* one|strong=\"H2088\"* who|strong=\"H1931\"* is|strong=\"H2088\"* uncircumcised|strong=\"H6190\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H2088\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H3201\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H3605\"* on|strong=\"H1961\"* this|strong=\"H2063\"* condition will|strong=\"H1961\"* we|strong=\"H3068\"* consent to|strong=\"H1961\"* you|strong=\"H3605\"*. If|strong=\"H1961\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* we|strong=\"H3068\"* are|strong=\"H1961\"*, that|strong=\"H3605\"* every|strong=\"H3605\"* male|strong=\"H2145\"* of|strong=\"H3605\"* you|strong=\"H3605\"* be|strong=\"H1961\"* circumcised|strong=\"H4135\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* will|strong=\"H1961\"* we|strong=\"H3068\"* give|strong=\"H5414\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H1961\"* you|strong=\"H5414\"*; and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* take|strong=\"H3947\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* we|strong=\"H3068\"* will|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H1961\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if you|strong=\"H3947\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* us|strong=\"H8085\"* and|strong=\"H1980\"* be|strong=\"H3808\"* circumcised|strong=\"H4135\"*, then|strong=\"H1980\"* we|strong=\"H3068\"* will|strong=\"H3808\"* take|strong=\"H3947\"* our|strong=\"H3947\"* sister,+ 34:17 Hebrew has, literally, “daughter”* and|strong=\"H1980\"* we|strong=\"H3068\"* will|strong=\"H3808\"* be|strong=\"H3808\"* gone|strong=\"H1980\"*.”" + }, + { + "verseNum": 18, + "text": "Their words|strong=\"H1697\"* pleased|strong=\"H3190\"* Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, Hamor|strong=\"H2544\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* didn’t wait to|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H6213\"* thing|strong=\"H1697\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3588\"* delight|strong=\"H2654\"* in|strong=\"H6213\"* Jacob|strong=\"H3290\"*’s daughter|strong=\"H1323\"*, and|strong=\"H1004\"* he|strong=\"H1931\"* was|strong=\"H1931\"* honored|strong=\"H3513\"* above all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 20, + "text": "Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, his|strong=\"H7927\"* son|strong=\"H1121\"*, came to|strong=\"H1696\"* the|strong=\"H1696\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* their city|strong=\"H5892\"*, and|strong=\"H1121\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* the|strong=\"H1696\"* men|strong=\"H1121\"* of|strong=\"H1121\"* their city|strong=\"H5892\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 21, + "text": "“These|strong=\"H1992\"* men|strong=\"H1992\"* are|strong=\"H1992\"* peaceful|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H5414\"*. Therefore|strong=\"H3947\"* let|strong=\"H5414\"* them|strong=\"H5414\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* and|strong=\"H3027\"* trade|strong=\"H5503\"* in|strong=\"H3427\"* it|strong=\"H5414\"*. For|strong=\"H6440\"* behold|strong=\"H2009\"*, the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3027\"* large|strong=\"H7342\"* enough|strong=\"H3027\"* for|strong=\"H6440\"* them|strong=\"H5414\"*. Let|strong=\"H5414\"*’s take|strong=\"H3947\"* their|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H6440\"* wives, and|strong=\"H3027\"* let|strong=\"H5414\"*’s give|strong=\"H5414\"* them|strong=\"H5414\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Only|strong=\"H3605\"* on|strong=\"H3427\"* this|strong=\"H2063\"* condition will|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H2145\"* consent to|strong=\"H1961\"* us|strong=\"H1961\"* to|strong=\"H1961\"* live|strong=\"H3427\"* with|strong=\"H3427\"* us|strong=\"H1961\"*, to|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H3605\"* people|strong=\"H5971\"*, if|strong=\"H1961\"* every|strong=\"H3605\"* male|strong=\"H2145\"* among|strong=\"H3427\"* us|strong=\"H1961\"* is|strong=\"H3605\"* circumcised|strong=\"H4135\"*, as|strong=\"H1961\"* they|strong=\"H1992\"* are|strong=\"H1992\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 23, + "text": "Won’t their|strong=\"H3605\"* livestock|strong=\"H4735\"* and|strong=\"H3427\"* their|strong=\"H3605\"* possessions|strong=\"H4735\"* and|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* animals be|strong=\"H3808\"* ours? Only|strong=\"H3605\"* let|strong=\"H3808\"*’s give our|strong=\"H3605\"* consent to|strong=\"H3427\"* them|strong=\"H1992\"*, and|strong=\"H3427\"* they|strong=\"H1992\"* will|strong=\"H3808\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* us.”" + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"* listened|strong=\"H8085\"* to|strong=\"H3318\"* Hamor|strong=\"H2544\"*, and|strong=\"H1121\"* to|strong=\"H3318\"* Shechem|strong=\"H7927\"* his|strong=\"H3605\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* every|strong=\"H3605\"* male|strong=\"H2145\"* was|strong=\"H5892\"* circumcised|strong=\"H4135\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* his|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* they|strong=\"H3117\"* were|strong=\"H1961\"* sore|strong=\"H3510\"*, two|strong=\"H8147\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"*, Simeon|strong=\"H8095\"* and|strong=\"H1121\"* Levi|strong=\"H3878\"*, Dinah|strong=\"H1783\"*’s brothers|strong=\"H1121\"*, each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* sword|strong=\"H2719\"*, came|strong=\"H1961\"* upon|strong=\"H5921\"* the|strong=\"H3605\"* unsuspecting city|strong=\"H5892\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H6310\"* killed|strong=\"H2026\"* Hamor|strong=\"H2544\"* and|strong=\"H1121\"* Shechem|strong=\"H7927\"*, his|strong=\"H3947\"* son|strong=\"H1121\"*, with|strong=\"H1004\"* the|strong=\"H3947\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* Dinah|strong=\"H1783\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* away|strong=\"H3947\"*." + }, + { + "verseNum": 27, + "text": "Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"* came on|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H2491\"*, and|strong=\"H1121\"* plundered the|strong=\"H5921\"* city|strong=\"H5892\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* had|strong=\"H3290\"* defiled|strong=\"H2930\"* their|strong=\"H5921\"* sister." + }, + { + "verseNum": 28, + "text": "They|strong=\"H5892\"* took|strong=\"H3947\"* their|strong=\"H3947\"* flocks|strong=\"H6629\"*, their|strong=\"H3947\"* herds|strong=\"H1241\"*, their|strong=\"H3947\"* donkeys|strong=\"H2543\"*, that|strong=\"H5892\"* which|strong=\"H5892\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, that|strong=\"H5892\"* which|strong=\"H5892\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 29, + "text": "and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wealth|strong=\"H2428\"*. They|strong=\"H3605\"* took|strong=\"H7617\"* captive|strong=\"H7617\"* all|strong=\"H3605\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* and|strong=\"H1004\"* their|strong=\"H3605\"* wives, and|strong=\"H1004\"* took|strong=\"H7617\"* as|strong=\"H1004\"* plunder everything|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H5921\"* Simeon|strong=\"H8095\"* and|strong=\"H1004\"* Levi|strong=\"H3878\"*, “You|strong=\"H5921\"* have|strong=\"H1004\"* troubled|strong=\"H5916\"* me|strong=\"H5921\"*, to|strong=\"H5921\"* make|strong=\"H3427\"* me|strong=\"H5921\"* odious to|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* the|strong=\"H5921\"* land, among|strong=\"H5921\"* the|strong=\"H5921\"* Canaanites|strong=\"H3669\"* and|strong=\"H1004\"* the|strong=\"H5921\"* Perizzites|strong=\"H6522\"*. I|strong=\"H5921\"* am few|strong=\"H4557\"* in|strong=\"H3427\"* number|strong=\"H4557\"*. They|strong=\"H5921\"* will|strong=\"H1004\"* gather themselves|strong=\"H5921\"* together|strong=\"H5921\"* against|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H1004\"* strike|strong=\"H5221\"* me|strong=\"H5921\"*, and|strong=\"H1004\"* I|strong=\"H5921\"* will|strong=\"H1004\"* be|strong=\"H1004\"* destroyed|strong=\"H8045\"*, I|strong=\"H5921\"* and|strong=\"H1004\"* my|strong=\"H5921\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H6213\"* said, “Should|strong=\"H6213\"* he|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* our|strong=\"H6213\"* sister as|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*?”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"H1008\"* said to|strong=\"H5927\"* Jacob|strong=\"H3290\"*, “Arise|strong=\"H6965\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Bethel|strong=\"H1008\"*, and|strong=\"H6965\"* live|strong=\"H3427\"* there|strong=\"H8033\"*. Make|strong=\"H6213\"* there|strong=\"H8033\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H5927\"* God|strong=\"H1008\"*, who|strong=\"H3427\"* appeared|strong=\"H7200\"* to|strong=\"H5927\"* you|strong=\"H6440\"* when|strong=\"H7200\"* you|strong=\"H6440\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3427\"* Esau|strong=\"H6215\"* your|strong=\"H6440\"* brother.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3605\"* Jacob|strong=\"H3290\"* said to|strong=\"H1004\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3290\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, “Put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods that|strong=\"H3605\"* are|strong=\"H1004\"* among|strong=\"H8432\"* you|strong=\"H3605\"*, purify|strong=\"H2891\"* yourselves|strong=\"H8432\"*, and|strong=\"H1004\"* change|strong=\"H2498\"* your|strong=\"H3605\"* garments|strong=\"H8071\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H1980\"*’s arise|strong=\"H6965\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* up|strong=\"H5927\"* to|strong=\"H1980\"* Bethel|strong=\"H1008\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* make|strong=\"H6213\"* there|strong=\"H8033\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H1980\"* God|strong=\"H1008\"*, who|strong=\"H6213\"* answered|strong=\"H6030\"* me|strong=\"H5978\"* in|strong=\"H1980\"* the|strong=\"H6213\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H6965\"* distress|strong=\"H6869\"*, and|strong=\"H1980\"* was|strong=\"H1961\"* with|strong=\"H1980\"* me|strong=\"H5978\"* on|strong=\"H3117\"* the|strong=\"H6213\"* way|strong=\"H1870\"* which|strong=\"H8033\"* I|strong=\"H3117\"* went|strong=\"H1980\"*.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3605\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"* all|strong=\"H3605\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods which|strong=\"H5141\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* rings|strong=\"H5141\"* which|strong=\"H5141\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3605\"* ears; and|strong=\"H3027\"* Jacob|strong=\"H3290\"* hid|strong=\"H2934\"* them|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H3605\"* oak which|strong=\"H5141\"* was|strong=\"H3290\"* by|strong=\"H3027\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* terror|strong=\"H2847\"* of|strong=\"H1121\"* God|strong=\"H3808\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* that|strong=\"H5892\"* were|strong=\"H1961\"* around|strong=\"H5439\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* they|strong=\"H3808\"* didn’t pursue|strong=\"H7291\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1931\"* Jacob|strong=\"H3290\"* came|strong=\"H5971\"* to|strong=\"H5971\"* Luz|strong=\"H3870\"* (that|strong=\"H5971\"* is|strong=\"H1931\"*, Bethel|strong=\"H1008\"*), which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H5971\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Canaan|strong=\"H3667\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H6440\"* called|strong=\"H7121\"* the|strong=\"H6440\"* place|strong=\"H4725\"* El Beth El; because|strong=\"H3588\"* there|strong=\"H8033\"* God|strong=\"H1008\"* was|strong=\"H4725\"* revealed|strong=\"H1540\"* to|strong=\"H6440\"* him|strong=\"H6440\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H7121\"* brother." + }, + { + "verseNum": 8, + "text": "Deborah|strong=\"H1683\"*, Rebekah|strong=\"H7259\"*’s nurse|strong=\"H3243\"*, died|strong=\"H4191\"*, and|strong=\"H1008\"* she|strong=\"H7121\"* was|strong=\"H8034\"* buried|strong=\"H6912\"* below|strong=\"H8478\"* Bethel|strong=\"H1008\"* under|strong=\"H8478\"* the|strong=\"H7121\"* oak; and|strong=\"H1008\"* its|strong=\"H8478\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Allon Bacuth." + }, + { + "verseNum": 9, + "text": "God appeared|strong=\"H7200\"* to|strong=\"H7200\"* Jacob|strong=\"H3290\"* again|strong=\"H5750\"*, when|strong=\"H7200\"* he|strong=\"H3290\"* came from|strong=\"H7200\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, and|strong=\"H7200\"* blessed|strong=\"H1288\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "God|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Your|strong=\"H3588\"* name|strong=\"H8034\"* is|strong=\"H8034\"* Jacob|strong=\"H3290\"*. Your|strong=\"H3588\"* name|strong=\"H8034\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* be|strong=\"H1961\"* Jacob|strong=\"H3290\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3588\"* your|strong=\"H3588\"* name|strong=\"H8034\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Israel|strong=\"H3478\"*.” He|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "God said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “I|strong=\"H4480\"* am|strong=\"H1961\"* God Almighty|strong=\"H7706\"*. Be|strong=\"H1961\"* fruitful|strong=\"H6509\"* and|strong=\"H4428\"* multiply|strong=\"H7235\"*. A|strong=\"H3068\"* nation|strong=\"H1471\"* and|strong=\"H4428\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H4428\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* be|strong=\"H1961\"* from|strong=\"H4480\"* you|strong=\"H4480\"*, and|strong=\"H4428\"* kings|strong=\"H4428\"* will|strong=\"H1961\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* your|strong=\"H7235\"* body." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* land which I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Abraham and|strong=\"H3327\"* Isaac|strong=\"H3327\"*, I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3327\"* to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land.”" + }, + { + "verseNum": 13, + "text": "God went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Jacob|strong=\"H3290\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*, a|strong=\"H3068\"* pillar|strong=\"H4676\"* of|strong=\"H5921\"* stone. He|strong=\"H5921\"* poured|strong=\"H3332\"* out|strong=\"H5258\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H8081\"* poured|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* place|strong=\"H4725\"* where|strong=\"H8033\"* God|strong=\"H1008\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H7121\"* “Bethel|strong=\"H1008\"*”." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3205\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Bethel|strong=\"H1008\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* still|strong=\"H5750\"* some|strong=\"H3530\"* distance|strong=\"H3530\"* to|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Ephrath, and|strong=\"H1008\"* Rachel|strong=\"H7354\"* travailed|strong=\"H3205\"*. She had|strong=\"H1961\"* hard|strong=\"H7185\"* labor|strong=\"H3205\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1961\"* in|strong=\"H1121\"* hard|strong=\"H7185\"* labor|strong=\"H3205\"*, the|strong=\"H3588\"* midwife|strong=\"H3205\"* said to|strong=\"H1961\"* her|strong=\"H3205\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* now|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* have|strong=\"H1961\"* another|strong=\"H2088\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 18, + "text": "As|strong=\"H1961\"* her|strong=\"H7121\"* soul|strong=\"H5315\"* was|strong=\"H8034\"* departing|strong=\"H3318\"* (for|strong=\"H3588\"* she|strong=\"H3588\"* died|strong=\"H4191\"*), she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Benoni,+ 35:18 “Benoni” means “son of my trouble”.* but|strong=\"H3588\"* his|strong=\"H7121\"* father named|strong=\"H7121\"* him|strong=\"H7121\"* Benjamin|strong=\"H1144\"*.+ 35:18 “Benjamin” means “son of my right hand”.*" + }, + { + "verseNum": 19, + "text": "Rachel|strong=\"H7354\"* died|strong=\"H4191\"*, and|strong=\"H1870\"* was|strong=\"H1931\"* buried|strong=\"H6912\"* on|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H4191\"* Ephrath (also|strong=\"H1931\"* called Bethlehem|strong=\"H1035\"*)." + }, + { + "verseNum": 20, + "text": "Jacob|strong=\"H3290\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* on|strong=\"H5921\"* her|strong=\"H5921\"* grave|strong=\"H6900\"*. The|strong=\"H5921\"* same|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* Pillar|strong=\"H4676\"* of|strong=\"H3117\"* Rachel|strong=\"H7354\"*’s grave|strong=\"H6900\"* to|strong=\"H5704\"* this|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H3478\"* spread|strong=\"H5186\"* his|strong=\"H5186\"* tent beyond|strong=\"H1973\"* the|strong=\"H5186\"* tower|strong=\"H4029\"* of|strong=\"H4029\"* Eder|strong=\"H4029\"*." + }, + { + "verseNum": 22, + "text": "While|strong=\"H1961\"* Israel|strong=\"H3478\"* lived|strong=\"H7931\"* in|strong=\"H3478\"* that|strong=\"H8085\"* land, Reuben|strong=\"H7205\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lay|strong=\"H7901\"* with|strong=\"H7901\"* Bilhah|strong=\"H1090\"*, his|strong=\"H8085\"* father|strong=\"H1121\"*’s concubine|strong=\"H6370\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Leah|strong=\"H3812\"*: Reuben|strong=\"H7205\"* (Jacob|strong=\"H3290\"*’s firstborn|strong=\"H1060\"*), Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, and|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*: Joseph|strong=\"H3130\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"* (Rachel|strong=\"H7354\"*’s servant|strong=\"H8198\"*): Dan|strong=\"H1835\"* and|strong=\"H1121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zilpah|strong=\"H2153\"* (Leah|strong=\"H3812\"*’s servant|strong=\"H8198\"*): Gad|strong=\"H1410\"* and|strong=\"H1121\"* Asher. These are|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* in|strong=\"H1121\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*." + }, + { + "verseNum": 27, + "text": "Jacob|strong=\"H3290\"* came to|strong=\"H8033\"* Isaac|strong=\"H3327\"* his|strong=\"H3327\"* father, to|strong=\"H8033\"* Mamre|strong=\"H4471\"*, to|strong=\"H8033\"* Kiriath Arba (which|strong=\"H1931\"* is|strong=\"H1931\"* Hebron|strong=\"H2275\"*), where|strong=\"H8033\"* Abraham and|strong=\"H8033\"* Isaac|strong=\"H3327\"* lived|strong=\"H1481\"* as|strong=\"H1481\"* foreigners|strong=\"H1481\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Isaac|strong=\"H3327\"* were|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 29, + "text": "Isaac|strong=\"H3327\"* gave up|strong=\"H1121\"* the|strong=\"H3117\"* spirit and|strong=\"H1121\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* was|strong=\"H3117\"* gathered to|strong=\"H4191\"* his|strong=\"H3327\"* people|strong=\"H5971\"*, old|strong=\"H1121\"* and|strong=\"H1121\"* full|strong=\"H3117\"* of|strong=\"H1121\"* days|strong=\"H3117\"*. Esau|strong=\"H6215\"* and|strong=\"H1121\"* Jacob|strong=\"H3290\"*, his|strong=\"H3327\"* sons|strong=\"H1121\"*, buried|strong=\"H6912\"* him|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Now this|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1931\"* history|strong=\"H8435\"* of|strong=\"H8435\"* the|strong=\"H1931\"* generations|strong=\"H8435\"* of|strong=\"H8435\"* Esau|strong=\"H6215\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Edom)." + }, + { + "verseNum": 2, + "text": "Esau|strong=\"H6215\"* took|strong=\"H3947\"* his|strong=\"H3947\"* wives from|strong=\"H3947\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Canaan|strong=\"H3667\"*: Adah|strong=\"H5711\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Elon, the|strong=\"H3947\"* Hittite|strong=\"H2850\"*; and|strong=\"H1323\"* Oholibamah the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Anah|strong=\"H6034\"*, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zibeon|strong=\"H6649\"*, the|strong=\"H3947\"* Hivite|strong=\"H2340\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1323\"* Basemath|strong=\"H1315\"*, Ishmael|strong=\"H3458\"*’s daughter|strong=\"H1323\"*, sister of|strong=\"H1323\"* Nebaioth|strong=\"H5032\"*." + }, + { + "verseNum": 4, + "text": "Adah|strong=\"H5711\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Esau|strong=\"H6215\"* Eliphaz. Basemath|strong=\"H1315\"* bore|strong=\"H3205\"* Reuel|strong=\"H7467\"*." + }, + { + "verseNum": 5, + "text": "Oholibamah bore|strong=\"H3205\"* Jeush|strong=\"H3274\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* in|strong=\"H1121\"* the|strong=\"H3205\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Esau|strong=\"H6215\"* took|strong=\"H3947\"* his|strong=\"H3605\"* wives, his|strong=\"H3605\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* members|strong=\"H1004\"* of|strong=\"H1121\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, with|strong=\"H1004\"* his|strong=\"H3605\"* livestock|strong=\"H4735\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* animals, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H4735\"*, which|strong=\"H1004\"* he|strong=\"H3605\"* had|strong=\"H3290\"* gathered|strong=\"H7408\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* into|strong=\"H3212\"* a|strong=\"H3068\"* land|strong=\"H6440\"* away|strong=\"H3947\"* from|strong=\"H6440\"* his|strong=\"H3605\"* brother Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* their|strong=\"H5375\"* substance|strong=\"H7399\"* was|strong=\"H1961\"* too|strong=\"H3162\"* great|strong=\"H7227\"* for|strong=\"H3588\"* them|strong=\"H6440\"* to|strong=\"H3201\"* dwell|strong=\"H3427\"* together|strong=\"H3162\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* their|strong=\"H5375\"* travels couldn’t bear|strong=\"H5375\"* them|strong=\"H6440\"* because|strong=\"H3588\"* of|strong=\"H3427\"* their|strong=\"H5375\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 8, + "text": "Esau|strong=\"H6215\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3427\"* Seir|strong=\"H8165\"*. Esau|strong=\"H6215\"* is|strong=\"H1931\"* Edom." + }, + { + "verseNum": 9, + "text": "This is|strong=\"H6215\"* the|strong=\"H2022\"* history|strong=\"H8435\"* of|strong=\"H2022\"* the|strong=\"H2022\"* generations|strong=\"H8435\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"* the|strong=\"H2022\"* father of|strong=\"H2022\"* the|strong=\"H2022\"* Edomites|strong=\"H8165\"* in|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Seir|strong=\"H8165\"*:" + }, + { + "verseNum": 10, + "text": "these are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*’s sons|strong=\"H1121\"*: Eliphaz, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*, the|strong=\"H8034\"* wife of|strong=\"H1121\"* Esau|strong=\"H6215\"*; and|strong=\"H1121\"* Reuel|strong=\"H7467\"*, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, the|strong=\"H8034\"* wife of|strong=\"H1121\"* Esau|strong=\"H6215\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz were|strong=\"H1961\"* Teman|strong=\"H8487\"*, Omar, Zepho|strong=\"H6825\"*, and|strong=\"H1121\"* Gatam|strong=\"H1609\"*, and|strong=\"H1121\"* Kenaz|strong=\"H7073\"*." + }, + { + "verseNum": 12, + "text": "Timna|strong=\"H8555\"* was|strong=\"H1961\"* concubine|strong=\"H6370\"* to|strong=\"H1961\"* Eliphaz, Esau|strong=\"H6215\"*’s son|strong=\"H1121\"*; and|strong=\"H1121\"* she bore|strong=\"H3205\"* to|strong=\"H1961\"* Eliphaz Amalek|strong=\"H6002\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* descendants|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*: Nahath|strong=\"H5184\"*, Zerah|strong=\"H2226\"*, Shammah|strong=\"H8048\"*, and|strong=\"H1121\"* Mizzah|strong=\"H4199\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* descendants|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 14, + "text": "These were|strong=\"H1961\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Oholibamah, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*, Esau|strong=\"H6215\"*’s wife: she bore|strong=\"H3205\"* to|strong=\"H1961\"* Esau|strong=\"H6215\"* Jeush|strong=\"H3274\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*." + }, + { + "verseNum": 15, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: chief Teman|strong=\"H8487\"*, chief Omar, chief Zepho|strong=\"H6825\"*, chief Kenaz|strong=\"H7073\"*," + }, + { + "verseNum": 16, + "text": "chief Korah|strong=\"H7141\"*, chief Gatam|strong=\"H1609\"*, chief Amalek|strong=\"H6002\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* Eliphaz in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Adah|strong=\"H5711\"*." + }, + { + "verseNum": 17, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*, Esau|strong=\"H6215\"*’s son|strong=\"H1121\"*: chief Nahath|strong=\"H5184\"*, chief Zerah|strong=\"H2226\"*, chief Shammah|strong=\"H8048\"*, chief Mizzah|strong=\"H4199\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* Reuel|strong=\"H7467\"* in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Basemath|strong=\"H1315\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Oholibamah, Esau|strong=\"H6215\"*’s wife: chief Jeush|strong=\"H3266\"*, chief Jalam|strong=\"H3281\"*, chief Korah|strong=\"H7141\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came|strong=\"H1323\"* of|strong=\"H1121\"* Oholibamah the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*, Esau|strong=\"H6215\"*’s wife." + }, + { + "verseNum": 19, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* (that|strong=\"H1931\"* is|strong=\"H1931\"*, Edom), and|strong=\"H1121\"* these|strong=\"H1931\"* are|strong=\"H1121\"* their chiefs." + }, + { + "verseNum": 20, + "text": "These are|strong=\"H1121\"* the|strong=\"H3427\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"* the|strong=\"H3427\"* Horite|strong=\"H2752\"*, the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3427\"* land: Lotan|strong=\"H3877\"*, Shobal|strong=\"H7732\"*, Zibeon|strong=\"H6649\"*, Anah|strong=\"H6034\"*," + }, + { + "verseNum": 21, + "text": "Dishon|strong=\"H1787\"*, Ezer, and|strong=\"H1121\"* Dishan|strong=\"H1789\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* chiefs who|strong=\"H1121\"* came of|strong=\"H1121\"* the|strong=\"H1121\"* Horites|strong=\"H2752\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"* in|strong=\"H1121\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Edom." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lotan|strong=\"H3877\"* were|strong=\"H1961\"* Hori|strong=\"H2753\"* and|strong=\"H1121\"* Heman. Lotan|strong=\"H3877\"*’s sister was|strong=\"H1961\"* Timna|strong=\"H8555\"*." + }, + { + "verseNum": 23, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"*: Alvan|strong=\"H5935\"*, Manahath|strong=\"H4506\"*, Ebal|strong=\"H5858\"*, Shepho|strong=\"H8195\"*, and|strong=\"H1121\"* Onam." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* the|strong=\"H4672\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*: Aiah and|strong=\"H1121\"* Anah|strong=\"H6034\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* Anah|strong=\"H6034\"* who|strong=\"H1931\"* found|strong=\"H4672\"* the|strong=\"H4672\"* hot|strong=\"H3222\"* springs|strong=\"H3222\"* in|strong=\"H4672\"* the|strong=\"H4672\"* wilderness|strong=\"H4057\"*, as|strong=\"H1121\"* he|strong=\"H1931\"* fed|strong=\"H7462\"* the|strong=\"H4672\"* donkeys|strong=\"H2543\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"* his|strong=\"H4672\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*: Dishon|strong=\"H1787\"* and|strong=\"H1121\"* Oholibamah, the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*." + }, + { + "verseNum": 26, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dishon: Hemdan|strong=\"H2533\"*, Eshban, Ithran|strong=\"H3506\"*, and|strong=\"H1121\"* Cheran|strong=\"H3763\"*." + }, + { + "verseNum": 27, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ezer: Bilhan|strong=\"H1092\"*, Zaavan|strong=\"H2190\"*, and|strong=\"H1121\"* Akan|strong=\"H6130\"*." + }, + { + "verseNum": 28, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dishan|strong=\"H1789\"*: Uz|strong=\"H5780\"* and|strong=\"H1121\"* Aran." + }, + { + "verseNum": 29, + "text": "These are the|strong=\"H7732\"* chiefs who came of the|strong=\"H7732\"* Horites|strong=\"H2752\"*: chief Lotan|strong=\"H3877\"*, chief Shobal|strong=\"H7732\"*, chief Zibeon|strong=\"H6649\"*, chief Anah|strong=\"H6034\"*," + }, + { + "verseNum": 30, + "text": "chief Dishon|strong=\"H1787\"*, chief Ezer, and|strong=\"H2753\"* chief Dishan|strong=\"H1789\"*. These are the|strong=\"H8165\"* chiefs who came of the|strong=\"H8165\"* Horites, according to|strong=\"H8165\"* their chiefs in the|strong=\"H8165\"* land of Seir|strong=\"H8165\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Edom, before|strong=\"H6440\"* any|strong=\"H6440\"* king|strong=\"H4428\"* reigned|strong=\"H4427\"* over|strong=\"H4427\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "Bela|strong=\"H1106\"*, the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, reigned|strong=\"H4427\"* in|strong=\"H4427\"* Edom. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H4427\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Dinhabah|strong=\"H1838\"*." + }, + { + "verseNum": 33, + "text": "Bela|strong=\"H1106\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*, the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* of|strong=\"H1121\"* Bozrah|strong=\"H1224\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 34, + "text": "Jobab|strong=\"H3103\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Husham|strong=\"H2367\"* of|strong=\"H8478\"* the|strong=\"H8478\"* land of|strong=\"H8478\"* the|strong=\"H8478\"* Temanites|strong=\"H8489\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 35, + "text": "Husham|strong=\"H2367\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadad|strong=\"H1908\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bedad, who|strong=\"H1121\"* struck|strong=\"H5221\"* Midian|strong=\"H4080\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*. The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Avith|strong=\"H5762\"*." + }, + { + "verseNum": 36, + "text": "Hadad|strong=\"H1908\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Samlah|strong=\"H8072\"* of|strong=\"H8478\"* Masrekah|strong=\"H4957\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 37, + "text": "Samlah|strong=\"H8072\"* died|strong=\"H4191\"*, and|strong=\"H7586\"* Shaul|strong=\"H7586\"* of|strong=\"H8478\"* Rehoboth|strong=\"H7344\"* by|strong=\"H4191\"* the|strong=\"H8478\"* river|strong=\"H5104\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 38, + "text": "Shaul|strong=\"H7586\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 39, + "text": "Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadar|strong=\"H1924\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*. The|strong=\"H8478\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H8478\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Pau|strong=\"H6464\"*. His|strong=\"H8478\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Mehetabel|strong=\"H4105\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Matred|strong=\"H4308\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Mezahab|strong=\"H4314\"*." + }, + { + "verseNum": 40, + "text": "These are|strong=\"H8034\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* chiefs who|strong=\"H6215\"* came from|strong=\"H8034\"* Esau|strong=\"H6215\"*, according to|strong=\"H4725\"* their families|strong=\"H4940\"*, after|strong=\"H8034\"* their places|strong=\"H4725\"*, and|strong=\"H4725\"* by|strong=\"H8034\"* their names|strong=\"H8034\"*: chief Timna|strong=\"H8555\"*, chief Alvah|strong=\"H5933\"*, chief Jetheth|strong=\"H3509\"*," + }, + { + "verseNum": 41, + "text": "chief Oholibamah, chief Elah, chief Pinon|strong=\"H6373\"*," + }, + { + "verseNum": 42, + "text": "chief Kenaz|strong=\"H7073\"*, chief Teman|strong=\"H8487\"*, chief Mibzar|strong=\"H4014\"*," + }, + { + "verseNum": 43, + "text": "chief Magdiel|strong=\"H4025\"*, and|strong=\"H6215\"* chief Iram|strong=\"H5902\"*. These|strong=\"H1931\"* are the|strong=\"H1931\"* chiefs of|strong=\"H4186\"* Edom, according to their habitations|strong=\"H4186\"* in|strong=\"H4186\"* the|strong=\"H1931\"* land of|strong=\"H4186\"* their possession. This|strong=\"H1931\"* is|strong=\"H1931\"* Esau|strong=\"H6215\"*, the|strong=\"H1931\"* father of|strong=\"H4186\"* the|strong=\"H1931\"* Edomites." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* his|strong=\"H3290\"* father’s travels, in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 2, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1961\"* history|strong=\"H8435\"* of|strong=\"H1121\"* the|strong=\"H1961\"* generations|strong=\"H8435\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*. Joseph|strong=\"H3130\"*, being|strong=\"H1961\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, was|strong=\"H1961\"* feeding|strong=\"H7462\"* the|strong=\"H1961\"* flock|strong=\"H6629\"* with|strong=\"H1961\"* his|strong=\"H1961\"* brothers|strong=\"H1121\"*. He|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* boy|strong=\"H5288\"* with|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"* and|strong=\"H1121\"* Zilpah|strong=\"H2153\"*, his|strong=\"H1961\"* father|strong=\"H1121\"*’s wives. Joseph|strong=\"H3130\"* brought|strong=\"H1961\"* an|strong=\"H1961\"* evil|strong=\"H7451\"* report|strong=\"H1681\"* of|strong=\"H1121\"* them|strong=\"H1961\"* to|strong=\"H1961\"* their|strong=\"H1961\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3588\"* Israel|strong=\"H3478\"* loved Joseph|strong=\"H3130\"* more|strong=\"H3588\"* than|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* old|strong=\"H1121\"* age|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* made|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* tunic|strong=\"H3801\"* of|strong=\"H1121\"* many colors." + }, + { + "verseNum": 4, + "text": "His|strong=\"H3605\"* brothers saw|strong=\"H7200\"* that|strong=\"H3588\"* their|strong=\"H3605\"* father loved him|strong=\"H7200\"* more|strong=\"H3808\"* than|strong=\"H3808\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H7200\"* they|strong=\"H3588\"* hated|strong=\"H8130\"* him|strong=\"H7200\"*, and|strong=\"H7200\"* couldn’t speak|strong=\"H1696\"* peaceably|strong=\"H7965\"* to|strong=\"H1696\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 5, + "text": "Joseph|strong=\"H3130\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H3254\"* he|strong=\"H3130\"* told|strong=\"H5046\"* it|strong=\"H3254\"* to|strong=\"H5046\"* his|strong=\"H5046\"* brothers, and|strong=\"H3254\"* they hated|strong=\"H8130\"* him|strong=\"H5046\"* all|strong=\"H8130\"* the|strong=\"H5046\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H2088\"* said|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8085\"*, “Please|strong=\"H4994\"* hear|strong=\"H8085\"* this|strong=\"H2088\"* dream|strong=\"H2492\"* which|strong=\"H2088\"* I|strong=\"H2088\"* have|strong=\"H2088\"* dreamed|strong=\"H2492\"*:" + }, + { + "verseNum": 7, + "text": "for|strong=\"H7704\"* behold|strong=\"H2009\"*, we|strong=\"H3068\"* were|strong=\"H1571\"* binding sheaves in|strong=\"H8432\"* the|strong=\"H8432\"* field|strong=\"H7704\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, my|strong=\"H6965\"* sheaf arose|strong=\"H6965\"* and|strong=\"H6965\"* also|strong=\"H1571\"* stood|strong=\"H5324\"* upright|strong=\"H5324\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, your|strong=\"H6965\"* sheaves came around|strong=\"H5437\"*, and|strong=\"H6965\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H6965\"* my|strong=\"H6965\"* sheaf.”" + }, + { + "verseNum": 8, + "text": "His|strong=\"H5921\"* brothers asked|strong=\"H1697\"* him|strong=\"H5921\"*, “Will|strong=\"H1697\"* you|strong=\"H5921\"* indeed|strong=\"H4910\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*? Will|strong=\"H1697\"* you|strong=\"H5921\"* indeed|strong=\"H4910\"* have|strong=\"H1697\"* dominion|strong=\"H4910\"* over|strong=\"H5921\"* us|strong=\"H5921\"*?” They|strong=\"H5921\"* hated|strong=\"H8130\"* him|strong=\"H5921\"* all|strong=\"H1697\"* the|strong=\"H5921\"* more|strong=\"H3254\"* for|strong=\"H5921\"* his|strong=\"H5921\"* dreams|strong=\"H2472\"* and|strong=\"H1697\"* for|strong=\"H5921\"* his|strong=\"H5921\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H2009\"* dreamed|strong=\"H2492\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* dream|strong=\"H2472\"*, and|strong=\"H5750\"* told|strong=\"H5608\"* it|strong=\"H7812\"* to|strong=\"H2472\"* his|strong=\"H5608\"* brothers, and|strong=\"H5750\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H2009\"* dreamed|strong=\"H2492\"* yet|strong=\"H5750\"* another|strong=\"H5750\"* dream|strong=\"H2472\"*: and|strong=\"H5750\"* behold|strong=\"H2009\"*, the|strong=\"H7812\"* sun|strong=\"H8121\"* and|strong=\"H5750\"* the|strong=\"H7812\"* moon|strong=\"H3394\"* and|strong=\"H5750\"* eleven|strong=\"H6240\"* stars|strong=\"H3556\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H2472\"* me|strong=\"H5608\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H2088\"* told|strong=\"H5608\"* it|strong=\"H2088\"* to|strong=\"H2472\"* his|strong=\"H5608\"* father and|strong=\"H2088\"* to|strong=\"H2472\"* his|strong=\"H5608\"* brothers. His|strong=\"H5608\"* father rebuked|strong=\"H1605\"* him|strong=\"H2088\"*, and|strong=\"H2088\"* said to|strong=\"H2472\"* him|strong=\"H2088\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* dream|strong=\"H2472\"* that|strong=\"H2088\"* you|strong=\"H4100\"* have|strong=\"H2088\"* dreamed|strong=\"H2492\"*? Will|strong=\"H4100\"* I|strong=\"H2088\"* and|strong=\"H2088\"* your|strong=\"H2088\"* mother and|strong=\"H2088\"* your|strong=\"H2088\"* brothers indeed come to|strong=\"H2472\"* bow|strong=\"H7812\"* ourselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H2472\"* the|strong=\"H7812\"* earth before you|strong=\"H4100\"*?”" + }, + { + "verseNum": 11, + "text": "His|strong=\"H8104\"* brothers envied|strong=\"H7065\"* him|strong=\"H7065\"*, but his|strong=\"H8104\"* father kept|strong=\"H8104\"* this|strong=\"H1697\"* saying|strong=\"H1697\"* in|strong=\"H1697\"* mind." + }, + { + "verseNum": 12, + "text": "His|strong=\"H7462\"* brothers went|strong=\"H3212\"* to|strong=\"H3212\"* feed|strong=\"H7462\"* their|strong=\"H7462\"* father’s flock|strong=\"H6629\"* in|strong=\"H3212\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 13, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “Aren’t your|strong=\"H7971\"* brothers feeding|strong=\"H7462\"* the|strong=\"H7971\"* flock in|strong=\"H3478\"* Shechem|strong=\"H7927\"*? Come|strong=\"H3212\"*, and|strong=\"H3478\"* I|strong=\"H2009\"* will|strong=\"H3478\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* them|strong=\"H7971\"*.” He|strong=\"H3808\"* said to|strong=\"H3478\"* him|strong=\"H7971\"*, “Here|strong=\"H2009\"* I|strong=\"H2009\"* am.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H7971\"* said|strong=\"H1697\"* to|strong=\"H7725\"* him|strong=\"H7971\"*, “Go|strong=\"H3212\"* now|strong=\"H4994\"*, see|strong=\"H7200\"* whether|strong=\"H7200\"* it|strong=\"H7725\"* is|strong=\"H1697\"* well|strong=\"H7965\"* with|strong=\"H1697\"* your|strong=\"H7200\"* brothers, and|strong=\"H7971\"* well|strong=\"H7965\"* with|strong=\"H1697\"* the|strong=\"H7200\"* flock|strong=\"H6629\"*; and|strong=\"H7971\"* bring|strong=\"H7725\"* me|strong=\"H4994\"* word|strong=\"H1697\"* again|strong=\"H7725\"*.” So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1697\"* the|strong=\"H7200\"* valley|strong=\"H6010\"* of|strong=\"H1697\"* Hebron|strong=\"H2275\"*, and|strong=\"H7971\"* he|strong=\"H7971\"* came|strong=\"H3212\"* to|strong=\"H7725\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* certain man found|strong=\"H4672\"* him|strong=\"H4672\"*, and|strong=\"H7704\"* behold|strong=\"H2009\"*, he|strong=\"H4100\"* was|strong=\"H7704\"* wandering|strong=\"H8582\"* in|strong=\"H4672\"* the|strong=\"H1245\"* field|strong=\"H7704\"*. The|strong=\"H1245\"* man asked|strong=\"H7592\"* him|strong=\"H4672\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H4100\"* looking|strong=\"H1245\"* for|strong=\"H7592\"*?”" + }, + { + "verseNum": 16, + "text": "He said, “I|strong=\"H5046\"* am looking|strong=\"H1245\"* for|strong=\"H1245\"* my|strong=\"H1245\"* brothers. Tell|strong=\"H5046\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, where|strong=\"H1992\"* they|strong=\"H1992\"* are|strong=\"H1992\"* feeding|strong=\"H7462\"* the|strong=\"H1245\"* flock.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H8085\"* man|strong=\"H2088\"* said|strong=\"H8085\"*, “They|strong=\"H3588\"* have|strong=\"H4672\"* left|strong=\"H4672\"* here|strong=\"H2088\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* heard|strong=\"H8085\"* them|strong=\"H4672\"* say, ‘Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H3212\"* Dothan|strong=\"H1886\"*.’”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H2962\"* saw|strong=\"H7200\"* him|strong=\"H7200\"* afar|strong=\"H7350\"* off|strong=\"H7350\"*, and|strong=\"H7200\"* before|strong=\"H2962\"* he|strong=\"H2962\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* them|strong=\"H7126\"*, they|strong=\"H2962\"* conspired|strong=\"H5230\"* against him|strong=\"H7200\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H1167\"* said to|strong=\"H2472\"* one another, “Behold|strong=\"H2009\"*, this|strong=\"H1976\"* dreamer|strong=\"H1167\"* comes." + }, + { + "verseNum": 20, + "text": "Come|strong=\"H1961\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H3212\"* let|strong=\"H6258\"*’s kill|strong=\"H2026\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* cast|strong=\"H7993\"* him|strong=\"H7200\"* into|strong=\"H3212\"* one|strong=\"H2416\"* of|strong=\"H2416\"* the|strong=\"H7200\"* pits, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H1961\"* say, ‘An|strong=\"H1961\"* evil|strong=\"H7451\"* animal|strong=\"H2416\"* has|strong=\"H1961\"* devoured him|strong=\"H7200\"*.’ We|strong=\"H6258\"* will|strong=\"H1961\"* see|strong=\"H7200\"* what|strong=\"H4100\"* will|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H2416\"* his|strong=\"H7200\"* dreams|strong=\"H2472\"*.”" + }, + { + "verseNum": 21, + "text": "Reuben|strong=\"H7205\"* heard|strong=\"H8085\"* it|strong=\"H5221\"*, and|strong=\"H3027\"* delivered|strong=\"H5337\"* him|strong=\"H5221\"* out|strong=\"H5337\"* of|strong=\"H3027\"* their|strong=\"H8085\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* said|strong=\"H8085\"*, “Let|strong=\"H3808\"*’s not|strong=\"H3808\"* take|strong=\"H5221\"* his|strong=\"H8085\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Reuben|strong=\"H7205\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Shed|strong=\"H8210\"* no|strong=\"H3808\"* blood|strong=\"H1818\"*. Throw|strong=\"H7993\"* him|strong=\"H7971\"* into|strong=\"H7725\"* this|strong=\"H2088\"* pit that|strong=\"H4616\"* is|strong=\"H2088\"* in|strong=\"H7725\"* the|strong=\"H7725\"* wilderness|strong=\"H4057\"*, but|strong=\"H3808\"* lay|strong=\"H7971\"* no|strong=\"H3808\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* him|strong=\"H7971\"*”—that|strong=\"H4616\"* he|strong=\"H3027\"* might|strong=\"H4616\"* deliver|strong=\"H5337\"* him|strong=\"H7971\"* out|strong=\"H8210\"* of|strong=\"H3027\"* their|strong=\"H7725\"* hand|strong=\"H3027\"*, to|strong=\"H7725\"* restore|strong=\"H7725\"* him|strong=\"H7971\"* to|strong=\"H7725\"* his|strong=\"H7971\"* father." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* Joseph|strong=\"H3130\"* came|strong=\"H1961\"* to|strong=\"H1961\"* his|strong=\"H5921\"* brothers, they|strong=\"H5921\"* stripped|strong=\"H6584\"* Joseph|strong=\"H3130\"* of|strong=\"H5921\"* his|strong=\"H5921\"* tunic|strong=\"H3801\"*, the|strong=\"H5921\"* tunic|strong=\"H3801\"* of|strong=\"H5921\"* many colors that|strong=\"H1961\"* was|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H4325\"* they|strong=\"H3947\"* took|strong=\"H3947\"* him|strong=\"H3947\"*, and|strong=\"H4325\"* threw|strong=\"H7993\"* him|strong=\"H3947\"* into|strong=\"H7993\"* the|strong=\"H3947\"* pit. The|strong=\"H3947\"* pit was|strong=\"H4325\"* empty|strong=\"H7386\"*. There was|strong=\"H4325\"* no|strong=\"H3947\"* water|strong=\"H4325\"* in|strong=\"H3947\"* it|strong=\"H7993\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5375\"* sat|strong=\"H3427\"* down|strong=\"H3381\"* to|strong=\"H1980\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H1980\"* they|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H1980\"* looked|strong=\"H7200\"*, and|strong=\"H1980\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* caravan of|strong=\"H3427\"* Ishmaelites|strong=\"H3459\"* coming|strong=\"H3381\"* from|strong=\"H3381\"* Gilead|strong=\"H1568\"*, with|strong=\"H1980\"* their|strong=\"H5375\"* camels|strong=\"H1581\"* bearing|strong=\"H5375\"* spices|strong=\"H5219\"* and|strong=\"H1980\"* balm|strong=\"H6875\"* and|strong=\"H1980\"* myrrh|strong=\"H3910\"*, going|strong=\"H1980\"* to|strong=\"H1980\"* carry|strong=\"H5375\"* it|strong=\"H7200\"* down|strong=\"H3381\"* to|strong=\"H1980\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 26, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H3063\"* his|strong=\"H3588\"* brothers, “What|strong=\"H4100\"* profit|strong=\"H1215\"* is|strong=\"H4100\"* it|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* kill|strong=\"H2026\"* our|strong=\"H3588\"* brother and|strong=\"H3063\"* conceal|strong=\"H3680\"* his|strong=\"H3588\"* blood|strong=\"H1818\"*?" + }, + { + "verseNum": 27, + "text": "Come|strong=\"H1961\"*, and|strong=\"H3027\"* let|strong=\"H3212\"*’s sell|strong=\"H4376\"* him|strong=\"H3027\"* to|strong=\"H3212\"* the|strong=\"H8085\"* Ishmaelites|strong=\"H3459\"*, and|strong=\"H3027\"* not|strong=\"H1961\"* let|strong=\"H3212\"* our|strong=\"H8085\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H3027\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H8085\"* brother, our|strong=\"H8085\"* flesh|strong=\"H1320\"*.” His|strong=\"H8085\"* brothers listened|strong=\"H8085\"* to|strong=\"H3212\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 28, + "text": "Midianites|strong=\"H4084\"* who|strong=\"H4376\"* were|strong=\"H4714\"* merchants|strong=\"H5503\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H6242\"* they|strong=\"H5674\"* drew|strong=\"H4900\"* and|strong=\"H6242\"* lifted|strong=\"H5927\"* up|strong=\"H5927\"* Joseph|strong=\"H3130\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* pit, and|strong=\"H6242\"* sold|strong=\"H4376\"* Joseph|strong=\"H3130\"* to|strong=\"H5927\"* the|strong=\"H4480\"* Ishmaelites|strong=\"H3459\"* for|strong=\"H4714\"* twenty|strong=\"H6242\"* pieces of|strong=\"H4480\"* silver|strong=\"H3701\"*. The|strong=\"H4480\"* merchants|strong=\"H5503\"* brought|strong=\"H5927\"* Joseph|strong=\"H3130\"* into|strong=\"H5927\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 29, + "text": "Reuben|strong=\"H7205\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* pit, and|strong=\"H7725\"* saw|strong=\"H2009\"* that|strong=\"H7725\"* Joseph|strong=\"H3130\"* wasn’t in|strong=\"H7725\"* the|strong=\"H7725\"* pit; and|strong=\"H7725\"* he|strong=\"H7725\"* tore|strong=\"H7167\"* his|strong=\"H7725\"* clothes." + }, + { + "verseNum": 30, + "text": "He|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* brothers, and|strong=\"H7725\"* said, “The|strong=\"H7725\"* child|strong=\"H3206\"* is|strong=\"H3206\"* no more|strong=\"H7725\"*; and|strong=\"H7725\"* I, where will|strong=\"H3206\"* I go|strong=\"H7725\"*?”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H3947\"* took|strong=\"H3947\"* Joseph|strong=\"H3130\"*’s tunic|strong=\"H3801\"*, and|strong=\"H1818\"* killed|strong=\"H7819\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"*, and|strong=\"H1818\"* dipped|strong=\"H2881\"* the|strong=\"H3947\"* tunic|strong=\"H3801\"* in|strong=\"H3947\"* the|strong=\"H3947\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3808\"* took|strong=\"H5234\"* the|strong=\"H7971\"* tunic|strong=\"H3801\"* of|strong=\"H1121\"* many|strong=\"H3808\"* colors, and|strong=\"H1121\"* they|strong=\"H3808\"* brought|strong=\"H7971\"* it|strong=\"H1931\"* to|strong=\"H7971\"* their|strong=\"H7971\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* said, “We|strong=\"H4994\"* have|strong=\"H1121\"* found|strong=\"H4672\"* this|strong=\"H2063\"*. Examine|strong=\"H5234\"* it|strong=\"H1931\"*, now|strong=\"H4994\"*, and|strong=\"H1121\"* see|strong=\"H5234\"* if|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7971\"* son|strong=\"H1121\"*’s tunic|strong=\"H3801\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H3130\"* recognized|strong=\"H5234\"* it|strong=\"H5234\"*, and|strong=\"H1121\"* said, “It|strong=\"H5234\"* is|strong=\"H7451\"* my|strong=\"H3130\"* son|strong=\"H1121\"*’s tunic|strong=\"H3801\"*. An evil|strong=\"H7451\"* animal|strong=\"H2416\"* has|strong=\"H3130\"* devoured him|strong=\"H5234\"*. Joseph|strong=\"H3130\"* is|strong=\"H7451\"* without doubt|strong=\"H2963\"* torn|strong=\"H2963\"* in|strong=\"H1121\"* pieces|strong=\"H2963\"*.”" + }, + { + "verseNum": 34, + "text": "Jacob|strong=\"H3290\"* tore|strong=\"H7167\"* his|strong=\"H7760\"* clothes|strong=\"H8071\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* his|strong=\"H7760\"* waist|strong=\"H4975\"*, and|strong=\"H1121\"* mourned for|strong=\"H5921\"* his|strong=\"H7760\"* son|strong=\"H1121\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* comfort|strong=\"H5162\"* him|strong=\"H3381\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* refused|strong=\"H3985\"* to|strong=\"H3381\"* be|strong=\"H1121\"* comforted|strong=\"H5162\"*. He|strong=\"H3588\"* said, “For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 37:35 Sheol is the place of the dead.* to|strong=\"H3381\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, mourning|strong=\"H5162\"*.” His|strong=\"H3605\"* father|strong=\"H1121\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H4376\"* Midianites|strong=\"H4092\"* sold|strong=\"H4376\"* him into|strong=\"H4714\"* Egypt|strong=\"H4714\"* to|strong=\"H4714\"* Potiphar|strong=\"H6318\"*, an|strong=\"H4714\"* officer|strong=\"H5631\"* of|strong=\"H8269\"* Pharaoh|strong=\"H6547\"*’s, the|strong=\"H4376\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4376\"* guard|strong=\"H2876\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H1961\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* his|strong=\"H5186\"* brothers, and|strong=\"H3063\"* visited|strong=\"H5186\"* a|strong=\"H3068\"* certain|strong=\"H6256\"* Adullamite|strong=\"H5726\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Hirah|strong=\"H2437\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H8033\"*, Judah|strong=\"H3063\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* a|strong=\"H3068\"* certain Canaanite|strong=\"H3669\"* man|strong=\"H7200\"* named|strong=\"H8034\"* Shua|strong=\"H7770\"*. He|strong=\"H8033\"* took|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H3063\"* went|strong=\"H3063\"* in|strong=\"H8034\"* to|strong=\"H3063\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 3, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Er|strong=\"H6147\"*." + }, + { + "verseNum": 4, + "text": "She|strong=\"H7121\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Onan." + }, + { + "verseNum": 5, + "text": "She|strong=\"H7121\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Shelah|strong=\"H7956\"*. He|strong=\"H7121\"* was|strong=\"H8034\"* at|strong=\"H1961\"* Chezib|strong=\"H3580\"* when|strong=\"H1961\"* she|strong=\"H7121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "Judah|strong=\"H3063\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H8034\"* Er|strong=\"H6147\"*, his|strong=\"H3947\"* firstborn|strong=\"H1060\"*, and|strong=\"H3063\"* her|strong=\"H3947\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 7, + "text": "Er|strong=\"H6147\"*, Judah|strong=\"H3063\"*’s firstborn|strong=\"H1060\"*, was|strong=\"H3068\"* wicked|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 8, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H6965\"* Onan, “Go|strong=\"H6965\"* in|strong=\"H3063\"* to|strong=\"H6965\"* your|strong=\"H6965\"* brother|strong=\"H2992\"*’s wife, and|strong=\"H3063\"* perform|strong=\"H6965\"* the|strong=\"H6965\"* duty|strong=\"H2992\"* of|strong=\"H2233\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2992\"* to|strong=\"H6965\"* her|strong=\"H6965\"*, and|strong=\"H3063\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* offspring|strong=\"H2233\"* for|strong=\"H6965\"* your|strong=\"H6965\"* brother|strong=\"H2992\"*.”" + }, + { + "verseNum": 9, + "text": "Onan knew|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* wouldn’t be|strong=\"H1961\"* his|strong=\"H5414\"*; and|strong=\"H3045\"* when|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1961\"* in|strong=\"H5414\"* to|strong=\"H1961\"* his|strong=\"H5414\"* brother’s wife, he|strong=\"H3588\"* spilled|strong=\"H7843\"* his|strong=\"H5414\"* semen on|strong=\"H1961\"* the|strong=\"H3588\"* ground, lest|strong=\"H1115\"* he|strong=\"H3588\"* should|strong=\"H3588\"* give|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H1961\"* his|strong=\"H5414\"* brother." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* thing which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* was|strong=\"H3068\"* evil|strong=\"H7489\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* killed|strong=\"H4191\"* him|strong=\"H6213\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1571\"* Judah|strong=\"H3063\"* said to|strong=\"H5704\"* Tamar|strong=\"H8559\"*, his|strong=\"H3588\"* daughter-in-law|strong=\"H3618\"*, “Remain|strong=\"H3427\"* a|strong=\"H3068\"* widow in|strong=\"H3427\"* your|strong=\"H3588\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, until|strong=\"H5704\"* Shelah|strong=\"H7956\"*, my|strong=\"H3588\"* son|strong=\"H1121\"*, is|strong=\"H1931\"* grown|strong=\"H1431\"* up|strong=\"H1431\"*;” for|strong=\"H3588\"* he|strong=\"H1931\"* said, “Lest|strong=\"H6435\"* he|strong=\"H1931\"* also|strong=\"H1571\"* die|strong=\"H4191\"*, like|strong=\"H1004\"* his|strong=\"H3588\"* brothers|strong=\"H1121\"*.” Tamar|strong=\"H8559\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* her|strong=\"H3618\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "After|strong=\"H5921\"* many|strong=\"H7235\"* days|strong=\"H3117\"*, Shua|strong=\"H7770\"*’s daughter|strong=\"H1323\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* Judah|strong=\"H3063\"*, died|strong=\"H4191\"*. Judah|strong=\"H3063\"* was|strong=\"H1931\"* comforted|strong=\"H5162\"*, and|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H4191\"* his|strong=\"H5921\"* sheep|strong=\"H6629\"* shearers|strong=\"H1494\"* to|strong=\"H4191\"* Timnah|strong=\"H8553\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* his|strong=\"H5921\"* friend|strong=\"H7453\"* Hirah|strong=\"H2437\"*, the|strong=\"H5921\"* Adullamite|strong=\"H5726\"*." + }, + { + "verseNum": 13, + "text": "Tamar|strong=\"H8559\"* was|strong=\"H6629\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, your|strong=\"H5046\"* father-in-law|strong=\"H2524\"* is|strong=\"H2009\"* going|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Timnah|strong=\"H8553\"* to|strong=\"H5927\"* shear|strong=\"H1494\"* his|strong=\"H5046\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H1931\"* took|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H5921\"* garments of|strong=\"H3427\"* her|strong=\"H5414\"* widowhood, and|strong=\"H1870\"* covered|strong=\"H3680\"* herself|strong=\"H1931\"* with|strong=\"H5921\"* her|strong=\"H5414\"* veil|strong=\"H6809\"*, and|strong=\"H1870\"* wrapped|strong=\"H5968\"* herself|strong=\"H1931\"*, and|strong=\"H1870\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* gate|strong=\"H6607\"* of|strong=\"H3427\"* Enaim|strong=\"H5879\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5921\"* Timnah|strong=\"H8553\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Shelah|strong=\"H7956\"* was|strong=\"H1931\"* grown|strong=\"H1431\"* up|strong=\"H5414\"*, and|strong=\"H1870\"* she|strong=\"H1931\"* wasn’t given|strong=\"H5414\"* to|strong=\"H5921\"* him|strong=\"H5414\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Judah|strong=\"H3063\"* saw|strong=\"H7200\"* her|strong=\"H7200\"*, he|strong=\"H3588\"* thought|strong=\"H2803\"* that|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H3063\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, for|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3063\"* covered|strong=\"H3680\"* her|strong=\"H7200\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* turned|strong=\"H5186\"* to|strong=\"H5414\"* her|strong=\"H5414\"* by|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*, and|strong=\"H1870\"* said, “Please|strong=\"H4994\"* come|strong=\"H3051\"*, let|strong=\"H4994\"* me|strong=\"H5414\"* come|strong=\"H3051\"* in|strong=\"H1870\"* to|strong=\"H5414\"* you|strong=\"H3588\"*,” for|strong=\"H3588\"* he|strong=\"H1931\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* his|strong=\"H5414\"* daughter-in-law|strong=\"H3618\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5704\"* said, “I|strong=\"H5414\"* will|strong=\"H5414\"* send|strong=\"H7971\"* you|strong=\"H5414\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* from|strong=\"H4480\"* the|strong=\"H5414\"* flock|strong=\"H6629\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5414\"* said, “What|strong=\"H4100\"* pledge|strong=\"H6162\"* will|strong=\"H3027\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 19, + "text": "She|strong=\"H5921\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* away|strong=\"H5493\"*, and|strong=\"H6965\"* put|strong=\"H3847\"* off|strong=\"H5493\"* her|strong=\"H5493\"* veil|strong=\"H6809\"* from|strong=\"H5493\"* her|strong=\"H5493\"*, and|strong=\"H6965\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments of|strong=\"H5921\"* her|strong=\"H5493\"* widowhood." + }, + { + "verseNum": 20, + "text": "Judah|strong=\"H3063\"* sent|strong=\"H7971\"* the|strong=\"H3947\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* by|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H7971\"* friend|strong=\"H7453\"*, the|strong=\"H3947\"* Adullamite|strong=\"H5726\"*, to|strong=\"H7971\"* receive|strong=\"H3947\"* the|strong=\"H3947\"* pledge|strong=\"H6162\"* from|strong=\"H3027\"* the|strong=\"H3947\"* woman’s hand|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H3027\"* didn’t find|strong=\"H4672\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* he|strong=\"H1931\"* asked|strong=\"H7592\"* the|strong=\"H5921\"* men of|strong=\"H1870\"* her|strong=\"H5921\"* place|strong=\"H4725\"*, saying, “Where|strong=\"H4725\"* is|strong=\"H2088\"* the|strong=\"H5921\"* prostitute, that|strong=\"H1931\"* was|strong=\"H1961\"* at|strong=\"H5921\"* Enaim|strong=\"H5879\"* by|strong=\"H5921\"* the|strong=\"H5921\"* road|strong=\"H1870\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said, “I|strong=\"H2088\"* haven’t found|strong=\"H4672\"* her|strong=\"H4672\"*; and|strong=\"H3063\"* also|strong=\"H1571\"* the|strong=\"H7725\"* men of|strong=\"H4725\"* the|strong=\"H7725\"* place|strong=\"H4725\"* said, ‘There|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* prostitute here|strong=\"H2088\"*.’”" + }, + { + "verseNum": 23, + "text": "Judah|strong=\"H3063\"* said, “Let|strong=\"H7971\"* her|strong=\"H7971\"* keep|strong=\"H1961\"* it|strong=\"H1961\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* be|strong=\"H1961\"* shamed. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* sent|strong=\"H7971\"* this|strong=\"H2088\"* young|strong=\"H1423\"* goat|strong=\"H1423\"*, and|strong=\"H3063\"* you|strong=\"H7971\"* haven’t found|strong=\"H4672\"* her|strong=\"H7971\"*.”" + }, + { + "verseNum": 24, + "text": "About|strong=\"H1961\"* three|strong=\"H7969\"* months|strong=\"H2320\"* later|strong=\"H1961\"*, Judah|strong=\"H3063\"* was|strong=\"H1961\"* told|strong=\"H5046\"*, “Tamar|strong=\"H8559\"*, your|strong=\"H1961\"* daughter-in-law|strong=\"H3618\"*, has|strong=\"H1961\"* played|strong=\"H2181\"* the|strong=\"H3318\"* prostitute|strong=\"H2181\"*. Moreover|strong=\"H1571\"*, behold|strong=\"H2009\"*, she|strong=\"H2320\"* is|strong=\"H1571\"* with|strong=\"H8313\"* child|strong=\"H2030\"* by|strong=\"H3318\"* prostitution.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3318\"* she|strong=\"H1931\"* was|strong=\"H1931\"* brought|strong=\"H3318\"* out|strong=\"H3318\"*, she|strong=\"H1931\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* her|strong=\"H7971\"* father-in-law|strong=\"H2524\"*, saying, “I|strong=\"H3318\"* am with|strong=\"H3318\"* child|strong=\"H2030\"* by|strong=\"H3318\"* the|strong=\"H7971\"* man who|strong=\"H4310\"* owns these|strong=\"H1931\"*.” She|strong=\"H1931\"* also|strong=\"H3318\"* said|strong=\"H3318\"*, “Please|strong=\"H4994\"* discern|strong=\"H5234\"* whose|strong=\"H4310\"* these|strong=\"H1931\"* are|strong=\"H4310\"*—the|strong=\"H7971\"* signet|strong=\"H2858\"*, and|strong=\"H7971\"* the|strong=\"H7971\"* cords|strong=\"H6616\"*, and|strong=\"H7971\"* the|strong=\"H7971\"* staff|strong=\"H4294\"*.”" + }, + { + "verseNum": 26, + "text": "Judah|strong=\"H3063\"* acknowledged|strong=\"H3045\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* said|strong=\"H3651\"*, “She|strong=\"H3588\"* is|strong=\"H3651\"* more|strong=\"H3254\"* righteous|strong=\"H6663\"* than|strong=\"H4480\"* I|strong=\"H3588\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* didn’t give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H5921\"* Shelah|strong=\"H7956\"*, my|strong=\"H5414\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 27, + "text": "In|strong=\"H1961\"* the|strong=\"H3205\"* time|strong=\"H6256\"* of|strong=\"H3205\"* her|strong=\"H3205\"* travail|strong=\"H3205\"*, behold|strong=\"H2009\"*, twins|strong=\"H8380\"* were|strong=\"H1961\"* in|strong=\"H1961\"* her|strong=\"H3205\"* womb." + }, + { + "verseNum": 28, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* travailed|strong=\"H3205\"*, one|strong=\"H2088\"* put|strong=\"H5414\"* out|strong=\"H3318\"* a|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* midwife|strong=\"H3205\"* took|strong=\"H3947\"* and|strong=\"H3027\"* tied|strong=\"H7194\"* a|strong=\"H3068\"* scarlet|strong=\"H8144\"* thread|strong=\"H8144\"* on|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, saying, “This|strong=\"H2088\"* came|strong=\"H1961\"* out|strong=\"H3318\"* first|strong=\"H7223\"*.”" + }, + { + "verseNum": 29, + "text": "As|strong=\"H1961\"* he|strong=\"H3027\"* drew|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*, behold|strong=\"H2009\"*, his|strong=\"H7121\"* brother came|strong=\"H1961\"* out|strong=\"H3318\"*, and|strong=\"H7725\"* she|strong=\"H7121\"* said|strong=\"H7121\"*, “Why|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H5921\"* made|strong=\"H6555\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* for|strong=\"H5921\"* yourself|strong=\"H5921\"*?” Therefore|strong=\"H5921\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Perez|strong=\"H6557\"*.+ 38:29 Perez means “breaking out”.*" + }, + { + "verseNum": 30, + "text": "Afterward his|strong=\"H7121\"* brother came|strong=\"H3318\"* out|strong=\"H3318\"*, who|strong=\"H7121\"* had|strong=\"H3027\"* the|strong=\"H5921\"* scarlet|strong=\"H8144\"* thread|strong=\"H8144\"* on|strong=\"H5921\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* his|strong=\"H7121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Zerah|strong=\"H2226\"*.+ 38:30 Zerah means “scarlet” or “brightness”.*" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H3027\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"*. Potiphar|strong=\"H6318\"*, an|strong=\"H8033\"* officer|strong=\"H5631\"* of|strong=\"H3027\"* Pharaoh|strong=\"H6547\"*’s, the|strong=\"H3027\"* captain|strong=\"H8269\"* of|strong=\"H3027\"* the|strong=\"H3027\"* guard|strong=\"H2876\"*, an|strong=\"H8033\"* Egyptian|strong=\"H4713\"*, bought|strong=\"H7069\"* him|strong=\"H3027\"* from|strong=\"H3381\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* Ishmaelites|strong=\"H3459\"* that|strong=\"H3027\"* had|strong=\"H3130\"* brought|strong=\"H3381\"* him|strong=\"H3027\"* down|strong=\"H3381\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* Joseph|strong=\"H3130\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* prosperous|strong=\"H6743\"* man. He|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3068\"* master the|strong=\"H3068\"* Egyptian|strong=\"H4713\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* master saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* him|strong=\"H3027\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* did|strong=\"H6213\"* prosper|strong=\"H6743\"* in|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"H3130\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sight|strong=\"H5869\"*. He|strong=\"H3605\"* ministered|strong=\"H8334\"* to|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3027\"* Potiphar|strong=\"H6485\"* made|strong=\"H5414\"* him|strong=\"H5414\"* overseer|strong=\"H6485\"* over|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3130\"* he|strong=\"H3605\"* put|strong=\"H5414\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "From|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H1961\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H1961\"* him|strong=\"H5921\"* overseer|strong=\"H6485\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* over|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* Egyptian|strong=\"H4713\"*’s house|strong=\"H1004\"* for|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s sake|strong=\"H5921\"*. Yahweh|strong=\"H3068\"*’s blessing|strong=\"H1293\"* was|strong=\"H3068\"* on|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* left|strong=\"H5800\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* in|strong=\"H3899\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"*. He|strong=\"H1931\"* didn’t concern|strong=\"H3045\"* himself|strong=\"H1931\"* with|strong=\"H3045\"* anything|strong=\"H3605\"*, except|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3605\"* food|strong=\"H3899\"* which|strong=\"H1931\"* he|strong=\"H1931\"* ate." + }, + { + "verseNum": 7, + "text": "After|strong=\"H1961\"* these things|strong=\"H1697\"*, his|strong=\"H5375\"* master’s wife set|strong=\"H5375\"* her|strong=\"H5375\"* eyes|strong=\"H5869\"* on|strong=\"H1961\"* Joseph|strong=\"H3130\"*; and|strong=\"H5869\"* she|strong=\"H5973\"* said|strong=\"H1697\"*, “Lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H5973\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* he|strong=\"H3605\"* refused|strong=\"H3985\"*, and|strong=\"H3027\"* said to|strong=\"H5414\"* his|strong=\"H3605\"* master|strong=\"H5414\"*’s wife, “Behold|strong=\"H2005\"*, my|strong=\"H5414\"* master|strong=\"H5414\"* doesn’t know|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H3426\"* with|strong=\"H1004\"* me|strong=\"H5414\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* he|strong=\"H3605\"* has|strong=\"H4100\"* put|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3045\"* he|strong=\"H3605\"* has|strong=\"H4100\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "No|strong=\"H3808\"* one|strong=\"H2088\"* is|strong=\"H2088\"* greater|strong=\"H1419\"* in|strong=\"H6213\"* this|strong=\"H2088\"* house|strong=\"H1004\"* than|strong=\"H4480\"* I|strong=\"H3588\"* am, and|strong=\"H1419\"* he|strong=\"H3588\"* has|strong=\"H3588\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* back|strong=\"H2820\"* anything|strong=\"H3972\"* from|strong=\"H4480\"* me|strong=\"H4480\"* but|strong=\"H3588\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* his|strong=\"H6213\"* wife. How|strong=\"H3588\"* then|strong=\"H2088\"* can|strong=\"H6213\"* I|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* wickedness|strong=\"H7451\"*, and|strong=\"H1419\"* sin|strong=\"H2398\"* against|strong=\"H4480\"* God|strong=\"H3808\"*?”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3117\"* she|strong=\"H5973\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joseph|strong=\"H3130\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, he|strong=\"H3117\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* her|strong=\"H7901\"*, to|strong=\"H1696\"* lie|strong=\"H7901\"* by|strong=\"H3117\"* her|strong=\"H7901\"*, or|strong=\"H3808\"* to|strong=\"H1696\"* be|strong=\"H1961\"* with|strong=\"H5973\"* her|strong=\"H7901\"*." + }, + { + "verseNum": 11, + "text": "About|strong=\"H1961\"* this|strong=\"H2088\"* time|strong=\"H3117\"*, he|strong=\"H3117\"* went|strong=\"H1004\"* into|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"* to|strong=\"H1961\"* do|strong=\"H6213\"* his|strong=\"H1961\"* work|strong=\"H4399\"*, and|strong=\"H3117\"* there|strong=\"H8033\"* were|strong=\"H1961\"* none of|strong=\"H1004\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* inside|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "She|strong=\"H5973\"* caught|strong=\"H8610\"* him|strong=\"H3027\"* by|strong=\"H3027\"* his|strong=\"H3027\"* garment, saying, “Lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H3318\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* left|strong=\"H5800\"* his|strong=\"H7200\"* garment in|strong=\"H3027\"* her|strong=\"H7200\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* had|strong=\"H1961\"* run|strong=\"H5127\"* outside|strong=\"H2351\"*," + }, + { + "verseNum": 14, + "text": "she|strong=\"H7121\"* called|strong=\"H7121\"* to|strong=\"H1004\"* the|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H1004\"* her|strong=\"H7200\"* house|strong=\"H1004\"*, and|strong=\"H1419\"* spoke to|strong=\"H1004\"* them|strong=\"H7121\"*, saying|strong=\"H6963\"*, “Behold|strong=\"H7200\"*, he|strong=\"H1004\"* has|strong=\"H1004\"* brought a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* in|strong=\"H1004\"* to|strong=\"H1004\"* us|strong=\"H7200\"* to|strong=\"H1004\"* mock|strong=\"H6711\"* us|strong=\"H7200\"*. He|strong=\"H1004\"* came in|strong=\"H1004\"* to|strong=\"H1004\"* me|strong=\"H7200\"* to|strong=\"H1004\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H7200\"*, and|strong=\"H1419\"* I|strong=\"H7200\"* cried|strong=\"H7121\"* with|strong=\"H5973\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* and|strong=\"H6963\"* cried|strong=\"H7121\"*, he|strong=\"H3588\"* left|strong=\"H5800\"* his|strong=\"H7121\"* garment by|strong=\"H7121\"* me|strong=\"H6963\"*, and|strong=\"H6963\"* ran|strong=\"H5127\"* outside|strong=\"H2351\"*.”" + }, + { + "verseNum": 16, + "text": "She|strong=\"H5704\"* laid|strong=\"H3240\"* up|strong=\"H3240\"* his|strong=\"H3240\"* garment by|strong=\"H5704\"* her|strong=\"H5704\"*, until|strong=\"H5704\"* his|strong=\"H3240\"* master came home|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "She spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1697\"* according to|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “The|strong=\"H1697\"* Hebrew|strong=\"H5680\"* servant|strong=\"H5650\"*, whom you|strong=\"H1696\"* have|strong=\"H5650\"* brought|strong=\"H5650\"* to|strong=\"H1696\"* us, came|strong=\"H1697\"* in|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* to|strong=\"H1696\"* mock|strong=\"H6711\"* me|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H6963\"* as|strong=\"H1961\"* I|strong=\"H6963\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H1961\"* voice|strong=\"H6963\"* and|strong=\"H6963\"* cried|strong=\"H7121\"*, he|strong=\"H7121\"* left|strong=\"H5800\"* his|strong=\"H7121\"* garment by|strong=\"H7121\"* me|strong=\"H6963\"*, and|strong=\"H6963\"* ran|strong=\"H5127\"* outside|strong=\"H2351\"*.”" + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* his|strong=\"H8085\"* master heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H8085\"* wife|strong=\"H1696\"*, which|strong=\"H1697\"* she spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, saying|strong=\"H1697\"*, “This|strong=\"H6213\"* is|strong=\"H1697\"* what|strong=\"H1697\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* did|strong=\"H6213\"* to|strong=\"H1696\"* me|strong=\"H6213\"*,” his|strong=\"H8085\"* wrath was|strong=\"H1961\"* kindled|strong=\"H2734\"*." + }, + { + "verseNum": 20, + "text": "Joseph|strong=\"H3130\"*’s master|strong=\"H5414\"* took|strong=\"H3947\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H1961\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*, the|strong=\"H5414\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s prisoners were|strong=\"H1961\"* bound, and|strong=\"H4428\"* he|strong=\"H8033\"* was|strong=\"H1961\"* there|strong=\"H8033\"* in|strong=\"H1004\"* custody." + }, + { + "verseNum": 21, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* Joseph|strong=\"H3130\"*, and|strong=\"H3068\"* showed|strong=\"H5414\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H5414\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* prison|strong=\"H1004\"* committed|strong=\"H6213\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prisoners who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H3605\"* prison|strong=\"H1004\"*. Whatever|strong=\"H3605\"* they|strong=\"H8033\"* did|strong=\"H6213\"* there|strong=\"H8033\"*, he|strong=\"H1931\"* was|strong=\"H1961\"* responsible|strong=\"H6213\"* for|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* keeper|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* prison|strong=\"H1004\"* didn’t look|strong=\"H7200\"* after|strong=\"H7200\"* anything|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H3068\"* under|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* him|strong=\"H3027\"*; and|strong=\"H3068\"* that|strong=\"H7200\"* which|strong=\"H1931\"* he|strong=\"H1931\"* did|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* it|strong=\"H1931\"* prosper|strong=\"H6743\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H4428\"* things|strong=\"H1697\"*, the|strong=\"H1697\"* butler of|strong=\"H4428\"* the|strong=\"H1697\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* his|strong=\"H1961\"* baker offended|strong=\"H2398\"* their|strong=\"H1961\"* lord, the|strong=\"H1697\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "Pharaoh|strong=\"H6547\"* was|strong=\"H6547\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* his|strong=\"H5921\"* two|strong=\"H8147\"* officers|strong=\"H8269\"*, the|strong=\"H5921\"* chief|strong=\"H8269\"* cup bearer and|strong=\"H6547\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* baker." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8033\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* custody|strong=\"H4929\"* in|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5414\"* captain|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5414\"* guard|strong=\"H2876\"*, into|strong=\"H3130\"* the|strong=\"H5414\"* prison|strong=\"H1004\"*, the|strong=\"H5414\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Joseph|strong=\"H3130\"* was|strong=\"H1004\"* bound." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* captain|strong=\"H8269\"* of|strong=\"H3117\"* the|strong=\"H3117\"* guard|strong=\"H2876\"* assigned|strong=\"H6485\"* them|strong=\"H1961\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* took|strong=\"H1961\"* care|strong=\"H6485\"* of|strong=\"H3117\"* them|strong=\"H1961\"*. They|strong=\"H3117\"* stayed in|strong=\"H3117\"* prison|strong=\"H4929\"* many days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3915\"* both|strong=\"H8147\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, each|strong=\"H2492\"* man his|strong=\"H4428\"* dream|strong=\"H2472\"*, in|strong=\"H1004\"* one|strong=\"H8147\"* night|strong=\"H3915\"*, each|strong=\"H2492\"* man according to|strong=\"H4714\"* the|strong=\"H1004\"* interpretation|strong=\"H6623\"* of|strong=\"H4428\"* his|strong=\"H4428\"* dream|strong=\"H2472\"*, the|strong=\"H1004\"* cup bearer and|strong=\"H4428\"* the|strong=\"H1004\"* baker of|strong=\"H4428\"* the|strong=\"H1004\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* were|strong=\"H4714\"* bound in|strong=\"H1004\"* the|strong=\"H1004\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* came|strong=\"H3130\"* in|strong=\"H7200\"* to|strong=\"H7200\"* them|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H7200\"* morning|strong=\"H1242\"*, and|strong=\"H1242\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, and|strong=\"H1242\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H7200\"* were|strong=\"H3130\"* sad|strong=\"H2196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* asked|strong=\"H7592\"* Pharaoh|strong=\"H6547\"*’s officers|strong=\"H5631\"* who|strong=\"H6547\"* were|strong=\"H3117\"* with|strong=\"H1004\"* him|strong=\"H6440\"* in|strong=\"H1004\"* custody|strong=\"H4929\"* in|strong=\"H1004\"* his|strong=\"H6440\"* master’s house|strong=\"H1004\"*, saying, “Why|strong=\"H4069\"* do you|strong=\"H6440\"* look|strong=\"H6547\"* so|strong=\"H7592\"* sad|strong=\"H7451\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* said to|strong=\"H3808\"* him|strong=\"H5608\"*, “We|strong=\"H4994\"* have|strong=\"H3808\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H4994\"* there is|strong=\"H3130\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* can|strong=\"H3808\"* interpret|strong=\"H6622\"* it|strong=\"H3808\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* chief|strong=\"H8269\"* cup bearer told|strong=\"H5608\"* his|strong=\"H6440\"* dream|strong=\"H2472\"* to|strong=\"H6440\"* Joseph|strong=\"H3130\"*, and|strong=\"H6440\"* said to|strong=\"H6440\"* him|strong=\"H6440\"*, “In|strong=\"H6440\"* my|strong=\"H5608\"* dream|strong=\"H2472\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* vine|strong=\"H1612\"* was|strong=\"H3130\"* in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H8269\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* vine|strong=\"H1612\"* were|strong=\"H7969\"* three|strong=\"H7969\"* branches|strong=\"H8299\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* as|strong=\"H5927\"* though|strong=\"H1931\"* it|strong=\"H1931\"* budded|strong=\"H6524\"*, it|strong=\"H1931\"* blossomed|strong=\"H6524\"*, and|strong=\"H5927\"* its|strong=\"H5927\"* clusters produced|strong=\"H1310\"* ripe|strong=\"H1310\"* grapes|strong=\"H6025\"*." + }, + { + "verseNum": 11, + "text": "Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"* was|strong=\"H3027\"* in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* took|strong=\"H3947\"* the|strong=\"H5921\"* grapes|strong=\"H6025\"*, and|strong=\"H3027\"* pressed|strong=\"H7818\"* them|strong=\"H5414\"* into|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* into|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H3117\"* him|strong=\"H2088\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* its interpretation|strong=\"H6623\"*: the|strong=\"H3117\"* three|strong=\"H7969\"* branches|strong=\"H8299\"* are|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "Within|strong=\"H5921\"* three|strong=\"H7969\"* more|strong=\"H5750\"* days|strong=\"H3117\"*, Pharaoh|strong=\"H6547\"* will|strong=\"H1961\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H7725\"* restore|strong=\"H7725\"* you|strong=\"H5414\"* to|strong=\"H7725\"* your|strong=\"H5414\"* office|strong=\"H3653\"*. You|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* Pharaoh|strong=\"H6547\"*’s cup|strong=\"H3563\"* into|strong=\"H7725\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*, the|strong=\"H5921\"* way|strong=\"H4941\"* you|strong=\"H5414\"* did|strong=\"H3117\"* when|strong=\"H1961\"* you|strong=\"H5414\"* were|strong=\"H1961\"* his|strong=\"H5375\"* cup|strong=\"H3563\"* bearer|strong=\"H5375\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* remember|strong=\"H2142\"* me|strong=\"H4994\"* when|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2088\"* well|strong=\"H3190\"* with|strong=\"H1004\"* you|strong=\"H3588\"*. Please|strong=\"H4994\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3318\"* me|strong=\"H4994\"*, and|strong=\"H1004\"* make|strong=\"H6213\"* mention|strong=\"H2142\"* of|strong=\"H1004\"* me|strong=\"H4994\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1004\"* bring|strong=\"H3318\"* me|strong=\"H4994\"* out|strong=\"H3318\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"*, I|strong=\"H3588\"* was|strong=\"H3808\"* stolen|strong=\"H1589\"* away|strong=\"H1589\"* out|strong=\"H6213\"* of|strong=\"H6213\"* the|strong=\"H3588\"* land of|strong=\"H6213\"* the|strong=\"H3588\"* Hebrews|strong=\"H5680\"*, and|strong=\"H6213\"* here|strong=\"H6311\"* also|strong=\"H1571\"* I|strong=\"H3588\"* have|strong=\"H1571\"* done|strong=\"H6213\"* nothing|strong=\"H3808\"* that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* put|strong=\"H7760\"* me|strong=\"H7760\"* into|strong=\"H6213\"* the|strong=\"H3588\"* dungeon.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* chief|strong=\"H7218\"* baker saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H5921\"* interpretation|strong=\"H6622\"* was|strong=\"H3130\"* good|strong=\"H2896\"*, he|strong=\"H3588\"* said to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “I|strong=\"H3588\"* also|strong=\"H8269\"* was|strong=\"H3130\"* in|strong=\"H5921\"* my|strong=\"H7200\"* dream|strong=\"H2472\"*, and|strong=\"H7218\"* behold|strong=\"H2009\"*, three|strong=\"H7969\"* baskets|strong=\"H5536\"* of|strong=\"H8269\"* white|strong=\"H2751\"* bread|strong=\"H2751\"* were|strong=\"H8269\"* on|strong=\"H5921\"* my|strong=\"H7200\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* the|strong=\"H3605\"* uppermost|strong=\"H5945\"* basket|strong=\"H5536\"* there|strong=\"H4480\"* were|strong=\"H7218\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7218\"* baked food|strong=\"H3978\"* for|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H7218\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* ate them|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H7218\"* the|strong=\"H3605\"* basket|strong=\"H5536\"* on|strong=\"H5921\"* my|strong=\"H3605\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* answered|strong=\"H6030\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* its interpretation|strong=\"H6623\"*. The|strong=\"H3117\"* three|strong=\"H7969\"* baskets|strong=\"H5536\"* are|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Within|strong=\"H5921\"* three|strong=\"H7969\"* more|strong=\"H5750\"* days|strong=\"H3117\"*, Pharaoh|strong=\"H6547\"* will|strong=\"H1320\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* head|strong=\"H7218\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3117\"* will|strong=\"H1320\"* hang|strong=\"H8518\"* you|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*; and|strong=\"H3117\"* the|strong=\"H5921\"* birds|strong=\"H5775\"* will|strong=\"H1320\"* eat your|strong=\"H5921\"* flesh|strong=\"H1320\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, which|strong=\"H8269\"* was|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s birthday|strong=\"H3205\"*, he|strong=\"H3117\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* cup bearer|strong=\"H5375\"* and|strong=\"H3117\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* baker among|strong=\"H8432\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H5414\"* restored|strong=\"H7725\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* cup|strong=\"H3563\"* bearer to|strong=\"H7725\"* his|strong=\"H5414\"* position again|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* into|strong=\"H7725\"* Pharaoh|strong=\"H6547\"*’s hand|strong=\"H3709\"*;" + }, + { + "verseNum": 22, + "text": "but he|strong=\"H3130\"* hanged|strong=\"H8518\"* the|strong=\"H8518\"* chief|strong=\"H8269\"* baker, as Joseph|strong=\"H3130\"* had|strong=\"H3130\"* interpreted|strong=\"H6622\"* to|strong=\"H3130\"* them|strong=\"H8518\"*." + }, + { + "verseNum": 23, + "text": "Yet|strong=\"H3808\"* the|strong=\"H2142\"* chief|strong=\"H8269\"* cup bearer didn’t remember|strong=\"H2142\"* Joseph|strong=\"H3130\"*, but|strong=\"H3808\"* forgot|strong=\"H7911\"* him|strong=\"H2142\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7093\"* of|strong=\"H3117\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*, Pharaoh|strong=\"H6547\"* dreamed|strong=\"H2492\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, he|strong=\"H3117\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*. They|strong=\"H5927\"* were|strong=\"H2009\"* sleek|strong=\"H3303\"* and|strong=\"H5927\"* fat|strong=\"H1277\"*, and|strong=\"H5927\"* they|strong=\"H5927\"* fed|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H4480\"* marsh grass." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* other|strong=\"H8193\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H4480\"* them|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* river|strong=\"H2975\"*, ugly|strong=\"H7451\"* and|strong=\"H5975\"* thin|strong=\"H1851\"*, and|strong=\"H5975\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8193\"* cattle on|strong=\"H5921\"* the|strong=\"H5921\"* brink|strong=\"H8193\"* of|strong=\"H4480\"* the|strong=\"H5921\"* river|strong=\"H2975\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7451\"* ugly|strong=\"H7451\"* and|strong=\"H6547\"* thin|strong=\"H1851\"* cattle ate up the|strong=\"H7451\"* seven|strong=\"H7651\"* sleek|strong=\"H3303\"* and|strong=\"H6547\"* fat|strong=\"H1277\"* cattle. So Pharaoh|strong=\"H6547\"* awoke|strong=\"H3364\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H2009\"* slept|strong=\"H3462\"* and|strong=\"H5927\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*; and|strong=\"H5927\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H2896\"* grain|strong=\"H7641\"* came|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5927\"* one|strong=\"H2896\"* stalk|strong=\"H7070\"*, healthy|strong=\"H1277\"* and|strong=\"H5927\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H7641\"* grain|strong=\"H7641\"*, thin|strong=\"H1851\"* and|strong=\"H7651\"* blasted|strong=\"H7710\"* with the|strong=\"H2009\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*, sprung|strong=\"H6779\"* up|strong=\"H6779\"* after|strong=\"H6779\"* them." + }, + { + "verseNum": 7, + "text": "The|strong=\"H2009\"* thin|strong=\"H1851\"* heads|strong=\"H7641\"* of|strong=\"H4392\"* grain|strong=\"H7641\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H2009\"* seven|strong=\"H7651\"* healthy|strong=\"H1277\"* and|strong=\"H6547\"* full|strong=\"H4392\"* ears|strong=\"H7641\"*. Pharaoh|strong=\"H6547\"* awoke|strong=\"H3364\"*, and|strong=\"H6547\"* behold|strong=\"H2009\"*, it|strong=\"H2009\"* was|strong=\"H6547\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H7121\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, his|strong=\"H3605\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* troubled|strong=\"H6470\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* of|strong=\"H7307\"* Egypt|strong=\"H4714\"*’s magicians|strong=\"H2748\"* and|strong=\"H7971\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*. Pharaoh|strong=\"H6547\"* told|strong=\"H5608\"* them|strong=\"H7971\"* his|strong=\"H3605\"* dreams|strong=\"H2472\"*, but|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* could interpret|strong=\"H6622\"* them|strong=\"H7971\"* to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* the|strong=\"H3117\"* chief|strong=\"H8269\"* cup bearer spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, saying|strong=\"H1696\"*, “I|strong=\"H3117\"* remember|strong=\"H2142\"* my|strong=\"H2142\"* faults|strong=\"H2399\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "Pharaoh|strong=\"H6547\"* was|strong=\"H1004\"* angry|strong=\"H7107\"* with|strong=\"H1004\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5921\"* custody|strong=\"H4929\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* captain|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H5921\"* guard|strong=\"H2876\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* chief|strong=\"H8269\"* baker." + }, + { + "verseNum": 11, + "text": "We dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* in|strong=\"H2472\"* one|strong=\"H1931\"* night|strong=\"H3915\"*, he|strong=\"H1931\"* and|strong=\"H3915\"* I. Each|strong=\"H2492\"* man dreamed|strong=\"H2492\"* according to|strong=\"H3915\"* the|strong=\"H3915\"* interpretation|strong=\"H6623\"* of|strong=\"H2492\"* his|strong=\"H1931\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 12, + "text": "There|strong=\"H8033\"* was|strong=\"H5288\"* with|strong=\"H8033\"* us|strong=\"H5608\"* there|strong=\"H8033\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, servant|strong=\"H5650\"* to|strong=\"H5650\"* the|strong=\"H5650\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5650\"* guard|strong=\"H2876\"*, and|strong=\"H5650\"* we|strong=\"H3068\"* told|strong=\"H5608\"* him|strong=\"H5608\"*, and|strong=\"H5650\"* he|strong=\"H8033\"* interpreted|strong=\"H6622\"* to|strong=\"H5650\"* us|strong=\"H5608\"* our|strong=\"H5650\"* dreams|strong=\"H2472\"*. He|strong=\"H8033\"* interpreted|strong=\"H6622\"* to|strong=\"H5650\"* each man|strong=\"H5288\"* according to|strong=\"H5650\"* his|strong=\"H5608\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* he|strong=\"H3651\"* interpreted|strong=\"H6622\"* to|strong=\"H7725\"* us|strong=\"H7725\"*, so|strong=\"H3651\"* it|strong=\"H5921\"* was|strong=\"H1961\"*. He|strong=\"H3651\"* restored|strong=\"H7725\"* me|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H5921\"* office|strong=\"H3653\"*, and|strong=\"H7725\"* he|strong=\"H3651\"* hanged|strong=\"H8518\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* Joseph|strong=\"H3130\"*, and|strong=\"H7971\"* they|strong=\"H7323\"* brought|strong=\"H7323\"* him|strong=\"H7121\"* hastily|strong=\"H7323\"* out|strong=\"H7971\"* of|strong=\"H4480\"* the|strong=\"H4480\"* dungeon. He|strong=\"H4480\"* shaved|strong=\"H1548\"* himself|strong=\"H7121\"*, changed|strong=\"H2498\"* his|strong=\"H7121\"* clothing|strong=\"H8071\"*, and|strong=\"H7971\"* came|strong=\"H3130\"* in|strong=\"H7121\"* to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 15, + "text": "Pharaoh|strong=\"H6547\"* said|strong=\"H8085\"* to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “I|strong=\"H5921\"* have|strong=\"H5921\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H8085\"* there is|strong=\"H3130\"* no one|strong=\"H8085\"* who|strong=\"H6547\"* can interpret|strong=\"H6622\"* it|strong=\"H5921\"*. I|strong=\"H5921\"* have|strong=\"H5921\"* heard|strong=\"H8085\"* it|strong=\"H5921\"* said|strong=\"H8085\"* of|strong=\"H5921\"* you|strong=\"H5921\"*, that|strong=\"H8085\"* when|strong=\"H8085\"* you|strong=\"H5921\"* hear|strong=\"H8085\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* you|strong=\"H5921\"* can interpret|strong=\"H6622\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 16, + "text": "Joseph|strong=\"H3130\"* answered|strong=\"H6030\"* Pharaoh|strong=\"H6547\"*, saying, “It|strong=\"H7965\"* isn’t in|strong=\"H6547\"* me|strong=\"H6030\"*. God will|strong=\"H6547\"* give|strong=\"H6030\"* Pharaoh|strong=\"H6547\"* an|strong=\"H6030\"* answer|strong=\"H6030\"* of|strong=\"H7965\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joseph|strong=\"H3130\"*, “In|strong=\"H5921\"* my|strong=\"H5921\"* dream|strong=\"H2472\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* brink|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H5927\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* fat|strong=\"H1277\"* and|strong=\"H5927\"* sleek|strong=\"H3303\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*. They|strong=\"H5927\"* fed|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H4480\"* marsh grass;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4714\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* other|strong=\"H3605\"* cattle came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* them|strong=\"H7200\"*, poor|strong=\"H1803\"* and|strong=\"H4714\"* very|strong=\"H3966\"* ugly|strong=\"H7451\"* and|strong=\"H4714\"* thin|strong=\"H7534\"*, such|strong=\"H2007\"* as|strong=\"H5927\"* I|strong=\"H2009\"* never|strong=\"H3808\"* saw|strong=\"H7200\"* in|strong=\"H1320\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"* for|strong=\"H4714\"* ugliness|strong=\"H7455\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7534\"* thin|strong=\"H7534\"* and|strong=\"H7223\"* ugly|strong=\"H7451\"* cattle ate up the|strong=\"H7534\"* first|strong=\"H7223\"* seven|strong=\"H7651\"* fat|strong=\"H1277\"* cattle;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3045\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* eaten them|strong=\"H3588\"* up, it|strong=\"H3588\"* couldn’t be|strong=\"H3808\"* known|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* eaten them|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H7451\"* still|strong=\"H4758\"* ugly|strong=\"H7451\"*, as|strong=\"H3588\"* at|strong=\"H3808\"* the|strong=\"H3588\"* beginning|strong=\"H8462\"*. So|strong=\"H3808\"* I|strong=\"H3588\"* awoke|strong=\"H3364\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* in|strong=\"H5927\"* my|strong=\"H7200\"* dream|strong=\"H2472\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H4392\"* grain|strong=\"H7641\"* came|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H7200\"* one|strong=\"H2896\"* stalk|strong=\"H7070\"*, full|strong=\"H4392\"* and|strong=\"H7200\"* good|strong=\"H2896\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H7651\"* behold|strong=\"H2009\"*, seven|strong=\"H7651\"* heads|strong=\"H7641\"* of|strong=\"H7641\"* grain|strong=\"H7641\"*, withered|strong=\"H6798\"*, thin|strong=\"H1851\"*, and|strong=\"H7651\"* blasted|strong=\"H7710\"* with the|strong=\"H2009\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*, sprung|strong=\"H6779\"* up|strong=\"H6779\"* after|strong=\"H6779\"* them." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5046\"* thin|strong=\"H1851\"* heads|strong=\"H7641\"* of|strong=\"H2748\"* grain|strong=\"H7641\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H5046\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* heads|strong=\"H7641\"* of|strong=\"H2748\"* grain|strong=\"H7641\"*. I|strong=\"H5046\"* told|strong=\"H5046\"* it|strong=\"H2896\"* to|strong=\"H5046\"* the|strong=\"H5046\"* magicians|strong=\"H2748\"*, but|strong=\"H1104\"* there was|strong=\"H2896\"* no one|strong=\"H2896\"* who|strong=\"H2896\"* could explain|strong=\"H5046\"* it|strong=\"H2896\"* to|strong=\"H5046\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 25, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*, “The|strong=\"H6213\"* dream|strong=\"H2472\"* of|strong=\"H6213\"* Pharaoh|strong=\"H6547\"* is|strong=\"H1931\"* one|strong=\"H1931\"*. What|strong=\"H6213\"* God is|strong=\"H1931\"* about|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* he|strong=\"H1931\"* has|strong=\"H6213\"* declared|strong=\"H5046\"* to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H8141\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* cattle are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*; and|strong=\"H8141\"* the|strong=\"H8141\"* seven|strong=\"H7651\"* good|strong=\"H2896\"* heads|strong=\"H7641\"* of|strong=\"H8141\"* grain|strong=\"H7641\"* are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*. The|strong=\"H8141\"* dream|strong=\"H2472\"* is|strong=\"H1931\"* one|strong=\"H1931\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5927\"* seven|strong=\"H7651\"* thin|strong=\"H7534\"* and|strong=\"H8141\"* ugly|strong=\"H7451\"* cattle that|strong=\"H8141\"* came|strong=\"H1961\"* up|strong=\"H5927\"* after|strong=\"H1961\"* them|strong=\"H2007\"* are|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* also the|strong=\"H5927\"* seven|strong=\"H7651\"* empty|strong=\"H7386\"* heads|strong=\"H7641\"* of|strong=\"H8141\"* grain|strong=\"H7641\"* blasted|strong=\"H7710\"* with|strong=\"H5927\"* the|strong=\"H5927\"* east|strong=\"H6921\"* wind|strong=\"H6921\"*; they|strong=\"H2007\"* will|strong=\"H1961\"* be|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 28, + "text": "That|strong=\"H7200\"* is|strong=\"H1931\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H1931\"* I|strong=\"H1697\"* have|strong=\"H7200\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*. God has|strong=\"H1697\"* shown|strong=\"H7200\"* Pharaoh|strong=\"H6547\"* what|strong=\"H1697\"* he|strong=\"H1931\"* is|strong=\"H1931\"* about|strong=\"H1697\"* to|strong=\"H1696\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H2009\"*, seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* great|strong=\"H1419\"* plenty|strong=\"H7647\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* are|strong=\"H8141\"* coming|strong=\"H2009\"*." + }, + { + "verseNum": 30, + "text": "Seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"* will|strong=\"H4714\"* arise|strong=\"H6965\"* after|strong=\"H6965\"* them|strong=\"H3615\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plenty|strong=\"H7647\"* will|strong=\"H4714\"* be|strong=\"H8141\"* forgotten|strong=\"H7911\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*. The|strong=\"H3605\"* famine|strong=\"H7458\"* will|strong=\"H4714\"* consume|strong=\"H3615\"* the|strong=\"H3605\"* land," + }, + { + "verseNum": 31, + "text": "and|strong=\"H6440\"* the|strong=\"H6440\"* plenty|strong=\"H7647\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* known|strong=\"H3045\"* in|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* by|strong=\"H3808\"* reason|strong=\"H6440\"* of|strong=\"H6440\"* that|strong=\"H3588\"* famine|strong=\"H7458\"* which|strong=\"H1931\"* follows|strong=\"H3651\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3808\"* be|strong=\"H3808\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5921\"* dream|strong=\"H2472\"* was|strong=\"H1697\"* doubled|strong=\"H8138\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* is|strong=\"H1697\"* established|strong=\"H3559\"* by|strong=\"H5921\"* God, and|strong=\"H6213\"* God will|strong=\"H1697\"* shortly|strong=\"H4116\"* bring|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* Pharaoh|strong=\"H6547\"* look|strong=\"H7200\"* for|strong=\"H5921\"* a|strong=\"H3068\"* discreet and|strong=\"H4714\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*, and|strong=\"H4714\"* set|strong=\"H7896\"* him|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 34, + "text": "Let|strong=\"H6485\"* Pharaoh|strong=\"H6547\"* do|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H4714\"* let|strong=\"H6485\"* him|strong=\"H5921\"* appoint|strong=\"H6485\"* overseers|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H4714\"* take|strong=\"H6213\"* up|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2567\"* part|strong=\"H2567\"* of|strong=\"H8141\"* the|strong=\"H5921\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*’s produce|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* plenteous|strong=\"H7647\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 35, + "text": "Let them|strong=\"H3027\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* food of|strong=\"H3027\"* these|strong=\"H3605\"* good|strong=\"H2896\"* years|strong=\"H8141\"* that|strong=\"H3605\"* come|strong=\"H5892\"*, and|strong=\"H3027\"* store|strong=\"H6651\"* grain|strong=\"H1250\"* under|strong=\"H8478\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Pharaoh|strong=\"H6547\"* for|strong=\"H8478\"* food in|strong=\"H8141\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H3027\"* let them|strong=\"H3027\"* keep|strong=\"H8104\"* it|strong=\"H8104\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3772\"* food will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* supply the|strong=\"H3772\"* land against|strong=\"H4714\"* the|strong=\"H3772\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"*, which will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3772\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*; so|strong=\"H1961\"* that|strong=\"H8141\"* the|strong=\"H3772\"* land will|strong=\"H1961\"* not|strong=\"H3808\"* perish|strong=\"H3772\"* through the|strong=\"H3772\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* good|strong=\"H3190\"* in|strong=\"H5650\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H5869\"* in|strong=\"H5650\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 38, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5650\"* his|strong=\"H4672\"* servants|strong=\"H5650\"*, “Can|strong=\"H5650\"* we|strong=\"H3068\"* find|strong=\"H4672\"* such|strong=\"H2088\"* a|strong=\"H3068\"* one|strong=\"H2088\"* as|strong=\"H5650\"* this|strong=\"H2088\"*, a|strong=\"H3068\"* man|strong=\"H2088\"* in|strong=\"H4672\"* whom is|strong=\"H2088\"* the|strong=\"H4672\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God?”" + }, + { + "verseNum": 39, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3045\"* Joseph|strong=\"H3130\"*, “Because|strong=\"H3605\"* God has|strong=\"H3045\"* shown|strong=\"H3045\"* you|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H3605\"* this|strong=\"H2063\"*, there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H3605\"* one|strong=\"H3605\"* so|strong=\"H2063\"* discreet and|strong=\"H6547\"* wise|strong=\"H2450\"* as|strong=\"H3644\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H3605\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H3605\"* house|strong=\"H1004\"*. All|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* ruled|strong=\"H5401\"* according|strong=\"H5921\"* to|strong=\"H1961\"* your|strong=\"H3605\"* word|strong=\"H6310\"*. Only|strong=\"H7535\"* in|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* I|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* greater|strong=\"H1431\"* than|strong=\"H4480\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 41, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5921\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H7200\"* set|strong=\"H5414\"* you|strong=\"H5414\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 42, + "text": "Pharaoh|strong=\"H6547\"* took|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5414\"* signet|strong=\"H2885\"* ring|strong=\"H2885\"* from|strong=\"H5493\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* arrayed|strong=\"H3847\"* him|strong=\"H5414\"* in|strong=\"H5921\"* robes of|strong=\"H3027\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* chain|strong=\"H7242\"* about|strong=\"H5921\"* his|strong=\"H5414\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H3605\"* made|strong=\"H5414\"* him|strong=\"H5414\"* ride|strong=\"H7392\"* in|strong=\"H5921\"* the|strong=\"H3605\"* second|strong=\"H4932\"* chariot|strong=\"H4818\"* which|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H5414\"*. They|strong=\"H5921\"* cried|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, “Bow the|strong=\"H3605\"* knee!” He|strong=\"H3605\"* set|strong=\"H5414\"* him|strong=\"H5414\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 44, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3027\"* Joseph|strong=\"H3130\"*, “I|strong=\"H4714\"* am Pharaoh|strong=\"H6547\"*. Without|strong=\"H3808\"* you|strong=\"H3605\"*, no|strong=\"H3808\"* man|strong=\"H3605\"* shall|strong=\"H4714\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* or|strong=\"H3808\"* his|strong=\"H3605\"* foot|strong=\"H7272\"* in|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 45, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* Joseph|strong=\"H3130\"*’s name|strong=\"H8034\"* Zaphenath-Paneah|strong=\"H6847\"*. He|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Asenath, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Potiphera|strong=\"H6319\"* priest|strong=\"H3548\"* of|strong=\"H1323\"* On|strong=\"H5921\"* as|strong=\"H3318\"* a|strong=\"H3068\"* wife. Joseph|strong=\"H3130\"* went|strong=\"H3318\"* out|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1323\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 46, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H4428\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3318\"* he|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Joseph|strong=\"H3130\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 47, + "text": "In|strong=\"H8141\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* plenteous|strong=\"H7647\"* years|strong=\"H8141\"* the|strong=\"H6213\"* earth produced|strong=\"H6213\"* abundantly|strong=\"H7062\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"H3605\"* gathered|strong=\"H6908\"* up|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* food of|strong=\"H8141\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* which|strong=\"H5892\"* were|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H8141\"* Egypt|strong=\"H4714\"*, and|strong=\"H5892\"* laid|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H3605\"* food in|strong=\"H8141\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*. He|strong=\"H3605\"* stored|strong=\"H5414\"* food in|strong=\"H8141\"* each|strong=\"H3605\"* city|strong=\"H5892\"* from|strong=\"H1961\"* the|strong=\"H3605\"* fields|strong=\"H7704\"* around|strong=\"H5439\"* that|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 49, + "text": "Joseph|strong=\"H3130\"* laid up|strong=\"H6651\"* grain|strong=\"H1250\"* as|strong=\"H5704\"* the|strong=\"H3588\"* sand|strong=\"H2344\"* of|strong=\"H4557\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, very|strong=\"H3966\"* much|strong=\"H7235\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* stopped|strong=\"H2308\"* counting|strong=\"H4557\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3130\"* without|strong=\"H3588\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 50, + "text": "To|strong=\"H3205\"* Joseph|strong=\"H3130\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* before|strong=\"H2962\"* the|strong=\"H3205\"* year|strong=\"H8141\"* of|strong=\"H1121\"* famine|strong=\"H7458\"* came|strong=\"H1323\"*, whom Asenath, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Potiphera|strong=\"H6319\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* On|strong=\"H3205\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 51, + "text": "Joseph|strong=\"H3130\"* called|strong=\"H7121\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* Manasseh|strong=\"H4519\"*,+ 41:51 “Manasseh” sounds like the Hebrew for “forget”.* “For|strong=\"H3588\"*”, he|strong=\"H3588\"* said|strong=\"H7121\"*, “God has|strong=\"H3588\"* made|strong=\"H3130\"* me|strong=\"H7121\"* forget|strong=\"H5382\"* all|strong=\"H3605\"* my|strong=\"H3605\"* toil|strong=\"H5999\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 52, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3588\"* second|strong=\"H8145\"*, he|strong=\"H3588\"* called|strong=\"H7121\"* Ephraim|strong=\"H8034\"*:+ 41:52 “Ephraim” sounds like the Hebrew for “twice fruitful”.* “For|strong=\"H3588\"* God has|strong=\"H3588\"* made|strong=\"H7121\"* me|strong=\"H7121\"* fruitful|strong=\"H6509\"* in|strong=\"H8034\"* the|strong=\"H3588\"* land of|strong=\"H8034\"* my|strong=\"H3588\"* affliction|strong=\"H6040\"*.”" + }, + { + "verseNum": 53, + "text": "The|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* plenty|strong=\"H7647\"*, that|strong=\"H8141\"* were|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* an|strong=\"H1961\"* end|strong=\"H3615\"*." + }, + { + "verseNum": 54, + "text": "The|strong=\"H3605\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H8141\"* famine|strong=\"H7458\"* began|strong=\"H2490\"* to|strong=\"H1961\"* come|strong=\"H1961\"*, just|strong=\"H3605\"* as|strong=\"H1961\"* Joseph|strong=\"H3130\"* had|strong=\"H1961\"* said. There|strong=\"H1961\"* was|strong=\"H1961\"* famine|strong=\"H7458\"* in|strong=\"H8141\"* all|strong=\"H3605\"* lands, but|strong=\"H1961\"* in|strong=\"H8141\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* there|strong=\"H1961\"* was|strong=\"H1961\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 55, + "text": "When|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Egypt|strong=\"H4714\"* was|strong=\"H6547\"* famished|strong=\"H7456\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* cried|strong=\"H6817\"* to|strong=\"H3212\"* Pharaoh|strong=\"H6547\"* for|strong=\"H6213\"* bread|strong=\"H3899\"*, and|strong=\"H3212\"* Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*, “Go|strong=\"H3212\"* to|strong=\"H3212\"* Joseph|strong=\"H3130\"*. What|strong=\"H6213\"* he|strong=\"H6213\"* says to|strong=\"H3212\"* you|strong=\"H3605\"*, do|strong=\"H6213\"*.”" + }, + { + "verseNum": 56, + "text": "The|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth. Joseph|strong=\"H3130\"* opened|strong=\"H6605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* store houses, and|strong=\"H4714\"* sold|strong=\"H7666\"* to|strong=\"H1961\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*. The|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 57, + "text": "All|strong=\"H3605\"* countries came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H4714\"* Joseph|strong=\"H3130\"*, to|strong=\"H4714\"* buy|strong=\"H7666\"* grain|strong=\"H3605\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H2388\"* in|strong=\"H7458\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Jacob|strong=\"H3290\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H3426\"* was|strong=\"H1121\"* grain|strong=\"H7668\"* in|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* Jacob|strong=\"H3290\"* said to|strong=\"H4714\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* look|strong=\"H7200\"* at|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H3426\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3426\"* grain|strong=\"H7668\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*. Go|strong=\"H3381\"* down|strong=\"H3381\"* there|strong=\"H8033\"*, and|strong=\"H4714\"* buy|strong=\"H7666\"* for|strong=\"H3588\"* us|strong=\"H3588\"* from|strong=\"H3381\"* there|strong=\"H8033\"*, so|strong=\"H3808\"* that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H4714\"* live|strong=\"H2421\"*, and|strong=\"H4714\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 3, + "text": "Joseph|strong=\"H3130\"*’s ten|strong=\"H6235\"* brothers went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* grain|strong=\"H1250\"* from|strong=\"H3381\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* Jacob|strong=\"H3290\"* didn’t send|strong=\"H7971\"* Benjamin|strong=\"H1144\"*, Joseph|strong=\"H3130\"*’s brother, with|strong=\"H7971\"* his|strong=\"H7971\"* brothers; for|strong=\"H3588\"* he|strong=\"H3588\"* said, “Lest|strong=\"H6435\"* perhaps|strong=\"H3588\"* harm|strong=\"H7971\"* happen|strong=\"H7122\"* to|strong=\"H7971\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* to|strong=\"H3478\"* buy|strong=\"H7666\"* among|strong=\"H8432\"* those|strong=\"H1121\"* who|strong=\"H1121\"* came|strong=\"H1961\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* was|strong=\"H1931\"* the|strong=\"H3605\"* governor|strong=\"H7989\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land. It|strong=\"H1931\"* was|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H3605\"* sold|strong=\"H7666\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* land. Joseph|strong=\"H3130\"*’s brothers came|strong=\"H5971\"*, and|strong=\"H5971\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* his|strong=\"H7200\"* brothers, and|strong=\"H7200\"* he|strong=\"H1696\"* recognized|strong=\"H5234\"* them|strong=\"H7200\"*, but|strong=\"H7200\"* acted like a|strong=\"H3068\"* stranger to|strong=\"H1696\"* them|strong=\"H7200\"*, and|strong=\"H7200\"* spoke|strong=\"H1696\"* roughly|strong=\"H7186\"* with|strong=\"H1696\"* them|strong=\"H7200\"*. He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7200\"*, “Where did|strong=\"H7200\"* you|strong=\"H7200\"* come from|strong=\"H7200\"*?”" + }, + { + "verseNum": 8, + "text": "Joseph|strong=\"H3130\"* recognized|strong=\"H5234\"* his|strong=\"H3808\"* brothers, but|strong=\"H3808\"* they|strong=\"H1992\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H3130\"*." + }, + { + "verseNum": 9, + "text": "Joseph|strong=\"H3130\"* remembered|strong=\"H2142\"* the|strong=\"H7200\"* dreams|strong=\"H2472\"* which he|strong=\"H3130\"* dreamed|strong=\"H2492\"* about|strong=\"H3130\"* them|strong=\"H7200\"*, and|strong=\"H7200\"* said to|strong=\"H7200\"* them|strong=\"H7200\"*, “You|strong=\"H7200\"* are|strong=\"H2472\"* spies|strong=\"H7270\"*! You|strong=\"H7200\"* have|strong=\"H7200\"* come|strong=\"H2142\"* to|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H7200\"* the|strong=\"H7200\"* land.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* said to|strong=\"H5650\"* him, “No|strong=\"H3808\"*, my|strong=\"H5650\"* lord, but|strong=\"H3808\"* your|strong=\"H3808\"* servants|strong=\"H5650\"* have|strong=\"H5650\"* come to|strong=\"H5650\"* buy|strong=\"H7666\"* food." + }, + { + "verseNum": 11, + "text": "We|strong=\"H5168\"* are|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H3605\"* man|strong=\"H1121\"*’s sons|strong=\"H1121\"*; we|strong=\"H3068\"* are|strong=\"H1121\"* honest men|strong=\"H1121\"*. Your|strong=\"H3605\"* servants|strong=\"H5650\"* are|strong=\"H1121\"* not|strong=\"H3808\"* spies|strong=\"H7270\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said to|strong=\"H7200\"* them|strong=\"H7200\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7200\"* come to|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* the|strong=\"H7200\"* land!”" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* said, “We|strong=\"H3117\"*, your|strong=\"H3117\"* servants|strong=\"H5650\"*, are|strong=\"H3117\"* twelve|strong=\"H8147\"* brothers|strong=\"H1121\"*, the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* one|strong=\"H1121\"* man|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, the|strong=\"H3117\"* youngest|strong=\"H6996\"* is|strong=\"H3117\"* today|strong=\"H3117\"* with|strong=\"H3117\"* our|strong=\"H5650\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* one|strong=\"H1121\"* is|strong=\"H3117\"* no more.”" + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1931\"*, “It|strong=\"H1931\"* is|strong=\"H1931\"* like I told|strong=\"H1696\"* you|strong=\"H1696\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H1696\"* are|strong=\"H3130\"* spies|strong=\"H7270\"*!’" + }, + { + "verseNum": 15, + "text": "By|strong=\"H3318\"* this|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H6547\"* be|strong=\"H2416\"* tested. By|strong=\"H3318\"* the|strong=\"H3588\"* life|strong=\"H2416\"* of|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, you|strong=\"H3588\"* shall|strong=\"H6547\"* not|strong=\"H2088\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* here|strong=\"H2088\"*, unless|strong=\"H3588\"* your|strong=\"H3588\"* youngest|strong=\"H6996\"* brother comes|strong=\"H3318\"* here|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "Send|strong=\"H7971\"* one|strong=\"H3808\"* of|strong=\"H1697\"* you|strong=\"H3588\"*, and|strong=\"H7971\"* let|strong=\"H7971\"* him|strong=\"H7971\"* get|strong=\"H3947\"* your|strong=\"H3947\"* brother, and|strong=\"H7971\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* bound, that|strong=\"H3588\"* your|strong=\"H3947\"* words|strong=\"H1697\"* may|strong=\"H2416\"* be|strong=\"H3808\"* tested, whether|strong=\"H4480\"* there|strong=\"H4480\"* is|strong=\"H1697\"* truth|strong=\"H3808\"* in|strong=\"H1697\"* you|strong=\"H3588\"*, or|strong=\"H3808\"* else|strong=\"H3808\"* by|strong=\"H7971\"* the|strong=\"H3588\"* life|strong=\"H2416\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"* surely|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* spies|strong=\"H7270\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3117\"* put them|strong=\"H3117\"* all|strong=\"H3117\"* together into custody|strong=\"H4929\"* for|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H6213\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, “Do|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H3117\"* live|strong=\"H2421\"*, for|strong=\"H6213\"* I|strong=\"H3117\"* fear|strong=\"H3372\"* God." + }, + { + "verseNum": 19, + "text": "If|strong=\"H3651\"* you|strong=\"H3651\"* are|strong=\"H1004\"* honest men, then|strong=\"H3651\"* let|strong=\"H3651\"* one|strong=\"H3651\"* of|strong=\"H1004\"* your|strong=\"H3651\"* brothers be|strong=\"H1004\"* bound in|strong=\"H1004\"* your|strong=\"H3651\"* prison|strong=\"H1004\"*; but|strong=\"H3651\"* you|strong=\"H3651\"* go|strong=\"H3212\"*, carry|strong=\"H3212\"* grain|strong=\"H7668\"* for|strong=\"H1004\"* the|strong=\"H3651\"* famine|strong=\"H7459\"* of|strong=\"H1004\"* your|strong=\"H3651\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "Bring|strong=\"H6213\"* your|strong=\"H6213\"* youngest|strong=\"H6996\"* brother to|strong=\"H4191\"* me|strong=\"H6213\"*; so|strong=\"H3651\"* will|strong=\"H1697\"* your|strong=\"H6213\"* words|strong=\"H1697\"* be|strong=\"H4191\"* verified, and|strong=\"H6213\"* you|strong=\"H6213\"* won’t die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3651\"* said|strong=\"H8085\"* to|strong=\"H5921\"* one|strong=\"H3808\"* another|strong=\"H7200\"*, “We|strong=\"H8085\"* are|strong=\"H6869\"* certainly|strong=\"H3808\"* guilty concerning|strong=\"H5921\"* our|strong=\"H7200\"* brother, in|strong=\"H5921\"* that|strong=\"H7200\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* distress|strong=\"H6869\"* of|strong=\"H5921\"* his|strong=\"H8085\"* soul|strong=\"H5315\"*, when|strong=\"H7200\"* he|strong=\"H3651\"* begged|strong=\"H2603\"* us|strong=\"H5921\"*, and|strong=\"H8085\"* we|strong=\"H3068\"* wouldn’t listen|strong=\"H8085\"*. Therefore|strong=\"H3651\"* this|strong=\"H2063\"* distress|strong=\"H6869\"* has|strong=\"H5315\"* come upon|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 22, + "text": "Reuben|strong=\"H7205\"* answered|strong=\"H6030\"* them|strong=\"H6030\"*, saying, “Didn’t I|strong=\"H2009\"* tell|strong=\"H8085\"* you|strong=\"H3808\"*, saying, ‘Don’t sin|strong=\"H2398\"* against|strong=\"H2398\"* the|strong=\"H8085\"* child|strong=\"H3206\"*,’ and|strong=\"H6030\"* you|strong=\"H3808\"* wouldn’t listen|strong=\"H8085\"*? Therefore|strong=\"H1571\"* also|strong=\"H1571\"*, behold|strong=\"H2009\"*, his|strong=\"H8085\"* blood|strong=\"H1818\"* is|strong=\"H1571\"* required|strong=\"H1875\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Joseph|strong=\"H3130\"* understood|strong=\"H3045\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* there|strong=\"H1992\"* was|strong=\"H3130\"* an|strong=\"H3588\"* interpreter|strong=\"H3887\"* between|strong=\"H3045\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* turned|strong=\"H7725\"* himself away|strong=\"H7725\"* from|strong=\"H7725\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* wept|strong=\"H1058\"*. Then|strong=\"H1696\"* he|strong=\"H5921\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* took|strong=\"H3947\"* Simeon|strong=\"H8095\"* from|strong=\"H7725\"* among|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* bound him|strong=\"H5921\"* before|strong=\"H5869\"* their|strong=\"H3947\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3651\"* Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H7725\"* fill|strong=\"H4390\"* their|strong=\"H5414\"* bags|strong=\"H3627\"* with|strong=\"H4390\"* grain|strong=\"H1250\"*, and|strong=\"H3701\"* to|strong=\"H7725\"* restore|strong=\"H7725\"* each|strong=\"H5414\"* man’s money|strong=\"H3701\"* into|strong=\"H7725\"* his|strong=\"H5414\"* sack|strong=\"H8242\"*, and|strong=\"H3701\"* to|strong=\"H7725\"* give|strong=\"H5414\"* them|strong=\"H5414\"* food|strong=\"H6720\"* for|strong=\"H6213\"* the|strong=\"H5414\"* way|strong=\"H1870\"*. So|strong=\"H3651\"* it|strong=\"H5414\"* was|strong=\"H3130\"* done|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H8033\"* loaded|strong=\"H5375\"* their|strong=\"H5375\"* donkeys|strong=\"H2543\"* with|strong=\"H5921\"* their|strong=\"H5375\"* grain|strong=\"H7668\"*, and|strong=\"H3212\"* departed|strong=\"H3212\"* from|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H5414\"* one|strong=\"H1931\"* of|strong=\"H6310\"* them|strong=\"H5414\"* opened|strong=\"H6605\"* his|strong=\"H5414\"* sack|strong=\"H8242\"* to|strong=\"H5414\"* give|strong=\"H5414\"* his|strong=\"H5414\"* donkey|strong=\"H2543\"* food|strong=\"H4554\"* in|strong=\"H5414\"* the|strong=\"H7200\"* lodging|strong=\"H4411\"* place|strong=\"H5414\"*, he|strong=\"H1931\"* saw|strong=\"H7200\"* his|strong=\"H5414\"* money|strong=\"H3701\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* was|strong=\"H1931\"* in|strong=\"H5414\"* the|strong=\"H7200\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* his|strong=\"H5414\"* sack|strong=\"H8242\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* said|strong=\"H3318\"* to|strong=\"H7725\"* his|strong=\"H7725\"* brothers, “My|strong=\"H7725\"* money|strong=\"H3701\"* is|strong=\"H3820\"* restored|strong=\"H7725\"*! Behold|strong=\"H2009\"*, it|strong=\"H6213\"* is|strong=\"H3820\"* in|strong=\"H6213\"* my|strong=\"H7725\"* sack!” Their|strong=\"H7725\"* hearts|strong=\"H3820\"* failed|strong=\"H3318\"* them|strong=\"H7725\"*, and|strong=\"H3701\"* they|strong=\"H4100\"* turned|strong=\"H7725\"* trembling|strong=\"H2729\"* to|strong=\"H7725\"* one|strong=\"H6213\"* another|strong=\"H1571\"*, saying, “What|strong=\"H4100\"* is|strong=\"H3820\"* this|strong=\"H2063\"* that|strong=\"H6213\"* God has|strong=\"H3820\"* done|strong=\"H6213\"* to|strong=\"H7725\"* us|strong=\"H7725\"*?”" + }, + { + "verseNum": 29, + "text": "They|strong=\"H3605\"* came to|strong=\"H5046\"* Jacob|strong=\"H3290\"* their|strong=\"H3605\"* father, to|strong=\"H5046\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*, and|strong=\"H3290\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H3290\"* happened|strong=\"H7136\"* to|strong=\"H5046\"* them|strong=\"H5046\"*, saying," + }, + { + "verseNum": 30, + "text": "“The|strong=\"H5414\"* man, the|strong=\"H5414\"* lord of|strong=\"H1696\"* the|strong=\"H5414\"* land, spoke|strong=\"H1696\"* roughly|strong=\"H7186\"* with|strong=\"H1696\"* us|strong=\"H5414\"*, and|strong=\"H1696\"* took|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H5414\"* spies|strong=\"H7270\"* of|strong=\"H1696\"* the|strong=\"H5414\"* country." + }, + { + "verseNum": 31, + "text": "We said|strong=\"H3651\"* to|strong=\"H1961\"* him|strong=\"H1961\"*, ‘We are|strong=\"H1961\"* honest men. We are|strong=\"H1961\"* no|strong=\"H3808\"* spies|strong=\"H7270\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H3117\"* are|strong=\"H3117\"* twelve|strong=\"H8147\"* brothers|strong=\"H1121\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* our father|strong=\"H1121\"*; one|strong=\"H1121\"* is|strong=\"H3117\"* no more, and|strong=\"H1121\"* the|strong=\"H3117\"* youngest|strong=\"H6996\"* is|strong=\"H3117\"* today|strong=\"H3117\"* with|strong=\"H3117\"* our father|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*.’" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* man|strong=\"H3045\"*, the|strong=\"H3588\"* lord of|strong=\"H1004\"* the|strong=\"H3588\"* land, said|strong=\"H3651\"* to|strong=\"H3212\"* us|strong=\"H3045\"*, ‘By|strong=\"H3212\"* this|strong=\"H2063\"* I|strong=\"H3588\"* will|strong=\"H1004\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* honest men|strong=\"H3947\"*: leave|strong=\"H3240\"* one|strong=\"H3588\"* of|strong=\"H1004\"* your|strong=\"H3947\"* brothers with|strong=\"H1004\"* me|strong=\"H3947\"*, and|strong=\"H3212\"* take|strong=\"H3947\"* grain|strong=\"H7459\"* for|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7459\"* of|strong=\"H1004\"* your|strong=\"H3947\"* houses|strong=\"H1004\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*." + }, + { + "verseNum": 34, + "text": "Bring|strong=\"H5414\"* your|strong=\"H5414\"* youngest|strong=\"H6996\"* brother to|strong=\"H5414\"* me|strong=\"H5414\"*. Then|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3045\"* not|strong=\"H3808\"* spies|strong=\"H7270\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3045\"* honest men. So|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* deliver|strong=\"H5414\"* your|strong=\"H5414\"* brother to|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3045\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* trade|strong=\"H5503\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land.’”" + }, + { + "verseNum": 35, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* emptied|strong=\"H7324\"* their|strong=\"H1992\"* sacks|strong=\"H8242\"*, behold|strong=\"H2009\"*, each man|strong=\"H7200\"*’s bundle|strong=\"H6872\"* of|strong=\"H3372\"* money|strong=\"H3701\"* was|strong=\"H1961\"* in|strong=\"H3701\"* his|strong=\"H7200\"* sack|strong=\"H8242\"*. When|strong=\"H1961\"* they|strong=\"H1992\"* and|strong=\"H3701\"* their|strong=\"H1992\"* father saw|strong=\"H7200\"* their|strong=\"H1992\"* bundles|strong=\"H6872\"* of|strong=\"H3372\"* money|strong=\"H3701\"*, they|strong=\"H1992\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 36, + "text": "Jacob|strong=\"H3290\"*, their|strong=\"H3605\"* father, said to|strong=\"H1961\"* them|strong=\"H5921\"*, “You|strong=\"H3605\"* have|strong=\"H1961\"* bereaved|strong=\"H7921\"* me|strong=\"H5921\"* of|strong=\"H5921\"* my|strong=\"H3605\"* children|strong=\"H7921\"*! Joseph|strong=\"H3130\"* is|strong=\"H3605\"* no|strong=\"H3605\"* more|strong=\"H5921\"*, Simeon|strong=\"H8095\"* is|strong=\"H3605\"* no|strong=\"H3605\"* more|strong=\"H5921\"*, and|strong=\"H3290\"* you|strong=\"H3605\"* want to|strong=\"H1961\"* take|strong=\"H3947\"* Benjamin|strong=\"H1144\"* away|strong=\"H3947\"*. All|strong=\"H3605\"* these|strong=\"H3947\"* things|strong=\"H3605\"* are|strong=\"H1961\"* against|strong=\"H5921\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 37, + "text": "Reuben|strong=\"H7205\"* spoke to|strong=\"H7725\"* his|strong=\"H5414\"* father|strong=\"H1121\"*, saying, “Kill|strong=\"H4191\"* my|strong=\"H5414\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, if|strong=\"H1121\"* I|strong=\"H5414\"* don’t bring|strong=\"H7725\"* him|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"*. Entrust|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* my|strong=\"H5414\"* care|strong=\"H3027\"*, and|strong=\"H1121\"* I|strong=\"H5414\"* will|strong=\"H1121\"* bring|strong=\"H7725\"* him|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"H1931\"* said, “My|strong=\"H3588\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3212\"* down|strong=\"H3381\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* his|strong=\"H3588\"* brother is|strong=\"H1931\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* only|strong=\"H3588\"* is|strong=\"H1931\"* left|strong=\"H7604\"*. If|strong=\"H3588\"* harm happens to|strong=\"H3381\"* him|strong=\"H5973\"* along|strong=\"H5973\"* the|strong=\"H3588\"* way|strong=\"H1870\"* in|strong=\"H4191\"* which|strong=\"H1931\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1121\"* bring|strong=\"H3381\"* down|strong=\"H3381\"* my|strong=\"H3588\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* with|strong=\"H5973\"* sorrow|strong=\"H3015\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.”+ 42:38 Sheol is the place of the dead.*" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "The famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H3515\"* in|strong=\"H7458\"* the land." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* they had|strong=\"H1961\"* eaten up|strong=\"H3615\"* the|strong=\"H7725\"* grain|strong=\"H7668\"* which they had|strong=\"H1961\"* brought|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H3615\"* Egypt|strong=\"H4714\"*, their|strong=\"H7725\"* father said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Go|strong=\"H7725\"* again|strong=\"H7725\"*, buy|strong=\"H7666\"* us|strong=\"H7725\"* a|strong=\"H3068\"* little|strong=\"H4592\"* more|strong=\"H7725\"* food.”" + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* spoke to|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “The|strong=\"H6440\"* man|strong=\"H6440\"* solemnly|strong=\"H5749\"* warned|strong=\"H5749\"* us|strong=\"H6440\"*, saying, ‘You|strong=\"H6440\"* shall|strong=\"H3063\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, unless|strong=\"H1115\"* your|strong=\"H6440\"* brother is|strong=\"H6440\"* with|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 4, + "text": "If|strong=\"H3426\"* you|strong=\"H7971\"*’ll send|strong=\"H7971\"* our|strong=\"H7971\"* brother with|strong=\"H3381\"* us|strong=\"H7971\"*, we|strong=\"H3068\"*’ll go|strong=\"H7971\"* down|strong=\"H3381\"* and|strong=\"H7971\"* buy|strong=\"H7666\"* you|strong=\"H7971\"* food;" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* don’t send|strong=\"H7971\"* him|strong=\"H6440\"*, we|strong=\"H3068\"* won’t go|strong=\"H7971\"* down|strong=\"H3381\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* man|strong=\"H6440\"* said to|strong=\"H3381\"* us|strong=\"H6440\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, unless|strong=\"H3588\"* your|strong=\"H6440\"* brother is|strong=\"H6440\"* with|strong=\"H3381\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 6, + "text": "Israel|strong=\"H3478\"* said, “Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H5046\"* treat|strong=\"H7489\"* me|strong=\"H5046\"* so|strong=\"H7489\"* badly|strong=\"H7489\"*, telling|strong=\"H5046\"* the|strong=\"H5046\"* man that|strong=\"H3478\"* you|strong=\"H5046\"* had|strong=\"H3478\"* another|strong=\"H5750\"* brother?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* said|strong=\"H1697\"*, “The|strong=\"H5921\"* man|strong=\"H3045\"* asked|strong=\"H7592\"* directly concerning|strong=\"H5921\"* ourselves|strong=\"H4138\"*, and|strong=\"H1697\"* concerning|strong=\"H5921\"* our|strong=\"H5921\"* relatives|strong=\"H4138\"*, saying|strong=\"H1697\"*, ‘Is|strong=\"H3426\"* your|strong=\"H5921\"* father still|strong=\"H5750\"* alive|strong=\"H2416\"*? Have|strong=\"H3426\"* you|strong=\"H3588\"* another|strong=\"H5750\"* brother?’ We|strong=\"H3588\"* just|strong=\"H1697\"* answered|strong=\"H5046\"* his|strong=\"H5921\"* questions|strong=\"H1697\"*. Is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H5750\"* way|strong=\"H1697\"* we|strong=\"H3068\"* could|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H1697\"* say|strong=\"H6310\"*, ‘Bring|strong=\"H3381\"* your|strong=\"H5921\"* brother down|strong=\"H3381\"*’?”" + }, + { + "verseNum": 8, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H3478\"* Israel|strong=\"H3478\"*, his|strong=\"H7971\"* father, “Send|strong=\"H7971\"* the|strong=\"H7971\"* boy|strong=\"H5288\"* with|strong=\"H3212\"* me|strong=\"H7971\"*, and|strong=\"H3063\"* we|strong=\"H3068\"*’ll get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H3063\"* go|strong=\"H3212\"*, so|strong=\"H7971\"* that|strong=\"H3478\"* we|strong=\"H3068\"* may|strong=\"H3478\"* live|strong=\"H2421\"*, and|strong=\"H3063\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, both|strong=\"H1571\"* we|strong=\"H3068\"*, and|strong=\"H3063\"* you|strong=\"H7971\"*, and|strong=\"H3063\"* also|strong=\"H1571\"* our|strong=\"H7971\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3117\"*’ll be|strong=\"H3808\"* collateral|strong=\"H6148\"* for|strong=\"H6440\"* him|strong=\"H6440\"*. From|strong=\"H6440\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H3027\"* you|strong=\"H6440\"* require|strong=\"H1245\"* him|strong=\"H6440\"*. If|strong=\"H2398\"* I|strong=\"H3117\"* don’t bring|strong=\"H2398\"* him|strong=\"H6440\"* to|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3117\"* set|strong=\"H3322\"* him|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, then|strong=\"H3808\"* let|strong=\"H3808\"* me|strong=\"H6440\"* bear|strong=\"H2398\"* the|strong=\"H3605\"* blame|strong=\"H2398\"* forever|strong=\"H3605\"*;" + }, + { + "verseNum": 10, + "text": "for|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* hadn’t delayed|strong=\"H4102\"*, surely|strong=\"H3588\"* we|strong=\"H3068\"* would have|strong=\"H6258\"* returned|strong=\"H7725\"* a|strong=\"H3068\"* second time|strong=\"H6471\"* by|strong=\"H7725\"* now|strong=\"H6258\"*.”" + }, + { + "verseNum": 11, + "text": "Their|strong=\"H3947\"* father, Israel|strong=\"H3478\"*, said|strong=\"H3651\"* to|strong=\"H3381\"* them|strong=\"H6213\"*, “If|strong=\"H3651\"* it|strong=\"H6213\"* must|strong=\"H3947\"* be|strong=\"H3478\"* so|strong=\"H3651\"*, then|strong=\"H3947\"* do|strong=\"H6213\"* this|strong=\"H2063\"*: Take|strong=\"H3947\"* from|strong=\"H3381\"* the|strong=\"H3947\"* choice fruits|strong=\"H2173\"* of|strong=\"H3627\"* the|strong=\"H3947\"* land in|strong=\"H3478\"* your|strong=\"H3947\"* bags|strong=\"H3627\"*, and|strong=\"H3478\"* carry|strong=\"H6213\"* down|strong=\"H3381\"* a|strong=\"H3068\"* present|strong=\"H4503\"* for|strong=\"H6213\"* the|strong=\"H3947\"* man, a|strong=\"H3068\"* little|strong=\"H4592\"* balm|strong=\"H6875\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* honey|strong=\"H1706\"*, spices|strong=\"H5219\"* and|strong=\"H3478\"* myrrh|strong=\"H3910\"*, nuts, and|strong=\"H3478\"* almonds|strong=\"H8247\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3701\"* take|strong=\"H3947\"* double|strong=\"H4932\"* money|strong=\"H3701\"* in|strong=\"H7725\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H3701\"* take|strong=\"H3947\"* back|strong=\"H7725\"* the|strong=\"H3947\"* money|strong=\"H3701\"* that|strong=\"H1931\"* was|strong=\"H1931\"* returned|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H3947\"* mouth|strong=\"H6310\"* of|strong=\"H3027\"* your|strong=\"H3947\"* sacks. Perhaps it|strong=\"H1931\"* was|strong=\"H1931\"* an|strong=\"H3947\"* oversight|strong=\"H4870\"*." + }, + { + "verseNum": 13, + "text": "Take|strong=\"H3947\"* your|strong=\"H3947\"* brother also, get|strong=\"H3947\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3947\"* man." + }, + { + "verseNum": 14, + "text": "May|strong=\"H5414\"* God|strong=\"H5414\"* Almighty|strong=\"H7706\"* give|strong=\"H5414\"* you|strong=\"H5414\"* mercy|strong=\"H7356\"* before|strong=\"H6440\"* the|strong=\"H6440\"* man|strong=\"H6440\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H5414\"* release|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H5414\"* your|strong=\"H5414\"* other brother and|strong=\"H7971\"* Benjamin|strong=\"H1144\"*. If I|strong=\"H5414\"* am bereaved|strong=\"H7921\"* of|strong=\"H6440\"* my|strong=\"H5414\"* children|strong=\"H7921\"*, I|strong=\"H5414\"* am bereaved|strong=\"H7921\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* men|strong=\"H3947\"* took|strong=\"H3947\"* that|strong=\"H3027\"* present|strong=\"H4503\"*, and|strong=\"H6965\"* they|strong=\"H6440\"* took|strong=\"H3947\"* double|strong=\"H4932\"* money|strong=\"H3701\"* in|strong=\"H6440\"* their|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H6965\"* Benjamin|strong=\"H1144\"*; and|strong=\"H6965\"* got|strong=\"H6965\"* up|strong=\"H6965\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H6965\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* Benjamin|strong=\"H1144\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, he|strong=\"H3588\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, “Bring the|strong=\"H5921\"* men into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* butcher an|strong=\"H7200\"* animal|strong=\"H2874\"*, and|strong=\"H1004\"* prepare|strong=\"H3559\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* men will|strong=\"H1004\"* dine with|strong=\"H1004\"* me|strong=\"H7200\"* at|strong=\"H5921\"* noon|strong=\"H6672\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* man did|strong=\"H6213\"* as|strong=\"H6213\"* Joseph|strong=\"H3130\"* commanded, and|strong=\"H1004\"* the|strong=\"H6213\"* man brought|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* to|strong=\"H6213\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* men|strong=\"H5650\"* were|strong=\"H1697\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1697\"* brought|strong=\"H7725\"* to|strong=\"H7725\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*; and|strong=\"H3701\"* they|strong=\"H3588\"* said|strong=\"H1697\"*, “Because|strong=\"H3588\"* of|strong=\"H1004\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3588\"* was|strong=\"H1697\"* returned|strong=\"H7725\"* in|strong=\"H5921\"* our|strong=\"H5921\"* sacks the|strong=\"H5921\"* first|strong=\"H8462\"* time|strong=\"H8462\"*, we|strong=\"H3068\"*’re brought|strong=\"H7725\"* in|strong=\"H5921\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H7725\"* seek|strong=\"H1556\"* occasion|strong=\"H1556\"* against|strong=\"H5921\"* us|strong=\"H7725\"*, attack us|strong=\"H7725\"*, and|strong=\"H3701\"* seize|strong=\"H3947\"* us|strong=\"H7725\"* as|strong=\"H1697\"* slaves|strong=\"H5650\"*, along|strong=\"H5921\"* with|strong=\"H1004\"* our|strong=\"H5921\"* donkeys|strong=\"H2543\"*.”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* they|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H3381\"* said, “Oh, my|strong=\"H3381\"* lord, we|strong=\"H3068\"* indeed|strong=\"H3381\"* came|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H3381\"* first|strong=\"H8462\"* time|strong=\"H8462\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* food." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* we|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H7725\"* the|strong=\"H3588\"* lodging|strong=\"H4411\"* place|strong=\"H3027\"*, we|strong=\"H3068\"* opened|strong=\"H6605\"* our|strong=\"H1961\"* sacks, and|strong=\"H3701\"* behold|strong=\"H2009\"*, each man’s money|strong=\"H3701\"* was|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H3588\"* mouth|strong=\"H6310\"* of|strong=\"H3027\"* his|strong=\"H7725\"* sack, our|strong=\"H1961\"* money|strong=\"H3701\"* in|strong=\"H7725\"* full|strong=\"H7725\"* weight|strong=\"H4948\"*. We|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"* in|strong=\"H7725\"* our|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 22, + "text": "We have|strong=\"H3045\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* other money|strong=\"H3701\"* in|strong=\"H3027\"* our|strong=\"H7760\"* hand|strong=\"H3027\"* to|strong=\"H3381\"* buy|strong=\"H7666\"* food. We don’t know|strong=\"H3045\"* who|strong=\"H4310\"* put|strong=\"H7760\"* our|strong=\"H7760\"* money|strong=\"H3701\"* in|strong=\"H3027\"* our|strong=\"H7760\"* sacks.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H5414\"* said|strong=\"H3318\"*, “Peace|strong=\"H7965\"* be|strong=\"H5414\"* to|strong=\"H3318\"* you|strong=\"H5414\"*. Don’t be|strong=\"H5414\"* afraid|strong=\"H3372\"*. Your|strong=\"H5414\"* God|strong=\"H5414\"*, and|strong=\"H3701\"* the|strong=\"H5414\"* God|strong=\"H5414\"* of|strong=\"H3318\"* your|strong=\"H5414\"* father, has|strong=\"H3318\"* given|strong=\"H5414\"* you|strong=\"H5414\"* treasure|strong=\"H4301\"* in|strong=\"H5414\"* your|strong=\"H5414\"* sacks. I|strong=\"H5414\"* received your|strong=\"H5414\"* money|strong=\"H3701\"*.” He|strong=\"H5414\"* brought|strong=\"H3318\"* Simeon|strong=\"H8095\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5414\"* man brought|strong=\"H5414\"* the|strong=\"H5414\"* men into|strong=\"H3130\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"*, and|strong=\"H1004\"* they|strong=\"H7272\"* washed|strong=\"H7364\"* their|strong=\"H5414\"* feet|strong=\"H7272\"*. He|strong=\"H1004\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* donkeys|strong=\"H2543\"* fodder|strong=\"H4554\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3588\"* prepared|strong=\"H3559\"* the|strong=\"H8085\"* present|strong=\"H4503\"* for|strong=\"H3588\"* Joseph|strong=\"H3130\"*’s coming at|strong=\"H8033\"* noon|strong=\"H6672\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3027\"* Joseph|strong=\"H3130\"* came|strong=\"H3130\"* home|strong=\"H1004\"*, they|strong=\"H3027\"* brought|strong=\"H3130\"* him|strong=\"H3027\"* the|strong=\"H7812\"* present|strong=\"H4503\"* which|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H1004\"* their|strong=\"H3027\"* hand|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H7812\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3027\"* the|strong=\"H7812\"* earth before him|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H2416\"* asked|strong=\"H7592\"* them|strong=\"H7592\"* of|strong=\"H2205\"* their|strong=\"H7592\"* welfare|strong=\"H7965\"*, and|strong=\"H2205\"* said, “Is|strong=\"H2416\"* your|strong=\"H7592\"* father well|strong=\"H7965\"*, the|strong=\"H7592\"* old|strong=\"H2205\"* man|strong=\"H2205\"* of|strong=\"H2205\"* whom you|strong=\"H7592\"* spoke? Is|strong=\"H2416\"* he|strong=\"H2416\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"*?”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H7965\"* said, “Your|strong=\"H7965\"* servant|strong=\"H5650\"*, our|strong=\"H5650\"* father, is|strong=\"H5650\"* well|strong=\"H7965\"*. He|strong=\"H2416\"* is|strong=\"H5650\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.” They|strong=\"H7965\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* humbly|strong=\"H7812\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1144\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* saw|strong=\"H7200\"* Benjamin|strong=\"H1144\"*, his|strong=\"H5375\"* brother, his|strong=\"H5375\"* mother’s son|strong=\"H1121\"*, and|strong=\"H1121\"* said, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H5375\"* youngest|strong=\"H6996\"* brother, of|strong=\"H1121\"* whom|strong=\"H5869\"* you|strong=\"H7200\"* spoke to|strong=\"H1121\"* me|strong=\"H7200\"*?” He|strong=\"H1144\"* said, “God be|strong=\"H1121\"* gracious|strong=\"H2603\"* to|strong=\"H1121\"* you|strong=\"H7200\"*, my|strong=\"H7200\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 30, + "text": "Joseph|strong=\"H3130\"* hurried|strong=\"H4116\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* heart yearned|strong=\"H3648\"* over|strong=\"H1058\"* his|strong=\"H3588\"* brother; and|strong=\"H8033\"* he|strong=\"H3588\"* sought|strong=\"H1245\"* a|strong=\"H3068\"* place|strong=\"H8033\"* to|strong=\"H1245\"* weep|strong=\"H1058\"*. He|strong=\"H3588\"* entered into|strong=\"H3130\"* his|strong=\"H3588\"* room|strong=\"H2315\"*, and|strong=\"H8033\"* wept|strong=\"H1058\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3318\"* washed|strong=\"H7364\"* his|strong=\"H7760\"* face|strong=\"H6440\"*, and|strong=\"H3899\"* came|strong=\"H3318\"* out|strong=\"H3318\"*. He|strong=\"H3318\"* controlled himself|strong=\"H6440\"*, and|strong=\"H3899\"* said|strong=\"H3318\"*, “Serve|strong=\"H6440\"* the|strong=\"H6440\"* meal|strong=\"H3899\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"H3588\"* served|strong=\"H7760\"* him|strong=\"H7760\"* by|strong=\"H3808\"* himself|strong=\"H1931\"*, and|strong=\"H3899\"* them|strong=\"H7760\"* by|strong=\"H3808\"* themselves|strong=\"H7760\"*, and|strong=\"H3899\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"* who|strong=\"H1931\"* ate with|strong=\"H3899\"* him|strong=\"H7760\"* by|strong=\"H3808\"* themselves|strong=\"H7760\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"* don’t eat|strong=\"H3899\"* with|strong=\"H3899\"* the|strong=\"H3588\"* Hebrews|strong=\"H5680\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* an|strong=\"H7760\"* abomination|strong=\"H8441\"* to|strong=\"H3201\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H6440\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, the|strong=\"H6440\"* firstborn|strong=\"H1060\"* according to|strong=\"H6440\"* his|strong=\"H6440\"* birthright|strong=\"H1062\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* youngest|strong=\"H6810\"* according to|strong=\"H6440\"* his|strong=\"H6440\"* youth|strong=\"H6812\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* men marveled with|strong=\"H3427\"* one|strong=\"H6810\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H2568\"* sent|strong=\"H3027\"* portions|strong=\"H4864\"* to|strong=\"H6440\"* them|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3605\"* Benjamin|strong=\"H1144\"*’s portion|strong=\"H4864\"* was|strong=\"H3027\"* five|strong=\"H2568\"* times|strong=\"H3027\"* as|strong=\"H6440\"* much|strong=\"H7235\"* as|strong=\"H6440\"* any|strong=\"H3605\"* of|strong=\"H3027\"* theirs. They|strong=\"H3605\"* drank|strong=\"H8354\"*, and|strong=\"H3027\"* were|strong=\"H3027\"* merry|strong=\"H7937\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H1004\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* steward|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H5375\"* house|strong=\"H1004\"*, saying|strong=\"H6310\"*, “Fill|strong=\"H4390\"* the|strong=\"H5921\"* men’s sacks with|strong=\"H4390\"* food|strong=\"H1004\"*, as|strong=\"H1004\"* much|strong=\"H6310\"* as|strong=\"H1004\"* they|strong=\"H5921\"* can|strong=\"H3201\"* carry|strong=\"H5375\"*, and|strong=\"H3701\"* put|strong=\"H7760\"* each man|strong=\"H5375\"*’s money|strong=\"H3701\"* in|strong=\"H5921\"* his|strong=\"H5375\"* sack’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 2, + "text": "Put|strong=\"H7760\"* my|strong=\"H7760\"* cup|strong=\"H1375\"*, the|strong=\"H6213\"* silver|strong=\"H3701\"* cup|strong=\"H1375\"*, in|strong=\"H6213\"* the|strong=\"H6213\"* sack’s mouth|strong=\"H6310\"* of|strong=\"H1697\"* the|strong=\"H6213\"* youngest|strong=\"H6996\"*, with|strong=\"H6213\"* his|strong=\"H7760\"* grain|strong=\"H7668\"* money|strong=\"H3701\"*.” He|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H1696\"* the|strong=\"H6213\"* word|strong=\"H1697\"* that|strong=\"H1697\"* Joseph|strong=\"H3130\"* had|strong=\"H3130\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H1992\"* soon|strong=\"H1242\"* as|strong=\"H1992\"* the|strong=\"H7971\"* morning|strong=\"H1242\"* was|strong=\"H1992\"* light, the|strong=\"H7971\"* men|strong=\"H1992\"* were|strong=\"H1992\"* sent|strong=\"H7971\"* away|strong=\"H7971\"*, they|strong=\"H1992\"* and|strong=\"H7971\"* their|strong=\"H1992\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* had|strong=\"H3130\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* were|strong=\"H1992\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* far|strong=\"H7368\"* off|strong=\"H5921\"*, Joseph|strong=\"H3130\"* said|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H5921\"* steward|strong=\"H1004\"*, “Up|strong=\"H6965\"*, follow|strong=\"H7291\"* after|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H7451\"*. When|strong=\"H3318\"* you|strong=\"H5921\"* overtake|strong=\"H5381\"* them|strong=\"H1992\"*, ask them|strong=\"H1992\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5892\"* you|strong=\"H5921\"* rewarded|strong=\"H7999\"* evil|strong=\"H7451\"* for|strong=\"H5921\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 5, + "text": "Isn’t this|strong=\"H2088\"* that|strong=\"H1931\"* from|strong=\"H6213\"* which|strong=\"H1931\"* my|strong=\"H6213\"* lord drinks|strong=\"H8354\"*, and|strong=\"H6213\"* by|strong=\"H3808\"* which|strong=\"H1931\"* he|strong=\"H1931\"* indeed|strong=\"H5172\"* divines? You|strong=\"H6213\"* have|strong=\"H3808\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* in|strong=\"H6213\"* so|strong=\"H6213\"* doing|strong=\"H6213\"*.’”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H1696\"* overtook|strong=\"H5381\"* them|strong=\"H5381\"*, and|strong=\"H1697\"* he|strong=\"H1696\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H5381\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H4100\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “Why|strong=\"H4100\"* does|strong=\"H6213\"* my|strong=\"H6213\"* lord speak|strong=\"H1696\"* such|strong=\"H2088\"* words|strong=\"H1697\"* as|strong=\"H1697\"* these|strong=\"H2088\"*? Far|strong=\"H2486\"* be|strong=\"H1697\"* it|strong=\"H6213\"* from|strong=\"H5650\"* your|strong=\"H6213\"* servants|strong=\"H5650\"* that|strong=\"H1697\"* they|strong=\"H4100\"* should|strong=\"H4100\"* do|strong=\"H6213\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*!" + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H7725\"* money|strong=\"H3701\"*, which|strong=\"H1004\"* we|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H1004\"* our|strong=\"H7725\"* sacks’ mouths|strong=\"H6310\"*, we|strong=\"H3068\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"* out|strong=\"H4672\"* of|strong=\"H1004\"* the|strong=\"H7725\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*. How then|strong=\"H7725\"* should we|strong=\"H3068\"* steal|strong=\"H1589\"* silver|strong=\"H3701\"* or|strong=\"H3701\"* gold|strong=\"H2091\"* out|strong=\"H4672\"* of|strong=\"H1004\"* your|strong=\"H7725\"* lord’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 9, + "text": "With|strong=\"H4191\"* whomever of|strong=\"H5650\"* your|strong=\"H1961\"* servants|strong=\"H5650\"* it|strong=\"H1961\"* is|strong=\"H1571\"* found|strong=\"H4672\"*, let|strong=\"H1961\"* him|strong=\"H4672\"* die|strong=\"H4191\"*, and|strong=\"H5650\"* we|strong=\"H3068\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* lord’s slaves|strong=\"H5650\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said|strong=\"H1697\"*, “Now|strong=\"H6258\"* also|strong=\"H1571\"* let|strong=\"H6258\"* it|strong=\"H1931\"* be|strong=\"H1961\"* according to|strong=\"H1961\"* your|strong=\"H1961\"* words|strong=\"H1697\"*. He|strong=\"H1931\"* with|strong=\"H1697\"* whom it|strong=\"H1931\"* is|strong=\"H1931\"* found|strong=\"H4672\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* slave|strong=\"H5650\"*; and|strong=\"H5650\"* you|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blameless|strong=\"H5355\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3381\"* they hurried|strong=\"H4116\"*, and|strong=\"H3381\"* each man took|strong=\"H3381\"* his|strong=\"H6605\"* sack down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6605\"* ground, and|strong=\"H3381\"* each man opened|strong=\"H6605\"* his|strong=\"H6605\"* sack." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1144\"* searched|strong=\"H2664\"*, beginning|strong=\"H2490\"* with|strong=\"H3615\"* the|strong=\"H4672\"* oldest|strong=\"H1419\"*, and|strong=\"H1419\"* ending|strong=\"H3615\"* at|strong=\"H4672\"* the|strong=\"H4672\"* youngest|strong=\"H6996\"*. The|strong=\"H4672\"* cup|strong=\"H1375\"* was|strong=\"H1144\"* found|strong=\"H4672\"* in|strong=\"H4672\"* Benjamin|strong=\"H1144\"*’s sack." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7725\"* they|strong=\"H5921\"* tore|strong=\"H7167\"* their|strong=\"H7725\"* clothes|strong=\"H8071\"*, and|strong=\"H7725\"* each|strong=\"H5892\"* man loaded|strong=\"H6006\"* his|strong=\"H7725\"* donkey|strong=\"H2543\"*, and|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 14, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* his|strong=\"H6440\"* brothers came|strong=\"H3063\"* to|strong=\"H6440\"* Joseph|strong=\"H3130\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* was|strong=\"H1931\"* still|strong=\"H5750\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* deed|strong=\"H4639\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"*? Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* such|strong=\"H2088\"* a|strong=\"H3068\"* man|strong=\"H2088\"* as|strong=\"H3644\"* I|strong=\"H3588\"* can|strong=\"H4100\"* indeed|strong=\"H3588\"* do|strong=\"H6213\"* divination|strong=\"H5172\"*?”" + }, + { + "verseNum": 16, + "text": "Judah|strong=\"H3063\"* said|strong=\"H1696\"*, “What|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* tell|strong=\"H1696\"* my|strong=\"H1696\"* lord? What|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* speak|strong=\"H1696\"*? How|strong=\"H4100\"* will|strong=\"H5650\"* we|strong=\"H3068\"* clear ourselves|strong=\"H6663\"*? God|strong=\"H3027\"* has|strong=\"H3063\"* found|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3027\"* iniquity|strong=\"H5771\"* of|strong=\"H3027\"* your|strong=\"H3027\"* servants|strong=\"H5650\"*. Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H3027\"* my|strong=\"H1696\"* lord’s slaves|strong=\"H5650\"*, both|strong=\"H1571\"* we|strong=\"H3068\"* and|strong=\"H3063\"* he|strong=\"H3027\"* also|strong=\"H1571\"* in|strong=\"H1696\"* whose|strong=\"H5650\"* hand|strong=\"H3027\"* the|strong=\"H3027\"* cup|strong=\"H1375\"* is|strong=\"H4100\"* found|strong=\"H4672\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* said, “Far|strong=\"H2486\"* be|strong=\"H1961\"* it|strong=\"H1931\"* from|strong=\"H5927\"* me|strong=\"H6213\"* that|strong=\"H1931\"* I|strong=\"H5650\"* should|strong=\"H6213\"* do|strong=\"H6213\"* so|strong=\"H6213\"*. The|strong=\"H6213\"* man in|strong=\"H6213\"* whose|strong=\"H5650\"* hand|strong=\"H3027\"* the|strong=\"H6213\"* cup|strong=\"H1375\"* is|strong=\"H1931\"* found|strong=\"H4672\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* slave|strong=\"H5650\"*; but|strong=\"H1961\"* as|strong=\"H1961\"* for|strong=\"H6213\"* you|strong=\"H6213\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H6213\"* peace|strong=\"H7965\"* to|strong=\"H5927\"* your|strong=\"H6213\"* father.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1696\"* Judah|strong=\"H3063\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* him|strong=\"H3644\"*, and|strong=\"H3063\"* said|strong=\"H1696\"*, “Oh|strong=\"H4994\"*, my|strong=\"H1696\"* lord, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3588\"* servant|strong=\"H5650\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H1696\"* my|strong=\"H1696\"* lord’s ears, and|strong=\"H3063\"* don’t let|strong=\"H4994\"* your|strong=\"H3588\"* anger burn|strong=\"H2734\"* against|strong=\"H2734\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* even|strong=\"H3588\"* as|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"H5650\"* lord asked|strong=\"H7592\"* his|strong=\"H7592\"* servants|strong=\"H5650\"*, saying, ‘Have|strong=\"H3426\"* you|strong=\"H7592\"* a|strong=\"H3068\"* father, or|strong=\"H5650\"* a|strong=\"H3068\"* brother?’" + }, + { + "verseNum": 20, + "text": "We|strong=\"H4191\"* said to|strong=\"H4191\"* my|strong=\"H4191\"* lord, ‘We|strong=\"H4191\"* have|strong=\"H3426\"* a|strong=\"H3068\"* father, an|strong=\"H3426\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, and|strong=\"H2205\"* a|strong=\"H3068\"* child|strong=\"H3206\"* of|strong=\"H2205\"* his|strong=\"H4191\"* old|strong=\"H2205\"* age|strong=\"H2208\"*, a|strong=\"H3068\"* little|strong=\"H6996\"* one|strong=\"H1931\"*; and|strong=\"H2205\"* his|strong=\"H4191\"* brother is|strong=\"H3426\"* dead|strong=\"H4191\"*, and|strong=\"H2205\"* he|strong=\"H1931\"* alone|strong=\"H1931\"* is|strong=\"H3426\"* left|strong=\"H3498\"* of|strong=\"H2205\"* his|strong=\"H4191\"* mother; and|strong=\"H2205\"* his|strong=\"H4191\"* father loves him|strong=\"H4191\"*.’" + }, + { + "verseNum": 21, + "text": "You|strong=\"H5921\"* said to|strong=\"H3381\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*, ‘Bring|strong=\"H3381\"* him|strong=\"H5921\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H5921\"*, that|strong=\"H5650\"* I|strong=\"H5921\"* may|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* him|strong=\"H5921\"*.’" + }, + { + "verseNum": 22, + "text": "We|strong=\"H3201\"* said to|strong=\"H4191\"* my|strong=\"H5800\"* lord, ‘The|strong=\"H5800\"* boy|strong=\"H5288\"* can|strong=\"H3201\"*’t leave|strong=\"H5800\"* his|strong=\"H5800\"* father, for|strong=\"H4191\"* if he|strong=\"H3808\"* should leave|strong=\"H5800\"* his|strong=\"H5800\"* father, his|strong=\"H5800\"* father would|strong=\"H5288\"* die|strong=\"H4191\"*.’" + }, + { + "verseNum": 23, + "text": "You|strong=\"H6440\"* said to|strong=\"H3381\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*, ‘Unless|strong=\"H3808\"* your|strong=\"H6440\"* youngest|strong=\"H6996\"* brother comes|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* you|strong=\"H6440\"*, you|strong=\"H6440\"* will|strong=\"H5650\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"* no|strong=\"H3808\"* more|strong=\"H3254\"*.’" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* we|strong=\"H3068\"* came|strong=\"H1961\"* up|strong=\"H5927\"* to|strong=\"H5927\"* your|strong=\"H3588\"* servant|strong=\"H5650\"* my|strong=\"H1961\"* father, we|strong=\"H3068\"* told|strong=\"H5046\"* him|strong=\"H5046\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* my|strong=\"H1961\"* lord." + }, + { + "verseNum": 25, + "text": "Our|strong=\"H7725\"* father said, ‘Go|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H7725\"* buy|strong=\"H7666\"* us|strong=\"H7725\"* a|strong=\"H3068\"* little|strong=\"H4592\"* food.’" + }, + { + "verseNum": 26, + "text": "We|strong=\"H3588\"* said, ‘We|strong=\"H3588\"* can|strong=\"H3201\"*’t go|strong=\"H3381\"* down|strong=\"H3381\"*. If|strong=\"H3588\"* our|strong=\"H7200\"* youngest|strong=\"H6996\"* brother is|strong=\"H3426\"* with|strong=\"H3381\"* us|strong=\"H6440\"*, then|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"*: for|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H6440\"* man|strong=\"H6440\"*’s face|strong=\"H6440\"*, unless|strong=\"H3588\"* our|strong=\"H7200\"* youngest|strong=\"H6996\"* brother is|strong=\"H3426\"* with|strong=\"H3381\"* us|strong=\"H6440\"*.’" + }, + { + "verseNum": 27, + "text": "Your|strong=\"H3045\"* servant|strong=\"H5650\"*, my|strong=\"H3045\"* father|strong=\"H3205\"*, said to|strong=\"H3205\"* us|strong=\"H3045\"*, ‘You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* my|strong=\"H3045\"* wife bore|strong=\"H3205\"* me|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H3205\"*." + }, + { + "verseNum": 28, + "text": "One|strong=\"H3808\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* I|strong=\"H5704\"* said|strong=\"H3318\"*, “Surely|strong=\"H3318\"* he|strong=\"H5704\"* is|strong=\"H3808\"* torn|strong=\"H2963\"* in|strong=\"H7200\"* pieces|strong=\"H2963\"*;” and|strong=\"H7200\"* I|strong=\"H5704\"* haven’t seen|strong=\"H7200\"* him|strong=\"H7200\"* since|strong=\"H2008\"*." + }, + { + "verseNum": 29, + "text": "If you|strong=\"H6440\"* take|strong=\"H3947\"* this|strong=\"H2088\"* one|strong=\"H2088\"* also|strong=\"H1571\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H6440\"* harm|strong=\"H7451\"* happens|strong=\"H7136\"* to|strong=\"H3381\"* him|strong=\"H6440\"*, you|strong=\"H6440\"* will|strong=\"H1571\"* bring|strong=\"H3947\"* down|strong=\"H3381\"* my|strong=\"H3947\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* with|strong=\"H5973\"* sorrow|strong=\"H7451\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.’+ 44:29 Sheol is the place of the dead.*" + }, + { + "verseNum": 30, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* when I|strong=\"H6258\"* come|strong=\"H5288\"* to|strong=\"H5650\"* your|strong=\"H6258\"* servant|strong=\"H5650\"* my|strong=\"H5650\"* father, and|strong=\"H5650\"* the|strong=\"H5650\"* boy|strong=\"H5288\"* is|strong=\"H5315\"* not|strong=\"H5315\"* with|strong=\"H5315\"* us|strong=\"H5315\"*; since|strong=\"H6258\"* his|strong=\"H5650\"* life|strong=\"H5315\"* is|strong=\"H5315\"* bound|strong=\"H7194\"* up|strong=\"H7194\"* in|strong=\"H5315\"* the|strong=\"H5650\"* boy|strong=\"H5288\"*’s life|strong=\"H5315\"*;" + }, + { + "verseNum": 31, + "text": "it|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* sees|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* is|strong=\"H5650\"* no|strong=\"H7200\"* more|strong=\"H3588\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* die|strong=\"H4191\"*. Your|strong=\"H7200\"* servants|strong=\"H5650\"* will|strong=\"H1961\"* bring|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H7200\"* gray|strong=\"H7872\"* hairs|strong=\"H7872\"* of|strong=\"H5650\"* your|strong=\"H7200\"* servant|strong=\"H5650\"*, our|strong=\"H7200\"* father, with|strong=\"H3381\"* sorrow|strong=\"H3015\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*.+ 44:31 Sheol is the place of the dead.*" + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* became|strong=\"H5650\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* the|strong=\"H3605\"* boy|strong=\"H5288\"* to|strong=\"H3117\"* my|strong=\"H3605\"* father, saying, ‘If|strong=\"H3588\"* I|strong=\"H3588\"* don’t bring|strong=\"H2398\"* him|strong=\"H5973\"* to|strong=\"H3117\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* bear|strong=\"H2398\"* the|strong=\"H3605\"* blame|strong=\"H2398\"* to|strong=\"H3117\"* my|strong=\"H3605\"* father forever|strong=\"H3605\"*.’" + }, + { + "verseNum": 33, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* servant|strong=\"H5650\"* stay|strong=\"H3427\"* instead|strong=\"H8478\"* of|strong=\"H3427\"* the|strong=\"H8478\"* boy|strong=\"H5288\"*, my|strong=\"H5927\"* lord’s slave|strong=\"H5650\"*; and|strong=\"H5650\"* let|strong=\"H4994\"* the|strong=\"H8478\"* boy|strong=\"H5288\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* his|strong=\"H8478\"* brothers." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* how|strong=\"H3588\"* will|strong=\"H5288\"* I|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* my|strong=\"H7200\"* father, if|strong=\"H3588\"* the|strong=\"H7200\"* boy|strong=\"H5288\"* isn’t with|strong=\"H5927\"* me|strong=\"H7200\"*?—lest|strong=\"H6435\"* I|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* will|strong=\"H5288\"* come|strong=\"H5927\"* on|strong=\"H7200\"* my|strong=\"H7200\"* father.”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* Joseph|strong=\"H3130\"* couldn’t control himself|strong=\"H3045\"* before|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H5921\"* him|strong=\"H7121\"*, and|strong=\"H5975\"* he|strong=\"H3605\"* called|strong=\"H7121\"* out|strong=\"H3318\"*, “Cause|strong=\"H3318\"* everyone|strong=\"H3605\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* me|strong=\"H5921\"*!” No|strong=\"H3808\"* one|strong=\"H3605\"* else|strong=\"H3808\"* stood|strong=\"H5975\"* with|strong=\"H5921\"* him|strong=\"H7121\"*, while|strong=\"H5921\"* Joseph|strong=\"H3130\"* made|strong=\"H3045\"* himself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3318\"* his|strong=\"H3605\"* brothers." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* wept|strong=\"H5414\"* aloud|strong=\"H6963\"*. The|strong=\"H8085\"* Egyptians|strong=\"H4713\"* heard|strong=\"H8085\"*, and|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 3, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H6030\"* to|strong=\"H3201\"* his|strong=\"H6440\"* brothers, “I|strong=\"H3588\"* am Joseph|strong=\"H3130\"*! Does|strong=\"H3808\"* my|strong=\"H3588\"* father still|strong=\"H5750\"* live|strong=\"H2416\"*?”" + }, + { + "verseNum": 4, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H4714\"* his|strong=\"H4376\"* brothers, “Come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H4714\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* don’t be|strong=\"H5869\"* grieved|strong=\"H6087\"*, nor|strong=\"H3588\"* angry|strong=\"H2734\"* with|strong=\"H6440\"* yourselves|strong=\"H5869\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* sold|strong=\"H4376\"* me|strong=\"H6440\"* here|strong=\"H2008\"*, for|strong=\"H3588\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H7971\"* preserve|strong=\"H4241\"* life|strong=\"H4241\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* these|strong=\"H2088\"* two|strong=\"H2088\"* years|strong=\"H8141\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* has|strong=\"H3588\"* been in|strong=\"H8141\"* the|strong=\"H3588\"* land|strong=\"H7130\"*, and|strong=\"H2568\"* there|strong=\"H2088\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* five|strong=\"H2568\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H2088\"* there|strong=\"H2088\"* will|strong=\"H5750\"* be|strong=\"H5750\"* no plowing|strong=\"H2758\"* and|strong=\"H2568\"* no harvest|strong=\"H7105\"*." + }, + { + "verseNum": 7, + "text": "God|strong=\"H7971\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H7971\"* preserve|strong=\"H2421\"* for|strong=\"H6440\"* you|strong=\"H6440\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* in|strong=\"H6440\"* the|strong=\"H6440\"* earth, and|strong=\"H7971\"* to|strong=\"H7971\"* save|strong=\"H2421\"* you|strong=\"H6440\"* alive|strong=\"H2421\"* by|strong=\"H7971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* deliverance|strong=\"H6413\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H7971\"* now|strong=\"H6258\"* it|strong=\"H7760\"* wasn’t you|strong=\"H3588\"* who|strong=\"H3605\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* here|strong=\"H2008\"*, but|strong=\"H3588\"* God|strong=\"H3808\"*, and|strong=\"H7971\"* he|strong=\"H3588\"* has|strong=\"H3588\"* made|strong=\"H7760\"* me|strong=\"H7971\"* a|strong=\"H3068\"* father to|strong=\"H7971\"* Pharaoh|strong=\"H6547\"*, lord of|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H7971\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "Hurry|strong=\"H4116\"*, and|strong=\"H1121\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* my|strong=\"H3605\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* tell|strong=\"H3605\"* him|strong=\"H7760\"*, ‘This|strong=\"H3541\"* is|strong=\"H3605\"* what|strong=\"H3541\"* your|strong=\"H3605\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"* says|strong=\"H3541\"*, “God has|strong=\"H3605\"* made|strong=\"H7760\"* me|strong=\"H7760\"* lord of|strong=\"H1121\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*. Come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H7760\"*. Don’t wait|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Goshen|strong=\"H1657\"*, and|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* near|strong=\"H7138\"* to|strong=\"H1961\"* me|strong=\"H1961\"*, you|strong=\"H3605\"*, your|strong=\"H3605\"* children|strong=\"H1121\"*, your|strong=\"H3605\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, your|strong=\"H3605\"* flocks|strong=\"H6629\"*, your|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1961\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H1004\"* provide|strong=\"H3557\"* for|strong=\"H3588\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* five|strong=\"H2568\"* years|strong=\"H8141\"* of|strong=\"H1004\"* famine|strong=\"H7458\"*; lest|strong=\"H6435\"* you|strong=\"H3588\"* come|strong=\"H3423\"* to|strong=\"H1004\"* poverty|strong=\"H3423\"*, you|strong=\"H3588\"*, and|strong=\"H1004\"* your|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"*.”’" + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, your|strong=\"H7200\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"*, and|strong=\"H5869\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* my|strong=\"H7200\"* brother Benjamin|strong=\"H1144\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2009\"* my|strong=\"H7200\"* mouth|strong=\"H6310\"* that|strong=\"H3588\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H4714\"* tell|strong=\"H5046\"* my|strong=\"H3605\"* father of|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* glory|strong=\"H3519\"* in|strong=\"H7200\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*. You|strong=\"H3605\"* shall|strong=\"H4714\"* hurry|strong=\"H4116\"* and|strong=\"H4714\"* bring|strong=\"H3381\"* my|strong=\"H3605\"* father down|strong=\"H3381\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* brother Benjamin|strong=\"H1144\"*’s neck|strong=\"H6677\"* and|strong=\"H1144\"* wept|strong=\"H1058\"*, and|strong=\"H1144\"* Benjamin|strong=\"H1144\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3651\"* kissed|strong=\"H5401\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H1696\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. After|strong=\"H5921\"* that|strong=\"H3605\"* his|strong=\"H3605\"* brothers talked|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8085\"* report|strong=\"H6963\"* of|strong=\"H1004\"* it|strong=\"H3190\"* was|strong=\"H1004\"* heard|strong=\"H8085\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*, saying|strong=\"H6963\"*, “Joseph|strong=\"H3130\"*’s brothers have|strong=\"H5869\"* come.” It|strong=\"H3190\"* pleased|strong=\"H3190\"* Pharaoh|strong=\"H6547\"* well|strong=\"H3190\"*, and|strong=\"H1004\"* his|strong=\"H8085\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* Joseph|strong=\"H3130\"*, “Tell your|strong=\"H6213\"* brothers, ‘Do|strong=\"H6213\"* this|strong=\"H2063\"*: Load|strong=\"H2943\"* your|strong=\"H6213\"* animals, and|strong=\"H3212\"* go|strong=\"H3212\"*, travel to|strong=\"H3212\"* the|strong=\"H6213\"* land of|strong=\"H6213\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 18, + "text": "Take|strong=\"H3947\"* your|strong=\"H5414\"* father and|strong=\"H1004\"* your|strong=\"H5414\"* households|strong=\"H1004\"*, and|strong=\"H1004\"* come to|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H1004\"* I|strong=\"H5414\"* will|strong=\"H4714\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* good|strong=\"H2898\"* of|strong=\"H1004\"* the|strong=\"H5414\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, and|strong=\"H1004\"* you|strong=\"H5414\"* will|strong=\"H4714\"* eat the|strong=\"H5414\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H5414\"* land.’" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3947\"* you|strong=\"H6680\"* are|strong=\"H4714\"* commanded|strong=\"H6680\"* to|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2063\"*: Take|strong=\"H3947\"* wagons|strong=\"H5699\"* out|strong=\"H3947\"* of|strong=\"H6213\"* the|strong=\"H3947\"* land of|strong=\"H6213\"* Egypt|strong=\"H4714\"* for|strong=\"H6213\"* your|strong=\"H3947\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H4714\"* for|strong=\"H6213\"* your|strong=\"H3947\"* wives, and|strong=\"H4714\"* bring|strong=\"H3947\"* your|strong=\"H3947\"* father, and|strong=\"H4714\"* come." + }, + { + "verseNum": 20, + "text": "Also|strong=\"H5869\"*, don’t concern|strong=\"H2347\"* yourselves|strong=\"H5869\"* about|strong=\"H5921\"* your|strong=\"H3605\"* belongings, for|strong=\"H3588\"* the|strong=\"H3605\"* good|strong=\"H2898\"* of|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3627\"* Egypt|strong=\"H4714\"* is|strong=\"H1931\"* yours.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* wagons|strong=\"H5699\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* provision|strong=\"H6720\"* for|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H2568\"* gave|strong=\"H5414\"* each|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* changes|strong=\"H2487\"* of|strong=\"H3605\"* clothing|strong=\"H8071\"*, but|strong=\"H3605\"* to|strong=\"H5414\"* Benjamin|strong=\"H1144\"* he|strong=\"H2568\"* gave|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* pieces of|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* five|strong=\"H2568\"* changes|strong=\"H2487\"* of|strong=\"H3605\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H5375\"* following|strong=\"H1870\"* to|strong=\"H7971\"* his|strong=\"H5375\"* father: ten|strong=\"H6235\"* donkeys|strong=\"H2543\"* loaded|strong=\"H5375\"* with|strong=\"H4714\"* the|strong=\"H5375\"* good|strong=\"H2898\"* things|strong=\"H2898\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"*, and|strong=\"H7971\"* ten|strong=\"H6235\"* female donkeys|strong=\"H2543\"* loaded|strong=\"H5375\"* with|strong=\"H4714\"* grain|strong=\"H1250\"* and|strong=\"H7971\"* bread|strong=\"H3899\"* and|strong=\"H7971\"* provision|strong=\"H3899\"* for|strong=\"H7971\"* his|strong=\"H5375\"* father by|strong=\"H1870\"* the|strong=\"H5375\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* brothers away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H1870\"* departed|strong=\"H3212\"*. He|strong=\"H7971\"* said to|strong=\"H3212\"* them|strong=\"H7971\"*, “See that|strong=\"H3212\"* you|strong=\"H7971\"* don’t quarrel|strong=\"H7264\"* on|strong=\"H1870\"* the|strong=\"H7971\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"H3667\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H5927\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5927\"* land of|strong=\"H5927\"* Canaan|strong=\"H3667\"*, to|strong=\"H5927\"* Jacob|strong=\"H3290\"* their|strong=\"H3290\"* father." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, saying, “Joseph|strong=\"H3130\"* is|strong=\"H1931\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*, and|strong=\"H4714\"* he|strong=\"H1931\"* is|strong=\"H1931\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3820\"* Egypt|strong=\"H4714\"*.” His|strong=\"H3605\"* heart|strong=\"H3820\"* fainted|strong=\"H6313\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* didn’t believe them|strong=\"H5046\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1697\"* told|strong=\"H1696\"* him|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Joseph|strong=\"H3130\"*, which|strong=\"H1697\"* he|strong=\"H3605\"* had|strong=\"H3130\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7971\"*. When|strong=\"H7200\"* he|strong=\"H3605\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* wagons|strong=\"H5699\"* which|strong=\"H1697\"* Joseph|strong=\"H3130\"* had|strong=\"H3130\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* carry|strong=\"H5375\"* him|strong=\"H7971\"*, the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1697\"* Jacob|strong=\"H3290\"*, their|strong=\"H3605\"* father, revived|strong=\"H2421\"*." + }, + { + "verseNum": 28, + "text": "Israel|strong=\"H3478\"* said, “It|strong=\"H7200\"* is|strong=\"H3478\"* enough|strong=\"H7227\"*. Joseph|strong=\"H3130\"* my|strong=\"H7200\"* son|strong=\"H1121\"* is|strong=\"H3478\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*. I|strong=\"H2962\"* will|strong=\"H3478\"* go|strong=\"H3212\"* and|strong=\"H1121\"* see|strong=\"H7200\"* him|strong=\"H7200\"* before|strong=\"H2962\"* I|strong=\"H2962\"* die|strong=\"H4191\"*.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* with|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3478\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Beersheba, and|strong=\"H3478\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* to|strong=\"H3478\"* the|strong=\"H3605\"* God of|strong=\"H2077\"* his|strong=\"H3605\"* father, Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 2, + "text": "God spoke to|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H2009\"* visions|strong=\"H4759\"* of|strong=\"H4759\"* the|strong=\"H2009\"* night|strong=\"H3915\"*, and|strong=\"H3478\"* said, “Jacob|strong=\"H3290\"*, Jacob|strong=\"H3290\"*!”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* am God, the|strong=\"H3588\"* God of|strong=\"H3372\"* your|strong=\"H7760\"* father. Don’t be|strong=\"H1471\"* afraid|strong=\"H3372\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H1471\"* make|strong=\"H7760\"* of|strong=\"H3372\"* you|strong=\"H3588\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H1571\"* go|strong=\"H5927\"* down|strong=\"H3381\"* with|strong=\"H5973\"* you|strong=\"H5921\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*. I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* surely|strong=\"H5927\"* bring|strong=\"H5927\"* you|strong=\"H5921\"* up|strong=\"H5927\"* again|strong=\"H1571\"*. Joseph|strong=\"H3130\"*’s hand|strong=\"H3027\"* will|strong=\"H1571\"* close|strong=\"H7896\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 5, + "text": "Jacob|strong=\"H3290\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3478\"* Beersheba, and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* carried|strong=\"H5375\"* Jacob|strong=\"H3290\"*, their|strong=\"H5375\"* father|strong=\"H1121\"*, their|strong=\"H5375\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H1121\"* their|strong=\"H5375\"* wives, in|strong=\"H3478\"* the|strong=\"H5375\"* wagons|strong=\"H5699\"* which|strong=\"H3478\"* Pharaoh|strong=\"H6547\"* had|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* carry|strong=\"H5375\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H4714\"* their|strong=\"H3605\"* goods|strong=\"H7399\"*, which|strong=\"H7399\"* they|strong=\"H3605\"* had|strong=\"H3290\"* gotten|strong=\"H7408\"* in|strong=\"H2233\"* the|strong=\"H3605\"* land of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, and|strong=\"H4714\"* came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*—Jacob|strong=\"H3290\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"* with|strong=\"H4714\"* him|strong=\"H3947\"*," + }, + { + "verseNum": 7, + "text": "his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"* with|strong=\"H4714\"* him|strong=\"H3605\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ daughters|strong=\"H1323\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* brought|strong=\"H2233\"* all|strong=\"H3605\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"* with|strong=\"H4714\"* him|strong=\"H3605\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, Jacob|strong=\"H3290\"* and|strong=\"H1121\"* his|strong=\"H3478\"* sons|strong=\"H1121\"*: Reuben|strong=\"H7205\"*, Jacob|strong=\"H3290\"*’s firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*: Hanoch|strong=\"H2585\"*, Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Jemuel|strong=\"H3223\"*, Jamin|strong=\"H3226\"*, Ohad, Jachin|strong=\"H3199\"*, Zohar|strong=\"H6714\"*, and|strong=\"H1121\"* Shaul|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"* woman|strong=\"H3669\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon|strong=\"H1648\"*, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"*, Onan, Shelah|strong=\"H7956\"*, Perez|strong=\"H6557\"*, and|strong=\"H1121\"* Zerah|strong=\"H2226\"*; but|strong=\"H1961\"* Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*. The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* were|strong=\"H1961\"* Hezron|strong=\"H2696\"* and|strong=\"H1121\"* Hamul|strong=\"H2538\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Tola|strong=\"H8439\"*, Puvah|strong=\"H6312\"*, Iob|strong=\"H3102\"*, and|strong=\"H1121\"* Shimron|strong=\"H8110\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: Sered|strong=\"H5624\"*, Elon, and|strong=\"H1121\"* Jahleel|strong=\"H3177\"*." + }, + { + "verseNum": 15, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Leah|strong=\"H3812\"*, whom she bore|strong=\"H3205\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"* in|strong=\"H5315\"* Paddan|strong=\"H6307\"* Aram|strong=\"H6307\"*, with|strong=\"H5315\"* his|strong=\"H3605\"* daughter|strong=\"H1323\"* Dinah|strong=\"H1783\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* thirty-three|strong=\"H7970\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*: Ziphion|strong=\"H6837\"*, Haggi|strong=\"H2291\"*, Shuni|strong=\"H7764\"*, Ezbon, Eri|strong=\"H6179\"*, Arodi, and|strong=\"H1121\"* Areli." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher: Imnah|strong=\"H3232\"*, Ishvah|strong=\"H3438\"*, Ishvi|strong=\"H3440\"*, Beriah|strong=\"H1283\"*, and|strong=\"H1121\"* Serah|strong=\"H8294\"* their|strong=\"H8294\"* sister. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: Heber|strong=\"H2268\"* and|strong=\"H1121\"* Malchiel|strong=\"H4439\"*." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zilpah|strong=\"H2153\"*, whom Laban|strong=\"H3837\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Leah|strong=\"H3812\"*, his|strong=\"H5414\"* daughter|strong=\"H1323\"*, and|strong=\"H1121\"* these she bore|strong=\"H3205\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"*, even sixteen|strong=\"H8337\"* souls|strong=\"H5315\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*, Jacob|strong=\"H3290\"*’s wife: Joseph|strong=\"H3130\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"H3205\"* Joseph|strong=\"H3130\"* in|strong=\"H4519\"* the|strong=\"H3205\"* land of|strong=\"H1323\"* Egypt|strong=\"H4714\"* were|strong=\"H4714\"* born|strong=\"H3205\"* Manasseh|strong=\"H4519\"* and|strong=\"H3548\"* Ephraim, whom Asenath, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Potiphera|strong=\"H6319\"*, priest|strong=\"H3548\"* of|strong=\"H1323\"* On|strong=\"H3205\"*, bore|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Bela|strong=\"H1106\"*, Becher|strong=\"H1071\"*, Ashbel, Gera|strong=\"H1617\"*, Naaman|strong=\"H5283\"*, Ehi, Rosh|strong=\"H7220\"*, Muppim|strong=\"H4649\"*, Huppim|strong=\"H2650\"*, and|strong=\"H1121\"* Ard." + }, + { + "verseNum": 22, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rachel|strong=\"H7354\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Jacob|strong=\"H3290\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* fourteen|strong=\"H6240\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*: Hushim|strong=\"H2366\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Jahzeel|strong=\"H3183\"*, Guni|strong=\"H1476\"*, Jezer|strong=\"H3337\"*, and|strong=\"H1121\"* Shillem|strong=\"H8006\"*." + }, + { + "verseNum": 25, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"*, whom Laban|strong=\"H3837\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Rachel|strong=\"H7354\"*, his|strong=\"H3605\"* daughter|strong=\"H1323\"*, and|strong=\"H1121\"* these|strong=\"H3605\"* she bore|strong=\"H3205\"* to|strong=\"H5414\"* Jacob|strong=\"H3290\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* seven|strong=\"H7651\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* came|strong=\"H3318\"* with|strong=\"H3318\"* Jacob|strong=\"H3290\"* into|strong=\"H3318\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* his|strong=\"H3605\"* direct|strong=\"H3409\"* offspring|strong=\"H1121\"*, in|strong=\"H5315\"* addition to|strong=\"H3318\"* Jacob|strong=\"H3290\"*’s sons|strong=\"H1121\"*’ wives, all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* were|strong=\"H1121\"* sixty-six|strong=\"H8346\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H4714\"* him|strong=\"H3205\"* in|strong=\"H1004\"* Egypt|strong=\"H4714\"*, were|strong=\"H1121\"* two|strong=\"H8147\"* souls|strong=\"H5315\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, who|strong=\"H3605\"* came|strong=\"H4714\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, were|strong=\"H1121\"* seventy|strong=\"H7657\"*." + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H7971\"* sent|strong=\"H7971\"* Judah|strong=\"H3063\"* before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7971\"* Joseph|strong=\"H3130\"*, to|strong=\"H7971\"* show the|strong=\"H6440\"* way|strong=\"H7971\"* before|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7971\"* Goshen|strong=\"H1657\"*, and|strong=\"H3063\"* they|strong=\"H6440\"* came|strong=\"H3063\"* into|strong=\"H3063\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Goshen|strong=\"H1657\"*." + }, + { + "verseNum": 29, + "text": "Joseph|strong=\"H3130\"* prepared his|strong=\"H5921\"* chariot|strong=\"H4818\"*, and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* meet|strong=\"H7125\"* Israel|strong=\"H3478\"*, his|strong=\"H5921\"* father, in|strong=\"H5921\"* Goshen|strong=\"H1657\"*. He|strong=\"H5921\"* presented|strong=\"H7200\"* himself|strong=\"H5307\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"*, and|strong=\"H3478\"* wept|strong=\"H1058\"* on|strong=\"H5921\"* his|strong=\"H5921\"* neck|strong=\"H6677\"* a|strong=\"H3068\"* good while|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “Now|strong=\"H6471\"* let|strong=\"H6471\"* me|strong=\"H6440\"* die|strong=\"H4191\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3478\"* seen|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 31, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H5927\"* his|strong=\"H5046\"* brothers, and|strong=\"H1004\"* to|strong=\"H5927\"* his|strong=\"H5046\"* father’s house|strong=\"H1004\"*, “I|strong=\"H1004\"* will|strong=\"H1004\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H1004\"* speak with|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1004\"* will|strong=\"H1004\"* tell|strong=\"H5046\"* him|strong=\"H5046\"*, ‘My|strong=\"H5046\"* brothers, and|strong=\"H1004\"* my|strong=\"H5046\"* father’s house|strong=\"H1004\"*, who|strong=\"H6547\"* were|strong=\"H3130\"* in|strong=\"H1004\"* the|strong=\"H5927\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, have|strong=\"H1004\"* come|strong=\"H5927\"* to|strong=\"H5927\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 32, + "text": "These|strong=\"H3605\"* men|strong=\"H3605\"* are|strong=\"H1961\"* shepherds|strong=\"H7462\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* keepers of|strong=\"H3605\"* livestock|strong=\"H4735\"*, and|strong=\"H6629\"* they|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H1961\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H6629\"* their|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"*.’" + }, + { + "verseNum": 33, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* summons|strong=\"H7121\"* you|strong=\"H3588\"*, and|strong=\"H6547\"* will|strong=\"H1961\"* say, ‘What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3588\"* occupation|strong=\"H4639\"*?’" + }, + { + "verseNum": 34, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5650\"* say, ‘Your|strong=\"H3605\"* servants|strong=\"H5650\"* have|strong=\"H1961\"* been|strong=\"H1961\"* keepers of|strong=\"H3427\"* livestock|strong=\"H4735\"* from|strong=\"H5704\"* our|strong=\"H3605\"* youth|strong=\"H5271\"* even|strong=\"H1571\"* until|strong=\"H5704\"* now|strong=\"H6258\"*, both|strong=\"H1571\"* we|strong=\"H3068\"*, and|strong=\"H5650\"* our|strong=\"H3605\"* fathers:’ that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*; for|strong=\"H3588\"* every|strong=\"H3605\"* shepherd|strong=\"H7462\"* is|strong=\"H1571\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3130\"* Joseph|strong=\"H3130\"* went|strong=\"H3130\"* in|strong=\"H6629\"* and|strong=\"H6629\"* told|strong=\"H5046\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6629\"* said, “My|strong=\"H3605\"* father and|strong=\"H6629\"* my|strong=\"H3605\"* brothers, with|strong=\"H3605\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*, their|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H6629\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3605\"* own, have|strong=\"H3605\"* come out|strong=\"H3605\"* of|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*; and|strong=\"H6629\"* behold|strong=\"H2005\"*, they|strong=\"H3605\"* are|strong=\"H1241\"* in|strong=\"H6629\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Goshen|strong=\"H1657\"*.”" + }, + { + "verseNum": 2, + "text": "From|strong=\"H6440\"* among|strong=\"H7097\"* his|strong=\"H3947\"* brothers he|strong=\"H2568\"* took|strong=\"H3947\"* five|strong=\"H2568\"* men|strong=\"H3947\"*, and|strong=\"H2568\"* presented|strong=\"H3322\"* them|strong=\"H6440\"* to|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 3, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H5650\"* his|strong=\"H7462\"* brothers, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H1571\"* occupation|strong=\"H4639\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3588\"* also|strong=\"H3588\"* said to|strong=\"H5650\"* Pharaoh|strong=\"H6547\"*, “We|strong=\"H3588\"* have|strong=\"H5650\"* come|strong=\"H4994\"* to|strong=\"H5650\"* live|strong=\"H3427\"* as|strong=\"H3588\"* foreigners|strong=\"H1481\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land, for|strong=\"H3588\"* there|strong=\"H3427\"* is|strong=\"H5650\"* no pasture|strong=\"H4829\"* for|strong=\"H3588\"* your|strong=\"H3588\"* servants|strong=\"H5650\"*’ flocks|strong=\"H6629\"*. For|strong=\"H3588\"* the|strong=\"H3588\"* famine|strong=\"H7458\"* is|strong=\"H5650\"* severe|strong=\"H3515\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3588\"* servants|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*.”" + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"* spoke to|strong=\"H6547\"* Joseph|strong=\"H3130\"*, saying, “Your|strong=\"H3130\"* father and|strong=\"H6547\"* your|strong=\"H3130\"* brothers have come to|strong=\"H6547\"* you." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Egypt|strong=\"H4714\"* is|strong=\"H3426\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Make|strong=\"H7760\"* your|strong=\"H5921\"* father and|strong=\"H4714\"* your|strong=\"H5921\"* brothers dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* best|strong=\"H4315\"* of|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"*. Let|strong=\"H7760\"* them|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Goshen|strong=\"H1657\"*. If|strong=\"H3426\"* you|strong=\"H6440\"* know|strong=\"H3045\"* any|strong=\"H3426\"* able|strong=\"H2428\"* men|strong=\"H2428\"* among|strong=\"H5921\"* them|strong=\"H5921\"*, then|strong=\"H3045\"* put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H3427\"* charge|strong=\"H5921\"* of|strong=\"H3427\"* my|strong=\"H7760\"* livestock|strong=\"H4735\"*.”" + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* brought|strong=\"H3130\"* in|strong=\"H6440\"* Jacob|strong=\"H3290\"*, his|strong=\"H6440\"* father, and|strong=\"H6440\"* set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H6440\"* Jacob|strong=\"H3290\"* blessed|strong=\"H1288\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 8, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H3117\"* Jacob|strong=\"H3290\"*, “How|strong=\"H4100\"* old|strong=\"H8141\"* are|strong=\"H3117\"* you|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*, “The|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* my|strong=\"H1961\"* pilgrimage|strong=\"H4033\"* are|strong=\"H3117\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*. The|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* my|strong=\"H1961\"* life|strong=\"H2416\"* have|strong=\"H1961\"* been|strong=\"H1961\"* few|strong=\"H4592\"* and|strong=\"H3967\"* evil|strong=\"H7451\"*. They|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* attained|strong=\"H5381\"* to|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* the|strong=\"H3117\"* life|strong=\"H2416\"* of|strong=\"H3117\"* my|strong=\"H1961\"* fathers in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H1961\"* pilgrimage|strong=\"H4033\"*.”" + }, + { + "verseNum": 10, + "text": "Jacob|strong=\"H3290\"* blessed|strong=\"H1288\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 11, + "text": "Joseph|strong=\"H3130\"* placed|strong=\"H5414\"* his|strong=\"H5414\"* father and|strong=\"H4714\"* his|strong=\"H5414\"* brothers, and|strong=\"H4714\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* possession in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* the|strong=\"H5414\"* best|strong=\"H4315\"* of|strong=\"H3427\"* the|strong=\"H5414\"* land, in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* Rameses|strong=\"H7486\"*, as|strong=\"H3427\"* Pharaoh|strong=\"H6547\"* had|strong=\"H3130\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* provided|strong=\"H3557\"* his|strong=\"H3605\"* father, his|strong=\"H3605\"* brothers, and|strong=\"H1004\"* all|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father’s household|strong=\"H1004\"* with|strong=\"H1004\"* bread|strong=\"H3899\"*, according|strong=\"H6310\"* to|strong=\"H1004\"* the|strong=\"H3605\"* sizes of|strong=\"H1004\"* their|strong=\"H3605\"* families|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "There|strong=\"H3605\"* was|strong=\"H7458\"* no|strong=\"H3605\"* bread|strong=\"H3899\"* in|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* very|strong=\"H3966\"* severe|strong=\"H3515\"*, so|strong=\"H3966\"* that|strong=\"H3588\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"* and|strong=\"H3899\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"* fainted|strong=\"H3856\"* by|strong=\"H6440\"* reason|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* gathered|strong=\"H3950\"* up|strong=\"H3950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H1004\"* found|strong=\"H4672\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, and|strong=\"H3701\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, for|strong=\"H4714\"* the|strong=\"H3605\"* grain|strong=\"H7668\"* which|strong=\"H1992\"* they|strong=\"H1992\"* bought|strong=\"H7666\"*: and|strong=\"H3701\"* Joseph|strong=\"H3130\"* brought|strong=\"H3130\"* the|strong=\"H3605\"* money|strong=\"H3701\"* into|strong=\"H4714\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* money|strong=\"H3701\"* was|strong=\"H3130\"* all|strong=\"H3605\"* spent|strong=\"H8552\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"*, and|strong=\"H3701\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Canaan|strong=\"H3667\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* came|strong=\"H4714\"* to|strong=\"H4191\"* Joseph|strong=\"H3130\"*, and|strong=\"H3701\"* said, “Give|strong=\"H3051\"* us|strong=\"H3051\"* bread|strong=\"H3899\"*, for|strong=\"H3588\"* why|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H4191\"* your|strong=\"H3605\"* presence|strong=\"H5048\"*? For|strong=\"H3588\"* our|strong=\"H3605\"* money|strong=\"H3701\"* fails.”" + }, + { + "verseNum": 16, + "text": "Joseph|strong=\"H3130\"* said, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*; and|strong=\"H3701\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* food for|strong=\"H3701\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*, if your|strong=\"H5414\"* money|strong=\"H3701\"* is|strong=\"H3701\"* gone.”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H8141\"* brought|strong=\"H5414\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"* to|strong=\"H5414\"* Joseph|strong=\"H3130\"*, and|strong=\"H3899\"* Joseph|strong=\"H3130\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"* in|strong=\"H8141\"* exchange|strong=\"H5414\"* for|strong=\"H3605\"* the|strong=\"H3605\"* horses|strong=\"H5483\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* herds|strong=\"H1241\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* donkeys|strong=\"H2543\"*: and|strong=\"H3899\"* he|strong=\"H1931\"* fed|strong=\"H5095\"* them|strong=\"H5414\"* with|strong=\"H3899\"* bread|strong=\"H3899\"* in|strong=\"H8141\"* exchange|strong=\"H5414\"* for|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"* for|strong=\"H3605\"* that|strong=\"H3605\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* that|strong=\"H3588\"* year|strong=\"H8141\"* was|strong=\"H1931\"* ended|strong=\"H8552\"*, they|strong=\"H3588\"* came|strong=\"H8141\"* to|strong=\"H6440\"* him|strong=\"H6440\"* the|strong=\"H6440\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, and|strong=\"H3701\"* said to|strong=\"H6440\"* him|strong=\"H6440\"*, “We|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hide|strong=\"H3582\"* from|strong=\"H6440\"* my|strong=\"H3588\"* lord how|strong=\"H3588\"* our|strong=\"H3588\"* money|strong=\"H3701\"* is|strong=\"H1931\"* all|strong=\"H8552\"* spent|strong=\"H8552\"*, and|strong=\"H3701\"* the|strong=\"H6440\"* herds|strong=\"H4735\"* of|strong=\"H8141\"* livestock|strong=\"H4735\"* are|strong=\"H8141\"* my|strong=\"H3588\"* lord’s. There|strong=\"H7604\"* is|strong=\"H1931\"* nothing|strong=\"H3808\"* left|strong=\"H7604\"* in|strong=\"H8141\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H8141\"* my|strong=\"H3588\"* lord, but|strong=\"H3588\"* our|strong=\"H3588\"* bodies|strong=\"H1472\"*, and|strong=\"H3701\"* our|strong=\"H3588\"* lands." + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* die|strong=\"H4191\"* before|strong=\"H5869\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, both|strong=\"H1571\"* we|strong=\"H3068\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land? Buy|strong=\"H7069\"* us|strong=\"H5414\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land for|strong=\"H5650\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* we|strong=\"H3068\"* and|strong=\"H3899\"* our|strong=\"H5414\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* Pharaoh|strong=\"H6547\"*. Give|strong=\"H5414\"* us|strong=\"H5414\"* seed|strong=\"H2233\"*, that|strong=\"H5414\"* we|strong=\"H3068\"* may|strong=\"H1961\"* live|strong=\"H2421\"*, and|strong=\"H3899\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, and|strong=\"H3899\"* that|strong=\"H5414\"* the|strong=\"H5414\"* land won’t be|strong=\"H1961\"* desolate|strong=\"H3456\"*.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H1961\"* Joseph|strong=\"H3130\"* bought|strong=\"H7069\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Egypt|strong=\"H4714\"* for|strong=\"H3588\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H7704\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* sold|strong=\"H4376\"* his|strong=\"H3605\"* field|strong=\"H7704\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4714\"* the|strong=\"H3605\"* land|strong=\"H7704\"* became|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s." + }, + { + "verseNum": 21, + "text": "As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H5704\"* people|strong=\"H5971\"*, he|strong=\"H5704\"* moved them|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* from|strong=\"H5704\"* one|strong=\"H5892\"* end|strong=\"H7097\"* of|strong=\"H5892\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* other|strong=\"H7097\"* end|strong=\"H7097\"* of|strong=\"H5892\"* it|strong=\"H5704\"*." + }, + { + "verseNum": 22, + "text": "Only|strong=\"H7535\"* he|strong=\"H3588\"* didn’t buy|strong=\"H7069\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* had|strong=\"H3588\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* from|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3548\"* ate their|strong=\"H5414\"* portion|strong=\"H2706\"* which|strong=\"H3548\"* Pharaoh|strong=\"H6547\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*. That|strong=\"H3588\"* is|strong=\"H3651\"* why|strong=\"H5921\"* they|strong=\"H3588\"* didn’t sell|strong=\"H4376\"* their|strong=\"H5414\"* land." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3117\"* Joseph|strong=\"H3130\"* said to|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* have|strong=\"H5971\"* bought|strong=\"H7069\"* you|strong=\"H3117\"* and|strong=\"H3117\"* your|strong=\"H2232\"* land today|strong=\"H3117\"* for|strong=\"H3117\"* Pharaoh|strong=\"H6547\"*. Behold|strong=\"H2005\"*, here|strong=\"H2005\"* is|strong=\"H3117\"* seed|strong=\"H2233\"* for|strong=\"H3117\"* you|strong=\"H3117\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H5971\"* sow|strong=\"H2232\"* the|strong=\"H3117\"* land." + }, + { + "verseNum": 24, + "text": "It|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* at|strong=\"H1004\"* the|strong=\"H5414\"* harvests|strong=\"H8393\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H1004\"* give|strong=\"H5414\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3027\"* four parts|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H5414\"* own|strong=\"H1961\"*, for|strong=\"H3027\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, for|strong=\"H3027\"* your|strong=\"H5414\"* food|strong=\"H1004\"*, for|strong=\"H3027\"* them|strong=\"H5414\"* of|strong=\"H1004\"* your|strong=\"H5414\"* households|strong=\"H1004\"*, and|strong=\"H3027\"* for|strong=\"H3027\"* food|strong=\"H1004\"* for|strong=\"H3027\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*.”" + }, + { + "verseNum": 25, + "text": "They said, “You|strong=\"H4672\"* have|strong=\"H1961\"* saved|strong=\"H2421\"* our|strong=\"H5650\"* lives|strong=\"H2421\"*! Let|strong=\"H1961\"* us|strong=\"H1961\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* the|strong=\"H1961\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* my|strong=\"H1961\"* lord, and|strong=\"H5869\"* we|strong=\"H3068\"* will|strong=\"H1961\"* be|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 26, + "text": "Joseph|strong=\"H3130\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, that|strong=\"H3117\"* Pharaoh|strong=\"H6547\"* should|strong=\"H3117\"* have|strong=\"H1961\"* the|strong=\"H5921\"* fifth|strong=\"H2569\"*. Only|strong=\"H7535\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* alone didn’t become|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s." + }, + { + "verseNum": 27, + "text": "Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Goshen|strong=\"H1657\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* got themselves possessions therein|strong=\"H3427\"*, and|strong=\"H3478\"* were|strong=\"H3478\"* fruitful|strong=\"H6509\"*, and|strong=\"H3478\"* multiplied|strong=\"H7235\"* exceedingly|strong=\"H3966\"*." + }, + { + "verseNum": 28, + "text": "Jacob|strong=\"H3290\"* lived|strong=\"H2421\"* in|strong=\"H8141\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"*. So|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jacob|strong=\"H3290\"*, the|strong=\"H3117\"* years|strong=\"H8141\"* of|strong=\"H3117\"* his|strong=\"H1961\"* life|strong=\"H2416\"*, were|strong=\"H1961\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* forty-seven years|strong=\"H8141\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H6213\"* time|strong=\"H3117\"* came|strong=\"H7126\"* near|strong=\"H7126\"* that|strong=\"H3117\"* Israel|strong=\"H3478\"* must|strong=\"H4191\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* called|strong=\"H7121\"* his|strong=\"H7760\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “If|strong=\"H1121\"* now|strong=\"H4994\"* I|strong=\"H3117\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3478\"* your|strong=\"H7760\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* put|strong=\"H7760\"* your|strong=\"H7760\"* hand|strong=\"H3027\"* under|strong=\"H8478\"* my|strong=\"H7760\"* thigh|strong=\"H3409\"*, and|strong=\"H1121\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H1121\"* truly|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H4994\"*. Please|strong=\"H4994\"* don’t bury|strong=\"H6912\"* me|strong=\"H4994\"* in|strong=\"H3478\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 30, + "text": "but|strong=\"H5973\"* when|strong=\"H6213\"* I|strong=\"H1697\"* sleep|strong=\"H7901\"* with|strong=\"H5973\"* my|strong=\"H5375\"* fathers, you|strong=\"H6213\"* shall|strong=\"H4714\"* carry|strong=\"H5375\"* me|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* bury|strong=\"H6912\"* me|strong=\"H6213\"* in|strong=\"H6213\"* their|strong=\"H5375\"* burying|strong=\"H6912\"* place|strong=\"H6900\"*.”" + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* said, “Swear|strong=\"H7650\"* to|strong=\"H3478\"* me|strong=\"H5921\"*,” and|strong=\"H3478\"* he|strong=\"H5921\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* him|strong=\"H5921\"*. Then|strong=\"H7218\"* Israel|strong=\"H3478\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4296\"*’s head|strong=\"H7218\"*." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H3947\"* things|strong=\"H1697\"*, someone said|strong=\"H1697\"* to|strong=\"H1961\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H2009\"*, your|strong=\"H3947\"* father|strong=\"H1121\"* is|strong=\"H1697\"* sick|strong=\"H2470\"*.” He|strong=\"H8147\"* took|strong=\"H3947\"* with|strong=\"H5973\"* him|strong=\"H5973\"* his|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 2, + "text": "Someone told|strong=\"H5046\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* said, “Behold|strong=\"H2009\"*, your|strong=\"H5921\"* son|strong=\"H1121\"* Joseph|strong=\"H3130\"* comes to|strong=\"H3478\"* you|strong=\"H5921\"*,” and|strong=\"H1121\"* Israel|strong=\"H3478\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, and|strong=\"H1121\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 3, + "text": "Jacob|strong=\"H3290\"* said to|strong=\"H7200\"* Joseph|strong=\"H3130\"*, “God Almighty|strong=\"H7706\"* appeared|strong=\"H7200\"* to|strong=\"H7200\"* me|strong=\"H7200\"* at|strong=\"H7200\"* Luz|strong=\"H3870\"* in|strong=\"H7200\"* the|strong=\"H7200\"* land of|strong=\"H7200\"* Canaan|strong=\"H3667\"*, and|strong=\"H7200\"* blessed|strong=\"H1288\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H5971\"* said to|strong=\"H5414\"* me|strong=\"H5414\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* make|strong=\"H5414\"* you|strong=\"H5414\"* fruitful|strong=\"H6509\"*, and|strong=\"H5971\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* I|strong=\"H2005\"* will|strong=\"H5971\"* make|strong=\"H5414\"* of|strong=\"H2233\"* you|strong=\"H5414\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H2233\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* give|strong=\"H5414\"* this|strong=\"H2063\"* land to|strong=\"H5414\"* your|strong=\"H5414\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H5414\"* for|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* possession|strong=\"H2233\"*.’" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* your|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H5704\"* you|strong=\"H5704\"* in|strong=\"H1121\"* the|strong=\"H3205\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* before|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1961\"* to|strong=\"H5704\"* you|strong=\"H5704\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, are|strong=\"H1992\"* mine; Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, even|strong=\"H5704\"* as|strong=\"H5704\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* Simeon|strong=\"H8095\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* mine." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5921\"* offspring|strong=\"H4138\"*, whom|strong=\"H7121\"* you|strong=\"H5921\"* become|strong=\"H1961\"* the|strong=\"H5921\"* father|strong=\"H3205\"* of|strong=\"H3205\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* yours. They|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* called|strong=\"H7121\"* after|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3205\"* their|strong=\"H5921\"* brothers in|strong=\"H5921\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H8033\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, when|strong=\"H5921\"* I|strong=\"H5921\"* came from|strong=\"H5921\"* Paddan|strong=\"H6307\"*, Rachel|strong=\"H7354\"* died|strong=\"H4191\"* beside|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1870\"* Canaan|strong=\"H3667\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*, when|strong=\"H5921\"* there|strong=\"H8033\"* was|strong=\"H1931\"* still|strong=\"H5750\"* some|strong=\"H3530\"* distance|strong=\"H3530\"* to|strong=\"H4191\"* come|strong=\"H5750\"* to|strong=\"H4191\"* Ephrath, and|strong=\"H1870\"* I|strong=\"H5921\"* buried|strong=\"H6912\"* her|strong=\"H5921\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H4191\"* Ephrath (also|strong=\"H5750\"* called|strong=\"H8033\"* Bethlehem|strong=\"H1035\"*).”" + }, + { + "verseNum": 8, + "text": "Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Joseph|strong=\"H3130\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* are|strong=\"H1121\"* these?”" + }, + { + "verseNum": 9, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H5414\"* his|strong=\"H5414\"* father|strong=\"H1121\"*, “They|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H5414\"* sons|strong=\"H1121\"*, whom|strong=\"H1992\"* God|strong=\"H5414\"* has|strong=\"H2088\"* given|strong=\"H5414\"* me|strong=\"H5414\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* dim|strong=\"H3513\"* for|strong=\"H3478\"* age|strong=\"H2207\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H3808\"* couldn’t see|strong=\"H7200\"* well|strong=\"H5869\"*. Joseph|strong=\"H3808\"* brought|strong=\"H5066\"* them|strong=\"H7200\"* near|strong=\"H5066\"* to|strong=\"H3478\"* him|strong=\"H7200\"*; and|strong=\"H3478\"* he|strong=\"H3808\"* kissed|strong=\"H5401\"* them|strong=\"H7200\"*, and|strong=\"H3478\"* embraced|strong=\"H2263\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Joseph|strong=\"H3130\"*, “I|strong=\"H2009\"* didn’t think|strong=\"H7200\"* I|strong=\"H2009\"* would|strong=\"H3478\"* see|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* behold|strong=\"H2009\"*, God|strong=\"H3808\"* has|strong=\"H3478\"* let|strong=\"H3808\"* me|strong=\"H6440\"* see|strong=\"H7200\"* your|strong=\"H6440\"* offspring|strong=\"H2233\"* also|strong=\"H1571\"*.”" + }, + { + "verseNum": 12, + "text": "Joseph|strong=\"H3130\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* between|strong=\"H5973\"* his|strong=\"H3318\"* knees|strong=\"H1290\"*, and|strong=\"H3318\"* he|strong=\"H3318\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* with|strong=\"H5973\"* his|strong=\"H3318\"* face to|strong=\"H3318\"* the|strong=\"H3318\"* earth." + }, + { + "verseNum": 13, + "text": "Joseph|strong=\"H3130\"* took|strong=\"H3947\"* them|strong=\"H3947\"* both|strong=\"H8147\"*, Ephraim in|strong=\"H3478\"* his|strong=\"H3947\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* toward|strong=\"H3225\"* Israel|strong=\"H3478\"*’s left|strong=\"H8040\"* hand|strong=\"H3225\"*, and|strong=\"H3478\"* Manasseh|strong=\"H4519\"* in|strong=\"H3478\"* his|strong=\"H3947\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* toward|strong=\"H3225\"* Israel|strong=\"H3478\"*’s right|strong=\"H3225\"* hand|strong=\"H3225\"*, and|strong=\"H3478\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* near|strong=\"H5066\"* to|strong=\"H3478\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 14, + "text": "Israel|strong=\"H3478\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* laid|strong=\"H7896\"* it|strong=\"H1931\"* on|strong=\"H5921\"* Ephraim’s head|strong=\"H7218\"*, who|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H5921\"* younger|strong=\"H6810\"*, and|strong=\"H3478\"* his|strong=\"H7971\"* left|strong=\"H8040\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Manasseh|strong=\"H4519\"*’s head|strong=\"H7218\"*, guiding|strong=\"H7919\"* his|strong=\"H7971\"* hands|strong=\"H3027\"* knowingly, for|strong=\"H3588\"* Manasseh|strong=\"H4519\"* was|strong=\"H3478\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* blessed|strong=\"H1288\"* Joseph|strong=\"H3130\"*, and|strong=\"H1980\"* said," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3605\"* angel|strong=\"H4397\"* who|strong=\"H3605\"* has|strong=\"H3605\"* redeemed|strong=\"H1350\"* me|strong=\"H7121\"* from|strong=\"H7451\"* all|strong=\"H3605\"* evil|strong=\"H7451\"*, bless|strong=\"H1288\"* the|strong=\"H3605\"* lads|strong=\"H5288\"*," + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H5921\"* father laid|strong=\"H7896\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* Ephraim, it|strong=\"H5921\"* displeased|strong=\"H7489\"* him|strong=\"H5921\"*. He|strong=\"H3588\"* held|strong=\"H8551\"* up|strong=\"H7200\"* his|strong=\"H5921\"* father’s hand|strong=\"H3027\"*, to|strong=\"H5921\"* remove|strong=\"H5493\"* it|strong=\"H5921\"* from|strong=\"H5493\"* Ephraim’s head|strong=\"H7218\"* to|strong=\"H5921\"* Manasseh|strong=\"H4519\"*’s head|strong=\"H7218\"*." + }, + { + "verseNum": 18, + "text": "Joseph|strong=\"H3130\"* said|strong=\"H3651\"* to|strong=\"H5921\"* his|strong=\"H7760\"* father, “Not|strong=\"H3808\"* so|strong=\"H3651\"*, my|strong=\"H7760\"* father, for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"*. Put|strong=\"H7760\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 19, + "text": "His|strong=\"H3045\"* father|strong=\"H1121\"* refused|strong=\"H3985\"*, and|strong=\"H1121\"* said, “I|strong=\"H3045\"* know|strong=\"H3045\"*, my|strong=\"H3045\"* son|strong=\"H1121\"*, I|strong=\"H3045\"* know|strong=\"H3045\"*. He|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* great|strong=\"H1431\"*. However|strong=\"H1571\"*, his|strong=\"H3045\"* younger|strong=\"H6996\"* brother will|strong=\"H1961\"* be|strong=\"H1961\"* greater|strong=\"H1431\"* than|strong=\"H4480\"* he|strong=\"H1931\"*, and|strong=\"H1121\"* his|strong=\"H3045\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* multitude|strong=\"H4393\"* of|strong=\"H1121\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H1931\"* blessed|strong=\"H1288\"* them|strong=\"H6440\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “Israel|strong=\"H3478\"* will|strong=\"H3478\"* bless|strong=\"H1288\"* in|strong=\"H3478\"* your|strong=\"H7760\"* name, saying, ‘God make|strong=\"H7760\"* you|strong=\"H6440\"* as|strong=\"H3117\"* Ephraim and|strong=\"H3478\"* as|strong=\"H3117\"* Manasseh|strong=\"H4519\"*’” He|strong=\"H1931\"* set|strong=\"H7760\"* Ephraim before|strong=\"H6440\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* said to|strong=\"H7725\"* Joseph|strong=\"H3130\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H1961\"* dying|strong=\"H4191\"*, but|strong=\"H1961\"* God will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H7725\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H4191\"* your|strong=\"H7725\"* fathers." + }, + { + "verseNum": 22, + "text": "Moreover I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H3027\"* portion|strong=\"H7926\"* above|strong=\"H5921\"* your|strong=\"H5414\"* brothers, which|strong=\"H2719\"* I|strong=\"H5414\"* took|strong=\"H3947\"* out|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Amorite with|strong=\"H5921\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* and|strong=\"H3027\"* with|strong=\"H5921\"* my|strong=\"H5414\"* bow|strong=\"H7198\"*.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Jacob|strong=\"H3290\"* called|strong=\"H7121\"* to|strong=\"H3117\"* his|strong=\"H7121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*: “Gather yourselves together|strong=\"H7121\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H1121\"* tell|strong=\"H5046\"* you|strong=\"H3117\"* that|strong=\"H3117\"* which|strong=\"H3117\"* will|strong=\"H1121\"* happen|strong=\"H7122\"* to|strong=\"H3117\"* you|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* to|strong=\"H3117\"* come|strong=\"H7122\"*." + }, + { + "verseNum": 2, + "text": "Assemble|strong=\"H6908\"* yourselves|strong=\"H6908\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"*, you|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 3, + "text": "“Reuben|strong=\"H7205\"*, you|strong=\"H3581\"* are|strong=\"H5794\"* my|strong=\"H3581\"* firstborn|strong=\"H1060\"*, my|strong=\"H3581\"* might|strong=\"H3581\"*, and|strong=\"H7205\"* the|strong=\"H7205\"* beginning|strong=\"H7225\"* of|strong=\"H1060\"* my|strong=\"H3581\"* strength|strong=\"H3581\"*," + }, + { + "verseNum": 4, + "text": "Boiling over|strong=\"H3498\"* like|strong=\"H5927\"* water|strong=\"H4325\"*, you|strong=\"H3588\"* shall|strong=\"H4325\"* not|strong=\"H3588\"* excel|strong=\"H3498\"*," + }, + { + "verseNum": 5, + "text": "“Simeon|strong=\"H8095\"* and|strong=\"H2555\"* Levi|strong=\"H3878\"* are|strong=\"H3627\"* brothers." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3588\"* soul|strong=\"H5315\"*, don’t come into|strong=\"H3519\"* their|strong=\"H3588\"* council|strong=\"H5475\"*." + }, + { + "verseNum": 7, + "text": "Cursed be|strong=\"H3478\"* their|strong=\"H3588\"* anger|strong=\"H5678\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* fierce|strong=\"H5794\"*;" + }, + { + "verseNum": 8, + "text": "“Judah|strong=\"H3063\"*, your|strong=\"H3027\"* brothers|strong=\"H1121\"* will|strong=\"H1121\"* praise|strong=\"H3034\"* you|strong=\"H3034\"*." + }, + { + "verseNum": 9, + "text": "Judah|strong=\"H3063\"* is|strong=\"H4310\"* a|strong=\"H3068\"* lion|strong=\"H3833\"*’s cub|strong=\"H1482\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* scepter|strong=\"H7626\"* will|strong=\"H5971\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 11, + "text": "Binding his|strong=\"H3526\"* foal|strong=\"H5895\"* to|strong=\"H1121\"* the|strong=\"H1121\"* vine|strong=\"H1612\"*," + }, + { + "verseNum": 12, + "text": "His|strong=\"H5869\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* red|strong=\"H2447\"* with|strong=\"H5869\"* wine|strong=\"H3196\"*," + }, + { + "verseNum": 13, + "text": "“Zebulun|strong=\"H2074\"* will|strong=\"H1931\"* dwell|strong=\"H7931\"* at|strong=\"H5921\"* the|strong=\"H5921\"* haven|strong=\"H2348\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 14, + "text": "“Issachar|strong=\"H3485\"* is|strong=\"H3485\"* a|strong=\"H3068\"* strong|strong=\"H1634\"* donkey|strong=\"H2543\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 16, + "text": "“Dan|strong=\"H1835\"* will|strong=\"H5971\"* judge|strong=\"H1777\"* his|strong=\"H3478\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 17, + "text": "Dan|strong=\"H1835\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* on|strong=\"H5921\"* the|strong=\"H5921\"* trail|strong=\"H6119\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“A|strong=\"H3068\"* troop|strong=\"H1416\"* will|strong=\"H1931\"* press on Gad|strong=\"H1410\"*," + }, + { + "verseNum": 20, + "text": "“Asher’s food|strong=\"H3899\"* will|strong=\"H4428\"* be|strong=\"H5414\"* rich|strong=\"H8082\"*." + }, + { + "verseNum": 21, + "text": "“Naphtali|strong=\"H5321\"* is|strong=\"H7971\"* a|strong=\"H3068\"* doe set|strong=\"H5414\"* free|strong=\"H7971\"*," + }, + { + "verseNum": 22, + "text": "“Joseph|strong=\"H3130\"* is|strong=\"H1121\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* vine," + }, + { + "verseNum": 23, + "text": "The archers|strong=\"H1167\"* have|strong=\"H2671\"* severely grieved|strong=\"H4843\"* him|strong=\"H7852\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H3290\"* his|strong=\"H3027\"* bow|strong=\"H7198\"* remained|strong=\"H3427\"* strong|strong=\"H6339\"*." + }, + { + "verseNum": 25, + "text": "even|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* God|strong=\"H8064\"* of|strong=\"H5921\"* your|strong=\"H5921\"* father, who|strong=\"H7706\"* will|strong=\"H8064\"* help|strong=\"H5826\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* blessings|strong=\"H1293\"* of|strong=\"H7218\"* your|strong=\"H5921\"* father have|strong=\"H1961\"* prevailed|strong=\"H1396\"* above|strong=\"H5921\"* the|strong=\"H5921\"* blessings|strong=\"H1293\"* of|strong=\"H7218\"* my|strong=\"H5921\"* ancestors|strong=\"H2029\"*," + }, + { + "verseNum": 27, + "text": "“Benjamin|strong=\"H1144\"* is|strong=\"H7998\"* a|strong=\"H3068\"* ravenous|strong=\"H2963\"* wolf|strong=\"H2061\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* these|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* is|strong=\"H3478\"* what|strong=\"H2063\"* their|strong=\"H3605\"* father spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8147\"*, and|strong=\"H3478\"* blessed|strong=\"H1288\"* them|strong=\"H8147\"*. He|strong=\"H3605\"* blessed|strong=\"H1288\"* everyone|strong=\"H3605\"* according to|strong=\"H1696\"* his|strong=\"H3605\"* own blessing|strong=\"H1293\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H5971\"* instructed|strong=\"H6680\"* them|strong=\"H6680\"*, and|strong=\"H5971\"* said to|strong=\"H6680\"* them|strong=\"H6680\"*, “I|strong=\"H6680\"* am to|strong=\"H6680\"* be|strong=\"H5971\"* gathered to|strong=\"H6680\"* my|strong=\"H6912\"* people|strong=\"H5971\"*. Bury|strong=\"H6912\"* me|strong=\"H6680\"* with|strong=\"H5971\"* my|strong=\"H6912\"* fathers in|strong=\"H6912\"* the|strong=\"H6680\"* cave|strong=\"H4631\"* that|strong=\"H5971\"* is|strong=\"H2850\"* in|strong=\"H6912\"* the|strong=\"H6680\"* field|strong=\"H7704\"* of|strong=\"H7704\"* Ephron|strong=\"H6085\"* the|strong=\"H6680\"* Hittite|strong=\"H2850\"*," + }, + { + "verseNum": 30, + "text": "in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* that|strong=\"H4631\"* is|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H6440\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Mamre|strong=\"H4471\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H6440\"* Canaan|strong=\"H3667\"*, which|strong=\"H7704\"* Abraham bought|strong=\"H7069\"* with|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* from|strong=\"H6440\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"* as|strong=\"H6440\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* place|strong=\"H6913\"*." + }, + { + "verseNum": 31, + "text": "There|strong=\"H8033\"* they|strong=\"H8033\"* buried|strong=\"H6912\"* Abraham and|strong=\"H8033\"* Sarah|strong=\"H8283\"*, his|strong=\"H3327\"* wife. There|strong=\"H8033\"* they|strong=\"H8033\"* buried|strong=\"H6912\"* Isaac|strong=\"H3327\"* and|strong=\"H8033\"* Rebekah|strong=\"H7259\"*, his|strong=\"H3327\"* wife, and|strong=\"H8033\"* there|strong=\"H8033\"* I|strong=\"H3327\"* buried|strong=\"H6912\"* Leah|strong=\"H3812\"*:" + }, + { + "verseNum": 32, + "text": "the|strong=\"H1121\"* field|strong=\"H7704\"* and|strong=\"H1121\"* the|strong=\"H1121\"* cave|strong=\"H4631\"* that|strong=\"H1121\"* is|strong=\"H1121\"* therein, which|strong=\"H7704\"* was|strong=\"H1121\"* purchased|strong=\"H4735\"* from|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Heth|strong=\"H2845\"*.”" + }, + { + "verseNum": 33, + "text": "When|strong=\"H3615\"* Jacob|strong=\"H3290\"* finished|strong=\"H3615\"* charging|strong=\"H6680\"* his|strong=\"H6680\"* sons|strong=\"H1121\"*, he|strong=\"H7272\"* gathered up|strong=\"H1121\"* his|strong=\"H6680\"* feet|strong=\"H7272\"* into|strong=\"H3290\"* the|strong=\"H6680\"* bed|strong=\"H4296\"*, breathed|strong=\"H1478\"* his|strong=\"H6680\"* last|strong=\"H1478\"* breath, and|strong=\"H1121\"* was|strong=\"H1121\"* gathered to|strong=\"H1121\"* his|strong=\"H6680\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Joseph|strong=\"H3130\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* father’s face|strong=\"H6440\"*, wept|strong=\"H1058\"* on|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* kissed|strong=\"H5401\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Joseph|strong=\"H3130\"* commanded|strong=\"H6680\"* his|strong=\"H6680\"* servants|strong=\"H5650\"*, the|strong=\"H6680\"* physicians|strong=\"H7495\"*, to|strong=\"H3478\"* embalm|strong=\"H2590\"* his|strong=\"H6680\"* father; and|strong=\"H3478\"* the|strong=\"H6680\"* physicians|strong=\"H7495\"* embalmed|strong=\"H2590\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "Forty days|strong=\"H3117\"* were|strong=\"H3117\"* used for|strong=\"H3588\"* him|strong=\"H4390\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3117\"* how|strong=\"H3588\"* many days|strong=\"H3117\"* it|strong=\"H3588\"* takes to|strong=\"H3117\"* embalm|strong=\"H2590\"*. The|strong=\"H3588\"* Egyptians|strong=\"H4713\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* Israel for|strong=\"H3588\"* seventy|strong=\"H7657\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1004\"* weeping for|strong=\"H1004\"* him|strong=\"H4672\"* were|strong=\"H3117\"* past|strong=\"H5674\"*, Joseph|strong=\"H3130\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*’s staff, saying|strong=\"H1696\"*, “If now|strong=\"H4994\"* I|strong=\"H3117\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H1004\"* your|strong=\"H4994\"* eyes|strong=\"H5869\"*, please|strong=\"H4994\"* speak|strong=\"H1696\"* in|strong=\"H1004\"* the|strong=\"H3117\"* ears of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 5, + "text": "‘My|strong=\"H7725\"* father made|strong=\"H7650\"* me|strong=\"H4994\"* swear|strong=\"H7650\"*, saying, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am dying|strong=\"H4191\"*. Bury|strong=\"H6912\"* me|strong=\"H4994\"* in|strong=\"H4191\"* my|strong=\"H7725\"* grave|strong=\"H6913\"* which|strong=\"H8033\"* I|strong=\"H2009\"* have|strong=\"H6258\"* dug|strong=\"H3738\"* for|strong=\"H4191\"* myself in|strong=\"H4191\"* the|strong=\"H7725\"* land of|strong=\"H6913\"* Canaan|strong=\"H3667\"*.” Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7725\"* bury|strong=\"H6912\"* my|strong=\"H7725\"* father, and|strong=\"H7725\"* I|strong=\"H2009\"* will|strong=\"H8033\"* come|strong=\"H5927\"* again|strong=\"H7725\"*.’”" + }, + { + "verseNum": 6, + "text": "Pharaoh|strong=\"H6547\"* said, “Go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5927\"* bury|strong=\"H6912\"* your|strong=\"H6912\"* father, just like|strong=\"H5927\"* he|strong=\"H7650\"* made|strong=\"H7650\"* you|strong=\"H5927\"* swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 7, + "text": "Joseph|strong=\"H3130\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* bury|strong=\"H6912\"* his|strong=\"H3605\"* father; and|strong=\"H1004\"* with|strong=\"H1004\"* him|strong=\"H6912\"* went|strong=\"H5927\"* up|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*, the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 8, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*, his|strong=\"H3605\"* brothers, and|strong=\"H1004\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*. Only|strong=\"H7535\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* flocks|strong=\"H6629\"*, and|strong=\"H1004\"* their|strong=\"H3605\"* herds|strong=\"H1241\"*, they|strong=\"H3605\"* left|strong=\"H5800\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Goshen|strong=\"H1657\"*." + }, + { + "verseNum": 9, + "text": "Both|strong=\"H1571\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* horsemen|strong=\"H6571\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. It|strong=\"H5927\"* was|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* company|strong=\"H4264\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* came to|strong=\"H5704\"* the|strong=\"H6213\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3117\"* Atad, which|strong=\"H8033\"* is|strong=\"H3117\"* beyond|strong=\"H5676\"* the|strong=\"H6213\"* Jordan|strong=\"H3383\"*, and|strong=\"H3117\"* there|strong=\"H8033\"* they|strong=\"H3117\"* lamented|strong=\"H5594\"* with|strong=\"H6213\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H3117\"* severe|strong=\"H3515\"* lamentation|strong=\"H4553\"*. He|strong=\"H3117\"* mourned|strong=\"H5594\"* for|strong=\"H5704\"* his|strong=\"H6213\"* father seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* land|strong=\"H5676\"*, the|strong=\"H5921\"* Canaanites|strong=\"H3669\"*, saw|strong=\"H7200\"* the|strong=\"H5921\"* mourning in|strong=\"H3427\"* the|strong=\"H5921\"* floor|strong=\"H1637\"* of|strong=\"H3427\"* Atad, they|strong=\"H3651\"* said|strong=\"H7121\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* grievous|strong=\"H3515\"* mourning by|strong=\"H5921\"* the|strong=\"H5921\"* Egyptians|strong=\"H4713\"*.” Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Abel Mizraim, which|strong=\"H2088\"* is|strong=\"H2088\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H6680\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* just|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H5921\"* his|strong=\"H5375\"* sons|strong=\"H1121\"* carried|strong=\"H5375\"* him|strong=\"H6440\"* into|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cave|strong=\"H4631\"* of|strong=\"H1121\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Machpelah|strong=\"H4375\"*, which|strong=\"H7704\"* Abraham|strong=\"H5375\"* bought|strong=\"H7069\"* with|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"*, as|strong=\"H6440\"* a|strong=\"H3068\"* possession for|strong=\"H5921\"* a|strong=\"H3068\"* burial|strong=\"H6913\"* site, from|strong=\"H6440\"* Ephron|strong=\"H6085\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, near|strong=\"H6440\"* Mamre|strong=\"H4471\"*." + }, + { + "verseNum": 14, + "text": "Joseph|strong=\"H3130\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*—he|strong=\"H1931\"*, and|strong=\"H7725\"* his|strong=\"H3605\"* brothers, and|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H4714\"* him|strong=\"H7725\"* to|strong=\"H7725\"* bury|strong=\"H6912\"* his|strong=\"H3605\"* father, after|strong=\"H5927\"* he|strong=\"H1931\"* had|strong=\"H3130\"* buried|strong=\"H6912\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Joseph|strong=\"H3130\"*’s brothers saw|strong=\"H7200\"* that|strong=\"H3588\"* their|strong=\"H3605\"* father was|strong=\"H3130\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* said, “It|strong=\"H3588\"* may|strong=\"H7725\"* be|strong=\"H4191\"* that|strong=\"H3588\"* Joseph|strong=\"H3130\"* will|strong=\"H3130\"* hate|strong=\"H3863\"* us|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H3130\"* fully pay|strong=\"H7725\"* us|strong=\"H7725\"* back|strong=\"H7725\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* we|strong=\"H3068\"* did|strong=\"H1580\"* to|strong=\"H7725\"* him|strong=\"H7725\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H6440\"* sent|strong=\"H6680\"* a|strong=\"H3068\"* message to|strong=\"H6440\"* Joseph|strong=\"H3130\"*, saying, “Your|strong=\"H6440\"* father commanded|strong=\"H6680\"* before|strong=\"H6440\"* he|strong=\"H6440\"* died|strong=\"H4194\"*, saying," + }, + { + "verseNum": 17, + "text": "‘You|strong=\"H3588\"* shall|strong=\"H5650\"* tell|strong=\"H1696\"* Joseph|strong=\"H3130\"*, “Now|strong=\"H6258\"* please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* disobedience of|strong=\"H5650\"* your|strong=\"H5375\"* brothers, and|strong=\"H5650\"* their|strong=\"H5375\"* sin|strong=\"H2403\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* did|strong=\"H1580\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.”’ Now|strong=\"H6258\"*, please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* disobedience of|strong=\"H5650\"* the|strong=\"H3588\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* the|strong=\"H3588\"* God of|strong=\"H5650\"* your|strong=\"H5375\"* father.” Joseph|strong=\"H3130\"* wept|strong=\"H1058\"* when|strong=\"H3588\"* they|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5375\"*." + }, + { + "verseNum": 18, + "text": "His|strong=\"H6440\"* brothers also|strong=\"H1571\"* went|strong=\"H3212\"* and|strong=\"H3212\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*; and|strong=\"H3212\"* they|strong=\"H6440\"* said, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H5650\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 19, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H3372\"* them|strong=\"H8478\"*, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* am I|strong=\"H3588\"* in|strong=\"H3372\"* the|strong=\"H3588\"* place|strong=\"H8478\"* of|strong=\"H8478\"* God?" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* meant|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H5971\"* God meant|strong=\"H2803\"* it|strong=\"H5921\"* for|strong=\"H5921\"* good|strong=\"H2896\"*, to|strong=\"H5921\"* save|strong=\"H2421\"* many|strong=\"H7227\"* people|strong=\"H5971\"* alive|strong=\"H2421\"*, as|strong=\"H3117\"* is|strong=\"H2088\"* happening today|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* don’t be|strong=\"H3820\"* afraid|strong=\"H3372\"*. I|strong=\"H5921\"* will|strong=\"H3820\"* provide|strong=\"H3557\"* for|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H3372\"* your|strong=\"H5921\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*.” He|strong=\"H5921\"* comforted|strong=\"H5162\"* them|strong=\"H5921\"*, and|strong=\"H3372\"* spoke|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Joseph|strong=\"H3130\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*, he|strong=\"H1931\"*, and|strong=\"H3967\"* his|strong=\"H1931\"* father’s house|strong=\"H1004\"*. Joseph|strong=\"H3130\"* lived|strong=\"H3427\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "Joseph|strong=\"H3130\"* saw|strong=\"H7200\"* Ephraim’s children|strong=\"H1121\"* to|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* generation|strong=\"H8029\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* also|strong=\"H1571\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, were|strong=\"H1121\"* born|strong=\"H3205\"* on|strong=\"H5921\"* Joseph|strong=\"H3130\"*’s knees|strong=\"H1290\"*." + }, + { + "verseNum": 24, + "text": "Joseph|strong=\"H3130\"* said to|strong=\"H4191\"* his|strong=\"H3327\"* brothers, “I|strong=\"H4480\"* am|strong=\"H6485\"* dying|strong=\"H4191\"*, but|strong=\"H4191\"* God will|strong=\"H3290\"* surely|strong=\"H4191\"* visit|strong=\"H6485\"* you|strong=\"H4480\"*, and|strong=\"H5927\"* bring|strong=\"H5927\"* you|strong=\"H4480\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* this|strong=\"H2063\"* land to|strong=\"H4191\"* the|strong=\"H4480\"* land which|strong=\"H6485\"* he|strong=\"H4480\"* swore|strong=\"H7650\"* to|strong=\"H4191\"* Abraham, to|strong=\"H4191\"* Isaac|strong=\"H3327\"*, and|strong=\"H5927\"* to|strong=\"H4191\"* Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 25, + "text": "Joseph|strong=\"H3130\"* took|strong=\"H5927\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* from|strong=\"H5927\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “God will|strong=\"H3478\"* surely|strong=\"H6485\"* visit|strong=\"H6485\"* you|strong=\"H6485\"*, and|strong=\"H1121\"* you|strong=\"H6485\"* shall|strong=\"H1121\"* carry|strong=\"H5927\"* up|strong=\"H5927\"* my|strong=\"H5927\"* bones|strong=\"H6106\"* from|strong=\"H5927\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 26, + "text": "So|strong=\"H4191\"* Joseph|strong=\"H3130\"* died|strong=\"H4191\"*, being|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H3967\"* they|strong=\"H8141\"* embalmed|strong=\"H2590\"* him|strong=\"H4191\"*, and|strong=\"H3967\"* he|strong=\"H8141\"* was|strong=\"H1121\"* put|strong=\"H4191\"* in|strong=\"H8141\"* a|strong=\"H3068\"* coffin in|strong=\"H8141\"* Egypt|strong=\"H4714\"*." + } + ] + } + ] + }, + { + "name": "Exodus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"* (every|strong=\"H3478\"* man|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3478\"* household|strong=\"H1004\"* came|strong=\"H3478\"* with|strong=\"H1004\"* Jacob|strong=\"H3290\"*):" + }, + { + "verseNum": 2, + "text": "Reuben|strong=\"H7205\"*, Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 3, + "text": "Issachar|strong=\"H3485\"*, Zebulun|strong=\"H2074\"*, and|strong=\"H1144\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 4, + "text": "Dan|strong=\"H1835\"* and|strong=\"H1410\"* Naphtali|strong=\"H5321\"*, Gad|strong=\"H1410\"* and|strong=\"H1410\"* Asher." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3605\"* Jacob|strong=\"H3290\"*’s body|strong=\"H5315\"* were|strong=\"H1961\"* seventy|strong=\"H7657\"* souls|strong=\"H5315\"*, and|strong=\"H4714\"* Joseph|strong=\"H3130\"* was|strong=\"H1961\"* in|strong=\"H5315\"* Egypt|strong=\"H4714\"* already." + }, + { + "verseNum": 6, + "text": "Joseph|strong=\"H3130\"* died|strong=\"H4191\"*, as|strong=\"H3605\"* did all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, and|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* generation|strong=\"H1755\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* fruitful|strong=\"H6509\"*, and|strong=\"H1121\"* increased|strong=\"H7235\"* abundantly|strong=\"H8317\"*, and|strong=\"H1121\"* multiplied|strong=\"H7235\"*, and|strong=\"H1121\"* grew|strong=\"H6509\"* exceedingly|strong=\"H3966\"* mighty|strong=\"H6105\"*; and|strong=\"H1121\"* the|strong=\"H4390\"* land was|strong=\"H3478\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H4428\"* there|strong=\"H3045\"* arose|strong=\"H6965\"* a|strong=\"H3068\"* new|strong=\"H2319\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* didn’t know|strong=\"H3045\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* said to|strong=\"H3478\"* his|strong=\"H3478\"* people|strong=\"H5971\"*, “Behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H4480\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* more|strong=\"H4480\"* and|strong=\"H1121\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* we|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Come|strong=\"H5927\"*, let|strong=\"H1961\"*’s deal|strong=\"H7235\"* wisely|strong=\"H2449\"* with|strong=\"H5921\"* them|strong=\"H5921\"*, lest|strong=\"H6435\"* they|strong=\"H3588\"* multiply|strong=\"H7235\"*, and|strong=\"H5927\"* it|strong=\"H1931\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* any|strong=\"H4480\"* war|strong=\"H4421\"* breaks|strong=\"H7122\"* out|strong=\"H4480\"*, they|strong=\"H3588\"* also|strong=\"H1571\"* join|strong=\"H3254\"* themselves|strong=\"H5921\"* to|strong=\"H5927\"* our|strong=\"H5921\"* enemies|strong=\"H8130\"* and|strong=\"H5927\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* us|strong=\"H3051\"*, and|strong=\"H5927\"* escape out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* land.”" + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* they|strong=\"H5921\"* set|strong=\"H7760\"* taskmasters|strong=\"H8269\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5921\"* afflict|strong=\"H6031\"* them|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H7760\"* burdens|strong=\"H5450\"*. They|strong=\"H5921\"* built|strong=\"H1129\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* for|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*: Pithom|strong=\"H6619\"* and|strong=\"H5892\"* Raamses|strong=\"H7486\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3651\"* the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* afflicted|strong=\"H6031\"* them|strong=\"H6440\"*, the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* multiplied|strong=\"H7235\"* and|strong=\"H1121\"* the|strong=\"H6440\"* more|strong=\"H7235\"* they|strong=\"H3651\"* spread|strong=\"H6555\"* out|strong=\"H6555\"*. They|strong=\"H3651\"* started to|strong=\"H3478\"* dread|strong=\"H6973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5647\"* Egyptians|strong=\"H4713\"* ruthlessly made|strong=\"H5647\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* serve|strong=\"H5647\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H7704\"* they|strong=\"H3605\"* made|strong=\"H5647\"* their|strong=\"H3605\"* lives|strong=\"H2416\"* bitter|strong=\"H4843\"* with|strong=\"H5647\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* in|strong=\"H5656\"* mortar|strong=\"H2563\"* and|strong=\"H7704\"* in|strong=\"H5656\"* brick|strong=\"H3843\"*, and|strong=\"H7704\"* in|strong=\"H5656\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7704\"* service|strong=\"H5656\"* in|strong=\"H5656\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*, in|strong=\"H5656\"* which|strong=\"H7704\"* they|strong=\"H3605\"* ruthlessly made|strong=\"H5647\"* them|strong=\"H5647\"* serve|strong=\"H5647\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3205\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* spoke to|strong=\"H4714\"* the|strong=\"H3205\"* Hebrew|strong=\"H5680\"* midwives|strong=\"H3205\"*, of|strong=\"H4428\"* whom the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H4428\"* the|strong=\"H3205\"* one|strong=\"H8034\"* was|strong=\"H8034\"* Shiphrah|strong=\"H8236\"*, and|strong=\"H4428\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H4428\"* the|strong=\"H3205\"* other|strong=\"H8145\"* Puah|strong=\"H6326\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* he|strong=\"H1931\"* said, “When|strong=\"H7200\"* you|strong=\"H5921\"* perform the|strong=\"H5921\"* duty|strong=\"H5921\"* of|strong=\"H1121\"* a|strong=\"H3068\"* midwife|strong=\"H3205\"* to|strong=\"H4191\"* the|strong=\"H5921\"* Hebrew|strong=\"H5680\"* women|strong=\"H1323\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* birth|strong=\"H3205\"* stool, if|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, then|strong=\"H7200\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* kill|strong=\"H4191\"* him|strong=\"H3205\"*; but|strong=\"H7200\"* if|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, then|strong=\"H7200\"* she|strong=\"H1931\"* shall|strong=\"H1121\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* the|strong=\"H6213\"* midwives|strong=\"H3205\"* feared|strong=\"H3372\"* God|strong=\"H3808\"*,+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H4428\"* didn’t do|strong=\"H6213\"* what|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* commanded|strong=\"H1696\"* them|strong=\"H6213\"*, but|strong=\"H3808\"* saved|strong=\"H2421\"* the|strong=\"H6213\"* baby boys|strong=\"H3206\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* midwives|strong=\"H3205\"*, and|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Why|strong=\"H4069\"* have|strong=\"H1697\"* you|strong=\"H6213\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* and|strong=\"H4428\"* saved|strong=\"H2421\"* the|strong=\"H6213\"* boys|strong=\"H3206\"* alive|strong=\"H2421\"*?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* midwives|strong=\"H3205\"* said to|strong=\"H3205\"* Pharaoh|strong=\"H6547\"*, “Because|strong=\"H3588\"* the|strong=\"H3588\"* Hebrew|strong=\"H5680\"* women|strong=\"H5680\"* aren’t like|strong=\"H3808\"* the|strong=\"H3588\"* Egyptian|strong=\"H4713\"* women|strong=\"H5680\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H2007\"* vigorous|strong=\"H2422\"* and|strong=\"H6547\"* give|strong=\"H3205\"* birth|strong=\"H3205\"* before|strong=\"H2962\"* the|strong=\"H3588\"* midwife|strong=\"H3205\"* comes to|strong=\"H3205\"* them|strong=\"H2007\"*.”" + }, + { + "verseNum": 20, + "text": "God|strong=\"H3190\"* dealt well|strong=\"H3190\"* with|strong=\"H5971\"* the|strong=\"H3205\"* midwives|strong=\"H3205\"*, and|strong=\"H5971\"* the|strong=\"H3205\"* people|strong=\"H5971\"* multiplied|strong=\"H7235\"*, and|strong=\"H5971\"* grew|strong=\"H7235\"* very|strong=\"H3966\"* mighty|strong=\"H6105\"*." + }, + { + "verseNum": 21, + "text": "Because|strong=\"H3588\"* the|strong=\"H3588\"* midwives|strong=\"H3205\"* feared|strong=\"H3372\"* God, he|strong=\"H3588\"* gave|strong=\"H3205\"* them|strong=\"H6213\"* families|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H1121\"* cast|strong=\"H7993\"* every|strong=\"H3605\"* son|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3605\"* born|strong=\"H3209\"* into|strong=\"H1323\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* daughter|strong=\"H1323\"* you|strong=\"H6680\"* shall|strong=\"H1121\"* save|strong=\"H2421\"* alive|strong=\"H2421\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* man of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* went|strong=\"H3212\"* and|strong=\"H1004\"* took|strong=\"H3947\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* as|strong=\"H1004\"* his|strong=\"H3947\"* wife." + }, + { + "verseNum": 2, + "text": "The|strong=\"H7200\"* woman|strong=\"H3205\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. When|strong=\"H3588\"* she|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* fine|strong=\"H2896\"* child|strong=\"H1121\"*, she|strong=\"H1931\"* hid|strong=\"H6845\"* him|strong=\"H3205\"* three|strong=\"H7969\"* months|strong=\"H3391\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H5921\"* she|strong=\"H8193\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* hide|strong=\"H6845\"* him|strong=\"H5921\"*, she|strong=\"H8193\"* took|strong=\"H3947\"* a|strong=\"H3068\"* papyrus|strong=\"H1573\"* basket|strong=\"H8392\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3947\"* coated it|strong=\"H7760\"* with|strong=\"H5921\"* tar|strong=\"H2564\"* and|strong=\"H3947\"* with|strong=\"H5921\"* pitch|strong=\"H2203\"*. She|strong=\"H8193\"* put|strong=\"H7760\"* the|strong=\"H5921\"* child|strong=\"H3206\"* in|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3947\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* the|strong=\"H5921\"* reeds|strong=\"H5488\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*’s bank|strong=\"H8193\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H3045\"* sister stood|strong=\"H3320\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, to|strong=\"H6213\"* see|strong=\"H3045\"* what|strong=\"H4100\"* would|strong=\"H6213\"* be done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1980\"* bathe|strong=\"H7364\"* at|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*. Her|strong=\"H7971\"* maidens|strong=\"H5291\"* walked|strong=\"H1980\"* along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* riverside. She|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* basket|strong=\"H8392\"* among|strong=\"H8432\"* the|strong=\"H5921\"* reeds|strong=\"H5488\"*, and|strong=\"H1980\"* sent|strong=\"H7971\"* her|strong=\"H7971\"* servant to|strong=\"H1980\"* get|strong=\"H3947\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5921\"* opened|strong=\"H6605\"* it|strong=\"H5921\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* baby cried|strong=\"H1058\"*. She|strong=\"H5921\"* had|strong=\"H2550\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"*’ children|strong=\"H3206\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7121\"* his|strong=\"H7121\"* sister said|strong=\"H7121\"* to|strong=\"H3212\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"*, “Should|strong=\"H1323\"* I|strong=\"H4480\"* go|strong=\"H3212\"* and|strong=\"H3212\"* call|strong=\"H7121\"* a|strong=\"H3068\"* nurse|strong=\"H3243\"* for|strong=\"H7121\"* you|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* Hebrew|strong=\"H5680\"* women|strong=\"H1323\"*, that|strong=\"H7121\"* she|strong=\"H7121\"* may|strong=\"H3206\"* nurse|strong=\"H3243\"* the|strong=\"H4480\"* child|strong=\"H3206\"* for|strong=\"H7121\"* you|strong=\"H4480\"*?”" + }, + { + "verseNum": 8, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* said|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H7121\"*, “Go|strong=\"H3212\"*.”" + }, + { + "verseNum": 9, + "text": "Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* said to|strong=\"H3212\"* her|strong=\"H5414\"*, “Take|strong=\"H3947\"* this|strong=\"H2088\"* child|strong=\"H3206\"* away|strong=\"H3947\"*, and|strong=\"H3212\"* nurse|strong=\"H3243\"* him|strong=\"H5414\"* for|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H3212\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* wages|strong=\"H7939\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* child|strong=\"H3206\"* grew|strong=\"H1431\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* brought|strong=\"H4872\"* him|strong=\"H7121\"* to|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* became|strong=\"H1961\"* her|strong=\"H7121\"* son|strong=\"H1121\"*. She|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Moses|strong=\"H4872\"*,+ 2:10 “Moses” sounds like the Hebrew for “draw out”.* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* drew|strong=\"H4871\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3588\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* grown|strong=\"H1431\"* up|strong=\"H1431\"*, he|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H7200\"* brothers and|strong=\"H4872\"* saw|strong=\"H7200\"* their|strong=\"H1992\"* burdens|strong=\"H5450\"*. He|strong=\"H3117\"* saw|strong=\"H7200\"* an|strong=\"H1961\"* Egyptian|strong=\"H4713\"* striking|strong=\"H5221\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, one|strong=\"H1961\"* of|strong=\"H3117\"* his|strong=\"H7200\"* brothers." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* looked|strong=\"H7200\"* this|strong=\"H3541\"* way|strong=\"H3541\"* and|strong=\"H7200\"* that|strong=\"H3588\"* way|strong=\"H3541\"*, and|strong=\"H7200\"* when|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H3541\"* was|strong=\"H5221\"* no|strong=\"H7200\"* one|strong=\"H3588\"*, he|strong=\"H3588\"* killed|strong=\"H5221\"* the|strong=\"H7200\"* Egyptian|strong=\"H4713\"*, and|strong=\"H7200\"* hid|strong=\"H2934\"* him|strong=\"H5221\"* in|strong=\"H7200\"* the|strong=\"H7200\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5221\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* men|strong=\"H7563\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Hebrews|strong=\"H5680\"* were|strong=\"H3117\"* fighting|strong=\"H5327\"* with|strong=\"H3117\"* each|strong=\"H3117\"* other|strong=\"H8145\"*. He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5221\"* who|strong=\"H7563\"* did|strong=\"H4100\"* the|strong=\"H5221\"* wrong|strong=\"H7563\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3117\"* strike|strong=\"H5221\"* your|strong=\"H3318\"* fellow|strong=\"H7453\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* said|strong=\"H1697\"*, “Who|strong=\"H4310\"* made|strong=\"H7760\"* you|strong=\"H5921\"* a|strong=\"H3068\"* prince|strong=\"H8269\"* and|strong=\"H4872\"* a|strong=\"H3068\"* judge|strong=\"H8199\"* over|strong=\"H5921\"* us|strong=\"H5921\"*? Do|strong=\"H1697\"* you|strong=\"H5921\"* plan|strong=\"H1697\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* me|strong=\"H5921\"*, as|strong=\"H1697\"* you|strong=\"H5921\"* killed|strong=\"H2026\"* the|strong=\"H5921\"* Egyptian|strong=\"H4713\"*?”" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2088\"* when|strong=\"H8085\"* Pharaoh|strong=\"H6547\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, he|strong=\"H5921\"* sought|strong=\"H1245\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* Moses|strong=\"H4872\"*. But|strong=\"H8085\"* Moses|strong=\"H4872\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1697\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1697\"* Midian|strong=\"H4080\"*, and|strong=\"H4872\"* he|strong=\"H5921\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* by|strong=\"H5921\"* a|strong=\"H3068\"* well." + }, + { + "verseNum": 16, + "text": "Now the|strong=\"H4390\"* priest|strong=\"H3548\"* of|strong=\"H1323\"* Midian|strong=\"H4080\"* had|strong=\"H3548\"* seven|strong=\"H7651\"* daughters|strong=\"H1323\"*. They|strong=\"H3548\"* came|strong=\"H1323\"* and|strong=\"H3548\"* drew|strong=\"H1802\"* water|strong=\"H8248\"*, and|strong=\"H3548\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* troughs|strong=\"H7298\"* to|strong=\"H1323\"* water|strong=\"H8248\"* their|strong=\"H4390\"* father’s flock|strong=\"H6629\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6965\"* shepherds|strong=\"H7462\"* came|strong=\"H4872\"* and|strong=\"H6965\"* drove|strong=\"H1644\"* them|strong=\"H1644\"* away|strong=\"H1644\"*; but Moses|strong=\"H4872\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* helped|strong=\"H3467\"* them|strong=\"H1644\"*, and|strong=\"H6965\"* watered|strong=\"H8248\"* their|strong=\"H8248\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* came to|strong=\"H3117\"* Reuel|strong=\"H7467\"*, their|strong=\"H3117\"* father, he|strong=\"H3117\"* said, “How|strong=\"H4069\"* is|strong=\"H3117\"* it|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* returned so|strong=\"H4116\"* early today|strong=\"H3117\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H1571\"* said, “An|strong=\"H1571\"* Egyptian|strong=\"H4713\"* delivered|strong=\"H5337\"* us|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* shepherds|strong=\"H7462\"*, and|strong=\"H3027\"* moreover|strong=\"H1571\"* he|strong=\"H3027\"* drew|strong=\"H1802\"* water|strong=\"H8248\"* for|strong=\"H3027\"* us|strong=\"H5337\"*, and|strong=\"H3027\"* watered|strong=\"H8248\"* the|strong=\"H3027\"* flock|strong=\"H6629\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H7121\"* his|strong=\"H7121\"* daughters|strong=\"H1323\"*, “Where|strong=\"H4100\"* is|strong=\"H2088\"* he|strong=\"H7121\"*? Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H7121\"* that|strong=\"H7121\"* you|strong=\"H4100\"* have|strong=\"H1323\"* left|strong=\"H5800\"* the|strong=\"H7121\"* man|strong=\"H2088\"*? Call|strong=\"H7121\"* him|strong=\"H7121\"*, that|strong=\"H7121\"* he|strong=\"H7121\"* may eat|strong=\"H3899\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* content|strong=\"H2974\"* to|strong=\"H5414\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H5414\"* man. He|strong=\"H5414\"* gave|strong=\"H5414\"* Moses|strong=\"H4872\"* Zipporah|strong=\"H6855\"*, his|strong=\"H5414\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "She|strong=\"H3588\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Gershom|strong=\"H1647\"*,+ 2:22 “Gershom” sounds like the Hebrew for “an alien there”.* for|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H7121\"*, “I|strong=\"H3588\"* have|strong=\"H1961\"* lived|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* in|strong=\"H1121\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* land.”" + }, + { + "verseNum": 23, + "text": "In|strong=\"H3478\"* the|strong=\"H4480\"* course|strong=\"H4480\"* of|strong=\"H1121\"* those|strong=\"H1992\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, the|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sighed because|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* bondage|strong=\"H5656\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* cried|strong=\"H2199\"*, and|strong=\"H1121\"* their|strong=\"H1992\"* cry|strong=\"H2199\"* came|strong=\"H1961\"* up|strong=\"H5927\"* to|strong=\"H3478\"* God because|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* bondage|strong=\"H5656\"*." + }, + { + "verseNum": 24, + "text": "God heard|strong=\"H8085\"* their|strong=\"H8085\"* groaning|strong=\"H5009\"*, and|strong=\"H8085\"* God remembered|strong=\"H2142\"* his|strong=\"H8085\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Abraham, with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, and|strong=\"H8085\"* with|strong=\"H1285\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 25, + "text": "God saw|strong=\"H7200\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* God understood|strong=\"H3045\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Moses|strong=\"H4872\"* was|strong=\"H1961\"* keeping|strong=\"H7462\"* the|strong=\"H4872\"* flock|strong=\"H6629\"* of|strong=\"H2022\"* Jethro|strong=\"H3503\"*, his|strong=\"H1961\"* father-in-law|strong=\"H2859\"*, the|strong=\"H4872\"* priest|strong=\"H3548\"* of|strong=\"H2022\"* Midian|strong=\"H4080\"*, and|strong=\"H4872\"* he|strong=\"H4872\"* led|strong=\"H5090\"* the|strong=\"H4872\"* flock|strong=\"H6629\"* to|strong=\"H1961\"* the|strong=\"H4872\"* back of|strong=\"H2022\"* the|strong=\"H4872\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* came|strong=\"H1961\"* to|strong=\"H1961\"* God’s mountain|strong=\"H2022\"*, to|strong=\"H1961\"* Horeb|strong=\"H2722\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s+ 3:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* in|strong=\"H3068\"* a|strong=\"H3068\"* flame|strong=\"H3827\"* of|strong=\"H3068\"* fire out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* a|strong=\"H3068\"* bush|strong=\"H5572\"*. He|strong=\"H3068\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* bush|strong=\"H5572\"* burned|strong=\"H1197\"* with|strong=\"H3068\"* fire, and|strong=\"H3068\"* the|strong=\"H7200\"* bush|strong=\"H5572\"* was|strong=\"H3068\"* not|strong=\"H7200\"* consumed|strong=\"H1197\"*." + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* said, “I|strong=\"H7200\"* will|strong=\"H3808\"* go|strong=\"H5493\"* now|strong=\"H4994\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* this|strong=\"H2088\"* great|strong=\"H1419\"* sight|strong=\"H4758\"*, why|strong=\"H4069\"* the|strong=\"H7200\"* bush|strong=\"H5572\"* is|strong=\"H2088\"* not|strong=\"H3808\"* burned|strong=\"H1197\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3068\"* over|strong=\"H3068\"* to|strong=\"H3068\"* see|strong=\"H7200\"*, God|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3068\"* him|strong=\"H7121\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H7200\"* bush|strong=\"H5572\"*, and|strong=\"H4872\"* said|strong=\"H7121\"*, “Moses|strong=\"H4872\"*! Moses|strong=\"H4872\"*!”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* said, “Don’t come|strong=\"H7126\"* close|strong=\"H7126\"*. Take|strong=\"H5975\"* off|strong=\"H5921\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* place|strong=\"H4725\"* you|strong=\"H3588\"* are|strong=\"H7272\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* is|strong=\"H1931\"* holy|strong=\"H6944\"* ground|strong=\"H4725\"*.”" + }, + { + "verseNum": 6, + "text": "Moreover|strong=\"H3588\"* he|strong=\"H3588\"* said, “I|strong=\"H3588\"* am the|strong=\"H6440\"* God of|strong=\"H6440\"* your|strong=\"H6440\"* father, the|strong=\"H6440\"* God of|strong=\"H6440\"* Abraham, the|strong=\"H6440\"* God of|strong=\"H6440\"* Isaac|strong=\"H3327\"*, and|strong=\"H4872\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* Jacob|strong=\"H3290\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* surely|strong=\"H3588\"* seen|strong=\"H7200\"* the|strong=\"H6440\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* their|strong=\"H3068\"* cry|strong=\"H6818\"* because|strong=\"H3588\"* of|strong=\"H3068\"* their|strong=\"H3068\"* taskmasters|strong=\"H5065\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* their|strong=\"H3068\"* sorrows|strong=\"H4341\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3027\"* have|strong=\"H3027\"* come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* deliver|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H4480\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H4480\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3027\"* to|strong=\"H3381\"* bring|strong=\"H5927\"* them|strong=\"H3027\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H3027\"* that|strong=\"H1931\"* land|strong=\"H4725\"* to|strong=\"H3381\"* a|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3027\"* large|strong=\"H7342\"* land|strong=\"H4725\"*, to|strong=\"H3381\"* a|strong=\"H3068\"* land|strong=\"H4725\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3027\"* honey|strong=\"H1706\"*; to|strong=\"H3381\"* the|strong=\"H4480\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H4480\"* Canaanite|strong=\"H3669\"*, the|strong=\"H4480\"* Hittite|strong=\"H2850\"*, the|strong=\"H4480\"* Amorite, the|strong=\"H4480\"* Perizzite|strong=\"H6522\"*, the|strong=\"H4480\"* Hivite|strong=\"H2340\"*, and|strong=\"H3027\"* the|strong=\"H4480\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H7200\"* cry|strong=\"H6818\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H7200\"*. Moreover|strong=\"H1571\"* I|strong=\"H2009\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* oppression|strong=\"H3906\"* with|strong=\"H3478\"* which|strong=\"H3478\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* oppress|strong=\"H3905\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "Come|strong=\"H3318\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H1121\"* I|strong=\"H6258\"* will|strong=\"H5971\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* may|strong=\"H5971\"* bring|strong=\"H3318\"* my|strong=\"H7971\"* people|strong=\"H5971\"*, the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* God|strong=\"H4310\"*, “Who|strong=\"H4310\"* am I|strong=\"H3588\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* go|strong=\"H3212\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* bring|strong=\"H3318\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said|strong=\"H3318\"*, “Certainly|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. This|strong=\"H2088\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5921\"* token to|strong=\"H3318\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sent|strong=\"H7971\"* you|strong=\"H3588\"*: when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H3318\"* the|strong=\"H5921\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H2022\"* Egypt|strong=\"H4714\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* serve|strong=\"H5647\"* God|strong=\"H7971\"* on|strong=\"H5921\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* God|strong=\"H7971\"*, “Behold|strong=\"H2009\"*, when|strong=\"H7971\"* I|strong=\"H2009\"* come|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H7971\"*, ‘The|strong=\"H7971\"* God|strong=\"H7971\"* of|strong=\"H1121\"* your|strong=\"H7971\"* fathers has|strong=\"H3478\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*,’ and|strong=\"H1121\"* they|strong=\"H4100\"* ask me|strong=\"H7971\"*, ‘What|strong=\"H4100\"* is|strong=\"H4100\"* his|strong=\"H7971\"* name|strong=\"H8034\"*?’ what|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H2009\"* tell them|strong=\"H7971\"*?”" + }, + { + "verseNum": 14, + "text": "God|strong=\"H7971\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “I|strong=\"H3541\"* AM|strong=\"H1961\"* WHO|strong=\"H1121\"* I|strong=\"H3541\"* AM|strong=\"H1961\"*,” and|strong=\"H1121\"* he|strong=\"H7971\"* said, “You|strong=\"H7971\"* shall|strong=\"H1121\"* tell the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* this|strong=\"H3541\"*: ‘I|strong=\"H3541\"* AM|strong=\"H1961\"* has|strong=\"H1961\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*.’”" + }, + { + "verseNum": 15, + "text": "God|strong=\"H3068\"* said moreover|strong=\"H3541\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “You|strong=\"H7971\"* shall|strong=\"H3068\"* tell the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* this|strong=\"H2088\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Abraham, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"*.’ This|strong=\"H2088\"* is|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*, and|strong=\"H1121\"* this|strong=\"H2088\"* is|strong=\"H3068\"* my|strong=\"H3068\"* memorial|strong=\"H2143\"* to|strong=\"H3478\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 16, + "text": "Go|strong=\"H3212\"* and|strong=\"H3478\"* gather|strong=\"H6213\"* the|strong=\"H7200\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* together, and|strong=\"H3478\"* tell|strong=\"H7200\"* them|strong=\"H6213\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3478\"* me|strong=\"H7200\"*, saying, “I|strong=\"H4714\"* have|strong=\"H3068\"* surely|strong=\"H6485\"* visited|strong=\"H6485\"* you|strong=\"H6213\"*, and|strong=\"H3478\"* seen|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H3068\"* is|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H6213\"* in|strong=\"H3478\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H4714\"* have|strong=\"H4714\"* said, I|strong=\"H4714\"* will|strong=\"H4714\"* bring|strong=\"H5927\"* you|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H2100\"* of|strong=\"H5927\"* the|strong=\"H5927\"* affliction|strong=\"H6040\"* of|strong=\"H5927\"* Egypt|strong=\"H4714\"* to|strong=\"H5927\"* the|strong=\"H5927\"* land of|strong=\"H5927\"* the|strong=\"H5927\"* Canaanite|strong=\"H3669\"*, the|strong=\"H5927\"* Hittite|strong=\"H2850\"*, the|strong=\"H5927\"* Amorite, the|strong=\"H5927\"* Perizzite|strong=\"H6522\"*, the|strong=\"H5927\"* Hivite|strong=\"H2340\"*, and|strong=\"H2461\"* the|strong=\"H5927\"* Jebusite|strong=\"H2983\"*, to|strong=\"H5927\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*.”’" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3117\"* will|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3068\"* voice|strong=\"H6963\"*. You|strong=\"H5921\"* shall|strong=\"H3068\"* come|strong=\"H3212\"*, you|strong=\"H5921\"* and|strong=\"H3478\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H5921\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"*, has|strong=\"H3068\"* met|strong=\"H7136\"* with|strong=\"H3068\"* us|strong=\"H4994\"*. Now|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* into|strong=\"H3212\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H4994\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* won’t give|strong=\"H5414\"* you|strong=\"H3588\"* permission to|strong=\"H1980\"* go|strong=\"H1980\"*, no|strong=\"H3808\"*, not|strong=\"H3808\"* by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3651\"* will|strong=\"H3027\"* reach|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* strike|strong=\"H5221\"* Egypt|strong=\"H4713\"* with|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* wonders|strong=\"H6381\"* which|strong=\"H3605\"* I|strong=\"H3651\"* will|strong=\"H3027\"* do|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* after|strong=\"H7971\"* that|strong=\"H3605\"* he|strong=\"H3651\"* will|strong=\"H3027\"* let|strong=\"H7971\"* you|strong=\"H3605\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* the|strong=\"H3588\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3588\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3212\"* it|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* empty-handed|strong=\"H7387\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H5921\"* every|strong=\"H7760\"* woman|strong=\"H1323\"* shall|strong=\"H1121\"* ask|strong=\"H7592\"* of|strong=\"H1121\"* her|strong=\"H5921\"* neighbor|strong=\"H7934\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* her|strong=\"H5921\"* who|strong=\"H1121\"* visits her|strong=\"H5921\"* house|strong=\"H1004\"*, jewels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, jewels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* clothing|strong=\"H8071\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* your|strong=\"H5921\"* daughters|strong=\"H1323\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* plunder|strong=\"H5337\"* the|strong=\"H5921\"* Egyptians|strong=\"H4713\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* answered|strong=\"H6030\"*, “But|strong=\"H3588\"*, behold|strong=\"H2005\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* believe me|strong=\"H7200\"*, nor|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H6963\"*, ‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H3027\"*, “What|strong=\"H2088\"* is|strong=\"H3068\"* that|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6440\"* said, “Throw|strong=\"H7993\"* it|strong=\"H6440\"* on|strong=\"H1961\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*.”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* take|strong=\"H2388\"* it|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H3068\"* tail|strong=\"H2180\"*.”" + }, + { + "verseNum": 5, + "text": "“This|strong=\"H7200\"* is|strong=\"H3068\"* so|strong=\"H4616\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* believe that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*, has|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* furthermore|strong=\"H5750\"* to|strong=\"H3318\"* him|strong=\"H3027\"*, “Now|strong=\"H4994\"* put|strong=\"H3318\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* inside|strong=\"H3027\"* your|strong=\"H3068\"* cloak.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3027\"* said|strong=\"H3318\"*, “Put|strong=\"H7725\"* your|strong=\"H7725\"* hand|strong=\"H3027\"* inside|strong=\"H3027\"* your|strong=\"H7725\"* cloak again|strong=\"H7725\"*.”" + }, + { + "verseNum": 8, + "text": "“It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* believe you|strong=\"H3808\"* or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* first|strong=\"H7223\"* sign, that|strong=\"H8085\"* they|strong=\"H3808\"* will|strong=\"H1961\"* believe the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* latter sign." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* believe even|strong=\"H1571\"* these|strong=\"H8085\"* two|strong=\"H8147\"* signs or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* your|strong=\"H3947\"* voice|strong=\"H6963\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* shall|strong=\"H3808\"* take|strong=\"H3947\"* of|strong=\"H6963\"* the|strong=\"H8085\"* water|strong=\"H4325\"* of|strong=\"H6963\"* the|strong=\"H8085\"* river|strong=\"H2975\"*, and|strong=\"H6963\"* pour|strong=\"H8210\"* it|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H8085\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*. The|strong=\"H8085\"* water|strong=\"H4325\"* which|strong=\"H4325\"* you|strong=\"H3947\"* take|strong=\"H3947\"* out|strong=\"H8210\"* of|strong=\"H6963\"* the|strong=\"H8085\"* river|strong=\"H2975\"* will|strong=\"H1961\"* become|strong=\"H1961\"* blood|strong=\"H1818\"* on|strong=\"H1961\"* the|strong=\"H8085\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*.”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, “O|strong=\"H3068\"* Lord|strong=\"H3068\"*,+ 4:10 The word translated “Lord” is “Adonai”.* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* eloquent|strong=\"H1697\"*, neither|strong=\"H3808\"* before|strong=\"H3808\"* now|strong=\"H3588\"*, nor|strong=\"H3808\"* since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* slow|strong=\"H3515\"* of|strong=\"H3068\"* speech|strong=\"H1697\"*, and|strong=\"H4872\"* of|strong=\"H3068\"* a|strong=\"H3068\"* slow|strong=\"H3515\"* tongue|strong=\"H3956\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6310\"* to|strong=\"H3068\"* him|strong=\"H7760\"*, “Who|strong=\"H4310\"* made|strong=\"H7760\"* man|strong=\"H2795\"*’s mouth|strong=\"H6310\"*? Or|strong=\"H3808\"* who|strong=\"H4310\"* makes|strong=\"H7760\"* one|strong=\"H3808\"* mute, or|strong=\"H3808\"* deaf|strong=\"H2795\"*, or|strong=\"H3808\"* seeing|strong=\"H6493\"*, or|strong=\"H3808\"* blind|strong=\"H5787\"*? Isn’t it|strong=\"H7760\"* I|strong=\"H7760\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* go|strong=\"H3212\"*, and|strong=\"H3212\"* I|strong=\"H6258\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H1961\"* mouth|strong=\"H6310\"*, and|strong=\"H3212\"* teach|strong=\"H3384\"* you|strong=\"H5973\"* what|strong=\"H6310\"* you|strong=\"H5973\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 13, + "text": "Moses said, “Oh|strong=\"H4994\"*, Lord, please|strong=\"H4994\"* send|strong=\"H7971\"* someone else|strong=\"H3027\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H7125\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* he|strong=\"H1931\"* said|strong=\"H1696\"*, “What|strong=\"H3045\"* about|strong=\"H3045\"* Aaron, your|strong=\"H3068\"* brother, the|strong=\"H7200\"* Levite|strong=\"H3881\"*? I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* can|strong=\"H7200\"* speak|strong=\"H1696\"* well|strong=\"H1571\"*. Also|strong=\"H1571\"*, behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* you|strong=\"H3588\"*. When|strong=\"H3588\"* he|strong=\"H1931\"* sees|strong=\"H7200\"* you|strong=\"H3588\"*, he|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3808\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6213\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, and|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* words|strong=\"H1697\"* in|strong=\"H6213\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*. I|strong=\"H7760\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H6213\"* with|strong=\"H5973\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H6213\"* will|strong=\"H1961\"* teach|strong=\"H3384\"* you|strong=\"H6213\"* what|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H6310\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* spokesman|strong=\"H6310\"* to|strong=\"H1696\"* the|strong=\"H1961\"* people|strong=\"H5971\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5971\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1696\"* you|strong=\"H1696\"* a|strong=\"H3068\"* mouth|strong=\"H6310\"*, and|strong=\"H5971\"* you|strong=\"H1696\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1696\"* him|strong=\"H1931\"* as|strong=\"H1961\"* God." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3947\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* this|strong=\"H2088\"* rod|strong=\"H4294\"* in|strong=\"H6213\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, with|strong=\"H6213\"* which|strong=\"H2088\"* you|strong=\"H3947\"* shall|strong=\"H3027\"* do|strong=\"H6213\"* the|strong=\"H3947\"* signs.”" + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3212\"* and|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jethro|strong=\"H3503\"* his|strong=\"H7725\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* said to|strong=\"H7725\"* him|strong=\"H7725\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"* and|strong=\"H4872\"* return|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H7200\"* brothers who|strong=\"H2416\"* are|strong=\"H4714\"* in|strong=\"H3212\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* they|strong=\"H7965\"* are|strong=\"H4714\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* Midian|strong=\"H4080\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* sought|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"* are|strong=\"H3068\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* his|strong=\"H3947\"* wife and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* set|strong=\"H7392\"* them|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, and|strong=\"H1121\"* he|strong=\"H3027\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Moses|strong=\"H4872\"* took|strong=\"H3947\"* God|strong=\"H3027\"*’s rod|strong=\"H4294\"* in|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “When|strong=\"H7200\"* you|strong=\"H6440\"* go|strong=\"H3212\"* back|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*, see|strong=\"H7200\"* that|strong=\"H5971\"* you|strong=\"H6440\"* do|strong=\"H6213\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wonders|strong=\"H4159\"* which|strong=\"H3068\"* I|strong=\"H7760\"* have|strong=\"H3068\"* put|strong=\"H7760\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, but|strong=\"H3808\"* I|strong=\"H7760\"* will|strong=\"H3068\"* harden|strong=\"H2388\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H4872\"* he|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H7971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3478\"* shall|strong=\"H3068\"* tell Pharaoh|strong=\"H6547\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, Israel|strong=\"H3478\"* is|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, my|strong=\"H3068\"* firstborn|strong=\"H1060\"*," + }, + { + "verseNum": 23, + "text": "and|strong=\"H1121\"* I|strong=\"H2009\"* have|strong=\"H1121\"* said to|strong=\"H7971\"* you|strong=\"H7971\"*, “Let|strong=\"H7971\"* my|strong=\"H7971\"* son|strong=\"H1121\"* go|strong=\"H7971\"*, that|strong=\"H1121\"* he|strong=\"H7971\"* may|strong=\"H1121\"* serve|strong=\"H5647\"* me|strong=\"H7971\"*;” and|strong=\"H1121\"* you|strong=\"H7971\"* have|strong=\"H1121\"* refused|strong=\"H3985\"* to|strong=\"H7971\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H1121\"* kill|strong=\"H2026\"* your|strong=\"H7971\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"*.’”" + }, + { + "verseNum": 24, + "text": "On|strong=\"H1870\"* the|strong=\"H3068\"* way|strong=\"H1870\"* at|strong=\"H3068\"* a|strong=\"H3068\"* lodging|strong=\"H4411\"* place|strong=\"H4411\"*, Yahweh|strong=\"H3068\"* met|strong=\"H6298\"* Moses and|strong=\"H3068\"* wanted|strong=\"H1245\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3947\"* Zipporah|strong=\"H6855\"* took|strong=\"H3947\"* a|strong=\"H3068\"* flint|strong=\"H6864\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3588\"* foreskin|strong=\"H6190\"* of|strong=\"H1121\"* her|strong=\"H3947\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* cast|strong=\"H5060\"* it|strong=\"H3588\"* at|strong=\"H1121\"* his|strong=\"H3947\"* feet|strong=\"H7272\"*; and|strong=\"H1121\"* she|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* bridegroom|strong=\"H2860\"* of|strong=\"H1121\"* blood|strong=\"H1818\"* to|strong=\"H1121\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 26, + "text": "So|strong=\"H4480\"* he|strong=\"H4480\"* let|strong=\"H7503\"* him|strong=\"H7503\"* alone|strong=\"H7503\"*. Then she said, “You|strong=\"H4480\"* are|strong=\"H1818\"* a|strong=\"H3068\"* bridegroom|strong=\"H2860\"* of|strong=\"H4480\"* blood|strong=\"H1818\"*,” because|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* circumcision|strong=\"H4139\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3212\"* Aaron, “Go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* told|strong=\"H5046\"* Aaron all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* instructed|strong=\"H6680\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron went|strong=\"H3212\"* and|strong=\"H1121\"* gathered|strong=\"H3478\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "Aaron spoke|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* did|strong=\"H6213\"* the|strong=\"H3605\"* signs in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* believed, and|strong=\"H1121\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* visited|strong=\"H6485\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* seen|strong=\"H7200\"* their|strong=\"H3068\"* affliction|strong=\"H6040\"*, then|strong=\"H8085\"* they|strong=\"H3588\"* bowed|strong=\"H7812\"* their|strong=\"H3068\"* heads|strong=\"H6915\"* and|strong=\"H1121\"* worshiped|strong=\"H7812\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Afterward Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron came|strong=\"H3478\"*, and|strong=\"H4872\"* said to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* hold a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H3478\"* me|strong=\"H7971\"* in|strong=\"H3478\"* the|strong=\"H3541\"* wilderness|strong=\"H4057\"*.’”" + }, + { + "verseNum": 2, + "text": "Pharaoh|strong=\"H6547\"* said|strong=\"H8085\"*, “Who|strong=\"H4310\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3045\"* I|strong=\"H3045\"* should|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* his|strong=\"H3068\"* voice|strong=\"H6963\"* to|strong=\"H3478\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*? I|strong=\"H3045\"* don’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* moreover|strong=\"H1571\"* I|strong=\"H3045\"* will|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* said, “The|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Hebrews|strong=\"H5680\"* has|strong=\"H3068\"* met|strong=\"H7122\"* with|strong=\"H3068\"* us|strong=\"H4994\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* into|strong=\"H3212\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*, lest|strong=\"H6435\"* he|strong=\"H3117\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* us|strong=\"H4994\"* with|strong=\"H3068\"* pestilence|strong=\"H1698\"*, or|strong=\"H6435\"* with|strong=\"H3068\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H4872\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* said to|strong=\"H3212\"* them, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"*, Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, take|strong=\"H3212\"* the|strong=\"H4872\"* people|strong=\"H5971\"* from|strong=\"H3212\"* their|strong=\"H4714\"* work|strong=\"H4639\"*? Get|strong=\"H3212\"* back|strong=\"H6544\"* to|strong=\"H3212\"* your|strong=\"H4100\"* burdens|strong=\"H5450\"*!”" + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"* said, “Behold|strong=\"H2005\"*, the|strong=\"H6258\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H6258\"* land are|strong=\"H5971\"* now|strong=\"H6258\"* many|strong=\"H7227\"*, and|strong=\"H5971\"* you|strong=\"H5971\"* make|strong=\"H7673\"* them rest|strong=\"H7673\"* from|strong=\"H7673\"* their|strong=\"H6258\"* burdens|strong=\"H5450\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"* Pharaoh|strong=\"H6547\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* taskmasters|strong=\"H5065\"* of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* and|strong=\"H3117\"* their|strong=\"H3117\"* officers|strong=\"H7860\"*, saying," + }, + { + "verseNum": 7, + "text": "“You|strong=\"H5414\"* shall|strong=\"H5971\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* give|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* straw|strong=\"H8401\"* to|strong=\"H3212\"* make|strong=\"H5414\"* brick|strong=\"H3843\"*, as|strong=\"H5971\"* before|strong=\"H3808\"*. Let|strong=\"H5414\"* them|strong=\"H5414\"* go|strong=\"H3212\"* and|strong=\"H3212\"* gather|strong=\"H7197\"* straw|strong=\"H8401\"* for|strong=\"H5414\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* require from|strong=\"H4480\"* them|strong=\"H1992\"* the|strong=\"H5921\"* number of|strong=\"H4480\"* the|strong=\"H5921\"* bricks|strong=\"H3843\"* which|strong=\"H1992\"* they|strong=\"H1992\"* made|strong=\"H6213\"* before|strong=\"H4480\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* anything|strong=\"H1992\"* of|strong=\"H4480\"* it|strong=\"H7760\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* idle|strong=\"H7503\"*. Therefore|strong=\"H3651\"* they|strong=\"H1992\"* cry|strong=\"H6817\"*, saying, ‘Let|strong=\"H7503\"*’s go|strong=\"H3212\"* and|strong=\"H3212\"* sacrifice|strong=\"H2076\"* to|strong=\"H3212\"* our|strong=\"H5921\"* God|strong=\"H3808\"*.’" + }, + { + "verseNum": 9, + "text": "Let heavier|strong=\"H3513\"* work|strong=\"H5656\"* be|strong=\"H1697\"* laid|strong=\"H3513\"* on|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H6213\"*, that|strong=\"H1697\"* they|strong=\"H5921\"* may|strong=\"H6213\"* labor|strong=\"H5656\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. Don’t let them|strong=\"H5921\"* pay|strong=\"H8159\"* any|strong=\"H6213\"* attention|strong=\"H8159\"* to|strong=\"H5921\"* lying|strong=\"H8267\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* taskmasters|strong=\"H5065\"* of|strong=\"H5971\"* the|strong=\"H5414\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* their|strong=\"H5414\"* officers|strong=\"H7860\"*, and|strong=\"H5971\"* they|strong=\"H5971\"* spoke to|strong=\"H3318\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, saying, “This|strong=\"H3541\"* is|strong=\"H5971\"* what|strong=\"H3541\"* Pharaoh|strong=\"H6547\"* says|strong=\"H3541\"*: ‘I|strong=\"H5414\"* will|strong=\"H5971\"* not|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* straw|strong=\"H8401\"*." + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3212\"* yourselves, get|strong=\"H3947\"* straw|strong=\"H8401\"* where you|strong=\"H3588\"* can|strong=\"H3947\"* find|strong=\"H4672\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* nothing|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H3947\"* work|strong=\"H5656\"* shall|strong=\"H1697\"* be|strong=\"H1697\"* diminished|strong=\"H1639\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H6327\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Egypt|strong=\"H4714\"* to|strong=\"H4714\"* gather|strong=\"H7197\"* stubble|strong=\"H7179\"* for|strong=\"H4714\"* straw|strong=\"H8401\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3117\"* taskmasters|strong=\"H5065\"* were|strong=\"H1961\"* urgent saying|strong=\"H1697\"*, “Fulfill|strong=\"H3615\"* your|strong=\"H1961\"* work|strong=\"H4639\"* quota|strong=\"H4639\"* daily|strong=\"H3117\"*, as|strong=\"H1697\"* when|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* straw|strong=\"H8401\"*!”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, whom Pharaoh|strong=\"H6547\"*’s taskmasters|strong=\"H5065\"* had|strong=\"H3478\"* set|strong=\"H7760\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, were|strong=\"H3478\"* beaten|strong=\"H5221\"*, and|strong=\"H1121\"* were|strong=\"H3478\"* asked, “Why|strong=\"H4069\"* haven’t you|strong=\"H5921\"* fulfilled|strong=\"H3615\"* your|strong=\"H5921\"* quota both|strong=\"H1571\"* yesterday|strong=\"H8543\"* and|strong=\"H1121\"* today|strong=\"H3117\"*, in|strong=\"H5921\"* making|strong=\"H3835\"* brick|strong=\"H3835\"* as|strong=\"H3117\"* before|strong=\"H5921\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6213\"* the|strong=\"H3541\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H1121\"* cried|strong=\"H6817\"* to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, saying, “Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* deal|strong=\"H6213\"* this|strong=\"H6213\"* way|strong=\"H3541\"* with|strong=\"H6213\"* your|strong=\"H6213\"* servants|strong=\"H5650\"*?" + }, + { + "verseNum": 16, + "text": "No|strong=\"H6213\"* straw|strong=\"H8401\"* is|strong=\"H2009\"* given|strong=\"H5414\"* to|strong=\"H6213\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H5971\"* they|strong=\"H6213\"* tell us|strong=\"H5414\"*, ‘Make|strong=\"H6213\"* brick|strong=\"H3843\"*!’ and|strong=\"H5971\"* behold|strong=\"H2009\"*, your|strong=\"H5414\"* servants|strong=\"H5650\"* are|strong=\"H5971\"* beaten|strong=\"H5221\"*; but|strong=\"H2009\"* the|strong=\"H5414\"* fault|strong=\"H2398\"* is|strong=\"H2009\"* in|strong=\"H6213\"* your|strong=\"H5414\"* own|strong=\"H5971\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3651\"* Pharaoh said|strong=\"H3651\"*, “You|strong=\"H5921\"* are|strong=\"H3068\"* idle|strong=\"H7503\"*! You|strong=\"H5921\"* are|strong=\"H3068\"* idle|strong=\"H7503\"*! Therefore|strong=\"H3651\"* you|strong=\"H5921\"* say, ‘Let|strong=\"H7503\"*’s go|strong=\"H3212\"* and|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 18, + "text": "Go|strong=\"H3212\"* therefore|strong=\"H6258\"* now|strong=\"H6258\"*, and|strong=\"H3212\"* work|strong=\"H5647\"*; for|strong=\"H5414\"* no|strong=\"H3808\"* straw|strong=\"H8401\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H3212\"* you|strong=\"H5414\"*; yet|strong=\"H6258\"* you|strong=\"H5414\"* shall|strong=\"H3808\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* same number of|strong=\"H5647\"* bricks|strong=\"H3843\"*!”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* officers|strong=\"H7860\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H3117\"* were|strong=\"H3478\"* in|strong=\"H3478\"* trouble|strong=\"H7451\"* when|strong=\"H3117\"* it|strong=\"H7200\"* was|strong=\"H3478\"* said|strong=\"H1697\"*, “You|strong=\"H3117\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* anything|strong=\"H1697\"* from|strong=\"H3478\"* your|strong=\"H7200\"* daily|strong=\"H3117\"* quota of|strong=\"H1121\"* bricks|strong=\"H3843\"*!”" + }, + { + "verseNum": 20, + "text": "They|strong=\"H3318\"* met|strong=\"H6293\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, who|strong=\"H6547\"* stood|strong=\"H5324\"* along the|strong=\"H3318\"* way|strong=\"H7125\"*, as|strong=\"H3318\"* they|strong=\"H3318\"* came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H5414\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* look|strong=\"H7200\"* at|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3068\"* judge|strong=\"H8199\"*, because|strong=\"H5921\"* you|strong=\"H5414\"* have|strong=\"H3068\"* made|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* stench to|strong=\"H3068\"* be|strong=\"H3027\"* abhorred in|strong=\"H5921\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, to|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* kill|strong=\"H2026\"* us|strong=\"H5414\"*!”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* said, “Lord|strong=\"H3068\"*, why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H7971\"* brought|strong=\"H7725\"* trouble|strong=\"H2088\"* on|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*? Why|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H7725\"* that|strong=\"H5971\"* you|strong=\"H7971\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*?" + }, + { + "verseNum": 23, + "text": "For|strong=\"H8034\"* since I|strong=\"H2088\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H1696\"* your|strong=\"H3808\"* name|strong=\"H8034\"*, he|strong=\"H3808\"* has|strong=\"H2088\"* brought|strong=\"H7489\"* trouble|strong=\"H2088\"* on|strong=\"H1696\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. You|strong=\"H3808\"* have|strong=\"H5971\"* not|strong=\"H3808\"* rescued|strong=\"H5337\"* your|strong=\"H3808\"* people|strong=\"H5971\"* at|strong=\"H3808\"* all|strong=\"H5337\"*!”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Now|strong=\"H6258\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H4872\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H1644\"* them|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* his|strong=\"H3068\"* land.”" + }, + { + "verseNum": 2, + "text": "God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4872\"*, “I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3045\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, as|strong=\"H3068\"* God|strong=\"H3068\"* Almighty|strong=\"H7706\"*; but|strong=\"H3808\"* by|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* Yahweh|strong=\"H3068\"* I|strong=\"H3045\"* was|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H3068\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* have|strong=\"H1571\"* also|strong=\"H1571\"* established|strong=\"H6965\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H1285\"* Canaan|strong=\"H3667\"*, the|strong=\"H5414\"* land of|strong=\"H1285\"* their|strong=\"H5414\"* travels, in|strong=\"H5414\"* which|strong=\"H1285\"* they|strong=\"H1571\"* lived|strong=\"H1481\"* as|strong=\"H1571\"* aliens|strong=\"H1481\"*." + }, + { + "verseNum": 5, + "text": "Moreover|strong=\"H1571\"* I|strong=\"H4714\"* have|strong=\"H1121\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* groaning|strong=\"H5009\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, whom the|strong=\"H8085\"* Egyptians|strong=\"H4714\"* keep|strong=\"H5647\"* in|strong=\"H3478\"* bondage|strong=\"H5647\"*, and|strong=\"H1121\"* I|strong=\"H4714\"* have|strong=\"H1121\"* remembered|strong=\"H2142\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* tell the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘I|strong=\"H3651\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* you|strong=\"H3651\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H3068\"* burdens|strong=\"H5450\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* rid|strong=\"H5337\"* you|strong=\"H3651\"* out|strong=\"H3318\"* of|strong=\"H1121\"* their|strong=\"H3068\"* bondage|strong=\"H5656\"*, and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H3068\"* redeem|strong=\"H1350\"* you|strong=\"H3651\"* with|strong=\"H3068\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H1121\"* with|strong=\"H3068\"* great|strong=\"H1419\"* judgments|strong=\"H8201\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"* to|strong=\"H3318\"* myself|strong=\"H3045\"* for|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* brings|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H3588\"* burdens|strong=\"H5450\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* bring|strong=\"H5375\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Abraham|strong=\"H5375\"*, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*; and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* for|strong=\"H3027\"* a|strong=\"H3068\"* heritage|strong=\"H4181\"*: I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* so|strong=\"H3651\"* to|strong=\"H1696\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* for|strong=\"H1121\"* anguish|strong=\"H7115\"* of|strong=\"H1121\"* spirit|strong=\"H7307\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* cruel|strong=\"H7186\"* bondage|strong=\"H5656\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Go|strong=\"H7971\"* in|strong=\"H3478\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, that|strong=\"H3478\"* he|strong=\"H7971\"* let|strong=\"H7971\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H7971\"* land.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2005\"*, the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* haven’t listened|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H6440\"*. How|strong=\"H8085\"* then|strong=\"H1696\"* shall|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, when|strong=\"H8085\"* I|strong=\"H2005\"* have|strong=\"H3068\"* uncircumcised|strong=\"H6189\"* lips|strong=\"H8193\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* gave|strong=\"H6680\"* them|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* bring|strong=\"H3318\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* their fathers’ houses|strong=\"H1004\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Hanoch|strong=\"H2585\"*, and|strong=\"H1121\"* Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*; these|strong=\"H1004\"* are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Jemuel|strong=\"H3223\"*, and|strong=\"H1121\"* Jamin|strong=\"H3226\"*, and|strong=\"H1121\"* Ohad, and|strong=\"H1121\"* Jachin|strong=\"H3199\"*, and|strong=\"H1121\"* Zohar|strong=\"H6714\"*, and|strong=\"H1121\"* Shaul|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"* woman|strong=\"H3669\"*; these are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 16, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* according to|strong=\"H1121\"* their|strong=\"H4847\"* generations|strong=\"H8435\"*: Gershon|strong=\"H1648\"*, and|strong=\"H3967\"* Kohath|strong=\"H6955\"*, and|strong=\"H3967\"* Merari|strong=\"H4847\"*; and|strong=\"H3967\"* the|strong=\"H8034\"* years|strong=\"H8141\"* of|strong=\"H1121\"* the|strong=\"H8034\"* life|strong=\"H2416\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* were|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*: Libni|strong=\"H3845\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*, according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*: Amram|strong=\"H6019\"*, and|strong=\"H3967\"* Izhar|strong=\"H3324\"*, and|strong=\"H3967\"* Hebron|strong=\"H2275\"*, and|strong=\"H3967\"* Uzziel|strong=\"H5816\"*; and|strong=\"H3967\"* the|strong=\"H1121\"* years|strong=\"H8141\"* of|strong=\"H1121\"* the|strong=\"H1121\"* life|strong=\"H2416\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* were|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3878\"* according to|strong=\"H1121\"* their|strong=\"H4847\"* generations|strong=\"H8435\"*." + }, + { + "verseNum": 20, + "text": "Amram|strong=\"H6019\"* took|strong=\"H3947\"* Jochebed|strong=\"H3115\"* his|strong=\"H3947\"* father|strong=\"H3205\"*’s sister|strong=\"H1733\"* to|strong=\"H3205\"* himself as|strong=\"H8141\"* wife|strong=\"H2416\"*; and|strong=\"H3967\"* she|strong=\"H3967\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Aaron and|strong=\"H3967\"* Moses|strong=\"H4872\"*. The|strong=\"H3947\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3947\"* life|strong=\"H2416\"* of|strong=\"H8141\"* Amram|strong=\"H6019\"* were|strong=\"H3205\"* one|strong=\"H2416\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*: Korah|strong=\"H7141\"*, and|strong=\"H1121\"* Nepheg|strong=\"H5298\"*, and|strong=\"H1121\"* Zichri|strong=\"H2147\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Mishael|strong=\"H4332\"*, Elzaphan, and|strong=\"H1121\"* Sithri|strong=\"H5644\"*." + }, + { + "verseNum": 23, + "text": "Aaron took|strong=\"H3947\"* Elisheba, the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Amminadab|strong=\"H5992\"*, the|strong=\"H3947\"* sister of|strong=\"H1323\"* Nahshon|strong=\"H5177\"*, as|strong=\"H1323\"* his|strong=\"H3947\"* wife; and|strong=\"H5070\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Nadab|strong=\"H5070\"* and|strong=\"H5070\"* Abihu, Eleazar and|strong=\"H5070\"* Ithamar." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*: Assir, Elkanah, and|strong=\"H1121\"* Abiasaph; these are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Korahites|strong=\"H7145\"*." + }, + { + "verseNum": 25, + "text": "Eleazar Aaron’s son|strong=\"H1121\"* took|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Putiel|strong=\"H6317\"* as|strong=\"H1121\"* his|strong=\"H3947\"* wife; and|strong=\"H1121\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Phinehas|strong=\"H6372\"*. These|strong=\"H3947\"* are|strong=\"H1121\"* the|strong=\"H3947\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3947\"* fathers|strong=\"H3205\"*’ houses of|strong=\"H1121\"* the|strong=\"H3947\"* Levites|strong=\"H3881\"* according to|strong=\"H3205\"* their|strong=\"H3947\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"H1931\"* are|strong=\"H1121\"* that|strong=\"H1931\"* Aaron and|strong=\"H1121\"* Moses|strong=\"H4872\"* to|strong=\"H3318\"* whom Yahweh|strong=\"H3068\"* said|strong=\"H3318\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* according|strong=\"H5921\"* to|strong=\"H3318\"* their|strong=\"H3068\"* armies|strong=\"H6635\"*.”" + }, + { + "verseNum": 27, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* that|strong=\"H1931\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 28, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 29, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Tell|strong=\"H1696\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H4714\"* tell|strong=\"H1696\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* of|strong=\"H3068\"* uncircumcised|strong=\"H6189\"* lips|strong=\"H8193\"*, and|strong=\"H4872\"* how|strong=\"H8085\"* shall|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6440\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* made|strong=\"H5414\"* you|strong=\"H5414\"* as|strong=\"H1961\"* God|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H4872\"* Aaron your|strong=\"H3068\"* brother shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6680\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6680\"*; and|strong=\"H1121\"* Aaron your|strong=\"H3605\"* brother shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* let|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 3, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* harden|strong=\"H7185\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H4714\"* multiply|strong=\"H7235\"* my|strong=\"H7235\"* signs and|strong=\"H4714\"* my|strong=\"H7235\"* wonders|strong=\"H4159\"* in|strong=\"H4714\"* the|strong=\"H7235\"* land of|strong=\"H3820\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* Pharaoh|strong=\"H6547\"* will|strong=\"H5971\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3318\"* you|strong=\"H5414\"*, so|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5971\"* lay|strong=\"H5414\"* my|strong=\"H8085\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H8085\"* armies|strong=\"H6635\"*, my|strong=\"H8085\"* people|strong=\"H5971\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H3027\"* great|strong=\"H1419\"* judgments|strong=\"H8201\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Egyptians|strong=\"H4714\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* stretch|strong=\"H5186\"* out|strong=\"H3318\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* from|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*. As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* Aaron eighty-three|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, when|strong=\"H1696\"* they|strong=\"H8141\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H3068\"* Aaron, saying," + }, + { + "verseNum": 9, + "text": "“When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, saying|strong=\"H1696\"*, ‘Perform|strong=\"H5414\"* a|strong=\"H3068\"* miracle|strong=\"H4159\"*!’ then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H6547\"* tell|strong=\"H1696\"* Aaron, ‘Take|strong=\"H3947\"* your|strong=\"H5414\"* rod|strong=\"H4294\"*, and|strong=\"H6440\"* cast|strong=\"H7993\"* it|strong=\"H5414\"* down|strong=\"H7993\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H6440\"* it|strong=\"H5414\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H8577\"*.’”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* they|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"*. Aaron cast|strong=\"H7993\"* down|strong=\"H7993\"* his|strong=\"H3068\"* rod|strong=\"H4294\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"* and|strong=\"H4872\"* before|strong=\"H6440\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H4872\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H8577\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* Pharaoh|strong=\"H6547\"* also|strong=\"H1571\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* and|strong=\"H4714\"* the|strong=\"H6213\"* sorcerers|strong=\"H3784\"*. They|strong=\"H1992\"* also|strong=\"H1571\"*, the|strong=\"H6213\"* magicians|strong=\"H2748\"* of|strong=\"H6213\"* Egypt|strong=\"H4714\"*, did|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* thing|strong=\"H3651\"* with|strong=\"H6213\"* their|strong=\"H1992\"* enchantments|strong=\"H3858\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H1961\"* they each cast|strong=\"H7993\"* down|strong=\"H7993\"* their|strong=\"H1961\"* rods|strong=\"H4294\"*, and|strong=\"H4294\"* they became|strong=\"H1961\"* serpents|strong=\"H8577\"*; but|strong=\"H1961\"* Aaron’s rod|strong=\"H4294\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* their|strong=\"H1961\"* rods|strong=\"H4294\"*." + }, + { + "verseNum": 13, + "text": "Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* stubborn|strong=\"H3515\"*. He|strong=\"H3068\"* refuses|strong=\"H3985\"* to|strong=\"H3068\"* let|strong=\"H7971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "Go|strong=\"H3212\"* to|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*. Behold|strong=\"H2009\"*, he|strong=\"H3027\"* is|strong=\"H3027\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* water|strong=\"H4325\"*. You|strong=\"H5921\"* shall|strong=\"H3027\"* stand|strong=\"H5324\"* by|strong=\"H3027\"* the|strong=\"H5921\"* river|strong=\"H2975\"*’s bank|strong=\"H8193\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* the|strong=\"H5921\"* rod|strong=\"H4294\"* which|strong=\"H4325\"* was|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3318\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* in|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H7971\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H7971\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H8085\"* Hebrews|strong=\"H5680\"*, has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H5704\"* you|strong=\"H7971\"*, saying, “Let|strong=\"H7971\"* my|strong=\"H8085\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H7971\"* in|strong=\"H3068\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"*. Behold|strong=\"H2009\"*, until|strong=\"H5704\"* now|strong=\"H2009\"* you|strong=\"H7971\"* haven’t listened|strong=\"H8085\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “In|strong=\"H5921\"* this|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Behold|strong=\"H2009\"*: I|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H5921\"* rod|strong=\"H4294\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H5921\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H2975\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3068\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H4480\"* fish|strong=\"H1710\"* that|strong=\"H4325\"* are|strong=\"H4325\"* in|strong=\"H4191\"* the|strong=\"H4480\"* river|strong=\"H2975\"* will|strong=\"H4325\"* die|strong=\"H4191\"* and|strong=\"H4325\"* the|strong=\"H4480\"* river|strong=\"H2975\"* will|strong=\"H4325\"* become|strong=\"H3811\"* foul. The|strong=\"H4480\"* Egyptians|strong=\"H4713\"* will|strong=\"H4325\"* loathe to|strong=\"H4191\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H4480\"* the|strong=\"H4480\"* river|strong=\"H2975\"*.”’”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H3605\"* Aaron, ‘Take|strong=\"H3947\"* your|strong=\"H3068\"* rod|strong=\"H4294\"*, and|strong=\"H4872\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, over|strong=\"H5921\"* their|strong=\"H3605\"* rivers|strong=\"H5104\"*, over|strong=\"H5921\"* their|strong=\"H3605\"* streams|strong=\"H5104\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* their|strong=\"H3605\"* pools|strong=\"H4723\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* ponds of|strong=\"H3068\"* water|strong=\"H4325\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H1961\"* become|strong=\"H1961\"* blood|strong=\"H1818\"*. There|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blood|strong=\"H1818\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* in|strong=\"H5921\"* vessels of|strong=\"H3068\"* wood|strong=\"H6086\"* and|strong=\"H4872\"* in|strong=\"H5921\"* vessels of|strong=\"H3068\"* stone.’”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*; and|strong=\"H4872\"* he|strong=\"H3651\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* rod|strong=\"H4294\"*, and|strong=\"H4872\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* were|strong=\"H4325\"* in|strong=\"H3068\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* were|strong=\"H4325\"* in|strong=\"H3068\"* the|strong=\"H3605\"* river|strong=\"H2975\"* were|strong=\"H4325\"* turned|strong=\"H2015\"* to|strong=\"H3068\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* fish|strong=\"H1710\"* that|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H3605\"* river|strong=\"H2975\"* died|strong=\"H4191\"*. The|strong=\"H3605\"* river|strong=\"H2975\"* became|strong=\"H1961\"* foul. The|strong=\"H3605\"* Egyptians|strong=\"H4714\"* couldn’t drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H4480\"* the|strong=\"H3605\"* river|strong=\"H2975\"*. The|strong=\"H3605\"* blood|strong=\"H1818\"* was|strong=\"H1961\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4325\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8085\"* magicians|strong=\"H2748\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* did|strong=\"H6213\"* the|strong=\"H8085\"* same|strong=\"H3651\"* thing|strong=\"H3651\"* with|strong=\"H3068\"* their|strong=\"H3068\"* enchantments|strong=\"H3909\"*. So|strong=\"H3651\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H3068\"* he|strong=\"H3651\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 23, + "text": "Pharaoh|strong=\"H6547\"* turned|strong=\"H6437\"* and|strong=\"H1004\"* went|strong=\"H1004\"* into|strong=\"H6547\"* his|strong=\"H7896\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* didn’t even|strong=\"H1571\"* take|strong=\"H7896\"* this|strong=\"H2063\"* to|strong=\"H3820\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* dug|strong=\"H2658\"* around|strong=\"H5439\"* the|strong=\"H3605\"* river|strong=\"H2975\"* for|strong=\"H3588\"* water|strong=\"H4325\"* to|strong=\"H3201\"* drink|strong=\"H8354\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t drink|strong=\"H8354\"* the|strong=\"H3605\"* river|strong=\"H2975\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 25, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, after|strong=\"H3117\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* river|strong=\"H2975\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3068\"* Pharaoh, and|strong=\"H4872\"* tell him|strong=\"H5921\"*, ‘This|strong=\"H3068\"* is|strong=\"H3068\"* what|strong=\"H5927\"* Yahweh|strong=\"H3068\"* says, “Let|strong=\"H5186\"* my|strong=\"H3068\"* people go|strong=\"H5927\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H3027\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "If you|strong=\"H5921\"* refuse to|strong=\"H5927\"* let|strong=\"H5186\"* them|strong=\"H5921\"* go|strong=\"H5927\"*, behold, I|strong=\"H5921\"* will|strong=\"H4714\"* plague all|strong=\"H5921\"* your|strong=\"H5921\"* borders|strong=\"H3027\"* with|strong=\"H5921\"* frogs|strong=\"H6854\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* river will|strong=\"H4714\"* swarm with|strong=\"H6213\"* frogs|strong=\"H6854\"*, which|strong=\"H6854\"* will|strong=\"H4714\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4714\"* come|strong=\"H5927\"* into|strong=\"H5927\"* your|strong=\"H5921\"* house, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* bedroom, and|strong=\"H4714\"* on|strong=\"H5921\"* your|strong=\"H5921\"* bed, and|strong=\"H4714\"* into|strong=\"H5927\"* the|strong=\"H5921\"* house of|strong=\"H5921\"* your|strong=\"H5921\"* servants, and|strong=\"H4714\"* on|strong=\"H5921\"* your|strong=\"H5921\"* people, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* ovens, and|strong=\"H4714\"* into|strong=\"H5927\"* your|strong=\"H5921\"* kneading troughs." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* frogs|strong=\"H6854\"* shall|strong=\"H3068\"* come|strong=\"H5971\"* up|strong=\"H4480\"* both|strong=\"H4480\"* on|strong=\"H3068\"* you|strong=\"H7971\"*, and|strong=\"H4872\"* on|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* on|strong=\"H3068\"* all|strong=\"H4480\"* your|strong=\"H3068\"* servants.”’”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* Moses|strong=\"H4872\"*, “Tell Aaron, ‘Stretch out|strong=\"H4480\"* your|strong=\"H5921\"* hand with|strong=\"H1004\"* your|strong=\"H5921\"* rod over|strong=\"H5921\"* the|strong=\"H5921\"* rivers|strong=\"H2975\"*, over|strong=\"H5921\"* the|strong=\"H5921\"* streams|strong=\"H2975\"*, and|strong=\"H4872\"* over|strong=\"H5921\"* the|strong=\"H5921\"* pools, and|strong=\"H4872\"* cause|strong=\"H5971\"* frogs|strong=\"H6854\"* to|strong=\"H5921\"* come|strong=\"H5971\"* up|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt.’”" + }, + { + "verseNum": 6, + "text": "Aaron stretched out|strong=\"H3045\"* his|strong=\"H3068\"* hand over|strong=\"H3068\"* the|strong=\"H3588\"* waters of|strong=\"H3068\"* Egypt; and|strong=\"H3068\"* the|strong=\"H3588\"* frogs came|strong=\"H3068\"* up, and|strong=\"H3068\"* covered the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt." + }, + { + "verseNum": 7, + "text": "The|strong=\"H4480\"* magicians did|strong=\"H5971\"* the|strong=\"H4480\"* same|strong=\"H4480\"* thing with|strong=\"H1004\"* their|strong=\"H5493\"* enchantments, and|strong=\"H1004\"* brought|strong=\"H5493\"* up|strong=\"H4480\"* frogs|strong=\"H6854\"* on|strong=\"H1004\"* the|strong=\"H4480\"* land of|strong=\"H1004\"* Egypt." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* called|strong=\"H6817\"* for|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Entreat Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* take|strong=\"H7760\"* away|strong=\"H3318\"* the|strong=\"H5921\"* frogs|strong=\"H6854\"* from|strong=\"H3318\"* me|strong=\"H5921\"* and|strong=\"H4872\"* from|strong=\"H3318\"* my|strong=\"H3068\"* people; and|strong=\"H4872\"* I|strong=\"H5921\"* will|strong=\"H3068\"* let|strong=\"H7760\"* the|strong=\"H5921\"* people go|strong=\"H3318\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* sacrifice to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H4191\"* Pharaoh, “I|strong=\"H1697\"* give|strong=\"H7704\"* you|strong=\"H6213\"* the|strong=\"H6213\"* honor of|strong=\"H1004\"* setting the|strong=\"H6213\"* time that|strong=\"H3068\"* I|strong=\"H1697\"* should|strong=\"H3068\"* pray for|strong=\"H6213\"* you|strong=\"H6213\"*, and|strong=\"H4872\"* for|strong=\"H6213\"* your|strong=\"H3068\"* servants, and|strong=\"H4872\"* for|strong=\"H6213\"* your|strong=\"H3068\"* people, that|strong=\"H3068\"* the|strong=\"H6213\"* frogs|strong=\"H6854\"* be|strong=\"H4191\"* destroyed from|strong=\"H4480\"* you|strong=\"H6213\"* and|strong=\"H4872\"* your|strong=\"H3068\"* houses|strong=\"H1004\"*, and|strong=\"H4872\"* remain in|strong=\"H3068\"* the|strong=\"H6213\"* river only.”" + }, + { + "verseNum": 10, + "text": "Pharaoh said, “Tomorrow.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H8085\"* frogs shall|strong=\"H3068\"* depart from|strong=\"H8085\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* houses, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* servants, and|strong=\"H3068\"* from|strong=\"H8085\"* your|strong=\"H3068\"* people|strong=\"H3808\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* remain|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H8085\"* river|strong=\"H3588\"* only|strong=\"H3588\"*.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* out|strong=\"H5186\"* from|strong=\"H3068\"* Pharaoh, and|strong=\"H4872\"* Moses|strong=\"H4872\"* cried to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* frogs which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H4872\"* on|strong=\"H3068\"* Pharaoh." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H1961\"* the|strong=\"H3605\"* word of|strong=\"H3027\"* Moses, and|strong=\"H3027\"* the|strong=\"H3605\"* frogs died out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* houses, out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* courts, and|strong=\"H3027\"* out|strong=\"H5186\"* of|strong=\"H3027\"* the|strong=\"H3605\"* fields." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3651\"* gathered|strong=\"H6213\"* them|strong=\"H6213\"* together in|strong=\"H6213\"* heaps, and|strong=\"H6213\"* the|strong=\"H6213\"* land stank." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* when|strong=\"H8085\"* Pharaoh|strong=\"H6547\"* saw that|strong=\"H8085\"* there|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* respite, he|strong=\"H1931\"* hardened|strong=\"H2388\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*, and|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Tell Aaron, ‘Stretch|strong=\"H7971\"* out|strong=\"H3318\"* your|strong=\"H3068\"* rod, and|strong=\"H4872\"* strike the|strong=\"H6440\"* dust of|strong=\"H3068\"* the|strong=\"H6440\"* earth, that|strong=\"H5971\"* it|strong=\"H1242\"* may|strong=\"H3068\"* become|strong=\"H3318\"* lice throughout|strong=\"H6440\"* all|strong=\"H7971\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt.’”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* did|strong=\"H5971\"* so|strong=\"H7971\"*; and|strong=\"H7971\"* Aaron stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand with|strong=\"H4390\"* his|strong=\"H7971\"* rod, and|strong=\"H7971\"* struck the|strong=\"H5921\"* dust of|strong=\"H1004\"* the|strong=\"H5921\"* earth, and|strong=\"H7971\"* there|strong=\"H1992\"* were|strong=\"H5971\"* lice on|strong=\"H5921\"* man, and|strong=\"H7971\"* on|strong=\"H5921\"* animal; all|strong=\"H5921\"* the|strong=\"H5921\"* dust of|strong=\"H1004\"* the|strong=\"H5921\"* earth became|strong=\"H5650\"* lice throughout|strong=\"H5921\"* all|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt|strong=\"H4713\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* magicians tried with|strong=\"H3068\"* their|strong=\"H3068\"* enchantments to|strong=\"H3068\"* produce|strong=\"H1961\"* lice, but|strong=\"H3588\"* they|strong=\"H3588\"* couldn’t. There|strong=\"H8033\"* were|strong=\"H1961\"* lice on|strong=\"H5921\"* man|strong=\"H3045\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1961\"* the|strong=\"H7760\"* magicians said to|strong=\"H1961\"* Pharaoh, “This|strong=\"H2088\"* is|strong=\"H2088\"* God’s finger;” but|strong=\"H1961\"* Pharaoh’s heart was|strong=\"H1961\"* hardened, and|strong=\"H5971\"* he|strong=\"H5971\"* didn’t listen to|strong=\"H1961\"* them|strong=\"H7760\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H1961\"* spoken." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Moses, “Rise up|strong=\"H6213\"* early in|strong=\"H3068\"* the|strong=\"H3605\"* morning, and|strong=\"H3068\"* stand before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; behold, he|strong=\"H3651\"* comes|strong=\"H6440\"* out|strong=\"H6213\"* to|strong=\"H3068\"* the|strong=\"H3605\"* water; and|strong=\"H3068\"* tell|strong=\"H3605\"* him|strong=\"H6440\"*, ‘This|strong=\"H3651\"* is|strong=\"H3068\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* says, “Let|strong=\"H3651\"* my|strong=\"H3605\"* people go|strong=\"H3068\"*, that|strong=\"H3605\"* they|strong=\"H3651\"* may|strong=\"H3068\"* serve|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Else, if you|strong=\"H7121\"* will|strong=\"H6547\"* not|strong=\"H3212\"* let|strong=\"H3212\"* my|strong=\"H7121\"* people go|strong=\"H3212\"*, behold, I|strong=\"H3212\"* will|strong=\"H6547\"* send swarms of|strong=\"H7121\"* flies on|strong=\"H3212\"* you|strong=\"H7121\"*, and|strong=\"H4872\"* on|strong=\"H3212\"* your|strong=\"H7121\"* servants, and|strong=\"H4872\"* on|strong=\"H3212\"* your|strong=\"H7121\"* people, and|strong=\"H4872\"* into|strong=\"H3212\"* your|strong=\"H7121\"* houses. The|strong=\"H7121\"* houses of|strong=\"H7121\"* the|strong=\"H7121\"* Egyptians shall|strong=\"H6547\"* be full of|strong=\"H7121\"* swarms of|strong=\"H7121\"* flies, and|strong=\"H4872\"* also|strong=\"H4872\"* the|strong=\"H7121\"* ground they|strong=\"H7121\"* are on|strong=\"H3212\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H3559\"* apart in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H4872\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Goshen, in|strong=\"H3068\"* which|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H3808\"* dwell, that|strong=\"H3588\"* no|strong=\"H3808\"* swarms of|strong=\"H3068\"* flies shall|strong=\"H3068\"* be|strong=\"H3808\"* there|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3588\"* end you|strong=\"H3588\"* may|strong=\"H3068\"* know that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3588\"* earth." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* put|strong=\"H3068\"* a|strong=\"H3068\"* division between my|strong=\"H3068\"* people and|strong=\"H3068\"* your|strong=\"H3068\"* people. This|strong=\"H3068\"* sign shall|strong=\"H3068\"* happen by|strong=\"H3117\"* tomorrow.”’”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H3068\"* so|strong=\"H7971\"*; and|strong=\"H3068\"* there|strong=\"H3068\"* came|strong=\"H3068\"* grievous swarms of|strong=\"H3068\"* flies into|strong=\"H3212\"* the|strong=\"H3068\"* house of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* into|strong=\"H3212\"* his|strong=\"H3068\"* servants’ houses. In|strong=\"H3068\"* all|strong=\"H3212\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt the|strong=\"H3068\"* land was|strong=\"H3068\"* corrupted by|strong=\"H3068\"* reason of|strong=\"H3068\"* the|strong=\"H3068\"* swarms of|strong=\"H3068\"* flies." + }, + { + "verseNum": 25, + "text": "Pharaoh|strong=\"H6547\"* called for|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* for|strong=\"H7971\"* Aaron, and|strong=\"H4872\"* said|strong=\"H3318\"*, “Go|strong=\"H3318\"*, sacrifice|strong=\"H2076\"* to|strong=\"H3318\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land!”" + }, + { + "verseNum": 26, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"*, “It|strong=\"H3068\"* isn’t appropriate to|strong=\"H3318\"* do|strong=\"H3068\"* so|strong=\"H3318\"*; for|strong=\"H3068\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* sacrifice the|strong=\"H3068\"* abomination of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Behold, if we|strong=\"H3068\"* sacrifice the|strong=\"H3068\"* abomination of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians before|strong=\"H5973\"* their|strong=\"H3068\"* eyes, won’t they|strong=\"H3068\"* stone us?" + }, + { + "verseNum": 27, + "text": "We|strong=\"H6213\"* will|strong=\"H3068\"* go|strong=\"H5971\"* three days’ journey into|strong=\"H6213\"* the|strong=\"H6213\"* wilderness, and|strong=\"H4872\"* sacrifice|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1697\"* he|strong=\"H6213\"* shall|strong=\"H3068\"* command|strong=\"H1697\"* us|strong=\"H6213\"*.”" + }, + { + "verseNum": 28, + "text": "Pharaoh|strong=\"H6547\"* said, “I|strong=\"H3808\"* will|strong=\"H5971\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* may|strong=\"H5971\"* sacrifice to|strong=\"H7971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3513\"* God|strong=\"H3808\"* in|strong=\"H5971\"* the|strong=\"H7971\"* wilderness, only|strong=\"H1571\"* you|strong=\"H7971\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H7971\"* very|strong=\"H1571\"* far away|strong=\"H7971\"*. Pray for|strong=\"H7971\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 29, + "text": "Moses said, “Behold, I am going out from you. I will pray to Yahweh|strong=\"H3068\"* that the swarms of flies may depart from Pharaoh, from his servants, and from his people, tomorrow; only don’t let Pharaoh deal deceitfully any more in not letting the people go to sacrifice to Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 30, + "text": "Moses went out from Pharaoh, and prayed to Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* did according to the word of Moses, and he removed the swarms of flies from Pharaoh, from his servants, and from his people. There remained not one." + }, + { + "verseNum": 32, + "text": "Pharaoh hardened his heart this time also, and he didn’t let the people go." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Go|strong=\"H7971\"* in|strong=\"H3068\"* to|strong=\"H1696\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* tell|strong=\"H1696\"* him|strong=\"H7971\"*, ‘This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3541\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: “Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3986\"* to|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H7971\"* hold|strong=\"H2388\"* them|strong=\"H7971\"* still|strong=\"H5750\"*," + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* on|strong=\"H3027\"* your|strong=\"H3068\"* livestock|strong=\"H4735\"* which|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* horses|strong=\"H5483\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* donkeys|strong=\"H2543\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* camels|strong=\"H1581\"*, on|strong=\"H3027\"* the|strong=\"H3068\"* herds|strong=\"H1241\"*, and|strong=\"H3068\"* on|strong=\"H3027\"* the|strong=\"H3068\"* flocks|strong=\"H6629\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6395\"* a|strong=\"H3068\"* distinction|strong=\"H6395\"* between the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*; and|strong=\"H1121\"* nothing|strong=\"H3808\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”’”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* appointed|strong=\"H4150\"* a|strong=\"H3068\"* set|strong=\"H7760\"* time|strong=\"H4150\"*, saying|strong=\"H1697\"*, “Tomorrow|strong=\"H4279\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H3605\"* thing|strong=\"H1697\"* on|strong=\"H3068\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H4283\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* Egypt|strong=\"H4713\"* died|strong=\"H4191\"*, but|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* livestock|strong=\"H4735\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, not|strong=\"H3808\"* one|strong=\"H2088\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"*, and|strong=\"H3478\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3478\"* not|strong=\"H3808\"* so|strong=\"H7971\"* much as|strong=\"H5704\"* one|strong=\"H3808\"* of|strong=\"H5971\"* the|strong=\"H5704\"* livestock|strong=\"H4735\"* of|strong=\"H5971\"* the|strong=\"H5704\"* Israelites|strong=\"H3478\"* dead|strong=\"H4191\"*. But|strong=\"H3808\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H5971\"* Pharaoh|strong=\"H6547\"* was|strong=\"H3478\"* stubborn, and|strong=\"H3478\"* he|strong=\"H5704\"* didn’t let|strong=\"H7971\"* the|strong=\"H5704\"* people|strong=\"H5971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* handfuls|strong=\"H4393\"* of|strong=\"H3068\"* ashes|strong=\"H6368\"* of|strong=\"H3068\"* the|strong=\"H3947\"* furnace|strong=\"H3536\"*, and|strong=\"H4872\"* let Moses|strong=\"H4872\"* sprinkle|strong=\"H2236\"* it|strong=\"H4393\"* toward|strong=\"H3068\"* the|strong=\"H3947\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3947\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* shall|strong=\"H4714\"* become|strong=\"H1961\"* small dust over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* shall|strong=\"H4714\"* be|strong=\"H1961\"* boils|strong=\"H7822\"* and|strong=\"H4714\"* blisters breaking|strong=\"H6524\"* out|strong=\"H5921\"* on|strong=\"H5921\"* man|strong=\"H3605\"* and|strong=\"H4714\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H6440\"* took|strong=\"H3947\"* ashes|strong=\"H6368\"* of|strong=\"H6440\"* the|strong=\"H6440\"* furnace|strong=\"H3536\"*, and|strong=\"H4872\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* it|strong=\"H6440\"* up|strong=\"H5975\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*; and|strong=\"H4872\"* it|strong=\"H6440\"* became|strong=\"H1961\"* boils|strong=\"H7822\"* and|strong=\"H4872\"* blisters breaking|strong=\"H6524\"* out|strong=\"H3947\"* on|strong=\"H5975\"* man|strong=\"H6440\"* and|strong=\"H4872\"* on|strong=\"H5975\"* animal|strong=\"H1961\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* magicians|strong=\"H2748\"* couldn’t stand|strong=\"H5975\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* because|strong=\"H3588\"* of|strong=\"H6440\"* the|strong=\"H3605\"* boils|strong=\"H7822\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* boils|strong=\"H7822\"* were|strong=\"H1961\"* on|strong=\"H5975\"* the|strong=\"H3605\"* magicians|strong=\"H2748\"* and|strong=\"H4872\"* on|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* the|strong=\"H8085\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* them|strong=\"H2388\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*, and|strong=\"H4872\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* tell him|strong=\"H6440\"*, ‘This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: “Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* time|strong=\"H6471\"* I|strong=\"H3588\"* will|strong=\"H5971\"* send|strong=\"H7971\"* all|strong=\"H3605\"* my|strong=\"H3605\"* plagues|strong=\"H4046\"* against|strong=\"H2063\"* your|strong=\"H3605\"* heart|strong=\"H3820\"*, against|strong=\"H2063\"* your|strong=\"H3605\"* officials|strong=\"H5650\"*, and|strong=\"H7971\"* against|strong=\"H2063\"* your|strong=\"H3605\"* people|strong=\"H5971\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3820\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* me|strong=\"H7971\"* in|strong=\"H5650\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* you|strong=\"H3588\"* and|strong=\"H7971\"* your|strong=\"H3588\"* people|strong=\"H5971\"* with|strong=\"H5971\"* pestilence|strong=\"H1698\"*, and|strong=\"H7971\"* you|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* been|strong=\"H5971\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* from|strong=\"H4480\"* the|strong=\"H3588\"* earth;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H7200\"* indeed|strong=\"H7200\"* for|strong=\"H8034\"* this|strong=\"H2063\"* cause I|strong=\"H7200\"* have|strong=\"H7200\"* made|strong=\"H5975\"* you|strong=\"H3605\"* stand|strong=\"H5975\"*: to|strong=\"H4616\"* show|strong=\"H7200\"* you|strong=\"H3605\"* my|strong=\"H3605\"* power|strong=\"H3581\"*, and|strong=\"H7200\"* that|strong=\"H7200\"* my|strong=\"H3605\"* name|strong=\"H8034\"* may|strong=\"H8034\"* be|strong=\"H8034\"* declared|strong=\"H5608\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 17, + "text": "because|strong=\"H1115\"* you|strong=\"H7971\"* still|strong=\"H5750\"* exalt|strong=\"H5549\"* yourself against|strong=\"H7971\"* my|strong=\"H7971\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* you|strong=\"H7971\"* won’t let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H6258\"* time|strong=\"H6256\"* I|strong=\"H3117\"* will|strong=\"H1961\"* cause|strong=\"H1961\"* it|strong=\"H1961\"* to|strong=\"H5704\"* rain|strong=\"H4305\"* a|strong=\"H3068\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"* hail|strong=\"H1259\"*, such|strong=\"H3644\"* as|strong=\"H5704\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* in|strong=\"H3117\"* Egypt|strong=\"H4714\"* since|strong=\"H4480\"* the|strong=\"H4480\"* day|strong=\"H3117\"* it|strong=\"H1961\"* was|strong=\"H1961\"* founded|strong=\"H3245\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* command|strong=\"H5921\"* that|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* and|strong=\"H7971\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* be|strong=\"H4191\"* brought|strong=\"H3381\"* into|strong=\"H3381\"* shelter|strong=\"H1004\"*. The|strong=\"H3605\"* hail|strong=\"H1259\"* will|strong=\"H1004\"* come|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* every|strong=\"H3605\"* man|strong=\"H4191\"* and|strong=\"H7971\"* animal that|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H7971\"* isn’t brought|strong=\"H3381\"* home|strong=\"H1004\"*, and|strong=\"H7971\"* they|strong=\"H3808\"* will|strong=\"H1004\"* die|strong=\"H4191\"*.”’”" + }, + { + "verseNum": 20, + "text": "Those|strong=\"H6547\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* among the|strong=\"H3068\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* made|strong=\"H3068\"* their|strong=\"H3068\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* their|strong=\"H3068\"* livestock|strong=\"H4735\"* flee|strong=\"H5127\"* into|strong=\"H5127\"* the|strong=\"H3068\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Whoever didn’t respect|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* left|strong=\"H5800\"* his|strong=\"H7760\"* servants|strong=\"H5650\"* and|strong=\"H3068\"* his|strong=\"H7760\"* livestock|strong=\"H4735\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* hail|strong=\"H1259\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, on|strong=\"H5921\"* man|strong=\"H3605\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* animal|strong=\"H1961\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, throughout|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5414\"* rod|strong=\"H4294\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*, and|strong=\"H1980\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H1980\"* hail|strong=\"H1259\"*; and|strong=\"H1980\"* lightning flashed|strong=\"H1980\"* down|strong=\"H5186\"* to|strong=\"H1980\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*. Yahweh|strong=\"H3068\"* rained|strong=\"H4305\"* hail|strong=\"H1259\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 24, + "text": "So|strong=\"H3947\"* there|strong=\"H1961\"* was|strong=\"H1961\"* very|strong=\"H3966\"* severe|strong=\"H3515\"* hail|strong=\"H1259\"*, and|strong=\"H4714\"* lightning mixed with|strong=\"H4714\"* the|strong=\"H3605\"* hail|strong=\"H1259\"*, such|strong=\"H3644\"* as|strong=\"H1961\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* in|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* Egypt|strong=\"H4714\"* since it|strong=\"H8432\"* became|strong=\"H1961\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* hail|strong=\"H1259\"* struck|strong=\"H5221\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H4714\"* in|strong=\"H7665\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H6086\"* animal; and|strong=\"H6086\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* struck|strong=\"H5221\"* every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* broke|strong=\"H7665\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "Only|strong=\"H7535\"* in|strong=\"H3478\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Goshen|strong=\"H1657\"*, where|strong=\"H8033\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"*, there|strong=\"H8033\"* was|strong=\"H1961\"* no|strong=\"H3808\"* hail|strong=\"H1259\"*." + }, + { + "verseNum": 27, + "text": "Pharaoh|strong=\"H6547\"* sent|strong=\"H7971\"* and|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3068\"* them|strong=\"H7971\"*, “I|strong=\"H6471\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* this|strong=\"H6471\"* time|strong=\"H6471\"*. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*, and|strong=\"H4872\"* I|strong=\"H6471\"* and|strong=\"H4872\"* my|strong=\"H3068\"* people|strong=\"H5971\"* are|strong=\"H5971\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 28, + "text": "Pray|strong=\"H6279\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H7971\"* there|strong=\"H1961\"* has|strong=\"H3068\"* been|strong=\"H1961\"* enough|strong=\"H7227\"* of|strong=\"H3068\"* mighty|strong=\"H7227\"* thunderings|strong=\"H6963\"* and|strong=\"H3068\"* hail|strong=\"H1259\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, and|strong=\"H3068\"* you|strong=\"H7971\"* shall|strong=\"H3068\"* stay|strong=\"H5975\"* no|strong=\"H3808\"* longer|strong=\"H3254\"*.”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6963\"*, “As|strong=\"H1961\"* soon|strong=\"H5750\"* as|strong=\"H1961\"* I|strong=\"H3588\"* have|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* spread|strong=\"H6566\"* out|strong=\"H3318\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3588\"* thunders|strong=\"H6963\"* shall|strong=\"H3068\"* cease|strong=\"H2308\"*, and|strong=\"H4872\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H5750\"* more|strong=\"H5750\"* hail|strong=\"H1259\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* earth is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* as|strong=\"H3068\"* for|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3068\"* your|strong=\"H3068\"* servants|strong=\"H5650\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t yet|strong=\"H3588\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H3588\"* flax|strong=\"H6594\"* and|strong=\"H5221\"* the|strong=\"H3588\"* barley|strong=\"H8184\"* were|strong=\"H8184\"* struck|strong=\"H5221\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* barley|strong=\"H8184\"* had|strong=\"H3588\"* ripened and|strong=\"H5221\"* the|strong=\"H3588\"* flax|strong=\"H6594\"* was|strong=\"H5221\"* blooming." + }, + { + "verseNum": 32, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wheat|strong=\"H2406\"* and|strong=\"H5221\"* the|strong=\"H3588\"* spelt|strong=\"H3698\"* were|strong=\"H2007\"* not|strong=\"H3808\"* struck|strong=\"H5221\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* grown up." + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* spread|strong=\"H6566\"* out|strong=\"H3318\"* his|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* the|strong=\"H3068\"* thunders|strong=\"H6963\"* and|strong=\"H4872\"* hail|strong=\"H1259\"* ceased|strong=\"H2308\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* rain|strong=\"H4306\"* was|strong=\"H3068\"* not|strong=\"H3808\"* poured|strong=\"H5413\"* on|strong=\"H3068\"* the|strong=\"H3068\"* earth." + }, + { + "verseNum": 34, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* rain|strong=\"H4306\"* and|strong=\"H6963\"* the|strong=\"H7200\"* hail|strong=\"H1259\"* and|strong=\"H6963\"* the|strong=\"H7200\"* thunders|strong=\"H6963\"* had|strong=\"H3588\"* ceased|strong=\"H2308\"*, he|strong=\"H1931\"* sinned|strong=\"H2398\"* yet|strong=\"H3588\"* more|strong=\"H3254\"*, and|strong=\"H6963\"* hardened|strong=\"H3513\"* his|strong=\"H7200\"* heart|strong=\"H3820\"*, he|strong=\"H1931\"* and|strong=\"H6963\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* was|strong=\"H3068\"* hardened|strong=\"H2388\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* didn’t let|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*, just|strong=\"H1696\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* through|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* hardened|strong=\"H3513\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* and|strong=\"H4872\"* the|strong=\"H3588\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* show these my|strong=\"H3068\"* signs among|strong=\"H7130\"* them|strong=\"H7896\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* tell|strong=\"H5608\"* in|strong=\"H3068\"* the|strong=\"H3588\"* hearing of|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, what|strong=\"H3045\"* things I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H5953\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* my|strong=\"H3068\"* signs which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H5953\"* among them|strong=\"H7760\"*; that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* in|strong=\"H3068\"* to|strong=\"H5704\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* said to|strong=\"H5704\"* him|strong=\"H6440\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Hebrews|strong=\"H5680\"*, says|strong=\"H3541\"*: ‘How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H6440\"* refuse|strong=\"H3985\"* to|strong=\"H5704\"* humble|strong=\"H6031\"* yourself|strong=\"H6031\"* before|strong=\"H6440\"* me|strong=\"H6440\"*? Let|strong=\"H7971\"* my|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Or|strong=\"H3588\"* else|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3986\"* to|strong=\"H7971\"* let|strong=\"H7971\"* my|strong=\"H7971\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, behold|strong=\"H2005\"*, tomorrow|strong=\"H4279\"* I|strong=\"H3588\"* will|strong=\"H5971\"* bring locusts into your|strong=\"H3588\"* country," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6086\"* they|strong=\"H3808\"* shall|strong=\"H5869\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* earth, so|strong=\"H4480\"* that|strong=\"H7200\"* one|strong=\"H3605\"* won’t be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H3605\"* earth. They|strong=\"H3808\"* shall|strong=\"H5869\"* eat the|strong=\"H3605\"* residue|strong=\"H3499\"* of|strong=\"H5869\"* that|strong=\"H7200\"* which|strong=\"H5869\"* has|strong=\"H5869\"* escaped|strong=\"H6413\"*, which|strong=\"H5869\"* remains|strong=\"H7604\"* to|strong=\"H3201\"* you|strong=\"H3605\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hail|strong=\"H1259\"*, and|strong=\"H6086\"* shall|strong=\"H5869\"* eat every|strong=\"H3605\"* tree|strong=\"H6086\"* which|strong=\"H5869\"* grows|strong=\"H6779\"* for|strong=\"H6086\"* you|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H5869\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3605\"* houses|strong=\"H1004\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* filled|strong=\"H4390\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*, as|strong=\"H5704\"* neither|strong=\"H3808\"* your|strong=\"H3605\"* fathers nor|strong=\"H3808\"* your|strong=\"H3605\"* fathers’ fathers have|strong=\"H1961\"* seen|strong=\"H7200\"*, since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H7200\"* they|strong=\"H3117\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.’” He|strong=\"H3117\"* turned|strong=\"H6437\"*, and|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 7, + "text": "Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"* said to|strong=\"H5704\"* him|strong=\"H7971\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* this|strong=\"H2088\"* man|strong=\"H2088\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H5704\"* us|strong=\"H3045\"*? Let|strong=\"H7971\"* the|strong=\"H3588\"* men|strong=\"H5650\"* go|strong=\"H7971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t you|strong=\"H3588\"* yet|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Egypt|strong=\"H4714\"* is|strong=\"H3068\"* destroyed?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1980\"* Aaron were|strong=\"H3068\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1980\"* he|strong=\"H3068\"* said to|strong=\"H1980\"* them|strong=\"H7725\"*, “Go|strong=\"H1980\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; but|strong=\"H7725\"* who|strong=\"H4310\"* are|strong=\"H3068\"* those|strong=\"H6547\"* who|strong=\"H4310\"* will|strong=\"H3068\"* go|strong=\"H1980\"*?”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said, “We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* our|strong=\"H3068\"* young|strong=\"H5288\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* old|strong=\"H1121\"*. We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* our|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* daughters|strong=\"H1323\"*, with|strong=\"H3068\"* our|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* herds|strong=\"H1241\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H1121\"* hold a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* said|strong=\"H3651\"* to|strong=\"H3068\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* let|strong=\"H7971\"* you|strong=\"H3588\"* go|strong=\"H7971\"* with|strong=\"H5973\"* your|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*! See|strong=\"H7200\"*, evil|strong=\"H7451\"* is|strong=\"H3068\"* clearly before|strong=\"H6440\"* your|strong=\"H3068\"* faces|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Not|strong=\"H3808\"* so|strong=\"H3651\"*! Go|strong=\"H3212\"* now|strong=\"H4994\"* you|strong=\"H3588\"* who|strong=\"H3068\"* are|strong=\"H3068\"* men|strong=\"H1397\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3068\"* what|strong=\"H3651\"* you|strong=\"H3588\"* desire|strong=\"H1245\"*!” Then|strong=\"H3651\"* they|strong=\"H3588\"* were|strong=\"H3068\"* driven|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*’s presence|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* the|strong=\"H3605\"* locusts, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* eat every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, even|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* has|strong=\"H3068\"* left|strong=\"H7604\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* rod|strong=\"H4294\"* over|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* brought|strong=\"H5375\"* an|strong=\"H1961\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land all|strong=\"H3605\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* night|strong=\"H3915\"*; and|strong=\"H4872\"* when|strong=\"H1961\"* it|strong=\"H1931\"* was|strong=\"H3068\"* morning|strong=\"H1242\"*, the|strong=\"H3605\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* brought|strong=\"H5375\"* the|strong=\"H3605\"* locusts." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* locusts went|strong=\"H5927\"* up|strong=\"H5927\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* rested|strong=\"H5117\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*. They|strong=\"H3651\"* were|strong=\"H1961\"* very|strong=\"H3966\"* grievous|strong=\"H3515\"*. Before|strong=\"H6440\"* them|strong=\"H5921\"* there|strong=\"H1961\"* were|strong=\"H1961\"* no|strong=\"H3808\"* such|strong=\"H3651\"* locusts as|strong=\"H1961\"* they|strong=\"H3651\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* there|strong=\"H1961\"* ever|strong=\"H3808\"* be|strong=\"H1961\"* again|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H4714\"* they|strong=\"H3808\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, so|strong=\"H3808\"* that|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* was|strong=\"H4714\"* darkened|strong=\"H2821\"*, and|strong=\"H6086\"* they|strong=\"H3808\"* ate every|strong=\"H3605\"* herb|strong=\"H6212\"* of|strong=\"H5869\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H5869\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* which|strong=\"H5869\"* the|strong=\"H3605\"* hail|strong=\"H1259\"* had|strong=\"H5869\"* left|strong=\"H3498\"*. There|strong=\"H3605\"* remained|strong=\"H3498\"* nothing|strong=\"H3808\"* green|strong=\"H3418\"*, either|strong=\"H3808\"* tree|strong=\"H6086\"* or|strong=\"H3808\"* herb|strong=\"H6212\"* of|strong=\"H5869\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H4872\"* Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H3068\"* haste|strong=\"H4116\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* said|strong=\"H7121\"*, “I|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H4872\"* against|strong=\"H2398\"* you|strong=\"H7121\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* please|strong=\"H4994\"* forgive|strong=\"H5375\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* again, and|strong=\"H3068\"* pray|strong=\"H4994\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H4994\"* also|strong=\"H3068\"* take|strong=\"H5375\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H4994\"* this|strong=\"H2088\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* prayed|strong=\"H6279\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H3068\"* an|strong=\"H5375\"* exceedingly|strong=\"H3966\"* strong|strong=\"H2389\"* west|strong=\"H3220\"* wind|strong=\"H7307\"*, which|strong=\"H3068\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* locusts, and|strong=\"H3068\"* drove|strong=\"H8628\"* them|strong=\"H5375\"* into|strong=\"H2015\"* the|strong=\"H3605\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.+ 10:19 “Red Sea” is the translation for the Hebrew “Yam Suf”, which could be more literally translated “Sea of Reeds” or “Sea of Cattails”. It refers to the body of water currently known as the Red Sea, or possibly to one of the bodies of water connected to it or near it.* There|strong=\"H3605\"* remained|strong=\"H7604\"* not|strong=\"H3808\"* one|strong=\"H3605\"* locust in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* didn’t let|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, that|strong=\"H3068\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* darkness|strong=\"H2822\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, even|strong=\"H3068\"* darkness|strong=\"H2822\"* which|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* felt|strong=\"H4959\"*.”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H4872\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* thick darkness|strong=\"H2822\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H8064\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3117\"* didn’t see|strong=\"H7200\"* one|strong=\"H3605\"* another|strong=\"H7200\"*, and|strong=\"H1121\"* nobody|strong=\"H3808\"* rose|strong=\"H6965\"* from|strong=\"H3478\"* his|strong=\"H3605\"* place|strong=\"H8478\"* for|strong=\"H8478\"* three|strong=\"H7969\"* days|strong=\"H3117\"*; but|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* light in|strong=\"H3478\"* their|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 24, + "text": "Pharaoh|strong=\"H6547\"* called|strong=\"H7121\"* to|strong=\"H3212\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H7121\"*, “Go|strong=\"H3212\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*. Only|strong=\"H7535\"* let|strong=\"H3212\"* your|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H4872\"* your|strong=\"H3068\"* herds|strong=\"H1241\"* stay behind. Let|strong=\"H3212\"* your|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* also|strong=\"H1571\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* said, “You|strong=\"H5414\"* must|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H5414\"* into|strong=\"H6213\"* our|strong=\"H3068\"* hand|strong=\"H3027\"* sacrifices|strong=\"H2077\"* and|strong=\"H4872\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "Our|strong=\"H3068\"* livestock|strong=\"H4735\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H3045\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* hoof|strong=\"H6541\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H7604\"* behind|strong=\"H4480\"*, for|strong=\"H3588\"* of|strong=\"H3068\"* it|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H1571\"* take|strong=\"H3947\"* to|strong=\"H5704\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"* with|strong=\"H5973\"* what|strong=\"H4100\"* we|strong=\"H3068\"* must|strong=\"H1571\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H3212\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* wouldn’t let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 28, + "text": "Pharaoh|strong=\"H6547\"* said to|strong=\"H4191\"* him|strong=\"H6440\"*, “Get|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H6440\"* me|strong=\"H6440\"*! Be|strong=\"H4191\"* careful|strong=\"H8104\"* to|strong=\"H4191\"* see|strong=\"H7200\"* my|strong=\"H8104\"* face|strong=\"H6440\"* no|strong=\"H7200\"* more|strong=\"H3254\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* you|strong=\"H3588\"* see|strong=\"H7200\"* my|strong=\"H8104\"* face|strong=\"H6440\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* die|strong=\"H4191\"*!”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"*, “You|strong=\"H6440\"* have|strong=\"H7200\"* spoken|strong=\"H1696\"* well|strong=\"H3651\"*. I|strong=\"H3651\"* will|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H6440\"* face|strong=\"H6440\"* again|strong=\"H5750\"* no|strong=\"H3808\"* more|strong=\"H3254\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “I|strong=\"H5921\"* will|strong=\"H3068\"* bring yet|strong=\"H5750\"* one|strong=\"H2088\"* more|strong=\"H5750\"* plague|strong=\"H5061\"* on|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* Egypt|strong=\"H4714\"*; afterwards he|strong=\"H3651\"* will|strong=\"H3068\"* let|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*. When|strong=\"H7971\"* he|strong=\"H3651\"* lets|strong=\"H7971\"* you|strong=\"H7971\"* go|strong=\"H7971\"*, he|strong=\"H3651\"* will|strong=\"H3068\"* surely|strong=\"H3651\"* thrust|strong=\"H7971\"* you|strong=\"H7971\"* out|strong=\"H7971\"* altogether|strong=\"H3617\"*." + }, + { + "verseNum": 2, + "text": "Speak|strong=\"H1696\"* now|strong=\"H4994\"* in|strong=\"H1696\"* the|strong=\"H1696\"* ears of|strong=\"H3627\"* the|strong=\"H1696\"* people|strong=\"H5971\"*, and|strong=\"H3701\"* let|strong=\"H4994\"* every|strong=\"H5971\"* man ask|strong=\"H7592\"* of|strong=\"H3627\"* his|strong=\"H7592\"* neighbor|strong=\"H7453\"*, and|strong=\"H3701\"* every|strong=\"H5971\"* woman of|strong=\"H3627\"* her|strong=\"H7592\"* neighbor|strong=\"H7453\"*, jewels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*. Moreover|strong=\"H1571\"*, the|strong=\"H5414\"* man|strong=\"H1419\"* Moses|strong=\"H4872\"* was|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* in|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*’s servants|strong=\"H5650\"*, and|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘About|strong=\"H3541\"* midnight|strong=\"H2676\"* I|strong=\"H3541\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"* shall|strong=\"H4714\"* die|strong=\"H4191\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* Pharaoh|strong=\"H6547\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* the|strong=\"H3605\"* female|strong=\"H8198\"* servant|strong=\"H8198\"* who|strong=\"H3605\"* is|strong=\"H3605\"* behind|strong=\"H5921\"* the|strong=\"H3605\"* mill|strong=\"H7347\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3427\"* livestock." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt|strong=\"H4714\"*, such|strong=\"H3644\"* as|strong=\"H1961\"* there|strong=\"H1961\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H3605\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* against|strong=\"H4714\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* won’t even|strong=\"H5704\"* bark|strong=\"H2782\"* or|strong=\"H3808\"* move|strong=\"H2782\"* its|strong=\"H3605\"* tongue|strong=\"H3956\"*, against|strong=\"H4714\"* man|strong=\"H1121\"* or|strong=\"H3808\"* animal, that|strong=\"H3045\"* you|strong=\"H3605\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* makes|strong=\"H6395\"* a|strong=\"H3068\"* distinction|strong=\"H6395\"* between|strong=\"H3045\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* yours|strong=\"H5650\"* will|strong=\"H5971\"* come|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H3318\"*, and|strong=\"H5971\"* bow|strong=\"H7812\"* down|strong=\"H3381\"* themselves|strong=\"H7812\"* to|strong=\"H3381\"* me|strong=\"H3318\"*, saying, “Get|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* follow|strong=\"H7272\"* you|strong=\"H3605\"*;” and|strong=\"H5971\"* after|strong=\"H7272\"* that|strong=\"H5971\"* I|strong=\"H3651\"* will|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"*.’” He|strong=\"H3651\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Pharaoh|strong=\"H6547\"* in|strong=\"H5650\"* hot|strong=\"H2750\"* anger." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Pharaoh|strong=\"H6547\"* won’t listen|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, that|strong=\"H8085\"* my|strong=\"H8085\"* wonders|strong=\"H4159\"* may|strong=\"H3068\"* be|strong=\"H3808\"* multiplied|strong=\"H7235\"* in|strong=\"H3068\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron did|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* wonders|strong=\"H4159\"* before|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* didn’t let|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* his|strong=\"H3605\"* land|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2088\"* month|strong=\"H2320\"* shall|strong=\"H1931\"* be|strong=\"H8141\"* to|strong=\"H7223\"* you|strong=\"H8141\"* the|strong=\"H8141\"* beginning|strong=\"H7218\"* of|strong=\"H8141\"* months|strong=\"H2320\"*. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H8141\"* the|strong=\"H8141\"* first|strong=\"H7223\"* month|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H8141\"* year|strong=\"H8141\"* to|strong=\"H7223\"* you|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "Speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘On|strong=\"H1696\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H1004\"* this|strong=\"H2088\"* month|strong=\"H2320\"*, they|strong=\"H2320\"* shall|strong=\"H3478\"* take|strong=\"H3947\"* to|strong=\"H1696\"* them|strong=\"H3947\"* every|strong=\"H3605\"* man|strong=\"H3605\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, according to|strong=\"H1696\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, a|strong=\"H3068\"* lamb|strong=\"H7716\"* for|strong=\"H1004\"* a|strong=\"H3068\"* household|strong=\"H1004\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1004\"* if|strong=\"H1961\"* the|strong=\"H5921\"* household|strong=\"H1004\"* is|strong=\"H1931\"* too|strong=\"H5921\"* little|strong=\"H4591\"* for|strong=\"H5921\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H1961\"* he|strong=\"H1931\"* and|strong=\"H1004\"* his|strong=\"H3947\"* neighbor|strong=\"H7934\"* next|strong=\"H5921\"* to|strong=\"H1961\"* his|strong=\"H3947\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* one|strong=\"H1931\"* according|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* number|strong=\"H4373\"* of|strong=\"H1004\"* the|strong=\"H5921\"* souls|strong=\"H5315\"*. You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H3947\"* your|strong=\"H3947\"* count|strong=\"H3699\"* for|strong=\"H5921\"* the|strong=\"H5921\"* lamb|strong=\"H7716\"* according|strong=\"H5921\"* to|strong=\"H1961\"* what|strong=\"H6310\"* everyone can|strong=\"H3947\"* eat|strong=\"H6310\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3947\"* lamb|strong=\"H3532\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, a|strong=\"H3068\"* male|strong=\"H2145\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. You|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* it|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3947\"* sheep|strong=\"H7716\"* or|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3947\"* goats|strong=\"H5795\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* keep|strong=\"H4931\"* it|strong=\"H7819\"* until|strong=\"H5704\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* same|strong=\"H2088\"* month|strong=\"H2320\"*; and|strong=\"H3478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* kill|strong=\"H7819\"* it|strong=\"H7819\"* at|strong=\"H3478\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lintel|strong=\"H4947\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* in|strong=\"H5921\"* which|strong=\"H1004\"* they|strong=\"H5921\"* shall|strong=\"H1004\"* eat it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H1320\"* eat the|strong=\"H5921\"* meat|strong=\"H1320\"* in|strong=\"H5921\"* that|strong=\"H2088\"* night|strong=\"H3915\"*, roasted|strong=\"H6748\"* with|strong=\"H5921\"* fire, with|strong=\"H5921\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. They|strong=\"H5921\"* shall|strong=\"H1320\"* eat it|strong=\"H5921\"* with|strong=\"H5921\"* bitter|strong=\"H4844\"* herbs|strong=\"H4844\"*." + }, + { + "verseNum": 9, + "text": "Don’t eat it|strong=\"H5921\"* raw|strong=\"H4995\"*, nor|strong=\"H4480\"* boiled|strong=\"H1310\"* at|strong=\"H5921\"* all|strong=\"H5921\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* roasted|strong=\"H6748\"* with|strong=\"H5921\"* fire; with|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, its|strong=\"H5921\"* legs|strong=\"H3767\"* and|strong=\"H7218\"* its|strong=\"H5921\"* inner|strong=\"H7130\"* parts|strong=\"H7130\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5704\"* shall|strong=\"H3808\"* let|strong=\"H3808\"* nothing|strong=\"H3808\"* of|strong=\"H4480\"* it|strong=\"H1242\"* remain|strong=\"H3498\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*; but|strong=\"H3808\"* that|strong=\"H4480\"* which remains|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"* you|strong=\"H5704\"* shall|strong=\"H3808\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* is|strong=\"H3068\"* how you|strong=\"H3027\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"*: with|strong=\"H3068\"* your|strong=\"H3068\"* belt on|strong=\"H2296\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, your|strong=\"H3068\"* sandals|strong=\"H5275\"* on|strong=\"H2296\"* your|strong=\"H3068\"* feet|strong=\"H7272\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* staff|strong=\"H4731\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* you|strong=\"H3027\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* haste|strong=\"H2649\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H5704\"* I|strong=\"H5704\"* will|strong=\"H3068\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* that|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3068\"* animal. I|strong=\"H5704\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* against|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H5704\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* token on|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* where|strong=\"H8033\"* you|strong=\"H5921\"* are|strong=\"H1004\"*. When|strong=\"H1961\"* I|strong=\"H5921\"* see|strong=\"H7200\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, I|strong=\"H5921\"* will|strong=\"H1961\"* pass|strong=\"H1961\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1004\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H1961\"* destroy|strong=\"H4889\"* you|strong=\"H5921\"* when|strong=\"H1961\"* I|strong=\"H5921\"* strike|strong=\"H5221\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"H2088\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H2708\"* you|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* by|strong=\"H3117\"* an|strong=\"H1961\"* ordinance|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 15, + "text": "“‘Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*; even|strong=\"H5704\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* put|strong=\"H7673\"* away|strong=\"H7673\"* yeast|strong=\"H7603\"* out|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3605\"* houses|strong=\"H1004\"*, for|strong=\"H3588\"* whoever|strong=\"H3605\"* eats leavened|strong=\"H2557\"* bread|strong=\"H4682\"* from|strong=\"H3772\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* until|strong=\"H5704\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3605\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*, and|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; no|strong=\"H3808\"* kind of|strong=\"H3117\"* work|strong=\"H4399\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* done|strong=\"H6213\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, except|strong=\"H3808\"* that|strong=\"H3605\"* which|strong=\"H1931\"* every|strong=\"H3605\"* man|strong=\"H5315\"* must|strong=\"H5315\"* eat, only|strong=\"H3605\"* that|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H6213\"* by|strong=\"H3117\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* the|strong=\"H3588\"* feast of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*; for|strong=\"H3588\"* in|strong=\"H3117\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"* I|strong=\"H3588\"* have|strong=\"H3117\"* brought|strong=\"H3318\"* your|strong=\"H8104\"* armies|strong=\"H6635\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3588\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*. Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* this|strong=\"H2088\"* day|strong=\"H3117\"* throughout|strong=\"H1755\"* your|strong=\"H8104\"* generations|strong=\"H1755\"* by|strong=\"H3117\"* an|strong=\"H3588\"* ordinance|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, until|strong=\"H5704\"* the|strong=\"H3117\"* twenty|strong=\"H6242\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H4672\"* shall|strong=\"H3478\"* be|strong=\"H3808\"* no|strong=\"H3808\"* yeast|strong=\"H7603\"* found|strong=\"H4672\"* in|strong=\"H3478\"* your|strong=\"H3605\"* houses|strong=\"H1004\"* for|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, for|strong=\"H3588\"* whoever|strong=\"H3605\"* eats that|strong=\"H3588\"* which|strong=\"H1931\"* is|strong=\"H1931\"* leavened|strong=\"H2557\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3478\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, whether he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, or|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1931\"* born|strong=\"H3808\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* eat nothing|strong=\"H3808\"* leavened|strong=\"H2557\"*. In|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* habitations|strong=\"H4186\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3947\"* Moses|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"*, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H7121\"*, “Draw|strong=\"H4900\"* out|strong=\"H3947\"*, and|strong=\"H4872\"* take|strong=\"H3947\"* lambs|strong=\"H6629\"* according to|strong=\"H3478\"* your|strong=\"H3605\"* families|strong=\"H4940\"*, and|strong=\"H4872\"* kill|strong=\"H7819\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5704\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* a|strong=\"H3068\"* bunch of|strong=\"H1004\"* hyssop, and|strong=\"H1004\"* dip|strong=\"H2881\"* it|strong=\"H1242\"* in|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* that|strong=\"H4480\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* basin|strong=\"H5592\"*, and|strong=\"H1004\"* strike|strong=\"H5060\"* the|strong=\"H3947\"* lintel|strong=\"H4947\"* and|strong=\"H1004\"* the|strong=\"H3947\"* two|strong=\"H8147\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* with|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* that|strong=\"H4480\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* basin|strong=\"H5592\"*. None|strong=\"H3808\"* of|strong=\"H1004\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H1004\"* his|strong=\"H3947\"* house|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* to|strong=\"H3068\"* strike|strong=\"H5062\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*; and|strong=\"H3068\"* when|strong=\"H7200\"* he|strong=\"H3068\"* sees|strong=\"H7200\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lintel|strong=\"H4947\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* door|strong=\"H6607\"* posts|strong=\"H4201\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* the|strong=\"H5921\"* destroyer|strong=\"H7843\"* to|strong=\"H3068\"* come|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H3068\"* your|strong=\"H3068\"* houses|strong=\"H1004\"* to|strong=\"H3068\"* strike|strong=\"H5062\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5704\"* shall|strong=\"H1121\"* observe|strong=\"H8104\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* for|strong=\"H5704\"* an|strong=\"H2088\"* ordinance|strong=\"H2706\"* to|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H1121\"* to|strong=\"H5704\"* your|strong=\"H8104\"* sons|strong=\"H1121\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* promised|strong=\"H1696\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* this|strong=\"H2063\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 26, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3588\"* children|strong=\"H1121\"* ask you|strong=\"H3588\"*, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* mean by|strong=\"H1961\"* this|strong=\"H2063\"* service|strong=\"H5656\"*?’" + }, + { + "verseNum": 27, + "text": "that|strong=\"H5971\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* say|strong=\"H3478\"*, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*, who|strong=\"H1931\"* passed|strong=\"H5971\"* over|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, when|strong=\"H3068\"* he|strong=\"H1931\"* struck|strong=\"H5062\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* spared|strong=\"H5337\"* our|strong=\"H3068\"* houses|strong=\"H1004\"*.’”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* and|strong=\"H1121\"* did|strong=\"H6213\"* so|strong=\"H3651\"*; as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H3427\"* midnight|strong=\"H2677\"*, Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* who|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"* to|strong=\"H5704\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* the|strong=\"H3605\"* captive|strong=\"H7628\"* who|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3427\"* the|strong=\"H3605\"* dungeon|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1004\"* livestock." + }, + { + "verseNum": 30, + "text": "Pharaoh|strong=\"H6547\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1004\"* the|strong=\"H3605\"* night|strong=\"H3915\"*, he|strong=\"H1931\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*; and|strong=\"H6965\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* in|strong=\"H1004\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* not|strong=\"H1961\"* a|strong=\"H3068\"* house|strong=\"H1004\"* where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* not|strong=\"H1961\"* one|strong=\"H3605\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron by|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Rise|strong=\"H6965\"* up|strong=\"H6965\"*, get|strong=\"H6965\"* out|strong=\"H3318\"* from|strong=\"H3318\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, both|strong=\"H1571\"* you|strong=\"H8432\"* and|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* go|strong=\"H3212\"*, serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, as|strong=\"H1571\"* you|strong=\"H8432\"* have|strong=\"H3068\"* said|strong=\"H1696\"*!" + }, + { + "verseNum": 32, + "text": "Take|strong=\"H3947\"* both|strong=\"H1571\"* your|strong=\"H3947\"* flocks|strong=\"H6629\"* and|strong=\"H3212\"* your|strong=\"H3947\"* herds|strong=\"H1241\"*, as|strong=\"H1571\"* you|strong=\"H3947\"* have|strong=\"H1571\"* said|strong=\"H1696\"*, and|strong=\"H3212\"* be|strong=\"H1571\"* gone|strong=\"H3212\"*; and|strong=\"H3212\"* bless|strong=\"H1288\"* me|strong=\"H3947\"* also|strong=\"H1571\"*!”" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* were|strong=\"H5971\"* urgent|strong=\"H2388\"* with|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H4191\"* send|strong=\"H7971\"* them|strong=\"H5921\"* out|strong=\"H7971\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land in|strong=\"H5921\"* haste|strong=\"H4116\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “We|strong=\"H3588\"* are|strong=\"H5971\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* men|strong=\"H5971\"*.”" + }, + { + "verseNum": 34, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* took|strong=\"H5375\"* their|strong=\"H5375\"* dough|strong=\"H1217\"* before|strong=\"H2962\"* it|strong=\"H5921\"* was|strong=\"H5971\"* leavened|strong=\"H2556\"*, their|strong=\"H5375\"* kneading|strong=\"H4863\"* troughs being|strong=\"H5971\"* bound|strong=\"H6887\"* up|strong=\"H5375\"* in|strong=\"H5921\"* their|strong=\"H5375\"* clothes|strong=\"H8071\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulders|strong=\"H7926\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* according|strong=\"H3701\"* to|strong=\"H3478\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*; and|strong=\"H1121\"* they|strong=\"H6213\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* the|strong=\"H6213\"* Egyptians|strong=\"H4714\"* jewels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* jewels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*, so|strong=\"H5414\"* that|strong=\"H5971\"* they|strong=\"H3068\"* let|strong=\"H5414\"* them|strong=\"H5414\"* have|strong=\"H3068\"* what they|strong=\"H3068\"* asked|strong=\"H7592\"*. They|strong=\"H3068\"* plundered|strong=\"H5337\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"* to|strong=\"H3478\"* Succoth|strong=\"H5523\"*, about|strong=\"H3478\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* thousand on|strong=\"H3478\"* foot|strong=\"H7273\"* who|strong=\"H1121\"* were|strong=\"H3478\"* men|strong=\"H1121\"*, in|strong=\"H3478\"* addition to|strong=\"H3478\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* mixed|strong=\"H6154\"* multitude|strong=\"H7227\"* went|strong=\"H5927\"* up|strong=\"H5927\"* also|strong=\"H1571\"* with|strong=\"H5927\"* them|strong=\"H5927\"*, with|strong=\"H5927\"* flocks|strong=\"H6629\"*, herds|strong=\"H1241\"*, and|strong=\"H6629\"* even|strong=\"H1571\"* very|strong=\"H3966\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 39, + "text": "They|strong=\"H3588\"* baked unleavened|strong=\"H4682\"* cakes|strong=\"H5692\"* of|strong=\"H3318\"* the|strong=\"H3588\"* dough|strong=\"H1217\"* which|strong=\"H3588\"* they|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* wasn’t leavened|strong=\"H2556\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4714\"* thrust out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* couldn’t wait|strong=\"H4102\"*, and|strong=\"H4714\"* they|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* prepared|strong=\"H6213\"* any|strong=\"H6213\"* food|strong=\"H6720\"* for|strong=\"H3588\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 40, + "text": "Now|strong=\"H3478\"* the|strong=\"H3427\"* time|strong=\"H4186\"* that|strong=\"H3478\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"* was|strong=\"H3478\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 41, + "text": "At|strong=\"H3068\"* the|strong=\"H3605\"* end|strong=\"H7093\"* of|strong=\"H3068\"* four hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"*, to|strong=\"H3318\"* the|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s armies|strong=\"H6635\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 42, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* night|strong=\"H3915\"* to|strong=\"H3318\"* be|strong=\"H3068\"* much|strong=\"H3605\"* observed|strong=\"H8107\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* for|strong=\"H4714\"* bringing|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. This|strong=\"H2088\"* is|strong=\"H3068\"* that|strong=\"H3605\"* night|strong=\"H3915\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3318\"* be|strong=\"H3068\"* much|strong=\"H3605\"* observed|strong=\"H8107\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* throughout|strong=\"H3605\"* their|strong=\"H3605\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 43, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*. No|strong=\"H3808\"* foreigner|strong=\"H1121\"* shall|strong=\"H3068\"* eat of|strong=\"H1121\"* it|strong=\"H2063\"*," + }, + { + "verseNum": 44, + "text": "but|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s servant|strong=\"H5650\"* who|strong=\"H3605\"* is|strong=\"H3701\"* bought|strong=\"H4736\"* for|strong=\"H5650\"* money|strong=\"H3701\"*, when|strong=\"H4135\"* you|strong=\"H3605\"* have|strong=\"H5650\"* circumcised|strong=\"H4135\"* him|strong=\"H3605\"*, then|strong=\"H3605\"* shall|strong=\"H5650\"* he|strong=\"H3605\"* eat of|strong=\"H5650\"* it|strong=\"H5650\"*." + }, + { + "verseNum": 45, + "text": "A|strong=\"H3068\"* foreigner|strong=\"H8453\"* and|strong=\"H3808\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 46, + "text": "It|strong=\"H3808\"* must|strong=\"H2351\"* be|strong=\"H3808\"* eaten in|strong=\"H1004\"* one|strong=\"H3808\"* house|strong=\"H1004\"*. You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* carry|strong=\"H3318\"* any|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H4480\"* meat|strong=\"H1320\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"*. Do|strong=\"H3318\"* not|strong=\"H3808\"* break|strong=\"H7665\"* any|strong=\"H4480\"* of|strong=\"H1004\"* its|strong=\"H3318\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 47, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H5712\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* keep|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 48, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* would|strong=\"H3068\"* like|strong=\"H1961\"* to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, let|strong=\"H3808\"* all|strong=\"H3605\"* his|strong=\"H3605\"* males|strong=\"H2145\"* be|strong=\"H1961\"* circumcised|strong=\"H4135\"*, and|strong=\"H3068\"* then|strong=\"H1961\"* let|strong=\"H3808\"* him|strong=\"H6213\"* come|strong=\"H1961\"* near|strong=\"H7126\"* and|strong=\"H3068\"* keep|strong=\"H6213\"* it|strong=\"H7126\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* born|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land; but|strong=\"H3588\"* no|strong=\"H3808\"* uncircumcised|strong=\"H6189\"* person|strong=\"H7126\"* shall|strong=\"H3068\"* eat of|strong=\"H3068\"* it|strong=\"H7126\"*." + }, + { + "verseNum": 49, + "text": "One|strong=\"H1961\"* law|strong=\"H8451\"* shall|strong=\"H8451\"* be|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H8432\"* who|strong=\"H1616\"* is|strong=\"H1961\"* born at|strong=\"H1961\"* home|strong=\"H8432\"*, and|strong=\"H8451\"* to|strong=\"H1961\"* the|strong=\"H8432\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H8432\"*.”" + }, + { + "verseNum": 50, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 51, + "text": "That|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H5921\"* their|strong=\"H3068\"* armies|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Sanctify|strong=\"H6942\"* to|strong=\"H3478\"* me|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"*, whatever|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* of|strong=\"H1121\"* man|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* animal. It|strong=\"H1931\"* is|strong=\"H1931\"* mine|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Remember|strong=\"H2142\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*; for|strong=\"H3588\"* by|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H1004\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* this|strong=\"H2088\"* place|strong=\"H3027\"*. No|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 4, + "text": "Today|strong=\"H3117\"* you|strong=\"H3117\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* Abib." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Hittite|strong=\"H2850\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Amorite, and|strong=\"H3068\"* the|strong=\"H3588\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H5647\"* this|strong=\"H2088\"* service|strong=\"H5656\"* in|strong=\"H3068\"* this|strong=\"H2088\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 6, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* eaten throughout|strong=\"H3605\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* no|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"*. No|strong=\"H3808\"* yeast|strong=\"H7603\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"*, within all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* tell|strong=\"H5046\"* your|strong=\"H3068\"* son|strong=\"H1121\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* because|strong=\"H5668\"* of|strong=\"H1121\"* that|strong=\"H3117\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H5046\"* when|strong=\"H3117\"* I|strong=\"H3117\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.’" + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign|strong=\"H2146\"* to|strong=\"H3318\"* you|strong=\"H3588\"* on|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* between|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* may|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*; for|strong=\"H3588\"* with|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* therefore|strong=\"H2063\"* keep|strong=\"H8104\"* this|strong=\"H2063\"* ordinance|strong=\"H2708\"* in|strong=\"H3117\"* its|strong=\"H8104\"* season|strong=\"H4150\"* from|strong=\"H3117\"* year|strong=\"H3117\"* to|strong=\"H8104\"* year|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "“It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* set apart|strong=\"H5674\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* firstborn|strong=\"H6363\"* that|strong=\"H3605\"* comes|strong=\"H1961\"* from|strong=\"H3068\"* an|strong=\"H1961\"* animal|strong=\"H1961\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H1961\"*. The|strong=\"H3605\"* males|strong=\"H2145\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* with|strong=\"H3605\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*; and|strong=\"H1121\"* if|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1121\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* it|strong=\"H3808\"*, then|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* break|strong=\"H6202\"* its|strong=\"H3605\"* neck|strong=\"H6202\"*; and|strong=\"H1121\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* man|strong=\"H1121\"* among|strong=\"H3808\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3068\"* son|strong=\"H1121\"* asks|strong=\"H7592\"* you|strong=\"H3588\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3318\"* come|strong=\"H1961\"*, saying, ‘What|strong=\"H4100\"* is|strong=\"H3068\"* this|strong=\"H2063\"*?’ that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell him|strong=\"H3027\"*, ‘By|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H1121\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* stubbornly|strong=\"H7185\"* refused|strong=\"H7971\"* to|strong=\"H5704\"* let|strong=\"H7971\"* us|strong=\"H5921\"* go|strong=\"H7971\"*, Yahweh|strong=\"H3068\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, both|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* livestock. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* sacrifice|strong=\"H2076\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, being|strong=\"H1961\"* males|strong=\"H2145\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* my|strong=\"H3605\"* sons|strong=\"H1121\"* I|strong=\"H3588\"* redeem|strong=\"H6299\"*.’" + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* symbols|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*; for|strong=\"H3588\"* by|strong=\"H3027\"* strength|strong=\"H3027\"* of|strong=\"H3068\"* hand|strong=\"H3027\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* had|strong=\"H1961\"* let|strong=\"H7971\"* the|strong=\"H7200\"* people|strong=\"H5971\"* go|strong=\"H7971\"*, God|strong=\"H3808\"* didn’t lead|strong=\"H5148\"* them|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H7200\"* land of|strong=\"H1870\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*, although|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1961\"* near|strong=\"H7138\"*; for|strong=\"H3588\"* God|strong=\"H3808\"* said, “Lest|strong=\"H6435\"* perhaps|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* change|strong=\"H5162\"* their|strong=\"H7725\"* minds|strong=\"H5162\"* when|strong=\"H3588\"* they|strong=\"H3588\"* see|strong=\"H7200\"* war|strong=\"H4421\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"*”;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H1870\"* God led|strong=\"H5437\"* the|strong=\"H5927\"* people|strong=\"H5971\"* around|strong=\"H5437\"* by|strong=\"H1870\"* the|strong=\"H5927\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H5927\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*; and|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* armed|strong=\"H2571\"* out|strong=\"H5437\"* of|strong=\"H1121\"* the|strong=\"H5927\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 19, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3588\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* made|strong=\"H7650\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* swear|strong=\"H7650\"*, saying, “God will|strong=\"H3478\"* surely|strong=\"H3588\"* visit|strong=\"H6485\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* carry|strong=\"H5927\"* up|strong=\"H5927\"* my|strong=\"H3947\"* bones|strong=\"H6106\"* away|strong=\"H3947\"* from|strong=\"H5927\"* here|strong=\"H2088\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 20, + "text": "They took|strong=\"H5265\"* their|strong=\"H5265\"* journey|strong=\"H5265\"* from|strong=\"H5265\"* Succoth|strong=\"H5523\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Etham, in|strong=\"H2583\"* the|strong=\"H2583\"* edge|strong=\"H7097\"* of|strong=\"H4057\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* went|strong=\"H1980\"* before|strong=\"H6440\"* them|strong=\"H6440\"* by|strong=\"H3068\"* day|strong=\"H3119\"* in|strong=\"H1980\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, to|strong=\"H1980\"* lead|strong=\"H5148\"* them|strong=\"H6440\"* on|strong=\"H1980\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, and|strong=\"H1980\"* by|strong=\"H3068\"* night|strong=\"H3915\"* in|strong=\"H1980\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire, to|strong=\"H1980\"* give them|strong=\"H6440\"* light, that|strong=\"H3068\"* they|strong=\"H3068\"* might|strong=\"H3068\"* go|strong=\"H1980\"* by|strong=\"H3068\"* day|strong=\"H3119\"* and|strong=\"H1980\"* by|strong=\"H3068\"* night|strong=\"H3915\"*:" + }, + { + "verseNum": 22, + "text": "the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* cloud|strong=\"H6051\"* by|strong=\"H6051\"* day|strong=\"H3119\"*, and|strong=\"H5971\"* the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* fire by|strong=\"H6051\"* night|strong=\"H3915\"*, didn’t depart|strong=\"H4185\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H5921\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H1121\"* encamp|strong=\"H2583\"* before|strong=\"H6440\"* Pihahiroth, between|strong=\"H2583\"* Migdol|strong=\"H4024\"* and|strong=\"H1121\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, before|strong=\"H6440\"* Baal Zephon. You|strong=\"H6440\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* opposite|strong=\"H5921\"* it|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 3, + "text": "Pharaoh|strong=\"H6547\"* will|strong=\"H3478\"* say|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘They|strong=\"H1992\"* are|strong=\"H1992\"* entangled in|strong=\"H5921\"* the|strong=\"H5921\"* land. The|strong=\"H5921\"* wilderness|strong=\"H4057\"* has|strong=\"H3478\"* shut|strong=\"H5462\"* them|strong=\"H1992\"* in|strong=\"H5921\"*.’" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* harden|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*’s heart|strong=\"H3820\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* follow|strong=\"H7291\"* after|strong=\"H7291\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* get|strong=\"H6213\"* honor|strong=\"H3513\"* over|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* over|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* armies|strong=\"H2428\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” They|strong=\"H3588\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* was|strong=\"H3478\"* told|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3478\"* fled|strong=\"H1272\"*; and|strong=\"H3478\"* the|strong=\"H3588\"* heart|strong=\"H3824\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3478\"* of|strong=\"H4428\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* was|strong=\"H3478\"* changed|strong=\"H2015\"* toward|strong=\"H6213\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* said, “What|strong=\"H4100\"* is|strong=\"H4100\"* this|strong=\"H2063\"* we|strong=\"H3068\"* have|strong=\"H5971\"* done|strong=\"H6213\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5971\"* let|strong=\"H7971\"* Israel|strong=\"H3478\"* go|strong=\"H7971\"* from|strong=\"H3478\"* serving|strong=\"H5647\"* us|strong=\"H5046\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H5971\"* prepared his|strong=\"H3947\"* chariot|strong=\"H7393\"*, and|strong=\"H5971\"* took|strong=\"H3947\"* his|strong=\"H3947\"* army|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3967\"* he|strong=\"H3605\"* took|strong=\"H3947\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* chosen|strong=\"H3947\"* chariots|strong=\"H7393\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, with|strong=\"H5921\"* captains|strong=\"H7991\"* over|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* hardened|strong=\"H2388\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* pursued|strong=\"H7291\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; for|strong=\"H3027\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3068\"* a|strong=\"H3068\"* high|strong=\"H7311\"* hand|strong=\"H3027\"*.+ 14:8 or, defiantly.*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H7393\"* chariots|strong=\"H7393\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*, his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H7393\"* his|strong=\"H3605\"* army|strong=\"H2428\"* overtook|strong=\"H5381\"* them|strong=\"H5921\"* encamping|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, beside|strong=\"H5921\"* Pihahiroth, before|strong=\"H6440\"* Baal Zephon." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* came|strong=\"H7126\"* near|strong=\"H7126\"*, the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, the|strong=\"H5375\"* Egyptians|strong=\"H4713\"* were|strong=\"H3478\"* marching|strong=\"H5265\"* after|strong=\"H2009\"* them|strong=\"H7126\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* were|strong=\"H3478\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"*. The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H6817\"* out|strong=\"H5265\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H4100\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Because|strong=\"H1097\"* there|strong=\"H1097\"* were|strong=\"H4714\"* no|strong=\"H6213\"* graves|strong=\"H6913\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*, have|strong=\"H4057\"* you|strong=\"H3947\"* taken|strong=\"H3947\"* us|strong=\"H6213\"* away|strong=\"H3947\"* to|strong=\"H3318\"* die|strong=\"H4191\"* in|strong=\"H6213\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"*? Why|strong=\"H4100\"* have|strong=\"H4057\"* you|strong=\"H3947\"* treated|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2063\"* way|strong=\"H2063\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* us|strong=\"H6213\"* out|strong=\"H3318\"* of|strong=\"H4057\"* Egypt|strong=\"H4714\"*?" + }, + { + "verseNum": 12, + "text": "Isn’t this|strong=\"H2088\"* the|strong=\"H3588\"* word|strong=\"H1697\"* that|strong=\"H3588\"* we|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*, ‘Leave|strong=\"H2308\"* us|strong=\"H3588\"* alone|strong=\"H2308\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H4057\"* serve|strong=\"H5647\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"*’? For|strong=\"H3588\"* it|strong=\"H3588\"* would|strong=\"H1697\"* have|strong=\"H1697\"* been|strong=\"H5647\"* better|strong=\"H2896\"* for|strong=\"H3588\"* us|strong=\"H3588\"* to|strong=\"H1696\"* serve|strong=\"H5647\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* than|strong=\"H4480\"* to|strong=\"H1696\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5704\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*. Stand|strong=\"H3320\"* still|strong=\"H5750\"*, and|strong=\"H4872\"* see|strong=\"H7200\"* the|strong=\"H7200\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* work|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"* today|strong=\"H3117\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* never|strong=\"H3808\"* again|strong=\"H5750\"* see|strong=\"H7200\"* the|strong=\"H7200\"* Egyptians|strong=\"H4713\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* for|strong=\"H3068\"* you|strong=\"H3898\"*, and|strong=\"H3068\"* you|strong=\"H3898\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* still|strong=\"H2790\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* cry|strong=\"H6817\"* to|strong=\"H1696\"* me|strong=\"H1696\"*? Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H3068\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 16, + "text": "Lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H5921\"* rod|strong=\"H4294\"*, and|strong=\"H1121\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* and|strong=\"H1121\"* divide|strong=\"H1234\"* it|strong=\"H5921\"*. Then|strong=\"H7311\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* go|strong=\"H3478\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* dry|strong=\"H3004\"* ground|strong=\"H3004\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* myself|strong=\"H3820\"* will|strong=\"H3820\"* harden|strong=\"H2388\"* the|strong=\"H3605\"* hearts|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*, and|strong=\"H7393\"* they|strong=\"H3605\"* will|strong=\"H3820\"* go in|strong=\"H2388\"* after them|strong=\"H2388\"*. I|strong=\"H2005\"* will|strong=\"H3820\"* get myself|strong=\"H3820\"* honor|strong=\"H3513\"* over|strong=\"H2388\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H7393\"* over|strong=\"H2388\"* all|strong=\"H3605\"* his|strong=\"H3605\"* armies|strong=\"H2428\"*, over|strong=\"H2388\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* over|strong=\"H2388\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3588\"* Egyptians|strong=\"H4713\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* gotten myself|strong=\"H3045\"* honor|strong=\"H3513\"* over|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, over|strong=\"H3068\"* his|strong=\"H3068\"* chariots|strong=\"H7393\"*, and|strong=\"H3068\"* over|strong=\"H3068\"* his|strong=\"H3068\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* angel|strong=\"H4397\"* of|strong=\"H6440\"* God, who|strong=\"H3478\"* went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, moved|strong=\"H1980\"* and|strong=\"H1980\"* went|strong=\"H1980\"* behind|strong=\"H5975\"* them|strong=\"H6440\"*; and|strong=\"H1980\"* the|strong=\"H6440\"* pillar|strong=\"H5982\"* of|strong=\"H6440\"* cloud|strong=\"H6051\"* moved|strong=\"H1980\"* from|strong=\"H5265\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H1980\"* stood|strong=\"H5975\"* behind|strong=\"H5975\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H7126\"* came|strong=\"H1961\"* between the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Egypt|strong=\"H4714\"* and|strong=\"H3478\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* and|strong=\"H3478\"* the|strong=\"H3605\"* darkness|strong=\"H2822\"*, yet|strong=\"H3808\"* it|strong=\"H7126\"* gave|strong=\"H1961\"* light by|strong=\"H6051\"* night|strong=\"H3915\"*. One|strong=\"H2088\"* didn’t come|strong=\"H1961\"* near|strong=\"H7126\"* the|strong=\"H3605\"* other|strong=\"H2088\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* caused the|strong=\"H3605\"* sea|strong=\"H3220\"* to|strong=\"H3068\"* go|strong=\"H3212\"* back|strong=\"H5186\"* by|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H4872\"* made|strong=\"H7760\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* divided|strong=\"H1234\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* sea|strong=\"H3220\"* on|strong=\"H3220\"* the|strong=\"H8432\"* dry|strong=\"H3004\"* ground|strong=\"H3004\"*; and|strong=\"H1121\"* the|strong=\"H8432\"* waters|strong=\"H4325\"* were|strong=\"H3478\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H3478\"* them|strong=\"H8432\"* on|strong=\"H3220\"* their|strong=\"H8432\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1121\"* on|strong=\"H3220\"* their|strong=\"H8432\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* Egyptians|strong=\"H4713\"* pursued|strong=\"H7291\"*, and|strong=\"H7393\"* went|strong=\"H7291\"* in|strong=\"H8432\"* after|strong=\"H7291\"* them|strong=\"H7291\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*: all|strong=\"H3605\"* of|strong=\"H8432\"* Pharaoh|strong=\"H6547\"*’s horses|strong=\"H5483\"*, his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* watch, Yahweh|strong=\"H3068\"* looked|strong=\"H8259\"* out|strong=\"H8259\"* on|strong=\"H3068\"* the|strong=\"H3068\"* Egyptian|strong=\"H4713\"* army|strong=\"H4264\"* through the|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire and|strong=\"H3068\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* confused|strong=\"H2000\"* the|strong=\"H3068\"* Egyptian|strong=\"H4713\"* army|strong=\"H4264\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3588\"* took|strong=\"H5493\"* off|strong=\"H5493\"* their|strong=\"H3068\"* chariot|strong=\"H4818\"* wheels, and|strong=\"H3478\"* they|strong=\"H3588\"* drove|strong=\"H5090\"* them|strong=\"H6440\"* heavily|strong=\"H3517\"*; so|strong=\"H5493\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"* said, “Let’s flee|strong=\"H5127\"* from|strong=\"H5493\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* them|strong=\"H6440\"* against|strong=\"H3898\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"*!”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, that|strong=\"H3068\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* may|strong=\"H3068\"* come|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, on|strong=\"H5921\"* their|strong=\"H3068\"* chariots|strong=\"H7393\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* their|strong=\"H3068\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* its|strong=\"H5921\"* strength|strong=\"H3027\"* when|strong=\"H7725\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* appeared|strong=\"H6437\"*; and|strong=\"H4872\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* fled|strong=\"H5127\"* against|strong=\"H5921\"* it|strong=\"H5921\"*. Yahweh|strong=\"H3068\"* overthrew|strong=\"H5287\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* the|strong=\"H3605\"* horsemen|strong=\"H6571\"*, even|strong=\"H5704\"* all|strong=\"H3605\"* Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"* that|strong=\"H3605\"* went|strong=\"H7725\"* in|strong=\"H7604\"* after|strong=\"H5704\"* them|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*. There|strong=\"H3605\"* remained|strong=\"H7604\"* not|strong=\"H3808\"* so|strong=\"H3808\"* much|strong=\"H3605\"* as|strong=\"H5704\"* one|strong=\"H3605\"* of|strong=\"H4325\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3225\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* on|strong=\"H1980\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* in|strong=\"H1980\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* sea|strong=\"H3220\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* waters|strong=\"H4325\"* were|strong=\"H3478\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H1980\"* them|strong=\"H8432\"* on|strong=\"H1980\"* their|strong=\"H8432\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1121\"* on|strong=\"H1980\"* their|strong=\"H8432\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 30, + "text": "Thus|strong=\"H4191\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"* that|strong=\"H7200\"* day|strong=\"H3117\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"*." + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* great|strong=\"H1419\"* work|strong=\"H6213\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H7200\"* Egyptians|strong=\"H4714\"*, and|strong=\"H4872\"* the|strong=\"H7200\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* they|strong=\"H3068\"* believed in|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H4872\"* in|strong=\"H3478\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sang|strong=\"H7891\"* this|strong=\"H2063\"* song|strong=\"H7892\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* said," + }, + { + "verseNum": 2, + "text": "Yah|strong=\"H3068\"* is|strong=\"H2088\"* my|strong=\"H1961\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* song|strong=\"H2176\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* man of|strong=\"H3068\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3220\"* has|strong=\"H3220\"* cast|strong=\"H3384\"* Pharaoh|strong=\"H6547\"*’s chariots|strong=\"H4818\"* and|strong=\"H6547\"* his|strong=\"H3384\"* army|strong=\"H2428\"* into|strong=\"H3220\"* the|strong=\"H3384\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3680\"* deeps|strong=\"H8415\"* cover|strong=\"H3680\"* them|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* glorious in|strong=\"H3068\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6965\"* the|strong=\"H7971\"* greatness|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H7971\"* excellency|strong=\"H1347\"*, you|strong=\"H7971\"* overthrow|strong=\"H2040\"* those who rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"H4325\"* the|strong=\"H5324\"* blast|strong=\"H7307\"* of|strong=\"H7307\"* your nostrils, the|strong=\"H5324\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* piled|strong=\"H6192\"* up|strong=\"H5324\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3423\"* enemy said, ‘I|strong=\"H5315\"* will|strong=\"H2719\"* pursue|strong=\"H7291\"*. I|strong=\"H5315\"* will|strong=\"H2719\"* overtake|strong=\"H5381\"*. I|strong=\"H5315\"* will|strong=\"H2719\"* divide|strong=\"H2505\"* the|strong=\"H3423\"* plunder|strong=\"H7998\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H4325\"* blew|strong=\"H5398\"* with|strong=\"H3680\"* your|strong=\"H3680\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 11, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6213\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H4310\"* the|strong=\"H6213\"* gods?" + }, + { + "verseNum": 12, + "text": "You|strong=\"H5186\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* your|strong=\"H5186\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H5971\"*, in|strong=\"H5971\"* your|strong=\"H1350\"* loving kindness|strong=\"H2617\"*, have|strong=\"H5971\"* led|strong=\"H5148\"* the|strong=\"H5971\"* people|strong=\"H5971\"* that|strong=\"H5971\"* you|strong=\"H5971\"* have|strong=\"H5971\"* redeemed|strong=\"H1350\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H8085\"* peoples|strong=\"H5971\"* have|strong=\"H5971\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3605\"* the|strong=\"H3605\"* chiefs of|strong=\"H3427\"* Edom were|strong=\"H3427\"* dismayed." + }, + { + "verseNum": 16, + "text": "Terror|strong=\"H6343\"* and|strong=\"H3068\"* dread|strong=\"H6343\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3027\"* will|strong=\"H3068\"* bring them|strong=\"H3027\"* in|strong=\"H3427\"*, and|strong=\"H3068\"* plant|strong=\"H5193\"* them|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* forever|strong=\"H5769\"* and|strong=\"H3068\"* ever|strong=\"H5769\"*.”" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* horses|strong=\"H5483\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* went|strong=\"H1980\"* in|strong=\"H5921\"* with|strong=\"H1980\"* his|strong=\"H3068\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* with|strong=\"H1980\"* his|strong=\"H3068\"* horsemen|strong=\"H6571\"* into|strong=\"H1980\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; but|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* on|strong=\"H5921\"* dry|strong=\"H3004\"* land|strong=\"H3004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 20, + "text": "Miriam|strong=\"H4813\"* the|strong=\"H3605\"* prophetess|strong=\"H5031\"*, the|strong=\"H3605\"* sister of|strong=\"H3027\"* Aaron, took|strong=\"H3947\"* a|strong=\"H3068\"* tambourine|strong=\"H8596\"* in|strong=\"H3027\"* her|strong=\"H3605\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H3318\"* her|strong=\"H3605\"* with|strong=\"H3318\"* tambourines|strong=\"H8596\"* and|strong=\"H3027\"* with|strong=\"H3318\"* dances|strong=\"H4246\"*." + }, + { + "verseNum": 21, + "text": "Miriam|strong=\"H4813\"* answered|strong=\"H6030\"* them|strong=\"H6030\"*," + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* led|strong=\"H3212\"* Israel|strong=\"H3478\"* onward|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3117\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H4872\"* they|strong=\"H3117\"* went|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Shur|strong=\"H7793\"*; and|strong=\"H4872\"* they|strong=\"H3117\"* went|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* found|strong=\"H4672\"* no|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3588\"* they|strong=\"H1992\"* came|strong=\"H4325\"* to|strong=\"H3201\"* Marah|strong=\"H4785\"*, they|strong=\"H1992\"* couldn’t drink|strong=\"H8354\"* from|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Marah|strong=\"H4785\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H4325\"* bitter|strong=\"H4751\"*. Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Marah|strong=\"H4785\"*.+ 15:23 Marah means bitter.*" + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H5971\"* we|strong=\"H3068\"* drink|strong=\"H8354\"*?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H7760\"* he|strong=\"H8033\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* showed|strong=\"H3384\"* him|strong=\"H7760\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* threw|strong=\"H7993\"* it|strong=\"H7760\"* into|strong=\"H4941\"* the|strong=\"H3068\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* made|strong=\"H7760\"* sweet|strong=\"H4985\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* made|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3068\"* an|strong=\"H7760\"* ordinance|strong=\"H4941\"* for|strong=\"H3068\"* them|strong=\"H7760\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* he|strong=\"H8033\"* tested|strong=\"H5254\"* them|strong=\"H7760\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7760\"* attention|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* put|strong=\"H7760\"* none|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* diseases|strong=\"H4245\"* on|strong=\"H5921\"* you|strong=\"H3588\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* put|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3605\"* heals|strong=\"H7495\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 27, + "text": "They|strong=\"H8033\"* came|strong=\"H4325\"* to|strong=\"H5921\"* Elim, where|strong=\"H8033\"* there|strong=\"H8033\"* were|strong=\"H4325\"* twelve|strong=\"H8147\"* springs of|strong=\"H5869\"* water|strong=\"H4325\"* and|strong=\"H5869\"* seventy|strong=\"H7657\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*. They|strong=\"H8033\"* encamped|strong=\"H2583\"* there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H3117\"* took|strong=\"H3318\"* their|strong=\"H3605\"* journey|strong=\"H5265\"* from|strong=\"H5265\"* Elim, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sin|strong=\"H5512\"*, which|strong=\"H3478\"* is|strong=\"H3117\"* between Elim and|strong=\"H1121\"* Sinai|strong=\"H5514\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"* after|strong=\"H3117\"* their|strong=\"H3605\"* departing|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*, “We|strong=\"H3588\"* wish|strong=\"H4310\"* that|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H3068\"* died|strong=\"H4191\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* sat|strong=\"H3427\"* by|strong=\"H3027\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* pots|strong=\"H5518\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* ate our|strong=\"H3068\"* fill|strong=\"H7648\"* of|strong=\"H1121\"* bread|strong=\"H3899\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* into|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"* to|strong=\"H3318\"* kill|strong=\"H4191\"* this|strong=\"H2088\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* with|strong=\"H3068\"* hunger|strong=\"H7458\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* rain|strong=\"H4305\"* bread|strong=\"H3899\"* from|strong=\"H4480\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H3068\"* you|strong=\"H3117\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* people|strong=\"H5971\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* out|strong=\"H3318\"* and|strong=\"H4872\"* gather|strong=\"H3950\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s portion|strong=\"H1697\"* every|strong=\"H3212\"* day|strong=\"H3117\"*, that|strong=\"H5971\"* I|strong=\"H3117\"* may|strong=\"H3068\"* test|strong=\"H5254\"* them|strong=\"H3318\"*, whether|strong=\"H4480\"* they|strong=\"H3117\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H3068\"* law|strong=\"H8451\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5921\"* shall|strong=\"H3117\"* come|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, that|strong=\"H3117\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* prepare|strong=\"H3559\"* that|strong=\"H3117\"* which|strong=\"H3117\"* they|strong=\"H3117\"* bring|strong=\"H1961\"* in|strong=\"H5921\"*, and|strong=\"H3117\"* it|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* twice|strong=\"H4932\"* as|strong=\"H3117\"* much|strong=\"H4932\"* as|strong=\"H3117\"* they|strong=\"H3117\"* gather|strong=\"H3950\"* daily|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron said|strong=\"H3318\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “At|strong=\"H3478\"* evening|strong=\"H6153\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*; because|strong=\"H3588\"* he|strong=\"H3588\"* hears|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*. Who|strong=\"H3068\"* are|strong=\"H4100\"* we|strong=\"H3068\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* murmur|strong=\"H3885\"* against|strong=\"H5921\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"*, “Now|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* meat|strong=\"H1320\"* to|strong=\"H3068\"* eat|strong=\"H3899\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*, and|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* bread|strong=\"H3899\"* to|strong=\"H3068\"* satisfy|strong=\"H7646\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* hears|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"* which|strong=\"H3068\"* you|strong=\"H3588\"* murmur against|strong=\"H5921\"* him|strong=\"H5414\"*. And|strong=\"H4872\"* who|strong=\"H3068\"* are|strong=\"H4100\"* we|strong=\"H3068\"*? Your|strong=\"H3068\"* murmurings|strong=\"H8519\"* are|strong=\"H4100\"* not|strong=\"H3808\"* against|strong=\"H5921\"* us|strong=\"H5414\"*, but|strong=\"H3588\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3478\"* Aaron, “Tell|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘Come|strong=\"H7126\"* close|strong=\"H7126\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* murmurings|strong=\"H8519\"*.’”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H1961\"* Aaron spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, they|strong=\"H3068\"* looked|strong=\"H7200\"* toward|strong=\"H6437\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“I|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* murmurings|strong=\"H8519\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8085\"*, saying|strong=\"H1696\"*, ‘At|strong=\"H3478\"* evening|strong=\"H6153\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* meat|strong=\"H1320\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H8085\"* morning|strong=\"H1242\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* bread|strong=\"H3899\"*. Then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 13, + "text": "In|strong=\"H5927\"* the|strong=\"H3680\"* evening|strong=\"H6153\"*, quail|strong=\"H7958\"* came|strong=\"H1961\"* up|strong=\"H5927\"* and|strong=\"H1242\"* covered|strong=\"H3680\"* the|strong=\"H3680\"* camp|strong=\"H4264\"*; and|strong=\"H1242\"* in|strong=\"H5927\"* the|strong=\"H3680\"* morning|strong=\"H1242\"* the|strong=\"H3680\"* dew|strong=\"H2919\"* lay|strong=\"H7902\"* around|strong=\"H5439\"* the|strong=\"H3680\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H5927\"* the|strong=\"H6440\"* dew|strong=\"H2919\"* that|strong=\"H5927\"* lay|strong=\"H7902\"* had gone|strong=\"H5927\"*, behold|strong=\"H2009\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* was|strong=\"H6440\"* a|strong=\"H3068\"* small|strong=\"H1851\"* round|strong=\"H7902\"* thing|strong=\"H2636\"*, small|strong=\"H1851\"* as|strong=\"H5927\"* the|strong=\"H6440\"* frost|strong=\"H3713\"* on|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* it|strong=\"H5414\"*, they|strong=\"H3588\"* said to|strong=\"H3478\"* one|strong=\"H3808\"* another|strong=\"H7200\"*, “What|strong=\"H4100\"* is|strong=\"H3068\"* it|strong=\"H5414\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* didn’t know|strong=\"H3045\"* what|strong=\"H4100\"* it|strong=\"H5414\"* was|strong=\"H3068\"*. Moses|strong=\"H4872\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3478\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3947\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*: ‘Gather|strong=\"H3950\"* of|strong=\"H3068\"* it|strong=\"H3947\"* everyone according|strong=\"H6310\"* to|strong=\"H3068\"* his|strong=\"H3068\"* eating; an|strong=\"H3947\"* omer|strong=\"H6016\"*+ 16:16 An omer is about 2.2 liters or about 2.3 quarts* a|strong=\"H3068\"* head|strong=\"H1538\"*, according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H3947\"* number|strong=\"H4557\"* of|strong=\"H3068\"* your|strong=\"H3068\"* persons|strong=\"H5315\"*, you|strong=\"H6680\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* it|strong=\"H3947\"*, every|strong=\"H3947\"* man|strong=\"H5315\"* for|strong=\"H3068\"* those|strong=\"H4480\"* who|strong=\"H3068\"* are|strong=\"H1697\"* in|strong=\"H3068\"* his|strong=\"H3068\"* tent.’”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* some gathered|strong=\"H3950\"* more|strong=\"H7235\"*, some less|strong=\"H4591\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H7235\"* they|strong=\"H3808\"* measured|strong=\"H4058\"* it|strong=\"H4058\"* with|strong=\"H6310\"* an omer|strong=\"H6016\"*, he|strong=\"H3808\"* who|strong=\"H3808\"* gathered|strong=\"H3950\"* much|strong=\"H7235\"* had|strong=\"H7235\"* nothing|strong=\"H3808\"* over|strong=\"H5736\"*, and|strong=\"H6310\"* he|strong=\"H3808\"* who|strong=\"H3808\"* gathered|strong=\"H3950\"* little|strong=\"H4591\"* had|strong=\"H7235\"* no|strong=\"H3808\"* lack|strong=\"H2637\"*. They|strong=\"H3808\"* each|strong=\"H4058\"* gathered|strong=\"H3950\"* according|strong=\"H6310\"* to|strong=\"H6310\"* his|strong=\"H3808\"* eating." + }, + { + "verseNum": 19, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5704\"* them|strong=\"H5704\"*, “Let|strong=\"H3498\"* no|strong=\"H4480\"* one|strong=\"H4480\"* leave|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*.”" + }, + { + "verseNum": 20, + "text": "Notwithstanding they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Moses|strong=\"H4872\"*, but|strong=\"H3808\"* some|strong=\"H4480\"* of|strong=\"H4480\"* them|strong=\"H5921\"* left|strong=\"H3498\"* of|strong=\"H4480\"* it|strong=\"H5921\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, so|strong=\"H4480\"* it|strong=\"H5921\"* bred|strong=\"H7311\"* worms|strong=\"H8438\"* and|strong=\"H4872\"* became|strong=\"H7107\"* foul; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H6310\"* gathered|strong=\"H3950\"* it|strong=\"H1242\"* morning|strong=\"H1242\"* by|strong=\"H1242\"* morning|strong=\"H1242\"*, everyone according|strong=\"H6310\"* to|strong=\"H6310\"* his|strong=\"H6310\"* eating. When|strong=\"H6310\"* the|strong=\"H1242\"* sun|strong=\"H8121\"* grew|strong=\"H2552\"* hot|strong=\"H2552\"*, it|strong=\"H1242\"* melted|strong=\"H4549\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* gathered|strong=\"H3950\"* twice|strong=\"H8147\"* as|strong=\"H3117\"* much|strong=\"H4932\"* bread|strong=\"H3899\"*, two|strong=\"H8147\"* omers|strong=\"H6016\"* for|strong=\"H3117\"* each|strong=\"H3605\"* one|strong=\"H3605\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rulers|strong=\"H5387\"* of|strong=\"H3117\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* came|strong=\"H1961\"* and|strong=\"H4872\"* told|strong=\"H5046\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5704\"*, “This|strong=\"H1931\"* is|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, ‘Tomorrow|strong=\"H4279\"* is|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* Sabbath|strong=\"H7676\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*. Bake|strong=\"H1310\"* that|strong=\"H3605\"* which|strong=\"H1931\"* you|strong=\"H3605\"* want to|strong=\"H1696\"* bake|strong=\"H1310\"*, and|strong=\"H3068\"* boil|strong=\"H1310\"* that|strong=\"H3605\"* which|strong=\"H1931\"* you|strong=\"H3605\"* want to|strong=\"H1696\"* boil|strong=\"H1310\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* remains over|strong=\"H5736\"* lay|strong=\"H3240\"* up|strong=\"H3240\"* for|strong=\"H5704\"* yourselves|strong=\"H3605\"* to|strong=\"H1696\"* be|strong=\"H3068\"* kept|strong=\"H4931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*.’”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H3808\"* laid|strong=\"H3240\"* it|strong=\"H1242\"* up|strong=\"H3240\"* until|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*, as|strong=\"H5704\"* Moses|strong=\"H4872\"* ordered|strong=\"H6680\"*, and|strong=\"H4872\"* it|strong=\"H1242\"* didn’t become|strong=\"H1961\"* foul, and|strong=\"H4872\"* there|strong=\"H1961\"* were|strong=\"H1961\"* no|strong=\"H3808\"* worms|strong=\"H7415\"* in|strong=\"H4872\"* it|strong=\"H1242\"*." + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* said, “Eat that|strong=\"H3588\"* today|strong=\"H3117\"*, for|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Today|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* find|strong=\"H4672\"* it|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* gather|strong=\"H3950\"* it|strong=\"H1961\"*, but|strong=\"H3808\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"*. In|strong=\"H3117\"* it|strong=\"H1961\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* none|strong=\"H3808\"*.”" + }, + { + "verseNum": 27, + "text": "On|strong=\"H3117\"* the|strong=\"H4480\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, some|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H4480\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* gather|strong=\"H3950\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* found|strong=\"H4672\"* none|strong=\"H3808\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Moses|strong=\"H4872\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* do|strong=\"H3068\"* you|strong=\"H5704\"* refuse|strong=\"H3985\"* to|strong=\"H5704\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H4872\"* my|strong=\"H8104\"* laws|strong=\"H8451\"*?" + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H7200\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"*, therefore|strong=\"H3651\"* he|strong=\"H1931\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* two|strong=\"H3427\"* days|strong=\"H3117\"*. Everyone stay|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H5414\"* place|strong=\"H4725\"*. Let|strong=\"H5414\"* no|strong=\"H5414\"* one|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H5414\"* place|strong=\"H4725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"H7673\"* the|strong=\"H3117\"* people|strong=\"H5971\"* rested|strong=\"H7673\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H7121\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* its name|strong=\"H8034\"* “Manna|strong=\"H4478\"*”,+ 16:31 “Manna” means “What is it?”* and|strong=\"H3478\"* it|strong=\"H1931\"* was|strong=\"H8034\"* like|strong=\"H1004\"* coriander|strong=\"H1407\"* seed|strong=\"H2233\"*, white|strong=\"H3836\"*; and|strong=\"H3478\"* its taste|strong=\"H2940\"* was|strong=\"H8034\"* like|strong=\"H1004\"* wafers|strong=\"H6838\"* with|strong=\"H1004\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 32, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*, ‘Let an|strong=\"H7200\"* omer-full of|strong=\"H3068\"* it|strong=\"H4393\"* be|strong=\"H1697\"* kept|strong=\"H4931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* may|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H1697\"* fed you|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"*, when|strong=\"H7200\"* I|strong=\"H1697\"* brought|strong=\"H3318\"* you|strong=\"H6680\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H7200\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.’”" + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* a|strong=\"H3068\"* pot|strong=\"H6803\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* an|strong=\"H5414\"* omer-full of|strong=\"H3068\"* manna|strong=\"H4478\"* in|strong=\"H3068\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* kept|strong=\"H4931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 34, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H6680\"* Aaron laid|strong=\"H3240\"* it|strong=\"H6440\"* up|strong=\"H3240\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* kept|strong=\"H4931\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* ate the|strong=\"H5704\"* manna|strong=\"H4478\"* forty years|strong=\"H8141\"*, until|strong=\"H5704\"* they|strong=\"H8141\"* came|strong=\"H3478\"* to|strong=\"H5704\"* an|strong=\"H3427\"* inhabited|strong=\"H3427\"* land. They|strong=\"H8141\"* ate the|strong=\"H5704\"* manna|strong=\"H4478\"* until|strong=\"H5704\"* they|strong=\"H8141\"* came|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H5704\"* borders|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H5704\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 36, + "text": "Now an omer|strong=\"H6016\"* is|strong=\"H1931\"* one|strong=\"H1931\"* tenth|strong=\"H6224\"* of|strong=\"H1931\"* an ephah.+ 16:36 1 ephah is about 22 liters or about 2/3 of a bushel*" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sin|strong=\"H5512\"*, starting according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s commandment|strong=\"H6310\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Rephidim|strong=\"H7508\"*; but|strong=\"H5971\"* there|strong=\"H3605\"* was|strong=\"H3068\"* no|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3478\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H4872\"* the|strong=\"H5414\"* people|strong=\"H5971\"* quarreled|strong=\"H7378\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Give|strong=\"H5414\"* us|strong=\"H5414\"* water|strong=\"H4325\"* to|strong=\"H3068\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* thirsty|strong=\"H6770\"* for|strong=\"H5921\"* water|strong=\"H4325\"* there|strong=\"H8033\"*; so|strong=\"H5927\"* the|strong=\"H5921\"* people|strong=\"H5971\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* said, “Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H5921\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H5921\"*, our|strong=\"H5921\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* our|strong=\"H5921\"* livestock|strong=\"H4735\"* with|strong=\"H5921\"* thirst|strong=\"H6772\"*?”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H2088\"* do|strong=\"H6213\"* with|strong=\"H3068\"* these|strong=\"H2088\"* people|strong=\"H5971\"*? They|strong=\"H3068\"* are|strong=\"H5971\"* almost|strong=\"H4592\"* ready|strong=\"H6213\"* to|strong=\"H3068\"* stone|strong=\"H5619\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* Moses|strong=\"H4872\"*, “Walk|strong=\"H1980\"* on|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* take|strong=\"H3947\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* with|strong=\"H1980\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* take|strong=\"H3947\"* the|strong=\"H6440\"* rod|strong=\"H4294\"* in|strong=\"H1980\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* with|strong=\"H1980\"* which|strong=\"H3068\"* you|strong=\"H6440\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Nile|strong=\"H2975\"*, and|strong=\"H1980\"* go|strong=\"H1980\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H6440\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H6440\"* rock|strong=\"H6697\"* in|strong=\"H5921\"* Horeb|strong=\"H2722\"*. You|strong=\"H6440\"* shall|strong=\"H5971\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* rock|strong=\"H6697\"*, and|strong=\"H4872\"* water|strong=\"H4325\"* will|strong=\"H5971\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6440\"* it|strong=\"H5921\"*, that|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* may|strong=\"H5971\"* drink|strong=\"H8354\"*.” Moses|strong=\"H4872\"* did|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H5921\"* the|strong=\"H6440\"* sight|strong=\"H5869\"* of|strong=\"H6440\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Massah|strong=\"H4532\"*,+ 17:7 Massah means testing. * and|strong=\"H1121\"* Meribah|strong=\"H4809\"*,+ 17:7 Meribah means quarreling.* because|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* quarreled, and|strong=\"H1121\"* because|strong=\"H5921\"* they|strong=\"H3068\"* tested|strong=\"H5254\"* Yahweh|strong=\"H3068\"*, saying, “Is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* among|strong=\"H7130\"* us|strong=\"H5921\"*, or|strong=\"H1121\"* not|strong=\"H1121\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3478\"* Amalek|strong=\"H6002\"* came|strong=\"H3478\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Rephidim|strong=\"H7508\"*." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Joshua|strong=\"H3091\"*, “Choose men|strong=\"H7218\"* for|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H4872\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* with|strong=\"H5921\"* Amalek|strong=\"H6002\"*. Tomorrow|strong=\"H4279\"* I|strong=\"H5921\"* will|strong=\"H3027\"* stand|strong=\"H5324\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hill|strong=\"H1389\"* with|strong=\"H5921\"* God|strong=\"H3027\"*’s rod|strong=\"H4294\"* in|strong=\"H5921\"* my|strong=\"H5921\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H6213\"* Joshua|strong=\"H3091\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* told|strong=\"H6213\"* him|strong=\"H6213\"*, and|strong=\"H4872\"* fought|strong=\"H3898\"* with|strong=\"H6213\"* Amalek|strong=\"H6002\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"*, Aaron, and|strong=\"H4872\"* Hur|strong=\"H2354\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6213\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6213\"* hill|strong=\"H1389\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* held|strong=\"H4872\"* up|strong=\"H7311\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, Israel|strong=\"H3478\"* prevailed|strong=\"H1396\"*. When|strong=\"H1961\"* he|strong=\"H3027\"* let|strong=\"H5117\"* down|strong=\"H5117\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, Amalek|strong=\"H6002\"* prevailed|strong=\"H1396\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H1961\"* Moses|strong=\"H4872\"*’ hands|strong=\"H3027\"* were|strong=\"H1961\"* heavy|strong=\"H3515\"*; so|strong=\"H3947\"* they|strong=\"H5921\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone, and|strong=\"H4872\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under|strong=\"H8478\"* him|strong=\"H5921\"*, and|strong=\"H4872\"* he|strong=\"H5704\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. Aaron and|strong=\"H4872\"* Hur|strong=\"H2354\"* held|strong=\"H8551\"* up|strong=\"H7760\"* his|strong=\"H7760\"* hands|strong=\"H3027\"*, the|strong=\"H5921\"* one|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H2088\"*. His|strong=\"H7760\"* hands|strong=\"H3027\"* were|strong=\"H1961\"* steady until|strong=\"H5704\"* sunset|strong=\"H8121\"*." + }, + { + "verseNum": 13, + "text": "Joshua|strong=\"H3091\"* defeated Amalek|strong=\"H6002\"* and|strong=\"H5971\"* his|strong=\"H6310\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3091\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3091\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Write|strong=\"H3789\"* this|strong=\"H2063\"* for|strong=\"H3588\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H4872\"* rehearse|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H3068\"* the|strong=\"H3588\"* ears of|strong=\"H3068\"* Joshua|strong=\"H3091\"*: that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* utterly|strong=\"H4229\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* the|strong=\"H3588\"* memory|strong=\"H2143\"* of|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H8478\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* called|strong=\"H7121\"* its name|strong=\"H8034\"* “Yahweh|strong=\"H3068\"* our Banner”.+ 17:15 Hebrew, Yahweh Nissi*" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* said, “Yah|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H3027\"*: ‘Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H3068\"* war|strong=\"H4421\"* with|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H5921\"* generation|strong=\"H1755\"* to|strong=\"H3068\"* generation|strong=\"H1755\"*.’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Jethro|strong=\"H3503\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, heard|strong=\"H8085\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* God|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H3588\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H3318\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, received|strong=\"H3947\"* Zipporah|strong=\"H6855\"*, Moses|strong=\"H4872\"*’ wife, after he|strong=\"H4872\"* had|strong=\"H4872\"* sent|strong=\"H3947\"* her|strong=\"H3947\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* her|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* one|strong=\"H1121\"* son|strong=\"H1121\"* was|strong=\"H8034\"* Gershom|strong=\"H1647\"*,+ 18:3 “Gershom” sounds like the Hebrew for “an alien there”.* for|strong=\"H3588\"* Moses|strong=\"H8034\"* said, “I|strong=\"H3588\"* have|strong=\"H1961\"* lived|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* in|strong=\"H1121\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* land”." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H3588\"* other was|strong=\"H8034\"* Eliezer,+ 18:4 Eliezer means “God is my helper”. * for|strong=\"H3588\"* he|strong=\"H3588\"* said, “My|strong=\"H5337\"* father’s God was|strong=\"H8034\"* my|strong=\"H5337\"* help|strong=\"H5828\"* and|strong=\"H2719\"* delivered|strong=\"H5337\"* me|strong=\"H5337\"* from|strong=\"H5337\"* Pharaoh|strong=\"H6547\"*’s sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 5, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, came|strong=\"H4872\"* with|strong=\"H2859\"* Moses|strong=\"H4872\"*’ sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H4872\"* wife to|strong=\"H1121\"* Moses|strong=\"H4872\"* into the|strong=\"H4872\"* wilderness|strong=\"H4057\"* where|strong=\"H8033\"* he|strong=\"H1931\"* was|strong=\"H1931\"* encamped|strong=\"H2583\"*, at|strong=\"H2583\"* the|strong=\"H4872\"* Mountain|strong=\"H2022\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 6, + "text": "He|strong=\"H8147\"* said to|strong=\"H1121\"* Moses|strong=\"H4872\"*, “I|strong=\"H1121\"*, your|strong=\"H5973\"* father-in-law|strong=\"H2859\"* Jethro|strong=\"H3503\"*, have|strong=\"H1121\"* come to|strong=\"H1121\"* you|strong=\"H5973\"* with|strong=\"H5973\"* your|strong=\"H5973\"* wife, and|strong=\"H1121\"* her|strong=\"H8147\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* with|strong=\"H5973\"* her|strong=\"H8147\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* his|strong=\"H4872\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* bowed|strong=\"H7812\"* and|strong=\"H4872\"* kissed|strong=\"H5401\"* him|strong=\"H3318\"*. They|strong=\"H7965\"* asked|strong=\"H7592\"* each other|strong=\"H7453\"* of|strong=\"H3318\"* their|strong=\"H3318\"* welfare|strong=\"H7965\"*, and|strong=\"H4872\"* they|strong=\"H7965\"* came|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* tent." + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* told|strong=\"H5608\"* his|strong=\"H3605\"* father-in-law|strong=\"H2859\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Pharaoh|strong=\"H6547\"* and|strong=\"H4872\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* for|strong=\"H5921\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* hardships that|strong=\"H3605\"* had|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H5921\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H4872\"* how|strong=\"H1870\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Jethro|strong=\"H3503\"* rejoiced|strong=\"H2302\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "Jethro|strong=\"H3503\"* said, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* delivered|strong=\"H5337\"* you|strong=\"H1288\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H3068\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*; who|strong=\"H5971\"* has|strong=\"H3068\"* delivered|strong=\"H5337\"* the|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* greater|strong=\"H1419\"* than|strong=\"H5921\"* all|strong=\"H3605\"* gods because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1697\"* that|strong=\"H3588\"* they|strong=\"H3588\"* treated people|strong=\"H3045\"* arrogantly|strong=\"H2102\"*.”" + }, + { + "verseNum": 12, + "text": "Jethro|strong=\"H3503\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, took|strong=\"H3947\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H4872\"* sacrifices|strong=\"H2077\"* for|strong=\"H6440\"* God. Aaron came|strong=\"H3478\"* with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 13, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Moses|strong=\"H4872\"* sat|strong=\"H3427\"* to|strong=\"H5704\"* judge|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* around|strong=\"H5921\"* Moses|strong=\"H4872\"* from|strong=\"H4480\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* to|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H7200\"* Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H5971\"* he|strong=\"H1931\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H1931\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H3605\"* do|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H3605\"* people|strong=\"H5971\"*? Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3605\"* sit|strong=\"H3427\"* alone|strong=\"H4480\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stand|strong=\"H5324\"* around|strong=\"H5921\"* you|strong=\"H3605\"* from|strong=\"H4480\"* morning|strong=\"H1242\"* to|strong=\"H5704\"* evening|strong=\"H6153\"*?”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5971\"* his|strong=\"H3588\"* father-in-law|strong=\"H2859\"*, “Because|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* come|strong=\"H5971\"* to|strong=\"H5971\"* me|strong=\"H1875\"* to|strong=\"H5971\"* inquire|strong=\"H1875\"* of|strong=\"H5971\"* God." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* a|strong=\"H3068\"* matter|strong=\"H1697\"*, they|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"*, and|strong=\"H2706\"* I|strong=\"H3588\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* a|strong=\"H3068\"* man|strong=\"H3045\"* and|strong=\"H2706\"* his|strong=\"H3045\"* neighbor|strong=\"H7453\"*, and|strong=\"H2706\"* I|strong=\"H3588\"* make|strong=\"H3045\"* them|strong=\"H1961\"* know|strong=\"H3045\"* the|strong=\"H3588\"* statutes|strong=\"H2706\"* of|strong=\"H1697\"* God, and|strong=\"H2706\"* his|strong=\"H3045\"* laws|strong=\"H8451\"*.”" + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"* said|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* do|strong=\"H6213\"* is|strong=\"H1697\"* not|strong=\"H3808\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* will|strong=\"H5971\"* surely|strong=\"H3588\"* wear|strong=\"H5034\"* away|strong=\"H5034\"*, both|strong=\"H1571\"* you|strong=\"H3588\"*, and|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* that|strong=\"H3588\"* is|strong=\"H2088\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* too|strong=\"H4480\"* heavy|strong=\"H3515\"* for|strong=\"H3588\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* perform|strong=\"H6213\"* it|strong=\"H3588\"* yourself|strong=\"H6213\"* alone|strong=\"H4480\"*." + }, + { + "verseNum": 19, + "text": "Listen|strong=\"H8085\"* now|strong=\"H6258\"* to|strong=\"H1961\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. I|strong=\"H1697\"* will|strong=\"H1961\"* give|strong=\"H3289\"* you|strong=\"H5973\"* counsel|strong=\"H3289\"*, and|strong=\"H5971\"* God be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5973\"*. You|strong=\"H5973\"* represent the|strong=\"H8085\"* people|strong=\"H5971\"* before|strong=\"H5973\"* God, and|strong=\"H5971\"* bring|strong=\"H1961\"* the|strong=\"H8085\"* causes|strong=\"H1697\"* to|strong=\"H1961\"* God." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6213\"* shall|strong=\"H8451\"* teach|strong=\"H3045\"* them|strong=\"H6213\"* the|strong=\"H6213\"* statutes|strong=\"H2706\"* and|strong=\"H3212\"* the|strong=\"H6213\"* laws|strong=\"H8451\"*, and|strong=\"H3212\"* shall|strong=\"H8451\"* show|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H6213\"* way|strong=\"H1870\"* in|strong=\"H6213\"* which|strong=\"H8451\"* they|strong=\"H6213\"* must walk|strong=\"H3212\"*, and|strong=\"H3212\"* the|strong=\"H6213\"* work|strong=\"H4639\"* that|strong=\"H3045\"* they|strong=\"H6213\"* must do|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "Moreover you|strong=\"H3605\"* shall|strong=\"H5971\"* provide|strong=\"H2372\"* out|strong=\"H5921\"* of|strong=\"H8269\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* able|strong=\"H2428\"* men|strong=\"H5971\"* which|strong=\"H5971\"* fear|strong=\"H3373\"* God: men|strong=\"H5971\"* of|strong=\"H8269\"* truth, hating|strong=\"H8130\"* unjust|strong=\"H1215\"* gain|strong=\"H1215\"*; and|strong=\"H3967\"* place|strong=\"H7760\"* such|strong=\"H3605\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H5921\"* be|strong=\"H5971\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* thousands, rulers|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, and|strong=\"H3967\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*." + }, + { + "verseNum": 22, + "text": "Let|strong=\"H6256\"* them|strong=\"H1992\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* at|strong=\"H5921\"* all|strong=\"H3605\"* times|strong=\"H6256\"*. It|strong=\"H5921\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* every|strong=\"H3605\"* great|strong=\"H1419\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* bring|strong=\"H5375\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, but|strong=\"H1961\"* every|strong=\"H3605\"* small|strong=\"H6996\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* judge|strong=\"H8199\"* themselves|strong=\"H1992\"*. So|strong=\"H1961\"* shall|strong=\"H5971\"* it|strong=\"H5921\"* be|strong=\"H1961\"* easier|strong=\"H7043\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, and|strong=\"H1419\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* share the|strong=\"H3605\"* load|strong=\"H5375\"* with|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "If you|strong=\"H6680\"* will|strong=\"H5971\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H5971\"* God commands|strong=\"H6680\"* you|strong=\"H6680\"* so|strong=\"H6213\"*, then|strong=\"H2088\"* you|strong=\"H6680\"* will|strong=\"H5971\"* be|strong=\"H1697\"* able|strong=\"H3201\"* to|strong=\"H3201\"* endure|strong=\"H5975\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"* also|strong=\"H1571\"* will|strong=\"H5971\"* go|strong=\"H5971\"* to|strong=\"H3201\"* their|strong=\"H3605\"* place|strong=\"H4725\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H6213\"* Moses|strong=\"H4872\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H3605\"* father-in-law|strong=\"H2859\"*, and|strong=\"H4872\"* did|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H4872\"* said|strong=\"H8085\"*." + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* chose able|strong=\"H2428\"* men|strong=\"H7218\"* out|strong=\"H5414\"* of|strong=\"H8269\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* made|strong=\"H5414\"* them|strong=\"H5414\"* heads|strong=\"H7218\"* over|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* thousands, rulers|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, rulers|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, and|strong=\"H3967\"* rulers|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1992\"* judged|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* at|strong=\"H5971\"* all|strong=\"H3605\"* times|strong=\"H6256\"*. They|strong=\"H1992\"* brought|strong=\"H4872\"* the|strong=\"H3605\"* hard|strong=\"H7186\"* cases|strong=\"H1697\"* to|strong=\"H6256\"* Moses|strong=\"H4872\"*, but|strong=\"H1992\"* every|strong=\"H3605\"* small|strong=\"H6996\"* matter|strong=\"H1697\"* they|strong=\"H1992\"* judged|strong=\"H8199\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* let|strong=\"H7971\"* his|strong=\"H7971\"* father-in-law|strong=\"H2859\"* depart|strong=\"H3212\"*, and|strong=\"H4872\"* he|strong=\"H7971\"* went|strong=\"H3212\"* his|strong=\"H7971\"* way|strong=\"H3212\"* into|strong=\"H3212\"* his|strong=\"H7971\"* own land." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* the|strong=\"H3117\"* third|strong=\"H7992\"* month|strong=\"H2320\"* after|strong=\"H3117\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3117\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, on|strong=\"H3117\"* that|strong=\"H3117\"* same|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3117\"* came|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H5265\"* they|strong=\"H8033\"* had|strong=\"H3478\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Rephidim|strong=\"H7508\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8033\"* wilderness|strong=\"H4057\"* of|strong=\"H2022\"* Sinai|strong=\"H5514\"*, they|strong=\"H8033\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H8033\"* wilderness|strong=\"H4057\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* before|strong=\"H5048\"* the|strong=\"H8033\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3541\"* mountain|strong=\"H2022\"*, saying, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* you|strong=\"H5046\"* shall|strong=\"H3068\"* tell|strong=\"H5046\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, and|strong=\"H1121\"* tell|strong=\"H5046\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 4, + "text": "‘You|strong=\"H5921\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H5921\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H4714\"* how|strong=\"H6213\"* I|strong=\"H5921\"* bore|strong=\"H5375\"* you|strong=\"H5921\"* on|strong=\"H5921\"* eagles|strong=\"H5404\"*’ wings|strong=\"H3671\"*, and|strong=\"H4714\"* brought|strong=\"H5375\"* you|strong=\"H5921\"* to|strong=\"H6213\"* myself." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* indeed|strong=\"H3588\"* obey|strong=\"H8085\"* my|strong=\"H8104\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8104\"* own|strong=\"H1961\"* possession|strong=\"H5459\"* from|strong=\"H8085\"* among|strong=\"H5971\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth is|strong=\"H3605\"* mine|strong=\"H8104\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* you|strong=\"H1696\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* to|strong=\"H1696\"* me|strong=\"H1696\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* nation|strong=\"H1471\"*.’ These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H1697\"* words|strong=\"H1697\"* which|strong=\"H1471\"* you|strong=\"H1696\"* shall|strong=\"H3548\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1697\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* came|strong=\"H3068\"* and|strong=\"H4872\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* before|strong=\"H6440\"* them|strong=\"H6440\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H6030\"* together|strong=\"H3162\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “All|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* come|strong=\"H5971\"* to|strong=\"H1696\"* you|strong=\"H5046\"* in|strong=\"H3068\"* a|strong=\"H3068\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"*, that|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* may|strong=\"H3068\"* hear|strong=\"H8085\"* when|strong=\"H8085\"* I|strong=\"H2009\"* speak|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5046\"*, and|strong=\"H4872\"* may|strong=\"H3068\"* also|strong=\"H1571\"* believe you|strong=\"H5046\"* forever|strong=\"H5769\"*.” Moses|strong=\"H4872\"* told|strong=\"H5046\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3212\"* to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* sanctify|strong=\"H6942\"* them|strong=\"H6942\"* today|strong=\"H3117\"* and|strong=\"H4872\"* tomorrow|strong=\"H4279\"*, and|strong=\"H4872\"* let|strong=\"H3212\"* them|strong=\"H6942\"* wash|strong=\"H3526\"* their|strong=\"H3068\"* garments|strong=\"H8071\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* be|strong=\"H1961\"* ready|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3605\"* shall|strong=\"H5971\"* set|strong=\"H1379\"* bounds|strong=\"H1379\"* to|strong=\"H4191\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, saying, ‘Be|strong=\"H4191\"* careful|strong=\"H8104\"* that|strong=\"H5971\"* you|strong=\"H3605\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H3605\"* mountain|strong=\"H2022\"*, or|strong=\"H4191\"* touch|strong=\"H5060\"* its|strong=\"H3605\"* border|strong=\"H7097\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* shall|strong=\"H5971\"* be|strong=\"H4191\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "No|strong=\"H3808\"* hand|strong=\"H3027\"* shall|strong=\"H3027\"* touch|strong=\"H5060\"* him|strong=\"H3027\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* stoned|strong=\"H5619\"* or|strong=\"H3808\"* shot|strong=\"H3384\"* through|strong=\"H3027\"*; whether it|strong=\"H3588\"* is|strong=\"H3027\"* animal or|strong=\"H3808\"* man, he|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’ When|strong=\"H3588\"* the|strong=\"H3588\"* trumpet|strong=\"H3104\"* sounds|strong=\"H4900\"* long|strong=\"H4900\"*, they|strong=\"H1992\"* shall|strong=\"H3027\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"* to|strong=\"H3381\"* the|strong=\"H4480\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* the|strong=\"H4480\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* they|strong=\"H5971\"* washed|strong=\"H3526\"* their|strong=\"H3526\"* clothes|strong=\"H8071\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* said to|strong=\"H1961\"* the|strong=\"H3117\"* people|strong=\"H5971\"*, “Be|strong=\"H1961\"* ready|strong=\"H3559\"* by|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7969\"* day|strong=\"H3117\"*. Don’t have|strong=\"H1961\"* sexual relations with|strong=\"H3117\"* a|strong=\"H3068\"* woman.”" + }, + { + "verseNum": 16, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* morning|strong=\"H1242\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* thunders|strong=\"H6963\"* and|strong=\"H3117\"* lightnings|strong=\"H1300\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* thick|strong=\"H3515\"* cloud|strong=\"H6051\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H3117\"* an|strong=\"H1961\"* exceedingly|strong=\"H3966\"* loud|strong=\"H2389\"* trumpet|strong=\"H7782\"*; and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* trembled|strong=\"H2729\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* led|strong=\"H3318\"* the|strong=\"H4480\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H2022\"* the|strong=\"H4480\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* God; and|strong=\"H4872\"* they|strong=\"H5971\"* stood|strong=\"H3320\"* at|strong=\"H4264\"* the|strong=\"H4480\"* lower|strong=\"H8482\"* part|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* smoked, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* descended|strong=\"H3381\"* on|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* fire; and|strong=\"H3068\"* its|strong=\"H3605\"* smoke|strong=\"H6227\"* ascended|strong=\"H5927\"* like|strong=\"H3381\"* the|strong=\"H3605\"* smoke|strong=\"H6227\"* of|strong=\"H3068\"* a|strong=\"H3068\"* furnace|strong=\"H3536\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* mountain|strong=\"H2022\"* quaked|strong=\"H2729\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* the|strong=\"H4872\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H4872\"* trumpet|strong=\"H7782\"* grew|strong=\"H1980\"* louder|strong=\"H3966\"* and|strong=\"H1980\"* louder|strong=\"H3966\"*, Moses|strong=\"H4872\"* spoke|strong=\"H1696\"*, and|strong=\"H1980\"* God answered|strong=\"H6030\"* him|strong=\"H6963\"* by|strong=\"H1980\"* a|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H5927\"* down|strong=\"H3381\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*. Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Moses|strong=\"H4872\"* to|strong=\"H3381\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"*, warn|strong=\"H5749\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, lest|strong=\"H6435\"* they|strong=\"H3068\"* break|strong=\"H2040\"* through|strong=\"H4480\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"* to|strong=\"H3381\"* gaze|strong=\"H7200\"*, and|strong=\"H4872\"* many|strong=\"H7227\"* of|strong=\"H3068\"* them|strong=\"H3381\"* perish|strong=\"H5307\"*." + }, + { + "verseNum": 22, + "text": "Let the|strong=\"H3068\"* priests|strong=\"H3548\"* also|strong=\"H1571\"*, who|strong=\"H3068\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"*, lest|strong=\"H6435\"* Yahweh|strong=\"H3068\"* break|strong=\"H6555\"* out|strong=\"H6555\"* on|strong=\"H3068\"* them|strong=\"H6942\"*.”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3201\"* Yahweh|strong=\"H3068\"*, “The|strong=\"H3588\"* people|strong=\"H5971\"* can|strong=\"H3201\"*’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3201\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* warned|strong=\"H5749\"* us|strong=\"H3588\"*, saying, ‘Set|strong=\"H6942\"* bounds|strong=\"H1379\"* around|strong=\"H5749\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* sanctify|strong=\"H6942\"* it|strong=\"H3588\"*.’”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* him|strong=\"H5973\"*, “Go|strong=\"H3212\"* down|strong=\"H3381\"*! You|strong=\"H5973\"* shall|strong=\"H3548\"* bring|strong=\"H5927\"* Aaron up|strong=\"H5927\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, but|strong=\"H5971\"* don’t let|strong=\"H3381\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* break|strong=\"H2040\"* through|strong=\"H6555\"* to|strong=\"H3381\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, lest|strong=\"H6435\"* he|strong=\"H3068\"* break|strong=\"H2040\"* out|strong=\"H6555\"* against|strong=\"H5973\"* them|strong=\"H3381\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H3381\"* Moses|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H4872\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* told them|strong=\"H3381\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "God+ 20:1 After “God”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.* spoke|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 3, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* no|strong=\"H3808\"* other gods before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* an|strong=\"H6213\"* idol|strong=\"H6459\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* image|strong=\"H6459\"* of|strong=\"H4325\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*:" + }, + { + "verseNum": 5, + "text": "you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* yourself|strong=\"H5921\"* down|strong=\"H7812\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H2617\"* showing|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* thousands of|strong=\"H4687\"* those|strong=\"H6213\"* who|strong=\"H8104\"* love|strong=\"H2617\"* me|strong=\"H6213\"* and|strong=\"H2617\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* misuse the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*,+ 20:7 or, You shall not take the name of Yahweh your God in vain* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hold him|strong=\"H5375\"* guiltless|strong=\"H5352\"* who|strong=\"H3068\"* misuses his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, to|strong=\"H3117\"* keep|strong=\"H6942\"* it|strong=\"H6942\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* labor|strong=\"H5647\"* six|strong=\"H8337\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* do|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* work|strong=\"H4399\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H3068\"* it|strong=\"H6213\"*, you|strong=\"H3605\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* livestock, nor|strong=\"H3808\"* your|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* in|strong=\"H5921\"* six|strong=\"H8337\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*, the|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* rested|strong=\"H5117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*; therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* it|strong=\"H5921\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 12, + "text": "“Honor|strong=\"H3513\"* your|strong=\"H3068\"* father and|strong=\"H3068\"* your|strong=\"H3068\"* mother, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* long|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H3808\"* shall|strong=\"H7523\"* not|strong=\"H3808\"* murder|strong=\"H7523\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* commit|strong=\"H5003\"* adultery|strong=\"H5003\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 16, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* give|strong=\"H6030\"* false|strong=\"H8267\"* testimony|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*. You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife, nor|strong=\"H3808\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* female servant|strong=\"H5650\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* ox|strong=\"H7794\"*, nor|strong=\"H3808\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*, nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s.”" + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* perceived|strong=\"H7200\"* the|strong=\"H3605\"* thunderings|strong=\"H6963\"*, the|strong=\"H3605\"* lightnings|strong=\"H3940\"*, the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H2022\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* smoking|strong=\"H6226\"*. When|strong=\"H7200\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, they|strong=\"H5971\"* trembled|strong=\"H5128\"*, and|strong=\"H5971\"* stayed|strong=\"H5975\"* at|strong=\"H5975\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H8085\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H6435\"* yourself|strong=\"H5973\"*, and|strong=\"H4872\"* we|strong=\"H3068\"* will|strong=\"H8085\"* listen|strong=\"H8085\"*; but|strong=\"H1696\"* don’t let God speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H6435\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1961\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* God has|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* test|strong=\"H5254\"* you|strong=\"H3588\"*, and|strong=\"H4872\"* that|strong=\"H3588\"* his|strong=\"H6440\"* fear|strong=\"H3372\"* may|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* won’t sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H4872\"* people|strong=\"H5971\"* stayed|strong=\"H5975\"* at|strong=\"H5975\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*, and|strong=\"H4872\"* Moses|strong=\"H4872\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H8033\"* the|strong=\"H4872\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"* where|strong=\"H8033\"* God was|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell|strong=\"H1696\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘You|strong=\"H3588\"* yourselves|strong=\"H3068\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H3588\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H3808\"* most certainly|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* gods of|strong=\"H6213\"* silver|strong=\"H3701\"* or|strong=\"H3808\"* gods of|strong=\"H6213\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* yourselves to|strong=\"H6213\"* be|strong=\"H3808\"* alongside me|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H8034\"* earth for|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H6629\"* shall|strong=\"H6213\"* sacrifice|strong=\"H2076\"* on|strong=\"H5921\"* it|strong=\"H5921\"* your|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H6629\"* your|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, your|strong=\"H3605\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* your|strong=\"H3605\"* cattle|strong=\"H1241\"*. In|strong=\"H5921\"* every|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H4725\"* I|strong=\"H5921\"* record|strong=\"H2142\"* my|strong=\"H3605\"* name|strong=\"H8034\"* I|strong=\"H5921\"* will|strong=\"H6629\"* come|strong=\"H2142\"* to|strong=\"H6213\"* you|strong=\"H3605\"* and|strong=\"H6629\"* I|strong=\"H5921\"* will|strong=\"H6629\"* bless|strong=\"H1288\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* make|strong=\"H6213\"* me|strong=\"H5921\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* stone|strong=\"H1496\"*, you|strong=\"H3588\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* build|strong=\"H1129\"* it|strong=\"H5921\"* of|strong=\"H4196\"* cut|strong=\"H1496\"* stones|strong=\"H1496\"*; for|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* lift up|strong=\"H1129\"* your|strong=\"H5921\"* tool|strong=\"H2719\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, you|strong=\"H3588\"* have|strong=\"H1129\"* polluted|strong=\"H2490\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* steps|strong=\"H4609\"* to|strong=\"H5927\"* my|strong=\"H5921\"* altar|strong=\"H4196\"*, that|strong=\"H4196\"* your|strong=\"H5921\"* nakedness|strong=\"H6172\"* may|strong=\"H4196\"* not|strong=\"H3808\"* be|strong=\"H3808\"* exposed|strong=\"H1540\"* to|strong=\"H5927\"* it|strong=\"H5921\"*.’" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H7760\"* these|strong=\"H7760\"* are|strong=\"H4941\"* the|strong=\"H6440\"* ordinances|strong=\"H4941\"* which you|strong=\"H6440\"* shall|strong=\"H6440\"* set|strong=\"H7760\"* before|strong=\"H6440\"* them|strong=\"H6440\"*:" + }, + { + "verseNum": 2, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* buy|strong=\"H7069\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* servant|strong=\"H5650\"*, he|strong=\"H3588\"* shall|strong=\"H5650\"* serve|strong=\"H5647\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H5650\"* in|strong=\"H8141\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* he|strong=\"H3588\"* shall|strong=\"H5650\"* go|strong=\"H3318\"* out|strong=\"H3318\"* free|strong=\"H2670\"* without|strong=\"H2600\"* paying|strong=\"H2600\"* anything." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* comes|strong=\"H3318\"* in|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*. If|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* married|strong=\"H1167\"*, then|strong=\"H3318\"* his|strong=\"H3318\"* wife shall|strong=\"H1931\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* his|strong=\"H5414\"* master|strong=\"H5414\"* gives|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* wife and|strong=\"H1121\"* she|strong=\"H1931\"* bears|strong=\"H3205\"* him|strong=\"H5414\"* sons|strong=\"H1121\"* or|strong=\"H1121\"* daughters|strong=\"H1323\"*, the|strong=\"H5414\"* wife and|strong=\"H1121\"* her|strong=\"H5414\"* children|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* her|strong=\"H5414\"* master|strong=\"H5414\"*’s, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* himself|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* if|strong=\"H1121\"* the|strong=\"H3318\"* servant|strong=\"H5650\"* shall|strong=\"H1121\"* plainly say, ‘I|strong=\"H5650\"* love my|strong=\"H3318\"* master, my|strong=\"H3318\"* wife, and|strong=\"H1121\"* my|strong=\"H3318\"* children|strong=\"H1121\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* free|strong=\"H2670\"*;’" + }, + { + "verseNum": 6, + "text": "then|strong=\"H5066\"* his|strong=\"H5647\"* master shall bring|strong=\"H5066\"* him|strong=\"H5647\"* to|strong=\"H5066\"* God, and|strong=\"H5769\"* shall bring|strong=\"H5066\"* him|strong=\"H5647\"* to|strong=\"H5066\"* the|strong=\"H5647\"* door|strong=\"H1817\"* or|strong=\"H1817\"* to|strong=\"H5066\"* the|strong=\"H5647\"* doorpost|strong=\"H4201\"*, and|strong=\"H5769\"* his|strong=\"H5647\"* master shall bore|strong=\"H7527\"* his|strong=\"H5647\"* ear|strong=\"H5647\"* through with|strong=\"H5647\"* an|strong=\"H5066\"* awl|strong=\"H4836\"*, and|strong=\"H5769\"* he shall serve|strong=\"H5647\"* him|strong=\"H5647\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man sells|strong=\"H4376\"* his|strong=\"H3588\"* daughter|strong=\"H1323\"* to|strong=\"H3318\"* be|strong=\"H3808\"* a|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, she|strong=\"H3588\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H3588\"* the|strong=\"H3588\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* do|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "If she|strong=\"H3808\"* doesn’t please|strong=\"H7451\"* her|strong=\"H6299\"* master|strong=\"H4910\"*, who|strong=\"H5971\"* has|strong=\"H5869\"* married her|strong=\"H6299\"* to|strong=\"H5971\"* himself|strong=\"H3808\"*, then|strong=\"H3808\"* he|strong=\"H3808\"* shall|strong=\"H5971\"* let|strong=\"H3808\"* her|strong=\"H6299\"* be|strong=\"H3808\"* redeemed|strong=\"H6299\"*. He|strong=\"H3808\"* shall|strong=\"H5971\"* have|strong=\"H5869\"* no|strong=\"H3808\"* right|strong=\"H5869\"* to|strong=\"H5971\"* sell|strong=\"H4376\"* her|strong=\"H6299\"* to|strong=\"H5971\"* a|strong=\"H3068\"* foreign|strong=\"H5237\"* people|strong=\"H5971\"*, since he|strong=\"H3808\"* has|strong=\"H5869\"* dealt deceitfully with|strong=\"H5971\"* her|strong=\"H6299\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1121\"* he|strong=\"H6213\"* marries her|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6213\"* son|strong=\"H1121\"*, he|strong=\"H6213\"* shall|strong=\"H1121\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* her|strong=\"H6213\"* as|strong=\"H6213\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 10, + "text": "If he|strong=\"H3808\"* takes|strong=\"H3947\"* another|strong=\"H3808\"* wife to|strong=\"H3808\"* himself|strong=\"H7607\"*, he|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* diminish|strong=\"H1639\"* her|strong=\"H3947\"* food|strong=\"H7607\"*, her|strong=\"H3947\"* clothing|strong=\"H3682\"*, and|strong=\"H3947\"* her|strong=\"H3947\"* marital rights|strong=\"H5772\"*." + }, + { + "verseNum": 11, + "text": "If he|strong=\"H6213\"* doesn’t do|strong=\"H6213\"* these|strong=\"H6213\"* three|strong=\"H7969\"* things|strong=\"H7969\"* for|strong=\"H6213\"* her|strong=\"H3318\"*, she|strong=\"H3808\"* may|strong=\"H6213\"* go|strong=\"H3318\"* free|strong=\"H3318\"* without|strong=\"H3808\"* paying|strong=\"H2600\"* any|strong=\"H6213\"* money|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "“One who|strong=\"H5221\"* strikes|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H4191\"* so|strong=\"H4191\"* that|strong=\"H4191\"* he|strong=\"H5221\"* dies|strong=\"H4191\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H3808\"* not|strong=\"H3808\"* if|strong=\"H7760\"* it|strong=\"H7760\"* is|strong=\"H3027\"* unintentional, but|strong=\"H3808\"* God|strong=\"H3808\"* allows it|strong=\"H7760\"* to|strong=\"H3027\"* happen; then|strong=\"H7760\"* I|strong=\"H7760\"* will|strong=\"H3027\"* appoint|strong=\"H7760\"* you|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* shall|strong=\"H3027\"* flee|strong=\"H5127\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* schemes and|strong=\"H4196\"* comes|strong=\"H5973\"* presumptuously|strong=\"H2102\"* on|strong=\"H5921\"* his|strong=\"H3947\"* neighbor|strong=\"H7453\"* to|strong=\"H4191\"* kill|strong=\"H2026\"* him|strong=\"H5921\"*, you|strong=\"H3588\"* shall|strong=\"H7453\"* take|strong=\"H3947\"* him|strong=\"H5921\"* from|strong=\"H5921\"* my|strong=\"H3947\"* altar|strong=\"H4196\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H4196\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "“Anyone who|strong=\"H5221\"* attacks|strong=\"H5221\"* his|strong=\"H5221\"* father or|strong=\"H4191\"* his|strong=\"H5221\"* mother shall|strong=\"H4191\"* be|strong=\"H4191\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "“Anyone who|strong=\"H4672\"* kidnaps|strong=\"H1589\"* someone|strong=\"H4191\"* and|strong=\"H3027\"* sells|strong=\"H4376\"* him|strong=\"H3027\"*, or|strong=\"H4376\"* if he|strong=\"H3027\"* is|strong=\"H3027\"* found|strong=\"H4672\"* in|strong=\"H4191\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "“Anyone who curses|strong=\"H7043\"* his|strong=\"H7043\"* father or|strong=\"H4191\"* his|strong=\"H7043\"* mother shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "“If|strong=\"H3588\"* men quarrel|strong=\"H7378\"* and|strong=\"H4191\"* one|strong=\"H3808\"* strikes|strong=\"H5221\"* the|strong=\"H3588\"* other|strong=\"H7453\"* with|strong=\"H7378\"* a|strong=\"H3068\"* stone, or|strong=\"H3808\"* with|strong=\"H7378\"* his|strong=\"H5221\"* fist, and|strong=\"H4191\"* he|strong=\"H3588\"* doesn’t die|strong=\"H4191\"*, but|strong=\"H3588\"* is|strong=\"H4191\"* confined to|strong=\"H4191\"* bed|strong=\"H4904\"*;" + }, + { + "verseNum": 19, + "text": "if he|strong=\"H5414\"* rises|strong=\"H6965\"* again|strong=\"H6965\"* and|strong=\"H1980\"* walks|strong=\"H1980\"* around|strong=\"H5921\"* with|strong=\"H1980\"* his|strong=\"H5414\"* staff|strong=\"H4938\"*, then|strong=\"H1980\"* he|strong=\"H5414\"* who|strong=\"H5221\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* shall|strong=\"H5352\"* be|strong=\"H5414\"* cleared; only|strong=\"H7535\"* he|strong=\"H5414\"* shall|strong=\"H5352\"* pay|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* loss|strong=\"H7674\"* of|strong=\"H5921\"* his|strong=\"H5414\"* time|strong=\"H7674\"*, and|strong=\"H1980\"* shall|strong=\"H5352\"* provide|strong=\"H5414\"* for|strong=\"H5921\"* his|strong=\"H5414\"* healing|strong=\"H7495\"* until|strong=\"H5921\"* he|strong=\"H5414\"* is thoroughly|strong=\"H7495\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 20, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* strikes|strong=\"H5221\"* his|strong=\"H5221\"* servant|strong=\"H5650\"* or|strong=\"H4191\"* his|strong=\"H5221\"* maid with|strong=\"H3027\"* a|strong=\"H3068\"* rod|strong=\"H7626\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* dies|strong=\"H4191\"* under|strong=\"H8478\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, the|strong=\"H3588\"* man|strong=\"H4191\"* shall|strong=\"H5650\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* punished|strong=\"H5358\"*." + }, + { + "verseNum": 21, + "text": "Notwithstanding, if|strong=\"H3588\"* his|strong=\"H3588\"* servant gets up|strong=\"H5975\"* after|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* or|strong=\"H3808\"* two|strong=\"H3808\"*, he|strong=\"H1931\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* punished|strong=\"H5358\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* servant is|strong=\"H1931\"* his|strong=\"H3588\"* property|strong=\"H3701\"*." + }, + { + "verseNum": 22, + "text": "“If|strong=\"H3588\"* men|strong=\"H1167\"* fight|strong=\"H5327\"* and|strong=\"H3318\"* hurt|strong=\"H5062\"* a|strong=\"H3068\"* pregnant|strong=\"H2030\"* woman|strong=\"H2030\"* so|strong=\"H1961\"* that|strong=\"H3588\"* she|strong=\"H3588\"* gives|strong=\"H5414\"* birth|strong=\"H3808\"* prematurely|strong=\"H3318\"*, and|strong=\"H3318\"* yet|strong=\"H3588\"* no|strong=\"H3808\"* harm follows, he|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* surely|strong=\"H3588\"* fined|strong=\"H6064\"* as|strong=\"H1961\"* much|strong=\"H5921\"* as|strong=\"H1961\"* the|strong=\"H5921\"* woman|strong=\"H2030\"*’s husband|strong=\"H1167\"* demands|strong=\"H5414\"* and|strong=\"H3318\"* the|strong=\"H5921\"* judges|strong=\"H6414\"* allow|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H1961\"* if|strong=\"H1961\"* any|strong=\"H5315\"* harm|strong=\"H5315\"* follows, then|strong=\"H1961\"* you|strong=\"H5414\"* must|strong=\"H5315\"* take|strong=\"H1961\"* life|strong=\"H5315\"* for|strong=\"H8478\"* life|strong=\"H5315\"*," + }, + { + "verseNum": 24, + "text": "eye|strong=\"H5869\"* for|strong=\"H8478\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H8478\"* tooth|strong=\"H8127\"*, hand|strong=\"H3027\"* for|strong=\"H8478\"* hand|strong=\"H3027\"*, foot|strong=\"H7272\"* for|strong=\"H8478\"* foot|strong=\"H7272\"*," + }, + { + "verseNum": 25, + "text": "burning|strong=\"H3555\"* for|strong=\"H8478\"* burning|strong=\"H3555\"*, wound|strong=\"H6482\"* for|strong=\"H8478\"* wound|strong=\"H6482\"*, and|strong=\"H8478\"* bruise|strong=\"H2250\"* for|strong=\"H8478\"* bruise|strong=\"H2250\"*." + }, + { + "verseNum": 26, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2670\"* strikes|strong=\"H5221\"* his|strong=\"H7971\"* servant|strong=\"H5650\"*’s eye|strong=\"H5869\"*, or|strong=\"H5650\"* his|strong=\"H7971\"* maid’s eye|strong=\"H5869\"*, and|strong=\"H7971\"* destroys|strong=\"H7843\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H5869\"* let|strong=\"H7971\"* him|strong=\"H5221\"* go|strong=\"H7971\"* free|strong=\"H2670\"* for|strong=\"H3588\"* his|strong=\"H7971\"* eye|strong=\"H5869\"*’s sake." + }, + { + "verseNum": 27, + "text": "If he|strong=\"H7971\"* strikes out|strong=\"H7971\"* his|strong=\"H7971\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*’s tooth|strong=\"H8127\"*, or|strong=\"H5650\"* his|strong=\"H7971\"* female servant|strong=\"H5650\"*’s tooth|strong=\"H8127\"*, he|strong=\"H7971\"* shall|strong=\"H5650\"* let|strong=\"H7971\"* the|strong=\"H8478\"* servant|strong=\"H5650\"* go|strong=\"H7971\"* free|strong=\"H2670\"* for|strong=\"H8478\"* his|strong=\"H7971\"* tooth|strong=\"H8127\"*’s sake." + }, + { + "verseNum": 28, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* gores|strong=\"H5055\"* a|strong=\"H3068\"* man|strong=\"H1167\"* or|strong=\"H3808\"* a|strong=\"H3068\"* woman to|strong=\"H4191\"* death|strong=\"H4191\"*, the|strong=\"H3588\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* stoned|strong=\"H5619\"*, and|strong=\"H4191\"* its|strong=\"H3588\"* meat|strong=\"H1320\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* eaten; but|strong=\"H3588\"* the|strong=\"H3588\"* owner|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H3588\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* held responsible." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* the|strong=\"H8104\"* bull|strong=\"H7794\"* had|strong=\"H1167\"* a|strong=\"H3068\"* habit|strong=\"H5056\"* of|strong=\"H1167\"* goring|strong=\"H5056\"* in|strong=\"H4191\"* the|strong=\"H8104\"* past|strong=\"H8032\"*, and|strong=\"H8104\"* this|strong=\"H1931\"* has|strong=\"H1571\"* been|strong=\"H3808\"* testified|strong=\"H5749\"* to|strong=\"H4191\"* its|strong=\"H8104\"* owner|strong=\"H1167\"*, and|strong=\"H8104\"* he|strong=\"H1931\"* has|strong=\"H1571\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* it|strong=\"H1931\"* in|strong=\"H4191\"*, but|strong=\"H3808\"* it|strong=\"H1931\"* has|strong=\"H1571\"* killed|strong=\"H4191\"* a|strong=\"H3068\"* man|strong=\"H1167\"* or|strong=\"H3808\"* a|strong=\"H3068\"* woman, the|strong=\"H8104\"* bull|strong=\"H7794\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* stoned|strong=\"H5619\"*, and|strong=\"H8104\"* its|strong=\"H8104\"* owner|strong=\"H1167\"* shall|strong=\"H3808\"* also|strong=\"H1571\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 30, + "text": "If a|strong=\"H3068\"* ransom|strong=\"H3724\"* is|strong=\"H5315\"* imposed|strong=\"H5414\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, then|strong=\"H5414\"* he|strong=\"H3605\"* shall|strong=\"H5315\"* give|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H3605\"* redemption|strong=\"H6306\"* of|strong=\"H5921\"* his|strong=\"H3605\"* life|strong=\"H5315\"* whatever|strong=\"H3605\"* is|strong=\"H5315\"* imposed|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "Whether it|strong=\"H6213\"* has|strong=\"H2088\"* gored|strong=\"H5055\"* a|strong=\"H3068\"* son|strong=\"H1121\"* or|strong=\"H1121\"* has|strong=\"H2088\"* gored|strong=\"H5055\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, according|strong=\"H4941\"* to|strong=\"H6213\"* this|strong=\"H2088\"* judgment|strong=\"H4941\"* it|strong=\"H6213\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "If the|strong=\"H5414\"* bull|strong=\"H7794\"* gores|strong=\"H5055\"* a|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* or|strong=\"H3701\"* a|strong=\"H3068\"* female servant|strong=\"H5650\"*, thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*+ 21:32 A shekel is about 10 grams or about 0.35 ounces, so 30 shekels is about 300 grams or about 10.6 ounces.* of|strong=\"H5650\"* silver|strong=\"H3701\"* shall|strong=\"H5650\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* their|strong=\"H5414\"* master|strong=\"H5414\"*, and|strong=\"H3701\"* the|strong=\"H5414\"* ox|strong=\"H7794\"* shall|strong=\"H5650\"* be|strong=\"H5414\"* stoned|strong=\"H5619\"*." + }, + { + "verseNum": 33, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5307\"* opens|strong=\"H6605\"* a|strong=\"H3068\"* pit, or|strong=\"H3808\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5307\"* digs|strong=\"H3738\"* a|strong=\"H3068\"* pit and|strong=\"H8033\"* doesn’t cover|strong=\"H3680\"* it|strong=\"H3588\"*, and|strong=\"H8033\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* falls|strong=\"H5307\"* into|strong=\"H5307\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"H7725\"* owner|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H7725\"* pit shall|strong=\"H3701\"* make|strong=\"H7999\"* it|strong=\"H7725\"* good|strong=\"H7999\"*. He|strong=\"H7725\"* shall|strong=\"H3701\"* give|strong=\"H7725\"* money|strong=\"H3701\"* to|strong=\"H7725\"* its|strong=\"H7725\"* owner|strong=\"H1167\"*, and|strong=\"H3701\"* the|strong=\"H7725\"* dead|strong=\"H4191\"* animal|strong=\"H1961\"* shall|strong=\"H3701\"* be|strong=\"H1961\"* his|strong=\"H7725\"*." + }, + { + "verseNum": 35, + "text": "“If|strong=\"H3588\"* one|strong=\"H2416\"* man|strong=\"H4191\"*’s bull|strong=\"H7794\"* injures|strong=\"H5062\"* another|strong=\"H7453\"*’s, so|strong=\"H1571\"* that|strong=\"H3588\"* it|strong=\"H3588\"* dies|strong=\"H4191\"*, then|strong=\"H1571\"* they|strong=\"H3588\"* shall|strong=\"H2416\"* sell|strong=\"H4376\"* the|strong=\"H3588\"* live|strong=\"H2416\"* bull|strong=\"H7794\"*, and|strong=\"H3701\"* divide|strong=\"H2673\"* its|strong=\"H3588\"* price|strong=\"H3701\"*; and|strong=\"H3701\"* they|strong=\"H3588\"* shall|strong=\"H2416\"* also|strong=\"H1571\"* divide|strong=\"H2673\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* animal|strong=\"H2416\"*." + }, + { + "verseNum": 36, + "text": "Or|strong=\"H3808\"* if|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* known|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* bull|strong=\"H7794\"* was|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H3588\"* habit|strong=\"H5056\"* of|strong=\"H1167\"* goring|strong=\"H5056\"* in|strong=\"H4191\"* the|strong=\"H3588\"* past|strong=\"H8032\"*, and|strong=\"H3045\"* its|strong=\"H8478\"* owner|strong=\"H1167\"* has|strong=\"H1961\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* it|strong=\"H1931\"* in|strong=\"H4191\"*, he|strong=\"H1931\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* pay|strong=\"H7999\"* bull|strong=\"H7794\"* for|strong=\"H3588\"* bull|strong=\"H7794\"*, and|strong=\"H3045\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* animal|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* his|strong=\"H8104\"* own|strong=\"H1961\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "“If a|strong=\"H3068\"* man|strong=\"H4191\"* steals an|strong=\"H5221\"* ox or|strong=\"H4191\"* a|strong=\"H3068\"* sheep, and|strong=\"H1818\"* kills|strong=\"H5221\"* it|strong=\"H5221\"* or|strong=\"H4191\"* sells it|strong=\"H5221\"*, he|strong=\"H5221\"* shall|strong=\"H1818\"* pay five oxen for|strong=\"H4191\"* an|strong=\"H5221\"* ox, and|strong=\"H1818\"* four sheep for|strong=\"H4191\"* a|strong=\"H3068\"* sheep." + }, + { + "verseNum": 2, + "text": "If the|strong=\"H5921\"* thief is|strong=\"H8121\"* found breaking in|strong=\"H5921\"*, and|strong=\"H1818\"* is|strong=\"H8121\"* struck so|strong=\"H5921\"* that|strong=\"H1818\"* he|strong=\"H5921\"* dies, there shall|strong=\"H1818\"* be|strong=\"H8121\"* no guilt|strong=\"H1818\"* of|strong=\"H5921\"* bloodshed|strong=\"H1818\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "If the|strong=\"H5704\"* sun has|strong=\"H3027\"* risen on|strong=\"H3027\"* him|strong=\"H3027\"*, he|strong=\"H5704\"* is|strong=\"H3027\"* guilty of|strong=\"H3027\"* bloodshed. He|strong=\"H5704\"* shall|strong=\"H3027\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"*. If he|strong=\"H5704\"* has|strong=\"H3027\"* nothing, then he|strong=\"H5704\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* sold for|strong=\"H5704\"* his|strong=\"H3027\"* theft|strong=\"H1591\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* stolen property is|strong=\"H7704\"* found in|strong=\"H7971\"* his|strong=\"H7971\"* hand alive, whether it|strong=\"H3588\"* is|strong=\"H7704\"* ox, donkey, or|strong=\"H7704\"* sheep, he|strong=\"H3588\"* shall|strong=\"H7704\"* pay|strong=\"H7999\"* double." + }, + { + "verseNum": 5, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man causes|strong=\"H3318\"* a|strong=\"H3068\"* field|strong=\"H7704\"* or|strong=\"H7704\"* vineyard to|strong=\"H3318\"* be|strong=\"H3318\"* eaten|strong=\"H1197\"* by|strong=\"H3318\"* letting his|strong=\"H3588\"* animal loose, and|strong=\"H7704\"* it|strong=\"H3588\"* grazes|strong=\"H1197\"* in|strong=\"H4672\"* another man’s field|strong=\"H7704\"*, he|strong=\"H3588\"* shall|strong=\"H7704\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"* from|strong=\"H3318\"* the|strong=\"H3588\"* best of|strong=\"H7704\"* his|strong=\"H3588\"* own field|strong=\"H7704\"*, and|strong=\"H7704\"* from|strong=\"H3318\"* the|strong=\"H3588\"* best of|strong=\"H7704\"* his|strong=\"H3588\"* own vineyard." + }, + { + "verseNum": 6, + "text": "“If|strong=\"H3588\"* fire breaks out|strong=\"H4672\"*, and|strong=\"H3701\"* catches in|strong=\"H1004\"* thorns so|strong=\"H5414\"* that|strong=\"H3588\"* the|strong=\"H3588\"* shocks of|strong=\"H1004\"* grain, or|strong=\"H3701\"* the|strong=\"H3588\"* standing|strong=\"H7453\"* grain, or|strong=\"H3701\"* the|strong=\"H3588\"* field are|strong=\"H1004\"* consumed; he|strong=\"H3588\"* who|strong=\"H8104\"* kindled the|strong=\"H3588\"* fire shall|strong=\"H1004\"* surely|strong=\"H3588\"* make|strong=\"H5414\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 7, + "text": "“If a|strong=\"H3068\"* man|strong=\"H1167\"* delivers to|strong=\"H7971\"* his|strong=\"H7971\"* neighbor|strong=\"H7453\"* money or|strong=\"H3808\"* stuff|strong=\"H4399\"* to|strong=\"H7971\"* keep|strong=\"H7126\"*, and|strong=\"H7971\"* it|strong=\"H7126\"* is|strong=\"H3027\"* stolen out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H7971\"* man|strong=\"H1167\"*’s house|strong=\"H1004\"*, if the|strong=\"H7971\"* thief|strong=\"H1590\"* is|strong=\"H3027\"* found|strong=\"H4672\"*, he|strong=\"H1004\"* shall|strong=\"H1004\"* pay double." + }, + { + "verseNum": 8, + "text": "If|strong=\"H3588\"* the|strong=\"H3605\"* thief isn’t found, then|strong=\"H2088\"* the|strong=\"H3605\"* master of|strong=\"H1697\"* the|strong=\"H3605\"* house shall|strong=\"H1931\"* come near|strong=\"H5921\"* to|strong=\"H5704\"* God|strong=\"H7999\"*, to|strong=\"H5704\"* find out|strong=\"H5921\"* whether or|strong=\"H5704\"* not|strong=\"H2088\"* he|strong=\"H1931\"* has|strong=\"H3588\"* put|strong=\"H8147\"* his|strong=\"H3605\"* hand on|strong=\"H5921\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s goods." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* matter of|strong=\"H3605\"* trespass, whether|strong=\"H7200\"* it|strong=\"H5414\"* is|strong=\"H3605\"* for|strong=\"H3588\"* ox|strong=\"H7794\"*, for|strong=\"H3588\"* donkey|strong=\"H2543\"*, for|strong=\"H3588\"* sheep|strong=\"H7716\"*, for|strong=\"H3588\"* clothing, or|strong=\"H7794\"* for|strong=\"H3588\"* any|strong=\"H3605\"* kind|strong=\"H7453\"* of|strong=\"H3605\"* lost thing|strong=\"H3588\"*, about|strong=\"H3605\"* which|strong=\"H3588\"* one|strong=\"H3605\"* says, ‘This|strong=\"H5414\"* is|strong=\"H3605\"* mine|strong=\"H8104\"*,’ the|strong=\"H3605\"* cause|strong=\"H5414\"* of|strong=\"H3605\"* both|strong=\"H3605\"* parties shall|strong=\"H7794\"* come before|strong=\"H7200\"* God|strong=\"H5414\"*. He|strong=\"H3588\"* whom|strong=\"H3588\"* God|strong=\"H5414\"* condemns shall|strong=\"H7794\"* pay|strong=\"H5414\"* double to|strong=\"H4191\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 10, + "text": "“If|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1167\"* delivers to|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"* a|strong=\"H3068\"* donkey, an|strong=\"H1961\"* ox, a|strong=\"H3068\"* sheep, or|strong=\"H3808\"* any|strong=\"H1961\"* animal|strong=\"H1961\"* to|strong=\"H3068\"* keep|strong=\"H1961\"*, and|strong=\"H3068\"* it|strong=\"H1961\"* dies or|strong=\"H3808\"* is|strong=\"H3068\"* injured, or|strong=\"H3808\"* driven away|strong=\"H7971\"*, no|strong=\"H3808\"* man|strong=\"H1167\"* seeing it|strong=\"H1961\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H5973\"* oath of|strong=\"H1167\"* Yahweh|strong=\"H3068\"* shall|strong=\"H1167\"* be between|strong=\"H5973\"* them both, he has|strong=\"H1167\"* not put his|strong=\"H5973\"* hand on|strong=\"H5973\"* his|strong=\"H5973\"* neighbor’s goods; and|strong=\"H5973\"* its|strong=\"H1167\"* owner|strong=\"H1167\"* shall|strong=\"H1167\"* accept it|strong=\"H7999\"*, and|strong=\"H5973\"* he shall|strong=\"H1167\"* not make|strong=\"H7999\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if it|strong=\"H3808\"* is|strong=\"H3808\"* stolen from|strong=\"H3808\"* him|strong=\"H7999\"*, the|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* stole shall|strong=\"H3808\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"* to|strong=\"H3808\"* its|strong=\"H3808\"* owner." + }, + { + "verseNum": 13, + "text": "If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H1167\"* torn|strong=\"H7665\"* in|strong=\"H4191\"* pieces|strong=\"H7665\"*, let him|strong=\"H5973\"* bring|strong=\"H4191\"* it|strong=\"H3588\"* for|strong=\"H3588\"* evidence. He|strong=\"H3588\"* shall|strong=\"H7453\"* not|strong=\"H3588\"* make|strong=\"H7999\"* good|strong=\"H7999\"* that|strong=\"H3588\"* which|strong=\"H3588\"* was|strong=\"H7592\"* torn|strong=\"H7665\"*." + }, + { + "verseNum": 14, + "text": "“If|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H7916\"* borrows anything|strong=\"H3808\"* of|strong=\"H1167\"* his|strong=\"H3808\"* neighbor’s, and|strong=\"H5973\"* it|strong=\"H1931\"* is|strong=\"H1931\"* injured, or|strong=\"H3808\"* dies, its|strong=\"H1167\"* owner|strong=\"H1167\"* not|strong=\"H3808\"* being with|strong=\"H5973\"* it|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H3808\"* surely|strong=\"H7999\"* make|strong=\"H7999\"* restitution|strong=\"H7999\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H3588\"* its|strong=\"H3588\"* owner is|strong=\"H3808\"* with|strong=\"H5973\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H7901\"* it|strong=\"H3588\"* good. If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3808\"* a|strong=\"H3068\"* leased thing|strong=\"H3588\"*, it|strong=\"H3588\"* came for|strong=\"H3588\"* its|strong=\"H3588\"* lease." + }, + { + "verseNum": 16, + "text": "“If a|strong=\"H3068\"* man entices a|strong=\"H3068\"* virgin|strong=\"H1330\"* who isn’t pledged|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* married, and|strong=\"H3701\"* lies|strong=\"H5414\"* with|strong=\"H3701\"* her|strong=\"H5414\"*, he|strong=\"H5414\"* shall|strong=\"H3701\"* surely|strong=\"H5414\"* pay|strong=\"H5414\"* a|strong=\"H3068\"* dowry|strong=\"H4119\"* for|strong=\"H3701\"* her|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 17, + "text": "If her father utterly refuses to|strong=\"H2421\"* give|strong=\"H2421\"* her to|strong=\"H2421\"* him|strong=\"H2421\"*, he|strong=\"H3808\"* shall|strong=\"H3808\"* pay money according to|strong=\"H2421\"* the|strong=\"H3808\"* dowry of|strong=\"H3808\"* virgins." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3605\"* shall|strong=\"H4191\"* not|strong=\"H4191\"* allow a|strong=\"H3068\"* sorceress to|strong=\"H4191\"* live." + }, + { + "verseNum": 19, + "text": "“Whoever has|strong=\"H3068\"* sex with|strong=\"H3068\"* an|strong=\"H3068\"* animal shall|strong=\"H3068\"* surely be|strong=\"H3068\"* put|strong=\"H3068\"* to|strong=\"H3068\"* death." + }, + { + "verseNum": 20, + "text": "“He|strong=\"H3588\"* who|strong=\"H1616\"* sacrifices to|strong=\"H1961\"* any|strong=\"H1961\"* god|strong=\"H3808\"*, except|strong=\"H3588\"* to|strong=\"H1961\"* Yahweh|strong=\"H3068\"* only|strong=\"H3588\"*, shall|strong=\"H4714\"* be|strong=\"H1961\"* utterly destroyed." + }, + { + "verseNum": 21, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* wrong an alien or|strong=\"H3808\"* oppress|strong=\"H6031\"* him|strong=\"H3605\"*, for|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H3605\"* aliens in|strong=\"H3808\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H3588\"* shall|strong=\"H8085\"* not|strong=\"H3588\"* take advantage of|strong=\"H8085\"* any|strong=\"H3588\"* widow or|strong=\"H8085\"* fatherless child." + }, + { + "verseNum": 23, + "text": "If|strong=\"H1961\"* you|strong=\"H1961\"* take|strong=\"H1961\"* advantage of|strong=\"H1121\"* them|strong=\"H2026\"* at|strong=\"H1961\"* all|strong=\"H2026\"*, and|strong=\"H1121\"* they|strong=\"H2719\"* cry at|strong=\"H1961\"* all|strong=\"H2026\"* to|strong=\"H1961\"* me|strong=\"H2026\"*, I|strong=\"H1121\"* will|strong=\"H1961\"* surely|strong=\"H1961\"* hear their|strong=\"H1961\"* cry;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3701\"* my|strong=\"H7760\"* wrath will|strong=\"H1961\"* grow hot, and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H1961\"* kill you|strong=\"H5921\"* with|strong=\"H5973\"* the|strong=\"H5921\"* sword; and|strong=\"H3701\"* your|strong=\"H5921\"* wives shall|strong=\"H5971\"* be|strong=\"H1961\"* widows|strong=\"H5971\"*, and|strong=\"H3701\"* your|strong=\"H5921\"* children fatherless." + }, + { + "verseNum": 25, + "text": "“If you|strong=\"H5704\"* lend money to|strong=\"H5704\"* any of|strong=\"H7725\"* my|strong=\"H7725\"* people with|strong=\"H7725\"* you|strong=\"H5704\"* who is|strong=\"H8121\"* poor, you|strong=\"H5704\"* shall|strong=\"H7453\"* not|strong=\"H7725\"* be|strong=\"H8121\"* to|strong=\"H5704\"* him|strong=\"H7725\"* as|strong=\"H5704\"* a|strong=\"H3068\"* creditor. You|strong=\"H5704\"* shall|strong=\"H7453\"* not|strong=\"H7725\"* charge him|strong=\"H7725\"* interest." + }, + { + "verseNum": 26, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H1961\"* your|strong=\"H8085\"* neighbor’s garment|strong=\"H8071\"* as|strong=\"H1961\"* collateral, you|strong=\"H3588\"* shall|strong=\"H1931\"* restore it|strong=\"H1931\"* to|strong=\"H1961\"* him|strong=\"H1931\"* before|strong=\"H3682\"* the|strong=\"H8085\"* sun goes down|strong=\"H7901\"*," + }, + { + "verseNum": 27, + "text": "for|strong=\"H5971\"* that|strong=\"H5971\"* is|strong=\"H5971\"* his|strong=\"H7043\"* only covering, it|strong=\"H7043\"* is|strong=\"H5971\"* his|strong=\"H7043\"* garment for|strong=\"H5971\"* his|strong=\"H7043\"* skin. What would|strong=\"H5971\"* he|strong=\"H3808\"* sleep in|strong=\"H5971\"*? It|strong=\"H7043\"* will|strong=\"H5971\"* happen, when he|strong=\"H3808\"* cries to|strong=\"H5971\"* me|strong=\"H3808\"*, that|strong=\"H5971\"* I|strong=\"H3808\"* will|strong=\"H5971\"* hear, for|strong=\"H5971\"* I|strong=\"H3808\"* am gracious." + }, + { + "verseNum": 28, + "text": "“You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* blaspheme God|strong=\"H5414\"*, nor|strong=\"H3808\"* curse a|strong=\"H3068\"* ruler of|strong=\"H1121\"* your|strong=\"H5414\"* people|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "“You|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H6213\"* delay to|strong=\"H1961\"* offer|strong=\"H6213\"* from|strong=\"H3117\"* your|strong=\"H5414\"* harvest and|strong=\"H3117\"* from|strong=\"H3117\"* the|strong=\"H5414\"* outflow of|strong=\"H3117\"* your|strong=\"H5414\"* presses." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3808\"* shall|strong=\"H7704\"* do likewise with|strong=\"H1320\"* your|strong=\"H3808\"* cattle and|strong=\"H7704\"* with|strong=\"H1320\"* your|strong=\"H3808\"* sheep. It|strong=\"H1961\"* shall|strong=\"H7704\"* be|strong=\"H1961\"* with|strong=\"H1320\"* its|strong=\"H1961\"* mother seven days, then|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* eighth day|strong=\"H6944\"* you|strong=\"H3808\"* shall|strong=\"H7704\"* give|strong=\"H7704\"* it|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H7993\"*." + }, + { + "verseNum": 31, + "text": "“You shall be holy men to me, therefore you shall not eat any meat that is torn by animals in the field. You shall cast it to the dogs." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5973\"* shall|strong=\"H7563\"* not|strong=\"H3808\"* spread|strong=\"H5375\"* a|strong=\"H3068\"* false|strong=\"H7723\"* report|strong=\"H8088\"*. Don’t join|strong=\"H5973\"* your|strong=\"H5375\"* hand|strong=\"H3027\"* with|strong=\"H5973\"* the|strong=\"H5375\"* wicked|strong=\"H7563\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* malicious|strong=\"H2555\"* witness|strong=\"H5707\"*." + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* follow|strong=\"H1961\"* a|strong=\"H3068\"* crowd to|strong=\"H1961\"* do evil|strong=\"H7451\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* testify|strong=\"H6030\"* in|strong=\"H5921\"* court to|strong=\"H1961\"* side with|strong=\"H5921\"* a|strong=\"H3068\"* multitude|strong=\"H7227\"* to|strong=\"H1961\"* pervert|strong=\"H5186\"* justice." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* favor a|strong=\"H3068\"* poor|strong=\"H1800\"* man|strong=\"H1800\"* in|strong=\"H3808\"* his|strong=\"H3808\"* cause|strong=\"H7379\"*." + }, + { + "verseNum": 4, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* meet|strong=\"H6293\"* your|strong=\"H7725\"* enemy’s ox|strong=\"H7794\"* or|strong=\"H7794\"* his|strong=\"H7725\"* donkey|strong=\"H2543\"* going|strong=\"H2543\"* astray|strong=\"H8582\"*, you|strong=\"H3588\"* shall|strong=\"H7794\"* surely|strong=\"H3588\"* bring|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* the|strong=\"H7200\"* donkey|strong=\"H2543\"* of|strong=\"H8478\"* him|strong=\"H7200\"* who|strong=\"H3588\"* hates|strong=\"H8130\"* you|strong=\"H3588\"* fallen down|strong=\"H7257\"* under|strong=\"H8478\"* his|strong=\"H7200\"* burden|strong=\"H4853\"*, don’t leave|strong=\"H5800\"* him|strong=\"H7200\"*. You|strong=\"H3588\"* shall|strong=\"H8478\"* surely|strong=\"H3588\"* help|strong=\"H5800\"* him|strong=\"H7200\"* with|strong=\"H5973\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* deny justice|strong=\"H4941\"* to|strong=\"H4941\"* your|strong=\"H5186\"* poor people|strong=\"H3808\"* in|strong=\"H3808\"* their|strong=\"H5186\"* lawsuits." + }, + { + "verseNum": 7, + "text": "“Keep|strong=\"H7368\"* far|strong=\"H7368\"* from|strong=\"H7368\"* a|strong=\"H3068\"* false|strong=\"H8267\"* charge|strong=\"H1697\"*, and|strong=\"H1697\"* don’t kill|strong=\"H2026\"* the|strong=\"H3588\"* innocent|strong=\"H5355\"* and|strong=\"H1697\"* righteous|strong=\"H6662\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6662\"* not|strong=\"H3808\"* justify|strong=\"H6663\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3588\"* shall|strong=\"H6662\"* take|strong=\"H3947\"* no|strong=\"H3808\"* bribe|strong=\"H7810\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* blinds|strong=\"H5786\"* those|strong=\"H3588\"* who|strong=\"H6662\"* have|strong=\"H1697\"* sight and|strong=\"H1697\"* perverts|strong=\"H5557\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* oppress|strong=\"H3905\"* an|strong=\"H1961\"* alien|strong=\"H1616\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H3588\"* heart|strong=\"H5315\"* of|strong=\"H5315\"* an|strong=\"H1961\"* alien|strong=\"H1616\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* aliens|strong=\"H1616\"* in|strong=\"H5315\"* the|strong=\"H3588\"* land of|strong=\"H5315\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "“For|strong=\"H8141\"* six|strong=\"H8337\"* years|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H8141\"* sow|strong=\"H2232\"* your|strong=\"H2232\"* land, and|strong=\"H8141\"* shall|strong=\"H8141\"* gather in|strong=\"H8141\"* its increase|strong=\"H8393\"*," + }, + { + "verseNum": 11, + "text": "but|strong=\"H3651\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* year|strong=\"H2416\"* you|strong=\"H6213\"* shall|strong=\"H5971\"* let|strong=\"H8058\"* it|strong=\"H6213\"* rest|strong=\"H3499\"* and|strong=\"H5971\"* lie|strong=\"H5203\"* fallow|strong=\"H5203\"*, that|strong=\"H5971\"* the|strong=\"H6213\"* poor of|strong=\"H7704\"* your|strong=\"H6213\"* people|strong=\"H5971\"* may|strong=\"H5971\"* eat; and|strong=\"H5971\"* what|strong=\"H6213\"* they|strong=\"H3651\"* leave|strong=\"H5203\"* the|strong=\"H6213\"* animal|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H6213\"* field|strong=\"H7704\"* shall|strong=\"H5971\"* eat. In|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* way|strong=\"H3651\"*, you|strong=\"H6213\"* shall|strong=\"H5971\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* your|strong=\"H6213\"* vineyard|strong=\"H3754\"* and|strong=\"H5971\"* with|strong=\"H6213\"* your|strong=\"H6213\"* olive|strong=\"H2132\"* grove|strong=\"H2132\"*." + }, + { + "verseNum": 12, + "text": "“Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* your|strong=\"H6213\"* work|strong=\"H4639\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* rest|strong=\"H5117\"*, that|strong=\"H3117\"* your|strong=\"H6213\"* ox|strong=\"H7794\"* and|strong=\"H1121\"* your|strong=\"H6213\"* donkey|strong=\"H2543\"* may|strong=\"H6213\"* have|strong=\"H1121\"* rest|strong=\"H5117\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H6213\"* servant, and|strong=\"H1121\"* the|strong=\"H6213\"* alien|strong=\"H1616\"* may|strong=\"H6213\"* be|strong=\"H1121\"* refreshed|strong=\"H5314\"*." + }, + { + "verseNum": 13, + "text": "“Be|strong=\"H3808\"* careful|strong=\"H8104\"* to|strong=\"H5921\"* do|strong=\"H8104\"* all|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3605\"* said|strong=\"H8085\"* to|strong=\"H5921\"* you|strong=\"H3605\"*; and|strong=\"H8085\"* don’t invoke|strong=\"H2142\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H8034\"* other|strong=\"H3605\"* gods or|strong=\"H3808\"* even|strong=\"H3808\"* let|strong=\"H3808\"* them|strong=\"H5921\"* be|strong=\"H3808\"* heard|strong=\"H8085\"* out|strong=\"H5921\"* of|strong=\"H8034\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H8141\"* shall|strong=\"H7272\"* observe|strong=\"H2287\"* a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H8141\"* me three|strong=\"H7969\"* times|strong=\"H7272\"* a|strong=\"H3068\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* the|strong=\"H6440\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, as|strong=\"H3117\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*, at|strong=\"H2320\"* the|strong=\"H6440\"* time|strong=\"H3117\"* appointed|strong=\"H4150\"* in|strong=\"H3117\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Abib (for|strong=\"H3588\"* in|strong=\"H3117\"* it|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*), and|strong=\"H3117\"* no|strong=\"H3808\"* one|strong=\"H3808\"* shall|strong=\"H3117\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 16, + "text": "And|strong=\"H7704\"* the|strong=\"H4480\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* harvest|strong=\"H7105\"*, the|strong=\"H4480\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* of|strong=\"H8141\"* your|strong=\"H4480\"* labors|strong=\"H4639\"*, which|strong=\"H7704\"* you|strong=\"H4480\"* sow|strong=\"H2232\"* in|strong=\"H8141\"* the|strong=\"H4480\"* field|strong=\"H7704\"*; and|strong=\"H7704\"* the|strong=\"H4480\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* ingathering, at|strong=\"H3318\"* the|strong=\"H4480\"* end|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H4480\"* year|strong=\"H8141\"*, when|strong=\"H3318\"* you|strong=\"H4480\"* gather in|strong=\"H8141\"* your|strong=\"H4480\"* labors|strong=\"H4639\"* out|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H4480\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 17, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* all|strong=\"H3605\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H2076\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H2077\"* my|strong=\"H5921\"* sacrifice|strong=\"H2077\"* with|strong=\"H5921\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"*. The|strong=\"H5921\"* fat|strong=\"H2459\"* of|strong=\"H2077\"* my|strong=\"H5921\"* feast|strong=\"H2282\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* remain|strong=\"H3885\"* all|strong=\"H5704\"* night|strong=\"H3885\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* bring the|strong=\"H3068\"* first|strong=\"H7225\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* your|strong=\"H3068\"* ground into the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* send|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, to|strong=\"H7971\"* keep|strong=\"H8104\"* you|strong=\"H6440\"* by|strong=\"H1870\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* bring you|strong=\"H6440\"* into|strong=\"H4397\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H4725\"* I|strong=\"H2009\"* have|strong=\"H8104\"* prepared|strong=\"H3559\"*." + }, + { + "verseNum": 21, + "text": "Pay|strong=\"H8104\"* attention|strong=\"H8085\"* to|strong=\"H8104\"* him|strong=\"H6440\"*, and|strong=\"H6963\"* listen|strong=\"H8085\"* to|strong=\"H8104\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*. Don’t provoke|strong=\"H4843\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pardon|strong=\"H5375\"* your|strong=\"H5375\"* disobedience, for|strong=\"H3588\"* my|strong=\"H8104\"* name|strong=\"H8034\"* is|strong=\"H8034\"* in|strong=\"H8085\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* indeed|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"*, then|strong=\"H1696\"* I|strong=\"H3588\"* will|strong=\"H8085\"* be|strong=\"H6963\"* an|strong=\"H6213\"* enemy|strong=\"H6887\"* to|strong=\"H1696\"* your|strong=\"H3605\"* enemies|strong=\"H6887\"*, and|strong=\"H6963\"* an|strong=\"H6213\"* adversary|strong=\"H6887\"* to|strong=\"H1696\"* your|strong=\"H3605\"* adversaries|strong=\"H6887\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* angel|strong=\"H4397\"* shall|strong=\"H6440\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3212\"* bring|strong=\"H3212\"* you|strong=\"H3588\"* in|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3212\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*; and|strong=\"H3212\"* I|strong=\"H3588\"* will|strong=\"H4397\"* cut|strong=\"H3582\"* them|strong=\"H6440\"* off|strong=\"H3582\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H6213\"* their|strong=\"H5647\"* gods, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H6213\"*, nor|strong=\"H3808\"* follow|strong=\"H6213\"* their|strong=\"H5647\"* practices|strong=\"H6213\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* utterly|strong=\"H2040\"* overthrow|strong=\"H2040\"* them|strong=\"H6213\"* and|strong=\"H6213\"* demolish their|strong=\"H5647\"* pillars|strong=\"H4676\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H1288\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* your|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* your|strong=\"H3068\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5493\"* sickness|strong=\"H4245\"* away|strong=\"H5493\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H1288\"*." + }, + { + "verseNum": 26, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* miscarry|strong=\"H7921\"* or|strong=\"H3808\"* be|strong=\"H1961\"* barren|strong=\"H6135\"* in|strong=\"H3117\"* your|strong=\"H1961\"* land. I|strong=\"H3117\"* will|strong=\"H1961\"* fulfill|strong=\"H4390\"* the|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* your|strong=\"H1961\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* will|strong=\"H5971\"* send|strong=\"H7971\"* my|strong=\"H5414\"* terror before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* will|strong=\"H5971\"* confuse|strong=\"H2000\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7971\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* come|strong=\"H5971\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H5971\"* make|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies turn|strong=\"H5414\"* their|strong=\"H3605\"* backs|strong=\"H6203\"* to|strong=\"H7971\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H6440\"* will|strong=\"H7971\"* send|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, which|strong=\"H3669\"* will|strong=\"H7971\"* drive|strong=\"H1644\"* out|strong=\"H7971\"* the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* not|strong=\"H3808\"* drive|strong=\"H1644\"* them|strong=\"H5921\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H8141\"* one|strong=\"H3808\"* year|strong=\"H8141\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* land|strong=\"H7704\"* become|strong=\"H1961\"* desolate|strong=\"H8077\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* of|strong=\"H8141\"* the|strong=\"H6440\"* field|strong=\"H7704\"* multiply|strong=\"H7227\"* against|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 30, + "text": "Little|strong=\"H4592\"* by|strong=\"H5704\"* little|strong=\"H4592\"* I|strong=\"H5704\"* will|strong=\"H5704\"* drive|strong=\"H1644\"* them|strong=\"H6440\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, until|strong=\"H5704\"* you|strong=\"H6440\"* have|strong=\"H5157\"* increased|strong=\"H6509\"* and|strong=\"H6440\"* inherit|strong=\"H5157\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3588\"* will|strong=\"H3027\"* set|strong=\"H5414\"* your|strong=\"H5414\"* border|strong=\"H1366\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3027\"* from|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H6440\"* River|strong=\"H5104\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3027\"* deliver|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* into|strong=\"H3220\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* drive|strong=\"H1644\"* them|strong=\"H5414\"* out|strong=\"H1644\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* make|strong=\"H3772\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H3772\"*, nor|strong=\"H3808\"* with|strong=\"H1285\"* their|strong=\"H3772\"* gods." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H3588\"* land, lest|strong=\"H6435\"* they|strong=\"H3588\"* make|strong=\"H5647\"* you|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H1961\"*, for|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* serve|strong=\"H5647\"* their|strong=\"H5647\"* gods, it|strong=\"H3588\"* will|strong=\"H1961\"* surely|strong=\"H3588\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* you|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5927\"*, and|strong=\"H4872\"* Aaron, Nadab|strong=\"H5070\"*, and|strong=\"H4872\"* Abihu, and|strong=\"H4872\"* seventy|strong=\"H7657\"* of|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H4872\"* worship|strong=\"H7812\"* from|strong=\"H5927\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*." + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* alone shall|strong=\"H3068\"* come|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* near|strong=\"H5066\"*. The|strong=\"H3068\"* people|strong=\"H5971\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* came|strong=\"H3068\"* and|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*; and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H6030\"* with|strong=\"H3068\"* one|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “All|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* will|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, then|strong=\"H4872\"* rose|strong=\"H7925\"* up|strong=\"H1129\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* and|strong=\"H4872\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* at|strong=\"H3478\"* the|strong=\"H3605\"* base of|strong=\"H3068\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, with|strong=\"H3068\"* twelve|strong=\"H8147\"* pillars|strong=\"H4676\"* for|strong=\"H8478\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* sent|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1121\"* sacrificed|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* of|strong=\"H1121\"* cattle to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* half|strong=\"H2677\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* and|strong=\"H4872\"* put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* basins, and|strong=\"H4872\"* half|strong=\"H2677\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* took|strong=\"H3947\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* hearing|strong=\"H8085\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* said|strong=\"H1696\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H1696\"*, and|strong=\"H3068\"* be|strong=\"H3068\"* obedient|strong=\"H8085\"*.”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* sprinkled|strong=\"H2236\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Look|strong=\"H2009\"*, this|strong=\"H1697\"* is|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* you|strong=\"H3605\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H3947\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"*, Aaron, Nadab|strong=\"H5070\"*, Abihu, and|strong=\"H4872\"* seventy|strong=\"H7657\"* of|strong=\"H2205\"* the|strong=\"H5927\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* God|strong=\"H8064\"* of|strong=\"H8478\"* Israel|strong=\"H3478\"*. Under|strong=\"H8478\"* his|strong=\"H7200\"* feet|strong=\"H7272\"* was|strong=\"H3478\"* like|strong=\"H7272\"* a|strong=\"H3068\"* paved|strong=\"H3840\"* work|strong=\"H4639\"* of|strong=\"H8478\"* sapphire|strong=\"H5601\"*+ 24:10 or, lapis lazuli* stone|strong=\"H5601\"*, like|strong=\"H7272\"* the|strong=\"H7200\"* skies for|strong=\"H8478\"* clearness|strong=\"H2892\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3027\"* didn’t lay|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* nobles of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* saw|strong=\"H2372\"* God|strong=\"H3808\"*, and|strong=\"H1121\"* ate and|strong=\"H1121\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"* on|strong=\"H3068\"* the|strong=\"H5414\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* stay here|strong=\"H8033\"*, and|strong=\"H4872\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* stone tablets|strong=\"H3871\"* with|strong=\"H3068\"* the|strong=\"H5414\"* law|strong=\"H8451\"* and|strong=\"H4872\"* the|strong=\"H5414\"* commands|strong=\"H4687\"* that|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H1961\"* written|strong=\"H3789\"*, that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H1961\"* teach|strong=\"H3384\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* with|strong=\"H5927\"* Joshua|strong=\"H3091\"*, his|strong=\"H6965\"* servant|strong=\"H8334\"*, and|strong=\"H6965\"* Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto God’s Mountain|strong=\"H2022\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5704\"* said|strong=\"H1697\"* to|strong=\"H5704\"* the|strong=\"H7725\"* elders|strong=\"H2205\"*, “Wait|strong=\"H3427\"* here|strong=\"H2009\"* for|strong=\"H5704\"* us|strong=\"H7725\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H5066\"* again|strong=\"H7725\"* to|strong=\"H5704\"* you|strong=\"H5704\"*. Behold|strong=\"H2009\"*, Aaron and|strong=\"H7725\"* Hur|strong=\"H2354\"* are|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H5704\"*. Whoever|strong=\"H4310\"* is|strong=\"H2088\"* involved in|strong=\"H3427\"* a|strong=\"H3068\"* dispute|strong=\"H1697\"* can|strong=\"H4310\"* go|strong=\"H7725\"* to|strong=\"H5704\"* them|strong=\"H7725\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5927\"* the|strong=\"H3680\"* mountain|strong=\"H2022\"*, and|strong=\"H4872\"* the|strong=\"H3680\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H3680\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* settled|strong=\"H7931\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H4872\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* it|strong=\"H7121\"* six|strong=\"H8337\"* days|strong=\"H3117\"*. The|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H3117\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* appearance|strong=\"H4758\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* was|strong=\"H3068\"* like|strong=\"H4758\"* devouring fire on|strong=\"H3068\"* the|strong=\"H3068\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"* in|strong=\"H3478\"* the|strong=\"H3068\"* eyes|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* entered|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H8432\"* cloud|strong=\"H6051\"*, and|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3117\"* the|strong=\"H8432\"* mountain|strong=\"H2022\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H8432\"* mountain|strong=\"H2022\"* forty days|strong=\"H3117\"* and|strong=\"H4872\"* forty nights|strong=\"H3915\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* they|strong=\"H3478\"* take|strong=\"H3947\"* an|strong=\"H3947\"* offering|strong=\"H8641\"* for|strong=\"H1121\"* me|strong=\"H3947\"*. From|strong=\"H3478\"* everyone|strong=\"H3605\"* whose|strong=\"H1121\"* heart|strong=\"H3820\"* makes|strong=\"H1696\"* him|strong=\"H3947\"* willing|strong=\"H5068\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* my|strong=\"H3605\"* offering|strong=\"H8641\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2063\"* is|strong=\"H3701\"* the|strong=\"H3947\"* offering|strong=\"H8641\"* which|strong=\"H2091\"* you|strong=\"H3947\"* shall|strong=\"H3701\"* take|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H3947\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*," + }, + { + "verseNum": 4, + "text": "blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair," + }, + { + "verseNum": 5, + "text": "rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, sea cow hides|strong=\"H5785\"*,+ 25:5 or, fine leather* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 6, + "text": "oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, spices|strong=\"H1314\"* for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 7, + "text": "onyx|strong=\"H7718\"* stones, and|strong=\"H4394\"* stones to be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H6213\"* make|strong=\"H6213\"* me|strong=\"H6213\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"*, that|strong=\"H6213\"* I|strong=\"H8432\"* may|strong=\"H6213\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "According to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H3651\"* show|strong=\"H7200\"* you|strong=\"H3605\"*, the|strong=\"H3605\"* pattern|strong=\"H8403\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H7200\"* the|strong=\"H3605\"* pattern|strong=\"H8403\"* of|strong=\"H3627\"* all|strong=\"H3605\"* of|strong=\"H3627\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, even|strong=\"H3651\"* so|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "“They|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H6086\"* two|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits,+ 25:10 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. You|strong=\"H5921\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H6471\"*. Two|strong=\"H8147\"* rings|strong=\"H2885\"* shall|strong=\"H8147\"* be|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H8147\"* side|strong=\"H6763\"* of|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5921\"* shall put|strong=\"H5375\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark to|strong=\"H5921\"* carry|strong=\"H5375\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* poles shall|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H5493\"* the|strong=\"H4480\"* rings|strong=\"H2885\"* of|strong=\"H4480\"* the|strong=\"H4480\"* ark. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* taken|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5414\"* covenant which I|strong=\"H5414\"* shall give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H5414\"* ark." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* of|strong=\"H2677\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. Two|strong=\"H6213\"* and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits shall|strong=\"H2889\"* be its|strong=\"H6213\"* length, and|strong=\"H2091\"* a|strong=\"H3068\"* cubit and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* of|strong=\"H8147\"* hammered|strong=\"H4749\"* gold|strong=\"H2091\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* at|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 19, + "text": "Make|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* end|strong=\"H7098\"*, and|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* end|strong=\"H7098\"*. You|strong=\"H5921\"* shall|strong=\"H2088\"* make|strong=\"H6213\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H4480\"* one|strong=\"H2088\"* piece with|strong=\"H6213\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* cherubim|strong=\"H3742\"* shall|strong=\"H6440\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* upward|strong=\"H4605\"*, covering|strong=\"H5526\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* with|strong=\"H5921\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*, with|strong=\"H5921\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* toward|strong=\"H5921\"* one|strong=\"H1961\"* another|strong=\"H3671\"*. The|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherubim|strong=\"H3742\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* top|strong=\"H4605\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4605\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ark you|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* covenant that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H3478\"* meet|strong=\"H3259\"* with|strong=\"H1696\"* you|strong=\"H6680\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H3478\"* tell|strong=\"H1696\"* you|strong=\"H6680\"* from|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*, from|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H3605\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* which|strong=\"H8033\"* are|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* the|strong=\"H3605\"* covenant, all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* table|strong=\"H7979\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H6086\"* two|strong=\"H6213\"* cubits, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* one|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* overlay|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* rim|strong=\"H4526\"* of|strong=\"H6213\"* a|strong=\"H3068\"* hand|strong=\"H2948\"* width around|strong=\"H5439\"* it|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* molding|strong=\"H2213\"* on|strong=\"H2091\"* its|strong=\"H6213\"* rim|strong=\"H4526\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5414\"* shall|strong=\"H7272\"* make|strong=\"H6213\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6285\"* that|strong=\"H5414\"* are|strong=\"H7272\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H7272\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5375\"* rings|strong=\"H2885\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* close|strong=\"H5980\"* to|strong=\"H1961\"* the|strong=\"H5375\"* rim|strong=\"H4526\"*, for|strong=\"H1004\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5375\"* poles to|strong=\"H1961\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H5375\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*, that|strong=\"H6213\"* the|strong=\"H5375\"* table|strong=\"H7979\"* may|strong=\"H6213\"* be|strong=\"H6086\"* carried|strong=\"H5375\"* with|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* its|strong=\"H6213\"* dishes|strong=\"H7086\"*, its|strong=\"H6213\"* spoons|strong=\"H3709\"*, its|strong=\"H6213\"* ladles|strong=\"H3709\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* bowls|strong=\"H4518\"* with|strong=\"H6213\"* which|strong=\"H2004\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* offerings|strong=\"H5258\"*. You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H3709\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H5414\"* bread|strong=\"H3899\"* of|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* on|strong=\"H5921\"* the|strong=\"H6440\"* table|strong=\"H7979\"* before|strong=\"H6440\"* me|strong=\"H5414\"* always|strong=\"H8548\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* lamp stand of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. The|strong=\"H6213\"* lamp stand shall|strong=\"H2889\"* be|strong=\"H1961\"* made|strong=\"H6213\"* of|strong=\"H4480\"* hammered|strong=\"H4749\"* work|strong=\"H6213\"*. Its|strong=\"H6213\"* base|strong=\"H3409\"*, its|strong=\"H6213\"* shaft|strong=\"H3409\"*, its|strong=\"H6213\"* cups|strong=\"H1375\"*, its|strong=\"H6213\"* buds|strong=\"H6525\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"* shall|strong=\"H2889\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece|strong=\"H4749\"* with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "There shall|strong=\"H7070\"* be|strong=\"H3318\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* sides|strong=\"H6654\"*: three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* one|strong=\"H8145\"* side|strong=\"H6654\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* other|strong=\"H8145\"* side|strong=\"H6654\"*;" + }, + { + "verseNum": 33, + "text": "three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* one|strong=\"H4480\"* branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*; and|strong=\"H3318\"* three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* the|strong=\"H4480\"* other branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*, so|strong=\"H3651\"* for|strong=\"H3318\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand;" + }, + { + "verseNum": 34, + "text": "and|strong=\"H6525\"* in|strong=\"H6525\"* the lamp stand four cups|strong=\"H1375\"* made like|strong=\"H8246\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"*, its buds|strong=\"H6525\"* and|strong=\"H6525\"* its flowers|strong=\"H6525\"*;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, for|strong=\"H8478\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand|strong=\"H8478\"*." + }, + { + "verseNum": 36, + "text": "Their|strong=\"H3605\"* buds and|strong=\"H2091\"* their|strong=\"H3605\"* branches|strong=\"H7070\"* shall|strong=\"H2889\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H3605\"* piece|strong=\"H4749\"* with|strong=\"H3605\"* it|strong=\"H1961\"*, all|strong=\"H3605\"* of|strong=\"H4480\"* it|strong=\"H1961\"* one|strong=\"H3605\"* beaten|strong=\"H4749\"* work|strong=\"H4749\"* of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* make|strong=\"H6213\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"* seven|strong=\"H7651\"*, and|strong=\"H6440\"* they|strong=\"H5921\"* shall|strong=\"H6440\"* light|strong=\"H5216\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"* to|strong=\"H5927\"* give|strong=\"H6213\"* light|strong=\"H5216\"* to|strong=\"H5927\"* the|strong=\"H6440\"* space|strong=\"H5676\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H6440\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 38, + "text": "Its snuffers|strong=\"H4457\"* and|strong=\"H2091\"* its snuff dishes shall|strong=\"H2889\"* be of|strong=\"H2091\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 39, + "text": "It|strong=\"H6213\"* shall|strong=\"H2889\"* be|strong=\"H3605\"* made|strong=\"H6213\"* of|strong=\"H3627\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 25:39 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, with|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* accessories." + }, + { + "verseNum": 40, + "text": "See|strong=\"H7200\"* that|strong=\"H7200\"* you|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* after|strong=\"H7200\"* their|strong=\"H7200\"* pattern|strong=\"H8403\"*, which|strong=\"H2022\"* has|strong=\"H6213\"* been shown|strong=\"H7200\"* to|strong=\"H6213\"* you|strong=\"H6213\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“Moreover you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* with|strong=\"H6213\"* ten|strong=\"H6235\"* curtains|strong=\"H3407\"* of|strong=\"H4639\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, and|strong=\"H8504\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* length of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* shall be|strong=\"H3605\"* twenty-eight|strong=\"H6242\"* cubits,+ 26:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* four cubits: all|strong=\"H3605\"* the|strong=\"H3605\"* curtains|strong=\"H3407\"* shall have|strong=\"H3605\"* one|strong=\"H3605\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 3, + "text": "Five|strong=\"H2568\"* curtains|strong=\"H3407\"* shall be|strong=\"H1961\"* coupled|strong=\"H2266\"* together|strong=\"H2266\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another, and|strong=\"H2568\"* the|strong=\"H1961\"* other five|strong=\"H2568\"* curtains|strong=\"H3407\"* shall be|strong=\"H1961\"* coupled|strong=\"H2266\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H8193\"* make|strong=\"H6213\"* loops|strong=\"H3924\"* of|strong=\"H5921\"* blue|strong=\"H8504\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* from|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*, and|strong=\"H8504\"* you|strong=\"H5921\"* shall|strong=\"H8193\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H3651\"* is|strong=\"H3651\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"*, and|strong=\"H2572\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* edge|strong=\"H7097\"* of|strong=\"H7097\"* the|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* is|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*. The|strong=\"H6213\"* loops|strong=\"H3924\"* shall|strong=\"H6213\"* be opposite|strong=\"H6901\"* one|strong=\"H6213\"* another|strong=\"H8145\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H4908\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* curtains|strong=\"H3407\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another with|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"*. The|strong=\"H6213\"* tabernacle|strong=\"H4908\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* goats|strong=\"H5795\"*’ hair for|strong=\"H5921\"* a|strong=\"H3068\"* covering over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*. You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H4060\"* length of|strong=\"H7341\"* each curtain|strong=\"H3407\"* shall be|strong=\"H7970\"* thirty|strong=\"H7970\"* cubits, and|strong=\"H7970\"* the|strong=\"H4060\"* width|strong=\"H7341\"* of|strong=\"H7341\"* each curtain|strong=\"H3407\"* four cubits: the|strong=\"H4060\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"* shall have one|strong=\"H7341\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* couple|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* by|strong=\"H6440\"* themselves|strong=\"H6440\"*, and|strong=\"H2568\"* six|strong=\"H8337\"* curtains|strong=\"H3407\"* by|strong=\"H6440\"* themselves|strong=\"H6440\"*, and|strong=\"H2568\"* shall|strong=\"H6440\"* double|strong=\"H3717\"* over|strong=\"H6440\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* curtain|strong=\"H3407\"* in|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tent|strong=\"H3407\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5921\"* shall|strong=\"H8193\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* is|strong=\"H6213\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H2279\"*, and|strong=\"H2572\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* which|strong=\"H3407\"* is|strong=\"H6213\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H2279\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H2572\"* put|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"* into|strong=\"H6213\"* the|strong=\"H6213\"* loops|strong=\"H3924\"*, and|strong=\"H2572\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* tent together|strong=\"H2266\"*, that|strong=\"H6213\"* it|strong=\"H6213\"* may|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* overhanging part|strong=\"H2677\"* that|strong=\"H3407\"* remains of|strong=\"H5921\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tent|strong=\"H3407\"*—the|strong=\"H5921\"* half|strong=\"H2677\"* curtain|strong=\"H3407\"* that|strong=\"H3407\"* remains—shall hang|strong=\"H5628\"* over|strong=\"H5921\"* the|strong=\"H5921\"* back of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* cubit on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H6654\"* and|strong=\"H2088\"* the|strong=\"H5921\"* cubit on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H6654\"*, of|strong=\"H5921\"* that|strong=\"H2088\"* which|strong=\"H3407\"* remains|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tent|strong=\"H3407\"*, shall|strong=\"H2088\"* hang|strong=\"H5628\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6654\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* on|strong=\"H5921\"* this|strong=\"H2088\"* side|strong=\"H6654\"* and|strong=\"H2088\"* on|strong=\"H5921\"* that|strong=\"H2088\"* side|strong=\"H6654\"*, to|strong=\"H1961\"* cover|strong=\"H3680\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tent of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, and|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, standing|strong=\"H5975\"* upright|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "Ten|strong=\"H6235\"* cubits shall|strong=\"H7175\"* be the|strong=\"H2677\"* length of|strong=\"H2677\"* a|strong=\"H3068\"* board|strong=\"H7175\"*, and|strong=\"H7341\"* one|strong=\"H7341\"* and|strong=\"H7341\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits the|strong=\"H2677\"* width|strong=\"H7341\"* of|strong=\"H2677\"* each|strong=\"H7175\"* board|strong=\"H7175\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H3605\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"* in|strong=\"H6213\"* each|strong=\"H3605\"* board|strong=\"H7175\"*, joined to|strong=\"H6213\"* one|strong=\"H3605\"* another: thus|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3027\"* make|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boards|strong=\"H7175\"* of|strong=\"H3027\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H5045\"* make|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H6213\"* shall|strong=\"H3027\"* make|strong=\"H6213\"* forty sockets of|strong=\"H3027\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* the|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H6213\"* board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, and|strong=\"H6242\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H4908\"* the|strong=\"H8145\"* second|strong=\"H8145\"* side|strong=\"H6285\"* of|strong=\"H4908\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, on|strong=\"H6285\"* the|strong=\"H8145\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, twenty|strong=\"H6242\"* boards|strong=\"H7175\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3701\"* their|strong=\"H8478\"* forty sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H8147\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* side|strong=\"H3220\"* of|strong=\"H3220\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* six|strong=\"H8337\"* boards|strong=\"H7175\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* two|strong=\"H8147\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* corners|strong=\"H4742\"* of|strong=\"H8147\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* in|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* double|strong=\"H8147\"* beneath|strong=\"H4295\"*, and|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H3651\"* way|strong=\"H3651\"* they|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* whole to|strong=\"H1961\"* its|strong=\"H5921\"* top|strong=\"H7218\"* to|strong=\"H1961\"* one|strong=\"H1961\"* ring|strong=\"H2885\"*: thus|strong=\"H3651\"* shall|strong=\"H8147\"* it|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* them|strong=\"H5921\"* both|strong=\"H8147\"*; they|strong=\"H3651\"* shall|strong=\"H8147\"* be|strong=\"H1961\"* for|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* corners|strong=\"H4740\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* shall|strong=\"H8478\"* be|strong=\"H1961\"* eight|strong=\"H8083\"* boards|strong=\"H7175\"*, and|strong=\"H3701\"* their|strong=\"H1961\"* sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*, sixteen|strong=\"H8337\"* sockets; two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H1961\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* bars|strong=\"H1280\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*: five|strong=\"H2568\"* for|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* of|strong=\"H6086\"* the|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6763\"* of|strong=\"H6086\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, for|strong=\"H4908\"* the|strong=\"H8145\"* far|strong=\"H3411\"* side|strong=\"H6763\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H8432\"* middle|strong=\"H8432\"* bar|strong=\"H1280\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H8432\"* boards|strong=\"H7175\"* shall|strong=\"H7175\"* pass|strong=\"H1272\"* through|strong=\"H4480\"* from|strong=\"H4480\"* end|strong=\"H7097\"* to|strong=\"H1272\"* end|strong=\"H7097\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* make|strong=\"H6213\"* their|strong=\"H6213\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* places|strong=\"H1004\"* for|strong=\"H6213\"* the|strong=\"H6213\"* bars|strong=\"H1280\"*. You|strong=\"H6213\"* shall|strong=\"H1004\"* overlay|strong=\"H6823\"* the|strong=\"H6213\"* bars|strong=\"H1280\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H7200\"* shall|strong=\"H2022\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7200\"* tabernacle|strong=\"H4908\"* according|strong=\"H4941\"* to|strong=\"H6965\"* the|strong=\"H7200\"* way|strong=\"H4941\"* that|strong=\"H7200\"* it|strong=\"H7200\"* was|strong=\"H4908\"* shown|strong=\"H7200\"* to|strong=\"H6965\"* you|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* veil|strong=\"H6532\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. It|strong=\"H6213\"* shall|strong=\"H6213\"* be the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* shall|strong=\"H3701\"* hang|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* four pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"* overlaid|strong=\"H6823\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*; their|strong=\"H5414\"* hooks|strong=\"H2053\"* shall|strong=\"H3701\"* be|strong=\"H5414\"* of|strong=\"H5982\"* gold|strong=\"H2091\"*, on|strong=\"H5921\"* four sockets of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 33, + "text": "You|strong=\"H5414\"* shall|strong=\"H1004\"* hang|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* veil|strong=\"H6532\"* under|strong=\"H8478\"* the|strong=\"H5414\"* clasps|strong=\"H7165\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* bring|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* the|strong=\"H5414\"* covenant in|strong=\"H1004\"* there|strong=\"H8033\"* within|strong=\"H1004\"* the|strong=\"H5414\"* veil|strong=\"H6532\"*. The|strong=\"H5414\"* veil|strong=\"H6532\"* shall|strong=\"H1004\"* separate the|strong=\"H5414\"* holy|strong=\"H6944\"* place|strong=\"H8478\"* from|strong=\"H8478\"* the|strong=\"H5414\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* for|strong=\"H8478\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H5414\"* shall put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H5921\"* the|strong=\"H5921\"* covenant in|strong=\"H5921\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H5414\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H5414\"* shall|strong=\"H6828\"* set|strong=\"H7760\"* the|strong=\"H5921\"* table|strong=\"H7979\"* outside|strong=\"H2351\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*, and|strong=\"H4908\"* the|strong=\"H5921\"* lamp stand opposite|strong=\"H5227\"* the|strong=\"H5921\"* table|strong=\"H7979\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H8486\"*. You|strong=\"H5414\"* shall|strong=\"H6828\"* put|strong=\"H5414\"* the|strong=\"H5921\"* table|strong=\"H7979\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H6763\"*." + }, + { + "verseNum": 36, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* screen|strong=\"H4539\"* for|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H4639\"* the|strong=\"H6213\"* Tent, of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H8504\"* purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* embroiderer|strong=\"H7551\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* screen|strong=\"H4539\"* five|strong=\"H2568\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"*, and|strong=\"H2091\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*. Their|strong=\"H6213\"* hooks|strong=\"H2053\"* shall|strong=\"H6213\"* be of|strong=\"H5982\"* gold|strong=\"H2091\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* cast|strong=\"H3332\"* five|strong=\"H2568\"* sockets of|strong=\"H5982\"* bronze|strong=\"H5178\"* for|strong=\"H6213\"* them|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 27:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long, and|strong=\"H6086\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*. The|strong=\"H6213\"* altar|strong=\"H4196\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* square|strong=\"H7251\"*. Its|strong=\"H6213\"* height|strong=\"H6967\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"*.+ 27:1 The altar was to be about 2.3×2.3×1.4 meters or about 7½×7½×4½ feet.*" + }, + { + "verseNum": 2, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* on|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H6438\"*. Its|strong=\"H5921\"* horns|strong=\"H7161\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H6213\"* overlay|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* its|strong=\"H3605\"* pots|strong=\"H5518\"* to|strong=\"H6213\"* take|strong=\"H6213\"* away|strong=\"H3605\"* its|strong=\"H3605\"* ashes|strong=\"H1878\"*; and|strong=\"H6213\"* its|strong=\"H3605\"* shovels|strong=\"H3257\"*, its|strong=\"H3605\"* basins|strong=\"H4219\"*, its|strong=\"H3605\"* meat hooks|strong=\"H4207\"*, and|strong=\"H6213\"* its|strong=\"H3605\"* fire pans|strong=\"H5518\"*. You|strong=\"H3605\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* grating|strong=\"H4345\"* for|strong=\"H5921\"* it|strong=\"H5921\"* of|strong=\"H5921\"* network|strong=\"H7568\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* net|strong=\"H7568\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* four bronze|strong=\"H5178\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H7098\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* shall|strong=\"H8478\"* put|strong=\"H5414\"* it|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H5414\"* ledge|strong=\"H3749\"* around the|strong=\"H5414\"* altar|strong=\"H4196\"* beneath|strong=\"H8478\"*, that|strong=\"H5414\"* the|strong=\"H5414\"* net|strong=\"H7568\"* may|strong=\"H1961\"* reach|strong=\"H1961\"* halfway|strong=\"H2677\"* up|strong=\"H5414\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* poles for|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, poles of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 7, + "text": "Its|strong=\"H5921\"* poles shall|strong=\"H8147\"* be|strong=\"H1961\"* put|strong=\"H8147\"* into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"*, and|strong=\"H4196\"* the|strong=\"H5921\"* poles shall|strong=\"H8147\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6763\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* when|strong=\"H1961\"* carrying|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H2022\"* make|strong=\"H6213\"* it|strong=\"H6213\"* hollow|strong=\"H5014\"* with|strong=\"H6213\"* planks|strong=\"H3871\"*. They|strong=\"H3651\"* shall|strong=\"H2022\"* make|strong=\"H6213\"* it|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H6213\"* has|strong=\"H6213\"* been shown|strong=\"H7200\"* you|strong=\"H6213\"* on|strong=\"H7200\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H6213\"* shall|strong=\"H5045\"* make|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H5045\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*: for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* there shall|strong=\"H5045\"* be hangings|strong=\"H7050\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H5045\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* cubits long for|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 10, + "text": "Its pillars|strong=\"H5982\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* twenty|strong=\"H6242\"*, and|strong=\"H6242\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*. The hooks|strong=\"H2053\"* of|strong=\"H5982\"* the pillars|strong=\"H5982\"* and|strong=\"H6242\"* their fillets|strong=\"H2838\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 11, + "text": "Likewise|strong=\"H3651\"* for|strong=\"H3701\"* the|strong=\"H3651\"* length of|strong=\"H5982\"* the|strong=\"H3651\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, there shall|strong=\"H6828\"* be|strong=\"H3701\"* hangings|strong=\"H7050\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long, and|strong=\"H3967\"* its pillars|strong=\"H5982\"* twenty|strong=\"H6242\"*, and|strong=\"H3967\"* their|strong=\"H3651\"* sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the|strong=\"H3651\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3651\"* pillars|strong=\"H5982\"*, and|strong=\"H3967\"* their|strong=\"H3651\"* fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3220\"* the|strong=\"H3220\"* width|strong=\"H7341\"* of|strong=\"H5982\"* the|strong=\"H3220\"* court|strong=\"H2691\"* on|strong=\"H6285\"* the|strong=\"H3220\"* west|strong=\"H3220\"* side|strong=\"H6285\"* shall|strong=\"H6285\"* be|strong=\"H3220\"* hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits; their pillars|strong=\"H5982\"* ten|strong=\"H6235\"*, and|strong=\"H2572\"* their sockets ten|strong=\"H6235\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6924\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H6924\"* court|strong=\"H2691\"* on|strong=\"H6285\"* the|strong=\"H6924\"* east|strong=\"H4217\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"* shall|strong=\"H6285\"* be fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 14, + "text": "The|strong=\"H7969\"* hangings|strong=\"H7050\"* for|strong=\"H7969\"* the|strong=\"H7969\"* one|strong=\"H7050\"* side|strong=\"H3802\"* of|strong=\"H5982\"* the|strong=\"H7969\"* gate shall be fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H8145\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H3802\"* shall be hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H4639\"* the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"* shall|strong=\"H4639\"* be a|strong=\"H3068\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* twenty|strong=\"H6242\"* cubits, of|strong=\"H8179\"* blue|strong=\"H8504\"*, and|strong=\"H6242\"* purple|strong=\"H8504\"*, and|strong=\"H6242\"* scarlet|strong=\"H8144\"*, and|strong=\"H6242\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H8179\"* work|strong=\"H4639\"* of|strong=\"H8179\"* the|strong=\"H8179\"* embroiderer|strong=\"H7551\"*; their pillars|strong=\"H5982\"* four, and|strong=\"H6242\"* their sockets four." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H3605\"* court|strong=\"H2691\"* around|strong=\"H5439\"* shall|strong=\"H3701\"* be|strong=\"H3701\"* filleted|strong=\"H2836\"* with|strong=\"H3605\"* silver|strong=\"H3701\"*; their|strong=\"H3605\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* their|strong=\"H3605\"* sockets of|strong=\"H5982\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3967\"* length|strong=\"H6967\"* of|strong=\"H7341\"* the|strong=\"H3967\"* court|strong=\"H2691\"* shall|strong=\"H3967\"* be one|strong=\"H8336\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* throughout|strong=\"H7341\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* height|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, of|strong=\"H7341\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, and|strong=\"H3967\"* their sockets of|strong=\"H7341\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* in|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* its|strong=\"H3605\"* pins|strong=\"H3489\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, shall|strong=\"H3627\"* be|strong=\"H5656\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 20, + "text": "“You|strong=\"H6680\"* shall|strong=\"H1121\"* command|strong=\"H6680\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* bring|strong=\"H5927\"* to|strong=\"H3478\"* you|strong=\"H6680\"* pure|strong=\"H2134\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"* beaten|strong=\"H3795\"* for|strong=\"H1121\"* the|strong=\"H3947\"* light|strong=\"H3974\"*, to|strong=\"H3478\"* cause a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3478\"* burn|strong=\"H5927\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, outside|strong=\"H2351\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* which|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* the|strong=\"H6440\"* covenant, Aaron|strong=\"H6186\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* it|strong=\"H5921\"* in|strong=\"H5921\"* order|strong=\"H6186\"* from|strong=\"H6440\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* morning|strong=\"H1242\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*: it|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* their|strong=\"H3068\"* generations|strong=\"H1755\"* on|strong=\"H5921\"* the|strong=\"H6440\"* behalf|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Bring|strong=\"H7126\"* Aaron your|strong=\"H7126\"* brother, and|strong=\"H1121\"* his|strong=\"H7126\"* sons|strong=\"H1121\"* with|strong=\"H3478\"* him|strong=\"H7126\"*, near|strong=\"H7126\"* to|strong=\"H3478\"* you|strong=\"H8432\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H3478\"* may|strong=\"H3478\"* minister|strong=\"H3547\"* to|strong=\"H3478\"* me|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H8432\"* priest|strong=\"H3547\"*’s office: Aaron, with|strong=\"H3478\"* Nadab|strong=\"H5070\"*, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar, Aaron’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* holy|strong=\"H6944\"* garments for|strong=\"H6213\"* Aaron your|strong=\"H6213\"* brother, for|strong=\"H6213\"* glory|strong=\"H3519\"* and|strong=\"H6213\"* for|strong=\"H6213\"* beauty|strong=\"H8597\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3820\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2450\"* wise-hearted, whom I|strong=\"H3605\"* have|strong=\"H3605\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* wisdom|strong=\"H2451\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* make|strong=\"H6213\"* Aaron’s garments to|strong=\"H1696\"* sanctify|strong=\"H6942\"* him|strong=\"H6213\"*, that|strong=\"H3605\"* he|strong=\"H6213\"* may|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H1696\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3605\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 4, + "text": "These|strong=\"H6213\"* are|strong=\"H1121\"* the|strong=\"H6213\"* garments|strong=\"H3801\"* which they|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"*: a|strong=\"H3068\"* breastplate|strong=\"H2833\"*, an|strong=\"H6213\"* ephod, a|strong=\"H3068\"* robe|strong=\"H4598\"*, a|strong=\"H3068\"* fitted tunic|strong=\"H3801\"*, a|strong=\"H3068\"* turban|strong=\"H4701\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* sash. They|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* holy|strong=\"H6944\"* garments|strong=\"H3801\"* for|strong=\"H6213\"* Aaron your|strong=\"H6213\"* brother and|strong=\"H1121\"* his|strong=\"H6213\"* sons|strong=\"H1121\"*, that|strong=\"H1121\"* he|strong=\"H6213\"* may|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* shall|strong=\"H8438\"* use|strong=\"H3947\"* the|strong=\"H3947\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* blue|strong=\"H8504\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* purple|strong=\"H8504\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* the|strong=\"H3947\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 6, + "text": "“They|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* ephod of|strong=\"H4639\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H1961\"* shall|strong=\"H8147\"* have|strong=\"H1961\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps joined|strong=\"H2266\"* to|strong=\"H1961\"* the|strong=\"H1961\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* it|strong=\"H1961\"*, that|strong=\"H1961\"* it|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* joined|strong=\"H2266\"* together|strong=\"H2266\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"*, which|strong=\"H2091\"* is|strong=\"H1961\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, shall|strong=\"H4639\"* be|strong=\"H1961\"* like|strong=\"H1961\"* its|strong=\"H5921\"* work|strong=\"H4639\"* and|strong=\"H2091\"* of|strong=\"H4480\"* the|strong=\"H5921\"* same|strong=\"H4480\"* piece; of|strong=\"H4480\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* two|strong=\"H8147\"* onyx|strong=\"H7718\"* stones, and|strong=\"H1121\"* engrave|strong=\"H6605\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Six|strong=\"H8337\"* of|strong=\"H8034\"* their|strong=\"H5921\"* names|strong=\"H8034\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H8034\"* stone, and|strong=\"H8034\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* six|strong=\"H8337\"* that|strong=\"H5921\"* remain|strong=\"H3498\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* stone, in|strong=\"H5921\"* the|strong=\"H5921\"* order|strong=\"H8435\"* of|strong=\"H8034\"* their|strong=\"H5921\"* birth|strong=\"H8435\"*." + }, + { + "verseNum": 11, + "text": "With|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H1121\"* an|strong=\"H6213\"* engraver|strong=\"H2796\"* in|strong=\"H5921\"* stone, like|strong=\"H3478\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, you|strong=\"H5921\"* shall|strong=\"H1121\"* engrave|strong=\"H6605\"* the|strong=\"H5921\"* two|strong=\"H8147\"* stones, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1121\"* enclosed in|strong=\"H5921\"* settings|strong=\"H4142\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* put|strong=\"H7760\"* the|strong=\"H6440\"* two|strong=\"H8147\"* stones on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H1121\"* the|strong=\"H6440\"* ephod, to|strong=\"H3478\"* be|strong=\"H3068\"* stones of|strong=\"H1121\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* their|strong=\"H3068\"* names|strong=\"H8034\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H5375\"* two|strong=\"H8147\"* shoulders|strong=\"H3802\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* settings|strong=\"H4865\"* of|strong=\"H6213\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H2091\"* two|strong=\"H8147\"* chains|strong=\"H8333\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*; you|strong=\"H5414\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* them|strong=\"H5414\"* like|strong=\"H6213\"* cords|strong=\"H5688\"* of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"*. You|strong=\"H5414\"* shall|strong=\"H2889\"* put|strong=\"H5414\"* the|strong=\"H5921\"* braided|strong=\"H4639\"* chains|strong=\"H8333\"* on|strong=\"H5921\"* the|strong=\"H5921\"* settings|strong=\"H4865\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* breastplate|strong=\"H2833\"* of|strong=\"H4639\"* judgment|strong=\"H4941\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*; like|strong=\"H2803\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*; of|strong=\"H4639\"* gold|strong=\"H2091\"*, of|strong=\"H4639\"* blue|strong=\"H8504\"*, and|strong=\"H4941\"* purple|strong=\"H8504\"*, and|strong=\"H4941\"* scarlet|strong=\"H8144\"*, and|strong=\"H4941\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, you|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H1961\"* shall be|strong=\"H1961\"* square|strong=\"H7251\"* and|strong=\"H7341\"* folded|strong=\"H3717\"* double|strong=\"H3717\"*; a|strong=\"H3068\"* span|strong=\"H2239\"*+ 28:16 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* shall be|strong=\"H1961\"* its|strong=\"H1961\"* length, and|strong=\"H7341\"* a|strong=\"H3068\"* span|strong=\"H2239\"* its|strong=\"H1961\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 17, + "text": "You shall set|strong=\"H4390\"* in it settings|strong=\"H4390\"* of|strong=\"H4390\"* stones, four rows|strong=\"H2905\"* of|strong=\"H4390\"* stones: a|strong=\"H3068\"* row|strong=\"H2905\"* of|strong=\"H4390\"* ruby, topaz|strong=\"H6357\"*, and|strong=\"H6357\"* beryl shall be the|strong=\"H4390\"* first row|strong=\"H2905\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H8145\"* the|strong=\"H8145\"* second|strong=\"H8145\"* row|strong=\"H2905\"* a|strong=\"H3068\"* turquoise|strong=\"H5306\"*, a|strong=\"H3068\"* sapphire|strong=\"H5601\"*,+ 28:18 or, lapis lazuli * and|strong=\"H8145\"* an emerald|strong=\"H5306\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H7992\"* the|strong=\"H7992\"* third|strong=\"H7992\"* row|strong=\"H2905\"* a|strong=\"H3068\"* jacinth|strong=\"H3958\"*, an agate|strong=\"H7618\"*, and|strong=\"H7992\"* an amethyst;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H2091\"* the|strong=\"H1961\"* fourth|strong=\"H7243\"* row|strong=\"H2905\"* a|strong=\"H3068\"* chrysolite, an|strong=\"H1961\"* onyx|strong=\"H7718\"*, and|strong=\"H2091\"* a|strong=\"H3068\"* jasper|strong=\"H3471\"*. They|strong=\"H7243\"* shall be|strong=\"H1961\"* enclosed|strong=\"H7660\"* in|strong=\"H1961\"* gold|strong=\"H2091\"* in|strong=\"H1961\"* their|strong=\"H1961\"* settings|strong=\"H4396\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* stones shall|strong=\"H1121\"* be|strong=\"H1961\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, twelve|strong=\"H8147\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* names|strong=\"H8034\"*; like|strong=\"H1961\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, everyone according|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"*, they|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5921\"* the|strong=\"H5921\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5921\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* chains|strong=\"H5688\"* like|strong=\"H6213\"* cords|strong=\"H5688\"*, of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H5414\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* shall|strong=\"H6213\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* at|strong=\"H5921\"* the|strong=\"H5921\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6440\"* other|strong=\"H8147\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* you|strong=\"H5414\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* settings|strong=\"H4865\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod in|strong=\"H5921\"* its|strong=\"H5414\"* forepart|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H1004\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* edge|strong=\"H8193\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H5676\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ephod inward|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* make|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H6440\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod underneath|strong=\"H4295\"*, in|strong=\"H5921\"* its|strong=\"H5414\"* forepart|strong=\"H6440\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* its|strong=\"H5414\"* coupling|strong=\"H4225\"*, above|strong=\"H4605\"* the|strong=\"H6440\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ephod." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* bind|strong=\"H7405\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* by|strong=\"H5921\"* its|strong=\"H5921\"* rings|strong=\"H2885\"* to|strong=\"H1961\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod with|strong=\"H5921\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, that|strong=\"H3808\"* it|strong=\"H5921\"* may|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod, and|strong=\"H8504\"* that|strong=\"H3808\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* may|strong=\"H1961\"* not|strong=\"H3808\"* swing out|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ephod." + }, + { + "verseNum": 29, + "text": "Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H6440\"* breastplate|strong=\"H2833\"* of|strong=\"H1121\"* judgment|strong=\"H4941\"* on|strong=\"H5921\"* his|strong=\"H5375\"* heart|strong=\"H3820\"*, when|strong=\"H3068\"* he|strong=\"H3068\"* goes|strong=\"H6440\"* in|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H6440\"* breastplate|strong=\"H2833\"* of|strong=\"H1121\"* judgment|strong=\"H4941\"* the|strong=\"H6440\"* Urim and|strong=\"H1121\"* the|strong=\"H6440\"* Thummim|strong=\"H8550\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron’s heart|strong=\"H3820\"*, when|strong=\"H1961\"* he|strong=\"H3068\"* goes|strong=\"H6440\"* in|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* his|strong=\"H5375\"* heart|strong=\"H3820\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* robe|strong=\"H4598\"* of|strong=\"H6213\"* the|strong=\"H6213\"* ephod all|strong=\"H6213\"* of|strong=\"H6213\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H8432\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* hole|strong=\"H6310\"* for|strong=\"H1961\"* the|strong=\"H8432\"* head|strong=\"H7218\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H7218\"* it|strong=\"H8432\"*. It|strong=\"H8432\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* binding|strong=\"H8193\"* of|strong=\"H7218\"* woven work|strong=\"H4639\"* around|strong=\"H5439\"* its|strong=\"H5439\"* hole|strong=\"H6310\"*, as|strong=\"H1961\"* it|strong=\"H8432\"* were|strong=\"H1961\"* the|strong=\"H8432\"* hole|strong=\"H6310\"* of|strong=\"H7218\"* a|strong=\"H3068\"* coat|strong=\"H8473\"* of|strong=\"H7218\"* mail|strong=\"H8473\"*, that|strong=\"H3808\"* it|strong=\"H8432\"* not|strong=\"H3808\"* be|strong=\"H1961\"* torn|strong=\"H7167\"*." + }, + { + "verseNum": 33, + "text": "On|strong=\"H5921\"* its|strong=\"H5921\"* hem|strong=\"H7757\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* pomegranates|strong=\"H7416\"* of|strong=\"H8432\"* blue|strong=\"H8504\"*, and|strong=\"H2091\"* of|strong=\"H8432\"* purple|strong=\"H8504\"*, and|strong=\"H2091\"* of|strong=\"H8432\"* scarlet|strong=\"H8144\"*, all|strong=\"H5439\"* around|strong=\"H5439\"* its|strong=\"H5921\"* hem|strong=\"H7757\"*; with|strong=\"H6213\"* bells|strong=\"H6472\"* of|strong=\"H8432\"* gold|strong=\"H2091\"* between|strong=\"H8432\"* and|strong=\"H2091\"* around|strong=\"H5439\"* them|strong=\"H5921\"*:" + }, + { + "verseNum": 34, + "text": "a|strong=\"H3068\"* golden|strong=\"H2091\"* bell|strong=\"H6472\"* and|strong=\"H2091\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, a|strong=\"H3068\"* golden|strong=\"H2091\"* bell|strong=\"H6472\"* and|strong=\"H2091\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* hem|strong=\"H7757\"* of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*." + }, + { + "verseNum": 35, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron to|strong=\"H3318\"* minister|strong=\"H8334\"*: and|strong=\"H3068\"* its|strong=\"H5921\"* sound|strong=\"H6963\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* heard|strong=\"H8085\"* when|strong=\"H1961\"* he|strong=\"H3068\"* goes|strong=\"H3318\"* in|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"*, that|strong=\"H8085\"* he|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 36, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* plate|strong=\"H6731\"* of|strong=\"H3068\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* engrave|strong=\"H6605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, like|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H3068\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, ‘HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*.’" + }, + { + "verseNum": 37, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H6440\"* blue|strong=\"H8504\"*, and|strong=\"H6440\"* it|strong=\"H7760\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* sash. It|strong=\"H7760\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sash." + }, + { + "verseNum": 38, + "text": "It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron’s forehead|strong=\"H4696\"*, and|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, which|strong=\"H3068\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* make|strong=\"H5375\"* holy|strong=\"H6944\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* holy|strong=\"H6944\"* gifts|strong=\"H4979\"*; and|strong=\"H1121\"* it|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* always|strong=\"H3605\"* on|strong=\"H5921\"* his|strong=\"H3605\"* forehead|strong=\"H4696\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* accepted|strong=\"H7522\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* weave|strong=\"H7660\"* the|strong=\"H6213\"* tunic|strong=\"H3801\"* with|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* turban|strong=\"H4701\"* of|strong=\"H4639\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* sash, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* embroiderer|strong=\"H7551\"*." + }, + { + "verseNum": 40, + "text": "“You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* tunics|strong=\"H3801\"* for|strong=\"H6213\"* Aaron’s sons|strong=\"H1121\"*. You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* sashes for|strong=\"H6213\"* them|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* headbands|strong=\"H4021\"* for|strong=\"H6213\"* them|strong=\"H6213\"*, for|strong=\"H6213\"* glory|strong=\"H3519\"* and|strong=\"H1121\"* for|strong=\"H6213\"* beauty|strong=\"H8597\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H4886\"* shall|strong=\"H1121\"* put|strong=\"H3847\"* them|strong=\"H3027\"* on|strong=\"H3847\"* Aaron your|strong=\"H3027\"* brother, and|strong=\"H1121\"* on|strong=\"H3847\"* his|strong=\"H3027\"* sons|strong=\"H1121\"* with|strong=\"H4390\"* him|strong=\"H3027\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* anoint|strong=\"H4886\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* consecrate|strong=\"H6942\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* sanctify|strong=\"H6942\"* them|strong=\"H3027\"*, that|strong=\"H1121\"* they|strong=\"H6942\"* may|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H3027\"* me|strong=\"H4886\"* in|strong=\"H3847\"* the|strong=\"H4390\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 42, + "text": "You|strong=\"H5704\"* shall|strong=\"H1320\"* make|strong=\"H6213\"* them|strong=\"H6213\"* linen pants to|strong=\"H5704\"* cover|strong=\"H3680\"* their|strong=\"H1961\"* naked flesh|strong=\"H1320\"*. They|strong=\"H5704\"* shall|strong=\"H1320\"* reach|strong=\"H1961\"* from|strong=\"H5704\"* the|strong=\"H6213\"* waist|strong=\"H4975\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6213\"* thighs|strong=\"H3409\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3808\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Aaron and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sons|strong=\"H1121\"*, when|strong=\"H1961\"* they|strong=\"H3808\"* go|strong=\"H5066\"* in|strong=\"H5921\"* to|strong=\"H4191\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, or|strong=\"H3808\"* when|strong=\"H1961\"* they|strong=\"H3808\"* come|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H4191\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H4191\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, that|strong=\"H4196\"* they|strong=\"H3808\"* don’t bear|strong=\"H5375\"* iniquity|strong=\"H5771\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* to|strong=\"H4191\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H4191\"* his|strong=\"H5375\"* offspring|strong=\"H2233\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3947\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* holy|strong=\"H6942\"*, to|strong=\"H6213\"* minister|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3947\"* priest|strong=\"H3547\"*’s office: take|strong=\"H3947\"* one|strong=\"H2088\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* two|strong=\"H8147\"* rams without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 2, + "text": "unleavened|strong=\"H4682\"* bread|strong=\"H3899\"*, unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H3899\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H3899\"* fine|strong=\"H5560\"* wheat|strong=\"H2406\"* flour|strong=\"H5560\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H8147\"* put|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* one|strong=\"H8147\"* basket|strong=\"H5536\"*, and|strong=\"H6499\"* bring|strong=\"H7126\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* basket|strong=\"H5536\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* and|strong=\"H6499\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rams." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H7126\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3947\"* shall take|strong=\"H3947\"* the|strong=\"H3947\"* garments|strong=\"H3801\"*, and|strong=\"H3947\"* put|strong=\"H3847\"* on|strong=\"H3847\"* Aaron the|strong=\"H3947\"* tunic|strong=\"H3801\"*, the|strong=\"H3947\"* robe|strong=\"H4598\"* of|strong=\"H3801\"* the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* ephod, and|strong=\"H3947\"* the|strong=\"H3947\"* breastplate|strong=\"H2833\"*, and|strong=\"H3947\"* clothe|strong=\"H3847\"* him|strong=\"H3947\"* with|strong=\"H3847\"* the|strong=\"H3947\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H3801\"* the|strong=\"H3947\"* ephod." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5414\"* shall|strong=\"H5145\"* set|strong=\"H7760\"* the|strong=\"H5921\"* turban|strong=\"H4701\"* on|strong=\"H5921\"* his|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* the|strong=\"H5921\"* turban|strong=\"H4701\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3947\"* you|strong=\"H5921\"* shall|strong=\"H7218\"* take|strong=\"H3947\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H7218\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* his|strong=\"H7126\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* tunics|strong=\"H3801\"* on|strong=\"H3847\"* them|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3027\"* shall|strong=\"H1121\"* clothe them|strong=\"H1992\"* with|strong=\"H4390\"* belts, Aaron and|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* bind|strong=\"H2280\"* headbands|strong=\"H4021\"* on|strong=\"H2296\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* the|strong=\"H4390\"* priesthood|strong=\"H3550\"* by|strong=\"H3027\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"*. You|strong=\"H3027\"* shall|strong=\"H1121\"* consecrate|strong=\"H4390\"* Aaron and|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H6440\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H6440\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* shall|strong=\"H1818\"* take|strong=\"H3947\"* of|strong=\"H4196\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H3605\"* bull|strong=\"H6499\"*, and|strong=\"H4196\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* with|strong=\"H5921\"* your|strong=\"H3605\"* finger; and|strong=\"H4196\"* you|strong=\"H5414\"* shall|strong=\"H1818\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H8147\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, the|strong=\"H3605\"* cover|strong=\"H3680\"* of|strong=\"H4196\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4196\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H1931\"* the|strong=\"H2351\"* meat|strong=\"H1320\"* of|strong=\"H4264\"* the|strong=\"H2351\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* its skin|strong=\"H5785\"*, and|strong=\"H6499\"* its dung|strong=\"H6569\"*, you|strong=\"H1320\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H2351\"* camp|strong=\"H4264\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 15, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* also|strong=\"H3027\"* take|strong=\"H3947\"* the|strong=\"H5921\"* one|strong=\"H1121\"* ram, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* shall|strong=\"H1818\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* ram, and|strong=\"H4196\"* you|strong=\"H5921\"* shall|strong=\"H1818\"* take|strong=\"H3947\"* its|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H4196\"* sprinkle|strong=\"H2236\"* it|strong=\"H5921\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5414\"* shall|strong=\"H7218\"* cut|strong=\"H5408\"* the|strong=\"H5921\"* ram into|strong=\"H5921\"* its|strong=\"H5414\"* pieces|strong=\"H5409\"*, and|strong=\"H7218\"* wash|strong=\"H7364\"* its|strong=\"H5414\"* innards, and|strong=\"H7218\"* its|strong=\"H5414\"* legs|strong=\"H3767\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H5921\"* its|strong=\"H5414\"* pieces|strong=\"H5409\"*, and|strong=\"H7218\"* with|strong=\"H5921\"* its|strong=\"H5414\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* ram on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* the|strong=\"H5921\"* other|strong=\"H8145\"* ram, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3947\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* ram, and|strong=\"H1121\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H1121\"* its|strong=\"H5414\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*; and|strong=\"H1121\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* that|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* sprinkle|strong=\"H5137\"* it|strong=\"H1931\"* on|strong=\"H5921\"* Aaron, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments of|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* with|strong=\"H5921\"* him|strong=\"H5921\"*: and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* made|strong=\"H6942\"* holy|strong=\"H6942\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Also|strong=\"H3629\"* you|strong=\"H3588\"* shall|strong=\"H3225\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ram’s fat|strong=\"H2459\"*, the|strong=\"H5921\"* fat|strong=\"H2459\"* tail, the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H3588\"* covers|strong=\"H3680\"* the|strong=\"H5921\"* innards, the|strong=\"H5921\"* cover|strong=\"H3680\"* of|strong=\"H4480\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H3588\"* is|strong=\"H1931\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* (for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* ram of|strong=\"H4480\"* consecration|strong=\"H4394\"*)," + }, + { + "verseNum": 23, + "text": "and|strong=\"H3068\"* one|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H3068\"* bread|strong=\"H3899\"*, one|strong=\"H3068\"* cake|strong=\"H2471\"* of|strong=\"H3068\"* oiled|strong=\"H8081\"* bread|strong=\"H3899\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* wafer|strong=\"H7550\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* put|strong=\"H7760\"* all|strong=\"H3605\"* of|strong=\"H1121\"* this|strong=\"H6440\"* in|strong=\"H5921\"* Aaron’s hands|strong=\"H3709\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ hands|strong=\"H3709\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* them|strong=\"H5921\"* from|strong=\"H6440\"* their|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3947\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3027\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* of|strong=\"H3068\"* Aaron’s ram of|strong=\"H3068\"* consecration|strong=\"H4394\"*, and|strong=\"H3068\"* wave|strong=\"H8573\"* it|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* portion|strong=\"H4490\"*." + }, + { + "verseNum": 27, + "text": "You shall|strong=\"H1121\"* sanctify|strong=\"H6942\"* the|strong=\"H6942\"* breast|strong=\"H2373\"* of|strong=\"H1121\"* the|strong=\"H6942\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* and|strong=\"H1121\"* the|strong=\"H6942\"* thigh|strong=\"H7785\"* of|strong=\"H1121\"* the|strong=\"H6942\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"*, which is|strong=\"H1121\"* waved|strong=\"H5130\"*, and|strong=\"H1121\"* which is|strong=\"H1121\"* raised|strong=\"H7311\"* up|strong=\"H7311\"*, of|strong=\"H1121\"* the|strong=\"H6942\"* ram of|strong=\"H1121\"* consecration|strong=\"H4394\"*, even of|strong=\"H1121\"* that|strong=\"H1121\"* which is|strong=\"H1121\"* for|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* of|strong=\"H1121\"* that|strong=\"H1121\"* which is|strong=\"H1121\"* for|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* as|strong=\"H1961\"* their|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* their|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, even|strong=\"H3588\"* their|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“The|strong=\"H4390\"* holy|strong=\"H6944\"* garments of|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H3027\"* his|strong=\"H3027\"* sons|strong=\"H1121\"* after|strong=\"H1961\"* him|strong=\"H3027\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* anointed|strong=\"H1121\"* in|strong=\"H1121\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* consecrated|strong=\"H6944\"* in|strong=\"H1121\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 30, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* shall|strong=\"H3548\"* the|strong=\"H3117\"* son|strong=\"H1121\"* who|strong=\"H3548\"* is|strong=\"H3117\"* priest|strong=\"H3548\"* in|strong=\"H3117\"* his|strong=\"H8478\"* place|strong=\"H8478\"* put|strong=\"H3847\"* them|strong=\"H8478\"* on|strong=\"H3117\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* comes|strong=\"H3117\"* into the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* to|strong=\"H3117\"* minister|strong=\"H8334\"* in|strong=\"H3117\"* the|strong=\"H3117\"* holy|strong=\"H6944\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H3947\"* shall|strong=\"H1320\"* take|strong=\"H3947\"* the|strong=\"H3947\"* ram of|strong=\"H6918\"* consecration|strong=\"H4394\"* and|strong=\"H3947\"* boil|strong=\"H1310\"* its|strong=\"H1310\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 32, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H1320\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* eat|strong=\"H3899\"* the|strong=\"H1121\"* meat|strong=\"H1320\"* of|strong=\"H1121\"* the|strong=\"H1121\"* ram, and|strong=\"H1121\"* the|strong=\"H1121\"* bread|strong=\"H3899\"* that|strong=\"H1121\"* is|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H1121\"* basket|strong=\"H5536\"*, at|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H1992\"* shall|strong=\"H3027\"* eat those|strong=\"H1992\"* things|strong=\"H6944\"* with|strong=\"H4390\"* which|strong=\"H1992\"* atonement|strong=\"H3722\"* was|strong=\"H3027\"* made|strong=\"H3722\"*, to|strong=\"H3027\"* consecrate|strong=\"H6942\"* and|strong=\"H3027\"* sanctify|strong=\"H6942\"* them|strong=\"H1992\"*; but|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* eat of|strong=\"H3027\"* it|strong=\"H3588\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 34, + "text": "If|strong=\"H3588\"* anything|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H3588\"* meat|strong=\"H1320\"* of|strong=\"H4480\"* the|strong=\"H3588\"* consecration|strong=\"H4394\"*, or|strong=\"H3808\"* of|strong=\"H4480\"* the|strong=\"H3588\"* bread|strong=\"H3899\"*, remains|strong=\"H3498\"* to|strong=\"H5704\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* burn|strong=\"H8313\"* the|strong=\"H3588\"* remainder|strong=\"H3498\"* with|strong=\"H8313\"* fire. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 35, + "text": "“You|strong=\"H6680\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H6213\"* Aaron and|strong=\"H1121\"* to|strong=\"H6213\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, according|strong=\"H3602\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. You|strong=\"H6680\"* shall|strong=\"H1121\"* consecrate|strong=\"H4390\"* them|strong=\"H3027\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 36, + "text": "Every|strong=\"H3117\"* day|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H3117\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H3117\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H5921\"* atonement|strong=\"H3722\"*. You|strong=\"H5921\"* shall|strong=\"H3117\"* cleanse|strong=\"H2398\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* when|strong=\"H3117\"* you|strong=\"H5921\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3117\"* anoint|strong=\"H4886\"* it|strong=\"H5921\"*, to|strong=\"H6213\"* sanctify|strong=\"H6942\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 37, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H3117\"* sanctify|strong=\"H6942\"* it|strong=\"H5921\"*; and|strong=\"H3117\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Whatever|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 38, + "text": "“Now|strong=\"H3117\"* this|strong=\"H2088\"* is|strong=\"H2088\"* that|strong=\"H3117\"* which|strong=\"H4196\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*: two|strong=\"H8147\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* day|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H6213\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*; and|strong=\"H1242\"* the|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* at|strong=\"H6213\"* evening|strong=\"H6153\"*;" + }, + { + "verseNum": 40, + "text": "and|strong=\"H8081\"* with|strong=\"H1101\"* the|strong=\"H1101\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* tenth|strong=\"H6241\"* part|strong=\"H7253\"* of|strong=\"H1969\"* an ephah+ 29:40 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H1101\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 29:40 A hin is about 6.5 liters or 1.7 gallons, so a fourth of a hin is about 1.6 liters.* of|strong=\"H1969\"* beaten|strong=\"H3795\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* the|strong=\"H1101\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1969\"* wine|strong=\"H3196\"* for|strong=\"H6241\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* it|strong=\"H6213\"* according to|strong=\"H3068\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* according to|strong=\"H3068\"* its|strong=\"H6213\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 42, + "text": "It|strong=\"H8033\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, where|strong=\"H8033\"* I|strong=\"H6440\"* will|strong=\"H3068\"* meet|strong=\"H3259\"* with|strong=\"H3068\"* you|strong=\"H6440\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* there|strong=\"H8033\"* to|strong=\"H1696\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 43, + "text": "There|strong=\"H8033\"* I|strong=\"H1121\"* will|strong=\"H3478\"* meet|strong=\"H3259\"* with|strong=\"H3478\"* the|strong=\"H6942\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H6942\"* place|strong=\"H8033\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* sanctified|strong=\"H6942\"* by|strong=\"H3478\"* my|strong=\"H6942\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 44, + "text": "I|strong=\"H1121\"* will|strong=\"H1121\"* sanctify|strong=\"H6942\"* the|strong=\"H6942\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* and|strong=\"H1121\"* the|strong=\"H6942\"* altar|strong=\"H4196\"*. I|strong=\"H1121\"* will|strong=\"H1121\"* also|strong=\"H1121\"* sanctify|strong=\"H6942\"* Aaron and|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H1121\"* me|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 45, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H8432\"* God." + }, + { + "verseNum": 46, + "text": "They|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* might|strong=\"H3068\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H3318\"*: I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* to|strong=\"H6213\"* burn|strong=\"H4729\"* incense|strong=\"H7004\"* on|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 2, + "text": "Its|strong=\"H1961\"* length|strong=\"H6967\"* shall be|strong=\"H1961\"* a|strong=\"H3068\"* cubit,+ 30:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H7341\"* its|strong=\"H1961\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit. It|strong=\"H1961\"* shall be|strong=\"H1961\"* square|strong=\"H7251\"*, and|strong=\"H7341\"* its|strong=\"H1961\"* height|strong=\"H6967\"* shall be|strong=\"H1961\"* two|strong=\"H4480\"* cubits. Its|strong=\"H1961\"* horns|strong=\"H7161\"* shall be|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H7161\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* overlay|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, its|strong=\"H6213\"* top|strong=\"H1406\"*, its|strong=\"H6213\"* sides|strong=\"H5439\"* around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* horns|strong=\"H7161\"*; and|strong=\"H2091\"* you|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* rings|strong=\"H2885\"* for|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* its|strong=\"H5921\"* molding|strong=\"H2213\"*; on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ribs|strong=\"H6763\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6654\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* them|strong=\"H1992\"*; and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5921\"* places|strong=\"H1004\"* for|strong=\"H5921\"* poles with|strong=\"H1004\"* which|strong=\"H1992\"* to|strong=\"H1961\"* bear|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlay|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* put|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* that|strong=\"H5414\"* is|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant, before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H5414\"* is|strong=\"H8033\"* over|strong=\"H5921\"* the|strong=\"H6440\"* covenant, where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H5414\"* meet|strong=\"H3259\"* with|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Aaron shall burn|strong=\"H6999\"* incense|strong=\"H7004\"* of|strong=\"H5921\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* on|strong=\"H5921\"* it|strong=\"H5921\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*. When|strong=\"H5921\"* he|strong=\"H5921\"* tends the|strong=\"H5921\"* lamps|strong=\"H5216\"*, he|strong=\"H5921\"* shall burn|strong=\"H6999\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3068\"* Aaron lights the|strong=\"H6440\"* lamps|strong=\"H5216\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H6440\"*, a|strong=\"H3068\"* perpetual|strong=\"H8548\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* offer|strong=\"H5927\"* no|strong=\"H3808\"* strange|strong=\"H2114\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, nor|strong=\"H3808\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, nor|strong=\"H3808\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*; and|strong=\"H5930\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H5258\"* no|strong=\"H3808\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Aaron shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* on|strong=\"H5921\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* once in|strong=\"H8141\"* the|strong=\"H5921\"* year|strong=\"H8141\"*; with|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* of|strong=\"H3068\"* atonement|strong=\"H3722\"* once in|strong=\"H8141\"* the|strong=\"H5921\"* year|strong=\"H8141\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H1931\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, according to|strong=\"H3478\"* those|strong=\"H1121\"* who|strong=\"H3068\"* are|strong=\"H1121\"* counted|strong=\"H6485\"* among|strong=\"H7218\"* them|strong=\"H5414\"*, then|strong=\"H1961\"* each|strong=\"H5414\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* a|strong=\"H3068\"* ransom|strong=\"H3724\"* for|strong=\"H3588\"* his|strong=\"H5375\"* soul|strong=\"H5315\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* you|strong=\"H3588\"* count|strong=\"H5375\"* them|strong=\"H5414\"*, that|strong=\"H3588\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* among|strong=\"H7218\"* them|strong=\"H5414\"* when|strong=\"H3588\"* you|strong=\"H3588\"* count|strong=\"H5375\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2088\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* counted|strong=\"H6485\"*, half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 30:13 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* (the|strong=\"H3605\"* shekel|strong=\"H8255\"* is|strong=\"H3068\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 30:13 a gerah is about 0.5 grams or about 7.7 grains*); half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"* for|strong=\"H5921\"* an|strong=\"H5414\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* counted|strong=\"H6485\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, shall|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* rich|strong=\"H6223\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* more|strong=\"H7235\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* less|strong=\"H4591\"*, than|strong=\"H7235\"* the|strong=\"H5921\"* half|strong=\"H4276\"* shekel|strong=\"H8255\"*,+ 30:15 A shekel is about 10 grams or about 0.35 ounces.* when|strong=\"H3068\"* they|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5921\"* offering|strong=\"H8641\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* atonement|strong=\"H3722\"* money|strong=\"H3701\"* from|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* appoint|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; that|strong=\"H5315\"* it|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“You|strong=\"H5414\"* shall|strong=\"H4325\"* also|strong=\"H6213\"* make|strong=\"H6213\"* a|strong=\"H3068\"* basin|strong=\"H3595\"* of|strong=\"H4325\"* bronze|strong=\"H5178\"*, and|strong=\"H4196\"* its|strong=\"H5414\"* base|strong=\"H3653\"* of|strong=\"H4325\"* bronze|strong=\"H5178\"*, in|strong=\"H6213\"* which|strong=\"H8033\"* to|strong=\"H6213\"* wash|strong=\"H7364\"*. You|strong=\"H5414\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* it|strong=\"H5414\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* you|strong=\"H5414\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* water|strong=\"H4325\"* in|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H1121\"* their|strong=\"H7364\"* feet|strong=\"H7272\"* in|strong=\"H7364\"* it|strong=\"H1121\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H5066\"* into|strong=\"H4325\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, they|strong=\"H3068\"* shall|strong=\"H3068\"* wash|strong=\"H7364\"* with|strong=\"H3068\"* water|strong=\"H4325\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* don’t die|strong=\"H4191\"*; or|strong=\"H3808\"* when|strong=\"H3068\"* they|strong=\"H3068\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H4191\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* to|strong=\"H4191\"* minister|strong=\"H8334\"*, to|strong=\"H4191\"* burn|strong=\"H6999\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H1961\"* they|strong=\"H3808\"* shall|strong=\"H2233\"* wash|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* their|strong=\"H7364\"* feet|strong=\"H7272\"*, that|strong=\"H3027\"* they|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* forever|strong=\"H5769\"* to|strong=\"H4191\"* them|strong=\"H3027\"*, even|strong=\"H3808\"* to|strong=\"H4191\"* him|strong=\"H3027\"* and|strong=\"H3027\"* to|strong=\"H4191\"* his|strong=\"H7364\"* descendants|strong=\"H2233\"* throughout|strong=\"H1755\"* their|strong=\"H7364\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 22, + "text": "Moreover|strong=\"H1696\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Also take|strong=\"H3947\"* fine|strong=\"H3947\"* spices|strong=\"H1314\"*: of|strong=\"H7218\"* liquid myrrh|strong=\"H4753\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* shekels;+ 30:23 A shekel is about 10 grams or about 0.35 ounces, so 500 shekels is about 5 kilograms or about 11 pounds.* and|strong=\"H3967\"* of|strong=\"H7218\"* fragrant|strong=\"H1314\"* cinnamon|strong=\"H7076\"* half|strong=\"H4276\"* as|strong=\"H3947\"* much|strong=\"H4276\"*, even two|strong=\"H3947\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* fifty|strong=\"H2572\"*; and|strong=\"H3967\"* of|strong=\"H7218\"* fragrant|strong=\"H1314\"* cane|strong=\"H7070\"*, two|strong=\"H3947\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* fifty|strong=\"H2572\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3967\"* of|strong=\"H8255\"* cassia|strong=\"H6916\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, according to|strong=\"H2568\"* the|strong=\"H3967\"* shekel|strong=\"H8255\"* of|strong=\"H8255\"* the|strong=\"H3967\"* sanctuary|strong=\"H6944\"*; and|strong=\"H3967\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 30:24 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H8255\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* it|strong=\"H6213\"* into|strong=\"H6213\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, a|strong=\"H3068\"* perfume|strong=\"H7545\"* compounded after|strong=\"H1961\"* the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*: it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H4886\"* shall|strong=\"H4150\"* use it to|strong=\"H4150\"* anoint|strong=\"H4886\"* the|strong=\"H4886\"* Tent of|strong=\"H4150\"* Meeting|strong=\"H4150\"*, the|strong=\"H4886\"* ark of|strong=\"H4150\"* the|strong=\"H4886\"* covenant," + }, + { + "verseNum": 27, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* articles|strong=\"H3627\"*, the|strong=\"H3605\"* lamp stand and|strong=\"H4196\"* its|strong=\"H3605\"* accessories, the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* utensils|strong=\"H3627\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basin|strong=\"H3595\"* with|strong=\"H3627\"* its|strong=\"H3605\"* base|strong=\"H3653\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3605\"* shall sanctify|strong=\"H6942\"* them|strong=\"H1961\"*, that|strong=\"H3605\"* they|strong=\"H6942\"* may|strong=\"H1961\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Whatever|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H1961\"* shall be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H4886\"* shall|strong=\"H1121\"* anoint|strong=\"H4886\"* Aaron and|strong=\"H1121\"* his|strong=\"H6942\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* sanctify|strong=\"H6942\"* them|strong=\"H6942\"*, that|strong=\"H1121\"* they|strong=\"H6942\"* may|strong=\"H1121\"* minister|strong=\"H3547\"* to|strong=\"H1121\"* me|strong=\"H4886\"* in|strong=\"H1121\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 31, + "text": "You|strong=\"H1696\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘This|strong=\"H2088\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* to|strong=\"H1696\"* me|strong=\"H1696\"* throughout|strong=\"H1755\"* your|strong=\"H1961\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* poured|strong=\"H3251\"* on|strong=\"H5921\"* man|strong=\"H1320\"*’s flesh|strong=\"H1320\"*, and|strong=\"H6213\"* do|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* any|strong=\"H6213\"* like|strong=\"H3644\"* it|strong=\"H1931\"*, according|strong=\"H5921\"* to|strong=\"H1961\"* its|strong=\"H5921\"* composition|strong=\"H4971\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "Whoever compounds any|strong=\"H4480\"* like|strong=\"H3644\"* it|strong=\"H5414\"*, or|strong=\"H4480\"* whoever puts|strong=\"H5414\"* any|strong=\"H4480\"* of|strong=\"H4480\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*, he|strong=\"H5414\"* shall|strong=\"H5971\"* be|strong=\"H5414\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* his|strong=\"H5414\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* to|strong=\"H3068\"* yourself sweet|strong=\"H5561\"* spices|strong=\"H5561\"*, gum|strong=\"H5198\"* resin, onycha|strong=\"H7827\"*, and|strong=\"H4872\"* galbanum|strong=\"H2464\"*: sweet|strong=\"H5561\"* spices|strong=\"H5561\"* with|strong=\"H3068\"* pure|strong=\"H2134\"* frankincense|strong=\"H3828\"*. There|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* equal weight of|strong=\"H3068\"* each|strong=\"H3947\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H6213\"* shall|strong=\"H2889\"* make|strong=\"H6213\"* incense|strong=\"H7004\"* of|strong=\"H4639\"* it|strong=\"H6213\"*, a|strong=\"H3068\"* perfume|strong=\"H7004\"* after the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*, seasoned with|strong=\"H6213\"* salt|strong=\"H4414\"*, pure|strong=\"H2889\"* and|strong=\"H6213\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* beat|strong=\"H7833\"* some|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"* very|strong=\"H1854\"* small|strong=\"H1854\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* covenant in|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H1961\"* meet|strong=\"H3259\"* with|strong=\"H6440\"* you|strong=\"H5414\"*. It|strong=\"H5414\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5414\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* this|strong=\"H6213\"* incense|strong=\"H7004\"*, according to|strong=\"H3068\"* its|strong=\"H6213\"* composition|strong=\"H4971\"*, for|strong=\"H6213\"* yourselves|strong=\"H3068\"*: it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H6213\"* holy|strong=\"H6944\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 38, + "text": "Whoever shall|strong=\"H5971\"* make|strong=\"H6213\"* any|strong=\"H6213\"* like|strong=\"H3644\"* that|strong=\"H5971\"*, to|strong=\"H6213\"* smell|strong=\"H7306\"* of|strong=\"H5971\"* it|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H6213\"* people|strong=\"H5971\"*.”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H1121\"* called|strong=\"H7121\"* by|strong=\"H7121\"* name|strong=\"H8034\"* Bezalel|strong=\"H1212\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H7200\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3605\"* have|strong=\"H3605\"* filled|strong=\"H4390\"* him|strong=\"H3605\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God|strong=\"H2451\"*, in|strong=\"H4399\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* understanding|strong=\"H8394\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7307\"* workmanship|strong=\"H4399\"*," + }, + { + "verseNum": 4, + "text": "to|strong=\"H6213\"* devise|strong=\"H2803\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*, to|strong=\"H6213\"* work|strong=\"H6213\"* in|strong=\"H6213\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* in|strong=\"H6213\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H6086\"* in|strong=\"H6213\"* cutting|strong=\"H2799\"* of|strong=\"H4390\"* stones for|strong=\"H6213\"* setting, and|strong=\"H6086\"* in|strong=\"H6213\"* carving|strong=\"H2799\"* of|strong=\"H4390\"* wood|strong=\"H6086\"*, to|strong=\"H6213\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* workmanship|strong=\"H4399\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself|strong=\"H3820\"* have|strong=\"H1121\"* appointed|strong=\"H5414\"* with|strong=\"H6213\"* him|strong=\"H5414\"* Oholiab, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*; and|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* wise-hearted I|strong=\"H5414\"* have|strong=\"H1121\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H6213\"* make|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*:" + }, + { + "verseNum": 7, + "text": "the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, the|strong=\"H3605\"* ark of|strong=\"H3627\"* the|strong=\"H3605\"* covenant, the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Tent," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* and|strong=\"H4196\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* pure|strong=\"H2889\"* lamp stand with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments—the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H3548\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* minister|strong=\"H3547\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office—" + }, + { + "verseNum": 11, + "text": "the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* the|strong=\"H3605\"* incense|strong=\"H7004\"* of|strong=\"H3605\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* for|strong=\"H6213\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*: according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* they|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 13, + "text": "“Speak|strong=\"H1696\"* also|strong=\"H3068\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Most|strong=\"H3068\"* certainly|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H8104\"* and|strong=\"H1121\"* you|strong=\"H3588\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* sanctifies|strong=\"H6942\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* shall|strong=\"H5971\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* therefore|strong=\"H3588\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6944\"* to|strong=\"H4191\"* you|strong=\"H3588\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* profanes|strong=\"H2490\"* it|strong=\"H1931\"* shall|strong=\"H5971\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; for|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* therein|strong=\"H7130\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H4191\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H4191\"* done|strong=\"H6213\"*, but|strong=\"H3605\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, holy|strong=\"H6944\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*. Whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H6213\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, to|strong=\"H3478\"* observe|strong=\"H8104\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"* throughout|strong=\"H1755\"* their|strong=\"H6213\"* generations|strong=\"H1755\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sign between me|strong=\"H6213\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*; for|strong=\"H3588\"* in|strong=\"H3478\"* six|strong=\"H8337\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H1121\"* earth|strong=\"H8064\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* rested|strong=\"H7673\"*, and|strong=\"H1121\"* was|strong=\"H3068\"* refreshed|strong=\"H5314\"*.’”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3615\"* he|strong=\"H5414\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5414\"* on|strong=\"H1696\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, he|strong=\"H5414\"* gave|strong=\"H5414\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H2022\"* the|strong=\"H5414\"* covenant, stone tablets|strong=\"H3871\"*, written|strong=\"H3789\"* with|strong=\"H1696\"* God|strong=\"H5414\"*’s finger." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Moses|strong=\"H4872\"* delayed coming|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, the|strong=\"H6440\"* people|strong=\"H5971\"* gathered|strong=\"H6950\"* themselves|strong=\"H6213\"* together|strong=\"H6950\"* to|strong=\"H3381\"* Aaron, and|strong=\"H6965\"* said to|strong=\"H3381\"* him|strong=\"H6440\"*, “Come|strong=\"H5927\"*, make|strong=\"H6213\"* us|strong=\"H5921\"* gods, which|strong=\"H5971\"* shall|strong=\"H5971\"* go|strong=\"H3212\"* before|strong=\"H6440\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* as|strong=\"H1961\"* for|strong=\"H3588\"* this|strong=\"H2088\"* Moses|strong=\"H4872\"*, the|strong=\"H6440\"* man|strong=\"H2088\"* who|strong=\"H5971\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H2022\"* Egypt|strong=\"H4714\"*, we|strong=\"H3068\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* has|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H2022\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 2, + "text": "Aaron said to|strong=\"H1121\"* them|strong=\"H1121\"*, “Take|strong=\"H1121\"* off|strong=\"H6561\"* the|strong=\"H1121\"* golden|strong=\"H2091\"* rings|strong=\"H5141\"*, which|strong=\"H2091\"* are|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H1121\"* ears of|strong=\"H1121\"* your|strong=\"H1121\"* wives, of|strong=\"H1121\"* your|strong=\"H1121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H1121\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* bring|strong=\"H1323\"* them|strong=\"H1121\"* to|strong=\"H1121\"* me|strong=\"H6561\"*.”" + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H5971\"* off|strong=\"H6561\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* rings|strong=\"H5141\"* which|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H5971\"* their|strong=\"H3605\"* ears, and|strong=\"H2091\"* brought them to|strong=\"H5971\"* Aaron." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* received|strong=\"H3947\"* what|strong=\"H6213\"* they|strong=\"H6213\"* handed|strong=\"H3027\"* him|strong=\"H3027\"*, fashioned|strong=\"H3335\"* it|strong=\"H6213\"* with|strong=\"H6213\"* an|strong=\"H6213\"* engraving tool|strong=\"H2747\"*, and|strong=\"H3478\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*. Then|strong=\"H3947\"* they|strong=\"H6213\"* said, “These|strong=\"H6213\"* are|strong=\"H3478\"* your|strong=\"H3947\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H3947\"* up|strong=\"H5927\"* out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H7200\"* Aaron saw|strong=\"H7200\"* this|strong=\"H7200\"*, he|strong=\"H3068\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* it|strong=\"H7121\"*; and|strong=\"H3068\"* Aaron made|strong=\"H1129\"* a|strong=\"H3068\"* proclamation|strong=\"H7121\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Tomorrow|strong=\"H4279\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* early|strong=\"H7925\"* on|strong=\"H3427\"* the|strong=\"H5927\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H6965\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, and|strong=\"H6965\"* brought|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H6965\"* the|strong=\"H5927\"* people|strong=\"H5971\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H5927\"* eat and|strong=\"H6965\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H5927\"* play|strong=\"H6711\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Go|strong=\"H3212\"*, get|strong=\"H3212\"* down|strong=\"H3381\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, whom|strong=\"H5971\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, have|strong=\"H3068\"* corrupted|strong=\"H7843\"* themselves|strong=\"H1696\"*!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H6213\"* have|strong=\"H3478\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* quickly|strong=\"H4118\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H6213\"* way|strong=\"H1870\"* which|strong=\"H3478\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*. They|strong=\"H6213\"* have|strong=\"H3478\"* made|strong=\"H6213\"* themselves|strong=\"H7812\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* worshiped|strong=\"H7812\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* sacrificed|strong=\"H2076\"* to|strong=\"H3478\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* said, ‘These|strong=\"H6213\"* are|strong=\"H3478\"* your|strong=\"H6213\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H6680\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H6213\"* land of|strong=\"H1870\"* Egypt|strong=\"H4714\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* behold|strong=\"H2009\"*, they|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* leave|strong=\"H3240\"* me|strong=\"H6213\"* alone|strong=\"H3240\"*, that|strong=\"H1471\"* my|strong=\"H3615\"* wrath may|strong=\"H1471\"* burn|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* them|strong=\"H6213\"*, and|strong=\"H1419\"* that|strong=\"H1471\"* I|strong=\"H6258\"* may|strong=\"H1471\"* consume|strong=\"H3615\"* them|strong=\"H6213\"*; and|strong=\"H1419\"* I|strong=\"H6258\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H3615\"* you|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* begged Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H4872\"* said|strong=\"H3318\"*, “Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* does|strong=\"H4100\"* your|strong=\"H3068\"* wrath burn|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* you|strong=\"H6440\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* great|strong=\"H1419\"* power|strong=\"H3027\"* and|strong=\"H4872\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H6440\"* Egyptians|strong=\"H4713\"* talk, saying, ‘He|strong=\"H5921\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* for|strong=\"H5921\"* evil|strong=\"H7451\"*, to|strong=\"H7725\"* kill|strong=\"H2026\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* consume|strong=\"H3615\"* them|strong=\"H5921\"* from|strong=\"H7725\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H6440\"* earth’? Turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H5921\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* this|strong=\"H6440\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "Remember|strong=\"H2142\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"*, your|strong=\"H3605\"* servants|strong=\"H5650\"*, to|strong=\"H1696\"* whom you|strong=\"H5414\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* your|strong=\"H3605\"* own|strong=\"H5769\"* self, and|strong=\"H3478\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, ‘I|strong=\"H5414\"* will|strong=\"H3478\"* multiply|strong=\"H7235\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*+ 32:13 or, seed* as|strong=\"H5414\"* the|strong=\"H3605\"* stars|strong=\"H3556\"* of|strong=\"H5650\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* this|strong=\"H2063\"* land|strong=\"H8064\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H5650\"* spoken|strong=\"H1696\"* of|strong=\"H5650\"* I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3605\"* offspring|strong=\"H2233\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* shall|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"* forever|strong=\"H5769\"*.’”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H6213\"* Yahweh|strong=\"H3068\"* turned|strong=\"H3068\"* away|strong=\"H7451\"* from|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* which|strong=\"H3068\"* he|strong=\"H6213\"* said|strong=\"H1696\"* he|strong=\"H6213\"* would|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* turned|strong=\"H6437\"*, and|strong=\"H4872\"* went|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*, with|strong=\"H3381\"* the|strong=\"H4480\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H4480\"* covenant in|strong=\"H3789\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*; tablets|strong=\"H3871\"* that|strong=\"H4480\"* were|strong=\"H1992\"* written|strong=\"H3789\"* on|strong=\"H3027\"* both|strong=\"H8147\"* their|strong=\"H1992\"* sides|strong=\"H5676\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* written|strong=\"H3789\"* on|strong=\"H3027\"* one|strong=\"H2088\"* side|strong=\"H5676\"* and|strong=\"H4872\"* on|strong=\"H3027\"* the|strong=\"H4480\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* tablets|strong=\"H3871\"* were|strong=\"H1992\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* God, and|strong=\"H4639\"* the|strong=\"H5921\"* writing|strong=\"H4385\"* was|strong=\"H1931\"* the|strong=\"H5921\"* writing|strong=\"H4385\"* of|strong=\"H5921\"* God, engraved|strong=\"H2801\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H8085\"* Joshua|strong=\"H3091\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H5971\"* as|strong=\"H5971\"* they|strong=\"H5971\"* shouted|strong=\"H7452\"*, he|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H8085\"* Moses|strong=\"H4872\"*, “There is|strong=\"H6963\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* war|strong=\"H4421\"* in|strong=\"H8085\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 18, + "text": "He said|strong=\"H6030\"*, “It isn’t the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who shout|strong=\"H6963\"* for|strong=\"H1369\"* victory. It is|strong=\"H6963\"* not|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who cry|strong=\"H6963\"* for|strong=\"H1369\"* being overcome|strong=\"H2476\"*; but|strong=\"H6030\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* those|strong=\"H8085\"* who sing|strong=\"H6030\"* that|strong=\"H8085\"* I|strong=\"H8085\"* hear|strong=\"H8085\"*.”" + }, + { + "verseNum": 19, + "text": "As|strong=\"H1961\"* soon|strong=\"H7126\"* as|strong=\"H1961\"* he|strong=\"H3027\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*, he|strong=\"H3027\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* calf|strong=\"H5695\"* and|strong=\"H4872\"* the|strong=\"H7200\"* dancing|strong=\"H4246\"*. Then|strong=\"H1961\"* Moses|strong=\"H4872\"*’ anger grew hot|strong=\"H2734\"*, and|strong=\"H4872\"* he|strong=\"H3027\"* threw|strong=\"H7993\"* the|strong=\"H7200\"* tablets|strong=\"H3871\"* out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H7200\"* hands|strong=\"H3027\"*, and|strong=\"H4872\"* broke|strong=\"H7665\"* them|strong=\"H3027\"* beneath|strong=\"H8478\"* the|strong=\"H7200\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H6440\"* calf|strong=\"H5695\"* which|strong=\"H4325\"* they|strong=\"H5921\"* had|strong=\"H3478\"* made|strong=\"H6213\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* fire, ground|strong=\"H2912\"* it|strong=\"H5921\"* to|strong=\"H5704\"* powder|strong=\"H1854\"*, and|strong=\"H1121\"* scattered|strong=\"H2219\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* water|strong=\"H4325\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* drink|strong=\"H8248\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H5921\"* Aaron, “What|strong=\"H4100\"* did|strong=\"H6213\"* these|strong=\"H2088\"* people|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H5921\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* brought|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2401\"* on|strong=\"H5921\"* them|strong=\"H5921\"*?”" + }, + { + "verseNum": 22, + "text": "Aaron said, “Don’t let the|strong=\"H3588\"* anger of|strong=\"H5971\"* my|strong=\"H3045\"* lord grow hot|strong=\"H2734\"*. You|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* set on|strong=\"H7451\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* said to|strong=\"H3212\"* me|strong=\"H6440\"*, ‘Make|strong=\"H6213\"* us|strong=\"H6213\"* gods, which|strong=\"H4100\"* shall|strong=\"H4714\"* go|strong=\"H3212\"* before|strong=\"H6440\"* us|strong=\"H6213\"*. As|strong=\"H1961\"* for|strong=\"H3588\"* this|strong=\"H2088\"* Moses|strong=\"H4872\"*, the|strong=\"H6440\"* man|strong=\"H2088\"* who|strong=\"H2088\"* brought|strong=\"H5927\"* us|strong=\"H6213\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, we|strong=\"H3068\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* has|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H6440\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 24, + "text": "I|strong=\"H5414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5414\"*, ‘Whoever|strong=\"H4310\"* has|strong=\"H4310\"* any|strong=\"H5414\"* gold|strong=\"H2091\"*, let|strong=\"H5414\"* them|strong=\"H5414\"* take|strong=\"H3318\"* it|strong=\"H5414\"* off|strong=\"H6561\"*.’ So|strong=\"H5414\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3318\"* me|strong=\"H5414\"*; and|strong=\"H2091\"* I|strong=\"H5414\"* threw|strong=\"H7993\"* it|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* fire, and|strong=\"H2091\"* out|strong=\"H3318\"* came|strong=\"H3318\"* this|strong=\"H2088\"* calf|strong=\"H5695\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* Moses|strong=\"H4872\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H5971\"* out|strong=\"H7200\"* of|strong=\"H5971\"* control|strong=\"H6544\"*, (for|strong=\"H3588\"* Aaron had|strong=\"H4872\"* let|strong=\"H6544\"* them|strong=\"H7200\"* lose control|strong=\"H6544\"*, causing derision|strong=\"H8103\"* among|strong=\"H5971\"* their|strong=\"H7200\"* enemies|strong=\"H6965\"*)," + }, + { + "verseNum": 26, + "text": "then|strong=\"H4872\"* Moses|strong=\"H4872\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H1121\"* said, “Whoever|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s side, come to|strong=\"H3068\"* me|strong=\"H5975\"*!”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said to|strong=\"H7725\"* them|strong=\"H5921\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Every|strong=\"H7725\"* man|strong=\"H5674\"* put|strong=\"H7760\"* his|strong=\"H7760\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* his|strong=\"H7760\"* thigh|strong=\"H3409\"*, and|strong=\"H3478\"* go|strong=\"H5674\"* back|strong=\"H7725\"* and|strong=\"H3478\"* forth|strong=\"H5674\"* from|strong=\"H7725\"* gate|strong=\"H8179\"* to|strong=\"H7725\"* gate|strong=\"H8179\"* throughout|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* kill|strong=\"H2026\"* his|strong=\"H7760\"* brother|strong=\"H7453\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* his|strong=\"H7760\"* companion|strong=\"H7453\"*, and|strong=\"H3478\"* every|strong=\"H7725\"* man|strong=\"H5674\"* his|strong=\"H7760\"* neighbor|strong=\"H7453\"*.’”" + }, + { + "verseNum": 28, + "text": "The|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* did|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H6213\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*. About|strong=\"H1697\"* three|strong=\"H7969\"* thousand men|strong=\"H1121\"* fell|strong=\"H5307\"* of|strong=\"H1121\"* the|strong=\"H6213\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said, “Consecrate|strong=\"H4390\"* yourselves|strong=\"H3027\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* every|strong=\"H3117\"* man|strong=\"H1121\"* was|strong=\"H3068\"* against|strong=\"H5921\"* his|strong=\"H5414\"* son|strong=\"H1121\"* and|strong=\"H1121\"* against|strong=\"H5921\"* his|strong=\"H5414\"* brother, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 30, + "text": "On|strong=\"H3068\"* the|strong=\"H3068\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Moses|strong=\"H4872\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “You|strong=\"H5971\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2403\"*. Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Perhaps I|strong=\"H6258\"* shall|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* your|strong=\"H3068\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* said, “Oh, this|strong=\"H2088\"* people|strong=\"H5971\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* gods of|strong=\"H3068\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H6258\"* now|strong=\"H6258\"*, if you|strong=\"H5375\"* will|strong=\"H2403\"*, forgive|strong=\"H5375\"* their|strong=\"H5375\"* sin|strong=\"H2403\"*—and|strong=\"H2403\"* if not|strong=\"H5375\"*, please|strong=\"H4994\"* blot|strong=\"H4229\"* me|strong=\"H4994\"* out|strong=\"H4229\"* of|strong=\"H5612\"* your|strong=\"H5375\"* book|strong=\"H5612\"* which|strong=\"H5612\"* you|strong=\"H5375\"* have|strong=\"H2403\"* written|strong=\"H3789\"*.”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Whoever|strong=\"H4310\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"*, I|strong=\"H3068\"* will|strong=\"H3068\"* blot|strong=\"H4229\"* him|strong=\"H4872\"* out|strong=\"H4229\"* of|strong=\"H3068\"* my|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H6258\"* go|strong=\"H3212\"*, lead|strong=\"H5148\"* the|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H1696\"* the|strong=\"H6440\"* place of|strong=\"H3117\"* which|strong=\"H5971\"* I|strong=\"H3117\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6440\"*. Behold|strong=\"H2009\"*, my|strong=\"H5921\"* angel|strong=\"H4397\"* shall|strong=\"H5971\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Nevertheless|strong=\"H2009\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* punish|strong=\"H6485\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* punish|strong=\"H6485\"* them|strong=\"H5921\"* for|strong=\"H5921\"* their|strong=\"H6440\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* what|strong=\"H6213\"* they|strong=\"H3068\"* did|strong=\"H6213\"* with|strong=\"H3068\"* the|strong=\"H5921\"* calf|strong=\"H5695\"*, which|strong=\"H3068\"* Aaron made|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Depart|strong=\"H3212\"*, go|strong=\"H3212\"* up|strong=\"H5927\"* from|strong=\"H5927\"* here|strong=\"H2088\"*, you|strong=\"H5414\"* and|strong=\"H4872\"* the|strong=\"H5414\"* people|strong=\"H5971\"* that|strong=\"H5971\"* you|strong=\"H5414\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H1696\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H1696\"* Abraham, to|strong=\"H1696\"* Isaac|strong=\"H3327\"*, and|strong=\"H4872\"* to|strong=\"H1696\"* Jacob|strong=\"H3290\"*, saying|strong=\"H1696\"*, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.’" + }, + { + "verseNum": 2, + "text": "I|strong=\"H6440\"* will|strong=\"H4397\"* send|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; and|strong=\"H7971\"* I|strong=\"H6440\"* will|strong=\"H4397\"* drive|strong=\"H1644\"* out|strong=\"H7971\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Amorite, and|strong=\"H7971\"* the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H7971\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 3, + "text": "Go|strong=\"H5927\"* to|strong=\"H5927\"* a|strong=\"H3068\"* land|strong=\"H7130\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H5971\"* honey|strong=\"H1706\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*, lest|strong=\"H6435\"* I|strong=\"H3588\"* consume|strong=\"H3615\"* you|strong=\"H3588\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H8085\"* the|strong=\"H5921\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* news, they|strong=\"H3808\"* mourned; and|strong=\"H5971\"* no|strong=\"H3808\"* one|strong=\"H2088\"* put|strong=\"H7896\"* on|strong=\"H5921\"* his|strong=\"H8085\"* jewelry|strong=\"H5716\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said to|strong=\"H3381\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H3045\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘You|strong=\"H5921\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*. If|strong=\"H1121\"* I|strong=\"H5921\"* were|strong=\"H3478\"* to|strong=\"H3381\"* go|strong=\"H5927\"* up|strong=\"H5927\"* among|strong=\"H7130\"* you|strong=\"H5921\"* for|strong=\"H5921\"* one|strong=\"H1121\"* moment|strong=\"H7281\"*, I|strong=\"H5921\"* would|strong=\"H3068\"* consume|strong=\"H3615\"* you|strong=\"H5921\"*. Therefore|strong=\"H5921\"* now|strong=\"H6258\"* take|strong=\"H6213\"* off|strong=\"H5921\"* your|strong=\"H3068\"* jewelry|strong=\"H5716\"* from|strong=\"H3381\"* you|strong=\"H5921\"*, that|strong=\"H3045\"* I|strong=\"H5921\"* may|strong=\"H3068\"* know|strong=\"H3045\"* what|strong=\"H4100\"* to|strong=\"H3381\"* do|strong=\"H6213\"* to|strong=\"H3381\"* you|strong=\"H5921\"*.’”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5337\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stripped|strong=\"H5337\"* themselves of|strong=\"H1121\"* their|strong=\"H5337\"* jewelry|strong=\"H5716\"* from|strong=\"H3478\"* Mount|strong=\"H2022\"* Horeb|strong=\"H2722\"* onward." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* Moses|strong=\"H4872\"* used|strong=\"H1961\"* to|strong=\"H3318\"* take|strong=\"H3947\"* the|strong=\"H3605\"* tent and|strong=\"H4872\"* pitch|strong=\"H5186\"* it|strong=\"H7121\"* outside|strong=\"H2351\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, far|strong=\"H7368\"* away|strong=\"H3947\"* from|strong=\"H4480\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “The|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*.” Everyone|strong=\"H3605\"* who|strong=\"H3605\"* sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* outside|strong=\"H2351\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Tent, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* stood|strong=\"H5324\"*, everyone|strong=\"H3605\"* at|strong=\"H1961\"* their|strong=\"H3605\"* tent door|strong=\"H6607\"*, and|strong=\"H6965\"* watched Moses|strong=\"H4872\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H1961\"* gone|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* Tent." + }, + { + "verseNum": 9, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* entered|strong=\"H5975\"* into|strong=\"H3381\"* the|strong=\"H4872\"* Tent, the|strong=\"H4872\"* pillar|strong=\"H5982\"* of|strong=\"H5982\"* cloud|strong=\"H6051\"* descended|strong=\"H3381\"*, stood|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H4872\"* door|strong=\"H6607\"* of|strong=\"H5982\"* the|strong=\"H4872\"* Tent, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"* of|strong=\"H5971\"* cloud|strong=\"H6051\"* stand|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Tent, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* worshiped|strong=\"H7812\"*, everyone|strong=\"H3605\"* at|strong=\"H5975\"* their|strong=\"H3605\"* tent door|strong=\"H6607\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* face|strong=\"H6440\"* to|strong=\"H1696\"* face|strong=\"H6440\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H5288\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H3068\"* friend|strong=\"H7453\"*. He|strong=\"H3068\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, but|strong=\"H3808\"* his|strong=\"H3068\"* servant|strong=\"H5288\"* Joshua|strong=\"H3091\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, didn’t depart|strong=\"H4185\"* from|strong=\"H7725\"* the|strong=\"H6440\"* Tent." + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Behold|strong=\"H7200\"*, you|strong=\"H7971\"* tell|strong=\"H3045\"* me|strong=\"H7971\"*, ‘Bring|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* people|strong=\"H5971\"*;’ and|strong=\"H4872\"* you|strong=\"H7971\"* haven’t let|strong=\"H7971\"* me|strong=\"H7971\"* know|strong=\"H3045\"* whom|strong=\"H5971\"* you|strong=\"H7971\"* will|strong=\"H3068\"* send|strong=\"H7971\"* with|strong=\"H5973\"* me|strong=\"H7971\"*. Yet|strong=\"H1571\"* you|strong=\"H7971\"* have|strong=\"H3068\"* said, ‘I|strong=\"H3045\"* know|strong=\"H3045\"* you|strong=\"H7971\"* by|strong=\"H3068\"* name|strong=\"H8034\"*, and|strong=\"H4872\"* you|strong=\"H7971\"* have|strong=\"H3068\"* also|strong=\"H1571\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*.’" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*, please|strong=\"H4994\"* show|strong=\"H7200\"* me|strong=\"H4994\"* your|strong=\"H7200\"* way|strong=\"H1870\"*, now|strong=\"H6258\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4994\"* know|strong=\"H3045\"* you|strong=\"H3588\"*, so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4994\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*; and|strong=\"H5971\"* consider|strong=\"H7200\"* that|strong=\"H3588\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* is|strong=\"H2088\"* your|strong=\"H7200\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6440\"* said, “My|strong=\"H5117\"* presence|strong=\"H6440\"* will|strong=\"H6440\"* go|strong=\"H3212\"* with|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3212\"* I|strong=\"H6440\"* will|strong=\"H6440\"* give|strong=\"H5117\"* you|strong=\"H6440\"* rest|strong=\"H5117\"*.”" + }, + { + "verseNum": 15, + "text": "Moses said to|strong=\"H1980\"* him|strong=\"H6440\"*, “If your|strong=\"H6440\"* presence|strong=\"H6440\"* doesn’t go|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H6440\"*, don’t carry|strong=\"H5927\"* us|strong=\"H6440\"* up|strong=\"H5927\"* from|strong=\"H6440\"* here|strong=\"H2088\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* how|strong=\"H4100\"* would|strong=\"H5971\"* people|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3605\"* sight|strong=\"H5869\"*, I|strong=\"H3588\"* and|strong=\"H3212\"* your|strong=\"H3605\"* people|strong=\"H5971\"*? Isn’t it|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* separated|strong=\"H6395\"*, I|strong=\"H3588\"* and|strong=\"H3212\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, from|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth?”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* also|strong=\"H1571\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*, and|strong=\"H4872\"* I|strong=\"H3588\"* know|strong=\"H3045\"* you|strong=\"H3588\"* by|strong=\"H3068\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 18, + "text": "Moses said, “Please|strong=\"H4994\"* show|strong=\"H7200\"* me|strong=\"H4994\"* your|strong=\"H7200\"* glory|strong=\"H3519\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* said|strong=\"H7121\"*, “I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H2603\"* all|strong=\"H3605\"* my|strong=\"H3605\"* goodness|strong=\"H2898\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* proclaim|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* whom|strong=\"H6440\"* I|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H5921\"* whom|strong=\"H6440\"* I|strong=\"H5921\"* will|strong=\"H3068\"* show|strong=\"H7355\"* mercy|strong=\"H7355\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* cannot|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*, for|strong=\"H3588\"* man|strong=\"H6440\"* may|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"* me|strong=\"H6440\"* and|strong=\"H6440\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* said, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* a|strong=\"H3068\"* place|strong=\"H4725\"* by|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* stand|strong=\"H5324\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H7760\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, while|strong=\"H5704\"* my|strong=\"H7760\"* glory|strong=\"H3519\"* passes|strong=\"H5674\"* by|strong=\"H5921\"*, that|strong=\"H5704\"* I|strong=\"H5704\"* will|strong=\"H1961\"* put|strong=\"H7760\"* you|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* cleft|strong=\"H5366\"* of|strong=\"H3709\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*, and|strong=\"H3709\"* will|strong=\"H1961\"* cover|strong=\"H5526\"* you|strong=\"H5921\"* with|strong=\"H5921\"* my|strong=\"H7760\"* hand|strong=\"H3709\"* until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1961\"* passed|strong=\"H5674\"* by|strong=\"H5921\"*;" + }, + { + "verseNum": 23, + "text": "then|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H3808\"* take|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7200\"* hand|strong=\"H3709\"*, and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* back|strong=\"H5493\"*; but|strong=\"H3808\"* my|strong=\"H7200\"* face|strong=\"H6440\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* seen|strong=\"H7200\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Chisel two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H1961\"* the|strong=\"H5921\"* first|strong=\"H7223\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H3068\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* tablets|strong=\"H3871\"*, which|strong=\"H3068\"* you|strong=\"H5921\"* broke|strong=\"H7665\"*." + }, + { + "verseNum": 2, + "text": "Be|strong=\"H1961\"* ready|strong=\"H3559\"* by|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7218\"* come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H7218\"* present|strong=\"H5324\"* yourself|strong=\"H5324\"* there|strong=\"H8033\"* to|strong=\"H5927\"* me|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 3, + "text": "No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H3808\"* come|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* you|strong=\"H3605\"* or|strong=\"H3808\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* anywhere|strong=\"H3605\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*. Do|strong=\"H3605\"* not|strong=\"H3808\"* let|strong=\"H3808\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* or|strong=\"H3808\"* herds|strong=\"H1241\"* graze|strong=\"H7462\"* in|strong=\"H6629\"* front|strong=\"H4136\"* of|strong=\"H2022\"* that|strong=\"H7200\"* mountain|strong=\"H2022\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* chiseled two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* stone like|strong=\"H2022\"* the|strong=\"H3947\"* first|strong=\"H7223\"*; then|strong=\"H3947\"* Moses|strong=\"H4872\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3947\"* morning|strong=\"H1242\"*, and|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H3027\"*, and|strong=\"H4872\"* took|strong=\"H3947\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* descended|strong=\"H3381\"* in|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* stood|strong=\"H3320\"* with|strong=\"H5973\"* him|strong=\"H7121\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* proclaimed|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* proclaimed|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"*! Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H3068\"* gracious|strong=\"H2587\"* God|strong=\"H3068\"*, slow to|strong=\"H3068\"* anger|strong=\"H6440\"*, and|strong=\"H3068\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth," + }, + { + "verseNum": 7, + "text": "keeping|strong=\"H5341\"* loving kindness|strong=\"H2617\"* for|strong=\"H5921\"* thousands, forgiving|strong=\"H5375\"* iniquity|strong=\"H5771\"* and|strong=\"H1121\"* disobedience and|strong=\"H1121\"* sin|strong=\"H2403\"*; and|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1121\"* by|strong=\"H5921\"* no|strong=\"H3808\"* means|strong=\"H5352\"* clear|strong=\"H5352\"* the|strong=\"H5921\"* guilty|strong=\"H5771\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"*.”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* hurried|strong=\"H4116\"* and|strong=\"H4872\"* bowed|strong=\"H7812\"* his|strong=\"H4872\"* head|strong=\"H6915\"* toward the|strong=\"H4872\"* earth, and|strong=\"H4872\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* said, “If|strong=\"H3588\"* now|strong=\"H4994\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* your|strong=\"H3588\"* sight|strong=\"H5869\"*, Lord, please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H3588\"* Lord go|strong=\"H3212\"* among|strong=\"H7130\"* us|strong=\"H4994\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*; pardon|strong=\"H5545\"* our|strong=\"H3588\"* iniquity|strong=\"H5771\"* and|strong=\"H3212\"* our|strong=\"H3588\"* sin|strong=\"H2403\"*, and|strong=\"H3212\"* take|strong=\"H5157\"* us|strong=\"H4994\"* for|strong=\"H3588\"* your|strong=\"H3588\"* inheritance|strong=\"H5157\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H3588\"* make|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*: before|strong=\"H5048\"* all|strong=\"H3605\"* your|strong=\"H3068\"* people|strong=\"H5971\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* marvels|strong=\"H6381\"*, such|strong=\"H1931\"* as|strong=\"H6213\"* have|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H1254\"* worked|strong=\"H6213\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, nor|strong=\"H3808\"* in|strong=\"H3068\"* any|strong=\"H3605\"* nation|strong=\"H1471\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* among|strong=\"H7130\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* are|strong=\"H5971\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H6213\"* awesome|strong=\"H3372\"* thing|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* do|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Observe|strong=\"H8104\"* that|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6440\"* today|strong=\"H3117\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3117\"* drive|strong=\"H1644\"* out|strong=\"H1644\"* before|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 12, + "text": "Be|strong=\"H1961\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* you|strong=\"H5921\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* land|strong=\"H7130\"* where|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H1961\"* going, lest|strong=\"H6435\"* it|strong=\"H5921\"* be|strong=\"H1961\"* for|strong=\"H5921\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* among|strong=\"H7130\"* you|strong=\"H5921\"*;" + }, + { + "verseNum": 13, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3772\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H3588\"* altars|strong=\"H4196\"*, and|strong=\"H4196\"* dash in|strong=\"H4196\"* pieces|strong=\"H7665\"* their|strong=\"H3588\"* pillars|strong=\"H4676\"*, and|strong=\"H4196\"* you|strong=\"H3588\"* shall|strong=\"H3772\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* their|strong=\"H3588\"* Asherah poles;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* no|strong=\"H3808\"* other god|strong=\"H3068\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* Jealous|strong=\"H7067\"*, is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“Don’t make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H7121\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H7121\"* land, lest|strong=\"H6435\"* they|strong=\"H1285\"* play|strong=\"H2181\"* the|strong=\"H7121\"* prostitute|strong=\"H2181\"* after|strong=\"H7121\"* their|strong=\"H3772\"* gods, and|strong=\"H1285\"* sacrifice|strong=\"H2077\"* to|strong=\"H7121\"* their|strong=\"H3772\"* gods, and|strong=\"H1285\"* one call|strong=\"H7121\"* you|strong=\"H6435\"* and|strong=\"H1285\"* you|strong=\"H6435\"* eat of|strong=\"H3427\"* his|strong=\"H7121\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* you|strong=\"H3947\"* take|strong=\"H3947\"* of|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"* to|strong=\"H1121\"* your|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"* play|strong=\"H2181\"* the|strong=\"H3947\"* prostitute|strong=\"H2181\"* after their|strong=\"H3947\"* gods, and|strong=\"H1121\"* make|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* play|strong=\"H2181\"* the|strong=\"H3947\"* prostitute|strong=\"H2181\"* after their|strong=\"H3947\"* gods." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H6213\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* cast idols for|strong=\"H6213\"* yourselves." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, as|strong=\"H3117\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*, at|strong=\"H2320\"* the|strong=\"H3588\"* time|strong=\"H3117\"* appointed|strong=\"H4150\"* in|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"* Abib; for|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"* Abib you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 19, + "text": "“All|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"* is|strong=\"H3605\"* mine|strong=\"H2142\"*; and|strong=\"H4735\"* all|strong=\"H3605\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* that|strong=\"H3605\"* is|strong=\"H3605\"* male, the|strong=\"H3605\"* firstborn|strong=\"H6363\"* of|strong=\"H3605\"* cow|strong=\"H7794\"* and|strong=\"H4735\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* with|strong=\"H6440\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*. If|strong=\"H7200\"* you|strong=\"H6440\"* will|strong=\"H1121\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* it|strong=\"H7200\"*, then|strong=\"H7200\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* break|strong=\"H6202\"* its|strong=\"H3605\"* neck|strong=\"H6202\"*. You|strong=\"H6440\"* shall|strong=\"H1121\"* redeem|strong=\"H6299\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H1121\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 21, + "text": "“Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* work|strong=\"H5647\"*, but|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H5647\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* rest|strong=\"H7673\"*: in|strong=\"H3117\"* plowing|strong=\"H2758\"* time|strong=\"H3117\"* and|strong=\"H3117\"* in|strong=\"H3117\"* harvest|strong=\"H7105\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* rest|strong=\"H7673\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H6213\"* shall|strong=\"H8141\"* observe|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* weeks|strong=\"H7620\"* with|strong=\"H6213\"* the|strong=\"H6213\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* of|strong=\"H8141\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* harvest|strong=\"H7105\"* at|strong=\"H6213\"* the|strong=\"H6213\"* year|strong=\"H8141\"*’s end|strong=\"H8622\"*." + }, + { + "verseNum": 23, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* all|strong=\"H3605\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H3588\"* and|strong=\"H3068\"* enlarge|strong=\"H7337\"* your|strong=\"H3068\"* borders|strong=\"H1366\"*; neither|strong=\"H3808\"* shall|strong=\"H3068\"* any|strong=\"H6440\"* man|strong=\"H6440\"* desire|strong=\"H2530\"* your|strong=\"H3068\"* land|strong=\"H6440\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* the|strong=\"H6440\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 25, + "text": "“You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7819\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H2077\"* my|strong=\"H5921\"* sacrifice|strong=\"H2077\"* with|strong=\"H5921\"* leavened|strong=\"H2557\"* bread|strong=\"H2557\"*. The|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H2077\"* the|strong=\"H5921\"* Passover|strong=\"H6453\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* left|strong=\"H3885\"* to|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 26, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3068\"* bring the|strong=\"H3068\"* first|strong=\"H7225\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* your|strong=\"H3068\"* ground to|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Write|strong=\"H3789\"* these|strong=\"H3789\"* words|strong=\"H1697\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* accordance|strong=\"H5921\"* with|strong=\"H3068\"* these|strong=\"H3789\"* words|strong=\"H1697\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H4872\"* with|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 28, + "text": "He|strong=\"H3117\"* was|strong=\"H3068\"* there|strong=\"H8033\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*; he|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"*, nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*. He|strong=\"H3117\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"*, the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* Moses|strong=\"H4872\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* with|strong=\"H1696\"* the|strong=\"H6440\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H6440\"* covenant in|strong=\"H1696\"* Moses|strong=\"H4872\"*’ hand|strong=\"H3027\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, Moses|strong=\"H4872\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H6440\"* skin|strong=\"H5785\"* of|strong=\"H3027\"* his|strong=\"H6440\"* face|strong=\"H6440\"* shone|strong=\"H7160\"* by|strong=\"H3027\"* reason|strong=\"H6440\"* of|strong=\"H3027\"* his|strong=\"H6440\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H7200\"* Aaron and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Moses|strong=\"H4872\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* his|strong=\"H3605\"* face|strong=\"H6440\"* shone|strong=\"H7160\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* were|strong=\"H3478\"* afraid|strong=\"H3372\"* to|strong=\"H3478\"* come|strong=\"H5066\"* near|strong=\"H5066\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H7725\"*, and|strong=\"H4872\"* Aaron and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rulers|strong=\"H5387\"* of|strong=\"H5712\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* him|strong=\"H7121\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 32, + "text": "Afterward all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* he|strong=\"H3651\"* gave|strong=\"H6680\"* them|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H6680\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"H3615\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* done|strong=\"H3615\"* speaking|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5414\"*, he|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* veil|strong=\"H4533\"* on|strong=\"H5921\"* his|strong=\"H5414\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H1696\"* when|strong=\"H3318\"* Moses|strong=\"H4872\"* went|strong=\"H3318\"* in|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H6440\"*, he|strong=\"H5704\"* took|strong=\"H5493\"* the|strong=\"H6440\"* veil|strong=\"H4533\"* off|strong=\"H5493\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H1121\"* he|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H5704\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* Moses|strong=\"H4872\"*’ face|strong=\"H6440\"*, that|strong=\"H3588\"* the|strong=\"H6440\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*’ face|strong=\"H6440\"* shone|strong=\"H7160\"*; so|strong=\"H7725\"* Moses|strong=\"H4872\"* put|strong=\"H7725\"* the|strong=\"H6440\"* veil|strong=\"H4533\"* on|strong=\"H5921\"* his|strong=\"H7725\"* face|strong=\"H6440\"* again|strong=\"H7725\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* went|strong=\"H3478\"* in|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H6213\"*, “These|strong=\"H6213\"* are|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 2, + "text": "‘Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H1961\"* done|strong=\"H6213\"*, but|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* day|strong=\"H3117\"* for|strong=\"H6213\"* you|strong=\"H3605\"*, a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*: whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H3068\"* it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* kindle|strong=\"H1197\"* no|strong=\"H3808\"* fire throughout|strong=\"H3605\"* your|strong=\"H3605\"* habitations|strong=\"H4186\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1697\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "‘Take|strong=\"H3947\"* from|strong=\"H3947\"* among you|strong=\"H3605\"* an|strong=\"H3947\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Whoever|strong=\"H3605\"* is|strong=\"H3068\"* of|strong=\"H3068\"* a|strong=\"H3068\"* willing|strong=\"H5081\"* heart|strong=\"H3820\"*, let him|strong=\"H3947\"* bring|strong=\"H3947\"* it|strong=\"H3947\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*," + }, + { + "verseNum": 6, + "text": "blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair," + }, + { + "verseNum": 7, + "text": "rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, sea cow hides|strong=\"H5785\"*, acacia|strong=\"H7848\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 8, + "text": "oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, spices|strong=\"H1314\"* for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*," + }, + { + "verseNum": 9, + "text": "onyx|strong=\"H7718\"* stones, and|strong=\"H4394\"* stones to be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 10, + "text": "“‘Let every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"* among you|strong=\"H6680\"* come, and|strong=\"H3068\"* make|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*:" + }, + { + "verseNum": 11, + "text": "the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*, its outer covering|strong=\"H4372\"*, its roof, its clasps|strong=\"H7165\"*, its boards|strong=\"H7175\"*, its bars|strong=\"H1280\"*, its pillars|strong=\"H5982\"*, and|strong=\"H4908\"* its sockets;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H6532\"* ark, and|strong=\"H4539\"* its poles, the|strong=\"H6532\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*, the|strong=\"H6532\"* veil|strong=\"H6532\"* of|strong=\"H6532\"* the|strong=\"H6532\"* screen|strong=\"H4539\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"* with|strong=\"H6440\"* its|strong=\"H3605\"* poles and|strong=\"H3899\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3899\"* the|strong=\"H3605\"* show bread|strong=\"H3899\"*;" + }, + { + "verseNum": 14, + "text": "the lamp|strong=\"H5216\"* stand also for|strong=\"H3627\"* the light|strong=\"H3974\"*, with|strong=\"H3627\"* its|strong=\"H3627\"* vessels|strong=\"H3627\"*, its|strong=\"H3627\"* lamps|strong=\"H5216\"*, and|strong=\"H8081\"* the oil|strong=\"H8081\"* for|strong=\"H3627\"* the light|strong=\"H3974\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H4196\"* the|strong=\"H4908\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* incense|strong=\"H7004\"* with|strong=\"H4908\"* its poles, the|strong=\"H4908\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H4908\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H4908\"* screen|strong=\"H4539\"* for|strong=\"H4196\"* the|strong=\"H4908\"* door|strong=\"H6607\"*, at|strong=\"H6607\"* the|strong=\"H4908\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, with|strong=\"H3627\"* its|strong=\"H3605\"* grating|strong=\"H4345\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*, its|strong=\"H3605\"* poles, and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H8179\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"*, its pillars|strong=\"H5982\"*, their sockets, and|strong=\"H8179\"* the|strong=\"H8179\"* screen|strong=\"H4539\"* for the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H8179\"* court|strong=\"H2691\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H4908\"* pins|strong=\"H3489\"* of|strong=\"H4908\"* the|strong=\"H4908\"* tabernacle|strong=\"H4908\"*, the|strong=\"H4908\"* pins|strong=\"H3489\"* of|strong=\"H4908\"* the|strong=\"H4908\"* court|strong=\"H2691\"*, and|strong=\"H4908\"* their cords|strong=\"H4340\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments for|strong=\"H1121\"* ministering|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*—the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H8334\"* sons|strong=\"H1121\"*—to|strong=\"H1121\"* minister|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office.’”" + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* departed|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"*, everyone|strong=\"H3605\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* him|strong=\"H3605\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* everyone|strong=\"H3605\"* whom his|strong=\"H3605\"* spirit|strong=\"H7307\"* made|strong=\"H4399\"* willing|strong=\"H5068\"*, and|strong=\"H3068\"* brought|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"* for|strong=\"H3068\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* garments." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"*, both|strong=\"H3605\"* men|strong=\"H3605\"* and|strong=\"H3068\"* women, as|strong=\"H3068\"* many as|strong=\"H3068\"* were|strong=\"H3627\"* willing-hearted, and|strong=\"H3068\"* brought|strong=\"H3068\"* brooches|strong=\"H2397\"*, earrings|strong=\"H5141\"*, signet|strong=\"H2885\"* rings|strong=\"H2885\"*, and|strong=\"H3068\"* armlets, all|strong=\"H3605\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*; even|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H5081\"* who|strong=\"H3605\"* offered|strong=\"H5130\"* an|strong=\"H5130\"* offering|strong=\"H8573\"* of|strong=\"H3068\"* gold|strong=\"H2091\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Everyone|strong=\"H3605\"* with|strong=\"H3605\"* whom was|strong=\"H3605\"* found|strong=\"H4672\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, fine|strong=\"H8336\"* linen|strong=\"H8336\"*, goats|strong=\"H5795\"*’ hair, rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red|strong=\"H8144\"*, and|strong=\"H8504\"* sea cow hides|strong=\"H5785\"*, brought them|strong=\"H4672\"*." + }, + { + "verseNum": 24, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* offered|strong=\"H7311\"* an|strong=\"H4672\"* offering|strong=\"H8641\"* of|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* bronze|strong=\"H5178\"* brought|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H8641\"*; and|strong=\"H3068\"* everyone|strong=\"H3605\"* with|strong=\"H3068\"* whom was|strong=\"H3068\"* found|strong=\"H4672\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"* for|strong=\"H3068\"* any|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3068\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, brought|strong=\"H3068\"* it|strong=\"H4672\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H2450\"* who|strong=\"H3605\"* were|strong=\"H3027\"* wise-hearted spun|strong=\"H2901\"* with|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* brought|strong=\"H3027\"* that|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* had|strong=\"H3027\"* spun|strong=\"H2901\"*: the|strong=\"H3605\"* blue|strong=\"H8504\"*, the|strong=\"H3605\"* purple|strong=\"H8504\"*, the|strong=\"H3605\"* scarlet|strong=\"H8144\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* women whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* them|strong=\"H5375\"* up|strong=\"H5375\"* in|strong=\"H3820\"* wisdom|strong=\"H2451\"* spun|strong=\"H2901\"* the|strong=\"H3605\"* goats|strong=\"H5795\"*’ hair." + }, + { + "verseNum": 27, + "text": "The|strong=\"H2833\"* rulers|strong=\"H5387\"* brought the|strong=\"H2833\"* onyx|strong=\"H7718\"* stones and|strong=\"H5387\"* the|strong=\"H2833\"* stones to|strong=\"H5387\"* be set|strong=\"H4394\"* for|strong=\"H4394\"* the|strong=\"H2833\"* ephod and|strong=\"H5387\"* for|strong=\"H4394\"* the|strong=\"H2833\"* breastplate|strong=\"H2833\"*;" + }, + { + "verseNum": 28, + "text": "with|strong=\"H5561\"* the spice|strong=\"H1314\"* and|strong=\"H8081\"* the oil|strong=\"H8081\"* for|strong=\"H8081\"* the light|strong=\"H3974\"*, for|strong=\"H8081\"* the anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* for|strong=\"H8081\"* the sweet|strong=\"H5561\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* brought|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*; every|strong=\"H3605\"* man|strong=\"H1121\"* and|strong=\"H1121\"* woman whose|strong=\"H1121\"* heart|strong=\"H3820\"* made|strong=\"H6213\"* them|strong=\"H3027\"* willing|strong=\"H5068\"* to|strong=\"H3478\"* bring|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* be|strong=\"H3027\"* made|strong=\"H6213\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Behold|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H3068\"* name|strong=\"H8034\"* Bezalel|strong=\"H1212\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H7200\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3605\"* has|strong=\"H7307\"* filled|strong=\"H4390\"* him|strong=\"H3605\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God|strong=\"H2451\"*, in|strong=\"H4399\"* wisdom|strong=\"H2451\"*, in|strong=\"H4399\"* understanding|strong=\"H8394\"*, in|strong=\"H4399\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* in|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7307\"* workmanship|strong=\"H4399\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H3701\"* to|strong=\"H6213\"* make|strong=\"H6213\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*, to|strong=\"H6213\"* work|strong=\"H6213\"* in|strong=\"H6213\"* gold|strong=\"H2091\"*, in|strong=\"H6213\"* silver|strong=\"H3701\"*, in|strong=\"H6213\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 33, + "text": "in|strong=\"H6213\"* cutting|strong=\"H2799\"* of|strong=\"H4390\"* stones for|strong=\"H6213\"* setting, and|strong=\"H6086\"* in|strong=\"H6213\"* carving|strong=\"H2799\"* of|strong=\"H4390\"* wood|strong=\"H6086\"*, to|strong=\"H6213\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* skillful workmanship|strong=\"H4399\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H1931\"* has|strong=\"H3820\"* put|strong=\"H5414\"* in|strong=\"H1121\"* his|strong=\"H5414\"* heart|strong=\"H3820\"* that|strong=\"H1931\"* he|strong=\"H1931\"* may|strong=\"H1121\"* teach|strong=\"H3384\"*, both|strong=\"H3384\"* he|strong=\"H1931\"* and|strong=\"H1121\"* Oholiab, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H6213\"* has|strong=\"H3820\"* filled|strong=\"H4390\"* them|strong=\"H6213\"* with|strong=\"H4390\"* wisdom|strong=\"H2451\"* of|strong=\"H4390\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* work|strong=\"H4399\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H4390\"* workmanship|strong=\"H4399\"*, of|strong=\"H4390\"* the|strong=\"H3605\"* engraver|strong=\"H2796\"*, of|strong=\"H4390\"* the|strong=\"H3605\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* the|strong=\"H3605\"* embroiderer|strong=\"H7551\"*, in|strong=\"H6213\"* blue|strong=\"H8504\"*, in|strong=\"H6213\"* purple|strong=\"H8504\"*, in|strong=\"H6213\"* scarlet|strong=\"H8144\"*, and|strong=\"H2451\"* in|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* the|strong=\"H3605\"* weaver|strong=\"H7551\"*, even|strong=\"H6213\"* of|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* any|strong=\"H3605\"* workmanship|strong=\"H4399\"*, and|strong=\"H2451\"* of|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* skillful|strong=\"H2803\"* works|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "“Bezalel|strong=\"H1212\"* and|strong=\"H3068\"* Oholiab shall|strong=\"H3068\"* work|strong=\"H4399\"* with|strong=\"H3068\"* every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"*, in|strong=\"H3068\"* whom|strong=\"H1992\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"* and|strong=\"H3068\"* understanding|strong=\"H8394\"* to|strong=\"H3068\"* know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* for|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* Bezalel|strong=\"H1212\"* and|strong=\"H4872\"* Oholiab, and|strong=\"H4872\"* every|strong=\"H3605\"* wise-hearted man|strong=\"H2450\"*, in|strong=\"H3068\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"*, even|strong=\"H6213\"* everyone|strong=\"H3605\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* stirred|strong=\"H5375\"* him|strong=\"H5414\"* up|strong=\"H5375\"* to|strong=\"H3068\"* come|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H3605\"* work|strong=\"H4399\"* to|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* received|strong=\"H3947\"* from|strong=\"H6440\"* Moses|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* which|strong=\"H1992\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* brought|strong=\"H3947\"* for|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, with|strong=\"H6213\"* which|strong=\"H1992\"* to|strong=\"H3478\"* make|strong=\"H6213\"* it|strong=\"H6213\"*. They|strong=\"H1992\"* kept|strong=\"H6213\"* bringing free will|strong=\"H3478\"* offerings|strong=\"H5071\"* to|strong=\"H3478\"* him|strong=\"H6440\"* every|strong=\"H3605\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*, who|strong=\"H3605\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, each|strong=\"H3605\"* came from|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"* which|strong=\"H1992\"* he|strong=\"H6213\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying, “The|strong=\"H6213\"* people|strong=\"H5971\"* have|strong=\"H3068\"* brought|strong=\"H6213\"* much|strong=\"H7235\"* more|strong=\"H7235\"* than|strong=\"H7235\"* enough|strong=\"H1767\"* for|strong=\"H6213\"* the|strong=\"H6213\"* service|strong=\"H5656\"* of|strong=\"H3068\"* the|strong=\"H6213\"* work|strong=\"H4399\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* make|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H6680\"* a|strong=\"H3068\"* commandment|strong=\"H6680\"*, and|strong=\"H4872\"* they|strong=\"H6213\"* caused|strong=\"H5674\"* it|strong=\"H6213\"* to|strong=\"H6213\"* be|strong=\"H5750\"* proclaimed|strong=\"H6963\"* throughout|strong=\"H5674\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*, saying|strong=\"H6963\"*, “Let neither man|strong=\"H5674\"* nor|strong=\"H5674\"* woman make|strong=\"H6213\"* anything|strong=\"H4399\"* else|strong=\"H5750\"* for|strong=\"H6213\"* the|strong=\"H6213\"* offering|strong=\"H8641\"* for|strong=\"H6213\"* the|strong=\"H6213\"* sanctuary|strong=\"H6944\"*.” So|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"* were|strong=\"H5971\"* restrained|strong=\"H3607\"* from|strong=\"H5674\"* bringing." + }, + { + "verseNum": 7, + "text": "For|strong=\"H6213\"* the|strong=\"H3605\"* stuff|strong=\"H4399\"* they|strong=\"H6213\"* had|strong=\"H1961\"* was|strong=\"H1961\"* sufficient|strong=\"H1767\"* to|strong=\"H1961\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, and|strong=\"H6213\"* too|strong=\"H1961\"* much|strong=\"H3498\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wise-hearted men|strong=\"H2450\"* among those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* made|strong=\"H6213\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* with|strong=\"H6213\"* ten|strong=\"H6235\"* curtains|strong=\"H3407\"* of|strong=\"H3820\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H8504\"* scarlet|strong=\"H8144\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"*, the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3820\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* length of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* was|strong=\"H3605\"* twenty-eight|strong=\"H6242\"* cubits,+ 36:9 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* of|strong=\"H3605\"* each|strong=\"H3605\"* curtain|strong=\"H3407\"* four cubits. All|strong=\"H3605\"* the|strong=\"H3605\"* curtains|strong=\"H3407\"* had|strong=\"H3407\"* one|strong=\"H3605\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H2568\"* coupled|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* to|strong=\"H2266\"* one|strong=\"H2266\"* another, and|strong=\"H2568\"* the|strong=\"H2266\"* other five|strong=\"H2568\"* curtains|strong=\"H3407\"* he|strong=\"H2568\"* coupled|strong=\"H2266\"* to|strong=\"H2266\"* one|strong=\"H2266\"* another." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3651\"* made|strong=\"H6213\"* loops|strong=\"H3924\"* of|strong=\"H5921\"* blue|strong=\"H8504\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"* from|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*. Likewise|strong=\"H3651\"* he|strong=\"H3651\"* made|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H3651\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H6213\"* curtain|strong=\"H3407\"*, and|strong=\"H2572\"* he|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* in|strong=\"H6213\"* the|strong=\"H6213\"* edge|strong=\"H7097\"* of|strong=\"H7097\"* the|strong=\"H6213\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* was|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*. The|strong=\"H6213\"* loops|strong=\"H3924\"* were opposite|strong=\"H6901\"* to|strong=\"H6213\"* one|strong=\"H6213\"* another|strong=\"H8145\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H4908\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* coupled|strong=\"H2266\"* the|strong=\"H6213\"* curtains|strong=\"H3407\"* to|strong=\"H1961\"* one|strong=\"H1961\"* another with|strong=\"H6213\"* the|strong=\"H6213\"* clasps|strong=\"H7165\"*: so|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* goats|strong=\"H5795\"*’ hair for|strong=\"H5921\"* a|strong=\"H3068\"* covering over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H5921\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4060\"* length of|strong=\"H7341\"* each curtain|strong=\"H3407\"* was|strong=\"H3407\"* thirty|strong=\"H7970\"* cubits, and|strong=\"H7970\"* four cubits the|strong=\"H4060\"* width|strong=\"H7341\"* of|strong=\"H7341\"* each curtain|strong=\"H3407\"*. The|strong=\"H4060\"* eleven|strong=\"H6249\"* curtains|strong=\"H3407\"* had|strong=\"H3407\"* one|strong=\"H7341\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H2568\"* coupled|strong=\"H2266\"* five|strong=\"H2568\"* curtains|strong=\"H3407\"* by|strong=\"H3407\"* themselves, and|strong=\"H2568\"* six|strong=\"H8337\"* curtains|strong=\"H3407\"* by|strong=\"H3407\"* themselves." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* that|strong=\"H6213\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* coupling|strong=\"H4225\"*, and|strong=\"H2572\"* he|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* loops|strong=\"H3924\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* curtain|strong=\"H3407\"* which|strong=\"H3407\"* was|strong=\"H8193\"* outermost|strong=\"H7020\"* in|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* coupling|strong=\"H4225\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* clasps|strong=\"H7165\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"* to|strong=\"H1961\"* couple|strong=\"H2266\"* the|strong=\"H6213\"* tent together|strong=\"H2266\"*, that|strong=\"H6213\"* it|strong=\"H6213\"* might be|strong=\"H1961\"* a|strong=\"H3068\"* unit." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tent of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, and|strong=\"H6213\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, standing|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 21, + "text": "Ten|strong=\"H6235\"* cubits was the|strong=\"H2677\"* length of|strong=\"H2677\"* a|strong=\"H3068\"* board|strong=\"H7175\"*, and|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H7341\"* a|strong=\"H3068\"* half|strong=\"H2677\"* the|strong=\"H2677\"* width|strong=\"H7341\"* of|strong=\"H2677\"* each|strong=\"H7175\"* board|strong=\"H7175\"*." + }, + { + "verseNum": 22, + "text": "Each|strong=\"H3605\"* board|strong=\"H7175\"* had|strong=\"H3027\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, joined to|strong=\"H6213\"* one|strong=\"H3605\"* another. He|strong=\"H3651\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boards|strong=\"H7175\"* of|strong=\"H3027\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* this|strong=\"H3651\"* way|strong=\"H3651\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, twenty|strong=\"H6242\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* forty sockets of|strong=\"H3027\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* the|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*: two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H6213\"* board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*, and|strong=\"H6242\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"* for|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* tenons|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* side|strong=\"H6285\"* of|strong=\"H4908\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*, on|strong=\"H6213\"* the|strong=\"H6213\"* north|strong=\"H6828\"* side|strong=\"H6285\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* twenty|strong=\"H6242\"* boards|strong=\"H7175\"*" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3701\"* their|strong=\"H8478\"* forty sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*: two|strong=\"H8147\"* sockets under|strong=\"H8478\"* one|strong=\"H8147\"* board|strong=\"H7175\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* sockets under|strong=\"H8478\"* another board|strong=\"H7175\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* part|strong=\"H3411\"* of|strong=\"H3220\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"* he|strong=\"H6213\"* made|strong=\"H6213\"* six|strong=\"H8337\"* boards|strong=\"H7175\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* boards|strong=\"H7175\"* for|strong=\"H6213\"* the|strong=\"H6213\"* corners|strong=\"H4742\"* of|strong=\"H8147\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"* in|strong=\"H6213\"* the|strong=\"H6213\"* far|strong=\"H3411\"* part|strong=\"H3411\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3651\"* were|strong=\"H1961\"* double|strong=\"H8147\"* beneath|strong=\"H4295\"*, and|strong=\"H7218\"* in|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H3651\"* way|strong=\"H3651\"* they|strong=\"H3651\"* were|strong=\"H1961\"* all|strong=\"H3162\"* the|strong=\"H6213\"* way|strong=\"H3651\"* to|strong=\"H1961\"* its|strong=\"H6213\"* top|strong=\"H7218\"* to|strong=\"H1961\"* one|strong=\"H1961\"* ring|strong=\"H2885\"*. He|strong=\"H3651\"* did|strong=\"H6213\"* this|strong=\"H3651\"* to|strong=\"H1961\"* both|strong=\"H8147\"* of|strong=\"H7218\"* them|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* corners|strong=\"H4740\"*." + }, + { + "verseNum": 30, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* eight|strong=\"H8083\"* boards|strong=\"H7175\"* and|strong=\"H3701\"* their|strong=\"H1961\"* sockets of|strong=\"H8478\"* silver|strong=\"H3701\"*, sixteen|strong=\"H8337\"* sockets—under|strong=\"H8478\"* every|strong=\"H8478\"* board|strong=\"H7175\"* two|strong=\"H8147\"* sockets." + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* bars|strong=\"H1280\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*: five|strong=\"H2568\"* for|strong=\"H6213\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* of|strong=\"H6086\"* the|strong=\"H6213\"* one|strong=\"H6213\"* side|strong=\"H6763\"* of|strong=\"H6086\"* the|strong=\"H6213\"* tabernacle|strong=\"H4908\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* other|strong=\"H8145\"* side|strong=\"H6763\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* bars|strong=\"H1280\"* for|strong=\"H4908\"* the|strong=\"H8145\"* boards|strong=\"H7175\"* of|strong=\"H3220\"* the|strong=\"H8145\"* tabernacle|strong=\"H4908\"* for|strong=\"H4908\"* the|strong=\"H8145\"* hinder part|strong=\"H3411\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* bar|strong=\"H1280\"* to|strong=\"H6213\"* pass|strong=\"H6213\"* through|strong=\"H4480\"* in|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* of|strong=\"H4480\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* from|strong=\"H4480\"* the|strong=\"H6213\"* one|strong=\"H4480\"* end|strong=\"H7097\"* to|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H7097\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* the|strong=\"H6213\"* boards|strong=\"H7175\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* their|strong=\"H6213\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* as|strong=\"H6213\"* places|strong=\"H1004\"* for|strong=\"H6213\"* the|strong=\"H6213\"* bars|strong=\"H1280\"*, and|strong=\"H1004\"* overlaid|strong=\"H6823\"* the|strong=\"H6213\"* bars|strong=\"H1280\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* veil|strong=\"H6532\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, with|strong=\"H6213\"* cherubim|strong=\"H3742\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* four pillars|strong=\"H5982\"* of|strong=\"H5982\"* acacia|strong=\"H7848\"* for|strong=\"H6213\"* it|strong=\"H6213\"*, and|strong=\"H3701\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*. Their|strong=\"H6213\"* hooks|strong=\"H2053\"* were|strong=\"H3701\"* of|strong=\"H5982\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* cast|strong=\"H3332\"* four sockets of|strong=\"H5982\"* silver|strong=\"H3701\"* for|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* screen|strong=\"H4539\"* for|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H4639\"* the|strong=\"H6213\"* tent, of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* an|strong=\"H6213\"* embroiderer|strong=\"H7551\"*;" + }, + { + "verseNum": 38, + "text": "and|strong=\"H2091\"* the|strong=\"H6823\"* five|strong=\"H2568\"* pillars|strong=\"H5982\"* of|strong=\"H7218\"* it|strong=\"H7218\"* with|strong=\"H6823\"* their|strong=\"H6823\"* hooks|strong=\"H2053\"*. He|strong=\"H2568\"* overlaid|strong=\"H6823\"* their|strong=\"H6823\"* capitals and|strong=\"H2091\"* their|strong=\"H6823\"* fillets|strong=\"H2838\"* with|strong=\"H6823\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* their|strong=\"H6823\"* five|strong=\"H2568\"* sockets were|strong=\"H7218\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Bezalel|strong=\"H1212\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ark of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* two|strong=\"H6213\"* and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits,+ 37:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*, and|strong=\"H6086\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* a|strong=\"H3068\"* molding|strong=\"H2213\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* it|strong=\"H6213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8147\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* its|strong=\"H5921\"* four feet|strong=\"H6471\"*—two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* its|strong=\"H5921\"* one|strong=\"H8147\"* side|strong=\"H6763\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* its|strong=\"H5921\"* other|strong=\"H8145\"* side|strong=\"H6763\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"* and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* put|strong=\"H5375\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, to|strong=\"H5921\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* of|strong=\"H2677\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. Its|strong=\"H6213\"* length was|strong=\"H6213\"* two|strong=\"H6213\"* and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* cubits, and|strong=\"H2091\"* a|strong=\"H3068\"* cubit and|strong=\"H2091\"* a|strong=\"H3068\"* half|strong=\"H2677\"* its|strong=\"H6213\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* of|strong=\"H8147\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H8147\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*, at|strong=\"H6213\"* the|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H8147\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*:" + }, + { + "verseNum": 8, + "text": "one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H2088\"* end|strong=\"H7098\"*, and|strong=\"H6213\"* one|strong=\"H2088\"* cherub|strong=\"H3742\"* at|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H2088\"* end|strong=\"H7098\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* cherubim|strong=\"H3742\"* of|strong=\"H4480\"* one|strong=\"H2088\"* piece with|strong=\"H6213\"* the|strong=\"H6213\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* at|strong=\"H6213\"* its|strong=\"H6213\"* two|strong=\"H8147\"* ends|strong=\"H7098\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* above|strong=\"H4605\"*, covering|strong=\"H5526\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* with|strong=\"H5921\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*, with|strong=\"H5921\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* toward|strong=\"H5921\"* one|strong=\"H1961\"* another|strong=\"H3671\"*. The|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherubim|strong=\"H3742\"* were|strong=\"H1961\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* table|strong=\"H7979\"* of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* two|strong=\"H6213\"* cubits, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* was|strong=\"H6967\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* a|strong=\"H3068\"* cubit and|strong=\"H6086\"* a|strong=\"H3068\"* half|strong=\"H2677\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* border|strong=\"H2213\"* of|strong=\"H6213\"* a|strong=\"H3068\"* hand|strong=\"H2948\"*’s width around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* molding|strong=\"H2213\"* on|strong=\"H2091\"* its|strong=\"H6213\"* border|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5414\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* in|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6285\"* that|strong=\"H5414\"* were|strong=\"H7272\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four feet|strong=\"H7272\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5375\"* rings|strong=\"H2885\"* were|strong=\"H1961\"* close|strong=\"H5980\"* by|strong=\"H1961\"* the|strong=\"H5375\"* border|strong=\"H4526\"*, the|strong=\"H5375\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5375\"* poles to|strong=\"H1961\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5375\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*, to|strong=\"H6213\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* table|strong=\"H7979\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* which|strong=\"H2004\"* were|strong=\"H3709\"* on|strong=\"H5921\"* the|strong=\"H5921\"* table|strong=\"H7979\"*, its|strong=\"H5921\"* dishes|strong=\"H7086\"*, its|strong=\"H5921\"* spoons|strong=\"H3709\"*, its|strong=\"H5921\"* bowls|strong=\"H4518\"*, and|strong=\"H2091\"* its|strong=\"H5921\"* pitchers|strong=\"H7184\"* with|strong=\"H6213\"* which|strong=\"H2004\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"*, of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* lamp stand of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* lamp stand of|strong=\"H4480\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*. Its|strong=\"H6213\"* base|strong=\"H3409\"*, its|strong=\"H6213\"* shaft|strong=\"H3409\"*, its|strong=\"H6213\"* cups|strong=\"H1375\"*, its|strong=\"H6213\"* buds|strong=\"H6525\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece|strong=\"H4749\"* with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 18, + "text": "There were|strong=\"H7969\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* sides|strong=\"H6654\"*: three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* one|strong=\"H8145\"* side|strong=\"H6654\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* branches|strong=\"H7070\"* of|strong=\"H3318\"* the|strong=\"H3318\"* lamp stand out|strong=\"H3318\"* of|strong=\"H3318\"* its|strong=\"H3318\"* other|strong=\"H8145\"* side|strong=\"H6654\"*:" + }, + { + "verseNum": 19, + "text": "three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* one|strong=\"H4480\"* branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*, and|strong=\"H3318\"* three|strong=\"H7969\"* cups|strong=\"H1375\"* made like|strong=\"H3651\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"* in|strong=\"H3318\"* the|strong=\"H4480\"* other branch|strong=\"H7070\"*, a|strong=\"H3068\"* bud|strong=\"H6525\"* and|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6525\"*; so|strong=\"H3651\"* for|strong=\"H3318\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* lamp stand." + }, + { + "verseNum": 20, + "text": "In|strong=\"H6525\"* the lamp stand were|strong=\"H6525\"* four cups|strong=\"H1375\"* made like|strong=\"H8246\"* almond|strong=\"H8246\"* blossoms|strong=\"H6525\"*, its buds|strong=\"H6525\"* and|strong=\"H6525\"* its flowers|strong=\"H6525\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, and|strong=\"H3318\"* a|strong=\"H3068\"* bud under|strong=\"H8478\"* two|strong=\"H8147\"* branches|strong=\"H7070\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H3318\"* it|strong=\"H3318\"*, for|strong=\"H8478\"* the|strong=\"H4480\"* six|strong=\"H8337\"* branches|strong=\"H7070\"* going|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* it|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "Their|strong=\"H3605\"* buds and|strong=\"H2091\"* their|strong=\"H3605\"* branches|strong=\"H7070\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H3605\"* piece|strong=\"H4749\"* with|strong=\"H3605\"* it|strong=\"H1961\"*. The|strong=\"H3605\"* whole|strong=\"H3605\"* thing|strong=\"H3605\"* was|strong=\"H1961\"* one|strong=\"H3605\"* beaten|strong=\"H4749\"* work|strong=\"H4749\"* of|strong=\"H4480\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H6213\"* seven|strong=\"H7651\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* snuffers|strong=\"H4457\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* snuff dishes, of|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H6213\"* of|strong=\"H3627\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 37:24 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3627\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, with|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* incense|strong=\"H7004\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. It|strong=\"H6213\"* was|strong=\"H1961\"* square|strong=\"H7251\"*: its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H1961\"* a|strong=\"H3068\"* cubit, and|strong=\"H6086\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit. Its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H1961\"* two|strong=\"H4480\"* cubits. Its|strong=\"H6213\"* horns|strong=\"H7161\"* were|strong=\"H1961\"* of|strong=\"H4196\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*: its|strong=\"H6213\"* top|strong=\"H1406\"*, its|strong=\"H6213\"* sides|strong=\"H5439\"* around|strong=\"H5439\"* it|strong=\"H6213\"*, and|strong=\"H2091\"* its|strong=\"H6213\"* horns|strong=\"H7161\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* gold|strong=\"H2091\"* molding|strong=\"H2213\"* around|strong=\"H5439\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* rings|strong=\"H2885\"* for|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* its|strong=\"H5921\"* molding|strong=\"H2213\"* crown|strong=\"H2213\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* ribs|strong=\"H6763\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* two|strong=\"H8147\"* sides|strong=\"H6654\"*, for|strong=\"H5921\"* places|strong=\"H1004\"* for|strong=\"H5921\"* poles with|strong=\"H1004\"* which|strong=\"H1004\"* to|strong=\"H6213\"* carry|strong=\"H5375\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* and|strong=\"H8081\"* the|strong=\"H6213\"* pure|strong=\"H2889\"* incense|strong=\"H7004\"* of|strong=\"H4639\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"*, after the|strong=\"H6213\"* art|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* perfumer|strong=\"H7543\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H4196\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*. It|strong=\"H6213\"* was|strong=\"H6967\"* square|strong=\"H7251\"*. Its|strong=\"H6213\"* length|strong=\"H6967\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*,+ 38:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H6213\"* width|strong=\"H7341\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, and|strong=\"H6086\"* its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H5921\"* horns|strong=\"H7161\"* on|strong=\"H5921\"* its|strong=\"H5921\"* four corners|strong=\"H6438\"*. Its|strong=\"H5921\"* horns|strong=\"H7161\"* were|strong=\"H1961\"* of|strong=\"H4480\"* one|strong=\"H4480\"* piece with|strong=\"H6213\"* it|strong=\"H5921\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* overlaid|strong=\"H6823\"* it|strong=\"H5921\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* basins|strong=\"H4219\"*, the|strong=\"H3605\"* forks|strong=\"H4207\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* fire pans|strong=\"H5518\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* a|strong=\"H3068\"* grating|strong=\"H4345\"* of|strong=\"H4196\"* a|strong=\"H3068\"* network|strong=\"H7568\"* of|strong=\"H4196\"* bronze|strong=\"H5178\"*, under|strong=\"H8478\"* the|strong=\"H6213\"* ledge|strong=\"H3749\"* around it|strong=\"H6213\"* beneath|strong=\"H8478\"*, reaching|strong=\"H5704\"* halfway|strong=\"H2677\"* up|strong=\"H5704\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1004\"* cast|strong=\"H3332\"* four rings|strong=\"H2885\"* for|strong=\"H1004\"* the|strong=\"H1004\"* four corners of|strong=\"H1004\"* bronze|strong=\"H5178\"* grating|strong=\"H4345\"*, to|strong=\"H1004\"* be|strong=\"H1004\"* places|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H1004\"* poles." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* poles of|strong=\"H6086\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* put|strong=\"H6213\"* the|strong=\"H5921\"* poles into|strong=\"H5921\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* sides|strong=\"H6763\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, with|strong=\"H6213\"* which|strong=\"H4196\"* to|strong=\"H6213\"* carry|strong=\"H5375\"* it|strong=\"H5921\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* it|strong=\"H5921\"* hollow|strong=\"H5014\"* with|strong=\"H6213\"* planks|strong=\"H3871\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* basin|strong=\"H3595\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H6213\"* its|strong=\"H6213\"* base|strong=\"H3653\"* of|strong=\"H6213\"* bronze|strong=\"H5178\"*, out|strong=\"H6213\"* of|strong=\"H6213\"* the|strong=\"H6213\"* mirrors|strong=\"H4759\"* of|strong=\"H6213\"* the|strong=\"H6213\"* ministering women|strong=\"H6633\"* who|strong=\"H6213\"* ministered at|strong=\"H6213\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H6213\"* the|strong=\"H6213\"* Tent of|strong=\"H6213\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"*: for|strong=\"H6213\"* the|strong=\"H6213\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* the|strong=\"H6213\"* hangings|strong=\"H7050\"* of|strong=\"H5045\"* the|strong=\"H6213\"* court|strong=\"H2691\"* were|strong=\"H5045\"* of|strong=\"H5045\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* cubits;" + }, + { + "verseNum": 10, + "text": "their pillars|strong=\"H5982\"* were|strong=\"H3701\"* twenty|strong=\"H6242\"*, and|strong=\"H6242\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the hooks|strong=\"H2053\"* of|strong=\"H5982\"* the pillars|strong=\"H5982\"* and|strong=\"H6242\"* their fillets|strong=\"H2838\"* were|strong=\"H3701\"* of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3701\"* the|strong=\"H3967\"* north|strong=\"H6828\"* side|strong=\"H6285\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits, their pillars|strong=\"H5982\"* twenty|strong=\"H6242\"*, and|strong=\"H3967\"* their sockets twenty|strong=\"H6242\"*, of|strong=\"H5982\"* bronze|strong=\"H5178\"*; the|strong=\"H3967\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3967\"* pillars|strong=\"H5982\"*, and|strong=\"H3967\"* their fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3701\"* the|strong=\"H3220\"* west|strong=\"H3220\"* side|strong=\"H6285\"* were|strong=\"H3701\"* hangings|strong=\"H7050\"* of|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits, their pillars|strong=\"H5982\"* ten|strong=\"H6235\"*, and|strong=\"H3701\"* their sockets ten|strong=\"H6235\"*; the|strong=\"H3220\"* hooks|strong=\"H2053\"* of|strong=\"H5982\"* the|strong=\"H3220\"* pillars|strong=\"H5982\"*, and|strong=\"H3701\"* their fillets|strong=\"H2838\"*, of|strong=\"H5982\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 13, + "text": "For the|strong=\"H6924\"* east|strong=\"H4217\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"* fifty|strong=\"H2572\"* cubits," + }, + { + "verseNum": 14, + "text": "the|strong=\"H7969\"* hangings|strong=\"H7050\"* for|strong=\"H2568\"* the|strong=\"H7969\"* one|strong=\"H7050\"* side|strong=\"H3802\"* were|strong=\"H7969\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their sockets three|strong=\"H7969\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H2568\"* so|strong=\"H2088\"* for|strong=\"H2088\"* the|strong=\"H2088\"* other|strong=\"H8145\"* side|strong=\"H3802\"*: on|strong=\"H7969\"* this|strong=\"H2088\"* hand and|strong=\"H2568\"* that|strong=\"H2088\"* hand by|strong=\"H8179\"* the|strong=\"H2088\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H2088\"* court|strong=\"H2691\"* were|strong=\"H7969\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* fifteen|strong=\"H2568\"* cubits|strong=\"H2568\"*; their|strong=\"H2088\"* pillars|strong=\"H5982\"* three|strong=\"H7969\"*, and|strong=\"H2568\"* their|strong=\"H2088\"* sockets three|strong=\"H7969\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* hangings|strong=\"H7050\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"* were|strong=\"H5439\"* of|strong=\"H3605\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* sockets for|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* were|strong=\"H1992\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"*. The|strong=\"H3605\"* hooks|strong=\"H2053\"* of|strong=\"H7218\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* and|strong=\"H3701\"* their|strong=\"H3605\"* fillets|strong=\"H2838\"* were|strong=\"H1992\"* of|strong=\"H7218\"* silver|strong=\"H3701\"*. Their|strong=\"H3605\"* capitals were|strong=\"H1992\"* overlaid|strong=\"H6826\"* with|strong=\"H3605\"* silver|strong=\"H3701\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H7218\"* the|strong=\"H3605\"* court|strong=\"H2691\"* had silver|strong=\"H3701\"* bands|strong=\"H2838\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5980\"* screen|strong=\"H4539\"* for|strong=\"H4639\"* the|strong=\"H5980\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5980\"* court|strong=\"H2691\"* was|strong=\"H6967\"* the|strong=\"H5980\"* work|strong=\"H4639\"* of|strong=\"H8179\"* the|strong=\"H5980\"* embroiderer|strong=\"H7551\"*, of|strong=\"H8179\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H6242\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*. Twenty|strong=\"H6242\"* cubits|strong=\"H2568\"* was|strong=\"H6967\"* the|strong=\"H5980\"* length|strong=\"H6967\"*, and|strong=\"H6242\"* the|strong=\"H5980\"* height|strong=\"H6967\"* along|strong=\"H5980\"* the|strong=\"H5980\"* width|strong=\"H7341\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, like|strong=\"H5980\"* the|strong=\"H5980\"* hangings|strong=\"H7050\"* of|strong=\"H8179\"* the|strong=\"H5980\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 19, + "text": "Their pillars|strong=\"H5982\"* were|strong=\"H7218\"* four, and|strong=\"H3701\"* their sockets four, of|strong=\"H7218\"* bronze|strong=\"H5178\"*; their hooks|strong=\"H2053\"* of|strong=\"H7218\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H7218\"* overlaying|strong=\"H6826\"* of|strong=\"H7218\"* their capitals, and|strong=\"H3701\"* their fillets|strong=\"H2838\"*, of|strong=\"H7218\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H3605\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H5178\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, were|strong=\"H5439\"* of|strong=\"H3605\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 21, + "text": "These|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5921\"* amounts of|strong=\"H1121\"* materials used for|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, as|strong=\"H1121\"* they|strong=\"H5921\"* were|strong=\"H1121\"* counted|strong=\"H6485\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "Bezalel|strong=\"H1212\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, made|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 23, + "text": "With|strong=\"H1121\"* him|strong=\"H2803\"* was|strong=\"H1121\"* Oholiab, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahisamach, of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, an|strong=\"H2803\"* engraver|strong=\"H2796\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, and|strong=\"H1121\"* an|strong=\"H2803\"* embroiderer|strong=\"H7551\"* in|strong=\"H1121\"* blue|strong=\"H8504\"*, in|strong=\"H1121\"* purple|strong=\"H8504\"*, in|strong=\"H1121\"* scarlet|strong=\"H8144\"*, and|strong=\"H1121\"* in|strong=\"H1121\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* was|strong=\"H1961\"* used|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H3603\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, even|strong=\"H6213\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H3603\"* the|strong=\"H3605\"* offering|strong=\"H8573\"*, was|strong=\"H1961\"* twenty-nine|strong=\"H6242\"* talents|strong=\"H3603\"*+ 38:24 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces.* and|strong=\"H3967\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*, according to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 38:24 A shekel is about 10 grams or about 0.32 Troy ounces.* of|strong=\"H3603\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6485\"* silver|strong=\"H3701\"* of|strong=\"H3603\"* those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H3603\"* the|strong=\"H6485\"* congregation|strong=\"H5712\"* was|strong=\"H5712\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 38:25 A talent is about 30 kilograms or 66 pounds* and|strong=\"H3967\"* one|strong=\"H3967\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* shekels|strong=\"H8255\"*,+ 38:25 A shekel is about 10 grams or about 0.35 ounces.* according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H6485\"* shekel|strong=\"H8255\"* of|strong=\"H3603\"* the|strong=\"H6485\"* sanctuary|strong=\"H6944\"*:" + }, + { + "verseNum": 26, + "text": "a|strong=\"H3068\"* beka|strong=\"H1235\"*+ 38:26 a beka is about 5 grams or about 0.175 ounces* a|strong=\"H3068\"* head|strong=\"H1538\"*, that|strong=\"H3605\"* is|strong=\"H3605\"*, half|strong=\"H4276\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*+ 38:26 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, for|strong=\"H5921\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, for|strong=\"H5921\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 38:27 A talent is about 30 kilograms or 66 pounds.* of|strong=\"H3603\"* silver|strong=\"H3701\"* were|strong=\"H1961\"* for|strong=\"H3701\"* casting|strong=\"H3332\"* the|strong=\"H1961\"* sockets of|strong=\"H3603\"* the|strong=\"H1961\"* sanctuary|strong=\"H6944\"* and|strong=\"H3967\"* the|strong=\"H1961\"* sockets of|strong=\"H3603\"* the|strong=\"H1961\"* veil|strong=\"H6532\"*: one|strong=\"H1961\"* hundred|strong=\"H3967\"* sockets for|strong=\"H3701\"* the|strong=\"H1961\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*, one|strong=\"H1961\"* talent|strong=\"H3603\"* per socket." + }, + { + "verseNum": 28, + "text": "From|strong=\"H3967\"* the|strong=\"H6213\"* one|strong=\"H6213\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* shekels+ 38:28 A shekel is about 10 grams or about 0.35 ounces, so 1775 shekels is about 17.75 kilograms or about 39 pounds.* he|strong=\"H6213\"* made|strong=\"H6213\"* hooks|strong=\"H2053\"* for|strong=\"H6213\"* the|strong=\"H6213\"* pillars|strong=\"H5982\"*, overlaid|strong=\"H6823\"* their|strong=\"H6213\"* capitals, and|strong=\"H3967\"* made|strong=\"H6213\"* fillets for|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3967\"* bronze|strong=\"H5178\"* of|strong=\"H3603\"* the|strong=\"H3967\"* offering|strong=\"H8573\"* was|strong=\"H3603\"* seventy|strong=\"H7657\"* talents|strong=\"H3603\"*+ 38:29 A talent is about 30 kilograms or 66 pounds* and|strong=\"H3967\"* two|strong=\"H3967\"* thousand four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*.+ 38:29 70 talents + 2400 shekels is about 2124 kilograms, or 2.124 metric tons.*" + }, + { + "verseNum": 30, + "text": "With|strong=\"H6213\"* this|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H3605\"* sockets to|strong=\"H6213\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* grating|strong=\"H4345\"* for|strong=\"H6213\"* it|strong=\"H6213\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 31, + "text": "the|strong=\"H3605\"* sockets around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* sockets of|strong=\"H8179\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* of|strong=\"H8179\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H4908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pins|strong=\"H3489\"* around|strong=\"H5439\"* the|strong=\"H3605\"* court|strong=\"H2691\"*." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H3068\"* the|strong=\"H6213\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H4872\"* scarlet|strong=\"H8144\"*, they|strong=\"H3068\"* made|strong=\"H6213\"* finely|strong=\"H8278\"* worked|strong=\"H6213\"* garments for|strong=\"H6213\"* ministering|strong=\"H8334\"* in|strong=\"H3068\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H4872\"* made|strong=\"H6213\"* the|strong=\"H6213\"* holy|strong=\"H6944\"* garments for|strong=\"H6213\"* Aaron, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ephod of|strong=\"H6213\"* gold|strong=\"H2091\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H6213\"* beat|strong=\"H7554\"* the|strong=\"H6213\"* gold|strong=\"H2091\"* into|strong=\"H8432\"* thin plates|strong=\"H7554\"*, and|strong=\"H2091\"* cut|strong=\"H7112\"* it|strong=\"H6213\"* into|strong=\"H8432\"* wires|strong=\"H6616\"*, to|strong=\"H6213\"* work|strong=\"H4639\"* it|strong=\"H6213\"* in|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* blue|strong=\"H8504\"*, the|strong=\"H6213\"* purple|strong=\"H8504\"*, the|strong=\"H6213\"* scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* the|strong=\"H6213\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H8432\"* the|strong=\"H6213\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* shoulder|strong=\"H3802\"* straps for|strong=\"H5921\"* it|strong=\"H5921\"*, joined|strong=\"H2266\"* together|strong=\"H2266\"*. It|strong=\"H5921\"* was|strong=\"H6213\"* joined|strong=\"H2266\"* together|strong=\"H2266\"* at|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* that|strong=\"H1931\"* was|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, with|strong=\"H3068\"* which|strong=\"H1931\"* to|strong=\"H3068\"* fasten it|strong=\"H1931\"* on|strong=\"H5921\"*, was|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* same|strong=\"H1931\"* piece, like|strong=\"H5921\"* its|strong=\"H5921\"* work|strong=\"H4639\"*: of|strong=\"H3068\"* gold|strong=\"H2091\"*, of|strong=\"H3068\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H4872\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* worked|strong=\"H6213\"* the|strong=\"H5921\"* onyx|strong=\"H7718\"* stones, enclosed in|strong=\"H5921\"* settings|strong=\"H4142\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, engraved|strong=\"H6605\"* with|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* shoulder|strong=\"H3802\"* straps of|strong=\"H1121\"* the|strong=\"H5921\"* ephod, to|strong=\"H3478\"* be|strong=\"H3068\"* stones of|strong=\"H1121\"* memorial|strong=\"H2146\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* breastplate|strong=\"H2833\"*, the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* workman|strong=\"H2803\"*, like|strong=\"H2803\"* the|strong=\"H6213\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod: of|strong=\"H4639\"* gold|strong=\"H2091\"*, of|strong=\"H4639\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H2091\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H6213\"* was|strong=\"H1961\"* square|strong=\"H7251\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* breastplate|strong=\"H2833\"* double|strong=\"H3717\"*. Its|strong=\"H6213\"* length was|strong=\"H1961\"* a|strong=\"H3068\"* span|strong=\"H2239\"*,+ 39:9 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* and|strong=\"H6213\"* its|strong=\"H6213\"* width|strong=\"H7341\"* a|strong=\"H3068\"* span|strong=\"H2239\"*, being|strong=\"H1961\"* double|strong=\"H3717\"*." + }, + { + "verseNum": 10, + "text": "They set|strong=\"H4390\"* in it four rows|strong=\"H2905\"* of|strong=\"H4390\"* stones. A|strong=\"H3068\"* row|strong=\"H2905\"* of|strong=\"H4390\"* ruby, topaz|strong=\"H6357\"*, and|strong=\"H6357\"* beryl was the|strong=\"H4390\"* first row|strong=\"H2905\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H8145\"* the|strong=\"H8145\"* second|strong=\"H8145\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* turquoise|strong=\"H5306\"*, a|strong=\"H3068\"* sapphire|strong=\"H5601\"*,+ 39:11 or, lapis lazuli * and|strong=\"H8145\"* an emerald|strong=\"H5306\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H7992\"* the|strong=\"H7992\"* third|strong=\"H7992\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* jacinth|strong=\"H3958\"*, an agate|strong=\"H7618\"*, and|strong=\"H7992\"* an amethyst;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H2091\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"* row|strong=\"H2905\"*, a|strong=\"H3068\"* chrysolite, an|strong=\"H2091\"* onyx|strong=\"H7718\"*, and|strong=\"H2091\"* a|strong=\"H3068\"* jasper|strong=\"H3471\"*. They|strong=\"H7243\"* were enclosed in|strong=\"H2091\"* gold|strong=\"H2091\"* settings|strong=\"H4142\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* stones were|strong=\"H3478\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, twelve|strong=\"H8147\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* names|strong=\"H8034\"*; like|strong=\"H3478\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*, everyone according|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* chains|strong=\"H8333\"* like|strong=\"H6213\"* cords|strong=\"H5688\"*, of|strong=\"H5921\"* braided|strong=\"H4639\"* work|strong=\"H4639\"* of|strong=\"H5921\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* settings|strong=\"H4865\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* two|strong=\"H8147\"* gold|strong=\"H2091\"* rings|strong=\"H2885\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* put|strong=\"H5414\"* the|strong=\"H5921\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* of|strong=\"H5921\"* gold|strong=\"H2091\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* at|strong=\"H5921\"* the|strong=\"H5921\"* ends|strong=\"H7098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* other|strong=\"H8147\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two|strong=\"H8147\"* braided chains|strong=\"H5688\"* they|strong=\"H5921\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* settings|strong=\"H4865\"*, and|strong=\"H6440\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod, in|strong=\"H5921\"* its|strong=\"H5414\"* front|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* rings|strong=\"H2885\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* ends|strong=\"H7098\"* of|strong=\"H1004\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*, on|strong=\"H5921\"* its|strong=\"H5921\"* edge|strong=\"H8193\"*, which|strong=\"H1004\"* was|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H5676\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ephod inward|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* two|strong=\"H8147\"* more|strong=\"H2091\"* rings|strong=\"H2885\"* of|strong=\"H6440\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* shoulder|strong=\"H3802\"* straps of|strong=\"H6440\"* the|strong=\"H6440\"* ephod underneath|strong=\"H4295\"*, in|strong=\"H5921\"* its|strong=\"H5414\"* front|strong=\"H6440\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* its|strong=\"H5414\"* coupling|strong=\"H4225\"*, above|strong=\"H4605\"* the|strong=\"H6440\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ephod." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* bound|strong=\"H7405\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* by|strong=\"H5921\"* its|strong=\"H5921\"* rings|strong=\"H2885\"* to|strong=\"H3068\"* the|strong=\"H5921\"* rings|strong=\"H2885\"* of|strong=\"H3068\"* the|strong=\"H5921\"* ephod with|strong=\"H3068\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H3068\"* blue|strong=\"H8504\"*, that|strong=\"H3068\"* it|strong=\"H5921\"* might|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H3068\"* the|strong=\"H5921\"* ephod, and|strong=\"H4872\"* that|strong=\"H3068\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* might|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H1961\"* loose|strong=\"H2118\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ephod, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* robe|strong=\"H4598\"* of|strong=\"H4639\"* the|strong=\"H6213\"* ephod of|strong=\"H4639\"* woven|strong=\"H6213\"* work|strong=\"H4639\"*, all|strong=\"H6213\"* of|strong=\"H4639\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H8432\"* opening|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H8432\"* robe|strong=\"H4598\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H6310\"* it|strong=\"H8432\"* was|strong=\"H6310\"* like|strong=\"H3808\"* the|strong=\"H8432\"* opening|strong=\"H6310\"* of|strong=\"H6310\"* a|strong=\"H3068\"* coat|strong=\"H8473\"* of|strong=\"H6310\"* mail|strong=\"H8473\"*, with|strong=\"H6310\"* a|strong=\"H3068\"* binding|strong=\"H8193\"* around|strong=\"H5439\"* its|strong=\"H5439\"* opening|strong=\"H6310\"*, that|strong=\"H3808\"* it|strong=\"H8432\"* should|strong=\"H8193\"* not|strong=\"H3808\"* be|strong=\"H3808\"* torn|strong=\"H7167\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"* pomegranates|strong=\"H7416\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, scarlet|strong=\"H8144\"*, and|strong=\"H8504\"* twined|strong=\"H7806\"* linen." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5921\"* made|strong=\"H6213\"* bells|strong=\"H6472\"* of|strong=\"H8432\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H5921\"* bells|strong=\"H6472\"* between|strong=\"H8432\"* the|strong=\"H5921\"* pomegranates|strong=\"H7416\"* around|strong=\"H5439\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H8432\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, between|strong=\"H8432\"* the|strong=\"H5921\"* pomegranates|strong=\"H7416\"*;" + }, + { + "verseNum": 26, + "text": "a|strong=\"H3068\"* bell|strong=\"H6472\"* and|strong=\"H4872\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, a|strong=\"H3068\"* bell|strong=\"H6472\"* and|strong=\"H4872\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* skirts|strong=\"H7757\"* of|strong=\"H3068\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* tunics|strong=\"H3801\"* of|strong=\"H1121\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* of|strong=\"H1121\"* woven|strong=\"H6213\"* work|strong=\"H4639\"* for|strong=\"H6213\"* Aaron and|strong=\"H1121\"* for|strong=\"H6213\"* his|strong=\"H6213\"* sons|strong=\"H1121\"*," + }, + { + "verseNum": 28, + "text": "the|strong=\"H6287\"* turban|strong=\"H4701\"* of|strong=\"H4701\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6287\"* linen|strong=\"H8336\"* headbands|strong=\"H4021\"* of|strong=\"H4701\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"*, the|strong=\"H6287\"* linen|strong=\"H8336\"* trousers of|strong=\"H4701\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*," + }, + { + "verseNum": 29, + "text": "the|strong=\"H3068\"* sash of|strong=\"H3068\"* fine|strong=\"H8336\"* twined|strong=\"H7806\"* linen|strong=\"H8336\"*, blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, and|strong=\"H4872\"* scarlet|strong=\"H8144\"*, the|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H3068\"* embroiderer|strong=\"H7551\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H5921\"* plate|strong=\"H6731\"* of|strong=\"H3068\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"* of|strong=\"H3068\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"* an|strong=\"H6213\"* inscription|strong=\"H6603\"*, like|strong=\"H6213\"* the|strong=\"H5921\"* engravings|strong=\"H6603\"* of|strong=\"H3068\"* a|strong=\"H3068\"* signet|strong=\"H2368\"*: “HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*”." + }, + { + "verseNum": 31, + "text": "They|strong=\"H3068\"* tied|strong=\"H6616\"* to|strong=\"H3068\"* it|strong=\"H5414\"* a|strong=\"H3068\"* lace|strong=\"H6616\"* of|strong=\"H3068\"* blue|strong=\"H8504\"*, to|strong=\"H3068\"* fasten|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* turban|strong=\"H4701\"* above|strong=\"H4605\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 32, + "text": "Thus|strong=\"H3651\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* was|strong=\"H3068\"* finished|strong=\"H3615\"*. The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*; so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3605\"* brought|strong=\"H4872\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* to|strong=\"H4872\"* Moses|strong=\"H4872\"*: the|strong=\"H3605\"* tent, with|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, its|strong=\"H3605\"* clasps|strong=\"H7165\"*, its|strong=\"H3605\"* boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets," + }, + { + "verseNum": 34, + "text": "the|strong=\"H6532\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* rams’ skins|strong=\"H5785\"* dyed|strong=\"H5785\"* red, the|strong=\"H6532\"* covering|strong=\"H4372\"* of|strong=\"H4372\"* sea cow hides|strong=\"H5785\"*, the|strong=\"H6532\"* veil|strong=\"H6532\"* of|strong=\"H4372\"* the|strong=\"H6532\"* screen|strong=\"H4539\"*," + }, + { + "verseNum": 35, + "text": "the ark of|strong=\"H3727\"* the covenant with|strong=\"H5715\"* its poles, the mercy|strong=\"H3727\"* seat|strong=\"H3727\"*," + }, + { + "verseNum": 36, + "text": "the|strong=\"H3605\"* table|strong=\"H7979\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* show bread|strong=\"H3899\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"H3605\"* pure|strong=\"H2889\"* lamp|strong=\"H5216\"* stand, its|strong=\"H3605\"* lamps|strong=\"H5216\"*, even the|strong=\"H3605\"* lamps|strong=\"H5216\"* to|strong=\"H3627\"* be|strong=\"H8081\"* set in|strong=\"H3627\"* order|strong=\"H4634\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* oil|strong=\"H8081\"* for|strong=\"H3627\"* the|strong=\"H3605\"* light|strong=\"H3974\"*," + }, + { + "verseNum": 38, + "text": "the|strong=\"H4196\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"*, the|strong=\"H4196\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H4196\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H4196\"* screen|strong=\"H4539\"* for|strong=\"H4196\"* the|strong=\"H4196\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H4196\"* Tent," + }, + { + "verseNum": 39, + "text": "the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, its|strong=\"H3605\"* grating|strong=\"H4345\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"*, its|strong=\"H3605\"* poles, all|strong=\"H3605\"* of|strong=\"H3627\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*," + }, + { + "verseNum": 40, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H3627\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, its|strong=\"H3605\"* cords|strong=\"H4340\"*, its|strong=\"H3605\"* pins|strong=\"H3489\"*, and|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H3627\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, for|strong=\"H3627\"* the|strong=\"H3605\"* Tent|strong=\"H3489\"* of|strong=\"H3627\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 41, + "text": "the|strong=\"H3548\"* finely|strong=\"H8278\"* worked garments for|strong=\"H1121\"* ministering|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, the|strong=\"H3548\"* holy|strong=\"H6944\"* garments for|strong=\"H1121\"* Aaron the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* garments of|strong=\"H1121\"* his|strong=\"H8334\"* sons|strong=\"H1121\"*, to|strong=\"H1121\"* minister|strong=\"H8334\"* in|strong=\"H1121\"* the|strong=\"H3548\"* priest|strong=\"H3548\"*’s office." + }, + { + "verseNum": 42, + "text": "According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H5656\"*." + }, + { + "verseNum": 43, + "text": "Moses|strong=\"H4872\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, and|strong=\"H4872\"* behold|strong=\"H2009\"*, they|strong=\"H3651\"* had|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"*. They|strong=\"H3651\"* had|strong=\"H3068\"* done|strong=\"H6213\"* so|strong=\"H3651\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* blessed|strong=\"H1288\"* them|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“On|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3117\"* tabernacle|strong=\"H4908\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5921\"* shall|strong=\"H6532\"* put|strong=\"H7760\"* the|strong=\"H5921\"* ark of|strong=\"H5921\"* the|strong=\"H5921\"* covenant in|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H8033\"* you|strong=\"H5921\"* shall|strong=\"H6532\"* screen|strong=\"H5526\"* the|strong=\"H5921\"* ark with|strong=\"H5921\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5927\"* shall bring|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* table|strong=\"H7979\"*, and|strong=\"H5927\"* set|strong=\"H6186\"* in|strong=\"H5927\"* order|strong=\"H6186\"* the|strong=\"H5927\"* things that|strong=\"H5927\"* are|strong=\"H7979\"* on|strong=\"H5927\"* it|strong=\"H5927\"*. You|strong=\"H5927\"* shall bring|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5927\"* lamp|strong=\"H5216\"* stand, and|strong=\"H5927\"* light|strong=\"H5216\"* its|strong=\"H5927\"* lamps|strong=\"H5216\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* for|strong=\"H6440\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant, and|strong=\"H2091\"* put|strong=\"H5414\"* the|strong=\"H6440\"* screen|strong=\"H4539\"* of|strong=\"H6440\"* the|strong=\"H6440\"* door|strong=\"H6607\"* to|strong=\"H5414\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 6, + "text": "“You|strong=\"H5414\"* shall|strong=\"H6440\"* set|strong=\"H5414\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* of|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* shall|strong=\"H4325\"* set|strong=\"H5414\"* the|strong=\"H5414\"* basin|strong=\"H3595\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* shall|strong=\"H4325\"* put|strong=\"H5414\"* water|strong=\"H4325\"* therein|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5414\"* shall|strong=\"H8179\"* set|strong=\"H7760\"* up|strong=\"H5414\"* the|strong=\"H5414\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5414\"*, and|strong=\"H8179\"* hang|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5414\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* anoint|strong=\"H4886\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H8081\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H1961\"* it|strong=\"H1961\"*, and|strong=\"H8081\"* shall|strong=\"H3627\"* make|strong=\"H3947\"* it|strong=\"H1961\"* holy|strong=\"H6944\"*, and|strong=\"H8081\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H8081\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3627\"* anoint|strong=\"H4886\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3627\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, with|strong=\"H4886\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H4196\"* sanctify|strong=\"H6942\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* will|strong=\"H1961\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H4886\"* shall anoint|strong=\"H4886\"* the|strong=\"H6942\"* basin|strong=\"H3595\"* and|strong=\"H6942\"* its base|strong=\"H3653\"*, and|strong=\"H6942\"* sanctify|strong=\"H6942\"* it|strong=\"H6942\"*." + }, + { + "verseNum": 12, + "text": "“You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H7126\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* wash|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H4886\"* shall put|strong=\"H3847\"* on|strong=\"H3847\"* Aaron the|strong=\"H6942\"* holy|strong=\"H6944\"* garments; and|strong=\"H6944\"* you|strong=\"H4886\"* shall anoint|strong=\"H4886\"* him|strong=\"H4886\"*, and|strong=\"H6944\"* sanctify|strong=\"H6942\"* him|strong=\"H4886\"*, that|strong=\"H6944\"* he may minister|strong=\"H3547\"* to|strong=\"H6944\"* me|strong=\"H4886\"* in|strong=\"H3847\"* the|strong=\"H6942\"* priest|strong=\"H3547\"*’s office." + }, + { + "verseNum": 14, + "text": "You|strong=\"H7126\"* shall|strong=\"H1121\"* bring|strong=\"H7126\"* his|strong=\"H7126\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* tunics|strong=\"H3801\"* on|strong=\"H3847\"* them|strong=\"H7126\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H4886\"* shall|strong=\"H1755\"* anoint|strong=\"H4886\"* them|strong=\"H1961\"*, as|strong=\"H3547\"* you|strong=\"H4886\"* anointed|strong=\"H4886\"* their|strong=\"H1961\"* father, that|strong=\"H1961\"* they may|strong=\"H1961\"* minister|strong=\"H3547\"* to|strong=\"H1961\"* me|strong=\"H4886\"* in|strong=\"H1755\"* the|strong=\"H1961\"* priest|strong=\"H3547\"*’s office. Their|strong=\"H1961\"* anointing|strong=\"H4888\"* shall|strong=\"H1755\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* for|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* priesthood|strong=\"H3550\"* throughout|strong=\"H1755\"* their|strong=\"H1961\"* generations|strong=\"H1755\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. According to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*, so|strong=\"H3651\"* he|strong=\"H6213\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H8141\"* the|strong=\"H6965\"* first|strong=\"H7223\"* month|strong=\"H2320\"* in|strong=\"H8141\"* the|strong=\"H6965\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, on|strong=\"H1961\"* the|strong=\"H6965\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6965\"* month|strong=\"H2320\"*, the|strong=\"H6965\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* raised|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 18, + "text": "Moses|strong=\"H4872\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"*, and|strong=\"H6965\"* laid|strong=\"H7760\"* its|strong=\"H5414\"* sockets, and|strong=\"H6965\"* set|strong=\"H7760\"* up|strong=\"H6965\"* its|strong=\"H5414\"* boards|strong=\"H7175\"*, and|strong=\"H6965\"* put|strong=\"H5414\"* in|strong=\"H5414\"* its|strong=\"H5414\"* bars|strong=\"H1280\"*, and|strong=\"H6965\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H5414\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* spread|strong=\"H6566\"* the|strong=\"H5921\"* covering|strong=\"H4372\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tent, and|strong=\"H4872\"* put|strong=\"H7760\"* the|strong=\"H5921\"* roof of|strong=\"H3068\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* above|strong=\"H4605\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5414\"* took|strong=\"H3947\"* and|strong=\"H3947\"* put|strong=\"H5414\"* the|strong=\"H5921\"* covenant into|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H3947\"* set|strong=\"H7760\"* the|strong=\"H5921\"* poles on|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H3947\"* put|strong=\"H5414\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* above|strong=\"H4605\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* brought|strong=\"H7760\"* the|strong=\"H5921\"* ark into|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* up|strong=\"H7760\"* the|strong=\"H5921\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H5921\"* screen|strong=\"H4539\"*, and|strong=\"H4872\"* screened|strong=\"H5526\"* the|strong=\"H5921\"* ark of|strong=\"H3068\"* the|strong=\"H5921\"* covenant, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* table|strong=\"H7979\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, outside|strong=\"H2351\"* of|strong=\"H5921\"* the|strong=\"H5921\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* set|strong=\"H6186\"* the|strong=\"H6440\"* bread|strong=\"H3899\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* it|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* lamp stand in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, opposite|strong=\"H5227\"* the|strong=\"H5921\"* table|strong=\"H7979\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* side|strong=\"H3409\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3068\"* lit the|strong=\"H6440\"* lamps|strong=\"H5216\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6440\"* put|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* in|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4872\"* he|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H7004\"* of|strong=\"H3068\"* sweet|strong=\"H5561\"* spices|strong=\"H5561\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H7760\"* put|strong=\"H7760\"* up|strong=\"H7760\"* the|strong=\"H7760\"* screen|strong=\"H4539\"* of|strong=\"H4908\"* the|strong=\"H7760\"* door|strong=\"H6607\"* to|strong=\"H6607\"* the|strong=\"H7760\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* it|strong=\"H7760\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4872\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H8033\"* set|strong=\"H7760\"* the|strong=\"H5414\"* basin|strong=\"H3595\"* between the|strong=\"H5414\"* Tent of|strong=\"H4325\"* Meeting|strong=\"H4150\"* and|strong=\"H4196\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* put|strong=\"H5414\"* water|strong=\"H4325\"* therein|strong=\"H8033\"*, with|strong=\"H7364\"* which|strong=\"H8033\"* to|strong=\"H5414\"* wash|strong=\"H7364\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"*, Aaron, and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"* washed|strong=\"H7364\"* their|strong=\"H7364\"* hands|strong=\"H3027\"* and|strong=\"H1121\"* their|strong=\"H7364\"* feet|strong=\"H7272\"* there|strong=\"H4480\"*." + }, + { + "verseNum": 32, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H4872\"* into the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* when|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*, they|strong=\"H3068\"* washed|strong=\"H7364\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5414\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* court|strong=\"H2691\"* around|strong=\"H5439\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"* and|strong=\"H6965\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, and|strong=\"H6965\"* set|strong=\"H5414\"* up|strong=\"H6965\"* the|strong=\"H5414\"* screen|strong=\"H4539\"* of|strong=\"H8179\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5414\"* court|strong=\"H2691\"*. So|strong=\"H5414\"* Moses|strong=\"H4872\"* finished|strong=\"H3615\"* the|strong=\"H5414\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H3068\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 35, + "text": "Moses|strong=\"H4872\"* wasn’t able|strong=\"H3201\"* to|strong=\"H3201\"* enter into|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 36, + "text": "When|strong=\"H1121\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5265\"* over|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* onward|strong=\"H5265\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* journeys|strong=\"H4550\"*;" + }, + { + "verseNum": 37, + "text": "but|strong=\"H3808\"* if the|strong=\"H3117\"* cloud|strong=\"H6051\"* wasn’t taken|strong=\"H5927\"* up|strong=\"H5927\"*, then|strong=\"H5927\"* they|strong=\"H3117\"* didn’t travel until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* it|strong=\"H5927\"* was|strong=\"H3117\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 38, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H3068\"* fire in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* by|strong=\"H5921\"* night|strong=\"H3915\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* journeys|strong=\"H4550\"*." + } + ] + } + ] + }, + { + "name": "Leviticus", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* called|strong=\"H7121\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"* from|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H7126\"*, ‘When|strong=\"H3588\"* anyone|strong=\"H3588\"* of|strong=\"H1121\"* you|strong=\"H3588\"* offers|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* your|strong=\"H3068\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* the|strong=\"H3588\"* livestock, from|strong=\"H4480\"* the|strong=\"H3588\"* herd|strong=\"H1241\"* and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3588\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 3, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H5930\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* from|strong=\"H4480\"* the|strong=\"H6440\"* herd|strong=\"H1241\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*. He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* it|strong=\"H5921\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* accepted|strong=\"H7521\"* for|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H1241\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* present|strong=\"H7126\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* and|strong=\"H1121\"* sprinkle|strong=\"H2236\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5408\"* shall skin|strong=\"H6584\"* the|strong=\"H6584\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* cut|strong=\"H5408\"* it into pieces|strong=\"H5409\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron|strong=\"H6186\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* fire on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* lay|strong=\"H5414\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Aaron|strong=\"H6186\"*’s sons|strong=\"H1121\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* lay|strong=\"H1121\"* the|strong=\"H5921\"* pieces|strong=\"H5409\"*, the|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* fat|strong=\"H6309\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3548\"* is|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4196\"* is|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H3605\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* wash|strong=\"H7364\"* its|strong=\"H3605\"* innards and|strong=\"H3068\"* its|strong=\"H3605\"* legs|strong=\"H3767\"* with|strong=\"H3068\"* water|strong=\"H4325\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* all|strong=\"H3605\"* of|strong=\"H3068\"* it|strong=\"H7130\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“‘If his|strong=\"H7126\"* offering|strong=\"H5930\"* is|strong=\"H7133\"* from|strong=\"H4480\"* the|strong=\"H4480\"* flock|strong=\"H6629\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* sheep|strong=\"H6629\"* or|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* goats|strong=\"H5795\"*, for|strong=\"H4480\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H4480\"* shall|strong=\"H8549\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"* side|strong=\"H5439\"* of|strong=\"H1121\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* shall|strong=\"H3548\"* cut|strong=\"H5408\"* it|strong=\"H5921\"* into|strong=\"H5921\"* its|strong=\"H5921\"* pieces|strong=\"H5409\"*, with|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"* and|strong=\"H6086\"* its|strong=\"H5921\"* fat|strong=\"H6309\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* lay|strong=\"H6186\"* them|strong=\"H5921\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3548\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4196\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H1931\"* the|strong=\"H3605\"* innards and|strong=\"H3068\"* the|strong=\"H3605\"* legs|strong=\"H3767\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* wash|strong=\"H7364\"* with|strong=\"H3068\"* water|strong=\"H4325\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* whole|strong=\"H3605\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H1121\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H1121\"* birds|strong=\"H5775\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* from|strong=\"H4480\"* turtledoves|strong=\"H8449\"* or|strong=\"H1121\"* of|strong=\"H1121\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* it|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3548\"* wring|strong=\"H4454\"* off|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H3548\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H3548\"* be|strong=\"H1818\"* drained|strong=\"H4680\"* out|strong=\"H4680\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H7023\"* of|strong=\"H7218\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H4196\"* he|strong=\"H4196\"* shall|strong=\"H6924\"* take|strong=\"H5493\"* away|strong=\"H5493\"* its|strong=\"H5493\"* crop|strong=\"H4760\"* and|strong=\"H4196\"* its|strong=\"H5493\"* feathers|strong=\"H5133\"*, and|strong=\"H4196\"* cast|strong=\"H7993\"* it|strong=\"H7993\"* beside the|strong=\"H5493\"* altar|strong=\"H4196\"* on|strong=\"H4725\"* the|strong=\"H5493\"* east|strong=\"H6924\"* part|strong=\"H6924\"*, in|strong=\"H5493\"* the|strong=\"H5493\"* place|strong=\"H4725\"* of|strong=\"H4196\"* the|strong=\"H5493\"* ashes|strong=\"H1880\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* tear|strong=\"H8156\"* it|strong=\"H1931\"* by|strong=\"H5921\"* its|strong=\"H5921\"* wings|strong=\"H3671\"*, but|strong=\"H3808\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* divide it|strong=\"H1931\"* apart. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H1931\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“‘When|strong=\"H3588\"* anyone|strong=\"H5315\"* offers|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, his|strong=\"H5414\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* pour|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8033\"* shall|strong=\"H3548\"* bring it|strong=\"H5921\"* to|strong=\"H3068\"* Aaron’s sons|strong=\"H1121\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*. He|strong=\"H8033\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* his|strong=\"H3605\"* handful|strong=\"H7062\"* of|strong=\"H1121\"* its|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* its|strong=\"H3605\"* oil|strong=\"H8081\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* frankincense|strong=\"H3828\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* its|strong=\"H3605\"* memorial on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, an|strong=\"H8033\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "That|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*’. It|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* part|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire." + }, + { + "verseNum": 4, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* of|strong=\"H4503\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* baked|strong=\"H3989\"* in|strong=\"H4503\"* the|strong=\"H3588\"* oven|strong=\"H8574\"*, it|strong=\"H7126\"* shall|strong=\"H7133\"* be|strong=\"H8081\"* unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, or|strong=\"H4682\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H1961\"* your|strong=\"H5921\"* offering|strong=\"H4503\"* is|strong=\"H1961\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* made|strong=\"H1961\"* on|strong=\"H5921\"* a|strong=\"H3068\"* griddle|strong=\"H4227\"*, it|strong=\"H5921\"* shall|strong=\"H7133\"* be|strong=\"H1961\"* of|strong=\"H5921\"* unleavened|strong=\"H4682\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* shall|strong=\"H1931\"* cut it|strong=\"H1931\"* in|strong=\"H5921\"* pieces|strong=\"H6595\"*, and|strong=\"H8081\"* pour|strong=\"H3332\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H1931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 7, + "text": "If your|strong=\"H6213\"* offering|strong=\"H4503\"* is|strong=\"H8081\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H4503\"* the|strong=\"H6213\"* pan|strong=\"H4802\"*, it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H8081\"* made|strong=\"H6213\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* with|strong=\"H6213\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3068\"* is|strong=\"H3068\"* made|strong=\"H6213\"* of|strong=\"H3068\"* these|strong=\"H6213\"* things to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* presented|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* it|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7311\"* from|strong=\"H4480\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* its|strong=\"H4480\"* memorial, and|strong=\"H3068\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*, an|strong=\"H4480\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "That|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*’. It|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* part|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire." + }, + { + "verseNum": 11, + "text": "“‘No|strong=\"H3808\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* which|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* made|strong=\"H6213\"* with|strong=\"H3068\"* yeast|strong=\"H7603\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* no|strong=\"H3808\"* yeast|strong=\"H7603\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* honey|strong=\"H1706\"*, as|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* your|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* season|strong=\"H4414\"* with|strong=\"H1285\"* salt|strong=\"H4417\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* allow|strong=\"H4414\"* the|strong=\"H3605\"* salt|strong=\"H4417\"* of|strong=\"H5921\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H5921\"* your|strong=\"H3605\"* God|strong=\"H3808\"*+ 2:13 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* to|strong=\"H5921\"* be|strong=\"H3808\"* lacking|strong=\"H7673\"* from|strong=\"H5921\"* your|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. With|strong=\"H1285\"* all|strong=\"H3605\"* your|strong=\"H3605\"* offerings|strong=\"H4503\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* offer|strong=\"H7126\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 14, + "text": "“‘If you|strong=\"H7126\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* for|strong=\"H3068\"* the|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* your|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* fresh|strong=\"H3759\"* heads of|strong=\"H3068\"* grain|strong=\"H3759\"* parched|strong=\"H7033\"* with|strong=\"H3068\"* fire and|strong=\"H3068\"* crushed." + }, + { + "verseNum": 15, + "text": "You|strong=\"H5414\"* shall|strong=\"H1931\"* put|strong=\"H5414\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"* and|strong=\"H8081\"* lay|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* as|strong=\"H3068\"* its|strong=\"H3605\"* memorial part|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H3605\"* crushed grain|strong=\"H3605\"* and|strong=\"H3068\"* part|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H3605\"* oil|strong=\"H8081\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* frankincense|strong=\"H3828\"*. It|strong=\"H5921\"* is|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“‘If|strong=\"H1931\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* it|strong=\"H1931\"* from|strong=\"H4480\"* the|strong=\"H6440\"* herd|strong=\"H1241\"*, whether|strong=\"H4480\"* male|strong=\"H2145\"* or|strong=\"H4480\"* female|strong=\"H5347\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3027\"* shall|strong=\"H3548\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* his|strong=\"H5921\"* offering|strong=\"H7133\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Aaron’s sons|strong=\"H1121\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* an|strong=\"H7126\"* offering|strong=\"H8002\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 4, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 5, + "text": "Aaron’s sons|strong=\"H1121\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* that|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire: it|strong=\"H5921\"* is|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H7133\"* for|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H3068\"* flock|strong=\"H6629\"*, either|strong=\"H4480\"* male|strong=\"H2145\"* or|strong=\"H4480\"* female|strong=\"H5347\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* a|strong=\"H3068\"* lamb|strong=\"H3775\"* for|strong=\"H6440\"* his|strong=\"H3068\"* offering|strong=\"H7133\"*, then|strong=\"H7126\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* he|strong=\"H3027\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* his|strong=\"H6440\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H1121\"* his|strong=\"H6440\"* offering|strong=\"H7133\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Aaron’s sons|strong=\"H1121\"* shall|strong=\"H1121\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* an|strong=\"H7126\"* offering|strong=\"H8002\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; its|strong=\"H3605\"* fat|strong=\"H2459\"*, the|strong=\"H3605\"* entire|strong=\"H3605\"* tail fat|strong=\"H2459\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H5493\"* away|strong=\"H5493\"* close|strong=\"H5980\"* to|strong=\"H3068\"* the|strong=\"H3605\"* backbone|strong=\"H6096\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* entrails|strong=\"H7130\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* entrails|strong=\"H7130\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*: it|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“‘If his|strong=\"H3068\"* offering|strong=\"H7133\"* is|strong=\"H3068\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3027\"* shall|strong=\"H1121\"* lay|strong=\"H5564\"* his|strong=\"H6440\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* its|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* sprinkle|strong=\"H2236\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* from|strong=\"H4480\"* it|strong=\"H5921\"* as|strong=\"H3068\"* his|strong=\"H3605\"* offering|strong=\"H7133\"*, an|strong=\"H7126\"* offering|strong=\"H7133\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 15, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H4196\"* on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*: it|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3605\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 17, + "text": "“‘It|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat neither|strong=\"H3808\"* fat|strong=\"H2459\"* nor|strong=\"H3808\"* blood|strong=\"H1818\"*.’”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* anyone|strong=\"H3605\"* sins|strong=\"H2398\"* unintentionally|strong=\"H7684\"*, in|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H1696\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H1121\"* does|strong=\"H6213\"* any|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"H2398\"* the|strong=\"H5921\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* sins|strong=\"H2403\"* so|strong=\"H7126\"* as|strong=\"H3068\"* to|strong=\"H3068\"* bring|strong=\"H7126\"* guilt on|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, then|strong=\"H7126\"* let him|strong=\"H5921\"* offer|strong=\"H7126\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* bull|strong=\"H6499\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3947\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H1818\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* the|strong=\"H3947\"* bull|strong=\"H6499\"*, and|strong=\"H3548\"* bring|strong=\"H3947\"* it|strong=\"H3947\"* to|strong=\"H4150\"* the|strong=\"H3947\"* Tent of|strong=\"H1818\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* finger in|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"*, and|strong=\"H3068\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H3605\"* rest of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* bull|strong=\"H6499\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* shall take|strong=\"H7311\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H4480\"* the|strong=\"H3605\"* bull|strong=\"H6499\"* of|strong=\"H4480\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* from|strong=\"H4480\"* it|strong=\"H5921\"*: the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards, and|strong=\"H6499\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 9, + "text": "and|strong=\"H8147\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*, he|strong=\"H8147\"* shall|strong=\"H8147\"* remove|strong=\"H5493\"*," + }, + { + "verseNum": 10, + "text": "as|strong=\"H4196\"* it|strong=\"H5921\"* is|strong=\"H3548\"* removed|strong=\"H7311\"* from|strong=\"H5921\"* the|strong=\"H5921\"* bull|strong=\"H7794\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H4196\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* shall|strong=\"H1320\"* carry the|strong=\"H3605\"* bull|strong=\"H6499\"*’s skin|strong=\"H5785\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* meat|strong=\"H1320\"*, with|strong=\"H5921\"* its|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* with|strong=\"H5921\"* its|strong=\"H3605\"* legs|strong=\"H3767\"*, its|strong=\"H3605\"* innards, and|strong=\"H7218\"* its|strong=\"H3605\"* dung|strong=\"H6569\"*" + }, + { + "verseNum": 12, + "text": "—all|strong=\"H3605\"* the|strong=\"H3605\"* rest of|strong=\"H4264\"* the|strong=\"H3605\"* bull|strong=\"H6499\"*—outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"* are|strong=\"H1880\"* poured|strong=\"H8211\"* out|strong=\"H3318\"*, and|strong=\"H6086\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* on|strong=\"H5921\"* wood|strong=\"H6086\"* with|strong=\"H8313\"* fire. It|strong=\"H5921\"* shall|strong=\"H2889\"* be|strong=\"H6086\"* burned|strong=\"H8313\"* where|strong=\"H4725\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"* are|strong=\"H1880\"* poured|strong=\"H8211\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 13, + "text": "“‘If the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* sins, and|strong=\"H3478\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* hidden|strong=\"H5956\"* from|strong=\"H3478\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3478\"* are|strong=\"H3478\"* guilty;" + }, + { + "verseNum": 14, + "text": "when|strong=\"H1121\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* in|strong=\"H5921\"* which|strong=\"H6951\"* they|strong=\"H5921\"* have|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H1121\"* known|strong=\"H3045\"*, then|strong=\"H7126\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* bring|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* killed|strong=\"H7819\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3548\"* anointed|strong=\"H4899\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring some of|strong=\"H1818\"* the|strong=\"H3548\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* the|strong=\"H3548\"* bull|strong=\"H6499\"* to|strong=\"H4150\"* the|strong=\"H3548\"* Tent of|strong=\"H1818\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* finger in|strong=\"H3068\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* and|strong=\"H3068\"* sprinkle|strong=\"H5137\"* it|strong=\"H6440\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* rest of|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3605\"* shall take|strong=\"H7311\"* from|strong=\"H4480\"* it|strong=\"H7311\"*, and|strong=\"H4196\"* burn|strong=\"H6999\"* it|strong=\"H7311\"* on|strong=\"H3605\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3651\"* shall|strong=\"H3548\"* do|strong=\"H6213\"* this|strong=\"H3651\"* with|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"*; as|strong=\"H6213\"* he|strong=\"H3651\"* did|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H5921\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* shall|strong=\"H3548\"* do|strong=\"H6213\"* with|strong=\"H6213\"* this|strong=\"H3651\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3548\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* shall|strong=\"H6951\"* carry|strong=\"H3318\"* the|strong=\"H3318\"* bull|strong=\"H6499\"* outside|strong=\"H2351\"* the|strong=\"H3318\"* camp|strong=\"H4264\"*, and|strong=\"H6499\"* burn|strong=\"H8313\"* it|strong=\"H1931\"* as|strong=\"H3318\"* he|strong=\"H1931\"* burned|strong=\"H8313\"* the|strong=\"H3318\"* first|strong=\"H7223\"* bull|strong=\"H6499\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H3318\"* the|strong=\"H3318\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H6213\"* a|strong=\"H3068\"* ruler|strong=\"H5387\"* sins|strong=\"H2398\"*, and|strong=\"H3068\"* unwittingly|strong=\"H7684\"* does|strong=\"H6213\"* any|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 23, + "text": "if|strong=\"H2398\"* his|strong=\"H3045\"* sin|strong=\"H2403\"* in|strong=\"H8549\"* which|strong=\"H2403\"* he|strong=\"H5795\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H2403\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3045\"* him|strong=\"H3045\"*, he|strong=\"H5795\"* shall|strong=\"H8163\"* bring|strong=\"H2398\"* as|strong=\"H2403\"* his|strong=\"H3045\"* offering|strong=\"H2403\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1931\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* it|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H3068\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* his|strong=\"H5414\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. He|strong=\"H5414\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H5921\"* rest of|strong=\"H4196\"* its|strong=\"H5414\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H4196\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3548\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3605\"* sin|strong=\"H2403\"*, and|strong=\"H3548\"* he|strong=\"H3605\"* will|strong=\"H2403\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 27, + "text": "“‘If|strong=\"H2398\"* anyone|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H6213\"* common people|strong=\"H5971\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"*, in|strong=\"H3068\"* doing|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* things|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 28, + "text": "if|strong=\"H2398\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H5921\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"* is|strong=\"H2403\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, then|strong=\"H3045\"* he|strong=\"H5921\"* shall|strong=\"H2398\"* bring|strong=\"H2398\"* for|strong=\"H5921\"* his|strong=\"H5921\"* offering|strong=\"H2403\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, a|strong=\"H3068\"* female|strong=\"H5347\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, for|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H5921\"* has|strong=\"H3045\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3605\"* of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* with|strong=\"H5921\"* his|strong=\"H3605\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3548\"* the|strong=\"H3605\"* rest of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* take|strong=\"H5493\"* away|strong=\"H5493\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* is|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 32, + "text": "“‘If he|strong=\"H5347\"* brings a|strong=\"H3068\"* lamb|strong=\"H3532\"* as|strong=\"H3532\"* his offering|strong=\"H2403\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, he|strong=\"H5347\"* shall|strong=\"H8549\"* bring a|strong=\"H3068\"* female|strong=\"H5347\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3027\"* shall|strong=\"H3027\"* lay|strong=\"H5564\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* kill|strong=\"H7819\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H5921\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3605\"* of|strong=\"H4196\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* his|strong=\"H3605\"* finger, and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest of|strong=\"H4196\"* its|strong=\"H3605\"* blood|strong=\"H1818\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* remove|strong=\"H5493\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fat|strong=\"H2459\"*, like|strong=\"H5921\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* lamb|strong=\"H3775\"* is|strong=\"H3068\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* offerings|strong=\"H8002\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3722\"* by|strong=\"H5921\"* fire. The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“‘If|strong=\"H3588\"* anyone|strong=\"H5315\"* sins|strong=\"H2398\"*, in|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H1931\"* hears|strong=\"H8085\"* a|strong=\"H3068\"* public|strong=\"H6963\"* adjuration to|strong=\"H8085\"* testify, he|strong=\"H1931\"* being|strong=\"H5315\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*, whether|strong=\"H7200\"* he|strong=\"H1931\"* has|strong=\"H3588\"* seen|strong=\"H7200\"* or|strong=\"H3808\"* known|strong=\"H3045\"*, if|strong=\"H3588\"* he|strong=\"H1931\"* doesn’t report|strong=\"H5046\"* it|strong=\"H1931\"*, then|strong=\"H5375\"* he|strong=\"H1931\"* shall|strong=\"H5315\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 2, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H1931\"* anyone|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H1697\"*, whether|strong=\"H4480\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* an|strong=\"H4480\"* unclean|strong=\"H2931\"* animal|strong=\"H2416\"*, or|strong=\"H4480\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* unclean|strong=\"H2931\"* livestock, or|strong=\"H4480\"* the|strong=\"H3605\"* carcass|strong=\"H5038\"* of|strong=\"H1697\"* unclean|strong=\"H2931\"* creeping|strong=\"H2931\"* things|strong=\"H1697\"*, and|strong=\"H1697\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H1931\"*, and|strong=\"H1697\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*, then|strong=\"H3605\"* he|strong=\"H1931\"* shall|strong=\"H5315\"* be|strong=\"H1697\"* guilty." + }, + { + "verseNum": 3, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H3588\"* he|strong=\"H1931\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H4480\"* man|strong=\"H3605\"*, whatever|strong=\"H3605\"* his|strong=\"H3605\"* uncleanness|strong=\"H2932\"* is|strong=\"H1931\"* with|strong=\"H3045\"* which|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2930\"*, and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H2930\"*; when|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* of|strong=\"H4480\"* it|strong=\"H1931\"*, then|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H4480\"* guilty." + }, + { + "verseNum": 4, + "text": "“‘Or|strong=\"H4480\"* if|strong=\"H3588\"* anyone|strong=\"H3605\"* swears|strong=\"H7650\"* rashly|strong=\"H8193\"* with|strong=\"H3045\"* his|strong=\"H3605\"* lips|strong=\"H8193\"* to|strong=\"H7650\"* do|strong=\"H3190\"* evil|strong=\"H7489\"* or|strong=\"H4480\"* to|strong=\"H7650\"* do|strong=\"H3190\"* good|strong=\"H3190\"*—whatever|strong=\"H3605\"* it|strong=\"H1931\"* is|strong=\"H1931\"* that|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* might utter|strong=\"H3605\"* rashly|strong=\"H8193\"* with|strong=\"H3045\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*, and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* him|strong=\"H1931\"*—when|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* of|strong=\"H4480\"* it|strong=\"H1931\"*, then|strong=\"H3588\"* he|strong=\"H1931\"* will|strong=\"H5315\"* be|strong=\"H5315\"* guilty of|strong=\"H4480\"* one|strong=\"H3605\"* of|strong=\"H4480\"* these|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5921\"* shall|strong=\"H2398\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H1961\"* guilty of|strong=\"H5921\"* one|strong=\"H1961\"* of|strong=\"H5921\"* these, he|strong=\"H3588\"* shall|strong=\"H2398\"* confess|strong=\"H3034\"* that|strong=\"H3588\"* in|strong=\"H5921\"* which|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* sinned|strong=\"H2398\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* bring|strong=\"H2398\"* his|strong=\"H3068\"* trespass|strong=\"H2398\"* offering|strong=\"H2403\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*: a|strong=\"H3068\"* female|strong=\"H5347\"* from|strong=\"H4480\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*, a|strong=\"H3068\"* lamb|strong=\"H3776\"* or|strong=\"H4480\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 7, + "text": "“‘If|strong=\"H2398\"* he|strong=\"H3068\"* can|strong=\"H3808\"*’t afford|strong=\"H3027\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H5060\"* his|strong=\"H3068\"* trespass|strong=\"H2398\"* offering|strong=\"H5930\"* for|strong=\"H3027\"* that|strong=\"H3068\"* in|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sinned|strong=\"H2398\"*, two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; one|strong=\"H3808\"* for|strong=\"H3027\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H3068\"* other|strong=\"H8147\"* for|strong=\"H3027\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H7126\"* the|strong=\"H7126\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* shall|strong=\"H3548\"* first|strong=\"H7223\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* one|strong=\"H3808\"* which|strong=\"H3548\"* is|strong=\"H7218\"* for|strong=\"H3808\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. He|strong=\"H3808\"* shall|strong=\"H3548\"* wring|strong=\"H4454\"* off|strong=\"H4454\"* its|strong=\"H4454\"* head|strong=\"H7218\"* from|strong=\"H2403\"* its|strong=\"H4454\"* neck|strong=\"H6203\"*, but|strong=\"H3808\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* sever it|strong=\"H7126\"* completely." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* shall|strong=\"H1931\"* sprinkle|strong=\"H5137\"* some of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* on|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H7023\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H4196\"* the|strong=\"H5921\"* rest|strong=\"H7604\"* of|strong=\"H4196\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* shall|strong=\"H1931\"* be|strong=\"H1818\"* drained|strong=\"H4680\"* out|strong=\"H4680\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* second|strong=\"H8145\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* ordinance|strong=\"H4941\"*; and|strong=\"H4941\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* which|strong=\"H3548\"* he|strong=\"H6213\"* has|strong=\"H6213\"* sinned|strong=\"H2398\"*, and|strong=\"H4941\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 11, + "text": "“‘But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H1931\"* can|strong=\"H3808\"*’t afford|strong=\"H3027\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, then|strong=\"H5414\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* bring|strong=\"H5414\"* as|strong=\"H3588\"* his|strong=\"H5414\"* offering|strong=\"H2403\"* for|strong=\"H3588\"* that|strong=\"H3588\"* in|strong=\"H5921\"* which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3588\"* sinned|strong=\"H2398\"*, one|strong=\"H3808\"* tenth|strong=\"H6224\"* of|strong=\"H1121\"* an|strong=\"H5414\"* ephah+ 5:11 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. He|strong=\"H1931\"* shall|strong=\"H1121\"* put|strong=\"H5414\"* no|strong=\"H3808\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* put|strong=\"H5414\"* any|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* bring it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* his|strong=\"H3068\"* handful|strong=\"H7062\"* of|strong=\"H3068\"* it|strong=\"H1931\"* as|strong=\"H3068\"* the|strong=\"H5921\"* memorial portion|strong=\"H6999\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* offerings|strong=\"H2403\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"* that|strong=\"H3548\"* he|strong=\"H5921\"* has|strong=\"H1961\"* sinned|strong=\"H2398\"* in|strong=\"H5921\"* any|strong=\"H1961\"* of|strong=\"H5921\"* these things|strong=\"H1961\"*, and|strong=\"H3548\"* he|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forgiven|strong=\"H5545\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* rest|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*’s, as|strong=\"H1961\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*.’”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "“If|strong=\"H3588\"* anyone|strong=\"H5315\"* commits|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"*, and|strong=\"H3068\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"* regarding Yahweh|strong=\"H3068\"*’s holy|strong=\"H6944\"* things|strong=\"H6944\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* bring|strong=\"H2398\"* his|strong=\"H3068\"* trespass|strong=\"H4604\"* offering|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: a|strong=\"H3068\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"* from|strong=\"H4480\"* the|strong=\"H3588\"* flock|strong=\"H6629\"*, according|strong=\"H3701\"* to|strong=\"H3068\"* your|strong=\"H3068\"* estimation|strong=\"H6187\"* in|strong=\"H3068\"* silver|strong=\"H3701\"* by|strong=\"H3068\"* shekels|strong=\"H8255\"*, according|strong=\"H3701\"* to|strong=\"H3068\"* the|strong=\"H3588\"* shekel|strong=\"H8255\"*+ 5:15 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* offering|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* restitution|strong=\"H7999\"* for|strong=\"H5921\"* that|strong=\"H5414\"* which|strong=\"H3548\"* he|strong=\"H5414\"* has|strong=\"H3548\"* done|strong=\"H2398\"* wrong|strong=\"H2398\"* regarding|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* add|strong=\"H3254\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* to|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3548\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* with|strong=\"H5921\"* the|strong=\"H5921\"* ram of|strong=\"H4480\"* the|strong=\"H5921\"* trespass|strong=\"H2398\"* offering|strong=\"H4480\"*, and|strong=\"H3548\"* he|strong=\"H5414\"* will|strong=\"H5414\"* be|strong=\"H3254\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 17, + "text": "“If|strong=\"H3588\"* anyone|strong=\"H3605\"* sins|strong=\"H2398\"*, doing|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H4687\"* not|strong=\"H3808\"* to|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, though|strong=\"H3588\"* he|strong=\"H3588\"* didn’t know|strong=\"H3045\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* is|strong=\"H3068\"* still|strong=\"H3588\"* guilty|strong=\"H5771\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* bring|strong=\"H3045\"* a|strong=\"H3068\"* ram without|strong=\"H3808\"* defect|strong=\"H8549\"* from|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* estimation|strong=\"H6187\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering|strong=\"H4480\"*, to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* thing|strong=\"H1931\"* in|strong=\"H5921\"* which|strong=\"H1931\"* he|strong=\"H1931\"* sinned|strong=\"H7683\"* and|strong=\"H3548\"* didn’t know|strong=\"H3045\"* it|strong=\"H1931\"*, and|strong=\"H3548\"* he|strong=\"H1931\"* will|strong=\"H3808\"* be|strong=\"H3808\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* certainly guilty before Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“If|strong=\"H1931\"* anyone|strong=\"H3605\"* sins, and|strong=\"H1121\"* commits a|strong=\"H3068\"* trespass against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* deals falsely with|strong=\"H5921\"* his|strong=\"H3605\"* neighbor in|strong=\"H5921\"* a|strong=\"H3068\"* matter of|strong=\"H1121\"* deposit, or|strong=\"H5704\"* of|strong=\"H1121\"* bargain, or|strong=\"H5704\"* of|strong=\"H1121\"* robbery, or|strong=\"H5704\"* has|strong=\"H3605\"* oppressed his|strong=\"H3605\"* neighbor," + }, + { + "verseNum": 3, + "text": "or|strong=\"H5930\"* has|strong=\"H3548\"* found that|strong=\"H3548\"* which|strong=\"H4196\"* was|strong=\"H1320\"* lost, and|strong=\"H3548\"* lied about|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3548\"* swearing to|strong=\"H5921\"* a|strong=\"H3068\"* lie—in|strong=\"H5921\"* any|strong=\"H7760\"* of|strong=\"H4196\"* these|strong=\"H7760\"* things that|strong=\"H3548\"* a|strong=\"H3068\"* man|strong=\"H1320\"* sins in|strong=\"H5921\"* his|strong=\"H7760\"* actions—" + }, + { + "verseNum": 4, + "text": "then|strong=\"H3318\"* it|strong=\"H3318\"* shall|strong=\"H2889\"* be|strong=\"H4725\"*, if he|strong=\"H3318\"* has|strong=\"H3318\"* sinned, and|strong=\"H3318\"* is|strong=\"H4725\"* guilty, he|strong=\"H3318\"* shall|strong=\"H2889\"* restore that|strong=\"H4725\"* which|strong=\"H4725\"* he|strong=\"H3318\"* took|strong=\"H3318\"* by|strong=\"H3318\"* robbery, or the|strong=\"H3318\"* thing which|strong=\"H4725\"* he|strong=\"H3318\"* has|strong=\"H3318\"* gotten by|strong=\"H3318\"* oppression, or the|strong=\"H3318\"* deposit which|strong=\"H4725\"* was|strong=\"H4725\"* committed to|strong=\"H3318\"* him|strong=\"H3318\"*, or the|strong=\"H3318\"* lost thing which|strong=\"H4725\"* he|strong=\"H3318\"* found," + }, + { + "verseNum": 5, + "text": "or|strong=\"H3808\"* any|strong=\"H3808\"* thing about|strong=\"H5921\"* which|strong=\"H4196\"* he|strong=\"H3808\"* has|strong=\"H3548\"* sworn falsely: he|strong=\"H3808\"* shall|strong=\"H3548\"* restore it|strong=\"H5921\"* in|strong=\"H5921\"* full, and|strong=\"H6086\"* shall|strong=\"H3548\"* add a|strong=\"H3068\"* fifth part|strong=\"H5921\"* more|strong=\"H3808\"* to|strong=\"H5921\"* it|strong=\"H5921\"*. He|strong=\"H3808\"* shall|strong=\"H3548\"* return it|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* whom it|strong=\"H5921\"* belongs in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H1242\"* of|strong=\"H4196\"* his|strong=\"H5921\"* being found guilty." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3808\"* shall|strong=\"H3808\"* bring his|strong=\"H5921\"* trespass offering to|strong=\"H5921\"* Yahweh|strong=\"H3068\"*: a|strong=\"H3068\"* ram without|strong=\"H3808\"* defect from|strong=\"H5921\"* the|strong=\"H5921\"* flock, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* estimation, for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering, to|strong=\"H5921\"* the|strong=\"H5921\"* priest." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* priest shall|strong=\"H3068\"* make atonement for|strong=\"H6440\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* forgiven concerning|strong=\"H3068\"* whatever he|strong=\"H3068\"* does|strong=\"H3068\"* to|strong=\"H3068\"* become guilty.”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses, saying," + }, + { + "verseNum": 9, + "text": "“Command Aaron and|strong=\"H1121\"* his|strong=\"H4480\"* sons|strong=\"H1121\"*, saying, ‘This|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H4480\"* law of|strong=\"H1121\"* the|strong=\"H4480\"* burnt offering|strong=\"H4480\"*: the|strong=\"H4480\"* burnt offering|strong=\"H4480\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* on|strong=\"H4725\"* the|strong=\"H4480\"* hearth on|strong=\"H4725\"* the|strong=\"H4480\"* altar all|strong=\"H4480\"* night|strong=\"H1121\"* until the|strong=\"H4480\"* morning; and|strong=\"H1121\"* the|strong=\"H4480\"* fire of|strong=\"H1121\"* the|strong=\"H4480\"* altar shall|strong=\"H1121\"* be|strong=\"H1121\"* kept burning on|strong=\"H4725\"* it|strong=\"H4725\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* priest shall|strong=\"H3808\"* put|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* linen garment, and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* put|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* linen trousers upon|strong=\"H5414\"* his|strong=\"H5414\"* body; and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* remove the|strong=\"H5414\"* ashes from|strong=\"H5414\"* where|strong=\"H3808\"* the|strong=\"H5414\"* fire has|strong=\"H5414\"* consumed the|strong=\"H5414\"* burnt offering|strong=\"H2403\"* on|strong=\"H5414\"* the|strong=\"H5414\"* altar, and|strong=\"H2403\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* put|strong=\"H5414\"* them|strong=\"H5414\"* beside the|strong=\"H5414\"* altar." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H1121\"* off his|strong=\"H3605\"* garments, and|strong=\"H1121\"* put|strong=\"H3068\"* on|strong=\"H3068\"* other|strong=\"H3605\"* garments, and|strong=\"H1121\"* carry the|strong=\"H3605\"* ashes outside the|strong=\"H3605\"* camp to|strong=\"H3068\"* a|strong=\"H3068\"* clean place|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3068\"* fire on|strong=\"H3068\"* the|strong=\"H3068\"* altar shall|strong=\"H3068\"* be|strong=\"H3068\"* kept burning on|strong=\"H3068\"* it|strong=\"H1696\"*, it|strong=\"H1696\"* shall|strong=\"H3068\"* not|strong=\"H1696\"* go|strong=\"H3068\"* out|strong=\"H1696\"*; and|strong=\"H4872\"* the|strong=\"H3068\"* priest shall|strong=\"H3068\"* burn wood on|strong=\"H3068\"* it|strong=\"H1696\"* every|strong=\"H3068\"* morning. He|strong=\"H3068\"* shall|strong=\"H3068\"* lay the|strong=\"H3068\"* burnt offering|strong=\"H3068\"* in|strong=\"H3068\"* order upon it|strong=\"H1696\"*, and|strong=\"H4872\"* shall|strong=\"H3068\"* burn on|strong=\"H3068\"* it|strong=\"H1696\"* the|strong=\"H3068\"* fat of|strong=\"H3068\"* the|strong=\"H3068\"* peace offerings|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Fire shall|strong=\"H3068\"* be|strong=\"H3068\"* kept burning on|strong=\"H3117\"* the|strong=\"H3068\"* altar continually|strong=\"H8548\"*; it|strong=\"H7126\"* shall|strong=\"H3068\"* not|strong=\"H2088\"* go|strong=\"H7126\"* out." + }, + { + "verseNum": 14, + "text": "“‘This|strong=\"H6213\"* is|strong=\"H3068\"* the|strong=\"H5921\"* law of|strong=\"H3068\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*: the|strong=\"H5921\"* sons of|strong=\"H3068\"* Aaron shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, before|strong=\"H5921\"* the|strong=\"H5921\"* altar." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* take|strong=\"H6213\"* from|strong=\"H1121\"* there|strong=\"H8478\"* his|strong=\"H3068\"* handful of|strong=\"H1121\"* the|strong=\"H6213\"* fine|strong=\"H6213\"* flour of|strong=\"H1121\"* the|strong=\"H6213\"* meal offering|strong=\"H6999\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* its|strong=\"H6213\"* oil, and|strong=\"H1121\"* all|strong=\"H6213\"* the|strong=\"H6213\"* frankincense which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6213\"* meal offering|strong=\"H6999\"*, and|strong=\"H1121\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H6213\"* altar for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma, as|strong=\"H6213\"* its|strong=\"H6213\"* memorial portion|strong=\"H2706\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "That|strong=\"H3605\"* which|strong=\"H3548\"* is|strong=\"H3605\"* left|strong=\"H3548\"* of|strong=\"H3605\"* it|strong=\"H1961\"* Aaron and|strong=\"H3548\"* his|strong=\"H3605\"* sons shall|strong=\"H3548\"* eat. It|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* eaten without|strong=\"H3808\"* yeast in|strong=\"H3808\"* a|strong=\"H3068\"* holy place|strong=\"H1961\"*. They|strong=\"H3808\"* shall|strong=\"H3548\"* eat it|strong=\"H1961\"* in|strong=\"H3808\"* the|strong=\"H3605\"* court of|strong=\"H3605\"* the|strong=\"H3605\"* Tent of|strong=\"H3605\"* Meeting." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1696\"* shall|strong=\"H3068\"* not|strong=\"H1696\"* be|strong=\"H3068\"* baked with|strong=\"H3068\"* yeast. I|strong=\"H3068\"* have|strong=\"H3068\"* given it|strong=\"H1696\"* as|strong=\"H3068\"* their|strong=\"H3068\"* portion of|strong=\"H3068\"* my|strong=\"H3068\"* offerings|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire. It|strong=\"H1696\"* is|strong=\"H3068\"* most|strong=\"H3068\"* holy, as|strong=\"H3068\"* are|strong=\"H3068\"* the|strong=\"H3068\"* sin offering|strong=\"H3068\"* and|strong=\"H4872\"* the|strong=\"H3068\"* trespass offering|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Every|strong=\"H3068\"* male|strong=\"H1121\"* among|strong=\"H8451\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* eat of|strong=\"H1121\"* it|strong=\"H1931\"*, as|strong=\"H3068\"* their|strong=\"H3068\"* portion|strong=\"H6944\"* forever throughout|strong=\"H6440\"* your|strong=\"H3068\"* generations, from|strong=\"H6440\"* the|strong=\"H6440\"* offerings|strong=\"H5930\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire. Whoever touches them|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"*.’”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H4725\"* Moses, saying," + }, + { + "verseNum": 20, + "text": "“This|strong=\"H6942\"* is|strong=\"H3605\"* the|strong=\"H3605\"* offering of|strong=\"H6918\"* Aaron and|strong=\"H1818\"* of|strong=\"H6918\"* his|strong=\"H3605\"* sons, which|strong=\"H4725\"* they|strong=\"H5921\"* shall|strong=\"H1320\"* offer to|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day when|strong=\"H5060\"* he|strong=\"H3605\"* is|strong=\"H3605\"* anointed: one|strong=\"H6918\"* tenth of|strong=\"H6918\"* an|strong=\"H5921\"* ephah+ 6:20 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H6918\"* fine flour for|strong=\"H5921\"* a|strong=\"H3068\"* meal offering perpetually|strong=\"H3605\"*, half of|strong=\"H6918\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* morning, and|strong=\"H1818\"* half of|strong=\"H6918\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* evening." + }, + { + "verseNum": 21, + "text": "It|strong=\"H7665\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* made|strong=\"H3627\"* with|strong=\"H3627\"* oil in|strong=\"H7665\"* a|strong=\"H3068\"* griddle. When|strong=\"H7665\"* it|strong=\"H7665\"* is|strong=\"H4325\"* soaked, you|strong=\"H4325\"* shall|strong=\"H4325\"* bring|strong=\"H7665\"* it|strong=\"H7665\"* in|strong=\"H7665\"*. You|strong=\"H4325\"* shall|strong=\"H4325\"* offer the|strong=\"H7665\"* meal offering in|strong=\"H7665\"* baked|strong=\"H1310\"* pieces|strong=\"H7665\"* for|strong=\"H4325\"* a|strong=\"H3068\"* pleasant aroma to|strong=\"H4325\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* anointed priest|strong=\"H3548\"* that|strong=\"H3605\"* will|strong=\"H1931\"* be|strong=\"H2145\"* in|strong=\"H2145\"* his|strong=\"H3605\"* place|strong=\"H6944\"* from|strong=\"H2145\"* among his|strong=\"H3605\"* sons shall|strong=\"H3548\"* offer it|strong=\"H1931\"*. By|strong=\"H3605\"* a|strong=\"H3068\"* statute forever|strong=\"H3605\"*, it|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H2145\"* wholly|strong=\"H3605\"* burned to|strong=\"H3605\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Every|strong=\"H3605\"* meal offering|strong=\"H2403\"* of|strong=\"H1818\"* a|strong=\"H3068\"* priest shall|strong=\"H3808\"* be|strong=\"H3808\"* wholly|strong=\"H3605\"* burned|strong=\"H8313\"*. It|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten.”" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 25, + "text": "“Speak to Aaron and to his sons, saying, ‘This is the law of the sin offering: in the place where the burnt offering is killed, the sin offering shall be killed before Yahweh|strong=\"H3068\"*. It is most holy." + }, + { + "verseNum": 26, + "text": "The priest who offers it for sin shall eat it. It shall be eaten in a|strong=\"H3068\"* holy place, in the court of the Tent of Meeting." + }, + { + "verseNum": 27, + "text": "Whatever shall touch its flesh shall be holy. When there is any of its blood sprinkled on a|strong=\"H3068\"* garment, you shall wash that on which it was sprinkled in a|strong=\"H3068\"* holy place." + }, + { + "verseNum": 28, + "text": "But the earthen vessel in which it is boiled shall be broken; and if it is boiled in a|strong=\"H3068\"* bronze vessel, it shall be scoured, and rinsed in water." + }, + { + "verseNum": 29, + "text": "Every male among the priests shall eat of it. It is most holy." + }, + { + "verseNum": 30, + "text": "No sin offering, of which any of the blood is brought into the Tent of Meeting to make atonement in the Holy Place, shall be eaten. It shall be burned with fire." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H1931\"* the|strong=\"H1931\"* law|strong=\"H8451\"* of|strong=\"H8451\"* the|strong=\"H1931\"* trespass offering: It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H5921\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H5921\"* shall|strong=\"H1818\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* trespass offering|strong=\"H5930\"*; and|strong=\"H4196\"* its|strong=\"H5921\"* blood|strong=\"H1818\"* he|strong=\"H5921\"* shall|strong=\"H1818\"* sprinkle|strong=\"H2236\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* shall offer|strong=\"H7126\"* all|strong=\"H3605\"* of|strong=\"H4480\"* its|strong=\"H3605\"* fat|strong=\"H2459\"*: the|strong=\"H3605\"* fat|strong=\"H2459\"* tail, and|strong=\"H7126\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* covers|strong=\"H3680\"* the|strong=\"H3605\"* innards," + }, + { + "verseNum": 4, + "text": "and|strong=\"H8147\"* he|strong=\"H8147\"* shall|strong=\"H8147\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* that|strong=\"H2459\"* is|strong=\"H3516\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, which is|strong=\"H3516\"* by|strong=\"H5921\"* the|strong=\"H5921\"* loins|strong=\"H3689\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* cover on|strong=\"H5921\"* the|strong=\"H5921\"* liver|strong=\"H3516\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* kidneys|strong=\"H3629\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* them|strong=\"H4196\"* on|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* for|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H6999\"*." + }, + { + "verseNum": 6, + "text": "Every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* priests|strong=\"H3548\"* may|strong=\"H3548\"* eat of|strong=\"H6918\"* it|strong=\"H1931\"*. It|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H2145\"* eaten in|strong=\"H4725\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "“‘As|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H1961\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, so|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H1961\"* trespass offering|strong=\"H2403\"*; there|strong=\"H1961\"* is|strong=\"H1961\"* one|strong=\"H1961\"* law|strong=\"H8451\"* for|strong=\"H3722\"* them|strong=\"H1961\"*. The|strong=\"H1961\"* priest|strong=\"H3548\"* who|strong=\"H3548\"* makes|strong=\"H3722\"* atonement|strong=\"H3722\"* with|strong=\"H3548\"* them|strong=\"H1961\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7126\"* priest|strong=\"H3548\"* who|strong=\"H3548\"* offers|strong=\"H7126\"* any|strong=\"H1961\"* man’s burnt|strong=\"H5930\"* offering|strong=\"H5930\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* for|strong=\"H1961\"* himself the|strong=\"H7126\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* the|strong=\"H7126\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* which|strong=\"H3548\"* he|strong=\"H7126\"* has|strong=\"H1961\"* offered|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "Every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3605\"* is|strong=\"H3605\"* baked in|strong=\"H5921\"* the|strong=\"H3605\"* oven|strong=\"H8574\"*, and|strong=\"H3548\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* prepared|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H3605\"* pan|strong=\"H4227\"* and|strong=\"H3548\"* on|strong=\"H5921\"* the|strong=\"H3605\"* griddle|strong=\"H4227\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*’s who|strong=\"H3605\"* offers|strong=\"H7126\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* or|strong=\"H1121\"* dry|strong=\"H2720\"*, belongs|strong=\"H1961\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, one|strong=\"H3605\"* as|strong=\"H1961\"* well as|strong=\"H1961\"* another." + }, + { + "verseNum": 11, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H3068\"* one|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 12, + "text": "If he|strong=\"H5921\"* offers|strong=\"H7126\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*, then|strong=\"H7126\"* he|strong=\"H5921\"* shall offer|strong=\"H7126\"* with|strong=\"H1101\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* thanksgiving|strong=\"H8426\"* unleavened|strong=\"H4682\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* cakes|strong=\"H2471\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* shall|strong=\"H7133\"* offer|strong=\"H7126\"* his|strong=\"H5921\"* offering|strong=\"H7133\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* for|strong=\"H5921\"* thanksgiving|strong=\"H8426\"* with|strong=\"H5921\"* cakes|strong=\"H2471\"* of|strong=\"H2077\"* leavened|strong=\"H2557\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H3068\"* it|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* one|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H3068\"* each|strong=\"H3605\"* offering|strong=\"H7133\"* for|strong=\"H3068\"* a|strong=\"H3068\"* heave|strong=\"H8641\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*’s who|strong=\"H3605\"* sprinkles|strong=\"H2236\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4480\"* flesh|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H4480\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H4480\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* for|strong=\"H5704\"* thanksgiving|strong=\"H8426\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* eaten on|strong=\"H3117\"* the|strong=\"H4480\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H4480\"* offering|strong=\"H7133\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* leave|strong=\"H3240\"* any|strong=\"H4480\"* of|strong=\"H3117\"* it|strong=\"H1242\"* until|strong=\"H5704\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 16, + "text": "“‘But|strong=\"H3498\"* if the|strong=\"H4480\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H7126\"* offering|strong=\"H7133\"* is|strong=\"H3117\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* free will|strong=\"H3117\"* offering|strong=\"H7133\"*, it|strong=\"H7126\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten on|strong=\"H3117\"* the|strong=\"H4480\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* offers|strong=\"H7126\"* his|strong=\"H7126\"* sacrifice|strong=\"H2077\"*. On|strong=\"H3117\"* the|strong=\"H4480\"* next|strong=\"H4283\"* day|strong=\"H3117\"* what remains|strong=\"H3498\"* of|strong=\"H3117\"* it|strong=\"H7126\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten," + }, + { + "verseNum": 17, + "text": "but|strong=\"H3498\"* what remains|strong=\"H3498\"* of|strong=\"H3117\"* the|strong=\"H3117\"* meat|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H3117\"* sacrifice|strong=\"H2077\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 18, + "text": "If|strong=\"H1961\"* any|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H5375\"* meat|strong=\"H1320\"* of|strong=\"H3117\"* the|strong=\"H5375\"* sacrifice|strong=\"H2077\"* of|strong=\"H3117\"* his|strong=\"H5375\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* is|strong=\"H5315\"* eaten on|strong=\"H3117\"* the|strong=\"H5375\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H7126\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* accepted|strong=\"H7521\"*, and|strong=\"H3117\"* it|strong=\"H7126\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* be|strong=\"H1961\"* credited|strong=\"H2803\"* to|strong=\"H1961\"* him|strong=\"H5315\"* who|strong=\"H5315\"* offers|strong=\"H7126\"* it|strong=\"H7126\"*. It|strong=\"H7126\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H7126\"* abomination|strong=\"H6292\"*, and|strong=\"H3117\"* the|strong=\"H5375\"* soul|strong=\"H5315\"* who|strong=\"H5315\"* eats any|strong=\"H4480\"* of|strong=\"H3117\"* it|strong=\"H7126\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 19, + "text": "“‘The|strong=\"H3605\"* meat|strong=\"H1320\"* that|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten. It|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire. As|strong=\"H3605\"* for|strong=\"H3605\"* the|strong=\"H3605\"* meat|strong=\"H1320\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* clean|strong=\"H2889\"* may|strong=\"H2889\"* eat it|strong=\"H3808\"*;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H1931\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* eats of|strong=\"H3068\"* the|strong=\"H5921\"* meat|strong=\"H1320\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* that|strong=\"H5971\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, having|strong=\"H5315\"* his|strong=\"H3068\"* uncleanness|strong=\"H2932\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* anyone|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H2932\"*, the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H3068\"* man|strong=\"H5315\"*, or|strong=\"H3068\"* an|strong=\"H3772\"* unclean|strong=\"H2931\"* animal, or|strong=\"H3068\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* abomination|strong=\"H8263\"*, and|strong=\"H3068\"* eats some|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* which|strong=\"H1931\"* belong to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H3605\"* shall|strong=\"H1121\"* eat no|strong=\"H3808\"* fat|strong=\"H2459\"*, of|strong=\"H1121\"* bull|strong=\"H7794\"*, or|strong=\"H3808\"* sheep|strong=\"H3775\"*, or|strong=\"H3808\"* goat|strong=\"H5795\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H5038\"* dies|strong=\"H5038\"* of|strong=\"H3605\"* itself|strong=\"H5038\"*, and|strong=\"H6213\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H5038\"* is|strong=\"H3605\"* torn|strong=\"H2966\"* of|strong=\"H3605\"* animals, may|strong=\"H6213\"* be|strong=\"H3808\"* used|strong=\"H6213\"* for|strong=\"H6213\"* any|strong=\"H3605\"* other|strong=\"H3605\"* service|strong=\"H4399\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* in|strong=\"H6213\"* no|strong=\"H3808\"* way|strong=\"H3605\"* eat of|strong=\"H3605\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* eats the|strong=\"H3605\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* animal which|strong=\"H3068\"* men|strong=\"H5971\"* offer|strong=\"H7126\"* as|strong=\"H5315\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* made|strong=\"H3772\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* eats it|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3605\"* blood|strong=\"H1818\"*, whether it|strong=\"H3808\"* is|strong=\"H3605\"* of|strong=\"H1818\"* bird|strong=\"H5775\"* or|strong=\"H3808\"* of|strong=\"H1818\"* animal, in|strong=\"H4186\"* any|strong=\"H3605\"* of|strong=\"H1818\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 27, + "text": "Whoever|strong=\"H3605\"* it|strong=\"H1931\"* is|strong=\"H1931\"* who|strong=\"H3605\"* eats any|strong=\"H3605\"* blood|strong=\"H1818\"*, that|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H5971\"* be|strong=\"H5315\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 29, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘He|strong=\"H3068\"* who|strong=\"H3068\"* offers|strong=\"H7126\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* out|strong=\"H1696\"* of|strong=\"H1121\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 30, + "text": "With|strong=\"H3068\"* his|strong=\"H3068\"* own|strong=\"H3027\"* hands|strong=\"H3027\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* offerings|strong=\"H8573\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3027\"* fire. He|strong=\"H3068\"* shall|strong=\"H3068\"* bring the|strong=\"H6440\"* fat|strong=\"H2459\"* with|strong=\"H3068\"* the|strong=\"H6440\"* breast|strong=\"H2373\"*, that|strong=\"H2459\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* may|strong=\"H3068\"* be|strong=\"H3027\"* waved|strong=\"H5130\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1961\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* burn|strong=\"H6999\"* the|strong=\"H1961\"* fat|strong=\"H2459\"* on|strong=\"H1961\"* the|strong=\"H1961\"* altar|strong=\"H4196\"*, but|strong=\"H1961\"* the|strong=\"H1961\"* breast|strong=\"H2373\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* Aaron’s and|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*’." + }, + { + "verseNum": 32, + "text": "The|strong=\"H5414\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* you|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* for|strong=\"H5414\"* a|strong=\"H3068\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* out|strong=\"H5414\"* of|strong=\"H2077\"* the|strong=\"H5414\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* your|strong=\"H5414\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H7126\"* among the|strong=\"H7126\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron who|strong=\"H1121\"* offers|strong=\"H7126\"* the|strong=\"H7126\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* the|strong=\"H7126\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H1121\"* the|strong=\"H7126\"* fat|strong=\"H2459\"*, shall|strong=\"H1121\"* have|strong=\"H1961\"* the|strong=\"H7126\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* for|strong=\"H1121\"* a|strong=\"H3068\"* portion|strong=\"H4490\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waved|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H1121\"* the|strong=\"H3588\"* heaved thigh|strong=\"H7785\"* I|strong=\"H3588\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* their|strong=\"H5414\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* Aaron the|strong=\"H3588\"* priest|strong=\"H3548\"* and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* as|strong=\"H3588\"* their|strong=\"H5414\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"* from|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 35, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* consecrated|strong=\"H4888\"* portion|strong=\"H4888\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3068\"* consecrated|strong=\"H4888\"* portion|strong=\"H4888\"* of|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, out of|strong=\"H1121\"* the|strong=\"H3068\"* offerings|strong=\"H3068\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3117\"* fire, in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* presented|strong=\"H7126\"* them|strong=\"H7126\"* to|strong=\"H3068\"* minister|strong=\"H3547\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* priest|strong=\"H3547\"*’s office;" + }, + { + "verseNum": 36, + "text": "which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* be|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, in|strong=\"H3478\"* the|strong=\"H5414\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* anointed|strong=\"H4886\"* them|strong=\"H5414\"*. It|strong=\"H5414\"* is|strong=\"H3068\"* their|strong=\"H3068\"* portion forever|strong=\"H5769\"* throughout|strong=\"H1755\"* their|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 37, + "text": "This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H8451\"* law|strong=\"H8451\"* of|strong=\"H2077\"* the|strong=\"H8451\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H8451\"* trespass offering|strong=\"H4503\"*, the|strong=\"H8451\"* consecration|strong=\"H4394\"*, and|strong=\"H5930\"* the|strong=\"H8451\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*" + }, + { + "verseNum": 38, + "text": "which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* in|strong=\"H3478\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* offer|strong=\"H7126\"* their|strong=\"H3068\"* offerings|strong=\"H7133\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, in|strong=\"H3478\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* Aaron and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* with|strong=\"H3947\"* him|strong=\"H3947\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* garments, and|strong=\"H1121\"* the|strong=\"H3947\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* the|strong=\"H3947\"* two|strong=\"H8147\"* rams, and|strong=\"H1121\"* the|strong=\"H3947\"* basket|strong=\"H5536\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H4150\"* assemble|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* at|strong=\"H6950\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5712\"* the|strong=\"H3605\"* Tent of|strong=\"H5712\"* Meeting|strong=\"H4150\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"*; and|strong=\"H4872\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* was|strong=\"H3068\"* assembled|strong=\"H6950\"* at|strong=\"H3068\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6213\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* be|strong=\"H1697\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* Aaron and|strong=\"H1121\"* his|strong=\"H7364\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* washed|strong=\"H7364\"* them|strong=\"H7126\"* with|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* tunic|strong=\"H3801\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, tied|strong=\"H5414\"* the|strong=\"H5921\"* sash on|strong=\"H5921\"* him|strong=\"H5414\"*, clothed|strong=\"H3847\"* him|strong=\"H5414\"* with|strong=\"H3847\"* the|strong=\"H5921\"* robe|strong=\"H4598\"*, put|strong=\"H5414\"* the|strong=\"H5921\"* ephod on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H4598\"* he|strong=\"H5414\"* tied|strong=\"H5414\"* the|strong=\"H5921\"* skillfully|strong=\"H2805\"* woven|strong=\"H2805\"* band|strong=\"H2805\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ephod on|strong=\"H5921\"* him|strong=\"H5414\"* and|strong=\"H4598\"* fastened|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* him|strong=\"H5414\"* with|strong=\"H3847\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* placed|strong=\"H5414\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"* on|strong=\"H5921\"* him|strong=\"H5414\"*. He|strong=\"H5414\"* put|strong=\"H5414\"* the|strong=\"H5921\"* Urim and|strong=\"H5921\"* Thummim|strong=\"H8550\"* in|strong=\"H5921\"* the|strong=\"H5921\"* breastplate|strong=\"H2833\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H6440\"* turban|strong=\"H4701\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*. He|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* plate|strong=\"H6731\"*, the|strong=\"H6440\"* holy|strong=\"H6944\"* crown|strong=\"H5145\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* turban|strong=\"H4701\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H4872\"* anointed|strong=\"H4886\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4872\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H4872\"* in|strong=\"H4872\"* it|strong=\"H6942\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* sprinkled|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H4196\"* anointed|strong=\"H4886\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basin|strong=\"H3595\"* and|strong=\"H4196\"* its|strong=\"H3605\"* base|strong=\"H3653\"*, to|strong=\"H5921\"* sanctify|strong=\"H6942\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* poured|strong=\"H3332\"* some of|strong=\"H7218\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* Aaron’s head|strong=\"H7218\"*, and|strong=\"H7218\"* anointed|strong=\"H4886\"* him|strong=\"H5921\"*, to|strong=\"H5921\"* sanctify|strong=\"H6942\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* Aaron’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* clothed|strong=\"H3847\"* them|strong=\"H6680\"* with|strong=\"H3847\"* tunics|strong=\"H3801\"*, and|strong=\"H1121\"* tied sashes on|strong=\"H3847\"* them|strong=\"H6680\"*, and|strong=\"H1121\"* put|strong=\"H3847\"* headbands|strong=\"H4021\"* on|strong=\"H3847\"* them|strong=\"H6680\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3027\"* brought|strong=\"H5066\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* killed|strong=\"H7819\"* it|strong=\"H5414\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* it|strong=\"H5414\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* with|strong=\"H5921\"* his|strong=\"H5414\"* finger, and|strong=\"H4872\"* purified|strong=\"H2398\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H4196\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* sanctified|strong=\"H6942\"* it|strong=\"H5414\"*, to|strong=\"H5921\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards, and|strong=\"H4872\"* the|strong=\"H3605\"* cover of|strong=\"H4196\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"*, and|strong=\"H4872\"* their|strong=\"H3605\"* fat|strong=\"H2459\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3068\"* the|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H4872\"* its skin|strong=\"H5785\"*, and|strong=\"H4872\"* its meat|strong=\"H1320\"*, and|strong=\"H4872\"* its dung|strong=\"H6569\"*, he|strong=\"H3068\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3027\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* ram of|strong=\"H1121\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 19, + "text": "He|strong=\"H5921\"* killed|strong=\"H7819\"* it|strong=\"H5921\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H4872\"* cut|strong=\"H5408\"* the|strong=\"H4872\"* ram into its pieces|strong=\"H5409\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* the|strong=\"H4872\"* head|strong=\"H7218\"*, and|strong=\"H4872\"* the|strong=\"H4872\"* pieces|strong=\"H5409\"*, and|strong=\"H4872\"* the|strong=\"H4872\"* fat|strong=\"H6309\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* washed|strong=\"H7364\"* the|strong=\"H3605\"* innards and|strong=\"H4872\"* the|strong=\"H3605\"* legs|strong=\"H3767\"* with|strong=\"H3068\"* water|strong=\"H4325\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* burned|strong=\"H6999\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* ram on|strong=\"H3068\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3027\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* other|strong=\"H8145\"* ram, the|strong=\"H5921\"* ram of|strong=\"H1121\"* consecration|strong=\"H4394\"*. Aaron and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ram." + }, + { + "verseNum": 23, + "text": "He|strong=\"H5414\"* killed|strong=\"H7819\"* it|strong=\"H5414\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* took|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* its|strong=\"H5414\"* blood|strong=\"H1818\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* Aaron’s right|strong=\"H3233\"* ear, and|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* great toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5414\"* brought|strong=\"H7126\"* Aaron’s sons|strong=\"H1121\"*; and|strong=\"H1121\"* Moses|strong=\"H4872\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* ear, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* great toe of|strong=\"H1121\"* their|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*; and|strong=\"H1121\"* Moses|strong=\"H4872\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* took|strong=\"H3947\"* the|strong=\"H3605\"* fat|strong=\"H2459\"*, the|strong=\"H3605\"* fat|strong=\"H2459\"* tail, all|strong=\"H3605\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* that|strong=\"H3605\"* was|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* innards, the|strong=\"H3605\"* cover of|strong=\"H5921\"* the|strong=\"H3605\"* liver|strong=\"H3516\"*, the|strong=\"H3605\"* two|strong=\"H8147\"* kidneys|strong=\"H3629\"* and|strong=\"H8147\"* their|strong=\"H3605\"* fat|strong=\"H2459\"*, and|strong=\"H8147\"* the|strong=\"H3605\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* that|strong=\"H2459\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* took|strong=\"H3947\"* one|strong=\"H3068\"* unleavened|strong=\"H4682\"* cake|strong=\"H2471\"*, one|strong=\"H3068\"* cake|strong=\"H2471\"* of|strong=\"H3068\"* oiled|strong=\"H8081\"* bread|strong=\"H3899\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* wafer|strong=\"H7550\"*, and|strong=\"H3068\"* placed|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* put|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* in|strong=\"H5921\"* Aaron’s hands|strong=\"H3709\"* and|strong=\"H1121\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*’ hands|strong=\"H3709\"*, and|strong=\"H1121\"* waved|strong=\"H5130\"* them|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* them|strong=\"H1992\"* from|strong=\"H5921\"* their|strong=\"H3068\"* hands|strong=\"H3709\"*, and|strong=\"H4872\"* burned|strong=\"H6999\"* them|strong=\"H1992\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* a|strong=\"H3068\"* consecration|strong=\"H4394\"* offering|strong=\"H5930\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*. It|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3947\"* offering|strong=\"H5930\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H6440\"* breast|strong=\"H2373\"*, and|strong=\"H4872\"* waved|strong=\"H5130\"* it|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H6440\"* was|strong=\"H3068\"* Moses|strong=\"H4872\"*’ portion|strong=\"H4490\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ram of|strong=\"H3068\"* consecration|strong=\"H4394\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H4196\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* sprinkled|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* Aaron, on|strong=\"H5921\"* his|strong=\"H3947\"* garments, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* sanctified|strong=\"H6942\"* Aaron, his|strong=\"H3947\"* garments, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"*’ garments with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1121\"* Aaron and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H6680\"* sons|strong=\"H1121\"*, “Boil|strong=\"H1310\"* the|strong=\"H6680\"* meat|strong=\"H1320\"* at|strong=\"H1121\"* the|strong=\"H6680\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6680\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* there|strong=\"H8033\"* eat|strong=\"H3899\"* it|strong=\"H8033\"* and|strong=\"H1121\"* the|strong=\"H6680\"* bread|strong=\"H3899\"* that|strong=\"H1121\"* is|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H6680\"* basket|strong=\"H5536\"* of|strong=\"H1121\"* consecration|strong=\"H4394\"*, as|strong=\"H1121\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"*, saying, ‘Aaron and|strong=\"H1121\"* his|strong=\"H6680\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* eat|strong=\"H3899\"* it|strong=\"H8033\"*.’" + }, + { + "verseNum": 32, + "text": "What remains|strong=\"H3498\"* of|strong=\"H3899\"* the|strong=\"H8313\"* meat|strong=\"H1320\"* and|strong=\"H3899\"* of|strong=\"H3899\"* the|strong=\"H8313\"* bread|strong=\"H3899\"* you|strong=\"H1320\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 33, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H3117\"* the|strong=\"H3588\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"* for|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3588\"* consecration|strong=\"H4394\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*: for|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* consecrate|strong=\"H4390\"* you|strong=\"H3588\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "What|strong=\"H2088\"* has|strong=\"H3068\"* been|strong=\"H3068\"* done|strong=\"H6213\"* today|strong=\"H3117\"*, so|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* do|strong=\"H6213\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* day|strong=\"H3117\"* and|strong=\"H3068\"* night|strong=\"H3915\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H6680\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* don’t die|strong=\"H4191\"*: for|strong=\"H3588\"* so|strong=\"H3651\"* I|strong=\"H3588\"* am|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 36, + "text": "Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"*, Moses|strong=\"H4872\"* called|strong=\"H7121\"* Aaron and|strong=\"H1121\"* his|strong=\"H7121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3117\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* said to|strong=\"H3068\"* Aaron, “Take|strong=\"H3947\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* from|strong=\"H6440\"* the|strong=\"H6440\"* herd|strong=\"H1241\"* for|strong=\"H6440\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram for|strong=\"H6440\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* offer|strong=\"H7126\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3947\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Take|strong=\"H3947\"* a|strong=\"H3068\"* male|strong=\"H3532\"* goat|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*; and|strong=\"H1121\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* and|strong=\"H1121\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"*, both a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*, for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* and|strong=\"H3068\"* a|strong=\"H3068\"* ram for|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: for|strong=\"H3588\"* today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* appears|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* brought|strong=\"H7126\"* what Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H4872\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* that|strong=\"H7200\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"*; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Aaron, “Draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6213\"* altar|strong=\"H4196\"*, and|strong=\"H4872\"* offer|strong=\"H7126\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H4872\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4872\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*, and|strong=\"H4872\"* for|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* offer|strong=\"H7126\"* the|strong=\"H6213\"* offering|strong=\"H5930\"* of|strong=\"H3068\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7126\"* Aaron came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7126\"* the|strong=\"H7126\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7126\"* calf|strong=\"H5695\"* of|strong=\"H4196\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H4196\"* was for|strong=\"H4196\"* himself." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron presented|strong=\"H7126\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* to|strong=\"H5921\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* dipped|strong=\"H2881\"* his|strong=\"H5414\"* finger in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* at|strong=\"H5921\"* the|strong=\"H5921\"* base|strong=\"H3247\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H3068\"* the|strong=\"H3068\"* fat|strong=\"H2459\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* kidneys|strong=\"H3629\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* cover from|strong=\"H4480\"* the|strong=\"H3068\"* liver|strong=\"H3516\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, he|strong=\"H3068\"* burned|strong=\"H6999\"* upon the|strong=\"H3068\"* altar|strong=\"H4196\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H2351\"* meat|strong=\"H1320\"* and|strong=\"H4264\"* the|strong=\"H2351\"* skin|strong=\"H5785\"* he|strong=\"H5785\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire outside|strong=\"H2351\"* the|strong=\"H2351\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5921\"* killed|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H1121\"* Aaron’s sons|strong=\"H1121\"* delivered|strong=\"H4672\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* it|strong=\"H5921\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H5921\"* delivered|strong=\"H4672\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, piece|strong=\"H5409\"* by|strong=\"H5921\"* piece|strong=\"H5409\"*, and|strong=\"H7218\"* the|strong=\"H5921\"* head|strong=\"H7218\"*. He|strong=\"H5921\"* burned|strong=\"H6999\"* them|strong=\"H5921\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* washed|strong=\"H7364\"* the|strong=\"H5921\"* innards and|strong=\"H4196\"* the|strong=\"H5921\"* legs|strong=\"H3767\"*, and|strong=\"H4196\"* burned|strong=\"H6999\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5971\"* presented|strong=\"H7126\"* the|strong=\"H3947\"* people|strong=\"H5971\"*’s offering|strong=\"H2403\"*, and|strong=\"H5971\"* took|strong=\"H3947\"* the|strong=\"H3947\"* goat|strong=\"H8163\"* of|strong=\"H5971\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* which|strong=\"H5971\"* was|strong=\"H5971\"* for|strong=\"H5971\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* killed|strong=\"H7819\"* it|strong=\"H7126\"*, and|strong=\"H5971\"* offered|strong=\"H7126\"* it|strong=\"H7126\"* for|strong=\"H5971\"* sin|strong=\"H2403\"*, like|strong=\"H2403\"* the|strong=\"H3947\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* presented|strong=\"H7126\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4941\"* offered|strong=\"H7126\"* it|strong=\"H7126\"* according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H4480\"* presented|strong=\"H7126\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1242\"* filled|strong=\"H4390\"* his|strong=\"H5921\"* hand|strong=\"H3709\"* from|strong=\"H4480\"* there|strong=\"H4480\"*, and|strong=\"H1242\"* burned|strong=\"H6999\"* it|strong=\"H5921\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H4196\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5921\"* also|strong=\"H1121\"* killed|strong=\"H7819\"* the|strong=\"H5921\"* bull|strong=\"H7794\"* and|strong=\"H1121\"* the|strong=\"H5921\"* ram, the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H5971\"* was|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*. Aaron’s sons|strong=\"H1121\"* delivered|strong=\"H4672\"* to|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, which|strong=\"H5971\"* he|strong=\"H5921\"* sprinkled|strong=\"H2236\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H7794\"* the|strong=\"H4480\"* fat|strong=\"H2459\"* of|strong=\"H4480\"* the|strong=\"H4480\"* bull|strong=\"H7794\"* and|strong=\"H7794\"* of|strong=\"H4480\"* the|strong=\"H4480\"* ram, the|strong=\"H4480\"* fat|strong=\"H2459\"* tail, and|strong=\"H7794\"* that|strong=\"H2459\"* which covers the|strong=\"H4480\"* innards, and|strong=\"H7794\"* the|strong=\"H4480\"* kidneys|strong=\"H3629\"*, and|strong=\"H7794\"* the|strong=\"H4480\"* cover|strong=\"H4374\"* of|strong=\"H4480\"* the|strong=\"H4480\"* liver|strong=\"H3516\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H4196\"* they|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* breasts|strong=\"H2373\"*, and|strong=\"H4196\"* he|strong=\"H5921\"* burned|strong=\"H6999\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Aaron waved|strong=\"H5130\"* the|strong=\"H6440\"* breasts|strong=\"H2373\"* and|strong=\"H4872\"* the|strong=\"H6440\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 22, + "text": "Aaron lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* hands|strong=\"H3027\"* toward|strong=\"H3027\"* the|strong=\"H5375\"* people|strong=\"H5971\"*, and|strong=\"H3027\"* blessed|strong=\"H1288\"* them|strong=\"H3027\"*; and|strong=\"H3027\"* he|strong=\"H6213\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* offering|strong=\"H5930\"* the|strong=\"H5375\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H5375\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H5375\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4872\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* consumed the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3605\"* fat|strong=\"H2459\"* upon|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*. When|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H5921\"*, they|strong=\"H3068\"* shouted|strong=\"H7442\"*, and|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, each|strong=\"H5414\"* took|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* fire in|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* laid|strong=\"H7760\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H1121\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* devoured them|strong=\"H6440\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* died|strong=\"H4191\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1696\"* Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, “This|strong=\"H1931\"* is|strong=\"H3068\"* what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* of|strong=\"H3068\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* Mishael|strong=\"H4332\"* and|strong=\"H1121\"* Elzaphan, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"* the|strong=\"H6440\"* uncle|strong=\"H1730\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* them|strong=\"H6440\"*, “Draw|strong=\"H7126\"* near|strong=\"H7126\"*, carry|strong=\"H5375\"* your|strong=\"H5375\"* brothers|strong=\"H1121\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"* out|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5375\"* they|strong=\"H5375\"* came|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H4872\"* carried|strong=\"H5375\"* them|strong=\"H7126\"* in|strong=\"H1696\"* their|strong=\"H5375\"* tunics|strong=\"H3801\"* out|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H5375\"* camp|strong=\"H4264\"*, as|strong=\"H1696\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* said|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* Aaron, and|strong=\"H1121\"* to|strong=\"H3478\"* Eleazar and|strong=\"H1121\"* to|strong=\"H3478\"* Ithamar, his|strong=\"H3605\"* sons|strong=\"H1121\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H3605\"* hair|strong=\"H7218\"* of|strong=\"H1121\"* your|strong=\"H3068\"* heads|strong=\"H7218\"* go|strong=\"H3068\"* loose|strong=\"H5921\"*, and|strong=\"H1121\"* don’t tear|strong=\"H6533\"* your|strong=\"H3068\"* clothes, so|strong=\"H3808\"* that|strong=\"H3605\"* you|strong=\"H3605\"* don’t die|strong=\"H4191\"*, and|strong=\"H1121\"* so|strong=\"H3808\"* that|strong=\"H3605\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H4191\"* angry|strong=\"H7107\"* with|strong=\"H8313\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*; but|strong=\"H3808\"* let|strong=\"H3808\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, bewail|strong=\"H1058\"* the|strong=\"H3605\"* burning|strong=\"H8316\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kindled|strong=\"H8313\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.” They|strong=\"H3588\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Aaron," + }, + { + "verseNum": 9, + "text": "“You|strong=\"H3808\"* and|strong=\"H1121\"* your|strong=\"H3808\"* sons|strong=\"H1121\"* are|strong=\"H1121\"* not|strong=\"H3808\"* to|strong=\"H4191\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"* whenever you|strong=\"H3808\"* go into the|strong=\"H4191\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, or|strong=\"H3808\"* you|strong=\"H3808\"* will|strong=\"H1121\"* die|strong=\"H4191\"*. This|strong=\"H4191\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3808\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 10, + "text": "You are|strong=\"H6944\"* to|strong=\"H6944\"* make a|strong=\"H3068\"* distinction between the|strong=\"H2455\"* holy|strong=\"H6944\"* and|strong=\"H6944\"* the|strong=\"H2455\"* common|strong=\"H2455\"*, and|strong=\"H6944\"* between the|strong=\"H2455\"* unclean|strong=\"H2931\"* and|strong=\"H6944\"* the|strong=\"H2455\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3605\"* are|strong=\"H1121\"* to|strong=\"H1696\"* teach|strong=\"H3384\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3027\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* Eleazar and|strong=\"H1121\"* to|strong=\"H1696\"* Ithamar, his|strong=\"H3068\"* sons|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1121\"* left|strong=\"H3498\"*, “Take|strong=\"H3947\"* the|strong=\"H3588\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* that|strong=\"H3588\"* remains|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1696\"* by|strong=\"H3068\"* fire, and|strong=\"H1121\"* eat it|strong=\"H1931\"* without|strong=\"H3588\"* yeast beside the|strong=\"H3588\"* altar|strong=\"H4196\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* portion|strong=\"H2706\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*’ portion|strong=\"H2706\"*, of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire; for|strong=\"H3588\"* so|strong=\"H3651\"* I|strong=\"H3588\"* am|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3588\"* waved|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H1121\"* the|strong=\"H3588\"* heaved thigh|strong=\"H7785\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* eat in|strong=\"H3478\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"*, you|strong=\"H3588\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* with|strong=\"H3478\"* you|strong=\"H3588\"*: for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1121\"* given|strong=\"H5414\"* as|strong=\"H3588\"* your|strong=\"H5414\"* portion|strong=\"H2706\"*, and|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*’ portion|strong=\"H2706\"*, out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* the|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* bring|strong=\"H2706\"* the|strong=\"H6440\"* heaved thigh|strong=\"H7785\"* and|strong=\"H1121\"* the|strong=\"H6440\"* waved|strong=\"H5130\"* breast|strong=\"H2373\"* with|strong=\"H3068\"* the|strong=\"H6440\"* offerings|strong=\"H8641\"* made|strong=\"H1961\"* by|strong=\"H5921\"* fire of|strong=\"H1121\"* the|strong=\"H6440\"* fat|strong=\"H2459\"*, to|strong=\"H3068\"* wave|strong=\"H8573\"* it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* yours, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*’ with|strong=\"H3068\"* you|strong=\"H6440\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* diligently|strong=\"H1875\"* inquired|strong=\"H1875\"* about|strong=\"H5921\"* the|strong=\"H5921\"* goat|strong=\"H8163\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"*, behold|strong=\"H2009\"*,+ 10:16 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* it|strong=\"H5921\"* was|strong=\"H4872\"* burned|strong=\"H8313\"*. He|strong=\"H5921\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H8313\"* Eleazar and|strong=\"H1121\"* with|strong=\"H8313\"* Ithamar, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron who|strong=\"H1121\"* were|strong=\"H1121\"* left|strong=\"H3498\"*, saying," + }, + { + "verseNum": 17, + "text": "“Why|strong=\"H4069\"* haven’t you|strong=\"H3588\"* eaten the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* in|strong=\"H5921\"* the|strong=\"H6440\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"*, since|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* has|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* them|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, its|strong=\"H3808\"* blood|strong=\"H1818\"* was|strong=\"H3808\"* not|strong=\"H3808\"* brought into the|strong=\"H6680\"* inner|strong=\"H6441\"* part|strong=\"H6441\"* of|strong=\"H1818\"* the|strong=\"H6680\"* sanctuary|strong=\"H6944\"*. You|strong=\"H6680\"* certainly|strong=\"H3808\"* should have|strong=\"H3808\"* eaten it|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H6680\"* sanctuary|strong=\"H6944\"*, as|strong=\"H6680\"* I|strong=\"H2005\"* commanded|strong=\"H6680\"*.”" + }, + { + "verseNum": 19, + "text": "Aaron spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, today|strong=\"H3117\"* they|strong=\"H3117\"* have|strong=\"H3068\"* offered|strong=\"H7126\"* their|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H4872\"* their|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H4872\"* such|strong=\"H1696\"* things as|strong=\"H3117\"* these|strong=\"H1696\"* have|strong=\"H3068\"* happened|strong=\"H7122\"* to|strong=\"H1696\"* me|strong=\"H6440\"*. If|strong=\"H2005\"* I|strong=\"H3117\"* had|strong=\"H3068\"* eaten the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* today|strong=\"H3117\"*, would|strong=\"H3068\"* it|strong=\"H7126\"* have|strong=\"H3068\"* been|strong=\"H3068\"* pleasing|strong=\"H3190\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*?”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* heard|strong=\"H8085\"* that|strong=\"H8085\"*, it|strong=\"H3190\"* was|strong=\"H4872\"* pleasing|strong=\"H3190\"* in|strong=\"H8085\"* his|strong=\"H8085\"* sight|strong=\"H5869\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H3605\"* living|strong=\"H2416\"* things|strong=\"H3605\"* which|strong=\"H3478\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "Whatever|strong=\"H3605\"* parts|strong=\"H6541\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"*, and|strong=\"H5927\"* is|strong=\"H3605\"* cloven-footed, and|strong=\"H5927\"* chews|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"* among the|strong=\"H3605\"* animals, that|strong=\"H3605\"* you|strong=\"H3605\"* may eat." + }, + { + "verseNum": 4, + "text": "“‘Nevertheless|strong=\"H3588\"* these|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* those|strong=\"H1931\"* that|strong=\"H3588\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, or|strong=\"H3808\"* of|strong=\"H3808\"* those|strong=\"H1931\"* who|strong=\"H1931\"* part|strong=\"H1931\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"*: the|strong=\"H3588\"* camel|strong=\"H1581\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H2088\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* hyrax,+ 11:5 or rock badger, or cony* because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* hare, because|strong=\"H3588\"* it|strong=\"H1931\"* chews|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* doesn’t have|strong=\"H3588\"* a|strong=\"H3068\"* parted hoof|strong=\"H6541\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* pig|strong=\"H2386\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* split|strong=\"H8156\"* hoof|strong=\"H6541\"*, and|strong=\"H3808\"* is|strong=\"H1931\"* cloven-footed, but|strong=\"H3588\"* doesn’t chew|strong=\"H1641\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat their|strong=\"H1992\"* meat|strong=\"H1320\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* their|strong=\"H1992\"* carcasses|strong=\"H5038\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H1320\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "“‘You|strong=\"H3605\"* may|strong=\"H4325\"* eat of|strong=\"H4325\"* all|strong=\"H3605\"* these|strong=\"H2088\"* that|strong=\"H3605\"* are|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*: whatever|strong=\"H3605\"* has|strong=\"H2088\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"* in|strong=\"H3220\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, in|strong=\"H3220\"* the|strong=\"H3605\"* seas|strong=\"H3220\"*, and|strong=\"H4325\"* in|strong=\"H3220\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H4325\"* eat." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* don’t have|strong=\"H3605\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"* in|strong=\"H5315\"* the|strong=\"H3605\"* seas|strong=\"H3220\"* and|strong=\"H4325\"* rivers|strong=\"H5158\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* move|strong=\"H8318\"* in|strong=\"H5315\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H5315\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* an abomination|strong=\"H8263\"* to|strong=\"H4325\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1320\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* them|strong=\"H1961\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H1320\"* their|strong=\"H1961\"* meat|strong=\"H1320\"*, and|strong=\"H1320\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* their|strong=\"H1961\"* carcasses|strong=\"H5038\"*." + }, + { + "verseNum": 12, + "text": "Whatever|strong=\"H3605\"* has|strong=\"H3605\"* no|strong=\"H3605\"* fins|strong=\"H5579\"* nor|strong=\"H5579\"* scales|strong=\"H7193\"* in|strong=\"H4325\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* is|strong=\"H1931\"* an abomination|strong=\"H8263\"* to|strong=\"H4325\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* detest|strong=\"H8262\"* these|strong=\"H1992\"* among|strong=\"H4480\"* the|strong=\"H4480\"* birds|strong=\"H5775\"*; they|strong=\"H1992\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten because|strong=\"H4480\"* they|strong=\"H1992\"* are|strong=\"H1992\"* an|strong=\"H4480\"* abomination|strong=\"H8263\"*: the|strong=\"H4480\"* eagle|strong=\"H5404\"*, the|strong=\"H4480\"* vulture|strong=\"H6538\"*, the|strong=\"H4480\"* black vulture|strong=\"H6538\"*," + }, + { + "verseNum": 14, + "text": "the red kite|strong=\"H1676\"*, any kind|strong=\"H4327\"* of black kite|strong=\"H1676\"*," + }, + { + "verseNum": 15, + "text": "any|strong=\"H3605\"* kind|strong=\"H4327\"* of|strong=\"H3605\"* raven|strong=\"H6158\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H1323\"* horned owl|strong=\"H8464\"*, the|strong=\"H1323\"* screech owl|strong=\"H8464\"*, the|strong=\"H1323\"* gull|strong=\"H7828\"*, any kind|strong=\"H4327\"* of|strong=\"H1323\"* hawk|strong=\"H5322\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H3563\"* little|strong=\"H3563\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* cormorant|strong=\"H7994\"*, the|strong=\"H3563\"* great|strong=\"H3244\"* owl|strong=\"H3244\"*," + }, + { + "verseNum": 18, + "text": "the white|strong=\"H8580\"* owl|strong=\"H8580\"*, the desert owl|strong=\"H8580\"*, the osprey," + }, + { + "verseNum": 19, + "text": "the stork|strong=\"H2624\"*, any kind|strong=\"H4327\"* of heron, the hoopoe|strong=\"H1744\"*, and the bat|strong=\"H5847\"*." + }, + { + "verseNum": 20, + "text": "“‘All|strong=\"H3605\"* flying|strong=\"H5775\"* insects|strong=\"H8318\"* that|strong=\"H3605\"* walk|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours are|strong=\"H5775\"* an|strong=\"H5921\"* abomination|strong=\"H8263\"* to|strong=\"H1980\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 21, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3605\"* may|strong=\"H7272\"* eat these|strong=\"H2088\"*: of|strong=\"H5921\"* all|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* that|strong=\"H3605\"* go|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, which|strong=\"H2004\"* have|strong=\"H3605\"* long|strong=\"H3605\"*, jointed|strong=\"H7272\"* legs|strong=\"H3767\"* for|strong=\"H5921\"* hopping on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 22, + "text": "Even of|strong=\"H1992\"* these|strong=\"H1992\"* you may|strong=\"H1992\"* eat: any kind|strong=\"H4327\"* of|strong=\"H1992\"* locust|strong=\"H5556\"*, any kind|strong=\"H4327\"* of|strong=\"H1992\"* katydid, any kind|strong=\"H4327\"* of|strong=\"H1992\"* cricket|strong=\"H2728\"*, and|strong=\"H1992\"* any kind|strong=\"H4327\"* of|strong=\"H1992\"* grasshopper|strong=\"H2284\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H1931\"* all|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* which|strong=\"H1931\"* have|strong=\"H3605\"* four feet|strong=\"H7272\"* are|strong=\"H7272\"* an abomination|strong=\"H8263\"* to|strong=\"H7272\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "“‘By|strong=\"H5704\"* these|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5704\"* become|strong=\"H2930\"* unclean|strong=\"H2930\"*: whoever|strong=\"H3605\"* touches|strong=\"H5060\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 25, + "text": "Whoever|strong=\"H3605\"* carries|strong=\"H5375\"* any|strong=\"H3605\"* part of|strong=\"H3605\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3605\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 26, + "text": "“‘Every|strong=\"H3605\"* animal which|strong=\"H1931\"* has|strong=\"H3605\"* a|strong=\"H3068\"* split|strong=\"H8156\"* hoof|strong=\"H6541\"* that|strong=\"H3605\"* isn’t completely|strong=\"H3605\"* divided|strong=\"H6536\"*, or doesn’t chew|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3605\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H1992\"* shall|strong=\"H1931\"* be|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 27, + "text": "Whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* its|strong=\"H3605\"* paws|strong=\"H3709\"*, among|strong=\"H5921\"* all|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* go|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, they|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H3605\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H2416\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5704\"* who|strong=\"H1992\"* carries|strong=\"H5375\"* their|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 29, + "text": "“‘These|strong=\"H2088\"* are they|strong=\"H5921\"* which|strong=\"H2088\"* are unclean|strong=\"H2931\"* to|strong=\"H5921\"* you|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H5921\"* creeping|strong=\"H2931\"* things|strong=\"H8318\"* that|strong=\"H8318\"* creep|strong=\"H8318\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth: the|strong=\"H5921\"* weasel|strong=\"H2467\"*, the|strong=\"H5921\"* rat, any kind|strong=\"H4327\"* of|strong=\"H5921\"* great|strong=\"H6632\"* lizard|strong=\"H6632\"*," + }, + { + "verseNum": 30, + "text": "the|strong=\"H3581\"* gecko, and|strong=\"H3581\"* the|strong=\"H3581\"* monitor lizard|strong=\"H3911\"*, the|strong=\"H3581\"* wall lizard|strong=\"H3911\"*, the|strong=\"H3581\"* skink, and|strong=\"H3581\"* the|strong=\"H3581\"* chameleon|strong=\"H8580\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H3605\"* are|strong=\"H4194\"* they|strong=\"H5704\"* which|strong=\"H8318\"* are|strong=\"H4194\"* unclean|strong=\"H2931\"* to|strong=\"H5704\"* you|strong=\"H3605\"* among|strong=\"H2931\"* all|strong=\"H3605\"* that|strong=\"H3605\"* creep|strong=\"H8318\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* them|strong=\"H5704\"* when|strong=\"H5704\"* they|strong=\"H5704\"* are|strong=\"H4194\"* dead|strong=\"H4194\"* shall|strong=\"H4194\"* be|strong=\"H3605\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 32, + "text": "Anything|strong=\"H3605\"* they|strong=\"H1992\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* when|strong=\"H5704\"* they|strong=\"H1992\"* are|strong=\"H1992\"* dead|strong=\"H4194\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* unclean|strong=\"H2930\"*; whether it|strong=\"H5921\"* is|strong=\"H3605\"* any|strong=\"H3605\"* vessel|strong=\"H3627\"* of|strong=\"H3627\"* wood|strong=\"H6086\"*, or|strong=\"H5704\"* clothing|strong=\"H3627\"*, or|strong=\"H5704\"* skin|strong=\"H5785\"*, or|strong=\"H5704\"* sack|strong=\"H8242\"*, whatever|strong=\"H3605\"* vessel|strong=\"H3627\"* it|strong=\"H5921\"* is|strong=\"H3605\"*, with|strong=\"H6213\"* which|strong=\"H1992\"* any|strong=\"H3605\"* work|strong=\"H4399\"* is|strong=\"H3605\"* done|strong=\"H6213\"*, it|strong=\"H5921\"* must be|strong=\"H6086\"* put|strong=\"H6213\"* into|strong=\"H5307\"* water|strong=\"H4325\"*, and|strong=\"H6086\"* it|strong=\"H5921\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. Then|strong=\"H5307\"* it|strong=\"H5921\"* will|strong=\"H4325\"* be|strong=\"H6086\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 33, + "text": "Every|strong=\"H3605\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* into|strong=\"H8432\"* which|strong=\"H1992\"* any|strong=\"H3605\"* of|strong=\"H3627\"* them|strong=\"H1992\"* falls|strong=\"H5307\"* and|strong=\"H5307\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H8432\"* it|strong=\"H8432\"* shall|strong=\"H3627\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*. You|strong=\"H3605\"* shall|strong=\"H3627\"* break|strong=\"H7665\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 34, + "text": "All|strong=\"H3605\"* food which|strong=\"H4325\"* may|strong=\"H4325\"* be|strong=\"H4325\"* eaten which|strong=\"H4325\"* is|strong=\"H3605\"* soaked in|strong=\"H5921\"* water|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*. All|strong=\"H3605\"* drink|strong=\"H8354\"* that|strong=\"H3605\"* may|strong=\"H4325\"* be|strong=\"H4325\"* drunk|strong=\"H8354\"* in|strong=\"H5921\"* every|strong=\"H3605\"* such|strong=\"H3605\"* vessel|strong=\"H3627\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 35, + "text": "Everything|strong=\"H3605\"* whereupon part|strong=\"H1992\"* of|strong=\"H5921\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*; whether oven|strong=\"H8574\"*, or range for|strong=\"H5921\"* pots, it|strong=\"H5921\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* broken|strong=\"H5422\"* in|strong=\"H5921\"* pieces. They|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"*, and|strong=\"H5307\"* shall|strong=\"H5038\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "Nevertheless a|strong=\"H3068\"* spring|strong=\"H4599\"* or|strong=\"H4599\"* a|strong=\"H3068\"* cistern in|strong=\"H1961\"* which|strong=\"H4325\"* water|strong=\"H4325\"* is|strong=\"H1961\"* gathered shall|strong=\"H4325\"* be|strong=\"H1961\"* clean|strong=\"H2889\"*, but|strong=\"H1961\"* that|strong=\"H4325\"* which|strong=\"H4325\"* touches|strong=\"H5060\"* their|strong=\"H1961\"* carcass|strong=\"H5038\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 37, + "text": "If|strong=\"H3588\"* part|strong=\"H1931\"* of|strong=\"H2233\"* their|strong=\"H3605\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* any|strong=\"H3605\"* sowing|strong=\"H2221\"* seed|strong=\"H2233\"* which|strong=\"H1931\"* is|strong=\"H1931\"* to|strong=\"H5921\"* be|strong=\"H3588\"* sown|strong=\"H2232\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* water|strong=\"H4325\"* is|strong=\"H1931\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seed|strong=\"H2233\"*, and|strong=\"H4325\"* part|strong=\"H1931\"* of|strong=\"H4325\"* their|strong=\"H5414\"* carcass|strong=\"H5038\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H5921\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 39, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H4480\"* animal of|strong=\"H4480\"* which|strong=\"H1931\"* you|strong=\"H3588\"* may|strong=\"H5038\"* eat dies|strong=\"H4191\"*, he|strong=\"H1931\"* who|strong=\"H1931\"* touches|strong=\"H5060\"* its|strong=\"H3588\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"H5704\"* who eats of|strong=\"H5038\"* its|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*. He|strong=\"H5704\"* also who carries|strong=\"H5375\"* its|strong=\"H5375\"* carcass|strong=\"H5038\"* shall|strong=\"H5038\"* wash|strong=\"H3526\"* his|strong=\"H5375\"* clothes, and|strong=\"H5704\"* be|strong=\"H5375\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5375\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 41, + "text": "“‘Every|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps on|strong=\"H5921\"* the|strong=\"H3605\"* earth is|strong=\"H1931\"* an|strong=\"H5921\"* abomination|strong=\"H8263\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 42, + "text": "Whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* its|strong=\"H3605\"* belly, and|strong=\"H1980\"* whatever|strong=\"H3605\"* goes|strong=\"H1980\"* on|strong=\"H5921\"* all|strong=\"H3605\"* fours, or|strong=\"H3808\"* whatever|strong=\"H3605\"* has|strong=\"H3588\"* many|strong=\"H7235\"* feet|strong=\"H7272\"*, even|strong=\"H5704\"* all|strong=\"H3605\"* creeping|strong=\"H8318\"* things|strong=\"H3605\"* that|strong=\"H3588\"* creep|strong=\"H8318\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, them|strong=\"H1992\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* an|strong=\"H3588\"* abomination|strong=\"H8263\"*." + }, + { + "verseNum": 43, + "text": "You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* abominable|strong=\"H8262\"* with|strong=\"H5315\"* any|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3605\"* creeps. You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* unclean|strong=\"H2930\"* with|strong=\"H5315\"* them|strong=\"H2930\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* should be|strong=\"H3808\"* defiled|strong=\"H2930\"* by|strong=\"H3808\"* them|strong=\"H2930\"*." + }, + { + "verseNum": 44, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H5315\"* therefore|strong=\"H5921\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* holy|strong=\"H6918\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* yourselves|strong=\"H5315\"* with|strong=\"H3068\"* any|strong=\"H3605\"* kind of|strong=\"H3068\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* that|strong=\"H3588\"* moves|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 45, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* therefore|strong=\"H3588\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 46, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H5315\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4325\"* the|strong=\"H3605\"* animal|strong=\"H2416\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* bird|strong=\"H5775\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* moves|strong=\"H7430\"* in|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*, and|strong=\"H4325\"* of|strong=\"H4325\"* every|strong=\"H3605\"* creature|strong=\"H5315\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 47, + "text": "to|strong=\"H3808\"* make a|strong=\"H3068\"* distinction between the|strong=\"H3808\"* unclean|strong=\"H2931\"* and|strong=\"H2416\"* the|strong=\"H3808\"* clean|strong=\"H2889\"*, and|strong=\"H2416\"* between the|strong=\"H3808\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H2416\"* may|strong=\"H2889\"* be|strong=\"H3808\"* eaten and|strong=\"H2416\"* the|strong=\"H3808\"* living|strong=\"H2416\"* thing|strong=\"H2416\"* that|strong=\"H2416\"* may|strong=\"H2889\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* conceives, and|strong=\"H1121\"* bears|strong=\"H3205\"* a|strong=\"H3068\"* male|strong=\"H2145\"* child|strong=\"H1121\"*, then|strong=\"H1696\"* she|strong=\"H3588\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; as|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H1121\"* her|strong=\"H3205\"* monthly period|strong=\"H3117\"* she|strong=\"H3588\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* the|strong=\"H3117\"* flesh|strong=\"H1320\"* of|strong=\"H3117\"* his|strong=\"H3117\"* foreskin|strong=\"H6190\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 4, + "text": "She|strong=\"H5704\"* shall|strong=\"H3117\"* continue|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H3117\"* purification|strong=\"H2893\"* thirty-three|strong=\"H7970\"* days|strong=\"H3117\"*. She|strong=\"H5704\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* any|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, nor|strong=\"H3808\"* come|strong=\"H5060\"* into|strong=\"H5704\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* purifying|strong=\"H2893\"* are|strong=\"H3117\"* completed|strong=\"H4390\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3117\"* if she|strong=\"H5921\"* bears|strong=\"H3205\"* a|strong=\"H3068\"* female|strong=\"H5347\"* child|strong=\"H3205\"*, then|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"* two|strong=\"H3427\"* weeks|strong=\"H7620\"*, as|strong=\"H3117\"* in|strong=\"H3427\"* her|strong=\"H5921\"* period|strong=\"H3117\"*; and|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H3117\"* continue|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3117\"* purification|strong=\"H2893\"* sixty-six|strong=\"H8346\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "“‘When|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* her|strong=\"H4390\"* purification|strong=\"H2893\"* are|strong=\"H3117\"* completed|strong=\"H4390\"* for|strong=\"H3117\"* a|strong=\"H3068\"* son|strong=\"H1121\"* or|strong=\"H3117\"* for|strong=\"H3117\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*, she shall|strong=\"H3548\"* bring|strong=\"H1323\"* to|strong=\"H3117\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* at|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* lamb|strong=\"H3532\"* for|strong=\"H3117\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* pigeon|strong=\"H3123\"* or|strong=\"H3117\"* a|strong=\"H3068\"* turtledove|strong=\"H8449\"*, for|strong=\"H3117\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H5921\"*; then|strong=\"H7126\"* she|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"* from|strong=\"H6440\"* the|strong=\"H6440\"* fountain|strong=\"H4726\"* of|strong=\"H3068\"* her|strong=\"H5921\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1121\"* she|strong=\"H5921\"* cannot|strong=\"H3808\"* afford|strong=\"H3027\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"*, then|strong=\"H3947\"* she|strong=\"H5921\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3808\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*: the|strong=\"H5921\"* one|strong=\"H3808\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H8147\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* she|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* a|strong=\"H3068\"* swelling|strong=\"H7613\"* in|strong=\"H1320\"* his|strong=\"H1961\"* body|strong=\"H1320\"*’s skin|strong=\"H5785\"*, or|strong=\"H1121\"* a|strong=\"H3068\"* scab|strong=\"H5597\"*, or|strong=\"H1121\"* a|strong=\"H3068\"* bright|strong=\"H1320\"* spot, and|strong=\"H1121\"* it|strong=\"H3588\"* becomes|strong=\"H1961\"* in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H1121\"* his|strong=\"H1961\"* body|strong=\"H1320\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H1121\"* leprosy|strong=\"H6883\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* Aaron the|strong=\"H3588\"* priest|strong=\"H3548\"* or|strong=\"H1121\"* to|strong=\"H1961\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*, the|strong=\"H3588\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H5061\"* the|strong=\"H7200\"* body|strong=\"H1320\"*. If|strong=\"H7200\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H1320\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H6013\"* the|strong=\"H7200\"* body|strong=\"H1320\"*’s skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"*; so|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* and|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1931\"* the|strong=\"H4480\"* bright|strong=\"H3836\"* spot is|strong=\"H1931\"* white|strong=\"H3836\"* in|strong=\"H3117\"* the|strong=\"H4480\"* skin|strong=\"H5785\"* of|strong=\"H3117\"* his|strong=\"H4480\"* body|strong=\"H1320\"*, and|strong=\"H3117\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H4480\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* its|strong=\"H2015\"* hair|strong=\"H8181\"* hasn’t turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H3808\"* the|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H4480\"* infected person|strong=\"H1320\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* in|strong=\"H3117\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H3117\"* arrested and|strong=\"H3117\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* again|strong=\"H8145\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* faded|strong=\"H3544\"* and|strong=\"H3117\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2891\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* scab|strong=\"H4556\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H7200\"* if|strong=\"H7200\"* the|strong=\"H7200\"* scab|strong=\"H4556\"* spreads|strong=\"H6581\"* on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* after|strong=\"H8145\"* he|strong=\"H5785\"* has|strong=\"H3548\"* shown|strong=\"H7200\"* himself to|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* for|strong=\"H5785\"* his|strong=\"H7200\"* cleansing|strong=\"H2893\"*, he|strong=\"H5785\"* shall|strong=\"H3548\"* show|strong=\"H7200\"* himself to|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* again|strong=\"H8145\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* scab|strong=\"H4556\"* has|strong=\"H2009\"* spread|strong=\"H6581\"* on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 9, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* is|strong=\"H1961\"* in|strong=\"H1961\"* a|strong=\"H3068\"* man, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* there|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* white|strong=\"H3836\"* swelling|strong=\"H7613\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* it|strong=\"H1931\"* has|strong=\"H2009\"* turned|strong=\"H2015\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* there|strong=\"H2009\"* is|strong=\"H1931\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H7200\"* swelling|strong=\"H7613\"*," + }, + { + "verseNum": 11, + "text": "it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* chronic|strong=\"H3462\"* leprosy|strong=\"H6883\"* in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* his|strong=\"H3588\"* body|strong=\"H1320\"*, and|strong=\"H3548\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* isolate|strong=\"H5462\"* him|strong=\"H2930\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* already unclean|strong=\"H2931\"*." + }, + { + "verseNum": 12, + "text": "“If the|strong=\"H3605\"* leprosy|strong=\"H6883\"* breaks|strong=\"H6524\"* out|strong=\"H3605\"* all|strong=\"H3605\"* over|strong=\"H7218\"* the|strong=\"H3605\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* the|strong=\"H3605\"* leprosy|strong=\"H6883\"* covers|strong=\"H3680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* skin|strong=\"H5785\"* of|strong=\"H7218\"* the|strong=\"H3605\"* infected person|strong=\"H5869\"* from|strong=\"H5704\"* his|strong=\"H3605\"* head|strong=\"H7218\"* even|strong=\"H5704\"* to|strong=\"H5704\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* it|strong=\"H3680\"* appears|strong=\"H4758\"* to|strong=\"H5704\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*," + }, + { + "verseNum": 13, + "text": "then|strong=\"H2009\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H3605\"* leprosy|strong=\"H6883\"* has|strong=\"H5061\"* covered|strong=\"H3680\"* all|strong=\"H3605\"* his|strong=\"H3605\"* flesh|strong=\"H1320\"*, he|strong=\"H1931\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2889\"* of|strong=\"H3605\"* the|strong=\"H3605\"* plague|strong=\"H5061\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* all|strong=\"H3605\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*: he|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H7200\"* whenever|strong=\"H3117\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* appears|strong=\"H7200\"* in|strong=\"H3117\"* him|strong=\"H7200\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"*, and|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2931\"*: the|strong=\"H7200\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 16, + "text": "Or|strong=\"H1320\"* if|strong=\"H3588\"* the|strong=\"H3588\"* raw|strong=\"H2416\"* flesh|strong=\"H1320\"* turns|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* is|strong=\"H1320\"* changed|strong=\"H2015\"* to|strong=\"H7725\"* white|strong=\"H3836\"*, then|strong=\"H7725\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* come|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2889\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 18, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* body|strong=\"H1320\"* has|strong=\"H1961\"* a|strong=\"H3068\"* boil|strong=\"H7822\"* on|strong=\"H1961\"* its|strong=\"H3588\"* skin|strong=\"H5785\"*, and|strong=\"H1320\"* it|strong=\"H3588\"* has|strong=\"H1961\"* healed|strong=\"H7495\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H3548\"* in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H4725\"* the|strong=\"H7200\"* boil|strong=\"H7822\"* there|strong=\"H1961\"* is|strong=\"H1961\"* a|strong=\"H3068\"* white|strong=\"H3836\"* swelling|strong=\"H7613\"*, or|strong=\"H7200\"* a|strong=\"H3068\"* bright|strong=\"H3836\"* spot, reddish-white, then|strong=\"H1961\"* it|strong=\"H7200\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* shown|strong=\"H7200\"* to|strong=\"H1961\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* its|strong=\"H2015\"* hair|strong=\"H8181\"* has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* broken|strong=\"H6524\"* out|strong=\"H4480\"* in|strong=\"H7200\"* the|strong=\"H7200\"* boil|strong=\"H7822\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H7200\"* if|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* are|strong=\"H3117\"* no|strong=\"H4480\"* white|strong=\"H3836\"* hairs|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* it|strong=\"H1931\"* isn’t deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, but|strong=\"H7200\"* is|strong=\"H1931\"* dim|strong=\"H3544\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* spreads|strong=\"H6581\"* in|strong=\"H3548\"* the|strong=\"H3548\"* skin|strong=\"H5785\"*, then|strong=\"H3548\"* the|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* plague|strong=\"H5061\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* the|strong=\"H8478\"* bright spot|strong=\"H8478\"* stays|strong=\"H5975\"* in|strong=\"H5975\"* its|strong=\"H5975\"* place|strong=\"H8478\"*, and|strong=\"H3548\"* hasn’t spread|strong=\"H6581\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H8478\"* scar|strong=\"H6867\"* from|strong=\"H8478\"* the|strong=\"H8478\"* boil|strong=\"H7822\"*; and|strong=\"H3548\"* the|strong=\"H8478\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 24, + "text": "“Or|strong=\"H1320\"* when|strong=\"H3588\"* the|strong=\"H3588\"* body|strong=\"H1320\"* has|strong=\"H1961\"* a|strong=\"H3068\"* burn|strong=\"H4348\"* from|strong=\"H1961\"* fire on|strong=\"H1961\"* its|strong=\"H3588\"* skin|strong=\"H5785\"*, and|strong=\"H1320\"* the|strong=\"H3588\"* raw|strong=\"H4241\"* flesh|strong=\"H1320\"* of|strong=\"H1320\"* the|strong=\"H3588\"* burn|strong=\"H4348\"* becomes|strong=\"H1961\"* a|strong=\"H3068\"* bright|strong=\"H3836\"* spot, reddish-white, or|strong=\"H1320\"* white|strong=\"H3836\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H7200\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spot has|strong=\"H5061\"* turned|strong=\"H2015\"* white|strong=\"H3836\"*, and|strong=\"H3548\"* its|strong=\"H2015\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"*. It|strong=\"H1931\"* has|strong=\"H5061\"* broken|strong=\"H6524\"* out|strong=\"H4480\"* in|strong=\"H7200\"* the|strong=\"H7200\"* burning|strong=\"H4348\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"H7200\"* if|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3117\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H4480\"* white|strong=\"H3836\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spot, and|strong=\"H3117\"* it|strong=\"H1931\"* isn’t deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, but|strong=\"H7200\"* has|strong=\"H3117\"* faded|strong=\"H3544\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. If|strong=\"H7200\"* it|strong=\"H1931\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H7200\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H3117\"* leprosy|strong=\"H6883\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* bright spot|strong=\"H8478\"* stays|strong=\"H5975\"* in|strong=\"H5975\"* its|strong=\"H5975\"* place|strong=\"H8478\"*, and|strong=\"H3548\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H5975\"* the|strong=\"H3588\"* skin|strong=\"H5785\"*, but|strong=\"H3588\"* is|strong=\"H1931\"* faded|strong=\"H3544\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* swelling|strong=\"H7613\"* from|strong=\"H8478\"* the|strong=\"H3588\"* burn|strong=\"H4348\"*, and|strong=\"H3548\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2891\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* scar|strong=\"H6867\"* from|strong=\"H8478\"* the|strong=\"H3588\"* burn|strong=\"H4348\"*." + }, + { + "verseNum": 29, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7218\"* or|strong=\"H7218\"* woman has|strong=\"H1961\"* a|strong=\"H3068\"* plague|strong=\"H5061\"* on|strong=\"H1961\"* the|strong=\"H3588\"* head|strong=\"H7218\"* or|strong=\"H7218\"* on|strong=\"H1961\"* the|strong=\"H3588\"* beard|strong=\"H2206\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* its|strong=\"H4480\"* appearance|strong=\"H4758\"* is|strong=\"H1931\"* deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3548\"* the|strong=\"H7200\"* hair|strong=\"H8181\"* in|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H1931\"* yellow|strong=\"H6669\"* and|strong=\"H3548\"* thin|strong=\"H1851\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2930\"* him|strong=\"H7200\"* unclean|strong=\"H2930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H7200\"* itch. It|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"* of|strong=\"H7218\"* the|strong=\"H7200\"* head|strong=\"H7218\"* or|strong=\"H4480\"* of|strong=\"H7218\"* the|strong=\"H7200\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 31, + "text": "If|strong=\"H3588\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H3117\"* itching, and|strong=\"H3117\"* behold|strong=\"H2009\"*, its|strong=\"H3588\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* there|strong=\"H2009\"* is|strong=\"H3117\"* no|strong=\"H4480\"* black|strong=\"H7838\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H3588\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H7200\"* person|strong=\"H7200\"* infected with|strong=\"H3117\"* itching seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 32, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H3117\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch hasn’t spread|strong=\"H6581\"*, and|strong=\"H3117\"* there|strong=\"H2009\"* is|strong=\"H3117\"* no|strong=\"H3808\"* yellow|strong=\"H6669\"* hair|strong=\"H8181\"* in|strong=\"H3117\"* it|strong=\"H7200\"*, and|strong=\"H3117\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H3117\"* the|strong=\"H7200\"* itch isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*," + }, + { + "verseNum": 33, + "text": "then|strong=\"H3808\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* shaved|strong=\"H1548\"*, but|strong=\"H3808\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* the|strong=\"H3117\"* itch. Then|strong=\"H3808\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* the|strong=\"H3117\"* one|strong=\"H3808\"* who|strong=\"H3548\"* has|strong=\"H3117\"* the|strong=\"H3117\"* itch seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "On|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* itch; and|strong=\"H3117\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch hasn’t spread|strong=\"H6581\"* in|strong=\"H3117\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, and|strong=\"H3117\"* its|strong=\"H4480\"* appearance|strong=\"H4758\"* isn’t deeper|strong=\"H6013\"* than|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H7200\"* clean|strong=\"H2891\"*. He|strong=\"H3117\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes and|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 35, + "text": "But if the itch spreads|strong=\"H6581\"* in|strong=\"H5785\"* the skin|strong=\"H5785\"* after his cleansing|strong=\"H2893\"*," + }, + { + "verseNum": 36, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine|strong=\"H1239\"* him|strong=\"H7200\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* itch has|strong=\"H2009\"* spread|strong=\"H6581\"* in|strong=\"H3808\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* look|strong=\"H7200\"* for|strong=\"H3808\"* the|strong=\"H7200\"* yellow|strong=\"H6669\"* hair|strong=\"H8181\"*; he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"H1931\"* if|strong=\"H1931\"* in|strong=\"H5975\"* his|strong=\"H5975\"* eyes|strong=\"H5869\"* the|strong=\"H5975\"* itch is|strong=\"H1931\"* arrested and|strong=\"H3548\"* black|strong=\"H7838\"* hair|strong=\"H8181\"* has|strong=\"H5869\"* grown|strong=\"H6779\"* in|strong=\"H5975\"* it|strong=\"H1931\"*, then|strong=\"H5975\"* the|strong=\"H5975\"* itch is|strong=\"H1931\"* healed|strong=\"H7495\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*. The|strong=\"H5975\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* him|strong=\"H2891\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 38, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1320\"* or|strong=\"H1320\"* a|strong=\"H3068\"* woman has|strong=\"H1961\"* bright|strong=\"H3836\"* spots in|strong=\"H1320\"* the|strong=\"H3588\"* skin|strong=\"H5785\"* of|strong=\"H1320\"* the|strong=\"H3588\"* body|strong=\"H1320\"*, even|strong=\"H3588\"* white|strong=\"H3836\"* bright|strong=\"H3836\"* spots," + }, + { + "verseNum": 39, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine them|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* bright|strong=\"H3836\"* spots on|strong=\"H7200\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H3548\"* their|strong=\"H7200\"* body|strong=\"H1320\"* are|strong=\"H3548\"* a|strong=\"H3068\"* dull white|strong=\"H3836\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* harmless rash. It|strong=\"H1931\"* has|strong=\"H2009\"* broken|strong=\"H6524\"* out|strong=\"H7200\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 40, + "text": "“If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7218\"*’s hair|strong=\"H7218\"* has|strong=\"H3588\"* fallen|strong=\"H4803\"* from|strong=\"H7218\"* his|strong=\"H3588\"* head|strong=\"H7218\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* bald|strong=\"H7142\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 41, + "text": "If|strong=\"H1931\"* his|strong=\"H6440\"* hair|strong=\"H7218\"* has|strong=\"H1931\"* fallen|strong=\"H4803\"* off|strong=\"H4803\"* from|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* part|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H6440\"* head|strong=\"H7218\"*, his|strong=\"H6440\"* forehead|strong=\"H6285\"* is|strong=\"H1931\"* bald|strong=\"H1371\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 42, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* reddish-white plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H1961\"* the|strong=\"H3588\"* bald|strong=\"H1372\"* head|strong=\"H7146\"* or|strong=\"H5061\"* the|strong=\"H3588\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* leprosy|strong=\"H6883\"* breaking|strong=\"H6524\"* out|strong=\"H6524\"* in|strong=\"H1961\"* his|strong=\"H1961\"* bald|strong=\"H1372\"* head|strong=\"H7146\"* or|strong=\"H5061\"* his|strong=\"H1961\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*." + }, + { + "verseNum": 43, + "text": "Then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* swelling|strong=\"H7613\"* of|strong=\"H5061\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* reddish-white in|strong=\"H1320\"* his|strong=\"H7200\"* bald|strong=\"H1372\"* head|strong=\"H7146\"*, or|strong=\"H7200\"* in|strong=\"H1320\"* his|strong=\"H7200\"* bald|strong=\"H1372\"* forehead|strong=\"H1372\"*, like|strong=\"H4758\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* in|strong=\"H1320\"* the|strong=\"H7200\"* skin|strong=\"H5785\"* of|strong=\"H5061\"* the|strong=\"H7200\"* body|strong=\"H1320\"*," + }, + { + "verseNum": 44, + "text": "he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* leprous|strong=\"H6879\"* man|strong=\"H7218\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. The|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* surely|strong=\"H2930\"* pronounce|strong=\"H2930\"* him|strong=\"H2930\"* unclean|strong=\"H2931\"*. His|strong=\"H2930\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* on|strong=\"H7218\"* his|strong=\"H2930\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 45, + "text": "“The|strong=\"H5921\"* leper|strong=\"H6879\"* in|strong=\"H5921\"* whom|strong=\"H7121\"* the|strong=\"H5921\"* plague|strong=\"H5061\"* is|strong=\"H1961\"* shall|strong=\"H7218\"* wear|strong=\"H1961\"* torn|strong=\"H6533\"* clothes, and|strong=\"H7218\"* the|strong=\"H5921\"* hair|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H7121\"* head|strong=\"H7218\"* shall|strong=\"H7218\"* hang loose|strong=\"H5921\"*. He|strong=\"H5921\"* shall|strong=\"H7218\"* cover|strong=\"H5844\"* his|strong=\"H7121\"* upper lip|strong=\"H8222\"*, and|strong=\"H7218\"* shall|strong=\"H7218\"* cry|strong=\"H7121\"*, ‘Unclean|strong=\"H2931\"*! Unclean|strong=\"H2931\"*!’" + }, + { + "verseNum": 46, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* in|strong=\"H3427\"* which|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H3427\"* him|strong=\"H2930\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*. He|strong=\"H1931\"* shall|strong=\"H3117\"* dwell|strong=\"H3427\"* alone|strong=\"H1931\"*. His|strong=\"H3605\"* dwelling|strong=\"H3427\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 47, + "text": "“The|strong=\"H3588\"* garment also|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H3588\"* plague|strong=\"H5061\"* of|strong=\"H5061\"* leprosy|strong=\"H6883\"* is|strong=\"H1961\"* in|strong=\"H1961\"*, whether it|strong=\"H3588\"* is|strong=\"H1961\"* a|strong=\"H3068\"* woolen garment, or|strong=\"H5061\"* a|strong=\"H3068\"* linen|strong=\"H6593\"* garment;" + }, + { + "verseNum": 48, + "text": "whether it|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H4399\"* warp|strong=\"H8359\"* or|strong=\"H6785\"* woof|strong=\"H6154\"*;+ 13:48 warp and woof are the vertical and horizontal threads in woven cloth* of|strong=\"H3605\"* linen|strong=\"H6593\"* or|strong=\"H6785\"* of|strong=\"H3605\"* wool|strong=\"H6785\"*; whether in|strong=\"H4399\"* leather|strong=\"H5785\"*, or|strong=\"H6785\"* in|strong=\"H4399\"* anything|strong=\"H3605\"* made|strong=\"H4399\"* of|strong=\"H3605\"* leather|strong=\"H5785\"*;" + }, + { + "verseNum": 49, + "text": "if|strong=\"H7200\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* greenish|strong=\"H3422\"* or|strong=\"H7200\"* reddish in|strong=\"H7200\"* the|strong=\"H3605\"* garment, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* leather|strong=\"H5785\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H7200\"* in|strong=\"H7200\"* anything|strong=\"H3605\"* made|strong=\"H1961\"* of|strong=\"H3627\"* leather|strong=\"H5785\"*; it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3627\"* leprosy|strong=\"H6883\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* shown|strong=\"H7200\"* to|strong=\"H1961\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 50, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*, and|strong=\"H3117\"* isolate|strong=\"H5462\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"H1931\"* shall|strong=\"H3117\"* examine the|strong=\"H3605\"* plague|strong=\"H5061\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. If|strong=\"H3588\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H6213\"* the|strong=\"H3605\"* garment, either|strong=\"H3588\"* in|strong=\"H6213\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H3605\"* skin|strong=\"H5785\"*, whatever|strong=\"H3605\"* use|strong=\"H4399\"* the|strong=\"H3605\"* skin|strong=\"H5785\"* is|strong=\"H1931\"* used|strong=\"H6213\"* for|strong=\"H3588\"*, the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"H1931\"* shall|strong=\"H1931\"* burn|strong=\"H8313\"* the|strong=\"H3605\"* garment, whether the|strong=\"H3605\"* warp|strong=\"H8359\"* or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, in|strong=\"H1961\"* wool|strong=\"H6785\"* or|strong=\"H5061\"* in|strong=\"H1961\"* linen|strong=\"H6593\"*, or|strong=\"H5061\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* leather|strong=\"H5785\"*, in|strong=\"H1961\"* which|strong=\"H1931\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* in|strong=\"H1961\"* the|strong=\"H3605\"* fire." + }, + { + "verseNum": 53, + "text": "“If|strong=\"H2009\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* examines|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H3548\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H3808\"* the|strong=\"H3605\"* garment, either|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H3808\"* in|strong=\"H3808\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H3808\"* in|strong=\"H3808\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*;" + }, + { + "verseNum": 54, + "text": "then|strong=\"H6680\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H3117\"* they|strong=\"H3117\"* wash|strong=\"H3526\"* the|strong=\"H3117\"* thing|strong=\"H8145\"* that|strong=\"H3117\"* the|strong=\"H3117\"* plague|strong=\"H5061\"* is|strong=\"H3117\"* in|strong=\"H3117\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* isolate|strong=\"H5462\"* it|strong=\"H3117\"* seven|strong=\"H7651\"* more|strong=\"H8145\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 55, + "text": "Then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine it|strong=\"H1931\"*, after|strong=\"H7200\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* washed|strong=\"H3526\"*; and|strong=\"H3548\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t changed|strong=\"H2015\"* its|strong=\"H2015\"* color, and|strong=\"H3548\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*; you|strong=\"H3808\"* shall|strong=\"H3548\"* burn|strong=\"H8313\"* it|strong=\"H1931\"* in|strong=\"H3808\"* the|strong=\"H7200\"* fire. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* mildewed spot, whether|strong=\"H7200\"* the|strong=\"H7200\"* bareness|strong=\"H7146\"* is|strong=\"H1931\"* inside or|strong=\"H3808\"* outside." + }, + { + "verseNum": 56, + "text": "If|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* looks|strong=\"H7200\"*, and|strong=\"H3548\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* faded|strong=\"H3544\"* after|strong=\"H4480\"* it|strong=\"H7200\"* is|strong=\"H2009\"* washed|strong=\"H3526\"*, then|strong=\"H2009\"* he|strong=\"H4480\"* shall|strong=\"H3548\"* tear|strong=\"H7167\"* it|strong=\"H7200\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* garment, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* skin|strong=\"H5785\"*, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* warp|strong=\"H8359\"*, or|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H7200\"* woof|strong=\"H6154\"*;" + }, + { + "verseNum": 57, + "text": "and|strong=\"H7200\"* if|strong=\"H7200\"* it|strong=\"H1931\"* appears|strong=\"H7200\"* again|strong=\"H5750\"* in|strong=\"H5750\"* the|strong=\"H3605\"* garment, either in|strong=\"H5750\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H7200\"* in|strong=\"H5750\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H7200\"* in|strong=\"H5750\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* spreading|strong=\"H6524\"*. You|strong=\"H3605\"* shall|strong=\"H1931\"* burn|strong=\"H8313\"* what|strong=\"H7200\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* is|strong=\"H1931\"* in|strong=\"H5750\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 58, + "text": "The|strong=\"H3605\"* garment, either|strong=\"H8145\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H5061\"* whatever|strong=\"H3605\"* thing|strong=\"H3627\"* of|strong=\"H3627\"* skin|strong=\"H5785\"* it|strong=\"H3627\"* is|strong=\"H3605\"*, which|strong=\"H1992\"* you|strong=\"H3605\"* shall|strong=\"H2891\"* wash|strong=\"H3526\"*, if the|strong=\"H3605\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* them|strong=\"H1992\"*, then|strong=\"H3605\"* it|strong=\"H3627\"* shall|strong=\"H2891\"* be|strong=\"H5061\"* washed|strong=\"H3526\"* the|strong=\"H3605\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, and|strong=\"H3627\"* it|strong=\"H3627\"* will|strong=\"H1992\"* be|strong=\"H5061\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 59, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3627\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3627\"* mildew in|strong=\"H3627\"* a|strong=\"H3068\"* garment of|strong=\"H3627\"* wool|strong=\"H6785\"* or|strong=\"H5061\"* linen|strong=\"H6593\"*, either in|strong=\"H3627\"* the|strong=\"H3605\"* warp|strong=\"H8359\"*, or|strong=\"H5061\"* the|strong=\"H3605\"* woof|strong=\"H6154\"*, or|strong=\"H5061\"* in|strong=\"H3627\"* anything|strong=\"H3605\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, to|strong=\"H3627\"* pronounce|strong=\"H2930\"* it|strong=\"H2930\"* clean|strong=\"H2891\"*, or|strong=\"H5061\"* to|strong=\"H3627\"* pronounce|strong=\"H2930\"* it|strong=\"H2930\"* unclean|strong=\"H2930\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H3117\"* law|strong=\"H8451\"* of|strong=\"H3117\"* the|strong=\"H3117\"* leper|strong=\"H6879\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H1961\"* cleansing|strong=\"H2893\"*: He|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* brought|strong=\"H3548\"* to|strong=\"H1961\"* the|strong=\"H3117\"* priest|strong=\"H3548\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3548\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*. The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* examine him|strong=\"H7200\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* of|strong=\"H4480\"* leprosy|strong=\"H6883\"* is|strong=\"H2009\"* healed|strong=\"H7495\"* in|strong=\"H7200\"* the|strong=\"H7200\"* leper|strong=\"H6879\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H3947\"* the|strong=\"H3947\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H6680\"* to|strong=\"H6680\"* take|strong=\"H3947\"* for|strong=\"H6086\"* him|strong=\"H3947\"* who|strong=\"H3548\"* is|strong=\"H2416\"* to|strong=\"H6680\"* be|strong=\"H6086\"* cleansed|strong=\"H2891\"* two|strong=\"H8147\"* living|strong=\"H2416\"* clean|strong=\"H2889\"* birds|strong=\"H6833\"*, cedar wood|strong=\"H6086\"*, scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* hyssop." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H5921\"* to|strong=\"H5921\"* kill|strong=\"H7819\"* one|strong=\"H2416\"* of|strong=\"H3627\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* in|strong=\"H5921\"* an|strong=\"H7819\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* over|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, he|strong=\"H5921\"* shall|strong=\"H4325\"* take|strong=\"H3947\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* cedar wood|strong=\"H6086\"*, the|strong=\"H5921\"* scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* the|strong=\"H5921\"* hyssop, and|strong=\"H6086\"* shall|strong=\"H4325\"* dip|strong=\"H2881\"* them|strong=\"H5921\"* and|strong=\"H6086\"* the|strong=\"H5921\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4325\"* the|strong=\"H5921\"* bird|strong=\"H6833\"* that|strong=\"H4325\"* was|strong=\"H4325\"* killed|strong=\"H7819\"* over|strong=\"H5921\"* the|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H4480\"* shall|strong=\"H7704\"* sprinkle|strong=\"H5137\"* on|strong=\"H5921\"* him|strong=\"H6440\"* who|strong=\"H2416\"* is|strong=\"H6440\"* to|strong=\"H7971\"* be|strong=\"H6440\"* cleansed|strong=\"H2891\"* from|strong=\"H4480\"* the|strong=\"H6440\"* leprosy|strong=\"H6883\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H7971\"* shall|strong=\"H7704\"* pronounce|strong=\"H2891\"* him|strong=\"H6440\"* clean|strong=\"H2891\"*, and|strong=\"H7971\"* shall|strong=\"H7704\"* let|strong=\"H7971\"* the|strong=\"H6440\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* go|strong=\"H7971\"* into|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 8, + "text": "“He|strong=\"H3117\"* who|strong=\"H3605\"* is|strong=\"H3117\"* to|strong=\"H3117\"* be|strong=\"H3117\"* cleansed|strong=\"H2891\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3117\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"*, and|strong=\"H3117\"* bathe|strong=\"H7364\"* himself|strong=\"H3427\"* in|strong=\"H3427\"* water|strong=\"H4325\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*. After|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* come into|strong=\"H4325\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, but|strong=\"H3605\"* shall|strong=\"H3117\"* dwell|strong=\"H3427\"* outside|strong=\"H2351\"* his|strong=\"H3605\"* tent seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"* off|strong=\"H1548\"* his|strong=\"H3605\"* head|strong=\"H7218\"* and|strong=\"H3117\"* his|strong=\"H3605\"* beard|strong=\"H2206\"* and|strong=\"H3117\"* his|strong=\"H3605\"* eyebrows|strong=\"H5869\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hair|strong=\"H8181\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* bathe|strong=\"H7364\"* his|strong=\"H3605\"* body|strong=\"H1320\"* in|strong=\"H3117\"* water|strong=\"H4325\"*. Then|strong=\"H1961\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 10, + "text": "“On|strong=\"H3117\"* the|strong=\"H3947\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* take|strong=\"H3947\"* two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, one|strong=\"H3532\"* ewe|strong=\"H3535\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1323\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, three|strong=\"H7969\"* tenths of|strong=\"H3117\"* an|strong=\"H3947\"* ephah+ 14:10 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3117\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3117\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H3117\"* one|strong=\"H3532\"* log|strong=\"H3849\"*+ 14:10 a log is a liquid measure of about 300 ml or 10 ounces* of|strong=\"H3117\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* who|strong=\"H3068\"* cleanses him|strong=\"H6440\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H6440\"* man|strong=\"H6440\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, and|strong=\"H3068\"* those things, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 12, + "text": "“The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* one|strong=\"H3532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"*, and|strong=\"H3068\"* offer|strong=\"H7126\"* him|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* trespass offering|strong=\"H8573\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* log|strong=\"H3849\"* of|strong=\"H3068\"* oil|strong=\"H8081\"*, and|strong=\"H3068\"* wave|strong=\"H8573\"* them|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H3588\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* in|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H4725\"* they|strong=\"H3588\"* kill|strong=\"H7819\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3548\"* the|strong=\"H3588\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, in|strong=\"H4725\"* the|strong=\"H3588\"* place|strong=\"H4725\"* of|strong=\"H4725\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"*; for|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* is|strong=\"H1931\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*’s, so|strong=\"H3588\"* is|strong=\"H1931\"* the|strong=\"H3588\"* trespass offering|strong=\"H5930\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H3709\"* the|strong=\"H5921\"* log|strong=\"H3849\"* of|strong=\"H3709\"* oil|strong=\"H8081\"*, and|strong=\"H3548\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H3709\"* of|strong=\"H3709\"* his|strong=\"H3947\"* own|strong=\"H3548\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* dip|strong=\"H2881\"* his|strong=\"H3068\"* right|strong=\"H3233\"* finger in|strong=\"H5921\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3068\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* with|strong=\"H3068\"* his|strong=\"H3068\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H3027\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* that|strong=\"H5414\"* is|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*, upon|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* rest|strong=\"H3498\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*’s hand|strong=\"H3709\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* him|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3548\"* is|strong=\"H2403\"* to|strong=\"H5921\"* be|strong=\"H3548\"* cleansed|strong=\"H2891\"* because|strong=\"H5921\"* of|strong=\"H5921\"* his|strong=\"H5921\"* uncleanness|strong=\"H2932\"*. Afterward he|strong=\"H6213\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*;" + }, + { + "verseNum": 20, + "text": "then|strong=\"H5927\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H3548\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3548\"* he|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 21, + "text": "“If|strong=\"H5381\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poor|strong=\"H1800\"*, and|strong=\"H3027\"* can|strong=\"H3947\"*’t afford|strong=\"H3027\"* so|strong=\"H3947\"* much|strong=\"H3027\"*, then|strong=\"H3947\"* he|strong=\"H1931\"* shall|strong=\"H3027\"* take|strong=\"H3947\"* one|strong=\"H3532\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* for|strong=\"H5921\"* a|strong=\"H3068\"* trespass offering|strong=\"H4503\"* to|strong=\"H5921\"* be|strong=\"H3027\"* waved|strong=\"H8573\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3027\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* of|strong=\"H3027\"* an|strong=\"H3947\"* ephah+ 14:21 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3027\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* for|strong=\"H5921\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* log|strong=\"H3849\"*+ 14:21 a log is a liquid measure of about 300 ml or 10 ounces* of|strong=\"H3027\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1121\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H1121\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, such|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H8147\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H1961\"* afford|strong=\"H3027\"*; and|strong=\"H1121\"* the|strong=\"H3027\"* one|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* other|strong=\"H8147\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 23, + "text": "“On|strong=\"H3117\"* the|strong=\"H6440\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* bring them|strong=\"H6440\"* for|strong=\"H6440\"* his|strong=\"H3068\"* cleansing|strong=\"H2893\"* to|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* lamb|strong=\"H3532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* trespass offering|strong=\"H8573\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* log|strong=\"H3849\"* of|strong=\"H3068\"* oil|strong=\"H8081\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5414\"* shall|strong=\"H3548\"* kill|strong=\"H7819\"* the|strong=\"H5921\"* lamb|strong=\"H3532\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H3548\"* and|strong=\"H3027\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pour|strong=\"H3332\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H3709\"* of|strong=\"H4480\"* his|strong=\"H5921\"* own|strong=\"H3548\"* left|strong=\"H8042\"* hand|strong=\"H3709\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* sprinkle|strong=\"H5137\"* with|strong=\"H3068\"* his|strong=\"H3068\"* right|strong=\"H3233\"* finger some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3068\"* left|strong=\"H8042\"* hand|strong=\"H3709\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* oil|strong=\"H8081\"* that|strong=\"H5414\"* is|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tip|strong=\"H8571\"* of|strong=\"H3027\"* the|strong=\"H5921\"* right|strong=\"H3233\"* ear of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3548\"* is|strong=\"H3027\"* to|strong=\"H5921\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* thumb of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* big toe of|strong=\"H3027\"* his|strong=\"H5414\"* right|strong=\"H3233\"* foot|strong=\"H7272\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3027\"* the|strong=\"H5921\"* trespass offering|strong=\"H4480\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H6440\"* rest|strong=\"H3498\"* of|strong=\"H3068\"* the|strong=\"H6440\"* oil|strong=\"H8081\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*’s hand|strong=\"H3709\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* him|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* cleansed|strong=\"H2891\"*, to|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H6213\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* one|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H6213\"* turtledoves|strong=\"H8449\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, which ever|strong=\"H4480\"* he|strong=\"H6213\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H6213\"* afford|strong=\"H3027\"*," + }, + { + "verseNum": 31, + "text": "of|strong=\"H3068\"* the|strong=\"H6440\"* kind he|strong=\"H3068\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* afford|strong=\"H3027\"*, the|strong=\"H6440\"* one|strong=\"H3068\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* who|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3027\"* cleansed|strong=\"H2891\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 32, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3027\"* law|strong=\"H8451\"* for|strong=\"H3027\"* him|strong=\"H3027\"* in|strong=\"H3027\"* whom is|strong=\"H3027\"* the|strong=\"H3027\"* plague|strong=\"H5061\"* of|strong=\"H3027\"* leprosy|strong=\"H6883\"*, who|strong=\"H3808\"* is|strong=\"H3027\"* not|strong=\"H3808\"* able|strong=\"H3027\"* to|strong=\"H3027\"* afford|strong=\"H3027\"* the|strong=\"H3027\"* sacrifice for|strong=\"H3027\"* his|strong=\"H3027\"* cleansing|strong=\"H2893\"*." + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 34, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* come|strong=\"H5061\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* Canaan|strong=\"H3667\"*, which|strong=\"H1004\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession, and|strong=\"H1004\"* I|strong=\"H3588\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spreading mildew in|strong=\"H1004\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* your|strong=\"H5414\"* possession," + }, + { + "verseNum": 35, + "text": "then|strong=\"H7200\"* he|strong=\"H1004\"* who|strong=\"H3548\"* owns the|strong=\"H7200\"* house|strong=\"H1004\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* and|strong=\"H1004\"* tell|strong=\"H5046\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*, saying, ‘There|strong=\"H7200\"* seems to|strong=\"H1004\"* me|strong=\"H7200\"* to|strong=\"H1004\"* be|strong=\"H5061\"* some sort of|strong=\"H1004\"* plague|strong=\"H5061\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*.’" + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H7200\"* they|strong=\"H3651\"* empty|strong=\"H6437\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, before|strong=\"H2962\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* goes in|strong=\"H1004\"* to|strong=\"H1004\"* examine the|strong=\"H3605\"* plague|strong=\"H5061\"*, that|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* is|strong=\"H3651\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* not|strong=\"H3808\"* be|strong=\"H3808\"* made|strong=\"H2930\"* unclean|strong=\"H2930\"*. Afterward the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3548\"* in|strong=\"H1004\"* to|strong=\"H1004\"* inspect the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* examine the|strong=\"H7200\"* plague|strong=\"H5061\"*; and|strong=\"H1004\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* in|strong=\"H1004\"* the|strong=\"H7200\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* with|strong=\"H1004\"* hollow streaks, greenish|strong=\"H3422\"* or|strong=\"H4480\"* reddish, and|strong=\"H1004\"* it|strong=\"H7200\"* appears|strong=\"H4758\"* to|strong=\"H1004\"* be|strong=\"H5061\"* deeper|strong=\"H8217\"* than|strong=\"H4480\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*," + }, + { + "verseNum": 38, + "text": "then|strong=\"H3318\"* the|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* to|strong=\"H3318\"* the|strong=\"H4480\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"*, and|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H4480\"* house|strong=\"H1004\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H3117\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H7725\"* look|strong=\"H7200\"*. If|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 40, + "text": "then|strong=\"H6680\"* the|strong=\"H6680\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* that|strong=\"H3548\"* they|strong=\"H5892\"* take|strong=\"H2502\"* out|strong=\"H2351\"* the|strong=\"H6680\"* stones in|strong=\"H5892\"* which|strong=\"H5892\"* is|strong=\"H5892\"* the|strong=\"H6680\"* plague|strong=\"H5061\"*, and|strong=\"H3548\"* cast|strong=\"H7993\"* them|strong=\"H6680\"* into|strong=\"H7993\"* an|strong=\"H7993\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H6680\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* cause the|strong=\"H5439\"* inside|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"* to|strong=\"H1004\"* be|strong=\"H5892\"* scraped|strong=\"H7096\"* all|strong=\"H5439\"* over|strong=\"H2351\"*. They|strong=\"H5892\"* shall|strong=\"H1004\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H5439\"* mortar that|strong=\"H5892\"* they|strong=\"H5892\"* scraped|strong=\"H7096\"* off|strong=\"H7096\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H5439\"* city|strong=\"H5892\"* into|strong=\"H5892\"* an|strong=\"H5892\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"H3947\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* other stones, and|strong=\"H1004\"* put|strong=\"H3947\"* them|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* place|strong=\"H8478\"* of|strong=\"H1004\"* those stones; and|strong=\"H1004\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* other mortar, and|strong=\"H1004\"* shall|strong=\"H1004\"* plaster|strong=\"H6083\"* the|strong=\"H3947\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 43, + "text": "“If the|strong=\"H7725\"* plague|strong=\"H5061\"* comes again|strong=\"H7725\"*, and|strong=\"H7725\"* breaks|strong=\"H6524\"* out|strong=\"H7725\"* in|strong=\"H1004\"* the|strong=\"H7725\"* house|strong=\"H1004\"* after|strong=\"H1004\"* he|strong=\"H1004\"* has|strong=\"H5061\"* taken|strong=\"H2502\"* out|strong=\"H7725\"* the|strong=\"H7725\"* stones, and|strong=\"H7725\"* after|strong=\"H1004\"* he|strong=\"H1004\"* has|strong=\"H5061\"* scraped|strong=\"H7096\"* the|strong=\"H7725\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* after|strong=\"H1004\"* it|strong=\"H7725\"* was|strong=\"H1004\"* plastered|strong=\"H2902\"*," + }, + { + "verseNum": 44, + "text": "then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* in|strong=\"H1004\"* and|strong=\"H1004\"* look|strong=\"H7200\"*; and|strong=\"H1004\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* has|strong=\"H5061\"* spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* destructive mildew in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H3605\"* shall|strong=\"H1004\"* break|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, its|strong=\"H3605\"* stones, and|strong=\"H1004\"* its|strong=\"H3605\"* timber|strong=\"H6086\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"*’s mortar. He|strong=\"H3605\"* shall|strong=\"H1004\"* carry|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* into|strong=\"H3318\"* an|strong=\"H3318\"* unclean|strong=\"H2931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 46, + "text": "“Moreover he|strong=\"H3117\"* who|strong=\"H3605\"* goes into|strong=\"H5704\"* the|strong=\"H3605\"* house|strong=\"H1004\"* while|strong=\"H5704\"* it|strong=\"H2930\"* is|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* shall|strong=\"H1004\"* be|strong=\"H3117\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 47, + "text": "He|strong=\"H1004\"* who lies|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes; and|strong=\"H1004\"* he|strong=\"H1004\"* who eats in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes." + }, + { + "verseNum": 48, + "text": "“If|strong=\"H3588\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* come|strong=\"H5061\"* in|strong=\"H1004\"*, and|strong=\"H1004\"* examine it|strong=\"H3588\"*, and|strong=\"H1004\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* plague|strong=\"H5061\"* hasn’t spread|strong=\"H6581\"* in|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, after|strong=\"H3588\"* the|strong=\"H7200\"* house|strong=\"H1004\"* was|strong=\"H1004\"* plastered|strong=\"H2902\"*, then|strong=\"H2009\"* the|strong=\"H7200\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* pronounce|strong=\"H2891\"* the|strong=\"H7200\"* house|strong=\"H1004\"* clean|strong=\"H2891\"*, because|strong=\"H3588\"* the|strong=\"H7200\"* plague|strong=\"H5061\"* is|strong=\"H2009\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 49, + "text": "To|strong=\"H1004\"* cleanse|strong=\"H2398\"* the|strong=\"H3947\"* house|strong=\"H1004\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* two|strong=\"H8147\"* birds|strong=\"H6833\"*, cedar wood|strong=\"H6086\"*, scarlet|strong=\"H8144\"*, and|strong=\"H1004\"* hyssop." + }, + { + "verseNum": 50, + "text": "He|strong=\"H5921\"* shall|strong=\"H4325\"* kill|strong=\"H7819\"* one|strong=\"H2416\"* of|strong=\"H3627\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* in|strong=\"H5921\"* an|strong=\"H7819\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"* over|strong=\"H5921\"* running|strong=\"H2416\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 51, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* take|strong=\"H3947\"* the|strong=\"H3947\"* cedar wood|strong=\"H6086\"*, the|strong=\"H3947\"* hyssop, the|strong=\"H3947\"* scarlet|strong=\"H8144\"*, and|strong=\"H1004\"* the|strong=\"H3947\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* dip|strong=\"H2881\"* them|strong=\"H3947\"* in|strong=\"H1004\"* the|strong=\"H3947\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H3947\"* slain|strong=\"H7819\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3947\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, and|strong=\"H1004\"* sprinkle|strong=\"H5137\"* the|strong=\"H3947\"* house|strong=\"H1004\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 52, + "text": "He|strong=\"H1004\"* shall|strong=\"H1004\"* cleanse|strong=\"H2398\"* the|strong=\"H2398\"* house|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H2398\"* bird|strong=\"H6833\"*, and|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* living|strong=\"H2416\"* bird|strong=\"H6833\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* cedar wood|strong=\"H6086\"*, with|strong=\"H1004\"* the|strong=\"H2398\"* hyssop, and|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H2398\"* scarlet|strong=\"H8144\"*;" + }, + { + "verseNum": 53, + "text": "but|strong=\"H5921\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* let|strong=\"H7971\"* the|strong=\"H6440\"* living|strong=\"H2416\"* bird|strong=\"H6833\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"* into|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*. So|strong=\"H7971\"* shall|strong=\"H1004\"* he|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*; and|strong=\"H7971\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H5892\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 54, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* for|strong=\"H3605\"* any|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H8451\"* leprosy|strong=\"H6883\"*, and|strong=\"H8451\"* for|strong=\"H3605\"* an itch," + }, + { + "verseNum": 55, + "text": "and|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H1004\"* destructive mildew of|strong=\"H1004\"* a|strong=\"H3068\"* garment, and|strong=\"H1004\"* for|strong=\"H1004\"* a|strong=\"H3068\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 56, + "text": "and|strong=\"H7613\"* for a|strong=\"H3068\"* swelling|strong=\"H7613\"*, and|strong=\"H7613\"* for a|strong=\"H3068\"* scab|strong=\"H5597\"*, and|strong=\"H7613\"* for a|strong=\"H3068\"* bright spot;" + }, + { + "verseNum": 57, + "text": "to|strong=\"H3117\"* teach|strong=\"H3384\"* when|strong=\"H3117\"* it|strong=\"H2063\"* is|strong=\"H3117\"* unclean|strong=\"H2931\"*, and|strong=\"H3117\"* when|strong=\"H3117\"* it|strong=\"H2063\"* is|strong=\"H3117\"* clean|strong=\"H2889\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1961\"*, ‘When|strong=\"H3588\"* any|strong=\"H1961\"* man|strong=\"H1121\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* from|strong=\"H3478\"* his|strong=\"H3478\"* body|strong=\"H1320\"*, because|strong=\"H3588\"* of|strong=\"H1121\"* his|strong=\"H3478\"* discharge|strong=\"H2100\"* he|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2063\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* his|strong=\"H1961\"* uncleanness|strong=\"H2932\"* in|strong=\"H1320\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*: whether his|strong=\"H1961\"* body|strong=\"H1320\"* runs with|strong=\"H1320\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*, or|strong=\"H1320\"* his|strong=\"H1961\"* body|strong=\"H1320\"* has|strong=\"H1961\"* stopped|strong=\"H2856\"* from|strong=\"H1961\"* his|strong=\"H1961\"* discharge|strong=\"H2101\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H1961\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 4, + "text": "“‘Every|strong=\"H3605\"* bed|strong=\"H4904\"* on|strong=\"H5921\"* which|strong=\"H3627\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* lies|strong=\"H7901\"* shall|strong=\"H4904\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*; and|strong=\"H3427\"* everything|strong=\"H3605\"* he|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H4904\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 5, + "text": "Whoever touches|strong=\"H5060\"* his|strong=\"H3526\"* bed|strong=\"H4904\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* anything|strong=\"H3627\"* on|strong=\"H5921\"* which|strong=\"H4325\"* the|strong=\"H5921\"* man who|strong=\"H3427\"* has|strong=\"H2100\"* the|strong=\"H5921\"* discharge|strong=\"H2100\"* sat|strong=\"H3427\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3427\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H3427\"* water|strong=\"H4325\"*, and|strong=\"H3427\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 7, + "text": "“‘He|strong=\"H5704\"* who touches|strong=\"H5060\"* the|strong=\"H5704\"* body|strong=\"H1320\"* of|strong=\"H4325\"* him|strong=\"H2930\"* who has|strong=\"H2100\"* the|strong=\"H5704\"* discharge|strong=\"H2100\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 8, + "text": "“‘If|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3588\"* the|strong=\"H3588\"* discharge|strong=\"H2100\"* spits|strong=\"H7556\"* on|strong=\"H4325\"* him|strong=\"H2930\"* who|strong=\"H3588\"* is|strong=\"H4325\"* clean|strong=\"H2889\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 9, + "text": "“‘Whatever|strong=\"H3605\"* saddle|strong=\"H4817\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* rides|strong=\"H7392\"* on|strong=\"H5921\"* shall|strong=\"H2100\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 10, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* under|strong=\"H8478\"* him|strong=\"H2930\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. He|strong=\"H5704\"* who|strong=\"H3605\"* carries|strong=\"H5375\"* those|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 11, + "text": "“‘Whomever|strong=\"H3605\"* he|strong=\"H5704\"* who|strong=\"H3605\"* has|strong=\"H3027\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* touches|strong=\"H5060\"*, without|strong=\"H3808\"* having|strong=\"H3808\"* rinsed|strong=\"H7857\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, he|strong=\"H5704\"* shall|strong=\"H3027\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3027\"* bathe|strong=\"H7364\"* himself|strong=\"H3027\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3027\"* be|strong=\"H3808\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H3605\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*, which|strong=\"H6086\"* he|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3605\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* touches|strong=\"H5060\"*, shall|strong=\"H4325\"* be|strong=\"H6086\"* broken|strong=\"H7665\"*; and|strong=\"H6086\"* every|strong=\"H3605\"* vessel|strong=\"H3627\"* of|strong=\"H3627\"* wood|strong=\"H6086\"* shall|strong=\"H4325\"* be|strong=\"H6086\"* rinsed|strong=\"H7857\"* in|strong=\"H7665\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "“‘When|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3117\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* is|strong=\"H3117\"* cleansed|strong=\"H2891\"* of|strong=\"H3117\"* his|strong=\"H3526\"* discharge|strong=\"H2100\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* to|strong=\"H3117\"* himself|strong=\"H4325\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* for|strong=\"H3588\"* his|strong=\"H3526\"* cleansing|strong=\"H2893\"*, and|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes; and|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H3117\"* running|strong=\"H2416\"* water|strong=\"H4325\"*, and|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 14, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H6440\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, and|strong=\"H1121\"* come before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* them|strong=\"H5921\"*, the|strong=\"H6440\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* discharge|strong=\"H2101\"*." + }, + { + "verseNum": 16, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* an|strong=\"H4480\"* emission|strong=\"H7902\"* of|strong=\"H4325\"* semen, then|strong=\"H3318\"* he|strong=\"H3588\"* shall|strong=\"H2233\"* bathe|strong=\"H7364\"* all|strong=\"H3605\"* his|strong=\"H3605\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3318\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 17, + "text": "Every|strong=\"H3605\"* garment and|strong=\"H4325\"* every|strong=\"H3605\"* skin|strong=\"H5785\"* which|strong=\"H4325\"* the|strong=\"H3605\"* semen is|strong=\"H3605\"* on|strong=\"H5921\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* washed|strong=\"H3526\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 18, + "text": "If a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman and|strong=\"H4325\"* there|strong=\"H5704\"* is|strong=\"H4325\"* an|strong=\"H5704\"* emission|strong=\"H7902\"* of|strong=\"H4325\"* semen, they|strong=\"H5704\"* shall|strong=\"H2233\"* both bathe|strong=\"H7364\"* themselves|strong=\"H7364\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 19, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H3117\"* her|strong=\"H3605\"* discharge|strong=\"H2100\"* in|strong=\"H3117\"* her|strong=\"H3605\"* flesh|strong=\"H1320\"* is|strong=\"H3117\"* blood|strong=\"H1818\"*, she|strong=\"H3588\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* in|strong=\"H3117\"* her|strong=\"H3605\"* impurity|strong=\"H5079\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* her|strong=\"H3605\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 20, + "text": "“‘Everything|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H5921\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* in|strong=\"H3427\"* her|strong=\"H3605\"* impurity|strong=\"H5079\"* shall|strong=\"H5079\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*. Everything|strong=\"H3605\"* also that|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H5079\"* be|strong=\"H3605\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 21, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* her|strong=\"H3605\"* bed|strong=\"H4904\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 22, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H3427\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H3427\"* water|strong=\"H4325\"*, and|strong=\"H3427\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4904\"*, or|strong=\"H5704\"* on|strong=\"H5921\"* anything|strong=\"H3627\"* she|strong=\"H1931\"* sits|strong=\"H3427\"* on|strong=\"H5921\"*, when|strong=\"H5704\"* he|strong=\"H1931\"* touches|strong=\"H5060\"* it|strong=\"H1931\"*, he|strong=\"H1931\"* shall|strong=\"H4904\"* be|strong=\"H1931\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 24, + "text": "“‘If|strong=\"H1961\"* any|strong=\"H3605\"* man|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5921\"* her|strong=\"H3605\"*, and|strong=\"H3117\"* her|strong=\"H3605\"* monthly flow is|strong=\"H3117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* every|strong=\"H3605\"* bed|strong=\"H4904\"* he|strong=\"H3117\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"*." + }, + { + "verseNum": 25, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* of|strong=\"H3117\"* her|strong=\"H3605\"* blood|strong=\"H1818\"* many|strong=\"H7227\"* days|strong=\"H3117\"* not|strong=\"H3808\"* in|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*, or|strong=\"H3808\"* if|strong=\"H3588\"* she|strong=\"H1931\"* has|strong=\"H1961\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* beyond|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* discharge|strong=\"H2100\"* of|strong=\"H3117\"* her|strong=\"H3605\"* uncleanness|strong=\"H2932\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* as|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 26, + "text": "Every|strong=\"H3605\"* bed|strong=\"H4904\"* she|strong=\"H5921\"* lies|strong=\"H7901\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* discharge|strong=\"H2101\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* to|strong=\"H1961\"* her|strong=\"H3605\"* as|strong=\"H3117\"* the|strong=\"H3605\"* bed|strong=\"H4904\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*. Everything|strong=\"H3605\"* she|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H3117\"* her|strong=\"H3605\"* period|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* these|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H2930\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H4325\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 28, + "text": "“‘But|strong=\"H3117\"* if she is|strong=\"H3117\"* cleansed|strong=\"H2891\"* of|strong=\"H3117\"* her|strong=\"H5608\"* discharge|strong=\"H2101\"*, then|strong=\"H3117\"* she shall|strong=\"H3117\"* count|strong=\"H5608\"* to|strong=\"H3117\"* herself seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* after|strong=\"H3117\"* that|strong=\"H3117\"* she shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 29, + "text": "On|strong=\"H3117\"* the|strong=\"H3947\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* she|strong=\"H8147\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* two|strong=\"H8147\"* turtledoves|strong=\"H8449\"*, or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3117\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*, to|strong=\"H3117\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H6440\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* her|strong=\"H5921\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* uncleanness|strong=\"H2932\"* of|strong=\"H3068\"* her|strong=\"H5921\"* discharge|strong=\"H2101\"*." + }, + { + "verseNum": 31, + "text": "“‘Thus|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* separate|strong=\"H5144\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* their|strong=\"H8432\"* uncleanness|strong=\"H2932\"*, so|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H3478\"* their|strong=\"H8432\"* uncleanness|strong=\"H2932\"* when|strong=\"H1121\"* they|strong=\"H3808\"* defile|strong=\"H2930\"* my|strong=\"H2930\"* tabernacle|strong=\"H4908\"* that|strong=\"H3478\"* is|strong=\"H3478\"* among|strong=\"H8432\"* them|strong=\"H8432\"*.’”" + }, + { + "verseNum": 32, + "text": "This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H4480\"* law|strong=\"H8451\"* of|strong=\"H2233\"* him|strong=\"H2930\"* who has|strong=\"H3318\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H3318\"* of|strong=\"H2233\"* him|strong=\"H2930\"* who has|strong=\"H3318\"* an|strong=\"H4480\"* emission|strong=\"H7902\"* of|strong=\"H2233\"* semen, so|strong=\"H4480\"* that|strong=\"H4480\"* he|strong=\"H4480\"* is|strong=\"H8451\"* unclean|strong=\"H2930\"* by|strong=\"H3318\"* it|strong=\"H2930\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H2145\"* of|strong=\"H5973\"* her|strong=\"H7901\"* who|strong=\"H1739\"* has|strong=\"H2100\"* her|strong=\"H7901\"* period|strong=\"H5079\"*, and|strong=\"H2145\"* of|strong=\"H5973\"* a|strong=\"H3068\"* man|strong=\"H2145\"* or|strong=\"H2145\"* woman|strong=\"H5347\"* who|strong=\"H1739\"* has|strong=\"H2100\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H2145\"* of|strong=\"H5973\"* him|strong=\"H5973\"* who|strong=\"H1739\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7901\"* who|strong=\"H1739\"* is|strong=\"H2100\"* unclean|strong=\"H2931\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* after the|strong=\"H6440\"* death|strong=\"H4194\"* of|strong=\"H1121\"* the|strong=\"H6440\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, when|strong=\"H1696\"* they|strong=\"H3068\"* came|strong=\"H7126\"* near|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* died|strong=\"H4191\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, “Tell|strong=\"H1696\"* Aaron your|strong=\"H3068\"* brother not|strong=\"H3808\"* to|strong=\"H1696\"* come at|strong=\"H5921\"* just|strong=\"H3605\"* any|strong=\"H3605\"* time|strong=\"H6256\"* into|strong=\"H5921\"* the|strong=\"H3605\"* Most|strong=\"H6944\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"* within|strong=\"H1004\"* the|strong=\"H3605\"* veil|strong=\"H6532\"*, before|strong=\"H6440\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ark; lest he|strong=\"H3588\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* appear|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 3, + "text": "“Aaron shall|strong=\"H1121\"* come into the|strong=\"H1121\"* sanctuary|strong=\"H6944\"* with|strong=\"H1241\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5921\"* shall|strong=\"H4325\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* linen tunic|strong=\"H3801\"*. He|strong=\"H5921\"* shall|strong=\"H4325\"* have|strong=\"H1961\"* the|strong=\"H5921\"* linen trousers on|strong=\"H5921\"* his|strong=\"H5921\"* body|strong=\"H1320\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* linen sash, and|strong=\"H4325\"* he|strong=\"H5921\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* the|strong=\"H5921\"* linen turban|strong=\"H4701\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* garments|strong=\"H3801\"*. He|strong=\"H5921\"* shall|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H5921\"* body|strong=\"H1320\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* put|strong=\"H3847\"* them|strong=\"H1992\"* on|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H8147\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* from|strong=\"H3478\"* the|strong=\"H3947\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* two|strong=\"H8147\"* male|strong=\"H8163\"* goats|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H1121\"* one|strong=\"H1121\"* ram for|strong=\"H1121\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 6, + "text": "“Aaron shall|strong=\"H1004\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*, and|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* himself|strong=\"H1157\"* and|strong=\"H1004\"* for|strong=\"H1157\"* his|strong=\"H7126\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H6440\"* two|strong=\"H8147\"* goats|strong=\"H8163\"*, and|strong=\"H3068\"* set|strong=\"H5975\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 8, + "text": "Aaron shall|strong=\"H3068\"* cast|strong=\"H5414\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* goats|strong=\"H8163\"*: one|strong=\"H8147\"* lot|strong=\"H1486\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* other|strong=\"H8147\"* lot|strong=\"H1486\"* for|strong=\"H5921\"* the|strong=\"H5921\"* scapegoat|strong=\"H5799\"*." + }, + { + "verseNum": 9, + "text": "Aaron shall|strong=\"H3068\"* present|strong=\"H7126\"* the|strong=\"H5921\"* goat|strong=\"H8163\"* on|strong=\"H5921\"* which|strong=\"H3068\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* fell|strong=\"H5927\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* offer|strong=\"H7126\"* him|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"* on|strong=\"H5921\"* which|strong=\"H3068\"* the|strong=\"H6440\"* lot|strong=\"H1486\"* fell|strong=\"H5927\"* for|strong=\"H5921\"* the|strong=\"H6440\"* scapegoat|strong=\"H5799\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* presented|strong=\"H5975\"* alive|strong=\"H2416\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"*, to|strong=\"H3068\"* send|strong=\"H7971\"* him|strong=\"H6440\"* away|strong=\"H7971\"* as|strong=\"H3068\"* the|strong=\"H6440\"* scapegoat|strong=\"H5799\"* into|strong=\"H5927\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "“Aaron shall|strong=\"H1004\"* present|strong=\"H7126\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H1157\"* himself|strong=\"H1157\"* and|strong=\"H1004\"* for|strong=\"H1157\"* his|strong=\"H7126\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* kill|strong=\"H7819\"* the|strong=\"H7126\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* which|strong=\"H1004\"* is|strong=\"H1004\"* for|strong=\"H1157\"* himself|strong=\"H1157\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* censer|strong=\"H4289\"* full|strong=\"H4393\"* of|strong=\"H1004\"* coals|strong=\"H1513\"* of|strong=\"H1004\"* fire|strong=\"H1513\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* two|strong=\"H3947\"* handfuls|strong=\"H4393\"* of|strong=\"H1004\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"* beaten|strong=\"H7004\"* small|strong=\"H1851\"*, and|strong=\"H3068\"* bring|strong=\"H3947\"* it|strong=\"H5921\"* within|strong=\"H1004\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H6440\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* the|strong=\"H6440\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* of|strong=\"H3068\"* the|strong=\"H6440\"* incense|strong=\"H7004\"* may|strong=\"H3068\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H6440\"* covenant, so|strong=\"H5414\"* that|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4480\"* shall|strong=\"H6440\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* of|strong=\"H6440\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H6440\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H3947\"* finger on|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* on|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H6924\"*; and|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* he|strong=\"H4480\"* shall|strong=\"H6440\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* with|strong=\"H5921\"* his|strong=\"H3947\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 15, + "text": "“Then|strong=\"H6213\"* he|strong=\"H6213\"* shall|strong=\"H5971\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* goat|strong=\"H8163\"* of|strong=\"H1004\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* that|strong=\"H5971\"* is|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1004\"* bring|strong=\"H6213\"* his|strong=\"H6440\"* blood|strong=\"H1818\"* within|strong=\"H1004\"* the|strong=\"H6440\"* veil|strong=\"H6532\"*, and|strong=\"H1004\"* do|strong=\"H6213\"* with|strong=\"H1004\"* his|strong=\"H6440\"* blood|strong=\"H1818\"* as|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* with|strong=\"H1004\"* the|strong=\"H6440\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*, and|strong=\"H1004\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* and|strong=\"H1004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3651\"* shall|strong=\"H1121\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*, even|strong=\"H3651\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*; and|strong=\"H1121\"* so|strong=\"H3651\"* he|strong=\"H3651\"* shall|strong=\"H1121\"* do|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* that|strong=\"H3605\"* dwells|strong=\"H7931\"* with|strong=\"H6213\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* their|strong=\"H3605\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 17, + "text": "No|strong=\"H3808\"* one|strong=\"H3605\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3605\"* Tent of|strong=\"H1004\"* Meeting|strong=\"H4150\"* when|strong=\"H1961\"* he|strong=\"H5704\"* enters to|strong=\"H5704\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* in|strong=\"H3478\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* comes|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3478\"* has|strong=\"H1961\"* made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5704\"* himself|strong=\"H1157\"* and|strong=\"H3478\"* for|strong=\"H5704\"* his|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H3478\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "“He|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* some of|strong=\"H3068\"* the|strong=\"H6440\"* bull|strong=\"H6499\"*’s blood|strong=\"H1818\"*, and|strong=\"H3068\"* some of|strong=\"H3068\"* the|strong=\"H6440\"* goat|strong=\"H8163\"*’s blood|strong=\"H1818\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H6440\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H4480\"* shall|strong=\"H1121\"* sprinkle|strong=\"H5137\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H5921\"* finger seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H1121\"* cleanse|strong=\"H2891\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* make it|strong=\"H5921\"* holy|strong=\"H6942\"* from|strong=\"H4480\"* the|strong=\"H5921\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "“When|strong=\"H3615\"* he|strong=\"H7126\"* has|strong=\"H4150\"* finished|strong=\"H3615\"* atoning|strong=\"H3722\"* for|strong=\"H4196\"* the|strong=\"H7126\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, the|strong=\"H7126\"* Tent of|strong=\"H4196\"* Meeting|strong=\"H4150\"*, and|strong=\"H4196\"* the|strong=\"H7126\"* altar|strong=\"H4196\"*, he|strong=\"H7126\"* shall|strong=\"H8163\"* present|strong=\"H7126\"* the|strong=\"H7126\"* live|strong=\"H2416\"* goat|strong=\"H8163\"*." + }, + { + "verseNum": 21, + "text": "Aaron shall|strong=\"H1121\"* lay|strong=\"H5414\"* both|strong=\"H8147\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* live|strong=\"H2416\"* goat|strong=\"H8163\"*, and|strong=\"H1121\"* confess|strong=\"H3034\"* over|strong=\"H5921\"* him|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*; and|strong=\"H1121\"* he|strong=\"H3605\"* shall|strong=\"H1121\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* goat|strong=\"H8163\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* send|strong=\"H7971\"* him|strong=\"H5414\"* away|strong=\"H7971\"* into|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3027\"* ready." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* goat|strong=\"H8163\"* shall|strong=\"H8163\"* carry|strong=\"H5375\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquities|strong=\"H5771\"* on|strong=\"H5921\"* himself to|strong=\"H7971\"* a|strong=\"H3068\"* solitary|strong=\"H1509\"* land, and|strong=\"H7971\"* he|strong=\"H3605\"* shall|strong=\"H8163\"* release|strong=\"H7971\"* the|strong=\"H3605\"* goat|strong=\"H8163\"* in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 23, + "text": "“Aaron shall|strong=\"H4150\"* come into the|strong=\"H8033\"* Tent of|strong=\"H6944\"* Meeting|strong=\"H4150\"*, and|strong=\"H8033\"* shall|strong=\"H4150\"* take|strong=\"H6584\"* off|strong=\"H6584\"* the|strong=\"H8033\"* linen garments which|strong=\"H8033\"* he|strong=\"H8033\"* put|strong=\"H3847\"* on|strong=\"H3847\"* when he|strong=\"H8033\"* went into the|strong=\"H8033\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, and|strong=\"H8033\"* shall|strong=\"H4150\"* leave|strong=\"H3240\"* them|strong=\"H3847\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3318\"* he|strong=\"H6213\"* shall|strong=\"H5971\"* bathe|strong=\"H7364\"* himself|strong=\"H6213\"* in|strong=\"H6213\"* water|strong=\"H4325\"* in|strong=\"H6213\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* place|strong=\"H4725\"*, put|strong=\"H3847\"* on|strong=\"H3847\"* his|strong=\"H7364\"* garments, and|strong=\"H5971\"* come|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* offer|strong=\"H6213\"* his|strong=\"H7364\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5971\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H4325\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* himself|strong=\"H6213\"* and|strong=\"H5971\"* for|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6999\"* fat|strong=\"H2459\"* of|strong=\"H4196\"* the|strong=\"H6999\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* he|strong=\"H4196\"* shall burn|strong=\"H6999\"* on|strong=\"H6999\"* the|strong=\"H6999\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 26, + "text": "“He|strong=\"H3651\"* who lets|strong=\"H7971\"* the|strong=\"H7971\"* goat|strong=\"H8163\"* go|strong=\"H7971\"* as|strong=\"H3651\"* the|strong=\"H7971\"* scapegoat|strong=\"H5799\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H7971\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H7971\"* afterward he|strong=\"H3651\"* shall|strong=\"H4325\"* come|strong=\"H7971\"* into|strong=\"H4325\"* the|strong=\"H7971\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3318\"* bull|strong=\"H6499\"* for|strong=\"H3722\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H6499\"* the|strong=\"H3318\"* goat|strong=\"H8163\"* for|strong=\"H3722\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, whose blood|strong=\"H1818\"* was|strong=\"H1320\"* brought|strong=\"H3318\"* in|strong=\"H1320\"* to|strong=\"H3318\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* in|strong=\"H1320\"* the|strong=\"H3318\"* Holy|strong=\"H6944\"* Place|strong=\"H6944\"*, shall|strong=\"H1320\"* be|strong=\"H1818\"* carried|strong=\"H3318\"* outside|strong=\"H2351\"* the|strong=\"H3318\"* camp|strong=\"H4264\"*; and|strong=\"H6499\"* they|strong=\"H2351\"* shall|strong=\"H1320\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* skins|strong=\"H5785\"*, their|strong=\"H8313\"* flesh|strong=\"H1320\"*, and|strong=\"H6499\"* their|strong=\"H8313\"* dung|strong=\"H6569\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3651\"* who burns|strong=\"H8313\"* them|strong=\"H8313\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* afterward he|strong=\"H3651\"* shall|strong=\"H4325\"* come into|strong=\"H4325\"* the|strong=\"H3651\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 29, + "text": "“It|strong=\"H6213\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* to|strong=\"H1961\"* you|strong=\"H3605\"* forever|strong=\"H5769\"*: in|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H8432\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, you|strong=\"H3605\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H3605\"* souls|strong=\"H5315\"*, and|strong=\"H5769\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H8432\"* work|strong=\"H4399\"*, whether native-born or|strong=\"H3808\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H3605\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H3588\"* on|strong=\"H5921\"* this|strong=\"H2088\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* atonement|strong=\"H3722\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, to|strong=\"H3068\"* cleanse|strong=\"H2891\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* clean|strong=\"H2891\"* from|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3068\"* sins|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H5315\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* to|strong=\"H5315\"* you|strong=\"H5315\"*, and|strong=\"H5769\"* you|strong=\"H5315\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H6031\"* souls|strong=\"H5315\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H8478\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* is|strong=\"H3027\"* anointed|strong=\"H4886\"* and|strong=\"H3027\"* who|strong=\"H3548\"* is|strong=\"H3027\"* consecrated|strong=\"H6944\"* to|strong=\"H3027\"* be|strong=\"H3027\"* priest|strong=\"H3548\"* in|strong=\"H3847\"* his|strong=\"H3027\"* father’s place|strong=\"H8478\"*, shall|strong=\"H3548\"* make|strong=\"H3722\"* the|strong=\"H8478\"* atonement|strong=\"H3722\"*, and|strong=\"H3027\"* shall|strong=\"H3548\"* put|strong=\"H3847\"* on|strong=\"H3847\"* the|strong=\"H8478\"* linen garments, even the|strong=\"H8478\"* holy|strong=\"H6944\"* garments." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Holy|strong=\"H6944\"* Sanctuary|strong=\"H6944\"*; and|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H4196\"* Meeting|strong=\"H4150\"* and|strong=\"H3548\"* for|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*; and|strong=\"H3548\"* he|strong=\"H3605\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4196\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 34, + "text": "“This|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H6213\"* everlasting|strong=\"H5769\"* statute|strong=\"H2708\"* for|strong=\"H5921\"* you|strong=\"H6680\"*, to|strong=\"H3478\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* once|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*.”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6680\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*:" + }, + { + "verseNum": 3, + "text": "Whatever man there is|strong=\"H3478\"* of|strong=\"H1004\"* the|strong=\"H7819\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* who|strong=\"H3478\"* kills|strong=\"H7819\"* a|strong=\"H3068\"* bull|strong=\"H7794\"*, or|strong=\"H1004\"* lamb|strong=\"H3775\"*, or|strong=\"H1004\"* goat|strong=\"H5795\"* in|strong=\"H3478\"* the|strong=\"H7819\"* camp|strong=\"H4264\"*, or|strong=\"H1004\"* who|strong=\"H3478\"* kills|strong=\"H7819\"* it|strong=\"H7819\"* outside|strong=\"H2351\"* the|strong=\"H7819\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* hasn’t brought|strong=\"H7126\"* it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* it|strong=\"H1931\"* as|strong=\"H2803\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*: blood|strong=\"H1818\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* imputed|strong=\"H2803\"* to|strong=\"H3068\"* that|strong=\"H5971\"* man|strong=\"H6440\"*. He|strong=\"H1931\"* has|strong=\"H3068\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. That|strong=\"H5971\"* man|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H6440\"* is|strong=\"H3068\"* to|strong=\"H3478\"* the|strong=\"H6440\"* end|strong=\"H4616\"* that|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H3068\"* bring their|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* sacrifice|strong=\"H2077\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, that|strong=\"H3068\"* they|strong=\"H1992\"* may|strong=\"H3068\"* bring them|strong=\"H1992\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, to|strong=\"H3478\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* sacrifice|strong=\"H2077\"* them|strong=\"H1992\"* for|strong=\"H5921\"* sacrifices|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* sprinkle|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* burn|strong=\"H6999\"* the|strong=\"H5921\"* fat|strong=\"H2459\"* for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1992\"* shall|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"* sacrifice|strong=\"H2077\"* their|strong=\"H1992\"* sacrifices|strong=\"H2077\"* to|strong=\"H1961\"* the|strong=\"H1961\"* goat|strong=\"H8163\"* idols, after|strong=\"H1961\"* which|strong=\"H1992\"* they|strong=\"H1992\"* play|strong=\"H2181\"* the|strong=\"H1961\"* prostitute|strong=\"H2181\"*. This|strong=\"H2063\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* to|strong=\"H1961\"* them|strong=\"H1992\"* throughout|strong=\"H1755\"* their|strong=\"H1992\"* generations|strong=\"H1755\"*.’" + }, + { + "verseNum": 8, + "text": "“You|strong=\"H4480\"* shall|strong=\"H3478\"* say|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H8432\"*, ‘Any|strong=\"H4480\"* man there|strong=\"H5927\"* is|strong=\"H3478\"* of|strong=\"H1004\"* the|strong=\"H8432\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H8432\"* strangers|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H1481\"* as|strong=\"H5927\"* foreigners|strong=\"H1616\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, who|strong=\"H1616\"* offers|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H4480\"* sacrifice|strong=\"H2077\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* doesn’t bring|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H3068\"* the|strong=\"H6213\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6213\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* to|strong=\"H3068\"* sacrifice|strong=\"H6213\"* it|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H5971\"* man shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "“‘Any|strong=\"H3605\"* man|strong=\"H5315\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3605\"* strangers|strong=\"H1616\"* who|strong=\"H3605\"* live|strong=\"H1481\"* as|strong=\"H5315\"* foreigners|strong=\"H1616\"* among|strong=\"H8432\"* them|strong=\"H5414\"*, who|strong=\"H3605\"* eats any|strong=\"H3605\"* kind of|strong=\"H1004\"* blood|strong=\"H1818\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* eats blood|strong=\"H1818\"*, and|strong=\"H3478\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H4480\"* among|strong=\"H8432\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H4196\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*. I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H5921\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* your|strong=\"H5414\"* souls|strong=\"H5315\"*; for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* that|strong=\"H3588\"* makes|strong=\"H5414\"* atonement|strong=\"H3722\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4196\"* the|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H1121\"* said|strong=\"H3651\"* to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “No|strong=\"H3808\"* person|strong=\"H5315\"* among|strong=\"H8432\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat blood|strong=\"H1818\"*, nor|strong=\"H3808\"* may|strong=\"H3478\"* any|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* as|strong=\"H5315\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* you|strong=\"H3605\"* eat blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 13, + "text": "“‘Whatever man|strong=\"H1121\"* there|strong=\"H4480\"* is|strong=\"H3478\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8432\"* strangers|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H2416\"* as|strong=\"H1121\"* foreigners|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, who|strong=\"H1616\"* takes in|strong=\"H3478\"* hunting|strong=\"H6718\"* any|strong=\"H4480\"* animal|strong=\"H2416\"* or|strong=\"H1121\"* bird|strong=\"H5775\"* that|strong=\"H1616\"* may|strong=\"H3478\"* be|strong=\"H1121\"* eaten, he|strong=\"H4480\"* shall|strong=\"H1121\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* its|strong=\"H3680\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* cover|strong=\"H3680\"* it|strong=\"H8432\"* with|strong=\"H3680\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* as|strong=\"H5315\"* to|strong=\"H3478\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, its|strong=\"H3605\"* blood|strong=\"H1818\"* is|strong=\"H1931\"* with|strong=\"H3772\"* its|strong=\"H3605\"* life|strong=\"H5315\"*. Therefore|strong=\"H3588\"* I|strong=\"H3588\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* eat the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* any|strong=\"H3605\"* kind of|strong=\"H1121\"* flesh|strong=\"H1320\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* is|strong=\"H1931\"* its|strong=\"H3605\"* blood|strong=\"H1818\"*. Whoever|strong=\"H3605\"* eats it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*.”" + }, + { + "verseNum": 15, + "text": "“‘Every|strong=\"H3605\"* person|strong=\"H5315\"* that|strong=\"H3605\"* eats what|strong=\"H2966\"* dies|strong=\"H5038\"* of|strong=\"H4325\"* itself|strong=\"H5038\"*, or|strong=\"H5704\"* that|strong=\"H3605\"* which|strong=\"H4325\"* is|strong=\"H5315\"* torn|strong=\"H2966\"* by|strong=\"H5704\"* animals, whether he|strong=\"H5704\"* is|strong=\"H5315\"* native-born or|strong=\"H5704\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, shall|strong=\"H5315\"* wash|strong=\"H3526\"* his|strong=\"H3605\"* clothes, and|strong=\"H4325\"* bathe|strong=\"H7364\"* himself|strong=\"H5315\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* be|strong=\"H5315\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"*. Then|strong=\"H3605\"* he|strong=\"H5704\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* if he|strong=\"H3808\"* doesn’t wash|strong=\"H3526\"* them|strong=\"H5375\"*, or|strong=\"H3808\"* bathe|strong=\"H7364\"* his|strong=\"H5375\"* flesh|strong=\"H1320\"*, then|strong=\"H5375\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*.’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1121\"*, ‘I|strong=\"H1121\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* they|strong=\"H8033\"* do|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H6213\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where|strong=\"H8033\"* you|strong=\"H6213\"* lived|strong=\"H3427\"*. You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* they|strong=\"H8033\"* do|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H6213\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*, where|strong=\"H8033\"* I|strong=\"H4714\"* am bringing you|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* follow|strong=\"H3212\"* their|strong=\"H6213\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*. You|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* if a|strong=\"H3068\"* man does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3068\"* live|strong=\"H2425\"* in|strong=\"H3068\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“‘None|strong=\"H3808\"* of|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* approach|strong=\"H7126\"* any|strong=\"H3605\"* close|strong=\"H7126\"* relatives|strong=\"H7607\"*, to|strong=\"H3068\"* uncover|strong=\"H1540\"* their|strong=\"H3605\"* nakedness|strong=\"H6172\"*: I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father, nor|strong=\"H3808\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* mother: she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* mother. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 8, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s wife. It|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* father’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 9, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H2351\"* nakedness|strong=\"H6172\"* of|strong=\"H1004\"* your|strong=\"H3808\"* sister, the|strong=\"H2351\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* your|strong=\"H3808\"* father, or|strong=\"H3808\"* the|strong=\"H2351\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* your|strong=\"H3808\"* mother, whether born|strong=\"H4138\"* at|strong=\"H1004\"* home|strong=\"H1004\"* or|strong=\"H3808\"* born|strong=\"H4138\"* abroad|strong=\"H2351\"*." + }, + { + "verseNum": 10, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H3808\"* of|strong=\"H1121\"* your|strong=\"H3588\"* daughter|strong=\"H1323\"*’s daughter|strong=\"H1323\"*, even|strong=\"H3588\"* their|strong=\"H3588\"* nakedness|strong=\"H6172\"*; for|strong=\"H3588\"* theirs|strong=\"H2007\"* is|strong=\"H1121\"* your|strong=\"H3588\"* own nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1323\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H1323\"* your|strong=\"H3808\"* father’s wife’s daughter|strong=\"H1323\"*, conceived by|strong=\"H3808\"* your|strong=\"H3808\"* father, since she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* sister." + }, + { + "verseNum": 12, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s sister. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* father’s near|strong=\"H7607\"* kinswoman|strong=\"H7607\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3588\"* mother’s sister, for|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3588\"* mother’s near|strong=\"H7607\"* kinswoman|strong=\"H7607\"*." + }, + { + "verseNum": 14, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H7126\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* father’s brother. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* approach|strong=\"H7126\"* his|strong=\"H7126\"* wife|strong=\"H1733\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* aunt|strong=\"H1733\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* your|strong=\"H3808\"* daughter-in-law|strong=\"H3618\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* son|strong=\"H1121\"*’s wife. You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 16, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H1540\"* nakedness|strong=\"H6172\"* of|strong=\"H3808\"* your|strong=\"H3808\"* brother’s wife. It|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3808\"* brother’s nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 17, + "text": "“‘You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3947\"* nakedness|strong=\"H6172\"* of|strong=\"H1121\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* and|strong=\"H1121\"* her|strong=\"H1540\"* daughter|strong=\"H1323\"*. You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* her|strong=\"H1540\"* son|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H3808\"* her|strong=\"H1540\"* daughter|strong=\"H1323\"*’s daughter|strong=\"H1323\"*, to|strong=\"H1121\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. They|strong=\"H3808\"* are|strong=\"H1121\"* near|strong=\"H3808\"* kinswomen|strong=\"H7608\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 18, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H2416\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* her|strong=\"H1540\"* sister, to|strong=\"H5921\"* be|strong=\"H3808\"* a|strong=\"H3068\"* rival|strong=\"H6887\"*, to|strong=\"H5921\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, while|strong=\"H5921\"* her|strong=\"H1540\"* sister is|strong=\"H3808\"* still alive|strong=\"H2416\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* approach|strong=\"H7126\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* to|strong=\"H1540\"* uncover|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, as|strong=\"H1540\"* long as|strong=\"H1540\"* she|strong=\"H3808\"* is|strong=\"H2932\"* impure|strong=\"H2932\"* by|strong=\"H3808\"* her|strong=\"H1540\"* uncleanness|strong=\"H2932\"*." + }, + { + "verseNum": 20, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* lie|strong=\"H7903\"* carnally|strong=\"H2233\"* with|strong=\"H7903\"* your|strong=\"H5414\"* neighbor|strong=\"H5997\"*’s wife, and|strong=\"H2233\"* defile|strong=\"H2930\"* yourself|strong=\"H5414\"* with|strong=\"H7903\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H2233\"* as|strong=\"H3068\"* a|strong=\"H3068\"* sacrifice to|strong=\"H3068\"* Molech|strong=\"H4432\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* man|strong=\"H2145\"* as|strong=\"H2145\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman. That|strong=\"H1931\"* is|strong=\"H1931\"* detestable|strong=\"H8441\"*." + }, + { + "verseNum": 23, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H7903\"* with|strong=\"H6440\"* any|strong=\"H3605\"* animal to|strong=\"H5414\"* defile|strong=\"H2930\"* yourself|strong=\"H5414\"* with|strong=\"H6440\"* it|strong=\"H5414\"*. No|strong=\"H3808\"* woman may|strong=\"H5414\"* give|strong=\"H5414\"* herself|strong=\"H1931\"* to|strong=\"H5414\"* an|strong=\"H5414\"* animal, to|strong=\"H5414\"* lie|strong=\"H7903\"* down|strong=\"H7250\"* with|strong=\"H6440\"* it|strong=\"H5414\"*: it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* perversion|strong=\"H8397\"*." + }, + { + "verseNum": 24, + "text": "“‘Don’t defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* in|strong=\"H6440\"* any|strong=\"H3605\"* of|strong=\"H6440\"* these|strong=\"H3605\"* things|strong=\"H3605\"*; for|strong=\"H3588\"* in|strong=\"H6440\"* all|strong=\"H3605\"* these|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* I|strong=\"H3588\"* am casting|strong=\"H7971\"* out|strong=\"H7971\"* before|strong=\"H6440\"* you|strong=\"H3588\"* were|strong=\"H1471\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* land was|strong=\"H3427\"* defiled|strong=\"H2930\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* punished|strong=\"H6485\"* its|strong=\"H5921\"* iniquity|strong=\"H5771\"*, and|strong=\"H3427\"* the|strong=\"H5921\"* land vomited out|strong=\"H6958\"* her|strong=\"H5921\"* inhabitants|strong=\"H3427\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3605\"* therefore|strong=\"H6213\"* shall|strong=\"H3808\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H8432\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*; neither|strong=\"H3808\"* the|strong=\"H3605\"* native-born, nor|strong=\"H3808\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* among|strong=\"H8432\"* you|strong=\"H3605\"*" + }, + { + "verseNum": 27, + "text": "(for|strong=\"H3588\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* that|strong=\"H3588\"* were|strong=\"H3605\"* before|strong=\"H6440\"* you|strong=\"H3588\"* had|strong=\"H3588\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* became|strong=\"H2930\"* defiled|strong=\"H2930\"*)," + }, + { + "verseNum": 28, + "text": "that|strong=\"H1471\"* the|strong=\"H6440\"* land|strong=\"H6440\"* not|strong=\"H3808\"* vomit|strong=\"H6958\"* you|strong=\"H6440\"* out|strong=\"H6958\"* also|strong=\"H1471\"*, when you|strong=\"H6440\"* defile|strong=\"H2930\"* it|strong=\"H6440\"*, as|strong=\"H6440\"* it|strong=\"H6440\"* vomited out|strong=\"H6958\"* the|strong=\"H6440\"* nation|strong=\"H1471\"* that|strong=\"H1471\"* was|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "“‘For|strong=\"H3588\"* whoever|strong=\"H3605\"* shall|strong=\"H5971\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H5971\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* that|strong=\"H3588\"* do|strong=\"H6213\"* them|strong=\"H6213\"* shall|strong=\"H5971\"* be|strong=\"H5315\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* their|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* requirements, that|strong=\"H3068\"* you|strong=\"H6440\"* do|strong=\"H6213\"* not|strong=\"H3808\"* practice|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3068\"* these|strong=\"H6213\"* abominable|strong=\"H8441\"* customs|strong=\"H2708\"* which|strong=\"H3068\"* were|strong=\"H3068\"* practiced|strong=\"H6213\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H6440\"* do|strong=\"H6213\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H3068\"* them|strong=\"H6440\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1961\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 3, + "text": "“‘Each one|strong=\"H3068\"* of|strong=\"H3068\"* you|strong=\"H3372\"* shall|strong=\"H3068\"* respect his|strong=\"H8104\"* mother and|strong=\"H3068\"* his|strong=\"H8104\"* father. You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“‘Don’t turn|strong=\"H6437\"* to|strong=\"H3068\"* idols, nor|strong=\"H3808\"* make|strong=\"H6213\"* molten|strong=\"H4541\"* gods for|strong=\"H6213\"* yourselves|strong=\"H3068\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H2076\"* it|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H5704\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten the|strong=\"H3117\"* same day|strong=\"H3117\"* you|strong=\"H3117\"* offer|strong=\"H2077\"* it|strong=\"H5704\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"*. If anything remains|strong=\"H3498\"* until|strong=\"H5704\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H5704\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* eaten at|strong=\"H3117\"* all|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H7521\"* abomination|strong=\"H6292\"*. It|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* everyone who|strong=\"H1931\"* eats it|strong=\"H1931\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* profaned|strong=\"H2490\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "“‘When|strong=\"H3615\"* you|strong=\"H3808\"* reap|strong=\"H7114\"* the|strong=\"H3615\"* harvest|strong=\"H7105\"* of|strong=\"H7704\"* your|strong=\"H3808\"* land|strong=\"H7704\"*, you|strong=\"H3808\"* shall|strong=\"H7704\"* not|strong=\"H3808\"* wholly reap|strong=\"H7114\"* the|strong=\"H3615\"* corners|strong=\"H6285\"* of|strong=\"H7704\"* your|strong=\"H3808\"* field|strong=\"H7704\"*, neither|strong=\"H3808\"* shall|strong=\"H7704\"* you|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3615\"* gleanings|strong=\"H3951\"* of|strong=\"H7704\"* your|strong=\"H3808\"* harvest|strong=\"H7105\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* glean|strong=\"H3950\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3068\"* fallen|strong=\"H6528\"* grapes of|strong=\"H3068\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* leave|strong=\"H5800\"* them|strong=\"H5800\"* for|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 12, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"* falsely|strong=\"H8267\"*, and|strong=\"H3068\"* profane|strong=\"H2490\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘You|strong=\"H5704\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* oppress|strong=\"H6231\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*, nor|strong=\"H3808\"* rob|strong=\"H1497\"* him|strong=\"H5704\"*." + }, + { + "verseNum": 14, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* curse|strong=\"H7043\"* the|strong=\"H6440\"* deaf|strong=\"H2795\"*, nor|strong=\"H3808\"* put|strong=\"H5414\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* before|strong=\"H6440\"* the|strong=\"H6440\"* blind|strong=\"H5787\"*; but|strong=\"H3808\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H6440\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* injustice|strong=\"H5766\"* in|strong=\"H6213\"* judgment|strong=\"H4941\"*. You|strong=\"H6440\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* partial|strong=\"H5375\"* to|strong=\"H6213\"* the|strong=\"H6440\"* poor|strong=\"H1800\"*, nor|strong=\"H3808\"* show|strong=\"H6213\"* favoritism to|strong=\"H6213\"* the|strong=\"H6440\"* great|strong=\"H1419\"*; but|strong=\"H3808\"* you|strong=\"H6440\"* shall|strong=\"H3808\"* judge|strong=\"H8199\"* your|strong=\"H5375\"* neighbor|strong=\"H5997\"* in|strong=\"H6213\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 16, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* around|strong=\"H5921\"* as|strong=\"H3068\"* a|strong=\"H3068\"* slanderer|strong=\"H7400\"* among|strong=\"H5921\"* your|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* hate|strong=\"H8130\"* your|strong=\"H5921\"* brother in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* surely|strong=\"H3198\"* rebuke|strong=\"H3198\"* your|strong=\"H5921\"* neighbor|strong=\"H5997\"*, and|strong=\"H3824\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"* because|strong=\"H5921\"* of|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H5358\"* vengeance|strong=\"H5358\"*, nor|strong=\"H3808\"* bear|strong=\"H5201\"* any|strong=\"H5201\"* grudge|strong=\"H5201\"* against|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* people|strong=\"H5971\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* love your|strong=\"H3068\"* neighbor|strong=\"H7453\"* as|strong=\"H3644\"* yourself. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H7704\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 20, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* carnally|strong=\"H2233\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman who|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* slave|strong=\"H8198\"* girl|strong=\"H8198\"*, pledged|strong=\"H5414\"* to|strong=\"H4191\"* be|strong=\"H1961\"* married to|strong=\"H4191\"* another|strong=\"H3808\"* man|strong=\"H4191\"*, and|strong=\"H4191\"* not|strong=\"H3808\"* ransomed|strong=\"H6299\"* or|strong=\"H3808\"* given|strong=\"H5414\"* her|strong=\"H5414\"* freedom|strong=\"H2668\"*; they|strong=\"H3588\"* shall|strong=\"H2233\"* be|strong=\"H1961\"* punished. They|strong=\"H3588\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* be|strong=\"H1961\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* free|strong=\"H2666\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* bring his|strong=\"H3068\"* trespass offering|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, even|strong=\"H3068\"* a|strong=\"H3068\"* ram for|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"* with|strong=\"H3068\"* the|strong=\"H6440\"* ram of|strong=\"H3068\"* the|strong=\"H6440\"* trespass|strong=\"H2398\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* committed|strong=\"H2398\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* committed|strong=\"H2398\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3605\"* land, and|strong=\"H6086\"* have|strong=\"H1961\"* planted|strong=\"H5193\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H8141\"* trees|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* count|strong=\"H8141\"* their|strong=\"H3605\"* fruit|strong=\"H6529\"* as|strong=\"H1961\"* forbidden|strong=\"H6189\"*.+ 19:23 literally, “uncircumcised”* For|strong=\"H3588\"* three|strong=\"H7969\"* years|strong=\"H8141\"* it|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* forbidden|strong=\"H6189\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. It|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* eaten|strong=\"H3978\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*, for|strong=\"H3068\"* giving praise|strong=\"H1974\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H3068\"* eat its|strong=\"H6529\"* fruit|strong=\"H6529\"*, that|strong=\"H3068\"* it|strong=\"H3254\"* may|strong=\"H3068\"* yield|strong=\"H8393\"* its|strong=\"H6529\"* increase|strong=\"H8393\"* to|strong=\"H3068\"* you|strong=\"H8141\"*. I|strong=\"H8141\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“‘You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3808\"* meat with|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* still|strong=\"H6049\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* use enchantments|strong=\"H5172\"*, nor|strong=\"H3808\"* practice|strong=\"H5172\"* sorcery." + }, + { + "verseNum": 27, + "text": "“‘You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* cut|strong=\"H2206\"* the|strong=\"H7843\"* hair|strong=\"H7218\"* on|strong=\"H6285\"* the|strong=\"H7843\"* sides|strong=\"H6285\"* of|strong=\"H7218\"* your|strong=\"H3808\"* head|strong=\"H7218\"* or|strong=\"H3808\"* clip off|strong=\"H7843\"* the|strong=\"H7843\"* edge of|strong=\"H7218\"* your|strong=\"H3808\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 28, + "text": "“‘You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H5414\"* any|strong=\"H5315\"* cuttings|strong=\"H8296\"* in|strong=\"H3068\"* your|strong=\"H3068\"* flesh|strong=\"H1320\"* for|strong=\"H3068\"* the|strong=\"H5414\"* dead|strong=\"H5315\"*, nor|strong=\"H3808\"* tattoo|strong=\"H3793\"* any|strong=\"H5315\"* marks|strong=\"H3793\"* on|strong=\"H3068\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“‘Don’t profane|strong=\"H2490\"* your|strong=\"H3808\"* daughter|strong=\"H1323\"*, to|strong=\"H2490\"* make|strong=\"H2181\"* her|strong=\"H4390\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*; lest the|strong=\"H4390\"* land fall|strong=\"H2181\"* to|strong=\"H2490\"* prostitution, and|strong=\"H1323\"* the|strong=\"H4390\"* land become|strong=\"H2181\"* full|strong=\"H4390\"* of|strong=\"H1323\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 30, + "text": "“‘You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H3068\"* reverence|strong=\"H3372\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*; I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "“‘Don’t turn|strong=\"H6437\"* to|strong=\"H3068\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* mediums, nor to|strong=\"H3068\"* the|strong=\"H3068\"* wizards|strong=\"H3049\"*. Don’t seek|strong=\"H1245\"* them|strong=\"H3068\"* out|strong=\"H1245\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* defiled|strong=\"H2930\"* by|strong=\"H3068\"* them|strong=\"H3068\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "“‘You|strong=\"H6440\"* shall|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* the|strong=\"H6440\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* and|strong=\"H6965\"* honor|strong=\"H1921\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* elderly; and|strong=\"H6965\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H6440\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H1481\"* you|strong=\"H3588\"* in|strong=\"H1481\"* your|strong=\"H3588\"* land, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H3238\"* him|strong=\"H3588\"* wrong|strong=\"H3238\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* stranger|strong=\"H1616\"* who|strong=\"H3068\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3588\"* as|strong=\"H1961\"* the|strong=\"H3588\"* native-born among|strong=\"H4480\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* love him|strong=\"H4480\"* as|strong=\"H1961\"* yourself; for|strong=\"H3588\"* you|strong=\"H3588\"* lived|strong=\"H1481\"* as|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "“‘You|strong=\"H6213\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* unrighteousness|strong=\"H5766\"* in|strong=\"H6213\"* judgment|strong=\"H4941\"*, in|strong=\"H6213\"* measures|strong=\"H4060\"* of|strong=\"H4941\"* length, of|strong=\"H4941\"* weight|strong=\"H4948\"*, or|strong=\"H3808\"* of|strong=\"H4941\"* quantity." + }, + { + "verseNum": 36, + "text": "You|strong=\"H3318\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* just|strong=\"H6664\"* balances|strong=\"H3976\"*, just|strong=\"H6664\"* weights, a|strong=\"H3068\"* just|strong=\"H6664\"* ephah,+ 19:36 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H3068\"* a|strong=\"H3068\"* just|strong=\"H6664\"* hin|strong=\"H1969\"*.+ 19:36 A hin is about 6.5 liters or 1.7 gallons.* I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 37, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3068\"* all|strong=\"H3605\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Moreover, you|strong=\"H5414\"* shall|strong=\"H1121\"* tell the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘Anyone of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* strangers|strong=\"H1616\"* who|strong=\"H5971\"* live|strong=\"H1481\"* as|strong=\"H5971\"* foreigners|strong=\"H1121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H5971\"* gives|strong=\"H5414\"* any|strong=\"H4480\"* of|strong=\"H1121\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*+ 20:2 or, seed* to|strong=\"H3478\"* Molech|strong=\"H4432\"* shall|strong=\"H1121\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H3478\"* death|strong=\"H4191\"*. The|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land shall|strong=\"H1121\"* stone|strong=\"H7275\"* that|strong=\"H5971\"* person with|strong=\"H5971\"* stones." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* also|strong=\"H8034\"* will|strong=\"H5971\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H3588\"* person|strong=\"H6440\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H5414\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* given|strong=\"H5414\"* of|strong=\"H6440\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H5414\"* Molech|strong=\"H4432\"*, to|strong=\"H5414\"* defile|strong=\"H2930\"* my|strong=\"H5414\"* sanctuary|strong=\"H6944\"*, and|strong=\"H5971\"* to|strong=\"H5414\"* profane|strong=\"H2490\"* my|strong=\"H5414\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1931\"* the|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H5869\"* the|strong=\"H5414\"* land all|strong=\"H5414\"* hide|strong=\"H5956\"* their|strong=\"H5414\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* that|strong=\"H5971\"* person|strong=\"H5869\"* when|strong=\"H4480\"* he|strong=\"H1931\"* gives|strong=\"H5414\"* of|strong=\"H5869\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"* to|strong=\"H4191\"* Molech|strong=\"H4432\"*, and|strong=\"H5971\"* don’t put|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H7760\"* I|strong=\"H7760\"* will|strong=\"H5971\"* set|strong=\"H7760\"* my|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* man|strong=\"H3605\"* and|strong=\"H5971\"* against|strong=\"H6440\"* his|strong=\"H3605\"* family|strong=\"H4940\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H6440\"* off|strong=\"H3772\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* who|strong=\"H3605\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* after him|strong=\"H6440\"* to|strong=\"H6440\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H6440\"* Molech|strong=\"H4432\"*, from|strong=\"H6440\"* among|strong=\"H7130\"* their|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 6, + "text": "“‘The|strong=\"H6440\"* person|strong=\"H5315\"* that|strong=\"H5971\"* turns|strong=\"H6437\"* to|strong=\"H5414\"* those|strong=\"H1931\"* who|strong=\"H1931\"* are|strong=\"H5971\"* mediums and|strong=\"H5971\"* wizards|strong=\"H3049\"*, to|strong=\"H5414\"* play|strong=\"H2181\"* the|strong=\"H6440\"* prostitute|strong=\"H2181\"* after|strong=\"H5315\"* them|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* even set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H5971\"* person|strong=\"H5315\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H7130\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "“‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* therefore|strong=\"H3588\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "“‘For|strong=\"H3588\"* everyone who|strong=\"H3588\"* curses|strong=\"H7043\"* his|strong=\"H3588\"* father or|strong=\"H4191\"* his|strong=\"H3588\"* mother shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. He|strong=\"H3588\"* has|strong=\"H3588\"* cursed|strong=\"H7043\"* his|strong=\"H3588\"* father or|strong=\"H4191\"* his|strong=\"H3588\"* mother. His|strong=\"H3588\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon himself." + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H4191\"* man|strong=\"H4191\"* who commits|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H4191\"* another|strong=\"H7453\"* man|strong=\"H4191\"*’s wife, even|strong=\"H7453\"* he who commits|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H4191\"* his|strong=\"H4191\"* neighbor|strong=\"H7453\"*’s wife, the|strong=\"H4191\"* adulterer|strong=\"H5003\"* and|strong=\"H4191\"* the|strong=\"H4191\"* adulteress|strong=\"H5003\"* shall|strong=\"H7453\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 11, + "text": "“‘The|strong=\"H4191\"* man|strong=\"H4191\"* who lies|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H1540\"* father’s wife has|strong=\"H7901\"* uncovered|strong=\"H1540\"* his|strong=\"H1540\"* father’s nakedness|strong=\"H6172\"*. Both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H8147\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H1540\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon|strong=\"H7901\"* themselves." + }, + { + "verseNum": 12, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* with|strong=\"H6213\"* his|strong=\"H6213\"* daughter-in-law|strong=\"H3618\"*, both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H6213\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. They|strong=\"H6213\"* have|strong=\"H8147\"* committed|strong=\"H6213\"* a|strong=\"H3068\"* perversion|strong=\"H8397\"*. Their|strong=\"H6213\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon|strong=\"H6213\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H2145\"* lies|strong=\"H7901\"* with|strong=\"H6213\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, as|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* woman, both|strong=\"H8147\"* of|strong=\"H1818\"* them|strong=\"H6213\"* have|strong=\"H8147\"* committed|strong=\"H6213\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"*. They|strong=\"H6213\"* shall|strong=\"H4904\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H6213\"* blood|strong=\"H1818\"* shall|strong=\"H4904\"* be|strong=\"H4191\"* upon|strong=\"H6213\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife and|strong=\"H3947\"* her|strong=\"H3947\"* mother, it|strong=\"H1931\"* is|strong=\"H1931\"* wickedness|strong=\"H2154\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire, both he|strong=\"H1931\"* and|strong=\"H3947\"* they|strong=\"H3808\"*, that|strong=\"H1931\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* wickedness|strong=\"H2154\"* among|strong=\"H8432\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 15, + "text": "“‘If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H5414\"* with|strong=\"H4191\"* an|strong=\"H5414\"* animal, he|strong=\"H5414\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; and|strong=\"H4191\"* you|strong=\"H5414\"* shall|strong=\"H4191\"* kill|strong=\"H2026\"* the|strong=\"H5414\"* animal." + }, + { + "verseNum": 16, + "text": "“‘If a|strong=\"H3068\"* woman approaches|strong=\"H7126\"* any|strong=\"H3605\"* animal and|strong=\"H1818\"* lies with|strong=\"H3605\"* it|strong=\"H7126\"*, you|strong=\"H3605\"* shall|strong=\"H1818\"* kill|strong=\"H2026\"* the|strong=\"H3605\"* woman and|strong=\"H1818\"* the|strong=\"H3605\"* animal. They|strong=\"H3605\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Their|strong=\"H3605\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H4191\"* upon them|strong=\"H7126\"*." + }, + { + "verseNum": 17, + "text": "“‘If|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H1121\"* takes|strong=\"H3947\"* his|strong=\"H5375\"* sister—his|strong=\"H5375\"* father|strong=\"H1121\"*’s daughter|strong=\"H1323\"*, or|strong=\"H1121\"* his|strong=\"H5375\"* mother’s daughter|strong=\"H1323\"*—and|strong=\"H1121\"* sees|strong=\"H7200\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, and|strong=\"H1121\"* she|strong=\"H1931\"* sees|strong=\"H7200\"* his|strong=\"H5375\"* nakedness|strong=\"H6172\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* shameful thing|strong=\"H2617\"*. They|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* in|strong=\"H1121\"* the|strong=\"H7200\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H5375\"* people|strong=\"H5971\"*. He|strong=\"H1931\"* has|strong=\"H5869\"* uncovered|strong=\"H1540\"* his|strong=\"H5375\"* sister’s nakedness|strong=\"H6172\"*. He|strong=\"H1931\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 18, + "text": "“‘If|strong=\"H1931\"* a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* a|strong=\"H3068\"* woman|strong=\"H1739\"* having her|strong=\"H1540\"* monthly period, and|strong=\"H5971\"* uncovers|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*, he|strong=\"H1931\"* has|strong=\"H7901\"* made|strong=\"H3772\"* her|strong=\"H1540\"* fountain|strong=\"H4726\"* naked|strong=\"H6168\"*, and|strong=\"H5971\"* she|strong=\"H1931\"* has|strong=\"H7901\"* uncovered|strong=\"H1540\"* the|strong=\"H3772\"* fountain|strong=\"H4726\"* of|strong=\"H5971\"* her|strong=\"H1540\"* blood|strong=\"H1818\"*. Both|strong=\"H8147\"* of|strong=\"H5971\"* them|strong=\"H8147\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H7130\"* their|strong=\"H7130\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* uncover|strong=\"H1540\"* the|strong=\"H3588\"* nakedness|strong=\"H6172\"* of|strong=\"H5771\"* your|strong=\"H5375\"* mother’s sister, nor|strong=\"H3808\"* of|strong=\"H5771\"* your|strong=\"H5375\"* father’s sister, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* made|strong=\"H6168\"* his|strong=\"H5375\"* close relative|strong=\"H7607\"* naked|strong=\"H6168\"*. They|strong=\"H3588\"* shall|strong=\"H3808\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 20, + "text": "If a|strong=\"H3068\"* man|strong=\"H4191\"* lies|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H5375\"* uncle|strong=\"H1730\"*’s wife|strong=\"H1733\"*, he has|strong=\"H7901\"* uncovered|strong=\"H1540\"* his|strong=\"H5375\"* uncle|strong=\"H1730\"*’s nakedness|strong=\"H6172\"*. They|strong=\"H1540\"* shall|strong=\"H4191\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* sin|strong=\"H2399\"*. They|strong=\"H1540\"* shall|strong=\"H4191\"* die|strong=\"H4191\"* childless|strong=\"H6185\"*." + }, + { + "verseNum": 21, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* his|strong=\"H3947\"* brother’s wife, it|strong=\"H1931\"* is|strong=\"H1931\"* an|strong=\"H1961\"* impurity|strong=\"H5079\"*. He|strong=\"H1931\"* has|strong=\"H1961\"* uncovered|strong=\"H1540\"* his|strong=\"H3947\"* brother’s nakedness|strong=\"H6172\"*. They|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* childless|strong=\"H6185\"*." + }, + { + "verseNum": 22, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H3808\"* therefore|strong=\"H6213\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* all|strong=\"H3605\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* land where|strong=\"H8033\"* I|strong=\"H3808\"* am bringing you|strong=\"H3605\"* to|strong=\"H6213\"* dwell|strong=\"H3427\"* may|strong=\"H6213\"* not|strong=\"H3808\"* vomit|strong=\"H6958\"* you|strong=\"H3605\"* out|strong=\"H6958\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H3588\"* shall|strong=\"H1471\"* not|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* the|strong=\"H3605\"* customs|strong=\"H2708\"* of|strong=\"H6440\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* which|strong=\"H1471\"* I|strong=\"H3588\"* am casting|strong=\"H7971\"* out|strong=\"H7971\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* did|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, and|strong=\"H7971\"* therefore|strong=\"H3588\"* I|strong=\"H3588\"* abhorred|strong=\"H6973\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5971\"* I|strong=\"H5414\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* you|strong=\"H5414\"*, “You|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H3423\"* their|strong=\"H3068\"* land, and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*.” I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* separated you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "“‘You|strong=\"H3605\"* shall|strong=\"H5315\"* therefore make|strong=\"H2930\"* a|strong=\"H3068\"* distinction between the|strong=\"H3605\"* clean|strong=\"H2889\"* animal and|strong=\"H5315\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"*, and|strong=\"H5315\"* between the|strong=\"H3605\"* unclean|strong=\"H2931\"* fowl|strong=\"H5775\"* and|strong=\"H5315\"* the|strong=\"H3605\"* clean|strong=\"H2889\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* make|strong=\"H2930\"* yourselves|strong=\"H5315\"* abominable|strong=\"H8262\"* by|strong=\"H3808\"* animal, or|strong=\"H3808\"* by|strong=\"H3808\"* bird|strong=\"H5775\"*, or|strong=\"H3808\"* by|strong=\"H3808\"* anything|strong=\"H3605\"* with|strong=\"H5315\"* which|strong=\"H5315\"* the|strong=\"H3605\"* ground teems, which|strong=\"H5315\"* I|strong=\"H5315\"* have|strong=\"H3605\"* separated from|strong=\"H5315\"* you|strong=\"H3605\"* as|strong=\"H5315\"* unclean|strong=\"H2931\"* for|strong=\"H5315\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* me|strong=\"H4480\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* set you|strong=\"H3588\"* apart from|strong=\"H4480\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H4480\"*." + }, + { + "verseNum": 27, + "text": "“‘A|strong=\"H3068\"* man|strong=\"H4191\"* or|strong=\"H4191\"* a|strong=\"H3068\"* woman that|strong=\"H3588\"* is|strong=\"H1961\"* a|strong=\"H3068\"* medium or|strong=\"H4191\"* is|strong=\"H1961\"* a|strong=\"H3068\"* wizard|strong=\"H3049\"* shall|strong=\"H1818\"* surely|strong=\"H4191\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. They|strong=\"H3588\"* shall|strong=\"H1818\"* be|strong=\"H1961\"* stoned|strong=\"H7275\"* with|strong=\"H4191\"* stones. Their|strong=\"H3588\"* blood|strong=\"H1818\"* shall|strong=\"H1818\"* be|strong=\"H1961\"* upon|strong=\"H1961\"* themselves.’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Speak to|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* say to|strong=\"H3068\"* them|strong=\"H1121\"*, ‘A|strong=\"H3068\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H5315\"* for|strong=\"H3068\"* the|strong=\"H3068\"* dead|strong=\"H5315\"* among|strong=\"H5971\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 2, + "text": "except|strong=\"H3588\"* for|strong=\"H3588\"* his|strong=\"H3588\"* relatives|strong=\"H7607\"* that|strong=\"H3588\"* are|strong=\"H1121\"* near|strong=\"H7138\"* to|strong=\"H1121\"* him|strong=\"H3588\"*: for|strong=\"H3588\"* his|strong=\"H3588\"* mother, for|strong=\"H3588\"* his|strong=\"H3588\"* father|strong=\"H1121\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* daughter|strong=\"H1323\"*, for|strong=\"H3588\"* his|strong=\"H3588\"* brother," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1961\"* for|strong=\"H1961\"* his|strong=\"H1961\"* virgin|strong=\"H1330\"* sister who|strong=\"H7138\"* is|strong=\"H1961\"* near|strong=\"H7138\"* to|strong=\"H1961\"* him|strong=\"H2930\"*, who|strong=\"H7138\"* has|strong=\"H1961\"* had|strong=\"H1961\"* no|strong=\"H3808\"* husband; for|strong=\"H1961\"* her|strong=\"H1961\"* he|strong=\"H3808\"* may|strong=\"H1961\"* defile|strong=\"H2930\"* himself|strong=\"H2930\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H2930\"*, being|strong=\"H5971\"* a|strong=\"H3068\"* chief man|strong=\"H1167\"* among|strong=\"H5971\"* his|strong=\"H2930\"* people|strong=\"H5971\"*, to|strong=\"H2490\"* profane|strong=\"H2490\"* himself|strong=\"H2930\"*." + }, + { + "verseNum": 5, + "text": "“‘They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* their|strong=\"H3808\"* heads|strong=\"H7218\"* or|strong=\"H3808\"* shave|strong=\"H1548\"* off|strong=\"H1548\"* the|strong=\"H3808\"* corners|strong=\"H6285\"* of|strong=\"H7218\"* their|strong=\"H3808\"* beards|strong=\"H2206\"* or|strong=\"H3808\"* make|strong=\"H7139\"* any|strong=\"H8295\"* cuttings|strong=\"H8296\"* in|strong=\"H1320\"* their|strong=\"H3808\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* offer|strong=\"H7126\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire, the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*. Therefore|strong=\"H3588\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 7, + "text": "“‘They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* who|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, or|strong=\"H3808\"* profane|strong=\"H2491\"*. A|strong=\"H3068\"* priest shall|strong=\"H3808\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* divorced|strong=\"H1644\"* from|strong=\"H3947\"* her|strong=\"H3947\"* husband; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* holy|strong=\"H6918\"* to|strong=\"H3808\"* his|strong=\"H3947\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sanctify|strong=\"H6942\"* him|strong=\"H1931\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* offers|strong=\"H7126\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* sanctify|strong=\"H6942\"* you|strong=\"H3588\"*, am|strong=\"H1961\"* holy|strong=\"H6918\"*." + }, + { + "verseNum": 9, + "text": "“‘The|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* any|strong=\"H3588\"* priest|strong=\"H3548\"*, if|strong=\"H3588\"* she|strong=\"H1931\"* profanes|strong=\"H2490\"* herself|strong=\"H1931\"* by|strong=\"H3588\"* playing|strong=\"H2181\"* the|strong=\"H3588\"* prostitute|strong=\"H2181\"*, she|strong=\"H1931\"* profanes|strong=\"H2490\"* her|strong=\"H1931\"* father. She|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H3548\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "“‘He|strong=\"H3027\"* who|strong=\"H3548\"* is|strong=\"H3027\"* the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* among|strong=\"H5921\"* his|strong=\"H5921\"* brothers, upon|strong=\"H5921\"* whose head|strong=\"H7218\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* is|strong=\"H3027\"* poured|strong=\"H3332\"*, and|strong=\"H1419\"* who|strong=\"H3548\"* is|strong=\"H3027\"* consecrated|strong=\"H4390\"* to|strong=\"H5921\"* put|strong=\"H3847\"* on|strong=\"H5921\"* the|strong=\"H5921\"* garments, shall|strong=\"H3548\"* not|strong=\"H3808\"* let|strong=\"H3808\"* the|strong=\"H5921\"* hair|strong=\"H7218\"* of|strong=\"H3027\"* his|strong=\"H5921\"* head|strong=\"H7218\"* hang loose|strong=\"H5921\"*, or|strong=\"H3808\"* tear|strong=\"H6533\"* his|strong=\"H5921\"* clothes|strong=\"H3847\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* must|strong=\"H4191\"* not|strong=\"H3808\"* go in|strong=\"H5921\"* to|strong=\"H4191\"* any|strong=\"H3605\"* dead|strong=\"H4191\"* body|strong=\"H5315\"*, or|strong=\"H3808\"* defile|strong=\"H2930\"* himself|strong=\"H5315\"* for|strong=\"H5921\"* his|strong=\"H3605\"* father or|strong=\"H3808\"* for|strong=\"H5921\"* his|strong=\"H3605\"* mother." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, nor|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* of|strong=\"H3068\"* the|strong=\"H5921\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"* of|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* upon|strong=\"H5921\"* him|strong=\"H5921\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘He|strong=\"H1931\"* shall|strong=\"H1931\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife in|strong=\"H3947\"* her|strong=\"H3947\"* virginity|strong=\"H1331\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* marry|strong=\"H3947\"* a|strong=\"H3068\"* widow, or|strong=\"H3808\"* one|strong=\"H3808\"* divorced|strong=\"H1644\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* woman|strong=\"H1644\"* who|strong=\"H5971\"* has|strong=\"H3588\"* been|strong=\"H5971\"* defiled, or|strong=\"H3808\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. He|strong=\"H3588\"* shall|strong=\"H5971\"* take|strong=\"H3947\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* of|strong=\"H5971\"* his|strong=\"H3947\"* own|strong=\"H5971\"* people|strong=\"H5971\"* as|strong=\"H3588\"* a|strong=\"H3068\"* wife." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"* among|strong=\"H5971\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H5971\"* sanctifies|strong=\"H6942\"* him|strong=\"H3588\"*.’”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“Say|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, ‘None|strong=\"H3808\"* of|strong=\"H2233\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* throughout|strong=\"H1755\"* their|strong=\"H7126\"* generations|strong=\"H1755\"* who|strong=\"H3808\"* has|strong=\"H1961\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* may|strong=\"H1961\"* approach|strong=\"H7126\"* to|strong=\"H1696\"* offer|strong=\"H7126\"* the|strong=\"H7126\"* bread|strong=\"H3899\"* of|strong=\"H2233\"* his|strong=\"H7126\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* whatever|strong=\"H3605\"* man|strong=\"H3605\"* he|strong=\"H3588\"* is|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*: a|strong=\"H3068\"* blind|strong=\"H5787\"* man|strong=\"H3605\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* lame|strong=\"H6455\"*, or|strong=\"H3808\"* he|strong=\"H3588\"* who|strong=\"H3605\"* has|strong=\"H3588\"* a|strong=\"H3068\"* flat nose|strong=\"H2763\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* deformity," + }, + { + "verseNum": 19, + "text": "or|strong=\"H3027\"* a|strong=\"H3068\"* man who has|strong=\"H1961\"* an|strong=\"H1961\"* injured foot|strong=\"H7272\"*, or|strong=\"H3027\"* an|strong=\"H1961\"* injured hand|strong=\"H3027\"*," + }, + { + "verseNum": 20, + "text": "or hunchbacked, or a|strong=\"H3068\"* dwarf|strong=\"H1851\"*, or one who has|strong=\"H5869\"* a|strong=\"H3068\"* defect|strong=\"H8400\"* in|strong=\"H5869\"* his|strong=\"H5869\"* eye|strong=\"H5869\"*, or an itching disease, or scabs|strong=\"H3217\"*, or who has|strong=\"H5869\"* damaged testicles." + }, + { + "verseNum": 21, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"* who|strong=\"H3605\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* shall|strong=\"H3548\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* offerings|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire. Since he|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, he|strong=\"H3068\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H4480\"* shall eat|strong=\"H3899\"* the|strong=\"H4480\"* bread|strong=\"H3899\"* of|strong=\"H4480\"* his|strong=\"H4480\"* God, both|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*, and|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H4480\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* veil|strong=\"H6532\"*, nor|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* sanctuaries|strong=\"H4720\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H6942\"*.’”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H1696\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Tell|strong=\"H1696\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H1696\"* separate|strong=\"H5144\"* themselves|strong=\"H1992\"* from|strong=\"H3478\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* make|strong=\"H8034\"* holy|strong=\"H6944\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, and|strong=\"H1121\"* that|strong=\"H3068\"* they|strong=\"H1992\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“Tell|strong=\"H3605\"* them|strong=\"H5921\"*, ‘If|strong=\"H1931\"* anyone|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* throughout|strong=\"H3605\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* approaches|strong=\"H7126\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H1931\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* make|strong=\"H3772\"* holy|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, having|strong=\"H5315\"* his|strong=\"H3605\"* uncleanness|strong=\"H2932\"* on|strong=\"H5921\"* him|strong=\"H6440\"*, that|strong=\"H3605\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. I|strong=\"H5921\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“‘Whoever|strong=\"H3605\"* of|strong=\"H2233\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H2233\"* Aaron is|strong=\"H1931\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* or|strong=\"H3808\"* has|strong=\"H3318\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat of|strong=\"H2233\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* he|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2891\"*. Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* by|strong=\"H3318\"* the|strong=\"H3605\"* dead|strong=\"H5315\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H3605\"* has|strong=\"H3318\"* a|strong=\"H3068\"* seminal|strong=\"H2233\"* emission|strong=\"H7902\"*," + }, + { + "verseNum": 5, + "text": "or whoever|strong=\"H3605\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* creeping|strong=\"H8318\"* thing|strong=\"H8318\"* by|strong=\"H3605\"* which|strong=\"H8318\"* he|strong=\"H3605\"* may be|strong=\"H3605\"* made|strong=\"H2930\"* unclean|strong=\"H2930\"*, or a|strong=\"H3068\"* man|strong=\"H3605\"* from|strong=\"H3605\"* whom he|strong=\"H3605\"* may become|strong=\"H2930\"* unclean|strong=\"H2930\"*, whatever|strong=\"H3605\"* uncleanness|strong=\"H2932\"* he|strong=\"H3605\"* has|strong=\"H3605\"*—" + }, + { + "verseNum": 6, + "text": "the|strong=\"H3588\"* person|strong=\"H5315\"* that|strong=\"H3588\"* touches|strong=\"H5060\"* any|strong=\"H4480\"* such|strong=\"H3808\"* shall|strong=\"H5315\"* be|strong=\"H3808\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H3588\"* evening|strong=\"H6153\"*, and|strong=\"H4325\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat of|strong=\"H4325\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* unless|strong=\"H3588\"* he|strong=\"H3588\"* bathes his|strong=\"H7364\"* body|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* is|strong=\"H1931\"* down|strong=\"H3588\"*, he|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H8121\"* clean|strong=\"H2891\"*; and|strong=\"H3899\"* afterward he|strong=\"H1931\"* shall|strong=\"H1931\"* eat|strong=\"H3899\"* of|strong=\"H4480\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H3588\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat that|strong=\"H3068\"* which|strong=\"H3068\"* dies|strong=\"H5038\"* of|strong=\"H3068\"* itself|strong=\"H5038\"* or|strong=\"H3808\"* is|strong=\"H3068\"* torn|strong=\"H2966\"* by|strong=\"H3068\"* animals, defiling|strong=\"H2930\"* himself|strong=\"H2930\"* by|strong=\"H3068\"* it|strong=\"H5038\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘They|strong=\"H3588\"* shall|strong=\"H3068\"* therefore|strong=\"H5921\"* follow|strong=\"H3068\"* my|strong=\"H8104\"* commandment, lest they|strong=\"H3588\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"* for|strong=\"H3588\"* it|strong=\"H5921\"* and|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* profane|strong=\"H2490\"* it|strong=\"H5921\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "“‘No|strong=\"H3808\"* stranger|strong=\"H2114\"* shall|strong=\"H3548\"* eat of|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*: a|strong=\"H3068\"* foreigner|strong=\"H2114\"* living|strong=\"H3605\"* with|strong=\"H3548\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*, shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* buys|strong=\"H7069\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, purchased|strong=\"H7069\"* by|strong=\"H3701\"* his|strong=\"H3588\"* money|strong=\"H3701\"*, he|strong=\"H1931\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* it|strong=\"H1931\"*; and|strong=\"H3701\"* those|strong=\"H1992\"* who|strong=\"H1931\"* are|strong=\"H1992\"* born|strong=\"H3211\"* in|strong=\"H1004\"* his|strong=\"H3588\"* house|strong=\"H1004\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* his|strong=\"H3588\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*’s daughter|strong=\"H1323\"* is|strong=\"H1931\"* married to|strong=\"H1961\"* an|strong=\"H1961\"* outsider|strong=\"H2114\"*, she|strong=\"H1931\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H1323\"* the|strong=\"H3588\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* of|strong=\"H1323\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*’s daughter|strong=\"H1323\"* is|strong=\"H3605\"* a|strong=\"H3068\"* widow, or|strong=\"H3808\"* divorced|strong=\"H1644\"*, and|strong=\"H7725\"* has|strong=\"H1961\"* no|strong=\"H3808\"* child|strong=\"H2233\"*, and|strong=\"H7725\"* has|strong=\"H1961\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* father’s house|strong=\"H1004\"* as|strong=\"H1961\"* in|strong=\"H1004\"* her|strong=\"H3605\"* youth|strong=\"H5271\"*, she|strong=\"H3588\"* may|strong=\"H1961\"* eat|strong=\"H3899\"* of|strong=\"H1004\"* her|strong=\"H3605\"* father’s bread|strong=\"H3899\"*; but|strong=\"H3588\"* no|strong=\"H3808\"* stranger|strong=\"H2114\"* shall|strong=\"H3548\"* eat|strong=\"H3899\"* any|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man eats something holy|strong=\"H6944\"* unwittingly|strong=\"H7684\"*, then|strong=\"H3254\"* he|strong=\"H3588\"* shall|strong=\"H3548\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* its|strong=\"H5414\"* value to|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* priests|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7311\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H3068\"* so|strong=\"H5375\"* cause them|strong=\"H5375\"* to|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* that|strong=\"H3588\"* brings guilt|strong=\"H5771\"* when|strong=\"H3588\"* they|strong=\"H3588\"* eat their|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5375\"*.’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7126\"*, ‘Whoever|strong=\"H3605\"* is|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* foreigners|strong=\"H1121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* offers|strong=\"H7126\"* his|strong=\"H3605\"* offering|strong=\"H5930\"*, whether|strong=\"H4480\"* it|strong=\"H7126\"* is|strong=\"H3068\"* any|strong=\"H3605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H1121\"* any|strong=\"H3605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* free will|strong=\"H3068\"* offerings|strong=\"H5930\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*:" + }, + { + "verseNum": 19, + "text": "that|strong=\"H1241\"* you|strong=\"H8549\"* may be|strong=\"H1241\"* accepted|strong=\"H7522\"*, you|strong=\"H8549\"* shall|strong=\"H2145\"* offer a|strong=\"H3068\"* male|strong=\"H2145\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, of|strong=\"H7522\"* the|strong=\"H1241\"* bulls|strong=\"H1241\"*, of|strong=\"H7522\"* the|strong=\"H1241\"* sheep|strong=\"H3775\"*, or|strong=\"H1241\"* of|strong=\"H7522\"* the|strong=\"H1241\"* goats|strong=\"H5795\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* whatever|strong=\"H3605\"* has|strong=\"H1961\"* a|strong=\"H3068\"* defect|strong=\"H3971\"*, for|strong=\"H3588\"* it|strong=\"H7126\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* acceptable|strong=\"H7522\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "Whoever|strong=\"H3605\"* offers|strong=\"H7126\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* accomplish|strong=\"H6381\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* of|strong=\"H3068\"* the|strong=\"H3605\"* herd|strong=\"H1241\"* or|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* flock|strong=\"H6629\"*, it|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* perfect|strong=\"H8549\"* to|strong=\"H3068\"* be|strong=\"H1961\"* accepted|strong=\"H7522\"*. It|strong=\"H7126\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* what|strong=\"H5921\"* is|strong=\"H3068\"* blind|strong=\"H5788\"*, is|strong=\"H3068\"* injured|strong=\"H7665\"*, is|strong=\"H3068\"* maimed|strong=\"H2782\"*, has|strong=\"H3068\"* a|strong=\"H3068\"* wart, is|strong=\"H3068\"* festering, or|strong=\"H3808\"* has|strong=\"H3068\"* a|strong=\"H3068\"* running|strong=\"H2990\"* sore|strong=\"H2990\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* make|strong=\"H5414\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* by|strong=\"H5921\"* fire of|strong=\"H3068\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Either|strong=\"H3808\"* a|strong=\"H3068\"* bull|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"* that|strong=\"H6213\"* has|strong=\"H6213\"* any|strong=\"H6213\"* deformity or|strong=\"H3808\"* lacking in|strong=\"H6213\"* his|strong=\"H6213\"* parts|strong=\"H7038\"*, that|strong=\"H6213\"* you|strong=\"H6213\"* may|strong=\"H6213\"* offer|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3808\"* offering|strong=\"H5071\"*; but|strong=\"H3808\"* for|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* it|strong=\"H6213\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6213\"* must|strong=\"H3808\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* has|strong=\"H3068\"* its|strong=\"H6213\"* testicles bruised|strong=\"H4600\"*, crushed|strong=\"H3807\"*, broken|strong=\"H5423\"*, or|strong=\"H3808\"* cut|strong=\"H3772\"*. You|strong=\"H6213\"* must|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* land." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* must|strong=\"H1121\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* any|strong=\"H3605\"* of|strong=\"H1121\"* these|strong=\"H3605\"* as|strong=\"H3588\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H1121\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"*, because|strong=\"H3588\"* their|strong=\"H3605\"* corruption|strong=\"H4893\"* is|strong=\"H3027\"* in|strong=\"H1121\"* them|strong=\"H3027\"*. There|strong=\"H3605\"* is|strong=\"H3027\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* in|strong=\"H1121\"* them|strong=\"H3027\"*. They|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* accepted|strong=\"H7521\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* bull|strong=\"H7794\"*, a|strong=\"H3068\"* sheep|strong=\"H3775\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* goat|strong=\"H5795\"* is|strong=\"H3068\"* born|strong=\"H3205\"*, it|strong=\"H3588\"* shall|strong=\"H3068\"* remain|strong=\"H1961\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H3068\"* its|strong=\"H8478\"* mother. From|strong=\"H3117\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* on|strong=\"H3117\"* it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* accepted|strong=\"H7521\"* for|strong=\"H3588\"* the|strong=\"H3588\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* an|strong=\"H1961\"* offering|strong=\"H7133\"* made|strong=\"H1961\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "Whether it|strong=\"H7819\"* is|strong=\"H3117\"* a|strong=\"H3068\"* cow|strong=\"H7794\"* or|strong=\"H3808\"* ewe|strong=\"H7716\"*, you|strong=\"H3117\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* kill|strong=\"H7819\"* it|strong=\"H7819\"* and|strong=\"H1121\"* its|strong=\"H3808\"* young|strong=\"H1121\"* both in|strong=\"H3117\"* one|strong=\"H3808\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* sacrifice|strong=\"H2077\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2077\"* it|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* eaten on|strong=\"H3117\"* the|strong=\"H3068\"* same|strong=\"H1931\"* day|strong=\"H3117\"*; you|strong=\"H3117\"* shall|strong=\"H3068\"* leave|strong=\"H3498\"* none|strong=\"H3808\"* of|strong=\"H3068\"* it|strong=\"H1931\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*. I|strong=\"H3117\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "“Therefore|strong=\"H3068\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* made|strong=\"H6942\"* holy|strong=\"H6944\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* makes|strong=\"H3068\"* you|strong=\"H3808\"* holy|strong=\"H6944\"*," + }, + { + "verseNum": 33, + "text": "who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1992\"*, ‘The|strong=\"H3068\"* set|strong=\"H3478\"* feasts|strong=\"H4150\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* you|strong=\"H1696\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* to|strong=\"H1696\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, even|strong=\"H3068\"* these|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3068\"* set|strong=\"H3478\"* feasts|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "“‘Six|strong=\"H8337\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* work|strong=\"H4399\"* be|strong=\"H3808\"* done|strong=\"H6213\"*, but|strong=\"H3808\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; you|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* work|strong=\"H4399\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 4, + "text": "“‘These|strong=\"H7121\"* are|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H6944\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, which|strong=\"H3068\"* you|strong=\"H7121\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* in|strong=\"H3068\"* their|strong=\"H3068\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"* in|strong=\"H3068\"* the|strong=\"H3068\"* evening|strong=\"H6153\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 6, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* same|strong=\"H2088\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. In|strong=\"H3068\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land which|strong=\"H3478\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* shall|strong=\"H3548\"* reap|strong=\"H7114\"* its|strong=\"H5414\"* harvest|strong=\"H7105\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3548\"* bring|strong=\"H5414\"* the|strong=\"H3588\"* sheaf|strong=\"H6016\"* of|strong=\"H1121\"* the|strong=\"H3588\"* first|strong=\"H1121\"* fruits|strong=\"H7225\"* of|strong=\"H1121\"* your|strong=\"H5414\"* harvest|strong=\"H7105\"* to|strong=\"H1696\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* the|strong=\"H6440\"* sheaf|strong=\"H6016\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* be|strong=\"H3068\"* accepted|strong=\"H7522\"* for|strong=\"H6440\"* you|strong=\"H6440\"*. On|strong=\"H3068\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"* after|strong=\"H4283\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* it|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "On|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* when|strong=\"H3117\"* you|strong=\"H3117\"* wave|strong=\"H5130\"* the|strong=\"H6213\"* sheaf|strong=\"H6016\"*, you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* a|strong=\"H3068\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* with|strong=\"H1101\"* it|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* two|strong=\"H8147\"* tenths of|strong=\"H3068\"* an|strong=\"H3068\"* ephah+ 23:13 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; and|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* with|strong=\"H1101\"* it|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, the|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*.+ 23:13 A hin is about 6.5 liters or 1.7 gallons.*" + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* must|strong=\"H3808\"* not|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, or|strong=\"H3808\"* roasted|strong=\"H7039\"* grain|strong=\"H3605\"*, or|strong=\"H3808\"* fresh|strong=\"H3759\"* grain|strong=\"H3605\"*, until|strong=\"H5704\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* have|strong=\"H3117\"* brought the|strong=\"H3605\"* offering|strong=\"H7133\"* of|strong=\"H3117\"* your|strong=\"H3605\"* God|strong=\"H3808\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 15, + "text": "“‘You|strong=\"H3117\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* from|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"*, from|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* brought|strong=\"H1961\"* the|strong=\"H3117\"* sheaf|strong=\"H6016\"* of|strong=\"H3117\"* the|strong=\"H3117\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"*: seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* completed." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* Sabbath|strong=\"H7676\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* count|strong=\"H5608\"* fifty|strong=\"H2572\"* days|strong=\"H3117\"*; and|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* new|strong=\"H2319\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H1961\"* shall|strong=\"H3068\"* bring|strong=\"H1961\"* out|strong=\"H8147\"* of|strong=\"H3068\"* your|strong=\"H3068\"* habitations|strong=\"H4186\"* two|strong=\"H8147\"* loaves|strong=\"H3899\"* of|strong=\"H3068\"* bread|strong=\"H3899\"* for|strong=\"H3068\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* made|strong=\"H1961\"* of|strong=\"H3068\"* two|strong=\"H8147\"* tenths of|strong=\"H3068\"* an|strong=\"H1961\"* ephah+ 23:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* baked with|strong=\"H3068\"* yeast, for|strong=\"H3068\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* present|strong=\"H7126\"* with|strong=\"H3068\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* seven|strong=\"H7651\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* rams. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* their|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H1121\"* their|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, even|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* made|strong=\"H1961\"* by|strong=\"H5921\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* sweet|strong=\"H5207\"* aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H6213\"* shall|strong=\"H1121\"* offer|strong=\"H6213\"* one|strong=\"H3532\"* male|strong=\"H3532\"* goat|strong=\"H5795\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H6440\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H6440\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* two|strong=\"H8147\"* lambs|strong=\"H3532\"*. They|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* make|strong=\"H6213\"* proclamation|strong=\"H7121\"* on|strong=\"H3117\"* the|strong=\"H3605\"* same|strong=\"H6106\"* day|strong=\"H3117\"* that|strong=\"H3605\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H1961\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* in|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H3615\"* you|strong=\"H3808\"* reap|strong=\"H7114\"* the|strong=\"H3068\"* harvest|strong=\"H7105\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H7704\"*, you|strong=\"H3808\"* must|strong=\"H3808\"* not|strong=\"H3808\"* wholly reap|strong=\"H7114\"* into the|strong=\"H3068\"* corners|strong=\"H6285\"* of|strong=\"H3068\"* your|strong=\"H3068\"* field|strong=\"H7704\"*. You|strong=\"H3808\"* must|strong=\"H3808\"* not|strong=\"H3808\"* gather|strong=\"H3950\"* the|strong=\"H3068\"* gleanings|strong=\"H3951\"* of|strong=\"H3068\"* your|strong=\"H3068\"* harvest|strong=\"H7105\"*. You|strong=\"H3808\"* must|strong=\"H3808\"* leave|strong=\"H5800\"* them|strong=\"H3615\"* for|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"*. I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘In|strong=\"H3478\"* the|strong=\"H1961\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H1961\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H1961\"* month|strong=\"H2320\"*, there|strong=\"H1961\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H1121\"* you|strong=\"H1696\"*, a|strong=\"H3068\"* memorial|strong=\"H2146\"* of|strong=\"H1121\"* blowing|strong=\"H8643\"* of|strong=\"H1121\"* trumpets|strong=\"H8643\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“However on|strong=\"H3117\"* the|strong=\"H3068\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3068\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* atonement|strong=\"H3725\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H3068\"* you|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* afflict|strong=\"H6031\"* yourselves|strong=\"H5315\"* and|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7126\"* made|strong=\"H1961\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* work|strong=\"H4399\"* in|strong=\"H5921\"* that|strong=\"H3588\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* atonement|strong=\"H3722\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* you|strong=\"H3588\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* it|strong=\"H3588\"* is|strong=\"H2088\"* who|strong=\"H3605\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* deny himself|strong=\"H5315\"* in|strong=\"H3117\"* that|strong=\"H3588\"* same|strong=\"H6106\"* day|strong=\"H3117\"* shall|strong=\"H5971\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 30, + "text": "Whoever|strong=\"H3605\"* does|strong=\"H6213\"* any|strong=\"H3605\"* kind of|strong=\"H3117\"* work|strong=\"H4399\"* in|strong=\"H6213\"* that|strong=\"H5971\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* destroy|strong=\"H6213\"* that|strong=\"H5971\"* person|strong=\"H5315\"* from|strong=\"H5315\"* among|strong=\"H7130\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind|strong=\"H1755\"* of|strong=\"H3605\"* work|strong=\"H4399\"*: it|strong=\"H6213\"* is|strong=\"H3605\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H5315\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, and|strong=\"H5315\"* you|strong=\"H5704\"* shall|strong=\"H5315\"* deny yourselves|strong=\"H5315\"*. In|strong=\"H5315\"* the|strong=\"H5704\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5315\"* the|strong=\"H5704\"* month|strong=\"H2320\"* at|strong=\"H2320\"* evening|strong=\"H6153\"*, from|strong=\"H5315\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* evening|strong=\"H6153\"*, you|strong=\"H5704\"* shall|strong=\"H5315\"* keep|strong=\"H7673\"* your|strong=\"H5704\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 34, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"*, ‘On|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* is|strong=\"H3068\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* booths|strong=\"H5521\"*+ 23:34 or, feast of tents, or Succoth* for|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 36, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*; you|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 37, + "text": "“‘These|strong=\"H7121\"* are|strong=\"H3117\"* the|strong=\"H3068\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* proclaim|strong=\"H7121\"* to|strong=\"H3068\"* be|strong=\"H1697\"* holy|strong=\"H6944\"* convocations|strong=\"H4744\"*, to|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H4503\"* made|strong=\"H7121\"* by|strong=\"H3117\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, and|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, each|strong=\"H3117\"* on|strong=\"H3117\"* its own day|strong=\"H3117\"*—" + }, + { + "verseNum": 38, + "text": "in|strong=\"H3068\"* addition to|strong=\"H3068\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* your|strong=\"H3068\"* gifts|strong=\"H4979\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* vows|strong=\"H5088\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* addition to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* free will|strong=\"H3068\"* offerings|strong=\"H5071\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "“‘So on|strong=\"H3117\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, when|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3068\"* gathered in|strong=\"H3068\"* the|strong=\"H3068\"* fruits|strong=\"H8393\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land, you|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. On|strong=\"H3117\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* on|strong=\"H3117\"* the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H3117\"* the|strong=\"H6440\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* majestic|strong=\"H1926\"* trees|strong=\"H6086\"*, branches|strong=\"H6057\"* of|strong=\"H3068\"* palm|strong=\"H8558\"* trees|strong=\"H6086\"*, and|strong=\"H3068\"* boughs|strong=\"H6057\"* of|strong=\"H3068\"* thick|strong=\"H5687\"* trees|strong=\"H6086\"*, and|strong=\"H3068\"* willows|strong=\"H6155\"* of|strong=\"H3068\"* the|strong=\"H6440\"* brook|strong=\"H5158\"*; and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H2287\"* as|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H8141\"* the|strong=\"H3068\"* year|strong=\"H8141\"*. It|strong=\"H2287\"* is|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* it|strong=\"H2287\"* in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 23:42 or, booths* for|strong=\"H3427\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3117\"* native-born in|strong=\"H3427\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 23:42 or, booths*" + }, + { + "verseNum": 43, + "text": "that|strong=\"H3588\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* made|strong=\"H3045\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 23:43 or, booths* when|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 44, + "text": "So|strong=\"H1696\"* Moses|strong=\"H4872\"* declared|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H3068\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* bring|strong=\"H5927\"* to|strong=\"H3478\"* you|strong=\"H6680\"* pure|strong=\"H2134\"* olive|strong=\"H2132\"* oil|strong=\"H8081\"* beaten|strong=\"H3795\"* for|strong=\"H1121\"* the|strong=\"H3947\"* light|strong=\"H3974\"*, to|strong=\"H3478\"* cause a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3478\"* burn|strong=\"H5927\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 3, + "text": "Outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H6440\"* veil|strong=\"H6532\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, Aaron|strong=\"H6186\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* it|strong=\"H1242\"* in|strong=\"H3068\"* order|strong=\"H6186\"* from|strong=\"H6440\"* evening|strong=\"H6153\"* to|strong=\"H5704\"* morning|strong=\"H1242\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*. It|strong=\"H1242\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* keep|strong=\"H6186\"* in|strong=\"H5921\"* order|strong=\"H6186\"* the|strong=\"H6440\"* lamps|strong=\"H5216\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pure|strong=\"H2889\"* gold lamp|strong=\"H5216\"* stand before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 5, + "text": "“You|strong=\"H3947\"* shall|strong=\"H8147\"* take|strong=\"H3947\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, and|strong=\"H8147\"* bake twelve|strong=\"H8147\"* cakes|strong=\"H2471\"* of|strong=\"H8147\"* it|strong=\"H1961\"*: two|strong=\"H8147\"* tenths of|strong=\"H8147\"* an|strong=\"H1961\"* ephah+ 24:5 1 ephah is about 22 liters or about 2/3 of a bushel* shall|strong=\"H8147\"* be|strong=\"H1961\"* in|strong=\"H1961\"* one|strong=\"H1961\"* cake|strong=\"H2471\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* set|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H5921\"* two|strong=\"H8147\"* rows|strong=\"H4634\"*, six|strong=\"H8337\"* on|strong=\"H5921\"* a|strong=\"H3068\"* row|strong=\"H4635\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* pure|strong=\"H2889\"* gold table|strong=\"H7979\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* pure|strong=\"H2134\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* each|strong=\"H5414\"* row|strong=\"H4635\"*, that|strong=\"H3068\"* it|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H5921\"* bread|strong=\"H3899\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial, even|strong=\"H3068\"* an|strong=\"H1961\"* offering|strong=\"H3068\"* made|strong=\"H5414\"* by|strong=\"H5921\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Every|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* set|strong=\"H6186\"* it|strong=\"H6440\"* in|strong=\"H3478\"* order|strong=\"H6186\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*. It|strong=\"H6440\"* is|strong=\"H3068\"* an|strong=\"H6440\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* on|strong=\"H3117\"* the|strong=\"H6440\"* behalf of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* Aaron and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* eat it|strong=\"H1931\"* in|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* him|strong=\"H1931\"* of|strong=\"H1121\"* the|strong=\"H3588\"* offerings|strong=\"H3588\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire by|strong=\"H3068\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2706\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* an|strong=\"H3318\"* Israelite|strong=\"H3478\"* woman, whose|strong=\"H1121\"* father|strong=\"H1121\"* was|strong=\"H3478\"* an|strong=\"H3318\"* Egyptian|strong=\"H4713\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8432\"* Israelite|strong=\"H3478\"* woman and|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* strove|strong=\"H5327\"* together|strong=\"H5327\"* in|strong=\"H3478\"* the|strong=\"H8432\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4872\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4872\"* Israelite|strong=\"H3482\"* woman|strong=\"H1323\"* blasphemed|strong=\"H5344\"* the|strong=\"H4872\"* Name|strong=\"H8034\"*, and|strong=\"H1121\"* cursed|strong=\"H7043\"*; and|strong=\"H1121\"* they|strong=\"H8034\"* brought|strong=\"H4872\"* him|strong=\"H4872\"* to|strong=\"H1121\"* Moses|strong=\"H4872\"*. His|strong=\"H7043\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Shelomith|strong=\"H8019\"*, the|strong=\"H4872\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Dibri|strong=\"H1704\"*, of|strong=\"H1121\"* the|strong=\"H4872\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H1992\"* put|strong=\"H3240\"* him|strong=\"H5921\"* in|strong=\"H5921\"* custody|strong=\"H4929\"* until|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s will|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H3068\"* declared|strong=\"H6567\"* to|strong=\"H3068\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 14, + "text": "“Bring|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* cursed|strong=\"H7043\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*; and|strong=\"H3027\"* let all|strong=\"H3605\"* who|strong=\"H3605\"* heard|strong=\"H8085\"* him|strong=\"H5921\"* lay|strong=\"H5564\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3027\"* let all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* stone|strong=\"H7275\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Whoever curses|strong=\"H7043\"* his|strong=\"H5375\"* God shall|strong=\"H1121\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* sin|strong=\"H2399\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* who|strong=\"H3605\"* blasphemes|strong=\"H5344\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* certainly|strong=\"H7275\"* stone|strong=\"H7275\"* him|strong=\"H4191\"*. The|strong=\"H3605\"* foreigner|strong=\"H1616\"* as|strong=\"H3068\"* well as|strong=\"H3068\"* the|strong=\"H3605\"* native-born shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* when|strong=\"H3068\"* he|strong=\"H3068\"* blasphemes|strong=\"H5344\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*." + }, + { + "verseNum": 17, + "text": "“‘He|strong=\"H3588\"* who|strong=\"H3605\"* strikes|strong=\"H5221\"* any|strong=\"H3605\"* man|strong=\"H5315\"* mortally|strong=\"H4191\"* shall|strong=\"H5315\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5221\"* who|strong=\"H5315\"* strikes|strong=\"H5221\"* an|strong=\"H5221\"* animal mortally|strong=\"H5315\"* shall|strong=\"H5315\"* make|strong=\"H7999\"* it|strong=\"H5221\"* good|strong=\"H7999\"*, life|strong=\"H5315\"* for|strong=\"H8478\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 19, + "text": "If|strong=\"H3588\"* anyone|strong=\"H3588\"* injures|strong=\"H5414\"* his|strong=\"H5414\"* neighbor|strong=\"H5997\"*, it|strong=\"H5414\"* shall|strong=\"H6213\"* be|strong=\"H5414\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H5414\"* as|strong=\"H6213\"* he|strong=\"H3588\"* has|strong=\"H3588\"* done|strong=\"H6213\"*:" + }, + { + "verseNum": 20, + "text": "fracture|strong=\"H7667\"* for|strong=\"H8478\"* fracture|strong=\"H7667\"*, eye|strong=\"H5869\"* for|strong=\"H8478\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H8478\"* tooth|strong=\"H8127\"*. It|strong=\"H5414\"* shall|strong=\"H5869\"* be|strong=\"H5414\"* done|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* as|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5869\"* injured|strong=\"H5414\"* someone|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H5221\"* who|strong=\"H5221\"* kills|strong=\"H5221\"* an|strong=\"H5221\"* animal shall|strong=\"H4191\"* make|strong=\"H7999\"* it|strong=\"H5221\"* good|strong=\"H7999\"*; and|strong=\"H4191\"* he|strong=\"H5221\"* who|strong=\"H5221\"* kills|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H4191\"* shall|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* one|strong=\"H1961\"* kind|strong=\"H4941\"* of|strong=\"H3068\"* law|strong=\"H4941\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"* as|strong=\"H1961\"* well as|strong=\"H1961\"* the|strong=\"H3588\"* native-born; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’”" + }, + { + "verseNum": 23, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* brought|strong=\"H3318\"* him|strong=\"H6213\"* who|strong=\"H3068\"* had|strong=\"H3068\"* cursed|strong=\"H7043\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*, and|strong=\"H1121\"* stoned|strong=\"H7275\"* him|strong=\"H6213\"* with|strong=\"H3068\"* stones. The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* I|strong=\"H3588\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, then|strong=\"H1696\"* the|strong=\"H3588\"* land shall|strong=\"H3068\"* keep|strong=\"H7673\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H8141\"* shall|strong=\"H7704\"* sow|strong=\"H2232\"* your|strong=\"H2232\"* field|strong=\"H7704\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* you|strong=\"H8141\"* shall|strong=\"H7704\"* prune|strong=\"H2168\"* your|strong=\"H2232\"* vineyard|strong=\"H3754\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, and|strong=\"H8141\"* gather in|strong=\"H8141\"* its fruits|strong=\"H8393\"*;" + }, + { + "verseNum": 4, + "text": "but|strong=\"H3808\"* in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* of|strong=\"H3068\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H7704\"*, a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sow|strong=\"H2232\"* your|strong=\"H3068\"* field|strong=\"H7704\"* or|strong=\"H3808\"* prune|strong=\"H2168\"* your|strong=\"H3068\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 5, + "text": "What|strong=\"H5599\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself in|strong=\"H8141\"* your|strong=\"H3808\"* harvest|strong=\"H7105\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* reap|strong=\"H7114\"*, and|strong=\"H8141\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* gather|strong=\"H1219\"* the|strong=\"H1961\"* grapes|strong=\"H6025\"* of|strong=\"H8141\"* your|strong=\"H3808\"* undressed|strong=\"H5139\"* vine. It|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* year|strong=\"H8141\"* of|strong=\"H8141\"* solemn|strong=\"H7677\"* rest|strong=\"H7677\"* for|strong=\"H1961\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1961\"* Sabbath|strong=\"H7676\"* of|strong=\"H5650\"* the|strong=\"H1961\"* land shall|strong=\"H5650\"* be|strong=\"H1961\"* for|strong=\"H5650\"* food for|strong=\"H5650\"* you|strong=\"H5973\"*; for|strong=\"H5650\"* yourself|strong=\"H5973\"*, for|strong=\"H5650\"* your|strong=\"H1961\"* servant|strong=\"H5650\"*, for|strong=\"H5650\"* your|strong=\"H1961\"* maid, for|strong=\"H5650\"* your|strong=\"H1961\"* hired|strong=\"H7916\"* servant|strong=\"H5650\"*, and|strong=\"H5650\"* for|strong=\"H5650\"* your|strong=\"H1961\"* stranger|strong=\"H8453\"*, who|strong=\"H5650\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H8453\"* with|strong=\"H5973\"* you|strong=\"H5973\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3605\"* your|strong=\"H3605\"* livestock also, and|strong=\"H2416\"* for|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* that|strong=\"H3605\"* are|strong=\"H1961\"* in|strong=\"H1961\"* your|strong=\"H3605\"* land, shall|strong=\"H2416\"* all|strong=\"H3605\"* its|strong=\"H3605\"* increase|strong=\"H8393\"* be|strong=\"H1961\"* for|strong=\"H3605\"* food." + }, + { + "verseNum": 8, + "text": "“‘You|strong=\"H3117\"* shall|strong=\"H3117\"* count|strong=\"H5608\"* off|strong=\"H7651\"* seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3117\"* years|strong=\"H8141\"*, seven|strong=\"H7651\"* times|strong=\"H6471\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*; and|strong=\"H3117\"* there|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* seven|strong=\"H7651\"* Sabbaths|strong=\"H7676\"* of|strong=\"H3117\"* years|strong=\"H8141\"*, even|strong=\"H7651\"* forty-nine years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5674\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* sound|strong=\"H5674\"* the|strong=\"H3605\"* loud trumpet|strong=\"H7782\"* on|strong=\"H3117\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* Day|strong=\"H3117\"* of|strong=\"H3117\"* Atonement|strong=\"H3725\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* sound|strong=\"H5674\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* land." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H1931\"* make|strong=\"H7725\"* the|strong=\"H3605\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* holy|strong=\"H6942\"*, and|strong=\"H7725\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H4940\"* to|strong=\"H7725\"* all|strong=\"H3605\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*. It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"* to|strong=\"H7725\"* you|strong=\"H3605\"*; and|strong=\"H7725\"* each|strong=\"H3605\"* of|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* own|strong=\"H1961\"* property, and|strong=\"H7725\"* each|strong=\"H3605\"* of|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* family|strong=\"H4940\"*." + }, + { + "verseNum": 11, + "text": "That|strong=\"H1931\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"* to|strong=\"H1961\"* you|strong=\"H3808\"*. In|strong=\"H8141\"* it|strong=\"H1931\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sow|strong=\"H2232\"*, neither|strong=\"H3808\"* reap|strong=\"H7114\"* that|strong=\"H1931\"* which|strong=\"H1931\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H1931\"*, nor|strong=\"H3808\"* gather|strong=\"H1219\"* from|strong=\"H1961\"* the|strong=\"H1961\"* undressed|strong=\"H5139\"* vines|strong=\"H5139\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* jubilee|strong=\"H3104\"*; it|strong=\"H1931\"* shall|strong=\"H7704\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H7704\"* eat of|strong=\"H7704\"* its|strong=\"H3588\"* increase|strong=\"H8393\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 13, + "text": "“‘In|strong=\"H8141\"* this|strong=\"H2063\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"* each of|strong=\"H8141\"* you|strong=\"H7725\"* shall|strong=\"H8141\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* property." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* you|strong=\"H3588\"* sell|strong=\"H4376\"* anything to|strong=\"H3027\"* your|strong=\"H3588\"* neighbor|strong=\"H5997\"*, or|strong=\"H4376\"* buy|strong=\"H7069\"* from|strong=\"H3027\"* your|strong=\"H3588\"* neighbor|strong=\"H5997\"*, you|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3588\"* wrong|strong=\"H3238\"* one|strong=\"H3588\"* another|strong=\"H5997\"*." + }, + { + "verseNum": 15, + "text": "According to|strong=\"H8141\"* the|strong=\"H7069\"* number|strong=\"H4557\"* of|strong=\"H8141\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H7069\"* Jubilee|strong=\"H3104\"* you|strong=\"H8141\"* shall|strong=\"H8141\"* buy|strong=\"H7069\"* from|strong=\"H4557\"* your|strong=\"H4376\"* neighbor|strong=\"H5997\"*. According to|strong=\"H8141\"* the|strong=\"H7069\"* number|strong=\"H4557\"* of|strong=\"H8141\"* years|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H7069\"* crops|strong=\"H8393\"* he|strong=\"H8141\"* shall|strong=\"H8141\"* sell|strong=\"H4376\"* to|strong=\"H8141\"* you|strong=\"H8141\"*." + }, + { + "verseNum": 16, + "text": "According|strong=\"H6310\"* to|strong=\"H6310\"* the|strong=\"H3588\"* length|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H3588\"* years|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H6310\"* increase|strong=\"H8393\"* its|strong=\"H3588\"* price|strong=\"H4736\"*, and|strong=\"H8141\"* according|strong=\"H6310\"* to|strong=\"H6310\"* the|strong=\"H3588\"* shortness of|strong=\"H8141\"* the|strong=\"H3588\"* years|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H6310\"* diminish|strong=\"H4591\"* its|strong=\"H3588\"* price|strong=\"H4736\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* selling|strong=\"H4376\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H8141\"* the|strong=\"H3588\"* crops|strong=\"H8393\"* to|strong=\"H6310\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* wrong|strong=\"H3238\"* one|strong=\"H3808\"* another|strong=\"H5997\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“‘Therefore|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* do|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H5921\"*; and|strong=\"H4941\"* you|strong=\"H5921\"* shall|strong=\"H6213\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land in|strong=\"H3427\"* safety." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* land shall|strong=\"H3427\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H3427\"* you|strong=\"H5414\"* shall|strong=\"H3427\"* eat your|strong=\"H5414\"* fill|strong=\"H7648\"*, and|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* in|strong=\"H3427\"* safety." + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* said, “What|strong=\"H4100\"* shall|strong=\"H3808\"* we|strong=\"H3068\"* eat the|strong=\"H3588\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*? Behold|strong=\"H2005\"*, we|strong=\"H3068\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sow|strong=\"H2232\"*, nor|strong=\"H3808\"* gather in|strong=\"H8141\"* our|strong=\"H3588\"* increase|strong=\"H8393\"*;”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H6213\"* I|strong=\"H6680\"* will|strong=\"H1293\"* command|strong=\"H6680\"* my|strong=\"H6213\"* blessing|strong=\"H1293\"* on|strong=\"H6213\"* you|strong=\"H6680\"* in|strong=\"H8141\"* the|strong=\"H6213\"* sixth|strong=\"H8345\"* year|strong=\"H8141\"*, and|strong=\"H6213\"* it|strong=\"H6213\"* shall|strong=\"H1293\"* bear|strong=\"H6213\"* fruit|strong=\"H8393\"* for|strong=\"H6213\"* the|strong=\"H6213\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5704\"* shall|strong=\"H8141\"* sow|strong=\"H2232\"* the|strong=\"H4480\"* eighth|strong=\"H8066\"* year|strong=\"H8141\"*, and|strong=\"H8141\"* eat of|strong=\"H8141\"* the|strong=\"H4480\"* fruits|strong=\"H8393\"* from|strong=\"H4480\"* the|strong=\"H4480\"* old|strong=\"H3465\"* store until|strong=\"H5704\"* the|strong=\"H4480\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"*. Until|strong=\"H5704\"* its|strong=\"H5704\"* fruits|strong=\"H8393\"* come|strong=\"H8393\"* in|strong=\"H8141\"*, you|strong=\"H5704\"* shall|strong=\"H8141\"* eat the|strong=\"H4480\"* old|strong=\"H3465\"* store." + }, + { + "verseNum": 23, + "text": "“‘The|strong=\"H3588\"* land shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* in|strong=\"H3808\"* perpetuity, for|strong=\"H3588\"* the|strong=\"H3588\"* land is|strong=\"H3808\"* mine|strong=\"H5978\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3808\"* strangers|strong=\"H1616\"* and|strong=\"H3808\"* live as|strong=\"H3588\"* foreigners|strong=\"H1616\"* with|strong=\"H5978\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* your|strong=\"H3605\"* possession you|strong=\"H5414\"* shall grant|strong=\"H5414\"* a|strong=\"H3068\"* redemption|strong=\"H1353\"* for|strong=\"H3605\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 25, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother becomes|strong=\"H4134\"* poor|strong=\"H4134\"*, and|strong=\"H7138\"* sells|strong=\"H4376\"* some of|strong=\"H1350\"* his|strong=\"H3588\"* possessions, then|strong=\"H3588\"* his|strong=\"H3588\"* kinsman|strong=\"H1350\"* who|strong=\"H7138\"* is|strong=\"H1350\"* next|strong=\"H7138\"* to|strong=\"H7138\"* him|strong=\"H3588\"* shall|strong=\"H1350\"* come, and|strong=\"H7138\"* redeem|strong=\"H1350\"* that|strong=\"H3588\"* which|strong=\"H3588\"* his|strong=\"H3588\"* brother has|strong=\"H3588\"* sold|strong=\"H4376\"*." + }, + { + "verseNum": 26, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man has|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H1961\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* becomes|strong=\"H1961\"* prosperous and|strong=\"H3027\"* finds|strong=\"H4672\"* sufficient|strong=\"H1767\"* means|strong=\"H3027\"* to|strong=\"H1961\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H7725\"* let|strong=\"H7725\"* him|strong=\"H7725\"* reckon|strong=\"H2803\"* the|strong=\"H7725\"* years|strong=\"H8141\"* since its|strong=\"H7725\"* sale|strong=\"H4465\"*, and|strong=\"H7725\"* restore|strong=\"H7725\"* the|strong=\"H7725\"* surplus to|strong=\"H7725\"* the|strong=\"H7725\"* man to|strong=\"H7725\"* whom he|strong=\"H8141\"* sold|strong=\"H4376\"* it|strong=\"H7725\"*; and|strong=\"H7725\"* he|strong=\"H8141\"* shall|strong=\"H8141\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* property." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* he|strong=\"H5704\"* isn’t able|strong=\"H3027\"* to|strong=\"H5704\"* get|strong=\"H7069\"* it|strong=\"H7725\"* back|strong=\"H7725\"* for|strong=\"H5704\"* himself|strong=\"H3027\"*, then|strong=\"H1961\"* what|strong=\"H4465\"* he|strong=\"H5704\"* has|strong=\"H1961\"* sold|strong=\"H4465\"* shall|strong=\"H3027\"* remain|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H7725\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H4672\"* has|strong=\"H1961\"* bought|strong=\"H7069\"* it|strong=\"H7725\"* until|strong=\"H5704\"* the|strong=\"H7725\"* Year|strong=\"H8141\"* of|strong=\"H3027\"* Jubilee|strong=\"H3104\"*. In|strong=\"H8141\"* the|strong=\"H7725\"* Jubilee|strong=\"H3104\"* it|strong=\"H7725\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* released|strong=\"H3318\"*, and|strong=\"H7725\"* he|strong=\"H5704\"* shall|strong=\"H3027\"* return|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H7725\"* property|strong=\"H5704\"*." + }, + { + "verseNum": 29, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* man sells|strong=\"H4376\"* a|strong=\"H3068\"* dwelling|strong=\"H4186\"* house|strong=\"H1004\"* in|strong=\"H8141\"* a|strong=\"H3068\"* walled|strong=\"H2346\"* city|strong=\"H5892\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* may|strong=\"H1961\"* redeem|strong=\"H1353\"* it|strong=\"H3588\"* within|strong=\"H1004\"* a|strong=\"H3068\"* whole|strong=\"H3117\"* year|strong=\"H8141\"* after|strong=\"H1961\"* it|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* sold|strong=\"H4376\"*. For|strong=\"H3588\"* a|strong=\"H3068\"* full|strong=\"H3117\"* year|strong=\"H8141\"* he|strong=\"H3588\"* shall|strong=\"H1004\"* have|strong=\"H1961\"* the|strong=\"H3588\"* right|strong=\"H1353\"* of|strong=\"H1004\"* redemption|strong=\"H1353\"*." + }, + { + "verseNum": 30, + "text": "If it|strong=\"H5704\"* isn’t redeemed|strong=\"H1350\"* within|strong=\"H1004\"* the|strong=\"H5704\"* space|strong=\"H4390\"* of|strong=\"H1004\"* a|strong=\"H3068\"* full|strong=\"H4390\"* year|strong=\"H8141\"*, then|strong=\"H6965\"* the|strong=\"H5704\"* house|strong=\"H1004\"* that|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H8141\"* the|strong=\"H5704\"* walled|strong=\"H2346\"* city|strong=\"H5892\"* shall|strong=\"H1004\"* be|strong=\"H3808\"* made|strong=\"H8141\"* sure|strong=\"H6965\"* in|strong=\"H8141\"* perpetuity to|strong=\"H5704\"* him|strong=\"H3318\"* who|strong=\"H3808\"* bought|strong=\"H7069\"* it|strong=\"H5704\"*, throughout|strong=\"H1755\"* his|strong=\"H6965\"* generations|strong=\"H1755\"*. It|strong=\"H5704\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* be|strong=\"H3808\"* released|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H5704\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H1961\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* villages|strong=\"H2691\"* which|strong=\"H1992\"* have|strong=\"H1961\"* no|strong=\"H1961\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* them|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* accounted|strong=\"H2803\"* for|strong=\"H5921\"* with|strong=\"H1004\"* the|strong=\"H5921\"* fields|strong=\"H7704\"* of|strong=\"H1004\"* the|strong=\"H5921\"* country|strong=\"H7704\"*: they|strong=\"H1992\"* may|strong=\"H1961\"* be|strong=\"H1961\"* redeemed|strong=\"H1353\"*, and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* released|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 32, + "text": "“‘Nevertheless, in|strong=\"H1004\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*, the|strong=\"H1961\"* Levites|strong=\"H3881\"* may|strong=\"H1961\"* redeem|strong=\"H1353\"* the|strong=\"H1961\"* houses|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* their|strong=\"H1961\"* possession at|strong=\"H1004\"* any|strong=\"H1961\"* time|strong=\"H5769\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* Levites|strong=\"H3881\"* may|strong=\"H3478\"* redeem|strong=\"H1350\"* the|strong=\"H3588\"* house|strong=\"H1004\"* that|strong=\"H3588\"* was|strong=\"H3478\"* sold|strong=\"H4465\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* city|strong=\"H5892\"* of|strong=\"H1121\"* his|strong=\"H3478\"* possession, and|strong=\"H1121\"* it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* released|strong=\"H3318\"* in|strong=\"H3478\"* the|strong=\"H3588\"* Jubilee|strong=\"H3104\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* are|strong=\"H1121\"* their|strong=\"H3588\"* possession among|strong=\"H8432\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* field|strong=\"H7704\"* of|strong=\"H5892\"* the|strong=\"H3588\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* their|strong=\"H3588\"* cities|strong=\"H5892\"* may|strong=\"H1931\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* their|strong=\"H3588\"* perpetual|strong=\"H5769\"* possession." + }, + { + "verseNum": 35, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother has|strong=\"H3588\"* become|strong=\"H3027\"* poor|strong=\"H4134\"*, and|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* can’t support|strong=\"H2388\"* himself|strong=\"H3027\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* uphold him|strong=\"H3027\"*. He|strong=\"H3588\"* shall|strong=\"H3027\"* live|strong=\"H2421\"* with|strong=\"H5973\"* you|strong=\"H3588\"* like|strong=\"H5973\"* an|strong=\"H2421\"* alien|strong=\"H1616\"* and|strong=\"H3027\"* a|strong=\"H3068\"* temporary resident|strong=\"H8453\"*." + }, + { + "verseNum": 36, + "text": "Take|strong=\"H3947\"* no|strong=\"H3947\"* interest|strong=\"H5392\"* from|strong=\"H3947\"* him|strong=\"H5973\"* or|strong=\"H5392\"* profit; but|strong=\"H3947\"* fear|strong=\"H3372\"* your|strong=\"H3947\"* God, that|strong=\"H2421\"* your|strong=\"H3947\"* brother may|strong=\"H2421\"* live|strong=\"H2421\"* among|strong=\"H5973\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H5414\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lend|strong=\"H5414\"* him|strong=\"H5414\"* your|strong=\"H5414\"* money|strong=\"H3701\"* at|strong=\"H3808\"* interest|strong=\"H5392\"*, nor|strong=\"H3808\"* give|strong=\"H5414\"* him|strong=\"H5414\"* your|strong=\"H5414\"* food for|strong=\"H3701\"* profit." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5414\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 39, + "text": "“‘If|strong=\"H3588\"* your|strong=\"H3588\"* brother has|strong=\"H5650\"* grown poor|strong=\"H4134\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H5650\"* sells|strong=\"H4376\"* himself|strong=\"H3808\"* to|strong=\"H5650\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* make|strong=\"H5647\"* him|strong=\"H5973\"* to|strong=\"H5650\"* serve|strong=\"H5647\"* as|strong=\"H3588\"* a|strong=\"H3068\"* slave|strong=\"H5650\"*." + }, + { + "verseNum": 40, + "text": "As|strong=\"H5704\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*, and|strong=\"H8141\"* as|strong=\"H5704\"* a|strong=\"H3068\"* temporary resident|strong=\"H8453\"*, he|strong=\"H5704\"* shall|strong=\"H8141\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5704\"*; he|strong=\"H5704\"* shall|strong=\"H8141\"* serve|strong=\"H5647\"* with|strong=\"H5973\"* you|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H5647\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H3318\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* you|strong=\"H7725\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H7725\"* children|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* own|strong=\"H5973\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* to|strong=\"H7725\"* the|strong=\"H7725\"* possession of|strong=\"H1121\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3318\"* servants|strong=\"H5650\"*, whom|strong=\"H1992\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5650\"* the|strong=\"H3588\"* land of|strong=\"H5650\"* Egypt|strong=\"H4714\"*. They|strong=\"H1992\"* shall|strong=\"H4714\"* not|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* as|strong=\"H3588\"* slaves|strong=\"H5650\"*." + }, + { + "verseNum": 43, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* rule|strong=\"H7287\"* over|strong=\"H7287\"* him|strong=\"H3372\"* with|strong=\"H7287\"* harshness, but|strong=\"H3808\"* shall|strong=\"H3808\"* fear|strong=\"H3372\"* your|strong=\"H3808\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 44, + "text": "“‘As|strong=\"H1961\"* for|strong=\"H5650\"* your|strong=\"H1961\"* male|strong=\"H5650\"* and|strong=\"H5650\"* your|strong=\"H1961\"* female slaves|strong=\"H5650\"*, whom|strong=\"H1992\"* you|strong=\"H1471\"* may|strong=\"H1961\"* have|strong=\"H1961\"* from|strong=\"H1471\"* the|strong=\"H5439\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* around|strong=\"H5439\"* you|strong=\"H1471\"*, from|strong=\"H1471\"* them|strong=\"H1992\"* you|strong=\"H1471\"* may|strong=\"H1961\"* buy|strong=\"H7069\"* male|strong=\"H5650\"* and|strong=\"H5650\"* female slaves|strong=\"H5650\"*." + }, + { + "verseNum": 45, + "text": "Moreover|strong=\"H1571\"*, of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3205\"* aliens|strong=\"H1481\"* who|strong=\"H1121\"* live|strong=\"H1481\"* among|strong=\"H5973\"* you|strong=\"H5973\"*, of|strong=\"H1121\"* them|strong=\"H1992\"* you|strong=\"H5973\"* may|strong=\"H1961\"* buy|strong=\"H7069\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H1992\"* families|strong=\"H4940\"* who|strong=\"H1121\"* are|strong=\"H1992\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1961\"* conceived in|strong=\"H1121\"* your|strong=\"H1961\"* land|strong=\"H4940\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* property." + }, + { + "verseNum": 46, + "text": "You|strong=\"H3808\"* may|strong=\"H3478\"* make|strong=\"H5647\"* them|strong=\"H3423\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* for|strong=\"H1121\"* your|strong=\"H3808\"* children|strong=\"H1121\"* after you|strong=\"H3808\"*, to|strong=\"H3478\"* hold for|strong=\"H1121\"* a|strong=\"H3068\"* possession|strong=\"H3423\"*. Of|strong=\"H1121\"* them|strong=\"H3423\"* you|strong=\"H3808\"* may|strong=\"H3478\"* take|strong=\"H3423\"* your|strong=\"H3808\"* slaves|strong=\"H5647\"* forever|strong=\"H5769\"*, but|strong=\"H3808\"* over|strong=\"H7287\"* your|strong=\"H3808\"* brothers|strong=\"H1121\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* rule|strong=\"H7287\"*, one|strong=\"H3808\"* over|strong=\"H7287\"* another|strong=\"H3808\"*, with|strong=\"H3478\"* harshness." + }, + { + "verseNum": 47, + "text": "“‘If|strong=\"H3588\"* an|strong=\"H3588\"* alien|strong=\"H1616\"* or|strong=\"H4376\"* temporary resident|strong=\"H8453\"* with|strong=\"H5973\"* you|strong=\"H3588\"* becomes|strong=\"H4134\"* rich|strong=\"H5381\"*, and|strong=\"H3027\"* your|strong=\"H3588\"* brother beside|strong=\"H3027\"* him|strong=\"H3027\"* has|strong=\"H3588\"* grown poor|strong=\"H4134\"*, and|strong=\"H3027\"* sells|strong=\"H4376\"* himself|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3588\"* stranger|strong=\"H1616\"* or|strong=\"H4376\"* foreigner|strong=\"H1616\"* living among|strong=\"H5973\"* you|strong=\"H3588\"*, or|strong=\"H4376\"* to|strong=\"H3027\"* a|strong=\"H3068\"* member of|strong=\"H3027\"* the|strong=\"H3588\"* stranger|strong=\"H1616\"*’s family|strong=\"H4940\"*," + }, + { + "verseNum": 48, + "text": "after|strong=\"H1961\"* he is|strong=\"H1961\"* sold|strong=\"H4376\"* he may|strong=\"H1961\"* be|strong=\"H1961\"* redeemed|strong=\"H1350\"*. One|strong=\"H1961\"* of|strong=\"H1350\"* his|strong=\"H1961\"* brothers may|strong=\"H1961\"* redeem|strong=\"H1350\"* him|strong=\"H1961\"*;" + }, + { + "verseNum": 49, + "text": "or|strong=\"H1121\"* his|strong=\"H3027\"* uncle|strong=\"H1730\"*, or|strong=\"H1121\"* his|strong=\"H3027\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, may|strong=\"H1121\"* redeem|strong=\"H1350\"* him|strong=\"H3027\"*, or|strong=\"H1121\"* any who|strong=\"H1121\"* is|strong=\"H3027\"* a|strong=\"H3068\"* close|strong=\"H1350\"* relative|strong=\"H1350\"* to|strong=\"H3027\"* him|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3027\"* family|strong=\"H4940\"* may|strong=\"H1121\"* redeem|strong=\"H1350\"* him|strong=\"H3027\"*; or|strong=\"H1121\"* if|strong=\"H5381\"* he|strong=\"H3027\"* has|strong=\"H3027\"* grown rich|strong=\"H5381\"*, he|strong=\"H3027\"* may|strong=\"H1121\"* redeem|strong=\"H1350\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 50, + "text": "He|strong=\"H3117\"* shall|strong=\"H3117\"* reckon|strong=\"H2803\"* with|strong=\"H5973\"* him|strong=\"H5973\"* who|strong=\"H4376\"* bought|strong=\"H7069\"* him|strong=\"H5973\"* from|strong=\"H3117\"* the|strong=\"H3117\"* year|strong=\"H8141\"* that|strong=\"H3117\"* he|strong=\"H3117\"* sold|strong=\"H4376\"* himself|strong=\"H3117\"* to|strong=\"H5704\"* him|strong=\"H5973\"* to|strong=\"H5704\"* the|strong=\"H3117\"* Year|strong=\"H8141\"* of|strong=\"H3117\"* Jubilee|strong=\"H3104\"*. The|strong=\"H3117\"* price|strong=\"H3701\"* of|strong=\"H3117\"* his|strong=\"H1961\"* sale|strong=\"H4465\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* years|strong=\"H8141\"*; he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"* according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"*." + }, + { + "verseNum": 51, + "text": "If there|strong=\"H7725\"* are|strong=\"H8141\"* yet|strong=\"H5750\"* many|strong=\"H7227\"* years|strong=\"H8141\"*, according|strong=\"H6310\"* to|strong=\"H7725\"* them|strong=\"H7725\"* he|strong=\"H8141\"* shall|strong=\"H6310\"* give|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H7725\"* price|strong=\"H3701\"* of|strong=\"H8141\"* his|strong=\"H7725\"* redemption|strong=\"H1353\"* out|strong=\"H7725\"* of|strong=\"H8141\"* the|strong=\"H7725\"* money|strong=\"H3701\"* that|strong=\"H8141\"* he|strong=\"H8141\"* was|strong=\"H8141\"* bought|strong=\"H4736\"* for|strong=\"H3701\"*." + }, + { + "verseNum": 52, + "text": "If there|strong=\"H7725\"* remain|strong=\"H7604\"* but|strong=\"H7725\"* a|strong=\"H3068\"* few|strong=\"H4592\"* years|strong=\"H8141\"* to|strong=\"H5704\"* the|strong=\"H7725\"* year|strong=\"H8141\"* of|strong=\"H8141\"* jubilee|strong=\"H3104\"*, then|strong=\"H7725\"* he|strong=\"H5704\"* shall|strong=\"H6310\"* reckon|strong=\"H2803\"* with|strong=\"H7725\"* him|strong=\"H7725\"*; according|strong=\"H6310\"* to|strong=\"H5704\"* his|strong=\"H7725\"* years|strong=\"H8141\"* of|strong=\"H8141\"* service he|strong=\"H5704\"* shall|strong=\"H6310\"* give|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H7725\"* price of|strong=\"H8141\"* his|strong=\"H7725\"* redemption|strong=\"H1353\"*." + }, + { + "verseNum": 53, + "text": "As|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H7916\"* hired|strong=\"H7916\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"* shall|strong=\"H5869\"* he|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. He|strong=\"H3808\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* rule|strong=\"H7287\"* with|strong=\"H5973\"* harshness over|strong=\"H8141\"* him|strong=\"H5973\"* in|strong=\"H8141\"* your|strong=\"H1961\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 54, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* isn’t redeemed|strong=\"H1350\"* by|strong=\"H8141\"* these|strong=\"H1931\"* means, then|strong=\"H3318\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* released|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H3318\"* Year|strong=\"H8141\"* of|strong=\"H1121\"* Jubilee|strong=\"H3104\"*: he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3808\"* children|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 55, + "text": "For|strong=\"H3588\"* to|strong=\"H3318\"* me|strong=\"H3318\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* servants|strong=\"H5650\"*; they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H3068\"* servants|strong=\"H5650\"* whom|strong=\"H1992\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "“‘You|strong=\"H3588\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* for|strong=\"H3588\"* yourselves|strong=\"H3068\"* no|strong=\"H3808\"* idols|strong=\"H6459\"*, and|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* or|strong=\"H3808\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"*, and|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* place|strong=\"H5414\"* any|strong=\"H6213\"* figured|strong=\"H4906\"* stone in|strong=\"H5921\"* your|strong=\"H3068\"* land, to|strong=\"H3068\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3068\"* it|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "“‘You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* reverence|strong=\"H3372\"* for|strong=\"H3068\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*. I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“‘If you|strong=\"H6213\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H3212\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3212\"* do|strong=\"H6213\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* rains|strong=\"H1653\"* in|strong=\"H6086\"* their|strong=\"H5414\"* season|strong=\"H6256\"*, and|strong=\"H6086\"* the|strong=\"H5414\"* land|strong=\"H7704\"* shall|strong=\"H7704\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, and|strong=\"H6086\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H5414\"* field|strong=\"H7704\"* shall|strong=\"H7704\"* yield|strong=\"H5414\"* their|strong=\"H5414\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H2233\"* threshing|strong=\"H1786\"* shall|strong=\"H2233\"* continue|strong=\"H3427\"* until|strong=\"H5381\"* the|strong=\"H3427\"* vintage|strong=\"H1210\"*, and|strong=\"H3899\"* the|strong=\"H3427\"* vintage|strong=\"H1210\"* shall|strong=\"H2233\"* continue|strong=\"H3427\"* until|strong=\"H5381\"* the|strong=\"H3427\"* sowing|strong=\"H2233\"* time|strong=\"H2233\"*. You|strong=\"H5381\"* shall|strong=\"H2233\"* eat|strong=\"H3899\"* your|strong=\"H2233\"* bread|strong=\"H3899\"* to|strong=\"H3427\"* the|strong=\"H3427\"* full|strong=\"H7648\"*, and|strong=\"H3899\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H2233\"* land safely." + }, + { + "verseNum": 6, + "text": "“‘I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* peace|strong=\"H7965\"* in|strong=\"H7901\"* the|strong=\"H5414\"* land, and|strong=\"H2719\"* you|strong=\"H5414\"* shall|strong=\"H2719\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H2719\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H2719\"* make|strong=\"H5414\"* you|strong=\"H5414\"* afraid|strong=\"H2729\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* remove|strong=\"H5674\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5414\"* land, neither|strong=\"H3808\"* shall|strong=\"H2719\"* the|strong=\"H5414\"* sword|strong=\"H2719\"* go|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5414\"* land." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* your|strong=\"H6440\"* enemies, and|strong=\"H2719\"* they|strong=\"H6440\"* shall|strong=\"H2719\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 8, + "text": "Five|strong=\"H2568\"* of|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* of|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H2719\"* chase|strong=\"H7291\"* ten|strong=\"H7233\"* thousand|strong=\"H7233\"*; and|strong=\"H3967\"* your|strong=\"H6440\"* enemies shall|strong=\"H2719\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "“‘I|strong=\"H6965\"* will|strong=\"H1285\"* have|strong=\"H6437\"* respect|strong=\"H6437\"* for|strong=\"H6965\"* you|strong=\"H6509\"*, make|strong=\"H6509\"* you|strong=\"H6509\"* fruitful|strong=\"H6509\"*, multiply|strong=\"H7235\"* you|strong=\"H6509\"*, and|strong=\"H6965\"* will|strong=\"H1285\"* establish|strong=\"H6965\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H6509\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* eat old|strong=\"H3465\"* supplies long|strong=\"H6440\"* kept, and|strong=\"H6440\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* move out|strong=\"H3318\"* the|strong=\"H6440\"* old|strong=\"H3465\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* new|strong=\"H2319\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* will|strong=\"H5315\"* set|strong=\"H5414\"* my|strong=\"H5414\"* tent among|strong=\"H8432\"* you|strong=\"H5414\"*, and|strong=\"H5315\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* won’t abhor|strong=\"H1602\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H1980\"* will|strong=\"H1961\"* walk|strong=\"H1980\"* among|strong=\"H8432\"* you|strong=\"H8432\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* God, and|strong=\"H1980\"* you|strong=\"H8432\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, that|strong=\"H3068\"* you|strong=\"H3212\"* should|strong=\"H3068\"* not|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3068\"* slaves|strong=\"H5650\"*. I|strong=\"H4714\"* have|strong=\"H1961\"* broken|strong=\"H7665\"* the|strong=\"H3068\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* your|strong=\"H3068\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* made|strong=\"H1961\"* you|strong=\"H3212\"* walk|strong=\"H3212\"* upright|strong=\"H6968\"*." + }, + { + "verseNum": 14, + "text": "“‘But|strong=\"H3808\"* if you|strong=\"H3605\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H8085\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H4941\"* if you|strong=\"H3605\"* shall|strong=\"H5315\"* reject|strong=\"H3988\"* my|strong=\"H3605\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* if your|strong=\"H3605\"* soul|strong=\"H5315\"* abhors|strong=\"H1602\"* my|strong=\"H3605\"* ordinances|strong=\"H4941\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5315\"* not|strong=\"H1115\"* do|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* commandments|strong=\"H4687\"*, but|strong=\"H3605\"* break|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H5921\"* also|strong=\"H6213\"* will|strong=\"H5869\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H5921\"* you|strong=\"H5921\"*: I|strong=\"H5921\"* will|strong=\"H5869\"* appoint|strong=\"H6485\"* terror over|strong=\"H5921\"* you|strong=\"H5921\"*, even|strong=\"H6213\"* consumption|strong=\"H7829\"* and|strong=\"H5869\"* fever|strong=\"H6920\"*, that|strong=\"H5315\"* shall|strong=\"H5315\"* consume|strong=\"H3615\"* the|strong=\"H5921\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* make|strong=\"H6213\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* to|strong=\"H5921\"* pine|strong=\"H1727\"* away|strong=\"H3615\"*. You|strong=\"H5921\"* will|strong=\"H5869\"* sow|strong=\"H2232\"* your|strong=\"H5921\"* seed|strong=\"H2233\"* in|strong=\"H5921\"* vain|strong=\"H7385\"*, for|strong=\"H5921\"* your|strong=\"H5921\"* enemies will|strong=\"H5869\"* eat it|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H6440\"* you|strong=\"H5414\"* will|strong=\"H5414\"* be|strong=\"H5414\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H5414\"* enemies|strong=\"H8130\"*. Those|strong=\"H8130\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* you|strong=\"H5414\"* will|strong=\"H5414\"* rule|strong=\"H7287\"* over|strong=\"H5414\"* you|strong=\"H5414\"*; and|strong=\"H6440\"* you|strong=\"H5414\"* will|strong=\"H5414\"* flee|strong=\"H5127\"* when|strong=\"H5127\"* no|strong=\"H5414\"* one pursues|strong=\"H7291\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "“‘If you|strong=\"H5921\"* in|strong=\"H5921\"* spite|strong=\"H5921\"* of|strong=\"H5921\"* these|strong=\"H8085\"* things|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H5704\"* me|strong=\"H5921\"*, then|strong=\"H3254\"* I|strong=\"H5704\"* will|strong=\"H3808\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* more|strong=\"H3254\"* for|strong=\"H5704\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H8064\"* break|strong=\"H7665\"* the|strong=\"H5414\"* pride|strong=\"H1347\"* of|strong=\"H1347\"* your|strong=\"H5414\"* power|strong=\"H5797\"*, and|strong=\"H8064\"* I|strong=\"H5414\"* will|strong=\"H8064\"* make|strong=\"H5414\"* your|strong=\"H5414\"* sky|strong=\"H8064\"* like|strong=\"H8064\"* iron|strong=\"H1270\"*, and|strong=\"H8064\"* your|strong=\"H5414\"* soil like|strong=\"H8064\"* bronze|strong=\"H5154\"*." + }, + { + "verseNum": 20, + "text": "Your|strong=\"H5414\"* strength|strong=\"H3581\"* will|strong=\"H5414\"* be|strong=\"H3808\"* spent|strong=\"H8552\"* in|strong=\"H6086\"* vain|strong=\"H7385\"*; for|strong=\"H6086\"* your|strong=\"H5414\"* land won’t yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, neither|strong=\"H3808\"* will|strong=\"H5414\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H6086\"* the|strong=\"H5414\"* land yield|strong=\"H5414\"* their|strong=\"H5414\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 21, + "text": "“‘If you|strong=\"H5921\"* walk|strong=\"H3212\"* contrary|strong=\"H7147\"* to|strong=\"H3212\"* me|strong=\"H5921\"*, and|strong=\"H3212\"* won’t listen|strong=\"H8085\"* to|strong=\"H3212\"* me|strong=\"H5921\"*, then|strong=\"H3254\"* I|strong=\"H5921\"* will|strong=\"H3808\"* bring|strong=\"H3212\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* more|strong=\"H3254\"* plagues|strong=\"H4347\"* on|strong=\"H5921\"* you|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3212\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3772\"* will|strong=\"H7704\"* send|strong=\"H7971\"* the|strong=\"H7971\"* wild|strong=\"H7704\"* animals|strong=\"H2416\"* among|strong=\"H7921\"* you|strong=\"H7971\"*, which|strong=\"H7704\"* will|strong=\"H7704\"* rob you|strong=\"H7971\"* of|strong=\"H1870\"* your|strong=\"H7971\"* children|strong=\"H7921\"*, destroy|strong=\"H3772\"* your|strong=\"H7971\"* livestock, and|strong=\"H7971\"* make|strong=\"H3772\"* you|strong=\"H7971\"* few|strong=\"H4591\"* in|strong=\"H1870\"* number|strong=\"H4591\"*. Your|strong=\"H7971\"* roads|strong=\"H1870\"* will|strong=\"H7704\"* become|strong=\"H8074\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 23, + "text": "“‘If by|strong=\"H1980\"* these things|strong=\"H5973\"* you|strong=\"H5973\"* won’t be|strong=\"H3808\"* turned|strong=\"H3256\"* back|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H5973\"*, but|strong=\"H3808\"* will|strong=\"H3808\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* you|strong=\"H5921\"*; and|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H1571\"* strike|strong=\"H5221\"* you|strong=\"H5921\"*, even|strong=\"H1571\"* I|strong=\"H5921\"*, seven|strong=\"H7651\"* times|strong=\"H7651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* bring|strong=\"H5414\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* upon|strong=\"H5921\"* you|strong=\"H5414\"* that|strong=\"H5414\"* will|strong=\"H2719\"* execute|strong=\"H5414\"* the|strong=\"H5921\"* vengeance|strong=\"H5359\"* of|strong=\"H3027\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"*. You|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H3027\"* gathered|strong=\"H5414\"* together|strong=\"H5921\"* within|strong=\"H8432\"* your|strong=\"H5414\"* cities|strong=\"H5892\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H2719\"* send|strong=\"H7971\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* among|strong=\"H8432\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* enemy." + }, + { + "verseNum": 26, + "text": "When|strong=\"H7725\"* I|strong=\"H3808\"* break|strong=\"H7665\"* your|strong=\"H7725\"* staff|strong=\"H4294\"* of|strong=\"H4294\"* bread|strong=\"H3899\"*, ten|strong=\"H6235\"* women shall|strong=\"H3808\"* bake your|strong=\"H7725\"* bread|strong=\"H3899\"* in|strong=\"H3899\"* one|strong=\"H3808\"* oven|strong=\"H8574\"*, and|strong=\"H7725\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* deliver|strong=\"H7725\"* your|strong=\"H7725\"* bread|strong=\"H3899\"* again|strong=\"H7725\"* by|strong=\"H3808\"* weight|strong=\"H4948\"*. You|strong=\"H7725\"* shall|strong=\"H3808\"* eat|strong=\"H3899\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 27, + "text": "“‘If you|strong=\"H5973\"* in|strong=\"H1980\"* spite of|strong=\"H8085\"* this|strong=\"H2063\"* won’t listen|strong=\"H8085\"* to|strong=\"H1980\"* me|strong=\"H5973\"*, but|strong=\"H3808\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 28, + "text": "then|strong=\"H1980\"* I|strong=\"H5921\"* will|strong=\"H2534\"* walk|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* you|strong=\"H5921\"* in|strong=\"H5921\"* wrath|strong=\"H2534\"*. I|strong=\"H5921\"* will|strong=\"H2534\"* also chastise|strong=\"H3256\"* you|strong=\"H5921\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H1320\"* will|strong=\"H1121\"* eat the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H1121\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* you|strong=\"H1320\"* will|strong=\"H1121\"* eat the|strong=\"H1121\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H5414\"* will|strong=\"H5315\"* destroy|strong=\"H8045\"* your|strong=\"H5414\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H5315\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* your|strong=\"H5414\"* incense|strong=\"H2553\"* altars|strong=\"H2553\"*, and|strong=\"H5315\"* cast|strong=\"H5414\"* your|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H6297\"* upon|strong=\"H5921\"* the|strong=\"H5921\"* bodies|strong=\"H6297\"* of|strong=\"H5921\"* your|strong=\"H5414\"* idols|strong=\"H1544\"*; and|strong=\"H5315\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* abhor|strong=\"H1602\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H5414\"* will|strong=\"H5892\"* lay|strong=\"H5414\"* your|strong=\"H5414\"* cities|strong=\"H5892\"* waste|strong=\"H2723\"*, and|strong=\"H5892\"* will|strong=\"H5892\"* bring|strong=\"H5414\"* your|strong=\"H5414\"* sanctuaries|strong=\"H4720\"* to|strong=\"H5414\"* desolation|strong=\"H2723\"*. I|strong=\"H5414\"* will|strong=\"H5892\"* not|strong=\"H3808\"* take|strong=\"H5414\"* delight|strong=\"H7381\"* in|strong=\"H5892\"* the|strong=\"H5414\"* sweet|strong=\"H5207\"* fragrance|strong=\"H7381\"* of|strong=\"H5892\"* your|strong=\"H5414\"* offerings." + }, + { + "verseNum": 32, + "text": "I|strong=\"H5921\"* will|strong=\"H3427\"* bring|strong=\"H8074\"* the|strong=\"H5921\"* land into|strong=\"H5921\"* desolation|strong=\"H8074\"*, and|strong=\"H3427\"* your|strong=\"H5921\"* enemies who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"* will|strong=\"H3427\"* be astonished|strong=\"H8074\"* at|strong=\"H3427\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"H5892\"* will|strong=\"H1961\"* scatter|strong=\"H2219\"* you|strong=\"H1471\"* among|strong=\"H2719\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, and|strong=\"H5892\"* I|strong=\"H5892\"* will|strong=\"H1961\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* after|strong=\"H1961\"* you|strong=\"H1471\"*. Your|strong=\"H1961\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, and|strong=\"H5892\"* your|strong=\"H1961\"* cities|strong=\"H5892\"* shall|strong=\"H1471\"* be|strong=\"H1961\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H3117\"* enjoy|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* it|strong=\"H3117\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* and|strong=\"H3117\"* you|strong=\"H3605\"* are|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* enemies’ land. Even then|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H3117\"* rest|strong=\"H7673\"* and|strong=\"H3117\"* enjoy|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 35, + "text": "As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* it|strong=\"H5921\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* it|strong=\"H5921\"* shall|strong=\"H3117\"* have|strong=\"H3117\"* rest|strong=\"H7673\"*, even|strong=\"H3808\"* the|strong=\"H3605\"* rest|strong=\"H7673\"* which|strong=\"H3117\"* it|strong=\"H5921\"* didn’t have|strong=\"H3117\"* in|strong=\"H3427\"* your|strong=\"H3605\"* Sabbaths|strong=\"H7676\"* when|strong=\"H3117\"* you|strong=\"H3605\"* lived|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 36, + "text": "“‘As|strong=\"H3824\"* for|strong=\"H5127\"* those|strong=\"H7291\"* of|strong=\"H6963\"* you|strong=\"H7291\"* who|strong=\"H7604\"* are|strong=\"H3824\"* left|strong=\"H7604\"*, I|strong=\"H6963\"* will|strong=\"H2719\"* send a|strong=\"H3068\"* faintness|strong=\"H4816\"* into|strong=\"H5307\"* their|strong=\"H5307\"* hearts|strong=\"H3824\"* in|strong=\"H7604\"* the|strong=\"H7291\"* lands of|strong=\"H6963\"* their|strong=\"H5307\"* enemies. The|strong=\"H7291\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* driven|strong=\"H5086\"* leaf|strong=\"H5929\"* will|strong=\"H2719\"* put|strong=\"H5127\"* them|strong=\"H7291\"* to|strong=\"H3824\"* flight|strong=\"H5127\"*; and|strong=\"H6963\"* they|strong=\"H2719\"* shall|strong=\"H2719\"* flee|strong=\"H5127\"*, as|strong=\"H3824\"* one|strong=\"H6963\"* flees|strong=\"H5127\"* from|strong=\"H5127\"* the|strong=\"H7291\"* sword|strong=\"H2719\"*. They|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* when|strong=\"H5307\"* no|strong=\"H7604\"* one|strong=\"H6963\"* pursues|strong=\"H7291\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* stumble|strong=\"H3782\"* over|strong=\"H3782\"* one|strong=\"H3808\"* another|strong=\"H3808\"*, as|strong=\"H1961\"* it|strong=\"H6440\"* were|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, when|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* pursues|strong=\"H7291\"*. You|strong=\"H6440\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H3808\"* power to|strong=\"H1961\"* stand|strong=\"H8617\"* before|strong=\"H6440\"* your|strong=\"H6440\"* enemies." + }, + { + "verseNum": 38, + "text": "You|strong=\"H1471\"* will|strong=\"H1471\"* perish among the|strong=\"H1471\"* nations|strong=\"H1471\"*. The|strong=\"H1471\"* land of|strong=\"H1471\"* your|strong=\"H1471\"* enemies will|strong=\"H1471\"* eat you|strong=\"H1471\"* up." + }, + { + "verseNum": 39, + "text": "Those of|strong=\"H5771\"* you|strong=\"H5771\"* who|strong=\"H7604\"* are|strong=\"H5771\"* left|strong=\"H7604\"* will|strong=\"H5771\"* pine away|strong=\"H4743\"* in|strong=\"H7604\"* their|strong=\"H5771\"* iniquity|strong=\"H5771\"* in|strong=\"H7604\"* your enemies’ lands; and|strong=\"H5771\"* also in|strong=\"H7604\"* the|strong=\"H7604\"* iniquities|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H5771\"* fathers they shall|strong=\"H5771\"* pine away|strong=\"H4743\"* with|strong=\"H5771\"* them." + }, + { + "verseNum": 40, + "text": "“‘If they confess|strong=\"H3034\"* their|strong=\"H3034\"* iniquity|strong=\"H5771\"* and|strong=\"H1980\"* the|strong=\"H5973\"* iniquity|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H3034\"* fathers, in|strong=\"H1980\"* their|strong=\"H3034\"* trespass|strong=\"H4604\"* which they trespassed|strong=\"H4603\"* against|strong=\"H5973\"* me|strong=\"H5973\"*; and|strong=\"H1980\"* also that|strong=\"H1980\"* because|strong=\"H5973\"* they walked|strong=\"H1980\"* contrary|strong=\"H7147\"* to|strong=\"H1980\"* me|strong=\"H5973\"*," + }, + { + "verseNum": 41, + "text": "I|strong=\"H3212\"* also walked|strong=\"H3212\"* contrary|strong=\"H7147\"* to|strong=\"H3212\"* them|strong=\"H3665\"*, and|strong=\"H3212\"* brought|strong=\"H3212\"* them|strong=\"H3665\"* into|strong=\"H3212\"* the|strong=\"H5973\"* land of|strong=\"H5771\"* their|strong=\"H3665\"* enemies; if then their|strong=\"H3665\"* uncircumcised|strong=\"H6189\"* heart|strong=\"H3824\"* is|strong=\"H5771\"* humbled|strong=\"H3665\"*, and|strong=\"H3212\"* they|strong=\"H3824\"* then accept|strong=\"H7521\"* the|strong=\"H5973\"* punishment|strong=\"H5771\"* of|strong=\"H5771\"* their|strong=\"H3665\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 42, + "text": "then I|strong=\"H2142\"* will|strong=\"H3290\"* remember|strong=\"H2142\"* my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Jacob|strong=\"H3290\"*, my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Isaac|strong=\"H3327\"*, and|strong=\"H1285\"* also my|strong=\"H2142\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* Abraham; and|strong=\"H1285\"* I|strong=\"H2142\"* will|strong=\"H3290\"* remember|strong=\"H2142\"* the|strong=\"H2142\"* land." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5800\"* land also|strong=\"H5315\"* will|strong=\"H5315\"* be|strong=\"H5315\"* left|strong=\"H5800\"* by|strong=\"H5771\"* them|strong=\"H1992\"*, and|strong=\"H4941\"* will|strong=\"H5315\"* enjoy|strong=\"H7521\"* its|strong=\"H7521\"* Sabbaths|strong=\"H7676\"* while|strong=\"H4941\"* it|strong=\"H4941\"* lies|strong=\"H8074\"* desolate|strong=\"H8074\"* without them|strong=\"H1992\"*; and|strong=\"H4941\"* they|strong=\"H1992\"* will|strong=\"H5315\"* accept|strong=\"H7521\"* the|strong=\"H5800\"* punishment|strong=\"H5771\"* of|strong=\"H4941\"* their|strong=\"H1992\"* iniquity|strong=\"H5771\"* because|strong=\"H3282\"* they|strong=\"H1992\"* rejected|strong=\"H3988\"* my|strong=\"H5800\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* their|strong=\"H1992\"* soul|strong=\"H5315\"* abhorred|strong=\"H3988\"* my|strong=\"H5800\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 44, + "text": "Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H1571\"* that|strong=\"H3588\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* their|strong=\"H3068\"* enemies, I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* reject|strong=\"H3988\"* them|strong=\"H3615\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* abhor|strong=\"H1602\"* them|strong=\"H3615\"*, to|strong=\"H3068\"* destroy|strong=\"H3615\"* them|strong=\"H3615\"* utterly|strong=\"H3988\"* and|strong=\"H3068\"* to|strong=\"H3068\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H3615\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"H1961\"* I|strong=\"H4714\"* will|strong=\"H3068\"* for|strong=\"H4714\"* their|strong=\"H3068\"* sake remember|strong=\"H2142\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* their|strong=\"H3068\"* ancestors|strong=\"H7223\"*, whom|strong=\"H5869\"* I|strong=\"H4714\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* the|strong=\"H3068\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"*, that|strong=\"H3068\"* I|strong=\"H4714\"* might|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 46, + "text": "These are|strong=\"H1121\"* the|strong=\"H5414\"* statutes|strong=\"H2706\"*, ordinances|strong=\"H4941\"*, and|strong=\"H1121\"* laws|strong=\"H8451\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H5414\"* between|strong=\"H4941\"* him|strong=\"H5414\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1121\"*, ‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* consecrates a|strong=\"H3068\"* person|strong=\"H5315\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, according to|strong=\"H1696\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"*," + }, + { + "verseNum": 3, + "text": "your|strong=\"H1961\"* valuation|strong=\"H6187\"* of|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H2145\"* from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* to|strong=\"H5704\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H5704\"* the|strong=\"H5704\"* shekel|strong=\"H8255\"*+ 27:3 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H5704\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* female|strong=\"H5347\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H1961\"* the|strong=\"H5704\"* person is|strong=\"H1121\"* from|strong=\"H1121\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"* to|strong=\"H5704\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* male|strong=\"H2145\"* twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* a|strong=\"H3068\"* female|strong=\"H5347\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H1961\"* the|strong=\"H5704\"* person is|strong=\"H3701\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* to|strong=\"H5704\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* male|strong=\"H2145\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* a|strong=\"H3068\"* female|strong=\"H5347\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* three|strong=\"H7969\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H1961\"* the|strong=\"H1961\"* person is|strong=\"H1121\"* from|strong=\"H1121\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; if|strong=\"H1961\"* he|strong=\"H2568\"* is|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, then|strong=\"H1961\"* your|strong=\"H1961\"* valuation|strong=\"H6187\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* fifteen|strong=\"H2568\"* shekels|strong=\"H8255\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* a|strong=\"H3068\"* female|strong=\"H5347\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* if|strong=\"H5381\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poorer|strong=\"H4134\"* than|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*, then|strong=\"H5975\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H3027\"* set|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H3027\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* assign a|strong=\"H3068\"* value|strong=\"H6186\"* to|strong=\"H5921\"* him|strong=\"H6440\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* assign a|strong=\"H3068\"* value|strong=\"H6186\"* according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H6440\"* ability|strong=\"H3027\"* to|strong=\"H5921\"* pay." + }, + { + "verseNum": 9, + "text": "“‘If|strong=\"H1961\"* it|strong=\"H5414\"* is|strong=\"H3068\"* an|strong=\"H7126\"* animal|strong=\"H1961\"* of|strong=\"H3068\"* which|strong=\"H3068\"* men|strong=\"H3605\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* any|strong=\"H3605\"* man|strong=\"H3605\"* gives|strong=\"H5414\"* of|strong=\"H3068\"* such|strong=\"H1961\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* becomes|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* alter|strong=\"H2498\"* it|strong=\"H1931\"*, nor|strong=\"H3808\"* exchange|strong=\"H4171\"* it|strong=\"H1931\"*, a|strong=\"H3068\"* good|strong=\"H2896\"* for|strong=\"H7451\"* a|strong=\"H3068\"* bad|strong=\"H7451\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* for|strong=\"H7451\"* a|strong=\"H3068\"* good|strong=\"H2896\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* shall|strong=\"H3808\"* at|strong=\"H1961\"* all|strong=\"H4171\"* exchange|strong=\"H4171\"* animal|strong=\"H1961\"* for|strong=\"H7451\"* animal|strong=\"H1961\"*, then|strong=\"H1961\"* both it|strong=\"H1931\"* and|strong=\"H2896\"* that|strong=\"H1931\"* for|strong=\"H7451\"* which|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* exchanged|strong=\"H8545\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 11, + "text": "If it|strong=\"H7126\"* is|strong=\"H3068\"* any|strong=\"H3605\"* unclean|strong=\"H2931\"* animal, of|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* do|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H7126\"* as|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H7126\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H3605\"* animal before|strong=\"H6440\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3548\"* the|strong=\"H1961\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* evaluate it|strong=\"H3651\"*, whether it|strong=\"H3651\"* is|strong=\"H2896\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*. As|strong=\"H1961\"* the|strong=\"H1961\"* priest|strong=\"H3548\"* evaluates it|strong=\"H3651\"*, so|strong=\"H3651\"* it|strong=\"H3651\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1350\"* if he|strong=\"H5921\"* will|strong=\"H1350\"* indeed redeem|strong=\"H1350\"* it|strong=\"H5921\"*, then|strong=\"H3254\"* he|strong=\"H5921\"* shall|strong=\"H1350\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* its|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 14, + "text": "“‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7451\"* dedicates his|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H6965\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* evaluate it|strong=\"H3588\"*, whether it|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*. As|strong=\"H3651\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* evaluates it|strong=\"H3588\"*, so|strong=\"H3651\"* it|strong=\"H3588\"* shall|strong=\"H3548\"* stand|strong=\"H6965\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H1961\"* he|strong=\"H1004\"* who dedicates it|strong=\"H5921\"* will|strong=\"H1961\"* redeem|strong=\"H1350\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, then|strong=\"H1961\"* he|strong=\"H1004\"* shall|strong=\"H1004\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H1004\"* the|strong=\"H5921\"* money|strong=\"H3701\"* of|strong=\"H1004\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"* to|strong=\"H1961\"* it|strong=\"H5921\"*, and|strong=\"H3701\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“‘If|strong=\"H1961\"* a|strong=\"H3068\"* man dedicates to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* part of|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3068\"* possession|strong=\"H2233\"*, then|strong=\"H1961\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H3068\"* seed|strong=\"H2233\"* for|strong=\"H3068\"* it|strong=\"H1961\"*. The|strong=\"H3068\"* sowing|strong=\"H2233\"* of|strong=\"H3068\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*+ 27:16 1 homer is about 220 liters or 6 bushels* of|strong=\"H3068\"* barley|strong=\"H8184\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* valued at|strong=\"H3068\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 27:16 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3068\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 17, + "text": "If he|strong=\"H8141\"* dedicates his|strong=\"H6965\"* field|strong=\"H7704\"* from|strong=\"H6965\"* the|strong=\"H6965\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*, according to|strong=\"H6965\"* your|strong=\"H6965\"* valuation|strong=\"H6187\"* it|strong=\"H6942\"* shall|strong=\"H7704\"* stand|strong=\"H6965\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3498\"* if he|strong=\"H5704\"* dedicates his|strong=\"H5921\"* field|strong=\"H7704\"* after|strong=\"H5921\"* the|strong=\"H5921\"* Jubilee|strong=\"H3104\"*, then|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* reckon|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H5921\"* the|strong=\"H5921\"* money|strong=\"H3701\"* according|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H5921\"* years|strong=\"H8141\"* that|strong=\"H3548\"* remain|strong=\"H3498\"* to|strong=\"H5704\"* the|strong=\"H5921\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"*; and|strong=\"H3701\"* an|strong=\"H2803\"* abatement shall|strong=\"H3548\"* be|strong=\"H6310\"* made|strong=\"H8141\"* from|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 19, + "text": "If he|strong=\"H5921\"* who dedicated|strong=\"H6942\"* the|strong=\"H5921\"* field|strong=\"H7704\"* will|strong=\"H7704\"* indeed redeem|strong=\"H1350\"* it|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H5921\"* shall|strong=\"H7704\"* add|strong=\"H3254\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H7704\"* the|strong=\"H5921\"* money|strong=\"H3701\"* of|strong=\"H7704\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"* to|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6965\"* it|strong=\"H5921\"* shall|strong=\"H7704\"* remain|strong=\"H6965\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "If he|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* redeem|strong=\"H1350\"* the|strong=\"H3808\"* field|strong=\"H7704\"*, or|strong=\"H3808\"* if he|strong=\"H3808\"* has|strong=\"H7704\"* sold|strong=\"H4376\"* the|strong=\"H3808\"* field|strong=\"H7704\"* to|strong=\"H7704\"* another|strong=\"H5750\"* man, it|strong=\"H3808\"* shall|strong=\"H7704\"* not|strong=\"H3808\"* be|strong=\"H3808\"* redeemed|strong=\"H1350\"* any|strong=\"H5750\"* more|strong=\"H5750\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"H1961\"* the|strong=\"H3068\"* field|strong=\"H7704\"*, when|strong=\"H1961\"* it|strong=\"H1961\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H3068\"* Jubilee|strong=\"H3104\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* field|strong=\"H7704\"*. It|strong=\"H1961\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* owned by|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "“‘If he|strong=\"H3068\"* dedicates a|strong=\"H3068\"* field|strong=\"H7704\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* bought|strong=\"H4736\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3068\"* possession|strong=\"H4736\"*," + }, + { + "verseNum": 23, + "text": "then|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* reckon|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H5414\"* the|strong=\"H5414\"* worth|strong=\"H4373\"* of|strong=\"H3068\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* up|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* Year|strong=\"H8141\"* of|strong=\"H3068\"* Jubilee|strong=\"H3104\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* your|strong=\"H3068\"* valuation|strong=\"H6187\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H8141\"* the|strong=\"H7725\"* Year|strong=\"H8141\"* of|strong=\"H8141\"* Jubilee|strong=\"H3104\"* the|strong=\"H7725\"* field|strong=\"H7704\"* shall|strong=\"H7704\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* from|strong=\"H7725\"* whom it|strong=\"H7725\"* was|strong=\"H8141\"* bought|strong=\"H7069\"*, even to|strong=\"H7725\"* him|strong=\"H7725\"* to|strong=\"H7725\"* whom the|strong=\"H7725\"* possession of|strong=\"H8141\"* the|strong=\"H7725\"* land|strong=\"H7704\"* belongs." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* valuations shall be|strong=\"H1961\"* according to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H8255\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*: twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 27:25 A gerah is about 0.5 grams or about 7.7 grains.* to|strong=\"H1961\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"*.+ 27:25 A shekel is about 10 grams or about 0.35 ounces.*" + }, + { + "verseNum": 26, + "text": "“‘However the|strong=\"H3068\"* firstborn|strong=\"H1060\"* among|strong=\"H3808\"* animals, which|strong=\"H1931\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* a|strong=\"H3068\"* firstborn|strong=\"H1060\"*, no|strong=\"H3808\"* man may|strong=\"H3068\"* dedicate|strong=\"H6942\"*, whether an|strong=\"H3068\"* ox|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* sheep|strong=\"H7716\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 27, + "text": "If it|strong=\"H5921\"* is|strong=\"H1350\"* an|strong=\"H5921\"* unclean|strong=\"H2931\"* animal, then|strong=\"H3254\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* buy|strong=\"H1350\"* it|strong=\"H5921\"* back|strong=\"H1350\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*, and|strong=\"H3254\"* shall|strong=\"H3808\"* add|strong=\"H3254\"* to|strong=\"H5921\"* it|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H5921\"* it|strong=\"H5921\"*; or|strong=\"H3808\"* if it|strong=\"H5921\"* isn’t redeemed|strong=\"H1350\"*, then|strong=\"H3254\"* it|strong=\"H5921\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5921\"* valuation|strong=\"H6187\"*." + }, + { + "verseNum": 28, + "text": "“‘Notwithstanding, no|strong=\"H3808\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* that|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H3605\"* devotes to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* has|strong=\"H3068\"*, whether of|strong=\"H3068\"* man|strong=\"H3605\"* or|strong=\"H3808\"* animal, or|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H3068\"* his|strong=\"H3605\"* possession, shall|strong=\"H3068\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* or|strong=\"H3808\"* redeemed|strong=\"H1350\"*. Everything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* permanently devoted|strong=\"H2764\"* is|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“‘No|strong=\"H3808\"* one|strong=\"H3605\"* devoted|strong=\"H2764\"* to|strong=\"H4191\"* destruction|strong=\"H2764\"*, who|strong=\"H3605\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* devoted|strong=\"H2764\"* from|strong=\"H4480\"* among|strong=\"H4480\"* men|strong=\"H3605\"*, shall|strong=\"H3808\"* be|strong=\"H4191\"* ransomed|strong=\"H6299\"*. He|strong=\"H3605\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 30, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, whether of|strong=\"H3068\"* the|strong=\"H3605\"* seed|strong=\"H2233\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land or|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3605\"* trees|strong=\"H6086\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s. It|strong=\"H1931\"* is|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "If a|strong=\"H3068\"* man redeems|strong=\"H1350\"* anything of|strong=\"H5921\"* his|strong=\"H5921\"* tithe|strong=\"H4643\"*, he|strong=\"H5921\"* shall|strong=\"H1350\"* add|strong=\"H3254\"* a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* to|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* the|strong=\"H3605\"* herds|strong=\"H1241\"* or|strong=\"H1241\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, whatever|strong=\"H3605\"* passes|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H3605\"* rod|strong=\"H7626\"*, the|strong=\"H3605\"* tenth|strong=\"H6224\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* examine|strong=\"H1239\"* whether it|strong=\"H1931\"* is|strong=\"H1931\"* good|strong=\"H2896\"* or|strong=\"H3808\"* bad|strong=\"H7451\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* he|strong=\"H1931\"* exchange|strong=\"H4171\"* it|strong=\"H1931\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* exchanges|strong=\"H4171\"* it|strong=\"H1931\"* at|strong=\"H1961\"* all|strong=\"H1350\"*, then|strong=\"H1961\"* both it|strong=\"H1931\"* and|strong=\"H2896\"* that|strong=\"H1931\"* for|strong=\"H7451\"* which|strong=\"H1931\"* it|strong=\"H1931\"* is|strong=\"H1931\"* exchanged|strong=\"H8545\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*. It|strong=\"H1931\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H1961\"* redeemed|strong=\"H1350\"*.’”" + }, + { + "verseNum": 34, + "text": "These are|strong=\"H1121\"* the|strong=\"H3068\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* for|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + } + ] + } + ] + }, + { + "name": "Numbers", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8145\"* year|strong=\"H8141\"* after|strong=\"H3318\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3478\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, every|strong=\"H3605\"* male|strong=\"H2145\"*, one|strong=\"H3605\"* by|strong=\"H3478\"* one|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*. You|strong=\"H3605\"* and|strong=\"H1121\"* Aaron shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H3318\"* by|strong=\"H8141\"* their|strong=\"H3605\"* divisions." + }, + { + "verseNum": 4, + "text": "With|strong=\"H1004\"* you|strong=\"H1004\"* there|strong=\"H1961\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H7218\"* of|strong=\"H1004\"* every|strong=\"H7218\"* tribe|strong=\"H4294\"*, each one|strong=\"H1931\"* head|strong=\"H7218\"* of|strong=\"H1004\"* his|strong=\"H1961\"* fathers’ house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "These are|strong=\"H1121\"* the|strong=\"H5975\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5975\"* men|strong=\"H1121\"* who|strong=\"H1121\"* shall|strong=\"H1121\"* stand|strong=\"H5975\"* with|strong=\"H5975\"* you:" + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Shelumiel|strong=\"H8017\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 8, + "text": "Of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Nethanel|strong=\"H5417\"* the|strong=\"H5417\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 9, + "text": "Of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* Ephraim: Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*; of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: Gamaliel|strong=\"H1583\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1121\"* Dan|strong=\"H1835\"*: Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 13, + "text": "Of|strong=\"H1121\"* Asher: Pagiel|strong=\"H6295\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* Gad|strong=\"H1410\"*: Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* called|strong=\"H7148\"* of|strong=\"H4294\"* the|strong=\"H3478\"* congregation|strong=\"H5712\"*, the|strong=\"H3478\"* princes|strong=\"H5387\"*+ 1:16 or, chiefs, or, leaders* of|strong=\"H4294\"* the|strong=\"H3478\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H1992\"* fathers; they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H4294\"* the|strong=\"H3478\"* thousands of|strong=\"H4294\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron took|strong=\"H3947\"* these|strong=\"H3947\"* men|strong=\"H8034\"* who are|strong=\"H8034\"* mentioned by|strong=\"H5344\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* together|strong=\"H6950\"* on|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* declared their|strong=\"H3605\"* ancestry|strong=\"H3205\"* by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H5921\"* their|strong=\"H3605\"* fathers|strong=\"H3205\"*’ houses|strong=\"H1004\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, one|strong=\"H3605\"* by|strong=\"H5921\"* one|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H6485\"* he|strong=\"H3068\"* counted|strong=\"H6485\"* them|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, Israel|strong=\"H3478\"*’s firstborn|strong=\"H1060\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, one|strong=\"H3605\"* by|strong=\"H8141\"* one|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 21, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, were|strong=\"H6485\"* forty-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* it|strong=\"H8034\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, one|strong=\"H3605\"* by|strong=\"H8141\"* one|strong=\"H3605\"*, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 23, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Simeon|strong=\"H8095\"*, were|strong=\"H6485\"* fifty-nine thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 24, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 25, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, were|strong=\"H6485\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 27, + "text": "those who|strong=\"H3063\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Judah|strong=\"H3063\"*, were|strong=\"H3063\"* seventy-four thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 29, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Issachar|strong=\"H3485\"*, were|strong=\"H6485\"* fifty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 31, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Zebulun|strong=\"H2074\"*, were|strong=\"H6485\"* fifty-seven thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 32, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 33, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Ephraim, were|strong=\"H6485\"* forty thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 34, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 35, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H8147\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, were|strong=\"H6485\"* thirty-two|strong=\"H7970\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 37, + "text": "those who|strong=\"H1144\"* were|strong=\"H1144\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Benjamin|strong=\"H1144\"*, were|strong=\"H1144\"* thirty-five|strong=\"H7970\"* thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 38, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 39, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H8147\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Dan|strong=\"H1835\"*, were|strong=\"H6485\"* sixty-two|strong=\"H8346\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 40, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 41, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Asher, were|strong=\"H6485\"* forty-one thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 42, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, their|strong=\"H3605\"* generations|strong=\"H8435\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3605\"* names|strong=\"H8034\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*:" + }, + { + "verseNum": 43, + "text": "those who|strong=\"H6485\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4294\"* them|strong=\"H6485\"*, of|strong=\"H4294\"* the|strong=\"H6485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Naphtali|strong=\"H5321\"*, were|strong=\"H6485\"* fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 44, + "text": "These|strong=\"H8147\"* are|strong=\"H3478\"* those|strong=\"H1961\"* who|strong=\"H3478\"* were|strong=\"H3478\"* counted|strong=\"H6485\"*, whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron counted|strong=\"H6485\"*, and|strong=\"H4872\"* the|strong=\"H6485\"* twelve|strong=\"H8147\"* men|strong=\"H6485\"* who|strong=\"H3478\"* were|strong=\"H3478\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, each|strong=\"H8147\"* one|strong=\"H1961\"* for|strong=\"H1004\"* his|strong=\"H3478\"* fathers’ house|strong=\"H1004\"*." + }, + { + "verseNum": 45, + "text": "So|strong=\"H1961\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 46, + "text": "all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* were|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"H3808\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* after the|strong=\"H8432\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H8432\"* fathers were|strong=\"H3881\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* them|strong=\"H8432\"*." + }, + { + "verseNum": 48, + "text": "For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 49, + "text": "“Only the|strong=\"H5375\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* you|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* count|strong=\"H5375\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H3808\"* take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* them|strong=\"H5375\"* among|strong=\"H8432\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 50, + "text": "but|strong=\"H1992\"* appoint|strong=\"H6485\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Tabernacle|strong=\"H4908\"* of|strong=\"H3627\"* the|strong=\"H3605\"* Testimony|strong=\"H5715\"*, and|strong=\"H3881\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*, and|strong=\"H3881\"* over|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H5921\"* it|strong=\"H5921\"*. They|strong=\"H1992\"* shall|strong=\"H3881\"* carry|strong=\"H5375\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H3881\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*; and|strong=\"H3881\"* they|strong=\"H1992\"* shall|strong=\"H3881\"* take|strong=\"H5375\"* care|strong=\"H6485\"* of|strong=\"H3627\"* it|strong=\"H5921\"*, and|strong=\"H3881\"* shall|strong=\"H3881\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 51, + "text": "When|strong=\"H5265\"* the|strong=\"H7126\"* tabernacle|strong=\"H4908\"* is|strong=\"H4191\"* to|strong=\"H3381\"* move|strong=\"H5265\"*, the|strong=\"H7126\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* take|strong=\"H3381\"* it|strong=\"H7126\"* down|strong=\"H3381\"*; and|strong=\"H6965\"* when|strong=\"H5265\"* the|strong=\"H7126\"* tabernacle|strong=\"H4908\"* is|strong=\"H4191\"* to|strong=\"H3381\"* be|strong=\"H4191\"* set|strong=\"H5265\"* up|strong=\"H6965\"*, the|strong=\"H7126\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* set|strong=\"H5265\"* it|strong=\"H7126\"* up|strong=\"H6965\"*. The|strong=\"H7126\"* stranger|strong=\"H2114\"* who|strong=\"H3881\"* comes|strong=\"H3381\"* near|strong=\"H7126\"* shall|strong=\"H3881\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3381\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* pitch|strong=\"H2583\"* their|strong=\"H5921\"* tents|strong=\"H4264\"*, every|strong=\"H4264\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own camp|strong=\"H4264\"*, and|strong=\"H1121\"* every|strong=\"H4264\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own standard|strong=\"H1714\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5921\"* divisions." + }, + { + "verseNum": 53, + "text": "But|strong=\"H3808\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, that|strong=\"H3478\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. The|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* responsible for|strong=\"H5921\"* the|strong=\"H5921\"* Tabernacle|strong=\"H4908\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*.”" + }, + { + "verseNum": 54, + "text": "Thus|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* every|strong=\"H5439\"* man|strong=\"H1121\"* by|strong=\"H5921\"* his|strong=\"H5921\"* own standard|strong=\"H1714\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* banners of|strong=\"H1121\"* their|strong=\"H5921\"* fathers’ houses|strong=\"H1004\"*. They|strong=\"H5921\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* around|strong=\"H5439\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"* of|strong=\"H1121\"* Meeting|strong=\"H4150\"* at|strong=\"H2583\"* a|strong=\"H3068\"* distance from|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "“Those|strong=\"H2583\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H1121\"* east|strong=\"H4217\"* side|strong=\"H4217\"* toward the|strong=\"H1121\"* sunrise|strong=\"H4217\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* seventy-four thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 5, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* fifty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 7, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* fifty-seven thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 9, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Judah|strong=\"H3063\"* were|strong=\"H3063\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eighty-six|strong=\"H8084\"* thousand four hundred|strong=\"H3967\"*, according to|strong=\"H3063\"* their|strong=\"H3605\"* divisions. They|strong=\"H3605\"* shall|strong=\"H3063\"* set|strong=\"H5265\"* out|strong=\"H5265\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 10, + "text": "“On|strong=\"H6635\"* the|strong=\"H1121\"* south|strong=\"H8486\"* side|strong=\"H8486\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Elizur the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* it, were|strong=\"H6485\"* forty-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 12, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Shelumiel|strong=\"H8017\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 13, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* fifty-nine thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 14, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 16, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Reuben|strong=\"H7205\"* were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty-one thousand four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, according to|strong=\"H4264\"* their|strong=\"H3605\"* armies|strong=\"H6635\"*. They|strong=\"H3605\"* shall|strong=\"H6635\"* set|strong=\"H5265\"* out|strong=\"H5265\"* second|strong=\"H8145\"*." + }, + { + "verseNum": 17, + "text": "“Then|strong=\"H3651\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"* of|strong=\"H3027\"* Meeting|strong=\"H4150\"* shall|strong=\"H3881\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* the|strong=\"H5921\"* camps|strong=\"H4264\"*. As|strong=\"H3651\"* they|strong=\"H3651\"* encamp|strong=\"H2583\"*, so|strong=\"H3651\"* shall|strong=\"H3881\"* they|strong=\"H3651\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, every|strong=\"H4264\"* man in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3027\"*, by|strong=\"H3027\"* their|strong=\"H5921\"* standards|strong=\"H1714\"*." + }, + { + "verseNum": 18, + "text": "“On|strong=\"H3220\"* the|strong=\"H1121\"* west|strong=\"H3220\"* side|strong=\"H3220\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H1121\"* their|strong=\"H6635\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim shall|strong=\"H1121\"* be|strong=\"H1121\"* Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 20, + "text": "“Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Gamaliel|strong=\"H1583\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H8147\"*, were|strong=\"H6485\"* thirty-two|strong=\"H7970\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 22, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 23, + "text": "His|strong=\"H6485\"* army|strong=\"H6635\"*, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* thirty-five|strong=\"H7970\"* thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 24, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H6635\"* Ephraim were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eight|strong=\"H8083\"* thousand one|strong=\"H3605\"* hundred|strong=\"H3967\"*, according to|strong=\"H4264\"* their|strong=\"H3605\"* divisions. They|strong=\"H3605\"* shall|strong=\"H6635\"* set|strong=\"H5265\"* out|strong=\"H5265\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 25, + "text": "“On|strong=\"H6635\"* the|strong=\"H1121\"* north|strong=\"H6828\"* side|strong=\"H6828\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H1121\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H1121\"* their|strong=\"H1835\"* divisions. The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 26, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H8147\"*, were|strong=\"H6485\"* sixty-two|strong=\"H8346\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 27, + "text": "“Those|strong=\"H5921\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher. The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher shall|strong=\"H1121\"* be|strong=\"H1121\"* Pagiel|strong=\"H6295\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 28, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* forty-one thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 29, + "text": "“The|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*." + }, + { + "verseNum": 30, + "text": "His|strong=\"H6485\"* division, and|strong=\"H3967\"* those who|strong=\"H6635\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6635\"* them|strong=\"H6485\"*, were|strong=\"H6485\"* fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 31, + "text": "“All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Dan|strong=\"H1835\"* were|strong=\"H6485\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty-seven thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*. They|strong=\"H3605\"* shall|strong=\"H1835\"* set|strong=\"H5265\"* out|strong=\"H5265\"* last by|strong=\"H6485\"* their|strong=\"H3605\"* standards|strong=\"H1714\"*.”" + }, + { + "verseNum": 32, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camps|strong=\"H4264\"* according to|strong=\"H3478\"* their|strong=\"H3605\"* armies|strong=\"H6635\"* were|strong=\"H3478\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* three|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H3808\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* were|strong=\"H3478\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 34, + "text": "Thus|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*. According|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* their|strong=\"H3605\"* standards|strong=\"H1714\"*, and|strong=\"H1121\"* so|strong=\"H3651\"* they|strong=\"H3651\"* set|strong=\"H5265\"* out|strong=\"H5265\"*, everyone|strong=\"H3605\"* by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* this|strong=\"H1696\"* is|strong=\"H3068\"* the|strong=\"H3068\"* history|strong=\"H8435\"* of|strong=\"H3068\"* the|strong=\"H3068\"* generations|strong=\"H8435\"* of|strong=\"H3068\"* Aaron and|strong=\"H4872\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H3068\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 2, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab|strong=\"H5070\"* the|strong=\"H8034\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 3, + "text": "These are|strong=\"H1121\"* the|strong=\"H4390\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H4390\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H4390\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* were|strong=\"H1121\"* anointed|strong=\"H4886\"*, whom he|strong=\"H3027\"* consecrated|strong=\"H4390\"* to|strong=\"H3027\"* minister|strong=\"H3547\"* in|strong=\"H1121\"* the|strong=\"H4390\"* priest|strong=\"H3548\"*’s office." + }, + { + "verseNum": 4, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu died|strong=\"H4191\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* they|strong=\"H3068\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*, and|strong=\"H1121\"* they|strong=\"H3068\"* had|strong=\"H3068\"* no|strong=\"H3808\"* children|strong=\"H1121\"*. Eleazar and|strong=\"H1121\"* Ithamar ministered|strong=\"H3547\"* in|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3547\"*’s office in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* Aaron their|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Bring|strong=\"H7126\"* the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Levi|strong=\"H3881\"* near|strong=\"H7126\"*, and|strong=\"H3548\"* set|strong=\"H5975\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Aaron the|strong=\"H6440\"* priest|strong=\"H3548\"*, that|strong=\"H3548\"* they|strong=\"H6440\"* may|strong=\"H3548\"* minister|strong=\"H8334\"* to|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* shall|strong=\"H5712\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* requirements, and|strong=\"H6440\"* the|strong=\"H3605\"* requirements of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, to|strong=\"H8104\"* do|strong=\"H5647\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H6440\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3478\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* furnishings|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* obligations|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* Aaron and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* wholly|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H3478\"* him|strong=\"H5414\"* on|strong=\"H5414\"* the|strong=\"H5414\"* behalf of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6485\"* shall|strong=\"H1121\"* appoint|strong=\"H6485\"* Aaron and|strong=\"H1121\"* his|strong=\"H8104\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* they shall|strong=\"H1121\"* keep|strong=\"H8104\"* their|strong=\"H7126\"* priesthood|strong=\"H3550\"*, but|strong=\"H4191\"* the|strong=\"H8104\"* stranger|strong=\"H2114\"* who|strong=\"H1121\"* comes|strong=\"H7126\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“Behold|strong=\"H2009\"*,+ 3:12 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H2009\"* have|strong=\"H1961\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* who|strong=\"H3605\"* open|strong=\"H6363\"* the|strong=\"H3605\"* womb|strong=\"H7358\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* are|strong=\"H3117\"* mine|strong=\"H3478\"*. On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* I|strong=\"H3588\"* made|strong=\"H1961\"* holy|strong=\"H6942\"* to|strong=\"H5704\"* me|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3478\"* animal|strong=\"H1961\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*. I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "“Count the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* by|strong=\"H6485\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, by|strong=\"H6485\"* their|strong=\"H3605\"* families|strong=\"H4940\"*. You|strong=\"H3605\"* shall|strong=\"H1121\"* count every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* counted|strong=\"H6485\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "These|strong=\"H3881\"* were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* by|strong=\"H8034\"* their|strong=\"H1961\"* names|strong=\"H8034\"*: Gershon|strong=\"H1648\"*, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H8034\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* by|strong=\"H8034\"* their families|strong=\"H4940\"*: Libni|strong=\"H3845\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* by|strong=\"H4940\"* their families|strong=\"H4940\"*: Amram|strong=\"H6019\"*, Izhar|strong=\"H3324\"*, Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* by|strong=\"H4940\"* their|strong=\"H1992\"* families|strong=\"H4940\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H4940\"* Gershon|strong=\"H1648\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Libnites|strong=\"H3846\"*, and|strong=\"H1648\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Shimeites|strong=\"H8097\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Gershonites|strong=\"H1649\"*." + }, + { + "verseNum": 22, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, according to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, even|strong=\"H7651\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"* were|strong=\"H1121\"* seven|strong=\"H7651\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H4940\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Gershonites|strong=\"H1649\"* shall|strong=\"H3220\"* encamp|strong=\"H2583\"* behind the|strong=\"H4940\"* tabernacle|strong=\"H4908\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 24, + "text": "Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Lael|strong=\"H3815\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gershonites|strong=\"H1649\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* in|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H1121\"* tabernacle|strong=\"H4908\"*, the|strong=\"H1121\"* tent, its covering|strong=\"H4372\"*, the|strong=\"H1121\"* screen|strong=\"H4539\"* for|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H4196\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H4196\"* the|strong=\"H3605\"* court|strong=\"H2691\"* which|strong=\"H4196\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4196\"* around|strong=\"H5439\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* its|strong=\"H3605\"* cords|strong=\"H4340\"* for|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H4196\"* its|strong=\"H3605\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 27, + "text": "Of|strong=\"H4940\"* Kohath|strong=\"H6955\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Amramites|strong=\"H6020\"*, the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Izharites|strong=\"H3325\"*, the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Hebronites|strong=\"H2276\"*, and|strong=\"H6955\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Uzzielites|strong=\"H5817\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Kohathites|strong=\"H6956\"*." + }, + { + "verseNum": 28, + "text": "According to|strong=\"H8104\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, there|strong=\"H3605\"* were|strong=\"H1121\"* eight|strong=\"H8083\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* keeping|strong=\"H8104\"* the|strong=\"H3605\"* requirements of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H8486\"* side|strong=\"H3409\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Kohathites|strong=\"H6956\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* Elizaphan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 31, + "text": "Their|strong=\"H3605\"* duty|strong=\"H4931\"* shall|strong=\"H3627\"* be|strong=\"H5656\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* table|strong=\"H7979\"*, the|strong=\"H3605\"* lamp stand, the|strong=\"H3605\"* altars|strong=\"H4196\"*, the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* with|strong=\"H3627\"* which|strong=\"H4196\"* they|strong=\"H3605\"* minister|strong=\"H8334\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"*, and|strong=\"H4196\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 32, + "text": "Eleazar the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H8104\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1121\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8104\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8104\"* Levites|strong=\"H3881\"*, with|strong=\"H3548\"* the|strong=\"H8104\"* oversight|strong=\"H6486\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3548\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* requirements of|strong=\"H1121\"* the|strong=\"H8104\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 33, + "text": "Of|strong=\"H4940\"* Merari|strong=\"H4847\"* was|strong=\"H4940\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Mahlites|strong=\"H4250\"* and|strong=\"H1992\"* the|strong=\"H1992\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H1992\"* Mushites|strong=\"H4188\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1992\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 34, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, according to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, were|strong=\"H1121\"* six|strong=\"H8337\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*.+ 3:34 + 22,000 is the sum rounded to 2 significant digits. The sum of the Gershonites, Kohathites, and Merarites given above is 22,300, but the traditional Hebrew text has the number rounded to 2 significant digits, not 3 significant digits.*" + }, + { + "verseNum": 35, + "text": "The|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* was|strong=\"H1004\"* Zuriel|strong=\"H6700\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abihail. They|strong=\"H5921\"* shall|strong=\"H1121\"* encamp|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* appointed|strong=\"H1121\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*’s boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets, all|strong=\"H3605\"* its|strong=\"H3605\"* instruments|strong=\"H3627\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"*," + }, + { + "verseNum": 37, + "text": "the|strong=\"H5439\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H5439\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, their|strong=\"H5439\"* sockets, their|strong=\"H5439\"* pins|strong=\"H3489\"*, and|strong=\"H5439\"* their|strong=\"H5439\"* cords|strong=\"H4340\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"H2583\"* who|strong=\"H1121\"* encamp|strong=\"H2583\"* before|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"* eastward|strong=\"H6924\"*, in|strong=\"H2583\"* front|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent|strong=\"H2583\"* of|strong=\"H1121\"* Meeting|strong=\"H4150\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* sunrise|strong=\"H4217\"*, shall|strong=\"H1121\"* be|strong=\"H4191\"* Moses|strong=\"H4872\"*, with|strong=\"H6440\"* Aaron and|strong=\"H1121\"* his|strong=\"H8104\"* sons|strong=\"H1121\"*, keeping|strong=\"H8104\"* the|strong=\"H6440\"* requirements of|strong=\"H1121\"* the|strong=\"H6440\"* sanctuary|strong=\"H4720\"* for|strong=\"H6440\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. The|strong=\"H6440\"* outsider|strong=\"H2114\"* who|strong=\"H1121\"* comes|strong=\"H6440\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 39, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* at|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, by|strong=\"H5921\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* from|strong=\"H5921\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, were|strong=\"H1121\"* twenty-two|strong=\"H6242\"* thousand." + }, + { + "verseNum": 40, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Count|strong=\"H4557\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, and|strong=\"H1121\"* take|strong=\"H5375\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* their|strong=\"H3605\"* names|strong=\"H8034\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* for|strong=\"H8478\"* me|strong=\"H3947\"*—I|strong=\"H1121\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 42, + "text": "Moses|strong=\"H4872\"* counted|strong=\"H6485\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* according to|strong=\"H1961\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* names|strong=\"H8034\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H8147\"*, were|strong=\"H1961\"* twenty-two|strong=\"H6242\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"* seventy-three." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 45, + "text": "“Take|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* livestock of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* their|strong=\"H3605\"* livestock; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*. I|strong=\"H1121\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* redemption of|strong=\"H1121\"* the|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* seventy-three of|strong=\"H1121\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* exceed|strong=\"H5921\"* the|strong=\"H5921\"* number|strong=\"H5736\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*," + }, + { + "verseNum": 47, + "text": "you|strong=\"H3947\"* shall take|strong=\"H3947\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* apiece|strong=\"H1538\"* for|strong=\"H3947\"* each|strong=\"H3947\"* one; according to|strong=\"H6242\"* the|strong=\"H3947\"* shekel|strong=\"H8255\"*+ 3:47 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H8255\"* the|strong=\"H3947\"* sanctuary|strong=\"H6944\"* you|strong=\"H3947\"* shall take|strong=\"H3947\"* them|strong=\"H3947\"* (the|strong=\"H3947\"* shekel|strong=\"H8255\"* is|strong=\"H8255\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*+ 3:47 A gerah is about 0.5 grams or about 7.7 grains.*);" + }, + { + "verseNum": 48, + "text": "and|strong=\"H1121\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* the|strong=\"H5414\"* money|strong=\"H3701\"*, with|strong=\"H1121\"* which their|strong=\"H5414\"* remainder is|strong=\"H3701\"* redeemed|strong=\"H6302\"*, to|strong=\"H5414\"* Aaron and|strong=\"H1121\"* to|strong=\"H5414\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 49, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5921\"* redemption|strong=\"H6306\"* money|strong=\"H3701\"* from|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3881\"* exceeded the|strong=\"H5921\"* number|strong=\"H5736\"* of|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3881\"* were|strong=\"H3881\"* redeemed|strong=\"H6302\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*;" + }, + { + "verseNum": 50, + "text": "from|strong=\"H3478\"* the|strong=\"H3947\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* he|strong=\"H2568\"* took|strong=\"H3947\"* the|strong=\"H3947\"* money|strong=\"H3701\"*, one|strong=\"H1121\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty-five|strong=\"H8346\"* shekels|strong=\"H8255\"*,+ 3:50 A shekel is about 10 grams or about 0.35 ounces, so 1365 shekels is about 13.65 kilograms or about 30 pounds.* according|strong=\"H3701\"* to|strong=\"H3478\"* the|strong=\"H3947\"* shekel|strong=\"H8255\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sanctuary|strong=\"H6944\"*;" + }, + { + "verseNum": 51, + "text": "and|strong=\"H1121\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* redemption money|strong=\"H3701\"* to|strong=\"H3068\"* Aaron and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* from|strong=\"H1121\"* among|strong=\"H8432\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"*, by|strong=\"H4940\"* their|strong=\"H5375\"* families|strong=\"H4940\"*, by|strong=\"H4940\"* their|strong=\"H5375\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 3, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* until|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* enter into|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H6635\"* to|strong=\"H5704\"* do|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 4, + "text": "“This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1121\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* in|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, regarding the|strong=\"H1121\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1121\"* the|strong=\"H3680\"* camp|strong=\"H4264\"* moves forward|strong=\"H5265\"*, Aaron shall|strong=\"H1121\"* go|strong=\"H3381\"* in|strong=\"H1121\"* with|strong=\"H3381\"* his|strong=\"H3680\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* they shall|strong=\"H1121\"* take|strong=\"H1121\"* down|strong=\"H3381\"* the|strong=\"H3680\"* veil|strong=\"H6532\"* of|strong=\"H1121\"* the|strong=\"H3680\"* screen|strong=\"H4539\"*, cover|strong=\"H3680\"* the|strong=\"H3680\"* ark of|strong=\"H1121\"* the|strong=\"H3680\"* Testimony|strong=\"H5715\"* with|strong=\"H3381\"* it|strong=\"H3381\"*," + }, + { + "verseNum": 6, + "text": "put|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3681\"* of|strong=\"H5921\"* sealskin on|strong=\"H5921\"* it|strong=\"H5414\"*, spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth over|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H8504\"* put|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H5414\"* poles." + }, + { + "verseNum": 7, + "text": "“On|strong=\"H5921\"* the|strong=\"H6440\"* table|strong=\"H7979\"* of|strong=\"H6440\"* show|strong=\"H5414\"* bread|strong=\"H3899\"* they|strong=\"H5921\"* shall|strong=\"H6440\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, and|strong=\"H3899\"* put|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"* the|strong=\"H6440\"* dishes|strong=\"H7086\"*, the|strong=\"H6440\"* spoons|strong=\"H3709\"*, the|strong=\"H6440\"* bowls|strong=\"H4518\"*, and|strong=\"H3899\"* the|strong=\"H6440\"* cups|strong=\"H7184\"* with|strong=\"H5921\"* which|strong=\"H3899\"* to|strong=\"H1961\"* pour|strong=\"H5414\"* out|strong=\"H6566\"*; and|strong=\"H3899\"* the|strong=\"H6440\"* continual|strong=\"H8548\"* bread|strong=\"H3899\"* shall|strong=\"H6440\"* be|strong=\"H1961\"* on|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H8438\"* spread|strong=\"H6566\"* on|strong=\"H5921\"* them|strong=\"H5921\"* a|strong=\"H3068\"* scarlet|strong=\"H8144\"* cloth, and|strong=\"H5785\"* cover|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H5921\"* sealskin, and|strong=\"H5785\"* shall|strong=\"H8438\"* put|strong=\"H7760\"* in|strong=\"H5921\"* its|strong=\"H5921\"* poles." + }, + { + "verseNum": 9, + "text": "“They|strong=\"H3605\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth and|strong=\"H8504\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* lamp|strong=\"H5216\"* stand of|strong=\"H3627\"* the|strong=\"H3605\"* light|strong=\"H3974\"*, its|strong=\"H3605\"* lamps|strong=\"H5216\"*, its|strong=\"H3605\"* snuffers|strong=\"H4457\"*, its|strong=\"H3605\"* snuff dishes, and|strong=\"H8504\"* all|strong=\"H3605\"* its|strong=\"H3605\"* oil|strong=\"H8081\"* vessels|strong=\"H3627\"*, with|strong=\"H3680\"* which|strong=\"H3627\"* they|strong=\"H3605\"* minister|strong=\"H8334\"* to|strong=\"H3947\"* it|strong=\"H3680\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* it|strong=\"H5414\"* and|strong=\"H3627\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* within|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H3627\"* sealskin, and|strong=\"H3627\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* frame|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "“On|strong=\"H5921\"* the|strong=\"H5921\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* they|strong=\"H5921\"* shall spread|strong=\"H6566\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, and|strong=\"H2091\"* cover|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H4196\"* sealskin, and|strong=\"H2091\"* shall put|strong=\"H7760\"* in|strong=\"H5921\"* its|strong=\"H5921\"* poles." + }, + { + "verseNum": 12, + "text": "“They|strong=\"H5921\"* shall|strong=\"H3627\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* ministry|strong=\"H8335\"* with|strong=\"H5921\"* which|strong=\"H3627\"* they|strong=\"H5921\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, and|strong=\"H8504\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* blue|strong=\"H8504\"* cloth, cover|strong=\"H3680\"* them|strong=\"H5414\"* with|strong=\"H5921\"* a|strong=\"H3068\"* covering|strong=\"H4372\"* of|strong=\"H3627\"* sealskin, and|strong=\"H8504\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* frame|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“They|strong=\"H5921\"* shall take|strong=\"H1878\"* away|strong=\"H1878\"* the|strong=\"H5921\"* ashes|strong=\"H1878\"* from|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4196\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* purple cloth on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5921\"* shall|strong=\"H3627\"* put|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* with|strong=\"H5921\"* which|strong=\"H4196\"* they|strong=\"H5921\"* minister|strong=\"H8334\"* about|strong=\"H5921\"* it|strong=\"H5414\"*, the|strong=\"H3605\"* fire pans, the|strong=\"H3605\"* meat hooks|strong=\"H4207\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, and|strong=\"H4196\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*; and|strong=\"H4196\"* they|strong=\"H5921\"* shall|strong=\"H3627\"* spread|strong=\"H6566\"* on|strong=\"H5921\"* it|strong=\"H5414\"* a|strong=\"H3068\"* covering|strong=\"H3681\"* of|strong=\"H3627\"* sealskin, and|strong=\"H4196\"* put|strong=\"H5414\"* in|strong=\"H5921\"* its|strong=\"H3605\"* poles." + }, + { + "verseNum": 15, + "text": "“When|strong=\"H3615\"* Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* have|strong=\"H1121\"* finished|strong=\"H3615\"* covering|strong=\"H3680\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, as|strong=\"H3651\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* moves forward|strong=\"H5265\"*; after that|strong=\"H3605\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* come|strong=\"H5060\"* to|strong=\"H4191\"* carry|strong=\"H5375\"* it|strong=\"H3651\"*; but|strong=\"H3808\"* they|strong=\"H3651\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, lest they|strong=\"H3651\"* die|strong=\"H4191\"*. The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* shall|strong=\"H1121\"* carry|strong=\"H5375\"* these|strong=\"H3605\"* things|strong=\"H6944\"* belonging to|strong=\"H4191\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 16, + "text": "“The|strong=\"H3605\"* duty of|strong=\"H1121\"* Eleazar the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1121\"* the|strong=\"H3605\"* oil|strong=\"H8081\"* for|strong=\"H1121\"* the|strong=\"H3605\"* light|strong=\"H3974\"*, the|strong=\"H3605\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*, the|strong=\"H3605\"* continual|strong=\"H8548\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"* oil|strong=\"H8081\"*, the|strong=\"H3605\"* requirements of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H1121\"* it|strong=\"H3627\"*, the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, and|strong=\"H1121\"* its|strong=\"H3605\"* furnishings|strong=\"H3627\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Don’t cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H8432\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* the|strong=\"H8432\"* families|strong=\"H4940\"* of|strong=\"H7626\"* the|strong=\"H8432\"* Kohathites|strong=\"H6956\"* from|strong=\"H3772\"* among|strong=\"H8432\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H4191\"* them|strong=\"H5921\"*, that|strong=\"H1121\"* they|strong=\"H3808\"* may|strong=\"H6213\"* live|strong=\"H2421\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, when|strong=\"H2421\"* they|strong=\"H3808\"* approach|strong=\"H5066\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*: Aaron and|strong=\"H1121\"* his|strong=\"H7760\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* go|strong=\"H5066\"* in|strong=\"H5921\"* and|strong=\"H1121\"* appoint|strong=\"H7760\"* everyone to|strong=\"H4191\"* his|strong=\"H7760\"* service|strong=\"H5656\"* and|strong=\"H1121\"* to|strong=\"H4191\"* his|strong=\"H7760\"* burden|strong=\"H4853\"*;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go in|strong=\"H4191\"* to|strong=\"H4191\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sanctuary|strong=\"H6944\"* even|strong=\"H3808\"* for|strong=\"H4191\"* a|strong=\"H3068\"* moment|strong=\"H1104\"*, lest they|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 22, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* also|strong=\"H1571\"*, by|strong=\"H1571\"* their|strong=\"H5375\"* fathers’ houses|strong=\"H1004\"*, by|strong=\"H1571\"* their|strong=\"H5375\"* families|strong=\"H4940\"*;" + }, + { + "verseNum": 23, + "text": "you|strong=\"H3605\"* shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H6485\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* until|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*: all|strong=\"H3605\"* who|strong=\"H3605\"* enter in|strong=\"H8141\"* to|strong=\"H5704\"* wait|strong=\"H6633\"* on|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 24, + "text": "“This|strong=\"H2063\"* is|strong=\"H4940\"* the|strong=\"H5647\"* service|strong=\"H5656\"* of|strong=\"H4940\"* the|strong=\"H5647\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H5647\"* Gershonites|strong=\"H1649\"*, in|strong=\"H4940\"* serving|strong=\"H5647\"* and|strong=\"H5647\"* in|strong=\"H4940\"* bearing burdens|strong=\"H4853\"*:" + }, + { + "verseNum": 25, + "text": "they|strong=\"H5921\"* shall|strong=\"H4150\"* carry|strong=\"H5375\"* the|strong=\"H5921\"* curtains|strong=\"H3407\"* of|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* and|strong=\"H4150\"* the|strong=\"H5921\"* Tent|strong=\"H3407\"* of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, its|strong=\"H5921\"* covering|strong=\"H4372\"*, the|strong=\"H5921\"* covering|strong=\"H4372\"* of|strong=\"H5921\"* sealskin that|strong=\"H3407\"* is on|strong=\"H5921\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Tent|strong=\"H3407\"* of|strong=\"H5921\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 26, + "text": "the|strong=\"H3605\"* hangings|strong=\"H7050\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, the|strong=\"H3605\"* screen|strong=\"H4539\"* for|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"* which|strong=\"H4196\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H4196\"* around|strong=\"H5439\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, their|strong=\"H3605\"* cords|strong=\"H4340\"*, and|strong=\"H4196\"* all|strong=\"H3605\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* their|strong=\"H3605\"* service|strong=\"H5656\"*, and|strong=\"H4196\"* whatever|strong=\"H3605\"* shall|strong=\"H6213\"* be|strong=\"H5656\"* done|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5921\"*. They|strong=\"H5921\"* shall|strong=\"H6213\"* serve|strong=\"H5647\"* in|strong=\"H5921\"* there|strong=\"H3605\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Aaron and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Gershonites|strong=\"H1649\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* burden|strong=\"H4853\"* and|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*; and|strong=\"H1121\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* appoint|strong=\"H6485\"* their|strong=\"H3605\"* duty|strong=\"H4931\"* to|strong=\"H1961\"* them|strong=\"H5921\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* responsibilities|strong=\"H4931\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3027\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3027\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3027\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3027\"* Gershonites|strong=\"H1649\"* in|strong=\"H1121\"* the|strong=\"H3027\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. Their|strong=\"H3548\"* duty|strong=\"H4931\"* shall|strong=\"H3548\"* be|strong=\"H3027\"* under|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H3027\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3027\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 29, + "text": "“As|strong=\"H1121\"* for|strong=\"H1004\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, you|strong=\"H6485\"* shall|strong=\"H1121\"* count them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*;" + }, + { + "verseNum": 30, + "text": "you|strong=\"H3605\"* shall|strong=\"H1121\"* count|strong=\"H8141\"* them|strong=\"H6485\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* enters on|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"*, to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 31, + "text": "This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H5982\"* their|strong=\"H3605\"* burden|strong=\"H4853\"*, according to|strong=\"H4150\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H5656\"* the|strong=\"H3605\"* Tent of|strong=\"H5982\"* Meeting|strong=\"H4150\"*: the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*’s boards|strong=\"H7175\"*, its|strong=\"H3605\"* bars|strong=\"H1280\"*, its|strong=\"H3605\"* pillars|strong=\"H5982\"*, its|strong=\"H3605\"* sockets," + }, + { + "verseNum": 32, + "text": "the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H3627\"* the|strong=\"H3605\"* court|strong=\"H2691\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, their|strong=\"H3605\"* sockets, their|strong=\"H3605\"* pins|strong=\"H3489\"*, their|strong=\"H3605\"* cords|strong=\"H4340\"*, with|strong=\"H3627\"* all|strong=\"H3605\"* their|strong=\"H3605\"* instruments|strong=\"H3627\"*, and|strong=\"H3627\"* with|strong=\"H3627\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"*. You|strong=\"H3605\"* shall|strong=\"H8034\"* appoint|strong=\"H6485\"* the|strong=\"H3605\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H3627\"* their|strong=\"H3605\"* burden|strong=\"H4853\"* to|strong=\"H8034\"* them|strong=\"H5439\"* by|strong=\"H8034\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 33, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, according|strong=\"H3027\"* to|strong=\"H3027\"* all|strong=\"H3605\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, under|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"*.”" + }, + { + "verseNum": 34, + "text": "Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron and|strong=\"H1121\"* the|strong=\"H6485\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H6485\"* congregation|strong=\"H5712\"* counted|strong=\"H6485\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6485\"* Kohathites|strong=\"H6956\"* by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, and|strong=\"H1121\"* by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 35, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 36, + "text": "Those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"* two|strong=\"H3967\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 37, + "text": "These|strong=\"H3605\"* are|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* of|strong=\"H3068\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Kohathites|strong=\"H6956\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* served|strong=\"H5647\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 38, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, and|strong=\"H1121\"* by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 39, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 40, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H1004\"* them|strong=\"H6485\"*, by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H1961\"* fathers’ houses|strong=\"H1004\"*, were|strong=\"H1961\"* two|strong=\"H1004\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H3605\"* are|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* served|strong=\"H5647\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 42, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* families|strong=\"H4940\"*, by|strong=\"H6485\"* their|strong=\"H6485\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 43, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*—everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* into|strong=\"H6635\"* the|strong=\"H3605\"* service|strong=\"H5656\"* for|strong=\"H5704\"* work|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 44, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* by|strong=\"H6485\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, were|strong=\"H1961\"* three|strong=\"H7969\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 45, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron counted|strong=\"H6485\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 46, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* whom Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron and|strong=\"H4872\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* counted|strong=\"H6485\"*, by|strong=\"H3478\"* their|strong=\"H3605\"* families|strong=\"H4940\"* and|strong=\"H4872\"* by|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*," + }, + { + "verseNum": 47, + "text": "from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* even|strong=\"H5704\"* to|strong=\"H5704\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered|strong=\"H5704\"* in|strong=\"H8141\"* to|strong=\"H5704\"* do|strong=\"H5647\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* service|strong=\"H5656\"* and|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H5656\"* of|strong=\"H1121\"* bearing burdens|strong=\"H4853\"* in|strong=\"H8141\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 48, + "text": "even those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H6485\"* them|strong=\"H6485\"*, were|strong=\"H1961\"* eight|strong=\"H8083\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"*." + }, + { + "verseNum": 49, + "text": "According|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, everyone according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* service|strong=\"H5656\"* and|strong=\"H4872\"* according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* burden|strong=\"H4853\"*. Thus they|strong=\"H3068\"* were|strong=\"H3027\"* counted|strong=\"H6485\"* by|strong=\"H3027\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* they|strong=\"H5315\"* put|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* every|strong=\"H3605\"* leper|strong=\"H6879\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H3478\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, and|strong=\"H1121\"* whoever|strong=\"H3605\"* is|strong=\"H5315\"* unclean|strong=\"H2931\"* by|strong=\"H3478\"* a|strong=\"H3068\"* corpse|strong=\"H5315\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H7971\"* shall|strong=\"H3808\"* put|strong=\"H7971\"* both male|strong=\"H2145\"* and|strong=\"H7971\"* female|strong=\"H5347\"* outside|strong=\"H2351\"* of|strong=\"H8432\"* the|strong=\"H8432\"* camp|strong=\"H4264\"* so|strong=\"H7971\"* that|strong=\"H5704\"* they|strong=\"H3808\"* don’t defile|strong=\"H2930\"* their|strong=\"H7971\"* camp|strong=\"H4264\"*, in|strong=\"H7931\"* the|strong=\"H8432\"* midst|strong=\"H8432\"* of|strong=\"H8432\"* which I|strong=\"H5704\"* dwell|strong=\"H7931\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* put|strong=\"H7971\"* them|strong=\"H7971\"* outside|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H6213\"* camp|strong=\"H4264\"*; as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* or|strong=\"H1121\"* woman commits|strong=\"H6213\"* any|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3588\"* men|strong=\"H1121\"* commit|strong=\"H6213\"*, so|strong=\"H6213\"* as|strong=\"H6213\"* to|strong=\"H1696\"* trespass|strong=\"H4604\"* against|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* is|strong=\"H3068\"* guilty," + }, + { + "verseNum": 7, + "text": "then|strong=\"H3254\"* he|strong=\"H6213\"* shall|strong=\"H6213\"* confess|strong=\"H3034\"* his|strong=\"H5414\"* sin|strong=\"H2403\"* which|strong=\"H2403\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*; and|strong=\"H7725\"* he|strong=\"H6213\"* shall|strong=\"H6213\"* make|strong=\"H6213\"* restitution|strong=\"H7725\"* for|strong=\"H5921\"* his|strong=\"H5414\"* guilt in|strong=\"H5921\"* full|strong=\"H7218\"*, add|strong=\"H3254\"* to|strong=\"H7725\"* it|strong=\"H5414\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H7218\"* it|strong=\"H5414\"*, and|strong=\"H7725\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H7725\"* him|strong=\"H5414\"* in|strong=\"H5921\"* respect|strong=\"H5921\"* of|strong=\"H7218\"* whom he|strong=\"H6213\"* has|strong=\"H6213\"* been guilty." + }, + { + "verseNum": 8, + "text": "But|strong=\"H7725\"* if the|strong=\"H5921\"* man has|strong=\"H3068\"* no kinsman|strong=\"H1350\"* to|strong=\"H7725\"* whom restitution|strong=\"H7725\"* may|strong=\"H3068\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* guilt, the|strong=\"H5921\"* restitution|strong=\"H7725\"* for|strong=\"H5921\"* guilt which|strong=\"H3068\"* is|strong=\"H3068\"* made|strong=\"H3722\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*’s, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H7725\"* the|strong=\"H5921\"* ram of|strong=\"H3068\"* the|strong=\"H5921\"* atonement|strong=\"H3722\"*, by|strong=\"H5921\"* which|strong=\"H3068\"* atonement|strong=\"H3722\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* made|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Every|strong=\"H3605\"* heave|strong=\"H8641\"* offering|strong=\"H8641\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3478\"* they|strong=\"H3478\"* present|strong=\"H7126\"* to|strong=\"H3478\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "Every|strong=\"H5414\"* man’s holy|strong=\"H6944\"* things|strong=\"H6944\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H5414\"*; whatever any|strong=\"H5414\"* man gives|strong=\"H5414\"* the|strong=\"H5414\"* priest|strong=\"H3548\"*, it|strong=\"H5414\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* his|strong=\"H5414\"*.’”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 12, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*: ‘If|strong=\"H3588\"* any|strong=\"H3588\"* man|strong=\"H1121\"*’s wife|strong=\"H1696\"* goes|strong=\"H7847\"* astray|strong=\"H7847\"* and|strong=\"H1121\"* is|strong=\"H3478\"* unfaithful|strong=\"H4603\"* to|strong=\"H1696\"* him|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H5869\"* a|strong=\"H3068\"* man lies|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H1931\"* carnally|strong=\"H2233\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* is|strong=\"H1931\"* hidden|strong=\"H5641\"* from|strong=\"H5869\"* the|strong=\"H8610\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* her|strong=\"H1931\"* husband and|strong=\"H5869\"* this|strong=\"H1931\"* is|strong=\"H1931\"* kept concealed|strong=\"H5641\"*, and|strong=\"H5869\"* she|strong=\"H1931\"* is|strong=\"H1931\"* defiled|strong=\"H2930\"*, there is|strong=\"H1931\"* no|strong=\"H3808\"* witness|strong=\"H5707\"* against|strong=\"H5869\"* her|strong=\"H1931\"*, and|strong=\"H5869\"* she|strong=\"H1931\"* isn’t taken|strong=\"H8610\"* in|strong=\"H7901\"* the|strong=\"H8610\"* act;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H5674\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5674\"* he|strong=\"H1931\"* is|strong=\"H1931\"* jealous|strong=\"H7065\"* of|strong=\"H7307\"* his|strong=\"H5921\"* wife and|strong=\"H5674\"* she|strong=\"H1931\"* is|strong=\"H1931\"* defiled|strong=\"H2930\"*; or|strong=\"H3808\"* if|strong=\"H7068\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5674\"* he|strong=\"H1931\"* is|strong=\"H1931\"* jealous|strong=\"H7065\"* of|strong=\"H7307\"* his|strong=\"H5921\"* wife and|strong=\"H5674\"* she|strong=\"H1931\"* isn’t defiled|strong=\"H2930\"*;" + }, + { + "verseNum": 15, + "text": "then|strong=\"H5414\"* the|strong=\"H5921\"* man shall|strong=\"H3548\"* bring|strong=\"H5414\"* his|strong=\"H5414\"* wife to|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H5414\"* her|strong=\"H5414\"* offering|strong=\"H4503\"* for|strong=\"H3588\"* her|strong=\"H5414\"*: one|strong=\"H3808\"* tenth|strong=\"H6224\"* of|strong=\"H5921\"* an|strong=\"H5414\"* ephah+ 5:15 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H5921\"* barley|strong=\"H8184\"* meal|strong=\"H7058\"*. He|strong=\"H1931\"* shall|strong=\"H3548\"* pour|strong=\"H3332\"* no|strong=\"H3808\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, nor|strong=\"H3808\"* put|strong=\"H5414\"* frankincense|strong=\"H3828\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* meal|strong=\"H7058\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* jealousy|strong=\"H7068\"*, a|strong=\"H3068\"* meal|strong=\"H7058\"* offering|strong=\"H4503\"* of|strong=\"H5921\"* memorial|strong=\"H2146\"*, bringing|strong=\"H2142\"* iniquity|strong=\"H5771\"* to|strong=\"H5921\"* memory." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* her|strong=\"H6440\"* near|strong=\"H7126\"*, and|strong=\"H3068\"* set|strong=\"H5975\"* her|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* holy|strong=\"H6918\"* water|strong=\"H4325\"* in|strong=\"H5414\"* an|strong=\"H1961\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*; and|strong=\"H3548\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H3627\"* the|strong=\"H5414\"* dust|strong=\"H6083\"* that|strong=\"H5414\"* is|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H5414\"* floor|strong=\"H7172\"* of|strong=\"H3627\"* the|strong=\"H5414\"* tabernacle|strong=\"H4908\"* and|strong=\"H3548\"* put|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H1961\"* the|strong=\"H5414\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* set|strong=\"H5414\"* the|strong=\"H6440\"* woman before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* let|strong=\"H5414\"* the|strong=\"H6440\"* hair|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* woman’s head|strong=\"H7218\"* go|strong=\"H1961\"* loose|strong=\"H5921\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H5921\"* her|strong=\"H5414\"* hands|strong=\"H3027\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"*. The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* have|strong=\"H1961\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H3068\"* bitterness|strong=\"H4751\"* that|strong=\"H1931\"* brings|strong=\"H5414\"* a|strong=\"H3068\"* curse." + }, + { + "verseNum": 19, + "text": "The|strong=\"H8478\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* cause her|strong=\"H7901\"* to|strong=\"H4325\"* take|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7650\"* and|strong=\"H3548\"* shall|strong=\"H3548\"* tell the|strong=\"H8478\"* woman, “If no|strong=\"H3808\"* man has|strong=\"H7901\"* lain|strong=\"H7901\"* with|strong=\"H7901\"* you|strong=\"H3808\"*, and|strong=\"H3548\"* if you|strong=\"H3808\"* haven’t gone|strong=\"H7847\"* aside|strong=\"H7847\"* to|strong=\"H4325\"* uncleanness|strong=\"H2932\"*, being under|strong=\"H8478\"* your|strong=\"H3808\"* husband’s authority, be|strong=\"H3808\"* free|strong=\"H5352\"* from|strong=\"H8478\"* this water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"* that|strong=\"H3548\"* brings a|strong=\"H3068\"* curse|strong=\"H7650\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* gone|strong=\"H7847\"* astray|strong=\"H7847\"*, being under|strong=\"H8478\"* your|strong=\"H5414\"* husband’s authority, and|strong=\"H8478\"* if|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H8478\"* defiled|strong=\"H2930\"*, and|strong=\"H8478\"* some man has|strong=\"H3588\"* lain|strong=\"H7903\"* with|strong=\"H8478\"* you|strong=\"H3588\"* besides|strong=\"H1107\"* your|strong=\"H5414\"* husband—”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H5307\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* woman to|strong=\"H3068\"* swear|strong=\"H7650\"* with|strong=\"H3068\"* the|strong=\"H5414\"* oath|strong=\"H7621\"* of|strong=\"H3068\"* cursing, and|strong=\"H3068\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* tell the|strong=\"H5414\"* woman, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* curse|strong=\"H7621\"* and|strong=\"H3068\"* an|strong=\"H5414\"* oath|strong=\"H7621\"* among|strong=\"H8432\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* allows your|strong=\"H3068\"* thigh|strong=\"H3409\"* to|strong=\"H3068\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* body|strong=\"H3409\"* to|strong=\"H3068\"* swell|strong=\"H6639\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H4325\"* this|strong=\"H5307\"* water|strong=\"H4325\"* that|strong=\"H4325\"* brings a|strong=\"H3068\"* curse will|strong=\"H4325\"* go|strong=\"H5307\"* into|strong=\"H5307\"* your|strong=\"H5307\"* bowels|strong=\"H4578\"*, and|strong=\"H4325\"* make your|strong=\"H5307\"* body|strong=\"H4578\"* swell|strong=\"H6638\"*, and|strong=\"H4325\"* your|strong=\"H5307\"* thigh|strong=\"H3409\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*.” The|strong=\"H5307\"* woman shall|strong=\"H4325\"* say, “Amen, Amen.”" + }, + { + "verseNum": 23, + "text": "“‘The|strong=\"H3548\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* write|strong=\"H3789\"* these|strong=\"H3789\"* curses in|strong=\"H3789\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H3548\"* he|strong=\"H4325\"* shall|strong=\"H3548\"* wipe|strong=\"H4229\"* them|strong=\"H3789\"* into|strong=\"H4325\"* the|strong=\"H3548\"* water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H4325\"* shall|strong=\"H4325\"* make|strong=\"H8248\"* the|strong=\"H8248\"* woman drink|strong=\"H8248\"* the|strong=\"H8248\"* water|strong=\"H4325\"* of|strong=\"H4325\"* bitterness|strong=\"H4751\"* that|strong=\"H4325\"* causes the|strong=\"H8248\"* curse; and|strong=\"H4325\"* the|strong=\"H8248\"* water|strong=\"H4325\"* that|strong=\"H4325\"* causes the|strong=\"H8248\"* curse shall|strong=\"H4325\"* enter into|strong=\"H4325\"* her and|strong=\"H4325\"* become bitter|strong=\"H4751\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* woman’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* wave|strong=\"H5130\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* bring|strong=\"H7126\"* it|strong=\"H7126\"* to|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H4480\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H7061\"* a|strong=\"H3068\"* handful|strong=\"H7061\"* of|strong=\"H4325\"* the|strong=\"H4480\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, as|strong=\"H4325\"* its|strong=\"H4480\"* memorial portion|strong=\"H6999\"*, and|strong=\"H3548\"* burn|strong=\"H6999\"* it|strong=\"H4325\"* on|strong=\"H4480\"* the|strong=\"H4480\"* altar|strong=\"H4196\"*, and|strong=\"H3548\"* afterward shall|strong=\"H3548\"* make|strong=\"H8248\"* the|strong=\"H4480\"* woman drink|strong=\"H8248\"* the|strong=\"H4480\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* he|strong=\"H5971\"* has|strong=\"H1961\"* made|strong=\"H8248\"* her|strong=\"H7130\"* drink|strong=\"H8248\"* the|strong=\"H1961\"* water|strong=\"H4325\"*, then|strong=\"H1961\"* it|strong=\"H1961\"* shall|strong=\"H5971\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* she|strong=\"H8248\"* is|strong=\"H1961\"* defiled|strong=\"H2930\"* and|strong=\"H5971\"* has|strong=\"H1961\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* against|strong=\"H4604\"* her|strong=\"H7130\"* husband, that|strong=\"H5971\"* the|strong=\"H1961\"* water|strong=\"H4325\"* that|strong=\"H5971\"* causes the|strong=\"H1961\"* curse will|strong=\"H1961\"* enter into|strong=\"H5307\"* her|strong=\"H7130\"* and|strong=\"H5971\"* become|strong=\"H1961\"* bitter|strong=\"H4751\"*, and|strong=\"H5971\"* her|strong=\"H7130\"* body|strong=\"H3409\"* will|strong=\"H1961\"* swell|strong=\"H6638\"*, and|strong=\"H5971\"* her|strong=\"H7130\"* thigh|strong=\"H3409\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* away|strong=\"H5307\"*; and|strong=\"H5971\"* the|strong=\"H1961\"* woman will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* curse among|strong=\"H7130\"* her|strong=\"H7130\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H1931\"* the|strong=\"H3808\"* woman isn’t defiled|strong=\"H2930\"*, but|strong=\"H3808\"* is|strong=\"H1931\"* clean|strong=\"H2889\"*; then|strong=\"H3808\"* she|strong=\"H1931\"* shall|strong=\"H2233\"* be|strong=\"H3808\"* free|strong=\"H5352\"*, and|strong=\"H2233\"* shall|strong=\"H2233\"* conceive|strong=\"H2232\"* offspring|strong=\"H2233\"*.+ 5:28 or, seed*" + }, + { + "verseNum": 29, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H8451\"* the|strong=\"H8478\"* law|strong=\"H8451\"* of|strong=\"H8451\"* jealousy|strong=\"H7068\"*, when|strong=\"H7068\"* a|strong=\"H3068\"* wife, being under|strong=\"H8478\"* her|strong=\"H2063\"* husband, goes|strong=\"H7847\"* astray|strong=\"H7847\"*, and|strong=\"H8451\"* is|strong=\"H8451\"* defiled|strong=\"H2930\"*," + }, + { + "verseNum": 30, + "text": "or|strong=\"H3068\"* when|strong=\"H6213\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* jealousy|strong=\"H7068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* is|strong=\"H3068\"* jealous|strong=\"H7065\"* of|strong=\"H3068\"* his|strong=\"H3605\"* wife; then|strong=\"H6213\"* he|strong=\"H6213\"* shall|strong=\"H3548\"* set|strong=\"H5975\"* the|strong=\"H3605\"* woman before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* execute|strong=\"H6213\"* on|strong=\"H5921\"* her|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2063\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5375\"* man|strong=\"H5375\"* shall|strong=\"H1931\"* be|strong=\"H5375\"* free|strong=\"H5352\"* from|strong=\"H5352\"* iniquity|strong=\"H5771\"*, and|strong=\"H5771\"* that|strong=\"H1931\"* woman shall|strong=\"H1931\"* bear|strong=\"H5375\"* her|strong=\"H5375\"* iniquity|strong=\"H5771\"*.’”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*: ‘When|strong=\"H3588\"* either|strong=\"H3588\"* man|strong=\"H1121\"* or|strong=\"H1121\"* woman shall|strong=\"H3068\"* make|strong=\"H5087\"* a|strong=\"H3068\"* special|strong=\"H6381\"* vow|strong=\"H5088\"*, the|strong=\"H3588\"* vow|strong=\"H5088\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"*, to|strong=\"H1696\"* separate|strong=\"H5144\"* himself|strong=\"H3068\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H3605\"* shall|strong=\"H3808\"* separate|strong=\"H5144\"* himself|strong=\"H8354\"* from|strong=\"H5144\"* wine|strong=\"H3196\"* and|strong=\"H8354\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*. He|strong=\"H3605\"* shall|strong=\"H3808\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* vinegar|strong=\"H2558\"* of|strong=\"H3605\"* wine|strong=\"H3196\"*, or|strong=\"H3808\"* vinegar|strong=\"H2558\"* of|strong=\"H3605\"* fermented drink|strong=\"H8354\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* he|strong=\"H3605\"* drink|strong=\"H8354\"* any|strong=\"H3605\"* juice|strong=\"H4952\"* of|strong=\"H3605\"* grapes|strong=\"H6025\"*, nor|strong=\"H3808\"* eat fresh|strong=\"H3892\"* grapes|strong=\"H6025\"* or|strong=\"H3808\"* dried|strong=\"H3002\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* separation|strong=\"H5145\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* eat nothing|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3117\"* made|strong=\"H6213\"* of|strong=\"H3117\"* the|strong=\"H3605\"* grapevine, from|strong=\"H3117\"* the|strong=\"H3605\"* seeds|strong=\"H2785\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* skins." + }, + { + "verseNum": 5, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* vow|strong=\"H5088\"* of|strong=\"H3068\"* separation|strong=\"H5145\"* no|strong=\"H3808\"* razor|strong=\"H8593\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* in|strong=\"H5921\"* which|strong=\"H3068\"* he|strong=\"H3117\"* separates|strong=\"H5144\"* himself|strong=\"H1431\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*. He|strong=\"H3117\"* shall|strong=\"H3068\"* let|strong=\"H3808\"* the|strong=\"H3605\"* locks|strong=\"H6545\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hair|strong=\"H8181\"* of|strong=\"H3068\"* his|strong=\"H3605\"* head|strong=\"H7218\"* grow|strong=\"H1431\"* long|strong=\"H5704\"*." + }, + { + "verseNum": 6, + "text": "“‘All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* separates|strong=\"H5144\"* himself|strong=\"H5315\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* near|strong=\"H5921\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* body|strong=\"H5315\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H2930\"* himself|strong=\"H2930\"* unclean|strong=\"H2930\"* for|strong=\"H3588\"* his|strong=\"H5921\"* father, or|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H5921\"* mother, for|strong=\"H3588\"* his|strong=\"H5921\"* brother, or|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H5921\"* sister, when|strong=\"H3588\"* they|strong=\"H3588\"* die|strong=\"H4194\"*, because|strong=\"H3588\"* his|strong=\"H5921\"* separation|strong=\"H5145\"* to|strong=\"H5921\"* God|strong=\"H3808\"*+ 6:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* separation|strong=\"H5145\"* he|strong=\"H1931\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘If|strong=\"H3588\"* any|strong=\"H3588\"* man|strong=\"H4191\"* dies|strong=\"H4191\"* very|strong=\"H6621\"* suddenly|strong=\"H6597\"* beside|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* he|strong=\"H3588\"* defiles|strong=\"H2930\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3117\"* his|strong=\"H5921\"* separation|strong=\"H5145\"*, then|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* his|strong=\"H5921\"* head|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H5921\"* cleansing|strong=\"H2893\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* shave|strong=\"H1548\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3548\"* bring two|strong=\"H8147\"* turtledoves|strong=\"H8449\"* or|strong=\"H3117\"* two|strong=\"H8147\"* young|strong=\"H1121\"* pigeons|strong=\"H3123\"* to|strong=\"H3117\"* the|strong=\"H3117\"* priest|strong=\"H3548\"*, to|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* one|strong=\"H1931\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3117\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, because|strong=\"H5921\"* he|strong=\"H1931\"* sinned|strong=\"H2398\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H5315\"*, and|strong=\"H3117\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* his|strong=\"H5921\"* head|strong=\"H7218\"* holy|strong=\"H6942\"* that|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* shall|strong=\"H3068\"* separate|strong=\"H5144\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* bring|strong=\"H5307\"* a|strong=\"H3068\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* former|strong=\"H7223\"* days|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* void|strong=\"H5307\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* separation|strong=\"H5145\"* was|strong=\"H3068\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 13, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3117\"* the|strong=\"H3117\"* law|strong=\"H8451\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Nazirite|strong=\"H5139\"*: when|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H4390\"* separation|strong=\"H5145\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* brought to|strong=\"H3117\"* the|strong=\"H3117\"* door|strong=\"H6607\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Tent of|strong=\"H3117\"* Meeting|strong=\"H4150\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* male|strong=\"H3532\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* ewe|strong=\"H3535\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*," + }, + { + "verseNum": 15, + "text": "a|strong=\"H3068\"* basket|strong=\"H5536\"* of|strong=\"H4503\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, cakes|strong=\"H2471\"* of|strong=\"H4503\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"* anointed|strong=\"H4886\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* with|strong=\"H1101\"* their|strong=\"H4886\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H8081\"* their|strong=\"H4886\"* drink|strong=\"H5262\"* offerings|strong=\"H4503\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* present|strong=\"H7126\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* ram for|strong=\"H5921\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H5921\"* basket|strong=\"H5536\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* offer|strong=\"H6213\"* also|strong=\"H3068\"* its|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* Nazirite|strong=\"H5139\"* shall|strong=\"H8478\"* shave|strong=\"H1548\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H5414\"* separation|strong=\"H5145\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Tent of|strong=\"H7218\"* Meeting|strong=\"H4150\"*, take|strong=\"H3947\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H7218\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* his|strong=\"H5414\"* separation|strong=\"H5145\"*, and|strong=\"H7218\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fire which|strong=\"H4150\"* is|strong=\"H7218\"* under|strong=\"H8478\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* of|strong=\"H7218\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H5921\"* boiled|strong=\"H1311\"* shoulder|strong=\"H2220\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ram, one|strong=\"H4480\"* unleavened|strong=\"H4682\"* cake|strong=\"H2471\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* basket|strong=\"H5536\"*, and|strong=\"H3548\"* one|strong=\"H4480\"* unleavened|strong=\"H4682\"* wafer|strong=\"H7550\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3709\"* of|strong=\"H4480\"* the|strong=\"H5921\"* Nazirite|strong=\"H5139\"* after|strong=\"H4480\"* he|strong=\"H5414\"* has|strong=\"H3548\"* shaved|strong=\"H1548\"* the|strong=\"H5921\"* head of|strong=\"H4480\"* his|strong=\"H5414\"* separation|strong=\"H5145\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3068\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wave|strong=\"H8573\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* are|strong=\"H3068\"* holy|strong=\"H6944\"* for|strong=\"H5921\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, together|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H6440\"* breast|strong=\"H2373\"* that|strong=\"H1931\"* is|strong=\"H3068\"* waved|strong=\"H5130\"* and|strong=\"H3068\"* the|strong=\"H6440\"* thigh|strong=\"H7785\"* that|strong=\"H1931\"* is|strong=\"H3068\"* offered|strong=\"H8641\"*. After|strong=\"H5921\"* that|strong=\"H1931\"* the|strong=\"H6440\"* Nazirite|strong=\"H5139\"* may|strong=\"H3068\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 21, + "text": "“‘This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Nazirite|strong=\"H5139\"* who|strong=\"H3068\"* vows|strong=\"H5088\"* and|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* offering|strong=\"H7133\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3651\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* afford|strong=\"H3027\"*. According|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* vow|strong=\"H5088\"* which|strong=\"H3068\"* he|strong=\"H3651\"* vows|strong=\"H5088\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* must do|strong=\"H6213\"* after|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* his|strong=\"H3068\"* separation|strong=\"H5145\"*.’”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 23, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron and|strong=\"H1121\"* to|strong=\"H1696\"* his|strong=\"H1288\"* sons|strong=\"H1121\"*, saying|strong=\"H1696\"*, ‘This|strong=\"H3541\"* is|strong=\"H3478\"* how you|strong=\"H1288\"* shall|strong=\"H1121\"* bless|strong=\"H1288\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’ You|strong=\"H1288\"* shall|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "‘Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H1288\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* you|strong=\"H1288\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* make|strong=\"H2603\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* shine on|strong=\"H3068\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "“So|strong=\"H7760\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* put|strong=\"H7760\"* my|strong=\"H7760\"* name|strong=\"H8034\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H3478\"* bless|strong=\"H1288\"* them|strong=\"H5921\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* setting|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"*, and|strong=\"H6965\"* had|strong=\"H1961\"* anointed|strong=\"H4886\"* it|strong=\"H1961\"* and|strong=\"H6965\"* sanctified|strong=\"H6942\"* it|strong=\"H1961\"* with|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H6965\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* with|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H6965\"* had|strong=\"H1961\"* anointed|strong=\"H4886\"* and|strong=\"H6965\"* sanctified|strong=\"H6942\"* them|strong=\"H3615\"*;" + }, + { + "verseNum": 2, + "text": "the|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"*, gave|strong=\"H6485\"* offerings|strong=\"H3478\"*. These|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H1004\"* the|strong=\"H5921\"* tribes|strong=\"H4294\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* they|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* over|strong=\"H5921\"* those|strong=\"H1992\"* who|strong=\"H3478\"* were|strong=\"H3478\"* counted|strong=\"H6485\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* they|strong=\"H3068\"* brought|strong=\"H7126\"* their|strong=\"H3068\"* offering|strong=\"H7133\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, six|strong=\"H8337\"* covered|strong=\"H6632\"* wagons|strong=\"H5699\"* and|strong=\"H3068\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*; a|strong=\"H3068\"* wagon|strong=\"H5699\"* for|strong=\"H5921\"* every|strong=\"H3068\"* two|strong=\"H8147\"* of|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* each|strong=\"H8147\"* one|strong=\"H8147\"* an|strong=\"H7126\"* ox|strong=\"H7794\"*. They|strong=\"H3068\"* presented|strong=\"H7126\"* them|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H6440\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 5, + "text": "“Accept|strong=\"H3947\"* these|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H5414\"*, that|strong=\"H5414\"* they|strong=\"H6310\"* may|strong=\"H1961\"* be|strong=\"H1961\"* used|strong=\"H1961\"* in|strong=\"H5414\"* doing the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H6310\"* the|strong=\"H5414\"* Tent of|strong=\"H6310\"* Meeting|strong=\"H4150\"*; and|strong=\"H6310\"* you|strong=\"H5414\"* shall|strong=\"H3881\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, to|strong=\"H1961\"* every|strong=\"H3947\"* man|strong=\"H5647\"* according|strong=\"H6310\"* to|strong=\"H1961\"* his|strong=\"H5414\"* service|strong=\"H5656\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H5414\"* wagons|strong=\"H5699\"* and|strong=\"H4872\"* the|strong=\"H5414\"* oxen|strong=\"H1241\"*, and|strong=\"H4872\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* two|strong=\"H8147\"* wagons|strong=\"H5699\"* and|strong=\"H1121\"* four oxen|strong=\"H1241\"* to|strong=\"H5414\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* their|strong=\"H5414\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* four wagons|strong=\"H5699\"* and|strong=\"H1121\"* eight|strong=\"H8083\"* oxen|strong=\"H1241\"* to|strong=\"H5414\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* their|strong=\"H5414\"* service|strong=\"H5656\"*, under|strong=\"H3027\"* the|strong=\"H5414\"* direction|strong=\"H3027\"* of|strong=\"H1121\"* Ithamar the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5414\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* none|strong=\"H3808\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"* belonged to|strong=\"H5921\"* them|strong=\"H5414\"*; they|strong=\"H3588\"* carried|strong=\"H5375\"* it|strong=\"H5414\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulders|strong=\"H3802\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* princes|strong=\"H5387\"* gave offerings|strong=\"H7133\"* for|strong=\"H6440\"* the|strong=\"H6440\"* dedication|strong=\"H2598\"* of|strong=\"H3117\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* in|strong=\"H3117\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* it|strong=\"H7126\"* was|strong=\"H3117\"* anointed|strong=\"H4886\"*. The|strong=\"H6440\"* princes|strong=\"H5387\"* gave their|strong=\"H6440\"* offerings|strong=\"H7133\"* before|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “They|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* their|strong=\"H3068\"* offering|strong=\"H7133\"*, each|strong=\"H3117\"* prince|strong=\"H5387\"* on|strong=\"H3117\"* his|strong=\"H3068\"* day|strong=\"H3117\"*, for|strong=\"H3068\"* the|strong=\"H3068\"* dedication|strong=\"H2598\"* of|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3117\"* who|strong=\"H1121\"* offered|strong=\"H7126\"* his|strong=\"H7126\"* offering|strong=\"H7133\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"* was|strong=\"H1961\"* Nahshon|strong=\"H5177\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*, of|strong=\"H1121\"* the|strong=\"H3117\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* his|strong=\"H8147\"* offering|strong=\"H4503\"* was|strong=\"H4948\"*:" + }, + { + "verseNum": 14, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 15, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 16, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Nahshon|strong=\"H5177\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*." + }, + { + "verseNum": 18, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* Nethanel|strong=\"H5417\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, gave his|strong=\"H7126\"* offering|strong=\"H7126\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8147\"* offered|strong=\"H7126\"* for|strong=\"H3701\"* his|strong=\"H7126\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 20, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 21, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 22, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"*." + }, + { + "verseNum": 24, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"* Eliab the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*," + }, + { + "verseNum": 25, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 26, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 27, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 28, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Eliab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"*." + }, + { + "verseNum": 30, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* Elizur the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*," + }, + { + "verseNum": 31, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 32, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 33, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 34, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Elizur the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"*." + }, + { + "verseNum": 36, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"* Shelumiel|strong=\"H8017\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*," + }, + { + "verseNum": 37, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 38, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 39, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 40, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*: this|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Shelumiel|strong=\"H8017\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"*." + }, + { + "verseNum": 42, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*, Eliasaph the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*," + }, + { + "verseNum": 43, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 44, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 45, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 46, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 47, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Eliasaph the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"*." + }, + { + "verseNum": 48, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* Elishama the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim," + }, + { + "verseNum": 49, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 50, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 51, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 52, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 53, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Elishama the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 54, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* Gamaliel|strong=\"H1583\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*," + }, + { + "verseNum": 55, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 56, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 57, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 58, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 59, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Gamaliel|strong=\"H1583\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"*." + }, + { + "verseNum": 60, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* ninth|strong=\"H8671\"* day|strong=\"H3117\"* Abidan the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 61, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 62, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 63, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 64, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 65, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Abidan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"*." + }, + { + "verseNum": 66, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* tenth|strong=\"H6224\"* day|strong=\"H3117\"* Ahiezer the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*," + }, + { + "verseNum": 67, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 68, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 69, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 70, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 71, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Ahiezer the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"*." + }, + { + "verseNum": 72, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* eleventh|strong=\"H6249\"* day|strong=\"H3117\"* Pagiel|strong=\"H6295\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher," + }, + { + "verseNum": 73, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 74, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 75, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 76, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 77, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Pagiel|strong=\"H6295\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"*." + }, + { + "verseNum": 78, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* twelfth|strong=\"H8147\"* day|strong=\"H3117\"* Ahira the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*," + }, + { + "verseNum": 79, + "text": "gave|strong=\"H1101\"* his|strong=\"H8147\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 80, + "text": "one golden|strong=\"H2091\"* ladle of|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H7004\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 81, + "text": "one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*," + }, + { + "verseNum": 82, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*;" + }, + { + "verseNum": 83, + "text": "and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1121\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, two|strong=\"H8147\"* head of|strong=\"H1121\"* cattle|strong=\"H1241\"*, five|strong=\"H2568\"* rams|strong=\"H6260\"*, five|strong=\"H2568\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* five|strong=\"H2568\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2088\"* was|strong=\"H1121\"* the|strong=\"H1121\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Ahira the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"*." + }, + { + "verseNum": 84, + "text": "This|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3117\"* dedication|strong=\"H2598\"* offering of|strong=\"H3117\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* when|strong=\"H3117\"* it|strong=\"H2063\"* was|strong=\"H3478\"* anointed|strong=\"H4886\"*, by|strong=\"H3117\"* the|strong=\"H3117\"* princes|strong=\"H5387\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*: twelve|strong=\"H8147\"* silver|strong=\"H3701\"* platters|strong=\"H7086\"*, twelve|strong=\"H8147\"* silver|strong=\"H3701\"* bowls|strong=\"H4219\"*, twelve|strong=\"H8147\"* golden|strong=\"H2091\"* ladles|strong=\"H3709\"*;" + }, + { + "verseNum": 85, + "text": "each|strong=\"H3605\"* silver|strong=\"H3701\"* platter|strong=\"H7086\"* weighing one|strong=\"H3605\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* shekels|strong=\"H8255\"*, and|strong=\"H3967\"* each|strong=\"H3605\"* bowl|strong=\"H4219\"* seventy|strong=\"H7657\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* of|strong=\"H3627\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* two|strong=\"H3967\"* thousand four hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*, according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*;" + }, + { + "verseNum": 86, + "text": "the|strong=\"H3605\"* twelve|strong=\"H8147\"* golden|strong=\"H2091\"* ladles|strong=\"H3709\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* incense|strong=\"H7004\"*, weighing|strong=\"H4392\"* ten|strong=\"H6235\"* shekels|strong=\"H8255\"* apiece|strong=\"H6235\"*, according to|strong=\"H6242\"* the|strong=\"H3605\"* shekel|strong=\"H8255\"* of|strong=\"H4392\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H4392\"* the|strong=\"H3605\"* ladles|strong=\"H3709\"* weighed one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*;" + }, + { + "verseNum": 87, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"* for|strong=\"H1121\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* twelve|strong=\"H8147\"* bulls|strong=\"H6499\"*, the|strong=\"H3605\"* rams twelve|strong=\"H8147\"*, the|strong=\"H3605\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* twelve|strong=\"H8147\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*; and|strong=\"H1121\"* twelve|strong=\"H8147\"* male|strong=\"H3532\"* goats|strong=\"H5795\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*;" + }, + { + "verseNum": 88, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"* for|strong=\"H4196\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*: twenty-four|strong=\"H6242\"* bulls|strong=\"H6499\"*, sixty|strong=\"H8346\"* rams|strong=\"H6260\"*, sixty|strong=\"H8346\"* male|strong=\"H3532\"* goats|strong=\"H6260\"*, and|strong=\"H1121\"* sixty|strong=\"H8346\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. This|strong=\"H2063\"* was|strong=\"H1121\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* offering|strong=\"H8002\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, after|strong=\"H8141\"* it|strong=\"H2063\"* was|strong=\"H1121\"* anointed|strong=\"H4886\"*." + }, + { + "verseNum": 89, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* went|strong=\"H4872\"* into|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H6963\"* Meeting|strong=\"H4150\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, he|strong=\"H8147\"* heard|strong=\"H8085\"* his|strong=\"H8085\"* voice|strong=\"H6963\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* from|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H5921\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"* that|strong=\"H8085\"* was|strong=\"H4872\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H6963\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*, from|strong=\"H5921\"* between|strong=\"H6963\"* the|strong=\"H5921\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"*; and|strong=\"H4872\"* he|strong=\"H8147\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, and|strong=\"H6440\"* tell|strong=\"H1696\"* him|strong=\"H6440\"*, ‘When|strong=\"H1696\"* you|strong=\"H6440\"* light|strong=\"H5216\"* the|strong=\"H6440\"* lamps|strong=\"H5216\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* lamps|strong=\"H5216\"* shall|strong=\"H6440\"* give|strong=\"H1696\"* light|strong=\"H5216\"* in|strong=\"H1696\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stand.’”" + }, + { + "verseNum": 3, + "text": "Aaron did|strong=\"H6213\"* so|strong=\"H3651\"*. He|strong=\"H3651\"* lit its|strong=\"H6213\"* lamps|strong=\"H5216\"* to|strong=\"H3068\"* light|strong=\"H5216\"* the|strong=\"H6440\"* area in|strong=\"H3068\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stand, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* was|strong=\"H3068\"* the|strong=\"H7200\"* workmanship|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H7200\"* lamp stand, beaten|strong=\"H4749\"* work|strong=\"H4639\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*. From|strong=\"H5704\"* its|strong=\"H6213\"* base|strong=\"H3409\"* to|strong=\"H5704\"* its|strong=\"H6213\"* flowers|strong=\"H6525\"*, it|strong=\"H1931\"* was|strong=\"H3068\"* beaten|strong=\"H4749\"* work|strong=\"H4639\"*. He|strong=\"H1931\"* made|strong=\"H6213\"* the|strong=\"H7200\"* lamp stand according to|strong=\"H5704\"* the|strong=\"H7200\"* pattern|strong=\"H4758\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H7200\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Take|strong=\"H3947\"* the|strong=\"H3947\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* cleanse|strong=\"H2891\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* shall|strong=\"H4325\"* do|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* cleanse|strong=\"H2891\"* them|strong=\"H5921\"*: sprinkle|strong=\"H5137\"* the|strong=\"H3605\"* water|strong=\"H4325\"* of|strong=\"H4325\"* cleansing|strong=\"H2891\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, let them|strong=\"H5921\"* shave|strong=\"H8593\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* bodies|strong=\"H1320\"* with|strong=\"H6213\"* a|strong=\"H3068\"* razor|strong=\"H8593\"*, let them|strong=\"H5921\"* wash|strong=\"H3526\"* their|strong=\"H3605\"* clothes, and|strong=\"H6213\"* cleanse|strong=\"H2891\"* themselves|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3947\"* let them|strong=\"H3947\"* take|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* its|strong=\"H3947\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*; and|strong=\"H1121\"* another|strong=\"H8145\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"* shall|strong=\"H1121\"* present|strong=\"H7126\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. You|strong=\"H6440\"* shall|strong=\"H1121\"* assemble|strong=\"H6950\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* present|strong=\"H7126\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1121\"* Aaron shall|strong=\"H3068\"* offer|strong=\"H5130\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* for|strong=\"H6440\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* on|strong=\"H3068\"* the|strong=\"H6440\"* behalf of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* it|strong=\"H6440\"* may|strong=\"H1961\"* be|strong=\"H1961\"* theirs to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“The|strong=\"H5921\"* Levites|strong=\"H3881\"* shall|strong=\"H3068\"* lay|strong=\"H5564\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* bulls|strong=\"H6499\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* the|strong=\"H5921\"* one|strong=\"H6213\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H5921\"* other for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* before|strong=\"H6440\"* Aaron and|strong=\"H1121\"* before|strong=\"H6440\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* offer|strong=\"H5130\"* them|strong=\"H6440\"* as|strong=\"H3068\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Thus|strong=\"H1961\"* you|strong=\"H8432\"* shall|strong=\"H1121\"* separate the|strong=\"H8432\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* mine|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "“After that|strong=\"H3651\"*, the|strong=\"H5647\"* Levites|strong=\"H3881\"* shall|strong=\"H3881\"* go|strong=\"H3881\"* in|strong=\"H3881\"* to|strong=\"H4150\"* do|strong=\"H5647\"* the|strong=\"H5647\"* service|strong=\"H5647\"* of|strong=\"H5647\"* the|strong=\"H5647\"* Tent of|strong=\"H5647\"* Meeting|strong=\"H4150\"*. You|strong=\"H3651\"* shall|strong=\"H3881\"* cleanse|strong=\"H2891\"* them|strong=\"H5130\"*, and|strong=\"H3881\"* offer|strong=\"H5130\"* them|strong=\"H5130\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* wholly|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H3478\"* me|strong=\"H5414\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* open|strong=\"H6363\"* the|strong=\"H3605\"* womb|strong=\"H7358\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H3588\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* them|strong=\"H5414\"* to|strong=\"H3478\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H1060\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* are|strong=\"H3117\"* mine|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H1121\"* and|strong=\"H1121\"* animal. On|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, I|strong=\"H3588\"* sanctified|strong=\"H6942\"* them|strong=\"H5221\"* for|strong=\"H3588\"* myself|strong=\"H6942\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H1121\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* among|strong=\"H8478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* as|strong=\"H1961\"* a|strong=\"H3068\"* gift|strong=\"H5414\"* to|strong=\"H3478\"* Aaron and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* from|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, so|strong=\"H1961\"* that|strong=\"H3478\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* plague|strong=\"H5063\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* come|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H3478\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"*, and|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* Levites|strong=\"H3881\"* purified|strong=\"H2891\"* themselves|strong=\"H2891\"* from|strong=\"H6440\"* sin|strong=\"H2398\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* washed|strong=\"H3526\"* their|strong=\"H3068\"* clothes; and|strong=\"H3068\"* Aaron offered|strong=\"H5130\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* Aaron made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* cleanse|strong=\"H2891\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "After|strong=\"H5921\"* that|strong=\"H3068\"*, the|strong=\"H6440\"* Levites|strong=\"H3881\"* went|strong=\"H4872\"* in|strong=\"H5921\"* to|strong=\"H3068\"* do|strong=\"H6213\"* their|strong=\"H3068\"* service|strong=\"H5656\"* in|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* before|strong=\"H6440\"* Aaron and|strong=\"H1121\"* before|strong=\"H6440\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*: as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H5921\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* did|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“This|strong=\"H2063\"* is|strong=\"H1121\"* what|strong=\"H2063\"* is|strong=\"H1121\"* assigned|strong=\"H5656\"* to|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"*: from|strong=\"H1121\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* they|strong=\"H8141\"* shall|strong=\"H1121\"* go|strong=\"H3881\"* in|strong=\"H8141\"* to|strong=\"H1121\"* wait|strong=\"H6633\"* on|strong=\"H6635\"* the|strong=\"H1121\"* service|strong=\"H5656\"* in|strong=\"H8141\"* the|strong=\"H1121\"* work|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H1121\"* from|strong=\"H7725\"* the|strong=\"H5647\"* age|strong=\"H1121\"* of|strong=\"H1121\"* fifty|strong=\"H2572\"* years|strong=\"H8141\"* they|strong=\"H3808\"* shall|strong=\"H1121\"* retire|strong=\"H7725\"* from|strong=\"H7725\"* doing the|strong=\"H5647\"* work|strong=\"H5656\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* serve|strong=\"H5647\"* no|strong=\"H3808\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 26, + "text": "but|strong=\"H3808\"* shall|strong=\"H3881\"* assist|strong=\"H8334\"* their|strong=\"H5647\"* brothers in|strong=\"H6213\"* the|strong=\"H6213\"* Tent of|strong=\"H6213\"* Meeting|strong=\"H4150\"*, to|strong=\"H6213\"* perform|strong=\"H6213\"* the|strong=\"H6213\"* duty|strong=\"H4931\"*, and|strong=\"H6213\"* shall|strong=\"H3881\"* perform|strong=\"H6213\"* no|strong=\"H3808\"* service|strong=\"H5656\"*. This|strong=\"H6213\"* is|strong=\"H6213\"* how|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H3881\"* have|strong=\"H3808\"* the|strong=\"H6213\"* Levites|strong=\"H3881\"* do|strong=\"H6213\"* their|strong=\"H5647\"* duties|strong=\"H4931\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Sinai|strong=\"H5514\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* second|strong=\"H8145\"* year|strong=\"H8141\"* after|strong=\"H3318\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Let the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* in|strong=\"H3478\"* its|strong=\"H6213\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* this|strong=\"H2088\"* month|strong=\"H2320\"*, at|strong=\"H2320\"* evening|strong=\"H6153\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H6213\"* its|strong=\"H3605\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* statutes|strong=\"H2708\"* and|strong=\"H3117\"* according|strong=\"H4941\"* to|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H4941\"*.”" + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* they|strong=\"H6213\"* should|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* in|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* month|strong=\"H2320\"* at|strong=\"H3478\"* evening|strong=\"H6153\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*. According to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* certain men|strong=\"H6213\"* who|strong=\"H1931\"* were|strong=\"H1961\"* unclean|strong=\"H2931\"* because|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H6440\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* of|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H5315\"*, so|strong=\"H6213\"* that|strong=\"H3117\"* they|strong=\"H3117\"* could|strong=\"H3201\"* not|strong=\"H3808\"* keep|strong=\"H6213\"* the|strong=\"H6440\"* Passover|strong=\"H6453\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H4872\"* they|strong=\"H3117\"* came|strong=\"H1961\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Those|strong=\"H1992\"* men|strong=\"H1121\"* said to|strong=\"H3478\"* him|strong=\"H5315\"*, “We|strong=\"H5315\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* because|strong=\"H1115\"* of|strong=\"H1121\"* the|strong=\"H8432\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"*. Why|strong=\"H4100\"* are|strong=\"H1992\"* we|strong=\"H3068\"* kept back|strong=\"H1639\"*, that|strong=\"H5315\"* we|strong=\"H3068\"* may|strong=\"H3068\"* not|strong=\"H1115\"* offer|strong=\"H7126\"* the|strong=\"H8432\"* offering|strong=\"H7133\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* its appointed|strong=\"H4150\"* season|strong=\"H4150\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* answered|strong=\"H8085\"* them|strong=\"H5975\"*, “Wait|strong=\"H5975\"*, that|strong=\"H8085\"* I|strong=\"H6680\"* may|strong=\"H3068\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* command|strong=\"H6680\"* concerning|strong=\"H3068\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Say|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘If|strong=\"H3588\"* any|strong=\"H6213\"* man|strong=\"H1121\"* of|strong=\"H1121\"* you|strong=\"H3588\"* or|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* generations|strong=\"H1755\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"* by|strong=\"H3068\"* reason of|strong=\"H1121\"* a|strong=\"H3068\"* dead|strong=\"H5315\"* body|strong=\"H5315\"*, or|strong=\"H1121\"* is|strong=\"H3068\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"* far|strong=\"H7350\"* away|strong=\"H1870\"*, he|strong=\"H3588\"* shall|strong=\"H3068\"* still|strong=\"H3588\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* at|strong=\"H5921\"* evening|strong=\"H6153\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* it|strong=\"H5921\"*; they|strong=\"H3117\"* shall|strong=\"H3117\"* eat it|strong=\"H5921\"* with|strong=\"H6213\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* and|strong=\"H3117\"* bitter|strong=\"H4844\"* herbs|strong=\"H4844\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* leave|strong=\"H7604\"* none|strong=\"H3808\"* of|strong=\"H4480\"* it|strong=\"H6213\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, nor|strong=\"H3808\"* break|strong=\"H7665\"* a|strong=\"H3068\"* bone|strong=\"H6106\"* of|strong=\"H4480\"* it|strong=\"H6213\"*. According|strong=\"H4480\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statute|strong=\"H2708\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* keep|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* who|strong=\"H1931\"* is|strong=\"H3068\"* clean|strong=\"H2889\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, and|strong=\"H3068\"* fails to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* his|strong=\"H5375\"* people|strong=\"H5971\"*. Because|strong=\"H3588\"* he|strong=\"H1931\"* didn’t offer|strong=\"H7126\"* the|strong=\"H3588\"* offering|strong=\"H7133\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* its|strong=\"H6213\"* appointed|strong=\"H4150\"* season|strong=\"H4150\"*, that|strong=\"H3588\"* man|strong=\"H5315\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* sin|strong=\"H2399\"*." + }, + { + "verseNum": 14, + "text": "“‘If|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* lives|strong=\"H1481\"* among you|strong=\"H3588\"* and|strong=\"H3068\"* desires to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3588\"* statute|strong=\"H2708\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"*, and|strong=\"H3068\"* according|strong=\"H4941\"* to|strong=\"H3068\"* its|strong=\"H6213\"* ordinance|strong=\"H4941\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* one|strong=\"H1961\"* statute|strong=\"H2708\"*, both for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"* and|strong=\"H3068\"* for|strong=\"H3588\"* him|strong=\"H6213\"* who|strong=\"H3068\"* is|strong=\"H3068\"* born in|strong=\"H3068\"* the|strong=\"H3588\"* land.’”" + }, + { + "verseNum": 15, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* was|strong=\"H1961\"* raised|strong=\"H6965\"* up|strong=\"H6965\"*, the|strong=\"H5921\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, even|strong=\"H6153\"* the|strong=\"H5921\"* Tent of|strong=\"H3117\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*. At|strong=\"H5921\"* evening|strong=\"H6153\"* it|strong=\"H5921\"* was|strong=\"H1961\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, as|strong=\"H5704\"* it|strong=\"H5921\"* were|strong=\"H1961\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H3117\"* fire, until|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3651\"* it|strong=\"H3651\"* was|strong=\"H1961\"* continually|strong=\"H8548\"*. The|strong=\"H3680\"* cloud|strong=\"H6051\"* covered|strong=\"H3680\"* it|strong=\"H3651\"*, and|strong=\"H3915\"* the|strong=\"H3680\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* fire by|strong=\"H6051\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 17, + "text": "Whenever|strong=\"H6310\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5265\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent|strong=\"H2583\"*, then|strong=\"H3651\"* after|strong=\"H5921\"* that|strong=\"H3651\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*; and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* remained|strong=\"H2583\"*, there|strong=\"H8033\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H2583\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* at|strong=\"H2583\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* encamped|strong=\"H2583\"*. As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"* remained|strong=\"H2583\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* they|strong=\"H3117\"* remained|strong=\"H2583\"* encamped|strong=\"H2583\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3117\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, then|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H5921\"*, and|strong=\"H1121\"* didn’t travel." + }, + { + "verseNum": 20, + "text": "Sometimes|strong=\"H3426\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H3068\"* a|strong=\"H3068\"* few|strong=\"H4557\"* days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*; then|strong=\"H1961\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* remained|strong=\"H1961\"* encamped|strong=\"H2583\"*, and|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3117\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 21, + "text": "Sometimes|strong=\"H3426\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* from|strong=\"H5265\"* evening|strong=\"H6153\"* until|strong=\"H5704\"* morning|strong=\"H1242\"*; and|strong=\"H3119\"* when|strong=\"H1961\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5927\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*, they|strong=\"H5704\"* traveled|strong=\"H5265\"*; or|strong=\"H5704\"* by|strong=\"H6051\"* day|strong=\"H3119\"* and|strong=\"H3119\"* by|strong=\"H6051\"* night|strong=\"H3915\"*, when|strong=\"H1961\"* the|strong=\"H5704\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H5704\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 22, + "text": "Whether it|strong=\"H5921\"* was|strong=\"H3478\"* two|strong=\"H3808\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* month|strong=\"H2320\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* year|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"*, remaining|strong=\"H7931\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* remained|strong=\"H2583\"* encamped|strong=\"H2583\"*, and|strong=\"H1121\"* didn’t travel; but|strong=\"H3808\"* when|strong=\"H3117\"* it|strong=\"H5921\"* was|strong=\"H3478\"* taken|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H3117\"* traveled|strong=\"H5265\"*." + }, + { + "verseNum": 23, + "text": "At|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* encamped|strong=\"H2583\"*, and|strong=\"H4872\"* at|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* they|strong=\"H3068\"* traveled|strong=\"H5265\"*. They|strong=\"H3068\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s command|strong=\"H6310\"*, at|strong=\"H2583\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Make|strong=\"H6213\"* two|strong=\"H8147\"* trumpets|strong=\"H2689\"* of|strong=\"H4264\"* silver|strong=\"H3701\"*. You|strong=\"H6213\"* shall|strong=\"H5712\"* make|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H4264\"* beaten|strong=\"H4749\"* work|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H5712\"* use|strong=\"H1961\"* them|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* calling|strong=\"H4744\"* of|strong=\"H4264\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* and|strong=\"H3701\"* for|strong=\"H6213\"* the|strong=\"H6213\"* journeying|strong=\"H4550\"* of|strong=\"H4264\"* the|strong=\"H6213\"* camps|strong=\"H4264\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H8628\"* they|strong=\"H3605\"* blow|strong=\"H8628\"* them, all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H5712\"* gather|strong=\"H3259\"* themselves|strong=\"H6607\"* to|strong=\"H4150\"* you|strong=\"H3605\"* at|strong=\"H6607\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H5712\"* the|strong=\"H3605\"* Tent of|strong=\"H5712\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 4, + "text": "If they|strong=\"H3478\"* blow|strong=\"H8628\"* just one, then|strong=\"H7218\"* the|strong=\"H8628\"* princes|strong=\"H5387\"*, the|strong=\"H8628\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H8628\"* thousands of|strong=\"H7218\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* gather|strong=\"H3259\"* themselves|strong=\"H7218\"* to|strong=\"H3478\"* you|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H5265\"* you blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"*, the|strong=\"H8628\"* camps|strong=\"H4264\"* that|strong=\"H4264\"* lie|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H8628\"* east|strong=\"H6924\"* side|strong=\"H6924\"* shall|strong=\"H6924\"* go|strong=\"H5265\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H5265\"* you|strong=\"H8145\"* blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"* the|strong=\"H8628\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, the|strong=\"H8628\"* camps|strong=\"H4264\"* that|strong=\"H4264\"* lie|strong=\"H2583\"* on|strong=\"H2583\"* the|strong=\"H8628\"* south|strong=\"H8486\"* side|strong=\"H8486\"* shall|strong=\"H8486\"* go|strong=\"H5265\"* forward|strong=\"H5265\"*. They shall|strong=\"H8486\"* blow|strong=\"H8628\"* an|strong=\"H8628\"* alarm|strong=\"H8643\"* for|strong=\"H4264\"* their|strong=\"H5265\"* journeys|strong=\"H4550\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* when|strong=\"H8628\"* the|strong=\"H8628\"* assembly|strong=\"H6951\"* is|strong=\"H8628\"* to|strong=\"H3808\"* be|strong=\"H3808\"* gathered|strong=\"H6950\"* together|strong=\"H6950\"*, you|strong=\"H3808\"* shall|strong=\"H3808\"* blow|strong=\"H8628\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sound|strong=\"H7321\"* an|strong=\"H8628\"* alarm|strong=\"H7321\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H1961\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* blow|strong=\"H8628\"* the|strong=\"H1961\"* trumpets|strong=\"H2689\"*. This|strong=\"H2708\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5769\"* for|strong=\"H2708\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H1961\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* war|strong=\"H4421\"* in|strong=\"H5921\"* your|strong=\"H3068\"* land|strong=\"H6440\"* against|strong=\"H5921\"* the|strong=\"H6440\"* adversary|strong=\"H6862\"* who|strong=\"H3068\"* oppresses you|strong=\"H3588\"*, then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sound|strong=\"H7321\"* an|strong=\"H3588\"* alarm|strong=\"H7321\"* with|strong=\"H3068\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* remembered|strong=\"H2142\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"* from|strong=\"H6440\"* your|strong=\"H3068\"* enemies|strong=\"H6862\"*." + }, + { + "verseNum": 10, + "text": "“Also|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gladness|strong=\"H8057\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* your|strong=\"H3068\"* set|strong=\"H4150\"* feasts|strong=\"H4150\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* beginnings|strong=\"H7218\"* of|strong=\"H3068\"* your|strong=\"H3068\"* months|strong=\"H2320\"*, you|strong=\"H6440\"* shall|strong=\"H3068\"* blow|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"* over|strong=\"H5921\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H6440\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* your|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H6440\"* for|strong=\"H5921\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* before|strong=\"H6440\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3117\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 11, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* twentieth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, the|strong=\"H5921\"* cloud|strong=\"H6051\"* was|strong=\"H1961\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* tabernacle|strong=\"H4908\"* of|strong=\"H8141\"* the|strong=\"H5921\"* covenant." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H5265\"* on|strong=\"H7931\"* their|strong=\"H5265\"* journeys|strong=\"H4550\"* out|strong=\"H5265\"* of|strong=\"H1121\"* the|strong=\"H1121\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* cloud|strong=\"H6051\"* stayed|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1121\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* first|strong=\"H7223\"* went|strong=\"H4872\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 14, + "text": "First|strong=\"H7223\"*, the|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* went|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Nahshon|strong=\"H5177\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"* was|strong=\"H3063\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 15, + "text": "Nethanel|strong=\"H5417\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuar|strong=\"H6686\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*." + }, + { + "verseNum": 16, + "text": "Eliab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Helon|strong=\"H2497\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5375\"* tabernacle|strong=\"H4908\"* was|strong=\"H1121\"* taken|strong=\"H5375\"* down|strong=\"H3381\"*; and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* and|strong=\"H1121\"* the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, who|strong=\"H1121\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* tabernacle|strong=\"H4908\"*, went|strong=\"H3381\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* went|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Elizur the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shedeur|strong=\"H7707\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "Shelumiel|strong=\"H8017\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zurishaddai|strong=\"H6701\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*." + }, + { + "verseNum": 20, + "text": "Eliasaph the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Deuel|strong=\"H1845\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5375\"* Kohathites|strong=\"H6956\"* set|strong=\"H5265\"* forward|strong=\"H5265\"*, bearing|strong=\"H5375\"* the|strong=\"H5375\"* sanctuary|strong=\"H4720\"*. The|strong=\"H5375\"* others set|strong=\"H5265\"* up|strong=\"H6965\"* the|strong=\"H5375\"* tabernacle|strong=\"H4908\"* before|strong=\"H5704\"* they|strong=\"H5704\"* arrived." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim set|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* armies|strong=\"H6635\"*. Elishama the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H5921\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 23, + "text": "Gamaliel|strong=\"H1583\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedahzur|strong=\"H6301\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 24, + "text": "Abidan the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gideoni|strong=\"H1441\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* standard|strong=\"H1714\"* of|strong=\"H1121\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, which|strong=\"H6635\"* was|strong=\"H1121\"* the|strong=\"H3605\"* rear guard of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* camps|strong=\"H4264\"*, set|strong=\"H5265\"* forward|strong=\"H5265\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H3605\"* armies|strong=\"H6635\"*. Ahiezer the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammishaddai|strong=\"H5996\"* was|strong=\"H1121\"* over|strong=\"H5921\"* his|strong=\"H3605\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 26, + "text": "Pagiel|strong=\"H6295\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ochran|strong=\"H5918\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher." + }, + { + "verseNum": 27, + "text": "Ahira the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Enan|strong=\"H5881\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 28, + "text": "Thus were|strong=\"H3478\"* the|strong=\"H1121\"* travels of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H5265\"* armies|strong=\"H6635\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H5265\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Hobab|strong=\"H2246\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"* the|strong=\"H5921\"* Midianite|strong=\"H4084\"*, Moses|strong=\"H4872\"*’ father-in-law|strong=\"H2859\"*, “We|strong=\"H3588\"* are|strong=\"H1121\"* journeying|strong=\"H5265\"* to|strong=\"H1696\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H1121\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*.’ Come|strong=\"H3212\"* with|strong=\"H3068\"* us|strong=\"H5414\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* will|strong=\"H3068\"* treat|strong=\"H3190\"* you|strong=\"H3588\"* well|strong=\"H3190\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3588\"* said to|strong=\"H3212\"* him|strong=\"H3588\"*, “I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H3212\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3808\"* depart|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3588\"* own land, and|strong=\"H3212\"* to|strong=\"H3212\"* my|strong=\"H3588\"* relatives|strong=\"H4138\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H3588\"* said|strong=\"H3651\"*, “Don’t leave|strong=\"H5800\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* how|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5869\"* to|strong=\"H1961\"* encamp|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H5869\"* you|strong=\"H3588\"* can|strong=\"H3045\"* be|strong=\"H1961\"* our|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 32, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H3588\"*—yes|strong=\"H3588\"*, it|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*—that|strong=\"H3588\"* whatever|strong=\"H2896\"* good|strong=\"H2896\"* Yahweh|strong=\"H3068\"* does|strong=\"H3190\"* to|strong=\"H3212\"* us|strong=\"H3588\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* the|strong=\"H3588\"* same|strong=\"H1931\"* to|strong=\"H3212\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 33, + "text": "They|strong=\"H3117\"* set|strong=\"H5265\"* forward|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*. The|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* went|strong=\"H5265\"* before|strong=\"H6440\"* them|strong=\"H6440\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"*, to|strong=\"H3068\"* seek|strong=\"H8446\"* out|strong=\"H5265\"* a|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* for|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H5921\"* cloud|strong=\"H6051\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* over|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, when|strong=\"H3068\"* they|strong=\"H3068\"* set|strong=\"H5265\"* forward|strong=\"H5265\"* from|strong=\"H4480\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* ark went|strong=\"H4872\"* forward|strong=\"H5265\"*, Moses|strong=\"H4872\"* said, “Rise|strong=\"H6965\"* up|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H6965\"* let|strong=\"H1961\"* your|strong=\"H3068\"* enemies|strong=\"H8130\"* be|strong=\"H1961\"* scattered|strong=\"H6327\"*! Let|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* you|strong=\"H6440\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* you|strong=\"H6440\"*!”" + }, + { + "verseNum": 36, + "text": "When|strong=\"H7725\"* it|strong=\"H7725\"* rested|strong=\"H5117\"*, he|strong=\"H3068\"* said, “Return|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*, to|strong=\"H7725\"* the|strong=\"H3068\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* the|strong=\"H3068\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* were|strong=\"H1961\"* complaining in|strong=\"H3068\"* the|strong=\"H8085\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, his|strong=\"H3068\"* anger burned|strong=\"H2734\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s fire burned|strong=\"H2734\"* among|strong=\"H5971\"* them|strong=\"H1961\"*, and|strong=\"H3068\"* consumed|strong=\"H1197\"* some|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H8085\"* outskirts|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3068\"* people|strong=\"H5971\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H4872\"* the|strong=\"H3068\"* fire abated." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Taberah|strong=\"H8404\"*,+ 11:3 Taberah means “burning” * because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s fire burned|strong=\"H1197\"* among|strong=\"H8034\"* them|strong=\"H7121\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7725\"* mixed multitude that|strong=\"H3478\"* was|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H7725\"* lusted exceedingly|strong=\"H8378\"*; and|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* wept|strong=\"H1058\"* again|strong=\"H7725\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* will|strong=\"H4310\"* give|strong=\"H7725\"* us|strong=\"H7725\"* meat|strong=\"H1320\"* to|strong=\"H7725\"* eat?" + }, + { + "verseNum": 5, + "text": "We remember|strong=\"H2142\"* the|strong=\"H2142\"* fish|strong=\"H1710\"*, which|strong=\"H2600\"* we|strong=\"H3068\"* ate in|strong=\"H4714\"* Egypt|strong=\"H4714\"* for|strong=\"H4714\"* nothing|strong=\"H2600\"*; the|strong=\"H2142\"* cucumbers|strong=\"H7180\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* melons, and|strong=\"H4714\"* the|strong=\"H2142\"* leeks|strong=\"H2682\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* onions|strong=\"H1211\"*, and|strong=\"H4714\"* the|strong=\"H2142\"* garlic|strong=\"H7762\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H6258\"* now|strong=\"H6258\"* we|strong=\"H3068\"* have|strong=\"H5869\"* lost our|strong=\"H3605\"* appetite|strong=\"H5315\"*. There|strong=\"H3605\"* is|strong=\"H5315\"* nothing|strong=\"H1115\"* at|strong=\"H5869\"* all|strong=\"H3605\"* except|strong=\"H1115\"* this|strong=\"H6258\"* manna|strong=\"H4478\"* to|strong=\"H5315\"* look|strong=\"H5869\"* at|strong=\"H5869\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5869\"* manna|strong=\"H4478\"* was|strong=\"H1931\"* like|strong=\"H5869\"* coriander|strong=\"H1407\"* seed|strong=\"H2233\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* looked|strong=\"H5869\"* like|strong=\"H5869\"* bdellium.+ 11:7 Bdellium is a resin extracted from certain African trees.*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* people|strong=\"H5971\"* went|strong=\"H5971\"* around, gathered|strong=\"H3950\"* it|strong=\"H6213\"*, and|strong=\"H5971\"* ground|strong=\"H2912\"* it|strong=\"H6213\"* in|strong=\"H6213\"* mills|strong=\"H7347\"*, or|strong=\"H6213\"* beat|strong=\"H1743\"* it|strong=\"H6213\"* in|strong=\"H6213\"* mortars, and|strong=\"H5971\"* boiled|strong=\"H1310\"* it|strong=\"H6213\"* in|strong=\"H6213\"* pots, and|strong=\"H5971\"* made|strong=\"H6213\"* cakes|strong=\"H5692\"* of|strong=\"H5971\"* it|strong=\"H6213\"*. Its|strong=\"H6213\"* taste|strong=\"H2940\"* was|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6213\"* taste|strong=\"H2940\"* of|strong=\"H5971\"* fresh|strong=\"H3955\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H5921\"* the|strong=\"H5921\"* dew|strong=\"H2919\"* fell|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, the|strong=\"H5921\"* manna|strong=\"H4478\"* fell|strong=\"H3381\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* people|strong=\"H5971\"* weeping|strong=\"H1058\"* throughout|strong=\"H8085\"* their|strong=\"H3068\"* families|strong=\"H4940\"*, every|strong=\"H4940\"* man at|strong=\"H3068\"* the|strong=\"H8085\"* door|strong=\"H6607\"* of|strong=\"H3068\"* his|strong=\"H3068\"* tent; and|strong=\"H4872\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* greatly|strong=\"H3966\"*; and|strong=\"H4872\"* Moses|strong=\"H4872\"* was|strong=\"H3068\"* displeased|strong=\"H7489\"*." + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3605\"* treated|strong=\"H7489\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* so|strong=\"H3808\"* badly|strong=\"H7489\"*? Why|strong=\"H4100\"* haven’t I|strong=\"H5921\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*, that|strong=\"H5971\"* you|strong=\"H3605\"* lay|strong=\"H7760\"* the|strong=\"H3605\"* burden|strong=\"H4853\"* of|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"* on|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H5971\"* I|strong=\"H3588\"* conceived|strong=\"H2029\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"*? Have|strong=\"H5971\"* I|strong=\"H3588\"* brought|strong=\"H5375\"* them|strong=\"H5921\"* out|strong=\"H5921\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* tell|strong=\"H3605\"* me|strong=\"H5921\"*, ‘Carry|strong=\"H5375\"* them|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H3605\"* bosom|strong=\"H2436\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* nurse|strong=\"H3243\"* carries|strong=\"H5375\"* a|strong=\"H3068\"* nursing|strong=\"H3243\"* infant|strong=\"H3243\"*, to|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H5971\"* you|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* their|strong=\"H3605\"* fathers|strong=\"H3205\"*’?" + }, + { + "verseNum": 13, + "text": "Where|strong=\"H5921\"* could|strong=\"H2088\"* I|strong=\"H3588\"* get meat|strong=\"H1320\"* to|strong=\"H5921\"* give|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* weep|strong=\"H1058\"* before|strong=\"H5921\"* me|strong=\"H5414\"*, saying, ‘Give|strong=\"H5414\"* us|strong=\"H5414\"* meat|strong=\"H1320\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H5971\"* eat.’" + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* am not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"* alone|strong=\"H4480\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2088\"* too|strong=\"H4480\"* heavy|strong=\"H3515\"* for|strong=\"H3588\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H7200\"* you|strong=\"H6213\"* treat|strong=\"H6213\"* me|strong=\"H4994\"* this|strong=\"H6213\"* way, please|strong=\"H4994\"* kill|strong=\"H2026\"* me|strong=\"H4994\"* right|strong=\"H5869\"* now|strong=\"H4994\"*, if|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H7200\"* sight|strong=\"H5869\"*; and|strong=\"H5869\"* don’t let|strong=\"H4994\"* me|strong=\"H4994\"* see|strong=\"H7200\"* my|strong=\"H7200\"* wretchedness|strong=\"H7451\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Gather to|strong=\"H3478\"* me|strong=\"H3947\"* seventy|strong=\"H7657\"* men|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, whom|strong=\"H1992\"* you|strong=\"H3588\"* know|strong=\"H3045\"* to|strong=\"H3478\"* be|strong=\"H3068\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"* and|strong=\"H4872\"* officers|strong=\"H7860\"* over|strong=\"H3068\"* them|strong=\"H1992\"*; and|strong=\"H4872\"* bring|strong=\"H3947\"* them|strong=\"H1992\"* to|strong=\"H3478\"* the|strong=\"H3588\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H3068\"* stand|strong=\"H3320\"* there|strong=\"H8033\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H5971\"* come|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H5971\"* talk|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5921\"* there|strong=\"H8033\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* take|strong=\"H5375\"* of|strong=\"H7307\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* which|strong=\"H5971\"* is|strong=\"H7307\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H5971\"* they|strong=\"H8033\"* shall|strong=\"H5971\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* burden|strong=\"H4853\"* of|strong=\"H7307\"* the|strong=\"H5921\"* people|strong=\"H5971\"* with|strong=\"H5973\"* you|strong=\"H5921\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* don’t bear|strong=\"H5375\"* it|strong=\"H7760\"* yourself|strong=\"H5921\"* alone|strong=\"H4480\"*." + }, + { + "verseNum": 18, + "text": "“Say to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, ‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* in|strong=\"H3068\"* preparation for|strong=\"H3588\"* tomorrow|strong=\"H4279\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* eat meat|strong=\"H1320\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* wept|strong=\"H1058\"* in|strong=\"H3068\"* the|strong=\"H3588\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Who|strong=\"H4310\"* will|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* meat|strong=\"H1320\"* to|strong=\"H3068\"* eat? For|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H3068\"* well|strong=\"H2895\"* with|strong=\"H3068\"* us|strong=\"H5414\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*.” Therefore|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* meat|strong=\"H1320\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* eat." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* eat just one|strong=\"H3808\"* day|strong=\"H3117\"*, or|strong=\"H3808\"* two|strong=\"H3808\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* five|strong=\"H2568\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, or|strong=\"H3808\"* twenty|strong=\"H6242\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"H3588\"* a|strong=\"H3068\"* whole|strong=\"H3117\"* month|strong=\"H2320\"*, until|strong=\"H5704\"* it|strong=\"H3588\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3068\"* your|strong=\"H3068\"* nostrils, and|strong=\"H3068\"* it|strong=\"H3588\"* is|strong=\"H3068\"* loathsome|strong=\"H2214\"* to|strong=\"H5704\"* you|strong=\"H3588\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “Why|strong=\"H4100\"* did|strong=\"H4100\"* we|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*?”’”" + }, + { + "verseNum": 21, + "text": "Moses|strong=\"H4872\"* said, “The|strong=\"H5414\"* people|strong=\"H5971\"*, among|strong=\"H7130\"* whom|strong=\"H5971\"* I|strong=\"H3117\"* am, are|strong=\"H3117\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"* on|strong=\"H3117\"* foot|strong=\"H7273\"*; and|strong=\"H3967\"* you|strong=\"H5414\"* have|strong=\"H5971\"* said, ‘I|strong=\"H3117\"* will|strong=\"H5971\"* give|strong=\"H5414\"* them|strong=\"H5414\"* meat|strong=\"H1320\"*, that|strong=\"H5971\"* they|strong=\"H3117\"* may|strong=\"H5971\"* eat a|strong=\"H3068\"* whole|strong=\"H3117\"* month|strong=\"H2320\"*.’" + }, + { + "verseNum": 22, + "text": "Shall|strong=\"H3220\"* flocks|strong=\"H6629\"* and|strong=\"H6629\"* herds|strong=\"H1241\"* be|strong=\"H1241\"* slaughtered|strong=\"H7819\"* for|strong=\"H3605\"* them|strong=\"H4672\"*, to|strong=\"H3220\"* be|strong=\"H1241\"* sufficient|strong=\"H4672\"* for|strong=\"H3605\"* them|strong=\"H4672\"*? Shall|strong=\"H3220\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* be|strong=\"H1241\"* gathered together|strong=\"H3220\"* for|strong=\"H3605\"* them|strong=\"H4672\"*, to|strong=\"H3220\"* be|strong=\"H1241\"* sufficient|strong=\"H4672\"* for|strong=\"H3605\"* them|strong=\"H4672\"*?”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* grown short|strong=\"H7114\"*? Now|strong=\"H6258\"* you|strong=\"H3808\"* will|strong=\"H3068\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* my|strong=\"H3068\"* word|strong=\"H1697\"* will|strong=\"H3068\"* happen|strong=\"H7136\"* to|strong=\"H3068\"* you|strong=\"H3808\"* or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4872\"* told|strong=\"H1696\"* the|strong=\"H3068\"* people|strong=\"H5971\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*; and|strong=\"H4872\"* he|strong=\"H3068\"* gathered seventy|strong=\"H7657\"* men|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* set|strong=\"H5975\"* them|strong=\"H5975\"* around|strong=\"H5439\"* the|strong=\"H3068\"* Tent." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* took|strong=\"H3381\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* that|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventy|strong=\"H7657\"* elders|strong=\"H2205\"*. When|strong=\"H1961\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* rested|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H5414\"*, they|strong=\"H3068\"* prophesied|strong=\"H5012\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* did|strong=\"H3068\"* so|strong=\"H4480\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* two|strong=\"H8147\"* men|strong=\"H8034\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*. The|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H7307\"* one|strong=\"H3808\"* was|strong=\"H8034\"* Eldad, and|strong=\"H3318\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H7307\"* the|strong=\"H5921\"* other|strong=\"H8145\"* Medad|strong=\"H4312\"*; and|strong=\"H3318\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* rested|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* of|strong=\"H7307\"* those|strong=\"H1992\"* who|strong=\"H1992\"* were|strong=\"H1992\"* written|strong=\"H3789\"*, but|strong=\"H3808\"* had|strong=\"H4264\"* not|strong=\"H3808\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* Tent; and|strong=\"H3318\"* they|strong=\"H1992\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* the|strong=\"H5921\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* ran|strong=\"H7323\"*, and|strong=\"H4872\"* told|strong=\"H5046\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Eldad and|strong=\"H4872\"* Medad|strong=\"H4312\"* are|strong=\"H5288\"* prophesying|strong=\"H5012\"* in|strong=\"H4872\"* the|strong=\"H4872\"* camp|strong=\"H4264\"*!”" + }, + { + "verseNum": 28, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3091\"* servant|strong=\"H8334\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H4872\"* chosen men|strong=\"H1121\"*, answered|strong=\"H6030\"*, “My|strong=\"H3607\"* lord Moses|strong=\"H4872\"*, forbid|strong=\"H3607\"* them|strong=\"H6030\"*!”" + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Are|strong=\"H5971\"* you|strong=\"H3588\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* my|strong=\"H5414\"* sake|strong=\"H5921\"*? I|strong=\"H3588\"* wish|strong=\"H4310\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"* were|strong=\"H5971\"* prophets|strong=\"H5030\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* would|strong=\"H4310\"* put|strong=\"H5414\"* his|strong=\"H3605\"* Spirit|strong=\"H7307\"* on|strong=\"H5921\"* them|strong=\"H5414\"*!”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3478\"* into|strong=\"H4264\"* the|strong=\"H4872\"* camp|strong=\"H4264\"*, he|strong=\"H1931\"* and|strong=\"H4872\"* the|strong=\"H4872\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 31, + "text": "A|strong=\"H3068\"* wind|strong=\"H7307\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* went|strong=\"H5265\"* out|strong=\"H4480\"* and|strong=\"H3068\"* brought|strong=\"H5265\"* quails|strong=\"H7958\"* from|strong=\"H4480\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* let them|strong=\"H5921\"* fall|strong=\"H5203\"* by|strong=\"H5921\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, about|strong=\"H5439\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* on|strong=\"H5921\"* this|strong=\"H3541\"* side|strong=\"H5439\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H3541\"* side|strong=\"H5439\"*, around|strong=\"H5439\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* about|strong=\"H5439\"* two|strong=\"H4480\"* cubits+ 11:31 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* above|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* all|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* of|strong=\"H3117\"* that|strong=\"H5971\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, and|strong=\"H6965\"* gathered|strong=\"H4591\"* the|strong=\"H3605\"* quails|strong=\"H7958\"*. He|strong=\"H1931\"* who|strong=\"H3605\"* gathered|strong=\"H4591\"* least|strong=\"H4591\"* gathered|strong=\"H4591\"* ten|strong=\"H6235\"* homers|strong=\"H2563\"*;+ 11:32 1 homer is about 220 liters or 6 bushels* and|strong=\"H6965\"* they|strong=\"H3117\"* spread|strong=\"H7849\"* them|strong=\"H5439\"* all|strong=\"H3605\"* out|strong=\"H3605\"* for|strong=\"H3117\"* themselves around|strong=\"H5439\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 33, + "text": "While|strong=\"H5750\"* the|strong=\"H5221\"* meat|strong=\"H1320\"* was|strong=\"H3068\"* still|strong=\"H5750\"* between their|strong=\"H3068\"* teeth|strong=\"H8127\"*, before|strong=\"H2962\"* it|strong=\"H5221\"* was|strong=\"H3068\"* chewed|strong=\"H3772\"*, Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H5221\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* plague|strong=\"H4347\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Kibroth Hattaavah,+ 11:34 Kibroth Hattaavah means “graves of lust”* because|strong=\"H3588\"* there|strong=\"H8033\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H1931\"* lusted." + }, + { + "verseNum": 35, + "text": "From|strong=\"H5265\"* Kibroth Hattaavah the|strong=\"H1961\"* people|strong=\"H5971\"* traveled|strong=\"H5265\"* to|strong=\"H1961\"* Hazeroth|strong=\"H2698\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* stayed at|strong=\"H1961\"* Hazeroth|strong=\"H2698\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Miriam|strong=\"H4813\"* and|strong=\"H4872\"* Aaron spoke|strong=\"H1696\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* because|strong=\"H3588\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Cushite|strong=\"H3571\"* woman whom|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4872\"* married|strong=\"H3947\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4872\"* married|strong=\"H3947\"* a|strong=\"H3068\"* Cushite|strong=\"H3571\"* woman." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* said|strong=\"H1696\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* indeed|strong=\"H1571\"* spoken|strong=\"H1696\"* only|strong=\"H7535\"* with|strong=\"H3068\"* Moses|strong=\"H4872\"*? Hasn’t he|strong=\"H3068\"* spoken|strong=\"H1696\"* also|strong=\"H1571\"* with|strong=\"H3068\"* us|strong=\"H8085\"*?” And|strong=\"H4872\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* man|strong=\"H3605\"* Moses|strong=\"H4872\"* was|strong=\"H4872\"* very|strong=\"H3966\"* humble|strong=\"H6035\"*, more|strong=\"H3966\"* than|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke suddenly|strong=\"H6597\"* to|strong=\"H3318\"* Moses|strong=\"H4872\"*, to|strong=\"H3318\"* Aaron, and|strong=\"H4872\"* to|strong=\"H3318\"* Miriam|strong=\"H4813\"*, “You|strong=\"H3318\"* three|strong=\"H7969\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*!”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3318\"* down|strong=\"H3381\"* in|strong=\"H3068\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* at|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Tent, and|strong=\"H3068\"* called|strong=\"H7121\"* Aaron and|strong=\"H3068\"* Miriam|strong=\"H4813\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* both|strong=\"H8147\"* came|strong=\"H3318\"* forward|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Now|strong=\"H4994\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*. If|strong=\"H1961\"* there|strong=\"H1961\"* is|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* among you|strong=\"H3045\"*, I|strong=\"H1697\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* make|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H1696\"* him|strong=\"H8085\"* in|strong=\"H3068\"* a|strong=\"H3068\"* vision|strong=\"H4759\"*. I|strong=\"H1697\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* him|strong=\"H8085\"* in|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* is|strong=\"H1931\"* not|strong=\"H3808\"* so|strong=\"H3651\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* faithful in|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "With|strong=\"H3068\"* him|strong=\"H4872\"*, I|strong=\"H5650\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*, even|strong=\"H3808\"* plainly, and|strong=\"H4872\"* not|strong=\"H3808\"* in|strong=\"H3068\"* riddles|strong=\"H2420\"*; and|strong=\"H4872\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* see|strong=\"H5027\"* Yahweh|strong=\"H3068\"*’s form|strong=\"H8544\"*. Why|strong=\"H4069\"* then|strong=\"H1696\"* were|strong=\"H5650\"* you|strong=\"H3808\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* against|strong=\"H1696\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, against|strong=\"H1696\"* Moses|strong=\"H4872\"*?”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* them|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* cloud|strong=\"H6051\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent; and|strong=\"H6437\"* behold|strong=\"H2009\"*, Miriam|strong=\"H4813\"* was|strong=\"H6051\"* leprous|strong=\"H6879\"*, as|strong=\"H6051\"* white as|strong=\"H6051\"* snow|strong=\"H7950\"*. Aaron looked|strong=\"H6437\"* at|strong=\"H5921\"* Miriam|strong=\"H4813\"*, and|strong=\"H6437\"* behold|strong=\"H2009\"*, she|strong=\"H5921\"* was|strong=\"H6051\"* leprous|strong=\"H6879\"*." + }, + { + "verseNum": 11, + "text": "Aaron said to|strong=\"H5921\"* Moses|strong=\"H4872\"*, “Oh|strong=\"H4994\"*, my|strong=\"H5921\"* lord, please|strong=\"H4994\"* don’t count this|strong=\"H4994\"* sin|strong=\"H2403\"* against|strong=\"H5921\"* us|strong=\"H4994\"*, in|strong=\"H5921\"* which|strong=\"H2403\"* we|strong=\"H3068\"* have|strong=\"H2403\"* done|strong=\"H2398\"* foolishly|strong=\"H2973\"*, and|strong=\"H4872\"* in|strong=\"H5921\"* which|strong=\"H2403\"* we|strong=\"H3068\"* have|strong=\"H2403\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H4994\"* her|strong=\"H3318\"* not|strong=\"H1961\"*, I|strong=\"H7358\"* pray|strong=\"H4994\"*, be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1961\"* dead|strong=\"H4191\"*, of|strong=\"H3318\"* whom the|strong=\"H3318\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* half|strong=\"H2677\"* consumed when|strong=\"H1961\"* he|strong=\"H3318\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* his|strong=\"H1961\"* mother|strong=\"H7358\"*’s womb|strong=\"H7358\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Heal|strong=\"H7495\"* her, God|strong=\"H3068\"*, I|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H4994\"*!”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “If her|strong=\"H5462\"* father had|strong=\"H3068\"* but|strong=\"H3808\"* spit|strong=\"H3417\"* in|strong=\"H3068\"* her|strong=\"H5462\"* face|strong=\"H6440\"*, shouldn’t she|strong=\"H6440\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*? Let|strong=\"H3808\"* her|strong=\"H5462\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H4872\"* after|strong=\"H3117\"* that|strong=\"H3117\"* she|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* brought|strong=\"H4872\"* in|strong=\"H3068\"* again|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "Miriam|strong=\"H4813\"* was|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3117\"* camp|strong=\"H4264\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* didn’t travel until|strong=\"H5704\"* Miriam|strong=\"H4813\"* was|strong=\"H3117\"* brought|strong=\"H5265\"* in|strong=\"H3117\"* again." + }, + { + "verseNum": 16, + "text": "Afterward the|strong=\"H5971\"* people|strong=\"H5971\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hazeroth|strong=\"H2698\"*, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H5971\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Paran|strong=\"H6290\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Send|strong=\"H7971\"* men|strong=\"H1121\"*, that|strong=\"H3605\"* they|strong=\"H3478\"* may|strong=\"H3478\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Of|strong=\"H1121\"* every|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers, you|strong=\"H5414\"* shall|strong=\"H1121\"* send|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H1121\"*, every|strong=\"H3605\"* one|strong=\"H3605\"* a|strong=\"H3068\"* prince|strong=\"H5387\"* among|strong=\"H5387\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H1992\"* from|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"* according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* were|strong=\"H3478\"* men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "These were|strong=\"H1121\"* their names|strong=\"H8034\"*:" + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, Shaphat|strong=\"H8202\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hori|strong=\"H2753\"*." + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* the|strong=\"H3612\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, Igal|strong=\"H3008\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 8, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim, Hoshea|strong=\"H1954\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 9, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Palti|strong=\"H6406\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Raphu|strong=\"H7505\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Gaddiel|strong=\"H1427\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sodi|strong=\"H5476\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Gaddi|strong=\"H1426\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Susi|strong=\"H5485\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, Ammiel|strong=\"H5988\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gemalli|strong=\"H1582\"*." + }, + { + "verseNum": 13, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, Sethur|strong=\"H5639\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, Nahbi|strong=\"H5147\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Vophsi|strong=\"H2058\"*." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, Geuel|strong=\"H1345\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machi|strong=\"H4352\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H7121\"* are|strong=\"H1121\"* the|strong=\"H7121\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H7121\"* men|strong=\"H1121\"* who|strong=\"H1121\"* Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H7121\"* land. Moses|strong=\"H4872\"* called|strong=\"H7121\"* Hoshea|strong=\"H1954\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 17, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H8446\"* out|strong=\"H7971\"* the|strong=\"H7971\"* land of|strong=\"H2022\"* Canaan|strong=\"H3667\"*, and|strong=\"H4872\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* way|strong=\"H7971\"* by|strong=\"H7971\"* the|strong=\"H7971\"* South|strong=\"H5045\"*, and|strong=\"H4872\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7971\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "See|strong=\"H7200\"* the|strong=\"H5921\"* land, what|strong=\"H4100\"* it|strong=\"H1931\"* is|strong=\"H1931\"*; and|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H1931\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, whether|strong=\"H7200\"* they|strong=\"H5921\"* are|strong=\"H5971\"* strong|strong=\"H2389\"* or|strong=\"H7200\"* weak|strong=\"H7504\"*, whether|strong=\"H7200\"* they|strong=\"H5921\"* are|strong=\"H5971\"* few|strong=\"H4592\"* or|strong=\"H7200\"* many|strong=\"H7227\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H5892\"* what|strong=\"H4100\"* the|strong=\"H3427\"* land is|strong=\"H1931\"* that|strong=\"H1931\"* they|strong=\"H2007\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, whether it|strong=\"H1931\"* is|strong=\"H1931\"* good|strong=\"H2896\"* or|strong=\"H2896\"* bad|strong=\"H7451\"*; and|strong=\"H5892\"* what|strong=\"H4100\"* cities|strong=\"H5892\"* they|strong=\"H2007\"* are|strong=\"H4100\"* that|strong=\"H1931\"* they|strong=\"H2007\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, whether in|strong=\"H3427\"* camps|strong=\"H4264\"*, or|strong=\"H2896\"* in|strong=\"H3427\"* strongholds|strong=\"H4013\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3117\"* what|strong=\"H4100\"* the|strong=\"H3947\"* land is|strong=\"H3426\"*, whether it|strong=\"H1931\"* is|strong=\"H3426\"* fertile|strong=\"H8082\"* or|strong=\"H3117\"* poor|strong=\"H7330\"*, whether there|strong=\"H3426\"* is|strong=\"H3426\"* wood|strong=\"H6086\"* therein, or|strong=\"H3117\"* not|strong=\"H3947\"*. Be|strong=\"H3426\"* courageous|strong=\"H2388\"*, and|strong=\"H3117\"* bring|strong=\"H3947\"* some|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H3117\"* the|strong=\"H3947\"* land.” Now|strong=\"H3117\"* the|strong=\"H3947\"* time|strong=\"H3117\"* was|strong=\"H1931\"* the|strong=\"H3947\"* time|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* first-ripe grapes|strong=\"H6025\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5927\"* they|strong=\"H5704\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5927\"* spied|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H5704\"* land from|strong=\"H5927\"* the|strong=\"H5704\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Zin|strong=\"H6790\"* to|strong=\"H5704\"* Rehob|strong=\"H7340\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* entrance of|strong=\"H4057\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H8141\"* the|strong=\"H6440\"* South|strong=\"H5045\"*, and|strong=\"H4714\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Hebron|strong=\"H2275\"*; and|strong=\"H4714\"* Ahiman, Sheshai|strong=\"H8344\"*, and|strong=\"H4714\"* Talmai|strong=\"H8526\"*, the|strong=\"H6440\"* children|strong=\"H3211\"* of|strong=\"H8141\"* Anak|strong=\"H6061\"*, were|strong=\"H4714\"* there|strong=\"H8033\"*. (Now|strong=\"H4714\"* Hebron|strong=\"H2275\"* was|strong=\"H8141\"* built|strong=\"H1129\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* before|strong=\"H6440\"* Zoan|strong=\"H6814\"* in|strong=\"H8141\"* Egypt|strong=\"H4714\"*.)" + }, + { + "verseNum": 23, + "text": "They|strong=\"H8033\"* came|strong=\"H8147\"* to|strong=\"H5704\"* the|strong=\"H5375\"* valley|strong=\"H5158\"* of|strong=\"H4480\"* Eshcol, and|strong=\"H8033\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* from|strong=\"H4480\"* there|strong=\"H8033\"* a|strong=\"H3068\"* branch|strong=\"H2156\"* with|strong=\"H3772\"* one|strong=\"H4480\"* cluster of|strong=\"H4480\"* grapes|strong=\"H6025\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* bore|strong=\"H5375\"* it|strong=\"H5375\"* on|strong=\"H5375\"* a|strong=\"H3068\"* staff|strong=\"H4132\"* between|strong=\"H5704\"* two|strong=\"H8147\"*. They|strong=\"H8033\"* also brought|strong=\"H5375\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5375\"* pomegranates|strong=\"H7416\"* and|strong=\"H8033\"* figs|strong=\"H8384\"*." + }, + { + "verseNum": 24, + "text": "That|strong=\"H1931\"* place|strong=\"H4725\"* was|strong=\"H3478\"* called|strong=\"H7121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* Eshcol, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H5921\"* cluster which|strong=\"H1931\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* from|strong=\"H3772\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3117\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* spying|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H7725\"* land at|strong=\"H3117\"* the|strong=\"H7725\"* end|strong=\"H7093\"* of|strong=\"H3117\"* forty days|strong=\"H3117\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1697\"* went|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H7725\"* Moses|strong=\"H4872\"*, to|strong=\"H7725\"* Aaron, and|strong=\"H1121\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Paran|strong=\"H6290\"*, to|strong=\"H7725\"* Kadesh|strong=\"H6946\"*; and|strong=\"H1121\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* word|strong=\"H1697\"* to|strong=\"H7725\"* them|strong=\"H7725\"* and|strong=\"H1121\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*. They|strong=\"H1697\"* showed|strong=\"H7200\"* them|strong=\"H7725\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1931\"* told|strong=\"H5608\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* said, “We came to|strong=\"H7971\"* the|strong=\"H7971\"* land where|strong=\"H2088\"* you|strong=\"H7971\"* sent|strong=\"H7971\"* us|strong=\"H5608\"*. Surely|strong=\"H1571\"* it|strong=\"H1931\"* flows|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H7971\"* honey|strong=\"H1706\"*, and|strong=\"H7971\"* this|strong=\"H2088\"* is|strong=\"H2088\"* its|strong=\"H6529\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 28, + "text": "However|strong=\"H1571\"*, the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H7200\"* land are|strong=\"H5971\"* strong|strong=\"H5794\"*, and|strong=\"H1419\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* are|strong=\"H5971\"* fortified|strong=\"H1219\"* and|strong=\"H1419\"* very|strong=\"H3966\"* large|strong=\"H1419\"*. Moreover|strong=\"H1571\"*, we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* children|strong=\"H3211\"* of|strong=\"H3427\"* Anak|strong=\"H6061\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 29, + "text": "Amalek|strong=\"H6002\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H3027\"* the|strong=\"H5921\"* South|strong=\"H5045\"*. The|strong=\"H5921\"* Hittite|strong=\"H2850\"*, the|strong=\"H5921\"* Jebusite|strong=\"H2983\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* Amorite dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*. The|strong=\"H5921\"* Canaanite|strong=\"H3669\"* dwells|strong=\"H3427\"* by|strong=\"H3027\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H3027\"* along|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 30, + "text": "Caleb|strong=\"H3612\"* stilled|strong=\"H2013\"* the|strong=\"H3588\"* people|strong=\"H5971\"* before|strong=\"H5971\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said, “Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H5927\"* once|strong=\"H5927\"*, and|strong=\"H4872\"* possess|strong=\"H3423\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* well able|strong=\"H3201\"* to|strong=\"H3201\"* overcome|strong=\"H3201\"* it|strong=\"H3588\"*!”" + }, + { + "verseNum": 31, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* men|strong=\"H5971\"* who|strong=\"H1931\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"* said, “We|strong=\"H3588\"* aren’t able|strong=\"H3201\"* to|strong=\"H3201\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5973\"* the|strong=\"H3588\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* stronger|strong=\"H2389\"* than|strong=\"H4480\"* we|strong=\"H3068\"*.”" + }, + { + "verseNum": 32, + "text": "They|strong=\"H1931\"* brought|strong=\"H3318\"* up|strong=\"H7200\"* an|strong=\"H7200\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land which|strong=\"H1931\"* they|strong=\"H1931\"* had|strong=\"H3478\"* spied|strong=\"H8446\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* land, through|strong=\"H5674\"* which|strong=\"H1931\"* we|strong=\"H3068\"* have|strong=\"H5971\"* gone|strong=\"H3318\"* to|strong=\"H3318\"* spy|strong=\"H8446\"* it|strong=\"H1931\"* out|strong=\"H3318\"*, is|strong=\"H1931\"* a|strong=\"H3068\"* land that|strong=\"H5971\"* eats up|strong=\"H7200\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* in|strong=\"H3427\"* it|strong=\"H1931\"* are|strong=\"H5971\"* men|strong=\"H1121\"* of|strong=\"H1121\"* great stature|strong=\"H4060\"*." + }, + { + "verseNum": 33, + "text": "There|strong=\"H8033\"* we|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* Nephilim|strong=\"H5303\"*,+ 13:33 or, giants* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*, who|strong=\"H1121\"* come|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H7200\"* Nephilim|strong=\"H5303\"*.+ 13:33 or, giants* We|strong=\"H8033\"* were|strong=\"H1961\"* in|strong=\"H1121\"* our|strong=\"H7200\"* own|strong=\"H1961\"* sight|strong=\"H5869\"* as|strong=\"H1961\"* grasshoppers|strong=\"H2284\"*, and|strong=\"H1121\"* so|strong=\"H3651\"* we|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H1121\"* their|strong=\"H7200\"* sight|strong=\"H5869\"*.”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"*, and|strong=\"H5971\"* cried|strong=\"H5414\"*; and|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* that|strong=\"H5971\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron. The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “We|strong=\"H3605\"* wish that|strong=\"H3605\"* we|strong=\"H3068\"* had|strong=\"H3478\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, or|strong=\"H1121\"* that|strong=\"H3605\"* we|strong=\"H3068\"* had|strong=\"H3478\"* died|strong=\"H4191\"* in|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*!" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* Yahweh|strong=\"H3068\"* bring|strong=\"H7725\"* us|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land, to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H3068\"* sword|strong=\"H2719\"*? Our|strong=\"H3068\"* wives and|strong=\"H3068\"* our|strong=\"H3068\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* will|strong=\"H3068\"* be|strong=\"H1961\"* captured or|strong=\"H3808\"* killed|strong=\"H2719\"*! Wouldn’t it|strong=\"H7725\"* be|strong=\"H1961\"* better|strong=\"H2896\"* for|strong=\"H4714\"* us|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* said to|strong=\"H7725\"* one another, “Let|strong=\"H5414\"*’s choose a|strong=\"H3068\"* leader|strong=\"H7218\"*, and|strong=\"H7725\"* let|strong=\"H5414\"*’s return|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5307\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* and|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H4480\"* who|strong=\"H1121\"* spied|strong=\"H8446\"* out|strong=\"H4480\"* the|strong=\"H4480\"* land, tore|strong=\"H7167\"* their|strong=\"H7167\"* clothes." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3478\"* spoke to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* land, which|strong=\"H3478\"* we|strong=\"H3068\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* to|strong=\"H3478\"* spy|strong=\"H8446\"* it|strong=\"H5674\"* out|strong=\"H8446\"*, is|strong=\"H2896\"* an|strong=\"H3478\"* exceedingly|strong=\"H3966\"* good|strong=\"H2896\"* land." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1931\"* Yahweh|strong=\"H3068\"* delights|strong=\"H2654\"* in|strong=\"H3068\"* us|strong=\"H5414\"*, then|strong=\"H5414\"* he|strong=\"H1931\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5414\"* this|strong=\"H2063\"* land, and|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*: a|strong=\"H3068\"* land which|strong=\"H1931\"* flows|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 9, + "text": "Only|strong=\"H3588\"* don’t rebel|strong=\"H4775\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, neither fear|strong=\"H3372\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* bread|strong=\"H3899\"* for|strong=\"H3588\"* us|strong=\"H5921\"*. Their|strong=\"H3068\"* defense is|strong=\"H3068\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* us|strong=\"H5921\"*. Don’t fear|strong=\"H3372\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* threatened|strong=\"H7275\"* to|strong=\"H3478\"* stone|strong=\"H7275\"* them|strong=\"H7200\"* with|strong=\"H3068\"* stones." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Moses|strong=\"H4872\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* despise|strong=\"H5006\"* me|strong=\"H6213\"*? How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* they|strong=\"H3068\"* not|strong=\"H3808\"* believe in|strong=\"H3068\"* me|strong=\"H6213\"*, for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs which|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* worked|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H6213\"*?" + }, + { + "verseNum": 12, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* strike|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H6213\"* the|strong=\"H5221\"* pestilence|strong=\"H1698\"*, and|strong=\"H1419\"* disinherit|strong=\"H3423\"* them|strong=\"H5221\"*, and|strong=\"H1419\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H4480\"* you|strong=\"H6213\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H1419\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* they|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Then|strong=\"H2088\"* the|strong=\"H8085\"* Egyptians|strong=\"H4713\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* your|strong=\"H3068\"* might|strong=\"H3581\"* from|strong=\"H5927\"* among|strong=\"H7130\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* tell|strong=\"H8085\"* it|strong=\"H5921\"* to|strong=\"H1980\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* this|strong=\"H2088\"* land|strong=\"H7130\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"* are|strong=\"H5971\"* among|strong=\"H7130\"* this|strong=\"H2088\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"* are|strong=\"H5971\"* seen|strong=\"H7200\"* face|strong=\"H6440\"* to|strong=\"H1980\"* face|strong=\"H6440\"*, and|strong=\"H1980\"* your|strong=\"H3068\"* cloud|strong=\"H6051\"* stands|strong=\"H5975\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* go|strong=\"H1980\"* before|strong=\"H6440\"* them|strong=\"H5921\"*, in|strong=\"H3427\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H1980\"* in|strong=\"H3427\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2088\"* if you|strong=\"H5971\"* killed|strong=\"H4191\"* this|strong=\"H2088\"* people|strong=\"H5971\"* as|strong=\"H5971\"* one|strong=\"H2088\"* man|strong=\"H4191\"*, then|strong=\"H2088\"* the|strong=\"H8085\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* fame|strong=\"H8088\"* of|strong=\"H5971\"* you|strong=\"H5971\"* will|strong=\"H1471\"* speak, saying," + }, + { + "verseNum": 16, + "text": "‘Because|strong=\"H1115\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bring this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H2088\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3201\"* them|strong=\"H7819\"*, therefore|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* slain|strong=\"H7819\"* them|strong=\"H7819\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*.’" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H1696\"* power|strong=\"H3581\"* of|strong=\"H1696\"* the|strong=\"H1696\"* Lord+ 14:17 The word translated “Lord” is “Adonai.”* be|strong=\"H4994\"* great|strong=\"H1431\"*, according as|strong=\"H1696\"* you|strong=\"H1696\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* slow to|strong=\"H3068\"* anger|strong=\"H5375\"*, and|strong=\"H1121\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"*, forgiving|strong=\"H5375\"* iniquity|strong=\"H5771\"* and|strong=\"H1121\"* disobedience; and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* by|strong=\"H5921\"* no|strong=\"H3808\"* means|strong=\"H5352\"* clear|strong=\"H5352\"* the|strong=\"H5921\"* guilty|strong=\"H5771\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"*.’" + }, + { + "verseNum": 19, + "text": "Please|strong=\"H4994\"* pardon|strong=\"H5545\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* according to|strong=\"H5704\"* the|strong=\"H5375\"* greatness|strong=\"H1433\"* of|strong=\"H5971\"* your|strong=\"H5375\"* loving kindness|strong=\"H2617\"*, and|strong=\"H5971\"* just|strong=\"H2088\"* as|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H5971\"* forgiven|strong=\"H5545\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, from|strong=\"H5704\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"*, “I|strong=\"H1697\"* have|strong=\"H3068\"* pardoned|strong=\"H5545\"* according to|strong=\"H3068\"* your|strong=\"H3068\"* word|strong=\"H1697\"*;" + }, + { + "verseNum": 21, + "text": "but|strong=\"H3605\"* in|strong=\"H3068\"* very deed—as|strong=\"H3068\"* I|strong=\"H3068\"* live|strong=\"H2416\"*, and|strong=\"H3068\"* as|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth shall|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*—" + }, + { + "verseNum": 22, + "text": "because|strong=\"H3588\"* all|strong=\"H3605\"* those|strong=\"H3605\"* men|strong=\"H6213\"* who|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* my|strong=\"H8085\"* glory|strong=\"H3519\"* and|strong=\"H6963\"* my|strong=\"H8085\"* signs, which|strong=\"H2088\"* I|strong=\"H3588\"* worked|strong=\"H6213\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"* and|strong=\"H6963\"* in|strong=\"H6213\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, yet|strong=\"H3588\"* have|strong=\"H7200\"* tempted|strong=\"H5254\"* me|strong=\"H7200\"* these|strong=\"H2088\"* ten|strong=\"H6235\"* times|strong=\"H6471\"*, and|strong=\"H6963\"* have|strong=\"H7200\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*;" + }, + { + "verseNum": 23, + "text": "surely|strong=\"H7200\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H3605\"* land which|strong=\"H3605\"* I|strong=\"H7200\"* swore|strong=\"H7650\"* to|strong=\"H7200\"* their|strong=\"H3605\"* fathers, neither|strong=\"H3808\"* shall|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* despised|strong=\"H5006\"* me|strong=\"H7200\"* see|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* my|strong=\"H1961\"* servant|strong=\"H5650\"* Caleb|strong=\"H3612\"*, because|strong=\"H6118\"* he|strong=\"H8033\"* had|strong=\"H1961\"* another spirit|strong=\"H7307\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H5650\"* has|strong=\"H1961\"* followed|strong=\"H1961\"* me|strong=\"H5973\"* fully|strong=\"H4390\"*, him|strong=\"H5973\"* I|strong=\"H5650\"* will|strong=\"H1961\"* bring|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3423\"* land into|strong=\"H1961\"* which|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H1961\"*. His|strong=\"H1961\"* offspring|strong=\"H2233\"* shall|strong=\"H5650\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "Since the|strong=\"H1870\"* Amalekite|strong=\"H6003\"* and|strong=\"H1870\"* the|strong=\"H1870\"* Canaanite|strong=\"H3669\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1870\"* valley|strong=\"H6010\"*, tomorrow|strong=\"H4279\"* turn|strong=\"H6437\"* and|strong=\"H1870\"* go|strong=\"H5265\"* into|strong=\"H3220\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 27, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"* shall|strong=\"H1121\"* I|strong=\"H5704\"* bear with|strong=\"H5921\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* congregation|strong=\"H5712\"* that|strong=\"H8085\"* complain against|strong=\"H5921\"* me|strong=\"H5921\"*? I|strong=\"H5704\"* have|strong=\"H1121\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* complaints|strong=\"H8519\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* complain against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "Tell|strong=\"H1696\"* them|strong=\"H6213\"*, ‘As|strong=\"H6213\"* I|strong=\"H3651\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, surely|strong=\"H6213\"* as|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 29, + "text": "Your|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* in|strong=\"H8141\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* you|strong=\"H3605\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H3605\"* whole|strong=\"H3605\"* number|strong=\"H4557\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, who|strong=\"H3605\"* have|strong=\"H1121\"* complained against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 30, + "text": "surely|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3588\"* come into|strong=\"H3027\"* the|strong=\"H3588\"* land concerning which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H5375\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would make|strong=\"H3027\"* you|strong=\"H3588\"* dwell|strong=\"H7931\"* therein, except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H1961\"* I|strong=\"H3045\"* will|strong=\"H1961\"* bring|strong=\"H3045\"* in|strong=\"H3045\"* your|strong=\"H3045\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* that|strong=\"H3045\"* you|strong=\"H3045\"* said should be|strong=\"H1961\"* captured or|strong=\"H3045\"* killed, and|strong=\"H3045\"* they|strong=\"H3045\"* shall|strong=\"H3045\"* know|strong=\"H3045\"* the|strong=\"H3045\"* land which|strong=\"H3988\"* you|strong=\"H3045\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"*." + }, + { + "verseNum": 32, + "text": "But as|strong=\"H4057\"* for|strong=\"H2088\"* you|strong=\"H2088\"*, your|strong=\"H2088\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* shall|strong=\"H2088\"* fall|strong=\"H5307\"* in|strong=\"H5307\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 33, + "text": "Your|strong=\"H5375\"* children|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* wanderers in|strong=\"H8141\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* prostitution|strong=\"H2184\"*, until|strong=\"H5704\"* your|strong=\"H5375\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* are|strong=\"H1121\"* consumed|strong=\"H8552\"* in|strong=\"H8141\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 34, + "text": "After|strong=\"H3117\"* the|strong=\"H5375\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H5375\"* days|strong=\"H3117\"* in|strong=\"H8141\"* which|strong=\"H3117\"* you|strong=\"H3117\"* spied|strong=\"H8446\"* out|strong=\"H8446\"* the|strong=\"H5375\"* land, even forty days|strong=\"H3117\"*, for|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, you|strong=\"H3117\"* will|strong=\"H3117\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* iniquities|strong=\"H5771\"*, even forty years|strong=\"H8141\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* will|strong=\"H3117\"* know|strong=\"H3045\"* my|strong=\"H3045\"* alienation.’" + }, + { + "verseNum": 35, + "text": "I|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* do|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* congregation|strong=\"H5712\"* who|strong=\"H3605\"* are|strong=\"H3068\"* gathered|strong=\"H3259\"* together|strong=\"H3259\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. In|strong=\"H5921\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"* they|strong=\"H8033\"* shall|strong=\"H3068\"* be|strong=\"H4191\"* consumed|strong=\"H8552\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* shall|strong=\"H3068\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 36, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* whom Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* spy|strong=\"H8446\"* out|strong=\"H3318\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* returned|strong=\"H7725\"* and|strong=\"H4872\"* made|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* to|strong=\"H7725\"* murmur|strong=\"H3885\"* against|strong=\"H5921\"* him|strong=\"H5921\"* by|strong=\"H5921\"* bringing|strong=\"H3318\"* up|strong=\"H5921\"* an|strong=\"H7971\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* against|strong=\"H5921\"* the|strong=\"H3605\"* land," + }, + { + "verseNum": 37, + "text": "even|strong=\"H3068\"* those|strong=\"H3318\"* men|strong=\"H7451\"* who|strong=\"H3068\"* brought|strong=\"H3318\"* up|strong=\"H3318\"* an|strong=\"H6440\"* evil|strong=\"H7451\"* report|strong=\"H1681\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, died|strong=\"H4191\"* by|strong=\"H3068\"* the|strong=\"H6440\"* plague|strong=\"H4046\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H1992\"* Joshua|strong=\"H3091\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* and|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* remained|strong=\"H2421\"* alive|strong=\"H2421\"* of|strong=\"H1121\"* those|strong=\"H1992\"* men|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H8446\"* out|strong=\"H4480\"* the|strong=\"H4480\"* land." + }, + { + "verseNum": 39, + "text": "Moses|strong=\"H4872\"* told|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* mourned greatly|strong=\"H3966\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H3588\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*, saying, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H3068\"* here|strong=\"H2005\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* promised|strong=\"H3068\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*.”" + }, + { + "verseNum": 41, + "text": "Moses|strong=\"H4872\"* said|strong=\"H6310\"*, “Why|strong=\"H4100\"* now|strong=\"H2088\"* do|strong=\"H3068\"* you|strong=\"H3808\"* disobey the|strong=\"H3068\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, since|strong=\"H6310\"* it|strong=\"H1931\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*?" + }, + { + "verseNum": 42, + "text": "Don’t go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* isn’t among|strong=\"H7130\"* you|strong=\"H3588\"*; that|strong=\"H3588\"* way|strong=\"H6440\"* you|strong=\"H3588\"* won’t be|strong=\"H3808\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies." + }, + { + "verseNum": 43, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"* the|strong=\"H6440\"* Amalekite|strong=\"H6003\"* and|strong=\"H3068\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"* are|strong=\"H3068\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* because|strong=\"H3588\"* you|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*; therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 44, + "text": "But|strong=\"H3808\"* they|strong=\"H3068\"* presumed|strong=\"H6075\"* to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3068\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"*. Nevertheless, the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* and|strong=\"H4872\"* Moses|strong=\"H4872\"* didn’t depart|strong=\"H4185\"* out|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 45, + "text": "Then|strong=\"H3381\"* the|strong=\"H5221\"* Amalekites|strong=\"H6003\"* came|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H2022\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H1931\"* mountain|strong=\"H2022\"*, and|strong=\"H2022\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* and|strong=\"H2022\"* beat|strong=\"H5221\"* them|strong=\"H5221\"* down|strong=\"H3381\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Hormah|strong=\"H2767\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H3478\"* into|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* your|strong=\"H5414\"* habitations|strong=\"H4186\"*, which|strong=\"H3478\"* I|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H5930\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, or|strong=\"H4480\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, to|strong=\"H3068\"* accomplish|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H4480\"* as|strong=\"H6213\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5930\"*, or|strong=\"H4480\"* in|strong=\"H3068\"* your|strong=\"H3068\"* set|strong=\"H6213\"* feasts|strong=\"H4150\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H6213\"* herd|strong=\"H1241\"*, or|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6213\"* flock|strong=\"H6629\"*—" + }, + { + "verseNum": 4, + "text": "then|strong=\"H7126\"* he|strong=\"H3068\"* who|strong=\"H3068\"* offers|strong=\"H7126\"* his|strong=\"H3068\"* offering|strong=\"H4503\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* one|strong=\"H3068\"* tenth|strong=\"H6241\"* of|strong=\"H3068\"* an|strong=\"H7126\"* ephah+ 15:4 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* one|strong=\"H3068\"* fourth|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 15:4 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H3068\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* wine|strong=\"H3196\"* for|strong=\"H5921\"* the|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*, one|strong=\"H3532\"* fourth|strong=\"H7243\"* of|strong=\"H2077\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*, with|strong=\"H6213\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H3196\"* for|strong=\"H5921\"* the|strong=\"H5921\"* sacrifice|strong=\"H2077\"*, for|strong=\"H5921\"* each|strong=\"H3532\"* lamb|strong=\"H3532\"*." + }, + { + "verseNum": 6, + "text": "“‘For|strong=\"H6213\"* a|strong=\"H3068\"* ram, you|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* two|strong=\"H8147\"* tenths of|strong=\"H1969\"* an|strong=\"H6213\"* ephah+ 15:6 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H6213\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1969\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* the|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H1241\"* for|strong=\"H3588\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H1121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, to|strong=\"H3068\"* accomplish|strong=\"H6213\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, or|strong=\"H1121\"* for|strong=\"H3588\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "then|strong=\"H7126\"* he|strong=\"H5921\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* with|strong=\"H1101\"* the|strong=\"H5921\"* bull|strong=\"H1241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* three|strong=\"H7969\"* tenths of|strong=\"H1121\"* an|strong=\"H7126\"* ephah+ 15:9 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H1121\"* oil|strong=\"H8081\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* for|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* wine|strong=\"H3196\"*, for|strong=\"H3068\"* an|strong=\"H7126\"* offering|strong=\"H5262\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"H3602\"* it|strong=\"H6213\"* shall|strong=\"H7794\"* be done|strong=\"H6213\"* for|strong=\"H6213\"* each|strong=\"H3532\"* bull|strong=\"H7794\"*, for|strong=\"H6213\"* each|strong=\"H3532\"* ram, for|strong=\"H6213\"* each|strong=\"H3532\"* of|strong=\"H6213\"* the|strong=\"H6213\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"*, or|strong=\"H7794\"* of|strong=\"H6213\"* the|strong=\"H6213\"* young goats|strong=\"H5795\"*." + }, + { + "verseNum": 12, + "text": "According|strong=\"H3602\"* to|strong=\"H6213\"* the|strong=\"H6213\"* number|strong=\"H4557\"* that|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"*, so|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* everyone according|strong=\"H3602\"* to|strong=\"H6213\"* their|strong=\"H6213\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 13, + "text": "“‘All|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* native-born shall|strong=\"H3068\"* do|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* in|strong=\"H3068\"* this|strong=\"H6213\"* way|strong=\"H3605\"*, in|strong=\"H3068\"* offering|strong=\"H7126\"* an|strong=\"H6213\"* offering|strong=\"H7126\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H6213\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, or|strong=\"H3068\"* whoever may|strong=\"H3068\"* be|strong=\"H3068\"* among|strong=\"H8432\"* you|strong=\"H3588\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* offer|strong=\"H6213\"* an|strong=\"H6213\"* offering|strong=\"H3068\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H6213\"* you|strong=\"H3588\"* do|strong=\"H6213\"*, so|strong=\"H3651\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H2708\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"*, there|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1961\"* statute|strong=\"H2708\"* for|strong=\"H2708\"* you|strong=\"H6440\"* and|strong=\"H3068\"* for|strong=\"H2708\"* the|strong=\"H6440\"* stranger|strong=\"H1616\"* who|strong=\"H3068\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*. As|strong=\"H1961\"* you|strong=\"H6440\"* are|strong=\"H3068\"*, so|strong=\"H1961\"* the|strong=\"H6440\"* foreigner|strong=\"H1616\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "One|strong=\"H1961\"* law|strong=\"H8451\"* and|strong=\"H4941\"* one|strong=\"H1961\"* ordinance|strong=\"H4941\"* shall|strong=\"H8451\"* be|strong=\"H1961\"* for|strong=\"H4941\"* you|strong=\"H1961\"* and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H1961\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"* with|strong=\"H4941\"* you|strong=\"H1961\"*.’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘When|strong=\"H1696\"* you|strong=\"H1696\"* come|strong=\"H3478\"* into the|strong=\"H1696\"* land where|strong=\"H8033\"* I|strong=\"H1121\"* bring you|strong=\"H1696\"*," + }, + { + "verseNum": 19, + "text": "then|strong=\"H1961\"* it|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* when|strong=\"H1961\"* you|strong=\"H1961\"* eat|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* bread|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land, you|strong=\"H1961\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1637\"* the|strong=\"H3651\"* first|strong=\"H7225\"* of|strong=\"H1637\"* your|strong=\"H7311\"* dough|strong=\"H6182\"* you|strong=\"H3651\"* shall offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* cake|strong=\"H2471\"* for|strong=\"H3651\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"*. As|strong=\"H3651\"* the|strong=\"H3651\"* wave offering|strong=\"H8641\"* of|strong=\"H1637\"* the|strong=\"H3651\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, so|strong=\"H3651\"* you|strong=\"H3651\"* shall heave|strong=\"H8641\"* it|strong=\"H3651\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H3068\"* the|strong=\"H5414\"* first|strong=\"H7225\"* of|strong=\"H3068\"* your|strong=\"H3068\"* dough|strong=\"H6182\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* throughout|strong=\"H1755\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 22, + "text": "“‘When|strong=\"H3588\"* you|strong=\"H3588\"* err|strong=\"H7686\"*, and|strong=\"H4872\"* don’t observe|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H1696\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*—" + }, + { + "verseNum": 23, + "text": "even|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* gave|strong=\"H6680\"* commandment|strong=\"H6680\"* and|strong=\"H4872\"* onward|strong=\"H1973\"* throughout|strong=\"H3605\"* your|strong=\"H3068\"* generations|strong=\"H1755\"*—" + }, + { + "verseNum": 24, + "text": "then|strong=\"H1961\"* it|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* it|strong=\"H6213\"* was|strong=\"H3068\"* done|strong=\"H6213\"* unwittingly|strong=\"H7684\"*, without|strong=\"H6499\"* the|strong=\"H3605\"* knowledge|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* one|strong=\"H3605\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* its|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H1121\"* its|strong=\"H3605\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"*, and|strong=\"H1121\"* one|strong=\"H3605\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* an|strong=\"H3588\"* error|strong=\"H7684\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* have|strong=\"H3068\"* brought|strong=\"H3548\"* their|strong=\"H3605\"* offering|strong=\"H2403\"*, an|strong=\"H3588\"* offering|strong=\"H2403\"* made|strong=\"H3722\"* by|strong=\"H5921\"* fire to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* their|strong=\"H3605\"* error|strong=\"H7684\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* forgiven|strong=\"H5545\"*, as|strong=\"H3588\"* well as|strong=\"H3588\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H1481\"* as|strong=\"H3588\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*; for|strong=\"H3588\"* with|strong=\"H5971\"* regard to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, it|strong=\"H3588\"* was|strong=\"H3478\"* done|strong=\"H3478\"* unwittingly|strong=\"H7684\"*." + }, + { + "verseNum": 27, + "text": "“‘If|strong=\"H2398\"* a|strong=\"H3068\"* person|strong=\"H5315\"* sins|strong=\"H2403\"* unwittingly|strong=\"H7684\"*, then|strong=\"H7126\"* he|strong=\"H8141\"* shall|strong=\"H5315\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* female|strong=\"H5795\"* goat|strong=\"H5795\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1323\"* for|strong=\"H5315\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H6440\"* soul|strong=\"H5315\"* who|strong=\"H3068\"* errs|strong=\"H2398\"* when|strong=\"H3068\"* he|strong=\"H3068\"* sins|strong=\"H2398\"* unwittingly|strong=\"H7684\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* shall|strong=\"H3548\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* him|strong=\"H6440\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H3068\"* forgiven|strong=\"H5545\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6213\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* one|strong=\"H1121\"* law|strong=\"H8451\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H1616\"* does|strong=\"H6213\"* anything|strong=\"H6213\"* unwittingly|strong=\"H7684\"*, for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H1616\"* is|strong=\"H3478\"* native-born among|strong=\"H8432\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* for|strong=\"H6213\"* the|strong=\"H6213\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H1961\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 30, + "text": "“‘But|strong=\"H1931\"* the|strong=\"H6213\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* does|strong=\"H6213\"* anything|strong=\"H4480\"* with|strong=\"H3068\"* a|strong=\"H3068\"* high|strong=\"H6213\"* hand|strong=\"H3027\"*, whether|strong=\"H4480\"* he|strong=\"H1931\"* is|strong=\"H3068\"* native-born or|strong=\"H4480\"* a|strong=\"H3068\"* foreigner|strong=\"H1616\"*, blasphemes Yahweh|strong=\"H3068\"*. That|strong=\"H5971\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* among|strong=\"H7130\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 31, + "text": "Because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* despised Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H6565\"* his|strong=\"H3068\"* commandment|strong=\"H4687\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* utterly|strong=\"H6565\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. His|strong=\"H3068\"* iniquity|strong=\"H5771\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* on|strong=\"H3068\"* him|strong=\"H1931\"*.’”" + }, + { + "verseNum": 32, + "text": "While|strong=\"H1961\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* wilderness|strong=\"H4057\"*, they|strong=\"H3117\"* found|strong=\"H4672\"* a|strong=\"H3068\"* man|strong=\"H1121\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"* on|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* found|strong=\"H4672\"* him|strong=\"H4672\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"* brought|strong=\"H7126\"* him|strong=\"H4672\"* to|strong=\"H7126\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* to|strong=\"H7126\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 34, + "text": "They|strong=\"H3588\"* put|strong=\"H3240\"* him|strong=\"H6213\"* in|strong=\"H6213\"* custody|strong=\"H4929\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3808\"* been|strong=\"H3808\"* declared|strong=\"H6567\"* what|strong=\"H4100\"* should|strong=\"H4100\"* be|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H4191\"* Moses|strong=\"H4872\"*, “The|strong=\"H3605\"* man|strong=\"H4191\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* shall|strong=\"H3068\"* stone|strong=\"H7275\"* him|strong=\"H4191\"* with|strong=\"H3068\"* stones outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 36, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* brought|strong=\"H3318\"* him|strong=\"H6680\"* outside|strong=\"H2351\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H4872\"* stoned|strong=\"H7275\"* him|strong=\"H6680\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H3068\"* stones, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 37, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 38, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"* that|strong=\"H3478\"* they|strong=\"H5921\"* should|strong=\"H3478\"* make|strong=\"H6213\"* themselves|strong=\"H6213\"* fringes|strong=\"H6734\"*+ 15:38 or, tassels (Hebrew צִיצִ֛ת)* on|strong=\"H5921\"* the|strong=\"H5921\"* borders|strong=\"H3671\"* of|strong=\"H1121\"* their|strong=\"H5414\"* garments throughout|strong=\"H1755\"* their|strong=\"H5414\"* generations|strong=\"H1755\"*, and|strong=\"H1121\"* that|strong=\"H3478\"* they|strong=\"H5921\"* put|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fringe|strong=\"H6734\"*+ 15:38 or, tassel* of|strong=\"H1121\"* each|strong=\"H5414\"* border a|strong=\"H3068\"* cord|strong=\"H6616\"* of|strong=\"H1121\"* blue|strong=\"H8504\"*." + }, + { + "verseNum": 39, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"* for|strong=\"H6213\"* a|strong=\"H3068\"* fringe|strong=\"H6734\"*,+ 15:39 or, tassel* that|strong=\"H7200\"* you|strong=\"H3605\"* may|strong=\"H1961\"* see|strong=\"H7200\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* that|strong=\"H7200\"* you|strong=\"H3605\"* don’t follow|strong=\"H8446\"* your|strong=\"H3068\"* own|strong=\"H1961\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* eyes|strong=\"H5869\"*, after|strong=\"H1961\"* which|strong=\"H3068\"* you|strong=\"H3605\"* used|strong=\"H6213\"* to|strong=\"H3068\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*;" + }, + { + "verseNum": 40, + "text": "so|strong=\"H4616\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* remember|strong=\"H2142\"* and|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* my|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H6213\"* be|strong=\"H1961\"* holy|strong=\"H6918\"* to|strong=\"H1961\"* your|strong=\"H3605\"* God." + }, + { + "verseNum": 41, + "text": "I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* your|strong=\"H3068\"* God|strong=\"H3068\"*: I|strong=\"H4714\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3947\"* Korah|strong=\"H7141\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, with|strong=\"H3947\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab, and|strong=\"H1121\"* On, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Peleth|strong=\"H6431\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, took|strong=\"H3947\"* some men|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"*, with|strong=\"H6440\"* some of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"*, called|strong=\"H8034\"* to|strong=\"H3478\"* the|strong=\"H6440\"* assembly|strong=\"H5712\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* renown|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* assembled|strong=\"H6950\"* themselves|strong=\"H5921\"* together|strong=\"H6950\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* against|strong=\"H5921\"* Aaron, and|strong=\"H4872\"* said to|strong=\"H3068\"* them|strong=\"H5921\"*, “You|strong=\"H3588\"* take|strong=\"H5375\"* too|strong=\"H5921\"* much|strong=\"H7227\"* on|strong=\"H5921\"* yourself|strong=\"H5921\"*, since|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* are|strong=\"H3068\"* holy|strong=\"H6918\"*, everyone|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H5921\"*, and|strong=\"H4872\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H8432\"* them|strong=\"H5921\"*! Why|strong=\"H4069\"* do|strong=\"H3068\"* you|strong=\"H3588\"* lift|strong=\"H5375\"* yourselves|strong=\"H8432\"* up|strong=\"H5375\"* above|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*?”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H8085\"* Moses|strong=\"H4872\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H8085\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Korah|strong=\"H7141\"* and|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H5712\"*, “In|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H3045\"* who|strong=\"H3605\"* are|strong=\"H3068\"* his|strong=\"H3605\"*, and|strong=\"H3068\"* who|strong=\"H3605\"* is|strong=\"H3068\"* holy|strong=\"H6918\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* cause him|strong=\"H3605\"* to|strong=\"H1696\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* him|strong=\"H3605\"*. Even|strong=\"H3068\"* him|strong=\"H3605\"* whom he|strong=\"H3068\"* shall|strong=\"H3068\"* choose, he|strong=\"H3068\"* will|strong=\"H3068\"* cause to|strong=\"H1696\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "Do|strong=\"H6213\"* this|strong=\"H2063\"*: have|strong=\"H3605\"* Korah|strong=\"H7141\"* and|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H5712\"* take|strong=\"H3947\"* censers|strong=\"H4289\"*," + }, + { + "verseNum": 7, + "text": "put|strong=\"H5414\"* fire in|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* them|strong=\"H5414\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* tomorrow|strong=\"H4279\"*. It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H6440\"* man|strong=\"H1121\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* chooses, he|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6918\"*. You|strong=\"H5414\"* have|strong=\"H1961\"* gone|strong=\"H3068\"* too|strong=\"H5921\"* far|strong=\"H5921\"*, you|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*!”" + }, + { + "verseNum": 8, + "text": "Moses|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H8085\"* Korah|strong=\"H7141\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H4994\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*!" + }, + { + "verseNum": 9, + "text": "Is|strong=\"H3068\"* it|strong=\"H7126\"* a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* to|strong=\"H3478\"* you|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* separated you|strong=\"H3588\"* from|strong=\"H4480\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* bring|strong=\"H7126\"* you|strong=\"H3588\"* near|strong=\"H7126\"* to|strong=\"H3478\"* himself|strong=\"H6440\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* to|strong=\"H3478\"* them|strong=\"H6440\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H1571\"* brought|strong=\"H7126\"* you|strong=\"H3605\"* near|strong=\"H7126\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* with|strong=\"H3605\"* you|strong=\"H3605\"*? Do|strong=\"H3605\"* you|strong=\"H3605\"* seek|strong=\"H1245\"* the|strong=\"H3605\"* priesthood|strong=\"H3550\"* also|strong=\"H1571\"*?" + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* and|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* company|strong=\"H5712\"* have|strong=\"H3068\"* gathered|strong=\"H3259\"* together|strong=\"H3259\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*! What|strong=\"H4100\"* is|strong=\"H3068\"* Aaron that|strong=\"H3588\"* you|strong=\"H3588\"* complain against|strong=\"H5921\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* call|strong=\"H7121\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H7121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab; and|strong=\"H1121\"* they|strong=\"H3808\"* said|strong=\"H7121\"*, “We won’t come|strong=\"H5927\"* up|strong=\"H5927\"*!" + }, + { + "verseNum": 13, + "text": "Is|strong=\"H1571\"* it|strong=\"H5921\"* a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1571\"* brought|strong=\"H5927\"* us|strong=\"H5921\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H4057\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H4191\"* also|strong=\"H1571\"* make|strong=\"H8323\"* yourself|strong=\"H5921\"* a|strong=\"H3068\"* prince|strong=\"H8323\"* over|strong=\"H5921\"* us|strong=\"H5921\"*?" + }, + { + "verseNum": 14, + "text": "Moreover you|strong=\"H5414\"* haven’t brought|strong=\"H5927\"* us|strong=\"H5414\"* into|strong=\"H5927\"* a|strong=\"H3068\"* land|strong=\"H7704\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H5869\"* honey|strong=\"H1706\"*, nor|strong=\"H3808\"* given|strong=\"H5414\"* us|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H5869\"* fields|strong=\"H7704\"* and|strong=\"H5869\"* vineyards|strong=\"H3754\"*. Will|strong=\"H5869\"* you|strong=\"H5414\"* put|strong=\"H5414\"* out|strong=\"H5414\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* these|strong=\"H1992\"* men|strong=\"H1992\"*? We won’t come|strong=\"H5927\"* up|strong=\"H5927\"*.”" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* was|strong=\"H3068\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H4872\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “Don’t respect|strong=\"H6437\"* their|strong=\"H3068\"* offering|strong=\"H4503\"*. I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* taken|strong=\"H5375\"* one|strong=\"H3808\"* donkey|strong=\"H2543\"* from|strong=\"H3068\"* them|strong=\"H1992\"*, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H3808\"* hurt|strong=\"H7489\"* one|strong=\"H3808\"* of|strong=\"H3068\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 16, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* Korah|strong=\"H7141\"*, “You|strong=\"H6440\"* and|strong=\"H4872\"* all|strong=\"H3605\"* your|strong=\"H3068\"* company|strong=\"H5712\"* go|strong=\"H1961\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"*, and|strong=\"H4872\"* they|strong=\"H1992\"*, and|strong=\"H4872\"* Aaron, tomorrow|strong=\"H4279\"*." + }, + { + "verseNum": 17, + "text": "Each|strong=\"H5414\"* man|strong=\"H6440\"* take|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"* and|strong=\"H3967\"* put|strong=\"H5414\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3967\"* each|strong=\"H5414\"* man|strong=\"H6440\"* bring|strong=\"H7126\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, two|strong=\"H3947\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* censers|strong=\"H4289\"*; you|strong=\"H5414\"* also|strong=\"H3068\"*, and|strong=\"H3967\"* Aaron, each|strong=\"H5414\"* with|strong=\"H3068\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* each|strong=\"H5414\"* took|strong=\"H3947\"* his|strong=\"H5414\"* censer|strong=\"H4289\"*, and|strong=\"H4872\"* put|strong=\"H5414\"* fire in|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* laid|strong=\"H7760\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4872\"* stood|strong=\"H5975\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"* with|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron." + }, + { + "verseNum": 19, + "text": "Korah|strong=\"H7141\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* opposite|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 21, + "text": "“Separate yourselves|strong=\"H8432\"* from|strong=\"H8432\"* among|strong=\"H8432\"* this|strong=\"H2063\"* congregation|strong=\"H5712\"*, that|strong=\"H2063\"* I|strong=\"H8432\"* may consume|strong=\"H3615\"* them|strong=\"H3615\"* in|strong=\"H8432\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*!”" + }, + { + "verseNum": 22, + "text": "They|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*, and|strong=\"H6440\"* said, “God, the|strong=\"H3605\"* God of|strong=\"H6440\"* the|strong=\"H3605\"* spirits|strong=\"H7307\"* of|strong=\"H6440\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, shall|strong=\"H5712\"* one|strong=\"H3605\"* man|strong=\"H3605\"* sin|strong=\"H2398\"*, and|strong=\"H6440\"* will|strong=\"H7307\"* you|strong=\"H6440\"* be|strong=\"H7307\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*?”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5927\"* congregation|strong=\"H5712\"*, saying|strong=\"H1696\"*, ‘Get|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H5927\"* around|strong=\"H5439\"* the|strong=\"H5927\"* tent of|strong=\"H5712\"* Korah|strong=\"H7141\"*, Dathan|strong=\"H1885\"*, and|strong=\"H5927\"* Abiram!’”" + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Dathan|strong=\"H1885\"* and|strong=\"H6965\"* Abiram; and|strong=\"H6965\"* the|strong=\"H6965\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* followed|strong=\"H3212\"* him|strong=\"H4872\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H3605\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, saying|strong=\"H1696\"*, “Depart|strong=\"H5493\"*, please|strong=\"H4994\"*, from|strong=\"H5493\"* the|strong=\"H3605\"* tents of|strong=\"H5921\"* these|strong=\"H1696\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"*, and|strong=\"H2403\"* touch|strong=\"H5060\"* nothing|strong=\"H3605\"* of|strong=\"H5921\"* theirs|strong=\"H5921\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* be|strong=\"H7563\"* consumed|strong=\"H5595\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H2403\"*!”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H5927\"* they|strong=\"H5921\"* went|strong=\"H3318\"* away|strong=\"H5927\"* from|strong=\"H3318\"* the|strong=\"H5921\"* tent of|strong=\"H1121\"* Korah|strong=\"H7141\"*, Dathan|strong=\"H1885\"*, and|strong=\"H1121\"* Abiram, on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*. Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stood|strong=\"H5324\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1121\"* their|strong=\"H5921\"* tents|strong=\"H4908\"* with|strong=\"H5921\"* their|strong=\"H5921\"* wives, their|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H5921\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* said, “Hereby|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2063\"* works|strong=\"H4639\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3068\"* not|strong=\"H3808\"* from|strong=\"H7971\"* my|strong=\"H3605\"* own mind|strong=\"H3820\"*." + }, + { + "verseNum": 29, + "text": "If these|strong=\"H3605\"* men|strong=\"H3605\"* die|strong=\"H4191\"* the|strong=\"H3605\"* common death|strong=\"H4194\"* of|strong=\"H3068\"* all|strong=\"H3605\"* men|strong=\"H3605\"*, or|strong=\"H3808\"* if they|strong=\"H3068\"* experience what|strong=\"H5921\"* all|strong=\"H3605\"* men|strong=\"H3605\"* experience, then|strong=\"H7971\"* Yahweh|strong=\"H3068\"* hasn’t sent|strong=\"H7971\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* Yahweh|strong=\"H3068\"* makes|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H1278\"* thing|strong=\"H2416\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* ground opens|strong=\"H6475\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H3068\"* swallows|strong=\"H1104\"* them|strong=\"H3381\"* up|strong=\"H1104\"* with|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* belong to|strong=\"H3381\"* them|strong=\"H3381\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* go|strong=\"H3381\"* down|strong=\"H3381\"* alive|strong=\"H2416\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 16:30 Sheol is the place of the dead.* then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* understand|strong=\"H3045\"* that|strong=\"H3588\"* these|strong=\"H3605\"* men|strong=\"H3605\"* have|strong=\"H3068\"* despised|strong=\"H5006\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "As|strong=\"H1697\"* he|strong=\"H3605\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, the|strong=\"H3605\"* ground that|strong=\"H3605\"* was|strong=\"H1961\"* under|strong=\"H8478\"* them|strong=\"H3615\"* split|strong=\"H1234\"* apart." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* earth opened|strong=\"H6605\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"* and|strong=\"H1004\"* swallowed|strong=\"H1104\"* them|strong=\"H1104\"* up|strong=\"H1104\"* with|strong=\"H1004\"* their|strong=\"H3605\"* households|strong=\"H1004\"*, all|strong=\"H3605\"* of|strong=\"H1004\"* Korah|strong=\"H7141\"*’s men|strong=\"H3605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* goods|strong=\"H7399\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H3381\"* they|strong=\"H1992\"*, and|strong=\"H3381\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belonged to|strong=\"H3381\"* them|strong=\"H1992\"* went|strong=\"H3381\"* down|strong=\"H3381\"* alive|strong=\"H2416\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*.+ 16:33 Sheol is the place of the dead.* The|strong=\"H3605\"* earth closed|strong=\"H3680\"* on|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H3381\"* they|strong=\"H1992\"* perished from|strong=\"H3381\"* among|strong=\"H8432\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 34, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* that|strong=\"H3588\"* were|strong=\"H3478\"* around|strong=\"H5439\"* them|strong=\"H5439\"* fled|strong=\"H5127\"* at|strong=\"H3478\"* their|strong=\"H3605\"* cry|strong=\"H6963\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Lest|strong=\"H6435\"* the|strong=\"H3605\"* earth swallow|strong=\"H1104\"* us|strong=\"H5439\"* up|strong=\"H1104\"*!”" + }, + { + "verseNum": 35, + "text": "Fire came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3967\"* devoured the|strong=\"H3068\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men who|strong=\"H3068\"* offered|strong=\"H7126\"* the|strong=\"H3068\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 37, + "text": "“Speak to Eleazar the son of Aaron the priest, that he take up the censers out of the burning, and scatter the fire away from the camp; for they are holy," + }, + { + "verseNum": 38, + "text": "even the censers of those who sinned against their own lives. Let them be beaten into plates for a|strong=\"H3068\"* covering of the altar, for they offered them before Yahweh|strong=\"H3068\"*. Therefore they are holy. They shall be a|strong=\"H3068\"* sign to the children of Israel.”" + }, + { + "verseNum": 39, + "text": "Eleazar the priest took the bronze censers which those who were burned had offered; and they beat them out for a|strong=\"H3068\"* covering of the altar," + }, + { + "verseNum": 40, + "text": "to be a|strong=\"H3068\"* memorial to the children of Israel, to the end that no stranger who isn’t of the offspring of Aaron, would come near to burn incense before Yahweh|strong=\"H3068\"*, that he not be as Korah and as his company; as Yahweh|strong=\"H3068\"* spoke to him by Moses." + }, + { + "verseNum": 41, + "text": "But on the next day all the congregation of the children of Israel complained against Moses and against Aaron, saying, “You have killed Yahweh|strong=\"H3068\"*’s people!”" + }, + { + "verseNum": 42, + "text": "When the congregation was assembled against Moses and against Aaron, they looked toward the Tent of Meeting. Behold, the cloud covered it, and Yahweh|strong=\"H3068\"*’s glory appeared." + }, + { + "verseNum": 43, + "text": "Moses and Aaron came to the front of the Tent of Meeting." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* spoke to Moses, saying," + }, + { + "verseNum": 45, + "text": "“Get away from among this congregation, that I may consume them in a|strong=\"H3068\"* moment!” They fell on their faces." + }, + { + "verseNum": 46, + "text": "Moses said to Aaron, “Take your censer, put fire from the altar in it, lay incense on it, carry it quickly to the congregation, and make atonement for them; for wrath has gone out from Yahweh|strong=\"H3068\"*! The plague has begun.”" + }, + { + "verseNum": 47, + "text": "Aaron did as Moses said, and ran into the middle of the assembly. The plague had already begun among the people. He put on the incense, and made atonement for the people." + }, + { + "verseNum": 48, + "text": "He stood between the dead and the living; and the plague was stayed." + }, + { + "verseNum": 49, + "text": "Now those who died by the plague were fourteen thousand seven hundred, in addition to those who died about the matter of Korah." + }, + { + "verseNum": 50, + "text": "Aaron returned to Moses to the door of the Tent of Meeting, and the plague was stopped." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak to|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel, and|strong=\"H1121\"* take|strong=\"H7311\"* rods from|strong=\"H1121\"* them|strong=\"H6942\"*, one|strong=\"H1121\"* for|strong=\"H3588\"* each fathers’ house, of|strong=\"H1121\"* all|strong=\"H2219\"* their|strong=\"H3588\"* princes|strong=\"H3548\"* according to|strong=\"H1121\"* their|strong=\"H3588\"* fathers’ houses, twelve rods. Write each man|strong=\"H1121\"*’s name on|strong=\"H1973\"* his|strong=\"H3588\"* rod." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* write Aaron’s name on|strong=\"H3068\"* Levi’s rod. There|strong=\"H1961\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1121\"* rod for|strong=\"H3588\"* each head|strong=\"H6440\"* of|strong=\"H1121\"* their|strong=\"H3068\"* fathers’ houses." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3947\"* shall|strong=\"H3548\"* lay|strong=\"H7126\"* them|strong=\"H7126\"* up|strong=\"H8313\"* in|strong=\"H4196\"* the|strong=\"H3947\"* Tent of|strong=\"H4196\"* Meeting before the|strong=\"H3947\"* covenant, where I|strong=\"H7126\"* meet with|strong=\"H8313\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H6440\"* rod of|strong=\"H1121\"* the|strong=\"H6440\"* man|strong=\"H1121\"* whom|strong=\"H6440\"* I|strong=\"H3808\"* shall|strong=\"H3068\"* choose shall|strong=\"H3068\"* bud. I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H3027\"* the|strong=\"H6440\"* murmurings of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H1931\"* they|strong=\"H3068\"* murmur against|strong=\"H6440\"* you|strong=\"H6440\"*, cease from|strong=\"H6440\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* princes gave|strong=\"H4872\"* him|strong=\"H5921\"* rods, for|strong=\"H5921\"* each|strong=\"H3605\"* prince one|strong=\"H3605\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers’ houses, a|strong=\"H3068\"* total|strong=\"H3605\"* of|strong=\"H1121\"* twelve rods. Aaron’s rod was|strong=\"H3068\"* among|strong=\"H5921\"* their|strong=\"H3605\"* rods." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* laid|strong=\"H4872\"* up|strong=\"H7200\"* the|strong=\"H5921\"* rods before|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H3068\"* the|strong=\"H5921\"* Testimony." + }, + { + "verseNum": 8, + "text": "On|strong=\"H6440\"* the|strong=\"H6440\"* next day|strong=\"H4872\"*, Moses|strong=\"H4872\"* went|strong=\"H4872\"* into the|strong=\"H6440\"* Tent of|strong=\"H6440\"* the|strong=\"H6440\"* Testimony; and|strong=\"H4872\"* behold, Aaron’s rod for|strong=\"H6440\"* the|strong=\"H6440\"* house of|strong=\"H6440\"* Levi had|strong=\"H4872\"* sprouted, budded, produced blossoms, and|strong=\"H4872\"* bore ripe almonds." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H4872\"* out|strong=\"H1696\"* all|strong=\"H3068\"* the|strong=\"H3068\"* rods from|strong=\"H3068\"* before Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3068\"* the|strong=\"H3068\"* children of|strong=\"H3068\"* Israel. They|strong=\"H3068\"* looked|strong=\"H3068\"*, and|strong=\"H4872\"* each man took his|strong=\"H3068\"* rod." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* Moses, “Put|strong=\"H3615\"* back the|strong=\"H6440\"* rod of|strong=\"H6440\"* Aaron before|strong=\"H6440\"* the|strong=\"H6440\"* covenant, to|strong=\"H5921\"* be|strong=\"H6440\"* kept for|strong=\"H5921\"* a|strong=\"H3068\"* token against|strong=\"H5921\"* the|strong=\"H6440\"* children of|strong=\"H6440\"* rebellion; that|strong=\"H5307\"* you|strong=\"H6440\"* may|strong=\"H5307\"* make|strong=\"H3615\"* an|strong=\"H6440\"* end|strong=\"H3615\"* of|strong=\"H6440\"* their|strong=\"H6440\"* complaining against|strong=\"H5921\"* me|strong=\"H6440\"*, that|strong=\"H5307\"* they|strong=\"H5921\"* not|strong=\"H6440\"* die|strong=\"H5307\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* did|strong=\"H3068\"* so|strong=\"H3947\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded him|strong=\"H5414\"*, so|strong=\"H3947\"* he|strong=\"H3588\"* did|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* children of|strong=\"H8432\"* Israel|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* perish! We|strong=\"H2009\"* are|strong=\"H5971\"* undone! We|strong=\"H2009\"* are|strong=\"H5971\"* all|strong=\"H5414\"* undone!" + }, + { + "verseNum": 13, + "text": "Everyone who|strong=\"H5975\"* keeps approaching Yahweh|strong=\"H3068\"*’s tabernacle, dies|strong=\"H4191\"*! Will|strong=\"H2416\"* we|strong=\"H3068\"* all|strong=\"H4191\"* perish?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Aaron, “You|strong=\"H5375\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* with|strong=\"H1004\"* you|strong=\"H5375\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5375\"* sanctuary|strong=\"H4720\"*; and|strong=\"H1121\"* you|strong=\"H5375\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* with|strong=\"H1004\"* you|strong=\"H5375\"* shall|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* your|strong=\"H3068\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 2, + "text": "Bring|strong=\"H7126\"* your|strong=\"H5921\"* brothers|strong=\"H1121\"* also|strong=\"H1571\"*, the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, the|strong=\"H6440\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* your|strong=\"H5921\"* father|strong=\"H1121\"*, near|strong=\"H7126\"* with|strong=\"H5921\"* you|strong=\"H6440\"*, that|strong=\"H1121\"* they|strong=\"H5921\"* may|strong=\"H1121\"* be|strong=\"H1121\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* you|strong=\"H6440\"*, and|strong=\"H1121\"* minister|strong=\"H8334\"* to|strong=\"H5921\"* you|strong=\"H6440\"*; but|strong=\"H1571\"* you|strong=\"H6440\"* and|strong=\"H1121\"* your|strong=\"H5921\"* sons|strong=\"H1121\"* with|strong=\"H5921\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* the|strong=\"H6440\"* Testimony|strong=\"H5715\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* shall|strong=\"H3808\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* commands and|strong=\"H4196\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H3627\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* Tent; only|strong=\"H3605\"* they|strong=\"H1992\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"* and|strong=\"H4196\"* to|strong=\"H4191\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, that|strong=\"H3605\"* they|strong=\"H1992\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"* nor|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* joined|strong=\"H3867\"* to|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H7126\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* responsibility|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* Tent of|strong=\"H5921\"* Meeting|strong=\"H4150\"*, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H5921\"* the|strong=\"H3605\"* Tent. A|strong=\"H3068\"* stranger|strong=\"H2114\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 5, + "text": "“You|strong=\"H5921\"* shall|strong=\"H1121\"* perform|strong=\"H8104\"* the|strong=\"H5921\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* the|strong=\"H5921\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, that|strong=\"H3478\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself have|strong=\"H3068\"* taken|strong=\"H3947\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* from|strong=\"H3478\"* among|strong=\"H8432\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* are|strong=\"H1121\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H3478\"* you|strong=\"H5414\"*, dedicated|strong=\"H5414\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* do|strong=\"H5647\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* with|strong=\"H1004\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* priesthood|strong=\"H3550\"* for|strong=\"H1004\"* everything|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H1121\"* for|strong=\"H1004\"* that|strong=\"H3605\"* within|strong=\"H1004\"* the|strong=\"H3605\"* veil|strong=\"H6532\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* serve|strong=\"H5647\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* priesthood|strong=\"H3550\"* as|strong=\"H1697\"* a|strong=\"H3068\"* gift|strong=\"H4979\"*. The|strong=\"H3605\"* stranger|strong=\"H2114\"* who|strong=\"H3605\"* comes|strong=\"H7126\"* near|strong=\"H7126\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Aaron, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* myself have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H3605\"* command of|strong=\"H1121\"* my|strong=\"H5414\"* wave offerings|strong=\"H8641\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6918\"* things|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H5414\"* by|strong=\"H3068\"* reason of|strong=\"H1121\"* the|strong=\"H3605\"* anointing|strong=\"H4888\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H2088\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* yours of|strong=\"H1121\"* the|strong=\"H3605\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* from|strong=\"H4480\"* the|strong=\"H3605\"* fire: every|strong=\"H3605\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, even every|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* trespass offering|strong=\"H4503\"* of|strong=\"H1121\"* theirs|strong=\"H4480\"*, which|strong=\"H1931\"* they|strong=\"H1931\"* shall|strong=\"H1121\"* give|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, shall|strong=\"H1121\"* be|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* for|strong=\"H1121\"* you|strong=\"H3605\"* and|strong=\"H1121\"* for|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H2145\"* eat of|strong=\"H3605\"* it|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. Every|strong=\"H3605\"* male|strong=\"H2145\"* shall|strong=\"H2145\"* eat of|strong=\"H3605\"* it|strong=\"H1961\"*. It|strong=\"H1961\"* shall|strong=\"H2145\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* yours|strong=\"H5414\"*, too: the|strong=\"H3605\"* wave|strong=\"H8573\"* offering|strong=\"H8641\"* of|strong=\"H1121\"* their|strong=\"H3605\"* gift|strong=\"H4976\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* wave|strong=\"H8573\"* offerings|strong=\"H8641\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3605\"* daughters|strong=\"H1323\"* with|strong=\"H1004\"* you|strong=\"H5414\"*, as|strong=\"H1121\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H2088\"* clean|strong=\"H2889\"* in|strong=\"H3478\"* your|strong=\"H3605\"* house|strong=\"H1004\"* shall|strong=\"H1121\"* eat of|strong=\"H1121\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "“I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* oil|strong=\"H3323\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H2459\"* of|strong=\"H3068\"* the|strong=\"H3605\"* vintage, and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H3068\"* them|strong=\"H5414\"* which|strong=\"H3068\"* they|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* first-ripe fruits|strong=\"H1061\"* of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3605\"* land, which|strong=\"H3068\"* they|strong=\"H3068\"* bring|strong=\"H1961\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, shall|strong=\"H3068\"* be|strong=\"H1961\"* yours. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* clean|strong=\"H2889\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"* shall|strong=\"H3068\"* eat of|strong=\"H1004\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 14, + "text": "“Everything|strong=\"H3605\"* devoted|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 15, + "text": "Everything|strong=\"H3605\"* that|strong=\"H3605\"* opens the|strong=\"H3605\"* womb|strong=\"H7358\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* which|strong=\"H3068\"* they|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, both|strong=\"H3605\"* of|strong=\"H3068\"* man|strong=\"H3605\"* and|strong=\"H3068\"* animal|strong=\"H1961\"*, shall|strong=\"H3068\"* be|strong=\"H1961\"* yours. Nevertheless, you|strong=\"H3605\"* shall|strong=\"H3068\"* surely|strong=\"H1961\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* man|strong=\"H3605\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* redeem|strong=\"H6299\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* unclean|strong=\"H2931\"* animals|strong=\"H1961\"*." + }, + { + "verseNum": 16, + "text": "You shall|strong=\"H1121\"* redeem|strong=\"H6299\"* those|strong=\"H1121\"* who|strong=\"H1931\"* are|strong=\"H1121\"* to|strong=\"H1121\"* be|strong=\"H1121\"* redeemed|strong=\"H6299\"* of|strong=\"H1121\"* them|strong=\"H1121\"* from|strong=\"H1121\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"*, according|strong=\"H3701\"* to|strong=\"H1121\"* your|strong=\"H3701\"* estimation|strong=\"H6187\"*, for|strong=\"H1121\"* five|strong=\"H2568\"* shekels|strong=\"H8255\"* of|strong=\"H1121\"* money|strong=\"H3701\"*, according|strong=\"H3701\"* to|strong=\"H1121\"* the|strong=\"H1121\"* shekel|strong=\"H8255\"*+ 18:16 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* the|strong=\"H1121\"* sanctuary|strong=\"H6944\"*, which|strong=\"H1931\"* weighs twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*.+ 18:16 A gerah is about 0.5 grams or about 7.7 grains.*" + }, + { + "verseNum": 17, + "text": "“But|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* redeem|strong=\"H6299\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* cow|strong=\"H7794\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* sheep|strong=\"H3775\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* a|strong=\"H3068\"* goat|strong=\"H5795\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*. You|strong=\"H5921\"* shall|strong=\"H3068\"* sprinkle|strong=\"H2236\"* their|strong=\"H3068\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* burn|strong=\"H6999\"* their|strong=\"H3068\"* fat|strong=\"H2459\"* for|strong=\"H5921\"* an|strong=\"H3068\"* offering|strong=\"H6999\"* made|strong=\"H3068\"* by|strong=\"H5921\"* fire, for|strong=\"H5921\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H1961\"* meat|strong=\"H1320\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* yours, as|strong=\"H1961\"* the|strong=\"H1961\"* wave|strong=\"H8573\"* offering|strong=\"H8573\"* breast|strong=\"H2373\"* and|strong=\"H3225\"* as|strong=\"H1961\"* the|strong=\"H1961\"* right|strong=\"H3225\"* thigh|strong=\"H7785\"*, it|strong=\"H1961\"* shall|strong=\"H1320\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* wave offerings|strong=\"H8641\"* of|strong=\"H1121\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H1931\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* offer|strong=\"H7311\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"* with|strong=\"H3068\"* you|strong=\"H5414\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* portion|strong=\"H2706\"* forever|strong=\"H5769\"*. It|strong=\"H5414\"* is|strong=\"H3068\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* salt|strong=\"H4417\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* you|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3478\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* with|strong=\"H3068\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Aaron, “You|strong=\"H3808\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* their|strong=\"H3068\"* land|strong=\"H5159\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H1961\"* any|strong=\"H1961\"* portion|strong=\"H2506\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. I|strong=\"H3808\"* am|strong=\"H1961\"* your|strong=\"H3068\"* portion|strong=\"H2506\"* and|strong=\"H1121\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "“To|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* for|strong=\"H1121\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, in|strong=\"H3478\"* return|strong=\"H2500\"* for|strong=\"H1121\"* their|strong=\"H3605\"* service|strong=\"H5656\"* which|strong=\"H1992\"* they|strong=\"H1992\"* serve|strong=\"H5647\"*, even the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 22, + "text": "Henceforth|strong=\"H5750\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* come|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H5375\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, lest they|strong=\"H3808\"* bear|strong=\"H5375\"* sin|strong=\"H2399\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"* shall|strong=\"H1121\"* do|strong=\"H5647\"* the|strong=\"H5375\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5375\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*. It|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H3808\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"* throughout|strong=\"H1755\"* your|strong=\"H5375\"* generations|strong=\"H1755\"*. Among|strong=\"H8432\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, they|strong=\"H1992\"* shall|strong=\"H1121\"* have|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* offer|strong=\"H7311\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3478\"* them|strong=\"H5414\"*, ‘Among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* they|strong=\"H1992\"* shall|strong=\"H3068\"* have|strong=\"H3068\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"*.’”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 26, + "text": "“Moreover|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H3588\"* tithe|strong=\"H4643\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* from|strong=\"H4480\"* them|strong=\"H5414\"* for|strong=\"H3588\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* up|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* of|strong=\"H1121\"* it|strong=\"H5414\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* the|strong=\"H3588\"* tithe|strong=\"H4643\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H4480\"* wave offering|strong=\"H8641\"* shall|strong=\"H3342\"* be|strong=\"H4480\"* credited|strong=\"H2803\"* to|strong=\"H2803\"* you|strong=\"H4480\"*, as|strong=\"H2803\"* though it|strong=\"H2803\"* were|strong=\"H4480\"* the|strong=\"H4480\"* grain|strong=\"H1715\"* of|strong=\"H4480\"* the|strong=\"H4480\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H1715\"* as|strong=\"H2803\"* the|strong=\"H4480\"* fullness of|strong=\"H4480\"* the|strong=\"H4480\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 28, + "text": "Thus|strong=\"H3651\"* you|strong=\"H5414\"* also|strong=\"H1571\"* shall|strong=\"H3548\"* offer|strong=\"H7311\"* a|strong=\"H3068\"* wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tithes|strong=\"H4643\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* receive|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* it|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"* to|strong=\"H3478\"* Aaron the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 29, + "text": "Out|strong=\"H4480\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gifts|strong=\"H4979\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* every|strong=\"H3605\"* wave offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* best|strong=\"H2459\"* parts, even|strong=\"H3068\"* the|strong=\"H3605\"* holy|strong=\"H4720\"* part|strong=\"H4480\"* of|strong=\"H3068\"* it|strong=\"H3068\"*.’" + }, + { + "verseNum": 30, + "text": "“Therefore you|strong=\"H4480\"* shall|strong=\"H3881\"* tell them|strong=\"H4480\"*, ‘When|strong=\"H4480\"* you|strong=\"H4480\"* heave|strong=\"H7311\"* its|strong=\"H4480\"* best|strong=\"H2459\"* from|strong=\"H4480\"* it|strong=\"H2803\"*, then|strong=\"H7311\"* it|strong=\"H2803\"* shall|strong=\"H3881\"* be|strong=\"H7311\"* credited|strong=\"H2803\"* to|strong=\"H2803\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* as|strong=\"H2803\"* the|strong=\"H4480\"* increase|strong=\"H8393\"* of|strong=\"H4480\"* the|strong=\"H4480\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H3881\"* as|strong=\"H2803\"* the|strong=\"H4480\"* increase|strong=\"H8393\"* of|strong=\"H4480\"* the|strong=\"H4480\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H3588\"* may|strong=\"H1004\"* eat it|strong=\"H1931\"* anywhere|strong=\"H3605\"*, you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3605\"* households|strong=\"H1004\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H3605\"* reward|strong=\"H7939\"* in|strong=\"H1004\"* return|strong=\"H2500\"* for|strong=\"H3588\"* your|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H1004\"* the|strong=\"H3605\"* Tent of|strong=\"H1004\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5921\"* shall|strong=\"H1121\"* bear|strong=\"H5375\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H1121\"* it|strong=\"H5921\"*, when|strong=\"H1121\"* you|strong=\"H5921\"* have|strong=\"H1121\"* heaved|strong=\"H7311\"* from|strong=\"H4480\"* it|strong=\"H5921\"* its|strong=\"H5921\"* best|strong=\"H2459\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* profane|strong=\"H2490\"* the|strong=\"H5921\"* holy|strong=\"H6918\"* things|strong=\"H2490\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H2459\"* you|strong=\"H5921\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.’”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* to|strong=\"H1696\"* Aaron, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* statute|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*. Tell|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H1696\"* bring|strong=\"H5927\"* you|strong=\"H6680\"* a|strong=\"H3068\"* red heifer|strong=\"H6510\"* without|strong=\"H3808\"* spot|strong=\"H8549\"*, in|strong=\"H5921\"* which|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H3808\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* which|strong=\"H3068\"* was|strong=\"H3068\"* never|strong=\"H3808\"* yoked." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3318\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* he|strong=\"H5414\"* shall|strong=\"H3548\"* bring|strong=\"H3318\"* her|strong=\"H5414\"* outside|strong=\"H2351\"* of|strong=\"H6440\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, and|strong=\"H3548\"* one shall|strong=\"H3548\"* kill|strong=\"H7819\"* her|strong=\"H5414\"* before|strong=\"H6440\"* his|strong=\"H5414\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* some of|strong=\"H6440\"* her|strong=\"H3947\"* blood|strong=\"H1818\"* with|strong=\"H6440\"* his|strong=\"H3947\"* finger, and|strong=\"H3548\"* sprinkle|strong=\"H5137\"* her|strong=\"H3947\"* blood|strong=\"H1818\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 5, + "text": "One|strong=\"H1320\"* shall|strong=\"H5869\"* burn|strong=\"H8313\"* the|strong=\"H5921\"* heifer|strong=\"H6510\"* in|strong=\"H5921\"* his|strong=\"H5921\"* sight|strong=\"H5869\"*; her|strong=\"H5921\"* skin|strong=\"H5785\"*, and|strong=\"H5869\"* her|strong=\"H5921\"* meat|strong=\"H1320\"*, and|strong=\"H5869\"* her|strong=\"H5921\"* blood|strong=\"H1818\"*, with|strong=\"H8313\"* her|strong=\"H5921\"* dung|strong=\"H6569\"*, shall|strong=\"H5869\"* he|strong=\"H5921\"* burn|strong=\"H8313\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3947\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* cedar wood|strong=\"H6086\"*, hyssop, and|strong=\"H6086\"* scarlet|strong=\"H8144\"*, and|strong=\"H6086\"* cast|strong=\"H7993\"* it|strong=\"H8432\"* into|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3947\"* burning|strong=\"H8316\"* of|strong=\"H8432\"* the|strong=\"H3947\"* heifer|strong=\"H6510\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3548\"* the|strong=\"H5704\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H3548\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H3548\"* afterward he|strong=\"H5704\"* shall|strong=\"H3548\"* come into|strong=\"H4325\"* the|strong=\"H5704\"* camp|strong=\"H4264\"*, and|strong=\"H3548\"* the|strong=\"H5704\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* who burns|strong=\"H8313\"* her|strong=\"H5704\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* bathe|strong=\"H7364\"* his|strong=\"H3526\"* flesh|strong=\"H1320\"* in|strong=\"H7364\"* water|strong=\"H4325\"*, and|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H1320\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 9, + "text": "“A|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H1931\"* is|strong=\"H1931\"* clean|strong=\"H2889\"* shall|strong=\"H1121\"* gather up|strong=\"H3240\"* the|strong=\"H1961\"* ashes of|strong=\"H1121\"* the|strong=\"H1961\"* heifer|strong=\"H6510\"*, and|strong=\"H1121\"* lay|strong=\"H3240\"* them|strong=\"H1961\"* up|strong=\"H3240\"* outside|strong=\"H2351\"* of|strong=\"H1121\"* the|strong=\"H1961\"* camp|strong=\"H4264\"* in|strong=\"H3478\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* place|strong=\"H4725\"*; and|strong=\"H1121\"* it|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* kept|strong=\"H4931\"* for|strong=\"H4325\"* the|strong=\"H1961\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H4325\"* use|strong=\"H1961\"* in|strong=\"H3478\"* water|strong=\"H4325\"* for|strong=\"H4325\"* cleansing impurity|strong=\"H5079\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* who|strong=\"H1616\"* gathers the|strong=\"H8432\"* ashes of|strong=\"H1121\"* the|strong=\"H8432\"* heifer|strong=\"H6510\"* shall|strong=\"H1121\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H1121\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* the|strong=\"H8432\"* evening|strong=\"H6153\"*. It|strong=\"H8432\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H8432\"* stranger|strong=\"H1616\"* who|strong=\"H1616\"* lives|strong=\"H1481\"* as|strong=\"H5704\"* a|strong=\"H3068\"* foreigner|strong=\"H1121\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, for|strong=\"H5704\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "“He|strong=\"H3117\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* body|strong=\"H5315\"* of|strong=\"H3117\"* any|strong=\"H3605\"* man|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* shall|strong=\"H3117\"* purify|strong=\"H2398\"* himself|strong=\"H1931\"* with|strong=\"H3117\"* water on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*; but|strong=\"H3808\"* if|strong=\"H1931\"* he|strong=\"H1931\"* doesn’t purify|strong=\"H2398\"* himself|strong=\"H1931\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, then|strong=\"H3808\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* he|strong=\"H1931\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 13, + "text": "Whoever|strong=\"H3605\"* touches|strong=\"H5060\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* person|strong=\"H5315\"*, the|strong=\"H3605\"* body|strong=\"H5315\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H3605\"* has|strong=\"H3068\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* doesn’t purify|strong=\"H2398\"* himself|strong=\"H5315\"*, defiles|strong=\"H2930\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*; and|strong=\"H3478\"* that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Israel|strong=\"H3478\"*; because|strong=\"H3588\"* the|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H3588\"* impurity|strong=\"H5079\"* was|strong=\"H3068\"* not|strong=\"H3808\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* unclean|strong=\"H2931\"*. His|strong=\"H3605\"* uncleanness|strong=\"H2932\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "“This|strong=\"H2063\"* is|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"* when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* tent: everyone|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H3117\"* into the|strong=\"H3605\"* tent, and|strong=\"H3117\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3117\"* in|strong=\"H4191\"* the|strong=\"H3605\"* tent, shall|strong=\"H3117\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "Every|strong=\"H3605\"* open|strong=\"H6605\"* vessel|strong=\"H3627\"*, which|strong=\"H1931\"* has|strong=\"H3605\"* no|strong=\"H3605\"* covering|strong=\"H6781\"* bound|strong=\"H6616\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 16, + "text": "“Whoever|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* open|strong=\"H6440\"* field|strong=\"H7704\"* touches|strong=\"H5060\"* one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3117\"* slain|strong=\"H2491\"* with|strong=\"H5921\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* body|strong=\"H6106\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* bone|strong=\"H6106\"* of|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H4191\"*, or|strong=\"H3117\"* a|strong=\"H3068\"* grave|strong=\"H6913\"*, shall|strong=\"H3117\"* be|strong=\"H4191\"* unclean|strong=\"H2930\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "“For|strong=\"H5921\"* the|strong=\"H5921\"* unclean|strong=\"H2931\"*, they|strong=\"H5921\"* shall|strong=\"H4325\"* take|strong=\"H3947\"* of|strong=\"H3627\"* the|strong=\"H5921\"* ashes|strong=\"H6083\"* of|strong=\"H3627\"* the|strong=\"H5921\"* burning|strong=\"H8316\"* of|strong=\"H3627\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H4325\"* running|strong=\"H2416\"* water|strong=\"H4325\"* shall|strong=\"H4325\"* be|strong=\"H5414\"* poured on|strong=\"H5921\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* vessel|strong=\"H3627\"*." + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* clean|strong=\"H2889\"* person|strong=\"H5315\"* shall|strong=\"H5315\"* take|strong=\"H3947\"* hyssop, dip|strong=\"H2881\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* water|strong=\"H4325\"*, and|strong=\"H8033\"* sprinkle|strong=\"H5137\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tent, on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* persons|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H8033\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3605\"* touched|strong=\"H5060\"* the|strong=\"H3605\"* bone|strong=\"H6106\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*, or|strong=\"H4191\"* the|strong=\"H3605\"* grave|strong=\"H6913\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* clean|strong=\"H2889\"* person shall|strong=\"H3117\"* sprinkle|strong=\"H5137\"* on|strong=\"H5921\"* the|strong=\"H5921\"* unclean|strong=\"H2931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* purify|strong=\"H2398\"* him|strong=\"H5921\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes and|strong=\"H3117\"* bathe|strong=\"H7364\"* himself|strong=\"H4325\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2889\"* at|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H5921\"* man|strong=\"H5315\"* who|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* unclean|strong=\"H2931\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* purify|strong=\"H2398\"* himself|strong=\"H5315\"*, that|strong=\"H3588\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H8432\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3068\"* defiled|strong=\"H2930\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H5921\"* water|strong=\"H4325\"* for|strong=\"H3588\"* impurity|strong=\"H5079\"* has|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H2930\"* sprinkled|strong=\"H2236\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1961\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* statute|strong=\"H2708\"* to|strong=\"H5704\"* them|strong=\"H1961\"*. He|strong=\"H5704\"* who sprinkles|strong=\"H5137\"* the|strong=\"H5704\"* water|strong=\"H4325\"* for|strong=\"H5704\"* impurity|strong=\"H5079\"* shall|strong=\"H4325\"* wash|strong=\"H3526\"* his|strong=\"H3526\"* clothes, and|strong=\"H5769\"* he|strong=\"H5704\"* who touches|strong=\"H5060\"* the|strong=\"H5704\"* water|strong=\"H4325\"* for|strong=\"H5704\"* impurity|strong=\"H5079\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* unclean|strong=\"H2930\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 22, + "text": "“Whatever|strong=\"H3605\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"* person|strong=\"H5315\"* touches|strong=\"H5060\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"*; and|strong=\"H5315\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* that|strong=\"H3605\"* touches|strong=\"H5060\"* it|strong=\"H2930\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"*, came|strong=\"H3478\"* into|strong=\"H7223\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"* in|strong=\"H3427\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"*. Miriam|strong=\"H4813\"* died|strong=\"H4191\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"*; and|strong=\"H4872\"* they|strong=\"H3808\"* assembled|strong=\"H6950\"* themselves|strong=\"H5921\"* together|strong=\"H6950\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* against|strong=\"H5921\"* Aaron." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* quarreled|strong=\"H7378\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* spoke, saying, “We|strong=\"H1478\"* wish that|strong=\"H5971\"* we|strong=\"H3068\"* had|strong=\"H3068\"* died|strong=\"H1478\"* when|strong=\"H3068\"* our|strong=\"H3068\"* brothers died|strong=\"H1478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H4100\"* brought|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"* into|strong=\"H6951\"* this|strong=\"H2088\"* wilderness|strong=\"H4057\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* die|strong=\"H4191\"* there|strong=\"H8033\"*, we|strong=\"H3068\"* and|strong=\"H3068\"* our|strong=\"H3068\"* animals?" + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* have|strong=\"H4714\"* you|strong=\"H3808\"* made|strong=\"H4714\"* us|strong=\"H7451\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4100\"* of|strong=\"H4325\"* Egypt|strong=\"H4714\"*, to|strong=\"H5927\"* bring|strong=\"H5927\"* us|strong=\"H7451\"* in|strong=\"H4725\"* to|strong=\"H5927\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* place|strong=\"H4725\"*? It|strong=\"H5927\"* is|strong=\"H2088\"* no|strong=\"H3808\"* place|strong=\"H4725\"* of|strong=\"H4325\"* seed|strong=\"H2233\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* figs|strong=\"H8384\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* vines|strong=\"H1612\"*, or|strong=\"H3808\"* of|strong=\"H4325\"* pomegranates|strong=\"H7416\"*; neither|strong=\"H3808\"* is|strong=\"H2088\"* there|strong=\"H2088\"* any|strong=\"H5927\"* water|strong=\"H4325\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron went|strong=\"H4872\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* to|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H4872\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3068\"* faces|strong=\"H6440\"*. Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "“Take|strong=\"H3947\"* the|strong=\"H5414\"* rod|strong=\"H4294\"*, and|strong=\"H5869\"* assemble|strong=\"H6950\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"*, you|strong=\"H5414\"*, and|strong=\"H5869\"* Aaron your|strong=\"H5414\"* brother, and|strong=\"H5869\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* rock|strong=\"H5553\"* before|strong=\"H4480\"* their|strong=\"H5414\"* eyes|strong=\"H5869\"*, that|strong=\"H5414\"* it|strong=\"H5414\"* pour|strong=\"H5414\"* out|strong=\"H3318\"* its|strong=\"H5414\"* water|strong=\"H4325\"*. You|strong=\"H5414\"* shall|strong=\"H5712\"* bring|strong=\"H3318\"* water|strong=\"H4325\"* to|strong=\"H1696\"* them|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H4294\"* the|strong=\"H5414\"* rock|strong=\"H5553\"*; so|strong=\"H4480\"* you|strong=\"H5414\"* shall|strong=\"H5712\"* give|strong=\"H5414\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"* and|strong=\"H5869\"* their|strong=\"H5414\"* livestock drink|strong=\"H8248\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* took|strong=\"H3947\"* the|strong=\"H6440\"* rod|strong=\"H4294\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron gathered|strong=\"H6950\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* together|strong=\"H6950\"* before|strong=\"H6440\"* the|strong=\"H6440\"* rock|strong=\"H5553\"*, and|strong=\"H4872\"* he|strong=\"H4480\"* said|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H6440\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H6440\"* rebels|strong=\"H4784\"*! Shall|strong=\"H4325\"* we|strong=\"H3068\"* bring|strong=\"H3318\"* water|strong=\"H4325\"* out|strong=\"H3318\"* of|strong=\"H6440\"* this|strong=\"H2088\"* rock|strong=\"H5553\"* for|strong=\"H6440\"* you|strong=\"H6440\"*?”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* rock|strong=\"H5553\"* with|strong=\"H3318\"* his|strong=\"H5221\"* rod|strong=\"H4294\"* twice|strong=\"H6471\"*, and|strong=\"H4872\"* water|strong=\"H4325\"* came|strong=\"H3318\"* out|strong=\"H3318\"* abundantly|strong=\"H7227\"*. The|strong=\"H5221\"* congregation|strong=\"H5712\"* and|strong=\"H4872\"* their|strong=\"H3318\"* livestock drank|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron, “Because|strong=\"H3282\"* you|strong=\"H5414\"* didn’t believe in|strong=\"H3478\"* me|strong=\"H5414\"*, to|strong=\"H3478\"* sanctify|strong=\"H6942\"* me|strong=\"H5414\"* in|strong=\"H3478\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, therefore|strong=\"H3651\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bring|strong=\"H5414\"* this|strong=\"H2088\"* assembly|strong=\"H6951\"* into|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3068\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah|strong=\"H4809\"*;+ 20:13 “Meribah” means “quarreling”.* because|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* strove|strong=\"H7378\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* was|strong=\"H3068\"* sanctified|strong=\"H6942\"* in|strong=\"H3478\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* from|strong=\"H3478\"* Kadesh|strong=\"H6946\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, saying:" + }, + { + "verseNum": 15, + "text": "how our fathers went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*. The|strong=\"H3117\"* Egyptians|strong=\"H4714\"* mistreated us|strong=\"H3117\"* and|strong=\"H3117\"* our fathers." + }, + { + "verseNum": 16, + "text": "When|strong=\"H8085\"* we|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* heard|strong=\"H8085\"* our|strong=\"H3068\"* voice|strong=\"H6963\"*, sent|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H8085\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3068\"* Kadesh|strong=\"H6946\"*, a|strong=\"H3068\"* city|strong=\"H5892\"* in|strong=\"H3068\"* the|strong=\"H8085\"* edge|strong=\"H7097\"* of|strong=\"H3068\"* your|strong=\"H3068\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 17, + "text": "“Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5186\"* land|strong=\"H7704\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* field|strong=\"H7704\"* or|strong=\"H3808\"* through|strong=\"H5674\"* vineyard|strong=\"H3754\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* we|strong=\"H3068\"* drink|strong=\"H8354\"* from|strong=\"H5704\"* the|strong=\"H5704\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H5704\"* wells. We|strong=\"H5704\"* will|strong=\"H4428\"* go|strong=\"H3212\"* along|strong=\"H5674\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s highway|strong=\"H1870\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* turn|strong=\"H5186\"* away|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H5704\"* left|strong=\"H8040\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H4428\"* passed|strong=\"H5674\"* your|strong=\"H5186\"* border|strong=\"H1366\"*.”" + }, + { + "verseNum": 18, + "text": "Edom said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “You|strong=\"H3808\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* me|strong=\"H5674\"*, lest|strong=\"H6435\"* I|strong=\"H3808\"* come|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* the|strong=\"H5674\"* sword|strong=\"H2719\"* against|strong=\"H7125\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H1697\"* to|strong=\"H3478\"* him|strong=\"H5414\"*, “We|strong=\"H1697\"* will|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5674\"* the|strong=\"H5414\"* highway|strong=\"H4546\"*; and|strong=\"H1121\"* if|strong=\"H1121\"* we|strong=\"H3068\"* drink|strong=\"H8354\"* your|strong=\"H5414\"* water|strong=\"H4325\"*, I|strong=\"H5414\"* and|strong=\"H1121\"* my|strong=\"H5414\"* livestock|strong=\"H4735\"*, then|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* its|strong=\"H5414\"* price|strong=\"H4377\"*. Only|strong=\"H7535\"* let|strong=\"H5414\"* me|strong=\"H5414\"*, without doing|strong=\"H8354\"* anything|strong=\"H1697\"* else, pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H5674\"* my|strong=\"H5414\"* feet|strong=\"H7272\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3027\"* said|strong=\"H3318\"*, “You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H3027\"*.” Edom came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* him|strong=\"H3027\"* with|strong=\"H3318\"* many|strong=\"H3808\"* people|strong=\"H5971\"*, and|strong=\"H3027\"* with|strong=\"H3318\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Thus Edom refused|strong=\"H3985\"* to|strong=\"H3478\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* passage|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H5414\"* border|strong=\"H1366\"*, so|strong=\"H5414\"* Israel|strong=\"H3478\"* turned|strong=\"H5186\"* away|strong=\"H5674\"* from|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3605\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kadesh|strong=\"H6946\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron in|strong=\"H5921\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land|strong=\"H1366\"* of|strong=\"H3068\"* Edom, saying," + }, + { + "verseNum": 24, + "text": "“Aaron shall|strong=\"H1121\"* be|strong=\"H3808\"* gathered|strong=\"H3478\"* to|strong=\"H3478\"* his|strong=\"H5414\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* enter into|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H5971\"* I|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* my|strong=\"H5414\"* word|strong=\"H6310\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah|strong=\"H4809\"*." + }, + { + "verseNum": 25, + "text": "Take|strong=\"H3947\"* Aaron and|strong=\"H1121\"* Eleazar his|strong=\"H3947\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* bring|strong=\"H5927\"* them|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H1121\"* strip|strong=\"H6584\"* Aaron of|strong=\"H1121\"* his|strong=\"H6584\"* garments, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H1121\"* on|strong=\"H3847\"* Eleazar his|strong=\"H6584\"* son|strong=\"H1121\"*. Aaron shall|strong=\"H1121\"* be|strong=\"H4191\"* gathered, and|strong=\"H1121\"* shall|strong=\"H1121\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 27, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*. They|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 28, + "text": "Moses|strong=\"H4872\"* stripped|strong=\"H6584\"* Aaron of|strong=\"H1121\"* his|strong=\"H4480\"* garments, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H3381\"* on|strong=\"H3847\"* Eleazar his|strong=\"H4480\"* son|strong=\"H1121\"*. Aaron died|strong=\"H4191\"* there|strong=\"H8033\"* on|strong=\"H3847\"* the|strong=\"H4480\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*, and|strong=\"H1121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Eleazar came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Aaron was|strong=\"H3478\"* dead|strong=\"H1478\"*, they|strong=\"H3588\"* wept|strong=\"H1058\"* for|strong=\"H3588\"* Aaron thirty|strong=\"H7970\"* days|strong=\"H3117\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8085\"* Canaanite|strong=\"H3669\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arad|strong=\"H6166\"*, who|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* South|strong=\"H5045\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* by|strong=\"H1870\"* the|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H4428\"* Atharim. He|strong=\"H3588\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* took|strong=\"H7617\"* some|strong=\"H4480\"* of|strong=\"H4428\"* them|strong=\"H7617\"* captive|strong=\"H7617\"*." + }, + { + "verseNum": 2, + "text": "Israel|strong=\"H3478\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* said, “If you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H5414\"* deliver|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H8085\"* Canaanites|strong=\"H3669\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H5414\"* and|strong=\"H3478\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*. The|strong=\"H8085\"* name|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H8085\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Hormah|strong=\"H2767\"*.+ 21:3 “Hormah” means “destruction”.*" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5971\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, to|strong=\"H1870\"* go|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H1870\"* land of|strong=\"H2022\"* Edom. The|strong=\"H1870\"* soul|strong=\"H5315\"* of|strong=\"H2022\"* the|strong=\"H1870\"* people|strong=\"H5971\"* was|strong=\"H5315\"* very discouraged|strong=\"H7114\"* because|strong=\"H1870\"* of|strong=\"H2022\"* the|strong=\"H1870\"* journey|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* spoke|strong=\"H1696\"* against|strong=\"H5927\"* God and|strong=\"H4872\"* against|strong=\"H5927\"* Moses|strong=\"H4872\"*: “Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H3588\"* brought|strong=\"H5927\"* us|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H4100\"* of|strong=\"H4325\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*? For|strong=\"H3588\"* there|strong=\"H5927\"* is|strong=\"H4100\"* no|strong=\"H5927\"* bread|strong=\"H3899\"*, there|strong=\"H5927\"* is|strong=\"H4100\"* no|strong=\"H5927\"* water|strong=\"H4325\"*, and|strong=\"H4872\"* our|strong=\"H3588\"* soul|strong=\"H5315\"* loathes this|strong=\"H1696\"* disgusting food|strong=\"H3899\"*!”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* venomous snakes|strong=\"H5175\"* among|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* bit|strong=\"H5391\"* the|strong=\"H3068\"* people|strong=\"H5971\"*. Many|strong=\"H7227\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* said|strong=\"H1696\"*, “We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H4872\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Pray|strong=\"H6419\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* serpents|strong=\"H5175\"* from|strong=\"H5493\"* us|strong=\"H5921\"*.” Moses|strong=\"H4872\"* prayed|strong=\"H6419\"* for|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Make|strong=\"H6213\"* a|strong=\"H3068\"* venomous snake, and|strong=\"H4872\"* set|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pole|strong=\"H5251\"*. It|strong=\"H7760\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H7200\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* bitten|strong=\"H5391\"*, when|strong=\"H1961\"* he|strong=\"H6213\"* sees|strong=\"H7200\"* it|strong=\"H7760\"*, shall|strong=\"H3068\"* live|strong=\"H2425\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* made|strong=\"H6213\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*, and|strong=\"H4872\"* set|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pole|strong=\"H5251\"*. If|strong=\"H1961\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"* had|strong=\"H1961\"* bitten|strong=\"H5391\"* any|strong=\"H6213\"* man, when|strong=\"H1961\"* he|strong=\"H6213\"* looked|strong=\"H5027\"* at|strong=\"H5921\"* the|strong=\"H5921\"* serpent|strong=\"H5175\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*, he|strong=\"H6213\"* lived|strong=\"H2425\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Oboth." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Oboth, and|strong=\"H6440\"* encamped|strong=\"H2583\"* at|strong=\"H2583\"* Iyeabarim, in|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* which|strong=\"H4057\"* is|strong=\"H4124\"* before|strong=\"H6440\"* Moab|strong=\"H4124\"*, toward|strong=\"H5921\"* the|strong=\"H6440\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 12, + "text": "From|strong=\"H5265\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"*, and|strong=\"H8033\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H8033\"* valley|strong=\"H5158\"* of|strong=\"H5158\"* Zered|strong=\"H2218\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"H5265\"* there|strong=\"H8033\"* they|strong=\"H3588\"* traveled|strong=\"H5265\"*, and|strong=\"H8033\"* encamped|strong=\"H2583\"* on|strong=\"H3318\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Arnon, which|strong=\"H8033\"* is|strong=\"H4124\"* in|strong=\"H2583\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* that|strong=\"H3588\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1366\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Amorites; for|strong=\"H3588\"* the|strong=\"H3588\"* Arnon is|strong=\"H4124\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, between|strong=\"H2583\"* Moab|strong=\"H4124\"* and|strong=\"H8033\"* the|strong=\"H3588\"* Amorites." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* it|strong=\"H5921\"* is|strong=\"H3068\"* said|strong=\"H3651\"* in|strong=\"H5921\"* \\+w The|strong=\"H5921\"\\+w* \\+w Book|strong=\"H5612\"\\+w* \\+w of|strong=\"H3068\"\\+w* \\+w the|strong=\"H5921\"\\+w* \\+w Wars|strong=\"H4421\"\\+w* \\+w of|strong=\"H3068\"\\+w* \\+w Yahweh|strong=\"H3068\"\\+w**, “Vaheb in|strong=\"H5921\"* Suphah|strong=\"H5492\"*, the|strong=\"H5921\"* valleys|strong=\"H5158\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Arnon," + }, + { + "verseNum": 15, + "text": "the|strong=\"H5186\"* slope of|strong=\"H3427\"* the|strong=\"H5186\"* valleys|strong=\"H5158\"* that|strong=\"H5158\"* incline|strong=\"H5186\"* toward the|strong=\"H5186\"* dwelling|strong=\"H3427\"* of|strong=\"H3427\"* Ar|strong=\"H6144\"*, leans|strong=\"H8172\"* on|strong=\"H3427\"* the|strong=\"H5186\"* border|strong=\"H1366\"* of|strong=\"H3427\"* Moab|strong=\"H4124\"*.”" + }, + { + "verseNum": 16, + "text": "From|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled to|strong=\"H3068\"* Beer; that|strong=\"H5971\"* is|strong=\"H3068\"* the|strong=\"H5414\"* well of|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Gather the|strong=\"H5414\"* people|strong=\"H5971\"* together|strong=\"H5971\"*, and|strong=\"H4872\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6030\"* Israel|strong=\"H3478\"* sang|strong=\"H7891\"* this|strong=\"H2063\"* song|strong=\"H7892\"*:" + }, + { + "verseNum": 18, + "text": "the|strong=\"H5971\"* well, which|strong=\"H5971\"* the|strong=\"H5971\"* princes|strong=\"H8269\"* dug|strong=\"H2658\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1120\"* from Mattanah|strong=\"H4980\"* to|strong=\"H5160\"* Nahaliel|strong=\"H5160\"*; and|strong=\"H1120\"* from Nahaliel|strong=\"H5160\"* to|strong=\"H5160\"* Bamoth|strong=\"H1120\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H7218\"* from|strong=\"H6440\"* Bamoth|strong=\"H1120\"* to|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* that|strong=\"H7218\"* is|strong=\"H4124\"* in|strong=\"H5921\"* the|strong=\"H6440\"* field|strong=\"H7704\"* of|strong=\"H7218\"* Moab|strong=\"H4124\"*, to|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, which|strong=\"H7704\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7971\"* Amorites, saying," + }, + { + "verseNum": 22, + "text": "“Let|strong=\"H5186\"* me|strong=\"H5674\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5186\"* land|strong=\"H7704\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* turn|strong=\"H5186\"* away|strong=\"H5674\"* into|strong=\"H3212\"* field|strong=\"H7704\"* or|strong=\"H3808\"* vineyard|strong=\"H3754\"*. We|strong=\"H5704\"* will|strong=\"H4428\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H4428\"* the|strong=\"H5704\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H5704\"* wells. We|strong=\"H5704\"* will|strong=\"H4428\"* go|strong=\"H3212\"* by|strong=\"H5674\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s highway|strong=\"H1870\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H4428\"* passed|strong=\"H5674\"* your|strong=\"H5186\"* border|strong=\"H1366\"*.”" + }, + { + "verseNum": 23, + "text": "Sihon|strong=\"H5511\"* would|strong=\"H3478\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H3605\"* border|strong=\"H1366\"*, but|strong=\"H3808\"* Sihon|strong=\"H5511\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H5971\"*, and|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* into|strong=\"H3318\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H3478\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Jahaz|strong=\"H3096\"*. He|strong=\"H3605\"* fought|strong=\"H3898\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "Israel|strong=\"H3478\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3478\"* the|strong=\"H3588\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* his|strong=\"H5221\"* land|strong=\"H1366\"* from|strong=\"H3478\"* the|strong=\"H3588\"* Arnon to|strong=\"H5704\"* the|strong=\"H3588\"* Jabbok|strong=\"H2999\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* was|strong=\"H3478\"* fortified." + }, + { + "verseNum": 25, + "text": "Israel|strong=\"H3478\"* took|strong=\"H3947\"* all|strong=\"H3605\"* these|strong=\"H3947\"* cities|strong=\"H5892\"*. Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Amorites, in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H3478\"* in|strong=\"H3427\"* all|strong=\"H3605\"* its|strong=\"H3605\"* villages|strong=\"H1323\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* Heshbon|strong=\"H2809\"* was|strong=\"H1931\"* the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* had|strong=\"H4428\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* former|strong=\"H7223\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, and|strong=\"H4428\"* taken|strong=\"H3947\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land out|strong=\"H3947\"* of|strong=\"H4428\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Arnon." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3651\"* those|strong=\"H5921\"* who|strong=\"H1129\"* speak|strong=\"H4911\"* in|strong=\"H5921\"* proverbs|strong=\"H4911\"* say," + }, + { + "verseNum": 28, + "text": "for|strong=\"H3588\"* a|strong=\"H3068\"* fire has|strong=\"H3588\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1167\"* Heshbon|strong=\"H2809\"*," + }, + { + "verseNum": 29, + "text": "Woe to|strong=\"H5414\"* you|strong=\"H5414\"*, Moab|strong=\"H4124\"*!" + }, + { + "verseNum": 30, + "text": "We|strong=\"H5704\"* have|strong=\"H2809\"* shot|strong=\"H3384\"* at|strong=\"H8074\"* them|strong=\"H5704\"*." + }, + { + "verseNum": 31, + "text": "Thus Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* the|strong=\"H3427\"* Amorites." + }, + { + "verseNum": 32, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H3423\"* Jazer|strong=\"H3270\"*. They|strong=\"H8033\"* took|strong=\"H3920\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H4872\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* Amorites who|strong=\"H1323\"* were|strong=\"H1323\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H1931\"* turned|strong=\"H6437\"* and|strong=\"H4428\"* went|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*. Og|strong=\"H5747\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* them|strong=\"H3318\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Edrei." + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Don’t fear|strong=\"H3372\"* him|strong=\"H5414\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H6213\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* his|strong=\"H3605\"* land. You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H5414\"* as|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*.”" + }, + { + "verseNum": 35, + "text": "So|strong=\"H1115\"* they|strong=\"H5704\"* struck|strong=\"H5221\"* him|strong=\"H5221\"*, with|strong=\"H5971\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* there|strong=\"H3605\"* were|strong=\"H5971\"* no|strong=\"H1115\"* survivors|strong=\"H8300\"*; and|strong=\"H1121\"* they|strong=\"H5704\"* possessed|strong=\"H3423\"* his|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5676\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H5676\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"* at|strong=\"H2583\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 2, + "text": "Balak|strong=\"H1111\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Amorites." + }, + { + "verseNum": 3, + "text": "Moab|strong=\"H4124\"* was|strong=\"H3478\"* very|strong=\"H3966\"* afraid|strong=\"H1481\"* of|strong=\"H1121\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* many|strong=\"H7227\"*. Moab|strong=\"H4124\"* was|strong=\"H3478\"* distressed|strong=\"H6973\"* because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Moab|strong=\"H4124\"* said to|strong=\"H6256\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*, “Now|strong=\"H6258\"* this|strong=\"H1931\"* multitude|strong=\"H6951\"* will|strong=\"H4428\"* lick|strong=\"H3897\"* up|strong=\"H3897\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* around|strong=\"H5439\"* us|strong=\"H5439\"*, as|strong=\"H1121\"* the|strong=\"H3605\"* ox|strong=\"H7794\"* licks|strong=\"H3897\"* up|strong=\"H3897\"* the|strong=\"H3605\"* grass|strong=\"H3418\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* Balaam|strong=\"H1109\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, to|strong=\"H3318\"* Pethor|strong=\"H6604\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* by|strong=\"H5921\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, to|strong=\"H3318\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H7121\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* call|strong=\"H7121\"* him|strong=\"H7121\"*, saying, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H1931\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* surface|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H5921\"* earth, and|strong=\"H1121\"* they|strong=\"H5921\"* are|strong=\"H5971\"* staying|strong=\"H3427\"* opposite|strong=\"H4136\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Please|strong=\"H4994\"* come|strong=\"H3212\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"*, and|strong=\"H3212\"* curse|strong=\"H1288\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H3588\"* me|strong=\"H4994\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* too|strong=\"H4480\"* mighty|strong=\"H6099\"* for|strong=\"H3588\"* me|strong=\"H4994\"*. Perhaps|strong=\"H3588\"* I|strong=\"H3588\"* shall|strong=\"H5971\"* prevail|strong=\"H3201\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3201\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*, and|strong=\"H3212\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3201\"* drive|strong=\"H1644\"* them|strong=\"H5221\"* out|strong=\"H1644\"* of|strong=\"H4480\"* the|strong=\"H3588\"* land; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* bless|strong=\"H1288\"* is|strong=\"H2088\"* blessed|strong=\"H1288\"*, and|strong=\"H3212\"* he|strong=\"H1931\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* curse|strong=\"H1288\"* is|strong=\"H2088\"* cursed|strong=\"H1288\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H1697\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* Moab|strong=\"H4124\"* and|strong=\"H3027\"* the|strong=\"H1697\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"* departed|strong=\"H3212\"* with|strong=\"H1696\"* the|strong=\"H1697\"* rewards of|strong=\"H3027\"* divination|strong=\"H7081\"* in|strong=\"H3212\"* their|strong=\"H3027\"* hand|strong=\"H3027\"*. They|strong=\"H1697\"* came|strong=\"H3212\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"*, and|strong=\"H3027\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3027\"* the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H3027\"* Balak|strong=\"H1111\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7725\"*, “Lodge|strong=\"H3885\"* here|strong=\"H6311\"* this|strong=\"H1696\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* I|strong=\"H1697\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"*.” The|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* stayed|strong=\"H3427\"* with|strong=\"H5973\"* Balaam|strong=\"H1109\"*." + }, + { + "verseNum": 9, + "text": "God|strong=\"H4310\"* came to|strong=\"H5973\"* Balaam|strong=\"H1109\"*, and|strong=\"H1109\"* said, “Who|strong=\"H4310\"* are|strong=\"H4310\"* these men with|strong=\"H5973\"* you|strong=\"H5973\"*?”" + }, + { + "verseNum": 10, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H7971\"* God|strong=\"H7971\"*, “Balak|strong=\"H1111\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, has|strong=\"H4428\"* said to|strong=\"H7971\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 11, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3680\"* people|strong=\"H5971\"* that|strong=\"H5971\"* has|strong=\"H5869\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"* covers|strong=\"H3680\"* the|strong=\"H3680\"* surface|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3680\"* earth. Now|strong=\"H6258\"*, come|strong=\"H3318\"* curse|strong=\"H6895\"* them|strong=\"H3318\"* for|strong=\"H4714\"* me|strong=\"H3318\"*. Perhaps I|strong=\"H2009\"* shall|strong=\"H5971\"* be|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H3318\"*, and|strong=\"H3212\"* shall|strong=\"H5971\"* drive|strong=\"H1644\"* them|strong=\"H3318\"* out|strong=\"H3318\"*.’”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H3808\"* said to|strong=\"H3212\"* Balaam|strong=\"H1109\"*, “You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* with|strong=\"H5973\"* them|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* curse|strong=\"H1288\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* blessed|strong=\"H1288\"*.”" + }, + { + "verseNum": 13, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1980\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, and|strong=\"H1980\"* said to|strong=\"H1980\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Balak|strong=\"H1111\"*, “Go|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H3068\"* land; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* refuses|strong=\"H3985\"* to|strong=\"H1980\"* permit|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H6965\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1980\"* they went|strong=\"H1980\"* to|strong=\"H1980\"* Balak|strong=\"H1111\"*, and|strong=\"H1980\"* said, “Balaam|strong=\"H1109\"* refuses|strong=\"H3985\"* to|strong=\"H1980\"* come|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H1980\"*.”" + }, + { + "verseNum": 15, + "text": "Balak|strong=\"H1111\"* again|strong=\"H5750\"* sent|strong=\"H7971\"* princes|strong=\"H8269\"*, more|strong=\"H3254\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* honorable|strong=\"H3513\"* than|strong=\"H7227\"* they." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3541\"* came|strong=\"H1980\"* to|strong=\"H1980\"* Balaam|strong=\"H1109\"*, and|strong=\"H1121\"* said to|strong=\"H1980\"* him|strong=\"H1980\"*, “Balak|strong=\"H1111\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"* says|strong=\"H3541\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* nothing hinder|strong=\"H4513\"* you|strong=\"H4994\"* from|strong=\"H1980\"* coming|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H4994\"*," + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* promote|strong=\"H6213\"* you|strong=\"H3588\"* to|strong=\"H3212\"* very|strong=\"H3966\"* great|strong=\"H3966\"* honor|strong=\"H3513\"*, and|strong=\"H3212\"* whatever|strong=\"H3605\"* you|strong=\"H3588\"* say to|strong=\"H3212\"* me|strong=\"H4994\"* I|strong=\"H3588\"* will|strong=\"H5971\"* do|strong=\"H6213\"*. Please|strong=\"H4994\"* come|strong=\"H3212\"* therefore|strong=\"H3588\"*, and|strong=\"H3212\"* curse|strong=\"H6895\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H3588\"* me|strong=\"H4994\"*.’”" + }, + { + "verseNum": 18, + "text": "Balaam|strong=\"H1109\"* answered|strong=\"H6030\"* the|strong=\"H5414\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Balak|strong=\"H1111\"*, “If Balak|strong=\"H1111\"* would|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* his|strong=\"H5414\"* house|strong=\"H1004\"* full|strong=\"H4393\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, I|strong=\"H5414\"* can|strong=\"H3201\"*’t go|strong=\"H5674\"* beyond|strong=\"H5674\"* the|strong=\"H5414\"* word|strong=\"H6310\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* my|strong=\"H5414\"* God|strong=\"H3068\"*, to|strong=\"H3201\"* do|strong=\"H6213\"* less|strong=\"H6996\"* or|strong=\"H3808\"* more|strong=\"H1419\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* stay|strong=\"H3427\"* here|strong=\"H2088\"* tonight|strong=\"H3915\"* as|strong=\"H1571\"* well|strong=\"H1571\"*, that|strong=\"H3045\"* I|strong=\"H6258\"* may|strong=\"H4994\"* know|strong=\"H3045\"* what|strong=\"H4100\"* else|strong=\"H3254\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 20, + "text": "God came|strong=\"H3212\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"* at|strong=\"H6213\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, “If the|strong=\"H6213\"* men|strong=\"H6213\"* have|strong=\"H1697\"* come|strong=\"H3212\"* to|strong=\"H1696\"* call|strong=\"H7121\"* you|strong=\"H6213\"*, rise|strong=\"H6965\"* up|strong=\"H6965\"*, go|strong=\"H3212\"* with|strong=\"H6213\"* them|strong=\"H6213\"*; but|strong=\"H1696\"* only the|strong=\"H6213\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6213\"*, that|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H1697\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 21, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3212\"* the|strong=\"H6965\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* saddled|strong=\"H2280\"* his|strong=\"H6965\"* donkey, and|strong=\"H6965\"* went|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H6965\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 22, + "text": "God|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* because|strong=\"H3588\"* he|strong=\"H1931\"* went|strong=\"H1980\"*; and|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* placed|strong=\"H7392\"* himself|strong=\"H1931\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* as|strong=\"H3068\"* an|strong=\"H3588\"* adversary|strong=\"H7854\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* his|strong=\"H3068\"* donkey, and|strong=\"H1980\"* his|strong=\"H3068\"* two|strong=\"H8147\"* servants|strong=\"H5288\"* were|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, with|strong=\"H3068\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* the|strong=\"H7200\"* donkey turned|strong=\"H5186\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H7200\"* path|strong=\"H1870\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H7200\"* field|strong=\"H7704\"*. Balaam|strong=\"H1109\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* donkey, to|strong=\"H3068\"* turn|strong=\"H5186\"* her|strong=\"H7200\"* into|strong=\"H3212\"* the|strong=\"H7200\"* path|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* a|strong=\"H3068\"* narrow|strong=\"H4934\"* path|strong=\"H4934\"* between the|strong=\"H3068\"* vineyards|strong=\"H3754\"*, a|strong=\"H3068\"* wall|strong=\"H1447\"* being|strong=\"H3068\"* on|strong=\"H3068\"* this|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* on|strong=\"H3068\"* that|strong=\"H3068\"* side|strong=\"H2088\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* she thrust|strong=\"H5221\"* herself to|strong=\"H3068\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*, and|strong=\"H3068\"* crushed|strong=\"H3905\"* Balaam|strong=\"H1109\"*’s foot|strong=\"H7272\"* against|strong=\"H3068\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*. He|strong=\"H3068\"* struck|strong=\"H5221\"* her|strong=\"H7200\"* again|strong=\"H3254\"*." + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H5674\"* further|strong=\"H3254\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* a|strong=\"H3068\"* narrow|strong=\"H6862\"* place|strong=\"H4725\"*, where|strong=\"H4725\"* there|strong=\"H5975\"* was|strong=\"H3068\"* no|strong=\"H5975\"* way|strong=\"H1870\"* to|strong=\"H3068\"* turn|strong=\"H5186\"* either to|strong=\"H3068\"* the|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H3068\"* the|strong=\"H3068\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* donkey saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* she lay|strong=\"H7257\"* down|strong=\"H5221\"* under|strong=\"H8478\"* Balaam|strong=\"H1109\"*. Balaam|strong=\"H1109\"*’s anger burned|strong=\"H2734\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* donkey with|strong=\"H3068\"* his|strong=\"H3068\"* staff|strong=\"H4731\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* opened|strong=\"H6605\"* the|strong=\"H3588\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3588\"* donkey, and|strong=\"H3068\"* she|strong=\"H3588\"* said|strong=\"H6310\"* to|strong=\"H3068\"* Balaam|strong=\"H1109\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* done|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* struck|strong=\"H5221\"* me|strong=\"H6213\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*?”" + }, + { + "verseNum": 29, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3027\"* the|strong=\"H3588\"* donkey, “Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* mocked|strong=\"H5953\"* me|strong=\"H2026\"*, I|strong=\"H3588\"* wish there|strong=\"H3426\"* were|strong=\"H3027\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* in|strong=\"H3027\"* my|strong=\"H3588\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H3863\"* have|strong=\"H3426\"* killed|strong=\"H2026\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H5921\"* donkey said to|strong=\"H5704\"* Balaam|strong=\"H1109\"*, “Am I|strong=\"H3117\"* not|strong=\"H3808\"* your|strong=\"H5921\"* donkey, on|strong=\"H5921\"* which|strong=\"H2088\"* you|strong=\"H5921\"* have|strong=\"H3117\"* ridden|strong=\"H7392\"* all|strong=\"H5704\"* your|strong=\"H5921\"* life|strong=\"H3117\"* long|strong=\"H5704\"* until|strong=\"H5704\"* today|strong=\"H3117\"*? Was|strong=\"H3117\"* I|strong=\"H3117\"* ever|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* habit of|strong=\"H3117\"* doing|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H7200\"* Yahweh|strong=\"H3068\"* opened|strong=\"H1540\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* Balaam|strong=\"H1109\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, with|strong=\"H3068\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* bowed|strong=\"H7812\"* his|strong=\"H3068\"* head|strong=\"H6915\"*, and|strong=\"H3068\"* fell on|strong=\"H1870\"* his|strong=\"H3068\"* face|strong=\"H5869\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* struck|strong=\"H5221\"* your|strong=\"H3068\"* donkey these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*? Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H3068\"* an|strong=\"H5221\"* adversary|strong=\"H7854\"*, because|strong=\"H3588\"* your|strong=\"H3068\"* way|strong=\"H1870\"* is|strong=\"H3068\"* perverse|strong=\"H3399\"* before|strong=\"H5048\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* donkey saw|strong=\"H7200\"* me|strong=\"H6440\"*, and|strong=\"H6440\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* before|strong=\"H6440\"* me|strong=\"H6440\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H7272\"*. Unless|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, surely|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* would|strong=\"H2421\"* have|strong=\"H1571\"* killed|strong=\"H2026\"* you|strong=\"H3588\"*, and|strong=\"H6440\"* saved|strong=\"H2421\"* her|strong=\"H7200\"* alive|strong=\"H2421\"*.”" + }, + { + "verseNum": 34, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* stood|strong=\"H5324\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* against|strong=\"H7125\"* me|strong=\"H7725\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if|strong=\"H3588\"* it|strong=\"H3588\"* displeases|strong=\"H5869\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balaam|strong=\"H1109\"*, “Go|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H3068\"* men|strong=\"H8269\"*; but|strong=\"H1696\"* you|strong=\"H5973\"* shall|strong=\"H3068\"* only speak|strong=\"H1696\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* I|strong=\"H1697\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 36, + "text": "When|strong=\"H3588\"* Balak|strong=\"H1111\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Balaam|strong=\"H1109\"* had|strong=\"H3588\"* come|strong=\"H3318\"*, he|strong=\"H3588\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Moab|strong=\"H4124\"*, which|strong=\"H5892\"* is|strong=\"H5892\"* on|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arnon, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H5921\"* the|strong=\"H5921\"* utmost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H5892\"* the|strong=\"H5921\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 37, + "text": "Balak|strong=\"H1111\"* said|strong=\"H7121\"* to|strong=\"H1980\"* Balaam|strong=\"H1109\"*, “Didn’t I|strong=\"H3201\"* earnestly|strong=\"H7971\"* send|strong=\"H7971\"* for|strong=\"H7121\"* you|strong=\"H7971\"* to|strong=\"H1980\"* summon|strong=\"H7121\"* you|strong=\"H7971\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H7971\"* come|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H7971\"*? Am|strong=\"H1980\"* I|strong=\"H3201\"* not|strong=\"H3808\"* able|strong=\"H3201\"* indeed|strong=\"H3808\"* to|strong=\"H1980\"* promote|strong=\"H3513\"* you|strong=\"H7971\"* to|strong=\"H1980\"* honor|strong=\"H3513\"*?”" + }, + { + "verseNum": 38, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1697\"* come|strong=\"H3201\"* to|strong=\"H1696\"* you|strong=\"H7760\"*. Have|strong=\"H1697\"* I|strong=\"H2009\"* now|strong=\"H6258\"* any|strong=\"H3972\"* power|strong=\"H3201\"* at|strong=\"H3201\"* all|strong=\"H1697\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* anything|strong=\"H1697\"*? I|strong=\"H2009\"* will|strong=\"H1697\"* speak|strong=\"H1696\"* the|strong=\"H7760\"* word|strong=\"H1697\"* that|strong=\"H1697\"* God puts|strong=\"H7760\"* in|strong=\"H1696\"* my|strong=\"H7760\"* mouth|strong=\"H6310\"*.”" + }, + { + "verseNum": 39, + "text": "Balaam|strong=\"H1109\"* went|strong=\"H3212\"* with|strong=\"H5973\"* Balak|strong=\"H1111\"*, and|strong=\"H3212\"* they came|strong=\"H3212\"* to|strong=\"H3212\"* Kiriath Huzoth." + }, + { + "verseNum": 40, + "text": "Balak|strong=\"H1111\"* sacrificed|strong=\"H2076\"* cattle|strong=\"H1241\"* and|strong=\"H7971\"* sheep|strong=\"H6629\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Balaam|strong=\"H1109\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* princes|strong=\"H8269\"* who|strong=\"H8269\"* were|strong=\"H8269\"* with|strong=\"H1241\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 41, + "text": "In|strong=\"H5971\"* the|strong=\"H7200\"* morning|strong=\"H1242\"*, Balak|strong=\"H1111\"* took|strong=\"H3947\"* Balaam|strong=\"H1109\"*, and|strong=\"H5971\"* brought|strong=\"H5927\"* him|strong=\"H7200\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7200\"* high places of|strong=\"H5971\"* Baal|strong=\"H1120\"*; and|strong=\"H5971\"* he|strong=\"H8033\"* saw|strong=\"H7200\"* from|strong=\"H5927\"* there|strong=\"H8033\"* part|strong=\"H7097\"* of|strong=\"H5971\"* the|strong=\"H7200\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3559\"* Balak|strong=\"H1111\"*, “Build|strong=\"H1129\"* here|strong=\"H2088\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* me|strong=\"H3559\"*, and|strong=\"H4196\"* prepare|strong=\"H3559\"* here|strong=\"H2088\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H4196\"* seven|strong=\"H7651\"* rams for|strong=\"H4196\"* me|strong=\"H3559\"*.”" + }, + { + "verseNum": 2, + "text": "Balak|strong=\"H1111\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Balaam|strong=\"H1109\"* had|strong=\"H1109\"* spoken|strong=\"H1696\"*; and|strong=\"H4196\"* Balak|strong=\"H1111\"* and|strong=\"H4196\"* Balaam|strong=\"H1109\"* offered|strong=\"H5927\"* on|strong=\"H5927\"* every|strong=\"H6213\"* altar|strong=\"H4196\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram." + }, + { + "verseNum": 3, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1697\"* to|strong=\"H3212\"* Balak|strong=\"H1111\"*, “Stand|strong=\"H3320\"* by|strong=\"H5921\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* will|strong=\"H3068\"* go|strong=\"H3212\"*. Perhaps Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* me|strong=\"H7200\"*. Whatever|strong=\"H4100\"* he|strong=\"H3068\"* shows|strong=\"H7200\"* me|strong=\"H7200\"* I|strong=\"H5921\"* will|strong=\"H3068\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "God met|strong=\"H7136\"* Balaam|strong=\"H1109\"*, and|strong=\"H4196\"* he|strong=\"H4196\"* said to|strong=\"H5927\"* him|strong=\"H5927\"*, “I have|strong=\"H6499\"* prepared|strong=\"H6186\"* the|strong=\"H5927\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"*, and|strong=\"H4196\"* I have|strong=\"H6499\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H5927\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* put|strong=\"H7760\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H3068\"* Balaam|strong=\"H1109\"*’s mouth|strong=\"H6310\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Return|strong=\"H7725\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, and|strong=\"H3068\"* thus|strong=\"H3541\"* you|strong=\"H7725\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* was|strong=\"H1931\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* his|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, he|strong=\"H1931\"*, and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H4480\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3478\"* said," + }, + { + "verseNum": 8, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H3808\"* curse|strong=\"H6895\"* whom|strong=\"H6895\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* cursed|strong=\"H6895\"*?" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* from|strong=\"H1471\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H7200\"* rocks|strong=\"H6697\"* I|strong=\"H3588\"* see|strong=\"H7200\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* count|strong=\"H4487\"* the|strong=\"H1961\"* dust|strong=\"H6083\"* of|strong=\"H4557\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 11, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H6213\"* Balaam|strong=\"H1109\"*, “What|strong=\"H4100\"* have|strong=\"H3947\"* you|strong=\"H3947\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"*? I|strong=\"H2009\"* took|strong=\"H3947\"* you|strong=\"H3947\"* to|strong=\"H6213\"* curse|strong=\"H6895\"* my|strong=\"H3947\"* enemies, and|strong=\"H6213\"* behold|strong=\"H2009\"*, you|strong=\"H3947\"* have|strong=\"H3947\"* blessed|strong=\"H1288\"* them|strong=\"H6213\"* altogether|strong=\"H1288\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* said|strong=\"H1696\"*, “Must|strong=\"H3808\"* I|strong=\"H7760\"* not|strong=\"H3808\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* puts|strong=\"H7760\"* in|strong=\"H3068\"* my|strong=\"H8104\"* mouth|strong=\"H6310\"*?”" + }, + { + "verseNum": 13, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3212\"* him|strong=\"H7200\"*, “Please come|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H7200\"* to|strong=\"H3212\"* another|strong=\"H7200\"* place|strong=\"H4725\"*, where|strong=\"H8033\"* you|strong=\"H3605\"* may|strong=\"H3808\"* see|strong=\"H7200\"* them|strong=\"H7200\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* see|strong=\"H7200\"* just|strong=\"H3605\"* part|strong=\"H7097\"* of|strong=\"H4725\"* them|strong=\"H7200\"*, and|strong=\"H3212\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* them|strong=\"H7200\"* all|strong=\"H3605\"*. Curse|strong=\"H6895\"* them|strong=\"H7200\"* from|strong=\"H3212\"* there|strong=\"H8033\"* for|strong=\"H3605\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3947\"* took|strong=\"H3947\"* him|strong=\"H3947\"* into|strong=\"H5927\"* the|strong=\"H3947\"* field|strong=\"H7704\"* of|strong=\"H7218\"* Zophim|strong=\"H6839\"*, to|strong=\"H5927\"* the|strong=\"H3947\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, and|strong=\"H7218\"* built|strong=\"H1129\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"*, and|strong=\"H7218\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H7218\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H3947\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* said to|strong=\"H5921\"* Balak|strong=\"H1111\"*, “Stand|strong=\"H3320\"* here|strong=\"H3541\"* by|strong=\"H5921\"* your|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, while|strong=\"H3541\"* I|strong=\"H3541\"* meet|strong=\"H7136\"* God over|strong=\"H5921\"* there|strong=\"H3541\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* met|strong=\"H7136\"* Balaam|strong=\"H1109\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* a|strong=\"H3068\"* word|strong=\"H1697\"* in|strong=\"H3068\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Return|strong=\"H7725\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, and|strong=\"H3068\"* say|strong=\"H1696\"* this|strong=\"H3541\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, he|strong=\"H3068\"* was|strong=\"H3068\"* standing|strong=\"H5324\"* by|strong=\"H5921\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* with|strong=\"H3068\"* him|strong=\"H5921\"*. Balak|strong=\"H1111\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* took|strong=\"H5375\"* up|strong=\"H6965\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "God|strong=\"H3808\"* is|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H6213\"* lie|strong=\"H3576\"*," + }, + { + "verseNum": 20, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3808\"* received|strong=\"H3947\"* a|strong=\"H3068\"* command to|strong=\"H7725\"* bless|strong=\"H1288\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* iniquity|strong=\"H5999\"* in|strong=\"H3478\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 22, + "text": "God brings|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 23, + "text": "Surely|strong=\"H3588\"* there is|strong=\"H4100\"* no|strong=\"H3808\"* enchantment|strong=\"H5173\"* with|strong=\"H3478\"* Jacob|strong=\"H3290\"*;" + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2005\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H5704\"* a|strong=\"H3068\"* lioness|strong=\"H3833\"*." + }, + { + "verseNum": 25, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3808\"* Balaam|strong=\"H1109\"*, “Neither|strong=\"H3808\"* curse|strong=\"H6895\"* them|strong=\"H1288\"* at|strong=\"H3808\"* all|strong=\"H1288\"*, nor|strong=\"H3808\"* bless|strong=\"H1288\"* them|strong=\"H1288\"* at|strong=\"H3808\"* all|strong=\"H1288\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* Balaam|strong=\"H1109\"* answered|strong=\"H6030\"* Balak|strong=\"H1111\"*, “Didn’t I|strong=\"H3808\"* tell|strong=\"H1696\"* you|strong=\"H3605\"*, saying|strong=\"H1696\"*, ‘All|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* speaks|strong=\"H1696\"*, that|strong=\"H3605\"* I|strong=\"H3808\"* must|strong=\"H3808\"* do|strong=\"H6213\"*’?”" + }, + { + "verseNum": 27, + "text": "Balak|strong=\"H1111\"* said to|strong=\"H3212\"* Balaam|strong=\"H1109\"*, “Come|strong=\"H3212\"* now|strong=\"H4994\"*, I|strong=\"H3212\"* will|strong=\"H5869\"* take|strong=\"H3947\"* you|strong=\"H3947\"* to|strong=\"H3212\"* another place|strong=\"H4725\"*; perhaps it|strong=\"H8033\"* will|strong=\"H5869\"* please|strong=\"H4994\"* God that|strong=\"H5869\"* you|strong=\"H3947\"* may|strong=\"H4994\"* curse|strong=\"H6895\"* them|strong=\"H3947\"* for|strong=\"H5869\"* me|strong=\"H4994\"* from|strong=\"H3947\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 28, + "text": "Balak|strong=\"H1111\"* took|strong=\"H3947\"* Balaam|strong=\"H1109\"* to|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Peor|strong=\"H6465\"*, that|strong=\"H7218\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*." + }, + { + "verseNum": 29, + "text": "Balaam|strong=\"H1109\"* said to|strong=\"H3559\"* Balak|strong=\"H1111\"*, “Build|strong=\"H1129\"* seven|strong=\"H7651\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* me|strong=\"H3559\"* here|strong=\"H2088\"*, and|strong=\"H4196\"* prepare|strong=\"H3559\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H4196\"* seven|strong=\"H7651\"* rams for|strong=\"H4196\"* me|strong=\"H3559\"* here|strong=\"H2088\"*.”" + }, + { + "verseNum": 30, + "text": "Balak|strong=\"H1111\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Balaam|strong=\"H1109\"* had|strong=\"H1109\"* said, and|strong=\"H4196\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* and|strong=\"H4196\"* a|strong=\"H3068\"* ram on|strong=\"H5927\"* every|strong=\"H6213\"* altar|strong=\"H4196\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Balaam|strong=\"H1109\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* pleased|strong=\"H5869\"* Yahweh|strong=\"H3068\"* to|strong=\"H1980\"* bless|strong=\"H1288\"* Israel|strong=\"H3478\"*, he|strong=\"H3588\"* didn’t go|strong=\"H1980\"*, as|strong=\"H3068\"* at|strong=\"H3478\"* the|strong=\"H6440\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, to|strong=\"H1980\"* use divination, but|strong=\"H3588\"* he|strong=\"H3588\"* set|strong=\"H7896\"* his|strong=\"H3068\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 2, + "text": "Balaam|strong=\"H1109\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3478\"* he|strong=\"H5921\"* saw|strong=\"H7200\"* Israel|strong=\"H3478\"* dwelling|strong=\"H7931\"* according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H5375\"* tribes|strong=\"H7626\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7626\"* God came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H5002\"*," + }, + { + "verseNum": 4, + "text": "he says|strong=\"H5002\"*, who|strong=\"H7706\"* hears|strong=\"H8085\"* the|strong=\"H5002\"* words of|strong=\"H5869\"* God," + }, + { + "verseNum": 5, + "text": "How|strong=\"H4100\"* goodly|strong=\"H2895\"* are|strong=\"H3478\"* your|strong=\"H3478\"* tents|strong=\"H4908\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "As|strong=\"H3068\"* valleys|strong=\"H5158\"* they|strong=\"H3068\"* are|strong=\"H3068\"* spread|strong=\"H5186\"* out|strong=\"H5186\"*," + }, + { + "verseNum": 7, + "text": "Water|strong=\"H4325\"* shall|strong=\"H4428\"* flow|strong=\"H5140\"* from|strong=\"H4325\"* his|strong=\"H5375\"* buckets|strong=\"H1805\"*." + }, + { + "verseNum": 8, + "text": "God brings|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1288\"* couched|strong=\"H3766\"*, he|strong=\"H1288\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* as|strong=\"H6965\"* a|strong=\"H3068\"* lion|strong=\"H3833\"*," + }, + { + "verseNum": 10, + "text": "Balak|strong=\"H1111\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Balaam|strong=\"H1109\"*, and|strong=\"H2088\"* he|strong=\"H7121\"* struck|strong=\"H5606\"* his|strong=\"H7121\"* hands|strong=\"H3709\"* together|strong=\"H5606\"*. Balak|strong=\"H1111\"* said|strong=\"H7121\"* to|strong=\"H7121\"* Balaam|strong=\"H1109\"*, “I|strong=\"H2009\"* called|strong=\"H7121\"* you|strong=\"H1288\"* to|strong=\"H7121\"* curse|strong=\"H6895\"* my|strong=\"H7121\"* enemies, and|strong=\"H2088\"*, behold|strong=\"H2009\"*, you|strong=\"H1288\"* have|strong=\"H2009\"* altogether|strong=\"H1288\"* blessed|strong=\"H1288\"* them|strong=\"H7121\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H6258\"*, flee|strong=\"H1272\"* to|strong=\"H3068\"* your|strong=\"H3068\"* place|strong=\"H4725\"*, now|strong=\"H6258\"*! I|strong=\"H2009\"* thought to|strong=\"H3068\"* promote|strong=\"H3513\"* you|strong=\"H3513\"* to|strong=\"H3068\"* great|strong=\"H3513\"* honor|strong=\"H3519\"*; but|strong=\"H2009\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H4513\"* you|strong=\"H3513\"* back|strong=\"H4513\"* from|strong=\"H3068\"* honor|strong=\"H3519\"*.”" + }, + { + "verseNum": 12, + "text": "Balaam|strong=\"H1109\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Balak|strong=\"H1111\"*, “Didn’t I|strong=\"H3808\"* also|strong=\"H1571\"* tell|strong=\"H1696\"* your|strong=\"H7971\"* messengers|strong=\"H4397\"* whom you|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 13, + "text": "‘If Balak|strong=\"H1111\"* would|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* his|strong=\"H5414\"* house|strong=\"H1004\"* full|strong=\"H4393\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"*, I|strong=\"H5414\"* can|strong=\"H3201\"*’t go|strong=\"H5674\"* beyond|strong=\"H5674\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, to|strong=\"H1696\"* do|strong=\"H6213\"* either|strong=\"H3808\"* good|strong=\"H2896\"* or|strong=\"H3808\"* bad|strong=\"H7451\"* from|strong=\"H3068\"* my|strong=\"H5414\"* own mind|strong=\"H3820\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* say|strong=\"H1696\"* what|strong=\"H2896\"* Yahweh|strong=\"H3068\"* says|strong=\"H1696\"*’?" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2005\"*, I|strong=\"H3117\"* go|strong=\"H1980\"* to|strong=\"H1980\"* my|strong=\"H6213\"* people|strong=\"H5971\"*. Come|strong=\"H1980\"*, I|strong=\"H3117\"* will|strong=\"H5971\"* inform you|strong=\"H3117\"* what|strong=\"H2088\"* this|strong=\"H2088\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H1980\"* your|strong=\"H6213\"* people|strong=\"H5971\"* in|strong=\"H1980\"* the|strong=\"H6213\"* latter days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H1121\"* said|strong=\"H5002\"*," + }, + { + "verseNum": 16, + "text": "he|strong=\"H3045\"* says|strong=\"H5002\"*, who|strong=\"H3045\"* hears|strong=\"H8085\"* the|strong=\"H5002\"* words of|strong=\"H5869\"* God," + }, + { + "verseNum": 17, + "text": "I|strong=\"H6258\"* see|strong=\"H7200\"* him|strong=\"H7200\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 18, + "text": "Edom shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H3424\"*." + }, + { + "verseNum": 19, + "text": "Out of|strong=\"H5892\"* Jacob|strong=\"H3290\"* shall|strong=\"H5892\"* one|strong=\"H5892\"* have|strong=\"H5892\"* dominion|strong=\"H7287\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H7200\"* looked|strong=\"H7200\"* at|strong=\"H7200\"* Amalek|strong=\"H6002\"*, and|strong=\"H7200\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H7200\"* said," + }, + { + "verseNum": 21, + "text": "He|strong=\"H7760\"* looked|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* Kenite|strong=\"H7017\"*, and|strong=\"H7200\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H7200\"* said," + }, + { + "verseNum": 22, + "text": "Nevertheless|strong=\"H3588\"* Kain|strong=\"H7014\"* shall|strong=\"H4100\"* be|strong=\"H1961\"* wasted|strong=\"H1197\"*," + }, + { + "verseNum": 23, + "text": "He|strong=\"H7760\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H2421\"* said," + }, + { + "verseNum": 24, + "text": "But|strong=\"H1571\"* ships|strong=\"H6716\"* shall|strong=\"H3027\"* come from|strong=\"H3027\"* the|strong=\"H3027\"* coast|strong=\"H3027\"* of|strong=\"H3027\"* Kittim|strong=\"H3794\"*." + }, + { + "verseNum": 25, + "text": "Balaam|strong=\"H1109\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* and|strong=\"H1980\"* returned|strong=\"H7725\"* to|strong=\"H1980\"* his|strong=\"H7725\"* place|strong=\"H4725\"*; and|strong=\"H1980\"* Balak|strong=\"H1111\"* also|strong=\"H1571\"* went|strong=\"H1980\"* his|strong=\"H7725\"* way|strong=\"H1870\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Shittim|strong=\"H7851\"*; and|strong=\"H3478\"* the|strong=\"H2181\"* people|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H3478\"* play|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H3427\"* the|strong=\"H2181\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Moab|strong=\"H4124\"*;" + }, + { + "verseNum": 2, + "text": "for|strong=\"H7121\"* they|strong=\"H5971\"* called|strong=\"H7121\"* the|strong=\"H7121\"* people|strong=\"H5971\"* to|strong=\"H7121\"* the|strong=\"H7121\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* their|strong=\"H7121\"* gods. The|strong=\"H7121\"* people|strong=\"H5971\"* ate and|strong=\"H5971\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H7121\"* their|strong=\"H7121\"* gods." + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* joined|strong=\"H6775\"* himself|strong=\"H3068\"* to|strong=\"H3478\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chiefs|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H4872\"* hang|strong=\"H3363\"* them|strong=\"H7725\"* up|strong=\"H3363\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* before|strong=\"H5048\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3478\"* the|strong=\"H4872\"* judges|strong=\"H8199\"* of|strong=\"H8199\"* Israel|strong=\"H3478\"*, “Everyone kill|strong=\"H2026\"* his|strong=\"H3478\"* men|strong=\"H3478\"* who|strong=\"H3478\"* have|strong=\"H3478\"* joined|strong=\"H6775\"* themselves to|strong=\"H3478\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*.”" + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H7126\"* and|strong=\"H1121\"* brought|strong=\"H7126\"* to|strong=\"H3478\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* a|strong=\"H3068\"* Midianite|strong=\"H4084\"* woman|strong=\"H4084\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, while|strong=\"H2009\"* they|strong=\"H1992\"* were|strong=\"H3478\"* weeping|strong=\"H1058\"* at|strong=\"H3478\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* Phinehas|strong=\"H6372\"*, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H7200\"* priest|strong=\"H3548\"*, saw|strong=\"H7200\"* it|strong=\"H8432\"*, he|strong=\"H3027\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3027\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H7200\"* congregation|strong=\"H5712\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* a|strong=\"H3068\"* spear|strong=\"H7420\"* in|strong=\"H8432\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H8147\"* went|strong=\"H3478\"* after|strong=\"H5921\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* into|strong=\"H5921\"* the|strong=\"H5921\"* pavilion, and|strong=\"H1121\"* thrust|strong=\"H1856\"* both|strong=\"H8147\"* of|strong=\"H1121\"* them|strong=\"H5921\"* through|strong=\"H1856\"*, the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* woman through|strong=\"H1856\"* her|strong=\"H5921\"* body. So|strong=\"H1856\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3478\"* stopped|strong=\"H6113\"* among|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H1961\"* who died|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H1961\"* plague|strong=\"H4046\"* were|strong=\"H1961\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Phinehas|strong=\"H6372\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"*, has|strong=\"H3478\"* turned|strong=\"H7725\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* away|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* that|strong=\"H3478\"* he|strong=\"H3808\"* was|strong=\"H3478\"* jealous|strong=\"H7065\"* with|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* among|strong=\"H8432\"* them|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3478\"* I|strong=\"H5921\"* didn’t consume|strong=\"H3615\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* say, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* give|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* of|strong=\"H1285\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5921\"* offspring|strong=\"H2233\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* priesthood|strong=\"H3550\"*, because|strong=\"H5921\"* he|strong=\"H5921\"* was|strong=\"H1961\"* jealous|strong=\"H7065\"* for|strong=\"H5921\"* his|strong=\"H5921\"* God, and|strong=\"H1121\"* made|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3478\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5221\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* was|strong=\"H8034\"* slain|strong=\"H5221\"*, who|strong=\"H1121\"* was|strong=\"H8034\"* slain|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* Midianite|strong=\"H4084\"* woman|strong=\"H4084\"*, was|strong=\"H8034\"* Zimri|strong=\"H2174\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Salu|strong=\"H5543\"*, a|strong=\"H3068\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* among|strong=\"H8034\"* the|strong=\"H5221\"* Simeonites|strong=\"H8099\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H5221\"* Midianite|strong=\"H4084\"* woman|strong=\"H1323\"* who|strong=\"H1931\"* was|strong=\"H8034\"* slain|strong=\"H5221\"* was|strong=\"H8034\"* Cozbi|strong=\"H3579\"*, the|strong=\"H5221\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Zur|strong=\"H6698\"*. He|strong=\"H1931\"* was|strong=\"H8034\"* head|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H5221\"* people|strong=\"H1931\"* of|strong=\"H1004\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* in|strong=\"H1004\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“Harass|strong=\"H6887\"* the|strong=\"H5221\"* Midianites|strong=\"H4084\"*, and|strong=\"H5221\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*;" + }, + { + "verseNum": 18, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* harassed you|strong=\"H3588\"* with|strong=\"H5921\"* their|strong=\"H1992\"* wiles|strong=\"H5231\"*, wherein|strong=\"H3117\"* they|strong=\"H1992\"* have|strong=\"H1323\"* deceived|strong=\"H5230\"* you|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* Peor|strong=\"H6465\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* incident regarding|strong=\"H5921\"* Cozbi|strong=\"H3579\"*, the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* the|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H3117\"* Midian|strong=\"H4080\"*, their|strong=\"H1992\"* sister, who|strong=\"H1992\"* was|strong=\"H1697\"* slain|strong=\"H5221\"* on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* Peor|strong=\"H6465\"*.”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "After the|strong=\"H3068\"* plague, Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* to|strong=\"H3068\"* Eleazar the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3068\"* priest|strong=\"H3548\"*, saying," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H5375\"* a|strong=\"H3068\"* census|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, by|strong=\"H8141\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"* in|strong=\"H8141\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Take|strong=\"H3318\"* a|strong=\"H3068\"* census, from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Reuben|strong=\"H7205\"*, the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*: of|strong=\"H1121\"* Hanoch|strong=\"H2585\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Hanochites|strong=\"H2599\"*; of|strong=\"H1121\"* Pallu|strong=\"H6396\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Palluites|strong=\"H6384\"*;" + }, + { + "verseNum": 6, + "text": "of|strong=\"H4940\"* Hezron|strong=\"H2696\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Hezronites|strong=\"H2697\"*; of|strong=\"H4940\"* Carmi|strong=\"H3756\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Carmites|strong=\"H3757\"*." + }, + { + "verseNum": 7, + "text": "These are|strong=\"H1961\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Reubenites|strong=\"H7206\"*; and|strong=\"H3967\"* those|strong=\"H1961\"* who|strong=\"H6485\"* were|strong=\"H1961\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H1961\"* were|strong=\"H1961\"* forty-three thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pallu|strong=\"H6396\"*: Eliab." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab: Nemuel|strong=\"H5241\"*, Dathan|strong=\"H1885\"*, and|strong=\"H1121\"* Abiram. These|strong=\"H7121\"* are|strong=\"H1121\"* that|strong=\"H1931\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram who|strong=\"H1931\"* were|strong=\"H1121\"* called|strong=\"H7121\"* by|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"*, who|strong=\"H1931\"* rebelled|strong=\"H5327\"* against|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* against|strong=\"H5921\"* Aaron in|strong=\"H5921\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"* when|strong=\"H3068\"* they|strong=\"H3068\"* rebelled|strong=\"H5327\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3967\"* the|strong=\"H1961\"* earth opened|strong=\"H6605\"* its|strong=\"H1961\"* mouth|strong=\"H6310\"*, and|strong=\"H3967\"* swallowed|strong=\"H1104\"* them|strong=\"H1961\"* up|strong=\"H1104\"* together with|strong=\"H6310\"* Korah|strong=\"H7141\"* when|strong=\"H1961\"* that|strong=\"H1961\"* company|strong=\"H5712\"* died|strong=\"H4194\"*; at|strong=\"H1961\"* the|strong=\"H1961\"* time|strong=\"H1961\"* the|strong=\"H1961\"* fire devoured|strong=\"H1104\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men, and|strong=\"H3967\"* they|strong=\"H6310\"* became|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H5251\"*." + }, + { + "verseNum": 11, + "text": "Notwithstanding, the|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"* didn’t die|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Nemuel|strong=\"H5241\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Nemuelites|strong=\"H5242\"*; of|strong=\"H1121\"* Jamin|strong=\"H3226\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jaminites|strong=\"H3228\"*; of|strong=\"H1121\"* Jachin|strong=\"H3199\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jachinites|strong=\"H3200\"*;" + }, + { + "verseNum": 13, + "text": "of|strong=\"H4940\"* Zerah|strong=\"H2226\"*, the|strong=\"H7586\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7586\"* Zerahites|strong=\"H2227\"*; of|strong=\"H4940\"* Shaul|strong=\"H7586\"*, the|strong=\"H7586\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7586\"* Shaulites|strong=\"H7587\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H8147\"* are|strong=\"H8147\"* the|strong=\"H8147\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H8147\"* Simeonites|strong=\"H8099\"*, twenty-two|strong=\"H6242\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Zephon|strong=\"H6827\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Zephonites|strong=\"H6831\"*; of|strong=\"H1121\"* Haggi|strong=\"H2291\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Haggites|strong=\"H2291\"*; of|strong=\"H1121\"* Shuni|strong=\"H7764\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shunites|strong=\"H7765\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H4940\"* Ozni, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Oznites; of|strong=\"H4940\"* Eri|strong=\"H6179\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Erites|strong=\"H6180\"*;" + }, + { + "verseNum": 17, + "text": "of|strong=\"H4940\"* Arod, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Arodites; of|strong=\"H4940\"* Areli, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Arelites." + }, + { + "verseNum": 18, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, forty thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan. Er|strong=\"H6147\"* and|strong=\"H1121\"* Onan died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* after|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"*: of|strong=\"H1121\"* Shelah|strong=\"H7956\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Shelanites|strong=\"H8024\"*; of|strong=\"H1121\"* Perez|strong=\"H6557\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Perezites|strong=\"H6558\"*; of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Zerahites|strong=\"H2227\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* were|strong=\"H1961\"*: of|strong=\"H1121\"* Hezron|strong=\"H2696\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Hezronites|strong=\"H2697\"*; of|strong=\"H1121\"* Hamul|strong=\"H2538\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Hamulites|strong=\"H2539\"*." + }, + { + "verseNum": 22, + "text": "These are|strong=\"H3063\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"* according to|strong=\"H3063\"* those who|strong=\"H3063\"* were|strong=\"H3063\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, seventy-six thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Tola|strong=\"H8439\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tolaites|strong=\"H8440\"*; of|strong=\"H1121\"* Puvah|strong=\"H6312\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Punites|strong=\"H6324\"*;" + }, + { + "verseNum": 24, + "text": "of|strong=\"H4940\"* Jashub|strong=\"H3437\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Jashubites|strong=\"H3432\"*; of|strong=\"H4940\"* Shimron|strong=\"H8110\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shimronites|strong=\"H8117\"*." + }, + { + "verseNum": 25, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Issachar|strong=\"H3485\"* according to|strong=\"H7969\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, sixty-four thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Sered|strong=\"H5624\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Seredites|strong=\"H5625\"*; of|strong=\"H1121\"* Elon, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Elonites; of|strong=\"H1121\"* Jahleel|strong=\"H3177\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jahleelites|strong=\"H3178\"*." + }, + { + "verseNum": 27, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Zebulunites|strong=\"H2075\"* according to|strong=\"H2568\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, sixty|strong=\"H8346\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* after their families|strong=\"H4940\"*: Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Machirites|strong=\"H4354\"*; and|strong=\"H1121\"* Machir|strong=\"H4353\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*; of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Gileadites|strong=\"H1568\"*." + }, + { + "verseNum": 30, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*: of|strong=\"H1121\"* Iezer, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Iezerites; of|strong=\"H1121\"* Helek|strong=\"H2507\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Helekites|strong=\"H2516\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H7928\"* Asriel, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Asrielites; and|strong=\"H7928\"* Shechem|strong=\"H7928\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shechemites|strong=\"H7930\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H4940\"* Shemida|strong=\"H8061\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shemidaites|strong=\"H8062\"*; and|strong=\"H4940\"* Hepher|strong=\"H2660\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Hepherites|strong=\"H2662\"*." + }, + { + "verseNum": 33, + "text": "Zelophehad|strong=\"H6765\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"*: and|strong=\"H1121\"* the|strong=\"H3588\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"* were|strong=\"H1961\"* Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 34, + "text": "These|strong=\"H8147\"* are|strong=\"H8147\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Manasseh|strong=\"H4519\"*. Those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H8147\"* were|strong=\"H4940\"* fifty-two|strong=\"H2572\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 35, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Shuthelah|strong=\"H7803\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shuthelahites|strong=\"H8364\"*; of|strong=\"H1121\"* Becher|strong=\"H1071\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Becherites|strong=\"H1076\"*; of|strong=\"H1121\"* Tahan|strong=\"H8465\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tahanites|strong=\"H8470\"*." + }, + { + "verseNum": 36, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shuthelah|strong=\"H7803\"*: of|strong=\"H1121\"* Eran|strong=\"H6197\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Eranites|strong=\"H6198\"*." + }, + { + "verseNum": 37, + "text": "These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H8147\"*, thirty-two|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*. These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* after their|strong=\"H1144\"* families|strong=\"H4940\"*: of|strong=\"H1121\"* Bela|strong=\"H1106\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Belaites|strong=\"H1108\"*; of|strong=\"H1121\"* Ashbel, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ashbelites; of|strong=\"H1121\"* Ahiram, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ahiramites;" + }, + { + "verseNum": 39, + "text": "of|strong=\"H4940\"* Shephupham|strong=\"H8197\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shuphamites|strong=\"H7781\"*; of|strong=\"H4940\"* Hupham|strong=\"H2349\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Huphamites|strong=\"H2350\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bela|strong=\"H1106\"* were|strong=\"H1961\"* Ard and|strong=\"H1121\"* Naaman|strong=\"H5283\"*: the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Ardites; and|strong=\"H1121\"* of|strong=\"H1121\"* Naaman|strong=\"H5283\"*, the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* Naamites|strong=\"H5280\"*." + }, + { + "verseNum": 41, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*; and|strong=\"H3967\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"* were|strong=\"H1121\"* forty-five thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 42, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* after their|strong=\"H1835\"* families|strong=\"H4940\"*: of|strong=\"H1121\"* Shuham|strong=\"H7748\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Shuhamites|strong=\"H7749\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* after their|strong=\"H1835\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* Shuhamites|strong=\"H7749\"*, according to|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"*, were|strong=\"H4940\"* sixty-four thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Imnah|strong=\"H3232\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Imnites|strong=\"H3232\"*; of|strong=\"H1121\"* Ishvi|strong=\"H3440\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Ishvites|strong=\"H3441\"*; of|strong=\"H1121\"* Beriah|strong=\"H1283\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Berites." + }, + { + "verseNum": 45, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: of|strong=\"H1121\"* Heber|strong=\"H2268\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Heberites|strong=\"H2277\"*; of|strong=\"H1121\"* Malchiel|strong=\"H4439\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Malchielites|strong=\"H4440\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Asher was|strong=\"H8034\"* Serah|strong=\"H8294\"*." + }, + { + "verseNum": 47, + "text": "These are|strong=\"H1121\"* the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6485\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H6485\"*, fifty-three thousand four|strong=\"H7969\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* after their families|strong=\"H4940\"*: of|strong=\"H1121\"* Jahzeel|strong=\"H3183\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Jahzeelites|strong=\"H3184\"*; of|strong=\"H1121\"* Guni|strong=\"H1476\"*, the|strong=\"H1121\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gunites|strong=\"H1477\"*;" + }, + { + "verseNum": 49, + "text": "of|strong=\"H4940\"* Jezer|strong=\"H3337\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Jezerites|strong=\"H3340\"*; of|strong=\"H4940\"* Shillem|strong=\"H8006\"*, the|strong=\"H4940\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H4940\"* Shillemites|strong=\"H8016\"*." + }, + { + "verseNum": 50, + "text": "These are the|strong=\"H6485\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Naphtali|strong=\"H5321\"* according to|strong=\"H2568\"* their|strong=\"H6485\"* families|strong=\"H4940\"*; and|strong=\"H3967\"* those who|strong=\"H6485\"* were|strong=\"H4940\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* them|strong=\"H6485\"* were|strong=\"H4940\"* forty-five thousand four hundred|strong=\"H3967\"*." + }, + { + "verseNum": 51, + "text": "These are|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* one|strong=\"H1121\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 52, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 53, + "text": "“To|strong=\"H5159\"* these the|strong=\"H8034\"* land|strong=\"H5159\"* shall|strong=\"H8034\"* be|strong=\"H8034\"* divided|strong=\"H2505\"* for|strong=\"H8034\"* an|strong=\"H5159\"* inheritance|strong=\"H5159\"* according to|strong=\"H5159\"* the|strong=\"H8034\"* number|strong=\"H4557\"* of|strong=\"H8034\"* names|strong=\"H8034\"*." + }, + { + "verseNum": 54, + "text": "To|strong=\"H5414\"* the|strong=\"H5414\"* more|strong=\"H7235\"* you|strong=\"H5414\"* shall|strong=\"H6310\"* give|strong=\"H5414\"* the|strong=\"H5414\"* more|strong=\"H7235\"* inheritance|strong=\"H5159\"*, and|strong=\"H6310\"* to|strong=\"H5414\"* the|strong=\"H5414\"* fewer|strong=\"H4592\"* you|strong=\"H5414\"* shall|strong=\"H6310\"* give|strong=\"H5414\"* the|strong=\"H5414\"* less|strong=\"H4591\"* inheritance|strong=\"H5159\"*. To|strong=\"H5414\"* everyone according|strong=\"H6310\"* to|strong=\"H5414\"* those who|strong=\"H7227\"* were|strong=\"H6485\"* counted|strong=\"H6485\"* of|strong=\"H6310\"* him|strong=\"H5414\"* shall|strong=\"H6310\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* be|strong=\"H5414\"* given|strong=\"H5414\"*." + }, + { + "verseNum": 55, + "text": "Notwithstanding, the|strong=\"H5157\"* land|strong=\"H1486\"* shall|strong=\"H8034\"* be|strong=\"H8034\"* divided|strong=\"H2505\"* by|strong=\"H8034\"* lot|strong=\"H1486\"*. According to|strong=\"H8034\"* the|strong=\"H5157\"* names|strong=\"H8034\"* of|strong=\"H4294\"* the|strong=\"H5157\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* their|strong=\"H5157\"* fathers they|strong=\"H8034\"* shall|strong=\"H8034\"* inherit|strong=\"H5157\"*." + }, + { + "verseNum": 56, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* shall|strong=\"H6310\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* be|strong=\"H5159\"* divided|strong=\"H2505\"* between|strong=\"H5921\"* the|strong=\"H5921\"* more|strong=\"H7227\"* and|strong=\"H6310\"* the|strong=\"H5921\"* fewer|strong=\"H4592\"*.”" + }, + { + "verseNum": 57, + "text": "These|strong=\"H3881\"* are those who|strong=\"H3881\"* were|strong=\"H3881\"* counted|strong=\"H6485\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Levites|strong=\"H3881\"* after their|strong=\"H6485\"* families|strong=\"H4940\"*: of|strong=\"H4940\"* Gershon|strong=\"H1648\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Gershonites|strong=\"H1649\"*; of|strong=\"H4940\"* Kohath|strong=\"H6955\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Kohathites|strong=\"H6956\"*; of|strong=\"H4940\"* Merari|strong=\"H4847\"*, the|strong=\"H6485\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H6485\"* Merarites|strong=\"H4848\"*." + }, + { + "verseNum": 58, + "text": "These|strong=\"H3881\"* are the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H3205\"* Levi|strong=\"H3881\"*: the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Libnites|strong=\"H3846\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Hebronites|strong=\"H2276\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Mahlites|strong=\"H4250\"*, the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Mushites|strong=\"H4188\"*, and|strong=\"H3881\"* the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Korahites|strong=\"H7145\"*. Kohath|strong=\"H6955\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amram|strong=\"H6019\"*." + }, + { + "verseNum": 59, + "text": "The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1323\"* Amram|strong=\"H6019\"*’s wife was|strong=\"H8034\"* Jochebed|strong=\"H3115\"*, the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Levi|strong=\"H3878\"*, who|strong=\"H3205\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Levi|strong=\"H3878\"* in|strong=\"H8034\"* Egypt|strong=\"H4714\"*. She bore|strong=\"H3205\"* to|strong=\"H3205\"* Amram|strong=\"H6019\"* Aaron and|strong=\"H4872\"* Moses|strong=\"H4872\"*, and|strong=\"H4872\"* Miriam|strong=\"H4813\"* their|strong=\"H4714\"* sister." + }, + { + "verseNum": 60, + "text": "To|strong=\"H3205\"* Aaron were|strong=\"H3205\"* born|strong=\"H3205\"* Nadab|strong=\"H5070\"* and|strong=\"H5070\"* Abihu, Eleazar and|strong=\"H5070\"* Ithamar." + }, + { + "verseNum": 61, + "text": "Nadab|strong=\"H5070\"* and|strong=\"H3068\"* Abihu died|strong=\"H4191\"* when|strong=\"H3068\"* they|strong=\"H3068\"* offered|strong=\"H7126\"* strange|strong=\"H2114\"* fire before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 62, + "text": "Those|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* of|strong=\"H1121\"* them|strong=\"H5414\"* were|strong=\"H3478\"* twenty-three|strong=\"H6242\"* thousand, every|strong=\"H3605\"* male|strong=\"H2145\"* from|strong=\"H3478\"* a|strong=\"H3068\"* month|strong=\"H2320\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* not|strong=\"H3808\"* counted|strong=\"H6485\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* given|strong=\"H5414\"* them|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 63, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3548\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* by|strong=\"H5921\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* counted|strong=\"H6485\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 64, + "text": "But|strong=\"H3808\"* among|strong=\"H3808\"* these there|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* them|strong=\"H1961\"* who|strong=\"H3548\"* were|strong=\"H3478\"* counted|strong=\"H6485\"* by|strong=\"H3478\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron the|strong=\"H6485\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* counted|strong=\"H6485\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H6485\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 65, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said of|strong=\"H1121\"* them|strong=\"H1992\"*, “They|strong=\"H1992\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.” There|strong=\"H1992\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H1121\"* left|strong=\"H3498\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7126\"* the|strong=\"H7126\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* the|strong=\"H7126\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* came|strong=\"H7126\"* near|strong=\"H7126\"*. These are|strong=\"H1121\"* the|strong=\"H7126\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7126\"* daughters|strong=\"H1323\"*: Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3605\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"*, before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H4872\"* before|strong=\"H6440\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, at|strong=\"H5975\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, saying," + }, + { + "verseNum": 3, + "text": "“Our|strong=\"H3068\"* father|strong=\"H1121\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. He|strong=\"H1931\"* was|strong=\"H3068\"* not|strong=\"H3808\"* among|strong=\"H8432\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H1931\"* gathered|strong=\"H3259\"* themselves|strong=\"H5921\"* together|strong=\"H3259\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* company|strong=\"H5712\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* died|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3068\"* own|strong=\"H1961\"* sin|strong=\"H2399\"*. He|strong=\"H1931\"* had|strong=\"H3068\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* our|strong=\"H5414\"* father|strong=\"H1121\"* be|strong=\"H1121\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H1121\"* among|strong=\"H8432\"* his|strong=\"H5414\"* family|strong=\"H4940\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* no|strong=\"H5414\"* son|strong=\"H1121\"*? Give|strong=\"H5414\"* to|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* possession among|strong=\"H8432\"* the|strong=\"H3588\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* our|strong=\"H5414\"* father|strong=\"H1121\"*.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* brought|strong=\"H7126\"* their|strong=\"H3068\"* cause before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 7, + "text": "“The|strong=\"H5414\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Zelophehad|strong=\"H6765\"* speak|strong=\"H1696\"* right|strong=\"H3651\"*. You|strong=\"H5414\"* shall|strong=\"H1323\"* surely|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* possession|strong=\"H5159\"* of|strong=\"H1323\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* their|strong=\"H5414\"* father’s brothers. You|strong=\"H5414\"* shall|strong=\"H1323\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H1323\"* their|strong=\"H5414\"* father to|strong=\"H1696\"* pass|strong=\"H5674\"* to|strong=\"H1696\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* shall|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* dies|strong=\"H4191\"*, and|strong=\"H1121\"* has|strong=\"H3478\"* no|strong=\"H1696\"* son|strong=\"H1121\"*, then|strong=\"H1696\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* cause his|strong=\"H3478\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* pass|strong=\"H5674\"* to|strong=\"H1696\"* his|strong=\"H3478\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 9, + "text": "If he|strong=\"H5414\"* has|strong=\"H5159\"* no|strong=\"H5414\"* daughter|strong=\"H1323\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H1323\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H5414\"* his|strong=\"H5414\"* brothers." + }, + { + "verseNum": 10, + "text": "If he|strong=\"H5414\"* has|strong=\"H5159\"* no|strong=\"H5414\"* brothers, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H5159\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H5414\"* his|strong=\"H5414\"* father’s brothers." + }, + { + "verseNum": 11, + "text": "If|strong=\"H1961\"* his|strong=\"H5414\"* father|strong=\"H1121\"* has|strong=\"H3068\"* no|strong=\"H5414\"* brothers|strong=\"H1121\"*, then|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* his|strong=\"H5414\"* kinsman|strong=\"H7607\"* who|strong=\"H3068\"* is|strong=\"H3068\"* next|strong=\"H7138\"* to|strong=\"H3478\"* him|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. This|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* and|strong=\"H1121\"* ordinance|strong=\"H4941\"* for|strong=\"H2708\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*.’”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Moses|strong=\"H4872\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* Abarim|strong=\"H5682\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H7200\"* you|strong=\"H7200\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*, you|strong=\"H7200\"* also|strong=\"H1571\"* shall|strong=\"H5971\"* be|strong=\"H1571\"* gathered to|strong=\"H7200\"* your|strong=\"H7200\"* people|strong=\"H5971\"*, as|strong=\"H1571\"* Aaron your|strong=\"H7200\"* brother was|strong=\"H1571\"* gathered;" + }, + { + "verseNum": 14, + "text": "because in|strong=\"H6310\"* the|strong=\"H6942\"* strife|strong=\"H4808\"* of|strong=\"H5869\"* the|strong=\"H6942\"* congregation|strong=\"H5712\"*, you|strong=\"H5869\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* my|strong=\"H6942\"* word|strong=\"H6310\"* in|strong=\"H6310\"* the|strong=\"H6942\"* wilderness|strong=\"H4057\"* of|strong=\"H5869\"* Zin|strong=\"H6790\"*, to|strong=\"H4325\"* honor me|strong=\"H5869\"* as|strong=\"H5869\"* holy|strong=\"H6942\"* at|strong=\"H5869\"* the|strong=\"H6942\"* waters|strong=\"H4325\"* before|strong=\"H5869\"* their|strong=\"H1992\"* eyes|strong=\"H5869\"*.” (These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H6942\"* waters|strong=\"H4325\"* of|strong=\"H5869\"* Meribah|strong=\"H4809\"* of|strong=\"H5869\"* Kadesh|strong=\"H6946\"* in|strong=\"H6310\"* the|strong=\"H6942\"* wilderness|strong=\"H4057\"* of|strong=\"H5869\"* Zin|strong=\"H6790\"*.)" + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“Let|strong=\"H6485\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* spirits|strong=\"H7307\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*, appoint|strong=\"H6485\"* a|strong=\"H3068\"* man|strong=\"H3605\"* over|strong=\"H5921\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H3068\"* may|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* come|strong=\"H1961\"* in|strong=\"H3068\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* lead|strong=\"H3318\"* them|strong=\"H6440\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* may|strong=\"H1961\"* bring|strong=\"H3318\"* them|strong=\"H6440\"* in|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* may|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1961\"* sheep|strong=\"H6629\"* which|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*.”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Take|strong=\"H3947\"* Joshua|strong=\"H3091\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H5921\"* whom is|strong=\"H3068\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"*, and|strong=\"H1121\"* lay|strong=\"H5564\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*; and|strong=\"H3548\"* commission|strong=\"H6680\"* him|strong=\"H6440\"* in|strong=\"H6440\"* their|strong=\"H3605\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* authority|strong=\"H1935\"* to|strong=\"H3478\"* him|strong=\"H5414\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H3478\"* obey|strong=\"H8085\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, who|strong=\"H3605\"* shall|strong=\"H3548\"* inquire|strong=\"H7592\"* for|strong=\"H5921\"* him|strong=\"H6440\"* by|strong=\"H5921\"* the|strong=\"H3605\"* judgment|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Urim before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. At|strong=\"H5921\"* his|strong=\"H3605\"* word|strong=\"H6310\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* at|strong=\"H5921\"* his|strong=\"H3605\"* word|strong=\"H6310\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* come|strong=\"H3318\"* in|strong=\"H5921\"*, both|strong=\"H3605\"* he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H3068\"* him|strong=\"H6440\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*.”" + }, + { + "verseNum": 22, + "text": "Moses|strong=\"H4872\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"*. He|strong=\"H6213\"* took|strong=\"H3947\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* set|strong=\"H5975\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"* and|strong=\"H4872\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* laid|strong=\"H5564\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H4872\"* commissioned|strong=\"H6680\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H6680\"*, ‘See that|strong=\"H3478\"* you|strong=\"H6680\"* present|strong=\"H7126\"* my|strong=\"H8104\"* offering|strong=\"H7133\"*, my|strong=\"H8104\"* food|strong=\"H3899\"* for|strong=\"H1121\"* my|strong=\"H8104\"* offerings|strong=\"H7133\"* made|strong=\"H3478\"* by|strong=\"H3478\"* fire, as|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3478\"* me|strong=\"H8104\"*, in|strong=\"H3478\"* their|strong=\"H7126\"* due season|strong=\"H4150\"*.’" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3117\"* shall|strong=\"H3068\"* tell them|strong=\"H7126\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H5930\"* made|strong=\"H8141\"* by|strong=\"H8141\"* fire which|strong=\"H3068\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, two|strong=\"H8147\"* day|strong=\"H3117\"* by|strong=\"H8141\"* day|strong=\"H3117\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* the|strong=\"H6213\"* one|strong=\"H3532\"* lamb|strong=\"H3532\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H1242\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* the|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* at|strong=\"H6213\"* evening|strong=\"H6153\"*," + }, + { + "verseNum": 5, + "text": "with|strong=\"H1101\"* one tenth|strong=\"H6224\"* of|strong=\"H1969\"* an|strong=\"H4503\"* ephah+ 28:5 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1969\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H8081\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, mixed|strong=\"H1101\"* with|strong=\"H1101\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H1969\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 28:5 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H1969\"* beaten|strong=\"H3795\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H6213\"* is|strong=\"H3068\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* which|strong=\"H3068\"* was|strong=\"H3068\"* ordained|strong=\"H6213\"* in|strong=\"H3068\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"* for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H6213\"* offering|strong=\"H5930\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Its drink|strong=\"H5262\"* offering|strong=\"H5262\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 28:7 One hin is about 6.5 liters, so 1/4 hin is about 1.6 liters or 1.7 quarts.* for|strong=\"H3068\"* each|strong=\"H3532\"* lamb|strong=\"H3532\"*. You shall|strong=\"H3068\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* a|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H5262\"* of|strong=\"H3068\"* strong|strong=\"H7941\"* drink|strong=\"H5262\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* other|strong=\"H8145\"* lamb|strong=\"H3532\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*. As|strong=\"H6213\"* the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* as|strong=\"H6213\"* its|strong=\"H6213\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, you|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* it|strong=\"H6213\"*, an|strong=\"H6213\"* offering|strong=\"H4503\"* made|strong=\"H6213\"* by|strong=\"H3068\"* fire, for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, you|strong=\"H3117\"* shall|strong=\"H1121\"* offer two|strong=\"H8147\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* tenths of|strong=\"H1121\"* an|strong=\"H8141\"* ephah+ 28:9 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3117\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*:" + }, + { + "verseNum": 10, + "text": "this is|strong=\"H5930\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H5921\"* every|strong=\"H8548\"* Sabbath|strong=\"H7676\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 11, + "text": "“‘In|strong=\"H8141\"* the|strong=\"H3068\"* beginnings|strong=\"H7218\"* of|strong=\"H1121\"* your|strong=\"H3068\"* months|strong=\"H2320\"*, you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H6499\"* three|strong=\"H7969\"* tenths of|strong=\"H8147\"* an|strong=\"H4503\"* ephah+ 28:12 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H8147\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H6241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, for|strong=\"H6241\"* each|strong=\"H8147\"* bull|strong=\"H6499\"*; and|strong=\"H6499\"* two|strong=\"H8147\"* tenth|strong=\"H8147\"* parts of|strong=\"H8147\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H6241\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3068\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* part of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"* for|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* every|strong=\"H3068\"* lamb|strong=\"H3532\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Their|strong=\"H1961\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"* shall|strong=\"H8141\"* be|strong=\"H1961\"* half|strong=\"H2677\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H8141\"* wine|strong=\"H3196\"* for|strong=\"H1961\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, the|strong=\"H1961\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H8141\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* for|strong=\"H1961\"* the|strong=\"H1961\"* ram, and|strong=\"H6499\"* the|strong=\"H1961\"* fourth|strong=\"H7243\"* part|strong=\"H7992\"* of|strong=\"H8141\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* for|strong=\"H1961\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"*. This|strong=\"H2063\"* is|strong=\"H1961\"* the|strong=\"H1961\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H8141\"* every|strong=\"H8141\"* month|strong=\"H2320\"* throughout|strong=\"H2320\"* the|strong=\"H1961\"* months|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H1961\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "Also|strong=\"H3068\"*, one|strong=\"H6213\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6213\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 16, + "text": "“‘In|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Passover|strong=\"H6453\"*." + }, + { + "verseNum": 17, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* this|strong=\"H2088\"* month|strong=\"H2320\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* a|strong=\"H3068\"* feast|strong=\"H2282\"*. Unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* eaten for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H6213\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*," + }, + { + "verseNum": 19, + "text": "but|strong=\"H1961\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H1961\"* by|strong=\"H8141\"* fire, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, and|strong=\"H1121\"* seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*," + }, + { + "verseNum": 20, + "text": "with|strong=\"H1101\"* their|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* three|strong=\"H7969\"* tenths for|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* two|strong=\"H8147\"* tenths for|strong=\"H6213\"* the|strong=\"H6213\"* ram." + }, + { + "verseNum": 21, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6213\"* every|strong=\"H6213\"* lamb|strong=\"H3532\"* of|strong=\"H6213\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H2403\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6213\"* shall|strong=\"H6213\"* offer|strong=\"H6213\"* these|strong=\"H6213\"* in|strong=\"H6213\"* addition to|strong=\"H6213\"* the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* of|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, which is|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5921\"* this|strong=\"H6213\"* way|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* daily|strong=\"H3117\"*, for|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, the|strong=\"H5921\"* food|strong=\"H3899\"* of|strong=\"H3068\"* the|strong=\"H5921\"* offering|strong=\"H5930\"* made|strong=\"H6213\"* by|strong=\"H5921\"* fire, of|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6213\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* its|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 25, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 26, + "text": "“‘Also|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* new|strong=\"H2319\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* feast of|strong=\"H3068\"* weeks|strong=\"H7620\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: two|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*, three|strong=\"H7969\"* tenths for|strong=\"H6241\"* each|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram," + }, + { + "verseNum": 29, + "text": "one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H5795\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Besides the|strong=\"H6213\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H5930\"* its|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, you|strong=\"H6213\"* shall|strong=\"H8549\"* offer|strong=\"H6213\"* them|strong=\"H6213\"* and|strong=\"H5930\"* their|strong=\"H1961\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*. See that|strong=\"H6213\"* they|strong=\"H6213\"* are|strong=\"H5262\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "“‘In|strong=\"H6213\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*; you|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. It|strong=\"H6213\"* is|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* blowing|strong=\"H8643\"* of|strong=\"H3117\"* trumpets|strong=\"H8643\"* to|strong=\"H1961\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H6213\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* ram," + }, + { + "verseNum": 4, + "text": "and|strong=\"H7651\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H2403\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* you|strong=\"H5921\"*;" + }, + { + "verseNum": 6, + "text": "in|strong=\"H3068\"* addition to|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* the|strong=\"H3068\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* with|strong=\"H3068\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* with|strong=\"H3068\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* their|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* their|strong=\"H3068\"* ordinance|strong=\"H4941\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*, an|strong=\"H3068\"* offering|strong=\"H4503\"* made|strong=\"H3068\"* by|strong=\"H3068\"* fire to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘On|strong=\"H1961\"* the|strong=\"H3605\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H3605\"* this|strong=\"H2088\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* you|strong=\"H3605\"* shall|strong=\"H5315\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* afflict|strong=\"H6031\"* your|strong=\"H3605\"* souls|strong=\"H5315\"*. You|strong=\"H3605\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* no|strong=\"H3808\"* kind of|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H1961\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*: one|strong=\"H3532\"* young|strong=\"H1121\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3068\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* bull|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* the|strong=\"H8147\"* one|strong=\"H8147\"* ram," + }, + { + "verseNum": 10, + "text": "one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the seven|strong=\"H7651\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 11, + "text": "one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the sin|strong=\"H2403\"* offering|strong=\"H4503\"* of|strong=\"H2403\"* atonement|strong=\"H3725\"*, and|strong=\"H5930\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* their drink|strong=\"H5262\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 12, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* convocation|strong=\"H4744\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* keep|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H1961\"* by|strong=\"H8141\"* fire, of|strong=\"H1121\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: thirteen|strong=\"H7969\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"*, all|strong=\"H3068\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H6499\"* their|strong=\"H8147\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"* mixed|strong=\"H1101\"* with|strong=\"H1101\"* oil|strong=\"H8081\"*: three|strong=\"H7969\"* tenths for|strong=\"H6241\"* every bull|strong=\"H6499\"* of|strong=\"H8147\"* the|strong=\"H8147\"* thirteen|strong=\"H7969\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* tenths for|strong=\"H6241\"* each|strong=\"H8147\"* ram of|strong=\"H8147\"* the|strong=\"H8147\"* two|strong=\"H8147\"* rams," + }, + { + "verseNum": 15, + "text": "and|strong=\"H3532\"* one|strong=\"H3532\"* tenth|strong=\"H6241\"* for|strong=\"H6241\"* every lamb|strong=\"H3532\"* of|strong=\"H6241\"* the|strong=\"H6240\"* fourteen|strong=\"H6240\"* lambs|strong=\"H3532\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 17, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* offer twelve|strong=\"H8147\"* young|strong=\"H1121\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, and|strong=\"H1121\"* fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H5930\"* their drink|strong=\"H5262\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 20, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*: eleven|strong=\"H6249\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 23, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* ten|strong=\"H6235\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 24, + "text": "their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H5795\"* for|strong=\"H2403\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 26, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"*: nine|strong=\"H8672\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 29, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* day|strong=\"H3117\"*: eight|strong=\"H8083\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* the drink|strong=\"H5262\"* offerings|strong=\"H5930\"* of|strong=\"H2403\"* it." + }, + { + "verseNum": 32, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*: seven|strong=\"H7651\"* bulls|strong=\"H6499\"*, two|strong=\"H8147\"* rams, fourteen|strong=\"H6240\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H4941\"* their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bulls|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* rams, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*; in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 35, + "text": "“‘On|strong=\"H3117\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* no|strong=\"H3808\"* regular|strong=\"H5656\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 36, + "text": "but|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, an|strong=\"H7126\"* offering|strong=\"H5930\"* made|strong=\"H8141\"* by|strong=\"H8141\"* fire, a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*: one|strong=\"H3532\"* bull|strong=\"H6499\"*, one|strong=\"H3532\"* ram, seven|strong=\"H7651\"* male|strong=\"H3532\"* lambs|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 37, + "text": "their meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H4941\"* their drink|strong=\"H5262\"* offerings|strong=\"H4503\"* for|strong=\"H4941\"* the|strong=\"H4941\"* bull|strong=\"H6499\"*, for|strong=\"H4941\"* the|strong=\"H4941\"* ram, and|strong=\"H4941\"* for|strong=\"H4941\"* the|strong=\"H4941\"* lambs|strong=\"H3532\"*, shall|strong=\"H4941\"* be according|strong=\"H4941\"* to|strong=\"H4941\"* their number|strong=\"H4557\"*, after the|strong=\"H4941\"* ordinance|strong=\"H4941\"*," + }, + { + "verseNum": 38, + "text": "and|strong=\"H5930\"* one male|strong=\"H8163\"* goat|strong=\"H8163\"* for|strong=\"H4503\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, in|strong=\"H4503\"* addition to|strong=\"H4503\"* the continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, with|strong=\"H5930\"* its meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H5930\"* its drink|strong=\"H5262\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 39, + "text": "“‘You|strong=\"H6213\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* these|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* set|strong=\"H6213\"* feasts|strong=\"H4150\"*—in|strong=\"H3068\"* addition to|strong=\"H3068\"* your|strong=\"H3068\"* vows|strong=\"H5088\"* and|strong=\"H3068\"* your|strong=\"H3068\"* free will|strong=\"H3068\"* offerings|strong=\"H8002\"*—for|strong=\"H6213\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, your|strong=\"H3068\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*, your|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*.’”" + }, + { + "verseNum": 40, + "text": "Moses told the children of Israel according to all that Yahweh|strong=\"H3068\"* commanded Moses." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* heads of|strong=\"H1121\"* the|strong=\"H3605\"* tribes of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “This|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* thing|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1696\"* a|strong=\"H3068\"* man|strong=\"H1121\"* vows a|strong=\"H3068\"* vow to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, or|strong=\"H1121\"* swears an|strong=\"H2088\"* oath|strong=\"H1697\"* to|strong=\"H1696\"* bind his|strong=\"H3068\"* soul with|strong=\"H3068\"* a|strong=\"H3068\"* bond, he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H2088\"* break|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"*. He|strong=\"H3068\"* shall|strong=\"H3068\"* do|strong=\"H3068\"* according to|strong=\"H1696\"* all|strong=\"H1697\"* that|strong=\"H3068\"* proceeds out|strong=\"H1696\"* of|strong=\"H1121\"* his|strong=\"H3068\"* mouth." + }, + { + "verseNum": 3, + "text": "“Also|strong=\"H3068\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* woman vows|strong=\"H5088\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* binds herself|strong=\"H5315\"* by|strong=\"H5921\"* a|strong=\"H3068\"* pledge, being|strong=\"H5315\"* in|strong=\"H5921\"* her|strong=\"H3605\"* father’s house, in|strong=\"H5921\"* her|strong=\"H3605\"* youth," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* her|strong=\"H3588\"* father hears her|strong=\"H3588\"* vow|strong=\"H5088\"* and|strong=\"H3068\"* her|strong=\"H3588\"* pledge with|strong=\"H1004\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3588\"* soul, and|strong=\"H3068\"* her|strong=\"H3588\"* father says nothing to|strong=\"H3068\"* her|strong=\"H3588\"*, then|strong=\"H3588\"* all|strong=\"H3068\"* her|strong=\"H3588\"* vows|strong=\"H5088\"* shall|strong=\"H3068\"* stand, and|strong=\"H3068\"* every|strong=\"H3068\"* pledge with|strong=\"H1004\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3588\"* soul shall|strong=\"H3068\"* stand." + }, + { + "verseNum": 5, + "text": "But|strong=\"H8085\"* if her|strong=\"H3605\"* father forbids her|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* hears|strong=\"H8085\"*, none|strong=\"H3605\"* of|strong=\"H5921\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H8085\"* of|strong=\"H5921\"* her|strong=\"H3605\"* pledges with|strong=\"H5921\"* which|strong=\"H8085\"* she|strong=\"H5921\"* has|strong=\"H5315\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"*, shall|strong=\"H5315\"* stand|strong=\"H6965\"*. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H3605\"*, because|strong=\"H5921\"* her|strong=\"H3605\"* father has|strong=\"H5315\"* forbidden her|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "“If|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* husband, while|strong=\"H3117\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* are|strong=\"H3117\"* on|strong=\"H5921\"* her|strong=\"H3605\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* rash utterance of|strong=\"H3068\"* her|strong=\"H3605\"* lips with|strong=\"H3068\"* which|strong=\"H3068\"* she|strong=\"H3588\"* has|strong=\"H3068\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H5315\"* her|strong=\"H5921\"* husband hears it|strong=\"H5921\"*, and|strong=\"H5315\"* says nothing to|strong=\"H1961\"* her|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day that|strong=\"H5315\"* he|strong=\"H5921\"* hears it|strong=\"H5921\"*; then|strong=\"H1961\"* her|strong=\"H5921\"* vows|strong=\"H5088\"* shall|strong=\"H5315\"* stand, and|strong=\"H5315\"* her|strong=\"H5921\"* pledges with|strong=\"H5921\"* which|strong=\"H5315\"* she|strong=\"H8193\"* has|strong=\"H1961\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H5315\"* stand." + }, + { + "verseNum": 8, + "text": "But|strong=\"H8085\"* if her|strong=\"H5921\"* husband forbids her|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* hears|strong=\"H8085\"* it|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H3117\"* makes void her|strong=\"H5921\"* vow|strong=\"H5088\"* which|strong=\"H3117\"* is|strong=\"H5315\"* on|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H6965\"* the|strong=\"H5921\"* rash utterance of|strong=\"H3117\"* her|strong=\"H5921\"* lips, with|strong=\"H5921\"* which|strong=\"H3117\"* she|strong=\"H5921\"* has|strong=\"H3117\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"*. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“But|strong=\"H8085\"* the|strong=\"H5921\"* vow|strong=\"H5088\"* of|strong=\"H3068\"* a|strong=\"H3068\"* widow, or|strong=\"H8085\"* of|strong=\"H3068\"* her|strong=\"H5921\"* who|strong=\"H3068\"* is|strong=\"H3068\"* divorced, everything with|strong=\"H3068\"* which|strong=\"H3068\"* she|strong=\"H8193\"* has|strong=\"H3068\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* stand against|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "“If she|strong=\"H5921\"* vowed|strong=\"H5088\"* in|strong=\"H5921\"* her|strong=\"H3605\"* husband’s house or|strong=\"H5088\"* bound her|strong=\"H3605\"* soul|strong=\"H5315\"* by|strong=\"H5921\"* a|strong=\"H3068\"* bond with|strong=\"H5921\"* an|strong=\"H6965\"* oath," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1004\"* her|strong=\"H5921\"* husband heard it|strong=\"H5921\"*, and|strong=\"H1004\"* held his|strong=\"H5921\"* peace at|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H1004\"* didn’t disallow her|strong=\"H5921\"*, then all|strong=\"H5921\"* her|strong=\"H5921\"* vows|strong=\"H5087\"* shall|strong=\"H1004\"* stand, and|strong=\"H1004\"* every pledge with|strong=\"H1004\"* which|strong=\"H1004\"* she|strong=\"H5921\"* bound her|strong=\"H5921\"* soul|strong=\"H5315\"* shall|strong=\"H1004\"* stand." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if her|strong=\"H3605\"* husband made|strong=\"H3605\"* them|strong=\"H5921\"* null and|strong=\"H6965\"* void in|strong=\"H5921\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* heard|strong=\"H8085\"* them|strong=\"H5921\"*, then|strong=\"H6965\"* whatever|strong=\"H3605\"* proceeded out|strong=\"H5921\"* of|strong=\"H5921\"* her|strong=\"H3605\"* lips concerning|strong=\"H5921\"* her|strong=\"H3605\"* vows|strong=\"H5088\"*, or|strong=\"H3808\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* bond of|strong=\"H5921\"* her|strong=\"H3605\"* soul|strong=\"H5315\"*, shall|strong=\"H5315\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*. Her|strong=\"H3605\"* husband has|strong=\"H5315\"* made|strong=\"H3605\"* them|strong=\"H5921\"* void. Yahweh|strong=\"H3068\"* will|strong=\"H5315\"* forgive her|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "Every|strong=\"H3605\"* vow|strong=\"H5088\"*, and|strong=\"H6965\"* every|strong=\"H3605\"* binding|strong=\"H8193\"* oath to|strong=\"H3068\"* afflict the|strong=\"H3605\"* soul|strong=\"H5315\"*, her|strong=\"H3605\"* husband may|strong=\"H3068\"* establish|strong=\"H6965\"* it|strong=\"H3117\"*, or|strong=\"H3808\"* her|strong=\"H3605\"* husband may|strong=\"H3068\"* make|strong=\"H8085\"* it|strong=\"H3117\"* void|strong=\"H6565\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3605\"* if her|strong=\"H3605\"* husband says nothing|strong=\"H3605\"* to|strong=\"H6965\"* her|strong=\"H3605\"* from|strong=\"H5315\"* day to|strong=\"H6965\"* day, then|strong=\"H6965\"* he|strong=\"H3605\"* establishes all|strong=\"H3605\"* her|strong=\"H3605\"* vows|strong=\"H5088\"* or|strong=\"H5088\"* all|strong=\"H3605\"* her|strong=\"H3605\"* pledges which|strong=\"H5315\"* are|strong=\"H5315\"* on|strong=\"H6965\"* her|strong=\"H3605\"*. He|strong=\"H3605\"* has|strong=\"H5315\"* established|strong=\"H6965\"* them|strong=\"H6031\"*, because|strong=\"H3605\"* he|strong=\"H3605\"* said nothing|strong=\"H3605\"* to|strong=\"H6965\"* her|strong=\"H3605\"* in|strong=\"H5315\"* the|strong=\"H3605\"* day that|strong=\"H3605\"* he|strong=\"H3605\"* heard them|strong=\"H6031\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* makes them|strong=\"H5921\"* null and|strong=\"H6965\"* void after|strong=\"H5921\"* he|strong=\"H3588\"* has|strong=\"H3117\"* heard|strong=\"H8085\"* them|strong=\"H5921\"*, then|strong=\"H6965\"* he|strong=\"H3588\"* shall|strong=\"H3117\"* bear her|strong=\"H3605\"* iniquity.”" + }, + { + "verseNum": 16, + "text": "These|strong=\"H8085\"* are|strong=\"H5771\"* the|strong=\"H8085\"* statutes which|strong=\"H8085\"* Yahweh|strong=\"H3068\"* commanded Moses, between a|strong=\"H3068\"* man|strong=\"H5375\"* and|strong=\"H8085\"* his|strong=\"H5375\"* wife, between a|strong=\"H3068\"* father and|strong=\"H8085\"* his|strong=\"H5375\"* daughter, being in|strong=\"H8085\"* her|strong=\"H5375\"* youth, in|strong=\"H8085\"* her|strong=\"H5375\"* father’s house." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Avenge|strong=\"H5358\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H5360\"* the|strong=\"H1121\"* Midianites|strong=\"H4084\"*. Afterward you|strong=\"H5971\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* gathered|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H3478\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, saying|strong=\"H1696\"*, “Arm|strong=\"H2502\"* men|strong=\"H5971\"* from|strong=\"H5921\"* among|strong=\"H5921\"* you|strong=\"H5414\"* for|strong=\"H5921\"* war|strong=\"H6635\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H1961\"* go|strong=\"H5971\"* against|strong=\"H5921\"* Midian|strong=\"H4080\"*, to|strong=\"H1696\"* execute|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s vengeance|strong=\"H5360\"* on|strong=\"H5921\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* send|strong=\"H7971\"* one|strong=\"H3605\"* thousand out|strong=\"H7971\"* of|strong=\"H4294\"* every|strong=\"H3605\"* tribe|strong=\"H4294\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* war|strong=\"H6635\"*.”" + }, + { + "verseNum": 5, + "text": "So there were|strong=\"H3478\"* delivered|strong=\"H2502\"*, out|strong=\"H2502\"* of|strong=\"H4294\"* the|strong=\"H8147\"* thousands of|strong=\"H4294\"* Israel|strong=\"H3478\"*, a|strong=\"H3068\"* thousand from|strong=\"H3478\"* every|strong=\"H3478\"* tribe|strong=\"H4294\"*, twelve|strong=\"H8147\"* thousand armed|strong=\"H2502\"* for|strong=\"H3478\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* sent|strong=\"H7971\"* them|strong=\"H7971\"*, one|strong=\"H1121\"* thousand of|strong=\"H1121\"* every|strong=\"H7971\"* tribe|strong=\"H4294\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* war|strong=\"H6635\"* with|strong=\"H3027\"* Phinehas|strong=\"H6372\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7971\"* priest|strong=\"H3548\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* war|strong=\"H6635\"*, with|strong=\"H3027\"* the|strong=\"H7971\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* the|strong=\"H7971\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* the|strong=\"H7971\"* trumpets|strong=\"H2689\"* for|strong=\"H3027\"* the|strong=\"H7971\"* alarm|strong=\"H8643\"* in|strong=\"H1121\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3068\"* fought|strong=\"H6633\"* against|strong=\"H5921\"* Midian|strong=\"H4080\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*. They|strong=\"H3068\"* killed|strong=\"H2026\"* every|strong=\"H3605\"* male|strong=\"H2145\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* killed|strong=\"H2026\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rest of|strong=\"H1121\"* their|strong=\"H5921\"* slain|strong=\"H2491\"*: Evi, Rekem|strong=\"H7552\"*, Zur|strong=\"H6698\"*, Hur|strong=\"H2354\"*, and|strong=\"H1121\"* Reba|strong=\"H7254\"*, the|strong=\"H5921\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*. They|strong=\"H5921\"* also|strong=\"H4428\"* killed|strong=\"H2026\"* Balaam|strong=\"H1109\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H7617\"* the|strong=\"H3605\"* women of|strong=\"H1121\"* Midian|strong=\"H4080\"* captive|strong=\"H7617\"* with|strong=\"H3478\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* livestock|strong=\"H4735\"*, all|strong=\"H3605\"* their|strong=\"H3605\"* flocks|strong=\"H4735\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* goods|strong=\"H2428\"*, they|strong=\"H3478\"* took|strong=\"H7617\"* as|strong=\"H1121\"* plunder." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* places|strong=\"H4186\"* in|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H3605\"* lived|strong=\"H4186\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* their|strong=\"H3605\"* encampments|strong=\"H2918\"*, they|strong=\"H3605\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives, and|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"*, both|strong=\"H3605\"* of|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3947\"* of|strong=\"H3605\"* animal." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* brought|strong=\"H3548\"* the|strong=\"H5921\"* captives|strong=\"H7628\"* with|strong=\"H5921\"* the|strong=\"H5921\"* prey|strong=\"H7998\"* and|strong=\"H1121\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"*, to|strong=\"H3478\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Eleazar the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* at|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, which|strong=\"H3478\"* are|strong=\"H1121\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"*, with|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H4264\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* them|strong=\"H3318\"* outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 14, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* the|strong=\"H5921\"* officers|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* army|strong=\"H2428\"*, the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, who|strong=\"H6635\"* came|strong=\"H6635\"* from|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H6635\"* of|strong=\"H8269\"* the|strong=\"H5921\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H4872\"* them|strong=\"H2421\"*, “Have|strong=\"H3605\"* you|strong=\"H3605\"* saved|strong=\"H2421\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H5347\"* alive|strong=\"H2421\"*?" + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, these|strong=\"H2007\"* caused|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, through|strong=\"H5921\"* the|strong=\"H5921\"* counsel|strong=\"H1697\"* of|strong=\"H1121\"* Balaam|strong=\"H1109\"*, to|strong=\"H3478\"* commit|strong=\"H4560\"* trespass|strong=\"H4604\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H1121\"* Peor|strong=\"H6465\"*, and|strong=\"H1121\"* so|strong=\"H1961\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3068\"* among|strong=\"H5921\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* kill|strong=\"H2026\"* every|strong=\"H3605\"* male|strong=\"H2145\"* among the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H3045\"* kill|strong=\"H2026\"* every|strong=\"H3605\"* woman who|strong=\"H3605\"* has|strong=\"H3045\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3605\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* girls|strong=\"H2945\"*, who|strong=\"H3605\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3808\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*, keep|strong=\"H2421\"* alive|strong=\"H2421\"* for|strong=\"H3605\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "“Encamp|strong=\"H2583\"* outside|strong=\"H2351\"* of|strong=\"H3117\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Whoever|strong=\"H3605\"* has|strong=\"H3117\"* killed|strong=\"H2026\"* any|strong=\"H3605\"* person|strong=\"H5315\"*, and|strong=\"H3117\"* whoever|strong=\"H3605\"* has|strong=\"H3117\"* touched|strong=\"H5060\"* any|strong=\"H3605\"* slain|strong=\"H2491\"*, purify|strong=\"H2398\"* yourselves|strong=\"H5315\"* on|strong=\"H3117\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"* and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, you|strong=\"H3605\"* and|strong=\"H3117\"* your|strong=\"H3605\"* captives|strong=\"H7628\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H2398\"* purify|strong=\"H2398\"* every|strong=\"H3605\"* garment, and|strong=\"H6086\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* made|strong=\"H4639\"* of|strong=\"H3627\"* skin|strong=\"H5785\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3627\"* goats|strong=\"H5795\"*’ hair, and|strong=\"H6086\"* all|strong=\"H3605\"* things|strong=\"H3605\"* made|strong=\"H4639\"* of|strong=\"H3627\"* wood|strong=\"H6086\"*.”" + }, + { + "verseNum": 21, + "text": "Eleazar the|strong=\"H3068\"* priest|strong=\"H3548\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H6635\"* of|strong=\"H3068\"* war|strong=\"H4421\"* who|strong=\"H3068\"* went|strong=\"H4872\"* to|strong=\"H3068\"* the|strong=\"H3068\"* battle|strong=\"H4421\"*, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H3068\"* statute|strong=\"H2708\"* of|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 22, + "text": "However the gold|strong=\"H2091\"*, and|strong=\"H3701\"* the silver|strong=\"H3701\"*, the bronze|strong=\"H5178\"*, the iron|strong=\"H1270\"*, the tin, and|strong=\"H3701\"* the lead|strong=\"H5777\"*," + }, + { + "verseNum": 23, + "text": "everything|strong=\"H3605\"* that|strong=\"H3605\"* may|strong=\"H4325\"* withstand the|strong=\"H3605\"* fire, you|strong=\"H3605\"* shall|strong=\"H3808\"* make to|strong=\"H4325\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, and|strong=\"H1697\"* it|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*; nevertheless it|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* purified|strong=\"H2891\"* with|strong=\"H1697\"* the|strong=\"H3605\"* water|strong=\"H4325\"* for|strong=\"H4325\"* impurity|strong=\"H5079\"*. All|strong=\"H3605\"* that|strong=\"H3605\"* doesn’t withstand the|strong=\"H3605\"* fire you|strong=\"H3605\"* shall|strong=\"H3808\"* make to|strong=\"H4325\"* go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* wash|strong=\"H3526\"* your|strong=\"H3117\"* clothes on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* clean|strong=\"H2891\"*. Afterward you|strong=\"H3117\"* shall|strong=\"H3117\"* come into|strong=\"H4264\"* the|strong=\"H3117\"* camp|strong=\"H4264\"*.”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Moses|strong=\"H4872\"*, saying," + }, + { + "verseNum": 26, + "text": "“Count|strong=\"H5375\"* the|strong=\"H5375\"* plunder|strong=\"H4455\"* that|strong=\"H3548\"* was|strong=\"H7218\"* taken|strong=\"H5375\"*, both of|strong=\"H7218\"* man|strong=\"H5375\"* and|strong=\"H3548\"* of|strong=\"H7218\"* animal, you|strong=\"H5375\"*, and|strong=\"H3548\"* Eleazar the|strong=\"H5375\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H5375\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5375\"* fathers’ households of|strong=\"H7218\"* the|strong=\"H5375\"* congregation|strong=\"H5712\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H3318\"* divide|strong=\"H2673\"* the|strong=\"H3605\"* plunder|strong=\"H4455\"* into|strong=\"H3318\"* two parts|strong=\"H2673\"*: between|strong=\"H4421\"* the|strong=\"H3605\"* men|strong=\"H3605\"* skilled in|strong=\"H4421\"* war|strong=\"H4421\"*, who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*, and|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + }, + { + "verseNum": 28, + "text": "Levy|strong=\"H4371\"* a|strong=\"H3068\"* tribute|strong=\"H4371\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H5315\"* of|strong=\"H3068\"* war|strong=\"H4421\"* who|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*: one|strong=\"H4480\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*; of|strong=\"H3068\"* the|strong=\"H3068\"* persons|strong=\"H5315\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* cattle|strong=\"H1241\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* donkeys|strong=\"H2543\"*, and|strong=\"H3967\"* of|strong=\"H3068\"* the|strong=\"H3068\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 29, + "text": "Take|strong=\"H3947\"* it|strong=\"H5414\"* from|strong=\"H3947\"* their|strong=\"H3068\"* half|strong=\"H4276\"*, and|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* Eleazar the|strong=\"H5414\"* priest|strong=\"H3548\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* one|strong=\"H3605\"* drawn|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H1121\"* every|strong=\"H3605\"* fifty|strong=\"H2572\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* persons, of|strong=\"H1121\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* donkeys|strong=\"H2543\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"*, of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, who|strong=\"H3605\"* perform|strong=\"H8104\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*.”" + }, + { + "verseNum": 31, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H6213\"* priest|strong=\"H3548\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* plunder|strong=\"H4455\"*, over and|strong=\"H3967\"* above the|strong=\"H1961\"* booty|strong=\"H4455\"* which|strong=\"H5971\"* the|strong=\"H1961\"* men|strong=\"H5971\"* of|strong=\"H6635\"* war|strong=\"H6635\"* took|strong=\"H1961\"*, was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"* thousand sheep|strong=\"H6629\"*," + }, + { + "verseNum": 33, + "text": "seventy-two thousand head of|strong=\"H8147\"* cattle|strong=\"H1241\"*," + }, + { + "verseNum": 34, + "text": "sixty-one thousand donkeys|strong=\"H2543\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"H7970\"* thirty-two|strong=\"H7970\"* thousand persons|strong=\"H5315\"* in|strong=\"H5315\"* all|strong=\"H3605\"*, of|strong=\"H4480\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* had|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3808\"* lying|strong=\"H4904\"* with|strong=\"H3045\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3318\"* half|strong=\"H4275\"*, which|strong=\"H6635\"* was|strong=\"H1961\"* the|strong=\"H3318\"* portion|strong=\"H2506\"* of|strong=\"H6635\"* those|strong=\"H3318\"* who|strong=\"H6635\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*, was|strong=\"H1961\"* in|strong=\"H6635\"* number|strong=\"H4557\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* sheep|strong=\"H6629\"*;" + }, + { + "verseNum": 37, + "text": "and|strong=\"H3967\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sheep|strong=\"H6629\"* was|strong=\"H3068\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3068\"* cattle|strong=\"H1241\"* were|strong=\"H1241\"* thirty-six|strong=\"H7970\"* thousand, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* seventy-two." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3068\"* donkeys|strong=\"H2543\"* were|strong=\"H3068\"* thirty|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* sixty-one." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3068\"* persons|strong=\"H5315\"* were|strong=\"H5315\"* sixteen|strong=\"H8337\"* thousand, of|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"*’s tribute|strong=\"H4371\"* was|strong=\"H3068\"* thirty-two|strong=\"H7970\"* persons|strong=\"H5315\"*." + }, + { + "verseNum": 41, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* tribute|strong=\"H4371\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wave offering|strong=\"H8641\"*, to|strong=\"H3068\"* Eleazar the|strong=\"H5414\"* priest|strong=\"H3548\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 42, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, which|strong=\"H3478\"* Moses|strong=\"H4872\"* divided|strong=\"H2673\"* off|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* men|strong=\"H1121\"* who|strong=\"H1121\"* fought|strong=\"H6633\"*" + }, + { + "verseNum": 43, + "text": "(now|strong=\"H1961\"* the|strong=\"H4480\"* congregation|strong=\"H5712\"*’s half|strong=\"H4275\"* was|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 44, + "text": "thirty-six|strong=\"H7970\"* thousand head of|strong=\"H7970\"* cattle|strong=\"H1241\"*," + }, + { + "verseNum": 45, + "text": "thirty|strong=\"H7970\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* donkeys|strong=\"H2543\"*," + }, + { + "verseNum": 46, + "text": "and|strong=\"H5315\"* sixteen|strong=\"H8337\"* thousand persons|strong=\"H5315\"*)," + }, + { + "verseNum": 47, + "text": "even|strong=\"H3068\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s half|strong=\"H4276\"*, Moses|strong=\"H4872\"* took|strong=\"H3947\"* one|strong=\"H4480\"* drawn|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H1121\"* every|strong=\"H3947\"* fifty|strong=\"H2572\"*, both|strong=\"H4480\"* of|strong=\"H1121\"* man|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* animal, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, who|strong=\"H3068\"* performed|strong=\"H8104\"* the|strong=\"H5414\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H6485\"* officers|strong=\"H8269\"* who|strong=\"H6635\"* were|strong=\"H8269\"* over|strong=\"H8269\"* the|strong=\"H6485\"* thousands of|strong=\"H8269\"* the|strong=\"H6485\"* army|strong=\"H6635\"*, the|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands, and|strong=\"H3967\"* the|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7126\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H3808\"* said to|strong=\"H3027\"* Moses|strong=\"H4872\"*, “Your|strong=\"H5375\"* servants|strong=\"H5650\"* have|strong=\"H5650\"* taken|strong=\"H5375\"* the|strong=\"H5375\"* sum|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5375\"* men|strong=\"H7218\"* of|strong=\"H3027\"* war|strong=\"H4421\"* who|strong=\"H5650\"* are|strong=\"H3027\"* under|strong=\"H4480\"* our|strong=\"H5650\"* command|strong=\"H3027\"*, and|strong=\"H4872\"* there|strong=\"H4480\"* lacks not|strong=\"H3808\"* one|strong=\"H3808\"* man|strong=\"H5375\"* of|strong=\"H3027\"* us|strong=\"H3027\"*." + }, + { + "verseNum": 50, + "text": "We|strong=\"H5315\"* have|strong=\"H3068\"* brought|strong=\"H7126\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H7133\"*, what|strong=\"H5921\"* every|strong=\"H3068\"* man|strong=\"H5315\"* found|strong=\"H4672\"*: gold|strong=\"H2091\"* ornaments|strong=\"H3627\"*, armlets, bracelets|strong=\"H6781\"*, signet|strong=\"H2885\"* rings|strong=\"H2885\"*, earrings|strong=\"H5694\"*, and|strong=\"H3068\"* necklaces|strong=\"H3558\"*, to|strong=\"H3068\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* our|strong=\"H3068\"* souls|strong=\"H5315\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 51, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Eleazar the|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* their|strong=\"H3605\"* gold|strong=\"H2091\"*, even all|strong=\"H3605\"* worked jewels|strong=\"H3627\"*." + }, + { + "verseNum": 52, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wave offering|strong=\"H8641\"* that|strong=\"H3605\"* they|strong=\"H3068\"* offered|strong=\"H7311\"* up|strong=\"H7311\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H3068\"* thousands, and|strong=\"H3967\"* of|strong=\"H3068\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H3068\"* hundreds|strong=\"H3967\"*, was|strong=\"H3068\"* sixteen|strong=\"H8337\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*.+ 31:52 A shekel is about 10 grams or about 0.35 ounces, so 16,750 shekels is about 167.5 kilograms or about 368.5 pounds.*" + }, + { + "verseNum": 53, + "text": "The|strong=\"H6635\"* men|strong=\"H6635\"* of|strong=\"H6635\"* war|strong=\"H6635\"* had|strong=\"H6635\"* taken booty, every man for|strong=\"H6635\"* himself." + }, + { + "verseNum": 54, + "text": "Moses|strong=\"H4872\"* and|strong=\"H3967\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* the|strong=\"H6440\"* gold|strong=\"H2091\"* of|strong=\"H1121\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* it|strong=\"H6440\"* into|strong=\"H3947\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* for|strong=\"H6440\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* for|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* had|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* multitude|strong=\"H7227\"* of|strong=\"H1121\"* livestock|strong=\"H4735\"*. They|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H1121\"* Jazer|strong=\"H3270\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* land|strong=\"H4725\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*. Behold|strong=\"H2009\"*, the|strong=\"H7200\"* place|strong=\"H4725\"* was|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H1121\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H4872\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* came|strong=\"H3548\"* and|strong=\"H1121\"* spoke to|strong=\"H1121\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Eleazar the|strong=\"H4872\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H4872\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H4872\"* congregation|strong=\"H5712\"*, saying," + }, + { + "verseNum": 3, + "text": "“Ataroth|strong=\"H5852\"*, Dibon|strong=\"H1769\"*, Jazer|strong=\"H3270\"*, Nimrah|strong=\"H5247\"*, Heshbon|strong=\"H2809\"*, Elealeh, Sebam|strong=\"H7643\"*, Nebo|strong=\"H5015\"*, and|strong=\"H5015\"* Beon|strong=\"H1194\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5221\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, is|strong=\"H3068\"* a|strong=\"H3068\"* land|strong=\"H6440\"* for|strong=\"H6440\"* livestock|strong=\"H4735\"*; and|strong=\"H3478\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* livestock|strong=\"H4735\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5414\"* said, “If we|strong=\"H3068\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* your|strong=\"H5414\"* sight|strong=\"H5869\"*, let|strong=\"H5414\"* this|strong=\"H2063\"* land be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* for|strong=\"H5650\"* a|strong=\"H3068\"* possession. Don’t bring|strong=\"H5414\"* us|strong=\"H5414\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H4872\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, “Shall|strong=\"H1121\"* your|strong=\"H1121\"* brothers|strong=\"H1121\"* go to|strong=\"H1121\"* war|strong=\"H4421\"* while|strong=\"H3427\"* you|strong=\"H3427\"* sit|strong=\"H3427\"* here|strong=\"H6311\"*?" + }, + { + "verseNum": 7, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H5414\"* discourage the|strong=\"H5414\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* going|strong=\"H5674\"* over|strong=\"H5674\"* into|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 8, + "text": "Your|strong=\"H7200\"* fathers did|strong=\"H6213\"* so|strong=\"H6213\"* when|strong=\"H7200\"* I|strong=\"H3541\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* from|strong=\"H7971\"* Kadesh Barnea to|strong=\"H7971\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land." + }, + { + "verseNum": 9, + "text": "For|strong=\"H5704\"* when|strong=\"H7200\"* they|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H7200\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* Eshcol, and|strong=\"H1121\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* land, they|strong=\"H3068\"* discouraged|strong=\"H5106\"* the|strong=\"H7200\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* swore|strong=\"H7650\"*, saying," + }, + { + "verseNum": 11, + "text": "‘Surely|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H7200\"* men|strong=\"H1121\"* who|strong=\"H1121\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7200\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, from|strong=\"H5927\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, shall|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5927\"* Abraham, to|strong=\"H5927\"* Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* to|strong=\"H5927\"* Jacob|strong=\"H3290\"*; because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* not|strong=\"H3808\"* wholly|strong=\"H4390\"* followed|strong=\"H5927\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "except|strong=\"H3588\"* Caleb|strong=\"H3612\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H3588\"* Kenizzite|strong=\"H7074\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* followed Yahweh|strong=\"H3068\"* completely.’" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* he|strong=\"H5704\"* made|strong=\"H6213\"* them|strong=\"H6213\"* wander|strong=\"H5128\"* back and|strong=\"H3478\"* forth|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* generation|strong=\"H1755\"* who|strong=\"H3605\"* had|strong=\"H3068\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* was|strong=\"H3068\"* consumed|strong=\"H8552\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, you|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* your|strong=\"H3068\"* fathers’ place|strong=\"H8478\"*, an|strong=\"H6965\"* increase|strong=\"H8635\"* of|strong=\"H3068\"* sinful|strong=\"H2400\"* men|strong=\"H2400\"*, to|strong=\"H3478\"* increase|strong=\"H8635\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* toward|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* after|strong=\"H3588\"* him|strong=\"H7725\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* yet|strong=\"H5750\"* again|strong=\"H7725\"* leave|strong=\"H3240\"* them|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*; and|strong=\"H7725\"* you|strong=\"H3588\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H5892\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5066\"* him, and|strong=\"H5892\"* said, “We|strong=\"H5892\"* will|strong=\"H5892\"* build|strong=\"H1129\"* sheepfolds|strong=\"H1448\"* here|strong=\"H6311\"* for|strong=\"H5892\"* our livestock|strong=\"H4735\"*, and|strong=\"H5892\"* cities|strong=\"H5892\"* for|strong=\"H5892\"* our little|strong=\"H2945\"* ones|strong=\"H2945\"*;" + }, + { + "verseNum": 17, + "text": "but we|strong=\"H3068\"* ourselves will|strong=\"H3478\"* be|strong=\"H1121\"* ready|strong=\"H2363\"* armed|strong=\"H2502\"* to|strong=\"H5704\"* go|strong=\"H3478\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H1121\"* brought|strong=\"H3478\"* them|strong=\"H6440\"* to|strong=\"H5704\"* their|strong=\"H6440\"* place|strong=\"H4725\"*. Our|strong=\"H6440\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* shall|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H4725\"*." + }, + { + "verseNum": 18, + "text": "We|strong=\"H5704\"* will|strong=\"H3478\"* not|strong=\"H3808\"* return|strong=\"H7725\"* to|strong=\"H5704\"* our|strong=\"H7725\"* houses|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H1121\"* all|strong=\"H5704\"* received|strong=\"H5157\"* their|strong=\"H7725\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* not|strong=\"H3808\"* inherit|strong=\"H5157\"* with|strong=\"H5159\"* them|strong=\"H3588\"* on|strong=\"H5676\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H5159\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* and|strong=\"H3383\"* beyond|strong=\"H5676\"*, because|strong=\"H3588\"* our|strong=\"H3588\"* inheritance|strong=\"H5159\"* has|strong=\"H3588\"* come to|strong=\"H5159\"* us|strong=\"H3588\"* on|strong=\"H5676\"* this|strong=\"H3588\"* side|strong=\"H5676\"* of|strong=\"H5159\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*.”" + }, + { + "verseNum": 20, + "text": "Moses|strong=\"H4872\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*: “If you|strong=\"H6440\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, if you|strong=\"H6440\"* will|strong=\"H3068\"* arm|strong=\"H2502\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* go|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3068\"* every|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* driven|strong=\"H3423\"* out|strong=\"H3423\"* his|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; then|strong=\"H1961\"* afterward you|strong=\"H6440\"* shall|strong=\"H3068\"* return|strong=\"H7725\"*, and|strong=\"H3478\"* be|strong=\"H1961\"* clear|strong=\"H5355\"* of|strong=\"H3068\"* obligation|strong=\"H5355\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* to|strong=\"H7725\"* Israel|strong=\"H3478\"*. Then|strong=\"H1961\"* this|strong=\"H2063\"* land|strong=\"H6440\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* possession before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "“But|strong=\"H3808\"* if|strong=\"H2009\"* you|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, behold|strong=\"H2009\"*, you|strong=\"H6213\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* be|strong=\"H3808\"* sure|strong=\"H3045\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* will|strong=\"H3068\"* find|strong=\"H4672\"* you|strong=\"H6213\"* out|strong=\"H4672\"*." + }, + { + "verseNum": 24, + "text": "Build|strong=\"H1129\"* cities|strong=\"H5892\"* for|strong=\"H6213\"* your|strong=\"H6213\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H5892\"* folds|strong=\"H1448\"* for|strong=\"H6213\"* your|strong=\"H6213\"* sheep|strong=\"H6792\"*; and|strong=\"H5892\"* do|strong=\"H6213\"* that|strong=\"H5892\"* which|strong=\"H5892\"* has|strong=\"H3318\"* proceeded|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* your|strong=\"H6213\"* mouth|strong=\"H6310\"*.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* spoke to|strong=\"H6213\"* Moses|strong=\"H4872\"*, saying, “Your|strong=\"H6213\"* servants|strong=\"H5650\"* will|strong=\"H5650\"* do|strong=\"H6213\"* as|strong=\"H6213\"* my|strong=\"H6213\"* lord commands|strong=\"H6680\"*." + }, + { + "verseNum": 26, + "text": "Our|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, our|strong=\"H3605\"* wives, our|strong=\"H3605\"* flocks|strong=\"H4735\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* our|strong=\"H3605\"* livestock|strong=\"H4735\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* there|strong=\"H8033\"* in|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Gilead|strong=\"H1568\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H1696\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* armed|strong=\"H2502\"* for|strong=\"H6440\"* war|strong=\"H4421\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H1696\"* battle|strong=\"H4421\"*, as|strong=\"H3068\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* says|strong=\"H1696\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H6680\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* concerning|strong=\"H6680\"* them|strong=\"H6680\"* to|strong=\"H3478\"* Eleazar the|strong=\"H6680\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H6680\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6680\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6680\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H6680\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* said to|strong=\"H3068\"* them|strong=\"H5414\"*, “If|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* with|strong=\"H3068\"* you|strong=\"H5414\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H3605\"* is|strong=\"H3068\"* armed|strong=\"H2502\"* to|strong=\"H3068\"* battle|strong=\"H4421\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* for|strong=\"H6440\"* a|strong=\"H3068\"* possession;" + }, + { + "verseNum": 30, + "text": "but|strong=\"H3808\"* if they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5674\"* you|strong=\"H3808\"* armed|strong=\"H2502\"*, they|strong=\"H3808\"* shall|strong=\"H3808\"* have|strong=\"H3808\"* possessions among|strong=\"H8432\"* you|strong=\"H3808\"* in|strong=\"H8432\"* the|strong=\"H8432\"* land of|strong=\"H8432\"* Canaan|strong=\"H3667\"*.”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* answered|strong=\"H6030\"*, saying|strong=\"H1696\"*, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servants|strong=\"H5650\"*, so|strong=\"H3651\"* will|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H5168\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2502\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* into|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H5159\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* possession|strong=\"H5159\"* of|strong=\"H3068\"* our|strong=\"H3068\"* inheritance|strong=\"H5159\"* shall|strong=\"H3068\"* remain with|strong=\"H3068\"* us|strong=\"H6440\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 33, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*, even|strong=\"H4519\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H5414\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, the|strong=\"H5414\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Amorites, and|strong=\"H1121\"* the|strong=\"H5414\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"*; the|strong=\"H5414\"* land, according to|strong=\"H5414\"* its|strong=\"H5414\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* borders|strong=\"H1367\"*, even|strong=\"H4519\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H5414\"* surrounding|strong=\"H5439\"* land." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1129\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* built|strong=\"H1129\"* Dibon|strong=\"H1769\"*, Ataroth|strong=\"H5852\"*, Aroer|strong=\"H6177\"*," + }, + { + "verseNum": 35, + "text": "Atroth-shophan|strong=\"H5855\"*, Jazer|strong=\"H3270\"*, Jogbehah|strong=\"H3011\"*," + }, + { + "verseNum": 36, + "text": "Beth Nimrah, and|strong=\"H5892\"* Beth Haran: fortified|strong=\"H4013\"* cities|strong=\"H5892\"* and|strong=\"H5892\"* folds|strong=\"H1448\"* for|strong=\"H5892\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1129\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* built|strong=\"H1129\"* Heshbon|strong=\"H2809\"*, Elealeh, Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 38, + "text": "Nebo|strong=\"H5015\"*, and|strong=\"H5892\"* Baal Meon, (their|strong=\"H5437\"* names|strong=\"H8034\"* being|strong=\"H8034\"* changed|strong=\"H5437\"*), and|strong=\"H5892\"* Sibmah|strong=\"H7643\"*. They|strong=\"H5892\"* gave|strong=\"H7121\"* other|strong=\"H7121\"* names|strong=\"H8034\"* to|strong=\"H7121\"* the|strong=\"H1129\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H5892\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3423\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gilead|strong=\"H1568\"*, took|strong=\"H3920\"* it|strong=\"H3423\"*, and|strong=\"H1121\"* dispossessed|strong=\"H3423\"* the|strong=\"H3423\"* Amorites who|strong=\"H1121\"* were|strong=\"H1121\"* therein." + }, + { + "verseNum": 40, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* Gilead|strong=\"H1568\"* to|strong=\"H5414\"* Machir|strong=\"H4353\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* lived|strong=\"H3427\"* therein|strong=\"H3427\"*." + }, + { + "verseNum": 41, + "text": "Jair|strong=\"H2971\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* went|strong=\"H1980\"* and|strong=\"H1121\"* took|strong=\"H3920\"* its|strong=\"H3920\"* villages, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H7121\"* Havvoth Jair|strong=\"H2971\"*." + }, + { + "verseNum": 42, + "text": "Nobah|strong=\"H5025\"* went|strong=\"H1980\"* and|strong=\"H1980\"* took|strong=\"H3920\"* Kenath|strong=\"H7079\"* and|strong=\"H1980\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H1980\"* called|strong=\"H7121\"* it|strong=\"H7121\"* Nobah|strong=\"H5025\"*, after|strong=\"H7121\"* his|strong=\"H7121\"* own name|strong=\"H8034\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H3318\"* journeys|strong=\"H4550\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3318\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* by|strong=\"H3027\"* their|strong=\"H3318\"* armies|strong=\"H6635\"* under|strong=\"H3027\"* the|strong=\"H3318\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 2, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* the|strong=\"H5921\"* starting|strong=\"H4161\"* points of|strong=\"H3068\"* their|strong=\"H3068\"* journeys|strong=\"H4550\"* by|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. These|strong=\"H3789\"* are|strong=\"H3068\"* their|strong=\"H3068\"* journeys|strong=\"H4550\"* according|strong=\"H5921\"* to|strong=\"H3068\"* their|strong=\"H3068\"* starting|strong=\"H4161\"* points." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"* in|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*; on|strong=\"H3117\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* a|strong=\"H3068\"* high|strong=\"H7311\"* hand|strong=\"H3027\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"*," + }, + { + "verseNum": 4, + "text": "while the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* were|strong=\"H3068\"* burying|strong=\"H6912\"* all|strong=\"H3605\"* their|strong=\"H3605\"* firstborn|strong=\"H1060\"*, whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* among|strong=\"H1060\"* them|strong=\"H5221\"*. Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* executed|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rameses|strong=\"H7486\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Succoth|strong=\"H5523\"*." + }, + { + "verseNum": 6, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Succoth|strong=\"H5523\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Etham, which|strong=\"H4057\"* is|strong=\"H4057\"* in|strong=\"H2583\"* the|strong=\"H2583\"* edge|strong=\"H7097\"* of|strong=\"H4057\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Etham, and|strong=\"H7725\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Pihahiroth, which is|strong=\"H6440\"* before|strong=\"H6440\"* Baal Zephon, and|strong=\"H7725\"* they|strong=\"H5921\"* encamped|strong=\"H2583\"* before|strong=\"H6440\"* Migdol|strong=\"H4024\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* before|strong=\"H6440\"* Hahiroth|strong=\"H6367\"*, and|strong=\"H3117\"* crossed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* into|strong=\"H8432\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*. They|strong=\"H3117\"* went|strong=\"H3212\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* in|strong=\"H2583\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Etham, and|strong=\"H3117\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Marah|strong=\"H4785\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H8033\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Marah|strong=\"H4785\"*, and|strong=\"H5869\"* came|strong=\"H4325\"* to|strong=\"H4325\"* Elim. In|strong=\"H2583\"* Elim, there|strong=\"H8033\"* were|strong=\"H4325\"* twelve|strong=\"H8147\"* springs of|strong=\"H5869\"* water|strong=\"H4325\"* and|strong=\"H5869\"* seventy|strong=\"H7657\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, and|strong=\"H5869\"* they|strong=\"H8033\"* encamped|strong=\"H2583\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Elim, and|strong=\"H3220\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*." + }, + { + "verseNum": 11, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H3220\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H3220\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3220\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sin|strong=\"H5512\"*." + }, + { + "verseNum": 12, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H4057\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sin|strong=\"H5512\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Dophkah|strong=\"H1850\"*." + }, + { + "verseNum": 13, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Dophkah|strong=\"H1850\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Alush." + }, + { + "verseNum": 14, + "text": "They|strong=\"H8033\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Alush, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rephidim|strong=\"H7508\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H1961\"* people|strong=\"H5971\"* to|strong=\"H1961\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 15, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rephidim|strong=\"H7508\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H2583\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sinai|strong=\"H5514\"*." + }, + { + "verseNum": 16, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H4057\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Sinai|strong=\"H5514\"*, and|strong=\"H4057\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Kibroth Hattaavah." + }, + { + "verseNum": 17, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kibroth Hattaavah, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hazeroth|strong=\"H2698\"*." + }, + { + "verseNum": 18, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hazeroth|strong=\"H2698\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rithmah|strong=\"H7575\"*." + }, + { + "verseNum": 19, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rithmah|strong=\"H7575\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rimmon Perez." + }, + { + "verseNum": 20, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rimmon Perez, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 21, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Libnah|strong=\"H3841\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Rissah|strong=\"H7446\"*." + }, + { + "verseNum": 22, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Rissah|strong=\"H7446\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Kehelathah|strong=\"H6954\"*." + }, + { + "verseNum": 23, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kehelathah|strong=\"H6954\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mount|strong=\"H2022\"* Shepher|strong=\"H8234\"*." + }, + { + "verseNum": 24, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Shepher|strong=\"H8234\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Haradah|strong=\"H2732\"*." + }, + { + "verseNum": 25, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Haradah|strong=\"H2732\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Makheloth|strong=\"H4722\"*." + }, + { + "verseNum": 26, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Makheloth|strong=\"H4722\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Tahath|strong=\"H8480\"*." + }, + { + "verseNum": 27, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Tahath|strong=\"H8480\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Terah|strong=\"H8646\"*." + }, + { + "verseNum": 28, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Terah|strong=\"H8646\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mithkah|strong=\"H4989\"*." + }, + { + "verseNum": 29, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mithkah|strong=\"H4989\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hashmonah|strong=\"H2832\"*." + }, + { + "verseNum": 30, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hashmonah|strong=\"H2832\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Moseroth|strong=\"H4149\"*." + }, + { + "verseNum": 31, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Moseroth|strong=\"H4149\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Bene Jaakan." + }, + { + "verseNum": 32, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Bene Jaakan, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Hor Haggidgad." + }, + { + "verseNum": 33, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Hor Haggidgad, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Jotbathah|strong=\"H3193\"*." + }, + { + "verseNum": 34, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Jotbathah|strong=\"H3193\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Abronah|strong=\"H5684\"*." + }, + { + "verseNum": 35, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Abronah|strong=\"H5684\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Ezion Geber." + }, + { + "verseNum": 36, + "text": "They|strong=\"H1931\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Ezion Geber, and|strong=\"H4057\"* encamped|strong=\"H2583\"* at|strong=\"H2583\"* Kadesh|strong=\"H6946\"* in|strong=\"H2583\"* the|strong=\"H1931\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Zin|strong=\"H6790\"*." + }, + { + "verseNum": 37, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Kadesh|strong=\"H6946\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, in|strong=\"H2583\"* the|strong=\"H2022\"* edge|strong=\"H7097\"* of|strong=\"H2022\"* the|strong=\"H2022\"* land of|strong=\"H2022\"* Edom." + }, + { + "verseNum": 38, + "text": "Aaron the|strong=\"H5921\"* priest|strong=\"H3548\"* went|strong=\"H3318\"* up|strong=\"H5927\"* into|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* at|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* died|strong=\"H4191\"* there|strong=\"H8033\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fortieth year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* come|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H5921\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 39, + "text": "Aaron was|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8141\"* died|strong=\"H4194\"* in|strong=\"H8141\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H8085\"* Canaanite|strong=\"H3669\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Arad|strong=\"H6166\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* South|strong=\"H5045\"* in|strong=\"H3427\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, heard|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* coming of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 41, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Zalmonah|strong=\"H6758\"*." + }, + { + "verseNum": 42, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Zalmonah|strong=\"H6758\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Punon|strong=\"H6325\"*." + }, + { + "verseNum": 43, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Punon|strong=\"H6325\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Oboth." + }, + { + "verseNum": 44, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Oboth, and|strong=\"H4124\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Iye Abarim, in|strong=\"H2583\"* the|strong=\"H2583\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 45, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Iyim|strong=\"H5864\"*, and|strong=\"H5265\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Dibon|strong=\"H1769\"* Gad|strong=\"H1410\"*." + }, + { + "verseNum": 46, + "text": "They traveled|strong=\"H5265\"* from|strong=\"H5265\"* Dibon|strong=\"H1769\"* Gad|strong=\"H1410\"*, and|strong=\"H1410\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Almon Diblathaim." + }, + { + "verseNum": 47, + "text": "They|strong=\"H6440\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Almon Diblathaim, and|strong=\"H6440\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Abarim|strong=\"H5682\"*, before|strong=\"H6440\"* Nebo|strong=\"H5015\"*." + }, + { + "verseNum": 48, + "text": "They|strong=\"H5921\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Abarim|strong=\"H5682\"*, and|strong=\"H2022\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H2022\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H2583\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H5921\"* encamped|strong=\"H2583\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, from|strong=\"H5921\"* Beth Jeshimoth even|strong=\"H5704\"* to|strong=\"H5704\"* Abel Shittim in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 50, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 51, + "text": "Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5674\"*, “When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* into|strong=\"H5674\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 52, + "text": "then|strong=\"H3605\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, destroy|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* stone idols, destroy|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* molten|strong=\"H4541\"* images|strong=\"H6754\"*, and|strong=\"H6440\"* demolish|strong=\"H8045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"H3588\"* shall|strong=\"H3427\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land, and|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* the|strong=\"H3588\"* land to|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H5414\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 54, + "text": "You|strong=\"H5159\"* shall|strong=\"H7227\"* inherit|strong=\"H5157\"* the|strong=\"H3318\"* land|strong=\"H5159\"* by|strong=\"H3318\"* lot|strong=\"H1486\"* according to|strong=\"H3318\"* your|strong=\"H7235\"* families|strong=\"H4940\"*; to|strong=\"H3318\"* the|strong=\"H3318\"* larger|strong=\"H7227\"* groups you|strong=\"H5159\"* shall|strong=\"H7227\"* give|strong=\"H5157\"* a|strong=\"H3068\"* larger|strong=\"H7227\"* inheritance|strong=\"H5159\"*, and|strong=\"H8033\"* to|strong=\"H3318\"* the|strong=\"H3318\"* smaller|strong=\"H4592\"* you|strong=\"H5159\"* shall|strong=\"H7227\"* give|strong=\"H5157\"* a|strong=\"H3068\"* smaller|strong=\"H4592\"* inheritance|strong=\"H5159\"*. Wherever|strong=\"H8033\"* the|strong=\"H3318\"* lot|strong=\"H1486\"* falls|strong=\"H3318\"* to|strong=\"H3318\"* any|strong=\"H1961\"* man, that|strong=\"H4940\"* shall|strong=\"H7227\"* be|strong=\"H1961\"* his|strong=\"H1961\"*. You|strong=\"H5159\"* shall|strong=\"H7227\"* inherit|strong=\"H5157\"* according to|strong=\"H3318\"* the|strong=\"H3318\"* tribes|strong=\"H4294\"* of|strong=\"H4294\"* your|strong=\"H7235\"* fathers." + }, + { + "verseNum": 55, + "text": "“But|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H6440\"* do|strong=\"H5869\"* not|strong=\"H3808\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, then|strong=\"H1961\"* those|strong=\"H1992\"* you|strong=\"H6440\"* let|strong=\"H3808\"* remain|strong=\"H3427\"* of|strong=\"H3427\"* them|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* pricks|strong=\"H7899\"* in|strong=\"H3427\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* thorns|strong=\"H6796\"* in|strong=\"H3427\"* your|strong=\"H5921\"* sides|strong=\"H6654\"*. They|strong=\"H1992\"* will|strong=\"H1961\"* harass|strong=\"H6887\"* you|strong=\"H6440\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* in|strong=\"H3427\"* which|strong=\"H1992\"* you|strong=\"H6440\"* dwell|strong=\"H3427\"*." + }, + { + "verseNum": 56, + "text": "It|strong=\"H6213\"* shall|strong=\"H6213\"* happen|strong=\"H1961\"* that|strong=\"H6213\"* as|strong=\"H1961\"* I|strong=\"H6213\"* thought|strong=\"H1819\"* to|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H6213\"*, so|strong=\"H6213\"* I|strong=\"H6213\"* will|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* you|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell them|strong=\"H6680\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* (this|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H3588\"* land|strong=\"H5159\"* that|strong=\"H3588\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H3588\"* inheritance|strong=\"H5159\"*, even|strong=\"H3588\"* the|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* according to|strong=\"H3478\"* its|strong=\"H3588\"* borders|strong=\"H1367\"*)," + }, + { + "verseNum": 3, + "text": "then|strong=\"H1961\"* your|strong=\"H5921\"* south|strong=\"H5045\"* quarter|strong=\"H6285\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H3027\"* Zin|strong=\"H6790\"* along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H6285\"* of|strong=\"H3027\"* Edom, and|strong=\"H3027\"* your|strong=\"H5921\"* south|strong=\"H5045\"* border|strong=\"H1366\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"* eastward|strong=\"H6924\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H1961\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* turn|strong=\"H5437\"* about|strong=\"H5437\"* southward|strong=\"H5045\"* of|strong=\"H1366\"* the|strong=\"H5674\"* ascent|strong=\"H4610\"* of|strong=\"H1366\"* Akrabbim|strong=\"H4610\"*, and|strong=\"H3318\"* pass|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Zin|strong=\"H6790\"*; and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* pass|strong=\"H5674\"* southward|strong=\"H5045\"* of|strong=\"H1366\"* Kadesh Barnea; and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* go|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H1961\"* to|strong=\"H3318\"* Hazar Addar, and|strong=\"H3318\"* pass|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Azmon|strong=\"H6111\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5437\"* border|strong=\"H1366\"* shall|strong=\"H4714\"* turn|strong=\"H5437\"* about|strong=\"H5437\"* from|strong=\"H5437\"* Azmon|strong=\"H6111\"* to|strong=\"H1961\"* the|strong=\"H5437\"* brook|strong=\"H5158\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* it|strong=\"H1961\"* shall|strong=\"H4714\"* end at|strong=\"H1961\"* the|strong=\"H5437\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 6, + "text": "“‘For|strong=\"H1961\"* the|strong=\"H1961\"* western|strong=\"H3220\"* border|strong=\"H1366\"*, you|strong=\"H2088\"* shall|strong=\"H1366\"* have|strong=\"H1961\"* the|strong=\"H1961\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* and|strong=\"H1419\"* its|strong=\"H3220\"* border|strong=\"H1366\"*. This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* west|strong=\"H3220\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 7, + "text": "“‘This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H4480\"* north|strong=\"H6828\"* border|strong=\"H1366\"*: from|strong=\"H4480\"* the|strong=\"H4480\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* you|strong=\"H4480\"* shall|strong=\"H1366\"* mark out|strong=\"H4480\"* for|strong=\"H1961\"* yourselves Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H1961\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"* you|strong=\"H2022\"* shall|strong=\"H1366\"* mark out|strong=\"H8444\"* to|strong=\"H1961\"* the|strong=\"H1961\"* entrance of|strong=\"H2022\"* Hamath|strong=\"H2574\"*; and|strong=\"H2022\"* the|strong=\"H1961\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* pass|strong=\"H1961\"* by|strong=\"H1961\"* Zedad|strong=\"H6657\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* the|strong=\"H3318\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3318\"* to|strong=\"H3318\"* Ziphron|strong=\"H2202\"*, and|strong=\"H3318\"* it|strong=\"H1961\"* shall|strong=\"H1366\"* end|strong=\"H3318\"* at|strong=\"H1961\"* Hazar Enan. This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* north|strong=\"H6828\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 10, + "text": "“‘You shall|strong=\"H1366\"* mark out|strong=\"H1366\"* your east|strong=\"H6924\"* border|strong=\"H1366\"* from|strong=\"H1366\"* Hazar Enan to|strong=\"H2704\"* Shepham|strong=\"H8221\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* Shepham|strong=\"H8221\"* to|strong=\"H3381\"* Riblah|strong=\"H7247\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6924\"* side|strong=\"H3802\"* of|strong=\"H1366\"* Ain|strong=\"H5871\"*. The|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3381\"* shall|strong=\"H1366\"* reach|strong=\"H4229\"* to|strong=\"H3381\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H1366\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* of|strong=\"H1366\"* Chinnereth|strong=\"H3672\"* eastward|strong=\"H6924\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5439\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5439\"* Jordan|strong=\"H3383\"*, and|strong=\"H3381\"* end at|strong=\"H1961\"* the|strong=\"H5439\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*. This|strong=\"H2063\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H1961\"* land|strong=\"H1366\"* according to|strong=\"H3381\"* its|strong=\"H5439\"* borders|strong=\"H1366\"* around|strong=\"H5439\"* it|strong=\"H3381\"*.’”" + }, + { + "verseNum": 13, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5414\"* land|strong=\"H1486\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H5157\"* by|strong=\"H3068\"* lot|strong=\"H1486\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* nine|strong=\"H8672\"* tribes|strong=\"H4294\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"*;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H3588\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7206\"* according to|strong=\"H1121\"* their|strong=\"H3947\"* fathers’ houses|strong=\"H1004\"*, the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1425\"* according to|strong=\"H1121\"* their|strong=\"H3947\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* have|strong=\"H1121\"* received|strong=\"H3947\"* their|strong=\"H3947\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3947\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"* and|strong=\"H8147\"* the|strong=\"H3947\"* half-tribe|strong=\"H2677\"* have|strong=\"H4294\"* received|strong=\"H3947\"* their|strong=\"H3947\"* inheritance|strong=\"H5159\"* beyond|strong=\"H5676\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"* eastward|strong=\"H6924\"*, toward|strong=\"H4294\"* the|strong=\"H3947\"* sunrise|strong=\"H4217\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "“These are|strong=\"H1121\"* the|strong=\"H3091\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3091\"* men|strong=\"H1121\"* who|strong=\"H3548\"* shall|strong=\"H3548\"* divide|strong=\"H5157\"* the|strong=\"H3091\"* land to|strong=\"H1121\"* you for|strong=\"H8034\"* inheritance|strong=\"H5157\"*: Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3947\"* shall|strong=\"H5387\"* take|strong=\"H3947\"* one prince|strong=\"H5387\"* of|strong=\"H4294\"* every|strong=\"H3947\"* tribe|strong=\"H4294\"*, to|strong=\"H4294\"* divide|strong=\"H5157\"* the|strong=\"H3947\"* land for|strong=\"H3947\"* inheritance|strong=\"H5157\"*." + }, + { + "verseNum": 19, + "text": "These are|strong=\"H1121\"* the|strong=\"H3612\"* names|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3612\"* men|strong=\"H1121\"*: Of|strong=\"H1121\"* the|strong=\"H3612\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, Shemuel|strong=\"H8050\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Elidad the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chislon|strong=\"H3692\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Bukki|strong=\"H1231\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jogli|strong=\"H3020\"*." + }, + { + "verseNum": 23, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Hanniel|strong=\"H2592\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ephod." + }, + { + "verseNum": 24, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim a|strong=\"H3068\"* prince|strong=\"H5387\"*, Kemuel|strong=\"H7055\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiphtan|strong=\"H8204\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Elizaphan the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Parnach|strong=\"H6535\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Paltiel|strong=\"H6409\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzan|strong=\"H5821\"*." + }, + { + "verseNum": 27, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher a|strong=\"H3068\"* prince|strong=\"H5387\"*, Ahihud the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelomi|strong=\"H8015\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* a|strong=\"H3068\"* prince|strong=\"H5387\"*, Pedahel|strong=\"H6300\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*.”" + }, + { + "verseNum": 29, + "text": "These are|strong=\"H1121\"* they|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* divide|strong=\"H5157\"* the|strong=\"H3068\"* inheritance|strong=\"H5157\"* to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Command|strong=\"H6680\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* cities|strong=\"H5892\"* to|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* out|strong=\"H5414\"* of|strong=\"H1121\"* their|strong=\"H5414\"* inheritance|strong=\"H5159\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* around|strong=\"H5439\"* them|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3605\"* shall|strong=\"H5892\"* have|strong=\"H1961\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*. Their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H3427\"* their|strong=\"H3605\"* livestock, and|strong=\"H5892\"* for|strong=\"H3427\"* their|strong=\"H3605\"* possessions|strong=\"H7399\"*, and|strong=\"H5892\"* for|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* animals|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "“The|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* the|strong=\"H5414\"* cities|strong=\"H5892\"*, which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, shall|strong=\"H5892\"* be|strong=\"H5414\"* from|strong=\"H3881\"* the|strong=\"H5414\"* wall|strong=\"H7023\"* of|strong=\"H5892\"* the|strong=\"H5414\"* city|strong=\"H5892\"* and|strong=\"H5892\"* outward|strong=\"H2351\"* one|strong=\"H5892\"* thousand cubits+ 35:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* around|strong=\"H5439\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H8432\"* shall|strong=\"H5892\"* measure|strong=\"H4058\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* east|strong=\"H6924\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* south|strong=\"H5045\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* west|strong=\"H3220\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, and|strong=\"H5892\"* for|strong=\"H5892\"* the|strong=\"H8432\"* north|strong=\"H6828\"* side|strong=\"H6285\"* two|strong=\"H6285\"* thousand cubits, the|strong=\"H8432\"* city|strong=\"H5892\"* being|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"*. This|strong=\"H2088\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* the|strong=\"H8432\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H5892\"* their|strong=\"H8432\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "“The|strong=\"H5921\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, they|strong=\"H8033\"* shall|strong=\"H5892\"* be|strong=\"H5414\"* the|strong=\"H5921\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*, which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* man slayer|strong=\"H7523\"* to|strong=\"H5921\"* flee|strong=\"H5127\"* to|strong=\"H5921\"*. Besides|strong=\"H5921\"* them|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* forty-two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H5892\"* be|strong=\"H5414\"* forty-eight|strong=\"H8083\"* cities|strong=\"H5892\"* together with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 8, + "text": "Concerning|strong=\"H3478\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* possession|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* the|strong=\"H5414\"* many|strong=\"H7227\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* take|strong=\"H1121\"* many|strong=\"H7227\"*, and|strong=\"H1121\"* from|strong=\"H3478\"* the|strong=\"H5414\"* few|strong=\"H4592\"* you|strong=\"H5414\"* shall|strong=\"H1121\"* take|strong=\"H1121\"* few|strong=\"H4592\"*. Everyone according|strong=\"H6310\"* to|strong=\"H3478\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* which|strong=\"H5892\"* he|strong=\"H5414\"* inherits|strong=\"H5157\"* shall|strong=\"H1121\"* give|strong=\"H5414\"* some|strong=\"H4592\"* of|strong=\"H1121\"* his|strong=\"H5414\"* cities|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5674\"*, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* into|strong=\"H5674\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 11, + "text": "then|strong=\"H1961\"* you|strong=\"H5221\"* shall|strong=\"H5315\"* appoint|strong=\"H7136\"* for|strong=\"H5892\"* yourselves|strong=\"H5315\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* be|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* you|strong=\"H5221\"*, that|strong=\"H5315\"* the|strong=\"H5221\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* any|strong=\"H5221\"* person|strong=\"H5315\"* unwittingly|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* cities|strong=\"H5892\"* shall|strong=\"H5712\"* be|strong=\"H1961\"* for|strong=\"H5704\"* your|strong=\"H6440\"* refuge|strong=\"H4733\"* from|strong=\"H6440\"* the|strong=\"H6440\"* avenger|strong=\"H1350\"*, that|strong=\"H5892\"* the|strong=\"H6440\"* man|strong=\"H4191\"* slayer|strong=\"H7523\"* not|strong=\"H3808\"* die|strong=\"H4191\"* until|strong=\"H5704\"* he|strong=\"H5704\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* for|strong=\"H5704\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* you|strong=\"H5414\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*, and|strong=\"H5892\"* you|strong=\"H5414\"* shall|strong=\"H5892\"* give|strong=\"H5414\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H5892\"* Canaan|strong=\"H3667\"*. They|strong=\"H5414\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*." + }, + { + "verseNum": 15, + "text": "These|strong=\"H3605\"* six|strong=\"H8337\"* cities|strong=\"H5892\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, for|strong=\"H1121\"* the|strong=\"H3605\"* stranger|strong=\"H1616\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H3605\"* foreigner|strong=\"H1121\"* living|strong=\"H5315\"* among|strong=\"H8432\"* them|strong=\"H5221\"*, that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"* unwittingly|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 16, + "text": "“‘But|strong=\"H5221\"* if|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3627\"* an|strong=\"H5221\"* instrument|strong=\"H3627\"* of|strong=\"H3627\"* iron|strong=\"H1270\"*, so|strong=\"H4191\"* that|strong=\"H1931\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H7523\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* a|strong=\"H3068\"* stone in|strong=\"H4191\"* the|strong=\"H5221\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H7523\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Or|strong=\"H4191\"* if|strong=\"H1931\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* a|strong=\"H3068\"* weapon|strong=\"H3627\"* of|strong=\"H3027\"* wood|strong=\"H6086\"* in|strong=\"H4191\"* the|strong=\"H5221\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H7523\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* murderer|strong=\"H7523\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4191\"* avenger|strong=\"H1350\"* of|strong=\"H1818\"* blood|strong=\"H1818\"* shall|strong=\"H7523\"* himself|strong=\"H1931\"* put|strong=\"H4191\"* the|strong=\"H4191\"* murderer|strong=\"H7523\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. When he|strong=\"H1931\"* meets|strong=\"H6293\"* him|strong=\"H4191\"*, he|strong=\"H1931\"* shall|strong=\"H7523\"* put|strong=\"H4191\"* him|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 20, + "text": "If he|strong=\"H5921\"* shoved him|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H5921\"* hatred|strong=\"H8135\"*, or|strong=\"H4191\"* hurled|strong=\"H7993\"* something at|strong=\"H5921\"* him|strong=\"H5921\"* while|strong=\"H5921\"* lying|strong=\"H7993\"* in|strong=\"H5921\"* wait|strong=\"H6660\"*, so|strong=\"H4191\"* that|strong=\"H5921\"* he|strong=\"H5921\"* died|strong=\"H4191\"*," + }, + { + "verseNum": 21, + "text": "or|strong=\"H4191\"* in|strong=\"H4191\"* hostility struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, so|strong=\"H4191\"* that|strong=\"H1931\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, he|strong=\"H1931\"* who|strong=\"H1931\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* shall|strong=\"H3027\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"*. The|strong=\"H5221\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"* shall|strong=\"H3027\"* put|strong=\"H4191\"* the|strong=\"H5221\"* murderer|strong=\"H7523\"* to|strong=\"H4191\"* death|strong=\"H4191\"* when|strong=\"H3027\"* he|strong=\"H1931\"* meets|strong=\"H6293\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 22, + "text": "“‘But|strong=\"H3808\"* if he|strong=\"H3605\"* shoved him|strong=\"H5921\"* suddenly|strong=\"H6621\"* without|strong=\"H3808\"* hostility, or|strong=\"H3808\"* hurled|strong=\"H7993\"* on|strong=\"H5921\"* him|strong=\"H5921\"* anything|strong=\"H3605\"* without|strong=\"H3808\"* lying|strong=\"H7993\"* in|strong=\"H5921\"* wait|strong=\"H6660\"*," + }, + { + "verseNum": 23, + "text": "or|strong=\"H3808\"* with|strong=\"H5921\"* any|strong=\"H3605\"* stone, by|strong=\"H5921\"* which|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H4191\"* may|strong=\"H1931\"* die|strong=\"H4191\"*, not|strong=\"H3808\"* seeing|strong=\"H7200\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* cast|strong=\"H5307\"* it|strong=\"H1931\"* on|strong=\"H5921\"* him|strong=\"H5921\"* so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, and|strong=\"H7200\"* he|strong=\"H1931\"* was|strong=\"H1931\"* not|strong=\"H3808\"* his|strong=\"H3605\"* enemy and|strong=\"H7200\"* not|strong=\"H3808\"* seeking|strong=\"H1245\"* his|strong=\"H3605\"* harm|strong=\"H7451\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H5221\"* the|strong=\"H5921\"* congregation|strong=\"H5712\"* shall|strong=\"H5712\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* the|strong=\"H5921\"* striker and|strong=\"H4941\"* the|strong=\"H5921\"* avenger|strong=\"H1350\"* of|strong=\"H5921\"* blood|strong=\"H1818\"* according|strong=\"H5921\"* to|strong=\"H5921\"* these|strong=\"H5221\"* ordinances|strong=\"H4941\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7725\"* congregation|strong=\"H5712\"* shall|strong=\"H3548\"* deliver|strong=\"H5337\"* the|strong=\"H7725\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H7725\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7725\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* congregation|strong=\"H5712\"* shall|strong=\"H3548\"* restore|strong=\"H7725\"* him|strong=\"H3027\"* to|strong=\"H5704\"* his|strong=\"H7725\"* city|strong=\"H5892\"* of|strong=\"H3027\"* refuge|strong=\"H4733\"*, where|strong=\"H8033\"* he|strong=\"H5704\"* had|strong=\"H3548\"* fled|strong=\"H5127\"*. He|strong=\"H5704\"* shall|strong=\"H3548\"* dwell|strong=\"H3427\"* therein|strong=\"H8033\"* until|strong=\"H5704\"* the|strong=\"H7725\"* death|strong=\"H4194\"* of|strong=\"H3027\"* the|strong=\"H7725\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* was|strong=\"H5892\"* anointed|strong=\"H4886\"* with|strong=\"H3427\"* the|strong=\"H7725\"* holy|strong=\"H6944\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 26, + "text": "“‘But|strong=\"H5127\"* if the|strong=\"H3318\"* man slayer|strong=\"H7523\"* shall|strong=\"H5892\"* at|strong=\"H3318\"* any|strong=\"H3318\"* time|strong=\"H3318\"* go|strong=\"H3318\"* beyond|strong=\"H3318\"* the|strong=\"H3318\"* border|strong=\"H1366\"* of|strong=\"H5892\"* his|strong=\"H3318\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* where|strong=\"H8033\"* he|strong=\"H8033\"* flees|strong=\"H5127\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H5892\"* the|strong=\"H2351\"* avenger|strong=\"H1350\"* of|strong=\"H5892\"* blood|strong=\"H1818\"* finds|strong=\"H4672\"* him|strong=\"H4672\"* outside|strong=\"H2351\"* of|strong=\"H5892\"* the|strong=\"H2351\"* border|strong=\"H1366\"* of|strong=\"H5892\"* his|strong=\"H4672\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"*, and|strong=\"H5892\"* the|strong=\"H2351\"* avenger|strong=\"H1350\"* of|strong=\"H5892\"* blood|strong=\"H1818\"* kills|strong=\"H7523\"* the|strong=\"H2351\"* man slayer|strong=\"H7523\"*, he|strong=\"H1818\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* guilty of|strong=\"H5892\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 28, + "text": "because|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H3588\"* have|strong=\"H3548\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7725\"* city|strong=\"H5892\"* of|strong=\"H3427\"* refuge|strong=\"H4733\"* until|strong=\"H5704\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3588\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*. But|strong=\"H3588\"* after|strong=\"H3588\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3588\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, the|strong=\"H3588\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* shall|strong=\"H3548\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* his|strong=\"H7725\"* possession." + }, + { + "verseNum": 29, + "text": "“‘These|strong=\"H3605\"* things|strong=\"H3605\"* shall|strong=\"H4941\"* be|strong=\"H1961\"* for|strong=\"H2708\"* a|strong=\"H3068\"* statute|strong=\"H2708\"* and|strong=\"H4941\"* ordinance|strong=\"H4941\"* to|strong=\"H1961\"* you|strong=\"H3605\"* throughout|strong=\"H3605\"* your|strong=\"H3605\"* generations|strong=\"H1755\"* in|strong=\"H1755\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwellings|strong=\"H4186\"*." + }, + { + "verseNum": 30, + "text": "“‘Whoever|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"*, the|strong=\"H3605\"* murderer|strong=\"H7523\"* shall|strong=\"H5315\"* be|strong=\"H4191\"* slain|strong=\"H5221\"* based on|strong=\"H4191\"* the|strong=\"H3605\"* testimony|strong=\"H5707\"* of|strong=\"H6310\"* witnesses|strong=\"H5707\"*; but|strong=\"H3808\"* one|strong=\"H3605\"* witness|strong=\"H5707\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* testify|strong=\"H6030\"* alone against|strong=\"H3605\"* any|strong=\"H3605\"* person|strong=\"H5315\"* so|strong=\"H3808\"* that|strong=\"H3605\"* he|strong=\"H3605\"* dies|strong=\"H4191\"*." + }, + { + "verseNum": 31, + "text": "“‘Moreover|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* take|strong=\"H3947\"* no|strong=\"H3808\"* ransom|strong=\"H3724\"* for|strong=\"H3588\"* the|strong=\"H3588\"* life|strong=\"H5315\"* of|strong=\"H5315\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"* who|strong=\"H1931\"* is|strong=\"H1931\"* guilty|strong=\"H7563\"* of|strong=\"H5315\"* death|strong=\"H4191\"*. He|strong=\"H1931\"* shall|strong=\"H5315\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "“‘You|strong=\"H5704\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* no|strong=\"H3808\"* ransom|strong=\"H3724\"* for|strong=\"H5704\"* him|strong=\"H7725\"* who|strong=\"H3548\"* has|strong=\"H3548\"* fled|strong=\"H5127\"* to|strong=\"H5704\"* his|strong=\"H3947\"* city|strong=\"H5892\"* of|strong=\"H3427\"* refuge|strong=\"H4733\"*, that|strong=\"H3548\"* he|strong=\"H5704\"* may|strong=\"H7725\"* come|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H5704\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3947\"* land before|strong=\"H5704\"* the|strong=\"H3947\"* death|strong=\"H4194\"* of|strong=\"H3427\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 33, + "text": "“‘So|strong=\"H3808\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* pollute|strong=\"H2610\"* the|strong=\"H3588\"* land where|strong=\"H3808\"* you|strong=\"H3588\"* live; for|strong=\"H3588\"* blood|strong=\"H1818\"* pollutes|strong=\"H2610\"* the|strong=\"H3588\"* land. No|strong=\"H3808\"* atonement|strong=\"H3722\"* can|strong=\"H3808\"* be|strong=\"H3808\"* made|strong=\"H3722\"* for|strong=\"H3588\"* the|strong=\"H3588\"* land for|strong=\"H3588\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* that|strong=\"H3588\"* is|strong=\"H1931\"* shed|strong=\"H8210\"* in|strong=\"H3808\"* it|strong=\"H1931\"*, but|strong=\"H3588\"* by|strong=\"H3808\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* him|strong=\"H1931\"* who|strong=\"H1931\"* shed|strong=\"H8210\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* defile|strong=\"H2930\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* you|strong=\"H3588\"* inhabit|strong=\"H3427\"*, where|strong=\"H7931\"* I|strong=\"H3588\"* dwell|strong=\"H3427\"*; for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, dwell|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6440\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* the|strong=\"H6440\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* before|strong=\"H6440\"* Moses|strong=\"H4872\"* and|strong=\"H1121\"* before|strong=\"H6440\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* my|strong=\"H5414\"* lord|strong=\"H3068\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H3068\"* inheritance|strong=\"H5159\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* to|strong=\"H3478\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. My|strong=\"H5414\"* lord|strong=\"H3068\"* was|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"* our|strong=\"H3068\"* brother to|strong=\"H3478\"* his|strong=\"H5414\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1961\"* they|strong=\"H5921\"* are|strong=\"H1121\"* married to|strong=\"H3478\"* any|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* other tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, then|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* our|strong=\"H5921\"* fathers, and|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H3478\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* which|strong=\"H3478\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"*. So|strong=\"H1961\"* it|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* of|strong=\"H1121\"* our|strong=\"H5921\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* jubilee|strong=\"H3104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* comes|strong=\"H1961\"*, then|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H3478\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* which|strong=\"H3478\"* they|strong=\"H5921\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"*. So|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1639\"* away|strong=\"H1639\"* from|strong=\"H5921\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* our|strong=\"H5921\"* fathers.”" + }, + { + "verseNum": 5, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according|strong=\"H5921\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, saying|strong=\"H1696\"*, “The|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* speak|strong=\"H1696\"* what|strong=\"H6310\"* is|strong=\"H3068\"* right|strong=\"H3651\"*." + }, + { + "verseNum": 6, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commands|strong=\"H6680\"* concerning|strong=\"H1697\"* the|strong=\"H3068\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zelophehad|strong=\"H6765\"*, saying|strong=\"H1697\"*, ‘Let|strong=\"H1961\"* them|strong=\"H6680\"* be|strong=\"H1961\"* married to|strong=\"H3068\"* whom|strong=\"H5869\"* they|strong=\"H3068\"* think|strong=\"H5869\"* best|strong=\"H2896\"*, only they|strong=\"H3068\"* shall|strong=\"H3068\"* marry|strong=\"H1961\"* into|strong=\"H1323\"* the|strong=\"H3068\"* family|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3068\"* tribe|strong=\"H4294\"* of|strong=\"H3068\"* their|strong=\"H3068\"* father." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3808\"* shall|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* move|strong=\"H5437\"* from|strong=\"H3478\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* tribe|strong=\"H4294\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* all|strong=\"H5437\"* keep|strong=\"H1692\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* his|strong=\"H3478\"* fathers." + }, + { + "verseNum": 8, + "text": "Every|strong=\"H3605\"* daughter|strong=\"H1323\"* who|strong=\"H3605\"* possesses an|strong=\"H1961\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* any|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* wife to|strong=\"H3478\"* one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* her|strong=\"H3605\"* father|strong=\"H1121\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* may|strong=\"H1961\"* each|strong=\"H3605\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* his|strong=\"H3605\"* fathers." + }, + { + "verseNum": 9, + "text": "So|strong=\"H3808\"* shall|strong=\"H1121\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* move|strong=\"H5437\"* from|strong=\"H3478\"* one|strong=\"H3808\"* tribe|strong=\"H4294\"* to|strong=\"H3478\"* another|strong=\"H3808\"* tribe|strong=\"H4294\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* each keep|strong=\"H1692\"* his|strong=\"H3478\"* own inheritance|strong=\"H5159\"*.’”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zelophehad|strong=\"H6765\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*:" + }, + { + "verseNum": 11, + "text": "for|strong=\"H1121\"* Mahlah|strong=\"H4244\"*, Tirzah|strong=\"H8656\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Noah|strong=\"H5270\"*, the|strong=\"H1961\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Zelophehad|strong=\"H6765\"*, were|strong=\"H1961\"* married to|strong=\"H1961\"* their|strong=\"H1961\"* father|strong=\"H1121\"*’s brothers|strong=\"H1121\"*’ sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* were|strong=\"H1961\"* married into|strong=\"H5921\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*. Their|strong=\"H5921\"* inheritance|strong=\"H5159\"* remained|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H1121\"* their|strong=\"H5921\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "These are|strong=\"H1121\"* the|strong=\"H5921\"* commandments|strong=\"H4687\"* and|strong=\"H1121\"* the|strong=\"H5921\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* to|strong=\"H3478\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* by|strong=\"H3027\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + } + ] + } + ] + }, + { + "name": "Deuteronomy", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* in|strong=\"H3478\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* opposite|strong=\"H4136\"* Suf, between Paran|strong=\"H6290\"*, Tophel|strong=\"H8603\"*, Laban|strong=\"H3837\"*, Hazeroth|strong=\"H2698\"*, and|strong=\"H4872\"* Dizahab|strong=\"H1774\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5704\"* is|strong=\"H3117\"* eleven|strong=\"H6240\"* days|strong=\"H3117\"*’ journey|strong=\"H1870\"* from|strong=\"H3117\"* Horeb|strong=\"H2722\"* by|strong=\"H3117\"* the|strong=\"H3117\"* way|strong=\"H1870\"* of|strong=\"H3117\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5704\"* Kadesh Barnea." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* fortieth year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* had|strong=\"H3068\"* given|strong=\"H6680\"* him|strong=\"H6680\"* in|strong=\"H8141\"* commandment|strong=\"H6680\"* to|strong=\"H1696\"* them|strong=\"H6680\"*," + }, + { + "verseNum": 4, + "text": "after he|strong=\"H5221\"* had|strong=\"H4428\"* struck|strong=\"H5221\"* Sihon|strong=\"H5511\"* the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Amorites who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H4428\"* Og|strong=\"H5747\"* the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ashtaroth|strong=\"H6252\"*, at|strong=\"H3427\"* Edrei." + }, + { + "verseNum": 5, + "text": "Beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"*, in|strong=\"H4872\"* the|strong=\"H4872\"* land|strong=\"H5676\"* of|strong=\"H8451\"* Moab|strong=\"H4124\"*, Moses|strong=\"H4872\"* began|strong=\"H2974\"* to|strong=\"H2974\"* declare this|strong=\"H2063\"* law|strong=\"H8451\"*, saying," + }, + { + "verseNum": 6, + "text": "“Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:6 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* spoke|strong=\"H1696\"* to|strong=\"H1696\"* us in|strong=\"H3427\"* Horeb|strong=\"H2722\"*, saying|strong=\"H1696\"*, ‘You|strong=\"H1696\"* have|strong=\"H3068\"* lived|strong=\"H3427\"* long|strong=\"H7227\"* enough|strong=\"H7227\"* at|strong=\"H3427\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 7, + "text": "Turn|strong=\"H6437\"*, and|strong=\"H1419\"* take|strong=\"H5265\"* your|strong=\"H3605\"* journey|strong=\"H5265\"*, and|strong=\"H1419\"* go|strong=\"H5265\"* to|strong=\"H5704\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Amorites and|strong=\"H1419\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H3605\"* near|strong=\"H5704\"* there|strong=\"H2022\"*: in|strong=\"H1419\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* South|strong=\"H5045\"*, by|strong=\"H5704\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"*, in|strong=\"H1419\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, and|strong=\"H1419\"* in|strong=\"H1419\"* Lebanon|strong=\"H3844\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H7200\"*,+ 1:8 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers—to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*—to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* offspring|strong=\"H2233\"*+ 1:8 or, seed* after|strong=\"H2233\"* them|strong=\"H5414\"*.’”" + }, + { + "verseNum": 9, + "text": "I|strong=\"H3201\"* spoke to|strong=\"H3201\"* you|strong=\"H3808\"* at|strong=\"H3808\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying, “I|strong=\"H3201\"* am not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* bear|strong=\"H5375\"* you|strong=\"H3808\"* myself alone|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* multiplied|strong=\"H7235\"* you|strong=\"H3117\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, you|strong=\"H3117\"* are|strong=\"H3117\"* today|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3068\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H3068\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 11, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, make|strong=\"H3254\"* you|strong=\"H5921\"* a|strong=\"H3068\"* thousand times|strong=\"H6471\"* as|strong=\"H3068\"* many as|strong=\"H3068\"* you|strong=\"H5921\"* are|strong=\"H3068\"* and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H5921\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H5921\"*!" + }, + { + "verseNum": 12, + "text": "How can I myself alone bear|strong=\"H5375\"* your|strong=\"H5375\"* problems, your|strong=\"H5375\"* burdens|strong=\"H4853\"*, and|strong=\"H7379\"* your|strong=\"H5375\"* strife|strong=\"H7379\"*?" + }, + { + "verseNum": 13, + "text": "Take|strong=\"H7760\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* of|strong=\"H7626\"* understanding who|strong=\"H3045\"* are|strong=\"H2450\"* respected among|strong=\"H7218\"* your|strong=\"H7760\"* tribes|strong=\"H7626\"*, and|strong=\"H7218\"* I|strong=\"H7760\"* will|strong=\"H2450\"* make|strong=\"H7760\"* them|strong=\"H7760\"* heads|strong=\"H7218\"* over|strong=\"H7218\"* you|strong=\"H3045\"*.”" + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* answered|strong=\"H6030\"* me|strong=\"H6213\"*, and|strong=\"H6030\"* said|strong=\"H1696\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H1697\"* spoken|strong=\"H1696\"* is|strong=\"H1697\"* good|strong=\"H2896\"* to|strong=\"H1696\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H3947\"* I|strong=\"H5414\"* took|strong=\"H3947\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* your|strong=\"H5414\"* tribes|strong=\"H7626\"*, wise|strong=\"H2450\"* and|strong=\"H3967\"* respected men|strong=\"H2450\"*, and|strong=\"H3967\"* made|strong=\"H5414\"* them|strong=\"H5414\"* heads|strong=\"H7218\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands, captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*, captains|strong=\"H8269\"* of|strong=\"H8269\"* tens|strong=\"H6235\"*, and|strong=\"H3967\"* officers|strong=\"H7860\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H5414\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H8085\"* judges|strong=\"H8199\"* at|strong=\"H6680\"* that|strong=\"H8085\"* time|strong=\"H6256\"*, saying, “Hear|strong=\"H8085\"* cases between|strong=\"H8199\"* your|strong=\"H8085\"* brothers and|strong=\"H8085\"* judge|strong=\"H8199\"* righteously|strong=\"H6664\"* between|strong=\"H8199\"* a|strong=\"H3068\"* man and|strong=\"H8085\"* his|strong=\"H8085\"* brother, and|strong=\"H8085\"* the|strong=\"H8085\"* foreigner|strong=\"H1616\"* who|strong=\"H1931\"* is|strong=\"H1931\"* living with|strong=\"H8085\"* him|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"* in|strong=\"H8085\"* judgment|strong=\"H4941\"*; you|strong=\"H3588\"* shall|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* small|strong=\"H6996\"* and|strong=\"H1419\"* the|strong=\"H6440\"* great|strong=\"H1419\"* alike|strong=\"H6440\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H1481\"* of|strong=\"H1697\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1697\"* man|strong=\"H1419\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* is|strong=\"H1931\"* God|strong=\"H3808\"*’s. The|strong=\"H6440\"* case|strong=\"H1697\"* that|strong=\"H3588\"* is|strong=\"H1931\"* too|strong=\"H4480\"* hard|strong=\"H7185\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* bring|strong=\"H7126\"* to|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H1419\"* I|strong=\"H3588\"* will|strong=\"H1697\"* hear|strong=\"H8085\"* it|strong=\"H1931\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H1697\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* at|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H1931\"* you|strong=\"H6680\"* should|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"H5704\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Horeb|strong=\"H2722\"* and|strong=\"H3068\"* went|strong=\"H3212\"* through|strong=\"H3212\"* all|strong=\"H3605\"* that|strong=\"H7200\"* great|strong=\"H1419\"* and|strong=\"H3068\"* terrible|strong=\"H3372\"* wilderness|strong=\"H4057\"* which|strong=\"H1931\"* you|strong=\"H6680\"* saw|strong=\"H7200\"*, by|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1870\"* to|strong=\"H5704\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Amorites, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H7200\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Kadesh Barnea." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* said to|strong=\"H5704\"* you|strong=\"H5414\"*, “You|strong=\"H5414\"* have|strong=\"H3068\"* come to|strong=\"H5704\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Amorites, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* to|strong=\"H5704\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"*, take|strong=\"H3423\"* possession|strong=\"H3423\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, neither be|strong=\"H3068\"* dismayed|strong=\"H2865\"*.”" + }, + { + "verseNum": 22, + "text": "You|strong=\"H6440\"* came|strong=\"H5927\"* near|strong=\"H7126\"* to|strong=\"H7725\"* me|strong=\"H6440\"*, everyone|strong=\"H3605\"* of|strong=\"H1697\"* you|strong=\"H6440\"*, and|strong=\"H7971\"* said|strong=\"H1697\"*, “Let|strong=\"H7971\"*’s send|strong=\"H7971\"* men|strong=\"H3605\"* before|strong=\"H6440\"* us|strong=\"H7725\"*, that|strong=\"H3605\"* they|strong=\"H1697\"* may|strong=\"H7725\"* search|strong=\"H2658\"* the|strong=\"H3605\"* land|strong=\"H6440\"* for|strong=\"H6440\"* us|strong=\"H7725\"*, and|strong=\"H7971\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* us|strong=\"H7725\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which|strong=\"H1697\"* we|strong=\"H3068\"* must go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7971\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H7725\"* which|strong=\"H1697\"* we|strong=\"H3068\"* shall|strong=\"H5892\"* come|strong=\"H5927\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H3947\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* me|strong=\"H4480\"* well|strong=\"H3190\"*. I|strong=\"H1697\"* took|strong=\"H3947\"* twelve|strong=\"H8147\"* of|strong=\"H1697\"* your|strong=\"H3947\"* men|strong=\"H8147\"*, one|strong=\"H4480\"* man for|strong=\"H5869\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5704\"* turned|strong=\"H6437\"* and|strong=\"H6437\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5704\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H6437\"* came|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H5704\"* valley|strong=\"H5158\"* of|strong=\"H2022\"* Eshcol, and|strong=\"H6437\"* spied|strong=\"H7270\"* it|strong=\"H5927\"* out|strong=\"H7270\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3068\"* took|strong=\"H3947\"* some|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land in|strong=\"H3068\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* brought|strong=\"H7725\"* it|strong=\"H5414\"* down|strong=\"H3381\"* to|strong=\"H7725\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* us|strong=\"H5414\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* a|strong=\"H3068\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* to|strong=\"H7725\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 26, + "text": "Yet|strong=\"H3068\"* you|strong=\"H3808\"* wouldn’t go|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H3068\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5414\"* murmured|strong=\"H7279\"* in|strong=\"H3068\"* your|strong=\"H3068\"* tents, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* hated|strong=\"H8135\"* us|strong=\"H5414\"*, he|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5414\"* Amorites to|strong=\"H3318\"* destroy|strong=\"H8045\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "Where|strong=\"H8033\"* are|strong=\"H5971\"* we|strong=\"H3068\"* going|strong=\"H5927\"* up|strong=\"H5927\"*? Our|strong=\"H7200\"* brothers|strong=\"H1121\"* have|strong=\"H5971\"* made|strong=\"H7311\"* our|strong=\"H7200\"* heart|strong=\"H3824\"* melt|strong=\"H4549\"*, saying, ‘The|strong=\"H7200\"* people|strong=\"H5971\"* are|strong=\"H5971\"* greater|strong=\"H1419\"* and|strong=\"H1121\"* taller|strong=\"H7311\"* than|strong=\"H4480\"* we|strong=\"H3068\"*. The|strong=\"H7200\"* cities|strong=\"H5892\"* are|strong=\"H5971\"* great|strong=\"H1419\"* and|strong=\"H1121\"* fortified|strong=\"H1219\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H7200\"* sky|strong=\"H8064\"*. Moreover|strong=\"H1571\"* we|strong=\"H3068\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7200\"* Anakim|strong=\"H6062\"* there|strong=\"H8033\"*!’”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H3372\"* I|strong=\"H3808\"* said to|strong=\"H3372\"* you|strong=\"H3808\"*, “Don’t be|strong=\"H3808\"* terrified|strong=\"H6206\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* goes|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, he|strong=\"H1931\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, according to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* did|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"* in|strong=\"H1980\"* Egypt|strong=\"H4714\"* before|strong=\"H6440\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* in|strong=\"H1980\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* where|strong=\"H4725\"* you|strong=\"H3605\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* how|strong=\"H5704\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* carried|strong=\"H5375\"* you|strong=\"H3605\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* man|strong=\"H1121\"* carries|strong=\"H5375\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* that|strong=\"H7200\"* you|strong=\"H3605\"* went|strong=\"H1980\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* came|strong=\"H1980\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* you|strong=\"H2088\"* didn’t believe Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 33, + "text": "who|strong=\"H1980\"* went|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* on|strong=\"H1980\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, to|strong=\"H1980\"* seek|strong=\"H8446\"* out|strong=\"H8446\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H1980\"* pitch|strong=\"H2583\"* your|strong=\"H6440\"* tents|strong=\"H2583\"* in|strong=\"H2583\"*: in|strong=\"H2583\"* fire by|strong=\"H1870\"* night|strong=\"H3915\"*, to|strong=\"H1980\"* show|strong=\"H7200\"* you|strong=\"H6440\"* by|strong=\"H1870\"* what|strong=\"H7200\"* way|strong=\"H1870\"* you|strong=\"H6440\"* should|strong=\"H1980\"* go|strong=\"H1980\"*, and|strong=\"H1980\"* in|strong=\"H2583\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* by|strong=\"H1870\"* day|strong=\"H3119\"*." + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"* and|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"*, and|strong=\"H3068\"* swore|strong=\"H7650\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 35, + "text": "“Surely|strong=\"H5414\"* not|strong=\"H5414\"* one|strong=\"H2088\"* of|strong=\"H7451\"* these|strong=\"H2088\"* men|strong=\"H7451\"* of|strong=\"H7451\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* generation|strong=\"H1755\"* shall|strong=\"H7451\"* see|strong=\"H7200\"* the|strong=\"H7200\"* good|strong=\"H2896\"* land which|strong=\"H7451\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* fathers," + }, + { + "verseNum": 36, + "text": "except|strong=\"H2108\"* Caleb|strong=\"H3612\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H7200\"* land that|strong=\"H7200\"* he|strong=\"H1931\"* has|strong=\"H3068\"* trodden|strong=\"H1869\"* on|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H5414\"* children|strong=\"H1121\"*, because|strong=\"H3282\"* he|strong=\"H1931\"* has|strong=\"H3068\"* wholly|strong=\"H4390\"* followed Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 37, + "text": "Also|strong=\"H1571\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H3068\"* me|strong=\"H3808\"* for|strong=\"H3068\"* your|strong=\"H3068\"* sakes|strong=\"H1558\"*, saying, “You|strong=\"H3808\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* in|strong=\"H3068\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 38, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, who|strong=\"H1931\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, shall|strong=\"H1121\"* go|strong=\"H3478\"* in|strong=\"H3478\"* there|strong=\"H8033\"*. Encourage|strong=\"H2388\"* him|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* cause Israel|strong=\"H3478\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 39, + "text": "Moreover|strong=\"H1961\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, whom|strong=\"H1992\"* you|strong=\"H5414\"* said would|strong=\"H7451\"* be|strong=\"H1961\"* captured or|strong=\"H3808\"* killed, your|strong=\"H5414\"* children|strong=\"H1121\"*, who|strong=\"H1121\"* today|strong=\"H3117\"* have|strong=\"H1961\"* no|strong=\"H3808\"* knowledge|strong=\"H3045\"* of|strong=\"H1121\"* good|strong=\"H2896\"* or|strong=\"H3808\"* evil|strong=\"H7451\"*, shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H3117\"* there|strong=\"H8033\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1961\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* shall|strong=\"H1121\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 40, + "text": "But|strong=\"H6437\"* as|strong=\"H4057\"* for|strong=\"H6437\"* you|strong=\"H1870\"*, turn|strong=\"H6437\"*, and|strong=\"H1870\"* take|strong=\"H5265\"* your|strong=\"H5265\"* journey|strong=\"H1870\"* into|strong=\"H3220\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 41, + "text": "Then|strong=\"H6030\"* you|strong=\"H6680\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H3068\"* me|strong=\"H6030\"*, “We|strong=\"H3605\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H3898\"* Yahweh|strong=\"H3068\"*. We|strong=\"H3605\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* fight|strong=\"H3898\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H3898\"*.” Every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H6680\"* put|strong=\"H5927\"* on|strong=\"H2296\"* his|strong=\"H3605\"* weapons|strong=\"H3627\"* of|strong=\"H3068\"* war|strong=\"H4421\"*, and|strong=\"H3068\"* presumed to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 42, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H6440\"*, “Tell them|strong=\"H6440\"*, ‘Don’t go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* don’t fight|strong=\"H3898\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, lest you|strong=\"H3588\"* be|strong=\"H3808\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies.’”" + }, + { + "verseNum": 43, + "text": "So|strong=\"H5927\"* I|strong=\"H3808\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3808\"*, and|strong=\"H3068\"* you|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* were|strong=\"H2022\"* presumptuous, and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8085\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H6213\"* Amorites, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H1931\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* you|strong=\"H5704\"* and|strong=\"H2022\"* chased|strong=\"H7291\"* you|strong=\"H5704\"* as|strong=\"H5704\"* bees|strong=\"H1682\"* do|strong=\"H6213\"*, and|strong=\"H2022\"* beat|strong=\"H3807\"* you|strong=\"H5704\"* down|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Hormah|strong=\"H2767\"*." + }, + { + "verseNum": 45, + "text": "You|strong=\"H6440\"* returned|strong=\"H7725\"* and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* your|strong=\"H3068\"* voice|strong=\"H6963\"*, nor|strong=\"H3808\"* turn|strong=\"H7725\"* his|strong=\"H3068\"* ear|strong=\"H8085\"* to|strong=\"H7725\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 46, + "text": "So|strong=\"H3427\"* you|strong=\"H3117\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, according to|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* remained|strong=\"H3427\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1696\"* we|strong=\"H3068\"* turned|strong=\"H6437\"*, and|strong=\"H3068\"* took|strong=\"H5265\"* our|strong=\"H3068\"* journey|strong=\"H1870\"* into|strong=\"H3220\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"* by|strong=\"H3117\"* the|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H1696\"* the|strong=\"H3068\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5437\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* encircled|strong=\"H5437\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* me, saying," + }, + { + "verseNum": 3, + "text": "“You|strong=\"H2022\"* have|strong=\"H6437\"* encircled|strong=\"H5437\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* long|strong=\"H7227\"* enough|strong=\"H7227\"*. Turn|strong=\"H6437\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 4, + "text": "Command|strong=\"H6680\"* the|strong=\"H8104\"* people|strong=\"H5971\"*, saying, ‘You|strong=\"H6680\"* are|strong=\"H5971\"* to|strong=\"H8104\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H8104\"* border|strong=\"H1366\"* of|strong=\"H1121\"* your|strong=\"H8104\"* brothers|strong=\"H1121\"*, the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H1121\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* you|strong=\"H6680\"*. Therefore|strong=\"H5971\"* be|strong=\"H1121\"* careful|strong=\"H8104\"*." + }, + { + "verseNum": 5, + "text": "Don’t contend|strong=\"H1624\"* with|strong=\"H2022\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H2022\"* their|strong=\"H5414\"* land, no|strong=\"H3808\"*, not|strong=\"H3808\"* so|strong=\"H5414\"* much as|strong=\"H5704\"* for|strong=\"H3588\"* the|strong=\"H3588\"* sole|strong=\"H3709\"* of|strong=\"H2022\"* the|strong=\"H3588\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* tread on|strong=\"H2022\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* given|strong=\"H5414\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5704\"* Esau|strong=\"H6215\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H1571\"* shall|strong=\"H4325\"* purchase|strong=\"H3701\"* food from|strong=\"H1571\"* them for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H4325\"* you|strong=\"H1571\"* may|strong=\"H1571\"* eat. You|strong=\"H1571\"* shall|strong=\"H4325\"* also|strong=\"H1571\"* buy|strong=\"H7666\"* water|strong=\"H4325\"* from|strong=\"H1571\"* them for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H4325\"* you|strong=\"H1571\"* may|strong=\"H1571\"* drink|strong=\"H8354\"*.’”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*. He|strong=\"H3588\"* has|strong=\"H3068\"* known|strong=\"H3045\"* your|strong=\"H3068\"* walking|strong=\"H3212\"* through|strong=\"H3027\"* this|strong=\"H2088\"* great|strong=\"H1419\"* wilderness|strong=\"H4057\"*. These|strong=\"H2088\"* forty years|strong=\"H8141\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* lacked|strong=\"H2637\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H5674\"* we|strong=\"H3068\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* from|strong=\"H1121\"* our|strong=\"H5674\"* brothers|strong=\"H1121\"*, the|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*, who|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, from|strong=\"H1121\"* the|strong=\"H5674\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"* from|strong=\"H1121\"* Elath and|strong=\"H1121\"* from|strong=\"H1121\"* Ezion Geber. We turned|strong=\"H6437\"* and|strong=\"H1121\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H5674\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Don’t bother Moab|strong=\"H4124\"*, neither|strong=\"H3808\"* contend|strong=\"H1624\"* with|strong=\"H3068\"* them|strong=\"H5414\"* in|strong=\"H3068\"* battle|strong=\"H4421\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* land for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5414\"* Ar|strong=\"H6144\"* to|strong=\"H3068\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lot|strong=\"H3876\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*.”" + }, + { + "verseNum": 10, + "text": "(The|strong=\"H6440\"* Emim lived|strong=\"H3427\"* there|strong=\"H3427\"* before|strong=\"H6440\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H1419\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, and|strong=\"H1419\"* tall|strong=\"H7311\"* as|strong=\"H5971\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*." + }, + { + "verseNum": 11, + "text": "These|strong=\"H1992\"* also|strong=\"H1992\"* are|strong=\"H1992\"* considered|strong=\"H2803\"* to|strong=\"H7121\"* be Rephaim|strong=\"H7497\"*, as|strong=\"H2803\"* the|strong=\"H7121\"* Anakim|strong=\"H6062\"*; but|strong=\"H1992\"* the|strong=\"H7121\"* Moabites|strong=\"H4125\"* call|strong=\"H7121\"* them|strong=\"H1992\"* Emim." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* Horites|strong=\"H2752\"* also|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"* in|strong=\"H3427\"* the|strong=\"H6440\"* past|strong=\"H6440\"*, but|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* succeeded|strong=\"H8478\"* them|strong=\"H5414\"*. They|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"* from|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* place|strong=\"H8478\"*, as|strong=\"H6213\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* his|strong=\"H5414\"* possession|strong=\"H3423\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* them|strong=\"H5414\"*.)" + }, + { + "verseNum": 13, + "text": "“Now|strong=\"H6258\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* cross|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"*.” We|strong=\"H6258\"* went|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* days|strong=\"H3117\"* in|strong=\"H8141\"* which|strong=\"H3068\"* we|strong=\"H3068\"* came|strong=\"H1980\"* from|strong=\"H1980\"* Kadesh Barnea until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1980\"* over|strong=\"H5674\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Zered|strong=\"H2218\"* were|strong=\"H3117\"* thirty-eight|strong=\"H7970\"* years|strong=\"H8141\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* generation|strong=\"H1755\"* of|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H3068\"* war|strong=\"H4421\"* were|strong=\"H3117\"* consumed|strong=\"H8552\"* from|strong=\"H1980\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* them|strong=\"H3027\"*, to|strong=\"H5704\"* destroy|strong=\"H2000\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3068\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, until|strong=\"H5704\"* they|strong=\"H3068\"* were|strong=\"H1961\"* consumed|strong=\"H8552\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"*, when|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5971\"* war|strong=\"H4421\"* were|strong=\"H1961\"* consumed|strong=\"H8552\"* and|strong=\"H5971\"* dead|strong=\"H4191\"* from|strong=\"H1961\"* among|strong=\"H7130\"* the|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3117\"* are|strong=\"H3117\"* to|strong=\"H3117\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* Ar|strong=\"H6144\"*, the|strong=\"H3117\"* border|strong=\"H1366\"* of|strong=\"H3117\"* Moab|strong=\"H4124\"*, today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H3588\"* border of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, don’t bother them|strong=\"H5414\"*, nor|strong=\"H3808\"* contend|strong=\"H1624\"* with|strong=\"H1121\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* any|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lot|strong=\"H3876\"* for|strong=\"H3588\"* a|strong=\"H3068\"* possession|strong=\"H3425\"*.”" + }, + { + "verseNum": 20, + "text": "(That|strong=\"H1931\"* also|strong=\"H5984\"* is|strong=\"H1931\"* considered|strong=\"H2803\"* a|strong=\"H3068\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Rephaim|strong=\"H7497\"*. Rephaim|strong=\"H7497\"* lived|strong=\"H3427\"* there|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* past|strong=\"H6440\"*, but|strong=\"H1931\"* the|strong=\"H6440\"* Ammonites|strong=\"H5984\"* call|strong=\"H7121\"* them|strong=\"H6440\"* Zamzummim," + }, + { + "verseNum": 21, + "text": "a|strong=\"H3068\"* great|strong=\"H1419\"* people|strong=\"H5971\"*, many|strong=\"H7227\"*, and|strong=\"H3068\"* tall|strong=\"H7311\"*, as|strong=\"H3068\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*; but|strong=\"H5971\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Israel|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* succeeded|strong=\"H8478\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* place|strong=\"H8478\"*," + }, + { + "verseNum": 22, + "text": "as|strong=\"H5704\"* he|strong=\"H3117\"* did|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* who|strong=\"H1121\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, when|strong=\"H3117\"* he|strong=\"H3117\"* destroyed|strong=\"H8045\"* the|strong=\"H6440\"* Horites|strong=\"H2752\"* from|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* succeeded|strong=\"H8478\"* them|strong=\"H6440\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H6440\"* place|strong=\"H8478\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3318\"* the|strong=\"H5704\"* Avvim|strong=\"H5761\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* villages as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Gaza|strong=\"H5804\"*: the|strong=\"H5704\"* Caphtorim|strong=\"H3732\"*, who|strong=\"H3427\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3427\"* Caphtor|strong=\"H3731\"*, destroyed|strong=\"H8045\"* them|strong=\"H3318\"* and|strong=\"H3318\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H8478\"* place|strong=\"H8478\"*.)" + }, + { + "verseNum": 24, + "text": "“Rise|strong=\"H6965\"* up|strong=\"H6965\"*, take|strong=\"H3423\"* your|strong=\"H5414\"* journey|strong=\"H5265\"*, and|strong=\"H6965\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H7200\"* valley|strong=\"H5158\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Arnon. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* Sihon|strong=\"H5511\"* the|strong=\"H7200\"* Amorite, king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, and|strong=\"H6965\"* his|strong=\"H5414\"* land; begin|strong=\"H2490\"* to|strong=\"H5414\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H6965\"* contend|strong=\"H1624\"* with|strong=\"H3027\"* him|strong=\"H5414\"* in|strong=\"H4428\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 25, + "text": "Today|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5971\"* begin|strong=\"H2490\"* to|strong=\"H5921\"* put|strong=\"H5414\"* the|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3117\"* you|strong=\"H5414\"* and|strong=\"H3117\"* the|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H3117\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H3117\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*, who|strong=\"H3605\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* report|strong=\"H8088\"* of|strong=\"H3117\"* you|strong=\"H5414\"*, and|strong=\"H3117\"* shall|strong=\"H5971\"* tremble|strong=\"H7264\"* and|strong=\"H3117\"* be|strong=\"H3117\"* in|strong=\"H5921\"* anguish|strong=\"H2342\"* because|strong=\"H5921\"* of|strong=\"H3117\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 26, + "text": "I|strong=\"H1697\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* out|strong=\"H7971\"* of|strong=\"H4428\"* the|strong=\"H7971\"* wilderness|strong=\"H4057\"* of|strong=\"H4428\"* Kedemoth|strong=\"H6932\"* to|strong=\"H7971\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* with|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H4428\"* peace|strong=\"H7965\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Let|strong=\"H3808\"* me|strong=\"H5674\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H3808\"* land. I|strong=\"H3808\"* will|strong=\"H3808\"* go|strong=\"H3212\"* along|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* highway|strong=\"H1870\"*. I|strong=\"H3808\"* will|strong=\"H3808\"* turn|strong=\"H5493\"* neither|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5674\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5674\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* shall|strong=\"H4325\"* sell|strong=\"H7666\"* me|strong=\"H5414\"* food for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H7272\"* eat; and|strong=\"H3701\"* give|strong=\"H5414\"* me|strong=\"H5414\"* water|strong=\"H4325\"* for|strong=\"H4325\"* money|strong=\"H3701\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H7272\"* drink|strong=\"H8354\"*. Just let|strong=\"H5414\"* me|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H5674\"* my|strong=\"H5414\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 29, + "text": "as|strong=\"H5704\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* Moabites|strong=\"H4125\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Ar|strong=\"H6144\"*, did|strong=\"H6213\"* to|strong=\"H5704\"* me|strong=\"H5414\"*, until|strong=\"H5704\"* I|strong=\"H5414\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* into|strong=\"H6213\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* would|strong=\"H3068\"* not|strong=\"H3808\"* let|strong=\"H5414\"* us|strong=\"H5414\"* pass|strong=\"H5674\"* by|strong=\"H3027\"* him|strong=\"H5414\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* hardened|strong=\"H7185\"* his|strong=\"H5414\"* spirit|strong=\"H7307\"* and|strong=\"H3068\"* made|strong=\"H5414\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* obstinate, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 31, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* begun|strong=\"H2490\"* to|strong=\"H3068\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* his|strong=\"H5414\"* land|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Begin|strong=\"H2490\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, that|strong=\"H7200\"* you|strong=\"H5414\"* may|strong=\"H3068\"* inherit|strong=\"H3423\"* his|strong=\"H5414\"* land|strong=\"H6440\"*.”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3318\"* Sihon|strong=\"H5511\"* came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H7125\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Jahaz|strong=\"H3096\"*." + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* us|strong=\"H5414\"*; and|strong=\"H1121\"* we|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 34, + "text": "We|strong=\"H5892\"* took|strong=\"H3920\"* all|strong=\"H3605\"* his|strong=\"H3605\"* cities|strong=\"H5892\"* at|strong=\"H3808\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H5892\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* every|strong=\"H3605\"* inhabited city|strong=\"H5892\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* women and|strong=\"H5892\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*. We|strong=\"H5892\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 35, + "text": "Only|strong=\"H7535\"* the|strong=\"H3920\"* livestock we|strong=\"H3068\"* took|strong=\"H3920\"* for|strong=\"H5892\"* plunder|strong=\"H7998\"* for|strong=\"H5892\"* ourselves, with|strong=\"H5892\"* the|strong=\"H3920\"* plunder|strong=\"H7998\"* of|strong=\"H5892\"* the|strong=\"H3920\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* we|strong=\"H3068\"* had taken|strong=\"H3920\"*." + }, + { + "verseNum": 36, + "text": "From|strong=\"H4480\"* Aroer|strong=\"H6177\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H3068\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Arnon, and|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gilead|strong=\"H1568\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* too|strong=\"H4480\"* high|strong=\"H7682\"* for|strong=\"H5704\"* us|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* all|strong=\"H3605\"* before|strong=\"H6440\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "Only|strong=\"H7535\"* to|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* you|strong=\"H6680\"* didn’t come|strong=\"H7126\"* near|strong=\"H7126\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* banks|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* wherever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* forbade us|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* we|strong=\"H3068\"* turned|strong=\"H6437\"*, and|strong=\"H4428\"* went|strong=\"H3318\"* up|strong=\"H5927\"* the|strong=\"H3605\"* way|strong=\"H1870\"* to|strong=\"H3318\"* Bashan|strong=\"H1316\"*. Og|strong=\"H5747\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"* came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H7125\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H3318\"* battle|strong=\"H4421\"* at|strong=\"H4421\"* Edrei." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Don’t fear|strong=\"H3372\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H3068\"* his|strong=\"H3605\"* land, into|strong=\"H6213\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H5414\"* as|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* also|strong=\"H1571\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* our|strong=\"H3068\"* hand|strong=\"H3027\"* Og|strong=\"H5747\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*. We|strong=\"H5704\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* until|strong=\"H5704\"* no|strong=\"H1115\"* one|strong=\"H3605\"* was|strong=\"H3068\"* left|strong=\"H7604\"* to|strong=\"H5704\"* him|strong=\"H5414\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 4, + "text": "We|strong=\"H5892\"* took|strong=\"H3947\"* all|strong=\"H3605\"* his|strong=\"H3605\"* cities|strong=\"H5892\"* at|strong=\"H1961\"* that|strong=\"H3605\"* time|strong=\"H6256\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* which|strong=\"H1931\"* we|strong=\"H3068\"* didn’t take|strong=\"H3947\"* from|strong=\"H3947\"* them|strong=\"H3947\"*: sixty|strong=\"H8346\"* cities|strong=\"H5892\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H5892\"* Argob, the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H5892\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H5892\"* cities|strong=\"H5892\"* fortified|strong=\"H1219\"* with|strong=\"H5892\"* high|strong=\"H1364\"* walls|strong=\"H2346\"*, gates|strong=\"H1817\"*, and|strong=\"H5892\"* bars|strong=\"H1280\"*, in|strong=\"H5892\"* addition to|strong=\"H5892\"* a|strong=\"H3068\"* great|strong=\"H3966\"* many|strong=\"H7235\"* villages|strong=\"H6521\"* without walls|strong=\"H2346\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H6213\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* we|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, utterly|strong=\"H2763\"* destroying|strong=\"H2763\"* every|strong=\"H3605\"* inhabited city|strong=\"H5892\"*, with|strong=\"H6213\"* the|strong=\"H3605\"* women and|strong=\"H4428\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* livestock, and|strong=\"H5892\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*, we|strong=\"H3068\"* took for|strong=\"H5892\"* plunder|strong=\"H7998\"* for|strong=\"H5892\"* ourselves." + }, + { + "verseNum": 8, + "text": "We|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H3947\"* land|strong=\"H5676\"* at|strong=\"H4428\"* that|strong=\"H1931\"* time|strong=\"H6256\"* out|strong=\"H3947\"* of|strong=\"H4428\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3947\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Amorites who|strong=\"H1931\"* were|strong=\"H2022\"* beyond|strong=\"H5676\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, from|strong=\"H3027\"* the|strong=\"H3947\"* valley|strong=\"H5158\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Arnon to|strong=\"H5704\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*." + }, + { + "verseNum": 9, + "text": "(The|strong=\"H7121\"* Sidonians|strong=\"H6722\"* call|strong=\"H7121\"* Hermon|strong=\"H2768\"* Sirion|strong=\"H8303\"*, and|strong=\"H7121\"* the|strong=\"H7121\"* Amorites call|strong=\"H7121\"* it|strong=\"H7121\"* Senir|strong=\"H8149\"*.)" + }, + { + "verseNum": 10, + "text": "We|strong=\"H5704\"* took all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* Gilead|strong=\"H1568\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, to|strong=\"H5704\"* Salecah|strong=\"H5548\"* and|strong=\"H5892\"* Edrei, cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H5892\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 11, + "text": "(For|strong=\"H3588\"* only|strong=\"H7535\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"* remained|strong=\"H7604\"* of|strong=\"H1121\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Rephaim|strong=\"H7497\"*. Behold|strong=\"H2009\"*, his|strong=\"H3588\"* bedstead|strong=\"H6210\"* was|strong=\"H1931\"* a|strong=\"H3068\"* bedstead|strong=\"H6210\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*. Isn’t it|strong=\"H1931\"* in|strong=\"H4428\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*? Nine|strong=\"H8672\"* cubits+ 3:11 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* was|strong=\"H1931\"* its|strong=\"H3588\"* length, and|strong=\"H1121\"* four cubits its|strong=\"H3588\"* width|strong=\"H7341\"*, after|strong=\"H3588\"* the|strong=\"H3588\"* cubit of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"*.)" + }, + { + "verseNum": 12, + "text": "This|strong=\"H2063\"* land we|strong=\"H3068\"* took|strong=\"H3423\"* in|strong=\"H5921\"* possession|strong=\"H3423\"* at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"*: from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* by|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arnon, and|strong=\"H5892\"* half|strong=\"H2677\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Gilead|strong=\"H1568\"* with|strong=\"H5921\"* its|strong=\"H5414\"* cities|strong=\"H5892\"*, I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"* and|strong=\"H5892\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Gadites|strong=\"H1425\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H4519\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H7626\"* Gilead|strong=\"H1568\"*, and|strong=\"H4519\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H7626\"* Og|strong=\"H5747\"*, I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H7626\"* Argob, even|strong=\"H4519\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*. (The|strong=\"H3605\"* same|strong=\"H1931\"* is|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H3605\"* land of|strong=\"H7626\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 14, + "text": "Jair|strong=\"H2971\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* region|strong=\"H2256\"* of|strong=\"H1121\"* Argob, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Maacathites|strong=\"H4602\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H5921\"*, even|strong=\"H5704\"* Bashan|strong=\"H1316\"*, after|strong=\"H5921\"* his|strong=\"H3605\"* own name|strong=\"H8034\"*, Havvoth Jair|strong=\"H2971\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.)" + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* Gilead|strong=\"H1568\"* to|strong=\"H5414\"* Machir|strong=\"H4353\"*." + }, + { + "verseNum": 16, + "text": "To|strong=\"H5704\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"* and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* from|strong=\"H4480\"* Gilead|strong=\"H1568\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Arnon, the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5414\"* valley|strong=\"H5158\"*, and|strong=\"H1121\"* its|strong=\"H5414\"* border|strong=\"H1366\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, which|strong=\"H5158\"* is|strong=\"H1121\"* the|strong=\"H5414\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H5704\"* Arabah|strong=\"H6160\"* also|strong=\"H1366\"*, and|strong=\"H3220\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"* and|strong=\"H3220\"* its|strong=\"H8478\"* border|strong=\"H1366\"*, from|strong=\"H5704\"* Chinnereth|strong=\"H3672\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"*, the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, under|strong=\"H8478\"* the|strong=\"H5704\"* slopes of|strong=\"H1366\"* Pisgah|strong=\"H6449\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, saying, “Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land|strong=\"H6440\"* to|strong=\"H3478\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H5414\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"* shall|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2502\"* before|strong=\"H6440\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* your|strong=\"H5414\"* wives, and|strong=\"H5892\"* your|strong=\"H5414\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H5892\"* your|strong=\"H5414\"* livestock|strong=\"H4735\"*, (I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*), shall|strong=\"H5892\"* live|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H3588\"* have|strong=\"H3045\"* given|strong=\"H5414\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* rest|strong=\"H5117\"* to|strong=\"H5704\"* your|strong=\"H3068\"* brothers, as|strong=\"H5704\"* to|strong=\"H5704\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* they|strong=\"H1992\"* also|strong=\"H1571\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H5676\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* them|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*. Then|strong=\"H1571\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* each|strong=\"H5414\"* return|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H5414\"* own|strong=\"H3425\"* possession|strong=\"H3423\"*, which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3651\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"* at|strong=\"H3068\"* that|strong=\"H7200\"* time|strong=\"H6256\"*, saying, “Your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* these|strong=\"H6213\"* two|strong=\"H8147\"* kings|strong=\"H4428\"*. So|strong=\"H3651\"* shall|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* them|strong=\"H3588\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 23, + "text": "I|strong=\"H6256\"* begged|strong=\"H2603\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying," + }, + { + "verseNum": 24, + "text": "“Lord|strong=\"H3069\"*+ 3:24 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, you|strong=\"H6213\"* have|strong=\"H5650\"* begun|strong=\"H2490\"* to|strong=\"H6213\"* show|strong=\"H7200\"* your|strong=\"H7200\"* servant|strong=\"H5650\"* your|strong=\"H7200\"* greatness|strong=\"H1433\"*, and|strong=\"H8064\"* your|strong=\"H7200\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*. For|strong=\"H6213\"* what|strong=\"H4310\"* god|strong=\"H3069\"* is|strong=\"H4310\"* there|strong=\"H7200\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* or|strong=\"H7200\"* in|strong=\"H6213\"* earth|strong=\"H8064\"* that|strong=\"H7200\"* can|strong=\"H4310\"* do|strong=\"H6213\"* works|strong=\"H4639\"* like|strong=\"H6213\"* yours|strong=\"H5650\"*, and|strong=\"H8064\"* mighty|strong=\"H2389\"* acts|strong=\"H1369\"* like|strong=\"H6213\"* yours|strong=\"H5650\"*?" + }, + { + "verseNum": 25, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* good|strong=\"H2896\"* land|strong=\"H5676\"* that|strong=\"H7200\"* is|strong=\"H2088\"* beyond|strong=\"H5676\"* the|strong=\"H7200\"* Jordan|strong=\"H3383\"*, that|strong=\"H7200\"* fine|strong=\"H2896\"* mountain|strong=\"H2022\"*, and|strong=\"H7200\"* Lebanon|strong=\"H3844\"*.”" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H5674\"* with|strong=\"H3068\"* me|strong=\"H5674\"* because|strong=\"H4616\"* of|strong=\"H3068\"* you|strong=\"H3808\"*, and|strong=\"H3068\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H5674\"*. Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5674\"*, “That|strong=\"H8085\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*! Speak|strong=\"H1696\"* no|strong=\"H3808\"* more|strong=\"H3254\"* to|strong=\"H1696\"* me|strong=\"H5674\"* of|strong=\"H3068\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 27, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Pisgah|strong=\"H6449\"*, and|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5927\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* westward|strong=\"H3220\"*, and|strong=\"H5869\"* northward|strong=\"H6828\"*, and|strong=\"H5869\"* southward|strong=\"H8486\"*, and|strong=\"H5869\"* eastward|strong=\"H4217\"*, and|strong=\"H5869\"* see|strong=\"H7200\"* with|strong=\"H5927\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* go|strong=\"H5927\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3588\"* commission|strong=\"H6680\"* Joshua|strong=\"H3091\"*, and|strong=\"H5971\"* encourage|strong=\"H2388\"* him|strong=\"H6440\"*, and|strong=\"H5971\"* strengthen|strong=\"H2388\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H5971\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* he|strong=\"H1931\"* shall|strong=\"H5971\"* cause|strong=\"H5971\"* them|strong=\"H6440\"* to|strong=\"H6440\"* inherit|strong=\"H5157\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H3427\"* we|strong=\"H3068\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* valley|strong=\"H1516\"* near Beth Peor." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H6258\"*, Israel|strong=\"H3478\"*, listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* statutes|strong=\"H2706\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* I|strong=\"H5414\"* teach|strong=\"H3925\"* you|strong=\"H5414\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* them|strong=\"H5414\"*, that|strong=\"H8085\"* you|strong=\"H5414\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3478\"* go|strong=\"H3068\"* in|strong=\"H3478\"* and|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H8085\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* add|strong=\"H3254\"* to|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H6680\"* take|strong=\"H8104\"* away|strong=\"H4480\"* from|strong=\"H4480\"* it|strong=\"H5921\"*, that|strong=\"H3068\"* you|strong=\"H6680\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* did|strong=\"H6213\"* because|strong=\"H3588\"* of|strong=\"H3068\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1980\"* who|strong=\"H3605\"* followed|strong=\"H1980\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"* from|strong=\"H1980\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3117\"* faithful to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* are|strong=\"H3117\"* all|strong=\"H3605\"* alive|strong=\"H2416\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3651\"* have|strong=\"H3068\"* taught|strong=\"H3925\"* you|strong=\"H6680\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, even|strong=\"H3651\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H7200\"*, that|strong=\"H7200\"* you|strong=\"H6680\"* should|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H3068\"* the|strong=\"H7200\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H7200\"* land|strong=\"H7130\"* where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Keep|strong=\"H8104\"* therefore|strong=\"H3588\"* and|strong=\"H1419\"* do|strong=\"H6213\"* them|strong=\"H6213\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3605\"* wisdom|strong=\"H2451\"* and|strong=\"H1419\"* your|strong=\"H3605\"* understanding|strong=\"H8085\"* in|strong=\"H6213\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"* and|strong=\"H1419\"* say, “Surely|strong=\"H3588\"* this|strong=\"H2088\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H2088\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* and|strong=\"H1419\"* understanding|strong=\"H8085\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* what|strong=\"H4310\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H3068\"* there|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3068\"* a|strong=\"H3068\"* god|strong=\"H3068\"* so|strong=\"H7121\"* near|strong=\"H7138\"* to|strong=\"H3068\"* them|strong=\"H7121\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* whenever|strong=\"H3605\"* we|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* him|strong=\"H7121\"*?" + }, + { + "verseNum": 8, + "text": "What|strong=\"H4310\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* is|strong=\"H4310\"* there|strong=\"H3117\"* that|strong=\"H3605\"* has|strong=\"H4310\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* ordinances|strong=\"H4941\"* so|strong=\"H5414\"* righteous|strong=\"H6662\"* as|strong=\"H3117\"* all|strong=\"H3605\"* this|strong=\"H2063\"* law|strong=\"H8451\"* which|strong=\"H4310\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"*?" + }, + { + "verseNum": 9, + "text": "Only|strong=\"H7535\"* be|strong=\"H1697\"* careful|strong=\"H8104\"*, and|strong=\"H1121\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* diligently|strong=\"H3966\"*, lest|strong=\"H6435\"* you|strong=\"H3605\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* things|strong=\"H1697\"* which|strong=\"H1697\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H1121\"* lest|strong=\"H6435\"* they|strong=\"H3117\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H3605\"* life|strong=\"H5315\"*; but|strong=\"H7535\"* make|strong=\"H3045\"* them|strong=\"H7200\"* known|strong=\"H3045\"* to|strong=\"H8104\"* your|strong=\"H3605\"* children|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*—" + }, + { + "verseNum": 10, + "text": "the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* you|strong=\"H6440\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* Horeb|strong=\"H2722\"*, when|strong=\"H3117\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, “Assemble|strong=\"H6950\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H8085\"* them|strong=\"H1992\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*, that|strong=\"H5971\"* they|strong=\"H1992\"* may|strong=\"H3068\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* me|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H5971\"* they|strong=\"H1992\"* live|strong=\"H2416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, and|strong=\"H1121\"* that|strong=\"H5971\"* they|strong=\"H1992\"* may|strong=\"H3068\"* teach|strong=\"H3925\"* their|strong=\"H3605\"* children|strong=\"H1121\"*.”" + }, + { + "verseNum": 11, + "text": "You|strong=\"H5704\"* came|strong=\"H7126\"* near|strong=\"H7126\"* and|strong=\"H8064\"* stood|strong=\"H5975\"* under|strong=\"H8478\"* the|strong=\"H5704\"* mountain|strong=\"H2022\"*. The|strong=\"H5704\"* mountain|strong=\"H2022\"* burned|strong=\"H1197\"* with|strong=\"H1197\"* fire to|strong=\"H5704\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H2022\"* the|strong=\"H5704\"* sky|strong=\"H8064\"*, with|strong=\"H1197\"* darkness|strong=\"H2822\"*, cloud|strong=\"H6051\"*, and|strong=\"H8064\"* thick|strong=\"H6205\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H8432\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fire: you|strong=\"H8432\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* words|strong=\"H1697\"*, but|strong=\"H7200\"* you|strong=\"H8432\"* saw|strong=\"H7200\"* no|strong=\"H7200\"* form|strong=\"H8544\"*; you|strong=\"H8432\"* only|strong=\"H2108\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* declared|strong=\"H5046\"* to|strong=\"H6213\"* you|strong=\"H6680\"* his|strong=\"H5921\"* covenant|strong=\"H1285\"*, which|strong=\"H1697\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H6213\"* perform|strong=\"H6213\"*, even|strong=\"H6213\"* the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*. He|strong=\"H6213\"* wrote|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H6213\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* to|strong=\"H3068\"* teach|strong=\"H3925\"* you|strong=\"H6680\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, that|strong=\"H1931\"* you|strong=\"H6680\"* might|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 15, + "text": "Be|strong=\"H3808\"* very|strong=\"H3966\"* careful|strong=\"H8104\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* saw|strong=\"H7200\"* no|strong=\"H3808\"* kind of|strong=\"H3068\"* form|strong=\"H8544\"* on|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire," + }, + { + "verseNum": 16, + "text": "lest|strong=\"H6435\"* you|strong=\"H3605\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H7843\"*, and|strong=\"H6213\"* make|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H6213\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H3605\"* any|strong=\"H3605\"* figure|strong=\"H5566\"*, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* male|strong=\"H2145\"* or|strong=\"H6435\"* female|strong=\"H5347\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* any|strong=\"H3605\"* animal that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H3605\"* any|strong=\"H3605\"* winged|strong=\"H3671\"* bird|strong=\"H6833\"* that|strong=\"H3605\"* flies|strong=\"H5774\"* in|strong=\"H8064\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H4325\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* creeps|strong=\"H7430\"* on|strong=\"H8478\"* the|strong=\"H3605\"* ground, the|strong=\"H3605\"* likeness|strong=\"H8403\"* of|strong=\"H4325\"* any|strong=\"H3605\"* fish|strong=\"H1710\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H8478\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* lest|strong=\"H6435\"* you|strong=\"H3605\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* to|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* when|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* and|strong=\"H3068\"* the|strong=\"H3605\"* moon|strong=\"H3394\"* and|strong=\"H3068\"* the|strong=\"H3605\"* stars|strong=\"H3556\"*, even|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, you|strong=\"H3605\"* are|strong=\"H5971\"* drawn|strong=\"H5080\"* away|strong=\"H5375\"* and|strong=\"H3068\"* worship|strong=\"H7812\"* them|strong=\"H7200\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* them|strong=\"H7200\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* allotted|strong=\"H2505\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H3947\"* you|strong=\"H3117\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3117\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3947\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*, out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H3947\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "Furthermore Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H5674\"* with|strong=\"H3068\"* me|strong=\"H5414\"* for|strong=\"H5921\"* your|strong=\"H3068\"* sakes|strong=\"H5921\"*, and|strong=\"H3068\"* swore|strong=\"H7650\"* that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, and|strong=\"H3068\"* that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* not|strong=\"H1115\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H3068\"* that|strong=\"H3068\"* good|strong=\"H2896\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*;" + }, + { + "verseNum": 22, + "text": "but|strong=\"H3588\"* I|strong=\"H3588\"* must|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H4191\"* this|strong=\"H2063\"* land. I|strong=\"H3588\"* must|strong=\"H4191\"* not|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H2063\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H2896\"* possess|strong=\"H3423\"* that|strong=\"H3588\"* good|strong=\"H2896\"* land." + }, + { + "verseNum": 23, + "text": "Be|strong=\"H3068\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* you|strong=\"H6680\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H6680\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H3068\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H3068\"* anything|strong=\"H3605\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* forbidden|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire, a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* father|strong=\"H3205\"* children|strong=\"H1121\"* and|strong=\"H1121\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* long|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land, and|strong=\"H1121\"* then|strong=\"H6213\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H5869\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* in|strong=\"H3068\"* the|strong=\"H3605\"* form|strong=\"H8544\"* of|strong=\"H1121\"* anything|strong=\"H3605\"*, and|strong=\"H1121\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"* to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H3205\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H3117\"* earth|strong=\"H8064\"* to|strong=\"H5921\"* witness|strong=\"H5749\"* against|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H8064\"* soon|strong=\"H4118\"* utterly|strong=\"H8045\"* perish|strong=\"H5674\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* which|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*. You|strong=\"H3588\"* will|strong=\"H8064\"* not|strong=\"H3808\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, but|strong=\"H3588\"* will|strong=\"H8064\"* utterly|strong=\"H8045\"* be|strong=\"H3808\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* scatter|strong=\"H6327\"* you|strong=\"H5971\"* among|strong=\"H5971\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*, and|strong=\"H3068\"* you|strong=\"H5971\"* will|strong=\"H3068\"* be|strong=\"H3068\"* left|strong=\"H7604\"* few|strong=\"H4557\"* in|strong=\"H3068\"* number|strong=\"H4557\"* among|strong=\"H5971\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lead|strong=\"H5090\"* you|strong=\"H5971\"* away|strong=\"H5090\"*." + }, + { + "verseNum": 28, + "text": "There|strong=\"H8033\"* you|strong=\"H3808\"* will|strong=\"H3027\"* serve|strong=\"H5647\"* gods, the|strong=\"H8085\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone, which|strong=\"H8033\"* neither|strong=\"H3808\"* see|strong=\"H7200\"*, nor|strong=\"H3808\"* hear|strong=\"H8085\"*, nor|strong=\"H3808\"* eat, nor|strong=\"H3808\"* smell|strong=\"H7306\"*." + }, + { + "verseNum": 29, + "text": "But|strong=\"H3588\"* from|strong=\"H5315\"* there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* find|strong=\"H4672\"* him|strong=\"H4672\"* when|strong=\"H3588\"* you|strong=\"H3588\"* search|strong=\"H1875\"* after|strong=\"H3588\"* him|strong=\"H4672\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H3117\"* you|strong=\"H3605\"* are|strong=\"H3117\"* in|strong=\"H3068\"* oppression, and|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"* have|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H3117\"* you|strong=\"H3605\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* latter days|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H5704\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* merciful|strong=\"H7349\"* God|strong=\"H3068\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3588\"*, nor|strong=\"H3808\"* forget|strong=\"H7911\"* the|strong=\"H3588\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* them|strong=\"H7843\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* ask|strong=\"H7592\"* now|strong=\"H4994\"* of|strong=\"H3117\"* the|strong=\"H6440\"* days|strong=\"H3117\"* that|strong=\"H3588\"* are|strong=\"H3117\"* past|strong=\"H7223\"*, which|strong=\"H1697\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, since|strong=\"H3588\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* God|strong=\"H8064\"* created|strong=\"H1254\"* man|strong=\"H1419\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*, and|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H6440\"* one|strong=\"H2088\"* end|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* to|strong=\"H5704\"* the|strong=\"H6440\"* other|strong=\"H2088\"*, whether|strong=\"H4480\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* anything|strong=\"H1697\"* as|strong=\"H5704\"* great|strong=\"H1419\"* as|strong=\"H5704\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H2088\"*, or|strong=\"H5704\"* has|strong=\"H1961\"* been|strong=\"H1961\"* heard|strong=\"H8085\"* like|strong=\"H3644\"* it|strong=\"H5921\"*?" + }, + { + "verseNum": 33, + "text": "Did|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* ever hear|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* God speaking|strong=\"H1696\"* out|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H8085\"* fire, as|strong=\"H5971\"* you|strong=\"H8432\"* have|strong=\"H5971\"* heard|strong=\"H8085\"*, and|strong=\"H5971\"* live|strong=\"H2421\"*?" + }, + { + "verseNum": 34, + "text": "Or|strong=\"H1471\"* has|strong=\"H3068\"* God|strong=\"H3068\"* tried|strong=\"H5254\"* to|strong=\"H3068\"* go|strong=\"H3068\"* and|strong=\"H3068\"* take|strong=\"H3947\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* for|strong=\"H6213\"* himself|strong=\"H3027\"* from|strong=\"H3027\"* among|strong=\"H7130\"* another nation|strong=\"H1471\"*, by|strong=\"H3027\"* trials|strong=\"H4531\"*, by|strong=\"H3027\"* signs, by|strong=\"H3027\"* wonders|strong=\"H4159\"*, by|strong=\"H3027\"* war|strong=\"H4421\"*, by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, by|strong=\"H3027\"* an|strong=\"H6213\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3068\"* by|strong=\"H3027\"* great|strong=\"H1419\"* terrors|strong=\"H4172\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3605\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*?" + }, + { + "verseNum": 35, + "text": "It|strong=\"H1931\"* was|strong=\"H3068\"* shown|strong=\"H7200\"* to|strong=\"H3068\"* you|strong=\"H3588\"* so|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*. There|strong=\"H3045\"* is|strong=\"H3068\"* no|strong=\"H7200\"* one|strong=\"H1931\"* else|strong=\"H5750\"* besides|strong=\"H5750\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 36, + "text": "Out|strong=\"H4480\"* of|strong=\"H1697\"* heaven|strong=\"H8064\"* he|strong=\"H4480\"* made|strong=\"H8085\"* you|strong=\"H5921\"* to|strong=\"H5921\"* hear|strong=\"H8085\"* his|strong=\"H8085\"* voice|strong=\"H6963\"*, that|strong=\"H7200\"* he|strong=\"H4480\"* might instruct|strong=\"H3256\"* you|strong=\"H5921\"*. On|strong=\"H5921\"* earth|strong=\"H8064\"* he|strong=\"H4480\"* made|strong=\"H8085\"* you|strong=\"H5921\"* to|strong=\"H5921\"* see|strong=\"H7200\"* his|strong=\"H8085\"* great|strong=\"H1419\"* fire; and|strong=\"H8064\"* you|strong=\"H5921\"* heard|strong=\"H8085\"* his|strong=\"H8085\"* words|strong=\"H1697\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1697\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 37, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* loved your|strong=\"H6440\"* fathers, therefore|strong=\"H3588\"* he|strong=\"H3588\"* chose their|strong=\"H6440\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* them|strong=\"H6440\"*, and|strong=\"H1419\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* with|strong=\"H6440\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*, with|strong=\"H6440\"* his|strong=\"H6440\"* great|strong=\"H1419\"* power|strong=\"H3581\"*, out|strong=\"H3318\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 38, + "text": "to|strong=\"H5414\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* nations|strong=\"H1471\"* from|strong=\"H4480\"* before|strong=\"H6440\"* you|strong=\"H5414\"* greater|strong=\"H1419\"* and|strong=\"H3117\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* you|strong=\"H5414\"*, to|strong=\"H5414\"* bring|strong=\"H5414\"* you|strong=\"H5414\"* in|strong=\"H3117\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H6440\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H5921\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* take|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* heart|strong=\"H3824\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"* and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*. There|strong=\"H3117\"* is|strong=\"H3068\"* no|strong=\"H3045\"* one|strong=\"H1931\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H1121\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* that|strong=\"H3605\"* you|strong=\"H5414\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* all|strong=\"H3605\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 41, + "text": "Then|strong=\"H4872\"* Moses|strong=\"H4872\"* set apart three|strong=\"H7969\"* cities|strong=\"H5892\"* beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"* toward|strong=\"H3383\"* the|strong=\"H4872\"* sunrise|strong=\"H4217\"*," + }, + { + "verseNum": 42, + "text": "that|strong=\"H1931\"* the|strong=\"H4480\"* man slayer|strong=\"H7523\"* might|strong=\"H7523\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*, who|strong=\"H1931\"* kills|strong=\"H7523\"* his|strong=\"H4480\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"* and|strong=\"H5892\"* didn’t hate|strong=\"H8130\"* him|strong=\"H8130\"* in|strong=\"H5892\"* time|strong=\"H8543\"* past|strong=\"H8032\"*, and|strong=\"H5892\"* that|strong=\"H1931\"* fleeing|strong=\"H5127\"* to|strong=\"H8033\"* one|strong=\"H3808\"* of|strong=\"H5892\"* these|strong=\"H1931\"* cities|strong=\"H5892\"* he|strong=\"H1931\"* might|strong=\"H7523\"* live|strong=\"H2425\"*:" + }, + { + "verseNum": 43, + "text": "Bezer|strong=\"H1221\"* in|strong=\"H1474\"* the|strong=\"H1568\"* wilderness|strong=\"H4057\"*, in|strong=\"H1474\"* the|strong=\"H1568\"* plain|strong=\"H4334\"* country, for|strong=\"H4057\"* the|strong=\"H1568\"* Reubenites|strong=\"H7206\"*; and|strong=\"H1568\"* Ramoth|strong=\"H7216\"* in|strong=\"H1474\"* Gilead|strong=\"H1568\"* for|strong=\"H4057\"* the|strong=\"H1568\"* Gadites|strong=\"H1425\"*; and|strong=\"H1568\"* Golan|strong=\"H1474\"* in|strong=\"H1474\"* Bashan|strong=\"H1316\"* for|strong=\"H4057\"* the|strong=\"H1568\"* Manassites|strong=\"H4520\"*." + }, + { + "verseNum": 44, + "text": "This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H6440\"* law|strong=\"H8451\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* set|strong=\"H7760\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 45, + "text": "These|strong=\"H1696\"* are|strong=\"H1121\"* the|strong=\"H3318\"* testimonies|strong=\"H5713\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* statutes|strong=\"H2706\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* ordinances|strong=\"H4941\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H3318\"* they|strong=\"H3478\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 46, + "text": "beyond|strong=\"H5676\"* the|strong=\"H5221\"* Jordan|strong=\"H3383\"*, in|strong=\"H3427\"* the|strong=\"H5221\"* valley|strong=\"H1516\"* opposite|strong=\"H4136\"* Beth Peor, in|strong=\"H3427\"* the|strong=\"H5221\"* land|strong=\"H5676\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Amorites, who|strong=\"H1121\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, whom Moses|strong=\"H4872\"* and|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* when|strong=\"H3318\"* they|strong=\"H3478\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 47, + "text": "They|strong=\"H4428\"* took|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4428\"* his|strong=\"H3423\"* land|strong=\"H5676\"* and|strong=\"H4428\"* the|strong=\"H3423\"* land|strong=\"H5676\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, the|strong=\"H3423\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3423\"* Amorites, who|strong=\"H4428\"* were|strong=\"H4428\"* beyond|strong=\"H5676\"* the|strong=\"H3423\"* Jordan|strong=\"H3383\"* toward|strong=\"H3383\"* the|strong=\"H3423\"* sunrise|strong=\"H4217\"*;" + }, + { + "verseNum": 48, + "text": "from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H2022\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H2022\"* the|strong=\"H5921\"* Arnon, even|strong=\"H5704\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Siyon|strong=\"H7865\"* (also|strong=\"H1931\"* called Hermon|strong=\"H2768\"*)," + }, + { + "verseNum": 49, + "text": "and|strong=\"H3220\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* of|strong=\"H8478\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, under|strong=\"H8478\"* the|strong=\"H3605\"* slopes of|strong=\"H8478\"* Pisgah|strong=\"H6449\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H4872\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6213\"*, “Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*, the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H4872\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3478\"* I|strong=\"H3117\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* your|strong=\"H3605\"* ears today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* learn|strong=\"H3925\"* them|strong=\"H6213\"*, and|strong=\"H4872\"* observe|strong=\"H8104\"* to|strong=\"H1696\"* do|strong=\"H6213\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* us in|strong=\"H3068\"* Horeb|strong=\"H2722\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* didn’t make|strong=\"H3772\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* our|strong=\"H3068\"* fathers, but|strong=\"H3588\"* with|strong=\"H3068\"* us|strong=\"H3588\"*, even|strong=\"H3588\"* us|strong=\"H3588\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* all|strong=\"H3605\"* of|strong=\"H3068\"* us|strong=\"H3588\"* here|strong=\"H6311\"* alive|strong=\"H2416\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H6440\"* face|strong=\"H6440\"* to|strong=\"H1696\"* face|strong=\"H6440\"* on|strong=\"H3068\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fire," + }, + { + "verseNum": 5, + "text": "(I|strong=\"H3588\"* stood|strong=\"H5975\"* between Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* you|strong=\"H3588\"* at|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, to|strong=\"H3068\"* show|strong=\"H5046\"* you|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1697\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fire, and|strong=\"H3068\"* didn’t go|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H6440\"* mountain|strong=\"H2022\"*) saying|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 7, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* no|strong=\"H3808\"* other gods before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*—any|strong=\"H3605\"* likeness|strong=\"H8544\"* of|strong=\"H4325\"* what|strong=\"H6213\"* is|strong=\"H3605\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3808\"* what|strong=\"H6213\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*, or|strong=\"H3808\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* water|strong=\"H4325\"* under|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* bow|strong=\"H7812\"* yourself|strong=\"H5921\"* down|strong=\"H7812\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, am|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, visiting|strong=\"H6485\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* fathers on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8029\"* and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7256\"* generation|strong=\"H8029\"* of|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*" + }, + { + "verseNum": 10, + "text": "and|strong=\"H2617\"* showing|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* thousands of|strong=\"H4687\"* those|strong=\"H6213\"* who|strong=\"H8104\"* love|strong=\"H2617\"* me|strong=\"H6213\"* and|strong=\"H2617\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 11, + "text": "“You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* misuse the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*;+ 5:11 or, You shall not take the name of Yahweh your God in vain;* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hold him|strong=\"H5375\"* guiltless|strong=\"H5352\"* who|strong=\"H3068\"* misuses his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 12, + "text": "“Observe|strong=\"H8104\"* the|strong=\"H8104\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* it|strong=\"H6942\"* holy|strong=\"H6942\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* labor|strong=\"H5647\"* six|strong=\"H8337\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* do|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H3808\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"*—neither|strong=\"H3808\"* you|strong=\"H3605\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* daughter|strong=\"H1323\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* ox|strong=\"H7794\"*, nor|strong=\"H3808\"* your|strong=\"H3068\"* donkey|strong=\"H2543\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H1121\"* your|strong=\"H3068\"* livestock, nor|strong=\"H3808\"* your|strong=\"H3068\"* stranger|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*; that|strong=\"H3605\"* your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* and|strong=\"H1121\"* your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"* may|strong=\"H3068\"* rest|strong=\"H5117\"* as|strong=\"H3117\"* well as|strong=\"H3117\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* there|strong=\"H8033\"* by|strong=\"H3027\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* by|strong=\"H3027\"* an|strong=\"H6213\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H3318\"* keep|strong=\"H6213\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "“Honor|strong=\"H3513\"* your|strong=\"H3068\"* father and|strong=\"H3068\"* your|strong=\"H3068\"* mother, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* long|strong=\"H3117\"* and|strong=\"H3068\"* that|strong=\"H3117\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3808\"* shall|strong=\"H7523\"* not|strong=\"H3808\"* murder|strong=\"H7523\"*." + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* commit|strong=\"H5003\"* adultery|strong=\"H5003\"*." + }, + { + "verseNum": 19, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* steal|strong=\"H1589\"*." + }, + { + "verseNum": 20, + "text": "“You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* give|strong=\"H6030\"* false|strong=\"H7723\"* testimony|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 21, + "text": "“You|strong=\"H3605\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife. Neither|strong=\"H3808\"* shall|strong=\"H1004\"* you|strong=\"H3605\"* desire|strong=\"H2530\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*, his|strong=\"H3605\"* field|strong=\"H7704\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* female servant|strong=\"H5650\"*, his|strong=\"H3605\"* ox|strong=\"H7794\"*, or|strong=\"H3808\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*, or|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* your|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* your|strong=\"H3068\"* assembly|strong=\"H6951\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire, of|strong=\"H3068\"* the|strong=\"H3605\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*, with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* voice|strong=\"H6963\"*. He|strong=\"H3068\"* added|strong=\"H3254\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. He|strong=\"H3068\"* wrote|strong=\"H3789\"* them|strong=\"H5414\"* on|strong=\"H5921\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* you|strong=\"H3605\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* out|strong=\"H8432\"* of|strong=\"H7626\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H7626\"* the|strong=\"H3605\"* darkness|strong=\"H2822\"*, while|strong=\"H1961\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* was|strong=\"H1961\"* burning|strong=\"H1197\"* with|strong=\"H1197\"* fire, you|strong=\"H3605\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1961\"* me|strong=\"H6963\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H7626\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"*, and|strong=\"H6963\"* your|strong=\"H3605\"* elders|strong=\"H2205\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H3068\"* you|strong=\"H3588\"* said|strong=\"H1696\"*, “Behold|strong=\"H2005\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* us|strong=\"H7200\"* his|strong=\"H3068\"* glory|strong=\"H3519\"* and|strong=\"H3068\"* his|strong=\"H3068\"* greatness|strong=\"H1433\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* voice|strong=\"H6963\"* out|strong=\"H7200\"* of|strong=\"H3068\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fire. We|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* today|strong=\"H3117\"* that|strong=\"H3588\"* God|strong=\"H3068\"* does|strong=\"H3068\"* speak|strong=\"H1696\"* with|strong=\"H3068\"* man|strong=\"H2088\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* lives|strong=\"H2425\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, why|strong=\"H4100\"* should|strong=\"H3068\"* we|strong=\"H3068\"* die|strong=\"H4191\"*? For|strong=\"H3588\"* this|strong=\"H2063\"* great|strong=\"H1419\"* fire will|strong=\"H3068\"* consume us|strong=\"H3588\"*. If|strong=\"H3588\"* we|strong=\"H3068\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, then|strong=\"H6258\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H4310\"* there|strong=\"H3605\"* of|strong=\"H6963\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* who|strong=\"H4310\"* has|strong=\"H4310\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H4310\"* speaking|strong=\"H1696\"* out|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3605\"* fire, as|strong=\"H3644\"* we|strong=\"H3068\"* have|strong=\"H3605\"*, and|strong=\"H6963\"* lived|strong=\"H2421\"*?" + }, + { + "verseNum": 27, + "text": "Go|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* say|strong=\"H1696\"*, and|strong=\"H3068\"* tell|strong=\"H1696\"* us|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* tells|strong=\"H1696\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* it|strong=\"H7126\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H7126\"*.”" + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"* when|strong=\"H8085\"* you|strong=\"H3605\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6963\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6963\"*, “I|strong=\"H1697\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* well|strong=\"H3190\"* said|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 29, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3605\"* there|strong=\"H1961\"* were|strong=\"H1961\"* such|strong=\"H2088\"* a|strong=\"H3068\"* heart|strong=\"H3824\"* in|strong=\"H3117\"* them|strong=\"H5414\"* that|strong=\"H3605\"* they|strong=\"H3117\"* would|strong=\"H4310\"* fear|strong=\"H3372\"* me|strong=\"H5414\"* and|strong=\"H1121\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* always|strong=\"H3605\"*, that|strong=\"H3605\"* it|strong=\"H5414\"* might|strong=\"H4616\"* be|strong=\"H1961\"* well|strong=\"H3190\"* with|strong=\"H3117\"* them|strong=\"H5414\"* and|strong=\"H1121\"* with|strong=\"H3117\"* their|strong=\"H3605\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*!" + }, + { + "verseNum": 30, + "text": "“Go|strong=\"H3212\"* tell them|strong=\"H7725\"*, ‘Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* tents.’" + }, + { + "verseNum": 31, + "text": "But|strong=\"H1696\"* as|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H5414\"*, stand|strong=\"H5975\"* here|strong=\"H6311\"* by|strong=\"H5975\"* me|strong=\"H5414\"*, and|strong=\"H4941\"* I|strong=\"H5414\"* will|strong=\"H5414\"* tell|strong=\"H1696\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"*, and|strong=\"H4941\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4941\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*, which|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H6213\"* teach|strong=\"H3925\"* them|strong=\"H5414\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H6213\"* do|strong=\"H6213\"* them|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H3605\"* land which|strong=\"H3605\"* I|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* possess|strong=\"H3423\"*.”" + }, + { + "verseNum": 32, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* therefore|strong=\"H3068\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3068\"* the|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H6213\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 33, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* that|strong=\"H3605\"* it|strong=\"H3423\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H2895\"* with|strong=\"H3068\"* you|strong=\"H6680\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H2063\"* are|strong=\"H3068\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"*, the|strong=\"H6213\"* statutes|strong=\"H2706\"*, and|strong=\"H3068\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3068\"* teach|strong=\"H3925\"* you|strong=\"H6680\"*, that|strong=\"H3068\"* you|strong=\"H6680\"* might|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* land that|strong=\"H3068\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"H3605\"* you|strong=\"H6680\"* might|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* and|strong=\"H1121\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"*—you|strong=\"H6680\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* your|strong=\"H3068\"* life|strong=\"H2416\"*; and|strong=\"H1121\"* that|strong=\"H3605\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* prolonged." + }, + { + "verseNum": 3, + "text": "Hear|strong=\"H8085\"* therefore|strong=\"H3068\"*, Israel|strong=\"H3478\"*, and|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H1696\"* do|strong=\"H6213\"* it|strong=\"H6213\"*, that|strong=\"H8085\"* it|strong=\"H6213\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H2100\"* you|strong=\"H6213\"*, and|strong=\"H3478\"* that|strong=\"H8085\"* you|strong=\"H6213\"* may|strong=\"H3068\"* increase|strong=\"H7235\"* mightily|strong=\"H3966\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6213\"*, in|strong=\"H3478\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3478\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 4, + "text": "Hear, Israel|strong=\"H3478\"*: Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* one|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* might|strong=\"H3966\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"H3117\"* words|strong=\"H1697\"*, which|strong=\"H1697\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, shall|strong=\"H3117\"* be|strong=\"H1961\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H1121\"* you|strong=\"H1696\"* shall|strong=\"H1121\"* teach|strong=\"H8150\"* them|strong=\"H1121\"* diligently|strong=\"H8150\"* to|strong=\"H1696\"* your|strong=\"H6965\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* talk|strong=\"H1696\"* of|strong=\"H1121\"* them|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H6965\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H1696\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* shall|strong=\"H5869\"* bind|strong=\"H7194\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* shall|strong=\"H5869\"* be|strong=\"H1961\"* for|strong=\"H5921\"* frontlets|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* your|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* your|strong=\"H5921\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"*, great|strong=\"H1419\"* and|strong=\"H3068\"* goodly|strong=\"H2896\"* cities|strong=\"H5892\"* which|strong=\"H3068\"* you|strong=\"H3588\"* didn’t build|strong=\"H1129\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1004\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* all|strong=\"H3605\"* good|strong=\"H2898\"* things|strong=\"H3605\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t fill|strong=\"H4390\"*, and|strong=\"H1004\"* cisterns dug out|strong=\"H2672\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t dig|strong=\"H2672\"*, vineyards|strong=\"H3754\"* and|strong=\"H1004\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* which|strong=\"H1004\"* you|strong=\"H3605\"* didn’t plant|strong=\"H5193\"*, and|strong=\"H1004\"* you|strong=\"H3605\"* shall|strong=\"H1004\"* eat and|strong=\"H1004\"* be|strong=\"H3808\"* full|strong=\"H4392\"*;" + }, + { + "verseNum": 12, + "text": "then|strong=\"H3318\"* beware|strong=\"H8104\"* lest|strong=\"H6435\"* you|strong=\"H6435\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H6435\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8104\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8104\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5647\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3212\"* after other gods, of|strong=\"H5971\"* the|strong=\"H5439\"* gods of|strong=\"H5971\"* the|strong=\"H5439\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* around|strong=\"H5439\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7067\"* God|strong=\"H3068\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* anger|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* tempt|strong=\"H5254\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H3068\"* you|strong=\"H3808\"* tempted|strong=\"H5254\"* him|strong=\"H3068\"* in|strong=\"H3068\"* Massah|strong=\"H4532\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* diligently|strong=\"H8104\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* testimonies|strong=\"H5713\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* and|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, that|strong=\"H3068\"* it|strong=\"H6213\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H6213\"* and|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H6213\"* may|strong=\"H3068\"* go|strong=\"H3190\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H6213\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 19, + "text": "to|strong=\"H1696\"* thrust|strong=\"H1920\"* out|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* your|strong=\"H3068\"* son|strong=\"H1121\"* asks|strong=\"H7592\"* you|strong=\"H3588\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H4279\"*, saying, “What|strong=\"H4100\"* do|strong=\"H3068\"* the|strong=\"H3588\"* testimonies|strong=\"H5713\"*, the|strong=\"H3588\"* statutes|strong=\"H2706\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* ordinances|strong=\"H4941\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* mean?”" + }, + { + "verseNum": 21, + "text": "then|strong=\"H1961\"* you|strong=\"H3027\"* shall|strong=\"H3068\"* tell your|strong=\"H3068\"* son|strong=\"H1121\"*, “We were|strong=\"H1961\"* Pharaoh|strong=\"H6547\"*’s slaves|strong=\"H5650\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* showed|strong=\"H5414\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H1419\"* signs and|strong=\"H3068\"* wonders|strong=\"H4159\"* on|strong=\"H3068\"* Egypt|strong=\"H4714\"*, on|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* on|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, before|strong=\"H5869\"* our|strong=\"H3068\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H8033\"* he|strong=\"H8033\"* brought|strong=\"H3318\"* us|strong=\"H5414\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"*, that|strong=\"H4616\"* he|strong=\"H8033\"* might|strong=\"H4616\"* bring|strong=\"H3318\"* us|strong=\"H5414\"* in|strong=\"H5414\"*, to|strong=\"H3318\"* give|strong=\"H5414\"* us|strong=\"H5414\"* the|strong=\"H5414\"* land which|strong=\"H8033\"* he|strong=\"H8033\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* our|strong=\"H5414\"* fathers." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"*, to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H6213\"* our|strong=\"H3068\"* good|strong=\"H2896\"* always|strong=\"H3605\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* might|strong=\"H3068\"* preserve|strong=\"H2421\"* us|strong=\"H6213\"* alive|strong=\"H2421\"*, as|strong=\"H3117\"* we|strong=\"H3068\"* are|strong=\"H3117\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* righteousness|strong=\"H6666\"* to|strong=\"H3068\"* us|strong=\"H6213\"*, if|strong=\"H3588\"* we|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2063\"* commandments|strong=\"H4687\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings you|strong=\"H3588\"* into|strong=\"H4480\"* the|strong=\"H6440\"* land|strong=\"H6440\"* where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* casts out|strong=\"H3423\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H3588\"*—the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*—seven|strong=\"H7651\"* nations|strong=\"H1471\"* greater|strong=\"H7227\"* and|strong=\"H3068\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* strike|strong=\"H5221\"* them|strong=\"H5414\"*, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* make|strong=\"H5414\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5414\"*, nor|strong=\"H3808\"* show|strong=\"H5414\"* mercy|strong=\"H2603\"* to|strong=\"H3068\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* make|strong=\"H5414\"* marriages|strong=\"H2859\"* with|strong=\"H3947\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, nor|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H5414\"* take|strong=\"H3947\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* for|strong=\"H1121\"* your|strong=\"H5414\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* from|strong=\"H5493\"* following me|strong=\"H5493\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* other gods. So|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s anger would|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* would|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"* quickly|strong=\"H4118\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H8313\"* them|strong=\"H1992\"* like|strong=\"H3541\"* this|strong=\"H6213\"*: you|strong=\"H3588\"* shall|strong=\"H6213\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H1992\"* altars|strong=\"H4196\"*, dash their|strong=\"H1992\"* pillars|strong=\"H4676\"* in|strong=\"H6213\"* pieces|strong=\"H7665\"*, cut|strong=\"H1438\"* down|strong=\"H5422\"* their|strong=\"H1992\"* Asherah poles, and|strong=\"H4196\"* burn|strong=\"H8313\"* their|strong=\"H1992\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, above|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* didn’t set|strong=\"H2836\"* his|strong=\"H3605\"* love|strong=\"H2836\"* on|strong=\"H3068\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* choose you|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5971\"* more|strong=\"H7230\"* in|strong=\"H3068\"* number|strong=\"H7230\"* than|strong=\"H3808\"* any|strong=\"H3605\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5971\"* the|strong=\"H3605\"* fewest|strong=\"H4592\"* of|strong=\"H3068\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves you|strong=\"H3588\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* he|strong=\"H3588\"* desires to|strong=\"H3318\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* oath|strong=\"H7621\"* which|strong=\"H3068\"* he|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* your|strong=\"H3068\"* fathers, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* with|strong=\"H1004\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* bondage|strong=\"H5650\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H3588\"* faithful|strong=\"H2617\"* God|strong=\"H3068\"*, who|strong=\"H1931\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* loving kindness|strong=\"H2617\"* to|strong=\"H3068\"* a|strong=\"H3068\"* thousand generations|strong=\"H1755\"* with|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* love|strong=\"H2617\"* him|strong=\"H1931\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H6440\"* repays|strong=\"H7999\"* those|strong=\"H8130\"* who|strong=\"H8130\"* hate|strong=\"H8130\"* him|strong=\"H6440\"* to|strong=\"H6440\"* their|strong=\"H6440\"* face|strong=\"H6440\"*, to|strong=\"H6440\"* destroy them|strong=\"H6440\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* slack to|strong=\"H6440\"* him|strong=\"H6440\"* who|strong=\"H8130\"* hates|strong=\"H8130\"* him|strong=\"H6440\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* repay|strong=\"H7999\"* him|strong=\"H6440\"* to|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6680\"* shall|strong=\"H3117\"* therefore|strong=\"H6213\"* keep|strong=\"H8104\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"*, the|strong=\"H6213\"* statutes|strong=\"H2706\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"* which|strong=\"H3117\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, because|strong=\"H6118\"* you|strong=\"H6213\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* these|strong=\"H6213\"* ordinances|strong=\"H4941\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, that|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* with|strong=\"H3068\"* you|strong=\"H6213\"* the|strong=\"H8085\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* the|strong=\"H8085\"* loving kindness|strong=\"H2617\"* which|strong=\"H3068\"* he|strong=\"H6213\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5414\"* will|strong=\"H5414\"* love you|strong=\"H5414\"*, bless|strong=\"H1288\"* you|strong=\"H5414\"*, and|strong=\"H6629\"* multiply|strong=\"H7235\"* you|strong=\"H5414\"*. He|strong=\"H5414\"* will|strong=\"H5414\"* also bless|strong=\"H1288\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H5921\"* your|strong=\"H5414\"* body and|strong=\"H6629\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H5921\"* your|strong=\"H5414\"* ground, your|strong=\"H5414\"* grain|strong=\"H1715\"* and|strong=\"H6629\"* your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"* and|strong=\"H6629\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*, the|strong=\"H5921\"* increase|strong=\"H7235\"* of|strong=\"H5921\"* your|strong=\"H5414\"* livestock and|strong=\"H6629\"* the|strong=\"H5921\"* young|strong=\"H6251\"* of|strong=\"H5921\"* your|strong=\"H5414\"* flock|strong=\"H6629\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land which he|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers to|strong=\"H5921\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* above|strong=\"H1288\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*. There|strong=\"H1961\"* won’t be|strong=\"H1961\"* male|strong=\"H6135\"* or|strong=\"H3808\"* female barren|strong=\"H6135\"* among|strong=\"H5971\"* you|strong=\"H3605\"*, or|strong=\"H3808\"* among|strong=\"H5971\"* your|strong=\"H3605\"* livestock." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H5414\"* all|strong=\"H3605\"* sickness|strong=\"H2483\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* put|strong=\"H5414\"* none|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* diseases|strong=\"H4064\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* know|strong=\"H3045\"*, on|strong=\"H7760\"* you|strong=\"H5414\"*, but|strong=\"H3808\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H7760\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* consume all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* whom|strong=\"H5971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* deliver|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H3588\"*. Your|strong=\"H3068\"* eye|strong=\"H5869\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* pity|strong=\"H2347\"* them|strong=\"H5414\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* their|strong=\"H3605\"* gods; for|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* say in|strong=\"H7227\"* your|strong=\"H3588\"* heart|strong=\"H3824\"*, “These nations|strong=\"H1471\"* are|strong=\"H1471\"* more|strong=\"H4480\"* than|strong=\"H4480\"* I|strong=\"H3588\"*; how|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* dispossess|strong=\"H3423\"* them|strong=\"H3423\"*?”" + }, + { + "verseNum": 18, + "text": "you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* them|strong=\"H1992\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* well|strong=\"H2142\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"* and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*:" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3605\"* great|strong=\"H1419\"* trials|strong=\"H4531\"* which|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, the|strong=\"H3605\"* signs, the|strong=\"H3605\"* wonders|strong=\"H4159\"*, the|strong=\"H3605\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, by|strong=\"H3027\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H6440\"* out|strong=\"H3318\"*. So|strong=\"H3651\"* shall|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* are|strong=\"H5971\"* afraid|strong=\"H3373\"*." + }, + { + "verseNum": 20, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* among them|strong=\"H7971\"*, until|strong=\"H5704\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* left|strong=\"H7604\"*, and|strong=\"H3068\"* hide|strong=\"H5641\"* themselves|strong=\"H5641\"*, perish from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* scared of|strong=\"H3068\"* them|strong=\"H6440\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H3372\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H5921\"* those|strong=\"H5921\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* you|strong=\"H6440\"* little|strong=\"H4592\"* by|strong=\"H5921\"* little|strong=\"H4592\"*. You|strong=\"H6440\"* may|strong=\"H3201\"* not|strong=\"H3808\"* consume|strong=\"H3615\"* them|strong=\"H5921\"* at|strong=\"H5921\"* once|strong=\"H4118\"*, lest|strong=\"H6435\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H6440\"* field|strong=\"H7704\"* increase|strong=\"H7235\"* on|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* confuse|strong=\"H2000\"* them|strong=\"H5414\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5704\"* will|strong=\"H4428\"* deliver|strong=\"H5414\"* their|strong=\"H5414\"* kings|strong=\"H4428\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H4428\"* you|strong=\"H5414\"* shall|strong=\"H4428\"* make|strong=\"H5414\"* their|strong=\"H5414\"* name|strong=\"H8034\"* perish from|strong=\"H6440\"* under|strong=\"H8478\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*. No|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H4428\"* be|strong=\"H3808\"* able|strong=\"H3027\"* to|strong=\"H5704\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H5414\"* until|strong=\"H5704\"* you|strong=\"H5414\"* have|strong=\"H3027\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* burn|strong=\"H8313\"* the|strong=\"H5921\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3068\"* their|strong=\"H3068\"* gods with|strong=\"H8313\"* fire. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* covet|strong=\"H2530\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* or|strong=\"H3808\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* that|strong=\"H3588\"* is|strong=\"H3068\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, nor|strong=\"H3808\"* take|strong=\"H3947\"* it|strong=\"H1931\"* for|strong=\"H3588\"* yourself|strong=\"H5921\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* be|strong=\"H3808\"* snared|strong=\"H3369\"* in|strong=\"H5921\"* it|strong=\"H1931\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3947\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* bring|strong=\"H1961\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* into|strong=\"H1961\"* your|strong=\"H3588\"* house|strong=\"H1004\"* and|strong=\"H1004\"* become|strong=\"H1961\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* like|strong=\"H3644\"* it|strong=\"H1931\"*. You|strong=\"H3588\"* shall|strong=\"H1004\"* utterly|strong=\"H8581\"* detest|strong=\"H8262\"* it|strong=\"H1931\"*. You|strong=\"H3588\"* shall|strong=\"H1004\"* utterly|strong=\"H8581\"* abhor|strong=\"H8581\"* it|strong=\"H1931\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"*, and|strong=\"H3068\"* multiply|strong=\"H7235\"*, and|strong=\"H3068\"* go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* led|strong=\"H3212\"* you|strong=\"H3605\"* these|strong=\"H2088\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, that|strong=\"H3045\"* he|strong=\"H3068\"* might|strong=\"H3068\"* humble|strong=\"H6031\"* you|strong=\"H3605\"*, to|strong=\"H3068\"* test|strong=\"H5254\"* you|strong=\"H3605\"*, to|strong=\"H3068\"* know|strong=\"H3045\"* what|strong=\"H2088\"* was|strong=\"H3068\"* in|strong=\"H8141\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, whether|strong=\"H3045\"* you|strong=\"H3605\"* would|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* or|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* humbled|strong=\"H6031\"* you|strong=\"H3588\"*, allowed|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3808\"* hungry|strong=\"H7456\"*, and|strong=\"H3068\"* fed you|strong=\"H3588\"* with|strong=\"H3068\"* manna|strong=\"H4478\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* didn’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* did|strong=\"H3068\"* your|strong=\"H3068\"* fathers know|strong=\"H3045\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* teach|strong=\"H3045\"* you|strong=\"H3588\"* that|strong=\"H3588\"* man|strong=\"H3605\"* does|strong=\"H3808\"* not|strong=\"H3808\"* live|strong=\"H2421\"* by|strong=\"H5921\"* bread|strong=\"H3899\"* only|strong=\"H3588\"*, but|strong=\"H3588\"* man|strong=\"H3605\"* lives|strong=\"H2421\"* by|strong=\"H5921\"* every|strong=\"H3605\"* word|strong=\"H6310\"* that|strong=\"H3588\"* proceeds|strong=\"H4161\"* out|strong=\"H4161\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H5921\"* clothing|strong=\"H8071\"* didn’t grow old|strong=\"H1086\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* your|strong=\"H5921\"* foot|strong=\"H7272\"* swell|strong=\"H1216\"*, these|strong=\"H2088\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* consider|strong=\"H3045\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* that|strong=\"H3588\"* as|strong=\"H3824\"* a|strong=\"H3068\"* man|strong=\"H1121\"* disciplines|strong=\"H3256\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, so|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* disciplines|strong=\"H3256\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3372\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* him|strong=\"H8104\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H3318\"* you|strong=\"H3588\"* into|strong=\"H3318\"* a|strong=\"H3068\"* good|strong=\"H2896\"* land, a|strong=\"H3068\"* land of|strong=\"H3068\"* brooks|strong=\"H5158\"* of|strong=\"H3068\"* water|strong=\"H4325\"*, of|strong=\"H3068\"* springs|strong=\"H8415\"*, and|strong=\"H3068\"* underground|strong=\"H8415\"* water|strong=\"H4325\"* flowing|strong=\"H3318\"* into|strong=\"H3318\"* valleys|strong=\"H1237\"* and|strong=\"H3068\"* hills|strong=\"H2022\"*;" + }, + { + "verseNum": 8, + "text": "a|strong=\"H3068\"* land of|strong=\"H1612\"* wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, vines|strong=\"H1612\"*, fig|strong=\"H8384\"* trees|strong=\"H2132\"*, and|strong=\"H8081\"* pomegranates|strong=\"H7416\"*; a|strong=\"H3068\"* land of|strong=\"H1612\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H8081\"* honey|strong=\"H1706\"*;" + }, + { + "verseNum": 9, + "text": "a|strong=\"H3068\"* land in|strong=\"H3899\"* which|strong=\"H3899\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* without|strong=\"H3808\"* scarcity|strong=\"H4544\"*, you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* lack|strong=\"H2637\"* anything|strong=\"H3605\"* in|strong=\"H3899\"* it|strong=\"H3808\"*; a|strong=\"H3068\"* land whose|strong=\"H3605\"* stones are|strong=\"H1270\"* iron|strong=\"H1270\"*, and|strong=\"H3899\"* out|strong=\"H2672\"* of|strong=\"H3605\"* whose|strong=\"H3605\"* hills|strong=\"H2042\"* you|strong=\"H3605\"* may|strong=\"H5178\"* dig|strong=\"H2672\"* copper|strong=\"H5178\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3068\"* full|strong=\"H7646\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "Beware|strong=\"H8104\"* lest|strong=\"H6435\"* you|strong=\"H6680\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* not|strong=\"H1115\"* keeping|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 12, + "text": "lest|strong=\"H6435\"*, when|strong=\"H3427\"* you|strong=\"H6435\"* have|strong=\"H7646\"* eaten and|strong=\"H1004\"* are|strong=\"H1004\"* full|strong=\"H7646\"*, and|strong=\"H1004\"* have|strong=\"H7646\"* built|strong=\"H1129\"* fine|strong=\"H2896\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3701\"* when|strong=\"H7235\"* your|strong=\"H3605\"* herds|strong=\"H1241\"* and|strong=\"H3701\"* your|strong=\"H3605\"* flocks|strong=\"H6629\"* multiply|strong=\"H7235\"*, and|strong=\"H3701\"* your|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* your|strong=\"H3605\"* gold|strong=\"H2091\"* is|strong=\"H3701\"* multiplied|strong=\"H7235\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* is|strong=\"H3701\"* multiplied|strong=\"H7235\"*;" + }, + { + "verseNum": 14, + "text": "then|strong=\"H3318\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* might|strong=\"H3068\"* be|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"*, and|strong=\"H3068\"* you|strong=\"H3824\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3824\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*;" + }, + { + "verseNum": 15, + "text": "who|strong=\"H6697\"* led|strong=\"H3212\"* you|strong=\"H3372\"* through|strong=\"H3212\"* the|strong=\"H3318\"* great|strong=\"H1419\"* and|strong=\"H1419\"* terrible|strong=\"H3372\"* wilderness|strong=\"H4057\"*, with|strong=\"H3318\"* venomous snakes|strong=\"H5175\"* and|strong=\"H1419\"* scorpions|strong=\"H6137\"*, and|strong=\"H1419\"* thirsty|strong=\"H6774\"* ground|strong=\"H6774\"* where there was|strong=\"H4325\"* no|strong=\"H3372\"* water|strong=\"H4325\"*; who|strong=\"H6697\"* poured water|strong=\"H4325\"* for|strong=\"H4325\"* you|strong=\"H3372\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3318\"* rock|strong=\"H6697\"* of|strong=\"H4325\"* flint|strong=\"H2496\"*;" + }, + { + "verseNum": 16, + "text": "who|strong=\"H3045\"* fed you|strong=\"H3045\"* in|strong=\"H3808\"* the|strong=\"H3045\"* wilderness|strong=\"H4057\"* with|strong=\"H3045\"* manna|strong=\"H4478\"*, which|strong=\"H4057\"* your|strong=\"H3045\"* fathers didn’t know|strong=\"H3045\"*, that|strong=\"H3045\"* he|strong=\"H3808\"* might|strong=\"H4616\"* humble|strong=\"H6031\"* you|strong=\"H3045\"*, and|strong=\"H3045\"* that|strong=\"H3045\"* he|strong=\"H3808\"* might|strong=\"H4616\"* prove|strong=\"H5254\"* you|strong=\"H3045\"*, to|strong=\"H4616\"* do|strong=\"H3190\"* you|strong=\"H3045\"* good|strong=\"H3190\"* at|strong=\"H3808\"* your|strong=\"H3045\"* latter end|strong=\"H4616\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3027\"* lest you|strong=\"H6213\"* say in|strong=\"H6213\"* your|strong=\"H6213\"* heart|strong=\"H3824\"*, “My|strong=\"H6213\"* power|strong=\"H3027\"* and|strong=\"H3027\"* the|strong=\"H6213\"* might|strong=\"H3581\"* of|strong=\"H3027\"* my|strong=\"H6213\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* gotten|strong=\"H6213\"* me|strong=\"H6213\"* this|strong=\"H2088\"* wealth|strong=\"H2428\"*.”" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* he|strong=\"H1931\"* who|strong=\"H1931\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* power|strong=\"H3581\"* to|strong=\"H3068\"* get|strong=\"H6965\"* wealth|strong=\"H2428\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H5414\"* covenant|strong=\"H1285\"* which|strong=\"H1931\"* he|strong=\"H1931\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* forget|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* after|strong=\"H1961\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1961\"* and|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H1961\"*, I|strong=\"H3588\"* testify|strong=\"H5749\"* against|strong=\"H5749\"* you|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* perish." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3651\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* that|strong=\"H8085\"* Yahweh|strong=\"H3068\"* makes|strong=\"H6440\"* to|strong=\"H3068\"* perish before|strong=\"H6440\"* you|strong=\"H6440\"*, so|strong=\"H3651\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* perish, because|strong=\"H6440\"* you|strong=\"H6440\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*! You|strong=\"H3117\"* are|strong=\"H3117\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8085\"* Jordan|strong=\"H3383\"* today|strong=\"H3117\"*, to|strong=\"H3478\"* go|strong=\"H5674\"* in|strong=\"H3478\"* to|strong=\"H3478\"* dispossess|strong=\"H3423\"* nations|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H3478\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* yourself, cities|strong=\"H5892\"* great|strong=\"H1419\"* and|strong=\"H3478\"* fortified|strong=\"H1219\"* up|strong=\"H1219\"* to|strong=\"H3478\"* the|strong=\"H8085\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* people|strong=\"H5971\"* great|strong=\"H1419\"* and|strong=\"H1121\"* tall|strong=\"H7311\"*, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*, whom|strong=\"H4310\"* you|strong=\"H6440\"* know|strong=\"H3045\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* whom|strong=\"H4310\"* you|strong=\"H6440\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* say, “Who|strong=\"H4310\"* can|strong=\"H4310\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*?”" + }, + { + "verseNum": 3, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H1931\"* who|strong=\"H1931\"* goes|strong=\"H6440\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H3588\"* as|strong=\"H3117\"* a|strong=\"H3068\"* devouring fire. He|strong=\"H1931\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* them|strong=\"H6440\"* and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* bring|strong=\"H5674\"* them|strong=\"H6440\"* down|strong=\"H3665\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. So|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* and|strong=\"H3068\"* make|strong=\"H3045\"* them|strong=\"H6440\"* perish|strong=\"H5674\"* quickly|strong=\"H4118\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Don’t say in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, after Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* thrust|strong=\"H1920\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, “For|strong=\"H6440\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* this|strong=\"H2063\"* land|strong=\"H6440\"*;” because|strong=\"H6440\"* Yahweh|strong=\"H3068\"* drives them|strong=\"H6440\"* out|strong=\"H3423\"* before|strong=\"H6440\"* you|strong=\"H6440\"* because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* wickedness|strong=\"H7564\"* of|strong=\"H3068\"* these|strong=\"H2063\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 5, + "text": "Not|strong=\"H3808\"* for|strong=\"H3588\"* your|strong=\"H3068\"* righteousness|strong=\"H6666\"* or|strong=\"H3808\"* for|strong=\"H3588\"* the|strong=\"H6440\"* uprightness|strong=\"H3476\"* of|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* do|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H6965\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* their|strong=\"H3068\"* land|strong=\"H6440\"*; but|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* wickedness|strong=\"H7564\"* of|strong=\"H3068\"* these|strong=\"H6965\"* nations|strong=\"H1471\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* does|strong=\"H3808\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* the|strong=\"H6440\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H6965\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 6, + "text": "Know|strong=\"H3045\"* therefore|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* doesn’t give|strong=\"H5414\"* you|strong=\"H3588\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land to|strong=\"H3068\"* possess|strong=\"H3423\"* for|strong=\"H3588\"* your|strong=\"H3068\"* righteousness|strong=\"H6666\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"*, and|strong=\"H3068\"* don’t forget|strong=\"H7911\"*, how|strong=\"H5704\"* you|strong=\"H3117\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H5704\"* wrath|strong=\"H7107\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*. From|strong=\"H4480\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* left|strong=\"H3318\"* the|strong=\"H3068\"* land|strong=\"H4725\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* until|strong=\"H5704\"* you|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, you|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Also|strong=\"H3068\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* you|strong=\"H8045\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"* with|strong=\"H3068\"* you|strong=\"H8045\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H8045\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3117\"* I|strong=\"H3117\"* had|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H3947\"* mountain|strong=\"H2022\"* to|strong=\"H3068\"* receive|strong=\"H3947\"* the|strong=\"H3947\"* stone tablets|strong=\"H3871\"*, even|strong=\"H3808\"* the|strong=\"H3947\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* the|strong=\"H3947\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* you|strong=\"H3117\"*, then|strong=\"H3947\"* I|strong=\"H3117\"* stayed|strong=\"H3427\"* on|strong=\"H3117\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*. I|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"* nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"* the|strong=\"H3605\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* written|strong=\"H3789\"* with|strong=\"H5973\"* God|strong=\"H3068\"*’s finger. On|strong=\"H5921\"* them|strong=\"H5414\"* were|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* fire in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5414\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* at|strong=\"H3068\"* the|strong=\"H5414\"* end|strong=\"H7093\"* of|strong=\"H3068\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"*, even|strong=\"H3068\"* the|strong=\"H5414\"* tablets|strong=\"H3871\"* of|strong=\"H3068\"* the|strong=\"H5414\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3381\"* me|strong=\"H4480\"*, “Arise|strong=\"H6965\"*, get|strong=\"H6965\"* down|strong=\"H3381\"* quickly|strong=\"H4118\"* from|strong=\"H4480\"* here|strong=\"H2088\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* have|strong=\"H3068\"* corrupted|strong=\"H7843\"* themselves|strong=\"H6213\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3588\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H4541\"* for|strong=\"H3588\"* themselves|strong=\"H6213\"*!”" + }, + { + "verseNum": 13, + "text": "Furthermore|strong=\"H2009\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* me|strong=\"H7200\"*, saying, “I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, they|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* stiff-necked people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Leave|strong=\"H4480\"* me|strong=\"H4480\"* alone|strong=\"H7503\"*, that|strong=\"H1471\"* I|strong=\"H8478\"* may|strong=\"H1471\"* destroy|strong=\"H8045\"* them|strong=\"H6213\"*, and|strong=\"H8064\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* their|strong=\"H6213\"* name|strong=\"H8034\"* from|strong=\"H4480\"* under|strong=\"H8478\"* the|strong=\"H6213\"* sky|strong=\"H8064\"*; and|strong=\"H8064\"* I|strong=\"H8478\"* will|strong=\"H1471\"* make|strong=\"H6213\"* of|strong=\"H8034\"* you|strong=\"H6213\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* mightier|strong=\"H6099\"* and|strong=\"H8064\"* greater|strong=\"H7227\"* than|strong=\"H4480\"* they|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4480\"* I|strong=\"H5921\"* turned|strong=\"H6437\"* and|strong=\"H3027\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* was|strong=\"H3027\"* burning|strong=\"H1197\"* with|strong=\"H1285\"* fire. The|strong=\"H5921\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* of|strong=\"H3027\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* were|strong=\"H2022\"* in|strong=\"H5921\"* my|strong=\"H5921\"* two|strong=\"H8147\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, you|strong=\"H6680\"* had|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H4480\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H6680\"* had|strong=\"H3068\"* made|strong=\"H6213\"* yourselves|strong=\"H3068\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*. You|strong=\"H6680\"* had|strong=\"H3068\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H7200\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* took|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H3027\"* the|strong=\"H5921\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"*, and|strong=\"H3027\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H3027\"* my|strong=\"H5921\"* two|strong=\"H8147\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* broke|strong=\"H7665\"* them|strong=\"H5921\"* before|strong=\"H5869\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H3117\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3117\"* at|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*. I|strong=\"H3117\"* neither|strong=\"H3808\"* ate bread|strong=\"H3899\"* nor|strong=\"H3808\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* you|strong=\"H6440\"* sinned|strong=\"H2398\"*, in|strong=\"H5921\"* doing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6440\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3068\"* afraid|strong=\"H3025\"* of|strong=\"H3068\"* the|strong=\"H6440\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* hot|strong=\"H2534\"* displeasure|strong=\"H2534\"* with|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry|strong=\"H7107\"* against|strong=\"H5921\"* you|strong=\"H3588\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*. But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6440\"* that|strong=\"H3588\"* time|strong=\"H6471\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry enough|strong=\"H3966\"* with|strong=\"H3068\"* Aaron to|strong=\"H3068\"* destroy|strong=\"H8045\"* him|strong=\"H1931\"*. I|strong=\"H6256\"* prayed|strong=\"H6419\"* for|strong=\"H1157\"* Aaron also|strong=\"H1571\"* at|strong=\"H3068\"* the|strong=\"H3068\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5704\"* took|strong=\"H3947\"* your|strong=\"H3947\"* sin|strong=\"H2403\"*, the|strong=\"H3947\"* calf|strong=\"H5695\"* which|strong=\"H2022\"* you|strong=\"H5704\"* had|strong=\"H8313\"* made|strong=\"H6213\"*, and|strong=\"H2022\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* with|strong=\"H8313\"* fire, and|strong=\"H2022\"* crushed|strong=\"H3807\"* it|strong=\"H6213\"*, grinding|strong=\"H2912\"* it|strong=\"H6213\"* very|strong=\"H5704\"* small|strong=\"H1854\"*, until|strong=\"H5704\"* it|strong=\"H6213\"* was|strong=\"H2022\"* as|strong=\"H5704\"* fine|strong=\"H1854\"* as|strong=\"H5704\"* dust|strong=\"H6083\"*. I|strong=\"H5704\"* threw|strong=\"H7993\"* its|strong=\"H6213\"* dust|strong=\"H6083\"* into|strong=\"H3381\"* the|strong=\"H3947\"* brook|strong=\"H5158\"* that|strong=\"H4480\"* descended|strong=\"H3381\"* out|strong=\"H7993\"* of|strong=\"H2022\"* the|strong=\"H3947\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 22, + "text": "At|strong=\"H3068\"* Taberah|strong=\"H8404\"*, at|strong=\"H3068\"* Massah|strong=\"H4532\"*, and|strong=\"H3068\"* at|strong=\"H3068\"* Kibroth Hattaavah you|strong=\"H1961\"* provoked|strong=\"H7107\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H8085\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H5414\"* from|strong=\"H5927\"* Kadesh Barnea, saying|strong=\"H6310\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H8085\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*,” you|strong=\"H5414\"* rebelled|strong=\"H4784\"* against|strong=\"H5927\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* didn’t believe him|strong=\"H5414\"* or|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3045\"* I|strong=\"H3117\"* knew|strong=\"H3045\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"* that|strong=\"H3588\"* I|strong=\"H3588\"* fell|strong=\"H5307\"* down|strong=\"H5307\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said he|strong=\"H3588\"* would|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H4714\"* prayed|strong=\"H6419\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, don’t destroy|strong=\"H7843\"* your|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* that|strong=\"H5971\"* you|strong=\"H3027\"* have|strong=\"H3068\"* redeemed|strong=\"H6299\"* through|strong=\"H3027\"* your|strong=\"H3068\"* greatness|strong=\"H1433\"*, that|strong=\"H5971\"* you|strong=\"H3027\"* have|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "Remember|strong=\"H2142\"* your|strong=\"H2142\"* servants|strong=\"H5650\"*, Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H5971\"* Jacob|strong=\"H3290\"*. Don’t look|strong=\"H6437\"* at|strong=\"H5971\"* the|strong=\"H2142\"* stubbornness|strong=\"H7190\"* of|strong=\"H5650\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, nor at|strong=\"H5971\"* their|strong=\"H2142\"* wickedness|strong=\"H7562\"*, nor at|strong=\"H5971\"* their|strong=\"H2142\"* sin|strong=\"H2403\"*," + }, + { + "verseNum": 28, + "text": "lest|strong=\"H6435\"* the|strong=\"H3068\"* land you|strong=\"H6435\"* brought|strong=\"H3318\"* us|strong=\"H6435\"* out|strong=\"H3318\"* from|strong=\"H3318\"* say|strong=\"H1696\"*, ‘Because|strong=\"H1097\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H1696\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* he|strong=\"H8033\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3318\"*, and|strong=\"H3068\"* because|strong=\"H1097\"* he|strong=\"H8033\"* hated|strong=\"H8135\"* them|strong=\"H3318\"*, he|strong=\"H8033\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* kill|strong=\"H4191\"* them|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*.’" + }, + { + "verseNum": 29, + "text": "Yet they|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H5186\"* people|strong=\"H5971\"* and|strong=\"H1419\"* your|strong=\"H5186\"* inheritance|strong=\"H5159\"*, which|strong=\"H1992\"* you|strong=\"H5971\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* your|strong=\"H5186\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H1419\"* by|strong=\"H3318\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H6213\"*, “Cut|strong=\"H6458\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H2022\"* the|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H6213\"* onto the|strong=\"H6213\"* mountain|strong=\"H2022\"*, and|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H3068\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"* the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H1697\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* tablets|strong=\"H3871\"* which|strong=\"H1697\"* you|strong=\"H5921\"* broke|strong=\"H7665\"*, and|strong=\"H1697\"* you|strong=\"H5921\"* shall|strong=\"H1697\"* put|strong=\"H7760\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ark.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H6213\"* I|strong=\"H3027\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ark of|strong=\"H3027\"* acacia|strong=\"H7848\"* wood|strong=\"H6086\"*, and|strong=\"H3027\"* cut|strong=\"H6458\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* like|strong=\"H2022\"* the|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H3027\"* went|strong=\"H5927\"* up|strong=\"H5927\"* onto the|strong=\"H6213\"* mountain|strong=\"H2022\"*, having the|strong=\"H6213\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* in|strong=\"H6213\"* my|strong=\"H6213\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* wrote|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tablets|strong=\"H3871\"*, according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* first|strong=\"H7223\"* writing|strong=\"H4385\"*, the|strong=\"H5921\"* ten|strong=\"H6235\"* commandments|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* fire in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1696\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H7760\"* turned|strong=\"H6437\"* and|strong=\"H3068\"* came|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H6213\"* mountain|strong=\"H2022\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* the|strong=\"H6213\"* tablets|strong=\"H3871\"* in|strong=\"H3068\"* the|strong=\"H6213\"* ark which|strong=\"H3068\"* I|strong=\"H7760\"* had|strong=\"H3068\"* made|strong=\"H6213\"*; and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 6, + "text": "(The|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* from|strong=\"H5265\"* Beeroth Bene Jaakan to|strong=\"H3478\"* Moserah|strong=\"H4149\"*. There|strong=\"H8033\"* Aaron died|strong=\"H4191\"*, and|strong=\"H1121\"* there|strong=\"H8033\"* he|strong=\"H8033\"* was|strong=\"H3478\"* buried|strong=\"H6912\"*; and|strong=\"H1121\"* Eleazar his|strong=\"H3478\"* son|strong=\"H1121\"* ministered|strong=\"H3547\"* in|strong=\"H3478\"* the|strong=\"H8478\"* priest|strong=\"H3547\"*’s office in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "From|strong=\"H4480\"* there|strong=\"H8033\"* they|strong=\"H8033\"* traveled|strong=\"H5265\"* to|strong=\"H4325\"* Gudgodah|strong=\"H1412\"*; and|strong=\"H8033\"* from|strong=\"H4480\"* Gudgodah|strong=\"H1412\"* to|strong=\"H4325\"* Jotbathah|strong=\"H3193\"*, a|strong=\"H3068\"* land of|strong=\"H4325\"* brooks|strong=\"H5158\"* of|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"H3068\"* that|strong=\"H3117\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* set|strong=\"H5975\"* apart the|strong=\"H6440\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"* to|strong=\"H5704\"* bear|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, to|strong=\"H5704\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* to|strong=\"H5704\"* bless|strong=\"H1288\"* in|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* Levi|strong=\"H3881\"* has|strong=\"H3068\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* his|strong=\"H3068\"* brothers; Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* inheritance|strong=\"H5159\"*, according|strong=\"H5921\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*.)" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* stayed|strong=\"H5975\"* on|strong=\"H3117\"* the|strong=\"H8085\"* mountain|strong=\"H2022\"*, as|strong=\"H3117\"* at|strong=\"H3068\"* the|strong=\"H8085\"* first|strong=\"H7223\"* time|strong=\"H3117\"*, forty days|strong=\"H3117\"* and|strong=\"H3068\"* forty nights|strong=\"H3915\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5975\"* that|strong=\"H3117\"* time|strong=\"H3117\"* also|strong=\"H1571\"*. Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5414\"*, “Arise|strong=\"H6965\"*, take|strong=\"H3423\"* your|strong=\"H3068\"* journey|strong=\"H4550\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*; and|strong=\"H6965\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* in|strong=\"H3068\"* and|strong=\"H6965\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* their|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"*, Israel|strong=\"H3478\"*, what|strong=\"H4100\"* does|strong=\"H4100\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* require|strong=\"H7592\"* of|strong=\"H3068\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* to|strong=\"H3478\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3478\"* walk|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3478\"* love him|strong=\"H5973\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3478\"* with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"* and|strong=\"H3068\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"* for|strong=\"H2708\"* your|strong=\"H3068\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* belongs heaven|strong=\"H8064\"*, the|strong=\"H3605\"* heaven|strong=\"H8064\"* of|strong=\"H3068\"* heavens|strong=\"H8064\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* therein." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H7535\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* delight|strong=\"H2836\"* in|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* love|strong=\"H2836\"* them|strong=\"H3117\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* chose their|strong=\"H3605\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* them|strong=\"H3117\"*, even|strong=\"H3068\"* you|strong=\"H3605\"* above all|strong=\"H3605\"* peoples|strong=\"H5971\"*, as|strong=\"H3117\"* it|strong=\"H3117\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "Circumcise|strong=\"H4135\"* therefore|strong=\"H4135\"* the|strong=\"H3808\"* foreskin|strong=\"H6190\"* of|strong=\"H3824\"* your|strong=\"H3808\"* heart|strong=\"H3824\"*, and|strong=\"H3824\"* be|strong=\"H5750\"* no|strong=\"H3808\"* more|strong=\"H5750\"* stiff-necked." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* gods and|strong=\"H3068\"* Lord|strong=\"H3068\"* of|strong=\"H3068\"* lords, the|strong=\"H6440\"* great|strong=\"H1419\"* God|strong=\"H3068\"*, the|strong=\"H6440\"* mighty|strong=\"H1368\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* awesome|strong=\"H3372\"*, who|strong=\"H1931\"* doesn’t respect|strong=\"H5375\"* persons|strong=\"H6440\"* or|strong=\"H3808\"* take|strong=\"H3947\"* bribes|strong=\"H7810\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* executes|strong=\"H6213\"* justice|strong=\"H4941\"* for|strong=\"H6213\"* the|strong=\"H5414\"* fatherless|strong=\"H3490\"* and|strong=\"H4941\"* widow and|strong=\"H4941\"* loves the|strong=\"H5414\"* foreigner|strong=\"H1616\"* in|strong=\"H6213\"* giving|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H3899\"* and|strong=\"H4941\"* clothing|strong=\"H8071\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3588\"* love the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* foreigners|strong=\"H1616\"* in|strong=\"H1961\"* the|strong=\"H3588\"* land of|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5647\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H5647\"* shall|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*. You|strong=\"H5647\"* shall|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H5647\"*, and|strong=\"H3068\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7200\"* praise|strong=\"H8416\"*, and|strong=\"H1419\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H7200\"* God, who|strong=\"H1931\"* has|strong=\"H5869\"* done|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"* these|strong=\"H6213\"* great|strong=\"H1419\"* and|strong=\"H1419\"* awesome|strong=\"H3372\"* things|strong=\"H1419\"* which|strong=\"H1931\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* have|strong=\"H5869\"* seen|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "Your|strong=\"H3068\"* fathers went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* seventy|strong=\"H7657\"* persons|strong=\"H5315\"*; and|strong=\"H3068\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H7760\"* you|strong=\"H7760\"* as|strong=\"H5315\"* the|strong=\"H3068\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sky|strong=\"H8064\"* for|strong=\"H4714\"* multitude|strong=\"H7230\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Therefore|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* instructions|strong=\"H4687\"*, his|strong=\"H3605\"* statutes|strong=\"H2708\"*, his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, always|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Know|strong=\"H3045\"* this|strong=\"H7200\"* day|strong=\"H3117\"*—for|strong=\"H3588\"* I|strong=\"H3588\"* don’t speak with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* who|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, and|strong=\"H1121\"* who|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* chastisement|strong=\"H4148\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, his|strong=\"H3068\"* greatness|strong=\"H1433\"*, his|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, his|strong=\"H3068\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*," + }, + { + "verseNum": 3, + "text": "his|strong=\"H3605\"* signs, and|strong=\"H4428\"* his|strong=\"H3605\"* works|strong=\"H4639\"*, which|strong=\"H4428\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H6213\"* Pharaoh|strong=\"H6547\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* what|strong=\"H2088\"* he|strong=\"H3117\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H5704\"* their|strong=\"H3068\"* horses|strong=\"H5483\"*, and|strong=\"H3068\"* to|strong=\"H5704\"* their|strong=\"H3068\"* chariots|strong=\"H7393\"*; how|strong=\"H5704\"* he|strong=\"H3117\"* made|strong=\"H6213\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* to|strong=\"H5704\"* overflow|strong=\"H6687\"* them|strong=\"H5921\"* as|strong=\"H5704\"* they|strong=\"H3117\"* pursued|strong=\"H7291\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* how|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* destroyed them|strong=\"H5921\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H6213\"* what|strong=\"H2088\"* he|strong=\"H5704\"* did|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H5704\"* in|strong=\"H6213\"* the|strong=\"H6213\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* you|strong=\"H5704\"* came to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* what|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* Dathan|strong=\"H1885\"* and|strong=\"H1121\"* Abiram, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliab, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*—how|strong=\"H6213\"* the|strong=\"H3605\"* earth opened|strong=\"H6475\"* its|strong=\"H3605\"* mouth|strong=\"H6310\"* and|strong=\"H1121\"* swallowed|strong=\"H1104\"* them|strong=\"H6213\"* up|strong=\"H1104\"*, with|strong=\"H1004\"* their|strong=\"H3605\"* households|strong=\"H1004\"*, their|strong=\"H3605\"* tents, and|strong=\"H1121\"* every|strong=\"H3605\"* living|strong=\"H3351\"* thing|strong=\"H3351\"* that|strong=\"H3605\"* followed|strong=\"H7272\"* them|strong=\"H6213\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s great|strong=\"H1419\"* work|strong=\"H4639\"* which|strong=\"H3068\"* he|strong=\"H3588\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H4616\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* entire|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H8033\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H3117\"* be|strong=\"H3117\"* strong|strong=\"H2388\"*, and|strong=\"H3117\"* go|strong=\"H5674\"* in|strong=\"H3117\"* and|strong=\"H3117\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* you|strong=\"H6680\"* go|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H8104\"* possess|strong=\"H3423\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* that|strong=\"H3117\"* you|strong=\"H5414\"* may|strong=\"H3068\"* prolong your|strong=\"H3068\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* them|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* offspring|strong=\"H2233\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* land, where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3318\"* in|strong=\"H8033\"* to|strong=\"H3318\"* possess|strong=\"H3423\"* isn’t like|strong=\"H3318\"* the|strong=\"H3588\"* land of|strong=\"H2233\"* Egypt|strong=\"H4714\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H2233\"*, where|strong=\"H8033\"* you|strong=\"H3588\"* sowed|strong=\"H2232\"* your|strong=\"H3588\"* seed|strong=\"H2233\"* and|strong=\"H4714\"* watered|strong=\"H8248\"* it|strong=\"H1931\"* with|strong=\"H3318\"* your|strong=\"H3588\"* foot|strong=\"H7272\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* of|strong=\"H2233\"* herbs|strong=\"H3419\"*;" + }, + { + "verseNum": 11, + "text": "but|strong=\"H4325\"* the|strong=\"H3423\"* land|strong=\"H8064\"* that|strong=\"H4325\"* you|strong=\"H2022\"* go over|strong=\"H3423\"* to|strong=\"H4325\"* possess|strong=\"H3423\"* is|strong=\"H8033\"* a|strong=\"H3068\"* land|strong=\"H8064\"* of|strong=\"H2022\"* hills|strong=\"H2022\"* and|strong=\"H8064\"* valleys|strong=\"H1237\"* which|strong=\"H8033\"* drinks|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H3423\"* the|strong=\"H3423\"* rain|strong=\"H4306\"* of|strong=\"H2022\"* the|strong=\"H3423\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "a|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cares|strong=\"H1875\"* for|strong=\"H5704\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* always|strong=\"H8548\"* on|strong=\"H3068\"* it|strong=\"H5704\"*, from|strong=\"H5704\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H3068\"* year|strong=\"H8141\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3068\"* end of|strong=\"H3068\"* the|strong=\"H3068\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1961\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H6680\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* rain|strong=\"H4306\"* for|strong=\"H6256\"* your|strong=\"H5414\"* land in|strong=\"H5414\"* its|strong=\"H5414\"* season|strong=\"H6256\"*, the|strong=\"H5414\"* early|strong=\"H3138\"* rain|strong=\"H4306\"* and|strong=\"H1715\"* the|strong=\"H5414\"* latter|strong=\"H4456\"* rain|strong=\"H4306\"*, that|strong=\"H5414\"* you|strong=\"H5414\"* may|strong=\"H5414\"* gather in|strong=\"H5414\"* your|strong=\"H5414\"* grain|strong=\"H1715\"*, your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1715\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* grass|strong=\"H6212\"* in|strong=\"H5414\"* your|strong=\"H5414\"* fields|strong=\"H7704\"* for|strong=\"H7704\"* your|strong=\"H5414\"* livestock, and|strong=\"H7704\"* you|strong=\"H5414\"* shall|strong=\"H7704\"* eat and|strong=\"H7704\"* be|strong=\"H5414\"* full|strong=\"H7646\"*." + }, + { + "verseNum": 16, + "text": "Be|strong=\"H3824\"* careful|strong=\"H8104\"*, lest|strong=\"H6435\"* your|strong=\"H8104\"* heart|strong=\"H3824\"* be|strong=\"H3824\"* deceived|strong=\"H6601\"*, and|strong=\"H8104\"* you|strong=\"H5647\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H8104\"* serve|strong=\"H5647\"* other gods and|strong=\"H8104\"* worship|strong=\"H7812\"* them|strong=\"H5493\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* shut|strong=\"H6113\"* up|strong=\"H5414\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* so|strong=\"H1961\"* that|strong=\"H3068\"* there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H3808\"* rain|strong=\"H4306\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* land|strong=\"H8064\"* doesn’t yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H2981\"*; and|strong=\"H3068\"* you|strong=\"H5414\"* perish quickly|strong=\"H4120\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land|strong=\"H8064\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* you|strong=\"H5921\"* shall|strong=\"H5315\"* lay|strong=\"H7760\"* up|strong=\"H7760\"* these|strong=\"H7760\"* words|strong=\"H1697\"* of|strong=\"H3027\"* mine|strong=\"H7760\"* in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"* and|strong=\"H3027\"* in|strong=\"H5921\"* your|strong=\"H5921\"* soul|strong=\"H5315\"*. You|strong=\"H5921\"* shall|strong=\"H5315\"* bind|strong=\"H7194\"* them|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign on|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* for|strong=\"H5921\"* frontlets|strong=\"H2903\"* between|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3925\"* shall|strong=\"H1121\"* teach|strong=\"H3925\"* them|strong=\"H3925\"* to|strong=\"H1696\"* your|strong=\"H6965\"* children|strong=\"H1121\"*, talking|strong=\"H1696\"* of|strong=\"H1121\"* them|strong=\"H3925\"* when|strong=\"H1696\"* you|strong=\"H3925\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H6965\"* house|strong=\"H1004\"*, when|strong=\"H1696\"* you|strong=\"H3925\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*, when|strong=\"H1696\"* you|strong=\"H3925\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, and|strong=\"H1121\"* when|strong=\"H1696\"* you|strong=\"H3925\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5921\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* your|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* your|strong=\"H5921\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 21, + "text": "that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"*’s days|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* multiplied|strong=\"H7235\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land|strong=\"H8064\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"*, as|strong=\"H3117\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* diligently|strong=\"H8104\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* these|strong=\"H2063\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*—to|strong=\"H3212\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, to|strong=\"H3212\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* to|strong=\"H3212\"* cling|strong=\"H1692\"* to|strong=\"H3212\"* him|strong=\"H6213\"*—" + }, + { + "verseNum": 23, + "text": "then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* all|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"* from|strong=\"H4480\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* nations|strong=\"H1471\"* greater|strong=\"H1419\"* and|strong=\"H3068\"* mightier|strong=\"H6099\"* than|strong=\"H4480\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "Every|strong=\"H3605\"* place|strong=\"H4725\"* on|strong=\"H1961\"* which|strong=\"H4725\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H1366\"* your|strong=\"H3605\"* foot|strong=\"H7272\"* treads|strong=\"H1869\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* yours: from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* and|strong=\"H3220\"* Lebanon|strong=\"H3844\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* western|strong=\"H3220\"* sea|strong=\"H3220\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 25, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3808\"* able to|strong=\"H1696\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* you|strong=\"H5414\"* and|strong=\"H3068\"* the|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3068\"* you|strong=\"H5414\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* that|strong=\"H3605\"* you|strong=\"H5414\"* tread|strong=\"H1869\"* on|strong=\"H5921\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* and|strong=\"H3117\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*:" + }, + { + "verseNum": 27, + "text": "the|strong=\"H8085\"* blessing|strong=\"H1293\"*, if you|strong=\"H6680\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3068\"* the|strong=\"H8085\"* curse|strong=\"H7045\"*, if you|strong=\"H6680\"* do|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H8085\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* go|strong=\"H3212\"* after|strong=\"H4480\"* other gods which|strong=\"H3068\"* you|strong=\"H6680\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 29, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brings|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1961\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H5921\"* blessing|strong=\"H1293\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* curse|strong=\"H7045\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*." + }, + { + "verseNum": 30, + "text": "Aren’t they|strong=\"H1992\"* beyond|strong=\"H5676\"* the|strong=\"H1870\"* Jordan|strong=\"H3383\"*, behind the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H3427\"* the|strong=\"H1870\"* going|strong=\"H8121\"* down|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H1870\"* sun|strong=\"H8121\"*, in|strong=\"H3427\"* the|strong=\"H1870\"* land|strong=\"H5676\"* of|strong=\"H3427\"* the|strong=\"H1870\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1870\"* Arabah|strong=\"H6160\"* near|strong=\"H3808\"* Gilgal|strong=\"H1537\"*, beside|strong=\"H5676\"* the|strong=\"H1870\"* oaks of|strong=\"H3427\"* Moreh|strong=\"H4176\"*?" + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H3427\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3117\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H6213\"* are|strong=\"H3117\"* the|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* you|strong=\"H5414\"* live|strong=\"H2416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3605\"* shall|strong=\"H1471\"* surely destroy|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* in|strong=\"H5921\"* which|strong=\"H1471\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H1471\"* dispossess|strong=\"H3423\"* served|strong=\"H5647\"* their|strong=\"H3605\"* gods: on|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H7311\"* mountains|strong=\"H2022\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H4480\"* shall|strong=\"H1931\"* break|strong=\"H7665\"* down|strong=\"H5422\"* their|strong=\"H8313\"* altars|strong=\"H4196\"*, dash their|strong=\"H8313\"* pillars|strong=\"H4676\"* in|strong=\"H4196\"* pieces|strong=\"H7665\"*, and|strong=\"H4196\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* Asherah poles with|strong=\"H8313\"* fire. You|strong=\"H4480\"* shall|strong=\"H1931\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H4480\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H8034\"* their|strong=\"H8313\"* gods. You|strong=\"H4480\"* shall|strong=\"H1931\"* destroy|strong=\"H5422\"* their|strong=\"H8313\"* name|strong=\"H8034\"* out|strong=\"H4480\"* of|strong=\"H8034\"* that|strong=\"H1931\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* to|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose out|strong=\"H1875\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*, to|strong=\"H3068\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* seek|strong=\"H1875\"* his|strong=\"H3605\"* habitation|strong=\"H7933\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* come there|strong=\"H8033\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3027\"* shall|strong=\"H3027\"* bring your|strong=\"H3027\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, your|strong=\"H3027\"* sacrifices|strong=\"H2077\"*, your|strong=\"H3027\"* tithes|strong=\"H4643\"*, the|strong=\"H3027\"* wave offering|strong=\"H5930\"* of|strong=\"H3027\"* your|strong=\"H3027\"* hand|strong=\"H3027\"*, your|strong=\"H3027\"* vows|strong=\"H5088\"*, your|strong=\"H3027\"* free will|strong=\"H3027\"* offerings|strong=\"H5930\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* firstborn|strong=\"H1062\"* of|strong=\"H3027\"* your|strong=\"H3027\"* herd|strong=\"H1241\"* and|strong=\"H3027\"* of|strong=\"H3027\"* your|strong=\"H3027\"* flock|strong=\"H6629\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* eat before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* put|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*, you|strong=\"H6440\"* and|strong=\"H3068\"* your|strong=\"H3068\"* households|strong=\"H1004\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* do|strong=\"H6213\"* here|strong=\"H6311\"* today|strong=\"H3117\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* whatever|strong=\"H3605\"* is|strong=\"H3117\"* right|strong=\"H3477\"* in|strong=\"H6213\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* haven’t yet|strong=\"H3588\"* come to|strong=\"H5704\"* the|strong=\"H3588\"* rest|strong=\"H4496\"* and|strong=\"H3068\"* to|strong=\"H5704\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3605\"* when|strong=\"H3068\"* you|strong=\"H3605\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* causes you|strong=\"H3605\"* to|strong=\"H3068\"* inherit|strong=\"H5157\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* gives|strong=\"H5117\"* you|strong=\"H3605\"* rest|strong=\"H5117\"* from|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies around|strong=\"H5439\"* you|strong=\"H3605\"*, so|strong=\"H5674\"* that|strong=\"H3605\"* you|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* safety," + }, + { + "verseNum": 11, + "text": "then|strong=\"H1961\"* it|strong=\"H8033\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* to|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose, to|strong=\"H3068\"* cause|strong=\"H1961\"* his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*, there|strong=\"H8033\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* bring|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6680\"*: your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, your|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, your|strong=\"H3068\"* tithes|strong=\"H4643\"*, the|strong=\"H3605\"* wave offering|strong=\"H5930\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* choice|strong=\"H4005\"* vows|strong=\"H5088\"* which|strong=\"H3068\"* you|strong=\"H6680\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*—you|strong=\"H3588\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"*, your|strong=\"H3068\"* daughters|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* Levite|strong=\"H3881\"* who|strong=\"H3068\"* is|strong=\"H3068\"* within|strong=\"H6440\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* no|strong=\"H6440\"* portion|strong=\"H2506\"* nor|strong=\"H2506\"* inheritance|strong=\"H5159\"* with|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H4725\"* careful|strong=\"H8104\"* that|strong=\"H7200\"* you|strong=\"H3605\"* don’t offer|strong=\"H5927\"* your|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H4725\"* every|strong=\"H3605\"* place|strong=\"H4725\"* that|strong=\"H7200\"* you|strong=\"H3605\"* see|strong=\"H7200\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* chooses in|strong=\"H3068\"* one|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*, there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* offer|strong=\"H5927\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Yet|strong=\"H7535\"* you|strong=\"H5414\"* may|strong=\"H3068\"* kill|strong=\"H2076\"* and|strong=\"H3068\"* eat meat|strong=\"H1320\"* within|strong=\"H1320\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, after|strong=\"H5315\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s blessing|strong=\"H1293\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*. The|strong=\"H3605\"* unclean|strong=\"H2931\"* and|strong=\"H3068\"* the|strong=\"H3605\"* clean|strong=\"H2889\"* may|strong=\"H3068\"* eat of|strong=\"H3068\"* it|strong=\"H5414\"*, as|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H3605\"* gazelle|strong=\"H6643\"* and|strong=\"H3068\"* the|strong=\"H3605\"* deer." + }, + { + "verseNum": 16, + "text": "Only|strong=\"H7535\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat the|strong=\"H5921\"* blood|strong=\"H1818\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth like|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* may|strong=\"H3201\"* not|strong=\"H3808\"* eat within your|strong=\"H3605\"* gates|strong=\"H8179\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3027\"* your|strong=\"H3605\"* grain|strong=\"H1715\"*, or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* oil|strong=\"H3323\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* firstborn|strong=\"H1062\"* of|strong=\"H3027\"* your|strong=\"H3605\"* herd|strong=\"H1241\"* or|strong=\"H3808\"* of|strong=\"H3027\"* your|strong=\"H3605\"* flock|strong=\"H6629\"*, nor|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H3027\"* your|strong=\"H3605\"* vows|strong=\"H5088\"* which|strong=\"H8179\"* you|strong=\"H3605\"* vow|strong=\"H5088\"*, nor|strong=\"H3808\"* your|strong=\"H3605\"* free will|strong=\"H3027\"* offerings|strong=\"H5071\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* wave offering|strong=\"H8641\"* of|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* eat them|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose: you|strong=\"H3588\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within|strong=\"H6440\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Be|strong=\"H3117\"* careful|strong=\"H8104\"* that|strong=\"H3605\"* you|strong=\"H3605\"* don’t forsake|strong=\"H5800\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3605\"* live|strong=\"H3117\"* in|strong=\"H5921\"* your|strong=\"H3605\"* land." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* enlarges|strong=\"H7337\"* your|strong=\"H3068\"* border|strong=\"H1366\"*, as|strong=\"H5315\"* he|strong=\"H3588\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* say|strong=\"H1696\"*, “I|strong=\"H3588\"* want|strong=\"H5315\"* to|strong=\"H1696\"* eat meat|strong=\"H1320\"*,” because|strong=\"H3588\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* desires to|strong=\"H1696\"* eat meat|strong=\"H1320\"*, you|strong=\"H3588\"* may|strong=\"H3068\"* eat meat|strong=\"H1320\"*, after|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 21, + "text": "If|strong=\"H3588\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* put|strong=\"H5414\"* his|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* too|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, then|strong=\"H5414\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* kill|strong=\"H2076\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"*, as|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* may|strong=\"H3068\"* eat within|strong=\"H4480\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, after|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 22, + "text": "Even|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* gazelle|strong=\"H6643\"* and|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* deer is|strong=\"H3651\"* eaten, so|strong=\"H3651\"* you|strong=\"H3651\"* shall|strong=\"H2889\"* eat of|strong=\"H6643\"* it|strong=\"H3651\"*. The|strong=\"H3651\"* unclean|strong=\"H2931\"* and|strong=\"H3651\"* the|strong=\"H3651\"* clean|strong=\"H2889\"* may|strong=\"H2889\"* eat of|strong=\"H6643\"* it|strong=\"H3651\"* alike|strong=\"H3162\"*." + }, + { + "verseNum": 23, + "text": "Only|strong=\"H7535\"* be|strong=\"H3808\"* sure|strong=\"H2388\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t eat the|strong=\"H3588\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* is|strong=\"H1931\"* the|strong=\"H3588\"* life|strong=\"H5315\"*. You|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* eat the|strong=\"H3588\"* life|strong=\"H5315\"* with|strong=\"H5973\"* the|strong=\"H3588\"* meat|strong=\"H1320\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat it|strong=\"H5921\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth like|strong=\"H3808\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat it|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H3588\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 26, + "text": "Only|strong=\"H7535\"* your|strong=\"H3068\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* which|strong=\"H3068\"* you|strong=\"H5375\"* have|strong=\"H1961\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* vows|strong=\"H5088\"*, you|strong=\"H5375\"* shall|strong=\"H3068\"* take|strong=\"H5375\"* and|strong=\"H3068\"* go|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H5375\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose." + }, + { + "verseNum": 27, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H6213\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, the|strong=\"H5921\"* meat|strong=\"H1320\"* and|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*. The|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* eat the|strong=\"H5921\"* meat|strong=\"H1320\"*." + }, + { + "verseNum": 28, + "text": "Observe|strong=\"H8104\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H6213\"* words|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3190\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H3588\"* you|strong=\"H3588\"* forever|strong=\"H5769\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H1121\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cuts|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"* where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H3068\"* in|strong=\"H3427\"* to|strong=\"H3068\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* land|strong=\"H6440\"*," + }, + { + "verseNum": 30, + "text": "be|strong=\"H1571\"* careful|strong=\"H8104\"* that|strong=\"H1471\"* you|strong=\"H6440\"* are|strong=\"H1471\"* not|strong=\"H6213\"* ensnared|strong=\"H5367\"* to|strong=\"H6213\"* follow|strong=\"H6213\"* them|strong=\"H6440\"* after|strong=\"H1875\"* they|strong=\"H3651\"* are|strong=\"H1471\"* destroyed|strong=\"H8045\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H6440\"* that|strong=\"H1471\"* you|strong=\"H6440\"* not|strong=\"H6213\"* inquire|strong=\"H1875\"* after|strong=\"H1875\"* their|strong=\"H6440\"* gods, saying, “How|strong=\"H3651\"* do|strong=\"H6213\"* these|strong=\"H6213\"* nations|strong=\"H1471\"* serve|strong=\"H5647\"* their|strong=\"H6440\"* gods? I|strong=\"H3651\"* will|strong=\"H1471\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*.”" + }, + { + "verseNum": 31, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* every|strong=\"H3605\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* hates|strong=\"H8130\"*, they|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* their|strong=\"H3605\"* gods; for|strong=\"H3588\"* they|strong=\"H3588\"* even|strong=\"H1571\"* burn|strong=\"H8313\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3605\"* daughters|strong=\"H1323\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fire to|strong=\"H3068\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 32, + "text": "Whatever thing I command you, that you shall observe to do. You shall not add to it, nor take away from it." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "If a|strong=\"H3068\"* prophet or|strong=\"H3808\"* a|strong=\"H3068\"* dreamer of|strong=\"H1697\"* dreams arises among|strong=\"H4480\"* you|strong=\"H6680\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* gives you|strong=\"H6680\"* a|strong=\"H3068\"* sign or|strong=\"H3808\"* a|strong=\"H3068\"* wonder," + }, + { + "verseNum": 2, + "text": "and|strong=\"H6965\"* the|strong=\"H3588\"* sign|strong=\"H4159\"* or|strong=\"H3588\"* the|strong=\"H3588\"* wonder|strong=\"H4159\"* comes|strong=\"H5414\"* to|strong=\"H5414\"* pass|strong=\"H6965\"*, of|strong=\"H5030\"* which|strong=\"H5030\"* he|strong=\"H3588\"* spoke to|strong=\"H5414\"* you|strong=\"H3588\"*, saying, “Let|strong=\"H5414\"*’s go|strong=\"H6965\"* after|strong=\"H3588\"* other gods” (which|strong=\"H5030\"* you|strong=\"H3588\"* have|strong=\"H5030\"* not|strong=\"H5414\"* known) “and|strong=\"H6965\"* let|strong=\"H5414\"*’s serve them|strong=\"H5414\"*,”" + }, + { + "verseNum": 3, + "text": "you|strong=\"H3045\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* listen to|strong=\"H1696\"* the|strong=\"H5647\"* words of|strong=\"H5647\"* that|strong=\"H3045\"* prophet|strong=\"H1696\"*, or|strong=\"H3808\"* to|strong=\"H1696\"* that|strong=\"H3045\"* dreamer of|strong=\"H5647\"* dreams; for|strong=\"H3045\"* Yahweh|strong=\"H3068\"* your|strong=\"H3045\"* God|strong=\"H3808\"* is|strong=\"H1696\"* testing you|strong=\"H3045\"*, to|strong=\"H1696\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* you|strong=\"H3045\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3045\"* God|strong=\"H3808\"* with|strong=\"H1696\"* all|strong=\"H3045\"* your|strong=\"H3045\"* heart and|strong=\"H3212\"* with|strong=\"H1696\"* all|strong=\"H3045\"* your|strong=\"H3045\"* soul." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* walk after|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, fear him|strong=\"H1931\"*, keep|strong=\"H8085\"* his|strong=\"H3605\"* commandments|strong=\"H1697\"*, and|strong=\"H3068\"* obey|strong=\"H8085\"* his|strong=\"H3605\"* voice. You|strong=\"H3588\"* shall|strong=\"H3068\"* serve him|strong=\"H1931\"*, and|strong=\"H3068\"* cling to|strong=\"H3068\"* him|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "That|strong=\"H8085\"* prophet, or|strong=\"H8085\"* that|strong=\"H8085\"* dreamer of|strong=\"H3068\"* dreams, shall|strong=\"H3068\"* be|strong=\"H3068\"* put|strong=\"H3068\"* to|strong=\"H3212\"* death, because|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H8085\"* rebellion against|strong=\"H3212\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H3212\"* you|strong=\"H5647\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt and|strong=\"H3068\"* redeemed you|strong=\"H5647\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* house of|strong=\"H3068\"* bondage|strong=\"H5647\"*, to|strong=\"H3212\"* draw you|strong=\"H5647\"* aside out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H8085\"* way|strong=\"H3212\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H4687\"* you|strong=\"H5647\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3068\"*. So|strong=\"H8085\"* you|strong=\"H5647\"* shall|strong=\"H3068\"* remove the|strong=\"H8085\"* evil from|strong=\"H8085\"* among you|strong=\"H5647\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* your|strong=\"H3068\"* brother, the|strong=\"H5921\"* son of|strong=\"H1004\"* your|strong=\"H3068\"* mother, or|strong=\"H4480\"* your|strong=\"H3068\"* son, or|strong=\"H4480\"* your|strong=\"H3068\"* daughter|strong=\"H1004\"*, or|strong=\"H4480\"* the|strong=\"H5921\"* wife|strong=\"H1696\"* of|strong=\"H1004\"* your|strong=\"H3068\"* bosom, or|strong=\"H4480\"* your|strong=\"H3068\"* friend who|strong=\"H1931\"* is|strong=\"H3068\"* as|strong=\"H3068\"* your|strong=\"H3068\"* own soul, entices you|strong=\"H3588\"* secretly, saying|strong=\"H1696\"*, “Let|strong=\"H3212\"*’s go|strong=\"H3212\"* and|strong=\"H3068\"* serve other gods”—which|strong=\"H1931\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3588\"* known|strong=\"H3318\"*, you|strong=\"H3588\"*, nor|strong=\"H4480\"* your|strong=\"H3068\"* fathers;" + }, + { + "verseNum": 7, + "text": "of|strong=\"H1121\"* the|strong=\"H3588\"* gods of|strong=\"H1121\"* the|strong=\"H3588\"* peoples who|strong=\"H1121\"* are|strong=\"H1121\"* around you|strong=\"H3588\"*, near|strong=\"H3808\"* to|strong=\"H3212\"* you|strong=\"H3588\"*, or|strong=\"H3808\"* far|strong=\"H5315\"* off|strong=\"H7453\"* from|strong=\"H5315\"* you|strong=\"H3588\"*, from|strong=\"H5315\"* the|strong=\"H3588\"* one|strong=\"H3808\"* end of|strong=\"H1121\"* the|strong=\"H3588\"* earth even|strong=\"H3588\"* to|strong=\"H3212\"* the|strong=\"H3588\"* other|strong=\"H7453\"* end of|strong=\"H1121\"* the|strong=\"H3588\"* earth—" + }, + { + "verseNum": 8, + "text": "you|strong=\"H5704\"* shall|strong=\"H5971\"* not|strong=\"H5971\"* consent to|strong=\"H5704\"* him|strong=\"H5439\"* nor|strong=\"H4480\"* listen to|strong=\"H5704\"* him|strong=\"H5439\"*; neither|strong=\"H4480\"* shall|strong=\"H5971\"* your|strong=\"H4480\"* eye pity him|strong=\"H5439\"*, neither|strong=\"H4480\"* shall|strong=\"H5971\"* you|strong=\"H5704\"* spare, neither|strong=\"H4480\"* shall|strong=\"H5971\"* you|strong=\"H5704\"* conceal him|strong=\"H5439\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H5869\"* surely|strong=\"H8085\"* kill him|strong=\"H5921\"*. Your|strong=\"H5921\"* hand shall|strong=\"H5869\"* be|strong=\"H3808\"* first on|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H5921\"* put him|strong=\"H5921\"* to|strong=\"H5921\"* death, and|strong=\"H5869\"* afterwards the|strong=\"H5921\"* hands of|strong=\"H5869\"* all|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H3808\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* shall|strong=\"H5971\"* stone him|strong=\"H3027\"* to|strong=\"H4191\"* death|strong=\"H4191\"* with|strong=\"H3027\"* stones, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* sought to|strong=\"H4191\"* draw|strong=\"H5971\"* you|strong=\"H3588\"* away|strong=\"H3605\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3027\"*, who|strong=\"H3605\"* brought|strong=\"H1961\"* you|strong=\"H3588\"* out|strong=\"H3605\"* of|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt, out|strong=\"H3605\"* of|strong=\"H3027\"* the|strong=\"H3605\"* house of|strong=\"H3027\"* bondage." + }, + { + "verseNum": 11, + "text": "All|strong=\"H5921\"* Israel shall|strong=\"H3068\"* hear, and|strong=\"H3068\"* fear, and|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3588\"* do|strong=\"H3068\"* any|strong=\"H3588\"* more|strong=\"H3588\"* wickedness like|strong=\"H3318\"* this|strong=\"H3588\"* among|strong=\"H5921\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "If you|strong=\"H3605\"* hear|strong=\"H8085\"* about|strong=\"H1697\"* one|strong=\"H2088\"* of|strong=\"H1697\"* your|strong=\"H3605\"* cities, which|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* gives you|strong=\"H3605\"* to|strong=\"H3478\"* dwell there|strong=\"H2088\"*, that|strong=\"H3605\"*" + }, + { + "verseNum": 13, + "text": "certain|strong=\"H8085\"* wicked fellows have|strong=\"H3068\"* gone|strong=\"H3068\"* out|strong=\"H5414\"* from|strong=\"H8085\"* among|strong=\"H3427\"* you|strong=\"H3588\"* and|strong=\"H3068\"* have|strong=\"H3068\"* drawn away|strong=\"H5414\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* their|strong=\"H3068\"* city|strong=\"H5892\"*, saying, “Let|strong=\"H5414\"*’s go|strong=\"H3068\"* and|strong=\"H3068\"* serve other gods,” which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H5414\"* known|strong=\"H8085\"*," + }, + { + "verseNum": 14, + "text": "then|strong=\"H3318\"* you|strong=\"H3045\"* shall|strong=\"H1121\"* inquire, investigate|strong=\"H3045\"*, and|strong=\"H1121\"* ask diligently. Behold|strong=\"H3808\"*, if|strong=\"H1121\"* it|strong=\"H3045\"* is|strong=\"H5892\"* true, and|strong=\"H1121\"* the|strong=\"H5647\"* thing certain|strong=\"H3045\"*, that|strong=\"H3045\"* such|strong=\"H3808\"* abomination was|strong=\"H5892\"* done|strong=\"H5647\"* among|strong=\"H7130\"* you|strong=\"H3045\"*," + }, + { + "verseNum": 15, + "text": "you|strong=\"H6213\"* shall|strong=\"H1697\"* surely|strong=\"H6213\"* strike the|strong=\"H6213\"* inhabitants of|strong=\"H1697\"* that|strong=\"H1697\"* city with|strong=\"H6213\"* the|strong=\"H6213\"* edge of|strong=\"H1697\"* the|strong=\"H6213\"* sword, destroying it|strong=\"H6213\"* utterly, with|strong=\"H6213\"* all|strong=\"H6213\"* that|strong=\"H1697\"* is|strong=\"H1697\"* therein|strong=\"H7130\"* and|strong=\"H6213\"* its|strong=\"H6213\"* livestock, with|strong=\"H6213\"* the|strong=\"H6213\"* edge of|strong=\"H1697\"* the|strong=\"H6213\"* sword." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3605\"* shall|strong=\"H5892\"* gather all|strong=\"H3605\"* its|strong=\"H3605\"* plunder into|strong=\"H2719\"* the|strong=\"H3605\"* middle of|strong=\"H3427\"* its|strong=\"H3605\"* street, and|strong=\"H5892\"* shall|strong=\"H5892\"* burn with|strong=\"H3427\"* fire the|strong=\"H3605\"* city|strong=\"H5892\"*, with|strong=\"H3427\"* all|strong=\"H3605\"* of|strong=\"H3427\"* its|strong=\"H3605\"* plunder, to|strong=\"H6310\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God. It|strong=\"H1931\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* a|strong=\"H3068\"* heap forever|strong=\"H3605\"*. It|strong=\"H1931\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* built again." + }, + { + "verseNum": 17, + "text": "Nothing|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H3605\"* devoted thing|strong=\"H3605\"* shall|strong=\"H3068\"* cling to|strong=\"H3068\"* your|strong=\"H3068\"* hand, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* may|strong=\"H1961\"* turn|strong=\"H6908\"* from|strong=\"H3068\"* the|strong=\"H3605\"* fierceness of|strong=\"H3068\"* his|strong=\"H3605\"* anger and|strong=\"H3068\"* show|strong=\"H1961\"* you|strong=\"H3605\"* mercy|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* compassion on|strong=\"H3068\"* you|strong=\"H3605\"* and|strong=\"H3068\"* multiply you|strong=\"H3605\"*, as|strong=\"H1961\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sworn to|strong=\"H3068\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 18, + "text": "when|strong=\"H7725\"* you|strong=\"H5414\"* listen to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice, to|strong=\"H7725\"* keep|strong=\"H1692\"* all|strong=\"H5414\"* his|strong=\"H5414\"* commandments which|strong=\"H3068\"* I|strong=\"H5414\"* command|strong=\"H3027\"* you|strong=\"H5414\"* today, to|strong=\"H7725\"* do|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H7760\"* are|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H7760\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* cut|strong=\"H1413\"* yourselves|strong=\"H5869\"*, nor|strong=\"H3808\"* make|strong=\"H7760\"* any|strong=\"H3808\"* baldness|strong=\"H7144\"* between your|strong=\"H3068\"* eyes|strong=\"H5869\"* for|strong=\"H3068\"* the|strong=\"H3068\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, above|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat any|strong=\"H3605\"* abominable|strong=\"H8441\"* thing|strong=\"H8441\"*." + }, + { + "verseNum": 4, + "text": "These|strong=\"H2063\"* are the|strong=\"H7716\"* animals which you may eat: the|strong=\"H7716\"* ox|strong=\"H7794\"*, the|strong=\"H7716\"* sheep|strong=\"H7716\"*, the|strong=\"H7716\"* goat|strong=\"H5795\"*," + }, + { + "verseNum": 5, + "text": "the deer|strong=\"H3180\"*, the gazelle|strong=\"H6643\"*, the roebuck|strong=\"H6643\"*, the wild goat, the ibex|strong=\"H1788\"*, the antelope|strong=\"H8377\"*, and|strong=\"H6643\"* the chamois|strong=\"H2169\"*." + }, + { + "verseNum": 6, + "text": "Every|strong=\"H3605\"* animal that|strong=\"H3605\"* parts|strong=\"H6541\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"*, and|strong=\"H5927\"* has|strong=\"H3605\"* the|strong=\"H3605\"* hoof|strong=\"H6541\"* split|strong=\"H8156\"* in|strong=\"H5927\"* two|strong=\"H8147\"* and|strong=\"H5927\"* chews|strong=\"H5927\"* the|strong=\"H3605\"* cud|strong=\"H1625\"*, among the|strong=\"H3605\"* animals, you|strong=\"H3605\"* may eat." + }, + { + "verseNum": 7, + "text": "Nevertheless|strong=\"H3588\"* these|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat of|strong=\"H3808\"* them|strong=\"H1992\"* that|strong=\"H3588\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"*, or|strong=\"H3808\"* of|strong=\"H3808\"* those|strong=\"H1992\"* who|strong=\"H1992\"* have|strong=\"H3588\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"* split|strong=\"H8156\"*: the|strong=\"H3588\"* camel|strong=\"H1581\"*, the|strong=\"H3588\"* hare, and|strong=\"H5927\"* the|strong=\"H3588\"* rabbit. Because|strong=\"H3588\"* they|strong=\"H1992\"* chew|strong=\"H5927\"* the|strong=\"H3588\"* cud|strong=\"H1625\"* but|strong=\"H3588\"* don’t part|strong=\"H1992\"* the|strong=\"H3588\"* hoof|strong=\"H6541\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* unclean|strong=\"H2931\"* to|strong=\"H5927\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* pig|strong=\"H2386\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* split hoof|strong=\"H6541\"* but|strong=\"H3588\"* doesn’t chew the|strong=\"H3588\"* cud|strong=\"H1625\"*, is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H1320\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat their|strong=\"H3588\"* meat|strong=\"H1320\"*. You|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* their|strong=\"H3588\"* carcasses|strong=\"H5038\"*." + }, + { + "verseNum": 9, + "text": "These|strong=\"H2088\"* you|strong=\"H3605\"* may|strong=\"H4325\"* eat of|strong=\"H4325\"* all|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H4325\"* in|strong=\"H2088\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*: you|strong=\"H3605\"* may|strong=\"H4325\"* eat whatever|strong=\"H3605\"* has|strong=\"H2088\"* fins|strong=\"H5579\"* and|strong=\"H4325\"* scales|strong=\"H7193\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat whatever|strong=\"H3605\"* doesn’t have|strong=\"H3605\"* fins|strong=\"H5579\"* and|strong=\"H5579\"* scales|strong=\"H7193\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Of|strong=\"H3605\"* all|strong=\"H3605\"* clean|strong=\"H2889\"* birds|strong=\"H6833\"* you|strong=\"H3605\"* may|strong=\"H2889\"* eat." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* these|strong=\"H2088\"* are|strong=\"H1992\"* they|strong=\"H1992\"* of|strong=\"H3808\"* which|strong=\"H1992\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat: the|strong=\"H3808\"* eagle|strong=\"H5404\"*, the|strong=\"H3808\"* vulture|strong=\"H6538\"*, the|strong=\"H3808\"* osprey," + }, + { + "verseNum": 13, + "text": "the red kite, the falcon, the kite of any kind|strong=\"H4327\"*," + }, + { + "verseNum": 14, + "text": "every|strong=\"H3605\"* raven|strong=\"H6158\"* of|strong=\"H3605\"* any|strong=\"H3605\"* kind|strong=\"H4327\"*," + }, + { + "verseNum": 15, + "text": "the|strong=\"H1323\"* ostrich|strong=\"H3284\"*, the|strong=\"H1323\"* owl|strong=\"H8464\"*, the|strong=\"H1323\"* seagull, the|strong=\"H1323\"* hawk|strong=\"H5322\"* of|strong=\"H1323\"* any kind|strong=\"H4327\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3563\"* little|strong=\"H3563\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* great|strong=\"H3244\"* owl|strong=\"H3244\"*, the|strong=\"H3563\"* horned owl|strong=\"H3244\"*," + }, + { + "verseNum": 17, + "text": "the pelican|strong=\"H6893\"*, the vulture|strong=\"H7360\"*, the cormorant|strong=\"H7994\"*," + }, + { + "verseNum": 18, + "text": "the stork|strong=\"H2624\"*, the heron after|strong=\"H4327\"* its kind|strong=\"H4327\"*, the hoopoe|strong=\"H1744\"*, and the bat|strong=\"H5847\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* winged|strong=\"H5775\"* creeping|strong=\"H2931\"* things|strong=\"H3605\"* are|strong=\"H5775\"* unclean|strong=\"H2931\"* to|strong=\"H3808\"* you|strong=\"H3605\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* eaten." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H3605\"* all|strong=\"H3605\"* clean|strong=\"H2889\"* birds|strong=\"H5775\"* you|strong=\"H3605\"* may|strong=\"H2889\"* eat." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* dies|strong=\"H5038\"* of|strong=\"H3068\"* itself|strong=\"H5038\"*. You|strong=\"H3588\"* may|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* living|strong=\"H3605\"* among|strong=\"H5971\"* you|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H3068\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* eat it|strong=\"H5414\"*; or|strong=\"H3808\"* you|strong=\"H3588\"* may|strong=\"H3068\"* sell|strong=\"H4376\"* it|strong=\"H5414\"* to|strong=\"H3068\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3605\"* shall|strong=\"H2233\"* surely|strong=\"H3318\"* tithe|strong=\"H6237\"* all|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H8141\"* your|strong=\"H3605\"* seed|strong=\"H2233\"*, that|strong=\"H3605\"* which|strong=\"H7704\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8141\"* the|strong=\"H3605\"* field|strong=\"H7704\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* eat before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3117\"* chooses to|strong=\"H3068\"* cause his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"*, the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3068\"* your|strong=\"H3068\"* grain|strong=\"H1715\"*, of|strong=\"H3068\"* your|strong=\"H3068\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* oil|strong=\"H3323\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* firstborn|strong=\"H1062\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*; that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H3068\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* is|strong=\"H3068\"* too|strong=\"H4480\"* long|strong=\"H7235\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* carry|strong=\"H5375\"* it|strong=\"H7760\"* because|strong=\"H3588\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3201\"* set|strong=\"H7760\"* his|strong=\"H5375\"* name|strong=\"H8034\"* there|strong=\"H8033\"* is|strong=\"H3068\"* too|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* blesses|strong=\"H1288\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H1980\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* turn|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H1980\"* money|strong=\"H3701\"*, bind|strong=\"H6887\"* up|strong=\"H5414\"* the|strong=\"H5414\"* money|strong=\"H3701\"* in|strong=\"H1980\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H1980\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H5414\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose." + }, + { + "verseNum": 26, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* trade the|strong=\"H3605\"* money|strong=\"H3701\"* for|strong=\"H6440\"* whatever|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* desires|strong=\"H7592\"*: for|strong=\"H6440\"* cattle|strong=\"H1241\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* sheep|strong=\"H6629\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* wine|strong=\"H3196\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*, or|strong=\"H3196\"* for|strong=\"H6440\"* whatever|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* asks|strong=\"H7592\"* of|strong=\"H1004\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* eat there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"*, you|strong=\"H5414\"* and|strong=\"H3068\"* your|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "You|strong=\"H3588\"* shall|strong=\"H3881\"* not|strong=\"H3808\"* forsake|strong=\"H5800\"* the|strong=\"H3588\"* Levite|strong=\"H3881\"* who|strong=\"H3881\"* is|strong=\"H5159\"* within|strong=\"H5973\"* your|strong=\"H3588\"* gates|strong=\"H8179\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 28, + "text": "At|strong=\"H3318\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H8141\"* every|strong=\"H3605\"* three|strong=\"H7969\"* years|strong=\"H8141\"* you|strong=\"H3605\"* shall|strong=\"H1931\"* bring|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H8141\"* your|strong=\"H3605\"* increase|strong=\"H8393\"* in|strong=\"H8141\"* the|strong=\"H3605\"* same|strong=\"H1931\"* year|strong=\"H8141\"*, and|strong=\"H8141\"* shall|strong=\"H1931\"* store it|strong=\"H1931\"* within your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* Levite|strong=\"H3881\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* no|strong=\"H6213\"* portion|strong=\"H2506\"* nor|strong=\"H2506\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* well|strong=\"H5973\"* as|strong=\"H6213\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"* living|strong=\"H3605\"* among|strong=\"H5973\"* you|strong=\"H3588\"*, the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* widow who|strong=\"H3605\"* are|strong=\"H3027\"* within|strong=\"H5973\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* shall|strong=\"H3068\"* come, and|strong=\"H3068\"* shall|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3027\"* satisfied|strong=\"H7646\"*; that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* which|strong=\"H3068\"* you|strong=\"H3588\"* do|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H6213\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H8141\"* every|strong=\"H6213\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, you|strong=\"H6213\"* shall|strong=\"H8141\"* cancel debts." + }, + { + "verseNum": 2, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3605\"* way|strong=\"H1697\"* it|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* done|strong=\"H3027\"*: every|strong=\"H3605\"* creditor|strong=\"H5383\"* shall|strong=\"H3068\"* release|strong=\"H8059\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* lent|strong=\"H5383\"* to|strong=\"H3068\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* require payment from|strong=\"H3027\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"* and|strong=\"H3068\"* his|strong=\"H3605\"* brother|strong=\"H7453\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s release|strong=\"H8059\"* has|strong=\"H3068\"* been|strong=\"H3808\"* proclaimed|strong=\"H7121\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H3027\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* you|strong=\"H3027\"* may|strong=\"H1961\"* require it|strong=\"H1961\"*; but|strong=\"H1961\"* whatever of|strong=\"H3027\"* yours is|strong=\"H3027\"* with|strong=\"H3027\"* your|strong=\"H1961\"* brother, your|strong=\"H1961\"* hand|strong=\"H3027\"* shall|strong=\"H3027\"* release|strong=\"H8058\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* poor|strong=\"H3423\"* with|strong=\"H3068\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*)" + }, + { + "verseNum": 5, + "text": "if only|strong=\"H7535\"* you|strong=\"H6680\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* promised|strong=\"H1696\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* lend|strong=\"H5670\"* to|strong=\"H1696\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* borrow|strong=\"H5670\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* poor man|strong=\"H8179\"*, one|strong=\"H3808\"* of|strong=\"H3068\"* your|strong=\"H3068\"* brothers, is|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* within any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* in|strong=\"H3068\"* your|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* harden your|strong=\"H3068\"* heart|strong=\"H3824\"*, nor|strong=\"H3808\"* shut|strong=\"H7092\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* from|strong=\"H3027\"* your|strong=\"H3068\"* poor brother;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* open|strong=\"H6605\"* your|strong=\"H3588\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* shall|strong=\"H3027\"* surely|strong=\"H3588\"* lend|strong=\"H5670\"* him|strong=\"H3027\"* sufficient|strong=\"H1767\"* for|strong=\"H3588\"* his|strong=\"H3027\"* need|strong=\"H4270\"*, which|strong=\"H3588\"* he|strong=\"H3588\"* lacks|strong=\"H2637\"*." + }, + { + "verseNum": 9, + "text": "Beware|strong=\"H8104\"* that|strong=\"H3068\"* there|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wicked|strong=\"H1100\"* thought|strong=\"H5869\"* in|strong=\"H8141\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, saying|strong=\"H1697\"*, “The|strong=\"H5921\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"*, the|strong=\"H5921\"* year|strong=\"H8141\"* of|strong=\"H3068\"* release|strong=\"H8059\"*, is|strong=\"H3068\"* at|strong=\"H5921\"* hand|strong=\"H5414\"*,” and|strong=\"H3068\"* your|strong=\"H3068\"* eye|strong=\"H5869\"* be|strong=\"H1961\"* evil|strong=\"H7489\"* against|strong=\"H5921\"* your|strong=\"H3068\"* poor brother and|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"* him|strong=\"H5414\"* nothing|strong=\"H3808\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* cry|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* be|strong=\"H1961\"* sin|strong=\"H2399\"* to|strong=\"H3068\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* give|strong=\"H5414\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* grieved|strong=\"H7489\"* when|strong=\"H3588\"* you|strong=\"H3588\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"*, because|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H3068\"* for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* work|strong=\"H4639\"* and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H5414\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* poor|strong=\"H6041\"* will|strong=\"H3027\"* never|strong=\"H3808\"* cease|strong=\"H2308\"* out|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* land|strong=\"H7130\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H5921\"* surely|strong=\"H3588\"* open|strong=\"H6605\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5921\"* brother, to|strong=\"H5921\"* your|strong=\"H5921\"* needy|strong=\"H6041\"*, and|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5921\"* poor|strong=\"H6041\"*, in|strong=\"H5921\"* your|strong=\"H5921\"* land|strong=\"H7130\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* your|strong=\"H3588\"* brother, a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* man|strong=\"H5680\"*, or|strong=\"H4376\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* woman|strong=\"H5680\"*, is|strong=\"H8141\"* sold|strong=\"H4376\"* to|strong=\"H7971\"* you|strong=\"H3588\"* and|strong=\"H7971\"* serves|strong=\"H5647\"* you|strong=\"H3588\"* six|strong=\"H8337\"* years|strong=\"H8141\"*, then|strong=\"H7971\"* in|strong=\"H8141\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* you|strong=\"H3588\"* shall|strong=\"H8141\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* furnish|strong=\"H6059\"* him|strong=\"H5414\"* liberally|strong=\"H6059\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*, out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H3068\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* he|strong=\"H3588\"* tells you|strong=\"H3588\"*, “I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* you|strong=\"H3588\"*,” because|strong=\"H3588\"* he|strong=\"H3588\"* loves you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3588\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H1961\"* well|strong=\"H2895\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H5650\"* take|strong=\"H3947\"* an|strong=\"H6213\"* awl|strong=\"H4836\"*, and|strong=\"H5650\"* thrust|strong=\"H5414\"* it|strong=\"H5414\"* through|strong=\"H6213\"* his|strong=\"H5414\"* ear to|strong=\"H1961\"* the|strong=\"H5414\"* door|strong=\"H1817\"*, and|strong=\"H5650\"* he|strong=\"H3651\"* shall|strong=\"H5650\"* be|strong=\"H1961\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* forever|strong=\"H5769\"*. Also|strong=\"H6213\"* to|strong=\"H1961\"* your|strong=\"H5414\"* female servant|strong=\"H5650\"* you|strong=\"H5414\"* shall|strong=\"H5650\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* seem|strong=\"H5869\"* hard|strong=\"H7185\"* to|strong=\"H3068\"* you|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H7971\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H5647\"* double|strong=\"H4932\"* the|strong=\"H3605\"* value|strong=\"H5869\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* hand as|strong=\"H6213\"* he|strong=\"H3588\"* served|strong=\"H5647\"* you|strong=\"H3588\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* dedicate|strong=\"H6942\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* males|strong=\"H2145\"* that|strong=\"H3605\"* are|strong=\"H3068\"* born|strong=\"H3205\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"* and|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H5647\"* no|strong=\"H3808\"* work|strong=\"H5647\"* with|strong=\"H3068\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* your|strong=\"H3068\"* herd|strong=\"H1241\"*, nor|strong=\"H3808\"* shear|strong=\"H1494\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* of|strong=\"H3068\"* your|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* eat it|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose, you|strong=\"H6440\"* and|strong=\"H3068\"* your|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "If|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* any|strong=\"H3605\"* defect|strong=\"H3971\"*—is|strong=\"H3068\"* lame|strong=\"H6455\"* or|strong=\"H3808\"* blind|strong=\"H5787\"*, or|strong=\"H3808\"* has|strong=\"H3068\"* any|strong=\"H3605\"* defect|strong=\"H3971\"* whatever|strong=\"H3605\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* it|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "You shall|strong=\"H2889\"* eat it within your gates|strong=\"H8179\"*. The|strong=\"H8179\"* unclean|strong=\"H2931\"* and|strong=\"H8179\"* the|strong=\"H8179\"* clean|strong=\"H2889\"* shall|strong=\"H2889\"* eat it alike|strong=\"H3162\"*, as|strong=\"H8179\"* the|strong=\"H8179\"* gazelle|strong=\"H6643\"* and|strong=\"H8179\"* as|strong=\"H8179\"* the|strong=\"H8179\"* deer." + }, + { + "verseNum": 23, + "text": "Only|strong=\"H7535\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* eat its|strong=\"H5921\"* blood|strong=\"H1818\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* pour|strong=\"H8210\"* it|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground like|strong=\"H3808\"* water|strong=\"H4325\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Observe|strong=\"H8104\"* the|strong=\"H3588\"* month|strong=\"H2320\"* of|strong=\"H3068\"* Abib, and|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* month|strong=\"H2320\"* of|strong=\"H3068\"* Abib Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* by|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H4725\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H3068\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* flock|strong=\"H6629\"* and|strong=\"H3068\"* the|strong=\"H3068\"* herd|strong=\"H1241\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* cause his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* leavened|strong=\"H2557\"* bread|strong=\"H3899\"* with|strong=\"H5921\"* it|strong=\"H5921\"*. You|strong=\"H3588\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* unleavened|strong=\"H4682\"* bread|strong=\"H3899\"* with|strong=\"H5921\"* it|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* affliction|strong=\"H6040\"* (for|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* in|strong=\"H5921\"* haste|strong=\"H2649\"*) that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3117\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* day|strong=\"H3117\"* when|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "No|strong=\"H3808\"* yeast|strong=\"H7603\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* seen|strong=\"H7200\"* with|strong=\"H3117\"* you|strong=\"H3605\"* in|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; neither|strong=\"H3808\"* shall|strong=\"H3117\"* any|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* meat|strong=\"H1320\"*, which|strong=\"H3117\"* you|strong=\"H3605\"* sacrifice|strong=\"H2076\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* at|strong=\"H3117\"* evening|strong=\"H6153\"*, remain|strong=\"H3885\"* all|strong=\"H3605\"* night|strong=\"H3885\"* until|strong=\"H3885\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5414\"* may|strong=\"H3201\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* the|strong=\"H5414\"* Passover|strong=\"H6453\"* within|strong=\"H6453\"* any|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* at|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3318\"* cause|strong=\"H3318\"* his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3318\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"*, there|strong=\"H8033\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H3588\"* Passover|strong=\"H6453\"* at|strong=\"H3068\"* evening|strong=\"H6153\"*, at|strong=\"H3068\"* the|strong=\"H3588\"* going|strong=\"H3318\"* down|strong=\"H7931\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*, at|strong=\"H3068\"* the|strong=\"H3588\"* season|strong=\"H4150\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6437\"* shall|strong=\"H3068\"* roast|strong=\"H1310\"* and|strong=\"H1980\"* eat it|strong=\"H1242\"* in|strong=\"H1980\"* the|strong=\"H3068\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses. In|strong=\"H1980\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* you|strong=\"H6437\"* shall|strong=\"H3068\"* return|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H3068\"* tents." + }, + { + "verseNum": 8, + "text": "Six|strong=\"H8337\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* eat unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*. On|strong=\"H3117\"* the|strong=\"H6213\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3117\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H7651\"* shall|strong=\"H7620\"* count|strong=\"H5608\"* for|strong=\"H5608\"* yourselves seven|strong=\"H7651\"* weeks|strong=\"H7620\"*. From|strong=\"H7620\"* the|strong=\"H5608\"* time you|strong=\"H7651\"* begin|strong=\"H2490\"* to|strong=\"H2490\"* put the|strong=\"H5608\"* sickle|strong=\"H2770\"* to|strong=\"H2490\"* the|strong=\"H5608\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"* you|strong=\"H7651\"* shall|strong=\"H7620\"* begin|strong=\"H2490\"* to|strong=\"H2490\"* count|strong=\"H5608\"* seven|strong=\"H7651\"* weeks|strong=\"H7620\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H5414\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* weeks|strong=\"H7620\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* tribute|strong=\"H4530\"* of|strong=\"H3068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* according|strong=\"H3027\"* to|strong=\"H3068\"* how|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* blesses|strong=\"H1288\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*: you|strong=\"H6440\"*, your|strong=\"H3068\"* son|strong=\"H1121\"*, your|strong=\"H3068\"* daughter|strong=\"H1323\"*, your|strong=\"H3068\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H3068\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, the|strong=\"H6440\"* Levite|strong=\"H3881\"* who|strong=\"H3068\"* is|strong=\"H3068\"* within|strong=\"H7130\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, the|strong=\"H6440\"* foreigner|strong=\"H1121\"*, the|strong=\"H6440\"* fatherless|strong=\"H3490\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* widow who|strong=\"H3068\"* are|strong=\"H1121\"* among|strong=\"H7130\"* you|strong=\"H6440\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose to|strong=\"H3068\"* cause his|strong=\"H3068\"* name|strong=\"H8034\"* to|strong=\"H3068\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* shall|strong=\"H4714\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*. You|strong=\"H3588\"* shall|strong=\"H4714\"* observe|strong=\"H8104\"* and|strong=\"H5650\"* do|strong=\"H6213\"* these|strong=\"H6213\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3117\"* shall|strong=\"H3117\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, after|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* gathered|strong=\"H6213\"* in|strong=\"H6213\"* from|strong=\"H3117\"* your|strong=\"H6213\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H3117\"* from|strong=\"H3117\"* your|strong=\"H6213\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H8055\"* shall|strong=\"H1121\"* rejoice|strong=\"H8055\"* in|strong=\"H1121\"* your|strong=\"H1121\"* feast|strong=\"H2282\"*, you|strong=\"H8055\"*, your|strong=\"H1121\"* son|strong=\"H1121\"*, your|strong=\"H1121\"* daughter|strong=\"H1323\"*, your|strong=\"H1121\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, your|strong=\"H1121\"* female|strong=\"H1323\"* servant|strong=\"H5650\"*, the|strong=\"H5650\"* Levite|strong=\"H3881\"*, the|strong=\"H5650\"* foreigner|strong=\"H1121\"*, the|strong=\"H5650\"* fatherless|strong=\"H3490\"*, and|strong=\"H1121\"* the|strong=\"H5650\"* widow who|strong=\"H1616\"* are|strong=\"H1121\"* within your|strong=\"H1121\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H2287\"* a|strong=\"H3068\"* feast|strong=\"H2287\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* chooses, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* increase|strong=\"H8393\"* and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* altogether|strong=\"H3605\"* joyful|strong=\"H8056\"*." + }, + { + "verseNum": 16, + "text": "Three|strong=\"H7969\"* times|strong=\"H6471\"* in|strong=\"H8141\"* a|strong=\"H3068\"* year|strong=\"H8141\"* all|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* males|strong=\"H2138\"* shall|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3068\"* chooses: in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* weeks|strong=\"H7620\"*, and|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* booths|strong=\"H5521\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* empty|strong=\"H7387\"*." + }, + { + "verseNum": 17, + "text": "Every|strong=\"H5414\"* man shall|strong=\"H3068\"* give|strong=\"H5414\"* as|strong=\"H3068\"* he|strong=\"H3068\"* is|strong=\"H3068\"* able|strong=\"H3027\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s blessing|strong=\"H1293\"* which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* make|strong=\"H5414\"* judges|strong=\"H8199\"* and|strong=\"H3068\"* officers|strong=\"H7860\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H3068\"* righteous|strong=\"H6664\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* pervert|strong=\"H5186\"* justice|strong=\"H4941\"*. You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"*. You|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* blinds|strong=\"H5786\"* the|strong=\"H6440\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* the|strong=\"H6440\"* wise|strong=\"H2450\"* and|strong=\"H4941\"* perverts|strong=\"H5557\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6440\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* follow|strong=\"H7291\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* altogether|strong=\"H6664\"* just|strong=\"H6664\"*, that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* inherit|strong=\"H3423\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* plant|strong=\"H5193\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* an|strong=\"H6213\"* Asherah of|strong=\"H3068\"* any|strong=\"H3605\"* kind of|strong=\"H3068\"* tree|strong=\"H6086\"* beside Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*, which|strong=\"H3068\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* make|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "Neither|strong=\"H3808\"* shall|strong=\"H3068\"* you|strong=\"H3808\"* set|strong=\"H6965\"* yourself up|strong=\"H6965\"* a|strong=\"H3068\"* sacred stone which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* hates|strong=\"H8130\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* an|strong=\"H1961\"* ox|strong=\"H7794\"* or|strong=\"H3808\"* a|strong=\"H3068\"* sheep|strong=\"H7716\"* in|strong=\"H3068\"* which|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* defect|strong=\"H3971\"* or|strong=\"H3808\"* anything|strong=\"H3605\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H3068\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"H3588\"* there|strong=\"H4672\"* is|strong=\"H3068\"* found|strong=\"H4672\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, within|strong=\"H7130\"* any|strong=\"H6213\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* man|strong=\"H7451\"* or|strong=\"H3068\"* woman who|strong=\"H3068\"* does|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"* in|strong=\"H3068\"* transgressing|strong=\"H5674\"* his|strong=\"H5414\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H8064\"* has|strong=\"H6635\"* gone|strong=\"H3212\"* and|strong=\"H8064\"* served|strong=\"H5647\"* other|strong=\"H3605\"* gods and|strong=\"H8064\"* worshiped|strong=\"H7812\"* them|strong=\"H6680\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, or|strong=\"H3808\"* the|strong=\"H3605\"* moon|strong=\"H3394\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* of|strong=\"H6635\"* the|strong=\"H3605\"* stars of|strong=\"H6635\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H6635\"* I|strong=\"H6680\"* have|strong=\"H3605\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3478\"* you|strong=\"H6213\"* are|strong=\"H3478\"* told|strong=\"H5046\"*, and|strong=\"H3478\"* you|strong=\"H6213\"* have|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1697\"* it|strong=\"H6213\"*, then|strong=\"H2009\"* you|strong=\"H6213\"* shall|strong=\"H3478\"* inquire|strong=\"H1875\"* diligently|strong=\"H8085\"*. Behold|strong=\"H2009\"*, if|strong=\"H2009\"* it|strong=\"H6213\"* is|strong=\"H1697\"* true, and|strong=\"H3478\"* the|strong=\"H8085\"* thing|strong=\"H1697\"* certain|strong=\"H3559\"*, that|strong=\"H8085\"* such|strong=\"H2063\"* abomination|strong=\"H8441\"* is|strong=\"H1697\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H3318\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* that|strong=\"H1931\"* man|strong=\"H4191\"* or|strong=\"H4191\"* that|strong=\"H1931\"* woman|strong=\"H2088\"* who|strong=\"H1931\"* has|strong=\"H3318\"* done|strong=\"H6213\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"* to|strong=\"H3318\"* your|strong=\"H6213\"* gates|strong=\"H8179\"*, even|strong=\"H6213\"* that|strong=\"H1931\"* same|strong=\"H1931\"* man|strong=\"H4191\"* or|strong=\"H4191\"* woman|strong=\"H2088\"*; and|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* stone|strong=\"H5619\"* them|strong=\"H6213\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H6213\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* two|strong=\"H8147\"* witnesses|strong=\"H5707\"*, or|strong=\"H3808\"* three|strong=\"H7969\"* witnesses|strong=\"H5707\"*, he|strong=\"H8147\"* who|strong=\"H3808\"* is|strong=\"H6310\"* to|strong=\"H4191\"* die|strong=\"H4191\"* shall|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. At|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* one|strong=\"H3808\"* witness|strong=\"H5707\"* he|strong=\"H8147\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* witnesses|strong=\"H5707\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* first|strong=\"H7223\"* on|strong=\"H3027\"* him|strong=\"H3027\"* to|strong=\"H4191\"* put|strong=\"H4191\"* him|strong=\"H3027\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, and|strong=\"H3027\"* afterward the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*. So|strong=\"H1961\"* you|strong=\"H3605\"* shall|strong=\"H5971\"* remove|strong=\"H1197\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* from|strong=\"H3027\"* among|strong=\"H7130\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "If|strong=\"H3588\"* there|strong=\"H5927\"* arises|strong=\"H6965\"* a|strong=\"H3068\"* matter|strong=\"H1697\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3588\"* you|strong=\"H3588\"* in|strong=\"H3068\"* judgment|strong=\"H4941\"*, between|strong=\"H4941\"* blood|strong=\"H1818\"* and|strong=\"H6965\"* blood|strong=\"H1818\"*, between|strong=\"H4941\"* plea|strong=\"H1779\"* and|strong=\"H6965\"* plea|strong=\"H1779\"*, and|strong=\"H6965\"* between|strong=\"H4941\"* stroke|strong=\"H5061\"* and|strong=\"H6965\"* stroke|strong=\"H5061\"*, being|strong=\"H3068\"* matters|strong=\"H1697\"* of|strong=\"H3068\"* controversy|strong=\"H7379\"* within|strong=\"H4480\"* your|strong=\"H3068\"* gates|strong=\"H8179\"*, then|strong=\"H6965\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* arise|strong=\"H6965\"*, and|strong=\"H6965\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3588\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3117\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3117\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H3117\"* Levites|strong=\"H3881\"* and|strong=\"H3117\"* to|strong=\"H1961\"* the|strong=\"H3117\"* judge|strong=\"H8199\"* who|strong=\"H3548\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3548\"* inquire|strong=\"H1875\"*, and|strong=\"H3117\"* they|strong=\"H1992\"* shall|strong=\"H3548\"* give|strong=\"H5046\"* you|strong=\"H3117\"* the|strong=\"H3117\"* verdict|strong=\"H1697\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* decisions of|strong=\"H3068\"* the|strong=\"H3605\"* verdict|strong=\"H1697\"* which|strong=\"H1931\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* give|strong=\"H8104\"* you|strong=\"H3605\"* from|strong=\"H4480\"* that|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* chooses. You|strong=\"H3605\"* shall|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* teach|strong=\"H3384\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "According|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* decisions|strong=\"H4941\"* of|strong=\"H1697\"* the|strong=\"H5921\"* law|strong=\"H8451\"* which|strong=\"H1697\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* teach|strong=\"H3384\"* you|strong=\"H5921\"*, and|strong=\"H4941\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* judgment|strong=\"H4941\"* which|strong=\"H1697\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* shall|strong=\"H3808\"* do|strong=\"H6213\"*. You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sentence|strong=\"H4941\"* which|strong=\"H1697\"* they|strong=\"H3808\"* announce|strong=\"H5046\"* to|strong=\"H6213\"* you|strong=\"H5921\"*, to|strong=\"H6213\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, nor|strong=\"H3808\"* to|strong=\"H6213\"* the|strong=\"H5921\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* man|strong=\"H4191\"* who|strong=\"H1931\"* does|strong=\"H6213\"* presumptuously|strong=\"H2087\"* in|strong=\"H3478\"* not|strong=\"H1115\"* listening|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* priest|strong=\"H3548\"* who|strong=\"H1931\"* stands|strong=\"H5975\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* there|strong=\"H8033\"* before Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, or|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* judge|strong=\"H8199\"*, even|strong=\"H6213\"* that|strong=\"H8085\"* man|strong=\"H4191\"* shall|strong=\"H3548\"* die|strong=\"H4191\"*. You|strong=\"H6213\"* shall|strong=\"H3548\"* put|strong=\"H4191\"* away|strong=\"H1197\"* the|strong=\"H8085\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* hear|strong=\"H8085\"* and|strong=\"H5971\"* fear|strong=\"H3372\"*, and|strong=\"H5971\"* do|strong=\"H3605\"* no|strong=\"H3808\"* more|strong=\"H5750\"* presumptuously|strong=\"H2102\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H3423\"* to|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* say, “I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* me|strong=\"H5414\"*, like|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* me|strong=\"H5414\"*,”" + }, + { + "verseNum": 15, + "text": "you|strong=\"H5414\"* shall|strong=\"H3068\"* surely|strong=\"H5414\"* set|strong=\"H7760\"* him|strong=\"H5414\"* whom Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* chooses as|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* yourselves|strong=\"H3068\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H7760\"* as|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H3808\"* from|strong=\"H5921\"* among|strong=\"H7130\"* your|strong=\"H3068\"* brothers. You|strong=\"H5414\"* may|strong=\"H3201\"* not|strong=\"H3808\"* put|strong=\"H5414\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, who|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* your|strong=\"H3068\"* brother." + }, + { + "verseNum": 16, + "text": "Only|strong=\"H7535\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* multiply|strong=\"H7235\"* horses|strong=\"H5483\"* to|strong=\"H7725\"* himself|strong=\"H3068\"*, nor|strong=\"H3808\"* cause|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"*, to|strong=\"H7725\"* the|strong=\"H3068\"* end|strong=\"H4616\"* that|strong=\"H5971\"* he|strong=\"H3068\"* may|strong=\"H3068\"* multiply|strong=\"H7235\"* horses|strong=\"H5483\"*; because|strong=\"H4616\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said to|strong=\"H7725\"* you|strong=\"H7725\"*, “You|strong=\"H7725\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H5971\"* way|strong=\"H1870\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* multiply|strong=\"H7235\"* wives to|strong=\"H3824\"* himself|strong=\"H3824\"*, that|strong=\"H3808\"* his|strong=\"H5493\"* heart|strong=\"H3824\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"*. He|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* greatly|strong=\"H3966\"* multiply|strong=\"H7235\"* to|strong=\"H3824\"* himself|strong=\"H3824\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H5921\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H3427\"* his|strong=\"H6440\"* kingdom|strong=\"H4467\"*, that|strong=\"H3548\"* he|strong=\"H5921\"* shall|strong=\"H3548\"* write|strong=\"H3789\"* himself|strong=\"H6440\"* a|strong=\"H3068\"* copy|strong=\"H4932\"* of|strong=\"H3427\"* this|strong=\"H2063\"* law|strong=\"H8451\"* in|strong=\"H3427\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, out|strong=\"H5921\"* of|strong=\"H3427\"* that|strong=\"H3548\"* which|strong=\"H3548\"* is|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H7121\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* from|strong=\"H3117\"* it|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, that|strong=\"H3605\"* he|strong=\"H3117\"* may|strong=\"H1961\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"* and|strong=\"H3068\"* these|strong=\"H2063\"* statutes|strong=\"H2706\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*;" + }, + { + "verseNum": 20, + "text": "that|strong=\"H3117\"* his|strong=\"H5921\"* heart|strong=\"H3824\"* not|strong=\"H1115\"* be|strong=\"H1121\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* above|strong=\"H5921\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* he|strong=\"H1931\"* not|strong=\"H1115\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* to|strong=\"H3478\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, or|strong=\"H3117\"* to|strong=\"H3478\"* the|strong=\"H5921\"* left|strong=\"H8040\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* end|strong=\"H4616\"* that|strong=\"H3117\"* he|strong=\"H1931\"* may|strong=\"H3478\"* prolong his|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* his|strong=\"H5921\"* kingdom|strong=\"H4467\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H5921\"* children|strong=\"H1121\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*—all|strong=\"H3605\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*—shall|strong=\"H3548\"* have|strong=\"H1961\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* nor|strong=\"H3808\"* inheritance|strong=\"H5159\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* shall|strong=\"H3548\"* eat the|strong=\"H3605\"* offerings|strong=\"H3478\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* made|strong=\"H1961\"* by|strong=\"H3068\"* fire and|strong=\"H3478\"* his|strong=\"H3605\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* among|strong=\"H7130\"* their|strong=\"H3068\"* brothers. Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H1961\"* he|strong=\"H1931\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2088\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H5414\"* priests|strong=\"H3548\"*’ due|strong=\"H4941\"* from|strong=\"H1961\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, from|strong=\"H1961\"* those|strong=\"H2088\"* who|strong=\"H5971\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, whether it|strong=\"H5414\"* be|strong=\"H1961\"* ox|strong=\"H7794\"* or|strong=\"H7794\"* sheep|strong=\"H7716\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H5414\"* priest|strong=\"H3548\"*: the|strong=\"H5414\"* shoulder|strong=\"H2220\"*, the|strong=\"H5414\"* two|strong=\"H2088\"* cheeks|strong=\"H3895\"*, and|strong=\"H4941\"* the|strong=\"H5414\"* inner parts." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* shall|strong=\"H8492\"* give|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5414\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H6629\"* your|strong=\"H5414\"* grain|strong=\"H1715\"*, of|strong=\"H6629\"* your|strong=\"H5414\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H6629\"* of|strong=\"H6629\"* your|strong=\"H5414\"* oil|strong=\"H3323\"*, and|strong=\"H6629\"* the|strong=\"H5414\"* first|strong=\"H7225\"* of|strong=\"H6629\"* the|strong=\"H5414\"* fleece|strong=\"H1488\"* of|strong=\"H6629\"* your|strong=\"H5414\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen him|strong=\"H5975\"* out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, him|strong=\"H5975\"* and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"* comes from|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* out|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* where|strong=\"H8033\"* he|strong=\"H1931\"* lives|strong=\"H5315\"*, and|strong=\"H3478\"* comes with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H3068\"* his|strong=\"H3605\"* soul|strong=\"H5315\"* to|strong=\"H3478\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* choose," + }, + { + "verseNum": 7, + "text": "then|strong=\"H5975\"* he|strong=\"H8033\"* shall|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, as|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers the|strong=\"H3605\"* Levites|strong=\"H3881\"* do|strong=\"H3068\"*, who|strong=\"H3605\"* stand|strong=\"H5975\"* there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* shall|strong=\"H4465\"* have|strong=\"H5921\"* like|strong=\"H5921\"* portions|strong=\"H2506\"* to|strong=\"H5921\"* eat, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* that|strong=\"H5921\"* which comes from|strong=\"H5921\"* the|strong=\"H5921\"* sale|strong=\"H4465\"* of|strong=\"H5921\"* his|strong=\"H5921\"* family possessions." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* come into|strong=\"H6213\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* imitate|strong=\"H6213\"* the|strong=\"H3588\"* abominations|strong=\"H8441\"* of|strong=\"H3068\"* those|strong=\"H1992\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H4672\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* with|strong=\"H5674\"* you|strong=\"H3808\"* anyone who|strong=\"H1121\"* makes his|strong=\"H3808\"* son|strong=\"H1121\"* or|strong=\"H3808\"* his|strong=\"H3808\"* daughter|strong=\"H1323\"* to|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* fire, one|strong=\"H3808\"* who|strong=\"H1121\"* uses|strong=\"H5172\"* divination|strong=\"H7081\"*, one|strong=\"H3808\"* who|strong=\"H1121\"* tells fortunes, or|strong=\"H3808\"* an|strong=\"H4672\"* enchanter|strong=\"H5172\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* sorcerer|strong=\"H3784\"*," + }, + { + "verseNum": 11, + "text": "or|strong=\"H1875\"* a|strong=\"H3068\"* charmer|strong=\"H2266\"*, or|strong=\"H1875\"* someone|strong=\"H4191\"* who|strong=\"H7592\"* consults|strong=\"H7592\"* with|strong=\"H4191\"* a|strong=\"H3068\"* familiar spirit, or|strong=\"H1875\"* a|strong=\"H3068\"* wizard|strong=\"H3049\"*, or|strong=\"H1875\"* a|strong=\"H3068\"* necromancer|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* is|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Because|strong=\"H3588\"* of|strong=\"H3068\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* drives them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5973\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* these|strong=\"H8085\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* those|strong=\"H8085\"* who|strong=\"H3068\"* practice|strong=\"H6049\"* sorcery and|strong=\"H3068\"* to|strong=\"H3068\"* diviners|strong=\"H7080\"*; but|strong=\"H3588\"* as|strong=\"H3651\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* allowed|strong=\"H5414\"* you|strong=\"H3588\"* so|strong=\"H3651\"* to|strong=\"H3068\"* do|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* you|strong=\"H3644\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* from|strong=\"H8085\"* among|strong=\"H7130\"* you|strong=\"H3644\"*, of|strong=\"H3068\"* your|strong=\"H3068\"* brothers, like|strong=\"H3644\"* me|strong=\"H6965\"*. You|strong=\"H3644\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H7130\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* according to|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H7200\"* you|strong=\"H3605\"* desired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* Horeb|strong=\"H2722\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, saying|strong=\"H6963\"*, “Let|strong=\"H3808\"* me|strong=\"H7200\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* again|strong=\"H5750\"* Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, neither|strong=\"H3808\"* let|strong=\"H3808\"* me|strong=\"H7200\"* see|strong=\"H7200\"* this|strong=\"H2063\"* great|strong=\"H1419\"* fire any|strong=\"H3605\"* more|strong=\"H3254\"*, that|strong=\"H7200\"* I|strong=\"H3117\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “They|strong=\"H3068\"* have|strong=\"H3068\"* well|strong=\"H3190\"* said|strong=\"H1696\"* that|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1697\"* raise|strong=\"H6965\"* them|strong=\"H5414\"* up|strong=\"H6965\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* from|strong=\"H6965\"* among|strong=\"H7130\"* their|strong=\"H3605\"* brothers, like|strong=\"H3644\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1697\"* put|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H1696\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H6965\"* he|strong=\"H3605\"* shall|strong=\"H6310\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* shall|strong=\"H6310\"* command|strong=\"H6680\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H8034\"* shall|strong=\"H3808\"* happen|strong=\"H1961\"*, that|strong=\"H8085\"* whoever will|strong=\"H1961\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* my|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3808\"* shall|strong=\"H3808\"* speak|strong=\"H1696\"* in|strong=\"H8085\"* my|strong=\"H8085\"* name|strong=\"H8034\"*, I|strong=\"H1697\"* will|strong=\"H1961\"* require|strong=\"H1875\"* it|strong=\"H8034\"* of|strong=\"H1697\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* the|strong=\"H6680\"* prophet|strong=\"H5030\"* who|strong=\"H1931\"* speaks|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* presumptuously|strong=\"H2102\"* in|strong=\"H4191\"* my|strong=\"H1696\"* name|strong=\"H8034\"*, which|strong=\"H1931\"* I|strong=\"H1697\"* have|strong=\"H5030\"* not|strong=\"H3808\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"*, or|strong=\"H3808\"* who|strong=\"H1931\"* speaks|strong=\"H1696\"* in|strong=\"H4191\"* the|strong=\"H6680\"* name|strong=\"H8034\"* of|strong=\"H1697\"* other gods, that|strong=\"H1931\"* same|strong=\"H1931\"* prophet|strong=\"H5030\"* shall|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* may|strong=\"H3068\"* say|strong=\"H1696\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, “How|strong=\"H3588\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* know|strong=\"H3045\"* the|strong=\"H3588\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* speaks|strong=\"H1696\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, if|strong=\"H1961\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* doesn’t follow|strong=\"H1961\"*, nor|strong=\"H3808\"* happen|strong=\"H1961\"*, that|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* thing|strong=\"H1697\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*. The|strong=\"H3068\"* prophet|strong=\"H5030\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H1931\"* presumptuously|strong=\"H2087\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* afraid|strong=\"H1481\"* of|strong=\"H3068\"* him|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* cuts|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* whose|strong=\"H1471\"* land Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* succeed them|strong=\"H5414\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* cities|strong=\"H5892\"* and|strong=\"H3068\"* in|strong=\"H3427\"* their|strong=\"H3068\"* houses|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "you|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* apart three|strong=\"H7969\"* cities|strong=\"H5892\"* for|strong=\"H3068\"* yourselves|strong=\"H8432\"* in|strong=\"H3068\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* shall|strong=\"H3068\"* prepare|strong=\"H3559\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* divide|strong=\"H5157\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H1366\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* causes you|strong=\"H3605\"* to|strong=\"H3068\"* inherit|strong=\"H5157\"* into|strong=\"H1961\"* three|strong=\"H8027\"* parts|strong=\"H8027\"*, that|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"* slayer|strong=\"H7523\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5221\"* case|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5221\"* man|strong=\"H2088\"* slayer|strong=\"H7523\"* who|strong=\"H1931\"* shall|strong=\"H7523\"* flee|strong=\"H5127\"* there|strong=\"H8033\"* and|strong=\"H8033\"* live|strong=\"H2425\"*: Whoever kills|strong=\"H5221\"* his|strong=\"H5221\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"*, and|strong=\"H8033\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* in|strong=\"H1697\"* time|strong=\"H8543\"* past|strong=\"H8032\"*—" + }, + { + "verseNum": 5, + "text": "as|strong=\"H1270\"* when|strong=\"H4480\"* a|strong=\"H3068\"* man|strong=\"H4191\"* goes into|strong=\"H3027\"* the|strong=\"H4480\"* forest|strong=\"H3293\"* with|strong=\"H3027\"* his|strong=\"H3027\"* neighbor|strong=\"H7453\"* to|strong=\"H4191\"* chop wood|strong=\"H6086\"* and|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* swings|strong=\"H5080\"* the|strong=\"H4480\"* ax to|strong=\"H4191\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H4480\"* tree|strong=\"H6086\"*, and|strong=\"H3027\"* the|strong=\"H4480\"* head|strong=\"H1270\"* slips|strong=\"H5394\"* from|strong=\"H4480\"* the|strong=\"H4480\"* handle|strong=\"H6086\"* and|strong=\"H3027\"* hits his|strong=\"H3027\"* neighbor|strong=\"H7453\"* so|strong=\"H4480\"* that|strong=\"H1931\"* he|strong=\"H1931\"* dies|strong=\"H4191\"*—he|strong=\"H1931\"* shall|strong=\"H5892\"* flee|strong=\"H5127\"* to|strong=\"H4191\"* one|strong=\"H4480\"* of|strong=\"H3027\"* these|strong=\"H1931\"* cities|strong=\"H5892\"* and|strong=\"H3027\"* live|strong=\"H2425\"*." + }, + { + "verseNum": 6, + "text": "Otherwise|strong=\"H6435\"*, the|strong=\"H3588\"* avenger|strong=\"H1350\"* of|strong=\"H1870\"* blood|strong=\"H1818\"* might|strong=\"H6435\"* pursue|strong=\"H7291\"* the|strong=\"H3588\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* while|strong=\"H1931\"* hot|strong=\"H3179\"* anger|strong=\"H3824\"* is|strong=\"H1931\"* in|strong=\"H5315\"* his|strong=\"H5221\"* heart|strong=\"H3824\"* and|strong=\"H4941\"* overtake|strong=\"H5381\"* him|strong=\"H5221\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* is|strong=\"H1931\"* long|strong=\"H7235\"*, and|strong=\"H4941\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* mortally|strong=\"H5315\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* not|strong=\"H3808\"* worthy|strong=\"H4941\"* of|strong=\"H1870\"* death|strong=\"H4194\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* in|strong=\"H5315\"* time|strong=\"H8543\"* past|strong=\"H8032\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* command|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H5921\"* set|strong=\"H6680\"* apart three|strong=\"H7969\"* cities|strong=\"H5892\"* for|strong=\"H5921\"* yourselves|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "If Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* enlarges|strong=\"H7337\"* your|strong=\"H3068\"* border|strong=\"H1366\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1696\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* which|strong=\"H3068\"* he|strong=\"H3068\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* give|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* fathers;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* if|strong=\"H3588\"* you|strong=\"H3588\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* to|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* ever|strong=\"H3117\"* in|strong=\"H5921\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, then|strong=\"H3254\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* add|strong=\"H3254\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* more|strong=\"H3254\"* for|strong=\"H3588\"* yourselves|strong=\"H3605\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3068\"* these|strong=\"H2063\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H5414\"* is|strong=\"H3068\"* so|strong=\"H1961\"* that|strong=\"H3068\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* shed|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H7130\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5921\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*, leaving blood|strong=\"H1818\"* guilt|strong=\"H1818\"* on|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* any|strong=\"H5221\"* man|strong=\"H5315\"* hates|strong=\"H8130\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*, lies|strong=\"H1961\"* in|strong=\"H5921\"* wait for|strong=\"H3588\"* him|strong=\"H5921\"*, rises|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, strikes|strong=\"H5221\"* him|strong=\"H5921\"* mortally|strong=\"H4191\"* so|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* dies|strong=\"H4191\"*, and|strong=\"H6965\"* he|strong=\"H3588\"* flees|strong=\"H5127\"* into|strong=\"H5921\"* one|strong=\"H1961\"* of|strong=\"H5892\"* these|strong=\"H6965\"* cities|strong=\"H5892\"*;" + }, + { + "verseNum": 12, + "text": "then|strong=\"H3947\"* the|strong=\"H5414\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* his|strong=\"H5414\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* send|strong=\"H7971\"* and|strong=\"H7971\"* bring|strong=\"H3947\"* him|strong=\"H5414\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"*, that|strong=\"H5414\"* he|strong=\"H8033\"* may|strong=\"H5414\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "Your|strong=\"H5921\"* eye|strong=\"H5869\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* pity|strong=\"H2347\"* him|strong=\"H5921\"*, but|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* purge|strong=\"H1197\"* the|strong=\"H5921\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* from|strong=\"H5921\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* it|strong=\"H5921\"* may|strong=\"H3478\"* go|strong=\"H3478\"* well|strong=\"H2896\"* with|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* remove|strong=\"H5253\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*’s landmark|strong=\"H1366\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* of|strong=\"H3068\"* old|strong=\"H7223\"* time|strong=\"H7223\"* have|strong=\"H3068\"* set|strong=\"H5414\"*, in|strong=\"H3068\"* your|strong=\"H3068\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* inherit|strong=\"H5157\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* land|strong=\"H5159\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 15, + "text": "One|strong=\"H3605\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"* for|strong=\"H5921\"* any|strong=\"H3605\"* iniquity|strong=\"H5771\"*, or|strong=\"H3808\"* for|strong=\"H5921\"* any|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3605\"* sins|strong=\"H2403\"*. At|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* two|strong=\"H8147\"* witnesses|strong=\"H5707\"*, or|strong=\"H3808\"* at|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* three|strong=\"H7969\"* witnesses|strong=\"H5707\"*, shall|strong=\"H3808\"* a|strong=\"H3068\"* matter|strong=\"H1697\"* be|strong=\"H3808\"* established|strong=\"H6965\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* an|strong=\"H6965\"* unrighteous|strong=\"H2555\"* witness|strong=\"H5707\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H6965\"* any|strong=\"H3588\"* man|strong=\"H6030\"* to|strong=\"H6965\"* testify|strong=\"H6030\"* against|strong=\"H6965\"* him|strong=\"H6030\"* of|strong=\"H2555\"* wrongdoing|strong=\"H5627\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1961\"* both|strong=\"H8147\"* the|strong=\"H6440\"* men|strong=\"H1992\"*, between|strong=\"H8199\"* whom|strong=\"H1992\"* the|strong=\"H6440\"* controversy|strong=\"H7379\"* is|strong=\"H3068\"*, shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H6440\"* judges|strong=\"H8199\"* who|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H6030\"* the|strong=\"H1875\"* judges|strong=\"H8199\"* shall|strong=\"H8199\"* make|strong=\"H6030\"* diligent|strong=\"H3190\"* inquisition|strong=\"H1875\"*; and|strong=\"H6030\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H1875\"* witness|strong=\"H5707\"* is|strong=\"H2009\"* a|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"*, and|strong=\"H6030\"* has|strong=\"H2009\"* testified|strong=\"H6030\"* falsely|strong=\"H8267\"* against his|strong=\"H8199\"* brother," + }, + { + "verseNum": 19, + "text": "then|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* do|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H6213\"* thought|strong=\"H2161\"* to|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6213\"* brother. So|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H7451\"* remove|strong=\"H1197\"* the|strong=\"H6213\"* evil|strong=\"H7451\"* from|strong=\"H7451\"* among|strong=\"H7130\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Those|strong=\"H8085\"* who|strong=\"H7604\"* remain|strong=\"H7604\"* shall|strong=\"H3808\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* fear|strong=\"H3372\"*, and|strong=\"H8085\"* will|strong=\"H1697\"* never|strong=\"H3808\"* again|strong=\"H5750\"* commit|strong=\"H6213\"* any|strong=\"H5750\"* such|strong=\"H2088\"* evil|strong=\"H7451\"* among|strong=\"H7130\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "Your|strong=\"H3808\"* eyes|strong=\"H5869\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* pity|strong=\"H2347\"*: life|strong=\"H5315\"* for|strong=\"H3027\"* life|strong=\"H5315\"*, eye|strong=\"H5869\"* for|strong=\"H3027\"* eye|strong=\"H5869\"*, tooth|strong=\"H8127\"* for|strong=\"H3027\"* tooth|strong=\"H8127\"*, hand|strong=\"H3027\"* for|strong=\"H3027\"* hand|strong=\"H3027\"*, foot|strong=\"H7272\"* for|strong=\"H3027\"* foot|strong=\"H7272\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H3068\"* enemies, and|strong=\"H3068\"* see|strong=\"H7200\"* horses|strong=\"H5483\"*, chariots|strong=\"H7393\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* people|strong=\"H5971\"* more|strong=\"H4480\"* numerous|strong=\"H7227\"* than|strong=\"H4480\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H5971\"* brought|strong=\"H3318\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H7126\"* shall|strong=\"H3548\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H7126\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H1696\"* the|strong=\"H7126\"* battle|strong=\"H4421\"*, that|strong=\"H5971\"* the|strong=\"H7126\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* approach|strong=\"H7126\"* and|strong=\"H3548\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7126\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* shall|strong=\"H3478\"* tell|strong=\"H8085\"* them|strong=\"H5921\"*, “Hear|strong=\"H8085\"*, Israel|strong=\"H3478\"*, you|strong=\"H6440\"* draw|strong=\"H3478\"* near|strong=\"H7131\"* today|strong=\"H3117\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H5921\"* enemies. Don’t let your|strong=\"H5921\"* heart|strong=\"H3824\"* faint|strong=\"H7401\"*! Don’t be|strong=\"H3478\"* afraid|strong=\"H3372\"*, nor|strong=\"H3372\"* tremble|strong=\"H6206\"*, neither be|strong=\"H3478\"* scared of|strong=\"H3117\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H3588\"* who|strong=\"H3068\"* goes|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, to|strong=\"H1980\"* fight|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"* against|strong=\"H5973\"* your|strong=\"H3068\"* enemies, to|strong=\"H1980\"* save|strong=\"H3467\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* officers|strong=\"H7860\"* shall|strong=\"H5971\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H7725\"* people|strong=\"H5971\"*, saying|strong=\"H1696\"*, “What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* built|strong=\"H1129\"* a|strong=\"H3068\"* new|strong=\"H2319\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* dedicated|strong=\"H2596\"* it|strong=\"H7725\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H7725\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* dedicate|strong=\"H2596\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 6, + "text": "What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* planted|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* used its|strong=\"H7725\"* fruit|strong=\"H2490\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H7725\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* use|strong=\"H2490\"* its|strong=\"H7725\"* fruit|strong=\"H2490\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"H4310\"* man|strong=\"H4191\"* is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* has|strong=\"H4310\"* pledged to|strong=\"H7725\"* be|strong=\"H4191\"* married|strong=\"H3947\"* to|strong=\"H7725\"* a|strong=\"H3068\"* wife, and|strong=\"H7725\"* has|strong=\"H4310\"* not|strong=\"H3808\"* taken|strong=\"H3947\"* her|strong=\"H3947\"*? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3947\"* house|strong=\"H1004\"*, lest|strong=\"H6435\"* he|strong=\"H1004\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H3947\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* another|strong=\"H3808\"* man|strong=\"H4191\"* take|strong=\"H3947\"* her|strong=\"H3947\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H7725\"* officers|strong=\"H7860\"* shall|strong=\"H5971\"* speak|strong=\"H1696\"* further|strong=\"H3254\"* to|strong=\"H1696\"* the|strong=\"H7725\"* people|strong=\"H5971\"*, and|strong=\"H7725\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* say|strong=\"H1696\"*, “What|strong=\"H4310\"* man is|strong=\"H4310\"* there|strong=\"H7725\"* who|strong=\"H4310\"* is|strong=\"H4310\"* fearful|strong=\"H3373\"* and|strong=\"H7725\"* faint-hearted? Let|strong=\"H3808\"* him|strong=\"H7725\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H1696\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, lest his|strong=\"H7725\"* brother’s heart|strong=\"H3824\"* melt|strong=\"H4549\"* as|strong=\"H3824\"* his|strong=\"H7725\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H6485\"* officers|strong=\"H7860\"* have|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6485\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* shall|strong=\"H5971\"* appoint|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* armies|strong=\"H6635\"* at|strong=\"H1961\"* the|strong=\"H6485\"* head|strong=\"H7218\"* of|strong=\"H8269\"* the|strong=\"H6485\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H5921\"* a|strong=\"H3068\"* city|strong=\"H5892\"* to|strong=\"H5921\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H7121\"*, then|strong=\"H7126\"* proclaim|strong=\"H7121\"* peace|strong=\"H7965\"* to|strong=\"H5921\"* it|strong=\"H7121\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* it|strong=\"H1961\"* gives you|strong=\"H3605\"* answer|strong=\"H6030\"* of|strong=\"H5971\"* peace|strong=\"H7965\"* and|strong=\"H6030\"* opens|strong=\"H6605\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, then|strong=\"H6030\"* it|strong=\"H1961\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* found|strong=\"H4672\"* therein shall|strong=\"H5971\"* become|strong=\"H1961\"* forced|strong=\"H4522\"* laborers|strong=\"H4522\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, and|strong=\"H6030\"* shall|strong=\"H5971\"* serve|strong=\"H5647\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "If it|strong=\"H5921\"* will|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* peace|strong=\"H7999\"* with|strong=\"H5973\"* you|strong=\"H5921\"*, but|strong=\"H3808\"* will|strong=\"H3808\"* make|strong=\"H6213\"* war|strong=\"H4421\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H6213\"* you|strong=\"H5921\"* shall|strong=\"H3808\"* besiege|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H2719\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* male|strong=\"H2138\"* of|strong=\"H3068\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H7535\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, the|strong=\"H3605\"* livestock, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* plunder|strong=\"H7998\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H1961\"* for|strong=\"H3068\"* plunder|strong=\"H7998\"* for|strong=\"H3068\"* yourself|strong=\"H5414\"*. You|strong=\"H5414\"* may|strong=\"H1961\"* use|strong=\"H1961\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Thus|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H1471\"* do|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H1471\"* are|strong=\"H1471\"* very|strong=\"H3966\"* far|strong=\"H7350\"* off|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H3605\"*, which|strong=\"H1471\"* are|strong=\"H1471\"* not|strong=\"H3808\"* of|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* these|strong=\"H6213\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7535\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* these|strong=\"H3605\"* peoples|strong=\"H5971\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H3068\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, you|strong=\"H5414\"* shall|strong=\"H3068\"* save|strong=\"H2421\"* alive|strong=\"H2421\"* nothing|strong=\"H3808\"* that|strong=\"H5971\"* breathes|strong=\"H5397\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H6680\"*: the|strong=\"H3588\"* Hittite|strong=\"H2850\"*, the|strong=\"H3588\"* Amorite, the|strong=\"H3588\"* Canaanite|strong=\"H3669\"*, the|strong=\"H3588\"* Perizzite|strong=\"H6522\"*, the|strong=\"H3588\"* Hivite|strong=\"H2340\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 18, + "text": "that|strong=\"H3605\"* they|strong=\"H3068\"* not|strong=\"H3808\"* teach|strong=\"H3925\"* you|strong=\"H3605\"* to|strong=\"H3068\"* follow|strong=\"H6213\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H6213\"* their|strong=\"H3605\"* gods; so|strong=\"H4616\"* would|strong=\"H3068\"* you|strong=\"H3605\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* besiege|strong=\"H6696\"* a|strong=\"H3068\"* city|strong=\"H5892\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"*, in|strong=\"H5921\"* making|strong=\"H3772\"* war|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* take|strong=\"H8610\"* it|strong=\"H5921\"*, you|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* its|strong=\"H5921\"* trees|strong=\"H6086\"* by|strong=\"H5921\"* wielding|strong=\"H8610\"* an|strong=\"H3772\"* ax against|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3117\"* eat|strong=\"H3898\"* of|strong=\"H3117\"* them|strong=\"H5921\"*. You|strong=\"H3588\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* cut|strong=\"H3772\"* them|strong=\"H5921\"* down|strong=\"H3772\"*, for|strong=\"H3588\"* is|strong=\"H3117\"* the|strong=\"H6440\"* tree|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H6440\"* field|strong=\"H7704\"* man|strong=\"H6440\"*, that|strong=\"H3588\"* it|strong=\"H5921\"* should|strong=\"H3588\"* be|strong=\"H3808\"* besieged|strong=\"H6696\"* by|strong=\"H5921\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 20, + "text": "Only|strong=\"H7535\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* that|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"* are|strong=\"H5892\"* not|strong=\"H3808\"* trees|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, you|strong=\"H3588\"* shall|strong=\"H5892\"* destroy|strong=\"H7843\"* and|strong=\"H6086\"* cut|strong=\"H3772\"* them|strong=\"H5921\"* down|strong=\"H3381\"*. You|strong=\"H3588\"* shall|strong=\"H5892\"* build|strong=\"H1129\"* bulwarks|strong=\"H4692\"* against|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* that|strong=\"H3588\"* makes|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* it|strong=\"H1931\"* falls|strong=\"H3381\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3588\"* someone|strong=\"H4310\"* is|strong=\"H3068\"* found|strong=\"H4672\"* slain|strong=\"H2491\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H7704\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*, lying|strong=\"H5307\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* isn’t known|strong=\"H3045\"* who|strong=\"H4310\"* has|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "then|strong=\"H3318\"* your|strong=\"H3318\"* elders|strong=\"H2205\"* and|strong=\"H5892\"* your|strong=\"H3318\"* judges|strong=\"H8199\"* shall|strong=\"H5892\"* come|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H5892\"* they|strong=\"H5892\"* shall|strong=\"H5892\"* measure|strong=\"H4058\"* to|strong=\"H3318\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H5892\"* around|strong=\"H5439\"* him|strong=\"H3318\"* who|strong=\"H2491\"* is|strong=\"H5892\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1931\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* that|strong=\"H1931\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"* which|strong=\"H1931\"* is|strong=\"H1931\"* nearest|strong=\"H7138\"* to|strong=\"H1961\"* the|strong=\"H3947\"* slain|strong=\"H2491\"* man|strong=\"H2205\"* shall|strong=\"H5892\"* take|strong=\"H3947\"* a|strong=\"H3068\"* heifer|strong=\"H5697\"* of|strong=\"H5892\"* the|strong=\"H3947\"* herd|strong=\"H1241\"*, which|strong=\"H1931\"* hasn’t been|strong=\"H1961\"* worked|strong=\"H5647\"* with|strong=\"H5892\"* and|strong=\"H5892\"* which|strong=\"H1931\"* has|strong=\"H1961\"* not|strong=\"H3808\"* drawn|strong=\"H4900\"* in|strong=\"H5892\"* the|strong=\"H3947\"* yoke|strong=\"H5923\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5647\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* that|strong=\"H1931\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* bring|strong=\"H3381\"* the|strong=\"H5647\"* heifer|strong=\"H5697\"* down|strong=\"H3381\"* to|strong=\"H3381\"* a|strong=\"H3068\"* valley|strong=\"H5158\"* with|strong=\"H3381\"* running water, which|strong=\"H1931\"* is|strong=\"H1931\"* neither|strong=\"H3808\"* plowed|strong=\"H5647\"* nor|strong=\"H3808\"* sown|strong=\"H2232\"*, and|strong=\"H5892\"* shall|strong=\"H5892\"* break|strong=\"H6202\"* the|strong=\"H5647\"* heifer|strong=\"H5697\"*’s neck|strong=\"H6202\"* there|strong=\"H8033\"* in|strong=\"H5892\"* the|strong=\"H5647\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* near|strong=\"H5066\"*, for|strong=\"H3588\"* them|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* chosen to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*; and|strong=\"H1121\"* according|strong=\"H5921\"* to|strong=\"H3068\"* their|strong=\"H3605\"* word|strong=\"H6310\"* shall|strong=\"H3548\"* every|strong=\"H3605\"* controversy|strong=\"H7379\"* and|strong=\"H1121\"* every|strong=\"H3605\"* assault|strong=\"H5061\"* be|strong=\"H1961\"* decided|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3027\"* that|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1931\"* is|strong=\"H1931\"* nearest|strong=\"H7138\"* to|strong=\"H5921\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* man|strong=\"H2205\"* shall|strong=\"H5892\"* wash|strong=\"H7364\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H3605\"* heifer|strong=\"H5697\"* whose|strong=\"H3605\"* neck|strong=\"H6202\"* was|strong=\"H1931\"* broken|strong=\"H6202\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* shall|strong=\"H5869\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* say, “Our|strong=\"H7200\"* hands|strong=\"H3027\"* have|strong=\"H5869\"* not|strong=\"H3808\"* shed|strong=\"H8210\"* this|strong=\"H2088\"* blood|strong=\"H1818\"*, neither|strong=\"H3808\"* have|strong=\"H5869\"* our|strong=\"H7200\"* eyes|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "Forgive|strong=\"H3722\"*, Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, whom|strong=\"H1992\"* you|strong=\"H5414\"* have|strong=\"H3068\"* redeemed|strong=\"H6299\"*, and|strong=\"H3478\"* don’t allow|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* among|strong=\"H7130\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.” The|strong=\"H5414\"* blood|strong=\"H1818\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* forgiven|strong=\"H3722\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* put|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H3588\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* from|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* you|strong=\"H3588\"* carry|strong=\"H3318\"* them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H7200\"* see|strong=\"H7200\"* among|strong=\"H3303\"* the|strong=\"H7200\"* captives|strong=\"H7633\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* woman, and|strong=\"H7200\"* you|strong=\"H3947\"* are attracted to|strong=\"H7200\"* her|strong=\"H3947\"*, and|strong=\"H7200\"* desire|strong=\"H2836\"* to|strong=\"H7200\"* take|strong=\"H3947\"* her|strong=\"H3947\"* as|strong=\"H3303\"* your|strong=\"H3947\"* wife," + }, + { + "verseNum": 12, + "text": "then|strong=\"H6213\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* bring|strong=\"H6213\"* her|strong=\"H6213\"* home|strong=\"H1004\"* to|strong=\"H6213\"* your|strong=\"H6213\"* house|strong=\"H1004\"*. She shall|strong=\"H1004\"* shave|strong=\"H1548\"* her|strong=\"H6213\"* head|strong=\"H7218\"* and|strong=\"H1004\"* trim|strong=\"H6213\"* her|strong=\"H6213\"* nails|strong=\"H6856\"*." + }, + { + "verseNum": 13, + "text": "She|strong=\"H5921\"* shall|strong=\"H1004\"* take|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H5921\"* clothing|strong=\"H8071\"* of|strong=\"H1004\"* her|strong=\"H5493\"* captivity|strong=\"H7633\"*, and|strong=\"H3117\"* shall|strong=\"H1004\"* remain|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3117\"* bewail|strong=\"H1058\"* her|strong=\"H5493\"* father and|strong=\"H3117\"* her|strong=\"H5493\"* mother a|strong=\"H3068\"* full|strong=\"H3117\"* month|strong=\"H3391\"*. After|strong=\"H5921\"* that|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H1004\"* go|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H1961\"* her|strong=\"H5493\"* and|strong=\"H3117\"* be|strong=\"H1961\"* her|strong=\"H5493\"* husband|strong=\"H1167\"*, and|strong=\"H3117\"* she|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* your|strong=\"H5921\"* wife." + }, + { + "verseNum": 14, + "text": "It|strong=\"H1961\"* shall|strong=\"H5315\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H7971\"* have|strong=\"H1961\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5315\"* her|strong=\"H7971\"*, then|strong=\"H1961\"* you|strong=\"H7971\"* shall|strong=\"H5315\"* let|strong=\"H7971\"* her|strong=\"H7971\"* go|strong=\"H7971\"* where|strong=\"H8478\"* she|strong=\"H3808\"* desires|strong=\"H2654\"*; but|strong=\"H3808\"* you|strong=\"H7971\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* sell|strong=\"H4376\"* her|strong=\"H7971\"* at|strong=\"H1961\"* all|strong=\"H7971\"* for|strong=\"H8478\"* money|strong=\"H3701\"*. You|strong=\"H7971\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* deal with|strong=\"H5315\"* her|strong=\"H7971\"* as|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, because|strong=\"H8478\"* you|strong=\"H7971\"* have|strong=\"H1961\"* humbled|strong=\"H6031\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* has|strong=\"H1961\"* two|strong=\"H8147\"* wives, the|strong=\"H3588\"* one|strong=\"H1121\"* beloved and|strong=\"H1121\"* the|strong=\"H3588\"* other|strong=\"H8147\"* hated|strong=\"H8130\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* have|strong=\"H1961\"* borne|strong=\"H3205\"* him|strong=\"H3205\"* children|strong=\"H1121\"*, both|strong=\"H8147\"* the|strong=\"H3588\"* beloved and|strong=\"H1121\"* the|strong=\"H3588\"* hated|strong=\"H8130\"*, and|strong=\"H1121\"* if|strong=\"H3588\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* is|strong=\"H1121\"* hers who|strong=\"H1121\"* was|strong=\"H1961\"* hated|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* it|strong=\"H5921\"* shall|strong=\"H1121\"* be|strong=\"H1961\"*, in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* causes his|strong=\"H6440\"* sons|strong=\"H1121\"* to|strong=\"H3201\"* inherit|strong=\"H5157\"* that|strong=\"H3117\"* which|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H1961\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H1961\"* not|strong=\"H3808\"* give|strong=\"H5157\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* beloved the|strong=\"H6440\"* rights of|strong=\"H1121\"* the|strong=\"H6440\"* firstborn|strong=\"H1060\"* before|strong=\"H6440\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* hated|strong=\"H8130\"*, who|strong=\"H1121\"* is|strong=\"H3117\"* the|strong=\"H6440\"* firstborn|strong=\"H1060\"*;" + }, + { + "verseNum": 17, + "text": "but|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* acknowledge|strong=\"H5234\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hated|strong=\"H8130\"*, by|strong=\"H5414\"* giving|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* double|strong=\"H8147\"* portion|strong=\"H6310\"* of|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* his|strong=\"H3605\"* strength. The|strong=\"H3605\"* right|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* is|strong=\"H1931\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* has|strong=\"H1961\"* a|strong=\"H3068\"* stubborn|strong=\"H5637\"* and|strong=\"H1121\"* rebellious|strong=\"H4784\"* son|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* not|strong=\"H3808\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H8085\"* father|strong=\"H1121\"* or|strong=\"H3808\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H8085\"* mother, and|strong=\"H1121\"* though|strong=\"H3588\"* they|strong=\"H3588\"* chasten|strong=\"H3256\"* him|strong=\"H6963\"*, will|strong=\"H1961\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1961\"*," + }, + { + "verseNum": 19, + "text": "then|strong=\"H3318\"* his|strong=\"H3318\"* father and|strong=\"H5892\"* his|strong=\"H3318\"* mother shall|strong=\"H5892\"* take|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H5892\"* him|strong=\"H3318\"* and|strong=\"H5892\"* bring|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* his|strong=\"H3318\"* city|strong=\"H5892\"* and|strong=\"H5892\"* to|strong=\"H3318\"* the|strong=\"H3318\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* his|strong=\"H3318\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5892\"* shall|strong=\"H1121\"* tell|strong=\"H8085\"* the|strong=\"H8085\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* his|strong=\"H8085\"* city|strong=\"H5892\"*, “This|strong=\"H2088\"* our|strong=\"H8085\"* son|strong=\"H1121\"* is|strong=\"H2088\"* stubborn|strong=\"H5637\"* and|strong=\"H1121\"* rebellious|strong=\"H4784\"*. He|strong=\"H2088\"* will|strong=\"H1121\"* not|strong=\"H2088\"* obey|strong=\"H8085\"* our|strong=\"H8085\"* voice|strong=\"H6963\"*. He|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* glutton|strong=\"H2151\"* and|strong=\"H1121\"* a|strong=\"H3068\"* drunkard.”" + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H5892\"* his|strong=\"H3605\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* stone|strong=\"H7275\"* him|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5892\"* stones. So|strong=\"H4191\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3605\"*. All|strong=\"H3605\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* hear|strong=\"H8085\"*, and|strong=\"H3478\"* fear|strong=\"H3372\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* has|strong=\"H1961\"* committed|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2399\"* worthy|strong=\"H4941\"* of|strong=\"H6086\"* death|strong=\"H4194\"*, and|strong=\"H4941\"* he|strong=\"H3588\"* is|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4194\"*, and|strong=\"H4941\"* you|strong=\"H3588\"* hang|strong=\"H8518\"* him|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"*," + }, + { + "verseNum": 23, + "text": "his|strong=\"H5414\"* body|strong=\"H5038\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* remain|strong=\"H3885\"* all|strong=\"H5414\"* night|strong=\"H3885\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tree|strong=\"H6086\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* bury|strong=\"H6912\"* him|strong=\"H5414\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* hanged|strong=\"H8518\"* is|strong=\"H3068\"* accursed|strong=\"H7045\"* of|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t defile|strong=\"H2930\"* your|strong=\"H3068\"* land|strong=\"H5159\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H7725\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H7200\"* brother’s ox|strong=\"H7794\"* or|strong=\"H3808\"* his|strong=\"H7725\"* sheep|strong=\"H7716\"* go|strong=\"H7725\"* astray|strong=\"H5080\"* and|strong=\"H7725\"* hide|strong=\"H5956\"* yourself from|strong=\"H7725\"* them|strong=\"H1992\"*. You|strong=\"H7725\"* shall|strong=\"H3808\"* surely|strong=\"H7725\"* bring|strong=\"H7725\"* them|strong=\"H1992\"* again|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7200\"* brother." + }, + { + "verseNum": 2, + "text": "If|strong=\"H1961\"* your|strong=\"H3045\"* brother isn’t near|strong=\"H7138\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, or|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H5704\"* don’t know|strong=\"H3045\"* him|strong=\"H7725\"*, then|strong=\"H1961\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* bring|strong=\"H7725\"* it|strong=\"H8432\"* home|strong=\"H1004\"* to|strong=\"H5704\"* your|strong=\"H3045\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* it|strong=\"H8432\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5704\"* until|strong=\"H5704\"* your|strong=\"H3045\"* brother comes|strong=\"H1961\"* looking|strong=\"H1961\"* for|strong=\"H5704\"* it|strong=\"H8432\"*, and|strong=\"H7725\"* you|strong=\"H5704\"* shall|strong=\"H1004\"* restore|strong=\"H7725\"* it|strong=\"H8432\"* to|strong=\"H5704\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* his|strong=\"H3605\"* donkey|strong=\"H2543\"*. So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* his|strong=\"H3605\"* garment|strong=\"H8071\"*. So|strong=\"H3651\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* do|strong=\"H6213\"* with|strong=\"H6213\"* every|strong=\"H3605\"* lost thing|strong=\"H3605\"* of|strong=\"H4480\"* your|strong=\"H3605\"* brother’s, which|strong=\"H3605\"* he|strong=\"H3651\"* has|strong=\"H3605\"* lost and|strong=\"H6213\"* you|strong=\"H3605\"* have|strong=\"H4672\"* found|strong=\"H4672\"*. You|strong=\"H3605\"* may|strong=\"H3201\"* not|strong=\"H3808\"* hide|strong=\"H5956\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5973\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* your|strong=\"H7200\"* brother’s donkey|strong=\"H2543\"* or|strong=\"H3808\"* his|strong=\"H7200\"* ox|strong=\"H7794\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"*, and|strong=\"H6965\"* hide|strong=\"H5956\"* yourself|strong=\"H5307\"* from|strong=\"H6965\"* them|strong=\"H1992\"*. You|strong=\"H5973\"* shall|strong=\"H3808\"* surely|strong=\"H6965\"* help|strong=\"H6965\"* him|strong=\"H7200\"* to|strong=\"H1870\"* lift|strong=\"H6965\"* them|strong=\"H1992\"* up|strong=\"H6965\"* again|strong=\"H6965\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* woman shall|strong=\"H3068\"* not|strong=\"H3808\"* wear|strong=\"H3847\"* men|strong=\"H1397\"*’s clothing|strong=\"H8071\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H1397\"* put|strong=\"H3847\"* on|strong=\"H5921\"* women’s clothing|strong=\"H8071\"*; for|strong=\"H3588\"* whoever|strong=\"H3605\"* does|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H3605\"* is|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7122\"* across|strong=\"H5921\"* a|strong=\"H3068\"* bird|strong=\"H6833\"*’s nest|strong=\"H7064\"* on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, in|strong=\"H5921\"* any|strong=\"H3605\"* tree|strong=\"H6086\"* or|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, with|strong=\"H5921\"* young|strong=\"H1121\"* ones|strong=\"H1121\"* or|strong=\"H3808\"* eggs|strong=\"H1000\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* hen sitting|strong=\"H7257\"* on|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H1121\"*, or|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H3605\"* eggs|strong=\"H1000\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* the|strong=\"H3605\"* hen with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H7971\"* shall|strong=\"H1121\"* surely|strong=\"H3190\"* let|strong=\"H7971\"* the|strong=\"H3947\"* hen go|strong=\"H7971\"*, but|strong=\"H3947\"* the|strong=\"H3947\"* young|strong=\"H1121\"* you|strong=\"H7971\"* may|strong=\"H1121\"* take|strong=\"H3947\"* for|strong=\"H7971\"* yourself, that|strong=\"H3117\"* it|strong=\"H7971\"* may|strong=\"H1121\"* be|strong=\"H1121\"* well|strong=\"H3190\"* with|strong=\"H3117\"* you|strong=\"H7971\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* you|strong=\"H7971\"* may|strong=\"H1121\"* prolong your|strong=\"H3947\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* build|strong=\"H1129\"* a|strong=\"H3068\"* new|strong=\"H2319\"* house|strong=\"H1004\"*, then|strong=\"H5307\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* a|strong=\"H3068\"* railing around your|strong=\"H7760\"* roof|strong=\"H1406\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t bring|strong=\"H6213\"* blood|strong=\"H1818\"* on|strong=\"H5307\"* your|strong=\"H7760\"* house|strong=\"H1004\"* if|strong=\"H3588\"* anyone|strong=\"H5307\"* falls|strong=\"H5307\"* from|strong=\"H4480\"* there|strong=\"H4480\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3808\"* shall|strong=\"H2233\"* not|strong=\"H3808\"* sow|strong=\"H2232\"* your|strong=\"H3808\"* vineyard|strong=\"H3754\"* with|strong=\"H2233\"* two|strong=\"H3610\"* kinds|strong=\"H3610\"* of|strong=\"H2233\"* seed|strong=\"H2233\"*, lest|strong=\"H6435\"* all|strong=\"H4395\"* the|strong=\"H6942\"* fruit|strong=\"H8393\"* be|strong=\"H3808\"* defiled|strong=\"H6942\"*, the|strong=\"H6942\"* seed|strong=\"H2233\"* which you|strong=\"H3808\"* have|strong=\"H3808\"* sown|strong=\"H2232\"*, and|strong=\"H3754\"* the|strong=\"H6942\"* increase|strong=\"H8393\"* of|strong=\"H2233\"* the|strong=\"H6942\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* plow|strong=\"H2790\"* with|strong=\"H7794\"* an ox|strong=\"H7794\"* and|strong=\"H7794\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* wear|strong=\"H3847\"* clothes|strong=\"H3847\"* of|strong=\"H3808\"* wool|strong=\"H6785\"* and|strong=\"H6785\"* linen|strong=\"H6593\"* woven together|strong=\"H3162\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5921\"* shall|strong=\"H3671\"* make|strong=\"H6213\"* yourselves|strong=\"H5921\"* fringes|strong=\"H1434\"*+ 22:12 or, tassels* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H3671\"* of|strong=\"H5921\"* your|strong=\"H5921\"* cloak with|strong=\"H6213\"* which you|strong=\"H5921\"* cover|strong=\"H3680\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "If|strong=\"H3588\"* any|strong=\"H3947\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife, and|strong=\"H3947\"* goes in|strong=\"H3947\"* to|strong=\"H3947\"* her|strong=\"H3947\"*, hates|strong=\"H8130\"* her|strong=\"H3947\"*," + }, + { + "verseNum": 14, + "text": "accuses her|strong=\"H3947\"* of|strong=\"H1697\"* shameful|strong=\"H5949\"* things|strong=\"H1697\"*, gives her|strong=\"H3947\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* name|strong=\"H8034\"*, and|strong=\"H1697\"* says|strong=\"H1697\"*, “I|strong=\"H5921\"* took|strong=\"H3947\"* this|strong=\"H2063\"* woman|strong=\"H8034\"*, and|strong=\"H1697\"* when|strong=\"H3318\"* I|strong=\"H5921\"* came|strong=\"H3318\"* near|strong=\"H7126\"* to|strong=\"H3318\"* her|strong=\"H3947\"*, I|strong=\"H5921\"* didn’t find|strong=\"H4672\"* in|strong=\"H5921\"* her|strong=\"H3947\"* the|strong=\"H5921\"* tokens of|strong=\"H1697\"* virginity|strong=\"H1331\"*;”" + }, + { + "verseNum": 15, + "text": "then|strong=\"H3318\"* the|strong=\"H3947\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father and|strong=\"H5892\"* mother shall|strong=\"H5892\"* take|strong=\"H3947\"* and|strong=\"H5892\"* bring|strong=\"H3318\"* the|strong=\"H3947\"* tokens of|strong=\"H5892\"* the|strong=\"H3947\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s virginity|strong=\"H1331\"* to|strong=\"H3318\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3947\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5414\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father shall|strong=\"H1323\"* tell the|strong=\"H5414\"* elders|strong=\"H2205\"*, “I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* this|strong=\"H2088\"* man|strong=\"H2205\"* as|strong=\"H5414\"* his|strong=\"H5414\"* wife, and|strong=\"H2205\"* he|strong=\"H5414\"* hates|strong=\"H8130\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* has|strong=\"H1697\"* accused her|strong=\"H6566\"* of|strong=\"H1323\"* shameful|strong=\"H5949\"* things|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘I|strong=\"H2009\"* didn’t find|strong=\"H4672\"* in|strong=\"H5892\"* your|strong=\"H7760\"* daughter|strong=\"H1323\"* the|strong=\"H6440\"* tokens of|strong=\"H1323\"* virginity|strong=\"H1331\"*;’ and|strong=\"H5892\"* yet|strong=\"H3808\"* these|strong=\"H1931\"* are|strong=\"H1697\"* the|strong=\"H6440\"* tokens of|strong=\"H1323\"* my|strong=\"H7760\"* daughter|strong=\"H1323\"*’s virginity|strong=\"H1331\"*.” They|strong=\"H3808\"* shall|strong=\"H5892\"* spread|strong=\"H6566\"* the|strong=\"H6440\"* cloth|strong=\"H8071\"* before|strong=\"H6440\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1323\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* that|strong=\"H1931\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* take|strong=\"H3947\"* the|strong=\"H3947\"* man|strong=\"H2205\"* and|strong=\"H5892\"* chastise|strong=\"H3256\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* shall|strong=\"H3478\"* fine|strong=\"H3701\"* him|strong=\"H5414\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* shekels|strong=\"H3701\"* of|strong=\"H3117\"* silver|strong=\"H3701\"*,+ 22:19 A shekel is about 10 grams or about 0.35 ounces, so 100 shekels is about a kilogram or 2.2 pounds.* and|strong=\"H3967\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3318\"* the|strong=\"H3605\"* father of|strong=\"H3117\"* the|strong=\"H3605\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* given|strong=\"H5414\"* a|strong=\"H3068\"* bad|strong=\"H7451\"* name|strong=\"H8034\"* to|strong=\"H3318\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. She|strong=\"H3588\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* his|strong=\"H3605\"* wife. He|strong=\"H3588\"* may|strong=\"H1961\"* not|strong=\"H3808\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* true, that|strong=\"H1697\"* the|strong=\"H1697\"* tokens of|strong=\"H1697\"* virginity|strong=\"H1331\"* were|strong=\"H1961\"* not|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H4672\"* the|strong=\"H1697\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*," + }, + { + "verseNum": 21, + "text": "then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3478\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3588\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* to|strong=\"H3318\"* the|strong=\"H3588\"* door|strong=\"H6607\"* of|strong=\"H1004\"* her|strong=\"H7130\"* father’s house|strong=\"H1004\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* men|strong=\"H7451\"* of|strong=\"H1004\"* her|strong=\"H7130\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* stone|strong=\"H5619\"* her|strong=\"H7130\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H1004\"* stones|strong=\"H5619\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3478\"* done|strong=\"H6213\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, to|strong=\"H3318\"* play|strong=\"H2181\"* the|strong=\"H3588\"* prostitute|strong=\"H2181\"* in|strong=\"H3478\"* her|strong=\"H7130\"* father’s house|strong=\"H1004\"*. So|strong=\"H6213\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3318\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1167\"* is|strong=\"H1571\"* found|strong=\"H4672\"* lying|strong=\"H7901\"* with|strong=\"H5973\"* a|strong=\"H3068\"* woman married|strong=\"H1166\"* to|strong=\"H3478\"* a|strong=\"H3068\"* husband|strong=\"H1167\"*, then|strong=\"H1571\"* they|strong=\"H3588\"* shall|strong=\"H3478\"* both|strong=\"H8147\"* die|strong=\"H4191\"*, the|strong=\"H3588\"* man|strong=\"H1167\"* who|strong=\"H3478\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* the|strong=\"H3588\"* woman and|strong=\"H3478\"* the|strong=\"H3588\"* woman. So|strong=\"H1571\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H5892\"* a|strong=\"H3068\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H5892\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* pledged to|strong=\"H1961\"* be|strong=\"H1961\"* married to|strong=\"H1961\"* a|strong=\"H3068\"* husband, and|strong=\"H5892\"* a|strong=\"H3068\"* man finds|strong=\"H4672\"* her|strong=\"H4672\"* in|strong=\"H5892\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H3318\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* bring|strong=\"H3318\"* them|strong=\"H5921\"* both|strong=\"H8147\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1697\"* that|strong=\"H1931\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* stone|strong=\"H5619\"* them|strong=\"H5921\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones|strong=\"H5619\"*; the|strong=\"H5921\"* lady|strong=\"H5291\"*, because|strong=\"H5921\"* she|strong=\"H1931\"* didn’t cry|strong=\"H6817\"*, being in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H5921\"* man|strong=\"H4191\"*, because|strong=\"H5921\"* he|strong=\"H1931\"* has|strong=\"H3318\"* humbled|strong=\"H6031\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*’s wife. So|strong=\"H3808\"* you|strong=\"H5921\"* shall|strong=\"H5892\"* remove|strong=\"H1197\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* from|strong=\"H3318\"* among|strong=\"H7130\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H2388\"* if the|strong=\"H2388\"* man|strong=\"H4191\"* finds|strong=\"H4672\"* the|strong=\"H2388\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H7704\"* pledged to|strong=\"H4191\"* be|strong=\"H4191\"* married in|strong=\"H4191\"* the|strong=\"H2388\"* field|strong=\"H7704\"*, and|strong=\"H2388\"* the|strong=\"H2388\"* man|strong=\"H4191\"* forces|strong=\"H2388\"* her|strong=\"H4672\"* and|strong=\"H2388\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*, then|strong=\"H4191\"* only the|strong=\"H2388\"* man|strong=\"H4191\"* who|strong=\"H4672\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"* shall|strong=\"H7704\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 26, + "text": "but|strong=\"H3588\"* to|strong=\"H5921\"* the|strong=\"H5921\"* lady|strong=\"H5291\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* do|strong=\"H6213\"* nothing|strong=\"H3808\"*. There|strong=\"H2088\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lady|strong=\"H5291\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* worthy|strong=\"H2399\"* of|strong=\"H1697\"* death|strong=\"H4194\"*; for|strong=\"H3588\"* as|strong=\"H1697\"* when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* rises|strong=\"H6965\"* against|strong=\"H5921\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"* and|strong=\"H6965\"* kills|strong=\"H7523\"* him|strong=\"H5921\"*, even|strong=\"H3588\"* so|strong=\"H3651\"* is|strong=\"H2088\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*;" + }, + { + "verseNum": 27, + "text": "for|strong=\"H3588\"* he|strong=\"H3588\"* found|strong=\"H4672\"* her|strong=\"H4672\"* in|strong=\"H4672\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, the|strong=\"H3588\"* pledged to|strong=\"H7704\"* be|strong=\"H7704\"* married lady|strong=\"H5291\"* cried|strong=\"H6817\"*, and|strong=\"H7704\"* there|strong=\"H4672\"* was|strong=\"H5291\"* no|strong=\"H4672\"* one|strong=\"H3588\"* to|strong=\"H7704\"* save|strong=\"H3467\"* her|strong=\"H4672\"*." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man finds|strong=\"H4672\"* a|strong=\"H3068\"* lady|strong=\"H5291\"* who|strong=\"H4672\"* is|strong=\"H4672\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*, who|strong=\"H4672\"* is|strong=\"H4672\"* not|strong=\"H3808\"* pledged to|strong=\"H5973\"* be|strong=\"H3808\"* married, grabs her|strong=\"H4672\"* and|strong=\"H7901\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H4672\"*, and|strong=\"H7901\"* they|strong=\"H3588\"* are|strong=\"H1330\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 29, + "text": "then|strong=\"H1961\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H3605\"* shall|strong=\"H3117\"* give|strong=\"H5414\"* to|strong=\"H3201\"* the|strong=\"H3605\"* lady|strong=\"H5291\"*’s father fifty|strong=\"H2572\"* shekels|strong=\"H3701\"*+ 22:29 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H3117\"* silver|strong=\"H3701\"*. She|strong=\"H5973\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* his|strong=\"H3605\"* wife, because|strong=\"H8478\"* he|strong=\"H3117\"* has|strong=\"H1961\"* humbled|strong=\"H6031\"* her|strong=\"H3605\"*. He|strong=\"H3117\"* may|strong=\"H1961\"* not|strong=\"H3808\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "A|strong=\"H3068\"* man shall not take his father’s wife, and shall not uncover his father’s skirt." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* is|strong=\"H3671\"* emasculated by|strong=\"H3808\"* crushing or|strong=\"H3808\"* cutting shall|strong=\"H3808\"* not|strong=\"H3808\"* enter into|strong=\"H1540\"* Yahweh|strong=\"H3068\"*’s assembly." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* person born|strong=\"H3808\"* of|strong=\"H3068\"* a|strong=\"H3068\"* forbidden union shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*; even|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3068\"* tenth generation shall|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* of|strong=\"H3068\"* his|strong=\"H3068\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*." + }, + { + "verseNum": 3, + "text": "An|strong=\"H3068\"* Ammonite or|strong=\"H3808\"* a|strong=\"H3068\"* Moabite shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*; even|strong=\"H1571\"* to|strong=\"H3068\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* generation|strong=\"H1755\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* belonging to|strong=\"H3068\"* them|strong=\"H3068\"* enter into|strong=\"H6951\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"* forever|strong=\"H1755\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"H3068\"* they|strong=\"H1992\"* didn’t meet you|strong=\"H5704\"* with|strong=\"H3068\"* bread and|strong=\"H3068\"* with|strong=\"H3068\"* water on|strong=\"H3068\"* the|strong=\"H3068\"* way|strong=\"H5704\"* when|strong=\"H5704\"* you|strong=\"H5704\"* came|strong=\"H3068\"* out|strong=\"H5704\"* of|strong=\"H3068\"* Egypt, and|strong=\"H3068\"* because|strong=\"H3068\"* they|strong=\"H1992\"* hired against|strong=\"H3068\"* you|strong=\"H5704\"* Balaam the|strong=\"H3068\"* son of|strong=\"H3068\"* Beor from|strong=\"H5704\"* Pethor of|strong=\"H3068\"* Mesopotamia, to|strong=\"H5704\"* curse you|strong=\"H5704\"*." + }, + { + "verseNum": 5, + "text": "Nevertheless Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* wouldn’t listen to|strong=\"H3318\"* Balaam|strong=\"H1109\"*, but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* turned the|strong=\"H5921\"* curse|strong=\"H7043\"* into|strong=\"H5921\"* a|strong=\"H3068\"* blessing to|strong=\"H3318\"* you|strong=\"H5921\"*, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God|strong=\"H3808\"* loved you|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* seek|strong=\"H3808\"* their|strong=\"H3068\"* peace|strong=\"H1293\"* nor|strong=\"H3808\"* their|strong=\"H3068\"* prosperity all|strong=\"H3068\"* your|strong=\"H3068\"* days forever." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* abhor an Edomite, for|strong=\"H3117\"* he|strong=\"H3117\"* is|strong=\"H3117\"* your|strong=\"H3605\"* brother. You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* abhor an Egyptian, because|strong=\"H3117\"* you|strong=\"H3605\"* lived as|strong=\"H3117\"* a|strong=\"H3068\"* foreigner in|strong=\"H3117\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* children of|strong=\"H3808\"* the|strong=\"H3588\"* third generation who|strong=\"H1931\"* are|strong=\"H1961\"* born|strong=\"H3808\"* to|strong=\"H1961\"* them|strong=\"H1961\"* may|strong=\"H1961\"* enter into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s assembly." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3068\"* you|strong=\"H3205\"* go|strong=\"H3068\"* out and|strong=\"H1121\"* camp against|strong=\"H3068\"* your|strong=\"H3068\"* enemies, then|strong=\"H3068\"* you|strong=\"H3205\"* shall|strong=\"H3068\"* keep yourselves|strong=\"H3068\"* from|strong=\"H1121\"* every|strong=\"H1755\"* evil thing." + }, + { + "verseNum": 10, + "text": "If|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H1697\"* among|strong=\"H5921\"* you|strong=\"H3588\"* any|strong=\"H3605\"* man|strong=\"H7451\"* who|strong=\"H3605\"* is|strong=\"H1697\"* not|strong=\"H3588\"* clean by|strong=\"H5921\"* reason|strong=\"H1697\"* of|strong=\"H1697\"* that|strong=\"H3588\"* which|strong=\"H1697\"* happens to|strong=\"H3318\"* him|strong=\"H5921\"* by|strong=\"H5921\"* night, then|strong=\"H3318\"* shall|strong=\"H7451\"* he|strong=\"H3588\"* go|strong=\"H3318\"* outside|strong=\"H3318\"* of|strong=\"H1697\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*. He|strong=\"H3588\"* shall|strong=\"H7451\"* not|strong=\"H3588\"* come|strong=\"H3318\"* within|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*;" + }, + { + "verseNum": 11, + "text": "but|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* evening|strong=\"H3915\"* comes|strong=\"H3318\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* bathe himself|strong=\"H3808\"* in|strong=\"H8432\"* water. When|strong=\"H3588\"* the|strong=\"H3588\"* sun is|strong=\"H1961\"* down|strong=\"H3588\"*, he|strong=\"H3588\"* shall|strong=\"H3808\"* come|strong=\"H1961\"* within|strong=\"H8432\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H8432\"* shall|strong=\"H4325\"* have|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* also|strong=\"H8121\"* outside of|strong=\"H4325\"* the|strong=\"H8432\"* camp|strong=\"H4264\"* where you|strong=\"H8432\"* go|strong=\"H1961\"* relieve yourself." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3027\"* shall|strong=\"H3027\"* have|strong=\"H1961\"* a|strong=\"H3068\"* trowel among|strong=\"H8033\"* your|strong=\"H1961\"* weapons. It|strong=\"H8033\"* shall|strong=\"H3027\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H3027\"* relieve yourself|strong=\"H8033\"*, you|strong=\"H3027\"* shall|strong=\"H3027\"* dig with|strong=\"H3318\"* it|strong=\"H8033\"*, and|strong=\"H3027\"* shall|strong=\"H3027\"* turn|strong=\"H1961\"* back|strong=\"H3318\"* and|strong=\"H3027\"* cover your|strong=\"H1961\"* excrement;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H5921\"* God walks in|strong=\"H3427\"* the|strong=\"H5921\"* middle of|strong=\"H3427\"* your|strong=\"H5921\"* camp, to|strong=\"H7725\"* deliver|strong=\"H7725\"* you|strong=\"H5921\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* give|strong=\"H7725\"* up|strong=\"H5921\"* your|strong=\"H5921\"* enemies before|strong=\"H5921\"* you|strong=\"H5921\"*. Therefore|strong=\"H5921\"* your|strong=\"H5921\"* camp shall|strong=\"H3427\"* be|strong=\"H1961\"* holy, that|strong=\"H1961\"* he|strong=\"H5921\"* may|strong=\"H1961\"* not|strong=\"H1961\"* see an|strong=\"H1961\"* unclean thing in|strong=\"H3427\"* you|strong=\"H5921\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* to|strong=\"H1980\"* his|strong=\"H5414\"* master|strong=\"H5414\"* a|strong=\"H3068\"* servant who|strong=\"H3068\"* has|strong=\"H3068\"* escaped|strong=\"H5337\"* from|strong=\"H7725\"* his|strong=\"H5414\"* master|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3808\"* shall|strong=\"H5650\"* dwell with|strong=\"H5973\"* you|strong=\"H5973\"*, among|strong=\"H5973\"* you|strong=\"H5973\"*, in|strong=\"H5650\"* the|strong=\"H5973\"* place which he|strong=\"H3808\"* shall|strong=\"H5650\"* choose within|strong=\"H5973\"* one|strong=\"H3808\"* of|strong=\"H5650\"* your|strong=\"H3808\"* gates, where|strong=\"H3808\"* it|strong=\"H3808\"* pleases him|strong=\"H5973\"* best. You|strong=\"H5973\"* shall|strong=\"H5650\"* not|strong=\"H3808\"* oppress him|strong=\"H5973\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H3427\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* no|strong=\"H3808\"* prostitute of|strong=\"H3427\"* the|strong=\"H5973\"* daughters of|strong=\"H3427\"* Israel, neither|strong=\"H3808\"* shall|strong=\"H3808\"* there|strong=\"H3427\"* be|strong=\"H3808\"* a|strong=\"H3068\"* sodomite of|strong=\"H3427\"* the|strong=\"H5973\"* sons of|strong=\"H3427\"* Israel." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3808\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H1323\"* the|strong=\"H1961\"* hire of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H6945\"*, or|strong=\"H3808\"* the|strong=\"H1961\"* wages of|strong=\"H1121\"* a|strong=\"H3068\"* male|strong=\"H6945\"* prostitute|strong=\"H6945\"*,+ 23:18 literally, dog* into|strong=\"H1323\"* the|strong=\"H1961\"* house of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God|strong=\"H3808\"* for|strong=\"H1121\"* any|strong=\"H1961\"* vow; for|strong=\"H1121\"* both of|strong=\"H1121\"* these are|strong=\"H1121\"* an|strong=\"H1961\"* abomination to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* lend on|strong=\"H3068\"* interest to|strong=\"H3068\"* your|strong=\"H3068\"* brother: interest of|strong=\"H1004\"* money, interest of|strong=\"H1004\"* food|strong=\"H1004\"*, interest of|strong=\"H1004\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* lent on|strong=\"H3068\"* interest." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* may|strong=\"H3808\"* charge|strong=\"H5391\"* a|strong=\"H3068\"* foreigner interest|strong=\"H5392\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* charge|strong=\"H5391\"* your|strong=\"H3605\"* brother interest|strong=\"H5392\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* may|strong=\"H3808\"* bless you|strong=\"H3605\"* in|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* put your|strong=\"H3605\"* hand to|strong=\"H1697\"*, in|strong=\"H1697\"* the|strong=\"H3605\"* land where|strong=\"H3808\"* you|strong=\"H3605\"* go in|strong=\"H1697\"* to|strong=\"H1697\"* possess it|strong=\"H3808\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3068\"* you|strong=\"H3605\"* vow|strong=\"H3027\"* a|strong=\"H3068\"* vow|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* slack to|strong=\"H3068\"* pay it|strong=\"H5921\"*, for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3808\"* require it|strong=\"H5921\"* of|strong=\"H3068\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* it|strong=\"H5921\"* would|strong=\"H3068\"* be|strong=\"H3808\"* sin in|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refrain|strong=\"H3808\"* from|strong=\"H3068\"* making|strong=\"H1875\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* sin|strong=\"H2399\"* in|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H3588\"* shall|strong=\"H3808\"* observe and|strong=\"H1961\"* do that|strong=\"H3588\"* which|strong=\"H3588\"* has|strong=\"H1961\"* gone|strong=\"H1961\"* out|strong=\"H2308\"* of|strong=\"H3808\"* your|strong=\"H3588\"* lips. Whatever you|strong=\"H3588\"* have|strong=\"H1961\"* vowed|strong=\"H5087\"* to|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God|strong=\"H3808\"* as|strong=\"H1961\"* a|strong=\"H3068\"* free will|strong=\"H1961\"* offering, which|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* promised|strong=\"H5087\"* with|strong=\"H1961\"* your|strong=\"H3588\"* mouth, you|strong=\"H3588\"* must|strong=\"H3808\"* do." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1696\"* you|strong=\"H6213\"* come into|strong=\"H6213\"* your|strong=\"H3068\"* neighbor’s vineyard, then|strong=\"H1696\"* you|strong=\"H6213\"* may|strong=\"H3068\"* eat|strong=\"H6310\"* your|strong=\"H3068\"* fill of|strong=\"H3068\"* grapes at|strong=\"H3068\"* your|strong=\"H3068\"* own pleasure; but|strong=\"H1696\"* you|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H6213\"* put|strong=\"H6213\"* any|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* container." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come into|strong=\"H5414\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*’s standing|strong=\"H7453\"* grain, then|strong=\"H5414\"* you|strong=\"H3588\"* may|strong=\"H5315\"* pluck the|strong=\"H3588\"* ears with|strong=\"H3627\"* your|strong=\"H5414\"* hand|strong=\"H5414\"*; but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* not|strong=\"H3808\"* use a|strong=\"H3068\"* sickle on|strong=\"H3627\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*’s standing|strong=\"H7453\"* grain." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* man takes|strong=\"H3947\"* a|strong=\"H3068\"* wife|strong=\"H1166\"* and|strong=\"H7971\"* marries|strong=\"H1166\"* her|strong=\"H5414\"*, then|strong=\"H1961\"* it|strong=\"H5414\"* shall|strong=\"H1004\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* she|strong=\"H3588\"* finds|strong=\"H4672\"* no|strong=\"H3808\"* favor|strong=\"H2580\"* in|strong=\"H1004\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* found|strong=\"H4672\"* some|strong=\"H1697\"* unseemly thing|strong=\"H1697\"* in|strong=\"H1004\"* her|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H1004\"* write|strong=\"H3789\"* her|strong=\"H5414\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H1004\"* divorce|strong=\"H7971\"*, put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1004\"* her|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* send|strong=\"H7971\"* her|strong=\"H5414\"* out|strong=\"H7971\"* of|strong=\"H1004\"* his|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* she|strong=\"H1980\"* has|strong=\"H1961\"* departed|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H1004\"* his|strong=\"H1961\"* house|strong=\"H1004\"*, she|strong=\"H1980\"* may|strong=\"H1961\"* go|strong=\"H1980\"* and|strong=\"H1980\"* be|strong=\"H1961\"* another man’s wife." + }, + { + "verseNum": 3, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* latter husband hates|strong=\"H8130\"* her|strong=\"H5414\"*, and|strong=\"H7971\"* writes|strong=\"H3789\"* her|strong=\"H5414\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H1004\"* divorce|strong=\"H7971\"*, puts|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1004\"* her|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* sends|strong=\"H7971\"* her|strong=\"H5414\"* out|strong=\"H7971\"* of|strong=\"H1004\"* his|strong=\"H5414\"* house|strong=\"H1004\"*; or|strong=\"H1004\"* if|strong=\"H3588\"* the|strong=\"H3588\"* latter husband dies|strong=\"H4191\"*, who|strong=\"H3588\"* took|strong=\"H3947\"* her|strong=\"H5414\"* to|strong=\"H4191\"* be|strong=\"H4191\"* his|strong=\"H5414\"* wife;" + }, + { + "verseNum": 4, + "text": "her|strong=\"H5414\"* former|strong=\"H7223\"* husband|strong=\"H1167\"*, who|strong=\"H1931\"* sent|strong=\"H7971\"* her|strong=\"H5414\"* away|strong=\"H7971\"*, may|strong=\"H1961\"* not|strong=\"H3808\"* take|strong=\"H3947\"* her|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1961\"* his|strong=\"H5414\"* wife after|strong=\"H1961\"* she|strong=\"H1931\"* is|strong=\"H3068\"* defiled|strong=\"H2930\"*; for|strong=\"H3588\"* that|strong=\"H3588\"* would|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* abomination|strong=\"H8441\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* cause|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H5159\"* to|strong=\"H7725\"* sin|strong=\"H2398\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H3605\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* new|strong=\"H2319\"* wife, he|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H8141\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, neither|strong=\"H3808\"* shall|strong=\"H1004\"* he|strong=\"H3588\"* be|strong=\"H1961\"* assigned|strong=\"H1961\"* any|strong=\"H3605\"* business|strong=\"H1697\"*. He|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* free|strong=\"H5355\"* at|strong=\"H5921\"* home|strong=\"H1004\"* one|strong=\"H3605\"* year|strong=\"H8141\"*, and|strong=\"H1004\"* shall|strong=\"H1004\"* cheer his|strong=\"H3605\"* wife whom|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* taken|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "No|strong=\"H3808\"* man|strong=\"H5315\"* shall|strong=\"H5315\"* take|strong=\"H2254\"* the|strong=\"H3588\"* mill|strong=\"H7347\"* or|strong=\"H3808\"* the|strong=\"H3588\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* as|strong=\"H5315\"* a|strong=\"H3068\"* pledge|strong=\"H2254\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* takes a|strong=\"H3068\"* life|strong=\"H5315\"* in|strong=\"H5315\"* pledge|strong=\"H2254\"*." + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* is|strong=\"H1931\"* found|strong=\"H4672\"* stealing|strong=\"H1589\"* any|strong=\"H5315\"* of|strong=\"H1121\"* his|strong=\"H3478\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* deals|strong=\"H6014\"* with|strong=\"H1197\"* him|strong=\"H4672\"* as|strong=\"H5315\"* a|strong=\"H3068\"* slave|strong=\"H5315\"*, or|strong=\"H1121\"* sells|strong=\"H4376\"* him|strong=\"H4672\"*, then|strong=\"H3588\"* that|strong=\"H3588\"* thief|strong=\"H1590\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*. So|strong=\"H4191\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* remove|strong=\"H1197\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"H5061\"* careful|strong=\"H8104\"* in|strong=\"H6213\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H3605\"* leprosy|strong=\"H6883\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* observe|strong=\"H8104\"* diligently|strong=\"H3966\"* and|strong=\"H3548\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* teach|strong=\"H3384\"* you|strong=\"H6680\"*. As|strong=\"H6213\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, so|strong=\"H6213\"* you|strong=\"H6680\"* shall|strong=\"H3548\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H3318\"* Miriam|strong=\"H4813\"*, by|strong=\"H3068\"* the|strong=\"H6213\"* way|strong=\"H1870\"* as|strong=\"H6213\"* you|strong=\"H6213\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* lend|strong=\"H5670\"* your|strong=\"H3588\"* neighbor|strong=\"H7453\"* any|strong=\"H3972\"* kind|strong=\"H7453\"* of|strong=\"H1004\"* loan|strong=\"H4859\"*, you|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go into his|strong=\"H3588\"* house|strong=\"H1004\"* to|strong=\"H1004\"* get his|strong=\"H3588\"* pledge|strong=\"H5667\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3318\"* shall|strong=\"H5383\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*, and|strong=\"H5975\"* the|strong=\"H3318\"* man to|strong=\"H3318\"* whom you|strong=\"H3318\"* lend|strong=\"H5383\"* shall|strong=\"H5383\"* bring|strong=\"H3318\"* the|strong=\"H3318\"* pledge|strong=\"H5667\"* outside|strong=\"H2351\"* to|strong=\"H3318\"* you|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* poor|strong=\"H6041\"* man|strong=\"H6041\"*, you|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* sleep|strong=\"H7901\"* with|strong=\"H7901\"* his|strong=\"H3808\"* pledge|strong=\"H5667\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* surely|strong=\"H7725\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* the|strong=\"H6440\"* pledge|strong=\"H5667\"* when|strong=\"H1961\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* goes|strong=\"H6440\"* down|strong=\"H7901\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H1961\"* sleep|strong=\"H7901\"* in|strong=\"H3068\"* his|strong=\"H3068\"* garment|strong=\"H8008\"* and|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6440\"*. It|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* righteousness|strong=\"H6666\"* to|strong=\"H7725\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* oppress|strong=\"H6231\"* a|strong=\"H3068\"* hired|strong=\"H7916\"* servant|strong=\"H7916\"* who|strong=\"H1616\"* is|strong=\"H8179\"* poor|strong=\"H6041\"* and|strong=\"H6041\"* needy|strong=\"H6041\"*, whether he|strong=\"H3808\"* is|strong=\"H8179\"* one|strong=\"H3808\"* of|strong=\"H8179\"* your|strong=\"H3808\"* brothers or|strong=\"H3808\"* one|strong=\"H3808\"* of|strong=\"H8179\"* the|strong=\"H3808\"* foreigners|strong=\"H1616\"* who|strong=\"H1616\"* are|strong=\"H8179\"* in|strong=\"H3808\"* your|strong=\"H3808\"* land within your|strong=\"H3808\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* his|strong=\"H5375\"* day|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5375\"* wages|strong=\"H7939\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* go|strong=\"H1961\"* down|strong=\"H5414\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* sets|strong=\"H5375\"* his|strong=\"H5375\"* heart|strong=\"H5315\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, lest he|strong=\"H1931\"* cry|strong=\"H7121\"* against|strong=\"H5921\"* you|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* be|strong=\"H1961\"* sin|strong=\"H2399\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* fathers shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* the|strong=\"H5921\"* fathers. Every|strong=\"H1121\"* man|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H5921\"* his|strong=\"H5921\"* own sin|strong=\"H2399\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* deprive|strong=\"H5186\"* the|strong=\"H5186\"* foreigner|strong=\"H1616\"* or|strong=\"H3808\"* the|strong=\"H5186\"* fatherless|strong=\"H3490\"* of|strong=\"H4941\"* justice|strong=\"H4941\"*, nor|strong=\"H3808\"* take|strong=\"H2254\"* a|strong=\"H3068\"* widow’s clothing in|strong=\"H3808\"* pledge|strong=\"H2254\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* redeemed|strong=\"H6299\"* you|strong=\"H3588\"* there|strong=\"H8033\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* reap|strong=\"H7114\"* your|strong=\"H3068\"* harvest|strong=\"H7105\"* in|strong=\"H3068\"* your|strong=\"H3068\"* field|strong=\"H7704\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* forgotten|strong=\"H7911\"* a|strong=\"H3068\"* sheaf|strong=\"H6016\"* in|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* get|strong=\"H3947\"* it|strong=\"H3588\"*. It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* the|strong=\"H3605\"* widow, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H1961\"* bless|strong=\"H1288\"* you|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* beat|strong=\"H2251\"* your|strong=\"H3588\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1961\"* over the|strong=\"H3588\"* boughs|strong=\"H6286\"* again|strong=\"H1961\"*. It|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* fatherless|strong=\"H3490\"*, and|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* widow." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* harvest your|strong=\"H3588\"* vineyard|strong=\"H3754\"*, you|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* glean|strong=\"H5953\"* it|strong=\"H3588\"* after|strong=\"H1961\"* yourselves. It|strong=\"H3588\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* foreigner|strong=\"H1616\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* fatherless|strong=\"H3490\"*, and|strong=\"H3754\"* for|strong=\"H3588\"* the|strong=\"H3588\"* widow." + }, + { + "verseNum": 22, + "text": "You|strong=\"H3588\"* shall|strong=\"H4714\"* remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* a|strong=\"H3068\"* slave|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"*. Therefore|strong=\"H3651\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* to|strong=\"H1961\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H7563\"* a|strong=\"H3068\"* controversy|strong=\"H7379\"* between|strong=\"H8199\"* men|strong=\"H7563\"*, and|strong=\"H4941\"* they|strong=\"H3588\"* come|strong=\"H1961\"* to|strong=\"H1961\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* the|strong=\"H3588\"* judges|strong=\"H8199\"* judge|strong=\"H8199\"* them|strong=\"H1961\"*, then|strong=\"H1961\"* they|strong=\"H3588\"* shall|strong=\"H7563\"* justify|strong=\"H6663\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* and|strong=\"H4941\"* condemn|strong=\"H7561\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H6440\"* shall|strong=\"H1121\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* is|strong=\"H7563\"* worthy|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* beaten|strong=\"H5221\"*, that|strong=\"H1121\"* the|strong=\"H6440\"* judge|strong=\"H8199\"* shall|strong=\"H1121\"* cause|strong=\"H1961\"* him|strong=\"H6440\"* to|strong=\"H1961\"* lie|strong=\"H1961\"* down|strong=\"H5307\"* and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* beaten|strong=\"H5221\"* before|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, according|strong=\"H1767\"* to|strong=\"H1961\"* his|strong=\"H6440\"* wickedness|strong=\"H7564\"*, by|strong=\"H1961\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* may|strong=\"H3254\"* sentence him|strong=\"H5921\"* to|strong=\"H5921\"* no|strong=\"H3808\"* more|strong=\"H3254\"* than|strong=\"H3808\"* forty stripes|strong=\"H4347\"*. He|strong=\"H3808\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* give|strong=\"H3254\"* more|strong=\"H3254\"*, lest|strong=\"H6435\"* if|strong=\"H6435\"* he|strong=\"H3808\"* should give|strong=\"H3254\"* more|strong=\"H3254\"* and|strong=\"H5869\"* beat|strong=\"H5221\"* him|strong=\"H5921\"* more|strong=\"H3254\"* than|strong=\"H3808\"* that|strong=\"H5869\"* many|strong=\"H7227\"* stripes|strong=\"H4347\"*, then|strong=\"H3254\"* your|strong=\"H5921\"* brother will|strong=\"H5869\"* be|strong=\"H3808\"* degraded|strong=\"H7034\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* muzzle|strong=\"H2629\"* the|strong=\"H3808\"* ox|strong=\"H7794\"* when he|strong=\"H3808\"* treads out|strong=\"H1758\"* the|strong=\"H3808\"* grain." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* brothers|strong=\"H1121\"* dwell|strong=\"H3427\"* together|strong=\"H3162\"*, and|strong=\"H1121\"* one|strong=\"H3808\"* of|strong=\"H1121\"* them|strong=\"H1992\"* dies|strong=\"H4191\"* and|strong=\"H1121\"* has|strong=\"H1961\"* no|strong=\"H3808\"* son|strong=\"H1121\"*, the|strong=\"H5921\"* wife of|strong=\"H1121\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H1961\"* married|strong=\"H3947\"* outside|strong=\"H2351\"* to|strong=\"H4191\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*. Her|strong=\"H3947\"* husband’s brother|strong=\"H2993\"* shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H4191\"* her|strong=\"H3947\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* her|strong=\"H3947\"* as|strong=\"H1961\"* his|strong=\"H3947\"* wife, and|strong=\"H1121\"* perform|strong=\"H2992\"* the|strong=\"H5921\"* duty|strong=\"H2992\"* of|strong=\"H1121\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2993\"* to|strong=\"H4191\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H5921\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* that|strong=\"H3478\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* whom she|strong=\"H5921\"* bears|strong=\"H3205\"* shall|strong=\"H3478\"* succeed|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3205\"* his|strong=\"H5921\"* brother who|strong=\"H3478\"* is|strong=\"H8034\"* dead|strong=\"H4191\"*, that|strong=\"H3478\"* his|strong=\"H5921\"* name|strong=\"H8034\"* not|strong=\"H3808\"* be|strong=\"H1961\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"* of|strong=\"H3205\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "If the|strong=\"H3947\"* man|strong=\"H2205\"* doesn’t want|strong=\"H2654\"* to|strong=\"H3478\"* take|strong=\"H3947\"* his|strong=\"H3947\"* brother|strong=\"H2993\"*’s wife|strong=\"H2994\"*, then|strong=\"H6965\"* his|strong=\"H3947\"* brother|strong=\"H2993\"*’s wife|strong=\"H2994\"* shall|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* to|strong=\"H3478\"* the|strong=\"H3947\"* elders|strong=\"H2205\"*, and|strong=\"H6965\"* say|strong=\"H3478\"*, “My|strong=\"H3947\"* husband’s brother|strong=\"H2993\"* refuses|strong=\"H3985\"* to|strong=\"H3478\"* raise|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H3947\"* brother|strong=\"H2993\"* a|strong=\"H3068\"* name|strong=\"H8034\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. He|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* perform|strong=\"H6965\"* the|strong=\"H3947\"* duty|strong=\"H2992\"* of|strong=\"H2205\"* a|strong=\"H3068\"* husband’s brother|strong=\"H2993\"* to|strong=\"H3478\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* his|strong=\"H7121\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* call|strong=\"H7121\"* him|strong=\"H7121\"*, and|strong=\"H5892\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*. If he|strong=\"H3808\"* stands|strong=\"H5975\"* and|strong=\"H5892\"* says|strong=\"H1696\"*, “I|strong=\"H3808\"* don’t want|strong=\"H2654\"* to|strong=\"H1696\"* take|strong=\"H3947\"* her|strong=\"H3947\"*,”" + }, + { + "verseNum": 9, + "text": "then|strong=\"H6030\"* his|strong=\"H6440\"* brother’s wife|strong=\"H2994\"* shall|strong=\"H1004\"* come|strong=\"H5066\"* to|strong=\"H5921\"* him|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* elders|strong=\"H2205\"*, and|strong=\"H6030\"* loose|strong=\"H2502\"* his|strong=\"H6440\"* sandal|strong=\"H5275\"* from|strong=\"H6440\"* off|strong=\"H5921\"* his|strong=\"H6440\"* foot|strong=\"H7272\"*, and|strong=\"H6030\"* spit|strong=\"H3417\"* in|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. She|strong=\"H5921\"* shall|strong=\"H1004\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* say, “So|strong=\"H6213\"* shall|strong=\"H1004\"* it|strong=\"H5921\"* be|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H5921\"* the|strong=\"H6440\"* man|strong=\"H2205\"* who|strong=\"H6213\"* does|strong=\"H6213\"* not|strong=\"H3808\"* build|strong=\"H1129\"* up|strong=\"H1129\"* his|strong=\"H6440\"* brother’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "His|strong=\"H7121\"* name|strong=\"H8034\"* shall|strong=\"H3478\"* be|strong=\"H8034\"* called|strong=\"H7121\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, “The|strong=\"H7121\"* house|strong=\"H1004\"* of|strong=\"H1004\"* him|strong=\"H7121\"* who|strong=\"H3478\"* had|strong=\"H3478\"* his|strong=\"H7121\"* sandal|strong=\"H5275\"* removed|strong=\"H2502\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* men|strong=\"H2388\"* strive|strong=\"H5327\"* against|strong=\"H3027\"* each|strong=\"H3162\"* other|strong=\"H3162\"*, and|strong=\"H7971\"* the|strong=\"H3588\"* wife of|strong=\"H3027\"* one|strong=\"H3588\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H7971\"* deliver|strong=\"H5337\"* her|strong=\"H7971\"* husband out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H5221\"* who|strong=\"H3588\"* strikes|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H7971\"* puts|strong=\"H7971\"* out|strong=\"H7971\"* her|strong=\"H7971\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* grabs him|strong=\"H5221\"* by|strong=\"H3027\"* his|strong=\"H7971\"* private parts|strong=\"H3027\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H5869\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* her|strong=\"H7112\"* hand|strong=\"H3709\"*. Your|strong=\"H3808\"* eye|strong=\"H5869\"* shall|strong=\"H5869\"* have|strong=\"H5869\"* no|strong=\"H3808\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* have|strong=\"H1961\"* in|strong=\"H1419\"* your|strong=\"H1961\"* bag|strong=\"H3599\"* diverse weights, one|strong=\"H3808\"* heavy|strong=\"H1419\"* and|strong=\"H1419\"* one|strong=\"H3808\"* light." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* have|strong=\"H1961\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"* diverse measures, one|strong=\"H3808\"* large|strong=\"H1419\"* and|strong=\"H1419\"* one|strong=\"H3808\"* small|strong=\"H6996\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* and|strong=\"H3068\"* just|strong=\"H6664\"* weight. You|strong=\"H5414\"* shall|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* and|strong=\"H3068\"* just|strong=\"H6664\"* measure, that|strong=\"H3117\"* your|strong=\"H3068\"* days|strong=\"H3117\"* may|strong=\"H1961\"* be|strong=\"H1961\"* long|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H3605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* do|strong=\"H6213\"* unrighteously|strong=\"H5766\"*, are|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Remember|strong=\"H2142\"* what|strong=\"H6213\"* Amalek|strong=\"H6002\"* did|strong=\"H6213\"* to|strong=\"H3318\"* you|strong=\"H6213\"* by|strong=\"H1870\"* the|strong=\"H6213\"* way|strong=\"H1870\"* as|strong=\"H6213\"* you|strong=\"H6213\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 18, + "text": "how|strong=\"H1870\"* he|strong=\"H3605\"* met|strong=\"H7136\"* you|strong=\"H3605\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H1870\"* struck the|strong=\"H3605\"* rearmost of|strong=\"H1870\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1870\"* feeble|strong=\"H3808\"* behind you|strong=\"H3605\"*, when you|strong=\"H3605\"* were|strong=\"H1870\"* faint|strong=\"H5889\"* and|strong=\"H1870\"* weary|strong=\"H5889\"*; and|strong=\"H1870\"* he|strong=\"H3605\"* didn’t fear|strong=\"H3373\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3068\"* it|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* rest|strong=\"H5117\"* from|strong=\"H3423\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H8478\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* blot|strong=\"H4229\"* out|strong=\"H3423\"* the|strong=\"H3605\"* memory|strong=\"H2143\"* of|strong=\"H3068\"* Amalek|strong=\"H6002\"* from|strong=\"H3423\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* forget|strong=\"H7911\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* in|strong=\"H3427\"* to|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H5159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*, possess|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "that|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* take|strong=\"H3947\"* some|strong=\"H8033\"* of|strong=\"H3068\"* the|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H4725\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* bring|strong=\"H3947\"* in|strong=\"H1980\"* from|strong=\"H1980\"* your|strong=\"H3068\"* land|strong=\"H4725\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H1980\"* a|strong=\"H3068\"* basket|strong=\"H2935\"*, and|strong=\"H1980\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* shall|strong=\"H3068\"* choose|strong=\"H3947\"* to|strong=\"H1980\"* cause|strong=\"H5414\"* his|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H1980\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* shall|strong=\"H3548\"* come|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* who|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* tell|strong=\"H5046\"* him|strong=\"H5414\"*, “I|strong=\"H3588\"* profess|strong=\"H5046\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3588\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* our|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* the|strong=\"H6440\"* basket|strong=\"H2935\"* out|strong=\"H3947\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* set|strong=\"H3240\"* it|strong=\"H6440\"* down|strong=\"H3240\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* answer|strong=\"H6030\"* and|strong=\"H3068\"* say before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, “My|strong=\"H3068\"* father+ 26:5 or, forefather* was|strong=\"H3068\"* a|strong=\"H3068\"* Syrian ready to|strong=\"H3381\"* perish. He|strong=\"H8033\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* lived|strong=\"H1481\"* there|strong=\"H8033\"*, few|strong=\"H4592\"* in|strong=\"H3068\"* number|strong=\"H4962\"*. There|strong=\"H8033\"* he|strong=\"H8033\"* became|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"*, mighty|strong=\"H6099\"*, and|strong=\"H3068\"* populous|strong=\"H7227\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* Egyptians|strong=\"H4713\"* mistreated us|strong=\"H5414\"*, afflicted|strong=\"H6031\"* us|strong=\"H5414\"*, and|strong=\"H7186\"* imposed|strong=\"H5414\"* hard|strong=\"H7186\"* labor|strong=\"H5656\"* on|strong=\"H5921\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8085\"* we|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* our|strong=\"H3068\"* fathers. Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"* our|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* our|strong=\"H3068\"* affliction|strong=\"H6040\"*, our|strong=\"H3068\"* toil|strong=\"H5999\"*, and|strong=\"H3068\"* our|strong=\"H3068\"* oppression|strong=\"H3906\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* us|strong=\"H3027\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, with|strong=\"H3068\"* great|strong=\"H1419\"* terror|strong=\"H4172\"*, with|strong=\"H3068\"* signs, and|strong=\"H3068\"* with|strong=\"H3068\"* wonders|strong=\"H4159\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H2461\"* he|strong=\"H5414\"* has|strong=\"H2088\"* brought|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5414\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H2461\"* has|strong=\"H2088\"* given|strong=\"H5414\"* us|strong=\"H5414\"* this|strong=\"H2088\"* land|strong=\"H4725\"*, a|strong=\"H3068\"* land|strong=\"H4725\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* brought|strong=\"H5414\"* the|strong=\"H6440\"* first|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H6440\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, which|strong=\"H3068\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"*.” You|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* down|strong=\"H7812\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, you|strong=\"H5414\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"* who|strong=\"H3605\"* is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7646\"* finished|strong=\"H3615\"* tithing|strong=\"H4643\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H8141\"* your|strong=\"H3605\"* increase|strong=\"H8393\"* in|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, which|strong=\"H8179\"* is|strong=\"H3605\"* the|strong=\"H3605\"* year|strong=\"H8141\"* of|strong=\"H8141\"* tithing|strong=\"H4643\"*, then|strong=\"H5414\"* you|strong=\"H3588\"* shall|strong=\"H3881\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H8141\"* to|strong=\"H5414\"* the|strong=\"H3605\"* widow, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5414\"* eat within your|strong=\"H3605\"* gates|strong=\"H8179\"* and|strong=\"H8141\"* be|strong=\"H5414\"* filled|strong=\"H7646\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* say before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* put|strong=\"H5414\"* away|strong=\"H5674\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* out|strong=\"H4480\"* of|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* have|strong=\"H3068\"* given|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* Levite|strong=\"H3881\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3605\"* widow, according|strong=\"H4480\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* you|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* transgressed|strong=\"H5674\"* any|strong=\"H3605\"* of|strong=\"H1004\"* your|strong=\"H3068\"* commandments|strong=\"H4687\"*, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H5414\"* forgotten|strong=\"H7911\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* eaten|strong=\"H1197\"* of|strong=\"H3068\"* it|strong=\"H5414\"* in|strong=\"H3068\"* my|strong=\"H8085\"* mourning, neither|strong=\"H3808\"* have|strong=\"H3068\"* I|strong=\"H5414\"* removed|strong=\"H1197\"* any|strong=\"H3605\"* of|strong=\"H3068\"* it|strong=\"H5414\"* while|strong=\"H8085\"* I|strong=\"H5414\"* was|strong=\"H3068\"* unclean|strong=\"H2931\"*, nor|strong=\"H3808\"* given|strong=\"H5414\"* of|strong=\"H3068\"* it|strong=\"H5414\"* for|strong=\"H6213\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*. I|strong=\"H5414\"* have|strong=\"H3068\"* done|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Look|strong=\"H8259\"* down|strong=\"H8259\"* from|strong=\"H4480\"* your|strong=\"H5414\"* holy|strong=\"H6944\"* habitation|strong=\"H4583\"*, from|strong=\"H4480\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* bless|strong=\"H1288\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H5414\"* ground which|strong=\"H5971\"* you|strong=\"H5414\"* have|strong=\"H5971\"* given|strong=\"H5414\"* us|strong=\"H5414\"*, as|strong=\"H5971\"* you|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* our|strong=\"H5414\"* fathers, a|strong=\"H3068\"* land|strong=\"H8064\"* flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3478\"* honey|strong=\"H1706\"*.”" + }, + { + "verseNum": 16, + "text": "Today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commands|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H3068\"* do|strong=\"H6213\"* these|strong=\"H2088\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* keep|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3117\"* have|strong=\"H1961\"* declared|strong=\"H8085\"* today|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3117\"* you|strong=\"H3117\"* would|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*, keep|strong=\"H8104\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, his|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3212\"* his|strong=\"H8104\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* declared|strong=\"H1696\"* today|strong=\"H3117\"* that|strong=\"H5971\"* you|strong=\"H3605\"* are|strong=\"H3117\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H1961\"* possession|strong=\"H5459\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* that|strong=\"H5971\"* you|strong=\"H3605\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H5414\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H5971\"* he|strong=\"H6213\"* has|strong=\"H3068\"* made|strong=\"H6213\"*, in|strong=\"H5921\"* praise|strong=\"H8416\"*, in|strong=\"H5921\"* name|strong=\"H8034\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* honor|strong=\"H8597\"*, and|strong=\"H3068\"* that|strong=\"H5971\"* you|strong=\"H5414\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H6213\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Keep|strong=\"H8104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H5971\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H5414\"* day|strong=\"H3117\"* when|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* the|strong=\"H5414\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* set|strong=\"H5414\"* yourself|strong=\"H5414\"* up|strong=\"H6965\"* great|strong=\"H1419\"* stones, and|strong=\"H6965\"* coat|strong=\"H7874\"* them|strong=\"H5414\"* with|strong=\"H3068\"* plaster." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* them|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*, when|strong=\"H1696\"* you|strong=\"H5414\"* have|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3068\"* honey|strong=\"H1706\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* promised|strong=\"H1696\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6680\"* have|strong=\"H1961\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3117\"* Jordan|strong=\"H3383\"*, that|strong=\"H3117\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* set|strong=\"H6965\"* up|strong=\"H6965\"* these|strong=\"H6965\"* stones, which|strong=\"H2022\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, on|strong=\"H3117\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*, and|strong=\"H6965\"* you|strong=\"H6680\"* shall|strong=\"H3117\"* coat|strong=\"H7874\"* them|strong=\"H6680\"* with|strong=\"H3117\"* plaster." + }, + { + "verseNum": 5, + "text": "There|strong=\"H8033\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, an|strong=\"H1129\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* stones. You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* use|strong=\"H5130\"* any|strong=\"H3808\"* iron|strong=\"H1270\"* tool|strong=\"H5130\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"* of|strong=\"H3068\"* uncut|strong=\"H8003\"* stones. You|strong=\"H5921\"* shall|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* eat there|strong=\"H8033\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* shall|strong=\"H8451\"* write|strong=\"H3789\"* on|strong=\"H5921\"* the|strong=\"H3605\"* stones all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* very|strong=\"H3190\"* plainly.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, “Be|strong=\"H1961\"* silent|strong=\"H5535\"* and|strong=\"H4872\"* listen|strong=\"H8085\"*, Israel|strong=\"H3478\"*! Today|strong=\"H3117\"* you|strong=\"H3605\"* have|strong=\"H1961\"* become|strong=\"H1961\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* therefore|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H3068\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3068\"* statutes|strong=\"H2706\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 11, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* people|strong=\"H5971\"* the|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, saying," + }, + { + "verseNum": 12, + "text": "“These|strong=\"H5971\"* shall|strong=\"H5971\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"* to|strong=\"H5921\"* bless|strong=\"H1288\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, when|strong=\"H5674\"* you|strong=\"H5921\"* have|strong=\"H5971\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*: Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, Joseph|strong=\"H3130\"*, and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 13, + "text": "These shall|strong=\"H2022\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"* for|strong=\"H5921\"* the|strong=\"H5921\"* curse|strong=\"H7045\"*: Reuben|strong=\"H7205\"*, Gad|strong=\"H1410\"*, Asher, Zebulun|strong=\"H2074\"*, Dan|strong=\"H1835\"*, and|strong=\"H2022\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 14, + "text": "With|strong=\"H3478\"* a|strong=\"H3068\"* loud|strong=\"H7311\"* voice|strong=\"H6963\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3478\"* say|strong=\"H6963\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 15, + "text": "‘Cursed is|strong=\"H3068\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* makes|strong=\"H6213\"* an|strong=\"H6213\"* engraved or|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* craftsman|strong=\"H2796\"*, and|strong=\"H3068\"* sets|strong=\"H7760\"* it|strong=\"H7760\"* up|strong=\"H7760\"* in|strong=\"H3068\"* secret|strong=\"H5643\"*.’" + }, + { + "verseNum": 16, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* dishonors|strong=\"H7034\"* his|strong=\"H3605\"* father or|strong=\"H5971\"* his|strong=\"H3605\"* mother.’" + }, + { + "verseNum": 17, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* removes his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s landmark|strong=\"H1366\"*.’" + }, + { + "verseNum": 18, + "text": "‘Cursed is|strong=\"H1870\"* he|strong=\"H3605\"* who|strong=\"H3605\"* leads|strong=\"H7686\"* the|strong=\"H3605\"* blind|strong=\"H5787\"* astray|strong=\"H7686\"* on|strong=\"H1870\"* the|strong=\"H3605\"* road|strong=\"H1870\"*.’" + }, + { + "verseNum": 19, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* withholds justice|strong=\"H4941\"* from|strong=\"H5971\"* the|strong=\"H3605\"* foreigner|strong=\"H1616\"*, fatherless|strong=\"H3490\"*, and|strong=\"H4941\"* widow.’" + }, + { + "verseNum": 20, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3588\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"*+ 27:20 i.e., has sexual relations with* his|strong=\"H3605\"* father’s wife, because|strong=\"H3588\"* he|strong=\"H3588\"* dishonors his|strong=\"H3605\"* father’s bed|strong=\"H7901\"*.’" + }, + { + "verseNum": 21, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* any|strong=\"H3605\"* kind of|strong=\"H5971\"* animal.’" + }, + { + "verseNum": 22, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* sister, his|strong=\"H3605\"* father’s daughter|strong=\"H1323\"* or|strong=\"H5971\"* his|strong=\"H3605\"* mother’s daughter|strong=\"H1323\"*.’" + }, + { + "verseNum": 23, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* lies|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* mother-in-law.’" + }, + { + "verseNum": 24, + "text": "‘Cursed is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* secretly|strong=\"H5643\"* kills|strong=\"H5221\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*.’" + }, + { + "verseNum": 25, + "text": "‘Cursed is|strong=\"H5315\"* he|strong=\"H3605\"* who|strong=\"H3605\"* takes|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* to|strong=\"H5971\"* kill|strong=\"H5221\"* an|strong=\"H3947\"* innocent|strong=\"H5355\"* person|strong=\"H5315\"*.’" + }, + { + "verseNum": 26, + "text": "‘Cursed is|strong=\"H1697\"* he|strong=\"H6213\"* who|strong=\"H3605\"* doesn’t uphold the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* by|strong=\"H6965\"* doing|strong=\"H6213\"* them|strong=\"H6213\"*.’" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* set|strong=\"H5414\"* you|strong=\"H5414\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* these|strong=\"H8085\"* blessings|strong=\"H1293\"* will|strong=\"H3068\"* come upon|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H1288\"* shall|strong=\"H5892\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H5892\"* the|strong=\"H1288\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H1288\"* shall|strong=\"H5892\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H5892\"* the|strong=\"H1288\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* in|strong=\"H6629\"* the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* body, the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* ground, the|strong=\"H1288\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H1288\"* animals, the|strong=\"H1288\"* increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H1288\"* livestock, and|strong=\"H6629\"* the|strong=\"H1288\"* young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H1288\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H1288\"* basket|strong=\"H2935\"* and|strong=\"H2935\"* your|strong=\"H1288\"* kneading|strong=\"H4863\"* trough shall be|strong=\"H1288\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* when|strong=\"H3318\"* you|strong=\"H1288\"* come|strong=\"H3318\"* in|strong=\"H3318\"*, and|strong=\"H3318\"* you|strong=\"H1288\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* when|strong=\"H3318\"* you|strong=\"H1288\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* your|strong=\"H3068\"* enemies|strong=\"H6965\"* who|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H5414\"* to|strong=\"H3318\"* be|strong=\"H3068\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* you|strong=\"H5414\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* you|strong=\"H5414\"* one|strong=\"H7651\"* way|strong=\"H1870\"*, and|strong=\"H6965\"* will|strong=\"H3068\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* you|strong=\"H5414\"* seven|strong=\"H7651\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* command|strong=\"H6680\"* the|strong=\"H3605\"* blessing|strong=\"H1293\"* on|strong=\"H3027\"* you|strong=\"H5414\"* in|strong=\"H3068\"* your|strong=\"H3068\"* barns, and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H5414\"* put|strong=\"H5414\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* establish|strong=\"H6965\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* people|strong=\"H5971\"* to|strong=\"H1980\"* himself|strong=\"H3068\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1980\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H8104\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth shall|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* abundant prosperity|strong=\"H2896\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* body, in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* livestock, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground, in|strong=\"H5921\"* the|strong=\"H5921\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* open|strong=\"H6605\"* to|strong=\"H3068\"* you|strong=\"H5414\"* his|strong=\"H3605\"* good|strong=\"H2896\"* treasure in|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* rain|strong=\"H4306\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H8064\"* in|strong=\"H3068\"* its|strong=\"H3605\"* season|strong=\"H6256\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. You|strong=\"H5414\"* will|strong=\"H3068\"* lend|strong=\"H3867\"* to|strong=\"H3068\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* borrow|strong=\"H3867\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* the|strong=\"H8085\"* head|strong=\"H7218\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* the|strong=\"H8085\"* tail|strong=\"H2180\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* above|strong=\"H4605\"* only|strong=\"H7535\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* beneath|strong=\"H4295\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H8085\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* and|strong=\"H3068\"* to|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* any|strong=\"H3605\"* of|strong=\"H3117\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* after|strong=\"H3117\"* other|strong=\"H3605\"* gods to|strong=\"H3212\"* serve|strong=\"H5647\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* it|strong=\"H5921\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H6680\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* these|strong=\"H6213\"* curses|strong=\"H7045\"* will|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H6680\"* and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 16, + "text": "You will|strong=\"H5892\"* be|strong=\"H5892\"* cursed in|strong=\"H5892\"* the|strong=\"H5892\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you will|strong=\"H5892\"* be|strong=\"H5892\"* cursed in|strong=\"H5892\"* the|strong=\"H5892\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 17, + "text": "Your basket|strong=\"H2935\"* and|strong=\"H2935\"* your kneading|strong=\"H4863\"* trough will be cursed." + }, + { + "verseNum": 18, + "text": "The fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H6629\"* body, the fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H6629\"* ground, the increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H6629\"* livestock, and|strong=\"H6629\"* the young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H6629\"* flock|strong=\"H6629\"* will|strong=\"H6629\"* be cursed." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3318\"* will be|strong=\"H3318\"* cursed when|strong=\"H3318\"* you|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H3318\"*, and|strong=\"H3318\"* you|strong=\"H3318\"* will be|strong=\"H3318\"* cursed when|strong=\"H3318\"* you|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H3027\"* you|strong=\"H6440\"* cursing|strong=\"H3994\"*, confusion|strong=\"H4103\"*, and|strong=\"H3068\"* rebuke|strong=\"H4045\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* put|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H5704\"* do|strong=\"H6213\"*, until|strong=\"H5704\"* you|strong=\"H6440\"* are|strong=\"H3027\"* destroyed|strong=\"H8045\"* and|strong=\"H3068\"* until|strong=\"H5704\"* you|strong=\"H6440\"* perish quickly|strong=\"H4118\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, by|strong=\"H3027\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H3615\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* cling|strong=\"H1692\"* to|strong=\"H5704\"* you|strong=\"H5921\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* consumed|strong=\"H3615\"* you|strong=\"H5921\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land where|strong=\"H8033\"* you|strong=\"H5921\"* go|strong=\"H3068\"* in|strong=\"H5921\"* to|strong=\"H5704\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5704\"* with|strong=\"H3068\"* consumption|strong=\"H7829\"*, with|strong=\"H3068\"* fever|strong=\"H6920\"*, with|strong=\"H3068\"* inflammation|strong=\"H1816\"*, with|strong=\"H3068\"* fiery|strong=\"H2746\"* heat|strong=\"H2746\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* blight|strong=\"H7711\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* mildew|strong=\"H3420\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H5704\"* until|strong=\"H5704\"* you|strong=\"H5704\"* perish." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H5921\"* sky|strong=\"H8064\"* that|strong=\"H1961\"* is|strong=\"H7218\"* over|strong=\"H5921\"* your|strong=\"H5921\"* head|strong=\"H7218\"* will|strong=\"H1961\"* be|strong=\"H1961\"* bronze|strong=\"H5178\"*, and|strong=\"H8064\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* that|strong=\"H1961\"* is|strong=\"H7218\"* under|strong=\"H8478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5921\"* rain|strong=\"H4306\"* of|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H8064\"* powder|strong=\"H6083\"* and|strong=\"H3068\"* dust|strong=\"H6083\"*. It|strong=\"H5414\"* will|strong=\"H3068\"* come|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, until|strong=\"H5704\"* you|strong=\"H5414\"* are|strong=\"H8064\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3318\"* be|strong=\"H1961\"* struck|strong=\"H5062\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies. You|strong=\"H5414\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* one|strong=\"H3605\"* way|strong=\"H1870\"* against|strong=\"H6440\"* them|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* flee|strong=\"H5127\"* seven|strong=\"H7651\"* ways|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H1961\"* tossed back|strong=\"H3318\"* and|strong=\"H3068\"* forth|strong=\"H3318\"* among all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 26, + "text": "Your|strong=\"H3605\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* to|strong=\"H1961\"* all|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* to|strong=\"H1961\"* the|strong=\"H3605\"* animals|strong=\"H1961\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*; and|strong=\"H8064\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H1961\"* frighten|strong=\"H2729\"* them|strong=\"H1961\"* away|strong=\"H2729\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H3808\"* with|strong=\"H3068\"* the|strong=\"H5221\"* boils|strong=\"H7822\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* tumors|strong=\"H6076\"*, with|strong=\"H3068\"* the|strong=\"H5221\"* scurvy|strong=\"H1618\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H5221\"* itch|strong=\"H2775\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3808\"* can|strong=\"H3201\"* not|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5221\"* with|strong=\"H3068\"* madness|strong=\"H7697\"*, with|strong=\"H3068\"* blindness|strong=\"H5788\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* astonishment|strong=\"H8541\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* grope|strong=\"H4959\"* at|strong=\"H3117\"* noonday|strong=\"H6672\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* blind|strong=\"H5787\"* gropes|strong=\"H4959\"* in|strong=\"H3117\"* darkness, and|strong=\"H3117\"* you|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"* in|strong=\"H3117\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* only|strong=\"H3605\"* be|strong=\"H1961\"* oppressed|strong=\"H6231\"* and|strong=\"H3117\"* robbed|strong=\"H1497\"* always|strong=\"H3605\"*, and|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* to|strong=\"H1961\"* save|strong=\"H3467\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3808\"* will|strong=\"H1004\"* betroth a|strong=\"H3068\"* wife, and|strong=\"H1004\"* another|strong=\"H3808\"* man shall|strong=\"H1004\"* lie with|strong=\"H1004\"* her|strong=\"H1129\"*. You|strong=\"H3808\"* will|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* you|strong=\"H3808\"* won’t dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H1004\"* plant|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, and|strong=\"H1004\"* not|strong=\"H3808\"* use|strong=\"H2490\"* its|strong=\"H2490\"* fruit|strong=\"H2490\"*." + }, + { + "verseNum": 31, + "text": "Your|strong=\"H5414\"* ox|strong=\"H7794\"* will|strong=\"H5869\"* be|strong=\"H3808\"* slain|strong=\"H2873\"* before|strong=\"H6440\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, and|strong=\"H7725\"* you|strong=\"H5414\"* will|strong=\"H5869\"* not|strong=\"H3808\"* eat any|strong=\"H4480\"* of|strong=\"H6440\"* it|strong=\"H5414\"*. Your|strong=\"H5414\"* donkey|strong=\"H2543\"* will|strong=\"H5869\"* be|strong=\"H3808\"* violently taken|strong=\"H5414\"* away|strong=\"H7725\"* from|strong=\"H4480\"* before|strong=\"H6440\"* your|strong=\"H5414\"* face|strong=\"H6440\"*, and|strong=\"H7725\"* will|strong=\"H5869\"* not|strong=\"H3808\"* be|strong=\"H3808\"* restored|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"*. Your|strong=\"H5414\"* sheep|strong=\"H6629\"* will|strong=\"H5869\"* be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H7725\"* your|strong=\"H5414\"* enemies, and|strong=\"H7725\"* you|strong=\"H5414\"* will|strong=\"H5869\"* have|strong=\"H5869\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H7725\"* save|strong=\"H3467\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 32, + "text": "Your|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3605\"* daughters|strong=\"H1323\"* will|strong=\"H5971\"* be|strong=\"H3027\"* given|strong=\"H5414\"* to|strong=\"H5414\"* another|strong=\"H7200\"* people|strong=\"H5971\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H5971\"* look|strong=\"H7200\"* and|strong=\"H1121\"* fail|strong=\"H5414\"* with|strong=\"H3117\"* longing for|strong=\"H3027\"* them|strong=\"H5414\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*. There|strong=\"H3117\"* will|strong=\"H5971\"* be|strong=\"H3027\"* no|strong=\"H3605\"* power|strong=\"H3027\"* in|strong=\"H3117\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 33, + "text": "A|strong=\"H3068\"* nation|strong=\"H5971\"* which|strong=\"H5971\"* you|strong=\"H3605\"* don’t know|strong=\"H3045\"* will|strong=\"H1961\"* eat the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3117\"* your|strong=\"H3605\"* ground and|strong=\"H3117\"* all|strong=\"H3605\"* of|strong=\"H3117\"* your|strong=\"H3605\"* work|strong=\"H3018\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* only|strong=\"H7535\"* be|strong=\"H1961\"* oppressed|strong=\"H6231\"* and|strong=\"H3117\"* crushed|strong=\"H7533\"* always|strong=\"H3605\"*," + }, + { + "verseNum": 34, + "text": "so|strong=\"H1961\"* that|strong=\"H7200\"* the|strong=\"H7200\"* sights that|strong=\"H7200\"* you|strong=\"H7200\"* see|strong=\"H7200\"* with|strong=\"H5869\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* drive you|strong=\"H7200\"* mad|strong=\"H7696\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* knees|strong=\"H1290\"* and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* legs|strong=\"H7785\"* with|strong=\"H3068\"* a|strong=\"H3068\"* sore|strong=\"H7451\"* boil|strong=\"H7822\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5921\"* cannot|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* your|strong=\"H3068\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* the|strong=\"H5921\"* crown|strong=\"H6936\"* of|strong=\"H3068\"* your|strong=\"H3068\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3212\"* you|strong=\"H5921\"*, and|strong=\"H6965\"* your|strong=\"H3068\"* king|strong=\"H4428\"* whom you|strong=\"H5921\"* will|strong=\"H3068\"* set|strong=\"H6965\"* over|strong=\"H5921\"* yourselves|strong=\"H8033\"*, to|strong=\"H3068\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3045\"* you|strong=\"H5921\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, you|strong=\"H5921\"* nor|strong=\"H3808\"* your|strong=\"H3068\"* fathers. There|strong=\"H8033\"* you|strong=\"H5921\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* other gods of|strong=\"H4428\"* wood|strong=\"H6086\"* and|strong=\"H6965\"* stone." + }, + { + "verseNum": 37, + "text": "You|strong=\"H3605\"* will|strong=\"H3068\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* proverb|strong=\"H4912\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H8148\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lead|strong=\"H5090\"* you|strong=\"H3605\"* away|strong=\"H5090\"*." + }, + { + "verseNum": 38, + "text": "You|strong=\"H3588\"* will|strong=\"H7704\"* carry|strong=\"H3318\"* much|strong=\"H7227\"* seed|strong=\"H2233\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* will|strong=\"H7704\"* gather little|strong=\"H4592\"* in|strong=\"H7227\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* locust will|strong=\"H7704\"* consume|strong=\"H2628\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 39, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* and|strong=\"H8354\"* dress|strong=\"H5647\"* them|strong=\"H5647\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* neither|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H5647\"* the|strong=\"H3588\"* wine|strong=\"H3196\"*, nor|strong=\"H3808\"* harvest, because|strong=\"H3588\"* worms|strong=\"H8438\"* will|strong=\"H3808\"* eat them|strong=\"H5647\"*." + }, + { + "verseNum": 40, + "text": "You|strong=\"H3588\"* will|strong=\"H1961\"* have|strong=\"H1961\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* borders|strong=\"H1366\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* won’t anoint|strong=\"H5480\"* yourself with|strong=\"H3605\"* the|strong=\"H3605\"* oil|strong=\"H8081\"*, for|strong=\"H3588\"* your|strong=\"H3605\"* olives|strong=\"H2132\"* will|strong=\"H1961\"* drop|strong=\"H5394\"* off|strong=\"H5394\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H3588\"* will|strong=\"H1961\"* father|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* yours, for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"*." + }, + { + "verseNum": 42, + "text": "Locusts will|strong=\"H6529\"* consume|strong=\"H3423\"* all|strong=\"H3605\"* of|strong=\"H6086\"* your|strong=\"H3605\"* trees|strong=\"H6086\"* and|strong=\"H6086\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H6086\"* your|strong=\"H3605\"* ground." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5921\"* foreigner|strong=\"H1616\"* who|strong=\"H1616\"* is|strong=\"H7130\"* among|strong=\"H7130\"* you|strong=\"H5921\"* will|strong=\"H3381\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* above|strong=\"H4605\"* you|strong=\"H5921\"* higher|strong=\"H4605\"* and|strong=\"H3381\"* higher|strong=\"H4605\"*, and|strong=\"H3381\"* you|strong=\"H5921\"* will|strong=\"H3381\"* come|strong=\"H5927\"* down|strong=\"H3381\"* lower|strong=\"H4295\"* and|strong=\"H3381\"* lower|strong=\"H4295\"*." + }, + { + "verseNum": 44, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* lend|strong=\"H3867\"* to|strong=\"H1961\"* you|strong=\"H3808\"*, and|strong=\"H7218\"* you|strong=\"H3808\"* won’t lend|strong=\"H3867\"* to|strong=\"H1961\"* him|strong=\"H1931\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* you|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* tail|strong=\"H2180\"*." + }, + { + "verseNum": 45, + "text": "All|strong=\"H3605\"* these|strong=\"H8085\"* curses|strong=\"H7045\"* will|strong=\"H3068\"* come on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"* and|strong=\"H3068\"* overtake|strong=\"H5381\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H5704\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 46, + "text": "They|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* and|strong=\"H5769\"* for|strong=\"H5704\"* a|strong=\"H3068\"* wonder|strong=\"H4159\"* to|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H5769\"* to|strong=\"H5704\"* your|strong=\"H1961\"* offspring|strong=\"H2233\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 47, + "text": "Because|strong=\"H8478\"* you|strong=\"H3605\"* didn’t serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* joyfulness|strong=\"H8057\"* and|strong=\"H3068\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*, by|strong=\"H3068\"* reason of|strong=\"H3068\"* the|strong=\"H3605\"* abundance|strong=\"H7230\"* of|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 48, + "text": "therefore|strong=\"H5921\"* you|strong=\"H5414\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* your|strong=\"H3068\"* enemies whom Yahweh|strong=\"H3068\"* sends|strong=\"H7971\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, in|strong=\"H5921\"* hunger|strong=\"H7458\"*, in|strong=\"H5921\"* thirst|strong=\"H6772\"*, in|strong=\"H5921\"* nakedness|strong=\"H5903\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* lack|strong=\"H2640\"* of|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*. He|strong=\"H5704\"* will|strong=\"H3068\"* put|strong=\"H5414\"* an|strong=\"H5414\"* iron|strong=\"H1270\"* yoke|strong=\"H5923\"* on|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 49, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5375\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* against|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* far|strong=\"H7350\"* away|strong=\"H5375\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth, as|strong=\"H3068\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"* flies|strong=\"H1675\"*: a|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* language|strong=\"H3956\"* you|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* understand|strong=\"H8085\"*," + }, + { + "verseNum": 50, + "text": "a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H6440\"* fierce|strong=\"H5794\"* facial expressions, that|strong=\"H1471\"* doesn’t respect|strong=\"H5375\"* the|strong=\"H6440\"* elderly, nor|strong=\"H3808\"* show|strong=\"H5375\"* favor|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H5288\"*." + }, + { + "verseNum": 51, + "text": "They|strong=\"H3808\"* will|strong=\"H3808\"* eat the|strong=\"H5704\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H3808\"* livestock and|strong=\"H6629\"* the|strong=\"H5704\"* fruit|strong=\"H6529\"* of|strong=\"H6629\"* your|strong=\"H3808\"* ground, until|strong=\"H5704\"* you|strong=\"H5704\"* are|strong=\"H3808\"* destroyed|strong=\"H8045\"*. They|strong=\"H3808\"* also won’t leave|strong=\"H7604\"* you|strong=\"H5704\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, oil|strong=\"H3323\"*, the|strong=\"H5704\"* increase|strong=\"H7698\"* of|strong=\"H6629\"* your|strong=\"H3808\"* livestock, or|strong=\"H3808\"* the|strong=\"H5704\"* young|strong=\"H6251\"* of|strong=\"H6629\"* your|strong=\"H3808\"* flock|strong=\"H6629\"*, until|strong=\"H5704\"* they|strong=\"H3808\"* have|strong=\"H7604\"* caused you|strong=\"H5704\"* to|strong=\"H5704\"* perish." + }, + { + "verseNum": 52, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* besiege|strong=\"H6887\"* you|strong=\"H5414\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* until|strong=\"H5704\"* your|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H3068\"* fortified|strong=\"H1219\"* walls|strong=\"H2346\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5414\"* trusted come|strong=\"H3381\"* down|strong=\"H3381\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3068\"* land. They|strong=\"H3068\"* will|strong=\"H3068\"* besiege|strong=\"H6887\"* you|strong=\"H5414\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* gates|strong=\"H8179\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3068\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 53, + "text": "You|strong=\"H5414\"* will|strong=\"H3068\"* eat the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* your|strong=\"H3068\"* own body|strong=\"H1320\"*, the|strong=\"H5414\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"*, whom Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H5414\"* distress|strong=\"H6693\"* with|strong=\"H3068\"* which|strong=\"H3068\"* your|strong=\"H3068\"* enemies will|strong=\"H3068\"* distress|strong=\"H6693\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 54, + "text": "The|strong=\"H5869\"* man|strong=\"H1121\"* who|strong=\"H1121\"* is|strong=\"H1121\"* tender|strong=\"H7390\"* among you|strong=\"H7489\"*, and|strong=\"H1121\"* very|strong=\"H3966\"* delicate|strong=\"H6028\"*, his|strong=\"H5869\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H1121\"* evil|strong=\"H7489\"* toward his|strong=\"H5869\"* brother, toward the|strong=\"H5869\"* wife whom|strong=\"H5869\"* he|strong=\"H1121\"* loves, and|strong=\"H1121\"* toward the|strong=\"H5869\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* his|strong=\"H5869\"* children|strong=\"H1121\"* whom|strong=\"H5869\"* he|strong=\"H1121\"* has|strong=\"H5869\"* remaining|strong=\"H3498\"*," + }, + { + "verseNum": 55, + "text": "so|strong=\"H5414\"* that|strong=\"H3605\"* he|strong=\"H3605\"* will|strong=\"H1121\"* not|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* any|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"* whom|strong=\"H1992\"* he|strong=\"H3605\"* will|strong=\"H1121\"* eat, because|strong=\"H1097\"* he|strong=\"H3605\"* has|strong=\"H3605\"* nothing|strong=\"H3605\"* left|strong=\"H7604\"* to|strong=\"H5414\"* him|strong=\"H5414\"*, in|strong=\"H1320\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1320\"* the|strong=\"H3605\"* distress|strong=\"H6693\"* with|strong=\"H1320\"* which|strong=\"H1992\"* your|strong=\"H3605\"* enemy will|strong=\"H1121\"* distress|strong=\"H6693\"* you|strong=\"H5414\"* in|strong=\"H1320\"* all|strong=\"H3605\"* your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 56, + "text": "The|strong=\"H5921\"* tender|strong=\"H7390\"* and|strong=\"H1121\"* delicate|strong=\"H6028\"* woman|strong=\"H1323\"* among|strong=\"H5921\"* you|strong=\"H5921\"*, who|strong=\"H1121\"* would not|strong=\"H3808\"* venture|strong=\"H5254\"* to|strong=\"H5921\"* set|strong=\"H3322\"* the|strong=\"H5921\"* sole|strong=\"H3709\"* of|strong=\"H1121\"* her|strong=\"H5921\"* foot|strong=\"H7272\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground for|strong=\"H5921\"* delicateness|strong=\"H6026\"* and|strong=\"H1121\"* tenderness|strong=\"H7391\"*, her|strong=\"H5921\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H3808\"* evil|strong=\"H7489\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* husband that|strong=\"H1121\"* she|strong=\"H5921\"* loves, toward|strong=\"H5921\"* her|strong=\"H5921\"* son|strong=\"H1121\"*, toward|strong=\"H5921\"* her|strong=\"H5921\"* daughter|strong=\"H1323\"*," + }, + { + "verseNum": 57, + "text": "toward|strong=\"H3318\"* her|strong=\"H3605\"* young|strong=\"H1121\"* one|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* between her|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* toward|strong=\"H3318\"* her|strong=\"H3605\"* children|strong=\"H1121\"* whom|strong=\"H3588\"* she|strong=\"H3588\"* bears|strong=\"H3205\"*; for|strong=\"H3588\"* she|strong=\"H3588\"* will|strong=\"H1121\"* eat them|strong=\"H3318\"* secretly|strong=\"H5643\"* for|strong=\"H3588\"* lack|strong=\"H2640\"* of|strong=\"H1121\"* all|strong=\"H3605\"* things|strong=\"H3605\"* in|strong=\"H1121\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3605\"* distress|strong=\"H6693\"* with|strong=\"H3318\"* which|strong=\"H8179\"* your|strong=\"H3605\"* enemy will|strong=\"H1121\"* distress|strong=\"H6693\"* you|strong=\"H3588\"* in|strong=\"H1121\"* your|strong=\"H3605\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 58, + "text": "If you|strong=\"H3605\"* will|strong=\"H3068\"* not|strong=\"H3808\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* law|strong=\"H8451\"* that|strong=\"H3605\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* fear|strong=\"H3372\"* this|strong=\"H2088\"* glorious|strong=\"H3513\"* and|strong=\"H3068\"* fearful|strong=\"H3372\"* name|strong=\"H8034\"*, YAHWEH|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 59, + "text": "then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6381\"* your|strong=\"H3068\"* plagues|strong=\"H4347\"* and|strong=\"H3068\"* the|strong=\"H3068\"* plagues|strong=\"H4347\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* fearful, even|strong=\"H3068\"* great|strong=\"H1419\"* plagues|strong=\"H4347\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* long|strong=\"H1419\"* duration, and|strong=\"H3068\"* severe|strong=\"H1419\"* sicknesses|strong=\"H2483\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* long|strong=\"H1419\"* duration." + }, + { + "verseNum": 60, + "text": "He|strong=\"H3605\"* will|strong=\"H4714\"* bring|strong=\"H7725\"* on|strong=\"H6440\"* you|strong=\"H6440\"* again|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* diseases|strong=\"H4064\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, which|strong=\"H3605\"* you|strong=\"H6440\"* were|strong=\"H4714\"* afraid|strong=\"H3025\"* of|strong=\"H6440\"*; and|strong=\"H7725\"* they|strong=\"H3605\"* will|strong=\"H4714\"* cling|strong=\"H1692\"* to|strong=\"H7725\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 61, + "text": "Also|strong=\"H1571\"* every|strong=\"H3605\"* sickness|strong=\"H2483\"* and|strong=\"H3068\"* every|strong=\"H3605\"* plague|strong=\"H4347\"* which|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3808\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* them|strong=\"H5921\"* on|strong=\"H5921\"* you|strong=\"H3605\"* until|strong=\"H5704\"* you|strong=\"H3605\"* are|strong=\"H3068\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 62, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* left|strong=\"H7604\"* few|strong=\"H4592\"* in|strong=\"H3068\"* number|strong=\"H7230\"*, even|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H8085\"* stars|strong=\"H3556\"* of|strong=\"H3068\"* the|strong=\"H8085\"* sky|strong=\"H8064\"* for|strong=\"H3588\"* multitude|strong=\"H7230\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*." + }, + { + "verseNum": 63, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* rejoiced|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H5921\"* good|strong=\"H3190\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* multiply|strong=\"H7235\"* you|strong=\"H5921\"*, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3068\"* cause|strong=\"H3651\"* you|strong=\"H5921\"* to|strong=\"H3068\"* perish and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H5921\"*. You|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* plucked|strong=\"H5255\"* from|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3068\"* you|strong=\"H5921\"* are|strong=\"H3068\"* going in|strong=\"H5921\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 64, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* scatter|strong=\"H6327\"* you|strong=\"H3605\"* among|strong=\"H5971\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*, from|strong=\"H5704\"* one|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth to|strong=\"H5704\"* the|strong=\"H3605\"* other|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth. There|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* other|strong=\"H3605\"* gods which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, you|strong=\"H3605\"* nor|strong=\"H3808\"* your|strong=\"H3068\"* fathers, even|strong=\"H5704\"* wood|strong=\"H6086\"* and|strong=\"H3068\"* stone." + }, + { + "verseNum": 65, + "text": "Among|strong=\"H3808\"* these|strong=\"H1992\"* nations|strong=\"H1471\"* you|strong=\"H5414\"* will|strong=\"H3068\"* find|strong=\"H7280\"* no|strong=\"H3808\"* ease|strong=\"H7280\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* rest|strong=\"H4494\"* for|strong=\"H3068\"* the|strong=\"H5414\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* your|strong=\"H3068\"* foot|strong=\"H7272\"*; but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* there|strong=\"H8033\"* a|strong=\"H3068\"* trembling|strong=\"H7268\"* heart|strong=\"H3820\"*, failing|strong=\"H3631\"* of|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* pining of|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 66, + "text": "Your|strong=\"H1961\"* life|strong=\"H2416\"* will|strong=\"H1961\"* hang|strong=\"H8511\"* in|strong=\"H3808\"* doubt before|strong=\"H5048\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"* night|strong=\"H3915\"* and|strong=\"H3119\"* day|strong=\"H3119\"*, and|strong=\"H3119\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H3808\"* assurance of|strong=\"H5048\"* your|strong=\"H1961\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 67, + "text": "In|strong=\"H5414\"* the|strong=\"H7200\"* morning|strong=\"H1242\"* you|strong=\"H5414\"* will|strong=\"H4310\"* say, “I|strong=\"H5414\"* wish|strong=\"H4310\"* it|strong=\"H5414\"* were|strong=\"H5869\"* evening|strong=\"H6153\"*!” and|strong=\"H5869\"* at|strong=\"H7200\"* evening|strong=\"H6153\"* you|strong=\"H5414\"* will|strong=\"H4310\"* say, “I|strong=\"H5414\"* wish|strong=\"H4310\"* it|strong=\"H5414\"* were|strong=\"H5869\"* morning|strong=\"H1242\"*!” for|strong=\"H5869\"* the|strong=\"H7200\"* fear|strong=\"H6343\"* of|strong=\"H5869\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* which|strong=\"H4310\"* you|strong=\"H5414\"* will|strong=\"H4310\"* fear|strong=\"H6343\"*, and|strong=\"H5869\"* for|strong=\"H5869\"* the|strong=\"H7200\"* sights which|strong=\"H4310\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4310\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 68, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H7725\"* into|strong=\"H7725\"* Egypt|strong=\"H4714\"* again|strong=\"H7725\"* with|strong=\"H3068\"* ships, by|strong=\"H3068\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H4714\"* told you|strong=\"H7725\"* that|strong=\"H7200\"* you|strong=\"H7725\"* would|strong=\"H3068\"* never|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H7725\"* again|strong=\"H7725\"*. There|strong=\"H8033\"* you|strong=\"H7725\"* will|strong=\"H3068\"* offer|strong=\"H4376\"* yourselves|strong=\"H8033\"* to|strong=\"H7725\"* your|strong=\"H3068\"* enemies for|strong=\"H4714\"* male|strong=\"H5650\"* and|strong=\"H3068\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"*, and|strong=\"H3068\"* nobody|strong=\"H3808\"* will|strong=\"H3068\"* buy|strong=\"H7069\"* you|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H6213\"* are|strong=\"H3478\"* the|strong=\"H3605\"* words of|strong=\"H3068\"* the|strong=\"H3605\"* covenant which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded Moses|strong=\"H4872\"* to|strong=\"H3478\"* make|strong=\"H6213\"* with|strong=\"H3068\"* the|strong=\"H3605\"* children of|strong=\"H3068\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Moab, in|strong=\"H3478\"* addition to|strong=\"H3478\"* the|strong=\"H3605\"* covenant which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H3068\"* them|strong=\"H6213\"* in|strong=\"H3478\"* Horeb." + }, + { + "verseNum": 2, + "text": "Moses called to|strong=\"H7200\"* all|strong=\"H7200\"* Israel, and|strong=\"H1419\"* said to|strong=\"H7200\"* them|strong=\"H1992\"*:" + }, + { + "verseNum": 3, + "text": "the|strong=\"H8085\"* great trials which|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"*, the|strong=\"H8085\"* signs, and|strong=\"H3068\"* those|strong=\"H8085\"* great wonders." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* has|strong=\"H7272\"* not|strong=\"H3808\"* given you|strong=\"H5921\"* a|strong=\"H3068\"* heart to|strong=\"H3212\"* know, eyes to|strong=\"H3212\"* see, and|strong=\"H3212\"* ears to|strong=\"H3212\"* hear, to|strong=\"H3212\"* this|strong=\"H3212\"* day." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* led|strong=\"H3068\"* you|strong=\"H3588\"* forty years in|strong=\"H3068\"* the|strong=\"H3588\"* wilderness. Your|strong=\"H3068\"* clothes have|strong=\"H3068\"* not|strong=\"H3808\"* grown old on|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* sandals have|strong=\"H3068\"* not|strong=\"H3808\"* grown old on|strong=\"H3068\"* your|strong=\"H3068\"* feet." + }, + { + "verseNum": 6, + "text": "You|strong=\"H5221\"* have|strong=\"H4428\"* not|strong=\"H2088\"* eaten bread, neither have|strong=\"H4428\"* you|strong=\"H5221\"* drunk wine or|strong=\"H4428\"* strong drink, that|strong=\"H4428\"* you|strong=\"H5221\"* may|strong=\"H4428\"* know that|strong=\"H4428\"* I|strong=\"H2088\"* am Yahweh|strong=\"H3068\"* your|strong=\"H3318\"* God." + }, + { + "verseNum": 7, + "text": "When you|strong=\"H5414\"* came to|strong=\"H5414\"* this|strong=\"H5414\"* place|strong=\"H5414\"*, Sihon the|strong=\"H5414\"* king of|strong=\"H7626\"* Heshbon and|strong=\"H3947\"* Og the|strong=\"H5414\"* king of|strong=\"H7626\"* Bashan came out|strong=\"H5414\"* against us|strong=\"H5414\"* to|strong=\"H5414\"* battle, and|strong=\"H3947\"* we|strong=\"H3068\"* struck them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "We|strong=\"H6213\"* took their|strong=\"H3605\"* land, and|strong=\"H6213\"* gave|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* an|strong=\"H6213\"* inheritance to|strong=\"H6213\"* the|strong=\"H3605\"* Reubenites, and|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* Gadites, and|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* half-tribe of|strong=\"H1697\"* the|strong=\"H3605\"* Manassites." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3068\"* keep the|strong=\"H3605\"* words of|strong=\"H3068\"* this|strong=\"H6440\"* covenant and|strong=\"H3478\"* do|strong=\"H3068\"* them|strong=\"H6440\"*, that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H3068\"* prosper in|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* do|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H5704\"* of|strong=\"H4325\"* you|strong=\"H5704\"* stand today in|strong=\"H7130\"* the|strong=\"H5704\"* presence|strong=\"H7130\"* of|strong=\"H4325\"* Yahweh|strong=\"H3068\"* your|strong=\"H5704\"* God: your|strong=\"H5704\"* heads, your|strong=\"H5704\"* tribes, your|strong=\"H5704\"* elders, and|strong=\"H6086\"* your|strong=\"H5704\"* officers, even|strong=\"H5704\"* all|strong=\"H5704\"* the|strong=\"H5704\"* men|strong=\"H4264\"* of|strong=\"H4325\"* Israel," + }, + { + "verseNum": 11, + "text": "your|strong=\"H3068\"* little ones, your|strong=\"H3068\"* wives, and|strong=\"H3068\"* the|strong=\"H3068\"* foreigners who|strong=\"H3068\"* are|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3068\"* middle of|strong=\"H3068\"* your|strong=\"H3068\"* camps, from|strong=\"H3772\"* the|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* cuts|strong=\"H3772\"* your|strong=\"H3068\"* wood to|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* draws your|strong=\"H3068\"* water," + }, + { + "verseNum": 12, + "text": "that|strong=\"H5971\"* you|strong=\"H3117\"* may|strong=\"H1961\"* enter into|strong=\"H1961\"* the|strong=\"H3117\"* covenant|strong=\"H7650\"* of|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God, and|strong=\"H6965\"* into|strong=\"H1961\"* his|strong=\"H1961\"* oath|strong=\"H7650\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* your|strong=\"H1961\"* God makes|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3117\"* today|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H3808\"* he|strong=\"H3808\"* may|strong=\"H1285\"* establish you|strong=\"H3808\"* today as his|strong=\"H3808\"* people|strong=\"H3808\"*, and|strong=\"H1285\"* that|strong=\"H3808\"* he|strong=\"H3808\"* may|strong=\"H1285\"* be|strong=\"H3808\"* your|strong=\"H3808\"* God|strong=\"H3808\"*, as he|strong=\"H3808\"* spoke to|strong=\"H3808\"* you|strong=\"H3808\"* and|strong=\"H1285\"* as he|strong=\"H3808\"* swore to|strong=\"H3808\"* your|strong=\"H3808\"* fathers, to|strong=\"H3808\"* Abraham, to|strong=\"H3808\"* Isaac, and|strong=\"H1285\"* to|strong=\"H3808\"* Jacob." + }, + { + "verseNum": 14, + "text": "Neither|strong=\"H5973\"* do|strong=\"H3068\"* I|strong=\"H3588\"* make|strong=\"H5975\"* this|strong=\"H3588\"* covenant and|strong=\"H3068\"* this|strong=\"H3588\"* oath with|strong=\"H5973\"* you|strong=\"H3588\"* only|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* stand|strong=\"H3427\"* here with|strong=\"H3427\"* us|strong=\"H3045\"* today before|strong=\"H5674\"* Yahweh|strong=\"H3068\"* our|strong=\"H3588\"* God, and|strong=\"H4714\"* also|strong=\"H1471\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* are|strong=\"H1471\"* not|strong=\"H3045\"* here with|strong=\"H3427\"* us|strong=\"H3045\"* today" + }, + { + "verseNum": 16, + "text": "(for|strong=\"H6086\"* you|strong=\"H5973\"* know how we|strong=\"H3068\"* lived in|strong=\"H6086\"* the|strong=\"H7200\"* land of|strong=\"H6086\"* Egypt, and|strong=\"H3701\"* how we|strong=\"H3068\"* came through|strong=\"H7200\"* the|strong=\"H7200\"* middle of|strong=\"H6086\"* the|strong=\"H7200\"* nations through|strong=\"H7200\"* which|strong=\"H6086\"* you|strong=\"H5973\"* passed;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H3426\"* seen their|strong=\"H3068\"* abominations and|strong=\"H3068\"* their|strong=\"H3068\"* idols of|strong=\"H3068\"* wood, stone, silver, and|strong=\"H3068\"* gold, which|strong=\"H3068\"* were|strong=\"H3117\"* among|strong=\"H5973\"* them|strong=\"H1992\"*);" + }, + { + "verseNum": 18, + "text": "lest|strong=\"H4616\"* there|strong=\"H1961\"* should|strong=\"H3588\"* be|strong=\"H1961\"* among you|strong=\"H3588\"* man|strong=\"H6771\"*, woman, family, or|strong=\"H8085\"* tribe whose heart|strong=\"H3820\"* turns away|strong=\"H3212\"* today from|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H1288\"* God, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* serve|strong=\"H1961\"* the|strong=\"H8085\"* gods of|strong=\"H1697\"* those|strong=\"H8085\"* nations; lest|strong=\"H4616\"* there|strong=\"H1961\"* should|strong=\"H3588\"* be|strong=\"H1961\"* among you|strong=\"H3588\"* a|strong=\"H3068\"* root that|strong=\"H3588\"* produces bitter poison;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* it|strong=\"H1931\"* happen, when|strong=\"H3588\"* he|strong=\"H1931\"* hears the|strong=\"H3605\"* words of|strong=\"H3068\"* this|strong=\"H2088\"* curse, that|strong=\"H3588\"* he|strong=\"H1931\"* bless himself|strong=\"H1931\"* in|strong=\"H3068\"* his|strong=\"H3605\"* heart, saying, “I|strong=\"H3588\"* shall|strong=\"H3068\"* have|strong=\"H3068\"* peace, though|strong=\"H3588\"* I|strong=\"H3588\"* walk in|strong=\"H3068\"* the|strong=\"H3605\"* stubbornness of|strong=\"H3068\"* my|strong=\"H3605\"* heart,” to|strong=\"H3068\"* destroy|strong=\"H4229\"* the|strong=\"H3605\"* moist with|strong=\"H3068\"* the|strong=\"H3605\"* dry." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H2088\"* pardon him|strong=\"H3605\"*, but|strong=\"H7451\"* then|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s anger and|strong=\"H3478\"* his|strong=\"H3605\"* jealousy will|strong=\"H3068\"* smoke against|strong=\"H3068\"* that|strong=\"H3605\"* man|strong=\"H7451\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* curse that|strong=\"H3605\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3478\"* this|strong=\"H2088\"* book|strong=\"H5612\"* will|strong=\"H3068\"* fall on|strong=\"H3068\"* him|strong=\"H3605\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* blot out|strong=\"H3605\"* his|strong=\"H3605\"* name from|strong=\"H3478\"* under|strong=\"H3605\"* the|strong=\"H3605\"* sky." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* set|strong=\"H6965\"* him|strong=\"H7200\"* apart for|strong=\"H3068\"* evil out|strong=\"H7200\"* of|strong=\"H1121\"* all|strong=\"H1755\"* the|strong=\"H7200\"* tribes of|strong=\"H1121\"* Israel, according to|strong=\"H3068\"* all|strong=\"H1755\"* the|strong=\"H7200\"* curses of|strong=\"H1121\"* the|strong=\"H7200\"* covenant written in|strong=\"H3068\"* this|strong=\"H1931\"* book of|strong=\"H1121\"* the|strong=\"H7200\"* law." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* generation to|strong=\"H3068\"* come|strong=\"H5927\"*—your|strong=\"H3068\"* children who|strong=\"H3605\"* will|strong=\"H3068\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigner who|strong=\"H3605\"* will|strong=\"H3068\"* come|strong=\"H5927\"* from|strong=\"H5927\"* a|strong=\"H3068\"* far|strong=\"H5927\"* land—will|strong=\"H3068\"* say, when|strong=\"H3068\"* they|strong=\"H3068\"* see the|strong=\"H3605\"* plagues of|strong=\"H3068\"* that|strong=\"H3605\"* land, and|strong=\"H3068\"* the|strong=\"H3605\"* sicknesses with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6779\"* it|strong=\"H5927\"* sick," + }, + { + "verseNum": 23, + "text": "that|strong=\"H3605\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* land is|strong=\"H3068\"* sulfur, salt, and|strong=\"H3068\"* burning, that|strong=\"H3605\"* it|strong=\"H5921\"* is|strong=\"H3068\"* not|strong=\"H6213\"* sown, doesn’t produce|strong=\"H6213\"*, nor does|strong=\"H6213\"* any|strong=\"H3605\"* grass grow in|strong=\"H5921\"* it|strong=\"H5921\"*, like|strong=\"H6213\"* the|strong=\"H3605\"* overthrow of|strong=\"H3068\"* Sodom, Gomorrah, Admah, and|strong=\"H3068\"* Zeboiim, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* overthrew in|strong=\"H5921\"* his|strong=\"H3605\"* anger, and|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3605\"* wrath." + }, + { + "verseNum": 24, + "text": "Even|strong=\"H3068\"* all|strong=\"H3772\"* the|strong=\"H5921\"* nations will|strong=\"H3068\"* say, “Why|strong=\"H5921\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done this|strong=\"H3068\"* to|strong=\"H3318\"* this|strong=\"H3068\"* land? What|strong=\"H5921\"* does|strong=\"H3068\"* the|strong=\"H5921\"* heat of|strong=\"H3068\"* this|strong=\"H3068\"* great anger mean?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3045\"* men will|strong=\"H3808\"* say, “Because they|strong=\"H3808\"* abandoned the|strong=\"H5647\"* covenant of|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5647\"* God|strong=\"H3808\"* of|strong=\"H5647\"* their|strong=\"H5647\"* fathers, which he|strong=\"H3808\"* made|strong=\"H3045\"* with|strong=\"H3045\"* them|strong=\"H5647\"* when|strong=\"H3045\"* he|strong=\"H3808\"* brought|strong=\"H3212\"* them|strong=\"H5647\"* out|strong=\"H3045\"* of|strong=\"H5647\"* the|strong=\"H5647\"* land of|strong=\"H5647\"* Egypt," + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* went|strong=\"H3068\"* and|strong=\"H3068\"* served other|strong=\"H2088\"* gods and|strong=\"H3068\"* worshiped them|strong=\"H5921\"*, gods that|strong=\"H3605\"* they|strong=\"H3068\"* didn’t know and|strong=\"H3068\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H3068\"* not|strong=\"H2088\"* given to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H2534\"* burned against|strong=\"H5921\"* this|strong=\"H2088\"* land, to|strong=\"H3068\"* bring on|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H1419\"* the|strong=\"H5921\"* curses that|strong=\"H3117\"* are|strong=\"H3117\"* written in|strong=\"H5921\"* this|strong=\"H2088\"* book." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"* rooted them|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1121\"* their|strong=\"H3605\"* land in|strong=\"H3068\"* anger, in|strong=\"H3068\"* wrath, and|strong=\"H1121\"* in|strong=\"H3068\"* great|strong=\"H6213\"* indignation, and|strong=\"H1121\"* thrust them|strong=\"H6213\"* into|strong=\"H1540\"* another land, as|strong=\"H5704\"* it|strong=\"H6213\"* is|strong=\"H3068\"* today.”" + }, + { + "verseNum": 29, + "text": "The secret things belong to Yahweh|strong=\"H3068\"* our God; but the things that are revealed belong to us and to our children forever, that we|strong=\"H3068\"* may do all the words of this law." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H1697\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, the|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H3068\"* the|strong=\"H3605\"* curse|strong=\"H7045\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7725\"* them|strong=\"H5414\"* to|strong=\"H7725\"* mind|strong=\"H3824\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* driven|strong=\"H5080\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H1121\"* obey|strong=\"H8085\"* his|strong=\"H3605\"* voice|strong=\"H6963\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, you|strong=\"H6680\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H5971\"* then|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* release you|strong=\"H3605\"* from|strong=\"H7725\"* captivity|strong=\"H7622\"*, have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* scattered|strong=\"H6327\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H1961\"* your|strong=\"H3068\"* outcasts|strong=\"H5080\"* are|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3947\"* uttermost|strong=\"H7097\"* parts|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3947\"* heavens|strong=\"H8064\"*, from|strong=\"H3947\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3947\"*, and|strong=\"H3068\"* from|strong=\"H3947\"* there|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H3068\"* bring|strong=\"H3947\"* you|strong=\"H3947\"* back|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* bring you|strong=\"H3190\"* into|strong=\"H3423\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* your|strong=\"H3068\"* fathers possessed|strong=\"H3423\"*, and|strong=\"H3068\"* you|strong=\"H3190\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H3423\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H3190\"* good|strong=\"H3190\"*, and|strong=\"H3068\"* increase|strong=\"H7235\"* your|strong=\"H3068\"* numbers more|strong=\"H7235\"* than|strong=\"H7235\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* circumcise|strong=\"H4135\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* put|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* curses on|strong=\"H5921\"* your|strong=\"H3068\"* enemies|strong=\"H8130\"* and|strong=\"H3068\"* on|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*, who|strong=\"H3605\"* persecuted|strong=\"H7291\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6680\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H7725\"* you|strong=\"H3588\"* prosperous in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* body, in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* livestock, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground, for|strong=\"H3588\"* good|strong=\"H2896\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H7725\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* you|strong=\"H3588\"* for|strong=\"H3588\"* good|strong=\"H2896\"*, as|strong=\"H3068\"* he|strong=\"H3588\"* rejoiced|strong=\"H7797\"* over|strong=\"H5921\"* your|strong=\"H3068\"* fathers," + }, + { + "verseNum": 10, + "text": "if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H7725\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"* and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* which|strong=\"H3068\"* are|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* which|strong=\"H1931\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H1931\"* not|strong=\"H3808\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3588\"* you|strong=\"H3588\"* or|strong=\"H3808\"* too|strong=\"H4480\"* distant|strong=\"H7350\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* should|strong=\"H6213\"* say, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H6213\"* us|strong=\"H6213\"* to|strong=\"H5927\"* heaven|strong=\"H8064\"*, bring|strong=\"H5927\"* it|strong=\"H1931\"* to|strong=\"H5927\"* us|strong=\"H6213\"*, and|strong=\"H8064\"* proclaim|strong=\"H8085\"* it|strong=\"H1931\"* to|strong=\"H5927\"* us|strong=\"H6213\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H4310\"* do|strong=\"H6213\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 13, + "text": "Neither|strong=\"H3808\"* is|strong=\"H1931\"* it|strong=\"H1931\"* beyond|strong=\"H5676\"* the|strong=\"H8085\"* sea|strong=\"H3220\"*, that|strong=\"H8085\"* you|strong=\"H3947\"* should|strong=\"H6213\"* say, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8085\"* sea|strong=\"H3220\"* for|strong=\"H6213\"* us|strong=\"H6213\"*, bring|strong=\"H3947\"* it|strong=\"H1931\"* to|strong=\"H6213\"* us|strong=\"H6213\"*, and|strong=\"H8085\"* proclaim|strong=\"H8085\"* it|strong=\"H1931\"* to|strong=\"H6213\"* us|strong=\"H6213\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H4310\"* do|strong=\"H6213\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* word|strong=\"H1697\"* is|strong=\"H1697\"* very|strong=\"H3966\"* near|strong=\"H7138\"* to|strong=\"H6213\"* you|strong=\"H3588\"*, in|strong=\"H6213\"* your|strong=\"H6213\"* mouth|strong=\"H6310\"* and|strong=\"H6213\"* in|strong=\"H6213\"* your|strong=\"H6213\"* heart|strong=\"H3824\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* have|strong=\"H7200\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* life|strong=\"H2416\"* and|strong=\"H3117\"* prosperity|strong=\"H2896\"*, and|strong=\"H3117\"* death|strong=\"H4194\"* and|strong=\"H3117\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H2708\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"* today|strong=\"H3117\"* to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, his|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H3068\"* his|strong=\"H8104\"* ordinances|strong=\"H4941\"*, that|strong=\"H3117\"* you|strong=\"H6680\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* multiply|strong=\"H7235\"*, and|strong=\"H3068\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6680\"* in|strong=\"H3068\"* the|strong=\"H8104\"* land where|strong=\"H8033\"* you|strong=\"H6680\"* go|strong=\"H3212\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if your|strong=\"H8085\"* heart|strong=\"H3824\"* turns|strong=\"H6437\"* away|strong=\"H5080\"*, and|strong=\"H8085\"* you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*, but|strong=\"H3808\"* are|strong=\"H3824\"* drawn|strong=\"H5080\"* away|strong=\"H5080\"* and|strong=\"H8085\"* worship|strong=\"H7812\"* other gods, and|strong=\"H8085\"* serve|strong=\"H5647\"* them|strong=\"H8085\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3588\"* declare|strong=\"H5046\"* to|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* perish|strong=\"H5674\"*. You|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land where|strong=\"H8033\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* go|strong=\"H5674\"* in|strong=\"H5921\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H3117\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H3117\"* earth|strong=\"H8064\"* to|strong=\"H5414\"* witness|strong=\"H5749\"* against|strong=\"H6440\"* you|strong=\"H5414\"* today|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* life|strong=\"H2416\"* and|strong=\"H3117\"* death|strong=\"H4194\"*, the|strong=\"H6440\"* blessing|strong=\"H1293\"* and|strong=\"H3117\"* the|strong=\"H6440\"* curse|strong=\"H7045\"*. Therefore|strong=\"H4616\"* choose life|strong=\"H2416\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* may|strong=\"H5414\"* live|strong=\"H2421\"*, you|strong=\"H5414\"* and|strong=\"H3117\"* your|strong=\"H5414\"* descendants|strong=\"H2233\"*," + }, + { + "verseNum": 20, + "text": "to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* obey|strong=\"H8085\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H3068\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* went|strong=\"H3212\"* and|strong=\"H4872\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “I|strong=\"H3117\"* am|strong=\"H3068\"* one|strong=\"H2088\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* today|strong=\"H3117\"*. I|strong=\"H3117\"* can|strong=\"H3201\"* no|strong=\"H3808\"* more|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* come|strong=\"H3318\"* in|strong=\"H8141\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H5674\"*, ‘You|strong=\"H3117\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3318\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*.’" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* will|strong=\"H3068\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* these|strong=\"H1696\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* dispossess|strong=\"H3423\"* them|strong=\"H6440\"*. Joshua|strong=\"H3091\"* will|strong=\"H3068\"* go|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3068\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* to|strong=\"H3068\"* Og|strong=\"H5747\"*, the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6213\"* Amorites, and|strong=\"H3068\"* to|strong=\"H3068\"* their|strong=\"H3068\"* land, when|strong=\"H6213\"* he|strong=\"H6213\"* destroyed|strong=\"H8045\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H5414\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1980\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* or|strong=\"H3808\"* scared of|strong=\"H3068\"* them|strong=\"H6440\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* who|strong=\"H1931\"* goes|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* called|strong=\"H7121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H5414\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* courageous|strong=\"H2388\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H5971\"* with|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* into|strong=\"H5414\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers to|strong=\"H3478\"* give|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H4872\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* who|strong=\"H1931\"* goes|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H6440\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Don’t be|strong=\"H1961\"* discouraged|strong=\"H7503\"*.”" + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* this|strong=\"H2063\"* law|strong=\"H8451\"* and|strong=\"H1121\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “At|strong=\"H4872\"* the|strong=\"H6680\"* end|strong=\"H7093\"* of|strong=\"H8141\"* every|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H6680\"* set|strong=\"H6680\"* time|strong=\"H4150\"* of|strong=\"H8141\"* the|strong=\"H6680\"* year|strong=\"H8141\"* of|strong=\"H8141\"* release|strong=\"H8059\"*, in|strong=\"H8141\"* the|strong=\"H6680\"* feast|strong=\"H2282\"* of|strong=\"H8141\"* booths|strong=\"H5521\"*," + }, + { + "verseNum": 11, + "text": "when|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* come|strong=\"H3478\"* to|strong=\"H3478\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3605\"* place|strong=\"H4725\"* which|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* choose, you|strong=\"H6440\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* this|strong=\"H2063\"* law|strong=\"H8451\"* before|strong=\"H6440\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* their|strong=\"H3605\"* hearing." + }, + { + "verseNum": 12, + "text": "Assemble|strong=\"H6950\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* men|strong=\"H5971\"* and|strong=\"H3068\"* the|strong=\"H3605\"* women and|strong=\"H3068\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* are|strong=\"H5971\"* within your|strong=\"H3068\"* gates|strong=\"H8179\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* may|strong=\"H3068\"* hear|strong=\"H8085\"*, learn|strong=\"H3925\"*, fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* observe|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* that|strong=\"H3045\"* their|strong=\"H3605\"* children|strong=\"H1121\"*, who|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, may|strong=\"H3068\"* hear|strong=\"H8085\"* and|strong=\"H1121\"* learn|strong=\"H3925\"* to|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3605\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land where|strong=\"H8033\"* you|strong=\"H3605\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H4191\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2005\"*, your|strong=\"H3068\"* days|strong=\"H3117\"* approach|strong=\"H7126\"* that|strong=\"H3117\"* you|strong=\"H6680\"* must|strong=\"H4191\"* die|strong=\"H4191\"*. Call|strong=\"H7121\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* present|strong=\"H7126\"* yourselves|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H3068\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3068\"* commission|strong=\"H6680\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Tent in|strong=\"H5921\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H3068\"* cloud|strong=\"H6051\"* stood|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Tent’s door|strong=\"H6607\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Moses|strong=\"H4872\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5973\"* shall|strong=\"H3068\"* sleep|strong=\"H7901\"* with|strong=\"H5973\"* your|strong=\"H3068\"* fathers. This|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* play|strong=\"H2181\"* the|strong=\"H3068\"* prostitute|strong=\"H2181\"* after|strong=\"H6965\"* the|strong=\"H3068\"* strange|strong=\"H5236\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H7130\"* where|strong=\"H8033\"* they|strong=\"H8033\"* go|strong=\"H6965\"* to|strong=\"H3068\"* be|strong=\"H3068\"* among|strong=\"H7130\"* them|strong=\"H5800\"*, and|strong=\"H6965\"* will|strong=\"H3068\"* forsake|strong=\"H5800\"* me|strong=\"H5973\"* and|strong=\"H6965\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* which|strong=\"H1931\"* I|strong=\"H2009\"* have|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H5973\"* them|strong=\"H5800\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* my|strong=\"H5921\"* anger|strong=\"H6440\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H1961\"* forsake|strong=\"H5800\"* them|strong=\"H1992\"*, and|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H1961\"* hide|strong=\"H5641\"* my|strong=\"H5921\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, and|strong=\"H3117\"* they|strong=\"H1992\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* devoured, and|strong=\"H3117\"* many|strong=\"H7227\"* evils|strong=\"H7451\"* and|strong=\"H3117\"* troubles|strong=\"H6869\"* shall|strong=\"H3117\"* come|strong=\"H1961\"* on|strong=\"H5921\"* them|strong=\"H1992\"*; so|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1961\"* say in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, ‘Haven’t these|strong=\"H1992\"* evils|strong=\"H7451\"* come|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"* because|strong=\"H3588\"* our|strong=\"H5921\"* God|strong=\"H3808\"* is|strong=\"H1931\"* not|strong=\"H3808\"* among|strong=\"H7130\"* us|strong=\"H5921\"*?’" + }, + { + "verseNum": 18, + "text": "I|strong=\"H3588\"* will|strong=\"H1931\"* surely|strong=\"H3588\"* hide|strong=\"H5641\"* my|strong=\"H3605\"* face|strong=\"H6440\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* they|strong=\"H3588\"* have|strong=\"H3117\"* done|strong=\"H6213\"*, in|strong=\"H5921\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3117\"* turned|strong=\"H6437\"* to|strong=\"H6213\"* other|strong=\"H3605\"* gods." + }, + { + "verseNum": 19, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* write|strong=\"H3789\"* this|strong=\"H2063\"* song|strong=\"H7892\"* for|strong=\"H4616\"* yourselves, and|strong=\"H1121\"* teach|strong=\"H3925\"* it|strong=\"H7760\"* to|strong=\"H3478\"* the|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H3478\"* their|strong=\"H7760\"* mouths|strong=\"H6310\"*, that|strong=\"H4616\"* this|strong=\"H2063\"* song|strong=\"H7892\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* for|strong=\"H4616\"* me|strong=\"H7760\"* against|strong=\"H2063\"* the|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7646\"* brought|strong=\"H6565\"* them|strong=\"H5647\"* into the|strong=\"H3588\"* land which|strong=\"H3588\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H7650\"* their|strong=\"H5647\"* fathers, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*, and|strong=\"H2461\"* they|strong=\"H3588\"* have|strong=\"H7646\"* eaten and|strong=\"H2461\"* filled|strong=\"H7646\"* themselves, and|strong=\"H2461\"* grown fat|strong=\"H1878\"*, then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5647\"* turn|strong=\"H6437\"* to|strong=\"H7650\"* other gods, and|strong=\"H2461\"* serve|strong=\"H5647\"* them|strong=\"H5647\"*, and|strong=\"H2461\"* despise|strong=\"H5006\"* me|strong=\"H5006\"*, and|strong=\"H2461\"* break|strong=\"H6565\"* my|strong=\"H6565\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* many|strong=\"H7227\"* evils|strong=\"H7451\"* and|strong=\"H6030\"* troubles|strong=\"H6869\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H3117\"* them|strong=\"H6440\"*, that|strong=\"H3588\"* this|strong=\"H2063\"* song|strong=\"H7892\"* will|strong=\"H1961\"* testify|strong=\"H6030\"* before|strong=\"H6440\"* them|strong=\"H6440\"* as|strong=\"H3117\"* a|strong=\"H3068\"* witness|strong=\"H5707\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* forgotten|strong=\"H7911\"* out|strong=\"H4672\"* of|strong=\"H3117\"* the|strong=\"H6440\"* mouths|strong=\"H6310\"* of|strong=\"H3117\"* their|strong=\"H6440\"* descendants|strong=\"H2233\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* their|strong=\"H6440\"* ways and|strong=\"H6030\"* what|strong=\"H7451\"* they|strong=\"H3588\"* are|strong=\"H3117\"* doing|strong=\"H6213\"* today|strong=\"H3117\"*, before|strong=\"H6440\"* I|strong=\"H3588\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* them|strong=\"H6440\"* into|strong=\"H6213\"* the|strong=\"H6440\"* land|strong=\"H6440\"* which|strong=\"H1931\"* I|strong=\"H3588\"* promised|strong=\"H7650\"* them|strong=\"H6440\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2063\"* Moses|strong=\"H4872\"* wrote|strong=\"H3789\"* this|strong=\"H2063\"* song|strong=\"H7892\"* the|strong=\"H3117\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* taught|strong=\"H3925\"* it|strong=\"H1931\"* to|strong=\"H3478\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* commissioned|strong=\"H6680\"* Joshua|strong=\"H3091\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* said, “Be|strong=\"H1961\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* courageous|strong=\"H2388\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* bring|strong=\"H1961\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* into|strong=\"H1961\"* the|strong=\"H3588\"* land which|strong=\"H3478\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H6680\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* writing|strong=\"H3789\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* law|strong=\"H8451\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, until|strong=\"H5704\"* they|strong=\"H5921\"* were|strong=\"H1961\"* finished|strong=\"H3615\"*," + }, + { + "verseNum": 25, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"*, who|strong=\"H3068\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, saying," + }, + { + "verseNum": 26, + "text": "“Take|strong=\"H3947\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3947\"* law|strong=\"H8451\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* it|strong=\"H7760\"* by|strong=\"H3068\"* the|strong=\"H3947\"* side|strong=\"H6654\"* of|strong=\"H3068\"* the|strong=\"H3947\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, that|strong=\"H3068\"* it|strong=\"H7760\"* may|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H3068\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H3068\"* you|strong=\"H3947\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H3068\"* rebellion|strong=\"H4805\"* and|strong=\"H3068\"* your|strong=\"H3068\"* stiff|strong=\"H7186\"* neck|strong=\"H6203\"*. Behold|strong=\"H2005\"*, while|strong=\"H5750\"* I|strong=\"H3588\"* am|strong=\"H1961\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"* with|strong=\"H5973\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, you|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* rebellious|strong=\"H4805\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"*. How|strong=\"H3588\"* much more|strong=\"H5750\"* after|strong=\"H1961\"* my|strong=\"H3068\"* death|strong=\"H4194\"*?" + }, + { + "verseNum": 28, + "text": "Assemble|strong=\"H6950\"* to|strong=\"H1696\"* me|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"* and|strong=\"H8064\"* your|strong=\"H3605\"* officers|strong=\"H7860\"*, that|strong=\"H3605\"* I|strong=\"H1697\"* may speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H1696\"* their|strong=\"H3605\"* ears, and|strong=\"H8064\"* call|strong=\"H5749\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"* to|strong=\"H1696\"* witness|strong=\"H5749\"* against|strong=\"H1696\"* them|strong=\"H1697\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* after|strong=\"H4480\"* my|strong=\"H3068\"* death|strong=\"H4194\"* you|strong=\"H3588\"* will|strong=\"H3068\"* utterly|strong=\"H7843\"* corrupt|strong=\"H7843\"* yourselves|strong=\"H3027\"*, and|strong=\"H3068\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3588\"* way|strong=\"H1870\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* evil|strong=\"H7451\"* will|strong=\"H3068\"* happen|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3588\"* latter days|strong=\"H3117\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H3027\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* through|strong=\"H3027\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 30, + "text": "Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* song|strong=\"H7892\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H3478\"* finished|strong=\"H8552\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H1696\"* ear|strong=\"H8085\"*, you|strong=\"H1696\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* I|strong=\"H8085\"* will|strong=\"H8064\"* speak|strong=\"H1696\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H5921\"* doctrine|strong=\"H3948\"* will drop|strong=\"H6201\"* as|strong=\"H5921\"* the|strong=\"H5921\"* rain|strong=\"H4306\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* proclaim|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* Rock|strong=\"H6697\"*: his|strong=\"H3605\"* work|strong=\"H6467\"* is|strong=\"H1931\"* perfect|strong=\"H8549\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* have|strong=\"H1121\"* dealt corruptly|strong=\"H7843\"* with|strong=\"H1121\"* him|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Is|strong=\"H3068\"* this|strong=\"H2063\"* the|strong=\"H6213\"* way|strong=\"H2063\"* you|strong=\"H6213\"* repay|strong=\"H1580\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H2205\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1121\"* the|strong=\"H5157\"* Most|strong=\"H5945\"* High|strong=\"H5945\"* gave|strong=\"H5157\"* to|strong=\"H3478\"* the|strong=\"H5157\"* nations|strong=\"H1471\"* their|strong=\"H5157\"* inheritance|strong=\"H5157\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s portion|strong=\"H2506\"* is|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H4057\"* found|strong=\"H4672\"* him|strong=\"H4672\"* in|strong=\"H4672\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* land," + }, + { + "verseNum": 11, + "text": "As|strong=\"H7064\"* an|strong=\"H3947\"* eagle|strong=\"H5404\"* that|strong=\"H5404\"* stirs|strong=\"H5782\"* up|strong=\"H5375\"* her|strong=\"H3947\"* nest|strong=\"H7064\"*," + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* alone led|strong=\"H5148\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* made him|strong=\"H5921\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H7704\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 14, + "text": "butter|strong=\"H2529\"* from|strong=\"H1121\"* the|strong=\"H5973\"* herd|strong=\"H1241\"*, and|strong=\"H1121\"* milk|strong=\"H2461\"* from|strong=\"H1121\"* the|strong=\"H5973\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 15, + "text": "But Jeshurun|strong=\"H3484\"* grew|strong=\"H8080\"* fat|strong=\"H8080\"*, and|strong=\"H6213\"* kicked|strong=\"H1163\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H8441\"* moved him|strong=\"H7065\"* to|strong=\"H8441\"* jealousy|strong=\"H7065\"* with|strong=\"H7065\"* strange|strong=\"H2114\"* gods." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3808\"* sacrificed|strong=\"H2076\"* to|strong=\"H3045\"* demons|strong=\"H7700\"*, not|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 18, + "text": "Of|strong=\"H3205\"* the|strong=\"H3205\"* Rock|strong=\"H6697\"* who|strong=\"H3205\"* became|strong=\"H3205\"* your|strong=\"H7911\"* father|strong=\"H3205\"*, you|strong=\"H3205\"* are|strong=\"H6697\"* unmindful|strong=\"H7876\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* and|strong=\"H1121\"* abhorred|strong=\"H5006\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* will|strong=\"H1121\"* hide|strong=\"H5641\"* my|strong=\"H7200\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H1992\"* have|strong=\"H5971\"* moved me|strong=\"H3707\"* to|strong=\"H5971\"* jealousy|strong=\"H7065\"* with|strong=\"H5971\"* that|strong=\"H5971\"* which|strong=\"H1471\"* is|strong=\"H5971\"* not|strong=\"H3808\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* fire|strong=\"H3857\"* is|strong=\"H3588\"* kindled|strong=\"H6919\"* in|strong=\"H7585\"* my|strong=\"H3588\"* anger," + }, + { + "verseNum": 23, + "text": "“I|strong=\"H5921\"* will|strong=\"H5595\"* heap|strong=\"H5595\"* evils|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "They shall|strong=\"H6083\"* be wasted|strong=\"H4198\"* with|strong=\"H5973\"* hunger|strong=\"H7458\"*," + }, + { + "verseNum": 25, + "text": "Outside|strong=\"H2351\"* the|strong=\"H1571\"* sword|strong=\"H2719\"* will|strong=\"H1571\"* bereave|strong=\"H7921\"*," + }, + { + "verseNum": 26, + "text": "I said that I would scatter them afar." + }, + { + "verseNum": 27, + "text": "were|strong=\"H3027\"* it|strong=\"H2063\"* not|strong=\"H3808\"* that|strong=\"H3605\"* I|strong=\"H3808\"* feared|strong=\"H1481\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* of|strong=\"H3068\"* the|strong=\"H3605\"* enemy|strong=\"H6862\"*," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* void of|strong=\"H6098\"* counsel|strong=\"H6098\"*." + }, + { + "verseNum": 29, + "text": "Oh|strong=\"H3863\"* that|strong=\"H3863\"* they were wise|strong=\"H2449\"*, that|strong=\"H3863\"* they understood|strong=\"H7919\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 30, + "text": "How|strong=\"H3588\"* could one|strong=\"H3808\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* thousand|strong=\"H7233\"*," + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* rock|strong=\"H6697\"* is|strong=\"H3808\"* not|strong=\"H3808\"* as|strong=\"H3588\"* our|strong=\"H3588\"* Rock|strong=\"H6697\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* vine|strong=\"H1612\"* is|strong=\"H6017\"* of|strong=\"H1612\"* the|strong=\"H3588\"* vine|strong=\"H1612\"* of|strong=\"H1612\"* Sodom|strong=\"H5467\"*," + }, + { + "verseNum": 33, + "text": "Their wine|strong=\"H3196\"* is|strong=\"H2534\"* the poison|strong=\"H2534\"* of|strong=\"H2534\"* serpents|strong=\"H8577\"*," + }, + { + "verseNum": 34, + "text": "“Isn’t this|strong=\"H1931\"* laid|strong=\"H3647\"* up|strong=\"H2856\"* in|strong=\"H3808\"* store|strong=\"H3647\"* with|strong=\"H5978\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 35, + "text": "Vengeance|strong=\"H5359\"* is|strong=\"H3117\"* mine, and|strong=\"H3117\"* recompense," + }, + { + "verseNum": 36, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H1777\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 37, + "text": "He will say, “Where are|strong=\"H6697\"* their gods," + }, + { + "verseNum": 38, + "text": "which|strong=\"H3196\"* ate the|strong=\"H5921\"* fat|strong=\"H2459\"* of|strong=\"H2077\"* their|strong=\"H5921\"* sacrifices|strong=\"H2077\"*," + }, + { + "verseNum": 39, + "text": "“See|strong=\"H7200\"* now|strong=\"H6258\"* that|strong=\"H3588\"* I|strong=\"H3588\"* myself am he|strong=\"H1931\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* declare," + }, + { + "verseNum": 41, + "text": "if I|strong=\"H6862\"* sharpen|strong=\"H8150\"* my|strong=\"H7725\"* glittering|strong=\"H1300\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 42, + "text": "I|strong=\"H1320\"* will|strong=\"H2719\"* make|strong=\"H7937\"* my|strong=\"H1320\"* arrows|strong=\"H2671\"* drunk|strong=\"H7937\"* with|strong=\"H1320\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 43, + "text": "Rejoice|strong=\"H7442\"*, you|strong=\"H3588\"* nations|strong=\"H1471\"*, with|strong=\"H5971\"* his|strong=\"H7725\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 44, + "text": "Moses|strong=\"H4872\"* came|strong=\"H5971\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* this|strong=\"H2063\"* song|strong=\"H7892\"* in|strong=\"H1696\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* Joshua|strong=\"H1954\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + }, + { + "verseNum": 45, + "text": "Moses|strong=\"H4872\"* finished|strong=\"H3615\"* reciting|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 46, + "text": "He|strong=\"H3117\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Set|strong=\"H7760\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3117\"* testify|strong=\"H5749\"* to|strong=\"H6213\"* you|strong=\"H6680\"* today|strong=\"H3117\"*, which|strong=\"H1697\"* you|strong=\"H6680\"* shall|strong=\"H1121\"* command|strong=\"H6680\"* your|strong=\"H3605\"* children|strong=\"H1121\"* to|strong=\"H6213\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* this|strong=\"H2063\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 47, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H2088\"* no|strong=\"H3808\"* vain|strong=\"H7386\"* thing|strong=\"H1697\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H2088\"* your|strong=\"H5921\"* life|strong=\"H2416\"*, and|strong=\"H3117\"* through|strong=\"H5674\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* you|strong=\"H3588\"* shall|strong=\"H3117\"* prolong your|strong=\"H5921\"* days|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land, where|strong=\"H8033\"* you|strong=\"H3588\"* go|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* to|strong=\"H5921\"* possess|strong=\"H3423\"* it|strong=\"H1931\"*.”" + }, + { + "verseNum": 48, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* that|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 49, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* Abarim|strong=\"H5682\"*, to|strong=\"H3478\"* Mount|strong=\"H2022\"* Nebo|strong=\"H5015\"*, which|strong=\"H3478\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, that|strong=\"H7200\"* is|strong=\"H2088\"* across|strong=\"H5921\"* from|strong=\"H6440\"* Jericho|strong=\"H3405\"*; and|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession." + }, + { + "verseNum": 50, + "text": "Die|strong=\"H4191\"* on|strong=\"H5927\"* the|strong=\"H5927\"* mountain|strong=\"H2022\"* where|strong=\"H8033\"* you|strong=\"H2022\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H5971\"* be|strong=\"H4191\"* gathered to|strong=\"H4191\"* your|strong=\"H5927\"* people|strong=\"H5971\"*, as|strong=\"H5927\"* Aaron your|strong=\"H5927\"* brother died|strong=\"H4191\"* on|strong=\"H5927\"* Mount|strong=\"H2022\"* Hor|strong=\"H2023\"*, and|strong=\"H5971\"* was|strong=\"H2022\"* gathered to|strong=\"H4191\"* his|strong=\"H4191\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 51, + "text": "because|strong=\"H5921\"* you|strong=\"H5921\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Meribah of|strong=\"H1121\"* Kadesh|strong=\"H6946\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"*; because|strong=\"H5921\"* you|strong=\"H5921\"* didn’t uphold my|strong=\"H5921\"* holiness|strong=\"H6942\"* among|strong=\"H8432\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 52, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* see|strong=\"H7200\"* the|strong=\"H7200\"* land from|strong=\"H3478\"* a|strong=\"H3068\"* distance; but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3478\"* there|strong=\"H8033\"* into|strong=\"H5414\"* the|strong=\"H7200\"* land which|strong=\"H8033\"* I|strong=\"H3588\"* give|strong=\"H5414\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H6440\"* blessing|strong=\"H1293\"* with|strong=\"H6440\"* which|strong=\"H3478\"* Moses|strong=\"H4872\"* the|strong=\"H6440\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God blessed|strong=\"H1288\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* his|strong=\"H6440\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 3, + "text": "Yes, he|strong=\"H3605\"* loves|strong=\"H2245\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* us a|strong=\"H3068\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H3478\"* was|strong=\"H1961\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Jeshurun|strong=\"H3484\"*," + }, + { + "verseNum": 6, + "text": "“Let|strong=\"H1961\"* Reuben|strong=\"H7205\"* live|strong=\"H2421\"*, and|strong=\"H4191\"* not|strong=\"H1961\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 7, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* for|strong=\"H3027\"* Judah|strong=\"H3063\"*. He|strong=\"H3068\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 8, + "text": "About|strong=\"H5921\"* Levi|strong=\"H3878\"* he|strong=\"H5921\"* said," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said of|strong=\"H1121\"* his|strong=\"H8104\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H8104\"* mother, ‘I|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* him|strong=\"H7200\"*.’" + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* shall|strong=\"H3478\"* teach|strong=\"H3384\"* Jacob|strong=\"H3290\"* your|strong=\"H5921\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, bless|strong=\"H1288\"* his|strong=\"H3068\"* skills." + }, + { + "verseNum": 12, + "text": "About|strong=\"H5921\"* Benjamin|strong=\"H1144\"* he|strong=\"H3117\"* said," + }, + { + "verseNum": 13, + "text": "About|strong=\"H3130\"* Joseph|strong=\"H3130\"* he|strong=\"H3068\"* said," + }, + { + "verseNum": 14, + "text": "for|strong=\"H8121\"* the|strong=\"H8121\"* precious|strong=\"H4022\"* things|strong=\"H4022\"* of|strong=\"H3391\"* the|strong=\"H8121\"* fruits|strong=\"H8393\"* of|strong=\"H3391\"* the|strong=\"H8121\"* sun|strong=\"H8121\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H7218\"* the|strong=\"H7218\"* best|strong=\"H7218\"* things|strong=\"H4022\"* of|strong=\"H7218\"* the|strong=\"H7218\"* ancient|strong=\"H5769\"* mountains|strong=\"H2042\"*," + }, + { + "verseNum": 16, + "text": "for|strong=\"H7218\"* the|strong=\"H3130\"* precious|strong=\"H4022\"* things|strong=\"H4022\"* of|strong=\"H7218\"* the|strong=\"H3130\"* earth and|strong=\"H7218\"* its|strong=\"H4393\"* fullness|strong=\"H4393\"*," + }, + { + "verseNum": 17, + "text": "Majesty|strong=\"H1926\"* belongs to|strong=\"H5971\"* the|strong=\"H5971\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* his|strong=\"H4519\"* herd|strong=\"H7794\"*." + }, + { + "verseNum": 18, + "text": "About|strong=\"H3318\"* Zebulun|strong=\"H2074\"* he|strong=\"H3318\"* said|strong=\"H3318\"*," + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H5971\"* call|strong=\"H7121\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* to|strong=\"H7121\"* the|strong=\"H3588\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 20, + "text": "About Gad|strong=\"H1410\"* he|strong=\"H1410\"* said," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3588\"* provided|strong=\"H7200\"* the|strong=\"H7200\"* first|strong=\"H7225\"* part|strong=\"H2513\"* for|strong=\"H3588\"* himself|strong=\"H6213\"*," + }, + { + "verseNum": 22, + "text": "About|strong=\"H4480\"* Dan|strong=\"H1835\"* he|strong=\"H4480\"* said," + }, + { + "verseNum": 23, + "text": "About Naphtali|strong=\"H5321\"* he|strong=\"H3068\"* said," + }, + { + "verseNum": 24, + "text": "About|strong=\"H1961\"* Asher he|strong=\"H7272\"* said," + }, + { + "verseNum": 25, + "text": "Your|strong=\"H3117\"* bars will|strong=\"H3117\"* be|strong=\"H3117\"* iron|strong=\"H1270\"* and|strong=\"H3117\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 26, + "text": "“There is|strong=\"H7834\"* no one like|strong=\"H8064\"* God|strong=\"H8064\"*, Jeshurun|strong=\"H3484\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H6440\"* eternal|strong=\"H5769\"* God is|strong=\"H6440\"* your|strong=\"H6440\"* dwelling|strong=\"H4585\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 28, + "text": "Israel|strong=\"H3478\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* safety," + }, + { + "verseNum": 29, + "text": "You|strong=\"H5921\"* are|strong=\"H5971\"* happy, Israel|strong=\"H3478\"*!" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Moses|strong=\"H4872\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H6440\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Nebo|strong=\"H5015\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H3068\"* Pisgah|strong=\"H6449\"*, that|strong=\"H7200\"* is|strong=\"H3068\"* opposite|strong=\"H5921\"* Jericho|strong=\"H3405\"*. Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* him|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3063\"* all|strong=\"H3605\"* Naphtali|strong=\"H5321\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Ephraim and|strong=\"H3063\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* Western|strong=\"H3220\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5892\"* the|strong=\"H5704\"* south|strong=\"H5045\"*,+ 34:3 or, Negev* and|strong=\"H5892\"* the|strong=\"H5704\"* Plain|strong=\"H3603\"* of|strong=\"H5892\"* the|strong=\"H5704\"* valley|strong=\"H1237\"* of|strong=\"H5892\"* Jericho|strong=\"H3405\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H5892\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, to|strong=\"H5704\"* Zoar|strong=\"H6820\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H7200\"* land which|strong=\"H3068\"* I|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Abraham, to|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* Jacob|strong=\"H3290\"*, saying, ‘I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*.’ I|strong=\"H5414\"* have|strong=\"H3068\"* caused|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, but|strong=\"H3808\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5674\"* over|strong=\"H5674\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4191\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* died|strong=\"H4191\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Moab|strong=\"H4124\"*, according|strong=\"H5921\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3117\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H3117\"* the|strong=\"H3117\"* valley|strong=\"H1516\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Moab|strong=\"H4124\"* opposite|strong=\"H4136\"* Beth Peor, but|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H2088\"* knows|strong=\"H3045\"* where|strong=\"H2088\"* his|strong=\"H3045\"* tomb|strong=\"H6900\"* is|strong=\"H2088\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Moses|strong=\"H4872\"* was|strong=\"H4872\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3808\"* died|strong=\"H4194\"*. His|strong=\"H4872\"* eye|strong=\"H5869\"* was|strong=\"H4872\"* not|strong=\"H3808\"* dim|strong=\"H3543\"*, nor|strong=\"H3808\"* his|strong=\"H4872\"* strength gone|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* wept|strong=\"H1058\"* for|strong=\"H3117\"* Moses|strong=\"H4872\"* in|strong=\"H3478\"* the|strong=\"H3117\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* thirty|strong=\"H7970\"* days|strong=\"H3117\"*, until|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* weeping|strong=\"H1065\"* in|strong=\"H3478\"* the|strong=\"H3117\"* mourning for|strong=\"H3117\"* Moses|strong=\"H4872\"* were|strong=\"H3478\"* ended|strong=\"H8552\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* was|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H1121\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* wisdom|strong=\"H2451\"*, for|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H3068\"* laid|strong=\"H5564\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "Since|strong=\"H5750\"* then|strong=\"H6965\"*, there|strong=\"H3045\"* has|strong=\"H3068\"* not|strong=\"H3808\"* arisen|strong=\"H6965\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* Moses|strong=\"H4872\"*, whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* knew|strong=\"H3045\"* face|strong=\"H6440\"* to|strong=\"H3478\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* signs and|strong=\"H3068\"* the|strong=\"H3605\"* wonders|strong=\"H4159\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H3068\"* do|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* land," + }, + { + "verseNum": 12, + "text": "and|strong=\"H4872\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H4872\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* awesome|strong=\"H1419\"* deeds|strong=\"H1419\"*, which|strong=\"H5869\"* Moses|strong=\"H4872\"* did|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3027\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + } + ] + } + ] + }, + { + "name": "Joshua", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* after|strong=\"H1961\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, Moses|strong=\"H4872\"*’ servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 2, + "text": "“Moses|strong=\"H4872\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* arise|strong=\"H6965\"*, go|strong=\"H5674\"* across|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*, you|strong=\"H5414\"* and|strong=\"H1121\"* all|strong=\"H3605\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* land which|strong=\"H5971\"* I|strong=\"H5414\"* am giving|strong=\"H5414\"* to|strong=\"H3478\"* them|strong=\"H5414\"*, even to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* every|strong=\"H3605\"* place|strong=\"H4725\"* that|strong=\"H3605\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H3709\"* your|strong=\"H3605\"* foot|strong=\"H7272\"* will|strong=\"H5414\"* tread|strong=\"H1869\"* on|strong=\"H1696\"*, as|strong=\"H5414\"* I|strong=\"H5414\"* told|strong=\"H1696\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 4, + "text": "From|strong=\"H5704\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* and|strong=\"H1419\"* this|strong=\"H2088\"* Lebanon|strong=\"H3844\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, and|strong=\"H1419\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* going|strong=\"H8121\"* down|strong=\"H3996\"* of|strong=\"H1366\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, shall|strong=\"H1366\"* be|strong=\"H1961\"* your|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* man|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* able to|strong=\"H1961\"* stand|strong=\"H3320\"* before|strong=\"H6440\"* you|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"*. As|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, so|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* not|strong=\"H3808\"* fail|strong=\"H7503\"* you|strong=\"H6440\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "“Be|strong=\"H5414\"* strong|strong=\"H2388\"* and|strong=\"H5971\"* courageous|strong=\"H2388\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* cause|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* to|strong=\"H5414\"* inherit|strong=\"H5157\"* the|strong=\"H3588\"* land which|strong=\"H5971\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* their|strong=\"H5414\"* fathers to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Only|strong=\"H7535\"* be|strong=\"H5650\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* very|strong=\"H3966\"* courageous|strong=\"H2388\"*. Be|strong=\"H5650\"* careful|strong=\"H8104\"* to|strong=\"H3212\"* observe|strong=\"H8104\"* to|strong=\"H3212\"* do|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H8451\"* Moses|strong=\"H4872\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*. Don’t turn|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"* to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*, that|strong=\"H3605\"* you|strong=\"H6680\"* may|strong=\"H6213\"* have|strong=\"H5650\"* good|strong=\"H3966\"* success|strong=\"H7919\"* wherever|strong=\"H3605\"* you|strong=\"H6680\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 8, + "text": "This|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H1870\"* the|strong=\"H3605\"* law|strong=\"H8451\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* depart|strong=\"H4185\"* from|strong=\"H4185\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* meditate|strong=\"H1897\"* on|strong=\"H1870\"* it|strong=\"H3588\"* day|strong=\"H3119\"* and|strong=\"H3119\"* night|strong=\"H3915\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H6213\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H2088\"* written|strong=\"H3789\"* in|strong=\"H6213\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* your|strong=\"H3605\"* way|strong=\"H1870\"* prosperous|strong=\"H6743\"*, and|strong=\"H3119\"* then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3808\"* have|strong=\"H7919\"* good|strong=\"H6743\"* success|strong=\"H6743\"*." + }, + { + "verseNum": 9, + "text": "Haven’t I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*? Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H3068\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H2865\"*. Don’t be|strong=\"H3808\"* dismayed|strong=\"H2865\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"* wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6680\"* Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* officers|strong=\"H7860\"* of|strong=\"H5971\"* the|strong=\"H6680\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 11, + "text": "“Pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* command|strong=\"H6680\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, saying, ‘Prepare|strong=\"H3559\"* food|strong=\"H6720\"*; for|strong=\"H3588\"* within|strong=\"H7130\"* three|strong=\"H7969\"* days|strong=\"H3117\"* you|strong=\"H3588\"* are|strong=\"H3117\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"*, to|strong=\"H3068\"* go|strong=\"H5674\"* in|strong=\"H3068\"* to|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3588\"* land|strong=\"H7130\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*.’”" + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H7626\"* the|strong=\"H3091\"* Reubenites|strong=\"H7206\"*, and|strong=\"H3091\"* to|strong=\"H7626\"* the|strong=\"H3091\"* Gadites|strong=\"H1425\"*, and|strong=\"H3091\"* to|strong=\"H7626\"* the|strong=\"H3091\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*, saying," + }, + { + "verseNum": 13, + "text": "“Remember|strong=\"H2142\"* the|strong=\"H5414\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* you|strong=\"H5414\"* rest|strong=\"H5117\"*, and|strong=\"H4872\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* this|strong=\"H2063\"* land." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H3605\"* wives, your|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H4872\"* your|strong=\"H3605\"* livestock|strong=\"H4735\"* shall|strong=\"H6440\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H2428\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; but|strong=\"H3605\"* you|strong=\"H5414\"* shall|strong=\"H6440\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* your|strong=\"H3605\"* brothers armed|strong=\"H2571\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3427\"* valor|strong=\"H2428\"*, and|strong=\"H4872\"* shall|strong=\"H6440\"* help|strong=\"H5826\"* them|strong=\"H5414\"*" + }, + { + "verseNum": 15, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* your|strong=\"H3068\"* brothers rest|strong=\"H5117\"*, as|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H4872\"* they|strong=\"H1992\"* have|strong=\"H3068\"* also|strong=\"H1571\"* possessed|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H5676\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* gives|strong=\"H5414\"* them|strong=\"H5414\"*. Then|strong=\"H1571\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H3068\"* your|strong=\"H3068\"* possession|strong=\"H3423\"* and|strong=\"H4872\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* toward|strong=\"H5704\"* the|strong=\"H5414\"* sunrise|strong=\"H4217\"*.’”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H6213\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, saying, “All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* us|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H6213\"* do|strong=\"H6213\"*, and|strong=\"H6030\"* wherever|strong=\"H3605\"* you|strong=\"H6680\"* send|strong=\"H7971\"* us|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H6213\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 17, + "text": "Just|strong=\"H3605\"* as|strong=\"H1961\"* we|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Moses|strong=\"H4872\"* in|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"*, so|strong=\"H3651\"* will|strong=\"H3068\"* we|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. Only|strong=\"H7535\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3605\"*, as|strong=\"H1961\"* he|strong=\"H3651\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 18, + "text": "Whoever|strong=\"H3605\"* rebels|strong=\"H4784\"* against|strong=\"H4784\"* your|strong=\"H3605\"* commandment|strong=\"H6310\"*, and|strong=\"H8085\"* doesn’t listen|strong=\"H8085\"* to|strong=\"H4191\"* your|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H4191\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* command|strong=\"H6680\"* him|strong=\"H6680\"* shall|strong=\"H3808\"* himself|strong=\"H2388\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*. Only|strong=\"H7535\"* be|strong=\"H4191\"* strong|strong=\"H2388\"* and|strong=\"H8085\"* courageous|strong=\"H2388\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* secretly|strong=\"H2791\"* sent|strong=\"H7971\"* two|strong=\"H8147\"* men|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Shittim|strong=\"H7851\"* as|strong=\"H1121\"* spies|strong=\"H7270\"*, saying, “Go|strong=\"H3212\"*, view|strong=\"H7200\"* the|strong=\"H7200\"* land, including|strong=\"H4480\"* Jericho|strong=\"H3405\"*.” They|strong=\"H8033\"* went|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Rahab|strong=\"H7343\"*, and|strong=\"H1121\"* slept|strong=\"H7901\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H2009\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* was|strong=\"H3478\"* told, “Behold|strong=\"H2009\"*,+ 2:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H2009\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* in|strong=\"H3478\"* here|strong=\"H2009\"* tonight|strong=\"H3915\"* to|strong=\"H3478\"* spy out|strong=\"H2658\"* the|strong=\"H2009\"* land.”" + }, + { + "verseNum": 3, + "text": "Jericho|strong=\"H3405\"*’s king|strong=\"H4428\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* Rahab|strong=\"H7343\"*, saying, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* come|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3588\"*, who|strong=\"H3605\"* have|strong=\"H3605\"* entered|strong=\"H3318\"* into|strong=\"H3318\"* your|strong=\"H3605\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3605\"* come|strong=\"H3318\"* to|strong=\"H3318\"* spy out|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3947\"* woman took|strong=\"H3947\"* the|strong=\"H3947\"* two|strong=\"H8147\"* men|strong=\"H1992\"* and|strong=\"H3045\"* hid|strong=\"H6845\"* them|strong=\"H1992\"*. Then|strong=\"H3947\"* she|strong=\"H8147\"* said|strong=\"H3651\"*, “Yes|strong=\"H3651\"*, the|strong=\"H3947\"* men|strong=\"H1992\"* came|strong=\"H8147\"* to|strong=\"H3045\"* me|strong=\"H3947\"*, but|strong=\"H3808\"* I|strong=\"H3651\"* didn’t know|strong=\"H3045\"* where|strong=\"H3808\"* they|strong=\"H1992\"* came|strong=\"H8147\"* from|strong=\"H3947\"*." + }, + { + "verseNum": 5, + "text": "About|strong=\"H1961\"* the|strong=\"H3588\"* time|strong=\"H3318\"* of|strong=\"H8179\"* the|strong=\"H3588\"* shutting|strong=\"H5462\"* of|strong=\"H8179\"* the|strong=\"H3588\"* gate|strong=\"H8179\"*, when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* dark|strong=\"H2822\"*, the|strong=\"H3588\"* men|strong=\"H1980\"* went|strong=\"H1980\"* out|strong=\"H3318\"*. Where|strong=\"H3808\"* the|strong=\"H3588\"* men|strong=\"H1980\"* went|strong=\"H1980\"*, I|strong=\"H3588\"* don’t know|strong=\"H3045\"*. Pursue|strong=\"H7291\"* them|strong=\"H3318\"* quickly|strong=\"H4118\"*. You|strong=\"H3588\"* may|strong=\"H1961\"* catch|strong=\"H5381\"* up|strong=\"H5462\"* with|strong=\"H1980\"* them|strong=\"H3318\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H1931\"* brought|strong=\"H5927\"* them|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*, and|strong=\"H6086\"* hidden|strong=\"H2934\"* them|strong=\"H5921\"* under|strong=\"H5921\"* the|strong=\"H5921\"* stalks|strong=\"H6086\"* of|strong=\"H6086\"* flax|strong=\"H6593\"* which|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H1931\"* laid|strong=\"H2934\"* in|strong=\"H5921\"* order|strong=\"H6186\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* men pursued|strong=\"H7291\"* them|strong=\"H5921\"* along|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H3318\"* the|strong=\"H5921\"* fords|strong=\"H4569\"* of|strong=\"H1870\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"* River. As|strong=\"H3318\"* soon as|strong=\"H3318\"* those|strong=\"H5921\"* who pursued|strong=\"H7291\"* them|strong=\"H5921\"* had|strong=\"H7291\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*, they|strong=\"H5921\"* shut|strong=\"H5462\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 8, + "text": "Before|strong=\"H2962\"* they|strong=\"H1992\"* had|strong=\"H1931\"* lain|strong=\"H7901\"* down|strong=\"H7901\"*, she|strong=\"H1931\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* them|strong=\"H1992\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H3605\"*, “I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6440\"* of|strong=\"H3068\"* you|strong=\"H3588\"* has|strong=\"H3068\"* fallen|strong=\"H5307\"* upon|strong=\"H5921\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* melt|strong=\"H4127\"* away|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H6440\"* water|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*; and|strong=\"H3068\"* what|strong=\"H6213\"* you|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3318\"* the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Amorites, who|strong=\"H3068\"* were|strong=\"H4325\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, to|strong=\"H3318\"* Sihon|strong=\"H5511\"* and|strong=\"H3068\"* to|strong=\"H3318\"* Og|strong=\"H5747\"*, whom|strong=\"H6440\"* you|strong=\"H3588\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3824\"* soon|strong=\"H5750\"* as|strong=\"H3824\"* we|strong=\"H3068\"* had|strong=\"H3068\"* heard|strong=\"H8085\"* it|strong=\"H1931\"*, our|strong=\"H3068\"* hearts|strong=\"H3824\"* melted|strong=\"H4549\"*, and|strong=\"H6965\"* there|strong=\"H8478\"* wasn’t any|strong=\"H5750\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* any|strong=\"H5750\"* man|strong=\"H6440\"*, because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*: for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, and|strong=\"H6965\"* on|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* swear|strong=\"H7650\"* to|strong=\"H3068\"* me|strong=\"H5414\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* also|strong=\"H1571\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* my|strong=\"H5414\"* father’s house|strong=\"H1004\"*, and|strong=\"H3068\"* give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* true|strong=\"H3068\"* sign;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H5315\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H5315\"* save|strong=\"H2421\"* alive|strong=\"H2421\"* my|strong=\"H3605\"* father, my|strong=\"H3605\"* mother, my|strong=\"H3605\"* brothers, and|strong=\"H5315\"* my|strong=\"H3605\"* sisters, and|strong=\"H5315\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H5315\"* have|strong=\"H3605\"*, and|strong=\"H5315\"* will|strong=\"H5315\"* deliver|strong=\"H5337\"* our|strong=\"H3605\"* lives|strong=\"H5315\"* from|strong=\"H5315\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* men|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H4191\"* her|strong=\"H5414\"*, “Our|strong=\"H3068\"* life|strong=\"H5315\"* for|strong=\"H6213\"* yours|strong=\"H5414\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* don’t talk|strong=\"H1697\"* about|strong=\"H1961\"* this|strong=\"H2088\"* business|strong=\"H1697\"* of|strong=\"H3068\"* ours; and|strong=\"H3068\"* it|strong=\"H5414\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* us|strong=\"H5414\"* the|strong=\"H5414\"* land, that|strong=\"H5315\"* we|strong=\"H3068\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* and|strong=\"H3068\"* truly|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3588\"* she|strong=\"H1931\"* let|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* by|strong=\"H3427\"* a|strong=\"H3068\"* cord|strong=\"H2256\"* through|strong=\"H1157\"* the|strong=\"H3588\"* window|strong=\"H2474\"*; for|strong=\"H3588\"* her|strong=\"H3381\"* house|strong=\"H1004\"* was|strong=\"H1931\"* on|strong=\"H3427\"* the|strong=\"H3588\"* side|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* wall|strong=\"H2346\"*, and|strong=\"H1004\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H3588\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 16, + "text": "She|strong=\"H5704\"* said to|strong=\"H5704\"* them|strong=\"H7725\"*, “Go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H7725\"* mountain|strong=\"H2022\"*, lest|strong=\"H6435\"* the|strong=\"H7725\"* pursuers|strong=\"H7291\"* find you|strong=\"H3117\"*. Hide|strong=\"H2247\"* yourselves|strong=\"H8033\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H7725\"* pursuers|strong=\"H7291\"* have|strong=\"H3117\"* returned|strong=\"H7725\"*. Afterward, you|strong=\"H3117\"* may|strong=\"H7725\"* go|strong=\"H3212\"* your|strong=\"H7725\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H7650\"* men said to|strong=\"H7650\"* her|strong=\"H5355\"*, “We will|strong=\"H2088\"* be guiltless|strong=\"H5355\"* of|strong=\"H7621\"* this|strong=\"H2088\"* your|strong=\"H2088\"* oath|strong=\"H7621\"* which|strong=\"H2088\"* you|strong=\"H2088\"*’ve made|strong=\"H7650\"* us to|strong=\"H7650\"* swear|strong=\"H7650\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H2009\"* we|strong=\"H3068\"* come|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* land, tie|strong=\"H7194\"* this|strong=\"H2088\"* line|strong=\"H8615\"* of|strong=\"H1004\"* scarlet|strong=\"H8144\"* thread|strong=\"H2339\"* in|strong=\"H1004\"* the|strong=\"H3605\"* window|strong=\"H2474\"* which|strong=\"H1004\"* you|strong=\"H3605\"* used|strong=\"H3605\"* to|strong=\"H3381\"* let|strong=\"H3381\"* us|strong=\"H3381\"* down|strong=\"H3381\"*. Gather to|strong=\"H3381\"* yourself into|strong=\"H3381\"* the|strong=\"H3605\"* house|strong=\"H1004\"* your|strong=\"H3605\"* father, your|strong=\"H3605\"* mother, your|strong=\"H3605\"* brothers, and|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s household|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H1961\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* into|strong=\"H3318\"* the|strong=\"H3605\"* street|strong=\"H2351\"*, his|strong=\"H3605\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H3027\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3027\"* we|strong=\"H3068\"* will|strong=\"H1961\"* be|strong=\"H1961\"* guiltless|strong=\"H5355\"*. Whoever|strong=\"H3605\"* is|strong=\"H3027\"* with|strong=\"H1004\"* you|strong=\"H3605\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, his|strong=\"H3605\"* blood|strong=\"H1818\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* on|strong=\"H3027\"* our|strong=\"H3605\"* head|strong=\"H7218\"*, if|strong=\"H1961\"* any|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H3027\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H5046\"* talk|strong=\"H1697\"* about|strong=\"H1961\"* this|strong=\"H2088\"* business|strong=\"H1697\"* of|strong=\"H1697\"* ours, then|strong=\"H1961\"* we|strong=\"H3068\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* guiltless|strong=\"H5355\"* of|strong=\"H1697\"* your|strong=\"H1961\"* oath|strong=\"H7621\"* which|strong=\"H1697\"* you|strong=\"H5046\"*’ve made|strong=\"H7650\"* us|strong=\"H5046\"* to|strong=\"H1961\"* swear|strong=\"H7650\"*.”" + }, + { + "verseNum": 21, + "text": "She|strong=\"H1931\"* said|strong=\"H1697\"*, “Let|strong=\"H7971\"* it|strong=\"H1931\"* be|strong=\"H1697\"* as|strong=\"H1697\"* you|strong=\"H7971\"* have|strong=\"H1697\"* said|strong=\"H1697\"*.” She|strong=\"H1931\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H3651\"* departed|strong=\"H3212\"*. Then|strong=\"H3651\"* she|strong=\"H1931\"* tied|strong=\"H7194\"* the|strong=\"H7971\"* scarlet|strong=\"H8144\"* line|strong=\"H8615\"* in|strong=\"H3212\"* the|strong=\"H7971\"* window|strong=\"H2474\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3117\"* went|strong=\"H3212\"* and|strong=\"H7725\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H7725\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* pursuers|strong=\"H7291\"* had|strong=\"H4672\"* returned|strong=\"H7725\"*. The|strong=\"H3605\"* pursuers|strong=\"H7291\"* sought|strong=\"H1245\"* them|strong=\"H7725\"* all|strong=\"H3605\"* along|strong=\"H3212\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, but|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H7725\"* the|strong=\"H3605\"* two|strong=\"H8147\"* men|strong=\"H1121\"* returned|strong=\"H7725\"*, descended|strong=\"H3381\"* from|strong=\"H7725\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, crossed|strong=\"H5674\"* the|strong=\"H3605\"* river, and|strong=\"H1121\"* came|strong=\"H3381\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*. They|strong=\"H3605\"* told|strong=\"H5608\"* him|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H3091\"* happened|strong=\"H4672\"* to|strong=\"H7725\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3588\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Truly|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* into|strong=\"H3027\"* our|strong=\"H3068\"* hands|strong=\"H3027\"*. Moreover|strong=\"H1571\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* melt|strong=\"H4127\"* away|strong=\"H4127\"* before|strong=\"H6440\"* us|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* got|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*; and|strong=\"H1121\"* they|strong=\"H8033\"* moved|strong=\"H5265\"* from|strong=\"H5265\"* Shittim|strong=\"H7851\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H8033\"* camped there|strong=\"H8033\"* before|strong=\"H2962\"* they|strong=\"H8033\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 2, + "text": "After|strong=\"H1961\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, the|strong=\"H3117\"* officers|strong=\"H7860\"* went|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3117\"* middle|strong=\"H7130\"* of|strong=\"H3117\"* the|strong=\"H3117\"* camp|strong=\"H4264\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1980\"* they|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, saying, “When|strong=\"H7200\"* you|strong=\"H6680\"* see|strong=\"H7200\"* the|strong=\"H7200\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H1980\"* the|strong=\"H7200\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* it|strong=\"H7200\"*, then|strong=\"H1980\"* leave|strong=\"H1980\"* your|strong=\"H3068\"* place|strong=\"H4725\"* and|strong=\"H1980\"* follow|strong=\"H1980\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "Yet|strong=\"H3588\"* there|strong=\"H1961\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* space|strong=\"H7350\"* between|strong=\"H3045\"* you|strong=\"H3588\"* and|strong=\"H3212\"* it|strong=\"H7126\"* of|strong=\"H1870\"* about|strong=\"H1961\"* two|strong=\"H3808\"* thousand cubits+ 3:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 2,000 cubits is about 920 meters.* by|strong=\"H5674\"* measure|strong=\"H4060\"*—don’t come|strong=\"H1961\"* closer to|strong=\"H3212\"* it|strong=\"H7126\"*—that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* by|strong=\"H5674\"* which|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H3808\"* go|strong=\"H3212\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* passed|strong=\"H5674\"* this|strong=\"H5674\"* way|strong=\"H1870\"* before|strong=\"H3808\"*.”" + }, + { + "verseNum": 5, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*; for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* wonders|strong=\"H6381\"* among|strong=\"H7130\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H3212\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, saying, “Take|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H3212\"* cross|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*.” They|strong=\"H5971\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, “Today|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H3068\"* begin|strong=\"H2490\"* to|strong=\"H3478\"* magnify|strong=\"H1431\"* you|strong=\"H3588\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* as|strong=\"H3117\"* I|strong=\"H3588\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Moses|strong=\"H4872\"*, so|strong=\"H1961\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6680\"* shall|strong=\"H3548\"* command|strong=\"H6680\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H4325\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"*, saying, ‘When|strong=\"H5704\"* you|strong=\"H6680\"* come to|strong=\"H5704\"* the|strong=\"H5375\"* brink|strong=\"H7097\"* of|strong=\"H4325\"* the|strong=\"H5375\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, you|strong=\"H6680\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*.’”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Come|strong=\"H5066\"* here|strong=\"H2008\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* said, “By|strong=\"H6440\"* this|strong=\"H2063\"* you|strong=\"H3588\"* shall|strong=\"H6440\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H6440\"* living|strong=\"H2416\"* God is|strong=\"H6440\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, and|strong=\"H6440\"* that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3588\"* without|strong=\"H3588\"* fail|strong=\"H3423\"* drive|strong=\"H3423\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Hivite|strong=\"H2340\"*, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, the|strong=\"H6440\"* Amorite, and|strong=\"H6440\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* ark of|strong=\"H6440\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Lord+ 3:11 The word translated “Lord” is “Adonai.”* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth passes|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* you|strong=\"H6440\"* into|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* take|strong=\"H3947\"* twelve|strong=\"H8147\"* men|strong=\"H8147\"* out|strong=\"H3947\"* of|strong=\"H7626\"* the|strong=\"H3947\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, for|strong=\"H3478\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"* a|strong=\"H3068\"* man." + }, + { + "verseNum": 13, + "text": "It|strong=\"H5117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* that|strong=\"H3605\"* when|strong=\"H1961\"* the|strong=\"H3605\"* soles|strong=\"H3709\"* of|strong=\"H3068\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* Lord|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, rest|strong=\"H5117\"* in|strong=\"H3068\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* will|strong=\"H3068\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. The|strong=\"H3605\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* come|strong=\"H1961\"* down|strong=\"H3381\"* from|strong=\"H3772\"* above|strong=\"H4605\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* in|strong=\"H3068\"* one|strong=\"H3605\"* heap|strong=\"H5067\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* people|strong=\"H5971\"* moved|strong=\"H5265\"* from|strong=\"H5265\"* their|strong=\"H5375\"* tents to|strong=\"H1961\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H5971\"* bore|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* being|strong=\"H1961\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H3117\"* when|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark had|strong=\"H3548\"* come|strong=\"H4390\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H3117\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark had|strong=\"H3548\"* dipped|strong=\"H2881\"* in|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H3605\"* water|strong=\"H4325\"* (for|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* overflows|strong=\"H4390\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H3117\"* harvest|strong=\"H7105\"*)," + }, + { + "verseNum": 16, + "text": "the|strong=\"H5921\"* waters|strong=\"H4325\"* which|strong=\"H5971\"* came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3772\"* above|strong=\"H4605\"* stood|strong=\"H5975\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* one|strong=\"H5892\"* heap|strong=\"H5067\"* a|strong=\"H3068\"* great|strong=\"H3966\"* way|strong=\"H7368\"* off|strong=\"H3772\"*, at|strong=\"H5921\"* Adam, the|strong=\"H5921\"* city|strong=\"H5892\"* that|strong=\"H5971\"* is|strong=\"H5892\"* beside|strong=\"H5921\"* Zarethan|strong=\"H6891\"*; and|strong=\"H6965\"* those|strong=\"H5921\"* that|strong=\"H5971\"* went|strong=\"H3381\"* down|strong=\"H3381\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H5921\"* Arabah|strong=\"H6160\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, were|strong=\"H5971\"* wholly cut|strong=\"H3772\"* off|strong=\"H3772\"*. Then|strong=\"H6965\"* the|strong=\"H5921\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* near|strong=\"H5921\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* stood|strong=\"H5975\"* firm|strong=\"H3559\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"* in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* had|strong=\"H3068\"* passed|strong=\"H5674\"* completely|strong=\"H3605\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"* had|strong=\"H3068\"* completely|strong=\"H3605\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* twelve|strong=\"H8147\"* men|strong=\"H5971\"* out|strong=\"H4480\"* of|strong=\"H7626\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, a|strong=\"H3068\"* man out|strong=\"H4480\"* of|strong=\"H7626\"* every|strong=\"H3947\"* tribe|strong=\"H7626\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3548\"* command|strong=\"H6680\"* them|strong=\"H6680\"*, saying, ‘Take|strong=\"H5375\"* from|strong=\"H7272\"* out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H4673\"* the|strong=\"H5375\"* priests|strong=\"H3548\"*’ feet|strong=\"H7272\"* stood|strong=\"H4673\"* firm|strong=\"H3559\"*, twelve|strong=\"H8147\"* stones, carry|strong=\"H5375\"* them|strong=\"H6680\"* over|strong=\"H5674\"* with|strong=\"H5973\"* you|strong=\"H6680\"*, and|strong=\"H3548\"* lay|strong=\"H3240\"* them|strong=\"H6680\"* down|strong=\"H3240\"* in|strong=\"H8432\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H4673\"* you|strong=\"H6680\"*’ll camp tonight|strong=\"H3915\"*.’”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7121\"* Joshua|strong=\"H3091\"* called|strong=\"H7121\"* the|strong=\"H7121\"* twelve|strong=\"H8147\"* men|strong=\"H1121\"* whom|strong=\"H7121\"* he|strong=\"H8147\"* had|strong=\"H3478\"* prepared|strong=\"H3559\"* of|strong=\"H1121\"* the|strong=\"H7121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* out|strong=\"H8147\"* of|strong=\"H1121\"* every|strong=\"H7121\"* tribe|strong=\"H7626\"*." + }, + { + "verseNum": 5, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “Cross|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* into|strong=\"H8432\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, and|strong=\"H1121\"* each of|strong=\"H1121\"* you|strong=\"H6440\"* pick up|strong=\"H7311\"* a|strong=\"H3068\"* stone and|strong=\"H1121\"* put|strong=\"H3068\"* it|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H3068\"* shoulder|strong=\"H7926\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H6440\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H6440\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* this|strong=\"H2063\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign among|strong=\"H7130\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3588\"* children|strong=\"H1121\"* ask|strong=\"H7592\"* in|strong=\"H1121\"* the|strong=\"H3588\"* future, saying, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* mean by|strong=\"H1961\"* these|strong=\"H2063\"* stones?’" + }, + { + "verseNum": 7, + "text": "then|strong=\"H1961\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* tell them|strong=\"H6440\"*, ‘Because|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* were|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*. When|strong=\"H1961\"* it|strong=\"H6440\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*, the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* were|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. These|strong=\"H6440\"* stones shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H5704\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* to|strong=\"H5704\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*.’”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H1121\"* took|strong=\"H5375\"* up|strong=\"H5375\"* twelve|strong=\"H8147\"* stones out|strong=\"H6213\"* of|strong=\"H1121\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, according to|strong=\"H1696\"* the|strong=\"H5375\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H5375\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3651\"* carried|strong=\"H5375\"* them|strong=\"H6213\"* over|strong=\"H5674\"* with|strong=\"H5973\"* them|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H5375\"* place|strong=\"H4411\"* where|strong=\"H8033\"* they|strong=\"H3651\"* camped, and|strong=\"H1121\"* laid|strong=\"H5375\"* them|strong=\"H6213\"* down|strong=\"H3240\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* set|strong=\"H6965\"* up|strong=\"H6965\"* twelve|strong=\"H8147\"* stones in|strong=\"H3117\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*, in|strong=\"H3117\"* the|strong=\"H5375\"* place|strong=\"H8478\"* where|strong=\"H8033\"* the|strong=\"H5375\"* feet|strong=\"H7272\"* of|strong=\"H3117\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3117\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* stood|strong=\"H6965\"*; and|strong=\"H6965\"* they|strong=\"H3117\"* are|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H5704\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* until|strong=\"H5704\"* everything|strong=\"H3605\"* was|strong=\"H3068\"* finished|strong=\"H8552\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*; and|strong=\"H4872\"* the|strong=\"H3605\"* people|strong=\"H5971\"* hurried|strong=\"H4116\"* and|strong=\"H4872\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* had|strong=\"H3068\"* completely|strong=\"H3605\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*, Yahweh|strong=\"H3068\"*’s ark crossed|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* armed|strong=\"H2571\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H6440\"* Moses|strong=\"H4872\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "About forty thousand men|strong=\"H2502\"*, ready and|strong=\"H3068\"* armed|strong=\"H2502\"* for|strong=\"H6440\"* war|strong=\"H4421\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* battle|strong=\"H4421\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* plains|strong=\"H6160\"* of|strong=\"H3068\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 14, + "text": "On|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* magnified|strong=\"H1431\"* Joshua|strong=\"H3091\"* in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H4872\"* they|strong=\"H3117\"* feared|strong=\"H3372\"* him|strong=\"H1931\"*, as|strong=\"H3117\"* they|strong=\"H3117\"* feared|strong=\"H3372\"* Moses|strong=\"H4872\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 16, + "text": "“Command|strong=\"H6680\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H4480\"* the|strong=\"H5375\"* covenant, that|strong=\"H3548\"* they|strong=\"H5375\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5375\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* therefore|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*, saying, “Come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"*!”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* had|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* soles|strong=\"H3709\"* of|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*’ feet|strong=\"H7272\"* had|strong=\"H3068\"* been|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* to|strong=\"H7725\"* the|strong=\"H3605\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*, the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3605\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"*, as|strong=\"H1961\"* before|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H4480\"* people|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"* on|strong=\"H5927\"* the|strong=\"H4480\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H4480\"* the|strong=\"H4480\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, and|strong=\"H5971\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilgal|strong=\"H1537\"*, on|strong=\"H5927\"* the|strong=\"H4480\"* east|strong=\"H4217\"* border|strong=\"H7097\"* of|strong=\"H4480\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 20, + "text": "Joshua|strong=\"H3091\"* set|strong=\"H6965\"* up|strong=\"H6965\"* those|strong=\"H4480\"* twelve|strong=\"H8147\"* stones, which they|strong=\"H3947\"* took|strong=\"H3947\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, in|strong=\"H6965\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3478\"* spoke to|strong=\"H3478\"* the|strong=\"H7592\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “When|strong=\"H1121\"* your|strong=\"H3478\"* children|strong=\"H1121\"* ask|strong=\"H7592\"* their|strong=\"H7592\"* fathers in|strong=\"H3478\"* time|strong=\"H4279\"* to|strong=\"H3478\"* come|strong=\"H4279\"*, saying, ‘What|strong=\"H4100\"* do|strong=\"H4100\"* these stones mean?’" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H2088\"* you|strong=\"H3045\"* shall|strong=\"H1121\"* let your|strong=\"H3045\"* children|strong=\"H1121\"* know|strong=\"H3045\"*, saying, ‘Israel|strong=\"H3478\"* came|strong=\"H3478\"* over|strong=\"H5674\"* this|strong=\"H2088\"* Jordan|strong=\"H3383\"* on|strong=\"H5674\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"* until|strong=\"H5704\"* you|strong=\"H6440\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* did|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6440\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, which|strong=\"H3068\"* he|strong=\"H5704\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6213\"*, until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"*," + }, + { + "verseNum": 24, + "text": "that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* mighty|strong=\"H2389\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* forever|strong=\"H3605\"*.’”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, heard|strong=\"H8085\"* how|strong=\"H5704\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* until|strong=\"H5704\"* we|strong=\"H3068\"* had|strong=\"H3068\"* crossed|strong=\"H5674\"* over|strong=\"H5921\"*, their|strong=\"H3605\"* heart|strong=\"H3824\"* melted|strong=\"H4549\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* Joshua|strong=\"H3091\"*, “Make|strong=\"H6213\"* flint|strong=\"H6697\"* knives|strong=\"H2719\"*, and|strong=\"H1121\"* circumcise|strong=\"H4135\"* again|strong=\"H7725\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* the|strong=\"H6213\"* second|strong=\"H8145\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 3, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* flint|strong=\"H6697\"* knives|strong=\"H2719\"*, and|strong=\"H1121\"* circumcised|strong=\"H4135\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* the|strong=\"H6213\"* hill|strong=\"H1389\"* of|strong=\"H1121\"* the|strong=\"H6213\"* foreskins|strong=\"H6190\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* reason|strong=\"H1697\"* Joshua|strong=\"H3091\"* circumcised|strong=\"H4135\"* them|strong=\"H3318\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* were|strong=\"H5971\"* males|strong=\"H2145\"*, even|strong=\"H4714\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H2145\"* of|strong=\"H1697\"* war|strong=\"H4421\"*, died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* along the|strong=\"H3605\"* way|strong=\"H1870\"*, after|strong=\"H3318\"* they|strong=\"H5971\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H1961\"* out|strong=\"H3318\"* were|strong=\"H1961\"* circumcised|strong=\"H4135\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* born|strong=\"H3209\"* in|strong=\"H1870\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* along|strong=\"H3588\"* the|strong=\"H3605\"* way|strong=\"H1870\"* as|strong=\"H1961\"* they|strong=\"H3588\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Egypt|strong=\"H4714\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* circumcised|strong=\"H4135\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nation|strong=\"H1471\"*, even|strong=\"H5704\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"* who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, were|strong=\"H3478\"* consumed|strong=\"H8552\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*. Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* them|strong=\"H5414\"* that|strong=\"H3588\"* he|strong=\"H3588\"* wouldn’t let|strong=\"H5414\"* them|strong=\"H5414\"* see|strong=\"H7200\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H5704\"* their|strong=\"H3605\"* fathers that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H1980\"* milk|strong=\"H2461\"* and|strong=\"H1121\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H3588\"* children|strong=\"H1121\"*, whom|strong=\"H3588\"* he|strong=\"H3588\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H1121\"* their|strong=\"H3588\"* place|strong=\"H8478\"*, were|strong=\"H1961\"* circumcised|strong=\"H4135\"* by|strong=\"H1870\"* Joshua|strong=\"H3091\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* uncircumcised|strong=\"H6189\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* circumcised|strong=\"H4135\"* them|strong=\"H4135\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* they|strong=\"H5704\"* were|strong=\"H1961\"* done|strong=\"H1961\"* circumcising|strong=\"H4135\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* nation|strong=\"H1471\"*, they|strong=\"H5704\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* places|strong=\"H3605\"* in|strong=\"H3427\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H1961\"* healed|strong=\"H2421\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H5704\"* Joshua|strong=\"H3091\"*, “Today|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3068\"* rolled|strong=\"H1556\"* away|strong=\"H1556\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* from|strong=\"H5921\"* you|strong=\"H5921\"*.” Therefore|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3117\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* Gilgal|strong=\"H1537\"*+ 5:9 “Gilgal” sounds like the Hebrew for “roll.”* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilgal|strong=\"H1537\"*. They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H6213\"* month|strong=\"H2320\"* at|strong=\"H2583\"* evening|strong=\"H6153\"* in|strong=\"H2583\"* the|strong=\"H6213\"* plains|strong=\"H6160\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3117\"* ate unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"* and|strong=\"H3117\"* parched|strong=\"H7033\"* grain of|strong=\"H3117\"* the|strong=\"H3117\"* produce|strong=\"H5669\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land on|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* Passover|strong=\"H6453\"*, in|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* manna|strong=\"H4478\"* ceased|strong=\"H7673\"* on|strong=\"H1961\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, after|strong=\"H4283\"* they|strong=\"H3808\"* had|strong=\"H1961\"* eaten of|strong=\"H1121\"* the|strong=\"H1961\"* produce|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H1961\"* land. The|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t have|strong=\"H1961\"* manna|strong=\"H4478\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* ate of|strong=\"H1121\"* the|strong=\"H1961\"* fruit|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H1961\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"* that|strong=\"H1931\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Joshua|strong=\"H3091\"* was|strong=\"H1961\"* by|strong=\"H3027\"* Jericho|strong=\"H3405\"*, he|strong=\"H3027\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H3027\"* looked|strong=\"H7200\"*, and|strong=\"H3027\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* stood|strong=\"H5975\"* in|strong=\"H3212\"* front|strong=\"H5048\"* of|strong=\"H3027\"* him|strong=\"H3027\"* with|strong=\"H3212\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* drawn|strong=\"H8025\"* in|strong=\"H3212\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*. Joshua|strong=\"H3091\"* went|strong=\"H3212\"* to|strong=\"H3212\"* him|strong=\"H3027\"* and|strong=\"H3027\"* said to|strong=\"H3212\"* him|strong=\"H3027\"*, “Are|strong=\"H5869\"* you|strong=\"H7200\"* for|strong=\"H3027\"* us|strong=\"H7200\"*, or|strong=\"H2719\"* for|strong=\"H3027\"* our|strong=\"H7200\"* enemies|strong=\"H6862\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"*, “No|strong=\"H3808\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* come|strong=\"H5307\"* now|strong=\"H6258\"* as|strong=\"H3068\"* commander|strong=\"H8269\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s army|strong=\"H6635\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s army|strong=\"H6635\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Take|strong=\"H6213\"* off|strong=\"H5921\"* your|strong=\"H3068\"* sandals|strong=\"H5275\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* place|strong=\"H4725\"* on|strong=\"H5921\"* which|strong=\"H1931\"* you|strong=\"H3588\"* stand|strong=\"H5975\"* is|strong=\"H3068\"* holy|strong=\"H6944\"*.” Joshua|strong=\"H3091\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* Jericho|strong=\"H3405\"* was|strong=\"H3478\"* tightly|strong=\"H5462\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. No|strong=\"H6440\"* one|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* no|strong=\"H6440\"* one|strong=\"H1121\"* came|strong=\"H3318\"* in|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* Jericho|strong=\"H3405\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, with|strong=\"H3068\"* its|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H7200\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* of|strong=\"H3117\"* your|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H3117\"* war|strong=\"H4421\"* shall|strong=\"H3117\"* march|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, going around|strong=\"H5437\"* the|strong=\"H3605\"* city|strong=\"H5892\"* once|strong=\"H6471\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* this|strong=\"H6213\"* six|strong=\"H8337\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Seven|strong=\"H7651\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* bear|strong=\"H5375\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3117\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark. On|strong=\"H3117\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, you|strong=\"H6440\"* shall|strong=\"H3548\"* march|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H6440\"* city|strong=\"H5892\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* blow|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5927\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* when|strong=\"H1961\"* they|strong=\"H5971\"* make|strong=\"H8085\"* a|strong=\"H3068\"* long|strong=\"H3605\"* blast|strong=\"H4900\"* with|strong=\"H5971\"* the|strong=\"H3605\"* ram’s horn|strong=\"H7161\"*, and|strong=\"H1419\"* when|strong=\"H1961\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* shout|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*; then|strong=\"H1961\"* the|strong=\"H3605\"* city|strong=\"H5892\"* wall|strong=\"H2346\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* flat|strong=\"H8478\"*, and|strong=\"H1419\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, every|strong=\"H3605\"* man|strong=\"H1419\"* straight|strong=\"H5048\"* in|strong=\"H8085\"* front|strong=\"H5048\"* of|strong=\"H5892\"* him|strong=\"H6963\"*.”" + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* called|strong=\"H7121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Take|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* ark of|strong=\"H1121\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, and|strong=\"H1121\"* let seven|strong=\"H7651\"* priests|strong=\"H3548\"* bear|strong=\"H5375\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H1121\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, “Advance! March|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* let the|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H5971\"* pass|strong=\"H5674\"* on|strong=\"H5674\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"H5375\"* was|strong=\"H3068\"* so|strong=\"H1980\"*, that|strong=\"H5971\"* when|strong=\"H1961\"* Joshua|strong=\"H3091\"* had|strong=\"H3068\"* spoken to|strong=\"H1980\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3068\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* advanced|strong=\"H5375\"* and|strong=\"H1980\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* followed|strong=\"H1980\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*, and|strong=\"H1980\"* the|strong=\"H6440\"* ark went|strong=\"H1980\"* after|strong=\"H1980\"* them|strong=\"H6440\"*. The|strong=\"H6440\"* trumpets|strong=\"H7782\"* sounded|strong=\"H8628\"* as|strong=\"H6440\"* they|strong=\"H6440\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, “You|strong=\"H6680\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* shout|strong=\"H7321\"* nor|strong=\"H3808\"* let|strong=\"H3808\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* be|strong=\"H3808\"* heard|strong=\"H8085\"*, neither|strong=\"H3808\"* shall|strong=\"H5971\"* any|strong=\"H1697\"* word|strong=\"H1697\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* your|strong=\"H8085\"* mouth|strong=\"H6310\"* until|strong=\"H5704\"* the|strong=\"H8085\"* day|strong=\"H3117\"* I|strong=\"H3117\"* tell|strong=\"H8085\"* you|strong=\"H6680\"* to|strong=\"H5704\"* shout|strong=\"H7321\"*. Then|strong=\"H3318\"* you|strong=\"H6680\"* shall|strong=\"H5971\"* shout|strong=\"H7321\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H5437\"* he|strong=\"H3068\"* caused Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3068\"* go|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, circling|strong=\"H5362\"* it|strong=\"H5437\"* once|strong=\"H6471\"*. Then|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* into|strong=\"H5892\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* stayed|strong=\"H3885\"* in|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H5375\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* the|strong=\"H5375\"* priests|strong=\"H3548\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* seven|strong=\"H7651\"* priests|strong=\"H3548\"* bearing|strong=\"H5375\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* trumpets|strong=\"H7782\"* of|strong=\"H3068\"* rams|strong=\"H3104\"*’ horns|strong=\"H7782\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark went|strong=\"H1980\"* on|strong=\"H1980\"* continually|strong=\"H1980\"*, and|strong=\"H1980\"* blew|strong=\"H8628\"* the|strong=\"H6440\"* trumpets|strong=\"H7782\"*. The|strong=\"H6440\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* went|strong=\"H1980\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H3068\"* them|strong=\"H6440\"*. The|strong=\"H6440\"* rear guard came|strong=\"H1980\"* after|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s ark. The|strong=\"H6440\"* trumpets|strong=\"H7782\"* sounded|strong=\"H8628\"* as|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3541\"* second|strong=\"H8145\"* day|strong=\"H3117\"* they|strong=\"H3117\"* marched|strong=\"H5437\"* around|strong=\"H5437\"* the|strong=\"H3541\"* city|strong=\"H5892\"* once|strong=\"H6471\"*, and|strong=\"H7725\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3541\"* camp|strong=\"H4264\"*. They|strong=\"H3117\"* did|strong=\"H6213\"* this|strong=\"H6213\"* six|strong=\"H8337\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* at|strong=\"H3117\"* the|strong=\"H3117\"* dawning|strong=\"H7837\"* of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* marched|strong=\"H5927\"* around|strong=\"H5437\"* the|strong=\"H3117\"* city|strong=\"H5892\"* in|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H1931\"* way|strong=\"H4941\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*. On|strong=\"H3117\"* this|strong=\"H2088\"* day|strong=\"H3117\"* only|strong=\"H7535\"* they|strong=\"H3117\"* marched|strong=\"H5927\"* around|strong=\"H5437\"* the|strong=\"H3117\"* city|strong=\"H5892\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"* time|strong=\"H6471\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* blew|strong=\"H8628\"* the|strong=\"H3588\"* trumpets|strong=\"H7782\"*, Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “Shout|strong=\"H7321\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* city|strong=\"H5892\"*!" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* city|strong=\"H5892\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* devoted|strong=\"H2764\"*, even|strong=\"H3588\"* it|strong=\"H1931\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* it|strong=\"H1931\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Only|strong=\"H7535\"* Rahab|strong=\"H7343\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* shall|strong=\"H3068\"* live|strong=\"H2421\"*, she|strong=\"H1931\"* and|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* with|strong=\"H1004\"* her|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* she|strong=\"H1931\"* hid|strong=\"H2244\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* that|strong=\"H3588\"* we|strong=\"H3068\"* sent|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H7535\"* as|strong=\"H3947\"* for|strong=\"H3478\"* you|strong=\"H3947\"*, only|strong=\"H7535\"* keep|strong=\"H8104\"* yourselves from|strong=\"H4480\"* what is|strong=\"H3478\"* devoted|strong=\"H2764\"* to|strong=\"H3478\"* destruction|strong=\"H2764\"*, lest|strong=\"H6435\"* when|strong=\"H4480\"* you|strong=\"H3947\"* have|strong=\"H3478\"* devoted|strong=\"H2764\"* it|strong=\"H7760\"*, you|strong=\"H3947\"* take|strong=\"H3947\"* of|strong=\"H4480\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*; so|strong=\"H4480\"* you|strong=\"H3947\"* would|strong=\"H3478\"* make|strong=\"H7760\"* the|strong=\"H3947\"* camp|strong=\"H4264\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* accursed|strong=\"H2764\"* and|strong=\"H3478\"* trouble|strong=\"H5916\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1931\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3068\"* vessels|strong=\"H3627\"* of|strong=\"H3068\"* bronze|strong=\"H5178\"* and|strong=\"H3068\"* iron|strong=\"H1270\"* are|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* shall|strong=\"H3068\"* come into|strong=\"H3701\"* Yahweh|strong=\"H3068\"*’s treasury.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H1961\"* the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* and|strong=\"H1419\"* the|strong=\"H8085\"* priests blew|strong=\"H8628\"* the|strong=\"H8085\"* trumpets|strong=\"H7782\"*. When|strong=\"H1961\"* the|strong=\"H8085\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, and|strong=\"H1419\"* the|strong=\"H8085\"* wall|strong=\"H2346\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* flat|strong=\"H8478\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H8085\"* city|strong=\"H5892\"*, every|strong=\"H5927\"* man|strong=\"H1419\"* straight|strong=\"H5048\"* in|strong=\"H8085\"* front|strong=\"H5048\"* of|strong=\"H5892\"* him|strong=\"H6963\"*, and|strong=\"H1419\"* they|strong=\"H5971\"* took|strong=\"H3920\"* the|strong=\"H8085\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5704\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, both|strong=\"H3605\"* man|strong=\"H5288\"* and|strong=\"H5892\"* woman, both|strong=\"H3605\"* young|strong=\"H5288\"* and|strong=\"H5892\"* old|strong=\"H2205\"*, and|strong=\"H5892\"* ox|strong=\"H7794\"*, sheep|strong=\"H7716\"*, and|strong=\"H5892\"* donkey|strong=\"H2543\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* two|strong=\"H8147\"* men|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3091\"* spied|strong=\"H7270\"* out|strong=\"H3318\"* the|strong=\"H3605\"* land, “Go|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* bring|strong=\"H3318\"* the|strong=\"H3605\"* woman|strong=\"H1004\"* and|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* she|strong=\"H8147\"* has|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"*, as|strong=\"H3318\"* you|strong=\"H3605\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* her|strong=\"H3605\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H3605\"* were|strong=\"H3478\"* spies|strong=\"H7270\"* went|strong=\"H3318\"* in|strong=\"H3478\"*, and|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* Rahab|strong=\"H7343\"* with|strong=\"H3318\"* her|strong=\"H3605\"* father, her|strong=\"H3605\"* mother, her|strong=\"H3605\"* brothers, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* she had|strong=\"H3478\"*. They|strong=\"H3478\"* also|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* of|strong=\"H4264\"* her|strong=\"H3605\"* relatives|strong=\"H4940\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* set|strong=\"H3240\"* them|strong=\"H3318\"* outside|strong=\"H2351\"* of|strong=\"H4264\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3068\"* it|strong=\"H5414\"*. Only|strong=\"H7535\"* they|strong=\"H3068\"* put|strong=\"H5414\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* and|strong=\"H3068\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* into|strong=\"H3701\"* the|strong=\"H3605\"* treasury|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Rahab|strong=\"H7343\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*, her|strong=\"H3605\"* father’s household|strong=\"H1004\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3478\"*, Joshua|strong=\"H3091\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"*. She|strong=\"H3588\"* lives|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* hid|strong=\"H2244\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* whom|strong=\"H3588\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 26, + "text": "Joshua|strong=\"H3091\"* commanded them|strong=\"H6440\"* with|strong=\"H3068\"* an|strong=\"H1129\"* oath|strong=\"H7650\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, saying, “Cursed is|strong=\"H3068\"* the|strong=\"H6440\"* man|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* builds|strong=\"H1129\"* this|strong=\"H2063\"* city|strong=\"H5892\"* Jericho|strong=\"H3405\"*. With|strong=\"H3068\"* the|strong=\"H6440\"* loss of|strong=\"H3068\"* his|strong=\"H3068\"* firstborn|strong=\"H1060\"* he|strong=\"H1931\"* will|strong=\"H3068\"* lay|strong=\"H3245\"* its|strong=\"H3245\"* foundation|strong=\"H3245\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* the|strong=\"H6440\"* loss of|strong=\"H3068\"* his|strong=\"H3068\"* youngest|strong=\"H6810\"* son|strong=\"H6810\"* he|strong=\"H1931\"* will|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H3245\"* gates|strong=\"H1817\"*.”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* Joshua|strong=\"H3091\"*; and|strong=\"H3068\"* his|strong=\"H3605\"* fame|strong=\"H8089\"* was|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* in|strong=\"H3478\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*; for|strong=\"H3068\"* Achan|strong=\"H5912\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, of|strong=\"H1121\"* the|strong=\"H3947\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, took|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*. Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* men from|strong=\"H5927\"* Jericho|strong=\"H3405\"* to|strong=\"H7971\"* Ai|strong=\"H5857\"*, which is|strong=\"H7971\"* beside|strong=\"H5973\"* Beth Aven, on|strong=\"H5927\"* the|strong=\"H7971\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H6924\"* Bethel|strong=\"H1008\"*, and|strong=\"H7971\"* spoke to|strong=\"H7971\"* them|strong=\"H7971\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H7971\"* land.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H1992\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"*, and|strong=\"H7725\"* said to|strong=\"H7725\"* him|strong=\"H5221\"*, “Don’t let|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* let|strong=\"H7725\"* about|strong=\"H8033\"* two|strong=\"H5221\"* or|strong=\"H4592\"* three|strong=\"H7969\"* thousand men|strong=\"H5971\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7725\"* strike|strong=\"H5221\"* Ai|strong=\"H5857\"*. Don’t make|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7725\"* toil|strong=\"H3021\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H1992\"* only|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4592\"* of|strong=\"H5971\"* them|strong=\"H1992\"*.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H4480\"* about|strong=\"H4480\"* three|strong=\"H7969\"* thousand men|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"*, and|strong=\"H5971\"* they|strong=\"H8033\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H6440\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H6440\"* Ai|strong=\"H5857\"* struck|strong=\"H5221\"* about|strong=\"H1961\"* thirty-six|strong=\"H7970\"* men|strong=\"H5971\"* of|strong=\"H6440\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* chased|strong=\"H7291\"* them|strong=\"H1992\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Shebarim|strong=\"H7671\"*, and|strong=\"H7970\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* at|strong=\"H1961\"* the|strong=\"H6440\"* descent|strong=\"H4174\"*. The|strong=\"H6440\"* hearts|strong=\"H3824\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* melted|strong=\"H4549\"*, and|strong=\"H7970\"* became|strong=\"H1961\"* like|strong=\"H1961\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 6, + "text": "Joshua|strong=\"H3091\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes|strong=\"H8071\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* to|strong=\"H5704\"* the|strong=\"H6440\"* earth|strong=\"H6083\"* on|strong=\"H5921\"* his|strong=\"H3068\"* face|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark until|strong=\"H5704\"* the|strong=\"H6440\"* evening|strong=\"H6153\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* put|strong=\"H5927\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* their|strong=\"H3068\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "Joshua|strong=\"H3091\"* said, “Alas, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H5414\"* brought|strong=\"H5414\"* this|strong=\"H2088\"* people|strong=\"H5971\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* at|strong=\"H3427\"* all|strong=\"H5414\"*, to|strong=\"H5414\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Amorites, to|strong=\"H5414\"* cause|strong=\"H5414\"* us|strong=\"H5414\"* to|strong=\"H5414\"* perish|strong=\"H5674\"*? I|strong=\"H5414\"* wish that|strong=\"H5971\"* we|strong=\"H3068\"* had|strong=\"H3091\"* been|strong=\"H5971\"* content|strong=\"H2974\"* and|strong=\"H3027\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*!" + }, + { + "verseNum": 8, + "text": "Oh, Lord, what|strong=\"H4100\"* shall|strong=\"H3478\"* I|strong=\"H4100\"* say|strong=\"H3478\"*, after|strong=\"H6203\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* turned|strong=\"H2015\"* their|strong=\"H6440\"* backs|strong=\"H6203\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies?" + }, + { + "verseNum": 9, + "text": "For|strong=\"H5921\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"* and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land will|strong=\"H4100\"* hear|strong=\"H8085\"* of|strong=\"H3427\"* it|strong=\"H5921\"*, and|strong=\"H1419\"* will|strong=\"H4100\"* surround|strong=\"H5437\"* us|strong=\"H5921\"*, and|strong=\"H1419\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* our|strong=\"H3605\"* name|strong=\"H8034\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth. What|strong=\"H4100\"* will|strong=\"H4100\"* you|strong=\"H3605\"* do|strong=\"H6213\"* for|strong=\"H5921\"* your|strong=\"H3605\"* great|strong=\"H1419\"* name|strong=\"H8034\"*?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Get|strong=\"H6965\"* up|strong=\"H6965\"*! Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6440\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* your|strong=\"H3068\"* face|strong=\"H6440\"* like|strong=\"H5307\"* that|strong=\"H3068\"*?" + }, + { + "verseNum": 11, + "text": "Israel|strong=\"H3478\"* has|strong=\"H3478\"* sinned|strong=\"H2398\"*. Yes|strong=\"H1571\"*, they|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* transgressed|strong=\"H5674\"* my|strong=\"H7760\"* covenant|strong=\"H1285\"* which|strong=\"H3478\"* I|strong=\"H7760\"* commanded|strong=\"H6680\"* them|strong=\"H7760\"*. Yes|strong=\"H1571\"*, they|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* taken|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H3627\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*, and|strong=\"H3478\"* have|strong=\"H1571\"* also|strong=\"H1571\"* stolen|strong=\"H1589\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* deceived|strong=\"H3584\"*. They|strong=\"H3478\"* have|strong=\"H1571\"* even|strong=\"H1571\"* put|strong=\"H7760\"* it|strong=\"H7760\"* among|strong=\"H4480\"* their|strong=\"H3947\"* own stuff|strong=\"H3627\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* can|strong=\"H3201\"*’t stand|strong=\"H6965\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies|strong=\"H6965\"*. They|strong=\"H3588\"* turn|strong=\"H6437\"* their|strong=\"H6440\"* backs|strong=\"H6203\"* before|strong=\"H6440\"* their|strong=\"H6440\"* enemies|strong=\"H6965\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* become|strong=\"H1961\"* devoted|strong=\"H2764\"* for|strong=\"H3588\"* destruction|strong=\"H8045\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* any|strong=\"H6440\"* more|strong=\"H3254\"*, unless|strong=\"H3588\"* you|strong=\"H3588\"* destroy|strong=\"H8045\"* the|strong=\"H6440\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"* from|strong=\"H6440\"* among|strong=\"H7130\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Get|strong=\"H6965\"* up|strong=\"H6965\"*! Sanctify|strong=\"H6942\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H6965\"* say|strong=\"H3478\"*, ‘Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"* for|strong=\"H3588\"* tomorrow|strong=\"H4279\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, “There|strong=\"H5704\"* is|strong=\"H3068\"* a|strong=\"H3068\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* among|strong=\"H7130\"* you|strong=\"H3588\"*, Israel|strong=\"H3478\"*. You|strong=\"H3588\"* cannot|strong=\"H3808\"* stand|strong=\"H6965\"* before|strong=\"H6440\"* your|strong=\"H3068\"* enemies|strong=\"H6965\"* until|strong=\"H5704\"* you|strong=\"H3588\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* therefore|strong=\"H3068\"* you|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* by|strong=\"H3068\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"*. It|strong=\"H7126\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* the|strong=\"H3068\"* tribe|strong=\"H7626\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* by|strong=\"H3068\"* families|strong=\"H4940\"*. The|strong=\"H3068\"* family|strong=\"H4940\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* by|strong=\"H3068\"* households|strong=\"H1004\"*. The|strong=\"H3068\"* household|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* selects|strong=\"H3920\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* man|strong=\"H1397\"* by|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H3068\"* taken|strong=\"H3920\"* with|strong=\"H8313\"* the|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire, he|strong=\"H3588\"* and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* transgressed|strong=\"H5674\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H3478\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H6213\"* a|strong=\"H3068\"* disgraceful|strong=\"H5039\"* thing|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H7126\"* Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H3091\"* morning|strong=\"H1242\"* and|strong=\"H3063\"* brought|strong=\"H7126\"* Israel|strong=\"H3478\"* near|strong=\"H7126\"* by|strong=\"H1242\"* their|strong=\"H7126\"* tribes|strong=\"H7626\"*. The|strong=\"H3091\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"* was|strong=\"H3478\"* selected." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3063\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* he|strong=\"H3063\"* selected the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7126\"* Zerahites|strong=\"H2227\"*. He|strong=\"H3063\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H7126\"* Zerahites|strong=\"H2227\"* man|strong=\"H1397\"* by|strong=\"H1397\"* man|strong=\"H1397\"*, and|strong=\"H3063\"* Zabdi|strong=\"H2067\"* was|strong=\"H3063\"* selected." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1004\"* brought|strong=\"H7126\"* near|strong=\"H7126\"* his|strong=\"H7126\"* household|strong=\"H1004\"* man|strong=\"H1397\"* by|strong=\"H1397\"* man|strong=\"H1397\"*, and|strong=\"H1121\"* Achan|strong=\"H5912\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, of|strong=\"H1121\"* the|strong=\"H7126\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, was|strong=\"H1004\"* selected." + }, + { + "verseNum": 19, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* Achan|strong=\"H5912\"*, “My|strong=\"H5414\"* son|strong=\"H1121\"*, please|strong=\"H4994\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* confession|strong=\"H8426\"* to|strong=\"H3478\"* him|strong=\"H5414\"*. Tell|strong=\"H5046\"* me|strong=\"H5414\"* now|strong=\"H4994\"* what|strong=\"H4100\"* you|strong=\"H5414\"* have|strong=\"H3068\"* done|strong=\"H6213\"*! Don’t hide|strong=\"H3582\"* it|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*!”" + }, + { + "verseNum": 20, + "text": "Achan|strong=\"H5912\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* said|strong=\"H6030\"*, “I|strong=\"H3478\"* have|strong=\"H3068\"* truly|strong=\"H6213\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* is|strong=\"H3068\"* what|strong=\"H6213\"* I|strong=\"H3478\"* have|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7200\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* among|strong=\"H8432\"* the|strong=\"H7200\"* plunder|strong=\"H7998\"* a|strong=\"H3068\"* beautiful|strong=\"H2896\"* Babylonian robe, two|strong=\"H3947\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*+ 7:21 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H8432\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* wedge|strong=\"H3956\"* of|strong=\"H8432\"* gold|strong=\"H2091\"* weighing|strong=\"H4948\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*, then|strong=\"H2009\"* I|strong=\"H2009\"* coveted|strong=\"H2530\"* them|strong=\"H7200\"* and|strong=\"H3967\"* took|strong=\"H3947\"* them|strong=\"H7200\"*. Behold|strong=\"H2009\"*, they|strong=\"H3947\"* are|strong=\"H2896\"* hidden|strong=\"H2934\"* in|strong=\"H8432\"* the|strong=\"H7200\"* ground in|strong=\"H8432\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* my|strong=\"H7200\"* tent, with|strong=\"H3947\"* the|strong=\"H7200\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* it|strong=\"H8432\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H3701\"* they|strong=\"H7323\"* ran|strong=\"H7323\"* to|strong=\"H7971\"* the|strong=\"H8478\"* tent. Behold|strong=\"H2009\"*, it|strong=\"H7971\"* was|strong=\"H3091\"* hidden|strong=\"H2934\"* in|strong=\"H3701\"* his|strong=\"H7971\"* tent, with|strong=\"H7971\"* the|strong=\"H8478\"* silver|strong=\"H3701\"* under|strong=\"H8478\"* it|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3068\"* took|strong=\"H3947\"* them|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tent, and|strong=\"H1121\"* brought|strong=\"H3947\"* them|strong=\"H6440\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3068\"* laid|strong=\"H3478\"* them|strong=\"H6440\"* down|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Joshua|strong=\"H3091\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, took|strong=\"H3947\"* Achan|strong=\"H5912\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* robe, the|strong=\"H3605\"* wedge|strong=\"H3956\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, his|strong=\"H3605\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* daughters|strong=\"H1323\"*, his|strong=\"H3605\"* cattle|strong=\"H6629\"*, his|strong=\"H3605\"* donkeys|strong=\"H2543\"*, his|strong=\"H3605\"* sheep|strong=\"H6629\"*, his|strong=\"H3605\"* tent, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* brought|strong=\"H5927\"* them|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Achor|strong=\"H5911\"*." + }, + { + "verseNum": 25, + "text": "Joshua|strong=\"H3091\"* said, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3605\"* troubled|strong=\"H5916\"* us|strong=\"H3117\"*? Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* trouble|strong=\"H5916\"* you|strong=\"H3605\"* today|strong=\"H3117\"*.” All|strong=\"H3605\"* Israel|strong=\"H3478\"* stoned|strong=\"H5619\"* him|strong=\"H3605\"* with|strong=\"H8313\"* stones|strong=\"H5619\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* burned|strong=\"H8313\"* them|strong=\"H8313\"* with|strong=\"H8313\"* fire and|strong=\"H3478\"* stoned|strong=\"H5619\"* them|strong=\"H8313\"* with|strong=\"H8313\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3117\"* raised|strong=\"H6965\"* over|strong=\"H5921\"* him|strong=\"H7121\"* a|strong=\"H3068\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H3068\"* stones that|strong=\"H3117\"* remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5921\"* fierceness|strong=\"H2740\"* of|strong=\"H3068\"* his|strong=\"H3068\"* anger|strong=\"H2740\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3117\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* “The|strong=\"H5921\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* Achor|strong=\"H5911\"*” to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"*, and|strong=\"H6965\"* don’t be|strong=\"H3027\"* dismayed|strong=\"H2865\"*. Take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H4421\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* arise|strong=\"H6965\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ai|strong=\"H5857\"*. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* into|strong=\"H5927\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"*, with|strong=\"H5973\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* his|strong=\"H3605\"* land." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Ai|strong=\"H5857\"* and|strong=\"H4428\"* her|strong=\"H7760\"* king|strong=\"H4428\"* as|strong=\"H6213\"* you|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Jericho|strong=\"H3405\"* and|strong=\"H4428\"* her|strong=\"H7760\"* king|strong=\"H4428\"*, except|strong=\"H7535\"* you|strong=\"H6213\"* shall|strong=\"H4428\"* take|strong=\"H7760\"* its|strong=\"H6213\"* goods and|strong=\"H4428\"* its|strong=\"H6213\"* livestock for|strong=\"H6213\"* yourselves. Set|strong=\"H7760\"* an|strong=\"H6213\"* ambush for|strong=\"H6213\"* the|strong=\"H6213\"* city|strong=\"H5892\"* behind it|strong=\"H7760\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* arose|strong=\"H6965\"*, with|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H1368\"*, to|strong=\"H7971\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* Ai|strong=\"H5857\"*. Joshua|strong=\"H3091\"* chose|strong=\"H3091\"* thirty|strong=\"H7970\"* thousand men|strong=\"H1368\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*, and|strong=\"H6965\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"* by|strong=\"H6965\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “Behold|strong=\"H7200\"*, you|strong=\"H6680\"* shall|strong=\"H5892\"* lie|strong=\"H1961\"* in|strong=\"H5892\"* ambush against|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, behind|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. Don’t go|strong=\"H1961\"* very|strong=\"H3966\"* far|strong=\"H7368\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, but|strong=\"H1961\"* all|strong=\"H3605\"* of|strong=\"H5892\"* you|strong=\"H6680\"* be|strong=\"H1961\"* ready|strong=\"H3559\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H6440\"* me|strong=\"H6440\"* will|strong=\"H1961\"* approach|strong=\"H7126\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. It|strong=\"H7126\"* shall|strong=\"H5971\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* come|strong=\"H1961\"* out|strong=\"H3318\"* against|strong=\"H7125\"* us|strong=\"H6440\"*, as|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* will|strong=\"H5892\"* come|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H4480\"* us|strong=\"H6440\"* until|strong=\"H5704\"* we|strong=\"H3068\"* have|strong=\"H7223\"* drawn|strong=\"H5423\"* them|strong=\"H6440\"* away|strong=\"H5127\"* from|strong=\"H4480\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5892\"* say, ‘They|strong=\"H3588\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, like|strong=\"H3318\"* the|strong=\"H6440\"* first|strong=\"H7223\"* time|strong=\"H7223\"*.’ So|strong=\"H4480\"* we|strong=\"H3068\"* will|strong=\"H5892\"* flee|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H6965\"* you|strong=\"H5414\"* shall|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H3027\"* the|strong=\"H5414\"* ambush, and|strong=\"H6965\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H3068\"* the|strong=\"H5414\"* city|strong=\"H5892\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H6213\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6680\"* have|strong=\"H1961\"* seized|strong=\"H8610\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, that|strong=\"H7200\"* you|strong=\"H6680\"* shall|strong=\"H3068\"* set|strong=\"H3341\"* the|strong=\"H7200\"* city|strong=\"H5892\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*. You|strong=\"H6680\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Behold|strong=\"H7200\"*, I|strong=\"H1697\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"*; and|strong=\"H7971\"* they|strong=\"H1931\"* went|strong=\"H3212\"* to|strong=\"H3212\"* set|strong=\"H7971\"* up|strong=\"H3212\"* the|strong=\"H8432\"* ambush|strong=\"H3993\"*, and|strong=\"H7971\"* stayed|strong=\"H3427\"* between|strong=\"H8432\"* Bethel|strong=\"H1008\"* and|strong=\"H7971\"* Ai|strong=\"H5857\"* on|strong=\"H3427\"* the|strong=\"H8432\"* west|strong=\"H3220\"* side|strong=\"H3220\"* of|strong=\"H3427\"* Ai|strong=\"H5857\"*; but|strong=\"H1931\"* Joshua|strong=\"H3091\"* stayed|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"* that|strong=\"H5971\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H3478\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*, mustered|strong=\"H6485\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H3478\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5892\"* war|strong=\"H4421\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H5971\"* came|strong=\"H5927\"* near|strong=\"H5066\"*, and|strong=\"H5971\"* came|strong=\"H5927\"* before|strong=\"H5048\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H5971\"* encamped|strong=\"H2583\"* on|strong=\"H5927\"* the|strong=\"H3605\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H5892\"* Ai|strong=\"H5857\"*. Now there|strong=\"H5927\"* was|strong=\"H5892\"* a|strong=\"H3068\"* valley|strong=\"H1516\"* between|strong=\"H4421\"* him|strong=\"H3605\"* and|strong=\"H5971\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H2568\"* took|strong=\"H3947\"* about|strong=\"H3947\"* five|strong=\"H2568\"* thousand men|strong=\"H3220\"*, and|strong=\"H5892\"* set|strong=\"H7760\"* them|strong=\"H7760\"* in|strong=\"H5892\"* ambush between Bethel|strong=\"H1008\"* and|strong=\"H5892\"* Ai|strong=\"H5857\"*, on|strong=\"H7760\"* the|strong=\"H3947\"* west|strong=\"H3220\"* side|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H7760\"* they|strong=\"H1931\"* set|strong=\"H7760\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* who|strong=\"H3605\"* was|strong=\"H1931\"* on|strong=\"H7760\"* the|strong=\"H3605\"* north|strong=\"H6828\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3212\"* their|strong=\"H3605\"* ambush on|strong=\"H7760\"* the|strong=\"H3605\"* west|strong=\"H3220\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H3212\"* Joshua|strong=\"H3091\"* went|strong=\"H3212\"* that|strong=\"H5971\"* night|strong=\"H3915\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* saw|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3588\"* hurried|strong=\"H4116\"* and|strong=\"H3478\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, at|strong=\"H3478\"* the|strong=\"H3605\"* time|strong=\"H4150\"* appointed|strong=\"H4150\"*, before|strong=\"H6440\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*; but|strong=\"H3588\"* he|strong=\"H1931\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* an|strong=\"H1961\"* ambush against|strong=\"H7125\"* him|strong=\"H6440\"* behind the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* made|strong=\"H3478\"* as|strong=\"H6440\"* if they|strong=\"H3605\"* were|strong=\"H3478\"* beaten|strong=\"H5060\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, and|strong=\"H3478\"* fled|strong=\"H5127\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H6440\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* were|strong=\"H5971\"* called|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H5971\"* pursue|strong=\"H7291\"* after|strong=\"H4480\"* them|strong=\"H7291\"*. They|strong=\"H5971\"* pursued|strong=\"H7291\"* Joshua|strong=\"H3091\"*, and|strong=\"H5971\"* were|strong=\"H5971\"* drawn|strong=\"H5423\"* away|strong=\"H5423\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 17, + "text": "There|strong=\"H7604\"* was|strong=\"H3478\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man left|strong=\"H7604\"* in|strong=\"H3478\"* Ai|strong=\"H5857\"* or|strong=\"H3808\"* Bethel|strong=\"H1008\"* who|strong=\"H3478\"* didn’t go|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H7291\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* left|strong=\"H7604\"* the|strong=\"H3318\"* city|strong=\"H5892\"* open|strong=\"H6605\"*, and|strong=\"H3478\"* pursued|strong=\"H7291\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Stretch|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H3588\"* javelin|strong=\"H3591\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H3027\"* Ai|strong=\"H5857\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H6965\"* ambush arose|strong=\"H6965\"* quickly|strong=\"H4116\"* out|strong=\"H5186\"* of|strong=\"H3027\"* their|strong=\"H5186\"* place|strong=\"H4725\"*, and|strong=\"H6965\"* they|strong=\"H7323\"* ran|strong=\"H7323\"* as|strong=\"H5892\"* soon|strong=\"H4116\"* as|strong=\"H5892\"* he|strong=\"H3027\"* had|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5186\"* hand|strong=\"H3027\"* and|strong=\"H6965\"* entered into|strong=\"H3027\"* the|strong=\"H6965\"* city|strong=\"H5892\"* and|strong=\"H6965\"* took|strong=\"H3920\"* it|strong=\"H5186\"*. They|strong=\"H7323\"* hurried|strong=\"H4116\"* and|strong=\"H6965\"* set|strong=\"H6965\"* the|strong=\"H6965\"* city|strong=\"H5892\"* on|strong=\"H3027\"* fire|strong=\"H3341\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* the|strong=\"H7200\"* men|strong=\"H5971\"* of|strong=\"H3027\"* Ai|strong=\"H5857\"* looked|strong=\"H7200\"* behind them|strong=\"H3027\"*, they|strong=\"H3808\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* smoke|strong=\"H6227\"* of|strong=\"H3027\"* the|strong=\"H7200\"* city|strong=\"H5892\"* ascended|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* they|strong=\"H3808\"* had|strong=\"H1961\"* no|strong=\"H3808\"* power|strong=\"H3027\"* to|strong=\"H5927\"* flee|strong=\"H5127\"* this|strong=\"H7200\"* way|strong=\"H2008\"* or|strong=\"H3808\"* that|strong=\"H5971\"* way|strong=\"H2008\"*. The|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* fled|strong=\"H5127\"* to|strong=\"H5927\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* turned|strong=\"H2015\"* back|strong=\"H6437\"* on|strong=\"H7200\"* the|strong=\"H7200\"* pursuers|strong=\"H7291\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* Joshua|strong=\"H3091\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* ambush had|strong=\"H3478\"* taken|strong=\"H3920\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* the|strong=\"H3605\"* smoke|strong=\"H6227\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* ascended|strong=\"H5927\"*, then|strong=\"H7725\"* they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H3478\"* killed|strong=\"H5221\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5892\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5221\"* others came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H5221\"* city|strong=\"H5892\"* against|strong=\"H7125\"* them|strong=\"H5221\"*, so|strong=\"H4480\"* they|strong=\"H5704\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, some|strong=\"H4480\"* on|strong=\"H1961\"* this|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3478\"* some|strong=\"H4480\"* on|strong=\"H1961\"* that|strong=\"H3478\"* side|strong=\"H2088\"*. They|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H5221\"*, so|strong=\"H4480\"* that|strong=\"H3478\"* they|strong=\"H5704\"* let|strong=\"H7604\"* none|strong=\"H7604\"* of|strong=\"H5892\"* them|strong=\"H5221\"* remain|strong=\"H7604\"* or|strong=\"H5704\"* escape|strong=\"H6412\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5857\"* captured|strong=\"H8610\"* the|strong=\"H3091\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* alive|strong=\"H2416\"*, and|strong=\"H4428\"* brought|strong=\"H7126\"* him|strong=\"H3091\"* to|strong=\"H4428\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* killing|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Ai|strong=\"H5857\"* in|strong=\"H3427\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* in|strong=\"H3427\"* which|strong=\"H3478\"* they|strong=\"H5704\"* pursued|strong=\"H7291\"* them|strong=\"H7725\"*, and|strong=\"H3478\"* they|strong=\"H5704\"* had|strong=\"H1961\"* all|strong=\"H3605\"* fallen|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H3478\"* consumed|strong=\"H3615\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"* to|strong=\"H5704\"* Ai|strong=\"H5857\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* it|strong=\"H7725\"* with|strong=\"H3427\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* fell|strong=\"H5307\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, both|strong=\"H8147\"* of|strong=\"H3117\"* men|strong=\"H3605\"* and|strong=\"H3117\"* women, were|strong=\"H1961\"* twelve|strong=\"H8147\"* thousand, even|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1931\"* of|strong=\"H3117\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H5704\"* Joshua|strong=\"H3091\"* didn’t draw|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, with|strong=\"H3427\"* which|strong=\"H3605\"* he|strong=\"H5704\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H3605\"* javelin|strong=\"H3591\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3091\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* Ai|strong=\"H5857\"*." + }, + { + "verseNum": 27, + "text": "Israel|strong=\"H3478\"* took|strong=\"H3478\"* for|strong=\"H3068\"* themselves|strong=\"H1992\"* only|strong=\"H7535\"* the|strong=\"H3068\"* livestock and|strong=\"H3478\"* the|strong=\"H3068\"* goods of|strong=\"H3068\"* that|strong=\"H1931\"* city|strong=\"H5892\"*, according to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H2088\"* Joshua|strong=\"H3091\"* burned|strong=\"H8313\"* Ai|strong=\"H5857\"* and|strong=\"H3117\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* heap|strong=\"H8510\"* forever|strong=\"H5769\"*, even|strong=\"H5704\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3117\"* hanged|strong=\"H8518\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ai|strong=\"H5857\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*. At|strong=\"H5921\"* sundown|strong=\"H8121\"*, Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H6965\"* they|strong=\"H3117\"* took|strong=\"H3381\"* his|strong=\"H5921\"* body|strong=\"H5038\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H5921\"* tree|strong=\"H6086\"* and|strong=\"H6965\"* threw|strong=\"H7993\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* raised|strong=\"H6965\"* a|strong=\"H3068\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H4428\"* stones on|strong=\"H5921\"* it|strong=\"H5921\"* that|strong=\"H3117\"* remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3068\"* Joshua|strong=\"H3091\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, on|strong=\"H3068\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*," + }, + { + "verseNum": 31, + "text": "as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*: an|strong=\"H5130\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* uncut|strong=\"H8003\"* stones, on|strong=\"H5921\"* which|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* had|strong=\"H3068\"* lifted|strong=\"H5927\"* up|strong=\"H5927\"* any|strong=\"H5927\"* iron|strong=\"H1270\"*. They|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* sacrificed|strong=\"H2076\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H8033\"* wrote|strong=\"H3789\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H6440\"* stones a|strong=\"H3068\"* copy|strong=\"H4932\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*’ law|strong=\"H8451\"*, which|strong=\"H8033\"* he|strong=\"H8033\"* wrote|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* elders|strong=\"H2205\"*, officers|strong=\"H7860\"*, and|strong=\"H4872\"* judges|strong=\"H8199\"*, stood|strong=\"H5975\"* on|strong=\"H3068\"* both|strong=\"H3605\"* sides|strong=\"H2088\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ark before|strong=\"H5048\"* the|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, who|strong=\"H3605\"* carried|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, the|strong=\"H3605\"* foreigner|strong=\"H1616\"* as|strong=\"H3068\"* well as|strong=\"H3068\"* the|strong=\"H3605\"* native; half|strong=\"H2677\"* of|strong=\"H3068\"* them|strong=\"H5975\"* in|strong=\"H3478\"* front|strong=\"H5048\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"*, and|strong=\"H4872\"* half|strong=\"H2677\"* of|strong=\"H3068\"* them|strong=\"H5975\"* in|strong=\"H3478\"* front|strong=\"H5048\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Ebal|strong=\"H5858\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* at|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7223\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* bless|strong=\"H1288\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "Afterward he|strong=\"H3651\"* read|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, the|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H1697\"* the|strong=\"H3605\"* curse|strong=\"H7045\"*, according to|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H1697\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 35, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H1697\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* which|strong=\"H1697\"* Joshua|strong=\"H3091\"* didn’t read|strong=\"H7121\"* before|strong=\"H5048\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, with|strong=\"H1980\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H1980\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* were|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H7121\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* were|strong=\"H1961\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"*, and|strong=\"H4428\"* on|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* shore|strong=\"H2348\"* of|strong=\"H4428\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* in|strong=\"H4428\"* front|strong=\"H4136\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*, the|strong=\"H3605\"* Hittite|strong=\"H2850\"*, the|strong=\"H3605\"* Amorite, the|strong=\"H3605\"* Canaanite|strong=\"H3669\"*, the|strong=\"H3605\"* Perizzite|strong=\"H6522\"*, the|strong=\"H3605\"* Hivite|strong=\"H2340\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* Jebusite|strong=\"H2983\"*, heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H1961\"*" + }, + { + "verseNum": 2, + "text": "they|strong=\"H6310\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H3162\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Joshua|strong=\"H3091\"* and|strong=\"H3478\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* one|strong=\"H6310\"* accord|strong=\"H6310\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gibeon|strong=\"H1391\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* Joshua|strong=\"H3091\"* had|strong=\"H3091\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Jericho|strong=\"H3405\"* and|strong=\"H8085\"* to|strong=\"H6213\"* Ai|strong=\"H5857\"*," + }, + { + "verseNum": 4, + "text": "they|strong=\"H1992\"* also|strong=\"H1571\"* resorted to|strong=\"H3212\"* a|strong=\"H3068\"* ruse, and|strong=\"H3212\"* went|strong=\"H3212\"* and|strong=\"H3212\"* made|strong=\"H6213\"* as|strong=\"H6213\"* if they|strong=\"H1992\"* had|strong=\"H6213\"* been|strong=\"H6887\"* ambassadors|strong=\"H6737\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* old|strong=\"H1087\"* sacks|strong=\"H8242\"* on|strong=\"H3212\"* their|strong=\"H3947\"* donkeys|strong=\"H2543\"*, and|strong=\"H3212\"* old|strong=\"H1087\"*, torn-up and|strong=\"H3212\"* bound|strong=\"H6887\"* up|strong=\"H1234\"* wineskins|strong=\"H4997\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3899\"* old|strong=\"H1087\"* and|strong=\"H3899\"* patched|strong=\"H2921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* their|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3899\"* wore|strong=\"H5921\"* old|strong=\"H1087\"* garments|strong=\"H8008\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* of|strong=\"H5921\"* their|strong=\"H3605\"* food|strong=\"H3899\"* supply was|strong=\"H1961\"* dry|strong=\"H3001\"* and|strong=\"H3899\"* moldy." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* at|strong=\"H3478\"* the|strong=\"H3091\"* camp|strong=\"H4264\"* at|strong=\"H3478\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H3772\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3091\"* men|strong=\"H3772\"* of|strong=\"H4264\"* Israel|strong=\"H3478\"*, “We|strong=\"H6258\"* have|strong=\"H3478\"* come|strong=\"H3212\"* from|strong=\"H3772\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3772\"* men|strong=\"H3772\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* the|strong=\"H3772\"* Hivites|strong=\"H2340\"*, “What if you|strong=\"H7130\"* live|strong=\"H3427\"* among|strong=\"H7130\"* us|strong=\"H3478\"*? How could we|strong=\"H3068\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H7130\"*?”" + }, + { + "verseNum": 8, + "text": "They said to|strong=\"H5650\"* Joshua|strong=\"H3091\"*, “We are|strong=\"H5650\"* your servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* said|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, “Your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* come|strong=\"H7350\"* from|strong=\"H8085\"* a|strong=\"H3068\"* very|strong=\"H3966\"* far|strong=\"H7350\"* country because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fame|strong=\"H8034\"*, all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* did|strong=\"H6213\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites who|strong=\"H3605\"* were|strong=\"H4428\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, to|strong=\"H6213\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"* and|strong=\"H4428\"* to|strong=\"H6213\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, who|strong=\"H3605\"* was|strong=\"H4428\"* at|strong=\"H4428\"* Ashtaroth|strong=\"H6252\"*." + }, + { + "verseNum": 11, + "text": "Our|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* our|strong=\"H3605\"* country spoke to|strong=\"H3212\"* us|strong=\"H3027\"*, saying, ‘Take|strong=\"H3947\"* supplies|strong=\"H6720\"* in|strong=\"H3427\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* for|strong=\"H3027\"* the|strong=\"H3605\"* journey|strong=\"H1870\"*, and|strong=\"H3027\"* go|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* them|strong=\"H3027\"*. Tell|strong=\"H3605\"* them|strong=\"H3027\"*, “We|strong=\"H6258\"* are|strong=\"H3027\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. Now|strong=\"H6258\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H3027\"*.”’" + }, + { + "verseNum": 12, + "text": "This|strong=\"H2088\"* our|strong=\"H3318\"* bread|strong=\"H3899\"* we|strong=\"H3068\"* took|strong=\"H3318\"* hot|strong=\"H2525\"* for|strong=\"H1004\"* our|strong=\"H3318\"* supplies out|strong=\"H3318\"* of|strong=\"H1004\"* our|strong=\"H3318\"* houses|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* we|strong=\"H3068\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3212\"* to|strong=\"H3318\"* you|strong=\"H3117\"*; but|strong=\"H1961\"* now|strong=\"H6258\"*, behold|strong=\"H2009\"*, it|strong=\"H1961\"* is|strong=\"H2088\"* dry|strong=\"H3001\"*, and|strong=\"H3117\"* has|strong=\"H1961\"* become|strong=\"H1961\"* moldy." + }, + { + "verseNum": 13, + "text": "These wineskins|strong=\"H4997\"*, which|strong=\"H3196\"* we|strong=\"H3068\"* filled|strong=\"H4390\"*, were|strong=\"H2009\"* new|strong=\"H2319\"*; and|strong=\"H1870\"* behold|strong=\"H2009\"*, they|strong=\"H1870\"* are|strong=\"H1870\"* torn|strong=\"H1234\"*. These our|strong=\"H4390\"* garments|strong=\"H8008\"* and|strong=\"H1870\"* our|strong=\"H4390\"* sandals|strong=\"H5275\"* have|strong=\"H2009\"* become|strong=\"H1086\"* old|strong=\"H1086\"* because|strong=\"H7230\"* of|strong=\"H1870\"* the|strong=\"H4390\"* very|strong=\"H3966\"* long|strong=\"H7230\"* journey|strong=\"H1870\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3947\"* men|strong=\"H3947\"* sampled their|strong=\"H3068\"* provisions|strong=\"H6718\"*, and|strong=\"H3068\"* didn’t ask|strong=\"H7592\"* counsel|strong=\"H7592\"* from|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* them|strong=\"H6213\"*, and|strong=\"H3091\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H6213\"*, to|strong=\"H6213\"* let them|strong=\"H6213\"* live|strong=\"H2421\"*. The|strong=\"H6213\"* princes|strong=\"H5387\"* of|strong=\"H5712\"* the|strong=\"H6213\"* congregation|strong=\"H5712\"* swore|strong=\"H7650\"* to|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3427\"* the|strong=\"H8085\"* end|strong=\"H7097\"* of|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"* after|strong=\"H1961\"* they|strong=\"H1992\"* had|strong=\"H1961\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H1992\"*, they|strong=\"H1992\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1961\"* their|strong=\"H8085\"* neighbors|strong=\"H7138\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* they|strong=\"H1992\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* traveled|strong=\"H5265\"* and|strong=\"H1121\"* came|strong=\"H3478\"* to|strong=\"H3478\"* their|strong=\"H3117\"* cities|strong=\"H5892\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*. Now|strong=\"H3117\"* their|strong=\"H3117\"* cities|strong=\"H5892\"* were|strong=\"H3478\"* Gibeon|strong=\"H1391\"*, Chephirah|strong=\"H3716\"*, Beeroth, and|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t strike|strong=\"H5221\"* them|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H5921\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* murmured|strong=\"H3885\"* against|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H5387\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, “We|strong=\"H6258\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H5060\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* touch|strong=\"H5060\"* them|strong=\"H5060\"*." + }, + { + "verseNum": 20, + "text": "We|strong=\"H6213\"* will|strong=\"H1961\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H6213\"* let|strong=\"H3808\"* them|strong=\"H5921\"* live|strong=\"H2421\"*; lest wrath|strong=\"H7110\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* which we|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H1961\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* princes|strong=\"H5387\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*, “Let|strong=\"H1961\"* them|strong=\"H1961\"* live|strong=\"H2421\"*.” So|strong=\"H1961\"* they|strong=\"H3605\"* became|strong=\"H1961\"* wood|strong=\"H6086\"* cutters and|strong=\"H6086\"* drawers|strong=\"H7579\"* of|strong=\"H4325\"* water|strong=\"H4325\"* for|strong=\"H4325\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, as|strong=\"H1961\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* had|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H7121\"* them|strong=\"H7121\"*, and|strong=\"H3091\"* he|strong=\"H4480\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, saying|strong=\"H1696\"*, “Why|strong=\"H4100\"* have|strong=\"H1696\"* you|strong=\"H4480\"* deceived|strong=\"H7411\"* us|strong=\"H4480\"*, saying|strong=\"H1696\"*, ‘We|strong=\"H7130\"* are|strong=\"H4100\"* very|strong=\"H3966\"* far|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H4480\"*,’ when|strong=\"H1696\"* you|strong=\"H4480\"* live|strong=\"H3427\"* among|strong=\"H7130\"* us|strong=\"H4480\"*?" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* you|strong=\"H3808\"* are|strong=\"H5650\"* cursed, and|strong=\"H1004\"* some|strong=\"H4480\"* of|strong=\"H1004\"* you|strong=\"H3808\"* will|strong=\"H5650\"* never|strong=\"H3808\"* fail|strong=\"H3772\"* to|strong=\"H1004\"* be|strong=\"H3808\"* slaves|strong=\"H5650\"*, both|strong=\"H4480\"* wood|strong=\"H6086\"* cutters and|strong=\"H1004\"* drawers|strong=\"H7579\"* of|strong=\"H1004\"* water|strong=\"H4325\"* for|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H4480\"* God|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H3588\"* answered|strong=\"H6030\"* Joshua|strong=\"H3091\"*, and|strong=\"H4872\"* said|strong=\"H1697\"*, “Because|strong=\"H3588\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* were|strong=\"H1697\"* certainly|strong=\"H3588\"* told|strong=\"H5046\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H4872\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Therefore|strong=\"H4872\"* we|strong=\"H3068\"* were|strong=\"H1697\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"* for|strong=\"H3588\"* our|strong=\"H3068\"* lives|strong=\"H5315\"* because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H5869\"* in|strong=\"H6213\"* your|strong=\"H6213\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* to|strong=\"H6213\"* us|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H6213\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* and|strong=\"H3027\"* right|strong=\"H3477\"* to|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3478\"* them|strong=\"H3027\"*, and|strong=\"H1121\"* delivered|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H6213\"* of|strong=\"H1121\"* the|strong=\"H6213\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, so|strong=\"H3651\"* that|strong=\"H3651\"* they|strong=\"H3651\"* didn’t kill|strong=\"H2026\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 27, + "text": "That|strong=\"H3117\"* day|strong=\"H3117\"* Joshua|strong=\"H3091\"* made|strong=\"H5414\"* them|strong=\"H5414\"* wood|strong=\"H6086\"* cutters and|strong=\"H3068\"* drawers|strong=\"H7579\"* of|strong=\"H3068\"* water|strong=\"H4325\"* for|strong=\"H5704\"* the|strong=\"H5414\"* congregation|strong=\"H5712\"* and|strong=\"H3068\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H3068\"* the|strong=\"H5414\"* place|strong=\"H4725\"* which|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H3068\"* choose." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Adoni-Zedek king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* heard|strong=\"H8085\"* how|strong=\"H3588\"* Joshua|strong=\"H3091\"* had|strong=\"H1961\"* taken|strong=\"H3920\"* Ai|strong=\"H5857\"*, and|strong=\"H3478\"* had|strong=\"H1961\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H3588\"*; as|strong=\"H1961\"* he|strong=\"H3588\"* had|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Jericho|strong=\"H3405\"* and|strong=\"H3478\"* her|strong=\"H7130\"* king|strong=\"H4428\"*, so|strong=\"H3651\"* he|strong=\"H3588\"* had|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Ai|strong=\"H5857\"* and|strong=\"H3478\"* her|strong=\"H7130\"* king|strong=\"H4428\"*; and|strong=\"H3478\"* how|strong=\"H3588\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Gibeon|strong=\"H1391\"* had|strong=\"H1961\"* made|strong=\"H6213\"* peace|strong=\"H7999\"* with|strong=\"H6213\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* were|strong=\"H3478\"* among|strong=\"H7130\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H3588\"* were|strong=\"H1419\"* very|strong=\"H3966\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* Gibeon|strong=\"H1391\"* was|strong=\"H1931\"* a|strong=\"H3068\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, as|strong=\"H3588\"* one|strong=\"H3605\"* of|strong=\"H5892\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* cities|strong=\"H5892\"*, and|strong=\"H1419\"* because|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1931\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* Ai|strong=\"H5857\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* its|strong=\"H3605\"* men|strong=\"H1368\"* were|strong=\"H1419\"* mighty|strong=\"H1368\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H7971\"* Adoni-Zedek king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Hoham|strong=\"H1944\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, Piram|strong=\"H6502\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, Japhia|strong=\"H3309\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H7971\"* Debir|strong=\"H1688\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, saying," + }, + { + "verseNum": 4, + "text": "“Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* me|strong=\"H5221\"* and|strong=\"H1121\"* help|strong=\"H5826\"* me|strong=\"H5221\"*. Let’s strike|strong=\"H5221\"* Gibeon|strong=\"H1391\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H5927\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* with|strong=\"H5927\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H5921\"* the|strong=\"H3605\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, gathered themselves|strong=\"H1992\"* together|strong=\"H5921\"* and|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H1992\"* and|strong=\"H4428\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, and|strong=\"H4428\"* made|strong=\"H3605\"* war|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* men|strong=\"H5650\"* of|strong=\"H4428\"* Gibeon|strong=\"H1391\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Joshua|strong=\"H3091\"* at|strong=\"H3427\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* at|strong=\"H3427\"* Gilgal|strong=\"H1537\"*, saying, “Don’t abandon|strong=\"H7503\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*! Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* us|strong=\"H3588\"* quickly|strong=\"H4120\"* and|strong=\"H7971\"* save|strong=\"H3467\"* us|strong=\"H3588\"*! Help|strong=\"H5826\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites that|strong=\"H3588\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* have|strong=\"H5650\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* against|strong=\"H5927\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H4480\"* Joshua|strong=\"H3091\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"*, he|strong=\"H1931\"* and|strong=\"H5971\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* army|strong=\"H2428\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4480\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “Don’t fear|strong=\"H3372\"* them|strong=\"H5414\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H6440\"* of|strong=\"H3068\"* them|strong=\"H5414\"* will|strong=\"H3068\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* therefore|strong=\"H3091\"* came|strong=\"H5927\"* to|strong=\"H5927\"* them|strong=\"H5927\"* suddenly|strong=\"H6597\"*. He|strong=\"H3605\"* marched|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* confused|strong=\"H2000\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*. He|strong=\"H5704\"* killed|strong=\"H5221\"* them|strong=\"H6440\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"* at|strong=\"H3478\"* Gibeon|strong=\"H1391\"*, and|strong=\"H3478\"* chased|strong=\"H7291\"* them|strong=\"H6440\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ascent of|strong=\"H3068\"* Beth Horon, and|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H6440\"* to|strong=\"H5704\"* Azekah|strong=\"H5825\"* and|strong=\"H3478\"* to|strong=\"H5704\"* Makkedah|strong=\"H4719\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H5704\"* they|strong=\"H1992\"* fled|strong=\"H5127\"* from|strong=\"H4480\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*, while|strong=\"H5704\"* they|strong=\"H1992\"* were|strong=\"H3478\"* at|strong=\"H5921\"* the|strong=\"H6440\"* descent|strong=\"H4174\"* of|strong=\"H1121\"* Beth Horon, Yahweh|strong=\"H3068\"* hurled|strong=\"H7993\"* down|strong=\"H7993\"* great|strong=\"H1419\"* stones from|strong=\"H4480\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* on|strong=\"H5921\"* them|strong=\"H1992\"* to|strong=\"H5704\"* Azekah|strong=\"H5825\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* died|strong=\"H4191\"*. There|strong=\"H1961\"* were|strong=\"H3478\"* more|strong=\"H4480\"* who|strong=\"H3068\"* died|strong=\"H4191\"* from|strong=\"H4480\"* the|strong=\"H6440\"* hailstones|strong=\"H1259\"* than|strong=\"H4480\"* those|strong=\"H1992\"* whom|strong=\"H1992\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* killed|strong=\"H2026\"* with|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1696\"* Joshua|strong=\"H3091\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H6440\"* day|strong=\"H3117\"* when|strong=\"H3117\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H6440\"* Amorites before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. He|strong=\"H3117\"* said|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H6440\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Sun|strong=\"H8121\"*, stand|strong=\"H5869\"* still|strong=\"H1826\"* on|strong=\"H3117\"* Gibeon|strong=\"H1391\"*! You|strong=\"H5414\"*, moon|strong=\"H3394\"*, stop in|strong=\"H3478\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Aijalon!”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* sun|strong=\"H8121\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* moon|strong=\"H3394\"* stayed|strong=\"H5975\"*, until|strong=\"H5704\"* the|strong=\"H5921\"* nation|strong=\"H1471\"* had|strong=\"H8121\"* avenged|strong=\"H5358\"* themselves|strong=\"H5921\"* of|strong=\"H3117\"* their|strong=\"H5921\"* enemies. Isn’t this|strong=\"H1931\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3117\"* Jashar|strong=\"H3477\"*? The|strong=\"H5921\"* sun|strong=\"H8121\"* stayed|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H2677\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*, and|strong=\"H3117\"* didn’t hurry to|strong=\"H5704\"* go|strong=\"H8121\"* down|strong=\"H3789\"* about|strong=\"H5921\"* a|strong=\"H3068\"* whole|strong=\"H8549\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* day|strong=\"H3117\"* like|strong=\"H1961\"* that|strong=\"H3588\"* before|strong=\"H6440\"* it|strong=\"H1931\"* or|strong=\"H3808\"* after|strong=\"H1961\"* it|strong=\"H1931\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H6440\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fought|strong=\"H3898\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H4428\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* fled|strong=\"H5127\"*, and|strong=\"H4428\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"* in|strong=\"H4428\"* the|strong=\"H2244\"* cave|strong=\"H4631\"* at|strong=\"H4428\"* Makkedah|strong=\"H4719\"*." + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* was|strong=\"H4428\"* told|strong=\"H5046\"*, saying, “The|strong=\"H3091\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* have|strong=\"H4672\"* been|strong=\"H5046\"* found|strong=\"H4672\"*, hidden|strong=\"H2244\"* in|strong=\"H4428\"* the|strong=\"H3091\"* cave|strong=\"H4631\"* at|strong=\"H4428\"* Makkedah|strong=\"H4719\"*.”" + }, + { + "verseNum": 18, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H6310\"*, “Roll|strong=\"H1556\"* large|strong=\"H1419\"* stones to|strong=\"H5921\"* cover the|strong=\"H5921\"* cave|strong=\"H4631\"*’s entrance, and|strong=\"H1419\"* set|strong=\"H6485\"* men|strong=\"H1419\"* by|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H5921\"* guard|strong=\"H8104\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 19, + "text": "but|strong=\"H3588\"* don’t stay|strong=\"H5975\"* there|strong=\"H5975\"*. Pursue|strong=\"H7291\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* attack|strong=\"H2179\"* them|strong=\"H5414\"* from|strong=\"H3027\"* the|strong=\"H3588\"* rear|strong=\"H2179\"*. Don’t allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* enter|strong=\"H5975\"* into|strong=\"H3027\"* their|strong=\"H3068\"* cities|strong=\"H5892\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* Joshua|strong=\"H3091\"* and|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* killing|strong=\"H5221\"* them|strong=\"H1992\"* with|strong=\"H5892\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"* until|strong=\"H5704\"* they|strong=\"H1992\"* were|strong=\"H3478\"* consumed|strong=\"H3615\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* remnant|strong=\"H8300\"* which|strong=\"H1992\"* remained|strong=\"H1961\"* of|strong=\"H1121\"* them|strong=\"H1992\"* had|strong=\"H1961\"* entered|strong=\"H5704\"* into|strong=\"H1961\"* the|strong=\"H5221\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 21, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Joshua|strong=\"H3091\"* at|strong=\"H3478\"* Makkedah|strong=\"H4719\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*. None|strong=\"H3808\"* moved|strong=\"H2782\"* his|strong=\"H3605\"* tongue|strong=\"H3956\"* against|strong=\"H3956\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H3318\"* Joshua|strong=\"H3091\"* said|strong=\"H3318\"*, “Open|strong=\"H6605\"* the|strong=\"H4480\"* cave|strong=\"H4631\"* entrance, and|strong=\"H4428\"* bring|strong=\"H3318\"* those|strong=\"H4480\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H4480\"* cave|strong=\"H4631\"* to|strong=\"H3318\"* me|strong=\"H4480\"*.”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H4428\"* brought|strong=\"H3318\"* those|strong=\"H4480\"* five|strong=\"H2568\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6213\"* cave|strong=\"H4631\"* to|strong=\"H3318\"* him|strong=\"H6213\"*: the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hebron|strong=\"H2275\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Lachish|strong=\"H3923\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* they|strong=\"H5921\"* brought|strong=\"H3318\"* those|strong=\"H3605\"* kings|strong=\"H4428\"* out|strong=\"H3318\"* to|strong=\"H1980\"* Joshua|strong=\"H3091\"*, Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H1980\"* said|strong=\"H7121\"* to|strong=\"H1980\"* the|strong=\"H3605\"* chiefs|strong=\"H7101\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H1980\"* of|strong=\"H4428\"* war|strong=\"H4421\"* who|strong=\"H3605\"* went|strong=\"H1980\"* with|strong=\"H1980\"* him|strong=\"H7121\"*, “Come|strong=\"H1980\"* near|strong=\"H7126\"*. Put|strong=\"H7760\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* on|strong=\"H5921\"* the|strong=\"H3605\"* necks|strong=\"H6677\"* of|strong=\"H4428\"* these|strong=\"H7121\"* kings|strong=\"H4428\"*.”" + }, + { + "verseNum": 25, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* them|strong=\"H6213\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, nor|strong=\"H3372\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H3068\"* courageous|strong=\"H2388\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies against|strong=\"H3898\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* fight|strong=\"H3898\"*.”" + }, + { + "verseNum": 26, + "text": "Afterward Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H5704\"* death|strong=\"H4191\"*, and|strong=\"H6086\"* hanged|strong=\"H8518\"* them|strong=\"H5921\"* on|strong=\"H5921\"* five|strong=\"H2568\"* trees|strong=\"H6086\"*. They|strong=\"H3651\"* were|strong=\"H1961\"* hanging|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H3117\"* the|strong=\"H5921\"* going|strong=\"H3381\"* down|strong=\"H3381\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sun|strong=\"H8121\"*, Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* took|strong=\"H3381\"* them|strong=\"H5921\"* down|strong=\"H3381\"* off|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*, and|strong=\"H3117\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* into|strong=\"H3381\"* the|strong=\"H5921\"* cave|strong=\"H4631\"* in|strong=\"H5921\"* which|strong=\"H8033\"* they|strong=\"H3117\"* had|strong=\"H1961\"* hidden|strong=\"H2244\"* themselves|strong=\"H2244\"*, and|strong=\"H3117\"* laid|strong=\"H7760\"* great|strong=\"H1419\"* stones on|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3117\"* the|strong=\"H5921\"* cave|strong=\"H4631\"*, which|strong=\"H8033\"* remain|strong=\"H1961\"* to|strong=\"H5704\"* this|strong=\"H2088\"* very|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 28, + "text": "Joshua|strong=\"H3091\"* took|strong=\"H3920\"* Makkedah|strong=\"H4719\"* on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H4428\"* struck|strong=\"H5221\"* it|strong=\"H1931\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*. He|strong=\"H1931\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3117\"* in|strong=\"H6213\"* it|strong=\"H1931\"*. He|strong=\"H1931\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*. He|strong=\"H1931\"* did|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Makkedah|strong=\"H4719\"* as|strong=\"H3117\"* he|strong=\"H1931\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 29, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H3478\"* Makkedah|strong=\"H4719\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, to|strong=\"H3478\"* Libnah|strong=\"H3841\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* also|strong=\"H1571\"*, with|strong=\"H3068\"* its|strong=\"H3605\"* king|strong=\"H4428\"*, into|strong=\"H6213\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. He|strong=\"H6213\"* struck|strong=\"H5221\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* it|strong=\"H5414\"*. He|strong=\"H6213\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"* in|strong=\"H3478\"* it|strong=\"H5414\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* its|strong=\"H3605\"* king|strong=\"H4428\"* as|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*." + }, + { + "verseNum": 31, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* Libnah|strong=\"H3841\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Lachish|strong=\"H3923\"*, and|strong=\"H3478\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* Lachish|strong=\"H3923\"* into|strong=\"H6213\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. He|strong=\"H3117\"* took|strong=\"H3920\"* it|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* it|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* it|strong=\"H5414\"*, according|strong=\"H6310\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H4428\"* Horam|strong=\"H2036\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gezer|strong=\"H1507\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* help|strong=\"H5826\"* Lachish|strong=\"H3923\"*; and|strong=\"H4428\"* Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* and|strong=\"H4428\"* his|strong=\"H5221\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H4428\"* left|strong=\"H7604\"* him|strong=\"H5221\"* no|strong=\"H1115\"* one|strong=\"H4428\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 34, + "text": "Joshua|strong=\"H3091\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* Lachish|strong=\"H3923\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Eglon|strong=\"H5700\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H5921\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3117\"* took|strong=\"H3920\"* it|strong=\"H1931\"* on|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* struck|strong=\"H5221\"* it|strong=\"H1931\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3117\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. He|strong=\"H1931\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H3117\"* in|strong=\"H6213\"* it|strong=\"H1931\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* had|strong=\"H5315\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 36, + "text": "Joshua|strong=\"H3091\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Eglon|strong=\"H5700\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H3478\"* Hebron|strong=\"H2275\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 37, + "text": "They|strong=\"H3808\"* took|strong=\"H3920\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* struck|strong=\"H5221\"* it|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*. He|strong=\"H6213\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*, according|strong=\"H6310\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Eglon|strong=\"H5700\"*; but|strong=\"H3808\"* he|strong=\"H6213\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 38, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, to|strong=\"H7725\"* Debir|strong=\"H1688\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H3651\"* took|strong=\"H3920\"* it|strong=\"H6213\"*, with|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*. They|strong=\"H3651\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H6213\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H4428\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H6213\"* it|strong=\"H6213\"*. He|strong=\"H3651\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*. As|strong=\"H6213\"* he|strong=\"H3651\"* had|strong=\"H4428\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Hebron|strong=\"H2275\"*, so|strong=\"H3651\"* he|strong=\"H3651\"* did|strong=\"H6213\"* to|strong=\"H6213\"* Debir|strong=\"H1688\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*; as|strong=\"H6213\"* he|strong=\"H3651\"* had|strong=\"H4428\"* done|strong=\"H6213\"* also|strong=\"H6213\"* to|strong=\"H6213\"* Libnah|strong=\"H3841\"*, and|strong=\"H4428\"* to|strong=\"H6213\"* its|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H3808\"* Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, the|strong=\"H3605\"* South|strong=\"H5045\"*, the|strong=\"H3605\"* lowland|strong=\"H8219\"*, the|strong=\"H3605\"* slopes, and|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*. He|strong=\"H3068\"* left|strong=\"H7604\"* no|strong=\"H3808\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*, but|strong=\"H3808\"* he|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* breathed|strong=\"H5397\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, commanded|strong=\"H6680\"*." + }, + { + "verseNum": 41, + "text": "Joshua|strong=\"H3091\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* from|strong=\"H5704\"* Kadesh Barnea even|strong=\"H5704\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"*, and|strong=\"H3091\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country of|strong=\"H3605\"* Goshen|strong=\"H1657\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 42, + "text": "Joshua|strong=\"H3091\"* took|strong=\"H3920\"* all|strong=\"H3605\"* these|strong=\"H3605\"* kings|strong=\"H4428\"* and|strong=\"H3478\"* their|strong=\"H3605\"* land at|strong=\"H3478\"* one|strong=\"H3605\"* time|strong=\"H6471\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, fought|strong=\"H3898\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 43, + "text": "Joshua|strong=\"H3091\"* returned|strong=\"H7725\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, to|strong=\"H7725\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H1961\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Jobab|strong=\"H3103\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Madon|strong=\"H4068\"*, to|strong=\"H7971\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Shimron|strong=\"H8110\"*, to|strong=\"H7971\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Achshaph," + }, + { + "verseNum": 2, + "text": "and|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H2022\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H2022\"* on|strong=\"H3220\"* the|strong=\"H2022\"* north|strong=\"H6828\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* Arabah|strong=\"H6160\"* south|strong=\"H5045\"* of|strong=\"H4428\"* Chinneroth|strong=\"H3672\"*, in|strong=\"H4428\"* the|strong=\"H2022\"* lowland|strong=\"H8219\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H2022\"* heights|strong=\"H5299\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"* on|strong=\"H3220\"* the|strong=\"H2022\"* west|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "to|strong=\"H3220\"* the|strong=\"H8478\"* Canaanite|strong=\"H3669\"* on|strong=\"H8478\"* the|strong=\"H8478\"* east|strong=\"H4217\"* and|strong=\"H2022\"* on|strong=\"H8478\"* the|strong=\"H8478\"* west|strong=\"H3220\"*, the|strong=\"H8478\"* Amorite, the|strong=\"H8478\"* Hittite|strong=\"H2850\"*, the|strong=\"H8478\"* Perizzite|strong=\"H6522\"*, the|strong=\"H8478\"* Jebusite|strong=\"H2983\"* in|strong=\"H3220\"* the|strong=\"H8478\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H2022\"* the|strong=\"H8478\"* Hivite|strong=\"H2340\"* under|strong=\"H8478\"* Hermon|strong=\"H2768\"* in|strong=\"H3220\"* the|strong=\"H8478\"* land of|strong=\"H2022\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H1992\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, they|strong=\"H1992\"* and|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* with|strong=\"H5973\"* them|strong=\"H1992\"*, many|strong=\"H7227\"* people|strong=\"H5971\"*, even|strong=\"H5921\"* as|strong=\"H7230\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* that|strong=\"H5971\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*, with|strong=\"H5973\"* very|strong=\"H3966\"* many|strong=\"H7227\"* horses|strong=\"H5483\"* and|strong=\"H5971\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* kings|strong=\"H4428\"* met together|strong=\"H3162\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* together|strong=\"H3162\"* at|strong=\"H2583\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* Merom|strong=\"H4792\"*, to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Joshua|strong=\"H3091\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* at|strong=\"H3478\"* this|strong=\"H2063\"* time|strong=\"H6256\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* all|strong=\"H3605\"* slain|strong=\"H2491\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* hamstring|strong=\"H6131\"* their|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H3478\"* burn|strong=\"H8313\"* their|strong=\"H3605\"* chariots|strong=\"H4818\"* with|strong=\"H8313\"* fire.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H5921\"* Joshua|strong=\"H3091\"* came|strong=\"H5971\"* suddenly|strong=\"H6597\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* warriors|strong=\"H4421\"*, against|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Merom|strong=\"H4792\"*, and|strong=\"H5971\"* attacked|strong=\"H4421\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*, and|strong=\"H3478\"* chased|strong=\"H7291\"* them|strong=\"H5414\"* to|strong=\"H5704\"* great|strong=\"H7227\"* Sidon|strong=\"H6721\"*, and|strong=\"H3478\"* to|strong=\"H5704\"* Misrephoth|strong=\"H4956\"* Maim, and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H5414\"* valley|strong=\"H1237\"* of|strong=\"H3068\"* Mizpah|strong=\"H4708\"* eastward|strong=\"H4217\"*. They|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"* until|strong=\"H5704\"* they|strong=\"H3068\"* left|strong=\"H7604\"* them|strong=\"H5414\"* no|strong=\"H1115\"* one|strong=\"H7227\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 9, + "text": "Joshua|strong=\"H3091\"* did|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* told|strong=\"H6213\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* hamstrung their|strong=\"H3068\"* horses|strong=\"H5483\"* and|strong=\"H3068\"* burned|strong=\"H8313\"* their|strong=\"H3068\"* chariots|strong=\"H4818\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* at|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H7725\"* took|strong=\"H3920\"* Hazor|strong=\"H2674\"*, and|strong=\"H7725\"* struck|strong=\"H5221\"* its|strong=\"H3605\"* king|strong=\"H4428\"* with|strong=\"H6440\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* Hazor|strong=\"H2674\"* used|strong=\"H3605\"* to|strong=\"H7725\"* be|strong=\"H4428\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* kingdoms|strong=\"H4467\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3808\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* who|strong=\"H3605\"* were|strong=\"H5315\"* in|strong=\"H5315\"* it|strong=\"H5221\"* with|strong=\"H8313\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, utterly|strong=\"H2763\"* destroying|strong=\"H2763\"* them|strong=\"H5221\"*. There|strong=\"H3605\"* was|strong=\"H5315\"* no|strong=\"H3808\"* one|strong=\"H3605\"* left|strong=\"H3498\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*. He|strong=\"H3605\"* burned|strong=\"H8313\"* Hazor|strong=\"H2674\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 12, + "text": "Joshua|strong=\"H3091\"* captured|strong=\"H3920\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* those|strong=\"H3605\"* kings|strong=\"H4428\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*, and|strong=\"H4872\"* he|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H4872\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H5221\"*, as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H7535\"* as|strong=\"H5892\"* for|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H3605\"* mounds|strong=\"H8510\"*, Israel|strong=\"H3478\"* burned|strong=\"H8313\"* none|strong=\"H3808\"* of|strong=\"H5892\"* them|strong=\"H5921\"*, except|strong=\"H2108\"* Hazor|strong=\"H2674\"* only|strong=\"H7535\"*. Joshua|strong=\"H3091\"* burned|strong=\"H8313\"* that|strong=\"H3605\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* of|strong=\"H1121\"* these|strong=\"H1992\"* cities|strong=\"H5892\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* livestock, as|strong=\"H5704\"* plunder|strong=\"H7998\"* for|strong=\"H5704\"* themselves|strong=\"H1992\"*; but|strong=\"H7535\"* every|strong=\"H3605\"* man|strong=\"H1121\"* they|strong=\"H1992\"* struck|strong=\"H5221\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, until|strong=\"H5704\"* they|strong=\"H1992\"* had|strong=\"H3478\"* destroyed|strong=\"H8045\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* didn’t leave|strong=\"H7604\"* any|strong=\"H3605\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, so|strong=\"H3651\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* Joshua|strong=\"H3091\"*. Joshua|strong=\"H3091\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. He|strong=\"H3651\"* left|strong=\"H5493\"* nothing|strong=\"H3808\"* undone|strong=\"H5493\"* of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3947\"* Joshua|strong=\"H3091\"* captured|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* land, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* South|strong=\"H5045\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* Goshen|strong=\"H1657\"*, the|strong=\"H3605\"* lowland|strong=\"H8219\"*, the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* lowland|strong=\"H8219\"* of|strong=\"H2022\"* the|strong=\"H3605\"* same|strong=\"H2063\"*," + }, + { + "verseNum": 17, + "text": "from|strong=\"H4480\"* Mount|strong=\"H2022\"* Halak|strong=\"H2510\"*, that|strong=\"H3605\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Seir|strong=\"H8165\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Baal Gad in|strong=\"H4428\"* the|strong=\"H3605\"* valley|strong=\"H1237\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* under|strong=\"H8478\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*. He|strong=\"H5704\"* took|strong=\"H3920\"* all|strong=\"H3605\"* their|strong=\"H3605\"* kings|strong=\"H4428\"*, struck|strong=\"H5221\"* them|strong=\"H5221\"*, and|strong=\"H4428\"* put|strong=\"H4191\"* them|strong=\"H5221\"* to|strong=\"H5704\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Joshua|strong=\"H3091\"* made|strong=\"H6213\"* war|strong=\"H4421\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* with|strong=\"H6213\"* all|strong=\"H3605\"* those|strong=\"H3605\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* not|strong=\"H3808\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H3605\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H3427\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, except|strong=\"H1115\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*. They|strong=\"H3808\"* took|strong=\"H3947\"* all|strong=\"H3605\"* in|strong=\"H3427\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* harden|strong=\"H2388\"* their|strong=\"H3068\"* hearts|strong=\"H3820\"*, to|strong=\"H3478\"* come|strong=\"H1961\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* battle|strong=\"H4421\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H8045\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* might|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H1115\"* favor|strong=\"H3068\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* destroy|strong=\"H8045\"* them|strong=\"H1992\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 21, + "text": "Joshua|strong=\"H3091\"* came|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H3063\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* Anakim|strong=\"H6062\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, from|strong=\"H4480\"* Hebron|strong=\"H2275\"*, from|strong=\"H4480\"* Debir|strong=\"H1688\"*, from|strong=\"H4480\"* Anab|strong=\"H6024\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*. Joshua|strong=\"H3091\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* them|strong=\"H2763\"* with|strong=\"H5973\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H3498\"* were|strong=\"H3478\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3808\"* Anakim|strong=\"H6062\"* left|strong=\"H7604\"* in|strong=\"H3478\"* the|strong=\"H3808\"* land of|strong=\"H1121\"* the|strong=\"H3808\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Only|strong=\"H7535\"* in|strong=\"H3478\"* Gaza|strong=\"H5804\"*, in|strong=\"H3478\"* Gath|strong=\"H1661\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Ashdod, did|strong=\"H3478\"* some|strong=\"H3498\"* remain|strong=\"H7604\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H3947\"* Joshua|strong=\"H3091\"* took|strong=\"H3947\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H5159\"*, according to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*; and|strong=\"H4872\"* Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3068\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* Israel|strong=\"H3478\"* according to|strong=\"H1696\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"* by|strong=\"H3068\"* their|strong=\"H3605\"* tribes|strong=\"H7626\"*. Then|strong=\"H1696\"* the|strong=\"H3605\"* land|strong=\"H5159\"* had|strong=\"H3068\"* rest|strong=\"H8252\"* from|strong=\"H3478\"* war|strong=\"H4421\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H1121\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H5676\"*, whom the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* their|strong=\"H3605\"* land|strong=\"H5676\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* sunrise|strong=\"H4217\"*, from|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Arnon to|strong=\"H5704\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* eastward|strong=\"H4217\"*:" + }, + { + "verseNum": 2, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Amorites, who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, and|strong=\"H1121\"* ruled|strong=\"H4910\"* from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, which|strong=\"H5158\"* is|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* edge|strong=\"H8193\"* of|strong=\"H1121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Arnon, and|strong=\"H1121\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* valley|strong=\"H5158\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* river|strong=\"H5158\"* Jabbok|strong=\"H2999\"*, the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1870\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1870\"* Chinneroth|strong=\"H3672\"*, eastward|strong=\"H4217\"*, and|strong=\"H1870\"* to|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H1870\"* the|strong=\"H5704\"* Arabah|strong=\"H6160\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, eastward|strong=\"H4217\"*, the|strong=\"H5704\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Beth Jeshimoth; and|strong=\"H1870\"* on|strong=\"H1870\"* the|strong=\"H5704\"* south|strong=\"H8486\"*, under|strong=\"H8478\"* the|strong=\"H5704\"* slopes of|strong=\"H1870\"* Pisgah|strong=\"H6449\"*:" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4428\"* the|strong=\"H3427\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, of|strong=\"H4428\"* the|strong=\"H3427\"* remnant|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3427\"* Rephaim|strong=\"H7497\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Ashtaroth|strong=\"H6252\"* and|strong=\"H4428\"* at|strong=\"H3427\"* Edrei," + }, + { + "verseNum": 5, + "text": "and|strong=\"H4428\"* ruled|strong=\"H4910\"* in|strong=\"H4428\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* Salecah|strong=\"H5548\"*, and|strong=\"H4428\"* in|strong=\"H4428\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H4428\"* the|strong=\"H3605\"* Maacathites|strong=\"H4602\"*, and|strong=\"H4428\"* half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*. Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3068\"* a|strong=\"H3068\"* possession|strong=\"H3425\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 7, + "text": "These|strong=\"H5221\"* are|strong=\"H1121\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land|strong=\"H5676\"* whom Joshua|strong=\"H3091\"* and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* struck|strong=\"H5221\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*, from|strong=\"H5927\"* Baal Gad in|strong=\"H3478\"* the|strong=\"H5414\"* valley|strong=\"H1237\"* of|strong=\"H1121\"* Lebanon|strong=\"H3844\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Mount|strong=\"H2022\"* Halak|strong=\"H2510\"*, that|strong=\"H3478\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Seir|strong=\"H8165\"*. Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H5704\"* a|strong=\"H3068\"* possession|strong=\"H3425\"* according to|strong=\"H5704\"* their|strong=\"H5414\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 8, + "text": "in|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* lowland|strong=\"H8219\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* Arabah|strong=\"H6160\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* slopes, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* wilderness|strong=\"H4057\"*, and|strong=\"H2022\"* in|strong=\"H2022\"* the|strong=\"H2022\"* South|strong=\"H5045\"*; the|strong=\"H2022\"* Hittite|strong=\"H2850\"*, the|strong=\"H2022\"* Amorite, and|strong=\"H2022\"* the|strong=\"H2022\"* Canaanite|strong=\"H3669\"*, the|strong=\"H2022\"* Perizzite|strong=\"H6522\"*, the|strong=\"H2022\"* Hivite|strong=\"H2340\"*, and|strong=\"H2022\"* the|strong=\"H2022\"* Jebusite|strong=\"H2983\"*:" + }, + { + "verseNum": 9, + "text": "the|strong=\"H1008\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 10, + "text": "the|strong=\"H3389\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Jarmuth|strong=\"H3412\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H5700\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Eglon|strong=\"H5700\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Debir|strong=\"H1688\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 14, + "text": "the|strong=\"H6166\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hormah|strong=\"H2767\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 15, + "text": "the|strong=\"H5725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Libnah|strong=\"H3841\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H1008\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Makkedah|strong=\"H4719\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H8599\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tappuah|strong=\"H8599\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Aphek, one|strong=\"H4428\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Madon|strong=\"H4068\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 20, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Shimron Meron, one|strong=\"H4428\"*;" + }, + { + "verseNum": 21, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Taanach|strong=\"H8590\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 22, + "text": "the|strong=\"H4428\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Kedesh|strong=\"H6943\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 23, + "text": "the|strong=\"H1471\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"* in|strong=\"H4428\"* the|strong=\"H1471\"* height|strong=\"H5299\"* of|strong=\"H4428\"* Dor|strong=\"H1756\"*, one|strong=\"H4428\"*;" + }, + { + "verseNum": 24, + "text": "the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tirzah|strong=\"H8656\"*, one|strong=\"H3605\"*:" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* Joshua|strong=\"H3091\"* was|strong=\"H3068\"* old|strong=\"H2204\"* and|strong=\"H3068\"* well|strong=\"H3966\"* advanced in|strong=\"H3068\"* years|strong=\"H3117\"*. Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7604\"*, “You|strong=\"H3117\"* are|strong=\"H3117\"* old|strong=\"H2204\"* and|strong=\"H3068\"* advanced in|strong=\"H3068\"* years|strong=\"H3117\"*, and|strong=\"H3068\"* there|strong=\"H3117\"* remains|strong=\"H7604\"* yet|strong=\"H3068\"* very|strong=\"H3966\"* much|strong=\"H7235\"* land to|strong=\"H3068\"* be|strong=\"H3068\"* possessed|strong=\"H3423\"*." + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* still remains|strong=\"H7604\"*: all|strong=\"H3605\"* the|strong=\"H3605\"* regions|strong=\"H1552\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"*;" + }, + { + "verseNum": 3, + "text": "from|strong=\"H4480\"* the|strong=\"H6440\"* Shihor|strong=\"H7883\"*, which|strong=\"H1366\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ekron|strong=\"H6138\"* northward|strong=\"H6828\"*, which|strong=\"H1366\"* is|strong=\"H6440\"* counted|strong=\"H2803\"* as|strong=\"H5704\"* Canaanite|strong=\"H3669\"*; the|strong=\"H6440\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H1366\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*; the|strong=\"H6440\"* Gazites|strong=\"H5841\"*, and|strong=\"H4714\"* the|strong=\"H6440\"* Ashdodites, the|strong=\"H6440\"* Ashkelonites, the|strong=\"H6440\"* Gittites|strong=\"H1663\"*, and|strong=\"H4714\"* the|strong=\"H6440\"* Ekronites|strong=\"H6139\"*; also|strong=\"H6430\"* the|strong=\"H6440\"* Avvim," + }, + { + "verseNum": 4, + "text": "on|strong=\"H3605\"* the|strong=\"H3605\"* south|strong=\"H8486\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, and|strong=\"H3605\"* Mearah|strong=\"H4632\"* that|strong=\"H3605\"* belongs to|strong=\"H5704\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, to|strong=\"H5704\"* Aphek, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Amorites;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H2022\"* the|strong=\"H3605\"* land of|strong=\"H2022\"* the|strong=\"H3605\"* Gebalites|strong=\"H1382\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Lebanon|strong=\"H3844\"*, toward|strong=\"H5704\"* the|strong=\"H3605\"* sunrise|strong=\"H4217\"*, from|strong=\"H5704\"* Baal Gad under|strong=\"H8478\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"* to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H2022\"* Hamath|strong=\"H2574\"*;" + }, + { + "verseNum": 6, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* from|strong=\"H4480\"* Lebanon|strong=\"H3844\"* to|strong=\"H5704\"* Misrephoth|strong=\"H4956\"* Maim, even|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*. I|strong=\"H5704\"* will|strong=\"H3478\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H4480\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Just|strong=\"H3605\"* allocate it|strong=\"H6440\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"* for|strong=\"H5704\"* an|strong=\"H4480\"* inheritance|strong=\"H5159\"*, as|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H1121\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* divide|strong=\"H2505\"* this|strong=\"H2063\"* land|strong=\"H5159\"* for|strong=\"H8672\"* an|strong=\"H2677\"* inheritance|strong=\"H5159\"* to|strong=\"H5159\"* the|strong=\"H6258\"* nine|strong=\"H8672\"* tribes|strong=\"H7626\"* and|strong=\"H4519\"* the|strong=\"H6258\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"*.”" + }, + { + "verseNum": 8, + "text": "With|strong=\"H5973\"* him|strong=\"H5414\"* the|strong=\"H5414\"* Reubenites|strong=\"H7206\"* and|strong=\"H4872\"* the|strong=\"H5414\"* Gadites|strong=\"H1425\"* received|strong=\"H3947\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*, beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, even|strong=\"H3068\"* as|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*:" + }, + { + "verseNum": 9, + "text": "from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Arnon, and|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H4334\"* of|strong=\"H5892\"* Medeba|strong=\"H4311\"* to|strong=\"H5704\"* Dibon|strong=\"H1769\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H2022\"* Gilead|strong=\"H1568\"*, and|strong=\"H2022\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Geshurites|strong=\"H1651\"* and|strong=\"H2022\"* Maacathites|strong=\"H4602\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Salecah|strong=\"H5548\"*;" + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H3605\"* Og|strong=\"H5747\"* in|strong=\"H4427\"* Bashan|strong=\"H1316\"*, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* Ashtaroth|strong=\"H6252\"* and|strong=\"H4872\"* in|strong=\"H4427\"* Edrei (who|strong=\"H3605\"* was|strong=\"H1931\"* left|strong=\"H7604\"* of|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H3499\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Rephaim|strong=\"H7497\"*); for|strong=\"H3605\"* Moses|strong=\"H4872\"* attacked|strong=\"H5221\"* these|strong=\"H1931\"*, and|strong=\"H4872\"* drove|strong=\"H3423\"* them|strong=\"H5221\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 13, + "text": "Nevertheless the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3117\"* Geshurites|strong=\"H1651\"*, nor|strong=\"H3808\"* the|strong=\"H3117\"* Maacathites|strong=\"H4602\"*: but|strong=\"H3808\"* Geshur|strong=\"H1650\"* and|strong=\"H1121\"* Maacath|strong=\"H4601\"* live|strong=\"H3427\"* within|strong=\"H7130\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Only|strong=\"H7535\"* he|strong=\"H1931\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* the|strong=\"H5414\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*. The|strong=\"H5414\"* offerings|strong=\"H3478\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, made|strong=\"H5414\"* by|strong=\"H3068\"* fire are|strong=\"H3478\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H5414\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H5921\"* Aroer|strong=\"H6177\"*, that|strong=\"H3605\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H8193\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Arnon, and|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* plain|strong=\"H4334\"* by|strong=\"H5921\"* Medeba|strong=\"H4311\"*;" + }, + { + "verseNum": 17, + "text": "Heshbon|strong=\"H2809\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* are|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*; Dibon|strong=\"H1769\"*, Bamoth|strong=\"H1120\"* Baal|strong=\"H1120\"*, Beth Baal|strong=\"H1120\"* Meon," + }, + { + "verseNum": 18, + "text": "Jahaz|strong=\"H3096\"*, Kedemoth|strong=\"H6932\"*, Mephaath|strong=\"H4158\"*," + }, + { + "verseNum": 19, + "text": "Kiriathaim|strong=\"H7156\"*, Sibmah|strong=\"H7643\"*, Zereth Shahar in|strong=\"H2022\"* the|strong=\"H2022\"* mount|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H2022\"* valley|strong=\"H6010\"*," + }, + { + "verseNum": 20, + "text": "Beth Peor, the slopes of Pisgah|strong=\"H6449\"*, Beth Jeshimoth," + }, + { + "verseNum": 21, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H3605\"* plain|strong=\"H4334\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites, who|strong=\"H3605\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"*, whom Moses|strong=\"H4872\"* struck|strong=\"H5221\"* with|strong=\"H3427\"* the|strong=\"H3605\"* chiefs|strong=\"H5387\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, Evi, Rekem|strong=\"H7552\"*, Zur|strong=\"H6698\"*, Hur|strong=\"H2354\"*, and|strong=\"H4872\"* Reba|strong=\"H7254\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"*, who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 22, + "text": "The|strong=\"H2026\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H3478\"* killed|strong=\"H2026\"* Balaam|strong=\"H1109\"* the|strong=\"H2026\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*, the|strong=\"H2026\"* soothsayer|strong=\"H7080\"*, with|strong=\"H3478\"* the|strong=\"H2026\"* sword|strong=\"H2719\"*, among|strong=\"H2719\"* the|strong=\"H2026\"* rest of|strong=\"H1121\"* their|strong=\"H2026\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* was|strong=\"H1961\"* the|strong=\"H1961\"* bank of|strong=\"H1121\"* the|strong=\"H1961\"* Jordan|strong=\"H3383\"*. This|strong=\"H2063\"* was|strong=\"H1961\"* the|strong=\"H1961\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*, the|strong=\"H1961\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H1961\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 24, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, according to|strong=\"H5414\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* Jazer|strong=\"H3270\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, to|strong=\"H5704\"* Aroer|strong=\"H6177\"* that|strong=\"H3605\"* is|strong=\"H3605\"* near|strong=\"H6440\"* Rabbah|strong=\"H7237\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H2809\"* from|strong=\"H5704\"* Heshbon|strong=\"H2809\"* to|strong=\"H5704\"* Ramath Mizpeh, and|strong=\"H2809\"* Betonim; and|strong=\"H2809\"* from|strong=\"H5704\"* Mahanaim|strong=\"H4266\"* to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Debir|strong=\"H1688\"*;" + }, + { + "verseNum": 27, + "text": "and|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5704\"* valley|strong=\"H6010\"*, Beth Haram, Beth Nimrah, Succoth|strong=\"H5523\"*, and|strong=\"H4428\"* Zaphon|strong=\"H6829\"*, the|strong=\"H5704\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5704\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, the|strong=\"H5704\"* Jordan|strong=\"H3383\"*’s bank, to|strong=\"H5704\"* the|strong=\"H5704\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H4428\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* of|strong=\"H4428\"* Chinnereth|strong=\"H3672\"* beyond|strong=\"H5676\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H5892\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 29, + "text": "Moses|strong=\"H4872\"* gave|strong=\"H5414\"* an|strong=\"H1961\"* inheritance to|strong=\"H1961\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*. It|strong=\"H5414\"* was|strong=\"H1961\"* for|strong=\"H1121\"* the|strong=\"H5414\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* according to|strong=\"H1961\"* their|strong=\"H5414\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 30, + "text": "Their|strong=\"H3605\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H1961\"* Mahanaim|strong=\"H4266\"*, all|strong=\"H3605\"* Bashan|strong=\"H1316\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4468\"* of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* villages of|strong=\"H4428\"* Jair|strong=\"H2971\"*, which|strong=\"H5892\"* are|strong=\"H5892\"* in|strong=\"H4428\"* Bashan|strong=\"H1316\"*, sixty|strong=\"H8346\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 31, + "text": "Half|strong=\"H2677\"* Gilead|strong=\"H1568\"*, Ashtaroth|strong=\"H6252\"*, and|strong=\"H1121\"* Edrei, the|strong=\"H2677\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H2677\"* kingdom|strong=\"H4468\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*, were|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, even|strong=\"H4519\"* for|strong=\"H1121\"* the|strong=\"H2677\"* half|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 32, + "text": "These are the|strong=\"H4872\"* inheritances which Moses|strong=\"H4872\"* distributed|strong=\"H5157\"* in|strong=\"H4872\"* the|strong=\"H4872\"* plains|strong=\"H6160\"* of|strong=\"H6160\"* Moab|strong=\"H4124\"*, beyond|strong=\"H5676\"* the|strong=\"H4872\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"*, eastward|strong=\"H4217\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H3808\"* Moses|strong=\"H4872\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* to|strong=\"H1696\"* the|strong=\"H5414\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*. Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H3091\"* inheritances which|strong=\"H3478\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H3548\"* in|strong=\"H3478\"* the|strong=\"H3091\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, which|strong=\"H3478\"* Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3091\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, distributed|strong=\"H5157\"* to|strong=\"H3478\"* them|strong=\"H1121\"*," + }, + { + "verseNum": 2, + "text": "by|strong=\"H3027\"* the|strong=\"H3068\"* lot|strong=\"H1486\"* of|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*, for|strong=\"H3027\"* the|strong=\"H3068\"* nine|strong=\"H8672\"* tribes|strong=\"H4294\"*, and|strong=\"H4872\"* for|strong=\"H3027\"* the|strong=\"H3068\"* half-tribe|strong=\"H2677\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* given|strong=\"H5414\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H4294\"* the|strong=\"H3588\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"* and|strong=\"H4872\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* beyond|strong=\"H5676\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*; but|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* were|strong=\"H1961\"* two|strong=\"H8147\"* tribes|strong=\"H4294\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim. They|strong=\"H3588\"* gave|strong=\"H5414\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* to|strong=\"H1961\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land|strong=\"H2506\"*, except|strong=\"H3588\"* cities|strong=\"H5892\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, with|strong=\"H3427\"* their|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3588\"* their|strong=\"H5414\"* livestock|strong=\"H4735\"* and|strong=\"H1121\"* for|strong=\"H3588\"* their|strong=\"H5414\"* property|strong=\"H7075\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*, and|strong=\"H1121\"* they|strong=\"H3651\"* divided|strong=\"H2505\"* the|strong=\"H6213\"* land." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"* in|strong=\"H5921\"* Gilgal|strong=\"H1537\"*. Caleb|strong=\"H3612\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H5921\"* Kenizzite|strong=\"H7074\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “You|strong=\"H5921\"* know|strong=\"H3045\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H1121\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"* in|strong=\"H5921\"* Kadesh Barnea." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1697\"* was|strong=\"H3068\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H7725\"* Moses|strong=\"H4872\"* the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7725\"* Kadesh Barnea to|strong=\"H7725\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H3068\"* land. I|strong=\"H1697\"* brought|strong=\"H7725\"* him|strong=\"H7971\"* word|strong=\"H1697\"* again|strong=\"H7725\"* as|strong=\"H1697\"* it|strong=\"H7725\"* was|strong=\"H3068\"* in|strong=\"H8141\"* my|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless, my|strong=\"H3068\"* brothers who|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H5973\"* made|strong=\"H3068\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* melt|strong=\"H4529\"*; but|strong=\"H5971\"* I|strong=\"H3068\"* wholly|strong=\"H4390\"* followed|strong=\"H5927\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Moses|strong=\"H4872\"* swore|strong=\"H7650\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, saying, ‘Surely|strong=\"H3588\"* the|strong=\"H3588\"* land|strong=\"H5159\"* where|strong=\"H3808\"* you|strong=\"H3588\"* walked|strong=\"H1869\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H5704\"* you|strong=\"H3588\"* and|strong=\"H1121\"* to|strong=\"H5704\"* your|strong=\"H3068\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* wholly|strong=\"H4390\"* followed|strong=\"H7272\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H2421\"* me|strong=\"H1696\"* alive|strong=\"H2421\"*, as|strong=\"H1697\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"*, these|strong=\"H2088\"* forty-five years|strong=\"H8141\"*, from|strong=\"H3478\"* the|strong=\"H3068\"* time|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* Moses|strong=\"H4872\"*, while|strong=\"H3117\"* Israel|strong=\"H3478\"* walked|strong=\"H1980\"* in|strong=\"H8141\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*. Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H3117\"* am|strong=\"H3068\"* eighty-five|strong=\"H8084\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, today|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3117\"* yet|strong=\"H5750\"* I|strong=\"H3117\"* am as|strong=\"H3117\"* strong|strong=\"H2389\"* today|strong=\"H3117\"* as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Moses|strong=\"H4872\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*. As|strong=\"H3117\"* my|strong=\"H7971\"* strength|strong=\"H3581\"* was|strong=\"H3117\"* then|strong=\"H3318\"*, even|strong=\"H5750\"* so|strong=\"H7971\"* is|strong=\"H3117\"* my|strong=\"H7971\"* strength|strong=\"H3581\"* now|strong=\"H6258\"* for|strong=\"H7971\"* war|strong=\"H4421\"*, to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4872\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* give|strong=\"H5414\"* me|strong=\"H5414\"* this|strong=\"H2088\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, of|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* how|strong=\"H3588\"* the|strong=\"H8085\"* Anakim|strong=\"H6062\"* were|strong=\"H3117\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*. It|strong=\"H5414\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5414\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* shall|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"*, as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*.”" + }, + { + "verseNum": 13, + "text": "Joshua|strong=\"H3091\"* blessed|strong=\"H1288\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* to|strong=\"H5414\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* for|strong=\"H1121\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Hebron|strong=\"H2275\"* became|strong=\"H1961\"* the|strong=\"H5921\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* the|strong=\"H5921\"* Kenizzite|strong=\"H7074\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* followed|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* wholeheartedly|strong=\"H4390\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1419\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* was|strong=\"H8034\"* Kiriath Arba, after|strong=\"H8034\"* the|strong=\"H6440\"* greatest|strong=\"H1419\"* man|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H6440\"* Anakim|strong=\"H6062\"*. Then the|strong=\"H6440\"* land|strong=\"H6440\"* had|strong=\"H8252\"* rest|strong=\"H8252\"* from|strong=\"H6440\"* war|strong=\"H4421\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1961\"* lot|strong=\"H1486\"* for|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* was|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Edom, even to|strong=\"H1961\"* the|strong=\"H1961\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Zin|strong=\"H6790\"* southward|strong=\"H5045\"*, at|strong=\"H1961\"* the|strong=\"H1961\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H1961\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 2, + "text": "Their|strong=\"H1992\"* south|strong=\"H5045\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H4480\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H4480\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* bay|strong=\"H3956\"* that|strong=\"H4480\"* looks southward|strong=\"H5045\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H5927\"* it|strong=\"H5927\"* went|strong=\"H3318\"* out|strong=\"H3318\"* southward|strong=\"H5045\"* of|strong=\"H3318\"* the|strong=\"H5674\"* ascent|strong=\"H4610\"* of|strong=\"H3318\"* Akrabbim|strong=\"H4610\"*, and|strong=\"H5927\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Zin|strong=\"H6790\"*, and|strong=\"H5927\"* went|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H5674\"* the|strong=\"H5674\"* south|strong=\"H5045\"* of|strong=\"H3318\"* Kadesh Barnea, and|strong=\"H5927\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* Hezron|strong=\"H2696\"*, went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* Addar, and|strong=\"H5927\"* turned|strong=\"H5437\"* toward|strong=\"H5927\"* Karka|strong=\"H7173\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4714\"* it|strong=\"H1961\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Azmon|strong=\"H6111\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H1961\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* the|strong=\"H5674\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*. This|strong=\"H2088\"* shall|strong=\"H4714\"* be|strong=\"H1961\"* your|strong=\"H1961\"* south|strong=\"H5045\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5704\"* east|strong=\"H6924\"* border|strong=\"H1366\"* was|strong=\"H1366\"* the|strong=\"H5704\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* north|strong=\"H6828\"* quarter|strong=\"H6285\"* was|strong=\"H1366\"* from|strong=\"H6285\"* the|strong=\"H5704\"* bay|strong=\"H3956\"* of|strong=\"H1366\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* at|strong=\"H3383\"* the|strong=\"H5704\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Beth Hoglah, and|strong=\"H1121\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"* of|strong=\"H1121\"* Beth Arabah; and|strong=\"H1121\"* the|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5674\"* stone of|strong=\"H1121\"* Bohan the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Debir|strong=\"H1688\"* from|strong=\"H5927\"* the|strong=\"H5674\"* valley|strong=\"H6010\"* of|strong=\"H1366\"* Achor|strong=\"H5911\"*, and|strong=\"H6437\"* so|strong=\"H1961\"* northward|strong=\"H6828\"*, looking|strong=\"H6437\"* toward|strong=\"H5927\"* Gilgal|strong=\"H1537\"*, that|strong=\"H4325\"* faces|strong=\"H6437\"* the|strong=\"H5674\"* ascent|strong=\"H4608\"* of|strong=\"H1366\"* Adummim, which|strong=\"H4325\"* is|strong=\"H1961\"* on|strong=\"H5674\"* the|strong=\"H5674\"* south|strong=\"H5045\"* side|strong=\"H6828\"* of|strong=\"H1366\"* the|strong=\"H5674\"* river|strong=\"H5158\"*. The|strong=\"H5674\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H5927\"* the|strong=\"H5674\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* En Shemesh, and|strong=\"H6437\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* En Rogel." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"* to|strong=\"H5927\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* (also|strong=\"H1121\"* called Jerusalem|strong=\"H3389\"*) southward|strong=\"H5045\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies before|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"* westward|strong=\"H3220\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* at|strong=\"H5921\"* the|strong=\"H6440\"* farthest part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Rephaim|strong=\"H7497\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3318\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* top|strong=\"H7218\"* of|strong=\"H5892\"* the|strong=\"H3318\"* mountain|strong=\"H2022\"* to|strong=\"H3318\"* the|strong=\"H3318\"* spring|strong=\"H4599\"* of|strong=\"H5892\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* Nephtoah|strong=\"H5318\"*, and|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Mount|strong=\"H2022\"* Ephron|strong=\"H6085\"*; and|strong=\"H5892\"* the|strong=\"H3318\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* to|strong=\"H3318\"* Baalah|strong=\"H1173\"* (also|strong=\"H3318\"* called Kiriath|strong=\"H7157\"* Jearim);" + }, + { + "verseNum": 10, + "text": "and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* from|strong=\"H3381\"* Baalah|strong=\"H1173\"* westward|strong=\"H3220\"* to|strong=\"H3381\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3381\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Mount|strong=\"H2022\"* Jearim|strong=\"H3297\"* (also|strong=\"H1366\"* called Chesalon|strong=\"H3693\"*) on|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"*, and|strong=\"H2022\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Beth Shemesh, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* by|strong=\"H5674\"* Timnah|strong=\"H8553\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Ekron|strong=\"H6138\"* northward|strong=\"H6828\"*; and|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* extended|strong=\"H3318\"* to|strong=\"H3318\"* Shikkeron|strong=\"H7942\"*, and|strong=\"H2022\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* Mount|strong=\"H2022\"* Baalah|strong=\"H1173\"*, and|strong=\"H2022\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H1961\"* Jabneel|strong=\"H2995\"*; and|strong=\"H2022\"* the|strong=\"H5674\"* goings out|strong=\"H3318\"* of|strong=\"H2022\"* the|strong=\"H5674\"* border|strong=\"H1366\"* were|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5439\"* west|strong=\"H3220\"* border|strong=\"H1366\"* was|strong=\"H3063\"* to|strong=\"H1121\"* the|strong=\"H5439\"* shore of|strong=\"H1121\"* the|strong=\"H5439\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5439\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5439\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1121\"* their|strong=\"H5439\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* gave|strong=\"H5414\"* to|strong=\"H3068\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* among|strong=\"H8432\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H5414\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, even|strong=\"H3068\"* Kiriath Arba, named after|strong=\"H6310\"* the|strong=\"H5414\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"* (also|strong=\"H3068\"* called Hebron|strong=\"H2275\"*)." + }, + { + "verseNum": 14, + "text": "Caleb|strong=\"H3612\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*: Sheshai|strong=\"H8344\"*, and|strong=\"H1121\"* Ahiman, and|strong=\"H1121\"* Talmai|strong=\"H8526\"*, the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Anak|strong=\"H6061\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H6440\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"*: now the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"* before|strong=\"H6440\"* was|strong=\"H8034\"* Kiriath Sepher." + }, + { + "verseNum": 16, + "text": "Caleb|strong=\"H3612\"* said, “He|strong=\"H5414\"* who|strong=\"H1323\"* strikes|strong=\"H5221\"* Kiriath Sepher, and|strong=\"H1323\"* takes|strong=\"H3920\"* it|strong=\"H5414\"*, to|strong=\"H5414\"* him|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* Achsah|strong=\"H5915\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H5414\"* wife.”" + }, + { + "verseNum": 17, + "text": "Othniel|strong=\"H6274\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, the|strong=\"H5414\"* brother of|strong=\"H1121\"* Caleb|strong=\"H3612\"*, took|strong=\"H3920\"* it|strong=\"H5414\"*: and|strong=\"H1121\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Achsah|strong=\"H5915\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H1121\"* wife." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* came|strong=\"H1961\"*, she|strong=\"H5921\"* had|strong=\"H1961\"* him|strong=\"H5921\"* ask|strong=\"H7592\"* her|strong=\"H5921\"* father for|strong=\"H5921\"* a|strong=\"H3068\"* field|strong=\"H7704\"*. She|strong=\"H5921\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H7704\"* Caleb|strong=\"H3612\"* said, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5921\"* want?”" + }, + { + "verseNum": 19, + "text": "She|strong=\"H3588\"* said, “Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* set|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H4325\"* the|strong=\"H3588\"* South|strong=\"H5045\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* also|strong=\"H3588\"* springs|strong=\"H1543\"* of|strong=\"H4325\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 20, + "text": "This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* farthest cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* toward|strong=\"H4294\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Edom in|strong=\"H5892\"* the|strong=\"H1961\"* South|strong=\"H5045\"* were|strong=\"H1961\"* Kabzeel|strong=\"H6909\"*, Eder|strong=\"H5740\"*, Jagur|strong=\"H3017\"*," + }, + { + "verseNum": 22, + "text": "Kinah|strong=\"H7016\"*, Dimonah|strong=\"H1776\"*, Adadah|strong=\"H5735\"*," + }, + { + "verseNum": 23, + "text": "Kedesh|strong=\"H6943\"*, Hazor|strong=\"H2674\"*, Ithnan|strong=\"H3497\"*," + }, + { + "verseNum": 24, + "text": "Ziph|strong=\"H2128\"*, Telem|strong=\"H2928\"*, Bealoth|strong=\"H1175\"*," + }, + { + "verseNum": 25, + "text": "Hazor|strong=\"H2674\"* Hadattah|strong=\"H2675\"*, Kerioth|strong=\"H7152\"* Hezron|strong=\"H2696\"* (also|strong=\"H1931\"* called Hazor|strong=\"H2674\"*)," + }, + { + "verseNum": 26, + "text": "Amam, Shema|strong=\"H8090\"*, Moladah|strong=\"H4137\"*," + }, + { + "verseNum": 27, + "text": "Hazar Gaddah, Heshmon|strong=\"H2829\"*, Beth Pelet," + }, + { + "verseNum": 28, + "text": "Hazar Shual, Beersheba, Biziothiah," + }, + { + "verseNum": 29, + "text": "Baalah|strong=\"H1173\"*, Iim|strong=\"H5864\"*, Ezem|strong=\"H6107\"*," + }, + { + "verseNum": 30, + "text": "Eltolad, Chesil|strong=\"H3686\"*, Hormah|strong=\"H2767\"*," + }, + { + "verseNum": 31, + "text": "Ziklag|strong=\"H6860\"*, Madmannah|strong=\"H4089\"*, Sansannah|strong=\"H5578\"*," + }, + { + "verseNum": 32, + "text": "Lebaoth|strong=\"H3822\"*, Shilhim|strong=\"H7978\"*, Ain|strong=\"H5871\"*, and|strong=\"H6242\"* Rimmon|strong=\"H7417\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* twenty-nine|strong=\"H6242\"*, with|strong=\"H5892\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"H8219\"* the|strong=\"H8219\"* lowland|strong=\"H8219\"*, Eshtaol, Zorah|strong=\"H6881\"*, Ashnah," + }, + { + "verseNum": 34, + "text": "Zanoah|strong=\"H2182\"*, En Gannim, Tappuah|strong=\"H8599\"*, Enam|strong=\"H5879\"*," + }, + { + "verseNum": 35, + "text": "Jarmuth|strong=\"H3412\"*, Adullam|strong=\"H5725\"*, Socoh|strong=\"H7755\"*, Azekah|strong=\"H5825\"*," + }, + { + "verseNum": 36, + "text": "Shaaraim|strong=\"H8189\"*, Adithaim|strong=\"H5723\"* and|strong=\"H5892\"* Gederah|strong=\"H1449\"* (or|strong=\"H5892\"* Gederothaim|strong=\"H1453\"*); fourteen|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 37, + "text": "Zenan|strong=\"H6799\"*, Hadashah|strong=\"H2322\"*, Migdal Gad," + }, + { + "verseNum": 38, + "text": "Dilean|strong=\"H1810\"*, Mizpah|strong=\"H4708\"*, Joktheel|strong=\"H3371\"*," + }, + { + "verseNum": 39, + "text": "Lachish|strong=\"H3923\"*, Bozkath|strong=\"H1218\"*, Eglon|strong=\"H5700\"*," + }, + { + "verseNum": 40, + "text": "Cabbon|strong=\"H3522\"*, Lahmam|strong=\"H3903\"*, Chitlish|strong=\"H3798\"*," + }, + { + "verseNum": 41, + "text": "Gederoth|strong=\"H1450\"*, Beth Dagon, Naamah|strong=\"H5279\"*, and|strong=\"H5892\"* Makkedah|strong=\"H4719\"*; sixteen|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 42, + "text": "Libnah|strong=\"H3841\"*, Ether|strong=\"H6281\"*, Ashan|strong=\"H6228\"*," + }, + { + "verseNum": 43, + "text": "Iphtah|strong=\"H3316\"*, Ashnah, Nezib|strong=\"H5334\"*," + }, + { + "verseNum": 44, + "text": "Keilah|strong=\"H7084\"*, Achzib, and|strong=\"H5892\"* Mareshah|strong=\"H4762\"*; nine|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 45, + "text": "Ekron|strong=\"H6138\"*, with|strong=\"H2691\"* its towns|strong=\"H1323\"* and|strong=\"H1323\"* its villages|strong=\"H2691\"*;" + }, + { + "verseNum": 46, + "text": "from|strong=\"H5921\"* Ekron|strong=\"H6138\"* even|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* were|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H3027\"* Ashdod, with|strong=\"H5921\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 47, + "text": "Ashdod, its|strong=\"H3220\"* towns|strong=\"H1323\"* and|strong=\"H4714\"* its|strong=\"H3220\"* villages|strong=\"H2691\"*; Gaza|strong=\"H5804\"*, its|strong=\"H3220\"* towns|strong=\"H1323\"* and|strong=\"H4714\"* its|strong=\"H3220\"* villages|strong=\"H2691\"*; to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* the|strong=\"H5704\"* great sea|strong=\"H3220\"* with|strong=\"H4714\"* its|strong=\"H3220\"* coastline|strong=\"H1366\"*." + }, + { + "verseNum": 48, + "text": "In|strong=\"H2022\"* the|strong=\"H2022\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, Shamir|strong=\"H8069\"*, Jattir|strong=\"H3492\"*, Socoh|strong=\"H7755\"*," + }, + { + "verseNum": 49, + "text": "Dannah|strong=\"H1837\"*, Kiriath Sannah (which|strong=\"H1931\"* is|strong=\"H1931\"* Debir|strong=\"H1688\"*)," + }, + { + "verseNum": 50, + "text": "Anab|strong=\"H6024\"*, Eshtemoh, Anim|strong=\"H6044\"*," + }, + { + "verseNum": 51, + "text": "Goshen|strong=\"H1657\"*, Holon|strong=\"H2473\"*, and|strong=\"H5892\"* Giloh|strong=\"H1542\"*; eleven|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 52, + "text": "Arab, Dumah|strong=\"H1746\"*, Eshan," + }, + { + "verseNum": 53, + "text": "Janim|strong=\"H3241\"*, Beth Tappuah, Aphekah," + }, + { + "verseNum": 54, + "text": "Humtah|strong=\"H2547\"*, Kiriath Arba (also|strong=\"H1931\"* called Hebron|strong=\"H2275\"*), and|strong=\"H5892\"* Zior|strong=\"H6730\"*; nine|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 55, + "text": "Maon|strong=\"H4584\"*, Carmel|strong=\"H3760\"*, Ziph|strong=\"H2128\"*, Jutah," + }, + { + "verseNum": 56, + "text": "Jezreel|strong=\"H3157\"*, Jokdeam|strong=\"H3347\"*, Zanoah|strong=\"H2182\"*," + }, + { + "verseNum": 57, + "text": "Kain|strong=\"H7014\"*, Gibeah|strong=\"H1390\"*, and|strong=\"H5892\"* Timnah|strong=\"H8553\"*; ten|strong=\"H6235\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 58, + "text": "Halhul|strong=\"H2478\"*, Beth Zur, Gedor|strong=\"H1446\"*," + }, + { + "verseNum": 59, + "text": "Maarath|strong=\"H4638\"*, Beth Anoth, and|strong=\"H5892\"* Eltekon; six|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 60, + "text": "Kiriath|strong=\"H7157\"* Baal (also|strong=\"H1931\"* called Kiriath|strong=\"H7157\"* Jearim), and|strong=\"H5892\"* Rabbah|strong=\"H7237\"*; two|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 61, + "text": "In the|strong=\"H4057\"* wilderness|strong=\"H4057\"*, Beth Arabah, Middin|strong=\"H4081\"*, Secacah|strong=\"H5527\"*," + }, + { + "verseNum": 62, + "text": "Nibshan|strong=\"H5044\"*, the|strong=\"H5892\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Salt|strong=\"H5898\"*, and|strong=\"H5892\"* En Gedi; six|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 63, + "text": "As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* couldn’t drive|strong=\"H3423\"* them|strong=\"H3423\"* out|strong=\"H3423\"*; but|strong=\"H3808\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* live|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H4325\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* from|strong=\"H3318\"* the|strong=\"H3318\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"*, at|strong=\"H3383\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* on|strong=\"H5927\"* the|strong=\"H3318\"* east|strong=\"H4217\"*, even the|strong=\"H3318\"* wilderness|strong=\"H4057\"*, going|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H3318\"* Jericho|strong=\"H3405\"* through|strong=\"H3318\"* the|strong=\"H3318\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Bethel|strong=\"H1008\"* to|strong=\"H3318\"* Luz|strong=\"H3870\"*, and|strong=\"H3318\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3318\"* the|strong=\"H5674\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Archites to|strong=\"H3318\"* Ataroth|strong=\"H5852\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3381\"* it|strong=\"H3381\"* went|strong=\"H3381\"* down|strong=\"H3381\"* westward|strong=\"H3220\"* to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H5704\"* Japhletites|strong=\"H3311\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Beth Horon the|strong=\"H5704\"* lower|strong=\"H8481\"*, and|strong=\"H3381\"* on|strong=\"H1961\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*; and|strong=\"H3381\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5157\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, Manasseh|strong=\"H4519\"* and|strong=\"H1121\"* Ephraim, took their|strong=\"H5157\"* inheritance|strong=\"H5157\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H1961\"* was|strong=\"H1961\"* the|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H5704\"* their|strong=\"H1961\"* families|strong=\"H4940\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* eastward|strong=\"H4217\"* was|strong=\"H1961\"* Ataroth Addar, to|strong=\"H5704\"* Beth Horon the|strong=\"H5704\"* upper|strong=\"H5945\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* westward|strong=\"H3220\"* at|strong=\"H3318\"* Michmethath|strong=\"H4366\"* on|strong=\"H5674\"* the|strong=\"H5674\"* north|strong=\"H6828\"*. The|strong=\"H5674\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* eastward|strong=\"H4217\"* to|strong=\"H3318\"* Taanath Shiloh, and|strong=\"H3318\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* it|strong=\"H5437\"* on|strong=\"H5674\"* the|strong=\"H5674\"* east|strong=\"H4217\"* of|strong=\"H1366\"* Janoah|strong=\"H3239\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3381\"* went|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H3318\"* Janoah|strong=\"H3239\"* to|strong=\"H3381\"* Ataroth|strong=\"H5852\"*, to|strong=\"H3381\"* Naarah|strong=\"H5292\"*, reached|strong=\"H6293\"* to|strong=\"H3381\"* Jericho|strong=\"H3405\"*, and|strong=\"H3381\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3383\"* the|strong=\"H3318\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H1121\"* Tappuah|strong=\"H8599\"* the|strong=\"H1961\"* border|strong=\"H1366\"* went|strong=\"H3212\"* along|strong=\"H3212\"* westward|strong=\"H3220\"* to|strong=\"H3212\"* the|strong=\"H1961\"* brook|strong=\"H5158\"* of|strong=\"H1121\"* Kanah|strong=\"H7071\"*; and|strong=\"H1121\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H1961\"* sea|strong=\"H3220\"*. This|strong=\"H2063\"* is|strong=\"H1121\"* the|strong=\"H1961\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim according to|strong=\"H3212\"* their|strong=\"H1961\"* families|strong=\"H4940\"*;" + }, + { + "verseNum": 9, + "text": "together with|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* were|strong=\"H1121\"* set|strong=\"H3995\"* apart|strong=\"H3995\"* for|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H5647\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"*; but|strong=\"H3808\"* the|strong=\"H5647\"* Canaanites|strong=\"H3669\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* territory of|strong=\"H3117\"* Ephraim to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* become|strong=\"H1961\"* servants|strong=\"H5647\"* to|strong=\"H5704\"* do|strong=\"H5647\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* lot|strong=\"H1486\"* for|strong=\"H3588\"* the|strong=\"H3588\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H4294\"* Joseph|strong=\"H3130\"*. As|strong=\"H1961\"* for|strong=\"H3588\"* Machir|strong=\"H4353\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, the|strong=\"H3588\"* father of|strong=\"H4294\"* Gilead|strong=\"H1568\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H4294\"* war|strong=\"H4421\"*, therefore|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* Gilead|strong=\"H1568\"* and|strong=\"H4519\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"H1961\"* this|strong=\"H1961\"* was|strong=\"H1961\"* for|strong=\"H1121\"* the|strong=\"H1961\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*: for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Abiezer, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Helek|strong=\"H2507\"*, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asriel, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7928\"*, for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, and|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shemida|strong=\"H8061\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* male|strong=\"H2145\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* Zelophehad|strong=\"H6765\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hepher|strong=\"H2660\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"*. These are|strong=\"H1121\"* the|strong=\"H3588\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* daughters|strong=\"H1323\"*: Mahlah|strong=\"H4244\"*, Noah|strong=\"H5270\"*, Hoglah|strong=\"H2295\"*, Milcah|strong=\"H4435\"*, and|strong=\"H1121\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* came|strong=\"H7126\"* to|strong=\"H3068\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H5387\"*, saying|strong=\"H6310\"*, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"* to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* an|strong=\"H7126\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* our|strong=\"H3068\"* brothers|strong=\"H1121\"*.” Therefore|strong=\"H4872\"* according|strong=\"H6310\"* to|strong=\"H3068\"* the|strong=\"H6440\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* he|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H7126\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* the|strong=\"H6440\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Ten|strong=\"H6235\"* parts fell|strong=\"H5307\"* to|strong=\"H3383\"* Manasseh|strong=\"H4519\"*, in|strong=\"H5307\"* addition to|strong=\"H3383\"* the|strong=\"H5676\"* land|strong=\"H5676\"* of|strong=\"H2256\"* Gilead|strong=\"H1568\"* and|strong=\"H4519\"* Bashan|strong=\"H1316\"*, which is|strong=\"H3383\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"*;" + }, + { + "verseNum": 6, + "text": "because|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* had|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*. The|strong=\"H3588\"* land|strong=\"H5159\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3588\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* of|strong=\"H3427\"* Manasseh|strong=\"H4519\"* was|strong=\"H1961\"* from|strong=\"H6440\"* Asher to|strong=\"H1980\"* Michmethath|strong=\"H4366\"*, which|strong=\"H1366\"* is|strong=\"H1961\"* before|strong=\"H6440\"* Shechem|strong=\"H7927\"*. The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H1980\"* along|strong=\"H5921\"* to|strong=\"H1980\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, to|strong=\"H1980\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* En Tappuah." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1961\"* land|strong=\"H1366\"* of|strong=\"H1121\"* Tappuah|strong=\"H8599\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* Manasseh|strong=\"H4519\"*; but|strong=\"H1961\"* Tappuah|strong=\"H8599\"* on|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 9, + "text": "The|strong=\"H8432\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8432\"* brook|strong=\"H5158\"* of|strong=\"H5892\"* Kanah|strong=\"H7071\"*, southward|strong=\"H5045\"* of|strong=\"H5892\"* the|strong=\"H8432\"* brook|strong=\"H5158\"*. These cities|strong=\"H5892\"* belonged|strong=\"H1961\"* to|strong=\"H3381\"* Ephraim among|strong=\"H8432\"* the|strong=\"H8432\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Manasseh|strong=\"H4519\"*. The|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Manasseh|strong=\"H4519\"* was|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H8432\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H5892\"* the|strong=\"H8432\"* brook|strong=\"H5158\"*, and|strong=\"H5892\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H8432\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 10, + "text": "Southward|strong=\"H5045\"* it|strong=\"H1961\"* was|strong=\"H1961\"* Ephraim’s, and|strong=\"H4519\"* northward|strong=\"H6828\"* it|strong=\"H1961\"* was|strong=\"H1961\"* Manasseh|strong=\"H4519\"*’s, and|strong=\"H4519\"* the|strong=\"H1961\"* sea|strong=\"H3220\"* was|strong=\"H1961\"* his|strong=\"H1961\"* border|strong=\"H1366\"*. They reached|strong=\"H6293\"* to|strong=\"H1961\"* Asher on|strong=\"H1961\"* the|strong=\"H1961\"* north|strong=\"H6828\"*, and|strong=\"H4519\"* to|strong=\"H1961\"* Issachar|strong=\"H3485\"* on|strong=\"H1961\"* the|strong=\"H1961\"* east|strong=\"H4217\"*." + }, + { + "verseNum": 11, + "text": "Manasseh|strong=\"H4519\"* had|strong=\"H1961\"* three|strong=\"H7969\"* heights in|strong=\"H3427\"* Issachar|strong=\"H3485\"*, in|strong=\"H3427\"* Asher Beth Shean and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* Ibleam|strong=\"H2991\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Endor|strong=\"H5874\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Taanach|strong=\"H8590\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*, and|strong=\"H3427\"* the|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Megiddo|strong=\"H4023\"* and|strong=\"H3427\"* its|strong=\"H1961\"* towns|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Yet|strong=\"H3808\"* the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* couldn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* those|strong=\"H1121\"* cities|strong=\"H5892\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H5892\"* land." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* grown|strong=\"H1961\"* strong|strong=\"H2388\"*, they|strong=\"H3588\"* put|strong=\"H5414\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"* to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, and|strong=\"H1121\"* didn’t utterly|strong=\"H3423\"* drive|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, saying|strong=\"H1696\"*, “Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H5414\"* given|strong=\"H5414\"* me|strong=\"H5414\"* just|strong=\"H1696\"* one|strong=\"H1121\"* lot|strong=\"H1486\"* and|strong=\"H1121\"* one|strong=\"H1121\"* part for|strong=\"H5704\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*, since|strong=\"H5704\"* we|strong=\"H3068\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* us|strong=\"H5414\"* so|strong=\"H3541\"* far|strong=\"H5704\"*?”" + }, + { + "verseNum": 15, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H5927\"* them|strong=\"H5927\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3588\"* forest|strong=\"H3293\"*, and|strong=\"H5971\"* clear|strong=\"H1254\"* land for|strong=\"H3588\"* yourself|strong=\"H8033\"* there|strong=\"H8033\"* in|strong=\"H7227\"* the|strong=\"H3588\"* land of|strong=\"H2022\"* the|strong=\"H3588\"* Perizzites|strong=\"H6522\"* and|strong=\"H5971\"* of|strong=\"H2022\"* the|strong=\"H3588\"* Rephaim|strong=\"H7497\"*, since|strong=\"H3588\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim is|strong=\"H8033\"* too|strong=\"H7227\"* narrow for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* said, “The|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* is|strong=\"H3605\"* not|strong=\"H3808\"* enough|strong=\"H4672\"* for|strong=\"H3427\"* us|strong=\"H4672\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* have|strong=\"H1121\"* chariots|strong=\"H7393\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, both|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3427\"* Beth Shean and|strong=\"H1121\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 17, + "text": "Joshua|strong=\"H3091\"* spoke to|strong=\"H1961\"* the|strong=\"H3091\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*, that|strong=\"H5971\"* is|strong=\"H1961\"*, to|strong=\"H1961\"* Ephraim and|strong=\"H1419\"* to|strong=\"H1961\"* Manasseh|strong=\"H4519\"*, saying, “You|strong=\"H3808\"* are|strong=\"H5971\"* a|strong=\"H3068\"* numerous|strong=\"H7227\"* people|strong=\"H5971\"*, and|strong=\"H1419\"* have|strong=\"H1961\"* great|strong=\"H1419\"* power|strong=\"H3581\"*. You|strong=\"H3808\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* have|strong=\"H1961\"* one|strong=\"H3808\"* lot|strong=\"H1486\"* only;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H3588\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* shall|strong=\"H2022\"* be|strong=\"H1961\"* yours. Although|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* forest|strong=\"H3293\"*, you|strong=\"H3588\"* shall|strong=\"H2022\"* cut|strong=\"H1254\"* it|strong=\"H1931\"* down|strong=\"H1254\"*, and|strong=\"H7393\"* it|strong=\"H1931\"*’s farthest|strong=\"H8444\"* extent shall|strong=\"H2022\"* be|strong=\"H1961\"* yours; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H2022\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"*, though|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* chariots|strong=\"H7393\"* of|strong=\"H2022\"* iron|strong=\"H1270\"*, and|strong=\"H7393\"* though|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1961\"* strong|strong=\"H2389\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6440\"* together|strong=\"H6950\"* at|strong=\"H3478\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1121\"* set|strong=\"H7931\"* up|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"* there|strong=\"H8033\"*. The|strong=\"H3605\"* land|strong=\"H6440\"* was|strong=\"H3478\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Seven|strong=\"H7651\"* tribes|strong=\"H7626\"* remained|strong=\"H3498\"* among|strong=\"H3808\"* the|strong=\"H3808\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3478\"* had|strong=\"H3478\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* divided|strong=\"H2505\"* their|strong=\"H3808\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 3, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H5704\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H5414\"* neglect to|strong=\"H5704\"* go|strong=\"H7503\"* in|strong=\"H3478\"* to|strong=\"H5704\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers, has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*?" + }, + { + "verseNum": 4, + "text": "Appoint|strong=\"H7971\"* for|strong=\"H7971\"* yourselves three|strong=\"H7969\"* men|strong=\"H1980\"* from|strong=\"H1980\"* each tribe|strong=\"H7626\"*. I|strong=\"H1980\"* will|strong=\"H6310\"* send|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H1980\"* they|strong=\"H6310\"* shall|strong=\"H6310\"* arise|strong=\"H6965\"*, walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H7971\"* land|strong=\"H5159\"*, and|strong=\"H1980\"* describe|strong=\"H3789\"* it|strong=\"H1980\"* according|strong=\"H6310\"* to|strong=\"H1980\"* their|strong=\"H7971\"* inheritance|strong=\"H5159\"*; then|strong=\"H1980\"* they|strong=\"H6310\"* shall|strong=\"H6310\"* come|strong=\"H1980\"* to|strong=\"H1980\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* shall|strong=\"H1004\"* divide|strong=\"H2505\"* it|strong=\"H5921\"* into|strong=\"H5921\"* seven|strong=\"H7651\"* portions|strong=\"H2506\"*. Judah|strong=\"H3063\"* shall|strong=\"H1004\"* live in|strong=\"H5921\"* his|strong=\"H5921\"* borders|strong=\"H1366\"* on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* shall|strong=\"H1004\"* live in|strong=\"H5921\"* their|strong=\"H5921\"* borders|strong=\"H1366\"* on|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H6440\"* shall|strong=\"H3068\"* survey the|strong=\"H6440\"* land|strong=\"H6440\"* into seven|strong=\"H7651\"* parts|strong=\"H2506\"*, and|strong=\"H3068\"* bring the|strong=\"H6440\"* description here|strong=\"H6311\"* to|strong=\"H3068\"* me|strong=\"H6440\"*; and|strong=\"H3068\"* I|strong=\"H6440\"* will|strong=\"H3068\"* cast|strong=\"H3384\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* you|strong=\"H6440\"* here|strong=\"H6311\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, the|strong=\"H3588\"* Levites|strong=\"H3881\"* have|strong=\"H3068\"* no|strong=\"H3947\"* portion|strong=\"H2506\"* among|strong=\"H7130\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* priesthood|strong=\"H3550\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*. Gad|strong=\"H1410\"*, Reuben|strong=\"H7205\"*, and|strong=\"H4872\"* the|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H3068\"* Manasseh|strong=\"H4519\"* have|strong=\"H3068\"* received|strong=\"H3947\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"* east|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3588\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* men|strong=\"H1980\"* arose|strong=\"H6965\"* and|strong=\"H1980\"* went|strong=\"H1980\"*. Joshua|strong=\"H3091\"* commanded|strong=\"H6680\"* those|strong=\"H1980\"* who|strong=\"H3068\"* went|strong=\"H1980\"* to|strong=\"H1980\"* survey the|strong=\"H6440\"* land|strong=\"H6440\"*, saying, “Go|strong=\"H1980\"* walk|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, survey it|strong=\"H7725\"*, and|strong=\"H1980\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H6440\"*. I|strong=\"H6680\"* will|strong=\"H3068\"* cast|strong=\"H7993\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* you|strong=\"H6440\"* here|strong=\"H6311\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* Shiloh|strong=\"H7887\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* men|strong=\"H7651\"* went|strong=\"H3212\"* and|strong=\"H3212\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* land|strong=\"H2506\"*, and|strong=\"H3212\"* surveyed it|strong=\"H5921\"* by|strong=\"H5921\"* cities|strong=\"H5892\"* into|strong=\"H3212\"* seven|strong=\"H7651\"* portions|strong=\"H2506\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*. They|strong=\"H5921\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Joshua|strong=\"H3091\"* to|strong=\"H3212\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* at|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 10, + "text": "Joshua|strong=\"H3091\"* cast|strong=\"H7993\"* lots|strong=\"H1486\"* for|strong=\"H6440\"* them|strong=\"H6440\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. There|strong=\"H8033\"* Joshua|strong=\"H3091\"* divided|strong=\"H2505\"* the|strong=\"H6440\"* land|strong=\"H6440\"* to|strong=\"H3478\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H3068\"* divisions|strong=\"H4256\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* of|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* came|strong=\"H3318\"* up|strong=\"H5927\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*. The|strong=\"H3318\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H3318\"* lot|strong=\"H1486\"* went|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* quarter|strong=\"H6285\"* was|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H4480\"* Jordan|strong=\"H3383\"*. The|strong=\"H4480\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H4480\"* side|strong=\"H6285\"* of|strong=\"H2022\"* Jericho|strong=\"H3405\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"*, and|strong=\"H2022\"* went|strong=\"H5927\"* up|strong=\"H5927\"* through|strong=\"H4480\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* westward|strong=\"H3220\"*. It|strong=\"H5927\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H4480\"* wilderness|strong=\"H4057\"* of|strong=\"H2022\"* Beth Aven." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5921\"* from|strong=\"H3381\"* there|strong=\"H8033\"* to|strong=\"H3381\"* Luz|strong=\"H3870\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H2022\"* Luz|strong=\"H3870\"* (also|strong=\"H1366\"* called|strong=\"H8033\"* Bethel|strong=\"H1008\"*), southward|strong=\"H5045\"*. The|strong=\"H5921\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ataroth Addar, by|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies on|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* of|strong=\"H2022\"* Beth Horon the|strong=\"H5921\"* lower|strong=\"H8481\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* extended|strong=\"H1961\"*, and|strong=\"H1121\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* on|strong=\"H5921\"* the|strong=\"H6440\"* west|strong=\"H3220\"* quarter|strong=\"H6285\"* southward|strong=\"H5045\"*, from|strong=\"H4480\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1931\"* lies|strong=\"H1961\"* before|strong=\"H6440\"* Beth Horon southward|strong=\"H5045\"*; and|strong=\"H1121\"* ended|strong=\"H1961\"* at|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Baal (also|strong=\"H1121\"* called Kiriath|strong=\"H7157\"* Jearim), a|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*. This|strong=\"H2063\"* was|strong=\"H1961\"* the|strong=\"H6440\"* west|strong=\"H3220\"* quarter|strong=\"H6285\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3318\"* south|strong=\"H5045\"* quarter|strong=\"H6285\"* was|strong=\"H1366\"* from|strong=\"H3318\"* the|strong=\"H3318\"* farthest part|strong=\"H7097\"* of|strong=\"H1366\"* Kiriath|strong=\"H7157\"* Jearim. The|strong=\"H3318\"* border|strong=\"H1366\"* went|strong=\"H3318\"* out|strong=\"H3318\"* westward|strong=\"H3220\"*, and|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* spring|strong=\"H4599\"* of|strong=\"H1366\"* the|strong=\"H3318\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* Nephtoah|strong=\"H5318\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6440\"* farthest part|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1121\"* lies before|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, which|strong=\"H2022\"* is|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Rephaim|strong=\"H7497\"* northward|strong=\"H6828\"*. It|strong=\"H5921\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6440\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H3381\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Jebusite|strong=\"H2983\"* southward|strong=\"H5045\"*, and|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* En Rogel." + }, + { + "verseNum": 17, + "text": "It|strong=\"H3381\"* extended|strong=\"H3318\"* northward|strong=\"H6828\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* En Shemesh, and|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* Geliloth|strong=\"H1553\"*, which is|strong=\"H1121\"* opposite|strong=\"H5227\"* the|strong=\"H3318\"* ascent|strong=\"H4608\"* of|strong=\"H1121\"* Adummim. It|strong=\"H3381\"* went|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3318\"* stone of|strong=\"H1121\"* Bohan the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3381\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H3381\"* the|strong=\"H5674\"* side|strong=\"H3802\"* opposite|strong=\"H4136\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"* northward|strong=\"H6828\"*, and|strong=\"H3381\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5674\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5674\"* border|strong=\"H1366\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* to|strong=\"H1961\"* the|strong=\"H5674\"* side|strong=\"H3802\"* of|strong=\"H1366\"* Beth Hoglah northward|strong=\"H6828\"*; and|strong=\"H3220\"* the|strong=\"H5674\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5674\"* north|strong=\"H6828\"* bay|strong=\"H3956\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Salt|strong=\"H4417\"* Sea|strong=\"H3220\"*, at|strong=\"H1961\"* the|strong=\"H5674\"* south|strong=\"H5045\"* end|strong=\"H7097\"* of|strong=\"H1366\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"*. This|strong=\"H2088\"* was|strong=\"H1961\"* the|strong=\"H5674\"* south|strong=\"H5045\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5439\"* Jordan|strong=\"H3383\"* was|strong=\"H1121\"* its|strong=\"H5439\"* border|strong=\"H1379\"* on|strong=\"H6285\"* the|strong=\"H5439\"* east|strong=\"H6924\"* quarter|strong=\"H6285\"*. This|strong=\"H2063\"* was|strong=\"H1121\"* the|strong=\"H5439\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5439\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, by|strong=\"H5159\"* the|strong=\"H5439\"* borders|strong=\"H1367\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, according to|strong=\"H1121\"* their|strong=\"H5439\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* families|strong=\"H4940\"* were|strong=\"H1961\"* Jericho|strong=\"H3405\"*, Beth Hoglah, Emek|strong=\"H6010\"* Keziz|strong=\"H7104\"*," + }, + { + "verseNum": 22, + "text": "Beth Arabah, Zemaraim|strong=\"H6787\"*, Bethel|strong=\"H1008\"*," + }, + { + "verseNum": 23, + "text": "Avvim|strong=\"H5761\"*, Parah|strong=\"H6511\"*, Ophrah|strong=\"H6084\"*," + }, + { + "verseNum": 24, + "text": "Chephar Ammoni, Ophni|strong=\"H6078\"*, and|strong=\"H5892\"* Geba|strong=\"H1387\"*; twelve|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 25, + "text": "Gibeon|strong=\"H1391\"*, Ramah|strong=\"H7414\"*, Beeroth," + }, + { + "verseNum": 26, + "text": "Mizpeh|strong=\"H4708\"*, Chephirah|strong=\"H3716\"*, Mozah|strong=\"H4681\"*," + }, + { + "verseNum": 27, + "text": "Rekem|strong=\"H7552\"*, Irpeel|strong=\"H3416\"*, Taralah|strong=\"H8634\"*," + }, + { + "verseNum": 28, + "text": "Zelah|strong=\"H6762\"*, Eleph, the|strong=\"H1121\"* Jebusite|strong=\"H2983\"* (also|strong=\"H1121\"* called Jerusalem|strong=\"H3389\"*), Gibeath|strong=\"H1394\"*, and|strong=\"H1121\"* Kiriath|strong=\"H7157\"*; fourteen|strong=\"H6240\"* cities|strong=\"H5892\"* with|strong=\"H3389\"* their|strong=\"H1144\"* villages|strong=\"H2691\"*. This|strong=\"H2063\"* is|strong=\"H1931\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* according to|strong=\"H3389\"* their|strong=\"H1144\"* families|strong=\"H4940\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8432\"* second|strong=\"H8145\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Simeon|strong=\"H8095\"*, even for|strong=\"H1121\"* the|strong=\"H8432\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* according to|strong=\"H3318\"* their|strong=\"H8432\"* families|strong=\"H4940\"*. Their|strong=\"H8432\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H1992\"* had|strong=\"H1961\"* for|strong=\"H1961\"* their|strong=\"H1992\"* inheritance|strong=\"H5159\"* Beersheba (or Sheba|strong=\"H7652\"*), Moladah|strong=\"H4137\"*," + }, + { + "verseNum": 3, + "text": "Hazar Shual, Balah|strong=\"H1088\"*, Ezem|strong=\"H6107\"*," + }, + { + "verseNum": 4, + "text": "Eltolad, Bethul|strong=\"H1329\"*, Hormah|strong=\"H2767\"*," + }, + { + "verseNum": 5, + "text": "Ziklag|strong=\"H6860\"*, Beth Marcaboth, Hazar Susah," + }, + { + "verseNum": 6, + "text": "Beth Lebaoth, and|strong=\"H5892\"* Sharuhen|strong=\"H8287\"*; thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*;" + }, + { + "verseNum": 7, + "text": "Ain|strong=\"H5871\"*, Rimmon|strong=\"H7417\"*, Ether|strong=\"H6281\"*, and|strong=\"H5892\"* Ashan|strong=\"H6228\"*; four cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* villages|strong=\"H2691\"* that|strong=\"H3605\"* were|strong=\"H1121\"* around|strong=\"H5439\"* these|strong=\"H2063\"* cities|strong=\"H5892\"* to|strong=\"H5704\"* Baalath Beer, Ramah|strong=\"H7414\"* of|strong=\"H1121\"* the|strong=\"H3605\"* South|strong=\"H5045\"*. This|strong=\"H2063\"* is|strong=\"H3605\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* according to|strong=\"H5704\"* their|strong=\"H3605\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3588\"* part|strong=\"H2506\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* the|strong=\"H3588\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* portion|strong=\"H2506\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* too|strong=\"H1961\"* much|strong=\"H7227\"* for|strong=\"H3588\"* them|strong=\"H1992\"*. Therefore|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"* had|strong=\"H1961\"* inheritance|strong=\"H5159\"* in|strong=\"H8432\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* their|strong=\"H1992\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5704\"* third|strong=\"H7992\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* up|strong=\"H5927\"* for|strong=\"H5704\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* according to|strong=\"H5704\"* their|strong=\"H1961\"* families|strong=\"H4940\"*. The|strong=\"H5704\"* border|strong=\"H1366\"* of|strong=\"H1121\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* to|strong=\"H5704\"* Sarid|strong=\"H8301\"*." + }, + { + "verseNum": 11, + "text": "Their|strong=\"H6440\"* border|strong=\"H1366\"* went|strong=\"H5927\"* up|strong=\"H5927\"* westward|strong=\"H3220\"*, even|strong=\"H5921\"* to|strong=\"H5927\"* Maralah|strong=\"H4831\"*, and|strong=\"H6440\"* reached|strong=\"H6293\"* to|strong=\"H5927\"* Dabbesheth|strong=\"H1708\"*. It|strong=\"H5921\"* reached|strong=\"H6293\"* to|strong=\"H5927\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* that|strong=\"H5927\"* is|strong=\"H6440\"* before|strong=\"H6440\"* Jokneam|strong=\"H3362\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* Sarid|strong=\"H8301\"* eastward|strong=\"H6924\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sunrise|strong=\"H4217\"* to|strong=\"H7725\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Chisloth Tabor. It|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* Daberath|strong=\"H1705\"*, and|strong=\"H7725\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Japhia|strong=\"H3309\"*." + }, + { + "verseNum": 13, + "text": "From|strong=\"H3318\"* there|strong=\"H8033\"* it|strong=\"H8033\"* passed|strong=\"H5674\"* along|strong=\"H5674\"* eastward|strong=\"H6924\"* to|strong=\"H3318\"* Gath Hepher, to|strong=\"H3318\"* Ethkazin; and|strong=\"H8033\"* it|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* Rimmon|strong=\"H7417\"* which|strong=\"H8033\"* stretches|strong=\"H8388\"* to|strong=\"H3318\"* Neah|strong=\"H5269\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5437\"* border|strong=\"H1366\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* it|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H5437\"* north|strong=\"H6828\"* to|strong=\"H1961\"* Hannathon|strong=\"H2615\"*; and|strong=\"H5437\"* it|strong=\"H1961\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5437\"* valley|strong=\"H1516\"* of|strong=\"H1366\"* Iphtah El;" + }, + { + "verseNum": 15, + "text": "Kattath|strong=\"H7005\"*, Nahalal|strong=\"H5096\"*, Shimron|strong=\"H8110\"*, Idalah|strong=\"H3030\"*, and|strong=\"H5892\"* Bethlehem|strong=\"H1035\"*: twelve|strong=\"H8147\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* fourth|strong=\"H7243\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Issachar|strong=\"H3485\"*, even for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* to|strong=\"H1961\"* Jezreel|strong=\"H3157\"*, Chesulloth|strong=\"H3694\"*, Shunem|strong=\"H7766\"*," + }, + { + "verseNum": 19, + "text": "Hapharaim|strong=\"H2663\"*, Shion|strong=\"H7866\"*, Anaharath," + }, + { + "verseNum": 20, + "text": "Rabbith|strong=\"H7245\"*, Kishion|strong=\"H7191\"*, Ebez," + }, + { + "verseNum": 21, + "text": "Remeth|strong=\"H7432\"*, Engannim, En Haddah, and|strong=\"H5873\"* Beth Pazzez." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* reached|strong=\"H6293\"* to|strong=\"H1961\"* Tabor|strong=\"H8396\"*, Shahazumah|strong=\"H7831\"*, and|strong=\"H5892\"* Beth Shemesh. Their|strong=\"H1961\"* border|strong=\"H1366\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H1961\"* Jordan|strong=\"H3383\"*: sixteen|strong=\"H8337\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H1961\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 23, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3318\"* fifth|strong=\"H2549\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* Helkath|strong=\"H2520\"*, Hali|strong=\"H2482\"*, Beten, Achshaph," + }, + { + "verseNum": 26, + "text": "Allammelech, Amad|strong=\"H6008\"*, Mishal|strong=\"H4861\"*. It reached|strong=\"H6293\"* to|strong=\"H3220\"* Carmel|strong=\"H3760\"* westward|strong=\"H3220\"*, and|strong=\"H3220\"* to|strong=\"H3220\"* Shihorlibnath." + }, + { + "verseNum": 27, + "text": "It|strong=\"H7725\"* turned|strong=\"H7725\"* toward|strong=\"H3318\"* the|strong=\"H7725\"* sunrise|strong=\"H4217\"* to|strong=\"H7725\"* Beth Dagon, and|strong=\"H7725\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Zebulun|strong=\"H2074\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* Iphtah El northward|strong=\"H6828\"* to|strong=\"H7725\"* Beth Emek and|strong=\"H7725\"* Neiel|strong=\"H5272\"*. It|strong=\"H7725\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* Cabul|strong=\"H3521\"* on|strong=\"H3318\"* the|strong=\"H7725\"* left|strong=\"H8040\"* hand|strong=\"H8040\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H7227\"* Ebron|strong=\"H5683\"*, Rehob|strong=\"H7340\"*, Hammon|strong=\"H2540\"*, and|strong=\"H7227\"* Kanah|strong=\"H7071\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* great|strong=\"H7227\"* Sidon|strong=\"H6721\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* to|strong=\"H5704\"* Ramah|strong=\"H7414\"*, to|strong=\"H5704\"* the|strong=\"H7725\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Tyre|strong=\"H6865\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* to|strong=\"H5704\"* Hosah|strong=\"H2621\"*. It|strong=\"H7725\"* ended|strong=\"H1961\"* at|strong=\"H7725\"* the|strong=\"H7725\"* sea|strong=\"H3220\"* by|strong=\"H5892\"* the|strong=\"H7725\"* region|strong=\"H2256\"* of|strong=\"H5892\"* Achzib;" + }, + { + "verseNum": 30, + "text": "Ummah|strong=\"H5981\"* also, and|strong=\"H6242\"* Aphek, and|strong=\"H6242\"* Rehob|strong=\"H7340\"*: twenty-two|strong=\"H6242\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H8147\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 31, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher according to|strong=\"H1121\"* their families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3318\"* sixth|strong=\"H8345\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, even for|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 33, + "text": "Their|strong=\"H1961\"* border|strong=\"H1366\"* was|strong=\"H1961\"* from|strong=\"H5704\"* Heleph|strong=\"H2501\"*, from|strong=\"H5704\"* the|strong=\"H5704\"* oak in|strong=\"H1961\"* Zaanannim|strong=\"H6815\"*, Adami-nekeb, and|strong=\"H3383\"* Jabneel|strong=\"H2995\"*, to|strong=\"H5704\"* Lakkum|strong=\"H3946\"*. It|strong=\"H1961\"* ended|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H5704\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H7725\"* border|strong=\"H1366\"* turned|strong=\"H7725\"* westward|strong=\"H3220\"* to|strong=\"H7725\"* Aznoth Tabor, and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* there|strong=\"H8033\"* to|strong=\"H7725\"* Hukkok|strong=\"H2712\"*. It|strong=\"H7725\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Zebulun|strong=\"H2074\"* on|strong=\"H3318\"* the|strong=\"H7725\"* south|strong=\"H5045\"*, and|strong=\"H3063\"* reached|strong=\"H6293\"* to|strong=\"H7725\"* Asher on|strong=\"H3318\"* the|strong=\"H7725\"* west|strong=\"H3220\"*, and|strong=\"H3063\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"* at|strong=\"H7725\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"* toward|strong=\"H3318\"* the|strong=\"H7725\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5892\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* were|strong=\"H5892\"* Ziddim|strong=\"H6661\"*, Zer|strong=\"H6863\"*, Hammath|strong=\"H2575\"*, Rakkath|strong=\"H7557\"*, Chinnereth|strong=\"H3672\"*," + }, + { + "verseNum": 36, + "text": "Adamah, Ramah|strong=\"H7414\"*, Hazor|strong=\"H2674\"*," + }, + { + "verseNum": 37, + "text": "Kedesh|strong=\"H6943\"*, Edrei, En Hazor," + }, + { + "verseNum": 38, + "text": "Iron|strong=\"H3375\"*, Migdal El, Horem|strong=\"H2765\"*, Beth Anath, and|strong=\"H5892\"* Beth Shemesh; nineteen|strong=\"H8672\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 39, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* according to|strong=\"H1121\"* their families|strong=\"H4940\"*, the|strong=\"H1121\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their villages|strong=\"H2691\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3318\"* seventh|strong=\"H7637\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H3318\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H3318\"* their|strong=\"H3318\"* families|strong=\"H4940\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1366\"* their|strong=\"H1961\"* inheritance|strong=\"H5159\"* was|strong=\"H1961\"* Zorah|strong=\"H6881\"*, Eshtaol, Irshemesh," + }, + { + "verseNum": 42, + "text": "Shaalabbin|strong=\"H8169\"*, Aijalon, Ithlah|strong=\"H3494\"*," + }, + { + "verseNum": 43, + "text": "Elon, Timnah|strong=\"H8553\"*, Ekron|strong=\"H6138\"*," + }, + { + "verseNum": 44, + "text": "Eltekeh, Gibbethon|strong=\"H1405\"*, Baalath|strong=\"H1191\"*," + }, + { + "verseNum": 45, + "text": "Jehud|strong=\"H3055\"*, Bene Berak, Gath Rimmon," + }, + { + "verseNum": 46, + "text": "Me|strong=\"H5973\"* Jarkon, and|strong=\"H5973\"* Rakkon|strong=\"H7542\"*, with|strong=\"H5973\"* the|strong=\"H5973\"* border|strong=\"H1366\"* opposite|strong=\"H4136\"* Joppa|strong=\"H3305\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H5221\"* border|strong=\"H1366\"* of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3318\"* out|strong=\"H3318\"* beyond|strong=\"H3318\"* them|strong=\"H1992\"*; for|strong=\"H7121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3318\"* up|strong=\"H5927\"* and|strong=\"H1121\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Leshem|strong=\"H3959\"*, and|strong=\"H1121\"* took|strong=\"H3920\"* it|strong=\"H7121\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* it|strong=\"H7121\"* with|strong=\"H5973\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* possessed|strong=\"H3423\"* it|strong=\"H7121\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* therein|strong=\"H7121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* Leshem|strong=\"H3959\"*, Dan|strong=\"H1835\"*, after|strong=\"H5927\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* their|strong=\"H1992\"* forefather." + }, + { + "verseNum": 48, + "text": "This|strong=\"H2063\"* is|strong=\"H5892\"* the|strong=\"H1121\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* according to|strong=\"H1121\"* their|strong=\"H1835\"* families|strong=\"H4940\"*, these|strong=\"H2063\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H1835\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 49, + "text": "So|strong=\"H5414\"* they|strong=\"H3478\"* finished|strong=\"H3615\"* distributing the|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H1121\"* inheritance|strong=\"H5159\"* by|strong=\"H3478\"* its|strong=\"H5414\"* borders|strong=\"H1367\"*. The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 50, + "text": "According|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s commandment|strong=\"H6310\"*, they|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H3068\"* he|strong=\"H3068\"* asked|strong=\"H7592\"*, even|strong=\"H1129\"* Timnathserah in|strong=\"H3427\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim; and|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* lived|strong=\"H3427\"* there|strong=\"H3427\"*." + }, + { + "verseNum": 51, + "text": "These|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* inheritances|strong=\"H5159\"*, which|strong=\"H3068\"* Eleazar the|strong=\"H6440\"* priest|strong=\"H3548\"*, Joshua|strong=\"H3091\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H6440\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, distributed|strong=\"H2505\"* for|strong=\"H6440\"* inheritance|strong=\"H5159\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3478\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*. So|strong=\"H6440\"* they|strong=\"H3068\"* finished|strong=\"H3615\"* dividing|strong=\"H2505\"* the|strong=\"H6440\"* land|strong=\"H5159\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Joshua|strong=\"H3091\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying|strong=\"H1696\"*, ‘Assign|strong=\"H5414\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"*, of|strong=\"H1121\"* which|strong=\"H5892\"* I|strong=\"H5414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H5315\"* the|strong=\"H5221\"* man|strong=\"H5315\"* slayer|strong=\"H7523\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* any|strong=\"H5221\"* person|strong=\"H5315\"* accidentally|strong=\"H7684\"* or|strong=\"H1847\"* unintentionally|strong=\"H7684\"* may|strong=\"H1961\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* shall|strong=\"H5315\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5221\"* for|strong=\"H5315\"* a|strong=\"H3068\"* refuge|strong=\"H4733\"* from|strong=\"H5315\"* the|strong=\"H5221\"* avenger|strong=\"H1350\"* of|strong=\"H1818\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H1931\"* shall|strong=\"H5892\"* flee|strong=\"H5127\"* to|strong=\"H1696\"* one|strong=\"H1931\"* of|strong=\"H1697\"* those|strong=\"H1931\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* shall|strong=\"H5892\"* stand|strong=\"H5975\"* at|strong=\"H3427\"* the|strong=\"H5414\"* entrance|strong=\"H6607\"* of|strong=\"H1697\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H1697\"* the|strong=\"H5414\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* declare|strong=\"H1696\"* his|strong=\"H5414\"* case|strong=\"H1697\"* in|strong=\"H3427\"* the|strong=\"H5414\"* ears of|strong=\"H1697\"* the|strong=\"H5414\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* that|strong=\"H1931\"* city|strong=\"H5892\"*. They|strong=\"H1931\"* shall|strong=\"H5892\"* take|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H5414\"* city|strong=\"H5892\"* with|strong=\"H5973\"* them|strong=\"H5414\"*, and|strong=\"H5892\"* give|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H4725\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* may|strong=\"H5414\"* live|strong=\"H3427\"* among|strong=\"H5973\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* avenger|strong=\"H1350\"* of|strong=\"H3027\"* blood|strong=\"H1818\"* pursues|strong=\"H7291\"* him|strong=\"H5221\"*, then|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3027\"* not|strong=\"H3808\"* deliver|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3588\"* man slayer|strong=\"H7523\"* into|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*; because|strong=\"H3588\"* he|strong=\"H1931\"* struck|strong=\"H5221\"* his|strong=\"H5221\"* neighbor|strong=\"H7453\"* unintentionally|strong=\"H1847\"*, and|strong=\"H3027\"* didn’t hate|strong=\"H8130\"* him|strong=\"H5221\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* shall|strong=\"H3548\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H3117\"* city|strong=\"H5892\"* until|strong=\"H5704\"* he|strong=\"H1931\"* stands|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* congregation|strong=\"H5712\"* for|strong=\"H5704\"* judgment|strong=\"H4941\"*, until|strong=\"H5704\"* the|strong=\"H6440\"* death|strong=\"H4194\"* of|strong=\"H1004\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* that|strong=\"H3117\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* the|strong=\"H6440\"* man|strong=\"H1419\"* slayer|strong=\"H7523\"* shall|strong=\"H3548\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* come|strong=\"H1961\"* to|strong=\"H5704\"* his|strong=\"H7725\"* own|strong=\"H1961\"* city|strong=\"H5892\"*, and|strong=\"H7725\"* to|strong=\"H5704\"* his|strong=\"H7725\"* own|strong=\"H1961\"* house|strong=\"H1004\"*, to|strong=\"H5704\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H1931\"* fled|strong=\"H5127\"* from|strong=\"H7725\"*.’”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* set|strong=\"H6942\"* apart|strong=\"H6942\"* Kedesh|strong=\"H6943\"* in|strong=\"H7927\"* Galilee|strong=\"H1551\"* in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Naphtali|strong=\"H5321\"*, Shechem|strong=\"H7927\"* in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H3063\"* Kiriath Arba (also|strong=\"H3063\"* called Hebron|strong=\"H2275\"*) in|strong=\"H7927\"* the|strong=\"H6942\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "Beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* at|strong=\"H3383\"* Jericho|strong=\"H3405\"* eastward|strong=\"H4217\"*, they|strong=\"H5414\"* assigned|strong=\"H5414\"* Bezer|strong=\"H1221\"* in|strong=\"H1474\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"* in|strong=\"H1474\"* the|strong=\"H5414\"* plain|strong=\"H4334\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, Ramoth|strong=\"H7216\"* in|strong=\"H1474\"* Gilead|strong=\"H1568\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, and|strong=\"H4519\"* Golan|strong=\"H1474\"* in|strong=\"H1474\"* Bashan|strong=\"H1316\"* out|strong=\"H5414\"* of|strong=\"H4294\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 9, + "text": "These|strong=\"H3605\"* were|strong=\"H3478\"* the|strong=\"H3605\"* appointed|strong=\"H5975\"* cities|strong=\"H5892\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* for|strong=\"H5704\"* the|strong=\"H3605\"* alien|strong=\"H1616\"* who|strong=\"H3605\"* lives|strong=\"H5315\"* among|strong=\"H8432\"* them|strong=\"H6440\"*, that|strong=\"H3605\"* whoever|strong=\"H3605\"* kills|strong=\"H5221\"* any|strong=\"H3605\"* person|strong=\"H5315\"* unintentionally|strong=\"H7684\"* might|strong=\"H1121\"* flee|strong=\"H5127\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* die|strong=\"H4191\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* avenger|strong=\"H1350\"* of|strong=\"H1121\"* blood|strong=\"H1818\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* stands|strong=\"H5975\"* trial before|strong=\"H6440\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1121\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* Levites|strong=\"H3881\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* Eleazar the|strong=\"H3091\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H3091\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses of|strong=\"H1121\"* the|strong=\"H3091\"* tribes|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H3091\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* at|strong=\"H3427\"* Shiloh|strong=\"H7887\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, saying|strong=\"H1696\"*, “Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* through|strong=\"H3027\"* Moses|strong=\"H4872\"* to|strong=\"H1696\"* give|strong=\"H5414\"* us|strong=\"H5414\"* cities|strong=\"H5892\"* to|strong=\"H1696\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*, with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* for|strong=\"H3027\"* our|strong=\"H3068\"* livestock.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"* out|strong=\"H5414\"* of|strong=\"H1121\"* their|strong=\"H3068\"* inheritance|strong=\"H5159\"*, according|strong=\"H6310\"* to|strong=\"H3478\"* the|strong=\"H5414\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, these|strong=\"H3881\"* cities|strong=\"H5892\"* with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H4480\"* lot|strong=\"H1486\"* came|strong=\"H1961\"* out|strong=\"H3318\"* for|strong=\"H1121\"* the|strong=\"H4480\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Kohathites|strong=\"H6956\"*. The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H4480\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*, had|strong=\"H1961\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* by|strong=\"H3318\"* lot|strong=\"H1486\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Simeonites|strong=\"H8099\"*, and|strong=\"H1121\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H2677\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* had|strong=\"H4519\"* ten|strong=\"H6235\"* cities|strong=\"H5892\"* by|strong=\"H5892\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, and|strong=\"H1121\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"* had|strong=\"H4519\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* by|strong=\"H5892\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, out of|strong=\"H1121\"* the|strong=\"H2677\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* out of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* according to|strong=\"H1121\"* their|strong=\"H8147\"* families|strong=\"H4940\"* had|strong=\"H1121\"* twelve|strong=\"H8147\"* cities|strong=\"H5892\"* out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* out|strong=\"H8147\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H5414\"* these|strong=\"H3881\"* cities|strong=\"H5892\"* with|strong=\"H3068\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* by|strong=\"H3027\"* lot|strong=\"H1486\"* to|strong=\"H3478\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, these|strong=\"H7121\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H1121\"* mentioned|strong=\"H7121\"* by|strong=\"H7121\"* name|strong=\"H8034\"*:" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* they|strong=\"H1992\"* were|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, of|strong=\"H1121\"* the|strong=\"H3588\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Kohathites|strong=\"H6956\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*; for|strong=\"H3588\"* theirs|strong=\"H1992\"* was|strong=\"H1961\"* the|strong=\"H3588\"* first|strong=\"H7223\"* lot|strong=\"H1486\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H1992\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* Kiriath Arba, named after|strong=\"H1992\"* the|strong=\"H5414\"* father of|strong=\"H2022\"* Anak|strong=\"H6061\"* (also|strong=\"H1992\"* called Hebron|strong=\"H2275\"*), in|strong=\"H5414\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Judah|strong=\"H3063\"*, with|strong=\"H2022\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around|strong=\"H5439\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "But they|strong=\"H5414\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* fields|strong=\"H7704\"* of|strong=\"H1121\"* the|strong=\"H5414\"* city|strong=\"H5892\"* and|strong=\"H1121\"* its|strong=\"H5414\"* villages|strong=\"H2691\"* to|strong=\"H5414\"* Caleb|strong=\"H3612\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"* for|strong=\"H1121\"* his|strong=\"H5414\"* possession." + }, + { + "verseNum": 13, + "text": "To|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H5414\"* priest|strong=\"H3548\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H5414\"* man|strong=\"H1121\"* slayer|strong=\"H7523\"*, Libnah|strong=\"H3841\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 14, + "text": "Jattir|strong=\"H3492\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Eshtemoa with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 15, + "text": "Holon|strong=\"H2473\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Debir|strong=\"H1688\"* with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 16, + "text": "Ain|strong=\"H5871\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Juttah|strong=\"H3194\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Beth Shemesh with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: nine|strong=\"H8672\"* cities|strong=\"H5892\"* out|strong=\"H4054\"* of|strong=\"H7626\"* those two|strong=\"H8147\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 17, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1391\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Benjamin|strong=\"H1144\"*, Gibeon|strong=\"H1391\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Geba|strong=\"H1387\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 18, + "text": "Anathoth|strong=\"H6068\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Almon|strong=\"H5960\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, the|strong=\"H3605\"* priests|strong=\"H3548\"*, were|strong=\"H1121\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1961\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, the|strong=\"H1961\"* Levites|strong=\"H3881\"*, even the|strong=\"H1961\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, had|strong=\"H1961\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* their|strong=\"H1961\"* lot|strong=\"H1486\"* out of|strong=\"H1121\"* the|strong=\"H1961\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* Shechem|strong=\"H7927\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* in|strong=\"H5892\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Ephraim, the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H5892\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5414\"* man slayer|strong=\"H7523\"*, and|strong=\"H5892\"* Gezer|strong=\"H1507\"* with|strong=\"H5892\"* its|strong=\"H5414\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 22, + "text": "Kibzaim|strong=\"H6911\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Beth Horon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 23, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Dan|strong=\"H1835\"*, Elteke with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Gibbethon|strong=\"H1405\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 24, + "text": "Aijalon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Gath Rimmon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H8147\"* half-tribe|strong=\"H4276\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*, Taanach|strong=\"H8590\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Gath Rimmon with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"* were|strong=\"H1121\"* ten|strong=\"H6235\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H5892\"* gave to|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gershon|strong=\"H1648\"*, of|strong=\"H1121\"* the|strong=\"H2677\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H2677\"* Levites|strong=\"H3881\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* Golan|strong=\"H1474\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H2677\"* city|strong=\"H5892\"* of|strong=\"H1121\"* refuge|strong=\"H4733\"* for|strong=\"H1121\"* the|strong=\"H2677\"* man|strong=\"H1121\"* slayer|strong=\"H7523\"*, and|strong=\"H1121\"* Be|strong=\"H1121\"* Eshterah with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: two|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 28, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H3485\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Issachar|strong=\"H3485\"*, Kishion|strong=\"H7191\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Daberath|strong=\"H1705\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 29, + "text": "Jarmuth|strong=\"H3412\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, En Gannim with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 30, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5658\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Asher, Mishal|strong=\"H4861\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Abdon|strong=\"H5658\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 31, + "text": "Helkath|strong=\"H2520\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Rehob|strong=\"H7340\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 32, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5892\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Naphtali|strong=\"H5321\"*, Kedesh|strong=\"H6943\"* in|strong=\"H5892\"* Galilee|strong=\"H1551\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4294\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5892\"* man slayer|strong=\"H7523\"*, Hammothdor with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Kartan|strong=\"H7178\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: three|strong=\"H7969\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Gershonites|strong=\"H1649\"* according to|strong=\"H5892\"* their|strong=\"H3605\"* families|strong=\"H4940\"* were|strong=\"H4940\"* thirteen|strong=\"H7969\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 34, + "text": "To|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, the|strong=\"H1121\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Jokneam|strong=\"H3362\"* with|strong=\"H3498\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Kartah|strong=\"H7177\"* with|strong=\"H3498\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 35, + "text": "Dimnah|strong=\"H1829\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Nahalal|strong=\"H5096\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 36, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H7205\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, Bezer|strong=\"H1221\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jahaz|strong=\"H3096\"* with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 37, + "text": "Kedemoth|strong=\"H6932\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H5892\"* Mephaath|strong=\"H4158\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"*." + }, + { + "verseNum": 38, + "text": "Out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5892\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad|strong=\"H1410\"*, Ramoth|strong=\"H7433\"* in|strong=\"H5892\"* Gilead|strong=\"H1568\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4294\"* refuge|strong=\"H4733\"* for|strong=\"H5892\"* the|strong=\"H5892\"* man slayer|strong=\"H7523\"*, and|strong=\"H5892\"* Mahanaim|strong=\"H4266\"* with|strong=\"H5892\"* its|strong=\"H5892\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 39, + "text": "Heshbon|strong=\"H2809\"* with|strong=\"H5892\"* its|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jazer|strong=\"H3270\"* with|strong=\"H5892\"* its|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: four cities|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* these|strong=\"H8147\"* were|strong=\"H1961\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* according to|strong=\"H1961\"* their|strong=\"H3605\"* families|strong=\"H4940\"*, even the|strong=\"H3605\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. Their|strong=\"H3605\"* lot|strong=\"H1486\"* was|strong=\"H1961\"* twelve|strong=\"H8147\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 41, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* among|strong=\"H8432\"* the|strong=\"H3605\"* possessions of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* forty-eight|strong=\"H8083\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 42, + "text": "Each|strong=\"H3605\"* of|strong=\"H5892\"* these|strong=\"H3605\"* cities|strong=\"H5892\"* included|strong=\"H1961\"* their|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around|strong=\"H5439\"* them|strong=\"H5439\"*. It|strong=\"H3651\"* was|strong=\"H1961\"* this|strong=\"H3651\"* way|strong=\"H3651\"* with|strong=\"H5892\"* all|strong=\"H3605\"* these|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 43, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers. They|strong=\"H3068\"* possessed|strong=\"H3423\"* it|strong=\"H5414\"*, and|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 44, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* rest|strong=\"H5117\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* their|strong=\"H3605\"* fathers. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* into|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 45, + "text": "Nothing|strong=\"H3808\"* failed|strong=\"H5307\"* of|strong=\"H1004\"* any|strong=\"H3605\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. All|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H1696\"* pass." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7121\"* Joshua|strong=\"H3091\"* called|strong=\"H7121\"* the|strong=\"H7121\"* Reubenites|strong=\"H7206\"*, the|strong=\"H7121\"* Gadites|strong=\"H1425\"*, and|strong=\"H3091\"* the|strong=\"H7121\"* half-tribe|strong=\"H2677\"* of|strong=\"H4294\"* Manasseh|strong=\"H4519\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H4872\"* said|strong=\"H8085\"* to|strong=\"H3068\"* them|strong=\"H6680\"*, “You|strong=\"H6680\"* have|strong=\"H3068\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, and|strong=\"H4872\"* have|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8104\"* voice|strong=\"H6963\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3117\"* have|strong=\"H3068\"* not|strong=\"H3808\"* left|strong=\"H5800\"* your|strong=\"H3068\"* brothers these|strong=\"H2088\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* have|strong=\"H3068\"* performed|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H3068\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* rest|strong=\"H5117\"* to|strong=\"H1696\"* your|strong=\"H3068\"* brothers, as|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*. Therefore|strong=\"H6258\"* now|strong=\"H6258\"* return|strong=\"H6437\"* and|strong=\"H4872\"* go|strong=\"H3212\"* to|strong=\"H1696\"* your|strong=\"H3068\"* tents, to|strong=\"H1696\"* the|strong=\"H5414\"* land|strong=\"H5676\"* of|strong=\"H3068\"* your|strong=\"H3068\"* possession, which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5414\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 5, + "text": "Only|strong=\"H7535\"* take|strong=\"H8104\"* diligent|strong=\"H3966\"* heed|strong=\"H8104\"* to|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* and|strong=\"H4872\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*, to|strong=\"H3068\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, to|strong=\"H3068\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, and|strong=\"H4872\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H6213\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H4872\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* blessed|strong=\"H1288\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*; and|strong=\"H7971\"* they went|strong=\"H3212\"* to|strong=\"H3212\"* their|strong=\"H7971\"* tents." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* to|strong=\"H7971\"* the|strong=\"H3588\"* one|strong=\"H3588\"* half-tribe|strong=\"H2677\"* of|strong=\"H7626\"* Manasseh|strong=\"H4519\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* given|strong=\"H5414\"* inheritance in|strong=\"H5414\"* Bashan|strong=\"H1316\"*; but|strong=\"H3588\"* Joshua|strong=\"H3091\"* gave|strong=\"H5414\"* to|strong=\"H7971\"* the|strong=\"H3588\"* other|strong=\"H5676\"* half|strong=\"H2677\"* among|strong=\"H5973\"* their|strong=\"H5414\"* brothers beyond|strong=\"H5676\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* westward|strong=\"H3220\"*. Moreover|strong=\"H1571\"* when|strong=\"H3588\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* them|strong=\"H5414\"* away|strong=\"H7971\"* to|strong=\"H7971\"* their|strong=\"H5414\"* tents, he|strong=\"H3588\"* blessed|strong=\"H1288\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H3701\"* spoke to|strong=\"H7725\"* them|strong=\"H7725\"*, saying, “Return|strong=\"H7725\"* with|strong=\"H5973\"* much|strong=\"H7227\"* wealth|strong=\"H5233\"* to|strong=\"H7725\"* your|strong=\"H7725\"* tents, with|strong=\"H5973\"* very|strong=\"H3966\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*, with|strong=\"H5973\"* silver|strong=\"H3701\"*, with|strong=\"H5973\"* gold|strong=\"H2091\"*, with|strong=\"H5973\"* bronze|strong=\"H5178\"*, with|strong=\"H5973\"* iron|strong=\"H1270\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* very|strong=\"H3966\"* much|strong=\"H7227\"* clothing|strong=\"H8008\"*. Divide|strong=\"H2505\"* the|strong=\"H7725\"* plunder|strong=\"H7998\"* of|strong=\"H4735\"* your|strong=\"H7725\"* enemies with|strong=\"H5973\"* your|strong=\"H7725\"* brothers.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H5921\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* returned|strong=\"H7725\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"* from|strong=\"H7725\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H5921\"* of|strong=\"H1121\"* Shiloh|strong=\"H7887\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, to|strong=\"H7725\"* go|strong=\"H3212\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* their|strong=\"H3068\"* possession|strong=\"H3027\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* owned, according|strong=\"H5921\"* to|strong=\"H7725\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H1121\"* they|strong=\"H8033\"* came to|strong=\"H5921\"* the|strong=\"H5921\"* region|strong=\"H1552\"* near|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, that|strong=\"H4196\"* is|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H5921\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* altar|strong=\"H4196\"* to|strong=\"H5921\"* look at|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* this|strong=\"H8085\"*, “Behold|strong=\"H2009\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H8085\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* have|strong=\"H1121\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* along the|strong=\"H8085\"* border of|strong=\"H1121\"* the|strong=\"H8085\"* land|strong=\"H5676\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, in|strong=\"H3478\"* the|strong=\"H8085\"* region|strong=\"H1552\"* around the|strong=\"H8085\"* Jordan|strong=\"H3383\"*, on|strong=\"H8085\"* the|strong=\"H8085\"* side|strong=\"H5676\"* that|strong=\"H8085\"* belongs to|strong=\"H3478\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8085\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H5921\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gathered|strong=\"H6950\"* themselves|strong=\"H8085\"* together|strong=\"H6950\"* at|strong=\"H5921\"* Shiloh|strong=\"H7887\"*, to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H7971\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, into the|strong=\"H7971\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, Phinehas|strong=\"H6372\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7971\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 14, + "text": "With|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H3478\"* ten|strong=\"H6235\"* princes|strong=\"H5387\"*, one|strong=\"H3605\"* prince|strong=\"H5387\"* of|strong=\"H1004\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* for|strong=\"H1004\"* each|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H1992\"* were|strong=\"H3478\"* each|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"* among|strong=\"H5973\"* the|strong=\"H3605\"* thousands of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H1696\"* came to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H1696\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, to|strong=\"H1696\"* the|strong=\"H1696\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* they|strong=\"H1696\"* spoke|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H1121\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "“The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘What|strong=\"H4100\"* trespass|strong=\"H4604\"* is|strong=\"H3068\"* this|strong=\"H2088\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3068\"* committed|strong=\"H4603\"* against|strong=\"H4775\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*, in|strong=\"H3478\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3068\"* built|strong=\"H1129\"* yourselves|strong=\"H3605\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, to|strong=\"H7725\"* rebel|strong=\"H4775\"* today|strong=\"H3117\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 17, + "text": "Is|strong=\"H3068\"* the|strong=\"H3068\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* Peor|strong=\"H6465\"* too|strong=\"H4480\"* little|strong=\"H4592\"* for|strong=\"H5704\"* us|strong=\"H3117\"*, from|strong=\"H4480\"* which|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H1961\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* ourselves|strong=\"H4480\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, although|strong=\"H3808\"* there|strong=\"H1961\"* came|strong=\"H1961\"* a|strong=\"H3068\"* plague|strong=\"H5063\"* on|strong=\"H3117\"* the|strong=\"H3068\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* must|strong=\"H3478\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*? It|strong=\"H7725\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, since|strong=\"H3117\"* you|strong=\"H3605\"* rebel|strong=\"H4775\"* today|strong=\"H3117\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* tomorrow|strong=\"H4279\"* he|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* angry|strong=\"H7107\"* with|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "However, if the|strong=\"H8432\"* land of|strong=\"H3068\"* your|strong=\"H3068\"* possession is|strong=\"H3068\"* unclean|strong=\"H2931\"*, then|strong=\"H5674\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H8432\"* land of|strong=\"H3068\"* the|strong=\"H8432\"* possession of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"* dwells|strong=\"H7931\"*, and|strong=\"H3068\"* take|strong=\"H5674\"* possession among|strong=\"H8432\"* us|strong=\"H8432\"*; but|strong=\"H1107\"* don’t rebel|strong=\"H4775\"* against|strong=\"H4775\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H5674\"* rebel|strong=\"H4775\"* against|strong=\"H4775\"* us|strong=\"H8432\"*, in|strong=\"H3068\"* building|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* other|strong=\"H1107\"* than|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 20, + "text": "Didn’t Achan|strong=\"H5912\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* commit|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* in|strong=\"H5921\"* the|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*, and|strong=\"H1121\"* wrath|strong=\"H7110\"* fell|strong=\"H1961\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*? That|strong=\"H3605\"* man|strong=\"H1121\"* didn’t perish|strong=\"H1478\"* alone|strong=\"H1931\"* in|strong=\"H5921\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6030\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H1696\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H1696\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* answered|strong=\"H6030\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1696\"* thousands of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "“The|strong=\"H3068\"* Mighty One|strong=\"H2088\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Mighty One|strong=\"H2088\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* knows|strong=\"H3045\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* know|strong=\"H3045\"*: if|strong=\"H1931\"* it|strong=\"H1931\"* was|strong=\"H3068\"* in|strong=\"H3478\"* rebellion|strong=\"H4777\"*, or|strong=\"H3117\"* if|strong=\"H1931\"* in|strong=\"H3478\"* trespass|strong=\"H4604\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"* (don’t save|strong=\"H3467\"* us|strong=\"H3045\"* today|strong=\"H3117\"*)," + }, + { + "verseNum": 23, + "text": "that|strong=\"H1931\"* we|strong=\"H3068\"* have|strong=\"H3068\"* built|strong=\"H1129\"* us|strong=\"H7725\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following Yahweh|strong=\"H3068\"*; or|strong=\"H5930\"* if|strong=\"H1931\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* or|strong=\"H5930\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, or|strong=\"H5930\"* if|strong=\"H1931\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, let|strong=\"H7725\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* require|strong=\"H1245\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H1121\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* out|strong=\"H6213\"* of|strong=\"H1121\"* concern|strong=\"H1674\"* done|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H1121\"* for|strong=\"H6213\"* a|strong=\"H3068\"* reason|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘In|strong=\"H3478\"* time|strong=\"H4279\"* to|strong=\"H3478\"* come|strong=\"H4279\"* your|strong=\"H3068\"* children|strong=\"H1121\"* might|strong=\"H3068\"* speak|strong=\"H1697\"* to|strong=\"H3478\"* our|strong=\"H3068\"* children|strong=\"H1121\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H6213\"* to|strong=\"H3478\"* do|strong=\"H6213\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H5414\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"* a|strong=\"H3068\"* border|strong=\"H1366\"* between us|strong=\"H5414\"* and|strong=\"H1121\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*. You|strong=\"H5414\"* have|strong=\"H3068\"* no|strong=\"H1115\"* portion|strong=\"H2506\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’ So|strong=\"H5414\"* your|strong=\"H3068\"* children|strong=\"H1121\"* might|strong=\"H3068\"* make|strong=\"H5414\"* our|strong=\"H3068\"* children|strong=\"H1121\"* cease|strong=\"H7673\"* from|strong=\"H1121\"* fearing|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 26, + "text": "“Therefore|strong=\"H6213\"* we|strong=\"H3068\"* said, ‘Let|strong=\"H4994\"*’s now|strong=\"H4994\"* prepare|strong=\"H6213\"* to|strong=\"H6213\"* build|strong=\"H1129\"* ourselves|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*, not|strong=\"H3808\"* for|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, nor|strong=\"H3808\"* for|strong=\"H6213\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 27, + "text": "but|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3808\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between us|strong=\"H6440\"* and|strong=\"H1121\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* between our|strong=\"H3068\"* generations|strong=\"H1755\"* after|strong=\"H3588\"* us|strong=\"H6440\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* perform|strong=\"H5647\"* the|strong=\"H6440\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* him|strong=\"H6440\"* with|strong=\"H3068\"* our|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, with|strong=\"H3068\"* our|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, and|strong=\"H1121\"* with|strong=\"H3068\"* our|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*;’ that|strong=\"H3588\"* your|strong=\"H3068\"* children|strong=\"H1121\"* may|strong=\"H3068\"* not|strong=\"H3808\"* tell our|strong=\"H3068\"* children|strong=\"H1121\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H4279\"*, ‘You|strong=\"H3588\"* have|strong=\"H3068\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 28, + "text": "“Therefore|strong=\"H3588\"* we|strong=\"H3068\"* said, ‘It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H7200\"* us|strong=\"H6213\"* or|strong=\"H3808\"* our|strong=\"H3068\"* generations|strong=\"H1755\"* this|strong=\"H6213\"* in|strong=\"H3068\"* time|strong=\"H4279\"* to|strong=\"H3068\"* come|strong=\"H1961\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* shall|strong=\"H3068\"* say, “Behold|strong=\"H7200\"* the|strong=\"H7200\"* pattern|strong=\"H8403\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, which|strong=\"H1931\"* our|strong=\"H3068\"* fathers made|strong=\"H6213\"*, not|strong=\"H3808\"* for|strong=\"H3588\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, nor|strong=\"H3808\"* for|strong=\"H3588\"* sacrifice|strong=\"H2077\"*; but|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* between us|strong=\"H6213\"* and|strong=\"H3068\"* you|strong=\"H3588\"*.”’" + }, + { + "verseNum": 29, + "text": "“Far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"* that|strong=\"H3117\"* we|strong=\"H3068\"* should|strong=\"H3068\"* rebel|strong=\"H4775\"* against|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* today|strong=\"H3117\"* from|strong=\"H4480\"* following Yahweh|strong=\"H3068\"*, to|strong=\"H7725\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* for|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, for|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, or|strong=\"H3117\"* for|strong=\"H6440\"* sacrifice|strong=\"H2077\"*, besides|strong=\"H4480\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H3117\"* is|strong=\"H3068\"* before|strong=\"H6440\"* his|strong=\"H3068\"* tabernacle|strong=\"H4908\"*!”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Phinehas|strong=\"H6372\"* the|strong=\"H8085\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H8085\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H8085\"* congregation|strong=\"H5712\"*, even|strong=\"H5869\"* the|strong=\"H8085\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H8085\"* thousands of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H8085\"* were|strong=\"H3478\"* with|strong=\"H1696\"* him|strong=\"H8085\"*, heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* that|strong=\"H8085\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* and|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* spoke|strong=\"H1696\"*, it|strong=\"H1696\"* pleased|strong=\"H3190\"* them|strong=\"H3190\"* well|strong=\"H3190\"*." + }, + { + "verseNum": 31, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H3588\"* priest|strong=\"H3548\"* said to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, “Today|strong=\"H3117\"* we|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* among|strong=\"H8432\"* us|strong=\"H3045\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* committed|strong=\"H4603\"* this|strong=\"H2088\"* trespass|strong=\"H4604\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H3117\"* you|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3045\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 32, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H7725\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar the|strong=\"H7725\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H7725\"* princes|strong=\"H5387\"*, returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, and|strong=\"H1121\"* from|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"*, out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* word|strong=\"H1697\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H5921\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* blessed|strong=\"H1288\"* God|strong=\"H3808\"*, and|strong=\"H1121\"* spoke|strong=\"H1697\"* no|strong=\"H3808\"* more|strong=\"H3808\"* of|strong=\"H1121\"* going|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* war|strong=\"H6635\"*, to|strong=\"H3478\"* destroy|strong=\"H7843\"* the|strong=\"H5921\"* land in|strong=\"H3427\"* which|strong=\"H1697\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* named|strong=\"H7121\"* the|strong=\"H3588\"* altar|strong=\"H4196\"* “A|strong=\"H3068\"* Witness|strong=\"H5707\"* Between Us|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* their|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H3478\"* Joshua|strong=\"H3091\"* was|strong=\"H3068\"* old|strong=\"H2204\"* and|strong=\"H3478\"* well advanced in|strong=\"H3478\"* years|strong=\"H3117\"*," + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* called|strong=\"H7121\"* for|strong=\"H7121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* judges|strong=\"H8199\"* and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* officers|strong=\"H7860\"*, and|strong=\"H3478\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H7121\"*, “I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H2205\"* and|strong=\"H3478\"* well advanced in|strong=\"H3478\"* years|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H6213\"* nations|strong=\"H1471\"* because|strong=\"H3588\"* of|strong=\"H3068\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3605\"* has|strong=\"H3068\"* fought|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H1471\"* allotted|strong=\"H5307\"* to|strong=\"H7200\"* you|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H7200\"* remain|strong=\"H7604\"*, to|strong=\"H7200\"* be|strong=\"H1471\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* for|strong=\"H3605\"* your|strong=\"H3605\"* tribes|strong=\"H7626\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, with|strong=\"H3772\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, even to|strong=\"H7200\"* the|strong=\"H3605\"* great|strong=\"H1419\"* sea|strong=\"H3220\"* toward|strong=\"H4480\"* the|strong=\"H3605\"* going|strong=\"H5307\"* down|strong=\"H5307\"* of|strong=\"H7626\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* thrust|strong=\"H1920\"* them|strong=\"H6440\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* drive|strong=\"H3423\"* them|strong=\"H6440\"* from|strong=\"H6440\"* out|strong=\"H3423\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sight|strong=\"H6440\"*. You|strong=\"H6440\"* shall|strong=\"H3068\"* possess|strong=\"H3423\"* their|strong=\"H3068\"* land|strong=\"H6440\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H4872\"* be|strong=\"H8040\"* very|strong=\"H3966\"* courageous|strong=\"H2388\"* to|strong=\"H6213\"* keep|strong=\"H8104\"* and|strong=\"H4872\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* written|strong=\"H3789\"* in|strong=\"H6213\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4480\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4480\"* Moses|strong=\"H4872\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* not|strong=\"H1115\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3225\"* to|strong=\"H6213\"* the|strong=\"H3605\"* left|strong=\"H8040\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"H1471\"* you|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H2142\"* among|strong=\"H8034\"* these|strong=\"H2142\"* nations|strong=\"H1471\"*, these|strong=\"H2142\"* that|strong=\"H1471\"* remain|strong=\"H7604\"* among|strong=\"H8034\"* you|strong=\"H3808\"*; neither|strong=\"H3808\"* make|strong=\"H5647\"* mention|strong=\"H2142\"* of|strong=\"H8034\"* the|strong=\"H5647\"* name|strong=\"H8034\"* of|strong=\"H8034\"* their|strong=\"H5647\"* gods, nor|strong=\"H3808\"* cause to|strong=\"H7650\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* them|strong=\"H5647\"*, neither|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H5647\"*, nor|strong=\"H3808\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* yourselves|strong=\"H7812\"* to|strong=\"H7650\"* them|strong=\"H5647\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H5704\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "“For|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* driven|strong=\"H3423\"* great|strong=\"H1419\"* and|strong=\"H3068\"* strong|strong=\"H6099\"* nations|strong=\"H1471\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. But|strong=\"H3808\"* as|strong=\"H5704\"* for|strong=\"H5704\"* you|strong=\"H6440\"*, no|strong=\"H3808\"* man|strong=\"H1419\"* has|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H6440\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "One|strong=\"H4480\"* man of|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* chase|strong=\"H7291\"* a|strong=\"H3068\"* thousand; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* fights|strong=\"H3898\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, as|strong=\"H3068\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Take|strong=\"H8104\"* good|strong=\"H3966\"* heed|strong=\"H8104\"* therefore|strong=\"H3068\"* to|strong=\"H3068\"* yourselves|strong=\"H5315\"*, that|strong=\"H5315\"* you|strong=\"H5315\"* love Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* do at|strong=\"H7725\"* all|strong=\"H7725\"* go|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* hold|strong=\"H1692\"* fast|strong=\"H1692\"* to|strong=\"H7725\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1471\"* these|strong=\"H1992\"* nations|strong=\"H1471\"*, even|strong=\"H3588\"* these|strong=\"H1992\"* who|strong=\"H1992\"* remain|strong=\"H7604\"* among you|strong=\"H3588\"*, and|strong=\"H7725\"* make|strong=\"H7725\"* marriages|strong=\"H2859\"* with|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* go|strong=\"H7725\"* in|strong=\"H7604\"* to|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* they|strong=\"H1992\"* to|strong=\"H7725\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 13, + "text": "know|strong=\"H3045\"* for|strong=\"H3588\"* a|strong=\"H3068\"* certainty|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* drive|strong=\"H3423\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* out|strong=\"H3423\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* and|strong=\"H3068\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* scourge in|strong=\"H5921\"* your|strong=\"H3068\"* sides|strong=\"H6654\"*, and|strong=\"H3068\"* thorns|strong=\"H6796\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* perish from|strong=\"H6440\"* off|strong=\"H5921\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land|strong=\"H6440\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, today|strong=\"H3117\"* I|strong=\"H3588\"* am|strong=\"H3068\"* going|strong=\"H1980\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. You|strong=\"H3588\"* know|strong=\"H3045\"* in|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3068\"* souls|strong=\"H5315\"* that|strong=\"H3588\"* not|strong=\"H3808\"* one|strong=\"H3605\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* failed|strong=\"H5307\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* things|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*. All|strong=\"H3605\"* have|strong=\"H3068\"* happened|strong=\"H1697\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* failed|strong=\"H5307\"* of|strong=\"H3068\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* as|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* things|strong=\"H1697\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H5414\"* of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* things|strong=\"H1697\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3068\"* destroyed|strong=\"H8045\"* you|strong=\"H5414\"* from|strong=\"H5921\"* off|strong=\"H5921\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 16, + "text": "when|strong=\"H1980\"* you|strong=\"H5414\"* disobey the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H1980\"* them|strong=\"H5414\"*. Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H5674\"* will|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* you|strong=\"H5414\"* will|strong=\"H3068\"* perish|strong=\"H5674\"* quickly|strong=\"H4120\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* land which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H5414\"*.”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Joshua|strong=\"H3091\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, and|strong=\"H3478\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, for|strong=\"H7121\"* their|strong=\"H3605\"* judges|strong=\"H8199\"*, and|strong=\"H3478\"* for|strong=\"H7121\"* their|strong=\"H3605\"* officers|strong=\"H7860\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* presented|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 2, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Your|strong=\"H3068\"* fathers lived|strong=\"H3427\"* of|strong=\"H3068\"* old|strong=\"H5769\"* time|strong=\"H5769\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, even|strong=\"H3068\"* Terah|strong=\"H8646\"*, the|strong=\"H3605\"* father of|strong=\"H3068\"* Abraham, and|strong=\"H3478\"* the|strong=\"H3605\"* father of|strong=\"H3068\"* Nahor|strong=\"H5152\"*. They|strong=\"H3068\"* served|strong=\"H5647\"* other|strong=\"H5676\"* gods." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* took|strong=\"H3947\"* your|strong=\"H3605\"* father Abraham|strong=\"H3947\"* from|strong=\"H3947\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* River|strong=\"H5104\"*, and|strong=\"H3212\"* led|strong=\"H3212\"* him|strong=\"H5414\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H5676\"* of|strong=\"H2233\"* Canaan|strong=\"H3667\"*, and|strong=\"H3212\"* multiplied|strong=\"H7235\"* his|strong=\"H3605\"* offspring|strong=\"H2233\"*,+ 24:3 or, seed* and|strong=\"H3212\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Isaac|strong=\"H3327\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3381\"* Isaac|strong=\"H3327\"* Jacob|strong=\"H3290\"* and|strong=\"H1121\"* Esau|strong=\"H6215\"*: and|strong=\"H1121\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3381\"* Esau|strong=\"H6215\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, to|strong=\"H3381\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*. Jacob|strong=\"H3290\"* and|strong=\"H1121\"* his|strong=\"H5414\"* children|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "“‘I|strong=\"H4714\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* I|strong=\"H4714\"* plagued|strong=\"H5062\"* Egypt|strong=\"H4714\"*, according to|strong=\"H3318\"* that|strong=\"H6213\"* which I|strong=\"H4714\"* did|strong=\"H6213\"* among|strong=\"H7130\"* them|strong=\"H7971\"*: and|strong=\"H4872\"* afterward I|strong=\"H4714\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H4714\"* brought|strong=\"H3318\"* your|strong=\"H3318\"* fathers out|strong=\"H3318\"* of|strong=\"H3318\"* Egypt|strong=\"H4714\"*: and|strong=\"H4714\"* you|strong=\"H7291\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* sea|strong=\"H3220\"*. The|strong=\"H3318\"* Egyptians|strong=\"H4714\"* pursued|strong=\"H7291\"* your|strong=\"H3318\"* fathers with|strong=\"H3318\"* chariots|strong=\"H7393\"* and|strong=\"H4714\"* with|strong=\"H3318\"* horsemen|strong=\"H6571\"* to|strong=\"H3318\"* the|strong=\"H3318\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* cried|strong=\"H6817\"* out|strong=\"H7200\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3117\"* put|strong=\"H7760\"* darkness|strong=\"H3990\"* between|strong=\"H3427\"* you|strong=\"H5921\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"*, and|strong=\"H3068\"* brought|strong=\"H7760\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* covered|strong=\"H3680\"* them|strong=\"H5921\"*; and|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"* what|strong=\"H6213\"* I|strong=\"H3117\"* did|strong=\"H6213\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*. You|strong=\"H5921\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "“‘I|strong=\"H5414\"* brought|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Amorites, that|strong=\"H5414\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*. They|strong=\"H6440\"* fought|strong=\"H3898\"* with|strong=\"H3427\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*. You|strong=\"H5414\"* possessed|strong=\"H3423\"* their|strong=\"H5414\"* land|strong=\"H6440\"*, and|strong=\"H3027\"* I|strong=\"H5414\"* destroyed|strong=\"H8045\"* them|strong=\"H5414\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6965\"* Balak|strong=\"H1111\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, arose|strong=\"H6965\"* and|strong=\"H1121\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*. He|strong=\"H7971\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Balaam|strong=\"H1109\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"* to|strong=\"H3478\"* curse|strong=\"H7043\"* you|strong=\"H7971\"*," + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* I|strong=\"H3808\"* would not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3027\"* Balaam|strong=\"H1109\"*; therefore he|strong=\"H3027\"* blessed|strong=\"H1288\"* you|strong=\"H1288\"* still|strong=\"H1288\"*. So|strong=\"H3808\"* I|strong=\"H3808\"* delivered|strong=\"H5337\"* you|strong=\"H1288\"* out|strong=\"H5337\"* of|strong=\"H3027\"* his|strong=\"H8085\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "“‘You|strong=\"H5414\"* went|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5414\"* Jordan|strong=\"H3383\"*, and|strong=\"H3027\"* came|strong=\"H5674\"* to|strong=\"H5414\"* Jericho|strong=\"H3405\"*. The|strong=\"H5414\"* men|strong=\"H1167\"* of|strong=\"H3027\"* Jericho|strong=\"H3405\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H5414\"*, the|strong=\"H5414\"* Amorite, the|strong=\"H5414\"* Perizzite|strong=\"H6522\"*, the|strong=\"H5414\"* Canaanite|strong=\"H3669\"*, the|strong=\"H5414\"* Hittite|strong=\"H2850\"*, the|strong=\"H5414\"* Girgashite|strong=\"H1622\"*, the|strong=\"H5414\"* Hivite|strong=\"H2340\"*, and|strong=\"H3027\"* the|strong=\"H5414\"* Jebusite|strong=\"H2983\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* sent|strong=\"H7971\"* the|strong=\"H6440\"* hornet|strong=\"H6880\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, which|strong=\"H2719\"* drove|strong=\"H1644\"* them|strong=\"H7971\"* out|strong=\"H7971\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, even|strong=\"H3808\"* the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Amorites; not|strong=\"H3808\"* with|strong=\"H6440\"* your|strong=\"H6440\"* sword|strong=\"H2719\"*, nor|strong=\"H3808\"* with|strong=\"H6440\"* your|strong=\"H6440\"* bow|strong=\"H7198\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* land on|strong=\"H3427\"* which|strong=\"H5892\"* you|strong=\"H5414\"* had|strong=\"H5414\"* not|strong=\"H3808\"* labored|strong=\"H3021\"*, and|strong=\"H5892\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H5414\"* didn’t build|strong=\"H1129\"*, and|strong=\"H5892\"* you|strong=\"H5414\"* live|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* eat of|strong=\"H3427\"* vineyards|strong=\"H3754\"* and|strong=\"H5892\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"* which|strong=\"H5892\"* you|strong=\"H5414\"* didn’t plant|strong=\"H5193\"*.’" + }, + { + "verseNum": 14, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* in|strong=\"H3068\"* sincerity|strong=\"H8549\"* and|strong=\"H3068\"* in|strong=\"H3068\"* truth. Put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5647\"* gods which|strong=\"H3068\"* your|strong=\"H3068\"* fathers served|strong=\"H5647\"* beyond|strong=\"H5676\"* the|strong=\"H5647\"* River|strong=\"H5104\"*, in|strong=\"H3068\"* Egypt|strong=\"H4714\"*; and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "If it|strong=\"H3117\"* seems|strong=\"H5869\"* evil|strong=\"H7451\"* to|strong=\"H3068\"* you|strong=\"H3117\"* to|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, choose today|strong=\"H3117\"* whom|strong=\"H4310\"* you|strong=\"H3117\"* will|strong=\"H3068\"* serve|strong=\"H5647\"*; whether the|strong=\"H5647\"* gods which|strong=\"H3068\"* your|strong=\"H3068\"* fathers served|strong=\"H5647\"* that|strong=\"H3117\"* were|strong=\"H3117\"* beyond|strong=\"H5676\"* the|strong=\"H5647\"* River|strong=\"H5104\"*, or|strong=\"H3117\"* the|strong=\"H5647\"* gods of|strong=\"H1004\"* the|strong=\"H5647\"* Amorites, in|strong=\"H3427\"* whose|strong=\"H4310\"* land|strong=\"H5676\"* you|strong=\"H3117\"* dwell|strong=\"H3427\"*; but|strong=\"H7451\"* as|strong=\"H3117\"* for|strong=\"H3068\"* me|strong=\"H5869\"* and|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H5647\"* people|strong=\"H5971\"* answered|strong=\"H6030\"*, “Far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H2486\"* from|strong=\"H3068\"* us|strong=\"H6030\"* that|strong=\"H5971\"* we|strong=\"H3068\"* should|strong=\"H3068\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* other gods;" + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3605\"* brought|strong=\"H5927\"* us|strong=\"H6213\"* and|strong=\"H1980\"* our|strong=\"H3068\"* fathers up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H7130\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, from|strong=\"H5927\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*, and|strong=\"H1980\"* who|strong=\"H3605\"* did|strong=\"H6213\"* those|strong=\"H3605\"* great|strong=\"H1419\"* signs in|strong=\"H1980\"* our|strong=\"H3068\"* sight|strong=\"H5869\"*, and|strong=\"H1980\"* preserved|strong=\"H8104\"* us|strong=\"H6213\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* in|strong=\"H1980\"* which|strong=\"H1931\"* we|strong=\"H3068\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* among|strong=\"H7130\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H1004\"* whom|strong=\"H5971\"* we|strong=\"H3068\"* passed|strong=\"H5674\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, even|strong=\"H1571\"* the|strong=\"H3605\"* Amorites who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"*. Therefore|strong=\"H1571\"* we|strong=\"H3068\"* also|strong=\"H1571\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 19, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3201\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* can|strong=\"H3201\"*’t serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7072\"* God|strong=\"H3068\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* forgive|strong=\"H5375\"* your|strong=\"H3068\"* disobedience nor|strong=\"H3808\"* your|strong=\"H3068\"* sins|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* foreign|strong=\"H5236\"* gods, then|strong=\"H7725\"* he|strong=\"H3588\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* and|strong=\"H3068\"* do|strong=\"H3190\"* you|strong=\"H3588\"* evil|strong=\"H7489\"*, and|strong=\"H3068\"* consume|strong=\"H3615\"* you|strong=\"H3588\"*, after|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H3615\"* you|strong=\"H3588\"* good|strong=\"H3190\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* said to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "Joshua|strong=\"H3091\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* are|strong=\"H5971\"* witnesses|strong=\"H5707\"* against|strong=\"H3068\"* yourselves|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* chosen Yahweh|strong=\"H3068\"* yourselves|strong=\"H3068\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*.”" + }, + { + "verseNum": 23, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3068\"* foreign|strong=\"H5236\"* gods which|strong=\"H3068\"* are|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H7130\"*, and|strong=\"H3478\"* incline|strong=\"H5186\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H8085\"* people|strong=\"H5971\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H7760\"* Joshua|strong=\"H3091\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H3117\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* made|strong=\"H3772\"* for|strong=\"H2706\"* them|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3117\"* an|strong=\"H7760\"* ordinance|strong=\"H4941\"* in|strong=\"H3117\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 26, + "text": "Joshua|strong=\"H3091\"* wrote|strong=\"H3789\"* these|strong=\"H3789\"* words|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H3947\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3947\"* law|strong=\"H8451\"* of|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H6965\"* he|strong=\"H8033\"* took|strong=\"H3947\"* a|strong=\"H3068\"* great|strong=\"H1419\"* stone, and|strong=\"H6965\"* set|strong=\"H6965\"* it|strong=\"H8033\"* up|strong=\"H6965\"* there|strong=\"H8033\"* under|strong=\"H8478\"* the|strong=\"H3947\"* oak that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Joshua|strong=\"H3091\"* said|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2063\"* stone shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* against|strong=\"H5973\"* us|strong=\"H3588\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H3588\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* therefore|strong=\"H3588\"* a|strong=\"H3068\"* witness|strong=\"H5713\"* against|strong=\"H5973\"* you|strong=\"H3588\"*, lest|strong=\"H6435\"* you|strong=\"H3588\"* deny|strong=\"H3584\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H7971\"* Joshua|strong=\"H3091\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, each|strong=\"H5971\"* to|strong=\"H7971\"* his|strong=\"H7971\"* own|strong=\"H5971\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 29, + "text": "After|strong=\"H1961\"* these|strong=\"H4191\"* things|strong=\"H1697\"*, Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, died|strong=\"H4191\"*, being|strong=\"H1961\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*." + }, + { + "verseNum": 30, + "text": "They buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H6912\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his|strong=\"H6912\"* inheritance|strong=\"H5159\"* in|strong=\"H6912\"* Timnathserah, which|strong=\"H2022\"* is|strong=\"H5159\"* in|strong=\"H6912\"* the|strong=\"H6912\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, on|strong=\"H2022\"* the|strong=\"H6912\"* north|strong=\"H6828\"* of|strong=\"H2022\"* the|strong=\"H6912\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 31, + "text": "Israel|strong=\"H3478\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* who|strong=\"H3605\"* outlived Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* had|strong=\"H3068\"* known|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* had|strong=\"H3068\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3478\"* buried|strong=\"H6912\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*, which|strong=\"H3478\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H3478\"* Shechem|strong=\"H7927\"*, in|strong=\"H3478\"* the|strong=\"H5927\"* parcel|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* which|strong=\"H3478\"* Jacob|strong=\"H3290\"* bought|strong=\"H7069\"* from|strong=\"H5927\"* the|strong=\"H5927\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H5927\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* for|strong=\"H4714\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* pieces|strong=\"H7192\"* of|strong=\"H1121\"* silver|strong=\"H7192\"*.+ 24:32 Hebrew: kesitahs. A kesitah was a kind of silver coin.* They|strong=\"H3478\"* became|strong=\"H1961\"* the|strong=\"H5927\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 33, + "text": "Eleazar the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron died|strong=\"H4191\"*. They|strong=\"H5414\"* buried|strong=\"H6912\"* him|strong=\"H5414\"* in|strong=\"H4191\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"* his|strong=\"H5414\"* son|strong=\"H1121\"*, which|strong=\"H2022\"* was|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H4191\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim." + } + ] + } + ] + }, + { + "name": "Judges", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"*, the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* saying, “Who|strong=\"H4310\"* should|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3068\"* us|strong=\"H1961\"* first|strong=\"H1121\"* against|strong=\"H3898\"* the|strong=\"H3068\"* Canaanites|strong=\"H3669\"*, to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H5927\"*?”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said, “Judah|strong=\"H3063\"* shall|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*. Behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* land into|strong=\"H5927\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* said to|strong=\"H1980\"* Simeon|strong=\"H8095\"* his|strong=\"H1980\"* brother, “Come|strong=\"H1980\"* up|strong=\"H5927\"* with|strong=\"H1980\"* me|strong=\"H5927\"* into|strong=\"H1980\"* my|strong=\"H5927\"* lot|strong=\"H1486\"*, that|strong=\"H3669\"* we|strong=\"H3068\"* may|strong=\"H1571\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H5927\"* Canaanites|strong=\"H3669\"*; and|strong=\"H1980\"* I|strong=\"H1571\"* likewise|strong=\"H1571\"* will|strong=\"H1571\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H1571\"* into|strong=\"H1980\"* your|strong=\"H1571\"* lot|strong=\"H1486\"*.” So|strong=\"H1980\"* Simeon|strong=\"H8095\"* went|strong=\"H1980\"* with|strong=\"H1980\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 4, + "text": "Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* Canaanites|strong=\"H3669\"* and|strong=\"H3063\"* the|strong=\"H5414\"* Perizzites|strong=\"H6522\"* into|strong=\"H5927\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*. They|strong=\"H3068\"* struck|strong=\"H5221\"* ten|strong=\"H6235\"* thousand men in|strong=\"H3068\"* Bezek." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5221\"* found|strong=\"H4672\"* Adoni-Bezek in|strong=\"H4672\"* Bezek, and|strong=\"H5221\"* they|strong=\"H5221\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* him|strong=\"H5221\"*. They|strong=\"H5221\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* and|strong=\"H5221\"* the|strong=\"H5221\"* Perizzites|strong=\"H6522\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H7291\"* Adoni-Bezek fled|strong=\"H5127\"*. They|strong=\"H7272\"* pursued|strong=\"H7291\"* him|strong=\"H3027\"*, caught him|strong=\"H3027\"*, and|strong=\"H3027\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* his|strong=\"H3027\"* thumbs and|strong=\"H3027\"* his|strong=\"H3027\"* big toes|strong=\"H7272\"*." + }, + { + "verseNum": 7, + "text": "Adoni-Bezek said|strong=\"H3651\"*, “Seventy|strong=\"H7657\"* kings|strong=\"H4428\"*, having|strong=\"H1961\"* their|strong=\"H1961\"* thumbs and|strong=\"H4428\"* their|strong=\"H1961\"* big toes|strong=\"H7272\"* cut|strong=\"H7112\"* off|strong=\"H7112\"*, scavenged under|strong=\"H8478\"* my|strong=\"H1961\"* table|strong=\"H7979\"*. As|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* done|strong=\"H6213\"*, so|strong=\"H3651\"* God|strong=\"H7999\"*+ 1:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* has|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H6213\"*.” They|strong=\"H3651\"* brought|strong=\"H6213\"* him|strong=\"H3027\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Jerusalem|strong=\"H3389\"*, took|strong=\"H3920\"* it|strong=\"H5221\"*, struck|strong=\"H5221\"* it|strong=\"H5221\"* with|strong=\"H3898\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* set|strong=\"H7971\"* the|strong=\"H5221\"* city|strong=\"H5892\"* on|strong=\"H7971\"* fire." + }, + { + "verseNum": 9, + "text": "After|strong=\"H3381\"* that|strong=\"H1121\"*, the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3427\"* Canaanites|strong=\"H3669\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3427\"* South|strong=\"H5045\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3427\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 10, + "text": "Judah|strong=\"H3063\"* went|strong=\"H3212\"* against|strong=\"H6440\"* the|strong=\"H6440\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Hebron|strong=\"H2275\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* that|strong=\"H3669\"* was|strong=\"H8034\"* Kiriath Arba.) They|strong=\"H5221\"* struck|strong=\"H5221\"* Sheshai|strong=\"H8344\"*, Ahiman, and|strong=\"H3063\"* Talmai|strong=\"H8526\"*." + }, + { + "verseNum": 11, + "text": "From|strong=\"H6440\"* there|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H3212\"* against|strong=\"H6440\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3427\"* Debir|strong=\"H1688\"* before|strong=\"H6440\"* that|strong=\"H3212\"* was|strong=\"H8034\"* Kiriath Sepher.)" + }, + { + "verseNum": 12, + "text": "Caleb|strong=\"H3612\"* said, “I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* Achsah|strong=\"H5915\"* my|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H5414\"* wife to|strong=\"H5414\"* the|strong=\"H5414\"* man who|strong=\"H1323\"* strikes|strong=\"H5221\"* Kiriath Sepher, and|strong=\"H1323\"* takes|strong=\"H3920\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 13, + "text": "Othniel|strong=\"H6274\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, Caleb|strong=\"H3612\"*’s younger|strong=\"H6996\"* brother, took|strong=\"H3920\"* it|strong=\"H5414\"*, so|strong=\"H4480\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Achsah|strong=\"H5915\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H1121\"* his|strong=\"H5414\"* wife." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* she|strong=\"H5921\"* came|strong=\"H1961\"*, she|strong=\"H5921\"* got him|strong=\"H5921\"* to|strong=\"H1961\"* ask|strong=\"H7592\"* her|strong=\"H5921\"* father for|strong=\"H5921\"* a|strong=\"H3068\"* field|strong=\"H7704\"*. She|strong=\"H5921\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*; and|strong=\"H7704\"* Caleb|strong=\"H3612\"* said to|strong=\"H1961\"* her|strong=\"H5921\"*, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H5921\"* like|strong=\"H1961\"*?”" + }, + { + "verseNum": 15, + "text": "She|strong=\"H3588\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*; because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5414\"* set|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H3588\"* land of|strong=\"H4325\"* the|strong=\"H3588\"* South|strong=\"H5045\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* also|strong=\"H3588\"* springs|strong=\"H1543\"* of|strong=\"H4325\"* water|strong=\"H4325\"*.” Then|strong=\"H5414\"* Caleb|strong=\"H3612\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H3588\"* upper|strong=\"H5942\"* springs|strong=\"H1543\"* and|strong=\"H4325\"* the|strong=\"H3588\"* lower|strong=\"H8482\"* springs|strong=\"H1543\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* Kenite|strong=\"H7017\"*, Moses|strong=\"H4872\"*’ brother-in-law, went|strong=\"H3212\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H1121\"* the|strong=\"H5927\"* city|strong=\"H5892\"* of|strong=\"H1121\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"* with|strong=\"H3427\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* into|strong=\"H5927\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, which|strong=\"H5971\"* is|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H5927\"* south|strong=\"H5045\"* of|strong=\"H1121\"* Arad|strong=\"H6166\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H5927\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "Judah|strong=\"H3063\"* went|strong=\"H3212\"* with|strong=\"H3427\"* Simeon|strong=\"H8095\"* his|strong=\"H7121\"* brother, and|strong=\"H3063\"* they|strong=\"H2763\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* inhabited|strong=\"H3427\"* Zephath|strong=\"H6857\"*, and|strong=\"H3063\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* it|strong=\"H7121\"*. The|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H3427\"* the|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Hormah|strong=\"H2767\"*." + }, + { + "verseNum": 18, + "text": "Also|strong=\"H5804\"* Judah|strong=\"H3063\"* took|strong=\"H3920\"* Gaza|strong=\"H5804\"* with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*, and|strong=\"H3063\"* Ashkelon with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*, and|strong=\"H3063\"* Ekron|strong=\"H6138\"* with|strong=\"H1366\"* its|strong=\"H3920\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* could not|strong=\"H3808\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3588\"* valley|strong=\"H6010\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* chariots|strong=\"H7393\"* of|strong=\"H3068\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H8033\"* gave|strong=\"H5414\"* Hebron|strong=\"H2275\"* to|strong=\"H1696\"* Caleb|strong=\"H3612\"*, as|strong=\"H1121\"* Moses|strong=\"H4872\"* had|strong=\"H4872\"* said|strong=\"H1696\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* drove|strong=\"H3423\"* the|strong=\"H5414\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Anak out|strong=\"H3423\"* of|strong=\"H1121\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* who|strong=\"H1121\"* inhabited|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3808\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* also|strong=\"H1571\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5973\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* sent to|strong=\"H6440\"* spy|strong=\"H8446\"* out|strong=\"H8446\"* Bethel|strong=\"H1008\"*. (The|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"* before|strong=\"H6440\"* that|strong=\"H5892\"* was|strong=\"H8034\"* Luz|strong=\"H3870\"*.)" + }, + { + "verseNum": 24, + "text": "The|strong=\"H7200\"* watchers saw|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H7200\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* they|strong=\"H6213\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “Please|strong=\"H4994\"* show|strong=\"H7200\"* us|strong=\"H4994\"* the|strong=\"H7200\"* entrance|strong=\"H3996\"* into|strong=\"H6213\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* we|strong=\"H3068\"* will|strong=\"H5892\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H3605\"* showed|strong=\"H7200\"* them|strong=\"H7971\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"* into|strong=\"H2719\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H7971\"* they|strong=\"H6310\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; but|strong=\"H7200\"* they|strong=\"H6310\"* let|strong=\"H7971\"* the|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* family|strong=\"H4940\"* go|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3117\"* man|strong=\"H2088\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* the|strong=\"H3117\"* Hittites|strong=\"H2850\"*, built|strong=\"H1129\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H3117\"* called|strong=\"H7121\"* its|strong=\"H5892\"* name|strong=\"H8034\"* Luz|strong=\"H3870\"*, which|strong=\"H1931\"* is|strong=\"H2088\"* its|strong=\"H5892\"* name|strong=\"H8034\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Manasseh|strong=\"H4519\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Beth Shean and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* Taanach|strong=\"H8590\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Ibleam|strong=\"H2991\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H1323\"* Megiddo|strong=\"H4023\"* and|strong=\"H3427\"* its|strong=\"H3808\"* towns|strong=\"H1323\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* that|strong=\"H3669\"* land." + }, + { + "verseNum": 28, + "text": "When|strong=\"H3588\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* grown|strong=\"H1961\"* strong|strong=\"H2388\"*, they|strong=\"H3588\"* put|strong=\"H7760\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"* to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, and|strong=\"H3478\"* didn’t utterly|strong=\"H3423\"* drive|strong=\"H3423\"* them|strong=\"H7760\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 29, + "text": "Ephraim didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"*, but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gezer|strong=\"H1507\"* among|strong=\"H7130\"* them|strong=\"H3423\"*." + }, + { + "verseNum": 30, + "text": "Zebulun|strong=\"H2074\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Kitron|strong=\"H7003\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Nahalol|strong=\"H5096\"*; but|strong=\"H3808\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* them|strong=\"H3423\"*, and|strong=\"H3427\"* became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 31, + "text": "Asher didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Acco|strong=\"H5910\"*, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"*, nor|strong=\"H3808\"* of|strong=\"H3427\"* Ahlab, nor|strong=\"H3808\"* of|strong=\"H3427\"* Achzib, nor|strong=\"H3808\"* of|strong=\"H3427\"* Helbah|strong=\"H2462\"*, nor|strong=\"H3808\"* of|strong=\"H3427\"* Aphik, nor|strong=\"H3808\"* of|strong=\"H3427\"* Rehob|strong=\"H7340\"*;" + }, + { + "verseNum": 32, + "text": "but|strong=\"H3588\"* the|strong=\"H3588\"* Asherites lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H3588\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land|strong=\"H7130\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t drive|strong=\"H3423\"* them|strong=\"H3423\"* out|strong=\"H3423\"*." + }, + { + "verseNum": 33, + "text": "Naphtali|strong=\"H5321\"* didn’t drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Shemesh, nor|strong=\"H3808\"* the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Anath; but|strong=\"H3808\"* he|strong=\"H3808\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H3423\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3423\"* land|strong=\"H7130\"*. Nevertheless the|strong=\"H3423\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Beth Shemesh and|strong=\"H3427\"* of|strong=\"H3427\"* Beth Anath became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3588\"* Amorites forced|strong=\"H3905\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* into|strong=\"H3381\"* the|strong=\"H3588\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* would not|strong=\"H3808\"* allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* valley|strong=\"H6010\"*;" + }, + { + "verseNum": 35, + "text": "but|strong=\"H1961\"* the|strong=\"H1961\"* Amorites would|strong=\"H2974\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Mount|strong=\"H2022\"* Heres|strong=\"H2776\"*, in|strong=\"H3427\"* Aijalon, and|strong=\"H3027\"* in|strong=\"H3427\"* Shaalbim|strong=\"H8169\"*. Yet the|strong=\"H1961\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H1961\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* prevailed|strong=\"H3513\"*, so|strong=\"H1961\"* that|strong=\"H2022\"* they|strong=\"H3027\"* became|strong=\"H1961\"* subject to|strong=\"H1961\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H4605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H4605\"* Amorites was|strong=\"H1366\"* from|strong=\"H1366\"* the|strong=\"H4605\"* ascent|strong=\"H4610\"* of|strong=\"H1366\"* Akrabbim|strong=\"H4610\"*, from|strong=\"H1366\"* the|strong=\"H4605\"* rock|strong=\"H5553\"*, and|strong=\"H4605\"* upward|strong=\"H4605\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* to|strong=\"H3068\"* Bochim|strong=\"H1066\"*. He|strong=\"H3068\"* said, “I|strong=\"H4714\"* brought|strong=\"H5927\"* you|strong=\"H3808\"* out|strong=\"H4480\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3068\"* land which|strong=\"H3068\"* I|strong=\"H4714\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* give|strong=\"H5927\"* your|strong=\"H3068\"* fathers. I|strong=\"H4714\"* said, ‘I|strong=\"H4714\"* will|strong=\"H3068\"* never|strong=\"H3808\"* break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* shall|strong=\"H3808\"* make|strong=\"H6213\"* no|strong=\"H3808\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* land. You|strong=\"H6213\"* shall|strong=\"H3808\"* break|strong=\"H5422\"* down|strong=\"H5422\"* their|strong=\"H8085\"* altars|strong=\"H4196\"*.’ But|strong=\"H3808\"* you|strong=\"H6213\"* have|strong=\"H3808\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6213\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*. Why|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H6213\"* done|strong=\"H6213\"* this|strong=\"H2063\"*?" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3808\"* also|strong=\"H1571\"* said, ‘I|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* drive|strong=\"H1644\"* them|strong=\"H6440\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H6440\"* your|strong=\"H6440\"* sides|strong=\"H6654\"*, and|strong=\"H6440\"* their|strong=\"H6440\"* gods will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* you|strong=\"H6440\"*.’”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H1121\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H8033\"* called|strong=\"H7121\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Bochim|strong=\"H1066\"*,+ 2:5 “Bochim” means “weepers”.* and|strong=\"H3068\"* they|strong=\"H8033\"* sacrificed|strong=\"H2076\"* there|strong=\"H8033\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3478\"* when|strong=\"H7971\"* Joshua|strong=\"H3091\"* had|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3423\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, the|strong=\"H3423\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* each|strong=\"H5971\"* went|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H7971\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* land|strong=\"H5159\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* who|strong=\"H3605\"* outlived Joshua|strong=\"H3091\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* work|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H5971\"* he|strong=\"H3117\"* had|strong=\"H3068\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*, the|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, died|strong=\"H4191\"*, being|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* old|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "They buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H6912\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his|strong=\"H6912\"* inheritance|strong=\"H5159\"* in|strong=\"H6912\"* Timnath Heres, in|strong=\"H6912\"* the|strong=\"H6912\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, on|strong=\"H2022\"* the|strong=\"H6912\"* north|strong=\"H6828\"* of|strong=\"H2022\"* the|strong=\"H6912\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 10, + "text": "After|strong=\"H6965\"* all|strong=\"H3605\"* that|strong=\"H3045\"* generation|strong=\"H1755\"* were|strong=\"H3478\"* gathered|strong=\"H6213\"* to|strong=\"H3478\"* their|strong=\"H3605\"* fathers, another|strong=\"H1571\"* generation|strong=\"H1755\"* arose|strong=\"H6965\"* after|strong=\"H6965\"* them|strong=\"H6213\"* who|strong=\"H3605\"* didn’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* work|strong=\"H4639\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H3068\"* done|strong=\"H6213\"* for|strong=\"H6213\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, who|strong=\"H5971\"* brought|strong=\"H3318\"* them|strong=\"H5439\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* followed|strong=\"H3212\"* other gods, of|strong=\"H3068\"* the|strong=\"H3068\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* around|strong=\"H5439\"* them|strong=\"H5439\"*, and|strong=\"H3068\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H3318\"* them|strong=\"H5439\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3318\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"* and|strong=\"H3068\"* the|strong=\"H5647\"* Ashtaroth|strong=\"H6252\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* he|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* raiders who|strong=\"H3068\"* plundered|strong=\"H8155\"* them|strong=\"H5414\"*. He|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* they|strong=\"H3068\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "Wherever|strong=\"H3605\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H1696\"* them|strong=\"H3027\"* for|strong=\"H3027\"* evil|strong=\"H7451\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*, and|strong=\"H3068\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H1696\"* them|strong=\"H3027\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H1961\"* very|strong=\"H3966\"* distressed|strong=\"H3334\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* judges|strong=\"H8199\"*, who|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* out|strong=\"H6965\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* those|strong=\"H3467\"* who|strong=\"H3068\"* plundered|strong=\"H8154\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "Yet|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1980\"* their|strong=\"H3068\"* judges|strong=\"H8199\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* prostituted|strong=\"H2181\"* themselves|strong=\"H7812\"* to|strong=\"H1980\"* other gods|strong=\"H1980\"*, and|strong=\"H1980\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H1980\"* them|strong=\"H6213\"*. They|strong=\"H3588\"* quickly|strong=\"H4118\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H8085\"* way|strong=\"H1870\"* in|strong=\"H1980\"* which|strong=\"H3068\"* their|strong=\"H3068\"* fathers walked|strong=\"H1980\"*, obeying|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*. They|strong=\"H3588\"* didn’t do|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* judges|strong=\"H8199\"* for|strong=\"H3588\"* them|strong=\"H6440\"*, then|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* the|strong=\"H3605\"* judge|strong=\"H8199\"*, and|strong=\"H6965\"* saved|strong=\"H3467\"* them|strong=\"H6440\"* out|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3605\"* enemies|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* judge|strong=\"H8199\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* grieved Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* their|strong=\"H3605\"* groaning|strong=\"H5009\"* by|strong=\"H3027\"* reason|strong=\"H6440\"* of|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* oppressed|strong=\"H3905\"* them|strong=\"H6440\"* and|strong=\"H6965\"* troubled them|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3808\"* when|strong=\"H1961\"* the|strong=\"H5647\"* judge|strong=\"H8199\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, they|strong=\"H3808\"* turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* dealt more|strong=\"H3808\"* corruptly|strong=\"H7843\"* than|strong=\"H3808\"* their|strong=\"H7725\"* fathers in|strong=\"H4191\"* following|strong=\"H3212\"* other gods to|strong=\"H7725\"* serve|strong=\"H5647\"* them|strong=\"H7725\"* and|strong=\"H7725\"* to|strong=\"H7725\"* bow|strong=\"H7812\"* down|strong=\"H5307\"* to|strong=\"H7725\"* them|strong=\"H7725\"*. They|strong=\"H3808\"* didn’t cease|strong=\"H7725\"* what|strong=\"H1870\"* they|strong=\"H3808\"* were|strong=\"H1961\"* doing|strong=\"H1870\"*, or|strong=\"H3808\"* give|strong=\"H7725\"* up|strong=\"H3212\"* their|strong=\"H7725\"* stubborn|strong=\"H7186\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H5674\"* burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* said|strong=\"H8085\"*, “Because|strong=\"H3282\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* transgressed|strong=\"H5674\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* their|strong=\"H3068\"* fathers, and|strong=\"H3478\"* has|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* also|strong=\"H1571\"* will|strong=\"H1471\"* no|strong=\"H3808\"* longer|strong=\"H3254\"* drive|strong=\"H3423\"* out|strong=\"H3423\"* any|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* Joshua|strong=\"H3091\"* left|strong=\"H5800\"* when|strong=\"H4480\"* he|strong=\"H4480\"* died|strong=\"H4191\"* from|strong=\"H4480\"* before|strong=\"H6440\"* them|strong=\"H6440\"*;" + }, + { + "verseNum": 22, + "text": "that|strong=\"H3068\"* by|strong=\"H3068\"* them|strong=\"H1992\"* I|strong=\"H3808\"* may|strong=\"H3068\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* see if they|strong=\"H1992\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s way|strong=\"H1870\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* therein, as|strong=\"H3068\"* their|strong=\"H3068\"* fathers kept|strong=\"H8104\"* it|strong=\"H3808\"*, or|strong=\"H3808\"* not|strong=\"H3808\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* left|strong=\"H3240\"* those|strong=\"H3240\"* nations|strong=\"H1471\"*, without|strong=\"H3808\"* driving|strong=\"H3423\"* them|strong=\"H5414\"* out|strong=\"H3423\"* hastily|strong=\"H4118\"*. He|strong=\"H3068\"* didn’t deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* Joshua|strong=\"H3091\"*’s hand|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H1471\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* left|strong=\"H3240\"*, to|strong=\"H3478\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"* by|strong=\"H3068\"* them|strong=\"H3068\"*, even|strong=\"H3808\"* as|strong=\"H3068\"* many|strong=\"H3808\"* as|strong=\"H3068\"* had|strong=\"H3068\"* not|strong=\"H3808\"* known|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wars|strong=\"H4421\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*;" + }, + { + "verseNum": 2, + "text": "only|strong=\"H7535\"* that|strong=\"H3045\"* the|strong=\"H6440\"* generations|strong=\"H1755\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* might|strong=\"H4616\"* know|strong=\"H3045\"*, to|strong=\"H3478\"* teach|strong=\"H3925\"* them|strong=\"H6440\"* war|strong=\"H4421\"*, at|strong=\"H3478\"* least those|strong=\"H1121\"* who|strong=\"H1121\"* knew|strong=\"H3045\"* nothing|strong=\"H3808\"* of|strong=\"H1121\"* it|strong=\"H3045\"* before|strong=\"H6440\"*:" + }, + { + "verseNum": 3, + "text": "the|strong=\"H3605\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H3427\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, and|strong=\"H2568\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* on|strong=\"H3427\"* Mount|strong=\"H2022\"* Lebanon|strong=\"H3844\"*, from|strong=\"H5704\"* Mount|strong=\"H2022\"* Baal Hermon to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H3427\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* were|strong=\"H3478\"* left|strong=\"H1961\"* to|strong=\"H3478\"* test|strong=\"H5254\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* them|strong=\"H3027\"*, to|strong=\"H3478\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* they|strong=\"H3068\"* would|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* their|strong=\"H3068\"* fathers by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7130\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* among|strong=\"H7130\"* the|strong=\"H7130\"* Canaanites|strong=\"H3669\"*, the|strong=\"H7130\"* Hittites|strong=\"H2850\"*, the|strong=\"H7130\"* Amorites, the|strong=\"H7130\"* Perizzites|strong=\"H6522\"*, the|strong=\"H7130\"* Hivites|strong=\"H2340\"*, and|strong=\"H1121\"* the|strong=\"H7130\"* Jebusites|strong=\"H2983\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* took|strong=\"H3947\"* their|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* be|strong=\"H1121\"* their|strong=\"H5414\"* wives, and|strong=\"H1121\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* own daughters|strong=\"H1323\"* to|strong=\"H5414\"* their|strong=\"H5414\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* served|strong=\"H5647\"* their|strong=\"H5414\"* gods." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* forgot|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"* and|strong=\"H1121\"* the|strong=\"H6213\"* Asheroth." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H5647\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Cushan Rishathaim king|strong=\"H4428\"* of|strong=\"H1121\"* Mesopotamia; and|strong=\"H1121\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* served|strong=\"H5647\"* Cushan Rishathaim eight|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H1121\"*, even|strong=\"H3068\"* Othniel|strong=\"H6274\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*, Caleb|strong=\"H3612\"*’s younger|strong=\"H6996\"* brother." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* he|strong=\"H3068\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* Cushan Rishathaim king|strong=\"H4428\"* of|strong=\"H4428\"* Mesopotamia into|strong=\"H8199\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*. His|strong=\"H5414\"* hand|strong=\"H3027\"* prevailed|strong=\"H5810\"* against|strong=\"H5921\"* Cushan Rishathaim." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4191\"* land had|strong=\"H1121\"* rest|strong=\"H8252\"* forty years|strong=\"H8141\"*, then|strong=\"H1121\"* Othniel|strong=\"H6274\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* strengthened|strong=\"H2388\"* Eglon|strong=\"H5700\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5221\"* gathered|strong=\"H3478\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Amalek|strong=\"H6002\"* to|strong=\"H3478\"* himself; and|strong=\"H1121\"* he|strong=\"H5221\"* went|strong=\"H3212\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H3478\"* possessed|strong=\"H3423\"* the|strong=\"H5221\"* city|strong=\"H5892\"* of|strong=\"H1121\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* served|strong=\"H5647\"* Eglon|strong=\"H5700\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3068\"* when|strong=\"H7971\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* for|strong=\"H3027\"* them|strong=\"H7971\"*: Ehud the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*, the|strong=\"H3068\"* Benjamite|strong=\"H1145\"*, a|strong=\"H3068\"* left-handed|strong=\"H3225\"* man|strong=\"H1121\"*. The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* tribute|strong=\"H4503\"* by|strong=\"H3027\"* him|strong=\"H7971\"* to|strong=\"H3478\"* Eglon|strong=\"H5700\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 16, + "text": "Ehud made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* which|strong=\"H2719\"* had|strong=\"H3225\"* two|strong=\"H8147\"* edges|strong=\"H6366\"*, a|strong=\"H3068\"* cubit|strong=\"H1574\"*+ 3:16 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* in|strong=\"H5921\"* length|strong=\"H5921\"*; and|strong=\"H2719\"* he|strong=\"H6213\"* wore|strong=\"H5921\"* it|strong=\"H5921\"* under|strong=\"H8478\"* his|strong=\"H5921\"* clothing on|strong=\"H5921\"* his|strong=\"H5921\"* right|strong=\"H3225\"* thigh|strong=\"H3409\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7126\"* offered|strong=\"H7126\"* the|strong=\"H7126\"* tribute|strong=\"H4503\"* to|strong=\"H4428\"* Eglon|strong=\"H5700\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*. Now|strong=\"H4428\"* Eglon|strong=\"H5700\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very|strong=\"H3966\"* fat|strong=\"H1277\"* man." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* Ehud|strong=\"H3615\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H4503\"* the|strong=\"H5375\"* tribute|strong=\"H4503\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* away|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* who|strong=\"H5971\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* himself|strong=\"H1931\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H3605\"* stone idols|strong=\"H6456\"* that|strong=\"H3605\"* were|strong=\"H1697\"* by|strong=\"H5921\"* Gilgal|strong=\"H1537\"*, and|strong=\"H7725\"* said|strong=\"H1697\"*, “I|strong=\"H5921\"* have|strong=\"H1697\"* a|strong=\"H3068\"* secret|strong=\"H5643\"* message|strong=\"H1697\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 20, + "text": "Ehud came|strong=\"H1697\"* to|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H6965\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sitting|strong=\"H3427\"* by|strong=\"H5921\"* himself|strong=\"H1931\"* alone|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cool|strong=\"H4747\"* upper|strong=\"H5944\"* room|strong=\"H5944\"*. Ehud said|strong=\"H1697\"*, “I|strong=\"H5921\"* have|strong=\"H1697\"* a|strong=\"H3068\"* message|strong=\"H1697\"* from|strong=\"H5921\"* God to|strong=\"H5921\"* you|strong=\"H5921\"*.” He|strong=\"H1931\"* arose|strong=\"H6965\"* out|strong=\"H5921\"* of|strong=\"H1697\"* his|strong=\"H5921\"* seat|strong=\"H3678\"*." + }, + { + "verseNum": 21, + "text": "Ehud put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* left|strong=\"H8040\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* from|strong=\"H5921\"* his|strong=\"H7971\"* right|strong=\"H3225\"* thigh|strong=\"H3409\"*, and|strong=\"H7971\"* thrust|strong=\"H8628\"* it|strong=\"H5921\"* into|strong=\"H5921\"* his|strong=\"H7971\"* body|strong=\"H3409\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3588\"* handle|strong=\"H5325\"* also|strong=\"H1571\"* went|strong=\"H3318\"* in|strong=\"H3808\"* after|strong=\"H3588\"* the|strong=\"H3588\"* blade|strong=\"H3851\"*; and|strong=\"H2719\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* closed|strong=\"H5462\"* on|strong=\"H3318\"* the|strong=\"H3588\"* blade|strong=\"H3851\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* didn’t draw|strong=\"H8025\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* out|strong=\"H3318\"* of|strong=\"H3318\"* his|strong=\"H3588\"* body; and|strong=\"H2719\"* it|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* behind|strong=\"H1157\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3318\"* Ehud went|strong=\"H3318\"* out|strong=\"H3318\"* onto the|strong=\"H3318\"* porch|strong=\"H4528\"*, and|strong=\"H3318\"* shut|strong=\"H5462\"* the|strong=\"H3318\"* doors|strong=\"H1817\"* of|strong=\"H3318\"* the|strong=\"H3318\"* upper|strong=\"H5944\"* room|strong=\"H5944\"* on|strong=\"H3318\"* him|strong=\"H3318\"*, and|strong=\"H3318\"* locked|strong=\"H5274\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H7272\"* he|strong=\"H1931\"* had|strong=\"H1817\"* gone|strong=\"H3318\"*, his|strong=\"H7200\"* servants|strong=\"H5650\"* came|strong=\"H3318\"* and|strong=\"H5650\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* the|strong=\"H7200\"* doors|strong=\"H1817\"* of|strong=\"H5650\"* the|strong=\"H7200\"* upper|strong=\"H5944\"* room|strong=\"H2315\"* were|strong=\"H5650\"* locked|strong=\"H5274\"*. They|strong=\"H1931\"* said|strong=\"H3318\"*, “Surely|strong=\"H3318\"* he|strong=\"H1931\"* is|strong=\"H1931\"* covering|strong=\"H5526\"* his|strong=\"H7200\"* feet|strong=\"H7272\"*+ 3:24 or, “relieving himself”.* in|strong=\"H5650\"* the|strong=\"H7200\"* upper|strong=\"H5944\"* room|strong=\"H2315\"*.”" + }, + { + "verseNum": 25, + "text": "They|strong=\"H5704\"* waited|strong=\"H2342\"* until|strong=\"H5704\"* they|strong=\"H5704\"* were|strong=\"H2009\"* ashamed; and|strong=\"H3947\"* behold|strong=\"H2009\"*, he|strong=\"H5704\"* didn’t open|strong=\"H6605\"* the|strong=\"H3947\"* doors|strong=\"H1817\"* of|strong=\"H4191\"* the|strong=\"H3947\"* upper|strong=\"H5944\"* room|strong=\"H5944\"*. Therefore|strong=\"H3947\"* they|strong=\"H5704\"* took|strong=\"H3947\"* the|strong=\"H3947\"* key|strong=\"H4668\"* and|strong=\"H3947\"* opened|strong=\"H6605\"* them|strong=\"H3947\"*, and|strong=\"H3947\"* behold|strong=\"H2009\"*, their|strong=\"H3947\"* lord had|strong=\"H1817\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* dead|strong=\"H4191\"* on|strong=\"H5307\"* the|strong=\"H3947\"* floor." + }, + { + "verseNum": 26, + "text": "Ehud escaped|strong=\"H4422\"* while|strong=\"H5704\"* they|strong=\"H5704\"* waited, passed|strong=\"H5674\"* beyond|strong=\"H5674\"* the|strong=\"H5704\"* stone idols|strong=\"H6456\"*, and|strong=\"H5674\"* escaped|strong=\"H4422\"* to|strong=\"H5704\"* Seirah|strong=\"H8167\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* come|strong=\"H1961\"*, he|strong=\"H1931\"* blew|strong=\"H8628\"* a|strong=\"H3068\"* trumpet|strong=\"H7782\"* in|strong=\"H3478\"* the|strong=\"H6440\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim; and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* him|strong=\"H6440\"* from|strong=\"H4480\"* the|strong=\"H6440\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* led|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3588\"* said to|strong=\"H3381\"* them|strong=\"H5414\"*, “Follow|strong=\"H7291\"* me|strong=\"H5414\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* the|strong=\"H3588\"* Moabites|strong=\"H4124\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.” They|strong=\"H3588\"* followed|strong=\"H7291\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* took|strong=\"H3920\"* the|strong=\"H3588\"* fords|strong=\"H4569\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* against|strong=\"H3027\"* the|strong=\"H3588\"* Moabites|strong=\"H4124\"*, and|strong=\"H3068\"* didn’t allow|strong=\"H5414\"* any|strong=\"H5414\"* man|strong=\"H5674\"* to|strong=\"H3381\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3808\"* struck|strong=\"H5221\"* at|strong=\"H3808\"* that|strong=\"H3605\"* time|strong=\"H6256\"* about|strong=\"H5221\"* ten|strong=\"H6235\"* thousand men|strong=\"H2428\"* of|strong=\"H6256\"* Moab|strong=\"H4124\"*, every|strong=\"H3605\"* strong|strong=\"H2428\"* man|strong=\"H3605\"* and|strong=\"H2428\"* every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H6256\"* valor|strong=\"H2428\"*. No|strong=\"H3808\"* man|strong=\"H3605\"* escaped|strong=\"H4422\"*." + }, + { + "verseNum": 30, + "text": "So|strong=\"H3027\"* Moab|strong=\"H4124\"* was|strong=\"H3478\"* subdued|strong=\"H3665\"* that|strong=\"H3117\"* day|strong=\"H3117\"* under|strong=\"H8478\"* the|strong=\"H3117\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. Then|strong=\"H3117\"* the|strong=\"H3117\"* land had|strong=\"H3478\"* rest|strong=\"H8252\"* eighty|strong=\"H8084\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "After|strong=\"H1961\"* him|strong=\"H5221\"* was|strong=\"H1961\"* Shamgar|strong=\"H8044\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anath|strong=\"H6067\"*, who|strong=\"H1931\"* struck|strong=\"H5221\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* with|strong=\"H3478\"* an|strong=\"H1961\"* ox|strong=\"H1241\"* goad|strong=\"H4451\"*. He|strong=\"H1931\"* also|strong=\"H1571\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, when|strong=\"H6213\"* Ehud was|strong=\"H3068\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Canaan|strong=\"H3667\"*, who|strong=\"H1931\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Hazor|strong=\"H2674\"*; the|strong=\"H3068\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* whose|strong=\"H1471\"* army|strong=\"H6635\"* was|strong=\"H3068\"* Sisera|strong=\"H5516\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Harosheth|strong=\"H2800\"* of|strong=\"H4428\"* the|strong=\"H3068\"* Gentiles|strong=\"H1471\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H6817\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* nine|strong=\"H8672\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*; and|strong=\"H3967\"* he|strong=\"H1931\"* mightily|strong=\"H2394\"* oppressed|strong=\"H3905\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* for|strong=\"H3588\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6256\"* Deborah|strong=\"H1683\"*, a|strong=\"H3068\"* prophetess|strong=\"H5031\"*, the|strong=\"H8199\"* wife of|strong=\"H6256\"* Lappidoth|strong=\"H3941\"*, judged|strong=\"H8199\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H1931\"* lived|strong=\"H3427\"* under|strong=\"H8478\"* Deborah|strong=\"H1683\"*’s palm|strong=\"H8560\"* tree|strong=\"H8560\"* between|strong=\"H3427\"* Ramah|strong=\"H7414\"* and|strong=\"H1121\"* Bethel|strong=\"H1008\"* in|strong=\"H3427\"* the|strong=\"H8478\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim; and|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* her|strong=\"H1931\"* for|strong=\"H8478\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H7121\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* Barak|strong=\"H1301\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam out|strong=\"H7971\"* of|strong=\"H1121\"* Kedesh|strong=\"H6943\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Hasn’t Yahweh|strong=\"H3068\"*, the|strong=\"H3947\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, commanded|strong=\"H6680\"*, ‘Go|strong=\"H3212\"* and|strong=\"H1121\"* lead|strong=\"H3212\"* the|strong=\"H3947\"* way|strong=\"H3212\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*, and|strong=\"H1121\"* take|strong=\"H3947\"* with|strong=\"H5973\"* you|strong=\"H6680\"* ten|strong=\"H6235\"* thousand men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*?" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5414\"* will|strong=\"H6635\"* draw|strong=\"H4900\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"*, Sisera|strong=\"H5516\"*, the|strong=\"H5414\"* captain|strong=\"H8269\"* of|strong=\"H3027\"* Jabin|strong=\"H2985\"*’s army|strong=\"H6635\"*, with|strong=\"H3027\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H3027\"* his|strong=\"H5414\"* multitude|strong=\"H1995\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* will|strong=\"H6635\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 8, + "text": "Barak|strong=\"H1301\"* said to|strong=\"H1980\"* her|strong=\"H1980\"*, “If you|strong=\"H5973\"* will|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, then|strong=\"H1980\"* I|strong=\"H3808\"* will|strong=\"H3808\"* go|strong=\"H1980\"*; but|strong=\"H3808\"* if you|strong=\"H5973\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H1980\"*.”" + }, + { + "verseNum": 9, + "text": "She|strong=\"H3588\"* said, “I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* go|strong=\"H1980\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. Nevertheless|strong=\"H3588\"*, the|strong=\"H5921\"* journey|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* take|strong=\"H1980\"* won’t be|strong=\"H1961\"* for|strong=\"H3588\"* your|strong=\"H3068\"* honor|strong=\"H8597\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* sell|strong=\"H4376\"* Sisera|strong=\"H5516\"* into|strong=\"H1980\"* a|strong=\"H3068\"* woman’s hand|strong=\"H3027\"*.” Deborah|strong=\"H1683\"* arose|strong=\"H6965\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H5973\"* Barak|strong=\"H1301\"* to|strong=\"H1980\"* Kedesh|strong=\"H6943\"*." + }, + { + "verseNum": 10, + "text": "Barak|strong=\"H1301\"* called|strong=\"H2199\"* Zebulun|strong=\"H2074\"* and|strong=\"H5927\"* Naphtali|strong=\"H5321\"* together|strong=\"H2199\"* to|strong=\"H5927\"* Kedesh|strong=\"H6943\"*. Ten|strong=\"H6235\"* thousand men followed|strong=\"H7272\"* him|strong=\"H5973\"*; and|strong=\"H5927\"* Deborah|strong=\"H1683\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "Now Heber|strong=\"H2268\"* the|strong=\"H5704\"* Kenite|strong=\"H7017\"* had|strong=\"H4872\"* separated|strong=\"H6504\"* himself|strong=\"H6504\"* from|strong=\"H1121\"* the|strong=\"H5704\"* Kenites|strong=\"H7017\"*, even|strong=\"H5704\"* from|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hobab|strong=\"H2246\"*, Moses|strong=\"H4872\"*’ brother-in-law, and|strong=\"H1121\"* had|strong=\"H4872\"* pitched|strong=\"H5186\"* his|strong=\"H5186\"* tent as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H5704\"* oak in|strong=\"H1121\"* Zaanannim|strong=\"H6815\"*, which is|strong=\"H1121\"* by|strong=\"H5704\"* Kedesh|strong=\"H6943\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* told|strong=\"H5046\"* Sisera|strong=\"H5516\"* that|strong=\"H3588\"* Barak|strong=\"H1301\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam had|strong=\"H3588\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*." + }, + { + "verseNum": 13, + "text": "Sisera|strong=\"H5516\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, even nine|strong=\"H8672\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* of|strong=\"H5971\"* iron|strong=\"H1270\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, from|strong=\"H1471\"* Harosheth|strong=\"H2800\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Gentiles|strong=\"H1471\"*, to|strong=\"H5971\"* the|strong=\"H3605\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"*." + }, + { + "verseNum": 14, + "text": "Deborah|strong=\"H1683\"* said|strong=\"H3318\"* to|strong=\"H3381\"* Barak|strong=\"H1301\"*, “Go|strong=\"H3318\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6440\"* day|strong=\"H3117\"* in|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* Sisera|strong=\"H5516\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Hasn’t Yahweh|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"*?” So|strong=\"H5414\"* Barak|strong=\"H1301\"* went|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H3318\"* Mount|strong=\"H2022\"* Tabor|strong=\"H8396\"*, and|strong=\"H6965\"* ten|strong=\"H6235\"* thousand men after|strong=\"H3117\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* confused|strong=\"H2000\"* Sisera|strong=\"H5516\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H4264\"*, with|strong=\"H3068\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* Barak|strong=\"H1301\"*. Sisera|strong=\"H5516\"* abandoned his|strong=\"H3605\"* chariot|strong=\"H7393\"* and|strong=\"H3068\"* fled|strong=\"H5127\"* away|strong=\"H5127\"* on|strong=\"H5921\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* Barak|strong=\"H1301\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* the|strong=\"H3605\"* army|strong=\"H4264\"* to|strong=\"H5704\"* Harosheth|strong=\"H2800\"* of|strong=\"H6310\"* the|strong=\"H3605\"* Gentiles|strong=\"H1471\"*; and|strong=\"H7393\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H6310\"* Sisera|strong=\"H5516\"* fell|strong=\"H5307\"* by|strong=\"H5704\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. There|strong=\"H3605\"* was|strong=\"H6310\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* left|strong=\"H7604\"*." + }, + { + "verseNum": 17, + "text": "However|strong=\"H3588\"* Sisera|strong=\"H5516\"* fled|strong=\"H5127\"* away|strong=\"H5127\"* on|strong=\"H1004\"* his|strong=\"H3588\"* feet|strong=\"H7272\"* to|strong=\"H4428\"* the|strong=\"H3588\"* tent of|strong=\"H4428\"* Jael|strong=\"H3278\"* the|strong=\"H3588\"* wife of|strong=\"H4428\"* Heber|strong=\"H2268\"* the|strong=\"H3588\"* Kenite|strong=\"H7017\"*; for|strong=\"H3588\"* there|strong=\"H7965\"* was|strong=\"H4428\"* peace|strong=\"H7965\"* between|strong=\"H7965\"* Jabin|strong=\"H2985\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"* and|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Heber|strong=\"H2268\"* the|strong=\"H3588\"* Kenite|strong=\"H7017\"*." + }, + { + "verseNum": 18, + "text": "Jael|strong=\"H3278\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* Sisera|strong=\"H5516\"*, and|strong=\"H3318\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Turn|strong=\"H5493\"* in|strong=\"H5493\"*, my|strong=\"H3318\"* lord, turn|strong=\"H5493\"* in|strong=\"H5493\"* to|strong=\"H3318\"* me|strong=\"H3318\"*; don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*.” He|strong=\"H3318\"* came|strong=\"H3318\"* in|strong=\"H5493\"* to|strong=\"H3318\"* her|strong=\"H5493\"* into|strong=\"H3318\"* the|strong=\"H3680\"* tent, and|strong=\"H3318\"* she covered|strong=\"H3680\"* him|strong=\"H3318\"* with|strong=\"H3318\"* a|strong=\"H3068\"* rug|strong=\"H8063\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said to|strong=\"H4325\"* her|strong=\"H3680\"*, “Please|strong=\"H4994\"* give|strong=\"H8248\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8248\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am thirsty|strong=\"H6770\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3426\"* said to|strong=\"H1961\"* her|strong=\"H7592\"*, “Stand|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H1961\"* door|strong=\"H6607\"* of|strong=\"H7592\"* the|strong=\"H1961\"* tent, and|strong=\"H5975\"* if|strong=\"H1961\"* any|strong=\"H3426\"* man comes|strong=\"H1961\"* and|strong=\"H5975\"* inquires|strong=\"H7592\"* of|strong=\"H7592\"* you|strong=\"H7592\"*, and|strong=\"H5975\"* says, ‘Is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H3426\"* man here|strong=\"H6311\"*?’ you|strong=\"H7592\"* shall|strong=\"H6607\"* say, ‘No|strong=\"H5975\"*.’”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3947\"* Jael|strong=\"H3278\"*, Heber|strong=\"H2268\"*’s wife, took|strong=\"H3947\"* a|strong=\"H3068\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* a|strong=\"H3068\"* hammer|strong=\"H4718\"* in|strong=\"H4191\"* her|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* went|strong=\"H3027\"* softly|strong=\"H3814\"* to|strong=\"H4191\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* struck the|strong=\"H3947\"* pin|strong=\"H3489\"* into|strong=\"H3027\"* his|strong=\"H7760\"* temples|strong=\"H7541\"*, and|strong=\"H3027\"* it|strong=\"H7760\"* pierced through|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3947\"* ground, for|strong=\"H3027\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H4191\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"*; so|strong=\"H3947\"* he|strong=\"H1931\"* fainted and|strong=\"H3027\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H3318\"* Barak|strong=\"H1301\"* pursued|strong=\"H7291\"* Sisera|strong=\"H5516\"*, Jael|strong=\"H3278\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H7200\"*, and|strong=\"H3212\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H7200\"*, “Come|strong=\"H3318\"*, and|strong=\"H3212\"* I|strong=\"H2009\"* will|strong=\"H5307\"* show|strong=\"H7200\"* you|strong=\"H7200\"* the|strong=\"H7200\"* man|strong=\"H4191\"* whom you|strong=\"H7200\"* seek|strong=\"H1245\"*.” He|strong=\"H3318\"* came|strong=\"H3318\"* to|strong=\"H3318\"* her|strong=\"H7200\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, Sisera|strong=\"H5516\"* lay|strong=\"H5307\"* dead|strong=\"H4191\"*, and|strong=\"H3212\"* the|strong=\"H7200\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"* was|strong=\"H5516\"* in|strong=\"H4191\"* his|strong=\"H7200\"* temples|strong=\"H7541\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1931\"* God subdued|strong=\"H3665\"* Jabin|strong=\"H2985\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* prevailed|strong=\"H7186\"* more|strong=\"H5704\"* and|strong=\"H1121\"* more|strong=\"H5704\"* against|strong=\"H5921\"* Jabin|strong=\"H2985\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*, until|strong=\"H5704\"* they|strong=\"H5921\"* had|strong=\"H3478\"* destroyed|strong=\"H3772\"* Jabin|strong=\"H2985\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3117\"* Deborah|strong=\"H1683\"* and|strong=\"H1121\"* Barak|strong=\"H1301\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abinoam sang|strong=\"H7891\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying," + }, + { + "verseNum": 2, + "text": "“Because|strong=\"H3068\"* the|strong=\"H3068\"* leaders|strong=\"H6546\"* took|strong=\"H3478\"* the|strong=\"H3068\"* lead in|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 3, + "text": "“Hear|strong=\"H8085\"*, you|strong=\"H8085\"* kings|strong=\"H4428\"*!" + }, + { + "verseNum": 4, + "text": "“Yahweh|strong=\"H3068\"*, when|strong=\"H3318\"* you|strong=\"H1571\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Seir|strong=\"H8165\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* mountains|strong=\"H2022\"* quaked|strong=\"H5140\"* at|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s presence|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "“In|strong=\"H1980\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Shamgar|strong=\"H8044\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anath|strong=\"H6067\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5704\"* rulers ceased|strong=\"H2308\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3478\"* chose new|strong=\"H2319\"* gods." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3068\"* heart|strong=\"H3820\"* is|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H3068\"* governors|strong=\"H2710\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 10, + "text": "“Speak|strong=\"H7878\"*, you|strong=\"H5921\"* who|strong=\"H3427\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* white|strong=\"H6715\"* donkeys," + }, + { + "verseNum": 11, + "text": "Far from|strong=\"H3381\"* the|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* archers|strong=\"H2686\"*, in|strong=\"H3478\"* the|strong=\"H3068\"* places|strong=\"H4857\"* of|strong=\"H3068\"* drawing water|strong=\"H4857\"*," + }, + { + "verseNum": 12, + "text": "‘Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*, Deborah|strong=\"H1683\"*!" + }, + { + "verseNum": 13, + "text": "“Then|strong=\"H3068\"* a|strong=\"H3068\"* remnant|strong=\"H8300\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nobles and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"* came|strong=\"H3068\"* down." + }, + { + "verseNum": 14, + "text": "Those|strong=\"H4480\"* whose|strong=\"H1144\"* root|strong=\"H8328\"* is|strong=\"H8328\"* in|strong=\"H5971\"* Amalek|strong=\"H6002\"* came|strong=\"H3381\"* out|strong=\"H4480\"* of|strong=\"H7626\"* Ephraim," + }, + { + "verseNum": 15, + "text": "The|strong=\"H7971\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Issachar|strong=\"H3485\"* were|strong=\"H7272\"* with|strong=\"H5973\"* Deborah|strong=\"H1683\"*." + }, + { + "verseNum": 16, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H4100\"* sit|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H8085\"* sheepfolds|strong=\"H4942\"*?" + }, + { + "verseNum": 17, + "text": "Gilead|strong=\"H1568\"* lived|strong=\"H3427\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 18, + "text": "Zebulun|strong=\"H2074\"* was|strong=\"H5315\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H5971\"* jeopardized their|strong=\"H5921\"* lives|strong=\"H5315\"* to|strong=\"H4191\"* the|strong=\"H5921\"* death|strong=\"H4191\"*;" + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5921\"* kings|strong=\"H4428\"* came|strong=\"H4325\"* and|strong=\"H3701\"* fought|strong=\"H3898\"*," + }, + { + "verseNum": 20, + "text": "From|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* the|strong=\"H4480\"* stars|strong=\"H3556\"* fought|strong=\"H3898\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1869\"* river|strong=\"H5158\"* Kishon|strong=\"H7028\"* swept|strong=\"H1640\"* them|strong=\"H1869\"* away|strong=\"H1640\"*," + }, + { + "verseNum": 22, + "text": "Then the|strong=\"H1986\"* horse|strong=\"H5483\"* hoofs|strong=\"H6119\"* stamped because of|strong=\"H5483\"* the|strong=\"H1986\"* prancing," + }, + { + "verseNum": 23, + "text": "‘Curse Meroz|strong=\"H4789\"*,’ said Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 24, + "text": "“Jael|strong=\"H3278\"* shall be|strong=\"H1288\"* blessed|strong=\"H1288\"* above|strong=\"H1288\"* women," + }, + { + "verseNum": 25, + "text": "He|strong=\"H5414\"* asked|strong=\"H7592\"* for|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 26, + "text": "She put|strong=\"H7971\"* her|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* tent|strong=\"H3489\"* peg|strong=\"H3489\"*," + }, + { + "verseNum": 27, + "text": "At|strong=\"H5307\"* her|strong=\"H7901\"* feet|strong=\"H7272\"* he|strong=\"H8033\"* bowed|strong=\"H3766\"*, he|strong=\"H8033\"* fell|strong=\"H5307\"*, he|strong=\"H8033\"* lay|strong=\"H7901\"*." + }, + { + "verseNum": 28, + "text": "“Through|strong=\"H1157\"* the|strong=\"H1157\"* window|strong=\"H2474\"* she|strong=\"H2474\"* looked|strong=\"H8259\"* out|strong=\"H8259\"*, and|strong=\"H7393\"* cried|strong=\"H2980\"*:" + }, + { + "verseNum": 29, + "text": "Her|strong=\"H7725\"* wise|strong=\"H2450\"* ladies|strong=\"H8282\"* answered|strong=\"H6030\"* her|strong=\"H7725\"*," + }, + { + "verseNum": 30, + "text": "‘Have|strong=\"H4672\"* they|strong=\"H3808\"* not|strong=\"H3808\"* found|strong=\"H4672\"*, have|strong=\"H4672\"* they|strong=\"H3808\"* not|strong=\"H3808\"* divided|strong=\"H2505\"* the|strong=\"H4672\"* plunder|strong=\"H7998\"*?" + }, + { + "verseNum": 31, + "text": "“So|strong=\"H3651\"* let|strong=\"H3651\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies perish, Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, so|strong=\"H6213\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* prevailed|strong=\"H5810\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* the|strong=\"H6440\"* dens|strong=\"H4492\"* which|strong=\"H3478\"* are|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*, the|strong=\"H6440\"* caves|strong=\"H4631\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* strongholds|strong=\"H4679\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"*, when|strong=\"H1961\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* sown|strong=\"H2232\"*, that|strong=\"H3478\"* the|strong=\"H5921\"* Midianites|strong=\"H4080\"*, the|strong=\"H5921\"* Amalekites|strong=\"H6002\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* east|strong=\"H6924\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* destroyed|strong=\"H7843\"* the|strong=\"H5921\"* increase|strong=\"H2981\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth, until|strong=\"H5704\"* you|strong=\"H5921\"* come|strong=\"H3478\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"*. They|strong=\"H3808\"* left|strong=\"H7604\"* no|strong=\"H3808\"* sustenance|strong=\"H4241\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* no|strong=\"H3808\"* sheep|strong=\"H7716\"*, ox|strong=\"H7794\"*, or|strong=\"H3808\"* donkey|strong=\"H2543\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* came|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5927\"* their|strong=\"H1992\"* livestock|strong=\"H4735\"* and|strong=\"H5927\"* their|strong=\"H1992\"* tents. They|strong=\"H1992\"* came|strong=\"H5927\"* in|strong=\"H5927\"* as|strong=\"H7230\"* locusts for|strong=\"H3588\"* multitude|strong=\"H7230\"*. Both|strong=\"H7230\"* they|strong=\"H1992\"* and|strong=\"H5927\"* their|strong=\"H1992\"* camels|strong=\"H1581\"* were|strong=\"H1992\"* without|strong=\"H3588\"* number|strong=\"H4557\"*; and|strong=\"H5927\"* they|strong=\"H1992\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3588\"* land to|strong=\"H5927\"* destroy|strong=\"H7843\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "Israel|strong=\"H3478\"* was|strong=\"H3068\"* brought|strong=\"H1809\"* very|strong=\"H3966\"* low|strong=\"H1809\"* because|strong=\"H6440\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* to|strong=\"H3318\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* he|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* up|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* brought|strong=\"H3318\"* you|strong=\"H7971\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1121\"* bondage|strong=\"H5650\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* out|strong=\"H1644\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Egyptians|strong=\"H4713\"* and|strong=\"H3027\"* out|strong=\"H1644\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* who|strong=\"H3605\"* oppressed|strong=\"H3905\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* drove|strong=\"H1644\"* them|strong=\"H5414\"* out|strong=\"H1644\"* from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* their|strong=\"H3605\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* said|strong=\"H8085\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, “I|strong=\"H3808\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* the|strong=\"H8085\"* gods of|strong=\"H3068\"* the|strong=\"H8085\"* Amorites, in|strong=\"H3427\"* whose land you|strong=\"H3808\"* dwell|strong=\"H3427\"*.” But|strong=\"H3808\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.’”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H3068\"* and|strong=\"H1121\"* sat|strong=\"H3427\"* under|strong=\"H8478\"* the|strong=\"H6440\"* oak which|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3427\"* Ophrah|strong=\"H6084\"*, that|strong=\"H3068\"* belonged to|strong=\"H3068\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* Abiezrite. His|strong=\"H3068\"* son|strong=\"H1121\"* Gideon|strong=\"H1439\"* was|strong=\"H3068\"* beating|strong=\"H2251\"* out|strong=\"H2251\"* wheat|strong=\"H2406\"* in|strong=\"H3427\"* the|strong=\"H6440\"* wine|strong=\"H1660\"* press|strong=\"H1660\"*, to|strong=\"H3068\"* hide|strong=\"H5127\"* it|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Midianites|strong=\"H4080\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7200\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H5973\"*, you|strong=\"H5973\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H3068\"* valor|strong=\"H2428\"*!”" + }, + { + "verseNum": 13, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Oh, my|strong=\"H5414\"* lord|strong=\"H3068\"*, if|strong=\"H3426\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5414\"*, why|strong=\"H4100\"* then|strong=\"H6258\"* has|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2063\"* happened|strong=\"H4672\"* to|strong=\"H3068\"* us|strong=\"H5414\"*? Where|strong=\"H4100\"* are|strong=\"H4100\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wondrous|strong=\"H6381\"* works|strong=\"H6381\"* which|strong=\"H3068\"* our|strong=\"H3068\"* fathers told|strong=\"H5608\"* us|strong=\"H5414\"* of|strong=\"H3068\"*, saying, ‘Didn’t Yahweh|strong=\"H3068\"* bring|strong=\"H5927\"* us|strong=\"H5414\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Egypt|strong=\"H4714\"*?’ But|strong=\"H3808\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cast|strong=\"H5414\"* us|strong=\"H5414\"* off|strong=\"H5203\"*, and|strong=\"H3068\"* delivered|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* looked|strong=\"H6437\"* at|strong=\"H3478\"* him|strong=\"H7971\"*, and|strong=\"H3478\"* said, “Go|strong=\"H3212\"* in|strong=\"H3478\"* this|strong=\"H2088\"* your|strong=\"H3068\"* might|strong=\"H3581\"*, and|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3068\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"*. Haven’t I|strong=\"H2088\"* sent|strong=\"H7971\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H1004\"* said to|strong=\"H3478\"* him, “O|strong=\"H3068\"* Lord,+ 6:15 The word translated “Lord” is “Adonai.”* how|strong=\"H4100\"* shall|strong=\"H3478\"* I|strong=\"H2009\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"*? Behold|strong=\"H2009\"*, my|strong=\"H3467\"* family|strong=\"H1004\"* is|strong=\"H4100\"* the|strong=\"H2009\"* poorest|strong=\"H1800\"* in|strong=\"H3478\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* I|strong=\"H2009\"* am the|strong=\"H2009\"* least|strong=\"H6810\"* in|strong=\"H3478\"* my|strong=\"H3467\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5221\"*, “Surely|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H3588\"* Midianites|strong=\"H4080\"* as|strong=\"H1961\"* one|strong=\"H1961\"* man.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “If now|strong=\"H4994\"* I|strong=\"H4672\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6213\"* sight|strong=\"H5869\"*, then|strong=\"H1696\"* show|strong=\"H6213\"* me|strong=\"H4994\"* a|strong=\"H3068\"* sign that|strong=\"H6213\"* it|strong=\"H6213\"* is|strong=\"H5869\"* you|strong=\"H6213\"* who|strong=\"H4672\"* talk|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H4994\"*." + }, + { + "verseNum": 18, + "text": "Please|strong=\"H4994\"* don’t go|strong=\"H3318\"* away|strong=\"H7725\"* until|strong=\"H5704\"* I|strong=\"H5704\"* come|strong=\"H3318\"* to|strong=\"H5704\"* you|strong=\"H6440\"*, and|strong=\"H7725\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H7725\"* present|strong=\"H4503\"*, and|strong=\"H7725\"* lay|strong=\"H3240\"* it|strong=\"H7725\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 19, + "text": "Gideon|strong=\"H1439\"* went|strong=\"H3318\"* in|strong=\"H6213\"* and|strong=\"H6213\"* prepared|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* and|strong=\"H6213\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"* of|strong=\"H8478\"* an|strong=\"H6213\"* ephah+ 6:19 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H8478\"* meal|strong=\"H7058\"*. He|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* meat|strong=\"H1320\"* in|strong=\"H6213\"* a|strong=\"H3068\"* basket|strong=\"H5536\"* and|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H7760\"* the|strong=\"H6213\"* broth|strong=\"H4839\"* in|strong=\"H6213\"* a|strong=\"H3068\"* pot|strong=\"H6517\"*, and|strong=\"H6213\"* brought|strong=\"H3318\"* it|strong=\"H7760\"* out|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H6213\"* oak, and|strong=\"H6213\"* presented|strong=\"H5066\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3947\"* angel|strong=\"H4397\"* of|strong=\"H4397\"* God said|strong=\"H3651\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “Take|strong=\"H3947\"* the|strong=\"H3947\"* meat|strong=\"H1320\"* and|strong=\"H6213\"* the|strong=\"H3947\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*, and|strong=\"H6213\"* lay|strong=\"H3240\"* them|strong=\"H6213\"* on|strong=\"H6213\"* this|strong=\"H3651\"* rock|strong=\"H5553\"*, and|strong=\"H6213\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* the|strong=\"H3947\"* broth|strong=\"H4839\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3068\"* staff|strong=\"H4938\"* that|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H1980\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H1980\"* touched|strong=\"H5060\"* the|strong=\"H3068\"* meat|strong=\"H1320\"* and|strong=\"H1980\"* the|strong=\"H3068\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*; and|strong=\"H1980\"* fire went|strong=\"H1980\"* up|strong=\"H5927\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rock|strong=\"H6697\"* and|strong=\"H1980\"* consumed the|strong=\"H3068\"* meat|strong=\"H1320\"* and|strong=\"H1980\"* the|strong=\"H3068\"* unleavened|strong=\"H4682\"* cakes|strong=\"H4682\"*. Then|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* departed|strong=\"H1980\"* out|strong=\"H7971\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "Gideon|strong=\"H1439\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*; and|strong=\"H3068\"* Gideon|strong=\"H1439\"* said|strong=\"H3651\"*, “Alas, Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* face|strong=\"H6440\"* to|strong=\"H3068\"* face|strong=\"H6440\"*!”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H4191\"* him|strong=\"H4191\"*, “Peace|strong=\"H7965\"* be|strong=\"H4191\"* to|strong=\"H4191\"* you|strong=\"H3808\"*! Don’t be|strong=\"H4191\"* afraid|strong=\"H3372\"*. You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H2088\"* Gideon|strong=\"H1439\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* it|strong=\"H7121\"* “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* Peace|strong=\"H7965\"*.”+ 6:24 or, Yahweh Shalom* To|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* it|strong=\"H7121\"* is|strong=\"H3068\"* still|strong=\"H5750\"* in|strong=\"H3068\"* Ophrah|strong=\"H6084\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Abiezrites." + }, + { + "verseNum": 25, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Take|strong=\"H3947\"* your|strong=\"H3068\"* father’s bull|strong=\"H6499\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H8141\"*, and|strong=\"H3068\"* throw down|strong=\"H2040\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* Baal|strong=\"H1168\"* that|strong=\"H1931\"* your|strong=\"H3068\"* father has|strong=\"H3068\"*, and|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H2040\"* the|strong=\"H5921\"* Asherah that|strong=\"H1931\"* is|strong=\"H3068\"* by|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H2088\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3068\"* this|strong=\"H2088\"* stronghold|strong=\"H4581\"*, in|strong=\"H5921\"* an|strong=\"H1129\"* orderly|strong=\"H4634\"* way|strong=\"H2088\"*, and|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"*, and|strong=\"H3068\"* offer|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H3068\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Asherah which|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H3772\"*.”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* Gideon|strong=\"H1439\"* took|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H5650\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H3068\"* did|strong=\"H6213\"* as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*. Because|strong=\"H3068\"* he|strong=\"H6213\"* feared|strong=\"H3372\"* his|strong=\"H3068\"* father’s household|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3947\"* men|strong=\"H5650\"* of|strong=\"H1004\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, he|strong=\"H6213\"* could|strong=\"H3915\"* not|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H6213\"* by|strong=\"H3068\"* day|strong=\"H3119\"*, but|strong=\"H1961\"* he|strong=\"H6213\"* did|strong=\"H6213\"* it|strong=\"H6213\"* by|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 28, + "text": "When|strong=\"H5927\"* the|strong=\"H5921\"* men|strong=\"H3772\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H5892\"* Baal|strong=\"H1168\"* was|strong=\"H5892\"* broken|strong=\"H5422\"* down|strong=\"H5422\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* Asherah was|strong=\"H5892\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* that|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* second|strong=\"H8145\"* bull|strong=\"H6499\"* was|strong=\"H5892\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* that|strong=\"H5892\"* was|strong=\"H5892\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H6213\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “Who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3318\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* city|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Joash|strong=\"H3101\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* your|strong=\"H5921\"* son|strong=\"H1121\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1121\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, and|strong=\"H1121\"* because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* cut|strong=\"H3772\"* down|strong=\"H5422\"* the|strong=\"H5921\"* Asherah that|strong=\"H3588\"* was|strong=\"H5892\"* by|strong=\"H5921\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 31, + "text": "Joash|strong=\"H3101\"* said to|strong=\"H5704\"* all|strong=\"H3605\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, “Will|strong=\"H1931\"* you|strong=\"H3588\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* Baal|strong=\"H1168\"*? Or|strong=\"H5704\"* will|strong=\"H1931\"* you|strong=\"H3588\"* save|strong=\"H3467\"* him|strong=\"H5921\"*? He|strong=\"H1931\"* who|strong=\"H3605\"* will|strong=\"H1931\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* him|strong=\"H5921\"*, let him|strong=\"H5921\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H5704\"* death|strong=\"H4191\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*! If|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* god, let him|strong=\"H5921\"* contend|strong=\"H7378\"* for|strong=\"H3588\"* himself|strong=\"H1931\"*, because|strong=\"H3588\"* someone|strong=\"H4191\"* has|strong=\"H3588\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* his|strong=\"H3605\"* altar|strong=\"H4196\"*!”" + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H3588\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* he|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Jerub-Baal|strong=\"H3378\"*,+ 6:32 “Jerub-Baal” means “Let Baal contend”.* saying, “Let Baal|strong=\"H1168\"* contend|strong=\"H7378\"* against|strong=\"H7378\"* him|strong=\"H7121\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3117\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* his|strong=\"H7121\"* altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 33, + "text": "Then|strong=\"H5674\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Midianites|strong=\"H4080\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"* assembled|strong=\"H3605\"* themselves together|strong=\"H3162\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* on|strong=\"H3847\"* Gideon|strong=\"H1439\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* blew|strong=\"H8628\"* a|strong=\"H3068\"* trumpet|strong=\"H7782\"*; and|strong=\"H3068\"* Abiezer was|strong=\"H3068\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H3068\"* follow|strong=\"H3068\"* him|strong=\"H8628\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Manasseh|strong=\"H4519\"*, and|strong=\"H7971\"* they|strong=\"H1931\"* also|strong=\"H1571\"* were|strong=\"H1571\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* to|strong=\"H7971\"* follow him|strong=\"H7971\"*. He|strong=\"H1931\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Asher, to|strong=\"H7971\"* Zebulun|strong=\"H2074\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* Naphtali|strong=\"H5321\"*; and|strong=\"H7971\"* they|strong=\"H1931\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* meet|strong=\"H7125\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 36, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H1696\"* to|strong=\"H1696\"* God|strong=\"H3027\"*, “If|strong=\"H3426\"* you|strong=\"H3027\"* will|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* my|strong=\"H1696\"* hand|strong=\"H3027\"*, as|strong=\"H1696\"* you|strong=\"H3027\"* have|strong=\"H3426\"* spoken|strong=\"H1696\"*," + }, + { + "verseNum": 37, + "text": "behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* put|strong=\"H3322\"* a|strong=\"H3068\"* fleece|strong=\"H1492\"* of|strong=\"H3027\"* wool|strong=\"H6785\"* on|strong=\"H5921\"* the|strong=\"H3605\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*. If|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3027\"* dew|strong=\"H2919\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"* only|strong=\"H3588\"*, and|strong=\"H3478\"* it|strong=\"H5921\"* is|strong=\"H3027\"* dry|strong=\"H2721\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground, then|strong=\"H1961\"* I|strong=\"H3588\"*’ll know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 38, + "text": "It|strong=\"H4393\"* was|strong=\"H1961\"* so|strong=\"H3651\"*; for|strong=\"H4325\"* he|strong=\"H3651\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H1961\"* the|strong=\"H4480\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H7925\"* pressed|strong=\"H1961\"* the|strong=\"H4480\"* fleece|strong=\"H1492\"* together|strong=\"H2115\"*, and|strong=\"H7925\"* wrung the|strong=\"H4480\"* dew|strong=\"H2919\"* out|strong=\"H4480\"* of|strong=\"H4325\"* the|strong=\"H4480\"* fleece|strong=\"H1492\"*, a|strong=\"H3068\"* bowl|strong=\"H5602\"* full|strong=\"H4393\"* of|strong=\"H4325\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 39, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H1696\"* to|strong=\"H1696\"* God, “Don’t let|strong=\"H4994\"* your|strong=\"H3605\"* anger be|strong=\"H1961\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H1961\"* speak|strong=\"H1696\"* but|strong=\"H7535\"* this|strong=\"H1696\"* once|strong=\"H6471\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* make|strong=\"H5254\"* a|strong=\"H3068\"* trial just|strong=\"H3605\"* this|strong=\"H1696\"* once|strong=\"H6471\"* with|strong=\"H1696\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"*. Let|strong=\"H4994\"* it|strong=\"H5921\"* now|strong=\"H4994\"* be|strong=\"H1961\"* dry|strong=\"H2721\"* only|strong=\"H7535\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"*, and|strong=\"H1696\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground let|strong=\"H4994\"* there|strong=\"H1961\"* be|strong=\"H1961\"* dew|strong=\"H2919\"*.”" + }, + { + "verseNum": 40, + "text": "God did|strong=\"H6213\"* so|strong=\"H3651\"* that|strong=\"H3605\"* night|strong=\"H3915\"*; for|strong=\"H5921\"* it|strong=\"H1931\"* was|strong=\"H1961\"* dry|strong=\"H2721\"* on|strong=\"H5921\"* the|strong=\"H3605\"* fleece|strong=\"H1492\"* only|strong=\"H3605\"*, and|strong=\"H3915\"* there|strong=\"H1961\"* was|strong=\"H1961\"* dew|strong=\"H2919\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Jerubbaal|strong=\"H3378\"*, who|strong=\"H3605\"* is|strong=\"H1931\"* Gideon|strong=\"H1439\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H5971\"* encamped|strong=\"H2583\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* spring of|strong=\"H6010\"* Harod|strong=\"H5878\"*. Midian|strong=\"H4080\"*’s camp|strong=\"H4264\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"* side|strong=\"H6828\"* of|strong=\"H6010\"* them|strong=\"H5921\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* hill|strong=\"H1389\"* of|strong=\"H6010\"* Moreh|strong=\"H4176\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Gideon|strong=\"H1439\"*, “The|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H3068\"* you|strong=\"H5414\"* are|strong=\"H5971\"* too|strong=\"H5921\"* many|strong=\"H7227\"* for|strong=\"H5921\"* me|strong=\"H5414\"* to|strong=\"H3478\"* give|strong=\"H5414\"* the|strong=\"H5921\"* Midianites|strong=\"H4080\"* into|strong=\"H5921\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, lest|strong=\"H6435\"* Israel|strong=\"H3478\"* brag|strong=\"H6286\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, saying, ‘My|strong=\"H5414\"* own|strong=\"H5971\"* hand|strong=\"H3027\"* has|strong=\"H3068\"* saved|strong=\"H3467\"* me|strong=\"H5414\"*.’" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* proclaim|strong=\"H7121\"* in|strong=\"H7604\"* the|strong=\"H4480\"* ears of|strong=\"H2022\"* the|strong=\"H4480\"* people|strong=\"H5971\"*, saying, ‘Whoever|strong=\"H4310\"* is|strong=\"H4310\"* fearful|strong=\"H3373\"* and|strong=\"H6242\"* trembling|strong=\"H2730\"*, let|strong=\"H4994\"* him|strong=\"H7121\"* return|strong=\"H7725\"* and|strong=\"H6242\"* depart|strong=\"H6852\"* from|strong=\"H4480\"* Mount|strong=\"H2022\"* Gilead|strong=\"H1568\"*.’” So|strong=\"H4480\"* twenty-two|strong=\"H6242\"* thousand of|strong=\"H2022\"* the|strong=\"H4480\"* people|strong=\"H5971\"* returned|strong=\"H7725\"*, and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand remained|strong=\"H7604\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Gideon|strong=\"H1439\"*, “There|strong=\"H8033\"* are|strong=\"H5971\"* still|strong=\"H5750\"* too|strong=\"H1961\"* many|strong=\"H7227\"* people|strong=\"H5971\"*. Bring|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* test|strong=\"H6884\"* them|strong=\"H3381\"* for|strong=\"H3068\"* you|strong=\"H3605\"* there|strong=\"H8033\"*. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H5971\"* those|strong=\"H3605\"* whom|strong=\"H5971\"* I|strong=\"H2088\"* tell|strong=\"H3605\"* you|strong=\"H3605\"*, ‘This|strong=\"H2088\"* shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*,’ shall|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*; and|strong=\"H3068\"* whoever|strong=\"H3605\"* I|strong=\"H2088\"* tell|strong=\"H3605\"* you|strong=\"H3605\"*, ‘This|strong=\"H2088\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3605\"*,’ shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* he|strong=\"H3068\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3381\"* the|strong=\"H3605\"* water|strong=\"H4325\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* Gideon|strong=\"H1439\"*, “Everyone|strong=\"H3605\"* who|strong=\"H3605\"* laps|strong=\"H3952\"* of|strong=\"H3068\"* the|strong=\"H3605\"* water|strong=\"H4325\"* with|strong=\"H3068\"* his|strong=\"H3605\"* tongue|strong=\"H3956\"*, like|strong=\"H3381\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* laps|strong=\"H3952\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* set|strong=\"H3322\"* him|strong=\"H5921\"* by|strong=\"H5921\"* himself|strong=\"H8354\"*; likewise|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* bows down|strong=\"H3381\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* to|strong=\"H3381\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lapped|strong=\"H3952\"*, putting their|strong=\"H3605\"* hand|strong=\"H3027\"* to|strong=\"H1961\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*, was|strong=\"H1961\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*; but|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H3027\"* the|strong=\"H3605\"* people|strong=\"H5971\"* bowed|strong=\"H3766\"* down|strong=\"H3766\"* on|strong=\"H5921\"* their|strong=\"H3605\"* knees|strong=\"H1290\"* to|strong=\"H1961\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Gideon|strong=\"H1439\"*, “I|strong=\"H5414\"* will|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H5414\"* by|strong=\"H3027\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"* who|strong=\"H3605\"* lapped|strong=\"H3952\"*, and|strong=\"H3967\"* deliver|strong=\"H5414\"* the|strong=\"H3605\"* Midianites|strong=\"H4080\"* into|strong=\"H3212\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Let|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* other|strong=\"H3605\"* people|strong=\"H5971\"* go|strong=\"H3212\"*, each|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5971\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H3947\"* food|strong=\"H6720\"* in|strong=\"H3478\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* trumpets|strong=\"H7782\"*; and|strong=\"H3967\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* their|strong=\"H3605\"* own|strong=\"H1961\"* tents|strong=\"H4264\"*, but|strong=\"H1961\"* retained|strong=\"H2388\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"* was|strong=\"H1961\"* beneath|strong=\"H8478\"* him|strong=\"H7971\"* in|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 9, + "text": "That|strong=\"H3588\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3381\"* him|strong=\"H5414\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "But if you|strong=\"H3381\"* are|strong=\"H5288\"* afraid|strong=\"H3373\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"*, go|strong=\"H3381\"* with|strong=\"H3381\"* Purah|strong=\"H6513\"* your|strong=\"H3381\"* servant|strong=\"H5288\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3373\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H4100\"* will|strong=\"H3027\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* they|strong=\"H4100\"* say|strong=\"H1696\"*; and|strong=\"H3027\"* afterward your|strong=\"H8085\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* strengthened|strong=\"H2388\"* to|strong=\"H1696\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*.” Then|strong=\"H1696\"* went|strong=\"H3381\"* he|strong=\"H1931\"* down|strong=\"H3381\"* with|strong=\"H1696\"* Purah|strong=\"H6513\"* his|strong=\"H8085\"* servant|strong=\"H5288\"* to|strong=\"H1696\"* the|strong=\"H8085\"* outermost part|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8085\"* armed|strong=\"H2571\"* men|strong=\"H5288\"* who|strong=\"H1931\"* were|strong=\"H3027\"* in|strong=\"H8085\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* Midianites|strong=\"H4080\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"* lay|strong=\"H5307\"* along|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* like|strong=\"H1121\"* locusts for|strong=\"H5921\"* multitude|strong=\"H7230\"*; and|strong=\"H1121\"* their|strong=\"H3605\"* camels|strong=\"H1581\"* were|strong=\"H1121\"* without|strong=\"H7230\"* number|strong=\"H4557\"*, as|strong=\"H7230\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H3605\"* on|strong=\"H5921\"* the|strong=\"H3605\"* seashore|strong=\"H3220\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H5704\"* Gideon|strong=\"H1439\"* had|strong=\"H2492\"* come|strong=\"H5307\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1439\"* a|strong=\"H3068\"* man|strong=\"H5307\"* telling|strong=\"H5608\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* to|strong=\"H5704\"* his|strong=\"H5221\"* fellow|strong=\"H7453\"*. He|strong=\"H5704\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H5704\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*; and|strong=\"H3899\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* cake|strong=\"H6742\"* of|strong=\"H4264\"* barley|strong=\"H8184\"* bread|strong=\"H3899\"* tumbled|strong=\"H2015\"* into|strong=\"H2015\"* the|strong=\"H5221\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* Midian|strong=\"H4080\"*, came|strong=\"H2015\"* to|strong=\"H5704\"* the|strong=\"H5221\"* tent, and|strong=\"H3899\"* struck|strong=\"H5221\"* it|strong=\"H5221\"* so|strong=\"H5704\"* that|strong=\"H5307\"* it|strong=\"H5221\"* fell|strong=\"H5307\"*, and|strong=\"H3899\"* turned|strong=\"H2015\"* it|strong=\"H5221\"* upside|strong=\"H4605\"* down|strong=\"H5307\"*, so|strong=\"H5704\"* that|strong=\"H5307\"* the|strong=\"H5221\"* tent lay|strong=\"H5307\"* flat|strong=\"H5307\"*.”" + }, + { + "verseNum": 14, + "text": "His|strong=\"H3605\"* fellow|strong=\"H7453\"* answered|strong=\"H6030\"*, “This|strong=\"H2063\"* is|strong=\"H3027\"* nothing|strong=\"H1115\"* other|strong=\"H7453\"* than|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* Gideon|strong=\"H1439\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. God|strong=\"H5414\"* has|strong=\"H3478\"* delivered|strong=\"H5414\"* Midian|strong=\"H4080\"* into|strong=\"H2719\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*.”" + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, when|strong=\"H3588\"* Gideon|strong=\"H1439\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* telling|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H8085\"* dream|strong=\"H2472\"* and|strong=\"H6965\"* its|strong=\"H5414\"* interpretation|strong=\"H7667\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* worshiped|strong=\"H7812\"*. Then|strong=\"H1961\"* he|strong=\"H3588\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H8085\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* and|strong=\"H6965\"* said|strong=\"H8085\"*, “Arise|strong=\"H6965\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H8085\"* army|strong=\"H4264\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"* into|strong=\"H7725\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*!”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* divided|strong=\"H2673\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men|strong=\"H7218\"* into|strong=\"H8432\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*, and|strong=\"H3967\"* he|strong=\"H3605\"* put|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* all|strong=\"H3605\"* of|strong=\"H3027\"* them|strong=\"H5414\"* trumpets|strong=\"H7782\"* and|strong=\"H3967\"* empty|strong=\"H7386\"* pitchers|strong=\"H3537\"*, with|strong=\"H3027\"* torches|strong=\"H3940\"* within|strong=\"H8432\"* the|strong=\"H3605\"* pitchers|strong=\"H3537\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H1961\"* them|strong=\"H6213\"*, “Watch|strong=\"H7200\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* do|strong=\"H6213\"* likewise|strong=\"H3651\"*. Behold|strong=\"H2009\"*, when|strong=\"H1961\"* I|strong=\"H2009\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H7200\"* outermost part|strong=\"H7097\"* of|strong=\"H4480\"* the|strong=\"H7200\"* camp|strong=\"H4264\"*, it|strong=\"H6213\"* shall|strong=\"H6213\"* be|strong=\"H1961\"* that|strong=\"H7200\"*, as|strong=\"H1961\"* I|strong=\"H2009\"* do|strong=\"H6213\"*, so|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* I|strong=\"H1571\"* blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, I|strong=\"H1571\"* and|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H1571\"*, then|strong=\"H1571\"* blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpets|strong=\"H7782\"* also|strong=\"H1571\"* on|strong=\"H3068\"* every|strong=\"H3605\"* side|strong=\"H5439\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H3068\"* shout, ‘For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* for|strong=\"H3068\"* Gideon|strong=\"H1439\"*!’”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6965\"* Gideon|strong=\"H1439\"* and|strong=\"H3967\"* the|strong=\"H8104\"* hundred|strong=\"H3967\"* men|strong=\"H7218\"* who|strong=\"H8104\"* were|strong=\"H3027\"* with|strong=\"H3027\"* him|strong=\"H3027\"* came to|strong=\"H8104\"* the|strong=\"H8104\"* outermost part|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8104\"* camp|strong=\"H4264\"* in|strong=\"H3027\"* the|strong=\"H8104\"* beginning|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H8104\"* middle|strong=\"H8484\"* watch|strong=\"H8104\"*, when|strong=\"H8628\"* they|strong=\"H3027\"* had|strong=\"H3027\"* but newly|strong=\"H6965\"* set|strong=\"H6965\"* the|strong=\"H8104\"* watch|strong=\"H8104\"*. Then|strong=\"H6965\"* they|strong=\"H3027\"* blew|strong=\"H8628\"* the|strong=\"H8104\"* trumpets|strong=\"H7782\"* and|strong=\"H3967\"* broke in|strong=\"H3027\"* pieces|strong=\"H5310\"* the|strong=\"H8104\"* pitchers|strong=\"H3537\"* that|strong=\"H3027\"* were|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H8104\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3068\"* three|strong=\"H7969\"* companies|strong=\"H7218\"* blew|strong=\"H8628\"* the|strong=\"H3068\"* trumpets|strong=\"H7782\"*, broke|strong=\"H7665\"* the|strong=\"H3068\"* pitchers|strong=\"H3537\"*, and|strong=\"H3068\"* held|strong=\"H2388\"* the|strong=\"H3068\"* torches|strong=\"H3940\"* in|strong=\"H3068\"* their|strong=\"H3068\"* left|strong=\"H8040\"* hands|strong=\"H3027\"* and|strong=\"H3068\"* the|strong=\"H3068\"* trumpets|strong=\"H7782\"* in|strong=\"H3068\"* their|strong=\"H3068\"* right|strong=\"H3225\"* hands|strong=\"H3027\"* with|strong=\"H3068\"* which|strong=\"H3068\"* to|strong=\"H3068\"* blow|strong=\"H8628\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* shouted|strong=\"H7121\"*, “The|strong=\"H3068\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* of|strong=\"H3068\"* Gideon|strong=\"H1439\"*!”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H7323\"* each|strong=\"H3605\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* his|strong=\"H3605\"* place|strong=\"H8478\"* around|strong=\"H5439\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, and|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* ran|strong=\"H7323\"*; and|strong=\"H5975\"* they|strong=\"H7323\"* shouted|strong=\"H7321\"*, and|strong=\"H5975\"* put|strong=\"H5127\"* them|strong=\"H5975\"* to|strong=\"H5127\"* flight|strong=\"H5127\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3068\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* trumpets|strong=\"H7782\"*, and|strong=\"H3967\"* Yahweh|strong=\"H3068\"* set|strong=\"H7760\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s sword|strong=\"H2719\"* against|strong=\"H5921\"* his|strong=\"H3605\"* fellow|strong=\"H7453\"* and|strong=\"H3967\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* army|strong=\"H4264\"* fled|strong=\"H5127\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Shittah toward|strong=\"H5921\"* Zererah|strong=\"H6888\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H8193\"* of|strong=\"H3068\"* Abel Meholah, by|strong=\"H5921\"* Tabbath|strong=\"H2888\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* out|strong=\"H4480\"* of|strong=\"H4480\"* Naphtali|strong=\"H5321\"*, out|strong=\"H4480\"* of|strong=\"H4480\"* Asher, and|strong=\"H3478\"* out|strong=\"H4480\"* of|strong=\"H4480\"* all|strong=\"H3605\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* pursued|strong=\"H7291\"* Midian|strong=\"H4080\"*." + }, + { + "verseNum": 24, + "text": "Gideon|strong=\"H1439\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, saying, “Come|strong=\"H3381\"* down|strong=\"H3381\"* against|strong=\"H7125\"* Midian|strong=\"H4080\"* and|strong=\"H7971\"* take|strong=\"H3920\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* before|strong=\"H5704\"* them|strong=\"H7971\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Barah, even|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*!” So|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H2022\"* Ephraim were|strong=\"H4325\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* and|strong=\"H7971\"* took|strong=\"H3920\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Beth Barah, even|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3920\"* took|strong=\"H3920\"* the|strong=\"H5676\"* two|strong=\"H8147\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Midian|strong=\"H4080\"*, Oreb|strong=\"H6159\"* and|strong=\"H7218\"* Zeeb|strong=\"H2062\"*. They|strong=\"H3920\"* killed|strong=\"H2026\"* Oreb|strong=\"H6159\"* at|strong=\"H3383\"* Oreb|strong=\"H6159\"*’s rock|strong=\"H6697\"*, and|strong=\"H7218\"* Zeeb|strong=\"H2062\"* they|strong=\"H3920\"* killed|strong=\"H2026\"* at|strong=\"H3383\"* Zeeb|strong=\"H2062\"*’s wine|strong=\"H3342\"* press|strong=\"H3342\"*, as|strong=\"H4080\"* they|strong=\"H3920\"* pursued|strong=\"H7291\"* Midian|strong=\"H4080\"*. Then|strong=\"H7218\"* they|strong=\"H3920\"* brought the|strong=\"H5676\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* Oreb|strong=\"H6159\"* and|strong=\"H7218\"* Zeeb|strong=\"H2062\"* to|strong=\"H3383\"* Gideon|strong=\"H1439\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* Jordan|strong=\"H3383\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* men|strong=\"H1980\"* of|strong=\"H1697\"* Ephraim said|strong=\"H1697\"* to|strong=\"H1980\"* him|strong=\"H7121\"*, “Why|strong=\"H4100\"* have|strong=\"H1697\"* you|strong=\"H3588\"* treated|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2088\"* way|strong=\"H1697\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* didn’t call|strong=\"H7121\"* us|strong=\"H6213\"* when|strong=\"H3588\"* you|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* fight|strong=\"H3898\"* with|strong=\"H1980\"* Midian|strong=\"H4080\"*?” They|strong=\"H3588\"* rebuked|strong=\"H7378\"* him|strong=\"H7121\"* sharply|strong=\"H2394\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* have|strong=\"H6258\"* I|strong=\"H6258\"* now|strong=\"H6258\"* done|strong=\"H6213\"* in|strong=\"H6213\"* comparison with|strong=\"H6213\"* you|strong=\"H6213\"*? Isn’t the|strong=\"H6213\"* gleaning|strong=\"H5955\"* of|strong=\"H6213\"* the|strong=\"H6213\"* grapes|strong=\"H5955\"* of|strong=\"H6213\"* Ephraim better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H6213\"* vintage|strong=\"H1210\"* of|strong=\"H6213\"* Abiezer?" + }, + { + "verseNum": 3, + "text": "God|strong=\"H5414\"* has|strong=\"H4100\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"*, Oreb|strong=\"H6159\"* and|strong=\"H3027\"* Zeeb|strong=\"H2062\"*! What|strong=\"H4100\"* was|strong=\"H1697\"* I|strong=\"H5414\"* able|strong=\"H3201\"* to|strong=\"H1696\"* do|strong=\"H6213\"* in|strong=\"H5921\"* comparison with|strong=\"H6213\"* you|strong=\"H5414\"*?” Then|strong=\"H1696\"* their|strong=\"H5414\"* anger|strong=\"H7307\"* was|strong=\"H1697\"* abated|strong=\"H7503\"* toward|strong=\"H5921\"* him|strong=\"H5414\"* when|strong=\"H1696\"* he|strong=\"H6213\"* had|strong=\"H5414\"* said|strong=\"H1696\"* that|strong=\"H1697\"*." + }, + { + "verseNum": 4, + "text": "Gideon|strong=\"H1439\"* came|strong=\"H5674\"* to|strong=\"H5674\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"* and|strong=\"H3967\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5674\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men who|strong=\"H1931\"* were|strong=\"H7291\"* with|strong=\"H5674\"* him|strong=\"H1931\"*, faint|strong=\"H5889\"*, yet|strong=\"H5889\"* pursuing|strong=\"H7291\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* said to|strong=\"H5414\"* the|strong=\"H3588\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Succoth|strong=\"H5523\"*, “Please|strong=\"H4994\"* give|strong=\"H5414\"* loaves|strong=\"H3899\"* of|strong=\"H4428\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H5971\"* follow|strong=\"H7291\"* me|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* faint|strong=\"H5889\"*, and|strong=\"H4428\"* I|strong=\"H3588\"* am pursuing|strong=\"H7291\"* after|strong=\"H7291\"* Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"*, the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* Succoth|strong=\"H5523\"* said, “Are|strong=\"H3027\"* the|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"* now|strong=\"H6258\"* in|strong=\"H6635\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* give|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* your|strong=\"H5414\"* army|strong=\"H6635\"*?”" + }, + { + "verseNum": 7, + "text": "Gideon|strong=\"H1439\"* said|strong=\"H3651\"*, “Therefore|strong=\"H3651\"* when|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* Zebah|strong=\"H2078\"* and|strong=\"H3068\"* Zalmunna|strong=\"H6759\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, then|strong=\"H3651\"* I|strong=\"H5414\"* will|strong=\"H3068\"* tear|strong=\"H1758\"* your|strong=\"H3068\"* flesh|strong=\"H1320\"* with|strong=\"H3068\"* the|strong=\"H5414\"* thorns|strong=\"H6975\"* of|strong=\"H3068\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"* and|strong=\"H3068\"* with|strong=\"H3068\"* briers|strong=\"H1303\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8033\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H1696\"* Penuel|strong=\"H6439\"*, and|strong=\"H6030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5927\"* in|strong=\"H1696\"* the|strong=\"H5927\"* same|strong=\"H2063\"* way|strong=\"H2063\"*; and|strong=\"H6030\"* the|strong=\"H5927\"* men of|strong=\"H1696\"* Penuel|strong=\"H6439\"* answered|strong=\"H6030\"* him|strong=\"H6030\"* as|strong=\"H5927\"* the|strong=\"H5927\"* men of|strong=\"H1696\"* Succoth|strong=\"H5523\"* had|strong=\"H5523\"* answered|strong=\"H6030\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H2088\"* spoke also|strong=\"H1571\"* to|strong=\"H7725\"* the|strong=\"H7725\"* men of|strong=\"H4026\"* Penuel|strong=\"H6439\"*, saying, “When|strong=\"H7725\"* I|strong=\"H2088\"* come|strong=\"H7725\"* again|strong=\"H7725\"* in|strong=\"H7725\"* peace|strong=\"H7965\"*, I|strong=\"H2088\"* will|strong=\"H1571\"* break|strong=\"H5422\"* down|strong=\"H5422\"* this|strong=\"H2088\"* tower|strong=\"H4026\"*.”" + }, + { + "verseNum": 10, + "text": "Now Zebah|strong=\"H2078\"* and|strong=\"H3967\"* Zalmunna|strong=\"H6759\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Karkor|strong=\"H7174\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* with|strong=\"H5973\"* them|strong=\"H5307\"*, about|strong=\"H3605\"* fifteen|strong=\"H2568\"* thousand men|strong=\"H1121\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* left|strong=\"H3498\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"*; for|strong=\"H1121\"* there|strong=\"H3605\"* fell|strong=\"H5307\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand men|strong=\"H1121\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 11, + "text": "Gideon|strong=\"H1439\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H5221\"* way|strong=\"H1870\"* of|strong=\"H1870\"* those|strong=\"H1961\"* who|strong=\"H5221\"* lived|strong=\"H7931\"* in|strong=\"H7931\"* tents|strong=\"H4264\"* on|strong=\"H1870\"* the|strong=\"H5221\"* east|strong=\"H6924\"* of|strong=\"H1870\"* Nobah|strong=\"H5025\"* and|strong=\"H1870\"* Jogbehah|strong=\"H3011\"*, and|strong=\"H1870\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* army|strong=\"H4264\"*; for|strong=\"H1961\"* the|strong=\"H5221\"* army|strong=\"H4264\"* felt secure." + }, + { + "verseNum": 12, + "text": "Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"* fled|strong=\"H5127\"* and|strong=\"H4428\"* he|strong=\"H3605\"* pursued|strong=\"H7291\"* them|strong=\"H8147\"*. He|strong=\"H3605\"* took|strong=\"H3920\"* the|strong=\"H3605\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, Zebah|strong=\"H2078\"* and|strong=\"H4428\"* Zalmunna|strong=\"H6759\"*, and|strong=\"H4428\"* confused all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H4264\"*." + }, + { + "verseNum": 13, + "text": "Gideon|strong=\"H1439\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* returned|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* battle|strong=\"H4421\"* from|strong=\"H4480\"* the|strong=\"H4480\"* ascent|strong=\"H4608\"* of|strong=\"H1121\"* Heres." + }, + { + "verseNum": 14, + "text": "He|strong=\"H2205\"* caught|strong=\"H3920\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H3920\"* men|strong=\"H5288\"* of|strong=\"H8269\"* Succoth|strong=\"H5523\"*, and|strong=\"H5288\"* inquired|strong=\"H7592\"* of|strong=\"H8269\"* him|strong=\"H7592\"*; and|strong=\"H5288\"* he|strong=\"H2205\"* described|strong=\"H3789\"* for|strong=\"H7592\"* him|strong=\"H7592\"* the|strong=\"H3920\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Succoth|strong=\"H5523\"*, and|strong=\"H5288\"* its|strong=\"H3920\"* elders|strong=\"H2205\"*, seventy-seven|strong=\"H7657\"* men|strong=\"H5288\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* came to|strong=\"H5414\"* the|strong=\"H3588\"* men of|strong=\"H3027\"* Succoth|strong=\"H5523\"*, and|strong=\"H3027\"* said, “See|strong=\"H2009\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"*, concerning whom|strong=\"H3588\"* you|strong=\"H3588\"* taunted|strong=\"H2778\"* me|strong=\"H5414\"*, saying, ‘Are|strong=\"H3027\"* the|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* Zebah|strong=\"H2078\"* and|strong=\"H3027\"* Zalmunna|strong=\"H6759\"* now|strong=\"H6258\"* in|strong=\"H3899\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* give|strong=\"H5414\"* bread|strong=\"H3899\"* to|strong=\"H5414\"* your|strong=\"H5414\"* men who|strong=\"H3588\"* are|strong=\"H3027\"* weary|strong=\"H3286\"*?’”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5892\"* took|strong=\"H3947\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* thorns|strong=\"H6975\"* of|strong=\"H5892\"* the|strong=\"H3947\"* wilderness|strong=\"H4057\"* and|strong=\"H5892\"* briers|strong=\"H1303\"*, and|strong=\"H5892\"* with|strong=\"H3045\"* them|strong=\"H3947\"* he|strong=\"H5892\"* taught|strong=\"H3045\"* the|strong=\"H3947\"* men|strong=\"H2205\"* of|strong=\"H5892\"* Succoth|strong=\"H5523\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5892\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H2026\"* tower|strong=\"H4026\"* of|strong=\"H5892\"* Penuel|strong=\"H6439\"*, and|strong=\"H5892\"* killed|strong=\"H2026\"* the|strong=\"H2026\"* men of|strong=\"H5892\"* the|strong=\"H2026\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* he|strong=\"H4428\"* said to|strong=\"H1121\"* Zebah|strong=\"H2078\"* and|strong=\"H1121\"* Zalmunna|strong=\"H6759\"*, “What kind of|strong=\"H1121\"* men|strong=\"H1121\"* were|strong=\"H1121\"* they|strong=\"H4428\"* whom you|strong=\"H3644\"* killed|strong=\"H2026\"* at|strong=\"H4428\"* Tabor|strong=\"H8396\"*?”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* said, “They|strong=\"H1992\"* were|strong=\"H1121\"* my|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3068\"* mother. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, if|strong=\"H3863\"* you|strong=\"H3808\"* had|strong=\"H3068\"* saved|strong=\"H2421\"* them|strong=\"H1992\"* alive|strong=\"H2416\"*, I|strong=\"H3808\"* would|strong=\"H3068\"* not|strong=\"H3808\"* kill|strong=\"H2026\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* said to|strong=\"H6965\"* Jether|strong=\"H3500\"* his|strong=\"H6965\"* firstborn|strong=\"H1060\"*, “Get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* kill|strong=\"H2026\"* them|strong=\"H2026\"*!” But|strong=\"H3588\"* the|strong=\"H3588\"* youth|strong=\"H5288\"* didn’t draw|strong=\"H8025\"* his|strong=\"H6965\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H5288\"* afraid|strong=\"H3372\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H5288\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* youth|strong=\"H5288\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6965\"* Zebah|strong=\"H2078\"* and|strong=\"H6965\"* Zalmunna|strong=\"H6759\"* said, “You|strong=\"H3588\"* rise|strong=\"H6965\"* and|strong=\"H6965\"* fall|strong=\"H6293\"* on|strong=\"H6965\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* man is|strong=\"H3588\"*, so|strong=\"H3947\"* is|strong=\"H3588\"* his|strong=\"H3947\"* strength|strong=\"H1369\"*.” Gideon|strong=\"H1439\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* killed|strong=\"H2026\"* Zebah|strong=\"H2078\"* and|strong=\"H6965\"* Zalmunna|strong=\"H6759\"*, and|strong=\"H6965\"* took|strong=\"H3947\"* the|strong=\"H3588\"* crescents that|strong=\"H3588\"* were|strong=\"H1581\"* on|strong=\"H6965\"* their|strong=\"H3947\"* camels|strong=\"H1581\"*’ necks|strong=\"H6677\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1571\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Gideon|strong=\"H1439\"*, “Rule|strong=\"H4910\"* over|strong=\"H3027\"* us|strong=\"H3588\"*, both|strong=\"H1571\"* you|strong=\"H3588\"*, your|strong=\"H3588\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"* also|strong=\"H1571\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* saved|strong=\"H3467\"* us|strong=\"H3588\"* out|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*.”" + }, + { + "verseNum": 23, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H3068\"* them|strong=\"H1121\"*, “I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* my|strong=\"H3068\"* son|strong=\"H1121\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*. Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3808\"*.”" + }, + { + "verseNum": 24, + "text": "Gideon|strong=\"H1439\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “I|strong=\"H3588\"* do have|strong=\"H5414\"* a|strong=\"H3068\"* request|strong=\"H7596\"*: that|strong=\"H3588\"* you|strong=\"H3588\"* would each|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H3588\"* earrings|strong=\"H5141\"* of|strong=\"H4480\"* his|strong=\"H5414\"* plunder|strong=\"H7998\"*.” (For|strong=\"H3588\"* they|strong=\"H1992\"* had|strong=\"H3588\"* golden|strong=\"H2091\"* earrings|strong=\"H5141\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* Ishmaelites|strong=\"H3459\"*.)" + }, + { + "verseNum": 25, + "text": "They|strong=\"H8033\"* answered, “We|strong=\"H8033\"* will|strong=\"H5414\"* willingly|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*.” They|strong=\"H8033\"* spread|strong=\"H6566\"* a|strong=\"H3068\"* garment|strong=\"H8071\"*, and|strong=\"H8033\"* every|strong=\"H5414\"* man threw|strong=\"H7993\"* the|strong=\"H5414\"* earrings|strong=\"H5141\"* of|strong=\"H7998\"* his|strong=\"H5414\"* plunder|strong=\"H7998\"* into|strong=\"H7993\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* weight|strong=\"H4948\"* of|strong=\"H4428\"* the|strong=\"H5921\"* golden|strong=\"H2091\"* earrings|strong=\"H5141\"* that|strong=\"H4428\"* he|strong=\"H4480\"* requested|strong=\"H7592\"* was|strong=\"H1961\"* one|strong=\"H4480\"* thousand and|strong=\"H3967\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* shekels|strong=\"H4948\"*+ 8:26 A shekel is about 10 grams or about 0.32 Troy ounces, so 1700 shekels is about 17 kilograms or 37.4 pounds.* of|strong=\"H4428\"* gold|strong=\"H2091\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* crescents, and|strong=\"H3967\"* the|strong=\"H5921\"* pendants|strong=\"H5188\"*, and|strong=\"H3967\"* the|strong=\"H5921\"* purple clothing that|strong=\"H4428\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"*, and|strong=\"H3967\"* in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* chains|strong=\"H6060\"* that|strong=\"H4428\"* were|strong=\"H1961\"* about|strong=\"H1961\"* their|strong=\"H5921\"* camels|strong=\"H1581\"*’ necks|strong=\"H6677\"*." + }, + { + "verseNum": 27, + "text": "Gideon|strong=\"H1439\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ephod out|strong=\"H6213\"* of|strong=\"H1004\"* it|strong=\"H6213\"*, and|strong=\"H3478\"* put|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H3478\"* Ophrah|strong=\"H6084\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*. Then|strong=\"H1961\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H1004\"* it|strong=\"H6213\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H3478\"* Gideon|strong=\"H1439\"* and|strong=\"H3478\"* to|strong=\"H3478\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H3808\"* Midian|strong=\"H4080\"* was|strong=\"H3478\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* they|strong=\"H3117\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* heads|strong=\"H7218\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H6440\"* land|strong=\"H6440\"* had|strong=\"H3478\"* rest|strong=\"H8252\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Gideon|strong=\"H1439\"*." + }, + { + "verseNum": 29, + "text": "Jerubbaal|strong=\"H3378\"* the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* went|strong=\"H3212\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3101\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Gideon|strong=\"H1439\"* had|strong=\"H1961\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* conceived from|strong=\"H3318\"* his|strong=\"H1961\"* body|strong=\"H3409\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* many|strong=\"H7227\"* wives." + }, + { + "verseNum": 31, + "text": "His|strong=\"H7760\"* concubine|strong=\"H6370\"* who|strong=\"H1931\"* was|strong=\"H8034\"* in|strong=\"H1121\"* Shechem|strong=\"H7927\"* also|strong=\"H1571\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* named|strong=\"H8034\"* him|strong=\"H3205\"* Abimelech." + }, + { + "verseNum": 32, + "text": "Gideon|strong=\"H1439\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* died|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H1121\"* age|strong=\"H7872\"*, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H4191\"* the|strong=\"H4191\"* tomb|strong=\"H6913\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* his|strong=\"H6912\"* father|strong=\"H1121\"*, in|strong=\"H4191\"* Ophrah|strong=\"H6084\"* of|strong=\"H1121\"* the|strong=\"H4191\"* Abiezrites." + }, + { + "verseNum": 33, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* Gideon|strong=\"H1439\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H7725\"* prostitute|strong=\"H2181\"* following the|strong=\"H7725\"* Baals|strong=\"H1168\"*, and|strong=\"H1121\"* made|strong=\"H7760\"* Baal|strong=\"H1168\"* Berith their|strong=\"H7760\"* god." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* delivered|strong=\"H5337\"* them|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"* on|strong=\"H3027\"* every|strong=\"H3605\"* side|strong=\"H5439\"*;" + }, + { + "verseNum": 35, + "text": "neither|strong=\"H3808\"* did|strong=\"H6213\"* they|strong=\"H3808\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jerubbaal|strong=\"H3378\"*, that|strong=\"H3605\"* is|strong=\"H2617\"*, Gideon|strong=\"H1439\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* which|strong=\"H1004\"* he|strong=\"H6213\"* had|strong=\"H3478\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Abimelech the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Shechem|strong=\"H7927\"* to|strong=\"H1696\"* his|strong=\"H3605\"* mother’s brothers|strong=\"H1121\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* with|strong=\"H1004\"* them|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* his|strong=\"H3605\"* mother’s father|strong=\"H1121\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "“Please|strong=\"H4994\"* speak|strong=\"H1696\"* in|strong=\"H1320\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, ‘Is|strong=\"H4100\"* it|strong=\"H3588\"* better|strong=\"H2896\"* for|strong=\"H3588\"* you|strong=\"H3588\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*, who|strong=\"H3605\"* are|strong=\"H1121\"* seventy|strong=\"H7657\"* persons, rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*, or|strong=\"H1121\"* that|strong=\"H3588\"* one|strong=\"H3605\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* you|strong=\"H3588\"*?’ Remember|strong=\"H2142\"* also|strong=\"H1121\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H1121\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*.”" + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* mother’s brothers spoke|strong=\"H1696\"* of|strong=\"H1697\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1697\"* Shechem|strong=\"H7927\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*. Their|strong=\"H3605\"* hearts|strong=\"H3820\"* inclined|strong=\"H5186\"* to|strong=\"H1696\"* follow Abimelech; for|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1696\"*, “He|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H3605\"* brother.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* seventy|strong=\"H7657\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"* out|strong=\"H5414\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal Berith, with|strong=\"H1004\"* which|strong=\"H1004\"* Abimelech hired|strong=\"H7936\"* vain|strong=\"H7386\"* and|strong=\"H3701\"* reckless|strong=\"H6348\"* fellows|strong=\"H7386\"* who followed|strong=\"H3212\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* went|strong=\"H1121\"* to|strong=\"H5921\"* his|strong=\"H5921\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Ophrah|strong=\"H6084\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*, being|strong=\"H1004\"* seventy|strong=\"H7657\"* persons, on|strong=\"H5921\"* one|strong=\"H1121\"* stone; but|strong=\"H3588\"* Jotham|strong=\"H3147\"* the|strong=\"H5921\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* was|strong=\"H1004\"* left|strong=\"H3498\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* hid|strong=\"H2244\"* himself." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H4428\"* Shechem|strong=\"H7927\"* assembled|strong=\"H3605\"* themselves together|strong=\"H5973\"* with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Millo|strong=\"H4407\"*, and|strong=\"H4428\"* went|strong=\"H3212\"* and|strong=\"H4428\"* made|strong=\"H4427\"* Abimelech king|strong=\"H4428\"* by|strong=\"H5973\"* the|strong=\"H3605\"* oak of|strong=\"H4428\"* the|strong=\"H3605\"* pillar|strong=\"H5324\"* that|strong=\"H3605\"* was|strong=\"H4428\"* in|strong=\"H1004\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H8085\"* they|strong=\"H5375\"* told|strong=\"H5046\"* it|strong=\"H7121\"* to|strong=\"H3212\"* Jotham|strong=\"H3147\"*, he|strong=\"H7121\"* went|strong=\"H3212\"* and|strong=\"H3212\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H8085\"* top|strong=\"H7218\"* of|strong=\"H2022\"* Mount|strong=\"H2022\"* Gerizim|strong=\"H1630\"* and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* voice|strong=\"H6963\"*, cried|strong=\"H7121\"* out|strong=\"H3212\"*, and|strong=\"H3212\"* said|strong=\"H7121\"* to|strong=\"H3212\"* them|strong=\"H7121\"*, “Listen|strong=\"H8085\"* to|strong=\"H3212\"* me|strong=\"H5046\"*, you|strong=\"H5046\"* men|strong=\"H1167\"* of|strong=\"H2022\"* Shechem|strong=\"H7927\"*, that|strong=\"H8085\"* God may|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3212\"* you|strong=\"H5046\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* trees|strong=\"H6086\"* set|strong=\"H4427\"* out|strong=\"H5921\"* to|strong=\"H1980\"* anoint|strong=\"H4886\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*. They|strong=\"H5921\"* said to|strong=\"H1980\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"*, ‘Reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 9, + "text": "“But|strong=\"H3513\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* stop|strong=\"H2308\"* producing my|strong=\"H5921\"* oil, with|strong=\"H1980\"* which|strong=\"H6086\"* they|strong=\"H5921\"* honor|strong=\"H3513\"* God and|strong=\"H1980\"* man by|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 10, + "text": "“The|strong=\"H5921\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"*, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 11, + "text": "“But|strong=\"H5921\"* the|strong=\"H5921\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* leave|strong=\"H1980\"* my|strong=\"H5921\"* sweetness|strong=\"H4987\"*, and|strong=\"H1980\"* my|strong=\"H5921\"* good|strong=\"H2896\"* fruit|strong=\"H8570\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 12, + "text": "“The|strong=\"H5921\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* vine|strong=\"H1612\"*, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 13, + "text": "“The|strong=\"H5921\"* vine|strong=\"H1612\"* said to|strong=\"H1980\"* them|strong=\"H5921\"*, ‘Should|strong=\"H1980\"* I|strong=\"H5921\"* leave|strong=\"H1980\"* my|strong=\"H5921\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, which|strong=\"H6086\"* cheers|strong=\"H8055\"* God and|strong=\"H1980\"* man, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* wave|strong=\"H5128\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* over|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*?’" + }, + { + "verseNum": 14, + "text": "“Then|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* said to|strong=\"H3212\"* the|strong=\"H3605\"* bramble, ‘Come|strong=\"H3212\"* and|strong=\"H3212\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*.’" + }, + { + "verseNum": 15, + "text": "“The|strong=\"H5921\"* bramble said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* trees|strong=\"H6086\"*, ‘If in|strong=\"H5921\"* truth you|strong=\"H5921\"* anoint|strong=\"H4886\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H3318\"* come|strong=\"H3318\"* and|strong=\"H4428\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H5921\"* my|strong=\"H5921\"* shade|strong=\"H6738\"*; and|strong=\"H4428\"* if not|strong=\"H3318\"*, let fire come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* bramble, and|strong=\"H4428\"* devour the|strong=\"H5921\"* cedars of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*.’" + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, if you|strong=\"H6213\"* have|strong=\"H3027\"* dealt|strong=\"H6213\"* truly|strong=\"H6213\"* and|strong=\"H3027\"* righteously, in|strong=\"H6213\"* that|strong=\"H3027\"* you|strong=\"H6213\"* have|strong=\"H3027\"* made|strong=\"H6213\"* Abimelech king|strong=\"H4427\"*, and|strong=\"H3027\"* if you|strong=\"H6213\"* have|strong=\"H3027\"* dealt|strong=\"H6213\"* well|strong=\"H2895\"* with|strong=\"H5973\"* Jerubbaal|strong=\"H3378\"* and|strong=\"H3027\"* his|strong=\"H3027\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* have|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H3027\"* according|strong=\"H3027\"* to|strong=\"H6213\"* the|strong=\"H6213\"* deserving|strong=\"H1576\"* of|strong=\"H1004\"* his|strong=\"H3027\"* hands|strong=\"H3027\"*" + }, + { + "verseNum": 17, + "text": "(for|strong=\"H5921\"* my|strong=\"H5921\"* father fought|strong=\"H3898\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, risked|strong=\"H7993\"* his|strong=\"H5921\"* life|strong=\"H5315\"*, and|strong=\"H3027\"* delivered|strong=\"H5337\"* you|strong=\"H5921\"* out|strong=\"H7993\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Midian|strong=\"H4080\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* my|strong=\"H5921\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* today|strong=\"H3117\"* and|strong=\"H1121\"* have|strong=\"H1121\"* slain|strong=\"H2026\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, seventy|strong=\"H7657\"* persons, on|strong=\"H5921\"* one|strong=\"H1931\"* stone, and|strong=\"H1121\"* have|strong=\"H1121\"* made|strong=\"H4427\"* Abimelech, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5921\"* female servant, king|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* your|strong=\"H5921\"* brother);" + }, + { + "verseNum": 19, + "text": "if|strong=\"H1931\"* you|strong=\"H3117\"* then|strong=\"H2088\"* have|strong=\"H1571\"* dealt|strong=\"H6213\"* truly|strong=\"H1571\"* and|strong=\"H3117\"* righteously with|strong=\"H5973\"* Jerubbaal|strong=\"H3378\"* and|strong=\"H3117\"* with|strong=\"H5973\"* his|strong=\"H6213\"* house|strong=\"H1004\"* today|strong=\"H3117\"*, then|strong=\"H2088\"* rejoice|strong=\"H8055\"* in|strong=\"H6213\"* Abimelech, and|strong=\"H3117\"* let|strong=\"H8055\"* him|strong=\"H6213\"* also|strong=\"H1571\"* rejoice|strong=\"H8055\"* in|strong=\"H6213\"* you|strong=\"H3117\"*;" + }, + { + "verseNum": 20, + "text": "but if not|strong=\"H3318\"*, let fire come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Abimelech and|strong=\"H1004\"* devour the|strong=\"H3318\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* and|strong=\"H1004\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Millo|strong=\"H4407\"*; and|strong=\"H1004\"* let fire come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* and|strong=\"H1004\"* from|strong=\"H3318\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Millo|strong=\"H4407\"* and|strong=\"H1004\"* devour Abimelech.”" + }, + { + "verseNum": 21, + "text": "Jotham|strong=\"H3147\"* ran|strong=\"H5127\"* away|strong=\"H3212\"* and|strong=\"H3212\"* fled|strong=\"H5127\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Beer+ 9:21 “Beer” is Hebrew for “well”, i.e., a village named for its well.* and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*, for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H3427\"* Abimelech his|strong=\"H6440\"* brother." + }, + { + "verseNum": 22, + "text": "Abimelech was|strong=\"H3478\"* prince over|strong=\"H5921\"* Israel|strong=\"H3478\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H7971\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* an|strong=\"H7971\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* between|strong=\"H7307\"* Abimelech and|strong=\"H7971\"* the|strong=\"H7971\"* men|strong=\"H1167\"* of|strong=\"H7307\"* Shechem|strong=\"H7927\"*; and|strong=\"H7971\"* the|strong=\"H7971\"* men|strong=\"H1167\"* of|strong=\"H7307\"* Shechem|strong=\"H7927\"* dealt|strong=\"H7927\"* treacherously with|strong=\"H7971\"* Abimelech," + }, + { + "verseNum": 24, + "text": "that|strong=\"H1121\"* the|strong=\"H5921\"* violence|strong=\"H2555\"* done|strong=\"H3027\"* to|strong=\"H5921\"* the|strong=\"H5921\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* might|strong=\"H3378\"* come, and|strong=\"H1121\"* that|strong=\"H1121\"* their|strong=\"H7760\"* blood|strong=\"H1818\"* might|strong=\"H3378\"* be|strong=\"H3027\"* laid|strong=\"H7760\"* on|strong=\"H5921\"* Abimelech their|strong=\"H7760\"* brother who|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* who|strong=\"H1121\"* strengthened|strong=\"H2388\"* his|strong=\"H7760\"* hands|strong=\"H3027\"* to|strong=\"H5921\"* kill|strong=\"H2026\"* his|strong=\"H7760\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H2022\"* Shechem|strong=\"H7927\"* set|strong=\"H7760\"* an|strong=\"H7760\"* ambush for|strong=\"H5921\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H7218\"* they|strong=\"H5921\"* robbed|strong=\"H1497\"* all|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H5674\"* along|strong=\"H5921\"* that|strong=\"H3605\"* way|strong=\"H1870\"* by|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H7218\"* Abimelech was|strong=\"H7218\"* told|strong=\"H5046\"* about|strong=\"H5921\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 26, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* came|strong=\"H5674\"* with|strong=\"H5674\"* his|strong=\"H5674\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* went|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1121\"* Shechem|strong=\"H7927\"*; and|strong=\"H1121\"* the|strong=\"H5674\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* put|strong=\"H5674\"* their trust in|strong=\"H1121\"* him|strong=\"H5674\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H6213\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H6213\"* the|strong=\"H6213\"* field|strong=\"H7704\"*, harvested|strong=\"H1219\"* their|strong=\"H6213\"* vineyards|strong=\"H3754\"*, trod|strong=\"H1869\"* the|strong=\"H6213\"* grapes, celebrated|strong=\"H6213\"*, and|strong=\"H1004\"* went|strong=\"H3318\"* into|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H6213\"* god and|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"*, and|strong=\"H1004\"* cursed|strong=\"H7043\"* Abimelech." + }, + { + "verseNum": 28, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* Abimelech, and|strong=\"H1121\"* who|strong=\"H4310\"* is|strong=\"H4310\"* Shechem|strong=\"H7927\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*? Isn’t he|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"*? Isn’t Zebul|strong=\"H2083\"* his|strong=\"H3588\"* officer|strong=\"H6496\"*? Serve|strong=\"H5647\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Hamor|strong=\"H2544\"* the|strong=\"H3588\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"*, but|strong=\"H3588\"* why|strong=\"H4069\"* should|strong=\"H3588\"* we|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*?" + }, + { + "verseNum": 29, + "text": "I|strong=\"H5414\"* wish|strong=\"H4310\"* that|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* were|strong=\"H5971\"* under|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*! Then|strong=\"H3318\"* I|strong=\"H5414\"* would|strong=\"H4310\"* remove|strong=\"H5493\"* Abimelech.” He|strong=\"H5414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abimelech, “Increase|strong=\"H7235\"* your|strong=\"H5414\"* army|strong=\"H6635\"* and|strong=\"H3027\"* come|strong=\"H3318\"* out|strong=\"H3318\"*!”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Zebul|strong=\"H2083\"* the|strong=\"H8085\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H8085\"* city|strong=\"H5892\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Gaal|strong=\"H1603\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"*, his|strong=\"H8085\"* anger burned|strong=\"H2734\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Abimelech craftily, saying, “Behold|strong=\"H2009\"*, Gaal|strong=\"H1603\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* and|strong=\"H1121\"* his|strong=\"H7971\"* brothers|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H5892\"* to|strong=\"H7971\"* Shechem|strong=\"H7927\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, they|strong=\"H5921\"* incite the|strong=\"H5921\"* city|strong=\"H5892\"* against|strong=\"H5921\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, go|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H6965\"* night|strong=\"H3915\"*, you|strong=\"H3915\"* and|strong=\"H6965\"* the|strong=\"H6965\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3915\"*, and|strong=\"H6965\"* lie in|strong=\"H5971\"* wait in|strong=\"H5971\"* the|strong=\"H6965\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 33, + "text": "It|strong=\"H1931\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* that|strong=\"H5971\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, as|strong=\"H1961\"* soon|strong=\"H1242\"* as|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* is|strong=\"H1931\"* up|strong=\"H7925\"*, you|strong=\"H5921\"* shall|strong=\"H5971\"* rise|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3027\"* rush|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. Behold|strong=\"H2009\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* and|strong=\"H3027\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H1931\"* are|strong=\"H5971\"* with|strong=\"H6213\"* him|strong=\"H5921\"* come|strong=\"H1961\"* out|strong=\"H3318\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H1961\"* may|strong=\"H1961\"* you|strong=\"H5921\"* do|strong=\"H6213\"* to|strong=\"H3318\"* them|strong=\"H5921\"* as|strong=\"H1961\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* find|strong=\"H4672\"* occasion|strong=\"H4672\"*.”" + }, + { + "verseNum": 34, + "text": "Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, by|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* they|strong=\"H5921\"* laid wait against|strong=\"H5921\"* Shechem|strong=\"H7927\"* in|strong=\"H5921\"* four companies|strong=\"H7218\"*." + }, + { + "verseNum": 35, + "text": "Gaal|strong=\"H1603\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebed|strong=\"H5651\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stood|strong=\"H5975\"* in|strong=\"H5892\"* the|strong=\"H4480\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H4480\"* city|strong=\"H5892\"*. Abimelech rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H3318\"* him|strong=\"H3318\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* ambush|strong=\"H3993\"*." + }, + { + "verseNum": 36, + "text": "When|strong=\"H7200\"* Gaal|strong=\"H1603\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, he|strong=\"H5971\"* said to|strong=\"H3381\"* Zebul|strong=\"H2083\"*, “Behold|strong=\"H2009\"*, people|strong=\"H5971\"* are|strong=\"H5971\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H7200\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 37, + "text": "Gaal|strong=\"H1603\"* spoke|strong=\"H1696\"* again|strong=\"H5750\"* and|strong=\"H5971\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, people|strong=\"H5971\"* are|strong=\"H5971\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* by|strong=\"H1870\"* the|strong=\"H1870\"* middle|strong=\"H2872\"* of|strong=\"H7218\"* the|strong=\"H1870\"* land, and|strong=\"H5971\"* one company|strong=\"H7218\"* comes|strong=\"H3381\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H7218\"* the|strong=\"H1870\"* oak of|strong=\"H7218\"* Meonenim|strong=\"H6049\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"H3318\"* Zebul|strong=\"H2083\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Now|strong=\"H6258\"* where|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H3588\"* mouth|strong=\"H6310\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H3318\"*, ‘Who|strong=\"H4310\"* is|strong=\"H2088\"* Abimelech, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* serve|strong=\"H5647\"* him|strong=\"H3318\"*?’ Isn’t this|strong=\"H2088\"* the|strong=\"H3588\"* people|strong=\"H5971\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* despised|strong=\"H3988\"*? Please|strong=\"H4994\"* go|strong=\"H3318\"* out|strong=\"H3318\"* now|strong=\"H6258\"* and|strong=\"H5971\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* them|strong=\"H3318\"*.”" + }, + { + "verseNum": 39, + "text": "Gaal|strong=\"H1603\"* went|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H1167\"* of|strong=\"H6440\"* Shechem|strong=\"H7927\"*, and|strong=\"H6440\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Abimelech." + }, + { + "verseNum": 40, + "text": "Abimelech chased|strong=\"H7291\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* he|strong=\"H5704\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* many|strong=\"H7227\"* fell|strong=\"H5307\"* wounded|strong=\"H2491\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* entrance|strong=\"H6607\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 41, + "text": "Abimelech lived|strong=\"H3427\"* at|strong=\"H3427\"* Arumah; and|strong=\"H3427\"* Zebul|strong=\"H2083\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* Gaal|strong=\"H1603\"* and|strong=\"H3427\"* his|strong=\"H3427\"* brothers, that|strong=\"H3427\"* they should not dwell|strong=\"H3427\"* in|strong=\"H3427\"* Shechem|strong=\"H7927\"*." + }, + { + "verseNum": 42, + "text": "On|strong=\"H1961\"* the|strong=\"H3318\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, the|strong=\"H3318\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* told|strong=\"H5046\"* Abimelech." + }, + { + "verseNum": 43, + "text": "He|strong=\"H4480\"* took|strong=\"H3947\"* the|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H6965\"* divided|strong=\"H2673\"* them|strong=\"H5921\"* into|strong=\"H5921\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*, and|strong=\"H6965\"* laid|strong=\"H3318\"* wait in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*; and|strong=\"H6965\"* he|strong=\"H4480\"* looked|strong=\"H7200\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* people|strong=\"H5971\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. So|strong=\"H4480\"*, he|strong=\"H4480\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* them|strong=\"H5921\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 44, + "text": "Abimelech and|strong=\"H5892\"* the|strong=\"H3605\"* companies|strong=\"H7218\"* that|strong=\"H3605\"* were|strong=\"H7218\"* with|strong=\"H5973\"* him|strong=\"H5921\"* rushed|strong=\"H6584\"* forward|strong=\"H5221\"* and|strong=\"H5892\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H3605\"* two|strong=\"H8147\"* companies|strong=\"H7218\"* rushed|strong=\"H6584\"* on|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* and|strong=\"H5892\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 45, + "text": "Abimelech fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* city|strong=\"H5892\"* all|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*; and|strong=\"H3117\"* he|strong=\"H1931\"* took|strong=\"H3920\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H3117\"* killed|strong=\"H2026\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H3117\"* it|strong=\"H1931\"*. He|strong=\"H1931\"* beat down|strong=\"H5422\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H3117\"* sowed|strong=\"H2232\"* it|strong=\"H1931\"* with|strong=\"H3898\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 46, + "text": "When|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1004\"* Shechem|strong=\"H7927\"* heard|strong=\"H8085\"* of|strong=\"H1004\"* it|strong=\"H3605\"*, they|strong=\"H3605\"* entered into the|strong=\"H3605\"* stronghold of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Elberith." + }, + { + "verseNum": 47, + "text": "Abimelech was|strong=\"H3605\"* told|strong=\"H5046\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* of|strong=\"H1167\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1167\"* Shechem|strong=\"H7927\"* were|strong=\"H3605\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"*." + }, + { + "verseNum": 48, + "text": "Abimelech went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Mount|strong=\"H2022\"* Zalmon|strong=\"H6756\"*, he|strong=\"H1931\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H3027\"* Abimelech took|strong=\"H3947\"* an|strong=\"H6213\"* ax in|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* a|strong=\"H3068\"* bough|strong=\"H7754\"* from|strong=\"H3772\"* the|strong=\"H3605\"* trees|strong=\"H6086\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* it|strong=\"H7760\"* up|strong=\"H5927\"*, and|strong=\"H3027\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* his|strong=\"H3605\"* shoulder|strong=\"H7926\"*. Then|strong=\"H3947\"* he|strong=\"H1931\"* said to|strong=\"H5927\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* you|strong=\"H3605\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* me|strong=\"H7200\"* do|strong=\"H6213\"*, make|strong=\"H6213\"* haste|strong=\"H4116\"*, and|strong=\"H3027\"* do|strong=\"H6213\"* as|strong=\"H3644\"* I|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 49, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* likewise|strong=\"H1571\"* each|strong=\"H3605\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* his|strong=\"H3605\"* bough|strong=\"H7754\"*, followed|strong=\"H3212\"* Abimelech, and|strong=\"H3212\"* put|strong=\"H7760\"* them|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H3605\"* base of|strong=\"H5971\"* the|strong=\"H3605\"* stronghold, and|strong=\"H3212\"* set|strong=\"H7760\"* the|strong=\"H3605\"* stronghold on|strong=\"H5921\"* fire|strong=\"H3341\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, so|strong=\"H1571\"* that|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H5971\"* Shechem|strong=\"H7927\"* died|strong=\"H4191\"* also|strong=\"H1571\"*, about|strong=\"H5921\"* a|strong=\"H3068\"* thousand men|strong=\"H5971\"* and|strong=\"H3212\"* women." + }, + { + "verseNum": 50, + "text": "Then Abimelech went|strong=\"H3212\"* to|strong=\"H3212\"* Thebez|strong=\"H8405\"* and|strong=\"H3212\"* encamped|strong=\"H2583\"* against|strong=\"H2583\"* Thebez|strong=\"H8405\"*, and|strong=\"H3212\"* took|strong=\"H3920\"* it|strong=\"H3920\"*." + }, + { + "verseNum": 51, + "text": "But|strong=\"H1961\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* strong|strong=\"H5797\"* tower|strong=\"H4026\"* within|strong=\"H8432\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1167\"* and|strong=\"H5892\"* women of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"* fled|strong=\"H5127\"* there|strong=\"H8033\"*, and|strong=\"H5892\"* shut|strong=\"H5462\"* themselves|strong=\"H5921\"* in|strong=\"H5921\"*, and|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* roof|strong=\"H1406\"* of|strong=\"H5892\"* the|strong=\"H3605\"* tower|strong=\"H4026\"*." + }, + { + "verseNum": 52, + "text": "Abimelech came|strong=\"H5066\"* to|strong=\"H5704\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* and|strong=\"H5066\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* it|strong=\"H5704\"*, and|strong=\"H5066\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H4026\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* to|strong=\"H5704\"* burn|strong=\"H8313\"* it|strong=\"H5704\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 53, + "text": "A|strong=\"H3068\"* certain woman cast|strong=\"H7993\"* an|strong=\"H7993\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* on|strong=\"H5921\"* Abimelech’s head|strong=\"H7218\"*, and|strong=\"H7218\"* broke|strong=\"H7533\"* his|strong=\"H5921\"* skull|strong=\"H1538\"*." + }, + { + "verseNum": 54, + "text": "Then|strong=\"H5375\"* he|strong=\"H7121\"* called|strong=\"H7121\"* hastily|strong=\"H4120\"* to|strong=\"H4191\"* the|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H2719\"* said|strong=\"H7121\"* to|strong=\"H4191\"* him|strong=\"H7121\"*, “Draw|strong=\"H8025\"* your|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* kill|strong=\"H2026\"* me|strong=\"H7121\"*, that|strong=\"H5288\"* men|strong=\"H5288\"* not|strong=\"H6435\"* say of|strong=\"H3627\"* me|strong=\"H7121\"*, ‘A|strong=\"H3068\"* woman killed|strong=\"H2026\"* him|strong=\"H7121\"*.’ His|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"* thrust|strong=\"H1856\"* him|strong=\"H7121\"* through|strong=\"H1856\"*, and|strong=\"H2719\"* he|strong=\"H7121\"* died|strong=\"H4191\"*.”" + }, + { + "verseNum": 55, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H3478\"* of|strong=\"H4725\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Abimelech was|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* each departed|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H7200\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 56, + "text": "Thus God repaid|strong=\"H7725\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H6213\"* Abimelech, which|strong=\"H7451\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H7725\"* his|strong=\"H7725\"* father in|strong=\"H6213\"* killing|strong=\"H2026\"* his|strong=\"H7725\"* seventy|strong=\"H7657\"* brothers;" + }, + { + "verseNum": 57, + "text": "and|strong=\"H1121\"* God repaid|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* of|strong=\"H1121\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Shechem|strong=\"H7927\"* on|strong=\"H7451\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* curse|strong=\"H7045\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbaal|strong=\"H3378\"* came|strong=\"H7725\"* on|strong=\"H7451\"* them|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H6965\"* Abimelech, Tola|strong=\"H8439\"* the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Puah|strong=\"H6312\"*, the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, arose|strong=\"H6965\"* to|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"*. He|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Shamir|strong=\"H8069\"* in|strong=\"H3427\"* the|strong=\"H6965\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8141\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"*, and|strong=\"H3478\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H8141\"* Shamir|strong=\"H8069\"*." + }, + { + "verseNum": 3, + "text": "After|strong=\"H6965\"* him Jair|strong=\"H2971\"*, the|strong=\"H6965\"* Gileadite|strong=\"H1569\"*, arose|strong=\"H6965\"*. He|strong=\"H8147\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* thirty|strong=\"H7970\"* donkey colts|strong=\"H1121\"*. They|strong=\"H1992\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* cities|strong=\"H5895\"*, which|strong=\"H1992\"* are|strong=\"H3117\"* called|strong=\"H7121\"* Havvoth Jair to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, which|strong=\"H1992\"* are|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 5, + "text": "Jair|strong=\"H2971\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* in|strong=\"H4191\"* Kamon|strong=\"H7056\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*, the|strong=\"H6213\"* Ashtaroth|strong=\"H6252\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Syria, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Sidon|strong=\"H6721\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Moab|strong=\"H4124\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* gods of|strong=\"H1121\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"*. They|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* didn’t serve|strong=\"H5647\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* and|strong=\"H1121\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H8141\"* troubled and|strong=\"H1121\"* oppressed|strong=\"H7533\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* year|strong=\"H8141\"*. For|strong=\"H1121\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"* they|strong=\"H8141\"* oppressed|strong=\"H7533\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* that|strong=\"H3605\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H5676\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* Jordan|strong=\"H3383\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* also|strong=\"H1571\"* against|strong=\"H3898\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* against|strong=\"H3898\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* against|strong=\"H3898\"* the|strong=\"H5674\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ephraim, so|strong=\"H1571\"* that|strong=\"H3478\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* very|strong=\"H3966\"* distressed|strong=\"H3334\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, saying, “We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* served|strong=\"H5647\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*.”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Didn’t I|strong=\"H4714\"* save you|strong=\"H3808\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Amorites, from|strong=\"H4480\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3027\"* Sidonians|strong=\"H6722\"* also|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* Maonites|strong=\"H4584\"*, oppressed|strong=\"H3905\"* you|strong=\"H3027\"*; and|strong=\"H3027\"* you|strong=\"H3027\"* cried|strong=\"H6817\"* to|strong=\"H3027\"* me|strong=\"H3467\"*, and|strong=\"H3027\"* I|strong=\"H3027\"* saved|strong=\"H3467\"* you|strong=\"H3027\"* out|strong=\"H6817\"* of|strong=\"H3027\"* their|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3254\"* you|strong=\"H3808\"* have|strong=\"H3808\"* forsaken|strong=\"H5800\"* me|strong=\"H3254\"* and|strong=\"H3254\"* served|strong=\"H5647\"* other gods. Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3808\"* save|strong=\"H3467\"* you|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 14, + "text": "Go|strong=\"H3212\"* and|strong=\"H3212\"* cry|strong=\"H2199\"* to|strong=\"H3212\"* the|strong=\"H3467\"* gods which|strong=\"H1992\"* you|strong=\"H3467\"* have|strong=\"H6256\"* chosen. Let|strong=\"H3212\"* them|strong=\"H1992\"* save|strong=\"H3467\"* you|strong=\"H3467\"* in|strong=\"H3212\"* the|strong=\"H3467\"* time|strong=\"H6256\"* of|strong=\"H6256\"* your|strong=\"H3467\"* distress|strong=\"H6869\"*!”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “We|strong=\"H3117\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*! Do|strong=\"H6213\"* to|strong=\"H3478\"* us|strong=\"H4994\"* whatever|strong=\"H3605\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3478\"* you|strong=\"H3605\"*; only|strong=\"H3605\"* deliver|strong=\"H5337\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*, today|strong=\"H3117\"*.”" + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5647\"* foreign|strong=\"H5236\"* gods from|strong=\"H5493\"* among|strong=\"H7130\"* them|strong=\"H5493\"* and|strong=\"H3478\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* his|strong=\"H3068\"* soul|strong=\"H5315\"* was|strong=\"H3068\"* grieved|strong=\"H7114\"* for|strong=\"H3068\"* the|strong=\"H5647\"* misery|strong=\"H5999\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* were|strong=\"H3478\"* gathered|strong=\"H6817\"* together|strong=\"H6817\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilead|strong=\"H1568\"*. The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* assembled|strong=\"H6817\"* themselves together|strong=\"H6817\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, said to|strong=\"H1961\"* one|strong=\"H3605\"* another|strong=\"H7453\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H4310\"* will|strong=\"H4310\"* begin|strong=\"H2490\"* to|strong=\"H1961\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*? He|strong=\"H3605\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* head|strong=\"H7218\"* over|strong=\"H8269\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*.”" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Jephthah|strong=\"H3316\"* the|strong=\"H3205\"* Gileadite|strong=\"H1569\"* was|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*. He|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. Gilead|strong=\"H1568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"*." + }, + { + "verseNum": 2, + "text": "Gilead|strong=\"H1568\"*’s wife bore|strong=\"H3205\"* him|strong=\"H3205\"* sons|strong=\"H1121\"*. When|strong=\"H3588\"* his|strong=\"H3588\"* wife’s sons|strong=\"H1121\"* grew|strong=\"H1431\"* up|strong=\"H1431\"*, they|strong=\"H3588\"* drove|strong=\"H1644\"* Jephthah|strong=\"H3316\"* out|strong=\"H1644\"* and|strong=\"H1121\"* said to|strong=\"H3205\"* him|strong=\"H3205\"*, “You|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* inherit|strong=\"H5157\"* in|strong=\"H1004\"* our|strong=\"H3588\"* father|strong=\"H3205\"*’s house|strong=\"H1004\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* another|strong=\"H3808\"* woman|strong=\"H3205\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Jephthah|strong=\"H3316\"* fled|strong=\"H1272\"* from|strong=\"H3318\"* his|strong=\"H6440\"* brothers and|strong=\"H6440\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3427\"* Tob|strong=\"H2897\"*. Outlaws joined|strong=\"H3950\"* up|strong=\"H3318\"* with|strong=\"H5973\"* Jephthah|strong=\"H3316\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* made|strong=\"H1961\"* war|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* made|strong=\"H1961\"* war|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* went|strong=\"H3212\"* to|strong=\"H3478\"* get|strong=\"H3947\"* Jephthah|strong=\"H3316\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Tob|strong=\"H2897\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5983\"* said to|strong=\"H3212\"* Jephthah|strong=\"H3316\"*, “Come|strong=\"H1961\"* and|strong=\"H1121\"* be|strong=\"H1961\"* our|strong=\"H1961\"* chief|strong=\"H7101\"*, that|strong=\"H1121\"* we|strong=\"H3068\"* may|strong=\"H1961\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 7, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H1004\"* the|strong=\"H6258\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Gilead|strong=\"H1568\"*, “Didn’t you|strong=\"H3808\"* hate|strong=\"H8130\"* me|strong=\"H8130\"*, and|strong=\"H1004\"* drive|strong=\"H1644\"* me|strong=\"H8130\"* out|strong=\"H1644\"* of|strong=\"H1004\"* my|strong=\"H6258\"* father’s house|strong=\"H1004\"*? Why|strong=\"H4069\"* have|strong=\"H6862\"* you|strong=\"H3808\"* come to|strong=\"H1004\"* me|strong=\"H8130\"* now|strong=\"H6258\"* when you|strong=\"H3808\"* are|strong=\"H1004\"* in|strong=\"H1004\"* distress|strong=\"H6862\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* said|strong=\"H3651\"* to|strong=\"H1980\"* Jephthah|strong=\"H3316\"*, “Therefore|strong=\"H3651\"* we|strong=\"H3068\"* have|strong=\"H1961\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* you|strong=\"H3605\"* now|strong=\"H6258\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* go|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H7725\"* and|strong=\"H1121\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* our|strong=\"H3605\"* head|strong=\"H7218\"* over|strong=\"H7218\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*.”" + }, + { + "verseNum": 9, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H7725\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, “If|strong=\"H1961\"* you|strong=\"H5414\"* bring|strong=\"H7725\"* me|strong=\"H5414\"* home|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivers|strong=\"H5414\"* them|strong=\"H5414\"* before|strong=\"H6440\"* me|strong=\"H5414\"*, will|strong=\"H3068\"* I|strong=\"H5414\"* be|strong=\"H1961\"* your|strong=\"H3068\"* head|strong=\"H7218\"*?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8085\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jephthah|strong=\"H3316\"*, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* witness|strong=\"H8085\"* between us|strong=\"H6213\"*. Surely|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H1697\"* you|strong=\"H6213\"* say|strong=\"H1697\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1696\"* Jephthah|strong=\"H3316\"* went|strong=\"H3212\"* with|strong=\"H5973\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* made|strong=\"H7760\"* him|strong=\"H6440\"* head|strong=\"H7218\"* and|strong=\"H3068\"* chief|strong=\"H7218\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. Jephthah|strong=\"H3316\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* words|strong=\"H1697\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 12, + "text": "Jephthah|strong=\"H3316\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, saying, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H1121\"* to|strong=\"H7971\"* do|strong=\"H4100\"* with|strong=\"H3898\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* come|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H7971\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* my|strong=\"H7971\"* land?”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* answered|strong=\"H7725\"* the|strong=\"H3588\"* messengers|strong=\"H4397\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"*, “Because|strong=\"H3588\"* Israel|strong=\"H3478\"* took|strong=\"H3947\"* away|strong=\"H7725\"* my|strong=\"H3947\"* land when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3947\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, from|strong=\"H7725\"* the|strong=\"H3588\"* Arnon even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Jabbok|strong=\"H2999\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* restore|strong=\"H7725\"* that|strong=\"H3588\"* territory again|strong=\"H7725\"* peaceably|strong=\"H7965\"*.”" + }, + { + "verseNum": 14, + "text": "Jephthah|strong=\"H3316\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H5750\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H1121\"* he|strong=\"H3808\"* said to|strong=\"H3478\"* him|strong=\"H3947\"*, “Jephthah|strong=\"H3316\"* says|strong=\"H3541\"*: Israel|strong=\"H3478\"* didn’t take|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* Moab|strong=\"H4124\"*, nor|strong=\"H3808\"* the|strong=\"H3947\"* land of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H3588\"* when|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Egypt|strong=\"H4714\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, and|strong=\"H3478\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Kadesh|strong=\"H6946\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H7971\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, saying, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H8085\"* land;’ but|strong=\"H3808\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom didn’t listen|strong=\"H8085\"*. In|strong=\"H3427\"* the|strong=\"H8085\"* same way|strong=\"H7971\"*, he|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* refused|strong=\"H3808\"*; so|strong=\"H7971\"* Israel|strong=\"H3478\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kadesh|strong=\"H6946\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* around|strong=\"H5437\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Edom, and|strong=\"H3212\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* by|strong=\"H4124\"* the|strong=\"H3588\"* east|strong=\"H4217\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, and|strong=\"H3212\"* they|strong=\"H3588\"* encamped|strong=\"H2583\"* on|strong=\"H3212\"* the|strong=\"H3588\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1366\"* the|strong=\"H3588\"* Arnon; but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t come|strong=\"H3212\"* within the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Arnon was|strong=\"H1366\"* the|strong=\"H3588\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 19, + "text": "Israel|strong=\"H3478\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H5704\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5704\"* Amorites, the|strong=\"H5704\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* said to|strong=\"H5704\"* him|strong=\"H7971\"*, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* us|strong=\"H4994\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H7971\"* land|strong=\"H4725\"* to|strong=\"H5704\"* my|strong=\"H7971\"* place|strong=\"H4725\"*.’" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Sihon|strong=\"H5511\"* didn’t trust Israel|strong=\"H3478\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* his|strong=\"H3605\"* border|strong=\"H1366\"*; but|strong=\"H3808\"* Sihon|strong=\"H5511\"* gathered|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H5973\"*, and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Jahaz|strong=\"H3096\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, delivered|strong=\"H5414\"* Sihon|strong=\"H5511\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5414\"*. So|strong=\"H5414\"* Israel|strong=\"H3478\"* possessed|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* that|strong=\"H5971\"* country." + }, + { + "verseNum": 22, + "text": "They|strong=\"H5704\"* possessed|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* Amorites, from|strong=\"H4480\"* the|strong=\"H3605\"* Arnon even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jabbok|strong=\"H2999\"*, and|strong=\"H4057\"* from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H6258\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* dispossessed|strong=\"H3423\"* the|strong=\"H6440\"* Amorites from|strong=\"H6440\"* before|strong=\"H6440\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* should|strong=\"H3068\"* you|strong=\"H6440\"* possess|strong=\"H3423\"* them|strong=\"H6440\"*?" + }, + { + "verseNum": 24, + "text": "Won’t you|strong=\"H6440\"* possess|strong=\"H3423\"* that|strong=\"H3605\"* which|strong=\"H3068\"* Chemosh|strong=\"H3645\"* your|strong=\"H3068\"* god|strong=\"H3068\"* gives|strong=\"H3423\"* you|strong=\"H6440\"* to|strong=\"H3068\"* possess|strong=\"H3423\"*? So|strong=\"H3808\"* whoever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* dispossessed|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, them|strong=\"H6440\"* will|strong=\"H3068\"* we|strong=\"H3068\"* possess|strong=\"H3423\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* are|strong=\"H1121\"* you|strong=\"H5973\"* anything better|strong=\"H2896\"* than|strong=\"H2896\"* Balak|strong=\"H1111\"* the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zippor|strong=\"H6834\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*? Did|strong=\"H3478\"* he|strong=\"H3478\"* ever|strong=\"H7378\"* strive|strong=\"H7378\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, or|strong=\"H1121\"* did|strong=\"H3478\"* he|strong=\"H3478\"* ever|strong=\"H7378\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* them|strong=\"H1121\"*?" + }, + { + "verseNum": 26, + "text": "Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Heshbon|strong=\"H2809\"* and|strong=\"H3967\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H3967\"* in|strong=\"H3427\"* Aroer|strong=\"H6177\"* and|strong=\"H3967\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H3967\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* are|strong=\"H3478\"* along|strong=\"H5921\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Arnon for|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* years|strong=\"H8141\"*! Why|strong=\"H4069\"* didn’t you|strong=\"H3605\"* recover|strong=\"H5337\"* them|strong=\"H5921\"* within|strong=\"H5921\"* that|strong=\"H3605\"* time|strong=\"H6256\"*?" + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H3898\"* you|strong=\"H3117\"*, but|strong=\"H3808\"* you|strong=\"H3117\"* do|strong=\"H6213\"* me|strong=\"H6213\"* wrong|strong=\"H7451\"* to|strong=\"H3478\"* war|strong=\"H3898\"* against|strong=\"H3898\"* me|strong=\"H6213\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6213\"* Judge|strong=\"H8199\"* be|strong=\"H3808\"* judge|strong=\"H8199\"* today|strong=\"H3117\"* between|strong=\"H8199\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 28, + "text": "However|strong=\"H8085\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7971\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jephthah|strong=\"H3316\"* which|strong=\"H1697\"* he|strong=\"H3808\"* sent|strong=\"H7971\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Jephthah|strong=\"H3316\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* Gilead|strong=\"H1568\"* and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* Mizpah|strong=\"H4708\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* from|strong=\"H5921\"* Mizpah|strong=\"H4708\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* he|strong=\"H3068\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 30, + "text": "Jephthah|strong=\"H3316\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* said, “If|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H5414\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 31, + "text": "then|strong=\"H1961\"* it|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, that|strong=\"H3068\"* whatever comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1121\"* my|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* me|strong=\"H7725\"* when|strong=\"H1961\"* I|strong=\"H1121\"* return|strong=\"H7725\"* in|strong=\"H3068\"* peace|strong=\"H7965\"* from|strong=\"H7725\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, it|strong=\"H7725\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s, and|strong=\"H1121\"* I|strong=\"H1121\"* will|strong=\"H3068\"* offer|strong=\"H5927\"* it|strong=\"H7725\"* up|strong=\"H5927\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*.”" + }, + { + "verseNum": 32, + "text": "So|strong=\"H5414\"* Jephthah|strong=\"H3316\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* to|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H5414\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H6440\"* from|strong=\"H6440\"* Aroer|strong=\"H6177\"* until|strong=\"H5704\"* you|strong=\"H6440\"* come|strong=\"H3478\"* to|strong=\"H5704\"* Minnith|strong=\"H4511\"*, even|strong=\"H5704\"* twenty|strong=\"H6242\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* Abelcheramim, with|strong=\"H6440\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*. So|strong=\"H3966\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* were|strong=\"H3478\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 34, + "text": "Jephthah|strong=\"H3316\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Mizpah|strong=\"H4709\"* to|strong=\"H3318\"* his|strong=\"H4480\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, his|strong=\"H4480\"* daughter|strong=\"H1323\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* him|strong=\"H3318\"* with|strong=\"H1004\"* tambourines|strong=\"H8596\"* and|strong=\"H1121\"* with|strong=\"H1004\"* dances|strong=\"H4246\"*. She|strong=\"H1931\"* was|strong=\"H1931\"* his|strong=\"H4480\"* only|strong=\"H7535\"* child|strong=\"H1121\"*. Besides|strong=\"H4480\"* her|strong=\"H3318\"* he|strong=\"H1931\"* had|strong=\"H1121\"* neither|strong=\"H4480\"* son|strong=\"H1121\"* nor|strong=\"H1121\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 35, + "text": "When|strong=\"H1961\"* he|strong=\"H3068\"* saw|strong=\"H7200\"* her|strong=\"H7200\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, and|strong=\"H3068\"* said|strong=\"H6310\"*, “Alas, my|strong=\"H3068\"* daughter|strong=\"H1323\"*! You|strong=\"H7725\"* have|strong=\"H1961\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* very|strong=\"H3766\"* low|strong=\"H3766\"*, and|strong=\"H3068\"* you|strong=\"H7725\"* are|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* trouble|strong=\"H5916\"* me|strong=\"H7725\"*; for|strong=\"H3068\"* I|strong=\"H3201\"* have|strong=\"H1961\"* opened|strong=\"H6475\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H3201\"* can|strong=\"H3201\"*’t go|strong=\"H7725\"* back|strong=\"H7725\"*.”" + }, + { + "verseNum": 36, + "text": "She said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “My|strong=\"H3068\"* father|strong=\"H1121\"*, you|strong=\"H6213\"* have|strong=\"H3068\"* opened|strong=\"H6475\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*; do|strong=\"H6213\"* to|strong=\"H3318\"* me|strong=\"H6213\"* according|strong=\"H6310\"* to|strong=\"H3318\"* that|strong=\"H3068\"* which|strong=\"H3068\"* has|strong=\"H3068\"* proceeded|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*, because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H6213\"* vengeance|strong=\"H5360\"* for|strong=\"H6213\"* you|strong=\"H6213\"* on|strong=\"H3068\"* your|strong=\"H3068\"* enemies, even|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*.”" + }, + { + "verseNum": 37, + "text": "Then|strong=\"H2088\"* she|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H3381\"* her|strong=\"H5921\"* father, “Let|strong=\"H7503\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* be|strong=\"H1697\"* done|strong=\"H6213\"* for|strong=\"H5921\"* me|strong=\"H5921\"*. Leave|strong=\"H4480\"* me|strong=\"H5921\"* alone|strong=\"H7503\"* two|strong=\"H8147\"* months|strong=\"H2320\"*, that|strong=\"H1697\"* I|strong=\"H5921\"* may|strong=\"H6213\"* depart|strong=\"H3212\"* and|strong=\"H3212\"* go|strong=\"H3212\"* down|strong=\"H3381\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, and|strong=\"H3212\"* bewail|strong=\"H1058\"* my|strong=\"H5921\"* virginity|strong=\"H1331\"*, I|strong=\"H5921\"* and|strong=\"H3212\"* my|strong=\"H5921\"* companions.”" + }, + { + "verseNum": 38, + "text": "He|strong=\"H1931\"* said, “Go|strong=\"H3212\"*.” He|strong=\"H1931\"* sent|strong=\"H7971\"* her|strong=\"H7971\"* away|strong=\"H7971\"* for|strong=\"H5921\"* two|strong=\"H8147\"* months|strong=\"H2320\"*; and|strong=\"H7971\"* she|strong=\"H1931\"* departed|strong=\"H3212\"*, she|strong=\"H1931\"* and|strong=\"H7971\"* her|strong=\"H7971\"* companions|strong=\"H7464\"*, and|strong=\"H7971\"* mourned|strong=\"H1058\"* her|strong=\"H7971\"* virginity|strong=\"H1331\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 39, + "text": "At|strong=\"H3478\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H7093\"* two|strong=\"H8147\"* months|strong=\"H2320\"*, she|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* father, who|strong=\"H1931\"* did|strong=\"H6213\"* with|strong=\"H6213\"* her|strong=\"H7725\"* according to|strong=\"H7725\"* his|strong=\"H7725\"* vow|strong=\"H5088\"* which|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H1961\"* vowed|strong=\"H5087\"*. She|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* virgin. It|strong=\"H1931\"* became|strong=\"H1961\"* a|strong=\"H3068\"* custom|strong=\"H2706\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 40, + "text": "that|strong=\"H3117\"* the|strong=\"H3117\"* daughters|strong=\"H1323\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* yearly|strong=\"H3117\"* to|strong=\"H3478\"* celebrate the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Jephthah|strong=\"H3316\"* the|strong=\"H3117\"* Gileadite|strong=\"H1569\"* four days|strong=\"H3117\"* in|strong=\"H8141\"* a|strong=\"H3068\"* year|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim were|strong=\"H1121\"* gathered|strong=\"H6817\"* together|strong=\"H5973\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* northward|strong=\"H6828\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* said|strong=\"H7121\"* to|strong=\"H3212\"* Jephthah|strong=\"H3316\"*, “Why|strong=\"H4069\"* did|strong=\"H3808\"* you|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H3212\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* didn’t call|strong=\"H7121\"* us|strong=\"H5921\"* to|strong=\"H3212\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H5921\"*? We will|strong=\"H1121\"* burn|strong=\"H8313\"* your|strong=\"H5921\"* house|strong=\"H1004\"* around|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5973\"* fire!”" + }, + { + "verseNum": 2, + "text": "Jephthah|strong=\"H3316\"* said to|strong=\"H1961\"* them|strong=\"H3027\"*, “I|strong=\"H3808\"* and|strong=\"H1121\"* my|strong=\"H1961\"* people|strong=\"H5971\"* were|strong=\"H1961\"* at|strong=\"H1961\"* great|strong=\"H3966\"* strife|strong=\"H7379\"* with|strong=\"H5971\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; and|strong=\"H1121\"* when|strong=\"H1961\"* I|strong=\"H3808\"* called|strong=\"H2199\"* you|strong=\"H3808\"*, you|strong=\"H3808\"* didn’t save|strong=\"H3467\"* me|strong=\"H3467\"* out|strong=\"H2199\"* of|strong=\"H1121\"* their|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* you|strong=\"H3588\"* didn’t save|strong=\"H3467\"* me|strong=\"H5414\"*, I|strong=\"H3588\"* put|strong=\"H5414\"* my|strong=\"H5414\"* life|strong=\"H5315\"* in|strong=\"H3068\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* against|strong=\"H3898\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. Why|strong=\"H4100\"* then|strong=\"H2088\"* have|strong=\"H3068\"* you|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"* today|strong=\"H3117\"*, to|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* me|strong=\"H5414\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3588\"* Jephthah|strong=\"H3316\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H8432\"* Gilead|strong=\"H1568\"*, and|strong=\"H4519\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Ephraim. The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H8432\"* Gilead|strong=\"H1568\"* struck|strong=\"H5221\"* Ephraim, because|strong=\"H3588\"* they|strong=\"H3588\"* said, “You|strong=\"H3588\"* are fugitives|strong=\"H6412\"* of|strong=\"H8432\"* Ephraim, you|strong=\"H3588\"* Gileadites|strong=\"H1568\"*, in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Ephraim, and|strong=\"H4519\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Manasseh|strong=\"H4519\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* Gileadites|strong=\"H1568\"* took|strong=\"H3920\"* the|strong=\"H3588\"* fords|strong=\"H4569\"* of|strong=\"H3808\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"* against the|strong=\"H3588\"* Ephraimites. Whenever|strong=\"H1961\"* a|strong=\"H3068\"* fugitive|strong=\"H6412\"* of|strong=\"H3808\"* Ephraim said, “Let|strong=\"H3808\"* me|strong=\"H5674\"* go|strong=\"H5674\"* over|strong=\"H5674\"*,” the|strong=\"H3588\"* men of|strong=\"H3808\"* Gilead|strong=\"H1568\"* said to|strong=\"H1961\"* him|strong=\"H3588\"*, “Are|strong=\"H1961\"* you|strong=\"H3588\"* an|strong=\"H1961\"* Ephraimite?” If|strong=\"H3588\"* he|strong=\"H3588\"* said, “No|strong=\"H3808\"*;”" + }, + { + "verseNum": 6, + "text": "then|strong=\"H1696\"* they|strong=\"H3651\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1931\"*, “Now|strong=\"H4994\"* say|strong=\"H1696\"* ‘Shibboleth|strong=\"H7641\"*;’” and|strong=\"H8147\"* he|strong=\"H1931\"* said|strong=\"H1696\"* “Sibboleth|strong=\"H5451\"*”; for|strong=\"H3559\"* he|strong=\"H1931\"* couldn’t manage to|strong=\"H1696\"* pronounce|strong=\"H1696\"* it|strong=\"H1931\"* correctly|strong=\"H3651\"*, then|strong=\"H1696\"* they|strong=\"H3651\"* seized|strong=\"H5307\"* him|strong=\"H1931\"* and|strong=\"H8147\"* killed|strong=\"H7819\"* him|strong=\"H1931\"* at|strong=\"H3383\"* the|strong=\"H7819\"* fords|strong=\"H4569\"* of|strong=\"H6256\"* the|strong=\"H7819\"* Jordan|strong=\"H3383\"*. At|strong=\"H3383\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, forty-two|strong=\"H8147\"* thousand of|strong=\"H6256\"* Ephraim fell|strong=\"H5307\"*." + }, + { + "verseNum": 7, + "text": "Jephthah|strong=\"H3316\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. Then|strong=\"H3478\"* Jephthah|strong=\"H3316\"* the|strong=\"H8199\"* Gileadite|strong=\"H1569\"* died|strong=\"H4191\"*, and|strong=\"H3478\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H8141\"* the|strong=\"H8199\"* cities|strong=\"H5892\"* of|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 8, + "text": "After him Ibzan|strong=\"H8199\"* of|strong=\"H8199\"* Bethlehem|strong=\"H1035\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* had|strong=\"H1961\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"*. He|strong=\"H4480\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* thirty|strong=\"H7970\"* daughters|strong=\"H1323\"* outside|strong=\"H2351\"* his|strong=\"H7971\"* clan, and|strong=\"H1121\"* he|strong=\"H4480\"* brought|strong=\"H3478\"* in|strong=\"H8141\"* thirty|strong=\"H7970\"* daughters|strong=\"H1323\"* from|strong=\"H4480\"* outside|strong=\"H2351\"* his|strong=\"H7971\"* clan for|strong=\"H7971\"* his|strong=\"H7971\"* sons|strong=\"H1121\"*. He|strong=\"H4480\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 10, + "text": "Ibzan died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* at|strong=\"H4191\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"H8141\"* him, Elon the|strong=\"H8199\"* Zebulunite|strong=\"H2075\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H8141\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "Elon the|strong=\"H4191\"* Zebulunite|strong=\"H2075\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* was buried|strong=\"H6912\"* in|strong=\"H4191\"* Aijalon in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H4191\"* Zebulun|strong=\"H2074\"*." + }, + { + "verseNum": 13, + "text": "After him|strong=\"H1121\"*, Abdon|strong=\"H5658\"* the|strong=\"H8199\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hillel|strong=\"H1985\"* the|strong=\"H8199\"* Pirathonite|strong=\"H6553\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* had|strong=\"H1961\"* forty sons|strong=\"H1121\"* and|strong=\"H1121\"* thirty|strong=\"H7970\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"* who|strong=\"H1121\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* seventy|strong=\"H7657\"* donkey colts|strong=\"H1121\"*. He|strong=\"H5921\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* eight|strong=\"H8083\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 15, + "text": "Abdon|strong=\"H5658\"* the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hillel|strong=\"H1985\"* the|strong=\"H4191\"* Pirathonite|strong=\"H6553\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H4191\"* Pirathon|strong=\"H6552\"* in|strong=\"H4191\"* the|strong=\"H4191\"* land of|strong=\"H1121\"* Ephraim, in|strong=\"H4191\"* the|strong=\"H4191\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* the|strong=\"H4191\"* Amalekites|strong=\"H6003\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H3254\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain man of|strong=\"H3205\"* Zorah|strong=\"H6881\"*, of|strong=\"H3205\"* the|strong=\"H3205\"* family|strong=\"H4940\"* of|strong=\"H3205\"* the|strong=\"H3205\"* Danites|strong=\"H1839\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Manoah|strong=\"H4495\"*; and|strong=\"H6881\"* his|strong=\"H1961\"* wife was|strong=\"H8034\"* barren|strong=\"H6135\"*, and|strong=\"H6881\"* childless|strong=\"H6135\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* woman|strong=\"H6135\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* her|strong=\"H7200\"*, “See|strong=\"H7200\"* now|strong=\"H4994\"*, you|strong=\"H3808\"* are|strong=\"H1121\"* barren|strong=\"H6135\"* and|strong=\"H1121\"* childless|strong=\"H6135\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3068\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* beware|strong=\"H8104\"* and|strong=\"H8354\"* drink|strong=\"H8354\"* no|strong=\"H3605\"* wine|strong=\"H3196\"* nor strong|strong=\"H7941\"* drink|strong=\"H8354\"*, and|strong=\"H8354\"* don’t eat any|strong=\"H3605\"* unclean|strong=\"H2931\"* thing|strong=\"H3605\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"*, behold|strong=\"H2009\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* give|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H3478\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. No|strong=\"H3808\"* razor|strong=\"H4177\"* shall|strong=\"H1121\"* come|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* child|strong=\"H5288\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H3478\"* God|strong=\"H3808\"* from|strong=\"H4480\"* the|strong=\"H5921\"* womb. He|strong=\"H1931\"* shall|strong=\"H1121\"* begin|strong=\"H2490\"* to|strong=\"H3478\"* save|strong=\"H3467\"* Israel|strong=\"H3478\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H2088\"* the|strong=\"H3372\"* woman|strong=\"H2088\"* came|strong=\"H4397\"* and|strong=\"H3372\"* told|strong=\"H5046\"* her|strong=\"H5046\"* husband, saying, “A|strong=\"H3068\"* man|strong=\"H2088\"* of|strong=\"H8034\"* God|strong=\"H3808\"* came|strong=\"H4397\"* to|strong=\"H4397\"* me|strong=\"H5046\"*, and|strong=\"H3372\"* his|strong=\"H5046\"* face|strong=\"H4758\"* was|strong=\"H8034\"* like|strong=\"H4758\"* the|strong=\"H3372\"* face|strong=\"H4758\"* of|strong=\"H8034\"* the|strong=\"H3372\"* angel|strong=\"H4397\"* of|strong=\"H8034\"* God|strong=\"H3808\"*, very|strong=\"H3966\"* awesome|strong=\"H3372\"*. I|strong=\"H2088\"* didn’t ask|strong=\"H7592\"* him|strong=\"H5046\"* where|strong=\"H2088\"* he|strong=\"H1931\"* was|strong=\"H8034\"* from|strong=\"H5046\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* he|strong=\"H1931\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* his|strong=\"H5046\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H5704\"* me|strong=\"H4480\"*, ‘Behold|strong=\"H2009\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* conceive|strong=\"H2029\"* and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* now|strong=\"H6258\"* drink|strong=\"H8354\"* no|strong=\"H4480\"* wine|strong=\"H3196\"* nor|strong=\"H1121\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*. Don’t eat any|strong=\"H3605\"* unclean|strong=\"H2932\"* thing|strong=\"H2932\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* child|strong=\"H5288\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H5704\"* God from|strong=\"H4480\"* the|strong=\"H3605\"* womb to|strong=\"H5704\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3605\"* death|strong=\"H4194\"*.’”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7971\"* Manoah|strong=\"H4495\"* entreated|strong=\"H6279\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, “Oh|strong=\"H4994\"*, Lord|strong=\"H3068\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* the|strong=\"H6213\"* man|strong=\"H5288\"* of|strong=\"H3068\"* God|strong=\"H3068\"* whom you|strong=\"H7971\"* sent|strong=\"H7971\"* come|strong=\"H4994\"* again|strong=\"H5750\"* to|strong=\"H3068\"* us|strong=\"H4994\"*, and|strong=\"H3068\"* teach|strong=\"H3384\"* us|strong=\"H4994\"* what|strong=\"H4100\"* we|strong=\"H3068\"* should|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* the|strong=\"H6213\"* child|strong=\"H5288\"* who|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H5750\"* born|strong=\"H3205\"*.”" + }, + { + "verseNum": 9, + "text": "God listened|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3427\"* Manoah|strong=\"H4495\"*, and|strong=\"H6963\"* the|strong=\"H8085\"* angel|strong=\"H4397\"* of|strong=\"H3427\"* God came|strong=\"H4397\"* again|strong=\"H5750\"* to|strong=\"H8085\"* the|strong=\"H8085\"* woman as|strong=\"H3427\"* she|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* field|strong=\"H7704\"*; but|strong=\"H8085\"* Manoah|strong=\"H4495\"*, her|strong=\"H1931\"* husband, wasn’t with|strong=\"H5973\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* woman hurried|strong=\"H4116\"* and|strong=\"H3117\"* ran|strong=\"H7323\"*, and|strong=\"H3117\"* told|strong=\"H5046\"* her|strong=\"H5046\"* husband, saying to|strong=\"H3117\"* him|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7200\"* man|strong=\"H7200\"* who|strong=\"H7323\"* came to|strong=\"H3117\"* me|strong=\"H7200\"* that|strong=\"H7200\"* day|strong=\"H3117\"* has|strong=\"H3117\"* appeared|strong=\"H7200\"* to|strong=\"H3117\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 11, + "text": "Manoah|strong=\"H4495\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* followed|strong=\"H3212\"* his|strong=\"H6965\"* wife|strong=\"H1696\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H6965\"* man, and|strong=\"H6965\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1696\"*, “Are you|strong=\"H1696\"* the|strong=\"H6965\"* man who spoke|strong=\"H1696\"* to|strong=\"H1696\"* my|strong=\"H6965\"* wife|strong=\"H1696\"*?”" + }, + { + "verseNum": 12, + "text": "Manoah|strong=\"H4495\"* said|strong=\"H1697\"*, “Now|strong=\"H6258\"* let|strong=\"H6258\"* your|strong=\"H1961\"* words|strong=\"H1697\"* happen|strong=\"H1961\"*. What|strong=\"H4100\"* shall|strong=\"H5288\"* the|strong=\"H1697\"* child|strong=\"H5288\"*’s way|strong=\"H1697\"* of|strong=\"H1697\"* life|strong=\"H4941\"* and|strong=\"H4941\"* mission be|strong=\"H1961\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* Manoah|strong=\"H4495\"*, “Of|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* woman let her|strong=\"H3605\"* beware|strong=\"H8104\"*." + }, + { + "verseNum": 14, + "text": "She|strong=\"H3808\"* may|strong=\"H3196\"* not|strong=\"H3808\"* eat of|strong=\"H3605\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* comes|strong=\"H3318\"* of|strong=\"H3605\"* the|strong=\"H3605\"* vine|strong=\"H1612\"*, neither|strong=\"H3808\"* let|strong=\"H3808\"* her|strong=\"H3605\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*, nor|strong=\"H3808\"* eat any|strong=\"H3605\"* unclean|strong=\"H2932\"* thing|strong=\"H2932\"*. Let|strong=\"H3808\"* her|strong=\"H3605\"* observe|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* her|strong=\"H3605\"*.”" + }, + { + "verseNum": 15, + "text": "Manoah|strong=\"H4495\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “Please|strong=\"H4994\"* stay with|strong=\"H3068\"* us|strong=\"H4994\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H4994\"* make|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* ready|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* Manoah|strong=\"H4495\"*, “Though|strong=\"H3588\"* you|strong=\"H3588\"* detain|strong=\"H6113\"* me|strong=\"H6213\"*, I|strong=\"H3588\"* won’t eat|strong=\"H3899\"* your|strong=\"H3068\"* bread|strong=\"H3899\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, you|strong=\"H3588\"* must|strong=\"H3808\"* offer|strong=\"H5927\"* it|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” For|strong=\"H3588\"* Manoah|strong=\"H4495\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 17, + "text": "Manoah|strong=\"H4495\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, “What|strong=\"H1697\"* is|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, that|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3068\"* words|strong=\"H1697\"* happen|strong=\"H1697\"*, we|strong=\"H3068\"* may|strong=\"H3068\"* honor|strong=\"H3513\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said to|strong=\"H3068\"* him|strong=\"H1931\"*, “Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* ask|strong=\"H7592\"* about|strong=\"H8034\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, since it|strong=\"H1931\"* is|strong=\"H3068\"* incomprehensible+ 13:18 or, wonderful*?”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H6213\"* Manoah|strong=\"H4495\"* took|strong=\"H3947\"* the|strong=\"H5921\"* young|strong=\"H1423\"* goat|strong=\"H5795\"* with|strong=\"H3068\"* the|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Then|strong=\"H3947\"* the|strong=\"H5921\"* angel did|strong=\"H6213\"* an|strong=\"H6213\"* amazing|strong=\"H6381\"* thing as|strong=\"H6213\"* Manoah|strong=\"H4495\"* and|strong=\"H3068\"* his|strong=\"H3068\"* wife watched|strong=\"H7200\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H5921\"* when|strong=\"H1961\"* the|strong=\"H6440\"* flame|strong=\"H3851\"* went|strong=\"H5927\"* up|strong=\"H5927\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*, Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* ascended|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H6440\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*. Manoah|strong=\"H4495\"* and|strong=\"H3068\"* his|strong=\"H3068\"* wife watched|strong=\"H7200\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* didn’t appear|strong=\"H7200\"* to|strong=\"H3068\"* Manoah|strong=\"H4495\"* or|strong=\"H3808\"* to|strong=\"H3068\"* his|strong=\"H3068\"* wife any|strong=\"H5750\"* more|strong=\"H3254\"*. Then|strong=\"H3254\"* Manoah|strong=\"H4495\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + }, + { + "verseNum": 22, + "text": "Manoah|strong=\"H4495\"* said to|strong=\"H4191\"* his|strong=\"H7200\"* wife, “We|strong=\"H3588\"* shall|strong=\"H4191\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* God.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* his|strong=\"H3605\"* wife said|strong=\"H8085\"* to|strong=\"H4191\"* him|strong=\"H3027\"*, “If|strong=\"H3863\"* Yahweh|strong=\"H3068\"* were|strong=\"H3027\"* pleased|strong=\"H2654\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* us|strong=\"H7200\"*, he|strong=\"H3068\"* wouldn’t have|strong=\"H3068\"* received|strong=\"H3947\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* at|strong=\"H3068\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* wouldn’t have|strong=\"H3068\"* shown|strong=\"H7200\"* us|strong=\"H7200\"* all|strong=\"H3605\"* these|strong=\"H2063\"* things|strong=\"H3605\"*, nor|strong=\"H3808\"* would|strong=\"H3068\"* he|strong=\"H3068\"* have|strong=\"H3068\"* told|strong=\"H8085\"* us|strong=\"H7200\"* such|strong=\"H2063\"* things|strong=\"H3605\"* as|strong=\"H3068\"* these|strong=\"H2063\"* at|strong=\"H3068\"* this|strong=\"H2063\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3205\"* woman|strong=\"H3205\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* and|strong=\"H1121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Samson|strong=\"H8123\"*. The|strong=\"H3205\"* child|strong=\"H5288\"* grew|strong=\"H1431\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* began|strong=\"H2490\"* to|strong=\"H3068\"* move him|strong=\"H3068\"* in|strong=\"H3068\"* Mahaneh Dan|strong=\"H1835\"*, between|strong=\"H7307\"* Zorah|strong=\"H6881\"* and|strong=\"H3068\"* Eshtaol." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Timnah|strong=\"H8553\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H7200\"* Timnah|strong=\"H8553\"* of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3947\"* came|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* told|strong=\"H5046\"* his|strong=\"H3947\"* father and|strong=\"H7200\"* his|strong=\"H3947\"* mother, saying, “I|strong=\"H6258\"* have|strong=\"H6430\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H5927\"* Timnah|strong=\"H8553\"* of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* get|strong=\"H3947\"* her|strong=\"H3947\"* for|strong=\"H3947\"* me|strong=\"H7200\"* as|strong=\"H5927\"* my|strong=\"H7200\"* wife.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1980\"* his|strong=\"H3605\"* father and|strong=\"H1980\"* his|strong=\"H3605\"* mother said to|strong=\"H1980\"* him|strong=\"H3947\"*, “Isn’t there|strong=\"H3605\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* among|strong=\"H5971\"* your|strong=\"H3605\"* brothers’ daughters|strong=\"H1323\"*, or|strong=\"H1980\"* among|strong=\"H5971\"* all|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1980\"* to|strong=\"H1980\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* his|strong=\"H3068\"* father and|strong=\"H3478\"* his|strong=\"H3068\"* mother didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* sought|strong=\"H1245\"* an|strong=\"H3588\"* occasion|strong=\"H8385\"* against|strong=\"H6430\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*. Now|strong=\"H3588\"* at|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H6256\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* ruled|strong=\"H4910\"* over|strong=\"H4910\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* Samson|strong=\"H8123\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H5704\"* Timnah|strong=\"H8553\"* with|strong=\"H3381\"* his|strong=\"H3381\"* father and|strong=\"H3381\"* his|strong=\"H3381\"* mother, and|strong=\"H3381\"* came|strong=\"H3381\"* to|strong=\"H5704\"* the|strong=\"H5704\"* vineyards|strong=\"H3754\"* of|strong=\"H3754\"* Timnah|strong=\"H8553\"*; and|strong=\"H3381\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* young|strong=\"H3715\"* lion|strong=\"H3715\"* roared|strong=\"H7580\"* at|strong=\"H3754\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H6213\"* tore|strong=\"H8156\"* him|strong=\"H5921\"* as|strong=\"H6213\"* he|strong=\"H6213\"* would|strong=\"H3068\"* have|strong=\"H3068\"* torn a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H1423\"* with|strong=\"H3068\"* his|strong=\"H3068\"* bare hands|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H6213\"* didn’t tell|strong=\"H5046\"* his|strong=\"H3068\"* father or|strong=\"H3808\"* his|strong=\"H3068\"* mother what|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1696\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H5869\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* the|strong=\"H1696\"* woman, and|strong=\"H5869\"* she pleased|strong=\"H3474\"* Samson|strong=\"H8123\"* well|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "After|strong=\"H3117\"* a|strong=\"H3068\"* while|strong=\"H3117\"* he|strong=\"H3117\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* take|strong=\"H3947\"* her|strong=\"H3947\"*, and|strong=\"H7725\"* he|strong=\"H3117\"* went|strong=\"H7725\"* over to|strong=\"H7725\"* see|strong=\"H7200\"* the|strong=\"H7200\"* carcass|strong=\"H1472\"* of|strong=\"H3117\"* the|strong=\"H7200\"* lion; and|strong=\"H7725\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3117\"* a|strong=\"H3068\"* swarm|strong=\"H5712\"* of|strong=\"H3117\"* bees|strong=\"H1682\"* in|strong=\"H3117\"* the|strong=\"H7200\"* body|strong=\"H1472\"* of|strong=\"H3117\"* the|strong=\"H7200\"* lion, and|strong=\"H7725\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* took|strong=\"H1980\"* it|strong=\"H5414\"* into|strong=\"H1980\"* his|strong=\"H5414\"* hands|strong=\"H3709\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* on|strong=\"H1980\"*, eating as|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1980\"*. He|strong=\"H3588\"* came|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H5414\"* father and|strong=\"H1980\"* mother and|strong=\"H1980\"* gave|strong=\"H5414\"* to|strong=\"H1980\"* them|strong=\"H5414\"*, and|strong=\"H1980\"* they|strong=\"H3588\"* ate, but|strong=\"H3588\"* he|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* them|strong=\"H5414\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* taken|strong=\"H7287\"* the|strong=\"H3588\"* honey|strong=\"H1706\"* out|strong=\"H5414\"* of|strong=\"H3709\"* the|strong=\"H3588\"* lion’s body|strong=\"H1472\"*." + }, + { + "verseNum": 10, + "text": "His|strong=\"H6213\"* father went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* woman; and|strong=\"H8033\"* Samson|strong=\"H8123\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* young men|strong=\"H6213\"* used|strong=\"H6213\"* to|strong=\"H3381\"* do|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* they|strong=\"H3947\"* saw|strong=\"H7200\"* him|strong=\"H7200\"*, they|strong=\"H3947\"* brought|strong=\"H3947\"* thirty|strong=\"H7970\"* companions|strong=\"H4828\"* to|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H3947\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 12, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “Let|strong=\"H4994\"* me|strong=\"H5414\"* tell|strong=\"H5046\"* you|strong=\"H5414\"* a|strong=\"H3068\"* riddle|strong=\"H2420\"* now|strong=\"H4994\"*. If you|strong=\"H5414\"* can|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H5414\"* the|strong=\"H5414\"* answer within the|strong=\"H5414\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5414\"* feast|strong=\"H4960\"*, and|strong=\"H3117\"* find|strong=\"H4672\"* it|strong=\"H5414\"* out|strong=\"H4672\"*, then|strong=\"H5414\"* I|strong=\"H3117\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* thirty|strong=\"H7970\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H3117\"* thirty|strong=\"H7970\"* changes|strong=\"H2487\"* of|strong=\"H3117\"* clothing;" + }, + { + "verseNum": 13, + "text": "but|strong=\"H3808\"* if you|strong=\"H5414\"* can|strong=\"H3201\"*’t tell|strong=\"H5046\"* me|strong=\"H5414\"* the|strong=\"H8085\"* answer, then|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3808\"* give|strong=\"H5414\"* me|strong=\"H5414\"* thirty|strong=\"H7970\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H7970\"* thirty|strong=\"H7970\"* changes|strong=\"H2487\"* of|strong=\"H2487\"* clothing.”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3117\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*," + }, + { + "verseNum": 15, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* said|strong=\"H7121\"* to|strong=\"H1961\"* Samson|strong=\"H8123\"*’s wife, “Entice|strong=\"H6601\"* your|strong=\"H1961\"* husband, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H1961\"* declare|strong=\"H5046\"* to|strong=\"H1961\"* us|strong=\"H5046\"* the|strong=\"H3117\"* riddle|strong=\"H2420\"*, lest|strong=\"H6435\"* we|strong=\"H3068\"* burn|strong=\"H8313\"* you|strong=\"H3117\"* and|strong=\"H3117\"* your|strong=\"H1961\"* father’s house|strong=\"H1004\"* with|strong=\"H8313\"* fire. Have|strong=\"H1961\"* you|strong=\"H3117\"* called|strong=\"H7121\"* us|strong=\"H5046\"* to|strong=\"H1961\"* impoverish|strong=\"H3423\"* us|strong=\"H5046\"*? Isn’t that|strong=\"H3117\"* so|strong=\"H6435\"*?”" + }, + { + "verseNum": 16, + "text": "Samson|strong=\"H8123\"*’s wife wept|strong=\"H1058\"* before|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* said, “You|strong=\"H5921\"* just hate|strong=\"H8130\"* me|strong=\"H5046\"*, and|strong=\"H1121\"* don’t love me|strong=\"H5046\"*. You|strong=\"H5921\"*’ve told|strong=\"H5046\"* a|strong=\"H3068\"* riddle|strong=\"H2420\"* to|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* haven’t told|strong=\"H5046\"* it|strong=\"H5921\"* to|strong=\"H5921\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H3588\"* wept|strong=\"H1058\"* before|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, while|strong=\"H1961\"* their|strong=\"H5921\"* feast|strong=\"H4960\"* lasted|strong=\"H1961\"*; and|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, he|strong=\"H3588\"* told|strong=\"H5046\"* her|strong=\"H5046\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* pressed|strong=\"H6693\"* him|strong=\"H5921\"* severely; and|strong=\"H1121\"* she|strong=\"H3588\"* told|strong=\"H5046\"* the|strong=\"H5921\"* riddle|strong=\"H2420\"* to|strong=\"H1961\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* her|strong=\"H5046\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3117\"* men|strong=\"H5794\"* of|strong=\"H3117\"* the|strong=\"H3117\"* city|strong=\"H5892\"* said|strong=\"H2790\"* to|strong=\"H3117\"* him|strong=\"H4672\"* on|strong=\"H3117\"* the|strong=\"H3117\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* before|strong=\"H2962\"* the|strong=\"H3117\"* sun|strong=\"H2775\"* went|strong=\"H5892\"* down, “What|strong=\"H4100\"* is|strong=\"H4100\"* sweeter|strong=\"H4966\"* than|strong=\"H3808\"* honey|strong=\"H1706\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* stronger|strong=\"H5794\"* than|strong=\"H3808\"* a|strong=\"H3068\"* lion?”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H5927\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ashkelon and|strong=\"H3068\"* struck|strong=\"H5221\"* thirty|strong=\"H7970\"* men|strong=\"H1992\"* of|strong=\"H1004\"* them|strong=\"H5414\"*. He|strong=\"H3068\"* took|strong=\"H3947\"* their|strong=\"H3068\"* plunder, then|strong=\"H3947\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* changes|strong=\"H2487\"* of|strong=\"H1004\"* clothing to|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3068\"* declared|strong=\"H5046\"* the|strong=\"H5921\"* riddle|strong=\"H2420\"*. His|strong=\"H5414\"* anger|strong=\"H7307\"* burned|strong=\"H2734\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1961\"* Samson|strong=\"H8123\"*’s wife was|strong=\"H1961\"* given to|strong=\"H1961\"* his|strong=\"H1961\"* companion|strong=\"H4828\"*, who|strong=\"H7462\"* had|strong=\"H1961\"* been|strong=\"H1961\"* his|strong=\"H1961\"* friend|strong=\"H7462\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3808\"* after|strong=\"H1961\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, in|strong=\"H3117\"* the|strong=\"H5414\"* time|strong=\"H3117\"* of|strong=\"H3117\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*, Samson|strong=\"H8123\"* visited|strong=\"H6485\"* his|strong=\"H5414\"* wife with|strong=\"H3117\"* a|strong=\"H3068\"* young|strong=\"H1423\"* goat|strong=\"H5795\"*. He|strong=\"H3117\"* said, “I|strong=\"H3117\"* will|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H3117\"* to|strong=\"H1961\"* my|strong=\"H5414\"* wife’s room|strong=\"H2315\"*.”" + }, + { + "verseNum": 2, + "text": "Her|strong=\"H5414\"* father said, “I|strong=\"H3588\"* most|strong=\"H2896\"* certainly|strong=\"H3588\"* thought that|strong=\"H3588\"* you|strong=\"H3588\"* utterly|strong=\"H8130\"* hated|strong=\"H8130\"* her|strong=\"H5414\"*; therefore|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H5414\"* companion|strong=\"H4828\"*. Isn’t her|strong=\"H5414\"* younger|strong=\"H6996\"* sister more|strong=\"H4480\"* beautiful|strong=\"H2896\"* than|strong=\"H4480\"* she|strong=\"H3588\"*? Please|strong=\"H4994\"*, take|strong=\"H1961\"* her|strong=\"H5414\"* instead|strong=\"H8478\"*.”" + }, + { + "verseNum": 3, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “This|strong=\"H6213\"* time|strong=\"H6471\"* I|strong=\"H3588\"* will|strong=\"H6430\"* be|strong=\"H7451\"* blameless|strong=\"H5352\"* in|strong=\"H6213\"* the|strong=\"H3588\"* case|strong=\"H3588\"* of|strong=\"H6213\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* when|strong=\"H3588\"* I|strong=\"H3588\"* harm|strong=\"H7451\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3212\"* and|strong=\"H3967\"* caught|strong=\"H3920\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* foxes|strong=\"H7776\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* torches|strong=\"H3940\"*, and|strong=\"H3967\"* turned|strong=\"H6437\"* tail|strong=\"H2180\"* to|strong=\"H3212\"* tail|strong=\"H2180\"*, and|strong=\"H3967\"* put|strong=\"H7760\"* a|strong=\"H3068\"* torch|strong=\"H3940\"* in|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* between|strong=\"H8432\"* every|strong=\"H3212\"* two|strong=\"H8147\"* tails|strong=\"H2180\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H6430\"* set|strong=\"H7971\"* the|strong=\"H5704\"* torches|strong=\"H3940\"* on|strong=\"H7971\"* fire, he|strong=\"H5704\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"* into|strong=\"H5704\"* the|strong=\"H5704\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"* of|strong=\"H3754\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"*, and|strong=\"H7971\"* burned|strong=\"H1197\"* up|strong=\"H5704\"* both the|strong=\"H5704\"* shocks|strong=\"H1430\"* and|strong=\"H7971\"* the|strong=\"H5704\"* standing|strong=\"H7054\"* grain|strong=\"H7054\"*, and|strong=\"H7971\"* also|strong=\"H6430\"* the|strong=\"H5704\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* said, “Who|strong=\"H4310\"* has|strong=\"H4310\"* done|strong=\"H6213\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 7, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “If|strong=\"H3588\"* you|strong=\"H3588\"* behave|strong=\"H6213\"* like|strong=\"H6213\"* this|strong=\"H2063\"*, surely|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6213\"* take|strong=\"H5358\"* revenge|strong=\"H5358\"* on|strong=\"H6213\"* you|strong=\"H3588\"*, and|strong=\"H6213\"* after|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6213\"* cease|strong=\"H2308\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* struck|strong=\"H5221\"* them|strong=\"H5921\"* hip|strong=\"H3409\"* and|strong=\"H1419\"* thigh|strong=\"H3409\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; and|strong=\"H1419\"* he|strong=\"H5921\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1419\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cave in|strong=\"H3427\"* Etam|strong=\"H5862\"*’s rock|strong=\"H5553\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, encamped|strong=\"H2583\"* in|strong=\"H2583\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* spread|strong=\"H5203\"* themselves in|strong=\"H2583\"* Lehi|strong=\"H3896\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* men|strong=\"H6213\"* of|strong=\"H5921\"* Judah|strong=\"H3063\"* said, “Why|strong=\"H4100\"* have|strong=\"H3063\"* you|strong=\"H5921\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* three|strong=\"H7969\"* thousand men|strong=\"H6213\"* of|strong=\"H6213\"* Judah|strong=\"H3063\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3588\"* cave in|strong=\"H6213\"* Etam|strong=\"H5862\"*’s rock|strong=\"H5553\"*, and|strong=\"H3063\"* said|strong=\"H3651\"* to|strong=\"H3381\"* Samson|strong=\"H8123\"*, “Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* are|strong=\"H4100\"* rulers|strong=\"H4910\"* over|strong=\"H4910\"* us|strong=\"H6213\"*? What|strong=\"H4100\"* then|strong=\"H3651\"* is|strong=\"H4100\"* this|strong=\"H2063\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H3381\"* us|strong=\"H6213\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3027\"* said to|strong=\"H3381\"* him|strong=\"H5414\"*, “We|strong=\"H6435\"* have|strong=\"H6430\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* bind you|strong=\"H5414\"*, that|strong=\"H5414\"* we|strong=\"H3068\"* may|strong=\"H5414\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3381\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3588\"* spoke to|strong=\"H4191\"* him|strong=\"H5414\"*, saying, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3027\"* bind you|strong=\"H3588\"* securely and|strong=\"H3027\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5927\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*; but|strong=\"H3588\"* surely|strong=\"H4191\"* we|strong=\"H3068\"* will|strong=\"H3027\"* not|strong=\"H3808\"* kill|strong=\"H4191\"* you|strong=\"H3588\"*.” They|strong=\"H3588\"* bound him|strong=\"H5414\"* with|strong=\"H3027\"* two|strong=\"H8147\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"*, and|strong=\"H3027\"* brought|strong=\"H5927\"* him|strong=\"H5414\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3588\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Lehi|strong=\"H3896\"*, the|strong=\"H5921\"* Philistines|strong=\"H6430\"* shouted|strong=\"H7321\"* as|strong=\"H5704\"* they|strong=\"H3068\"* met|strong=\"H7125\"* him|strong=\"H5921\"*. Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* ropes|strong=\"H5688\"* that|strong=\"H1931\"* were|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3068\"* arms|strong=\"H2220\"* became|strong=\"H1961\"* as|strong=\"H5704\"* flax|strong=\"H6593\"* that|strong=\"H1931\"* was|strong=\"H3068\"* burned|strong=\"H1197\"* with|strong=\"H3068\"* fire; and|strong=\"H3068\"* his|strong=\"H3068\"* bands|strong=\"H5688\"* dropped|strong=\"H4549\"* from|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H3068\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3027\"* found|strong=\"H4672\"* a|strong=\"H3068\"* fresh|strong=\"H2961\"* jawbone|strong=\"H3895\"* of|strong=\"H3027\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, took|strong=\"H3947\"* it|strong=\"H5221\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* a|strong=\"H3068\"* thousand men|strong=\"H3947\"* with|strong=\"H3027\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Samson|strong=\"H8123\"* said, “With|strong=\"H5221\"* the|strong=\"H5221\"* jawbone|strong=\"H3895\"* of|strong=\"H5221\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*, heaps|strong=\"H2565\"* on|strong=\"H5221\"* heaps|strong=\"H2565\"*; with|strong=\"H5221\"* the|strong=\"H5221\"* jawbone|strong=\"H3895\"* of|strong=\"H5221\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* I have struck|strong=\"H5221\"* a|strong=\"H3068\"* thousand men.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, he|strong=\"H1931\"* threw|strong=\"H7993\"* the|strong=\"H7121\"* jawbone|strong=\"H3895\"* out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* that|strong=\"H1931\"* place|strong=\"H4725\"* was|strong=\"H1961\"* called|strong=\"H7121\"* Ramath|strong=\"H7437\"* Lehi.+ 15:17 “Ramath” means “hill” and “Lehi” means “jawbone”.*" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H3966\"* thirsty|strong=\"H6770\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H5307\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “You|strong=\"H5414\"* have|strong=\"H3068\"* given|strong=\"H5414\"* this|strong=\"H2063\"* great|strong=\"H1419\"* deliverance|strong=\"H8668\"* by|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; and|strong=\"H3068\"* now|strong=\"H6258\"* shall|strong=\"H3068\"* I|strong=\"H5414\"* die|strong=\"H4191\"* of|strong=\"H3068\"* thirst|strong=\"H6772\"*, and|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3651\"* God split|strong=\"H1234\"* the|strong=\"H5921\"* hollow|strong=\"H4388\"* place|strong=\"H4388\"* that|strong=\"H3117\"* is|strong=\"H2088\"* in|strong=\"H5921\"* Lehi|strong=\"H3896\"*, and|strong=\"H7725\"* water|strong=\"H4325\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* it|strong=\"H7121\"*. When|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H4325\"* drunk|strong=\"H8354\"*, his|strong=\"H7121\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H3117\"* revived|strong=\"H2421\"*. Therefore|strong=\"H3651\"* its|strong=\"H5921\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* En Hakkore, which|strong=\"H4325\"* is|strong=\"H2088\"* in|strong=\"H5921\"* Lehi|strong=\"H3896\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3117\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Samson|strong=\"H8123\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gaza|strong=\"H5804\"*, and|strong=\"H3212\"* saw|strong=\"H7200\"* there|strong=\"H8033\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* in|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* Gazites|strong=\"H5841\"* were|strong=\"H5892\"* told, “Samson|strong=\"H8123\"* is|strong=\"H3605\"* here|strong=\"H2008\"*!” They|strong=\"H5704\"* surrounded|strong=\"H5437\"* him|strong=\"H3605\"* and|strong=\"H5892\"* laid wait for|strong=\"H5704\"* him|strong=\"H3605\"* all|strong=\"H3605\"* night|strong=\"H3915\"* in|strong=\"H5892\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* were|strong=\"H5892\"* quiet|strong=\"H2790\"* all|strong=\"H3605\"* the|strong=\"H3605\"* night|strong=\"H3915\"*, saying, “Wait until|strong=\"H5704\"* morning|strong=\"H1242\"* light; then|strong=\"H3605\"* we|strong=\"H3068\"* will|strong=\"H5892\"* kill|strong=\"H2026\"* him|strong=\"H3605\"*.”" + }, + { + "verseNum": 3, + "text": "Samson|strong=\"H8123\"* lay|strong=\"H7901\"* until|strong=\"H5704\"* midnight|strong=\"H2677\"*, then|strong=\"H6965\"* arose|strong=\"H6965\"* at|strong=\"H5921\"* midnight|strong=\"H2677\"* and|strong=\"H6965\"* took|strong=\"H5927\"* hold|strong=\"H6965\"* of|strong=\"H5892\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* of|strong=\"H5892\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, with|strong=\"H5973\"* the|strong=\"H6440\"* two|strong=\"H8147\"* posts|strong=\"H4201\"*, and|strong=\"H6965\"* plucked|strong=\"H5265\"* them|strong=\"H5921\"* up|strong=\"H5927\"*, bar|strong=\"H1280\"* and|strong=\"H6965\"* all|strong=\"H5704\"*, and|strong=\"H6965\"* put|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H7760\"* shoulders|strong=\"H3802\"* and|strong=\"H6965\"* carried|strong=\"H5927\"* them|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H5892\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H5892\"* is|strong=\"H5892\"* before|strong=\"H6440\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H3651\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* afterward that|strong=\"H3651\"* he|strong=\"H3651\"* loved a|strong=\"H3068\"* woman|strong=\"H8034\"* in|strong=\"H8034\"* the|strong=\"H1961\"* valley|strong=\"H5158\"* of|strong=\"H8034\"* Sorek|strong=\"H7796\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Delilah|strong=\"H1807\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* lords|strong=\"H5633\"* of|strong=\"H3701\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3201\"* her|strong=\"H5414\"* and|strong=\"H3967\"* said to|strong=\"H3201\"* her|strong=\"H5414\"*, “Entice|strong=\"H6601\"* him|strong=\"H5414\"*, and|strong=\"H3967\"* see|strong=\"H7200\"* in|strong=\"H1419\"* which|strong=\"H4100\"* his|strong=\"H5414\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies|strong=\"H5414\"*, and|strong=\"H3967\"* by|strong=\"H5414\"* what|strong=\"H4100\"* means|strong=\"H5927\"* we|strong=\"H3068\"* may|strong=\"H3201\"* prevail|strong=\"H3201\"* against|strong=\"H5927\"* him|strong=\"H5414\"*, that|strong=\"H7200\"* we|strong=\"H3068\"* may|strong=\"H3201\"* bind him|strong=\"H5414\"* to|strong=\"H3201\"* afflict|strong=\"H6031\"* him|strong=\"H5414\"*; and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H5414\"* each|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H3701\"* silver|strong=\"H3701\"*.”" + }, + { + "verseNum": 6, + "text": "Delilah|strong=\"H1807\"* said to|strong=\"H5046\"* Samson|strong=\"H8123\"*, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* where|strong=\"H4100\"* your|strong=\"H4994\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies, and|strong=\"H1419\"* what|strong=\"H4100\"* you|strong=\"H5046\"* might|strong=\"H3581\"* be|strong=\"H4994\"* bound to|strong=\"H5046\"* afflict|strong=\"H6031\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 7, + "text": "Samson|strong=\"H8123\"* said to|strong=\"H1961\"* her|strong=\"H1961\"*, “If|strong=\"H1961\"* they|strong=\"H3808\"* bind me|strong=\"H1961\"* with|strong=\"H1961\"* seven|strong=\"H7651\"* green|strong=\"H3892\"* cords|strong=\"H3499\"* that|strong=\"H3808\"* were|strong=\"H1961\"* never|strong=\"H3808\"* dried|strong=\"H2717\"*, then|strong=\"H1961\"* shall|strong=\"H3808\"* I|strong=\"H3808\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H7651\"* be|strong=\"H1961\"* as|strong=\"H1961\"* another|strong=\"H3808\"* man.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* lords|strong=\"H5633\"* of|strong=\"H3499\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* her|strong=\"H2717\"* seven|strong=\"H7651\"* green|strong=\"H3892\"* cords|strong=\"H3499\"* which had|strong=\"H6430\"* not|strong=\"H3808\"* been|strong=\"H3808\"* dried|strong=\"H2717\"*, and|strong=\"H5927\"* she|strong=\"H3808\"* bound him|strong=\"H5927\"* with|strong=\"H5927\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H5921\"* she|strong=\"H5921\"* had|strong=\"H6430\"* an|strong=\"H3427\"* ambush waiting in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*. She|strong=\"H5921\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” He|strong=\"H3808\"* broke|strong=\"H5423\"* the|strong=\"H5921\"* cords|strong=\"H3499\"* as|strong=\"H3427\"* a|strong=\"H3068\"* flax thread|strong=\"H6616\"* is|strong=\"H3581\"* broken|strong=\"H5423\"* when|strong=\"H3427\"* it|strong=\"H5921\"* touches the|strong=\"H5921\"* fire. So|strong=\"H3808\"* his|strong=\"H5921\"* strength|strong=\"H3581\"* was|strong=\"H6430\"* not|strong=\"H3808\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 10, + "text": "Delilah|strong=\"H1807\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samson|strong=\"H8123\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5046\"* have|strong=\"H6258\"* mocked|strong=\"H2048\"* me|strong=\"H4994\"*, and|strong=\"H1696\"* told|strong=\"H5046\"* me|strong=\"H4994\"* lies|strong=\"H3576\"*. Now|strong=\"H6258\"* please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* how|strong=\"H4100\"* you|strong=\"H5046\"* might be|strong=\"H4994\"* bound.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* said to|strong=\"H1961\"* her|strong=\"H6213\"*, “If|strong=\"H1961\"* they|strong=\"H3808\"* only bind me|strong=\"H6213\"* with|strong=\"H6213\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"* with|strong=\"H6213\"* which|strong=\"H4399\"* no|strong=\"H3808\"* work|strong=\"H4399\"* has|strong=\"H1961\"* been|strong=\"H1961\"* done|strong=\"H6213\"*, then|strong=\"H1961\"* I|strong=\"H3808\"* will|strong=\"H1961\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H6213\"* be|strong=\"H1961\"* as|strong=\"H1961\"* another|strong=\"H3808\"* man.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* Delilah|strong=\"H1807\"* took|strong=\"H3947\"* new|strong=\"H2319\"* ropes|strong=\"H5688\"* and|strong=\"H6430\"* bound him|strong=\"H5921\"* with|strong=\"H5921\"* them|strong=\"H5921\"*, then|strong=\"H3947\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” The|strong=\"H5921\"* ambush was|strong=\"H6430\"* waiting in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*. He|strong=\"H5921\"* broke|strong=\"H5423\"* them|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H3947\"* arms|strong=\"H2220\"* like|strong=\"H5423\"* a|strong=\"H3068\"* thread|strong=\"H2339\"*." + }, + { + "verseNum": 13, + "text": "Delilah|strong=\"H1807\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samson|strong=\"H8123\"*, “Until|strong=\"H5704\"* now|strong=\"H2008\"*, you|strong=\"H5704\"* have|strong=\"H1696\"* mocked|strong=\"H2048\"* me|strong=\"H5046\"* and|strong=\"H7218\"* told|strong=\"H5046\"* me|strong=\"H5046\"* lies|strong=\"H3576\"*. Tell|strong=\"H5046\"* me|strong=\"H5046\"* with|strong=\"H5973\"* what|strong=\"H4100\"* you|strong=\"H5704\"* might be bound.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H5921\"* fastened|strong=\"H8628\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* pin|strong=\"H3489\"*, and|strong=\"H6430\"* said to|strong=\"H5921\"* him|strong=\"H5921\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H6430\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, Samson|strong=\"H8123\"*!” He|strong=\"H5921\"* awakened|strong=\"H3364\"* out|strong=\"H5265\"* of|strong=\"H5921\"* his|strong=\"H5921\"* sleep|strong=\"H8142\"*, and|strong=\"H6430\"* plucked|strong=\"H5265\"* away|strong=\"H5265\"* the|strong=\"H5921\"* pin|strong=\"H3489\"* of|strong=\"H5921\"* the|strong=\"H5921\"* beam and|strong=\"H6430\"* the|strong=\"H5921\"* fabric|strong=\"H4545\"*." + }, + { + "verseNum": 15, + "text": "She|strong=\"H3820\"* said to|strong=\"H3820\"* him|strong=\"H5046\"*, “How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H5046\"* say, ‘I|strong=\"H2088\"* love you|strong=\"H5046\"*,’ when your|strong=\"H3808\"* heart|strong=\"H3820\"* is|strong=\"H2088\"* not|strong=\"H3808\"* with|strong=\"H3820\"* me|strong=\"H5046\"*? You|strong=\"H5046\"* have|strong=\"H3808\"* mocked|strong=\"H2048\"* me|strong=\"H5046\"* these|strong=\"H2088\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H1419\"* have|strong=\"H3808\"* not|strong=\"H3808\"* told|strong=\"H5046\"* me|strong=\"H5046\"* where|strong=\"H4100\"* your|strong=\"H3808\"* great|strong=\"H1419\"* strength|strong=\"H3581\"* lies.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* pressed|strong=\"H6693\"* him|strong=\"H4191\"* daily|strong=\"H3117\"* with|strong=\"H1697\"* her|strong=\"H3605\"* words|strong=\"H1697\"* and|strong=\"H3117\"* urged him|strong=\"H4191\"*, his|strong=\"H3605\"* soul|strong=\"H5315\"* was|strong=\"H1961\"* troubled|strong=\"H7114\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* told|strong=\"H5046\"* her|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H7218\"* said to|strong=\"H5927\"* her|strong=\"H3605\"*, “No|strong=\"H3808\"* razor|strong=\"H4177\"* has|strong=\"H1961\"* ever|strong=\"H3808\"* come|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H3605\"* head|strong=\"H7218\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* Nazirite|strong=\"H5139\"* to|strong=\"H5927\"* God|strong=\"H3808\"* from|strong=\"H4480\"* my|strong=\"H3605\"* mother’s womb. If|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* shaved|strong=\"H1548\"*, then|strong=\"H1961\"* my|strong=\"H3605\"* strength|strong=\"H3581\"* will|strong=\"H1961\"* go|strong=\"H5927\"* from|strong=\"H4480\"* me|strong=\"H5046\"* and|strong=\"H7218\"* I|strong=\"H3588\"* will|strong=\"H1961\"* become|strong=\"H1961\"* weak|strong=\"H2470\"*, and|strong=\"H7218\"* be|strong=\"H1961\"* like|strong=\"H1961\"* any|strong=\"H3605\"* other|strong=\"H3605\"* man|strong=\"H3605\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Delilah|strong=\"H1807\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H6430\"* told|strong=\"H5046\"* her|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, she|strong=\"H3588\"* sent|strong=\"H7971\"* and|strong=\"H3701\"* called|strong=\"H7121\"* for|strong=\"H3588\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, saying, “Come|strong=\"H5927\"* up|strong=\"H5927\"* this|strong=\"H7200\"* once|strong=\"H6471\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3820\"* told|strong=\"H5046\"* me|strong=\"H7971\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*.” Then|strong=\"H7971\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* her|strong=\"H3605\"* and|strong=\"H3701\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* money|strong=\"H3701\"* in|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "She|strong=\"H7121\"* made|strong=\"H7121\"* him|strong=\"H7121\"* sleep|strong=\"H3462\"* on|strong=\"H5921\"* her|strong=\"H5493\"* knees|strong=\"H1290\"*; and|strong=\"H7218\"* she|strong=\"H7121\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H7218\"* and|strong=\"H7218\"* shaved|strong=\"H1548\"* off|strong=\"H5493\"* the|strong=\"H5921\"* seven|strong=\"H7651\"* locks|strong=\"H4253\"* of|strong=\"H7218\"* his|strong=\"H7121\"* head|strong=\"H7218\"*; and|strong=\"H7218\"* she|strong=\"H7121\"* began|strong=\"H2490\"* to|strong=\"H5921\"* afflict|strong=\"H6031\"* him|strong=\"H7121\"*, and|strong=\"H7218\"* his|strong=\"H7121\"* strength|strong=\"H3581\"* went|strong=\"H7218\"* from|strong=\"H5493\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H1931\"* said|strong=\"H3318\"*, “The|strong=\"H5921\"* Philistines|strong=\"H6430\"* are|strong=\"H3068\"* upon|strong=\"H5921\"* you|strong=\"H3588\"*, Samson|strong=\"H8123\"*!”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* laid hold|strong=\"H1004\"* on|strong=\"H1961\"* him|strong=\"H3381\"* and|strong=\"H1004\"* put|strong=\"H3381\"* out|strong=\"H5365\"* his|strong=\"H1961\"* eyes|strong=\"H5869\"*; and|strong=\"H1004\"* they|strong=\"H5178\"* brought|strong=\"H3381\"* him|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gaza|strong=\"H5804\"* and|strong=\"H1004\"* bound him|strong=\"H3381\"* with|strong=\"H1004\"* fetters|strong=\"H5178\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* ground|strong=\"H2912\"* at|strong=\"H1004\"* the|strong=\"H1961\"* mill in|strong=\"H1004\"* the|strong=\"H1961\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "However, the|strong=\"H2490\"* hair|strong=\"H8181\"* of|strong=\"H7218\"* his|strong=\"H1548\"* head|strong=\"H7218\"* began|strong=\"H2490\"* to|strong=\"H2490\"* grow|strong=\"H6779\"* again|strong=\"H6779\"* after|strong=\"H6779\"* he was|strong=\"H7218\"* shaved|strong=\"H1548\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5414\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6430\"* together to|strong=\"H5414\"* offer|strong=\"H2076\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* to|strong=\"H5414\"* Dagon|strong=\"H1712\"* their|strong=\"H5414\"* god|strong=\"H5414\"*, and|strong=\"H1419\"* to|strong=\"H5414\"* rejoice|strong=\"H8057\"*; for|strong=\"H3027\"* they|strong=\"H3027\"* said, “Our|strong=\"H5414\"* god|strong=\"H5414\"* has|strong=\"H3027\"* delivered|strong=\"H5414\"* Samson|strong=\"H8123\"* our|strong=\"H5414\"* enemy into|strong=\"H3027\"* our|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* him|strong=\"H5414\"*, they|strong=\"H3588\"* praised|strong=\"H1984\"* their|strong=\"H5414\"* god|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Our|strong=\"H5414\"* god|strong=\"H5414\"* has|strong=\"H3588\"* delivered|strong=\"H5414\"* our|strong=\"H5414\"* enemy and|strong=\"H3027\"* the|strong=\"H7200\"* destroyer|strong=\"H2717\"* of|strong=\"H3027\"* our|strong=\"H5414\"* country, who|strong=\"H5971\"* has|strong=\"H3588\"* slain|strong=\"H2491\"* many|strong=\"H7235\"* of|strong=\"H3027\"* us|strong=\"H5414\"*, into|strong=\"H3027\"* our|strong=\"H5414\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* their|strong=\"H6440\"* hearts|strong=\"H3820\"* were|strong=\"H1961\"* merry|strong=\"H2896\"*, they|strong=\"H3588\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* for|strong=\"H3588\"* Samson|strong=\"H8123\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1961\"* entertain|strong=\"H7832\"* us|strong=\"H6440\"*.” They|strong=\"H3588\"* called|strong=\"H7121\"* for|strong=\"H3588\"* Samson|strong=\"H8123\"* out|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* prison|strong=\"H1004\"*; and|strong=\"H1004\"* he|strong=\"H3588\"* performed before|strong=\"H6440\"* them|strong=\"H6440\"*. They|strong=\"H3588\"* set|strong=\"H5975\"* him|strong=\"H6440\"* between the|strong=\"H6440\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3027\"* Samson|strong=\"H8123\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* boy|strong=\"H5288\"* who|strong=\"H5288\"* held|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"*, “Allow|strong=\"H3240\"* me|strong=\"H5921\"* to|strong=\"H5921\"* feel|strong=\"H3559\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* on|strong=\"H5921\"* which|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* rests|strong=\"H3559\"*, that|strong=\"H5288\"* I|strong=\"H5921\"* may|strong=\"H1004\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 27, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1004\"* full|strong=\"H4390\"* of|strong=\"H1004\"* men|strong=\"H3605\"* and|strong=\"H1004\"* women; and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* were|strong=\"H6430\"* there|strong=\"H8033\"*; and|strong=\"H1004\"* there|strong=\"H8033\"* were|strong=\"H6430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* roof|strong=\"H1406\"* about|strong=\"H5921\"* three|strong=\"H7969\"* thousand men|strong=\"H3605\"* and|strong=\"H1004\"* women, who|strong=\"H3605\"* saw|strong=\"H7200\"* while|strong=\"H5921\"* Samson|strong=\"H8123\"* performed." + }, + { + "verseNum": 28, + "text": "Samson|strong=\"H8123\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, and|strong=\"H3068\"* strengthen|strong=\"H2388\"* me|strong=\"H4994\"*, please|strong=\"H4994\"*, only this|strong=\"H2088\"* once|strong=\"H6471\"*, God|strong=\"H3068\"*, that|strong=\"H3068\"* I|strong=\"H2088\"* may|strong=\"H4994\"* be|strong=\"H3068\"* at|strong=\"H3068\"* once|strong=\"H6471\"* avenged|strong=\"H5358\"* of|strong=\"H3068\"* the|strong=\"H3069\"* Philistines|strong=\"H6430\"* for|strong=\"H7121\"* my|strong=\"H3068\"* two|strong=\"H8147\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 29, + "text": "Samson|strong=\"H8123\"* took|strong=\"H8123\"* hold|strong=\"H3943\"* of|strong=\"H1004\"* the|strong=\"H5921\"* two|strong=\"H8147\"* middle|strong=\"H8432\"* pillars|strong=\"H5982\"* on|strong=\"H5921\"* which|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* rested|strong=\"H5564\"* and|strong=\"H1004\"* leaned|strong=\"H5564\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, the|strong=\"H5921\"* one|strong=\"H8147\"* with|strong=\"H1004\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1004\"* the|strong=\"H5921\"* other|strong=\"H8147\"* with|strong=\"H1004\"* his|strong=\"H5921\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 30, + "text": "Samson|strong=\"H8123\"* said, “Let|strong=\"H5186\"* me|strong=\"H5315\"* die|strong=\"H4191\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*!” He|strong=\"H3605\"* bowed|strong=\"H5186\"* himself|strong=\"H5315\"* with|strong=\"H5973\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H3581\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* lords|strong=\"H5633\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* it|strong=\"H5921\"*. So|strong=\"H1961\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* that|strong=\"H5971\"* he|strong=\"H3605\"* killed|strong=\"H4191\"* at|strong=\"H5921\"* his|strong=\"H3605\"* death|strong=\"H4194\"* were|strong=\"H1961\"* more|strong=\"H7227\"* than|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* he|strong=\"H3605\"* killed|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3605\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H5375\"* his|strong=\"H3605\"* brothers and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father came|strong=\"H5927\"* down|strong=\"H3381\"* and|strong=\"H3478\"* took|strong=\"H5375\"* him|strong=\"H3381\"*, and|strong=\"H3478\"* brought|strong=\"H5927\"* him|strong=\"H3381\"* up|strong=\"H5927\"* and|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H3381\"* between|strong=\"H8199\"* Zorah|strong=\"H6881\"* and|strong=\"H3478\"* Eshtaol in|strong=\"H8141\"* the|strong=\"H3605\"* burial|strong=\"H6913\"* site of|strong=\"H1004\"* Manoah|strong=\"H4495\"* his|strong=\"H3605\"* father. He|strong=\"H1931\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man of|strong=\"H2022\"* the|strong=\"H1961\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim|strong=\"H8034\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Micah|strong=\"H4319\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* his|strong=\"H3068\"* mother, “The|strong=\"H3947\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* that|strong=\"H3068\"* were|strong=\"H1121\"* taken|strong=\"H3947\"* from|strong=\"H1121\"* you|strong=\"H3947\"*, about|strong=\"H3947\"* which|strong=\"H3068\"* you|strong=\"H3947\"* uttered a|strong=\"H3068\"* curse|strong=\"H1288\"*, and|strong=\"H3967\"* also|strong=\"H1571\"* spoke it|strong=\"H3947\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears—behold|strong=\"H2009\"*, the|strong=\"H3947\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H3947\"*. I|strong=\"H2009\"* took|strong=\"H3947\"* it|strong=\"H3947\"*.”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* restored|strong=\"H7725\"* the|strong=\"H6213\"* eleven hundred|strong=\"H3967\"* pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* to|strong=\"H7725\"* his|strong=\"H3068\"* mother, then|strong=\"H6258\"* his|strong=\"H3068\"* mother said, “I|strong=\"H6258\"* most|strong=\"H3068\"* certainly|strong=\"H6213\"* dedicate|strong=\"H6942\"* the|strong=\"H6213\"* silver|strong=\"H3701\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* from|strong=\"H7725\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* for|strong=\"H6213\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, to|strong=\"H7725\"* make|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* and|strong=\"H3967\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* restore|strong=\"H7725\"* it|strong=\"H6213\"* to|strong=\"H7725\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* he|strong=\"H6213\"* restored|strong=\"H7725\"* the|strong=\"H5414\"* money|strong=\"H3701\"* to|strong=\"H7725\"* his|strong=\"H5414\"* mother, his|strong=\"H5414\"* mother took|strong=\"H3947\"* two|strong=\"H3947\"* hundred|strong=\"H3967\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* a|strong=\"H3068\"* silversmith|strong=\"H6884\"*, who|strong=\"H6884\"* made|strong=\"H6213\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"* and|strong=\"H3967\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"* out|strong=\"H5414\"* of|strong=\"H1004\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* was|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4319\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* man|strong=\"H1121\"* Micah|strong=\"H4318\"* had|strong=\"H1961\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* gods, and|strong=\"H1121\"* he|strong=\"H6213\"* made|strong=\"H6213\"* an|strong=\"H6213\"* ephod, and|strong=\"H1121\"* teraphim|strong=\"H8655\"*,+ 17:5 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H1121\"* consecrated|strong=\"H4390\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3027\"* sons|strong=\"H1121\"*, who|strong=\"H3548\"* became|strong=\"H1961\"* his|strong=\"H3027\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1992\"* was|strong=\"H3478\"* no|strong=\"H6213\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Everyone did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1992\"* was|strong=\"H3478\"* right|strong=\"H3477\"* in|strong=\"H3478\"* his|strong=\"H3478\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* out|strong=\"H8033\"* of|strong=\"H4940\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, of|strong=\"H4940\"* the|strong=\"H1961\"* family|strong=\"H4940\"* of|strong=\"H4940\"* Judah|strong=\"H3063\"*, who|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* lived|strong=\"H1481\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6213\"* man departed|strong=\"H3212\"* out|strong=\"H4672\"* of|strong=\"H1004\"* the|strong=\"H6213\"* city|strong=\"H5892\"*, out|strong=\"H4672\"* of|strong=\"H1004\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* live|strong=\"H1481\"* where|strong=\"H1004\"* he|strong=\"H5704\"* could find|strong=\"H4672\"* a|strong=\"H3068\"* place|strong=\"H1004\"*, and|strong=\"H3063\"* he|strong=\"H5704\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H6213\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim, to|strong=\"H5704\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, as|strong=\"H5704\"* he|strong=\"H5704\"* traveled." + }, + { + "verseNum": 9, + "text": "Micah|strong=\"H4318\"* said to|strong=\"H1980\"* him|strong=\"H4672\"*, “Where did|strong=\"H3063\"* you|strong=\"H4672\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 10, + "text": "Micah|strong=\"H4318\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Dwell|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5414\"*, and|strong=\"H3701\"* be|strong=\"H1961\"* to|strong=\"H3212\"* me|strong=\"H5414\"* a|strong=\"H3068\"* father and|strong=\"H3701\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*, and|strong=\"H3701\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* ten|strong=\"H6235\"* pieces of|strong=\"H3117\"* silver|strong=\"H3701\"* per year|strong=\"H3117\"*, a|strong=\"H3068\"* suit|strong=\"H6187\"* of|strong=\"H3117\"* clothing, and|strong=\"H3701\"* your|strong=\"H5414\"* food.” So|strong=\"H1961\"* the|strong=\"H5414\"* Levite|strong=\"H3881\"* went|strong=\"H3212\"* in|strong=\"H3427\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1961\"* Levite|strong=\"H3881\"* was|strong=\"H1961\"* content|strong=\"H2974\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* the|strong=\"H1961\"* man|strong=\"H5288\"*; and|strong=\"H1121\"* the|strong=\"H1961\"* young|strong=\"H5288\"* man|strong=\"H5288\"* was|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Micah|strong=\"H4318\"* consecrated|strong=\"H4390\"* the|strong=\"H4390\"* Levite|strong=\"H3881\"*, and|strong=\"H3027\"* the|strong=\"H4390\"* young|strong=\"H5288\"* man|strong=\"H5288\"* became|strong=\"H1961\"* his|strong=\"H3027\"* priest|strong=\"H3548\"*, and|strong=\"H3027\"* was|strong=\"H1961\"* in|strong=\"H1004\"* the|strong=\"H4390\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* Micah|strong=\"H4318\"* said, “Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H3190\"* good|strong=\"H3190\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* a|strong=\"H3068\"* Levite|strong=\"H3881\"* as|strong=\"H1961\"* my|strong=\"H3068\"* priest|strong=\"H3548\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H3427\"* was|strong=\"H3478\"* no|strong=\"H3808\"* king|strong=\"H4428\"* in|strong=\"H3427\"* Israel|strong=\"H3478\"*. In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H3588\"* tribe|strong=\"H7626\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Danites|strong=\"H1839\"* sought|strong=\"H1245\"* an|strong=\"H3588\"* inheritance|strong=\"H5159\"* to|strong=\"H5704\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*; for|strong=\"H3588\"* to|strong=\"H5704\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, their|strong=\"H1245\"* inheritance|strong=\"H5159\"* had|strong=\"H3478\"* not|strong=\"H3808\"* fallen|strong=\"H5307\"* to|strong=\"H5704\"* them|strong=\"H1992\"* among|strong=\"H8432\"* the|strong=\"H3588\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* sent|strong=\"H7971\"* five|strong=\"H2568\"* men|strong=\"H1121\"* of|strong=\"H1121\"* their|strong=\"H7971\"* family|strong=\"H4940\"* from|strong=\"H1121\"* their|strong=\"H7971\"* whole|strong=\"H7098\"* number|strong=\"H7098\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, from|strong=\"H1121\"* Zorah|strong=\"H6881\"* and|strong=\"H1121\"* from|strong=\"H1121\"* Eshtaol, to|strong=\"H5704\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H5704\"* land|strong=\"H4940\"* and|strong=\"H1121\"* to|strong=\"H5704\"* search|strong=\"H2713\"* it|strong=\"H8033\"*. They|strong=\"H8033\"* said to|strong=\"H5704\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"*, explore|strong=\"H2713\"* the|strong=\"H5704\"* land|strong=\"H4940\"*!”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H6213\"* they|strong=\"H1992\"* were|strong=\"H3881\"* by|strong=\"H5973\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, they|strong=\"H1992\"* knew|strong=\"H5234\"* the|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H6213\"* young|strong=\"H5288\"* man|strong=\"H5288\"* the|strong=\"H6213\"* Levite|strong=\"H3881\"*; so|strong=\"H6213\"* they|strong=\"H1992\"* went|strong=\"H3881\"* over|strong=\"H6213\"* there|strong=\"H8033\"* and|strong=\"H1004\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “Who|strong=\"H4310\"* brought|strong=\"H6213\"* you|strong=\"H6213\"* here|strong=\"H6311\"*? What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* do|strong=\"H6213\"* in|strong=\"H6213\"* this|strong=\"H2088\"* place|strong=\"H1004\"*? What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H5288\"* here|strong=\"H6311\"*?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* said to|strong=\"H1961\"* them|strong=\"H6213\"*, “Thus|strong=\"H2088\"* and|strong=\"H3548\"* thus|strong=\"H2088\"* has|strong=\"H1961\"* Micah|strong=\"H4318\"* dealt|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H3548\"* he|strong=\"H6213\"* has|strong=\"H1961\"* hired|strong=\"H7936\"* me|strong=\"H6213\"*, and|strong=\"H3548\"* I|strong=\"H2088\"* have|strong=\"H1961\"* become|strong=\"H1961\"* his|strong=\"H1961\"* priest|strong=\"H3548\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “Please|strong=\"H4994\"* ask|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H1870\"* God, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4994\"* know|strong=\"H3045\"* whether|strong=\"H3045\"* our|strong=\"H5921\"* way|strong=\"H1870\"* which we|strong=\"H3068\"* go|strong=\"H1980\"* shall|strong=\"H1870\"* be|strong=\"H4994\"* prosperous|strong=\"H6743\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3068\"* priest|strong=\"H3548\"* said to|strong=\"H3068\"* them|strong=\"H3068\"*, “Go|strong=\"H3212\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*. Your|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H1870\"* go|strong=\"H3212\"* is|strong=\"H3068\"* before|strong=\"H5227\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7200\"* the|strong=\"H7200\"* five|strong=\"H2568\"* men|strong=\"H5971\"* departed|strong=\"H3212\"* and|strong=\"H4941\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Laish|strong=\"H3919\"* and|strong=\"H4941\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* there|strong=\"H3427\"*, how they|strong=\"H1992\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* safety, in|strong=\"H3427\"* the|strong=\"H7200\"* way|strong=\"H3212\"* of|strong=\"H1697\"* the|strong=\"H7200\"* Sidonians|strong=\"H6722\"*, quiet|strong=\"H8252\"* and|strong=\"H4941\"* secure|strong=\"H3427\"*; for|strong=\"H3427\"* there|strong=\"H3427\"* was|strong=\"H1697\"* no|strong=\"H7200\"* one|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H7200\"* land|strong=\"H7130\"* possessing authority|strong=\"H1697\"*, that|strong=\"H5971\"* might|strong=\"H5971\"* put them|strong=\"H1992\"* to|strong=\"H3212\"* shame|strong=\"H3637\"* in|strong=\"H3427\"* anything|strong=\"H1697\"*, and|strong=\"H4941\"* they|strong=\"H1992\"* were|strong=\"H5971\"* far|strong=\"H7350\"* from|strong=\"H3423\"* the|strong=\"H7200\"* Sidonians|strong=\"H6722\"*, and|strong=\"H4941\"* had|strong=\"H5971\"* no|strong=\"H7200\"* dealings|strong=\"H1697\"* with|strong=\"H5973\"* anyone|strong=\"H7200\"* else." + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* came to|strong=\"H4100\"* their|strong=\"H4100\"* brothers at Zorah|strong=\"H6881\"* and|strong=\"H6881\"* Eshtaol; and|strong=\"H6881\"* their|strong=\"H4100\"* brothers asked|strong=\"H4100\"* them, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* say?”" + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* said, “Arise|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H3212\"*’s go|strong=\"H3212\"* up|strong=\"H5927\"* against|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H5921\"* land, and|strong=\"H6965\"* behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2896\"* very|strong=\"H3966\"* good|strong=\"H2896\"*. Do you|strong=\"H3588\"* stand|strong=\"H6965\"* still|strong=\"H2814\"*? Don’t be|strong=\"H2896\"* slothful|strong=\"H6101\"* to|strong=\"H3212\"* go|strong=\"H3212\"* and|strong=\"H6965\"* to|strong=\"H3212\"* enter|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3212\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H5971\"*, you|strong=\"H3588\"* will|strong=\"H5971\"* come|strong=\"H5971\"* to|strong=\"H5414\"* an|strong=\"H5414\"* unsuspecting people|strong=\"H5971\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* land|strong=\"H4725\"* is|strong=\"H3027\"* large|strong=\"H7342\"*; for|strong=\"H3588\"* God|strong=\"H5414\"* has|strong=\"H3588\"* given|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*, a|strong=\"H3068\"* place|strong=\"H4725\"* where|strong=\"H8033\"* there|strong=\"H8033\"* is|strong=\"H3027\"* no|strong=\"H3605\"* lack|strong=\"H4270\"* of|strong=\"H3027\"* anything|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H8033\"* family|strong=\"H4940\"* of|strong=\"H3627\"* the|strong=\"H8033\"* Danites|strong=\"H1839\"* set|strong=\"H5265\"* out|strong=\"H5265\"* from|strong=\"H5265\"* Zorah|strong=\"H6881\"* and|strong=\"H3967\"* Eshtaol with|strong=\"H2296\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men armed|strong=\"H4421\"* with|strong=\"H2296\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3063\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Jearim in|strong=\"H5921\"* Judah|strong=\"H3063\"*. Therefore|strong=\"H3651\"* they|strong=\"H3117\"* call|strong=\"H7121\"* that|strong=\"H3117\"* place|strong=\"H4725\"* Mahaneh Dan to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Behold|strong=\"H2009\"*, it|strong=\"H1931\"* is|strong=\"H2088\"* behind|strong=\"H5921\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 13, + "text": "They|strong=\"H8033\"* passed|strong=\"H5674\"* from|strong=\"H5704\"* there|strong=\"H8033\"* to|strong=\"H5704\"* the|strong=\"H5704\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim, and|strong=\"H1004\"* came|strong=\"H5674\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* the|strong=\"H3588\"* five|strong=\"H2568\"* men|strong=\"H1980\"* who|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H7270\"* out|strong=\"H7270\"* the|strong=\"H3588\"* country of|strong=\"H1004\"* Laish|strong=\"H3919\"* answered|strong=\"H6030\"* and|strong=\"H1980\"* said|strong=\"H6030\"* to|strong=\"H1980\"* their|strong=\"H3588\"* brothers, “Do|strong=\"H6213\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* in|strong=\"H1980\"* these|strong=\"H6213\"* houses|strong=\"H1004\"* an|strong=\"H6213\"* ephod, and|strong=\"H1980\"* teraphim|strong=\"H8655\"*,+ 18:14 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H1980\"* a|strong=\"H3068\"* carved|strong=\"H6213\"* image|strong=\"H6459\"*, and|strong=\"H1980\"* a|strong=\"H3068\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*? Now|strong=\"H6258\"* therefore|strong=\"H6258\"* consider|strong=\"H3045\"* what|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H3426\"* to|strong=\"H1980\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H8033\"* went|strong=\"H3881\"* over there|strong=\"H8033\"* and|strong=\"H1004\"* came to|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5493\"* young|strong=\"H5288\"* Levite|strong=\"H3881\"* man|strong=\"H5288\"*, even to|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Micah|strong=\"H4318\"*, and|strong=\"H1004\"* asked|strong=\"H7592\"* him|strong=\"H7592\"* how|strong=\"H7965\"* he|strong=\"H8033\"* was|strong=\"H1004\"* doing." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* armed|strong=\"H4421\"* with|strong=\"H2296\"* their|strong=\"H1835\"* weapons|strong=\"H3627\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, stood|strong=\"H5324\"* by|strong=\"H3627\"* the|strong=\"H1121\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3947\"* five|strong=\"H2568\"* men|strong=\"H1980\"* who|strong=\"H3548\"* went|strong=\"H1980\"* to|strong=\"H1980\"* spy|strong=\"H7270\"* out|strong=\"H7270\"* the|strong=\"H3947\"* land went|strong=\"H1980\"* up|strong=\"H5927\"*, and|strong=\"H3967\"* came|strong=\"H5927\"* in|strong=\"H1980\"* there|strong=\"H8033\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* the|strong=\"H3947\"* engraved|strong=\"H6456\"* image|strong=\"H4541\"*, the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H3967\"* the|strong=\"H3947\"* molten|strong=\"H4541\"* image|strong=\"H4541\"*; and|strong=\"H3967\"* the|strong=\"H3947\"* priest|strong=\"H3548\"* stood|strong=\"H5324\"* by|strong=\"H1980\"* the|strong=\"H3947\"* entrance|strong=\"H6607\"* of|strong=\"H3627\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* with|strong=\"H1980\"* the|strong=\"H3947\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1980\"* armed|strong=\"H4421\"* with|strong=\"H1980\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H6213\"* these|strong=\"H6213\"* went|strong=\"H3548\"* into|strong=\"H6213\"* Micah|strong=\"H4318\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* took|strong=\"H3947\"* the|strong=\"H3947\"* engraved image|strong=\"H6459\"*, the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H1004\"* the|strong=\"H3947\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, the|strong=\"H3947\"* priest|strong=\"H3548\"* said to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3947\"* doing|strong=\"H6213\"*?”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* said|strong=\"H2790\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, “Hold|strong=\"H1004\"* your|strong=\"H5921\"* peace|strong=\"H2790\"*, put|strong=\"H7760\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* your|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H3478\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H5921\"*. Be|strong=\"H1961\"* a|strong=\"H3068\"* father and|strong=\"H3478\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* us|strong=\"H5921\"*. Is|strong=\"H3027\"* it|strong=\"H7760\"* better|strong=\"H2896\"* for|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* one|strong=\"H2896\"* man|strong=\"H2896\"*, or|strong=\"H2896\"* to|strong=\"H3478\"* be|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H3478\"* a|strong=\"H3068\"* tribe|strong=\"H7626\"* and|strong=\"H3478\"* a|strong=\"H3068\"* family|strong=\"H4940\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3947\"* priest|strong=\"H3548\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* glad|strong=\"H3190\"*, and|strong=\"H3548\"* he|strong=\"H5971\"* took|strong=\"H3947\"* the|strong=\"H3947\"* ephod, the|strong=\"H3947\"* teraphim|strong=\"H8655\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* engraved image|strong=\"H6459\"*, and|strong=\"H3548\"* went|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3947\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H7760\"* they|strong=\"H6440\"* turned|strong=\"H6437\"* and|strong=\"H3212\"* departed|strong=\"H3212\"*, and|strong=\"H3212\"* put|strong=\"H7760\"* the|strong=\"H6440\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, the|strong=\"H6440\"* livestock|strong=\"H4735\"*, and|strong=\"H3212\"* the|strong=\"H6440\"* goods before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"H1121\"* they|strong=\"H1992\"* were|strong=\"H1121\"* a|strong=\"H3068\"* good|strong=\"H7368\"* way|strong=\"H7368\"* from|strong=\"H1121\"* the|strong=\"H5973\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, the|strong=\"H5973\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1004\"* the|strong=\"H5973\"* houses|strong=\"H1004\"* near|strong=\"H5973\"* Micah|strong=\"H4318\"*’s house|strong=\"H1004\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"* and|strong=\"H1121\"* overtook|strong=\"H1692\"* the|strong=\"H5973\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 23, + "text": "As|strong=\"H3588\"* they|strong=\"H3588\"* called|strong=\"H7121\"* to|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"*, they|strong=\"H3588\"* turned|strong=\"H5437\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* Micah|strong=\"H4318\"*, “What|strong=\"H4100\"* ails you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H5437\"* with|strong=\"H6440\"* such a|strong=\"H3068\"* company|strong=\"H2199\"*?”" + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* said, “You|strong=\"H3947\"* have|strong=\"H3548\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3947\"* gods which|strong=\"H4100\"* I|strong=\"H2088\"* made|strong=\"H6213\"*, and|strong=\"H3212\"* the|strong=\"H3947\"* priest|strong=\"H3548\"*, and|strong=\"H3212\"* have|strong=\"H3548\"* gone|strong=\"H3212\"* away|strong=\"H3947\"*! What|strong=\"H4100\"* more|strong=\"H5750\"* do|strong=\"H6213\"* I|strong=\"H2088\"* have|strong=\"H3548\"*? How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H3947\"* ask me|strong=\"H6213\"*, ‘What|strong=\"H4100\"* ails you|strong=\"H3947\"*?’”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* said|strong=\"H8085\"* to|strong=\"H8085\"* him|strong=\"H5973\"*, “Don’t let|strong=\"H5315\"* your|strong=\"H8085\"* voice|strong=\"H6963\"* be|strong=\"H1121\"* heard|strong=\"H8085\"* among|strong=\"H5973\"* us|strong=\"H6435\"*, lest|strong=\"H6435\"* angry|strong=\"H4751\"* fellows|strong=\"H1121\"* fall|strong=\"H6293\"* on|strong=\"H1004\"* you|strong=\"H5973\"*, and|strong=\"H1121\"* you|strong=\"H5973\"* lose your|strong=\"H8085\"* life|strong=\"H5315\"*, with|strong=\"H5973\"* the|strong=\"H8085\"* lives|strong=\"H5315\"* of|strong=\"H1121\"* your|strong=\"H8085\"* household|strong=\"H1004\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* went|strong=\"H3212\"* their|strong=\"H1992\"* way|strong=\"H1870\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* Micah|strong=\"H4318\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2389\"* for|strong=\"H3588\"* him|strong=\"H7725\"*, he|strong=\"H3588\"* turned|strong=\"H6437\"* and|strong=\"H1121\"* went|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1992\"* took|strong=\"H3947\"* that|strong=\"H5971\"* which|strong=\"H1992\"* Micah|strong=\"H4318\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H3548\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* whom|strong=\"H1992\"* he|strong=\"H6213\"* had|strong=\"H1961\"*, and|strong=\"H3548\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Laish|strong=\"H3919\"*, to|strong=\"H1961\"* a|strong=\"H3068\"* people|strong=\"H5971\"* quiet|strong=\"H8252\"* and|strong=\"H3548\"* unsuspecting, and|strong=\"H3548\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* with|strong=\"H8313\"* the|strong=\"H5921\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*; then|strong=\"H1961\"* they|strong=\"H1992\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 28, + "text": "There|strong=\"H3427\"* was|strong=\"H1931\"* no deliverer|strong=\"H5337\"*, because|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1931\"* far|strong=\"H7350\"* from|strong=\"H7350\"* Sidon|strong=\"H6721\"*, and|strong=\"H5892\"* they|strong=\"H3588\"* had|strong=\"H3588\"* no dealings|strong=\"H1697\"* with|strong=\"H5973\"* anyone|strong=\"H3588\"* else|strong=\"H3588\"*; and|strong=\"H5892\"* it|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H3588\"* valley|strong=\"H6010\"* that|strong=\"H3588\"* lies|strong=\"H1697\"* by|strong=\"H5892\"* Beth Rehob. They|strong=\"H3588\"* built|strong=\"H1129\"* the|strong=\"H3588\"* city|strong=\"H5892\"* and|strong=\"H5892\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H3478\"* called|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H3205\"* city|strong=\"H5892\"* Dan|strong=\"H1835\"*, after|strong=\"H7121\"* the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* Dan|strong=\"H1835\"* their|strong=\"H7121\"* father|strong=\"H3205\"*, who|strong=\"H3478\"* was|strong=\"H8034\"* born|strong=\"H3205\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*; however the|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H3205\"* city|strong=\"H5892\"* used to|strong=\"H3478\"* be|strong=\"H8034\"* Laish|strong=\"H3919\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Dan|strong=\"H1835\"* set|strong=\"H6965\"* up|strong=\"H6965\"* for|strong=\"H5704\"* themselves the|strong=\"H3117\"* engraved image|strong=\"H6459\"*; and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Moses, and|strong=\"H1121\"* his|strong=\"H1540\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* priests|strong=\"H3548\"* to|strong=\"H5704\"* the|strong=\"H3117\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H3117\"* Danites|strong=\"H1839\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* captivity|strong=\"H1540\"* of|strong=\"H1121\"* the|strong=\"H3117\"* land." + }, + { + "verseNum": 31, + "text": "So|strong=\"H6213\"* they|strong=\"H3117\"* set|strong=\"H7760\"* up|strong=\"H7760\"* for|strong=\"H6213\"* themselves|strong=\"H6213\"* Micah|strong=\"H4318\"*’s engraved image|strong=\"H6459\"* which|strong=\"H1004\"* he|strong=\"H3117\"* made|strong=\"H6213\"*, and|strong=\"H3117\"* it|strong=\"H7760\"* remained|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* God’s house|strong=\"H1004\"* was|strong=\"H1961\"* in|strong=\"H6213\"* Shiloh|strong=\"H7887\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3947\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* certain Levite|strong=\"H3881\"* living|strong=\"H1481\"* on|strong=\"H3117\"* the|strong=\"H3947\"* farther side|strong=\"H3411\"* of|strong=\"H4428\"* the|strong=\"H3947\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H4428\"* Ephraim, who|strong=\"H3478\"* took|strong=\"H3947\"* for|strong=\"H3117\"* himself|strong=\"H3117\"* a|strong=\"H3068\"* concubine|strong=\"H6370\"* out|strong=\"H3947\"* of|strong=\"H4428\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "His|strong=\"H5921\"* concubine|strong=\"H6370\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3063\"* went|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H3212\"* her|strong=\"H5921\"* father’s house|strong=\"H1004\"* to|strong=\"H3212\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* was|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H5921\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "Her|strong=\"H5921\"* husband arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* after|strong=\"H5921\"* her|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, to|strong=\"H1696\"* bring|strong=\"H7725\"* her|strong=\"H5921\"* again|strong=\"H7725\"*, having his|strong=\"H7725\"* servant|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5921\"* and|strong=\"H6965\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H1004\"* donkeys|strong=\"H2543\"*. She|strong=\"H3820\"* brought|strong=\"H7725\"* him|strong=\"H5921\"* into|strong=\"H7725\"* her|strong=\"H5921\"* father’s house|strong=\"H1004\"*; and|strong=\"H6965\"* when|strong=\"H7200\"* the|strong=\"H5921\"* father of|strong=\"H1004\"* the|strong=\"H5921\"* young|strong=\"H5288\"* lady|strong=\"H5291\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*, he|strong=\"H1004\"* rejoiced|strong=\"H8055\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H2388\"* father-in-law|strong=\"H2859\"*, the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father, kept him|strong=\"H2388\"* there|strong=\"H8033\"*; and|strong=\"H3117\"* he|strong=\"H3117\"* stayed|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H2388\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. So|strong=\"H3427\"* they|strong=\"H3117\"* ate and|strong=\"H3117\"* drank|strong=\"H8354\"*, and|strong=\"H3117\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*, they|strong=\"H3117\"* got|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"* in|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"*, and|strong=\"H6965\"* he|strong=\"H3117\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3212\"* depart|strong=\"H3212\"*. The|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said to|strong=\"H3212\"* his|strong=\"H1961\"* son-in-law|strong=\"H2860\"*, “Strengthen|strong=\"H5582\"* your|strong=\"H1961\"* heart|strong=\"H3820\"* with|strong=\"H3117\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H3117\"* bread|strong=\"H3899\"*, and|strong=\"H6965\"* afterward you|strong=\"H3117\"* shall|strong=\"H3117\"* go|strong=\"H3212\"* your|strong=\"H1961\"* way|strong=\"H3212\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H3427\"* they|strong=\"H3162\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*, ate, and|strong=\"H8147\"* drank|strong=\"H8354\"*, both|strong=\"H8147\"* of|strong=\"H3427\"* them|strong=\"H8147\"* together|strong=\"H3162\"*. Then the|strong=\"H3885\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said to|strong=\"H3820\"* the|strong=\"H3885\"* man|strong=\"H3820\"*, “Please|strong=\"H4994\"* be|strong=\"H3820\"* pleased|strong=\"H3190\"* to|strong=\"H3820\"* stay|strong=\"H3427\"* all|strong=\"H3162\"* night|strong=\"H3885\"*, and|strong=\"H8147\"* let|strong=\"H4994\"* your|strong=\"H3190\"* heart|strong=\"H3820\"* be|strong=\"H3820\"* merry|strong=\"H3190\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H7725\"* man rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H7725\"* depart|strong=\"H3212\"*; but|strong=\"H7725\"* his|strong=\"H7725\"* father-in-law|strong=\"H2859\"* urged|strong=\"H6484\"* him|strong=\"H7725\"*, and|strong=\"H6965\"* he|strong=\"H8033\"* stayed|strong=\"H3885\"* there|strong=\"H8033\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3117\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"* on|strong=\"H3117\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* day|strong=\"H3117\"* to|strong=\"H5704\"* depart|strong=\"H3212\"*; and|strong=\"H3117\"* the|strong=\"H3117\"* young|strong=\"H5291\"* lady|strong=\"H5291\"*’s father said, “Please|strong=\"H4994\"* strengthen|strong=\"H5582\"* your|strong=\"H5186\"* heart|strong=\"H3824\"* and|strong=\"H3117\"* stay|strong=\"H4102\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* declines;” and|strong=\"H3117\"* they|strong=\"H3117\"* both|strong=\"H8147\"* ate." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3117\"* the|strong=\"H3117\"* man|strong=\"H5288\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1980\"* depart|strong=\"H3212\"*, he|strong=\"H1931\"*, and|strong=\"H1980\"* his|strong=\"H6965\"* concubine|strong=\"H6370\"*, and|strong=\"H1980\"* his|strong=\"H6965\"* servant|strong=\"H5288\"*, his|strong=\"H6965\"* father-in-law|strong=\"H2859\"*, the|strong=\"H3117\"* young|strong=\"H5288\"* lady|strong=\"H5291\"*’s father, said to|strong=\"H1980\"* him|strong=\"H1931\"*, “Behold|strong=\"H2009\"*, now|strong=\"H4994\"* the|strong=\"H3117\"* day|strong=\"H3117\"* draws toward|strong=\"H1870\"* evening|strong=\"H6150\"*, please|strong=\"H4994\"* stay|strong=\"H7503\"* all|strong=\"H3885\"* night|strong=\"H3885\"*. Behold|strong=\"H2009\"*, the|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H1931\"* ending. Stay|strong=\"H7503\"* here|strong=\"H6311\"*, that|strong=\"H3117\"* your|strong=\"H3190\"* heart|strong=\"H3824\"* may|strong=\"H4994\"* be|strong=\"H3117\"* merry|strong=\"H3190\"*; and|strong=\"H1980\"* tomorrow|strong=\"H4279\"* go|strong=\"H1980\"* on|strong=\"H3117\"* your|strong=\"H3190\"* way|strong=\"H1870\"* early|strong=\"H7925\"*, that|strong=\"H3117\"* you|strong=\"H3117\"* may|strong=\"H4994\"* go|strong=\"H1980\"* home|strong=\"H3212\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* the|strong=\"H5704\"* man wouldn’t stay|strong=\"H3885\"* that|strong=\"H1931\"* night|strong=\"H3885\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* near|strong=\"H5973\"* Jebus|strong=\"H2982\"* (also|strong=\"H3389\"* called Jerusalem|strong=\"H3389\"*). With|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H3389\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H6776\"* saddled|strong=\"H2280\"* donkeys|strong=\"H2543\"*. His|strong=\"H6965\"* concubine|strong=\"H6370\"* also|strong=\"H3389\"* was|strong=\"H1931\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3117\"* they|strong=\"H1992\"* were|strong=\"H3117\"* by|strong=\"H3117\"* Jebus|strong=\"H2982\"*, the|strong=\"H3117\"* day|strong=\"H3117\"* was|strong=\"H5892\"* far|strong=\"H3966\"* spent|strong=\"H3885\"*; and|strong=\"H3117\"* the|strong=\"H3117\"* servant|strong=\"H5288\"* said to|strong=\"H3212\"* his|strong=\"H5493\"* master, “Please|strong=\"H4994\"* come|strong=\"H3212\"* and|strong=\"H3117\"* let|strong=\"H4994\"*’s enter into|strong=\"H3212\"* this|strong=\"H2063\"* city|strong=\"H5892\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Jebusites|strong=\"H2983\"*, and|strong=\"H3117\"* stay|strong=\"H3885\"* in|strong=\"H3117\"* it|strong=\"H2063\"*.”" + }, + { + "verseNum": 12, + "text": "His|strong=\"H5493\"* master said to|strong=\"H5704\"* him|strong=\"H5704\"*, “We|strong=\"H5704\"* won’t enter|strong=\"H5674\"* into|strong=\"H5892\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H1121\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* that|strong=\"H3478\"* is|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; but|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H3478\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H5704\"* Gibeah|strong=\"H1390\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H7126\"* said to|strong=\"H3212\"* his|strong=\"H7126\"* servant|strong=\"H5288\"*, “Come|strong=\"H3212\"* and|strong=\"H3212\"* let|strong=\"H3212\"*’s draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3212\"* one of|strong=\"H4725\"* these places|strong=\"H4725\"*; and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H5288\"* lodge|strong=\"H3885\"* in|strong=\"H3212\"* Gibeah|strong=\"H1390\"*, or in|strong=\"H3212\"* Ramah|strong=\"H7414\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5674\"* they|strong=\"H5674\"* passed|strong=\"H5674\"* on|strong=\"H5674\"* and|strong=\"H3212\"* went|strong=\"H3212\"* their|strong=\"H1144\"* way|strong=\"H3212\"*; and|strong=\"H3212\"* the|strong=\"H5674\"* sun|strong=\"H8121\"* went|strong=\"H3212\"* down|strong=\"H3212\"* on|strong=\"H5674\"* them|strong=\"H5674\"* near Gibeah|strong=\"H1390\"*, which belongs to|strong=\"H3212\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H8033\"* went|strong=\"H5892\"* over|strong=\"H3427\"* there|strong=\"H8033\"*, to|strong=\"H1004\"* go|strong=\"H5493\"* in|strong=\"H3427\"* to|strong=\"H1004\"* stay|strong=\"H3427\"* in|strong=\"H3427\"* Gibeah|strong=\"H1390\"*. He|strong=\"H8033\"* went|strong=\"H5892\"* in|strong=\"H3427\"*, and|strong=\"H1004\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5493\"* street|strong=\"H7339\"* of|strong=\"H1004\"* the|strong=\"H5493\"* city|strong=\"H5892\"*; for|strong=\"H3427\"* there|strong=\"H8033\"* was|strong=\"H5892\"* no one|strong=\"H5892\"* who|strong=\"H3427\"* took|strong=\"H5493\"* them|strong=\"H3427\"* into|strong=\"H5892\"* his|strong=\"H5493\"* house|strong=\"H1004\"* to|strong=\"H1004\"* stay|strong=\"H3427\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2009\"*, an|strong=\"H4480\"* old|strong=\"H2205\"* man|strong=\"H2205\"* came from|strong=\"H4480\"* his|strong=\"H4480\"* work|strong=\"H4639\"* out|strong=\"H4480\"* of|strong=\"H2022\"* the|strong=\"H4480\"* field|strong=\"H7704\"* at|strong=\"H2022\"* evening|strong=\"H6153\"*. Now|strong=\"H2009\"* the|strong=\"H4480\"* man|strong=\"H2205\"* was|strong=\"H1931\"* from|strong=\"H4480\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* he|strong=\"H1931\"* lived|strong=\"H1481\"* in|strong=\"H4725\"* Gibeah|strong=\"H1390\"*; but|strong=\"H2009\"* the|strong=\"H4480\"* men|strong=\"H2205\"* of|strong=\"H2022\"* the|strong=\"H4480\"* place|strong=\"H4725\"* were|strong=\"H2022\"* Benjamites|strong=\"H1145\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3212\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* wayfaring man|strong=\"H2205\"* in|strong=\"H3212\"* the|strong=\"H7200\"* street|strong=\"H7339\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"*; and|strong=\"H3212\"* the|strong=\"H7200\"* old|strong=\"H2205\"* man|strong=\"H2205\"* said, “Where are|strong=\"H5869\"* you|strong=\"H7200\"* going|strong=\"H3212\"*? Where did|strong=\"H5869\"* you|strong=\"H7200\"* come|strong=\"H3212\"* from|strong=\"H5869\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* said to|strong=\"H5704\"* him|strong=\"H1980\"*, “We|strong=\"H5704\"* are|strong=\"H3068\"* passing|strong=\"H5674\"* from|strong=\"H1980\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* the|strong=\"H3068\"* farther side|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1004\"* Ephraim. I|strong=\"H5704\"* am|strong=\"H3068\"* from|strong=\"H1980\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* I|strong=\"H5704\"* went|strong=\"H1980\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*. I|strong=\"H5704\"* am|strong=\"H3068\"* going|strong=\"H1980\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H1980\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H1980\"* one|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H5674\"* me|strong=\"H5674\"* into|strong=\"H1980\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H1571\"* there|strong=\"H3426\"* is|strong=\"H3426\"* both|strong=\"H1571\"* straw|strong=\"H8401\"* and|strong=\"H3899\"* feed|strong=\"H4554\"* for|strong=\"H5650\"* our|strong=\"H3605\"* donkeys|strong=\"H2543\"*; and|strong=\"H3899\"* there|strong=\"H3426\"* is|strong=\"H3426\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* wine|strong=\"H3196\"* also|strong=\"H1571\"* for|strong=\"H5650\"* me|strong=\"H5973\"*, and|strong=\"H3899\"* for|strong=\"H5650\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3899\"* for|strong=\"H5650\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H3605\"* is|strong=\"H3426\"* with|strong=\"H5973\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3605\"* lack|strong=\"H4270\"* of|strong=\"H1697\"* anything|strong=\"H3605\"*.”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* old|strong=\"H2205\"* man|strong=\"H2205\"* said, “Peace|strong=\"H7965\"* be|strong=\"H7965\"* to|strong=\"H5921\"* you|strong=\"H3605\"*! Just|strong=\"H3605\"* let me|strong=\"H5921\"* supply all|strong=\"H3605\"* your|strong=\"H3605\"* needs|strong=\"H4270\"*, but|strong=\"H7535\"* don’t sleep|strong=\"H3885\"* in|strong=\"H5921\"* the|strong=\"H3605\"* street|strong=\"H7339\"*.”" + }, + { + "verseNum": 21, + "text": "So he|strong=\"H1004\"* brought him into his|strong=\"H7364\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* gave|strong=\"H1101\"* the|strong=\"H8354\"* donkeys|strong=\"H2543\"* fodder|strong=\"H1101\"*. Then they|strong=\"H7272\"* washed|strong=\"H7364\"* their|strong=\"H7364\"* feet|strong=\"H7272\"*, and|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3318\"* they|strong=\"H1992\"* were|strong=\"H1121\"* making their|strong=\"H1992\"* hearts|strong=\"H3820\"* merry|strong=\"H3190\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, certain|strong=\"H3045\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, surrounded|strong=\"H5437\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, beating at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H1817\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* spoke to|strong=\"H3318\"* the|strong=\"H5921\"* master|strong=\"H1167\"* of|strong=\"H1121\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, the|strong=\"H5921\"* old|strong=\"H1121\"* man|strong=\"H2205\"*, saying, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* man|strong=\"H2205\"* who|strong=\"H1121\"* came|strong=\"H3318\"* into|strong=\"H5921\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* can|strong=\"H3045\"* have|strong=\"H3045\"* sex with|strong=\"H1004\"* him|strong=\"H5921\"*!”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* man|strong=\"H1167\"*, the|strong=\"H6213\"* master|strong=\"H1167\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6213\"*, and|strong=\"H1004\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6213\"*, “No|strong=\"H6213\"*, my|strong=\"H3318\"* brothers, please|strong=\"H4994\"* don’t act|strong=\"H6213\"* so|strong=\"H6213\"* wickedly|strong=\"H7489\"*; since this|strong=\"H2088\"* man|strong=\"H1167\"* has|strong=\"H3318\"* come|strong=\"H3318\"* into|strong=\"H6213\"* my|strong=\"H3318\"* house|strong=\"H1004\"*, don’t do|strong=\"H6213\"* this|strong=\"H2088\"* folly|strong=\"H5039\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, here|strong=\"H2009\"* is|strong=\"H2088\"* my|strong=\"H3318\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* and|strong=\"H5869\"* his|strong=\"H6213\"* concubine|strong=\"H6370\"*. I|strong=\"H2009\"* will|strong=\"H5869\"* bring|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"* now|strong=\"H4994\"*. Humble|strong=\"H6031\"* them|strong=\"H6213\"*, and|strong=\"H5869\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H6213\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H6213\"*; but|strong=\"H3808\"* to|strong=\"H3318\"* this|strong=\"H2088\"* man|strong=\"H2896\"* don’t do|strong=\"H6213\"* any|strong=\"H6213\"* such|strong=\"H2088\"* folly|strong=\"H5039\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* the|strong=\"H3605\"* men|strong=\"H3605\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H5704\"* him|strong=\"H7971\"*; so|strong=\"H7971\"* the|strong=\"H3605\"* man|strong=\"H3605\"* grabbed|strong=\"H2388\"* his|strong=\"H3605\"* concubine|strong=\"H6370\"*, and|strong=\"H7971\"* brought|strong=\"H3318\"* her|strong=\"H3605\"* out|strong=\"H3318\"* to|strong=\"H5704\"* them|strong=\"H7971\"*; and|strong=\"H7971\"* they|strong=\"H3808\"* had|strong=\"H3045\"* sex with|strong=\"H3045\"* her|strong=\"H3605\"*, and|strong=\"H7971\"* abused|strong=\"H5953\"* her|strong=\"H3605\"* all|strong=\"H3605\"* night|strong=\"H3915\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*. When|strong=\"H8085\"* the|strong=\"H3605\"* day|strong=\"H7837\"* began to|strong=\"H5704\"* dawn|strong=\"H7837\"*, they|strong=\"H3808\"* let|strong=\"H7971\"* her|strong=\"H3605\"* go|strong=\"H3318\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H5307\"* the|strong=\"H5704\"* woman|strong=\"H1004\"* came|strong=\"H5307\"* in|strong=\"H1004\"* the|strong=\"H5704\"* dawning|strong=\"H6437\"* of|strong=\"H1004\"* the|strong=\"H5704\"* day|strong=\"H1242\"*, and|strong=\"H1004\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H1004\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5704\"* man|strong=\"H5307\"*’s house|strong=\"H1004\"* where|strong=\"H8033\"* her|strong=\"H5704\"* lord was|strong=\"H1004\"*, until|strong=\"H5704\"* it|strong=\"H8033\"* was|strong=\"H1004\"* light." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H5921\"* lord rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H6965\"* opened|strong=\"H6605\"* the|strong=\"H5921\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3212\"* his|strong=\"H5921\"* way|strong=\"H1870\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* woman|strong=\"H1004\"* his|strong=\"H5921\"* concubine|strong=\"H6370\"* had|strong=\"H3027\"* fallen|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, with|strong=\"H1004\"* her|strong=\"H5921\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H5592\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5921\"* said|strong=\"H6030\"* to|strong=\"H3212\"* her|strong=\"H3947\"*, “Get|strong=\"H3947\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H3212\"*’s get|strong=\"H3947\"* going|strong=\"H3212\"*!” but|strong=\"H6030\"* no|strong=\"H3947\"* one answered|strong=\"H6030\"*. Then|strong=\"H6030\"* he|strong=\"H5921\"* took|strong=\"H3947\"* her|strong=\"H3947\"* up|strong=\"H6965\"* on|strong=\"H5921\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"*; and|strong=\"H6965\"* the|strong=\"H5921\"* man|strong=\"H6030\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H3947\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H7971\"* he|strong=\"H3605\"* had|strong=\"H3478\"* come|strong=\"H3478\"* into|strong=\"H3947\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, he|strong=\"H3605\"* took|strong=\"H3947\"* a|strong=\"H3068\"* knife|strong=\"H3979\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* up|strong=\"H3947\"* his|strong=\"H3605\"* concubine|strong=\"H6370\"*, and|strong=\"H3478\"* divided|strong=\"H5408\"* her|strong=\"H3605\"*, limb|strong=\"H6106\"* by|strong=\"H3478\"* limb|strong=\"H6106\"*, into|strong=\"H3947\"* twelve|strong=\"H8147\"* pieces|strong=\"H5409\"*, and|strong=\"H3478\"* sent|strong=\"H7971\"* her|strong=\"H3605\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H7760\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H7200\"* all|strong=\"H3605\"* who|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H7760\"* said|strong=\"H1696\"*, “Such|strong=\"H2088\"* a|strong=\"H3068\"* deed|strong=\"H2063\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* done|strong=\"H1961\"* or|strong=\"H3808\"* seen|strong=\"H7200\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H7200\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H7200\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*! Consider|strong=\"H7200\"* it|strong=\"H7760\"*, take|strong=\"H7760\"* counsel|strong=\"H5779\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* was|strong=\"H3068\"* assembled|strong=\"H6950\"* as|strong=\"H5704\"* one|strong=\"H3605\"* man|strong=\"H1121\"*, from|strong=\"H3318\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, with|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* at|strong=\"H3478\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* chiefs|strong=\"H6438\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, presented|strong=\"H3320\"* themselves|strong=\"H3320\"* in|strong=\"H3478\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H7626\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H7626\"* God, four hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 3, + "text": "(Now|strong=\"H1961\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* Mizpah|strong=\"H4709\"*.) The|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"*, “Tell|strong=\"H1696\"* us|strong=\"H3588\"*, how|strong=\"H3588\"* did|strong=\"H3478\"* this|strong=\"H2063\"* wickedness|strong=\"H7451\"* happen|strong=\"H1961\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3885\"* Levite|strong=\"H3881\"*, the|strong=\"H3885\"* husband of|strong=\"H1390\"* the|strong=\"H3885\"* woman who|strong=\"H3881\"* was|strong=\"H1144\"* murdered|strong=\"H7523\"*, answered|strong=\"H6030\"*, “I came|strong=\"H1144\"* into Gibeah|strong=\"H1390\"* that|strong=\"H3881\"* belongs to|strong=\"H6030\"* Benjamin|strong=\"H1144\"*, I and|strong=\"H6030\"* my|strong=\"H1144\"* concubine|strong=\"H6370\"*, to|strong=\"H6030\"* spend|strong=\"H3885\"* the|strong=\"H3885\"* night|strong=\"H3885\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* men|strong=\"H1167\"* of|strong=\"H1004\"* Gibeah|strong=\"H1390\"* rose|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H6965\"* surrounded|strong=\"H5437\"* the|strong=\"H5921\"* house|strong=\"H1004\"* by|strong=\"H5921\"* night|strong=\"H3915\"*. They|strong=\"H5921\"* intended|strong=\"H1819\"* to|strong=\"H4191\"* kill|strong=\"H2026\"* me|strong=\"H5921\"* and|strong=\"H6965\"* they|strong=\"H5921\"* raped my|strong=\"H5921\"* concubine|strong=\"H6370\"*, and|strong=\"H6965\"* she|strong=\"H5921\"* is|strong=\"H1004\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* took|strong=\"H3478\"* my|strong=\"H3605\"* concubine|strong=\"H6370\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* her|strong=\"H3605\"* in|strong=\"H3478\"* pieces|strong=\"H5408\"*, and|strong=\"H3478\"* sent|strong=\"H7971\"* her|strong=\"H3605\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H7704\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H7704\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3478\"* committed|strong=\"H6213\"* lewdness|strong=\"H2154\"* and|strong=\"H3478\"* folly|strong=\"H5039\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3605\"*, give|strong=\"H3051\"* here|strong=\"H2009\"* your|strong=\"H3605\"* advice|strong=\"H6098\"* and|strong=\"H1121\"* counsel|strong=\"H6098\"*.”" + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* arose|strong=\"H6965\"* as|strong=\"H5971\"* one|strong=\"H3605\"* man|strong=\"H3605\"*, saying, “None|strong=\"H3808\"* of|strong=\"H1004\"* us|strong=\"H5971\"* will|strong=\"H5971\"* go|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H3605\"* tent, neither|strong=\"H3808\"* will|strong=\"H5971\"* any|strong=\"H3605\"* of|strong=\"H1004\"* us|strong=\"H5971\"* turn|strong=\"H5493\"* to|strong=\"H3212\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H6258\"* now|strong=\"H6258\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* thing|strong=\"H1697\"* which|strong=\"H1697\"* we|strong=\"H3068\"* will|strong=\"H1697\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Gibeah|strong=\"H1390\"*: we|strong=\"H3068\"* will|strong=\"H1697\"* go up|strong=\"H5921\"* against|strong=\"H5921\"* it|strong=\"H5921\"* by|strong=\"H5921\"* lot|strong=\"H1486\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H5971\"* take|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H5971\"* of|strong=\"H7626\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* of|strong=\"H7626\"* one|strong=\"H3605\"* thousand|strong=\"H7233\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* thousand|strong=\"H7233\"* out|strong=\"H3947\"* of|strong=\"H7626\"* ten|strong=\"H6235\"* thousand|strong=\"H7233\"* to|strong=\"H3478\"* get|strong=\"H3947\"* food|strong=\"H6720\"* for|strong=\"H6213\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* may|strong=\"H5971\"* do|strong=\"H6213\"*, when|strong=\"H6213\"* they|strong=\"H6213\"* come|strong=\"H5971\"* to|strong=\"H3478\"* Gibeah|strong=\"H1387\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* folly|strong=\"H5039\"* that|strong=\"H5971\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H7626\"* Gibeah|strong=\"H1387\"* have|strong=\"H5971\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 11, + "text": "So all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H3478\"* against|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, knit together|strong=\"H2270\"* as|strong=\"H5892\"* one|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* men|strong=\"H7451\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, saying, “What|strong=\"H4100\"* wickedness|strong=\"H7451\"* is|strong=\"H4100\"* this|strong=\"H2063\"* that|strong=\"H3605\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* among|strong=\"H3478\"* you|strong=\"H3605\"*?" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H8085\"* men|strong=\"H1121\"*, the|strong=\"H8085\"* wicked|strong=\"H7451\"* fellows|strong=\"H1121\"* who|strong=\"H1121\"* are|strong=\"H1121\"* in|strong=\"H3478\"* Gibeah|strong=\"H1390\"*, that|strong=\"H8085\"* we|strong=\"H3068\"* may|strong=\"H3478\"* put|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* death|strong=\"H4191\"* and|strong=\"H1121\"* put|strong=\"H5414\"* away|strong=\"H1197\"* evil|strong=\"H7451\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H3478\"* themselves together|strong=\"H5973\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H4480\"* cities|strong=\"H5892\"* to|strong=\"H3318\"* Gibeah|strong=\"H1390\"*, to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* out|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H3117\"* cities|strong=\"H5892\"* twenty-six|strong=\"H8337\"* thousand men|strong=\"H1121\"* who|strong=\"H1931\"* drew|strong=\"H8025\"* the|strong=\"H3117\"* sword|strong=\"H2719\"*, in|strong=\"H3427\"* addition to|strong=\"H3117\"* the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*, who|strong=\"H1931\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* chosen men|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "Among|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* soldiers|strong=\"H5971\"* there|strong=\"H2088\"* were|strong=\"H5971\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* chosen men|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* left-handed|strong=\"H3225\"*. Every|strong=\"H3605\"* one|strong=\"H2088\"* of|strong=\"H3027\"* them|strong=\"H3027\"* could|strong=\"H2088\"* sling|strong=\"H7049\"* a|strong=\"H3068\"* stone at|strong=\"H3808\"* a|strong=\"H3068\"* hair|strong=\"H8185\"* and|strong=\"H3967\"* not|strong=\"H3808\"* miss|strong=\"H2398\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*, besides Benjamin|strong=\"H1144\"*, were|strong=\"H3478\"* counted|strong=\"H6485\"* four hundred|strong=\"H3967\"* thousand men|strong=\"H3605\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* sword|strong=\"H2719\"*. All|strong=\"H3605\"* these|strong=\"H2088\"* were|strong=\"H3478\"* men|strong=\"H3605\"* of|strong=\"H3605\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* arose|strong=\"H6965\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* asked|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H1121\"* God|strong=\"H3068\"*. They|strong=\"H3068\"* asked|strong=\"H7592\"*, “Who|strong=\"H4310\"* shall|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3068\"* us|strong=\"H7592\"* first|strong=\"H1121\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3318\"* men|strong=\"H3478\"* of|strong=\"H3318\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* Benjamin|strong=\"H1144\"*; and|strong=\"H3478\"* the|strong=\"H3318\"* men|strong=\"H3478\"* of|strong=\"H3318\"* Israel|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* them|strong=\"H3318\"* at|strong=\"H3478\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*, and|strong=\"H1121\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* destroyed|strong=\"H7843\"* twenty-two|strong=\"H6242\"* thousand of|strong=\"H1121\"* the|strong=\"H4480\"* Israelite|strong=\"H3478\"* men|strong=\"H1121\"* down|strong=\"H7843\"* to|strong=\"H3318\"* the|strong=\"H4480\"* ground." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3117\"* people|strong=\"H5971\"*, the|strong=\"H3117\"* men|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, encouraged|strong=\"H2388\"* themselves|strong=\"H6186\"*, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3117\"* battle|strong=\"H4421\"* again|strong=\"H3254\"* in|strong=\"H3478\"* array|strong=\"H6186\"* in|strong=\"H3478\"* the|strong=\"H3117\"* place|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3117\"* set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* the|strong=\"H3117\"* first|strong=\"H7223\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H5704\"* again|strong=\"H3254\"* draw|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* my|strong=\"H3068\"* brother?”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H7126\"* near|strong=\"H7126\"* against the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Benjamin|strong=\"H1144\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* destroyed|strong=\"H7843\"* down|strong=\"H7843\"* to|strong=\"H3318\"* the|strong=\"H3605\"* ground of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* again|strong=\"H5750\"* eighteen|strong=\"H8083\"* thousand men|strong=\"H1121\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H1121\"* came|strong=\"H5927\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* wept|strong=\"H1058\"*, and|strong=\"H1121\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* that|strong=\"H5971\"* day|strong=\"H3117\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; then|strong=\"H5927\"* they|strong=\"H3117\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* asked|strong=\"H7592\"* Yahweh|strong=\"H3068\"* (for|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1121\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* God|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"* in|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, stood|strong=\"H5975\"* before|strong=\"H6440\"* it|strong=\"H5414\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*), saying, “Shall|strong=\"H3068\"* I|strong=\"H3588\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* my|strong=\"H5414\"* brother, or|strong=\"H3117\"* shall|strong=\"H3068\"* I|strong=\"H3588\"* cease|strong=\"H2308\"*?”" + }, + { + "verseNum": 29, + "text": "Israel|strong=\"H3478\"* set|strong=\"H7760\"* ambushes all|strong=\"H5439\"* around|strong=\"H5439\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* on|strong=\"H3117\"* the|strong=\"H3117\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5927\"* Gibeah|strong=\"H1390\"*, as|strong=\"H3117\"* at|strong=\"H3478\"* other|strong=\"H6471\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7125\"* the|strong=\"H5221\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* were|strong=\"H3478\"* drawn|strong=\"H5423\"* away|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H5221\"* city|strong=\"H5892\"*; and|strong=\"H1121\"* they|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* and|strong=\"H1121\"* kill|strong=\"H5221\"* of|strong=\"H1121\"* the|strong=\"H5221\"* people|strong=\"H5971\"* as|strong=\"H5927\"* at|strong=\"H3478\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, in|strong=\"H3478\"* the|strong=\"H5221\"* highways|strong=\"H4546\"*, of|strong=\"H1121\"* which|strong=\"H5971\"* one|strong=\"H4480\"* goes|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* the|strong=\"H5221\"* other|strong=\"H6471\"* to|strong=\"H3318\"* Gibeah|strong=\"H1390\"*, in|strong=\"H3478\"* the|strong=\"H5221\"* field|strong=\"H7704\"*, about|strong=\"H4480\"* thirty|strong=\"H7970\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* said, “They|strong=\"H1992\"* are|strong=\"H1992\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, as|strong=\"H6440\"* at|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"*.” But|strong=\"H1992\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Let’s flee|strong=\"H5127\"*, and|strong=\"H1121\"* draw|strong=\"H5423\"* them|strong=\"H1992\"* away|strong=\"H5127\"* from|strong=\"H4480\"* the|strong=\"H6440\"* city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H6440\"* highways|strong=\"H4546\"*.”" + }, + { + "verseNum": 33, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4725\"* Israel|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* out|strong=\"H3605\"* of|strong=\"H4725\"* their|strong=\"H3605\"* place|strong=\"H4725\"* and|strong=\"H6965\"* set|strong=\"H6965\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* at|strong=\"H3478\"* Baal Tamar. Then|strong=\"H6965\"* the|strong=\"H3605\"* ambushers of|strong=\"H4725\"* Israel|strong=\"H3478\"* broke|strong=\"H1518\"* out|strong=\"H3605\"* of|strong=\"H4725\"* their|strong=\"H3605\"* place|strong=\"H4725\"*, even out|strong=\"H3605\"* of|strong=\"H4725\"* Maareh Geba." + }, + { + "verseNum": 34, + "text": "Ten|strong=\"H6235\"* thousand chosen|strong=\"H3045\"* men|strong=\"H7451\"* out|strong=\"H5921\"* of|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* came|strong=\"H5060\"* over|strong=\"H5921\"* against|strong=\"H5921\"* Gibeah|strong=\"H1390\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H3478\"* severe|strong=\"H7451\"*; but|strong=\"H3588\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* disaster|strong=\"H7451\"* was|strong=\"H3478\"* close|strong=\"H5060\"* to|strong=\"H3478\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* Benjamin|strong=\"H1144\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* destroyed|strong=\"H7843\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* that|strong=\"H3605\"* day|strong=\"H3117\"* twenty-five|strong=\"H6242\"* thousand one|strong=\"H3605\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"*. All|strong=\"H3605\"* these|strong=\"H1931\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 36, + "text": "So|strong=\"H5414\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* struck|strong=\"H5062\"*, for|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* yielded|strong=\"H5414\"* to|strong=\"H3478\"* Benjamin|strong=\"H1144\"* because|strong=\"H3588\"* they|strong=\"H3588\"* trusted the|strong=\"H7200\"* ambushers whom|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3478\"* set|strong=\"H7760\"* against|strong=\"H7760\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* ambushers hurried|strong=\"H2363\"*, and|strong=\"H5892\"* rushed|strong=\"H6584\"* on|strong=\"H5892\"* Gibeah|strong=\"H1390\"*; then|strong=\"H3605\"* the|strong=\"H3605\"* ambushers spread|strong=\"H6584\"* out|strong=\"H4900\"*, and|strong=\"H5892\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 38, + "text": "Now|strong=\"H1961\"* the|strong=\"H4480\"* appointed|strong=\"H4150\"* sign|strong=\"H4150\"* between|strong=\"H5973\"* the|strong=\"H4480\"* men|strong=\"H3478\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H4480\"* ambushers was|strong=\"H1961\"* that|strong=\"H3478\"* they|strong=\"H3478\"* should|strong=\"H3478\"* make|strong=\"H7235\"* a|strong=\"H3068\"* great|strong=\"H7235\"* cloud|strong=\"H4864\"* of|strong=\"H5892\"* smoke|strong=\"H6227\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* turned|strong=\"H2015\"* in|strong=\"H3478\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*, and|strong=\"H3478\"* Benjamin|strong=\"H1144\"* began|strong=\"H2490\"* to|strong=\"H3478\"* strike|strong=\"H5221\"* and|strong=\"H3478\"* kill|strong=\"H5221\"* of|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* about|strong=\"H5221\"* thirty|strong=\"H7970\"* persons|strong=\"H6440\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H3478\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, as|strong=\"H3588\"* in|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"* battle|strong=\"H4421\"*.”" + }, + { + "verseNum": 40, + "text": "But|strong=\"H2009\"* when|strong=\"H4480\"* the|strong=\"H4480\"* cloud|strong=\"H4864\"* began|strong=\"H2490\"* to|strong=\"H5927\"* arise|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* in|strong=\"H5892\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H5892\"* smoke|strong=\"H6227\"*, the|strong=\"H4480\"* Benjamites looked|strong=\"H6437\"* behind|strong=\"H4480\"* them|strong=\"H5927\"*; and|strong=\"H8064\"* behold|strong=\"H2009\"*, the|strong=\"H4480\"* whole|strong=\"H3632\"* city|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5892\"* smoke|strong=\"H6227\"* to|strong=\"H5927\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"* turned|strong=\"H2015\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Benjamin|strong=\"H1144\"* were|strong=\"H3478\"* dismayed; for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* disaster|strong=\"H7451\"* had|strong=\"H3478\"* come|strong=\"H5060\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 42, + "text": "Therefore they|strong=\"H3478\"* turned|strong=\"H6437\"* their|strong=\"H6440\"* backs before|strong=\"H6440\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H5892\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*, but|strong=\"H6437\"* the|strong=\"H6440\"* battle|strong=\"H4421\"* followed hard|strong=\"H1692\"* after them|strong=\"H6440\"*; and|strong=\"H3478\"* those who|strong=\"H3478\"* came|strong=\"H3478\"* out|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* cities|strong=\"H5892\"* destroyed|strong=\"H7843\"* them|strong=\"H6440\"* in|strong=\"H3478\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H5704\"* surrounded|strong=\"H3803\"* the|strong=\"H5704\"* Benjamites, chased|strong=\"H7291\"* them|strong=\"H7291\"*, and|strong=\"H1144\"* trod|strong=\"H1869\"* them|strong=\"H7291\"* down|strong=\"H1869\"* at|strong=\"H1144\"* their|strong=\"H1869\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* near|strong=\"H5704\"* Gibeah|strong=\"H1390\"* toward|strong=\"H5704\"* the|strong=\"H5704\"* sunrise|strong=\"H4217\"*." + }, + { + "verseNum": 44, + "text": "Eighteen|strong=\"H8083\"* thousand men|strong=\"H2428\"* of|strong=\"H3605\"* Benjamin|strong=\"H1144\"* fell|strong=\"H5307\"*; all|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1144\"* men|strong=\"H2428\"* of|strong=\"H3605\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 45, + "text": "They|strong=\"H5704\"* turned|strong=\"H6437\"* and|strong=\"H2568\"* fled|strong=\"H5127\"* toward|strong=\"H4480\"* the|strong=\"H5221\"* wilderness|strong=\"H4057\"* to|strong=\"H5704\"* the|strong=\"H5221\"* rock|strong=\"H5553\"* of|strong=\"H4057\"* Rimmon|strong=\"H7417\"*. They|strong=\"H5704\"* gleaned|strong=\"H5953\"* five|strong=\"H2568\"* thousand men of|strong=\"H4057\"* them|strong=\"H5221\"* in|strong=\"H5127\"* the|strong=\"H5221\"* highways|strong=\"H4546\"*, and|strong=\"H2568\"* followed hard|strong=\"H1692\"* after|strong=\"H4480\"* them|strong=\"H5221\"* to|strong=\"H5704\"* Gidom|strong=\"H1440\"*, and|strong=\"H2568\"* struck|strong=\"H5221\"* two|strong=\"H4480\"* thousand men of|strong=\"H4057\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 46, + "text": "So|strong=\"H1961\"* that|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* fell|strong=\"H5307\"* that|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Benjamin|strong=\"H1144\"* were|strong=\"H1961\"* twenty-five|strong=\"H6242\"* thousand men|strong=\"H2428\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. All|strong=\"H3605\"* these|strong=\"H1931\"* were|strong=\"H1961\"* men|strong=\"H2428\"* of|strong=\"H3117\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 47, + "text": "But|strong=\"H6437\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men turned|strong=\"H6437\"* and|strong=\"H3967\"* fled|strong=\"H5127\"* toward|strong=\"H6437\"* the|strong=\"H3427\"* wilderness|strong=\"H4057\"* to|strong=\"H5127\"* the|strong=\"H3427\"* rock|strong=\"H5553\"* of|strong=\"H3427\"* Rimmon|strong=\"H7417\"*, and|strong=\"H3967\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* rock|strong=\"H5553\"* of|strong=\"H3427\"* Rimmon|strong=\"H7417\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 48, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* on|strong=\"H7971\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* them|strong=\"H7725\"* with|strong=\"H5892\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*—including|strong=\"H5704\"* the|strong=\"H3605\"* entire|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* livestock, and|strong=\"H1121\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H5704\"* found|strong=\"H4672\"*. Moreover|strong=\"H1571\"* they|strong=\"H5704\"* set|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* they|strong=\"H5704\"* found|strong=\"H4672\"* on|strong=\"H7971\"* fire." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5414\"* the|strong=\"H5414\"* men|strong=\"H3478\"* of|strong=\"H1323\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"* in|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, saying, “None|strong=\"H3808\"* of|strong=\"H1323\"* us|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* Benjamin|strong=\"H1144\"* as|strong=\"H5414\"* a|strong=\"H3068\"* wife.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"* and|strong=\"H1419\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* until|strong=\"H5704\"* evening|strong=\"H6153\"* before|strong=\"H6440\"* God|strong=\"H1008\"*, and|strong=\"H1419\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"*, and|strong=\"H1419\"* wept|strong=\"H1058\"* severely." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, why|strong=\"H4100\"* has|strong=\"H3068\"* this|strong=\"H2063\"* happened|strong=\"H1961\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, that|strong=\"H3117\"* there|strong=\"H1961\"* should|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H1961\"* tribe|strong=\"H7626\"* lacking|strong=\"H6485\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 4, + "text": "On|strong=\"H1961\"* the|strong=\"H1129\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, the|strong=\"H1129\"* people|strong=\"H5971\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H5971\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* there|strong=\"H8033\"*, and|strong=\"H5971\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H5971\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Who|strong=\"H4310\"* is|strong=\"H3068\"* there|strong=\"H1961\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H3478\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* oath|strong=\"H7621\"* concerning|strong=\"H3068\"* him|strong=\"H4191\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, saying, “He|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H1961\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* grieved for|strong=\"H3117\"* Benjamin|strong=\"H1144\"* their|strong=\"H3117\"* brother, and|strong=\"H1121\"* said, “There|strong=\"H3117\"* is|strong=\"H3117\"* one|strong=\"H1121\"* tribe|strong=\"H7626\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* provide|strong=\"H6213\"* wives for|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H3068\"* remain|strong=\"H3498\"*, since we|strong=\"H3068\"* have|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"* that|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H1115\"* give|strong=\"H5414\"* them|strong=\"H5414\"* of|strong=\"H3068\"* our|strong=\"H3068\"* daughters|strong=\"H1323\"* to|strong=\"H3068\"* wives?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H3068\"* said, “What|strong=\"H4310\"* one|strong=\"H3808\"* is|strong=\"H3068\"* there|strong=\"H2009\"* of|strong=\"H3068\"* the|strong=\"H3068\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* who|strong=\"H4310\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*?” Behold|strong=\"H2009\"*, no|strong=\"H3808\"* one|strong=\"H3808\"* came|strong=\"H5927\"* from|strong=\"H5927\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* the|strong=\"H3068\"* camp|strong=\"H4264\"* to|strong=\"H3478\"* the|strong=\"H3068\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3427\"* when|strong=\"H3427\"* the|strong=\"H6485\"* people|strong=\"H5971\"* were|strong=\"H5971\"* counted|strong=\"H6485\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* were|strong=\"H5971\"* none of|strong=\"H3427\"* the|strong=\"H6485\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5221\"* congregation|strong=\"H5712\"* sent|strong=\"H7971\"* twelve|strong=\"H8147\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* most valiant|strong=\"H2428\"* men|strong=\"H1121\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* commanded|strong=\"H6680\"* them|strong=\"H7971\"*, saying|strong=\"H6310\"*, “Go|strong=\"H3212\"* and|strong=\"H1121\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* with|strong=\"H3427\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*, with|strong=\"H3427\"* the|strong=\"H5221\"* women and|strong=\"H1121\"* the|strong=\"H5221\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* that|strong=\"H3045\"* you|strong=\"H3605\"* shall|strong=\"H4904\"* do|strong=\"H6213\"*: you|strong=\"H3605\"* shall|strong=\"H4904\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* every|strong=\"H3605\"* male|strong=\"H2145\"*, and|strong=\"H6213\"* every|strong=\"H3605\"* woman|strong=\"H2088\"* who|strong=\"H3605\"* has|strong=\"H1697\"* lain|strong=\"H3045\"* with|strong=\"H6213\"* a|strong=\"H3068\"* man|strong=\"H2145\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3808\"* found|strong=\"H4672\"* among|strong=\"H3427\"* the|strong=\"H3045\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* four hundred|strong=\"H3967\"* young|strong=\"H5291\"* virgins|strong=\"H1330\"* who|strong=\"H3427\"* had|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"* man|strong=\"H2145\"* by|strong=\"H3427\"* lying|strong=\"H4904\"* with|strong=\"H3427\"* him|strong=\"H4672\"*; and|strong=\"H3967\"* they|strong=\"H3808\"* brought them|strong=\"H4672\"* to|strong=\"H3045\"* the|strong=\"H3045\"* camp|strong=\"H4264\"* to|strong=\"H3045\"* Shiloh|strong=\"H7887\"*, which|strong=\"H5291\"* is|strong=\"H5291\"* in|strong=\"H3427\"* the|strong=\"H3045\"* land of|strong=\"H3427\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* congregation|strong=\"H5712\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1696\"* the|strong=\"H3605\"* rock|strong=\"H5553\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"*, and|strong=\"H1121\"* proclaimed|strong=\"H7121\"* peace|strong=\"H7965\"* to|strong=\"H1696\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 14, + "text": "Benjamin|strong=\"H1144\"* returned|strong=\"H7725\"* at|strong=\"H7725\"* that|strong=\"H1931\"* time|strong=\"H6256\"*; and|strong=\"H7725\"* they|strong=\"H3651\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* women whom they|strong=\"H3651\"* had|strong=\"H5414\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"* of|strong=\"H6256\"* the|strong=\"H5414\"* women of|strong=\"H6256\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*. There|strong=\"H4672\"* still|strong=\"H7725\"* weren’t enough|strong=\"H4672\"* for|strong=\"H6256\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* grieved for|strong=\"H3588\"* Benjamin|strong=\"H1144\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* in|strong=\"H3478\"* the|strong=\"H3588\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H6213\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* the|strong=\"H3588\"* congregation|strong=\"H5712\"* said, “How|strong=\"H4100\"* shall|strong=\"H5712\"* we|strong=\"H3068\"* provide|strong=\"H6213\"* wives for|strong=\"H3588\"* those|strong=\"H6213\"* who|strong=\"H3588\"* remain|strong=\"H3498\"*, since|strong=\"H3588\"* the|strong=\"H3588\"* women|strong=\"H2205\"* are|strong=\"H4100\"* destroyed|strong=\"H8045\"* out|strong=\"H6213\"* of|strong=\"H2205\"* Benjamin|strong=\"H1144\"*?”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H3808\"* said, “There must|strong=\"H3478\"* be|strong=\"H3808\"* an|strong=\"H3478\"* inheritance|strong=\"H3425\"* for|strong=\"H3478\"* those who|strong=\"H3478\"* are|strong=\"H3478\"* escaped|strong=\"H6413\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"*, that|strong=\"H3478\"* a|strong=\"H3068\"* tribe|strong=\"H7626\"* not|strong=\"H3808\"* be|strong=\"H3808\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "However|strong=\"H3588\"*, we|strong=\"H3068\"* may|strong=\"H3201\"* not|strong=\"H3808\"* give|strong=\"H5414\"* them|strong=\"H5414\"* wives of|strong=\"H1121\"* our|strong=\"H5414\"* daughters|strong=\"H1323\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"*, saying, ‘Cursed is|strong=\"H3478\"* he|strong=\"H3588\"* who|strong=\"H1121\"* gives|strong=\"H5414\"* a|strong=\"H3068\"* wife to|strong=\"H3478\"* Benjamin|strong=\"H1144\"*.’”" + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* said, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H3068\"* year|strong=\"H3117\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* north|strong=\"H6828\"* of|strong=\"H3068\"* Bethel|strong=\"H1008\"*, on|strong=\"H3117\"* the|strong=\"H3068\"* east|strong=\"H4217\"* side|strong=\"H6828\"* of|strong=\"H3068\"* the|strong=\"H3068\"* highway|strong=\"H4546\"* that|strong=\"H3117\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Bethel|strong=\"H1008\"* to|strong=\"H3068\"* Shechem|strong=\"H7927\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* south|strong=\"H5045\"* of|strong=\"H3068\"* Lebonah|strong=\"H3829\"*.”" + }, + { + "verseNum": 20, + "text": "They commanded|strong=\"H6680\"* the|strong=\"H6680\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, saying, “Go|strong=\"H3212\"* and|strong=\"H1121\"* lie in|strong=\"H3212\"* wait in|strong=\"H3212\"* the|strong=\"H6680\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H1980\"* see|strong=\"H7200\"*, and|strong=\"H1980\"* behold|strong=\"H2009\"*, if|strong=\"H2009\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Shiloh|strong=\"H7887\"* come|strong=\"H1980\"* out|strong=\"H3318\"* to|strong=\"H1980\"* dance|strong=\"H4246\"* in|strong=\"H1980\"* the|strong=\"H7200\"* dances|strong=\"H4246\"*, then|strong=\"H1980\"* come|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H1323\"* the|strong=\"H7200\"* vineyards|strong=\"H3754\"*, and|strong=\"H1980\"* each man|strong=\"H7200\"* catch|strong=\"H2414\"* his|strong=\"H7200\"* wife of|strong=\"H1323\"* the|strong=\"H7200\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H7200\"* land of|strong=\"H1323\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H5414\"* shall|strong=\"H3808\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* their|strong=\"H5414\"* fathers or|strong=\"H3808\"* their|strong=\"H5414\"* brothers come|strong=\"H1961\"* to|strong=\"H1961\"* complain|strong=\"H7378\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* say to|strong=\"H1961\"* them|strong=\"H5414\"*, ‘Grant|strong=\"H5414\"* them|strong=\"H5414\"* graciously|strong=\"H2603\"* to|strong=\"H1961\"* us|strong=\"H5414\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* didn’t take|strong=\"H3947\"* for|strong=\"H3588\"* each|strong=\"H5414\"* man his|strong=\"H5414\"* wife in|strong=\"H4421\"* battle|strong=\"H4421\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* you|strong=\"H3588\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* them|strong=\"H5414\"*; otherwise|strong=\"H3808\"* you|strong=\"H3588\"* would now|strong=\"H1961\"* be|strong=\"H1961\"* guilty.’”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* took|strong=\"H5375\"* wives for|strong=\"H6213\"* themselves|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H7725\"* their|strong=\"H5375\"* number|strong=\"H4557\"*, of|strong=\"H1121\"* those|strong=\"H4480\"* who|strong=\"H1121\"* danced|strong=\"H2342\"*, whom they|strong=\"H3651\"* carried|strong=\"H5375\"* off|strong=\"H4480\"*. They|strong=\"H3651\"* went|strong=\"H3212\"* and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H5375\"* inheritance|strong=\"H5159\"*, built|strong=\"H1129\"* the|strong=\"H5375\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* departed|strong=\"H1980\"* from|strong=\"H3318\"* there|strong=\"H8033\"* at|strong=\"H3478\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, every|strong=\"H4940\"* man|strong=\"H1121\"* to|strong=\"H1980\"* his|strong=\"H3478\"* tribe|strong=\"H7626\"* and|strong=\"H1121\"* to|strong=\"H1980\"* his|strong=\"H3478\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* they|strong=\"H8033\"* each went|strong=\"H1980\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* to|strong=\"H1980\"* his|strong=\"H3478\"* own inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1992\"* was|strong=\"H3478\"* no|strong=\"H6213\"* king|strong=\"H4428\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Everyone did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1992\"* was|strong=\"H3478\"* right|strong=\"H3477\"* in|strong=\"H3478\"* his|strong=\"H3478\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + } + ] + } + ] + }, + { + "name": "Ruth", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* when|strong=\"H1961\"* the|strong=\"H3117\"* judges|strong=\"H8199\"* judged|strong=\"H8199\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land|strong=\"H7704\"*. A|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"* went|strong=\"H3212\"* to|strong=\"H3212\"* live|strong=\"H1481\"* in|strong=\"H3117\"* the|strong=\"H3117\"* country|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* with|strong=\"H3117\"* his|strong=\"H1961\"* wife and|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* man|strong=\"H1121\"* was|strong=\"H8034\"* Elimelech, and|strong=\"H1121\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* wife Naomi|strong=\"H5281\"*. The|strong=\"H1961\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* Mahlon|strong=\"H4248\"* and|strong=\"H1121\"* Chilion|strong=\"H3630\"*, Ephrathites of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*. They|strong=\"H8033\"* came|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H1961\"* country|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* lived|strong=\"H1961\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "Elimelech, Naomi|strong=\"H5281\"*’s husband, died|strong=\"H4191\"*; and|strong=\"H1121\"* she|strong=\"H1931\"* was|strong=\"H1931\"* left|strong=\"H7604\"* with|strong=\"H4191\"* her|strong=\"H1931\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H8033\"* took|strong=\"H5375\"* for|strong=\"H8034\"* themselves wives of|strong=\"H8141\"* the|strong=\"H5375\"* women of|strong=\"H8141\"* Moab|strong=\"H4125\"*. The|strong=\"H5375\"* name|strong=\"H8034\"* of|strong=\"H8141\"* the|strong=\"H5375\"* one|strong=\"H5375\"* was|strong=\"H8034\"* Orpah|strong=\"H6204\"*, and|strong=\"H8033\"* the|strong=\"H5375\"* name|strong=\"H8034\"* of|strong=\"H8141\"* the|strong=\"H5375\"* other|strong=\"H8145\"* was|strong=\"H8034\"* Ruth|strong=\"H7327\"*. They|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* about|strong=\"H8033\"* ten|strong=\"H6235\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "Mahlon|strong=\"H4248\"* and|strong=\"H8147\"* Chilion|strong=\"H3630\"* both|strong=\"H8147\"* died|strong=\"H4191\"*, and|strong=\"H8147\"* the|strong=\"H1571\"* woman was|strong=\"H3206\"* bereaved of|strong=\"H8147\"* her|strong=\"H1571\"* two|strong=\"H8147\"* children|strong=\"H3206\"* and|strong=\"H8147\"* of|strong=\"H8147\"* her|strong=\"H1571\"* husband." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6965\"* she|strong=\"H1931\"* arose|strong=\"H6965\"* with|strong=\"H3068\"* her|strong=\"H5414\"* daughters-in-law|strong=\"H3618\"*, that|strong=\"H3588\"* she|strong=\"H1931\"* might|strong=\"H3068\"* return|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H8085\"* country|strong=\"H7704\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* had|strong=\"H3068\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H8085\"* country|strong=\"H7704\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* how|strong=\"H3588\"* Yahweh|strong=\"H3068\"*+ 1:6 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* had|strong=\"H3068\"* visited|strong=\"H6485\"* his|strong=\"H5414\"* people|strong=\"H5971\"* in|strong=\"H3068\"* giving|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H8147\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H1870\"* the|strong=\"H4480\"* place|strong=\"H4725\"* where|strong=\"H8033\"* she|strong=\"H8147\"* was|strong=\"H1961\"*, and|strong=\"H3063\"* her|strong=\"H3318\"* two|strong=\"H8147\"* daughters-in-law|strong=\"H3618\"* with|strong=\"H5973\"* her|strong=\"H3318\"*. They|strong=\"H8033\"* went|strong=\"H3212\"* on|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land|strong=\"H4725\"* of|strong=\"H1870\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "Naomi|strong=\"H5281\"* said to|strong=\"H7725\"* her|strong=\"H7725\"* two|strong=\"H8147\"* daughters-in-law|strong=\"H3618\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* each|strong=\"H8147\"* of|strong=\"H1004\"* you|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* mother’s house|strong=\"H1004\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* you|strong=\"H7725\"*, as|strong=\"H6213\"* you|strong=\"H7725\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H6213\"* dead|strong=\"H4191\"* and|strong=\"H3068\"* with|strong=\"H5973\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* find|strong=\"H4672\"* rest|strong=\"H4496\"*, each|strong=\"H5414\"* of|strong=\"H1004\"* you|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* her|strong=\"H5414\"* husband.”" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* said to|strong=\"H7725\"* her|strong=\"H7725\"*, “No, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H5971\"* return|strong=\"H7725\"* with|strong=\"H5971\"* you|strong=\"H3588\"* to|strong=\"H7725\"* your|strong=\"H7725\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 11, + "text": "Naomi|strong=\"H5281\"* said, “Go|strong=\"H3212\"* back|strong=\"H7725\"*, my|strong=\"H7725\"* daughters|strong=\"H1323\"*. Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7725\"* want to|strong=\"H7725\"* go|strong=\"H3212\"* with|strong=\"H5973\"* me|strong=\"H7725\"*? Do|strong=\"H4100\"* I|strong=\"H4100\"* still|strong=\"H5750\"* have|strong=\"H1961\"* sons|strong=\"H1121\"* in|strong=\"H3212\"* my|strong=\"H7725\"* womb|strong=\"H4578\"*, that|strong=\"H1121\"* they|strong=\"H4100\"* may|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H7725\"* husbands|strong=\"H5973\"*?" + }, + { + "verseNum": 12, + "text": "Go|strong=\"H3212\"* back|strong=\"H7725\"*, my|strong=\"H7725\"* daughters|strong=\"H1323\"*, go|strong=\"H3212\"* your|strong=\"H7725\"* way|strong=\"H3212\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* too|strong=\"H1571\"* old|strong=\"H1121\"* to|strong=\"H7725\"* have|strong=\"H1961\"* a|strong=\"H3068\"* husband. If|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* say|strong=\"H7725\"*, ‘I|strong=\"H3588\"* have|strong=\"H1961\"* hope|strong=\"H8615\"*,’ if|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* even|strong=\"H1571\"* have|strong=\"H1961\"* a|strong=\"H3068\"* husband tonight|strong=\"H3915\"*, and|strong=\"H1121\"* should|strong=\"H3588\"* also|strong=\"H1571\"* bear|strong=\"H3205\"* sons|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "would|strong=\"H3068\"* you|strong=\"H3588\"* then|strong=\"H1961\"* wait|strong=\"H7663\"* until|strong=\"H5704\"* they|strong=\"H3588\"* were|strong=\"H1961\"* grown|strong=\"H1431\"*? Would|strong=\"H3068\"* you|strong=\"H3588\"* then|strong=\"H1961\"* refrain|strong=\"H5702\"* from|strong=\"H4480\"* having|strong=\"H1961\"* husbands? No|strong=\"H1115\"*, my|strong=\"H3068\"* daughters|strong=\"H1323\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* grieves me|strong=\"H4480\"* seriously for|strong=\"H3588\"* your|strong=\"H3068\"* sakes, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H4480\"* me|strong=\"H4480\"*.”" + }, + { + "verseNum": 14, + "text": "They|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"* and|strong=\"H6963\"* wept|strong=\"H1058\"* again|strong=\"H5750\"*; then|strong=\"H5375\"* Orpah|strong=\"H6204\"* kissed|strong=\"H5401\"* her|strong=\"H5375\"* mother-in-law|strong=\"H2545\"*, but|strong=\"H5750\"* Ruth|strong=\"H7327\"* stayed|strong=\"H5750\"* with|strong=\"H5375\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 15, + "text": "She said, “Behold|strong=\"H2009\"*,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* your|strong=\"H7725\"* sister-in-law|strong=\"H2994\"* has|strong=\"H2009\"* gone|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* people|strong=\"H5971\"* and|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7725\"* god. Follow your|strong=\"H7725\"* sister-in-law|strong=\"H2994\"*.”" + }, + { + "verseNum": 16, + "text": "Ruth|strong=\"H7327\"* said, “Don’t urge|strong=\"H6293\"* me|strong=\"H7725\"* to|strong=\"H7725\"* leave|strong=\"H5800\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H3212\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* where you|strong=\"H3588\"* go|strong=\"H3212\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* go|strong=\"H3212\"*; and|strong=\"H7725\"* where you|strong=\"H3588\"* stay|strong=\"H3885\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* stay|strong=\"H3885\"*. Your|strong=\"H7725\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H5971\"* my|strong=\"H7725\"* people|strong=\"H5971\"*, and|strong=\"H7725\"* your|strong=\"H7725\"* God+ 1:16 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* my|strong=\"H7725\"* God." + }, + { + "verseNum": 17, + "text": "Where|strong=\"H8033\"* you|strong=\"H3588\"* die|strong=\"H4191\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H3068\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H6213\"*, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"* anything|strong=\"H6213\"* but|strong=\"H3588\"* death|strong=\"H4194\"* parts|strong=\"H6504\"* you|strong=\"H3588\"* and|strong=\"H3068\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Naomi saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* determined to|strong=\"H1696\"* go|strong=\"H3212\"* with|strong=\"H1696\"* her|strong=\"H7200\"*, she|strong=\"H1931\"* stopped|strong=\"H2308\"* urging her|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H1961\"* they|strong=\"H5921\"* both|strong=\"H8147\"* went|strong=\"H3212\"* until|strong=\"H5704\"* they|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*. When|strong=\"H1961\"* they|strong=\"H5921\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H1961\"* excited about|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H3212\"* they|strong=\"H5921\"* asked, “Is|strong=\"H3605\"* this|strong=\"H2063\"* Naomi|strong=\"H5281\"*?”" + }, + { + "verseNum": 20, + "text": "She|strong=\"H3588\"* said|strong=\"H7121\"* to|strong=\"H7121\"* them|strong=\"H7121\"*, “Don’t call|strong=\"H7121\"* me|strong=\"H7121\"* Naomi|strong=\"H5281\"*.+ 1:20 “Naomi” means “pleasant”.* Call|strong=\"H7121\"* me|strong=\"H7121\"* Mara|strong=\"H4755\"*,+ 1:20 “Mara” means “bitter”.* for|strong=\"H3588\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* has|strong=\"H3588\"* dealt|strong=\"H4843\"* very|strong=\"H3966\"* bitterly|strong=\"H4843\"* with|strong=\"H4843\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H4100\"* went|strong=\"H1980\"* out|strong=\"H1980\"* full|strong=\"H4392\"*, and|strong=\"H1980\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* home|strong=\"H7725\"* again|strong=\"H7725\"* empty|strong=\"H7387\"*. Why|strong=\"H4100\"* do|strong=\"H7489\"* you|strong=\"H7725\"* call|strong=\"H7121\"* me|strong=\"H7725\"* Naomi|strong=\"H5281\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* testified|strong=\"H6030\"* against|strong=\"H3068\"* me|strong=\"H7725\"*, and|strong=\"H1980\"* the|strong=\"H3068\"* Almighty|strong=\"H7706\"* has|strong=\"H3068\"* afflicted|strong=\"H7489\"* me|strong=\"H7725\"*?”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7725\"* Naomi|strong=\"H5281\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* Ruth|strong=\"H7327\"* the|strong=\"H7725\"* Moabitess|strong=\"H4125\"*, her|strong=\"H7725\"* daughter-in-law|strong=\"H3618\"*, with|strong=\"H5973\"* her|strong=\"H7725\"*, who|strong=\"H1992\"* returned|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7704\"* the|strong=\"H7725\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*. They|strong=\"H1992\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Bethlehem|strong=\"H1035\"* in|strong=\"H7725\"* the|strong=\"H7725\"* beginning|strong=\"H8462\"* of|strong=\"H7704\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Naomi|strong=\"H5281\"* had|strong=\"H3045\"* a|strong=\"H3068\"* relative of|strong=\"H8034\"* her|strong=\"H3045\"* husband’s, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H8034\"* wealth|strong=\"H2428\"*, of|strong=\"H8034\"* the|strong=\"H3045\"* family|strong=\"H4940\"* of|strong=\"H8034\"* Elimelech, and|strong=\"H3045\"* his|strong=\"H3045\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Boaz|strong=\"H1162\"*." + }, + { + "verseNum": 2, + "text": "Ruth|strong=\"H7327\"* the|strong=\"H4672\"* Moabitess|strong=\"H4125\"* said to|strong=\"H3212\"* Naomi|strong=\"H5281\"*, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H4672\"* field|strong=\"H7704\"*, and|strong=\"H3212\"* glean|strong=\"H3950\"* among|strong=\"H4672\"* the|strong=\"H4672\"* ears|strong=\"H7641\"* of|strong=\"H1323\"* grain|strong=\"H7641\"* after him|strong=\"H4672\"* in|strong=\"H3212\"* whose|strong=\"H1323\"* sight|strong=\"H5869\"* I|strong=\"H4672\"* find|strong=\"H4672\"* favor|strong=\"H2580\"*.”" + }, + { + "verseNum": 3, + "text": "She went|strong=\"H3212\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* and|strong=\"H3212\"* gleaned|strong=\"H3950\"* in|strong=\"H3212\"* the|strong=\"H3212\"* field|strong=\"H7704\"* after the|strong=\"H3212\"* reapers|strong=\"H7114\"*; and|strong=\"H3212\"* she happened|strong=\"H7136\"* to|strong=\"H3212\"* come|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3212\"* portion|strong=\"H2513\"* of|strong=\"H7704\"* the|strong=\"H3212\"* field|strong=\"H7704\"* belonging to|strong=\"H3212\"* Boaz|strong=\"H1162\"*, who was|strong=\"H4940\"* of|strong=\"H7704\"* the|strong=\"H3212\"* family|strong=\"H4940\"* of|strong=\"H7704\"* Elimelech." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, Boaz|strong=\"H1162\"* came|strong=\"H3068\"* from|strong=\"H3068\"* Bethlehem|strong=\"H1035\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* reapers|strong=\"H7114\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 5, + "text": "Then Boaz|strong=\"H1162\"* said to|strong=\"H5921\"* his|strong=\"H5921\"* servant|strong=\"H5288\"* who|strong=\"H4310\"* was|strong=\"H5288\"* set|strong=\"H5324\"* over|strong=\"H5921\"* the|strong=\"H5921\"* reapers|strong=\"H7114\"*, “Whose|strong=\"H4310\"* young|strong=\"H5288\"* lady|strong=\"H5291\"* is|strong=\"H4310\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* servant|strong=\"H5288\"* who|strong=\"H1931\"* was|strong=\"H1931\"* set|strong=\"H5324\"* over|strong=\"H5921\"* the|strong=\"H5921\"* reapers|strong=\"H7114\"* answered|strong=\"H6030\"*, “It|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* Moabite|strong=\"H4125\"* lady|strong=\"H5291\"* who|strong=\"H1931\"* came|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H5973\"* Naomi|strong=\"H5281\"* out|strong=\"H5921\"* of|strong=\"H7704\"* the|strong=\"H5921\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H1242\"* said, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* glean|strong=\"H3950\"* and|strong=\"H1004\"* gather|strong=\"H3950\"* after|strong=\"H1242\"* the|strong=\"H5704\"* reapers|strong=\"H7114\"* among|strong=\"H3427\"* the|strong=\"H5704\"* sheaves|strong=\"H6016\"*.’ So|strong=\"H6258\"* she|strong=\"H1242\"* came, and|strong=\"H1004\"* has|strong=\"H2088\"* continued|strong=\"H3427\"* even|strong=\"H5704\"* from|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"* until|strong=\"H5704\"* now|strong=\"H6258\"*, except that|strong=\"H2088\"* she|strong=\"H1242\"* rested a|strong=\"H3068\"* little|strong=\"H4592\"* in|strong=\"H3427\"* the|strong=\"H5704\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* Boaz|strong=\"H1162\"* said|strong=\"H8085\"* to|strong=\"H3212\"* Ruth|strong=\"H7327\"*, “Listen|strong=\"H8085\"*, my|strong=\"H8085\"* daughter|strong=\"H1323\"*. Don’t go|strong=\"H3212\"* to|strong=\"H3212\"* glean|strong=\"H3950\"* in|strong=\"H8085\"* another|strong=\"H2088\"* field|strong=\"H7704\"*, and|strong=\"H3212\"* don’t go|strong=\"H3212\"* from|strong=\"H8085\"* here|strong=\"H2088\"*, but|strong=\"H3808\"* stay|strong=\"H1692\"* here|strong=\"H2088\"* close|strong=\"H1692\"* to|strong=\"H3212\"* my|strong=\"H8085\"* maidens|strong=\"H5291\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H3808\"* your|strong=\"H6680\"* eyes|strong=\"H5869\"* be|strong=\"H3808\"* on|strong=\"H1980\"* the|strong=\"H6680\"* field|strong=\"H7704\"* that|strong=\"H5288\"* they|strong=\"H3808\"* reap|strong=\"H7114\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* after|strong=\"H1980\"* them|strong=\"H6680\"*. Haven’t I|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"* not|strong=\"H3808\"* to|strong=\"H1980\"* touch|strong=\"H5060\"* you|strong=\"H6680\"*? When|strong=\"H1980\"* you|strong=\"H6680\"* are|strong=\"H5869\"* thirsty|strong=\"H6770\"*, go|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H6680\"* vessels|strong=\"H3627\"*, and|strong=\"H1980\"* drink|strong=\"H8354\"* from|strong=\"H1980\"* that|strong=\"H5288\"* which|strong=\"H5869\"* the|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"* have|strong=\"H5869\"* drawn|strong=\"H7579\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5307\"* she|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face|strong=\"H6440\"* and|strong=\"H5869\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*, and|strong=\"H5869\"* said to|strong=\"H5921\"* him|strong=\"H6440\"*, “Why|strong=\"H4069\"* have|strong=\"H5869\"* I|strong=\"H5921\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, that|strong=\"H5307\"* you|strong=\"H6440\"* should|strong=\"H4069\"* take|strong=\"H5234\"* knowledge|strong=\"H5234\"* of|strong=\"H6440\"* me|strong=\"H6440\"*, since I|strong=\"H5921\"* am a|strong=\"H3068\"* foreigner|strong=\"H5237\"*?”" + }, + { + "verseNum": 11, + "text": "Boaz|strong=\"H1162\"* answered|strong=\"H6030\"* her|strong=\"H3605\"*, “I|strong=\"H3045\"* have|strong=\"H5971\"* been|strong=\"H4194\"* told|strong=\"H5046\"* all|strong=\"H3605\"* about|strong=\"H6213\"* what|strong=\"H3045\"* you|strong=\"H3605\"* have|strong=\"H5971\"* done|strong=\"H6213\"* for|strong=\"H6213\"* your|strong=\"H3605\"* mother-in-law|strong=\"H2545\"* since the|strong=\"H3605\"* death|strong=\"H4194\"* of|strong=\"H5971\"* your|strong=\"H3605\"* husband, and|strong=\"H6030\"* how|strong=\"H3045\"* you|strong=\"H3605\"* have|strong=\"H5971\"* left|strong=\"H5800\"* your|strong=\"H3605\"* father, your|strong=\"H3605\"* mother, and|strong=\"H6030\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* your|strong=\"H3605\"* birth|strong=\"H4138\"*, and|strong=\"H6030\"* have|strong=\"H5971\"* come|strong=\"H3212\"* to|strong=\"H3212\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H3045\"* you|strong=\"H3605\"* didn’t know|strong=\"H3045\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* repay|strong=\"H7999\"* your|strong=\"H3068\"* work|strong=\"H6467\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* full|strong=\"H8003\"* reward|strong=\"H7999\"* be|strong=\"H1961\"* given to|strong=\"H3478\"* you|strong=\"H5973\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, under|strong=\"H8478\"* whose wings|strong=\"H3671\"* you|strong=\"H5973\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3478\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* she|strong=\"H3588\"* said|strong=\"H1696\"*, “Let|strong=\"H3808\"* me|strong=\"H5921\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*, my|strong=\"H5921\"* lord, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* comforted|strong=\"H5162\"* me|strong=\"H5921\"*, and|strong=\"H5869\"* because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* kindly|strong=\"H3820\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servant|strong=\"H8198\"*, though|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* not|strong=\"H3808\"* as|strong=\"H1961\"* one|strong=\"H3808\"* of|strong=\"H5869\"* your|strong=\"H5921\"* servants|strong=\"H8198\"*.”" + }, + { + "verseNum": 14, + "text": "At|strong=\"H3427\"* meal|strong=\"H3899\"* time|strong=\"H6256\"* Boaz|strong=\"H1162\"* said to|strong=\"H6256\"* her|strong=\"H6642\"*, “Come|strong=\"H5066\"* here|strong=\"H1988\"*, and|strong=\"H3899\"* eat|strong=\"H3899\"* some|strong=\"H4480\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* dip|strong=\"H2881\"* your|strong=\"H4480\"* morsel|strong=\"H6595\"* in|strong=\"H3427\"* the|strong=\"H4480\"* vinegar|strong=\"H2558\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1571\"* she|strong=\"H1571\"* had|strong=\"H6680\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H6965\"* glean|strong=\"H3950\"*, Boaz|strong=\"H1162\"* commanded|strong=\"H6680\"* his|strong=\"H6680\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, saying, “Let|strong=\"H3808\"* her|strong=\"H1571\"* glean|strong=\"H3950\"* even|strong=\"H1571\"* among|strong=\"H3808\"* the|strong=\"H6680\"* sheaves|strong=\"H6016\"*, and|strong=\"H6965\"* don’t reproach|strong=\"H3637\"* her|strong=\"H1571\"*." + }, + { + "verseNum": 16, + "text": "Also|strong=\"H1571\"* pull|strong=\"H7997\"* out|strong=\"H4480\"* some|strong=\"H4480\"* for|strong=\"H3808\"* her|strong=\"H1571\"* from|strong=\"H4480\"* the|strong=\"H4480\"* bundles|strong=\"H6653\"*, and|strong=\"H1571\"* leave|strong=\"H5800\"* it|strong=\"H3808\"*. Let|strong=\"H5800\"* her|strong=\"H1571\"* glean|strong=\"H3950\"*, and|strong=\"H1571\"* don’t rebuke|strong=\"H1605\"* her|strong=\"H1571\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* she|strong=\"H6153\"* gleaned|strong=\"H3950\"* in|strong=\"H1961\"* the|strong=\"H5704\"* field|strong=\"H7704\"* until|strong=\"H5704\"* evening|strong=\"H6153\"*; and|strong=\"H7704\"* she|strong=\"H6153\"* beat|strong=\"H2251\"* out|strong=\"H2251\"* that|strong=\"H5704\"* which|strong=\"H7704\"* she|strong=\"H6153\"* had|strong=\"H1961\"* gleaned|strong=\"H3950\"*, and|strong=\"H7704\"* it|strong=\"H1961\"* was|strong=\"H1961\"* about|strong=\"H1961\"* an|strong=\"H1961\"* ephah+ 2:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H7704\"* barley|strong=\"H8184\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H5892\"* took|strong=\"H5375\"* it|strong=\"H5414\"* up|strong=\"H5375\"*, and|strong=\"H5892\"* went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H7200\"* city|strong=\"H5892\"*. Then|strong=\"H3318\"* her|strong=\"H5414\"* mother-in-law|strong=\"H2545\"* saw|strong=\"H7200\"* what|strong=\"H7200\"* she|strong=\"H5892\"* had|strong=\"H5414\"* gleaned|strong=\"H3950\"*; and|strong=\"H5892\"* she|strong=\"H5892\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* gave|strong=\"H5414\"* to|strong=\"H3318\"* her|strong=\"H5414\"* that|strong=\"H7200\"* which|strong=\"H5892\"* she|strong=\"H5892\"* had|strong=\"H5414\"* left|strong=\"H3498\"* after|strong=\"H3318\"* she|strong=\"H5892\"* had|strong=\"H5414\"* enough|strong=\"H3498\"*." + }, + { + "verseNum": 19, + "text": "Her|strong=\"H5046\"* mother-in-law|strong=\"H2545\"* said to|strong=\"H1961\"* her|strong=\"H5046\"*, “Where have|strong=\"H1961\"* you|strong=\"H3117\"* gleaned|strong=\"H3950\"* today|strong=\"H3117\"*? Where have|strong=\"H1961\"* you|strong=\"H3117\"* worked|strong=\"H6213\"*? Blessed|strong=\"H1288\"* be|strong=\"H1961\"* he|strong=\"H3117\"* who|strong=\"H6213\"* noticed|strong=\"H5234\"* you|strong=\"H3117\"*.”" + }, + { + "verseNum": 20, + "text": "Naomi|strong=\"H5281\"* said to|strong=\"H4191\"* her|strong=\"H3618\"* daughter-in-law|strong=\"H3618\"*, “May|strong=\"H3068\"* he|strong=\"H1931\"* be|strong=\"H4191\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* has|strong=\"H3068\"* not|strong=\"H3808\"* abandoned|strong=\"H5800\"* his|strong=\"H3068\"* kindness|strong=\"H2617\"* to|strong=\"H4191\"* the|strong=\"H3068\"* living|strong=\"H2416\"* and|strong=\"H3068\"* to|strong=\"H4191\"* the|strong=\"H3068\"* dead|strong=\"H4191\"*.” Naomi|strong=\"H5281\"* said to|strong=\"H4191\"* her|strong=\"H3618\"*, “The|strong=\"H3068\"* man|strong=\"H4191\"* is|strong=\"H3068\"* a|strong=\"H3068\"* close|strong=\"H7138\"* relative|strong=\"H1350\"* to|strong=\"H4191\"* us|strong=\"H5800\"*, one|strong=\"H3808\"* of|strong=\"H3068\"* our|strong=\"H3068\"* near|strong=\"H7138\"* kinsmen|strong=\"H7138\"*.”" + }, + { + "verseNum": 21, + "text": "Ruth|strong=\"H7327\"* the|strong=\"H3605\"* Moabitess|strong=\"H4125\"* said, “Yes|strong=\"H3588\"*, he|strong=\"H3588\"* said to|strong=\"H5704\"* me|strong=\"H5973\"*, ‘You|strong=\"H3588\"* shall|strong=\"H5288\"* stay|strong=\"H1692\"* close|strong=\"H1692\"* to|strong=\"H5704\"* my|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* until|strong=\"H5704\"* they|strong=\"H3588\"* have|strong=\"H1571\"* finished|strong=\"H3615\"* all|strong=\"H3605\"* my|strong=\"H3605\"* harvest|strong=\"H7105\"*.’”" + }, + { + "verseNum": 22, + "text": "Naomi|strong=\"H5281\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Ruth|strong=\"H7327\"* her|strong=\"H3318\"* daughter-in-law|strong=\"H3618\"*, “It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"*, my|strong=\"H3318\"* daughter|strong=\"H1323\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* his|strong=\"H3588\"* maidens|strong=\"H5291\"*, and|strong=\"H7704\"* that|strong=\"H3588\"* they|strong=\"H3588\"* not|strong=\"H3808\"* harm you|strong=\"H3588\"* in|strong=\"H3808\"* any|strong=\"H3588\"* other field|strong=\"H7704\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H3427\"* she|strong=\"H5704\"* stayed|strong=\"H3427\"* close|strong=\"H1692\"* to|strong=\"H5704\"* the|strong=\"H5704\"* maidens|strong=\"H5291\"* of|strong=\"H3427\"* Boaz|strong=\"H1162\"*, to|strong=\"H5704\"* glean|strong=\"H3950\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H3615\"* of|strong=\"H3427\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"* and|strong=\"H3427\"* of|strong=\"H3427\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"*; and|strong=\"H3427\"* she|strong=\"H5704\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* her|strong=\"H5291\"* mother-in-law|strong=\"H2545\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Naomi|strong=\"H5281\"* her|strong=\"H3190\"* mother-in-law|strong=\"H2545\"* said to|strong=\"H1245\"* her|strong=\"H3190\"*, “My|strong=\"H1245\"* daughter|strong=\"H1323\"*, shall|strong=\"H1323\"* I|strong=\"H3808\"* not|strong=\"H3808\"* seek|strong=\"H1245\"* rest|strong=\"H4494\"* for|strong=\"H1245\"* you|strong=\"H3808\"*, that|strong=\"H3808\"* it|strong=\"H3190\"* may|strong=\"H3808\"* be|strong=\"H3808\"* well|strong=\"H3190\"* with|strong=\"H3190\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"* isn’t Boaz|strong=\"H1162\"* our|strong=\"H1961\"* kinsman|strong=\"H4130\"*, with|strong=\"H1961\"* whose maidens|strong=\"H5291\"* you|strong=\"H3808\"* were|strong=\"H1961\"*? Behold|strong=\"H2009\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* winnowing|strong=\"H2219\"* barley|strong=\"H8184\"* tonight|strong=\"H3915\"* on|strong=\"H1961\"* the|strong=\"H1961\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H5921\"* wash|strong=\"H7364\"* yourself|strong=\"H5921\"*, anoint|strong=\"H5480\"* yourself|strong=\"H5921\"*, get|strong=\"H7760\"* dressed, and|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H5704\"* the|strong=\"H5921\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*; but|strong=\"H5921\"* don’t make|strong=\"H7760\"* yourself|strong=\"H5921\"* known|strong=\"H3045\"* to|strong=\"H5704\"* the|strong=\"H5921\"* man|strong=\"H3045\"* until|strong=\"H5704\"* he|strong=\"H5704\"* has|strong=\"H3045\"* finished|strong=\"H3615\"* eating and|strong=\"H3381\"* drinking|strong=\"H8354\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* lies|strong=\"H7901\"* down|strong=\"H7901\"*, that|strong=\"H3045\"* you|strong=\"H6213\"* shall|strong=\"H1931\"* note|strong=\"H3045\"* the|strong=\"H6213\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H1931\"* is|strong=\"H1931\"* lying|strong=\"H7901\"*. Then|strong=\"H1961\"* you|strong=\"H6213\"* shall|strong=\"H1931\"* go|strong=\"H1540\"* in|strong=\"H6213\"*, uncover|strong=\"H1540\"* his|strong=\"H3045\"* feet|strong=\"H4772\"*, and|strong=\"H8033\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*. Then|strong=\"H1961\"* he|strong=\"H1931\"* will|strong=\"H1961\"* tell|strong=\"H5046\"* you|strong=\"H6213\"* what|strong=\"H3045\"* to|strong=\"H1961\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "She said to|strong=\"H6213\"* her|strong=\"H3605\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* say, I|strong=\"H3605\"* will|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "She went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H6213\"* did|strong=\"H6213\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* her|strong=\"H3605\"* mother-in-law|strong=\"H2545\"* told|strong=\"H6680\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7901\"* Boaz|strong=\"H1162\"* had|strong=\"H1162\"* eaten and|strong=\"H8354\"* drunk|strong=\"H8354\"*, and|strong=\"H8354\"* his|strong=\"H1540\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* merry|strong=\"H3190\"*, he|strong=\"H8354\"* went|strong=\"H1540\"* to|strong=\"H3820\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* at|strong=\"H7097\"* the|strong=\"H1540\"* end|strong=\"H7097\"* of|strong=\"H3820\"* the|strong=\"H1540\"* heap|strong=\"H6194\"* of|strong=\"H3820\"* grain|strong=\"H6194\"*. She|strong=\"H3820\"* came softly|strong=\"H3909\"*, uncovered|strong=\"H1540\"* his|strong=\"H1540\"* feet|strong=\"H4772\"*, and|strong=\"H8354\"* lay|strong=\"H7901\"* down|strong=\"H7901\"*." + }, + { + "verseNum": 8, + "text": "At|strong=\"H1961\"* midnight|strong=\"H2677\"*, the|strong=\"H1961\"* man was|strong=\"H1961\"* startled|strong=\"H2729\"* and|strong=\"H3915\"* turned|strong=\"H1961\"* himself; and|strong=\"H3915\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* woman lay|strong=\"H7901\"* at|strong=\"H1961\"* his|strong=\"H1961\"* feet|strong=\"H4772\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said, “Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3068\"* said, “You|strong=\"H1288\"* are|strong=\"H3068\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* daughter|strong=\"H1323\"*. You|strong=\"H1288\"* have|strong=\"H3068\"* shown|strong=\"H3190\"* more|strong=\"H4480\"* kindness|strong=\"H2617\"* in|strong=\"H3068\"* the|strong=\"H3068\"* latter end than|strong=\"H4480\"* at|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7223\"*, because|strong=\"H4480\"* you|strong=\"H1288\"* didn’t follow|strong=\"H3212\"* young|strong=\"H1115\"* men|strong=\"H6223\"*, whether|strong=\"H4480\"* poor|strong=\"H1800\"* or|strong=\"H4480\"* rich|strong=\"H6223\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"*, my|strong=\"H3605\"* daughter|strong=\"H1323\"*, don’t be|strong=\"H5971\"* afraid|strong=\"H3372\"*. I|strong=\"H3588\"* will|strong=\"H5971\"* do|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* say; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H8179\"* of|strong=\"H1323\"* my|strong=\"H3605\"* people|strong=\"H5971\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* worthy|strong=\"H2428\"* woman|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* it|strong=\"H3588\"* is|strong=\"H3426\"* true that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3426\"* a|strong=\"H3068\"* near|strong=\"H7138\"* kinsman|strong=\"H1350\"*. However|strong=\"H1571\"*, there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* nearer|strong=\"H7138\"* than|strong=\"H4480\"* I|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Stay|strong=\"H3885\"* this|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, if|strong=\"H1961\"* he|strong=\"H5704\"* will|strong=\"H3068\"* perform for|strong=\"H5704\"* you|strong=\"H5704\"* the|strong=\"H3068\"* part of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"*, good|strong=\"H2896\"*. Let|strong=\"H3808\"* him|strong=\"H2896\"* do|strong=\"H3068\"* the|strong=\"H3068\"* kinsman|strong=\"H1350\"*’s duty. But|strong=\"H3808\"* if|strong=\"H1961\"* he|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H3068\"* the|strong=\"H3068\"* duty of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, then|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H3068\"* do|strong=\"H3068\"* the|strong=\"H3068\"* duty of|strong=\"H3068\"* a|strong=\"H3068\"* kinsman|strong=\"H1350\"* for|strong=\"H5704\"* you|strong=\"H5704\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*. Lie|strong=\"H7901\"* down|strong=\"H7901\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*.”" + }, + { + "verseNum": 14, + "text": "She|strong=\"H3588\"* lay|strong=\"H7901\"* at|strong=\"H6965\"* his|strong=\"H3045\"* feet|strong=\"H4772\"* until|strong=\"H5704\"* the|strong=\"H3588\"* morning|strong=\"H1242\"*, then|strong=\"H6965\"* she|strong=\"H3588\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* before|strong=\"H5704\"* one|strong=\"H3588\"* could|strong=\"H3045\"* discern|strong=\"H5234\"* another|strong=\"H7453\"*. For|strong=\"H3588\"* he|strong=\"H3588\"* said, “Let it|strong=\"H3588\"* not|strong=\"H3045\"* be|strong=\"H3588\"* known|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* woman came to|strong=\"H5704\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* said, “Bring|strong=\"H3051\"* the|strong=\"H5921\"* mantle that|strong=\"H5892\"* is|strong=\"H5892\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H5892\"* hold|strong=\"H7896\"* it|strong=\"H5921\"*.” She|strong=\"H5921\"* held it|strong=\"H5921\"*; and|strong=\"H5892\"* he|strong=\"H5921\"* measured|strong=\"H4058\"* six|strong=\"H8337\"* measures of|strong=\"H5892\"* barley|strong=\"H8184\"*, and|strong=\"H5892\"* laid|strong=\"H7896\"* it|strong=\"H5921\"* on|strong=\"H5921\"* her|strong=\"H5921\"*; then he|strong=\"H5921\"* went|strong=\"H5892\"* into|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H6213\"* she came|strong=\"H1323\"* to|strong=\"H6213\"* her|strong=\"H3605\"* mother-in-law|strong=\"H2545\"*, she said, “How|strong=\"H4310\"* did|strong=\"H6213\"* it|strong=\"H6213\"* go, my|strong=\"H3605\"* daughter|strong=\"H1323\"*?”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H3588\"* said, “He|strong=\"H3588\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* these six|strong=\"H8337\"* measures of barley|strong=\"H8184\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* said, ‘Don’t go empty|strong=\"H7387\"* to|strong=\"H5414\"* your|strong=\"H5414\"* mother-in-law|strong=\"H2545\"*.’”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H5307\"* she|strong=\"H3588\"* said|strong=\"H1697\"*, “Wait|strong=\"H3427\"*, my|strong=\"H3045\"* daughter|strong=\"H1323\"*, until|strong=\"H5704\"* you|strong=\"H3588\"* know|strong=\"H3045\"* what|strong=\"H1697\"* will|strong=\"H1697\"* happen|strong=\"H1697\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5307\"* will|strong=\"H1697\"* not|strong=\"H3808\"* rest|strong=\"H8252\"* until|strong=\"H5704\"* he|strong=\"H3588\"* has|strong=\"H3117\"* settled|strong=\"H3427\"* this|strong=\"H1697\"* today|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H2009\"* Boaz|strong=\"H1162\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5674\"* gate|strong=\"H8179\"* and|strong=\"H8033\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* there|strong=\"H8033\"*. Behold|strong=\"H2009\"*, the|strong=\"H5674\"* near|strong=\"H8033\"* kinsman|strong=\"H1350\"* of|strong=\"H3427\"* whom Boaz|strong=\"H1162\"* spoke|strong=\"H1696\"* came|strong=\"H5927\"* by|strong=\"H5674\"*. Boaz|strong=\"H1162\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5927\"*, “Come|strong=\"H5927\"* over|strong=\"H5674\"* here|strong=\"H6311\"*, friend|strong=\"H6423\"*, and|strong=\"H8033\"* sit|strong=\"H3427\"* down|strong=\"H3427\"*!” He|strong=\"H8033\"* came|strong=\"H5927\"* over|strong=\"H5674\"*, and|strong=\"H8033\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "Boaz took|strong=\"H3947\"* ten|strong=\"H6235\"* men|strong=\"H2205\"* of|strong=\"H3427\"* the|strong=\"H3947\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* said, “Sit|strong=\"H3427\"* down|strong=\"H3427\"* here|strong=\"H6311\"*,” and|strong=\"H5892\"* they|strong=\"H5892\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* the|strong=\"H7725\"* near kinsman|strong=\"H1350\"*, “Naomi|strong=\"H5281\"*, who|strong=\"H4376\"* has|strong=\"H4124\"* come|strong=\"H7725\"* back|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7704\"* the|strong=\"H7725\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Moab|strong=\"H4124\"*, is|strong=\"H4124\"* selling|strong=\"H4376\"* the|strong=\"H7725\"* parcel|strong=\"H2513\"* of|strong=\"H7704\"* land|strong=\"H7704\"*, which|strong=\"H7704\"* was|strong=\"H4124\"* our|strong=\"H7725\"* brother Elimelech’s." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* thought|strong=\"H3045\"* I|strong=\"H3588\"* should|strong=\"H3588\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, saying, ‘Buy|strong=\"H7069\"* it|strong=\"H3588\"* before|strong=\"H5048\"* those|strong=\"H3427\"* who|strong=\"H5971\"* sit|strong=\"H3427\"* here|strong=\"H1350\"*, and|strong=\"H5971\"* before|strong=\"H5048\"* the|strong=\"H3588\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* my|strong=\"H3045\"* people|strong=\"H5971\"*.’ If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, redeem|strong=\"H1350\"* it|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"*, then|strong=\"H3588\"* tell|strong=\"H5046\"* me|strong=\"H5046\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"*. For|strong=\"H3588\"* there|strong=\"H3427\"* is|strong=\"H1350\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H1540\"* redeem|strong=\"H1350\"* it|strong=\"H3588\"* besides|strong=\"H2108\"* you|strong=\"H3588\"*; and|strong=\"H5971\"* I|strong=\"H3588\"* am after|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* Boaz|strong=\"H1162\"* said, “On|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* you|strong=\"H5921\"* buy|strong=\"H7069\"* the|strong=\"H5921\"* field|strong=\"H7704\"* from|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Naomi|strong=\"H5281\"*, you|strong=\"H5921\"* must|strong=\"H4191\"* buy|strong=\"H7069\"* it|strong=\"H5921\"* also|strong=\"H8034\"* from|strong=\"H5921\"* Ruth|strong=\"H7327\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*, to|strong=\"H4191\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* his|strong=\"H5921\"* inheritance|strong=\"H5159\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* near|strong=\"H3808\"* kinsman|strong=\"H1350\"* said, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t redeem|strong=\"H1350\"* it|strong=\"H3588\"* for|strong=\"H3588\"* myself, lest|strong=\"H6435\"* I|strong=\"H3588\"* endanger my|strong=\"H3588\"* own inheritance|strong=\"H5159\"*. Take my|strong=\"H3588\"* right|strong=\"H1353\"* of|strong=\"H1350\"* redemption|strong=\"H1353\"* for|strong=\"H3588\"* yourself; for|strong=\"H3588\"* I|strong=\"H3588\"* can|strong=\"H3201\"*’t redeem|strong=\"H1350\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H5414\"* this|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3605\"* custom|strong=\"H1697\"* in|strong=\"H5921\"* former|strong=\"H6440\"* time|strong=\"H6440\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"* concerning|strong=\"H5921\"* redeeming|strong=\"H1353\"* and|strong=\"H6965\"* concerning|strong=\"H5921\"* exchanging, to|strong=\"H3478\"* confirm|strong=\"H6965\"* all|strong=\"H3605\"* things|strong=\"H1697\"*: a|strong=\"H3068\"* man|strong=\"H3605\"* took|strong=\"H3478\"* off|strong=\"H5921\"* his|strong=\"H3605\"* sandal|strong=\"H5275\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*; and|strong=\"H6965\"* this|strong=\"H2063\"* was|strong=\"H3478\"* the|strong=\"H3605\"* way|strong=\"H1697\"* of|strong=\"H1697\"* formalizing transactions in|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H1350\"* the|strong=\"H7069\"* near kinsman|strong=\"H1350\"* said to|strong=\"H1350\"* Boaz|strong=\"H1162\"*, “Buy|strong=\"H7069\"* it|strong=\"H7069\"* for yourself,” then he|strong=\"H7069\"* took off|strong=\"H8025\"* his|strong=\"H8025\"* sandal|strong=\"H5275\"*." + }, + { + "verseNum": 9, + "text": "Boaz|strong=\"H1162\"* said to|strong=\"H3027\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H3117\"* to|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “You|strong=\"H3588\"* are|strong=\"H3117\"* witnesses|strong=\"H5707\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* bought|strong=\"H7069\"* all|strong=\"H3605\"* that|strong=\"H3588\"* was|strong=\"H3117\"* Elimelech’s, and|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3588\"* was|strong=\"H3117\"* Chilion|strong=\"H3630\"*’s and|strong=\"H3117\"* Mahlon|strong=\"H4248\"*’s, from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Naomi|strong=\"H5281\"*." + }, + { + "verseNum": 10, + "text": "Moreover|strong=\"H1571\"*, Ruth|strong=\"H7327\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*, the|strong=\"H5921\"* wife of|strong=\"H3117\"* Mahlon|strong=\"H4248\"*, I|strong=\"H3117\"* have|strong=\"H1571\"* purchased|strong=\"H7069\"* to|strong=\"H4191\"* be|strong=\"H4191\"* my|strong=\"H5921\"* wife, to|strong=\"H4191\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* on|strong=\"H5921\"* his|strong=\"H5921\"* inheritance|strong=\"H5159\"*, that|strong=\"H3117\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3117\"* the|strong=\"H5921\"* dead|strong=\"H4191\"* may|strong=\"H1571\"* not|strong=\"H3808\"* be|strong=\"H4191\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* among|strong=\"H5973\"* his|strong=\"H5921\"* brothers and|strong=\"H6965\"* from|strong=\"H3772\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* his|strong=\"H5921\"* place|strong=\"H4725\"*. You|strong=\"H5921\"* are|strong=\"H3117\"* witnesses|strong=\"H5707\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* gate|strong=\"H8179\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* elders|strong=\"H2205\"*, said|strong=\"H7121\"*, “We|strong=\"H6213\"* are|strong=\"H5971\"* witnesses|strong=\"H5707\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* make|strong=\"H6213\"* the|strong=\"H3605\"* woman|strong=\"H8034\"* who|strong=\"H3605\"* has|strong=\"H3068\"* come|strong=\"H5971\"* into|strong=\"H6213\"* your|strong=\"H3068\"* house|strong=\"H1004\"* like|strong=\"H1004\"* Rachel|strong=\"H7354\"* and|strong=\"H3478\"* like|strong=\"H1004\"* Leah|strong=\"H3812\"*, which|strong=\"H3068\"* both|strong=\"H8147\"* built|strong=\"H1129\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* treat|strong=\"H6213\"* you|strong=\"H5414\"* worthily|strong=\"H2428\"* in|strong=\"H3478\"* Ephrathah, and|strong=\"H3478\"* be|strong=\"H3068\"* famous|strong=\"H8034\"* in|strong=\"H3478\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H5414\"* your|strong=\"H3068\"* house|strong=\"H1004\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Perez|strong=\"H6557\"*, whom Tamar|strong=\"H8559\"* bore|strong=\"H3205\"* to|strong=\"H3068\"* Judah|strong=\"H3063\"*, of|strong=\"H1004\"* the|strong=\"H5414\"* offspring|strong=\"H2233\"*+ 4:12 or, seed* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* by|strong=\"H3068\"* this|strong=\"H2063\"* young|strong=\"H5291\"* woman|strong=\"H5291\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H3947\"* Boaz|strong=\"H1162\"* took|strong=\"H3947\"* Ruth|strong=\"H7327\"* and|strong=\"H1121\"* she became|strong=\"H3205\"* his|strong=\"H5414\"* wife; and|strong=\"H1121\"* he|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* her|strong=\"H5414\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* enabled|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3068\"* conceive|strong=\"H2032\"*, and|strong=\"H1121\"* she bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* women said|strong=\"H7121\"* to|strong=\"H3478\"* Naomi|strong=\"H5281\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* left|strong=\"H7673\"* you|strong=\"H3117\"* today|strong=\"H3117\"* without|strong=\"H3808\"* a|strong=\"H3068\"* near|strong=\"H3808\"* kinsman|strong=\"H1350\"*. Let|strong=\"H3808\"* his|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H3808\"* famous|strong=\"H8034\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H3588\"* a|strong=\"H3068\"* restorer|strong=\"H7725\"* of|strong=\"H1121\"* life|strong=\"H5315\"* and|strong=\"H1121\"* sustain|strong=\"H3557\"* you|strong=\"H3588\"* in|strong=\"H5315\"* your|strong=\"H7725\"* old|strong=\"H1121\"* age|strong=\"H7872\"*; for|strong=\"H3588\"* your|strong=\"H7725\"* daughter-in-law|strong=\"H3618\"*, who|strong=\"H1931\"* loves you|strong=\"H3588\"*, who|strong=\"H1931\"* is|strong=\"H1931\"* better|strong=\"H2896\"* to|strong=\"H7725\"* you|strong=\"H3588\"* than|strong=\"H2896\"* seven|strong=\"H7651\"* sons|strong=\"H1121\"*, has|strong=\"H1961\"* given|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H7725\"* him|strong=\"H3205\"*.”" + }, + { + "verseNum": 16, + "text": "Naomi|strong=\"H5281\"* took|strong=\"H3947\"* the|strong=\"H3947\"* child|strong=\"H3206\"*, laid|strong=\"H7896\"* him|strong=\"H3947\"* in|strong=\"H1961\"* her|strong=\"H3947\"* bosom|strong=\"H2436\"*, and|strong=\"H3947\"* became|strong=\"H1961\"* nurse to|strong=\"H1961\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* women|strong=\"H7934\"*, her|strong=\"H7121\"* neighbors|strong=\"H7934\"*, gave|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, saying, “A|strong=\"H3068\"* son|strong=\"H1121\"* is|strong=\"H1931\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Naomi|strong=\"H5281\"*”. They|strong=\"H1931\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Obed|strong=\"H5744\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "Now this is the|strong=\"H3205\"* history|strong=\"H8435\"* of|strong=\"H3205\"* the|strong=\"H3205\"* generations|strong=\"H8435\"* of|strong=\"H3205\"* Perez|strong=\"H6557\"*: Perez|strong=\"H6557\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Hezron|strong=\"H2696\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H2696\"* Hezron|strong=\"H2696\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ram|strong=\"H7410\"*, and|strong=\"H2696\"* Ram|strong=\"H7410\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amminadab|strong=\"H5992\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H3205\"* Amminadab|strong=\"H5992\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nahshon|strong=\"H5177\"*, and|strong=\"H3205\"* Nahshon|strong=\"H5177\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Salmon|strong=\"H8009\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3205\"* Salmon|strong=\"H8012\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Boaz|strong=\"H1162\"*, and|strong=\"H3205\"* Boaz|strong=\"H1162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H1732\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jesse|strong=\"H3448\"*, and|strong=\"H1732\"* Jesse|strong=\"H3448\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* David|strong=\"H1732\"*." + } + ] + } + ] + }, + { + "name": "1 Samuel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* Ramathaim Zophim, of|strong=\"H1121\"* the|strong=\"H4480\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, and|strong=\"H1121\"* his|strong=\"H1961\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Elkanah, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elihu, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tohu|strong=\"H8459\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuph|strong=\"H6689\"*, an|strong=\"H1961\"* Ephraimite." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8147\"* had|strong=\"H1961\"* two|strong=\"H8147\"* wives. The|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H8034\"* one|strong=\"H1961\"* was|strong=\"H8034\"* Hannah|strong=\"H2584\"*, and|strong=\"H8147\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H1961\"* other|strong=\"H8145\"* Peninnah|strong=\"H6444\"*. Peninnah|strong=\"H6444\"* had|strong=\"H1961\"* children|strong=\"H3206\"*, but|strong=\"H1961\"* Hannah|strong=\"H2584\"* had|strong=\"H1961\"* no|strong=\"H1961\"* children|strong=\"H3206\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H1931\"* man|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H8033\"* of|strong=\"H1121\"* his|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H3068\"* year|strong=\"H3117\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* and|strong=\"H1121\"* to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* of|strong=\"H1121\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*. The|strong=\"H3068\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, priests|strong=\"H3548\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, were|strong=\"H1121\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* day|strong=\"H3117\"* came|strong=\"H1961\"* that|strong=\"H3605\"* Elkanah sacrificed|strong=\"H2076\"*, he|strong=\"H3117\"* gave|strong=\"H5414\"* portions|strong=\"H4490\"* to|strong=\"H1961\"* Peninnah|strong=\"H6444\"* his|strong=\"H3605\"* wife and|strong=\"H1121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* her|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* her|strong=\"H3605\"* daughters|strong=\"H1323\"*;" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* double portion|strong=\"H4490\"* to|strong=\"H3068\"* Hannah|strong=\"H2584\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* loved Hannah|strong=\"H2584\"*, but|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* her|strong=\"H5414\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 6, + "text": "Her|strong=\"H5462\"* rival|strong=\"H6869\"* provoked|strong=\"H3707\"* her|strong=\"H5462\"* severely, to|strong=\"H3068\"* irritate|strong=\"H7481\"* her|strong=\"H5462\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* her|strong=\"H5462\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3651\"* year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*, when|strong=\"H6213\"* she|strong=\"H3651\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, her|strong=\"H1058\"* rival provoked|strong=\"H3707\"* her|strong=\"H1058\"*. Therefore|strong=\"H3651\"* she|strong=\"H3651\"* wept|strong=\"H1058\"*, and|strong=\"H3068\"* didn’t eat." + }, + { + "verseNum": 8, + "text": "Elkanah her|strong=\"H1058\"* husband said to|strong=\"H1121\"* her|strong=\"H1058\"*, “Hannah|strong=\"H2584\"*, why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* weep|strong=\"H1058\"*? Why|strong=\"H4100\"* don’t you|strong=\"H3808\"* eat? Why|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3808\"* heart|strong=\"H3824\"* grieved|strong=\"H3415\"*? Am I|strong=\"H3808\"* not|strong=\"H3808\"* better|strong=\"H2896\"* to|strong=\"H1121\"* you|strong=\"H3808\"* than|strong=\"H2896\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6965\"* Hannah|strong=\"H2584\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* after|strong=\"H5921\"* they|strong=\"H3068\"* had|strong=\"H3068\"* finished eating and|strong=\"H6965\"* drinking|strong=\"H8354\"* in|strong=\"H3427\"* Shiloh|strong=\"H7887\"*. Now|strong=\"H5921\"* Eli|strong=\"H5941\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* was|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3068\"* seat|strong=\"H3678\"* by|strong=\"H5921\"* the|strong=\"H5921\"* doorpost|strong=\"H4201\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"H1931\"* was|strong=\"H3068\"* in|strong=\"H5921\"* bitterness|strong=\"H4751\"* of|strong=\"H3068\"* soul|strong=\"H5315\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, weeping|strong=\"H1058\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 11, + "text": "She|strong=\"H5921\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"*, and|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, if|strong=\"H7200\"* you|strong=\"H5414\"* will|strong=\"H3068\"* indeed|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H5921\"* the|strong=\"H3605\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant and|strong=\"H3068\"* remember|strong=\"H2142\"* me|strong=\"H5414\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* forget|strong=\"H7911\"* your|strong=\"H3068\"* servant, but|strong=\"H3808\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant a|strong=\"H3068\"* boy, then|strong=\"H5414\"* I|strong=\"H3117\"* will|strong=\"H3068\"* give|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, and|strong=\"H3068\"* no|strong=\"H3808\"* razor|strong=\"H4177\"* shall|strong=\"H3068\"* come|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H3605\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 12, + "text": "As|strong=\"H1961\"* she|strong=\"H3588\"* continued|strong=\"H1961\"* praying|strong=\"H6419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, Eli|strong=\"H5941\"* saw her|strong=\"H7235\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H8085\"* Hannah|strong=\"H2584\"* spoke|strong=\"H1696\"* in|strong=\"H5921\"* her|strong=\"H5921\"* heart|strong=\"H3820\"*. Only|strong=\"H7535\"* her|strong=\"H5921\"* lips|strong=\"H8193\"* moved|strong=\"H5128\"*, but|strong=\"H7535\"* her|strong=\"H5921\"* voice|strong=\"H6963\"* was|strong=\"H3820\"* not|strong=\"H3808\"* heard|strong=\"H8085\"*. Therefore|strong=\"H5921\"* Eli|strong=\"H5941\"* thought|strong=\"H2803\"* she|strong=\"H1931\"* was|strong=\"H3820\"* drunk|strong=\"H7910\"*." + }, + { + "verseNum": 14, + "text": "Eli|strong=\"H5941\"* said to|strong=\"H5704\"* her|strong=\"H5493\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5921\"* be drunk|strong=\"H7937\"*? Get|strong=\"H5493\"* rid of|strong=\"H5921\"* your|strong=\"H5921\"* wine|strong=\"H3196\"*!”" + }, + { + "verseNum": 15, + "text": "Hannah|strong=\"H2584\"* answered|strong=\"H6030\"*, “No|strong=\"H3808\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, I|strong=\"H5315\"* am|strong=\"H3068\"* a|strong=\"H3068\"* woman of|strong=\"H3068\"* a|strong=\"H3068\"* sorrowful|strong=\"H7186\"* spirit|strong=\"H7307\"*. I|strong=\"H5315\"* have|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H3808\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* or|strong=\"H3808\"* strong|strong=\"H7941\"* drink|strong=\"H8354\"*, but|strong=\"H3808\"* I|strong=\"H5315\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H3068\"* soul|strong=\"H5315\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Don’t consider|strong=\"H5414\"* your|strong=\"H5414\"* servant a|strong=\"H3068\"* wicked|strong=\"H1100\"* woman|strong=\"H1323\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1323\"* been speaking|strong=\"H1696\"* out|strong=\"H5414\"* of|strong=\"H1323\"* the|strong=\"H6440\"* abundance|strong=\"H7230\"* of|strong=\"H1323\"* my|strong=\"H5414\"* complaint|strong=\"H7879\"* and|strong=\"H6440\"* my|strong=\"H5414\"* provocation|strong=\"H3708\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6030\"* Eli|strong=\"H5941\"* answered|strong=\"H6030\"*, “Go|strong=\"H3212\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*; and|strong=\"H3478\"* may|strong=\"H3478\"* the|strong=\"H5414\"* God|strong=\"H5414\"*+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H7592\"* Israel|strong=\"H3478\"* grant|strong=\"H5414\"* your|strong=\"H5414\"* petition|strong=\"H7596\"* that|strong=\"H3478\"* you|strong=\"H5414\"* have|strong=\"H3478\"* asked|strong=\"H7592\"* of|strong=\"H7592\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H6440\"* said, “Let|strong=\"H3808\"* your|strong=\"H6440\"* servant|strong=\"H8198\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3212\"* your|strong=\"H6440\"* sight|strong=\"H5869\"*.” So|strong=\"H1961\"* the|strong=\"H6440\"* woman went|strong=\"H3212\"* her|strong=\"H4672\"* way|strong=\"H1870\"* and|strong=\"H3212\"* ate; and|strong=\"H3212\"* her|strong=\"H4672\"* facial expression|strong=\"H6440\"* wasn’t sad any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3068\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"* early|strong=\"H7925\"* and|strong=\"H3068\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*, then|strong=\"H7725\"* returned|strong=\"H7725\"* and|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H7725\"* their|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H7725\"* Ramah|strong=\"H7414\"*. Then|strong=\"H7725\"* Elkanah knew|strong=\"H3045\"* Hannah|strong=\"H2584\"* his|strong=\"H3068\"* wife; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* remembered|strong=\"H2142\"* her|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H3117\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, Hannah|strong=\"H2584\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Samuel|strong=\"H8050\"*,+ 1:20 Samuel sounds like the Hebrew for “heard by God.”* saying, “Because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* him|strong=\"H3205\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* man|strong=\"H3605\"* Elkanah, and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"* and|strong=\"H3068\"* his|strong=\"H3605\"* vow|strong=\"H5088\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* Hannah|strong=\"H2584\"* didn’t go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* she|strong=\"H3588\"* said to|strong=\"H5704\"* her|strong=\"H7200\"* husband, “Not|strong=\"H3808\"* until|strong=\"H5704\"* the|strong=\"H6440\"* child|strong=\"H5288\"* is|strong=\"H3068\"* weaned|strong=\"H1580\"*; then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* him|strong=\"H6440\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* stay|strong=\"H3427\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 23, + "text": "Elkanah her|strong=\"H6213\"* husband said|strong=\"H1697\"* to|strong=\"H5704\"* her|strong=\"H6213\"*, “Do|strong=\"H6213\"* what|strong=\"H1697\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H5704\"* you|strong=\"H5704\"*. Wait|strong=\"H3427\"* until|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H3068\"* weaned|strong=\"H1580\"* him|strong=\"H6213\"*; only|strong=\"H5704\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H3068\"* she|strong=\"H5973\"* had|strong=\"H3068\"* weaned|strong=\"H1580\"* him|strong=\"H5973\"*, she|strong=\"H5973\"* took|strong=\"H5927\"* him|strong=\"H5973\"* up|strong=\"H5927\"* with|strong=\"H5973\"* her, with|strong=\"H5973\"* three|strong=\"H7969\"* bulls|strong=\"H6499\"*, and|strong=\"H3068\"* one|strong=\"H3068\"* ephah+ 1:24 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1004\"* meal|strong=\"H7058\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* container of|strong=\"H1004\"* wine|strong=\"H3196\"*, and|strong=\"H3068\"* brought|strong=\"H5927\"* him|strong=\"H5973\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*. The|strong=\"H3068\"* child|strong=\"H5288\"* was|strong=\"H3068\"* young|strong=\"H5288\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H7819\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* bull|strong=\"H6499\"*, and|strong=\"H6499\"* brought the|strong=\"H7819\"* child|strong=\"H5288\"* to|strong=\"H5288\"* Eli|strong=\"H5941\"*." + }, + { + "verseNum": 26, + "text": "She|strong=\"H5973\"* said, “Oh, my|strong=\"H3068\"* lord|strong=\"H3068\"*, as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, I|strong=\"H5315\"* am|strong=\"H3068\"* the|strong=\"H3068\"* woman|strong=\"H2088\"* who|strong=\"H3068\"* stood|strong=\"H5324\"* by|strong=\"H3068\"* you|strong=\"H5973\"* here|strong=\"H2088\"*, praying|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* prayed|strong=\"H6419\"* for|strong=\"H3068\"* this|strong=\"H2088\"* child|strong=\"H5288\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* petition|strong=\"H7596\"* which|strong=\"H3068\"* I|strong=\"H5414\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3117\"* have|strong=\"H1961\"* also|strong=\"H1571\"* given him|strong=\"H1931\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. As|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* he|strong=\"H1931\"* lives|strong=\"H1961\"* he|strong=\"H1931\"* is|strong=\"H3068\"* given to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” He|strong=\"H1931\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Hannah|strong=\"H2584\"* prayed|strong=\"H6419\"*, and|strong=\"H3068\"* said|strong=\"H6310\"*," + }, + { + "verseNum": 2, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H1115\"* one|strong=\"H6918\"* as|strong=\"H3068\"* holy|strong=\"H6918\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "“Don’t keep talking|strong=\"H1696\"* so|strong=\"H3808\"* exceedingly|strong=\"H7235\"* proudly|strong=\"H1364\"*." + }, + { + "verseNum": 4, + "text": "“The bows|strong=\"H7198\"* of|strong=\"H1368\"* the mighty|strong=\"H1368\"* men|strong=\"H1368\"* are|strong=\"H1368\"* broken|strong=\"H2844\"*." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* full|strong=\"H7649\"* have|strong=\"H1121\"* hired|strong=\"H7936\"* themselves out|strong=\"H5704\"* for|strong=\"H5704\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 6, + "text": "“Yahweh|strong=\"H3068\"* kills|strong=\"H4191\"* and|strong=\"H3068\"* makes|strong=\"H3068\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* makes|strong=\"H6238\"* poor|strong=\"H3423\"* and|strong=\"H3068\"* makes|strong=\"H6238\"* rich|strong=\"H6238\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* raises|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* will|strong=\"H7563\"* keep|strong=\"H8104\"* the|strong=\"H3588\"* feet|strong=\"H7272\"* of|strong=\"H7272\"* his|strong=\"H8104\"* holy|strong=\"H2623\"* ones|strong=\"H2623\"*," + }, + { + "verseNum": 10, + "text": "Those|strong=\"H5921\"* who|strong=\"H3068\"* strive|strong=\"H7378\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* broken|strong=\"H5181\"* to|strong=\"H3068\"* pieces." + }, + { + "verseNum": 11, + "text": "Elkanah went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"* to|strong=\"H3212\"* his|strong=\"H3068\"* house|strong=\"H1004\"*. The|strong=\"H6440\"* child|strong=\"H5288\"* served|strong=\"H8334\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Eli|strong=\"H5941\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 12, + "text": "Now the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"* were|strong=\"H1121\"* wicked|strong=\"H1100\"* men|strong=\"H1121\"*. They|strong=\"H3068\"* didn’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* custom|strong=\"H4941\"* of|strong=\"H3027\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* with|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* was|strong=\"H5288\"* that|strong=\"H5971\"* when|strong=\"H3027\"* anyone|strong=\"H3605\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"*’s servant|strong=\"H5288\"* came|strong=\"H5971\"* while|strong=\"H4941\"* the|strong=\"H3605\"* meat|strong=\"H1320\"* was|strong=\"H5288\"* boiling|strong=\"H1310\"*, with|strong=\"H5971\"* a|strong=\"H3068\"* fork|strong=\"H4207\"* of|strong=\"H3027\"* three|strong=\"H7969\"* teeth|strong=\"H8127\"* in|strong=\"H1320\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3478\"* he|strong=\"H8033\"* stabbed|strong=\"H5221\"* it|strong=\"H6213\"* into|strong=\"H5927\"* the|strong=\"H3605\"* pan|strong=\"H3595\"*, or|strong=\"H1731\"* kettle|strong=\"H1731\"*, or|strong=\"H1731\"* cauldron, or|strong=\"H1731\"* pot|strong=\"H6517\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* fork|strong=\"H4207\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H6213\"* himself|strong=\"H6213\"*. They|strong=\"H8033\"* did|strong=\"H6213\"* this|strong=\"H6213\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* who|strong=\"H3605\"* came|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H3478\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 15, + "text": "Yes|strong=\"H3588\"*, before|strong=\"H4480\"* they|strong=\"H3588\"* burned|strong=\"H6999\"* the|strong=\"H3588\"* fat|strong=\"H2459\"*, the|strong=\"H3588\"* priest|strong=\"H3548\"*’s servant|strong=\"H5288\"* came|strong=\"H1320\"*, and|strong=\"H3548\"* said to|strong=\"H5414\"* the|strong=\"H3588\"* man|strong=\"H5288\"* who|strong=\"H3548\"* sacrificed|strong=\"H2076\"*, “Give|strong=\"H5414\"* meat|strong=\"H1320\"* to|strong=\"H5414\"* roast|strong=\"H6740\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1571\"* not|strong=\"H3808\"* accept|strong=\"H3947\"* boiled|strong=\"H1310\"* meat|strong=\"H1320\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* raw|strong=\"H2416\"*.”" + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Let|strong=\"H5414\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* be|strong=\"H3808\"* burned|strong=\"H6999\"* first|strong=\"H3117\"*, and|strong=\"H3117\"* then|strong=\"H6258\"* take|strong=\"H3947\"* as|strong=\"H3117\"* much as|strong=\"H3117\"* your|strong=\"H5414\"* soul|strong=\"H5315\"* desires|strong=\"H8378\"*;” then|strong=\"H6258\"* he|strong=\"H3588\"* would|strong=\"H5315\"* say, “No|strong=\"H3808\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H5315\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* me|strong=\"H5414\"* now|strong=\"H6258\"*; and|strong=\"H3117\"* if|strong=\"H3588\"* not|strong=\"H3808\"*, I|strong=\"H3588\"* will|strong=\"H5315\"* take|strong=\"H3947\"* it|strong=\"H5414\"* by|strong=\"H3117\"* force|strong=\"H2394\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* sin|strong=\"H2403\"* of|strong=\"H3068\"* the|strong=\"H6440\"* young|strong=\"H5288\"* men|strong=\"H5288\"* was|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* men|strong=\"H5288\"* despised|strong=\"H5006\"* Yahweh|strong=\"H3068\"*’s offering|strong=\"H4503\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3068\"* Samuel|strong=\"H8050\"* ministered|strong=\"H8334\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, being|strong=\"H3068\"* a|strong=\"H3068\"* child|strong=\"H5288\"*, clothed|strong=\"H2296\"* with|strong=\"H3068\"* a|strong=\"H3068\"* linen ephod." + }, + { + "verseNum": 19, + "text": "Moreover his|strong=\"H6213\"* mother made|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* robe|strong=\"H4598\"*, and|strong=\"H3117\"* brought|strong=\"H5927\"* it|strong=\"H6213\"* to|strong=\"H5927\"* him|strong=\"H6213\"* from|strong=\"H5927\"* year|strong=\"H3117\"* to|strong=\"H5927\"* year|strong=\"H3117\"* when|strong=\"H3117\"* she came|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H6213\"* her|strong=\"H6213\"* husband to|strong=\"H5927\"* offer|strong=\"H5927\"* the|strong=\"H6213\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 20, + "text": "Eli|strong=\"H5941\"* blessed|strong=\"H1288\"* Elkanah and|strong=\"H1980\"* his|strong=\"H7760\"* wife, and|strong=\"H1980\"* said, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* give|strong=\"H7760\"* you|strong=\"H7760\"* offspring|strong=\"H2233\"*+ 2:20 or, seed* from|strong=\"H4480\"* this|strong=\"H2063\"* woman for|strong=\"H8478\"* the|strong=\"H3068\"* petition|strong=\"H7596\"* which|strong=\"H3068\"* was|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” Then|strong=\"H1980\"* they|strong=\"H3068\"* went|strong=\"H1980\"* to|strong=\"H1980\"* their|strong=\"H3068\"* own home|strong=\"H4725\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* visited|strong=\"H6485\"* Hannah|strong=\"H2584\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*. The|strong=\"H3588\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* grew|strong=\"H1431\"* before|strong=\"H5973\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H8085\"* Eli|strong=\"H5941\"* was|strong=\"H3478\"* very|strong=\"H3966\"* old|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H6213\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* did|strong=\"H6213\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* how|strong=\"H8085\"* that|strong=\"H3605\"* they|strong=\"H6213\"* slept|strong=\"H7901\"* with|strong=\"H6213\"* the|strong=\"H3605\"* women|strong=\"H6633\"* who|strong=\"H3605\"* served|strong=\"H6633\"* at|strong=\"H3478\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3605\"* do|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H1697\"*? For|strong=\"H6213\"* I|strong=\"H1697\"* hear|strong=\"H8085\"* of|strong=\"H1697\"* your|strong=\"H3605\"* evil|strong=\"H7451\"* dealings|strong=\"H1697\"* from|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H6213\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "No|strong=\"H3808\"*, my|strong=\"H8085\"* sons|strong=\"H1121\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* good|strong=\"H2896\"* report|strong=\"H8052\"* that|strong=\"H3588\"* I|strong=\"H3588\"* hear|strong=\"H8085\"*! You|strong=\"H3588\"* make|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"* disobey." + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* one|strong=\"H3808\"* man|strong=\"H4191\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* another|strong=\"H3808\"*, God|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H6419\"* him|strong=\"H6963\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H4191\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* will|strong=\"H3068\"* intercede|strong=\"H6419\"* for|strong=\"H3588\"* him|strong=\"H6963\"*?” Notwithstanding, they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H4191\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* their|strong=\"H3068\"* father, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* intended to|strong=\"H4191\"* kill|strong=\"H4191\"* them|strong=\"H8085\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3068\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* grew|strong=\"H1980\"* on|strong=\"H1980\"*, and|strong=\"H1980\"* increased in|strong=\"H1980\"* favor|strong=\"H2896\"* both|strong=\"H1571\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* and|strong=\"H1980\"* also|strong=\"H1571\"* with|strong=\"H5973\"* men|strong=\"H5288\"*." + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* man of|strong=\"H1004\"* God|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Eli|strong=\"H5941\"* and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H1540\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Did|strong=\"H3068\"* I|strong=\"H3541\"* reveal|strong=\"H1540\"* myself to|strong=\"H3068\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* father when|strong=\"H1961\"* they|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H3068\"* Egypt|strong=\"H4714\"* in|strong=\"H3068\"* bondage to|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*?" + }, + { + "verseNum": 28, + "text": "Didn’t I|strong=\"H5414\"* choose him|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* be|strong=\"H1121\"* my|strong=\"H5414\"* priest|strong=\"H3548\"*, to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* my|strong=\"H5414\"* altar|strong=\"H4196\"*, to|strong=\"H3478\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"*, to|strong=\"H3478\"* wear|strong=\"H5375\"* an|strong=\"H5414\"* ephod before|strong=\"H6440\"* me|strong=\"H5414\"*? Didn’t I|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* your|strong=\"H3605\"* father|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offerings|strong=\"H5927\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* made|strong=\"H5414\"* by|strong=\"H5921\"* fire?" + }, + { + "verseNum": 29, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H6680\"* kick|strong=\"H1163\"* at|strong=\"H3478\"* my|strong=\"H3605\"* sacrifice|strong=\"H2077\"* and|strong=\"H1121\"* at|strong=\"H3478\"* my|strong=\"H3605\"* offering|strong=\"H4503\"*, which|strong=\"H5971\"* I|strong=\"H6680\"* have|strong=\"H5971\"* commanded|strong=\"H6680\"* in|strong=\"H3478\"* my|strong=\"H3605\"* habitation|strong=\"H4583\"*, and|strong=\"H1121\"* honor|strong=\"H3513\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* above|strong=\"H4480\"* me|strong=\"H4480\"*, to|strong=\"H3478\"* make|strong=\"H1254\"* yourselves|strong=\"H3605\"* fat|strong=\"H1254\"* with|strong=\"H5971\"* the|strong=\"H3605\"* best of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offerings|strong=\"H4503\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* my|strong=\"H3605\"* people|strong=\"H5971\"*?’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*, ‘I|strong=\"H3588\"* said|strong=\"H5002\"* indeed|strong=\"H3588\"* that|strong=\"H3588\"* your|strong=\"H3068\"* house|strong=\"H1004\"* and|strong=\"H1980\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* father should|strong=\"H3068\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* forever|strong=\"H5769\"*.’ But|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, ‘Far|strong=\"H5704\"* be|strong=\"H3068\"* it|strong=\"H3588\"* from|strong=\"H6440\"* me|strong=\"H6440\"*; for|strong=\"H3588\"* those|strong=\"H1980\"* who|strong=\"H3068\"* honor|strong=\"H3513\"* me|strong=\"H6440\"* I|strong=\"H3588\"* will|strong=\"H3068\"* honor|strong=\"H3513\"*, and|strong=\"H1980\"* those|strong=\"H1980\"* who|strong=\"H3068\"* despise|strong=\"H7043\"* me|strong=\"H6440\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cursed|strong=\"H7043\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*,+ 2:31 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H3117\"* days|strong=\"H3117\"* come|strong=\"H1961\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* your|strong=\"H1961\"* arm|strong=\"H2220\"* and|strong=\"H3117\"* the|strong=\"H3117\"* arm|strong=\"H2220\"* of|strong=\"H1004\"* your|strong=\"H1961\"* father’s house|strong=\"H1004\"*, that|strong=\"H3117\"* there|strong=\"H2009\"* will|strong=\"H1961\"* not|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2205\"* man|strong=\"H2205\"* in|strong=\"H1004\"* your|strong=\"H1961\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* see|strong=\"H5027\"* the|strong=\"H3605\"* affliction|strong=\"H6862\"* of|strong=\"H1004\"* my|strong=\"H3605\"* habitation|strong=\"H4583\"*, in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wealth|strong=\"H3808\"* which|strong=\"H1004\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H3190\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* be|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2205\"* man|strong=\"H2205\"* in|strong=\"H3478\"* your|strong=\"H3605\"* house|strong=\"H1004\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* man|strong=\"H5315\"* of|strong=\"H1004\"* yours|strong=\"H4191\"* whom|strong=\"H5869\"* I|strong=\"H5315\"* don’t cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* my|strong=\"H3605\"* altar|strong=\"H4196\"* will|strong=\"H5869\"* consume|strong=\"H3615\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*+ 2:33 or, blind your eyes with tears* and|strong=\"H1004\"* grieve your|strong=\"H3605\"* heart|strong=\"H5315\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H4768\"* of|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H5869\"* die|strong=\"H4191\"* in|strong=\"H1004\"* the|strong=\"H3605\"* flower of|strong=\"H1004\"* their|strong=\"H3605\"* age." + }, + { + "verseNum": 34, + "text": "This|strong=\"H2088\"* will|strong=\"H1121\"* be|strong=\"H4191\"* the|strong=\"H3117\"* sign to|strong=\"H4191\"* you|strong=\"H3117\"* that|strong=\"H3117\"* will|strong=\"H1121\"* come on|strong=\"H3117\"* your|strong=\"H2088\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, on|strong=\"H3117\"* Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*: in|strong=\"H4191\"* one|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H1121\"* both|strong=\"H8147\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 35, + "text": "I|strong=\"H3117\"* will|strong=\"H5315\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* faithful priest|strong=\"H3548\"* for|strong=\"H6213\"* myself|strong=\"H5315\"* who|strong=\"H3605\"* will|strong=\"H5315\"* do|strong=\"H6213\"* according to|strong=\"H1980\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H5315\"* in|strong=\"H1980\"* my|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3605\"* mind|strong=\"H3824\"*. I|strong=\"H3117\"* will|strong=\"H5315\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* sure|strong=\"H6965\"* house|strong=\"H1004\"*. He|strong=\"H3117\"* will|strong=\"H5315\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* my|strong=\"H3605\"* anointed|strong=\"H4899\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 36, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3701\"* left|strong=\"H3498\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H1961\"* come|strong=\"H1961\"* and|strong=\"H3701\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H1961\"* him|strong=\"H3605\"* for|strong=\"H1004\"* a|strong=\"H3068\"* piece|strong=\"H6595\"* of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*, and|strong=\"H3701\"* will|strong=\"H1961\"* say, “Please|strong=\"H4994\"* put|strong=\"H5596\"* me|strong=\"H4994\"* into|strong=\"H1961\"* one|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests’ offices|strong=\"H3550\"*, that|strong=\"H3605\"* I|strong=\"H3605\"* may|strong=\"H1961\"* eat|strong=\"H3899\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*.”’”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* child|strong=\"H5288\"* Samuel|strong=\"H8050\"* ministered|strong=\"H8334\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* before|strong=\"H6440\"* Eli|strong=\"H5941\"*. Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* was|strong=\"H3068\"* rare|strong=\"H3368\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*. There|strong=\"H1961\"* were|strong=\"H1961\"* not|strong=\"H1961\"* many visions|strong=\"H2377\"*, then|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H3117\"* that|strong=\"H7200\"* time|strong=\"H3117\"*, when|strong=\"H1961\"* Eli|strong=\"H5941\"* was|strong=\"H1961\"* laid|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3117\"* his|strong=\"H7200\"* place|strong=\"H4725\"* (now|strong=\"H1961\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* had|strong=\"H1961\"* begun|strong=\"H2490\"* to|strong=\"H3201\"* grow dim|strong=\"H3544\"*, so|strong=\"H1961\"* that|strong=\"H7200\"* he|strong=\"H1931\"* could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*)," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* God|strong=\"H3068\"*’s lamp|strong=\"H5216\"* hadn’t yet|strong=\"H2962\"* gone|strong=\"H3068\"* out|strong=\"H3518\"*, and|strong=\"H3068\"* Samuel|strong=\"H8050\"* had|strong=\"H3068\"* laid|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* where|strong=\"H8033\"* God|strong=\"H3068\"*’s ark was|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"*. He|strong=\"H3068\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H3068\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* ran|strong=\"H7323\"* to|strong=\"H7725\"* Eli|strong=\"H5941\"* and|strong=\"H7725\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H3588\"* am|strong=\"H2005\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* called|strong=\"H7121\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* yet|strong=\"H5750\"* again|strong=\"H7725\"*, “Samuel|strong=\"H8050\"*!”" + }, + { + "verseNum": 7, + "text": "Now Samuel|strong=\"H8050\"* didn’t yet|strong=\"H2962\"* know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*, neither was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* yet|strong=\"H2962\"* revealed|strong=\"H1540\"* to|strong=\"H3068\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"* again|strong=\"H3254\"* the|strong=\"H3588\"* third|strong=\"H7992\"* time|strong=\"H7992\"*. He|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Eli|strong=\"H5941\"* and|strong=\"H6965\"* said|strong=\"H7121\"*, “Here|strong=\"H2005\"* I|strong=\"H3588\"* am|strong=\"H3068\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* called|strong=\"H7121\"* me|strong=\"H7121\"*.”" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3588\"* Eli|strong=\"H5941\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Samuel|strong=\"H8050\"*, “Go|strong=\"H3212\"*, lie|strong=\"H7901\"* down|strong=\"H7901\"*. It|strong=\"H7121\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* he|strong=\"H3588\"* calls|strong=\"H7121\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* say|strong=\"H1696\"*, ‘Speak|strong=\"H1696\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* hears|strong=\"H8085\"*.’” So|strong=\"H1961\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* and|strong=\"H3068\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* stood|strong=\"H3320\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* as|strong=\"H3068\"* at|strong=\"H3068\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, “Samuel|strong=\"H8050\"*! Samuel|strong=\"H8050\"*!”" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H3068\"* do|strong=\"H6213\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* which|strong=\"H3068\"* both|strong=\"H8147\"* the|strong=\"H3605\"* ears of|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* hears|strong=\"H8085\"* it|strong=\"H6213\"* will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H1004\"* that|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1004\"* perform|strong=\"H6965\"* against|strong=\"H1696\"* Eli|strong=\"H5941\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H3117\"* spoken|strong=\"H1696\"* concerning|strong=\"H1696\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, from|strong=\"H3117\"* the|strong=\"H3605\"* beginning|strong=\"H2490\"* even to|strong=\"H1696\"* the|strong=\"H3605\"* end|strong=\"H3615\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* told|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* judge|strong=\"H8199\"* his|strong=\"H3045\"* house|strong=\"H1004\"* forever|strong=\"H5769\"* for|strong=\"H3588\"* the|strong=\"H3588\"* iniquity|strong=\"H5771\"* which|strong=\"H1992\"* he|strong=\"H3588\"* knew|strong=\"H3045\"*, because|strong=\"H3588\"* his|strong=\"H3045\"* sons|strong=\"H1121\"* brought|strong=\"H7043\"* a|strong=\"H3068\"* curse|strong=\"H7043\"* on|strong=\"H1004\"* themselves|strong=\"H1992\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* didn’t restrain them|strong=\"H1992\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5704\"* have|strong=\"H5771\"* sworn|strong=\"H7650\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"* that|strong=\"H3651\"* the|strong=\"H5704\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"*’s house|strong=\"H1004\"* shall|strong=\"H1004\"* not|strong=\"H5704\"* be|strong=\"H5769\"* removed with|strong=\"H1004\"* sacrifice|strong=\"H2077\"* or|strong=\"H5704\"* offering|strong=\"H4503\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* lay|strong=\"H7901\"* until|strong=\"H5704\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, and|strong=\"H3068\"* opened|strong=\"H6605\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Samuel|strong=\"H8050\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* to|strong=\"H5704\"* show|strong=\"H5046\"* Eli|strong=\"H5941\"* the|strong=\"H3068\"* vision|strong=\"H4759\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7121\"* Eli|strong=\"H5941\"* called|strong=\"H7121\"* Samuel|strong=\"H8050\"* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Samuel|strong=\"H8050\"*, my|strong=\"H7121\"* son|strong=\"H1121\"*!”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H4100\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*? Please|strong=\"H4994\"* don’t hide|strong=\"H3582\"* it|strong=\"H6213\"* from|strong=\"H4480\"* me|strong=\"H4994\"*. God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, and|strong=\"H6213\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if you|strong=\"H3605\"* hide|strong=\"H3582\"* anything|strong=\"H3605\"* from|strong=\"H4480\"* me|strong=\"H4994\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3605\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 18, + "text": "Samuel|strong=\"H8050\"* told|strong=\"H5046\"* him|strong=\"H5046\"* every|strong=\"H3605\"* bit, and|strong=\"H3068\"* hid|strong=\"H3582\"* nothing|strong=\"H3808\"* from|strong=\"H4480\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 19, + "text": "Samuel|strong=\"H8050\"* grew|strong=\"H1431\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"* and|strong=\"H3068\"* let|strong=\"H3808\"* none|strong=\"H3808\"* of|strong=\"H3068\"* his|strong=\"H3605\"* words|strong=\"H1697\"* fall|strong=\"H5307\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba knew|strong=\"H3045\"* that|strong=\"H3588\"* Samuel|strong=\"H8050\"* was|strong=\"H3068\"* established to|strong=\"H5704\"* be|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* again|strong=\"H3254\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* revealed|strong=\"H1540\"* himself|strong=\"H1540\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"* in|strong=\"H3068\"* Shiloh|strong=\"H7887\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* of|strong=\"H1697\"* Samuel|strong=\"H8050\"* came|strong=\"H1961\"* to|strong=\"H3318\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* Philistines|strong=\"H6430\"* put|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H6440\"* Israel|strong=\"H3478\"*. When|strong=\"H3478\"* they|strong=\"H3478\"* joined|strong=\"H6186\"* battle|strong=\"H4421\"*, Israel|strong=\"H3478\"* was|strong=\"H3478\"* defeated|strong=\"H5221\"* by|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, who|strong=\"H3478\"* killed|strong=\"H5221\"* about|strong=\"H5221\"* four thousand men|strong=\"H3478\"* of|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H4634\"* in|strong=\"H3478\"* the|strong=\"H6440\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3117\"* the|strong=\"H6440\"* people|strong=\"H5971\"* had|strong=\"H3068\"* come|strong=\"H5971\"* into|strong=\"H3947\"* the|strong=\"H6440\"* camp|strong=\"H4264\"*, the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* said, “Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* defeated|strong=\"H5062\"* us|strong=\"H6440\"* today|strong=\"H3117\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*? Let’s get|strong=\"H3947\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3947\"* of|strong=\"H3068\"* Shiloh|strong=\"H7887\"* and|strong=\"H3478\"* bring|strong=\"H3947\"* it|strong=\"H6440\"* to|strong=\"H3478\"* us|strong=\"H6440\"*, that|strong=\"H5971\"* it|strong=\"H6440\"* may|strong=\"H3068\"* come|strong=\"H5971\"* among|strong=\"H7130\"* us|strong=\"H6440\"* and|strong=\"H3478\"* save|strong=\"H3467\"* us|strong=\"H6440\"* out|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* our|strong=\"H3068\"* enemies.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1121\"* they|strong=\"H8033\"* brought|strong=\"H5375\"* from|strong=\"H1121\"* there|strong=\"H8033\"* the|strong=\"H5375\"* ark of|strong=\"H1121\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, who|strong=\"H5971\"* sits|strong=\"H3427\"* above the|strong=\"H5375\"* cherubim|strong=\"H3742\"*; and|strong=\"H1121\"* the|strong=\"H5375\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, were|strong=\"H5971\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H5375\"* ark of|strong=\"H1121\"* the|strong=\"H5375\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* came|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* shouted|strong=\"H7321\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* the|strong=\"H3605\"* earth resounded|strong=\"H1949\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H8085\"* shout|strong=\"H8643\"*, they|strong=\"H3588\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* this|strong=\"H2063\"* great|strong=\"H1419\"* shout|strong=\"H8643\"* in|strong=\"H3068\"* the|strong=\"H8085\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H8085\"* Hebrews|strong=\"H5680\"* mean?” They|strong=\"H3588\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s ark had|strong=\"H3068\"* come|strong=\"H5680\"* into|strong=\"H4264\"* the|strong=\"H8085\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “God|strong=\"H3808\"* has|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H1961\"* the|strong=\"H3588\"* camp|strong=\"H4264\"*.” They|strong=\"H3588\"* said, “Woe to|strong=\"H1961\"* us|strong=\"H3588\"*! For|strong=\"H3588\"* there|strong=\"H1961\"* has|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"* before|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Woe to|strong=\"H3027\"* us|strong=\"H5337\"*! Who|strong=\"H4310\"* shall|strong=\"H4714\"* deliver|strong=\"H5337\"* us|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* these|strong=\"H1992\"* mighty gods? These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3605\"* gods that|strong=\"H3605\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* with|strong=\"H4714\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3027\"* plagues|strong=\"H4347\"* in|strong=\"H3027\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 9, + "text": "Be|strong=\"H1961\"* strong|strong=\"H2388\"* and|strong=\"H2388\"* behave like|strong=\"H1961\"* men|strong=\"H2388\"*, O|strong=\"H3068\"* you|strong=\"H5647\"* Philistines|strong=\"H6430\"*, that|strong=\"H1961\"* you|strong=\"H5647\"* not|strong=\"H6435\"* be|strong=\"H1961\"* servants|strong=\"H5647\"* to|strong=\"H1961\"* the|strong=\"H5647\"* Hebrews|strong=\"H5680\"*, as|strong=\"H1961\"* they|strong=\"H6430\"* have|strong=\"H1961\"* been|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H5647\"*. Strengthen|strong=\"H2388\"* yourselves like|strong=\"H1961\"* men|strong=\"H2388\"*, and|strong=\"H2388\"* fight|strong=\"H3898\"*!”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* was|strong=\"H1961\"* defeated|strong=\"H5062\"*, and|strong=\"H3478\"* each man|strong=\"H1419\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H3478\"* tent. There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; for|strong=\"H3478\"* thirty|strong=\"H7970\"* thousand footmen|strong=\"H7273\"* of|strong=\"H5307\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 11, + "text": "God’s ark was|strong=\"H1121\"* taken|strong=\"H3947\"*; and|strong=\"H1121\"* the|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, were|strong=\"H1121\"* slain|strong=\"H4191\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* man|strong=\"H7218\"* of|strong=\"H3117\"* Benjamin|strong=\"H1144\"* ran|strong=\"H7323\"* out|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* army|strong=\"H4634\"* and|strong=\"H3117\"* came|strong=\"H1144\"* to|strong=\"H5921\"* Shiloh|strong=\"H7887\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, with|strong=\"H5921\"* his|strong=\"H5921\"* clothes|strong=\"H4055\"* torn|strong=\"H7167\"* and|strong=\"H3117\"* with|strong=\"H5921\"* dirt on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H1961\"*, behold|strong=\"H2009\"*, Eli|strong=\"H5941\"* was|strong=\"H1961\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* seat|strong=\"H3678\"* by|strong=\"H5921\"* the|strong=\"H3605\"* road|strong=\"H1870\"* watching|strong=\"H6822\"*, for|strong=\"H3588\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* trembled|strong=\"H2730\"* for|strong=\"H3588\"* God’s ark. When|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H3605\"* came|strong=\"H1961\"* into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H5892\"* told|strong=\"H5046\"* about|strong=\"H1961\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H8085\"* Eli|strong=\"H5941\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* crying|strong=\"H6818\"*, he|strong=\"H2088\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* this|strong=\"H2088\"* tumult|strong=\"H1995\"* mean?”" + }, + { + "verseNum": 15, + "text": "Now Eli|strong=\"H5941\"* was|strong=\"H1121\"* ninety-eight|strong=\"H8673\"* years|strong=\"H8141\"* old|strong=\"H1121\"*. His|strong=\"H7200\"* eyes|strong=\"H5869\"* were|strong=\"H1121\"* set|strong=\"H6965\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* he|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H4480\"* man|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H1961\"* Eli|strong=\"H5941\"*, “I|strong=\"H3117\"* am|strong=\"H1961\"* he|strong=\"H3117\"* who|strong=\"H1121\"* came|strong=\"H1961\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* army|strong=\"H4634\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* fled|strong=\"H5127\"* today|strong=\"H3117\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* army|strong=\"H4634\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H8147\"* who|strong=\"H5971\"* brought|strong=\"H3947\"* the|strong=\"H6440\"* news|strong=\"H1319\"* answered|strong=\"H6030\"*, “Israel|strong=\"H3478\"* has|strong=\"H1961\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* also|strong=\"H1571\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4046\"* among|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"*. Your|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* also|strong=\"H1571\"*, Hophni|strong=\"H2652\"* and|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, are|strong=\"H5971\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* God’s ark has|strong=\"H1961\"* been|strong=\"H1961\"* captured|strong=\"H3947\"*.”" + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* he|strong=\"H1931\"* made|strong=\"H1961\"* mention|strong=\"H2142\"* of|strong=\"H3027\"* God|strong=\"H3027\"*’s ark, Eli|strong=\"H5307\"* fell|strong=\"H5307\"* from|strong=\"H5921\"* off|strong=\"H5921\"* his|strong=\"H5921\"* seat|strong=\"H3678\"* backward by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H3478\"* his|strong=\"H5921\"* neck|strong=\"H4665\"* broke|strong=\"H7665\"*, and|strong=\"H3478\"* he|strong=\"H1931\"* died|strong=\"H4191\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* an|strong=\"H1961\"* old|strong=\"H2204\"* man|strong=\"H4191\"* and|strong=\"H3478\"* heavy|strong=\"H3515\"*. He|strong=\"H1931\"* had|strong=\"H1961\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H3947\"* daughter-in-law|strong=\"H3618\"*, Phinehas|strong=\"H6372\"*’ wife, was|strong=\"H3205\"* with|strong=\"H5921\"* child|strong=\"H2030\"*, near|strong=\"H5921\"* to|strong=\"H4191\"* giving|strong=\"H3205\"* birth|strong=\"H3205\"*. When|strong=\"H3588\"* she|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* news|strong=\"H8052\"* that|strong=\"H3588\"* God’s ark was|strong=\"H3205\"* taken|strong=\"H3947\"* and|strong=\"H8085\"* that|strong=\"H3588\"* her|strong=\"H3947\"* father-in-law|strong=\"H2524\"* and|strong=\"H8085\"* her|strong=\"H3947\"* husband were|strong=\"H3205\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* bowed|strong=\"H3766\"* herself|strong=\"H5921\"* and|strong=\"H8085\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"*; for|strong=\"H3588\"* her|strong=\"H3947\"* pains|strong=\"H6735\"* came|strong=\"H2015\"* on|strong=\"H5921\"* her|strong=\"H3947\"*." + }, + { + "verseNum": 20, + "text": "About|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* her|strong=\"H5921\"* death|strong=\"H4191\"* the|strong=\"H5921\"* women who|strong=\"H1121\"* stood|strong=\"H5324\"* by|strong=\"H5921\"* her|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, “Don’t be|strong=\"H4191\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* given|strong=\"H3205\"* birth|strong=\"H3205\"* to|strong=\"H1696\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.” But|strong=\"H3588\"* she|strong=\"H3588\"* didn’t answer|strong=\"H6030\"*, neither|strong=\"H3808\"* did|strong=\"H3808\"* she|strong=\"H3588\"* regard|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H7121\"* named|strong=\"H7121\"* the|strong=\"H3947\"* child|strong=\"H5288\"* Ichabod,+ 4:21 “Ichabod” means “no glory”.* saying, “The|strong=\"H3947\"* glory|strong=\"H3519\"* has|strong=\"H3478\"* departed|strong=\"H1540\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*!” because God’s ark was|strong=\"H3478\"* taken|strong=\"H3947\"*, and|strong=\"H3478\"* because of|strong=\"H3519\"* her|strong=\"H1540\"* father-in-law|strong=\"H2524\"* and|strong=\"H3478\"* her|strong=\"H1540\"* husband." + }, + { + "verseNum": 22, + "text": "She|strong=\"H3588\"* said, “The|strong=\"H3588\"* glory|strong=\"H3519\"* has|strong=\"H3478\"* departed|strong=\"H1540\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* God’s ark has|strong=\"H3478\"* been taken|strong=\"H3947\"*.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3947\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* taken|strong=\"H3947\"* God’s ark, and|strong=\"H6430\"* they|strong=\"H3947\"* brought|strong=\"H3947\"* it|strong=\"H3947\"* from|strong=\"H3947\"* Ebenezer to|strong=\"H3947\"* Ashdod." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3947\"* Philistines|strong=\"H6430\"* took|strong=\"H3947\"* God’s ark, and|strong=\"H1004\"* brought|strong=\"H3947\"* it|strong=\"H3322\"* into|strong=\"H3947\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* and|strong=\"H1004\"* set|strong=\"H3322\"* it|strong=\"H3322\"* by|strong=\"H6430\"* Dagon|strong=\"H1712\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H7725\"* the|strong=\"H6440\"* people of|strong=\"H3068\"* Ashdod arose|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H5307\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, behold|strong=\"H2009\"*, Dagon|strong=\"H1712\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H7725\"* the|strong=\"H6440\"* ground|strong=\"H4725\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark. They|strong=\"H3068\"* took|strong=\"H3947\"* Dagon|strong=\"H1712\"* and|strong=\"H3068\"* set|strong=\"H7725\"* him|strong=\"H6440\"* in|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* on|strong=\"H5921\"* the|strong=\"H6440\"* following|strong=\"H4283\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, Dagon|strong=\"H1712\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark; and|strong=\"H3068\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3068\"* Dagon|strong=\"H1712\"* and|strong=\"H3068\"* both|strong=\"H8147\"* the|strong=\"H6440\"* palms|strong=\"H3709\"* of|strong=\"H3068\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* were|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* on|strong=\"H5921\"* the|strong=\"H6440\"* threshold|strong=\"H4670\"*. Only|strong=\"H7535\"* Dagon|strong=\"H1712\"*’s torso was|strong=\"H3068\"* intact|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* neither|strong=\"H3808\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* nor|strong=\"H3808\"* any|strong=\"H3605\"* who|strong=\"H3605\"* come|strong=\"H1869\"* into|strong=\"H5921\"* Dagon|strong=\"H1712\"*’s house|strong=\"H1004\"* step on|strong=\"H5921\"* the|strong=\"H3605\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"* in|strong=\"H5921\"* Ashdod to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3513\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* heavy|strong=\"H3513\"* on|strong=\"H3027\"* the|strong=\"H5221\"* people of|strong=\"H3068\"* Ashdod, and|strong=\"H3068\"* he|strong=\"H3068\"* destroyed|strong=\"H5221\"* them|strong=\"H5221\"* and|strong=\"H3068\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3068\"* tumors|strong=\"H6076\"*, even|strong=\"H3068\"* Ashdod and|strong=\"H3068\"* its|strong=\"H5221\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H5921\"* men|strong=\"H3478\"* of|strong=\"H3027\"* Ashdod saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3478\"* so|strong=\"H3651\"*, they|strong=\"H3588\"* said|strong=\"H3651\"*, “The|strong=\"H5921\"* ark of|strong=\"H3027\"* the|strong=\"H5921\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* stay|strong=\"H3427\"* with|strong=\"H5973\"* us|strong=\"H5921\"*, for|strong=\"H3588\"* his|strong=\"H5921\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* severe|strong=\"H7185\"* on|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H3478\"* on|strong=\"H5921\"* Dagon|strong=\"H1712\"* our|strong=\"H7200\"* god|strong=\"H3808\"*.”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* sent|strong=\"H7971\"* therefore|strong=\"H7971\"* and|strong=\"H3478\"* gathered|strong=\"H6430\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* said, “What|strong=\"H4100\"* shall|strong=\"H3478\"* we|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H3605\"* ark of|strong=\"H3605\"* the|strong=\"H3605\"* God|strong=\"H7971\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H5221\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3068\"* after|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* carried|strong=\"H3068\"* it|strong=\"H5221\"* there|strong=\"H1961\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* the|strong=\"H5221\"* city|strong=\"H5892\"* with|strong=\"H3068\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* men|strong=\"H1419\"* of|strong=\"H3068\"* the|strong=\"H5221\"* city|strong=\"H5892\"*, both small|strong=\"H6996\"* and|strong=\"H3068\"* great|strong=\"H1419\"*, so|strong=\"H1961\"* that|strong=\"H3068\"* tumors|strong=\"H6076\"* broke|strong=\"H8368\"* out|strong=\"H5704\"* on|strong=\"H3027\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H7971\"* they|strong=\"H5971\"* sent|strong=\"H7971\"* God|strong=\"H7971\"*’s ark to|strong=\"H3478\"* Ekron|strong=\"H6138\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* sent|strong=\"H7971\"* therefore|strong=\"H3588\"* and|strong=\"H3478\"* gathered|strong=\"H6430\"* together|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lords|strong=\"H5633\"* of|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* said, “Send|strong=\"H7971\"* the|strong=\"H3605\"* ark of|strong=\"H3027\"* the|strong=\"H3605\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* away|strong=\"H7971\"*, and|strong=\"H3478\"* let|strong=\"H7971\"* it|strong=\"H3588\"* go|strong=\"H7971\"* again|strong=\"H7725\"* to|strong=\"H7725\"* its|strong=\"H3605\"* own|strong=\"H1961\"* place|strong=\"H4725\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* not|strong=\"H3808\"* kill|strong=\"H4191\"* us|strong=\"H7725\"* and|strong=\"H3478\"* our|strong=\"H3605\"* people|strong=\"H5971\"*.” For|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* deadly|strong=\"H4194\"* panic|strong=\"H4103\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* city|strong=\"H5892\"*. The|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3808\"* was|strong=\"H1961\"* very|strong=\"H3966\"* heavy|strong=\"H3513\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5221\"* men who|strong=\"H5221\"* didn’t die|strong=\"H4191\"* were|strong=\"H8064\"* struck|strong=\"H5221\"* with|strong=\"H5892\"* the|strong=\"H5221\"* tumors|strong=\"H6076\"*; and|strong=\"H8064\"* the|strong=\"H5221\"* cry|strong=\"H7775\"* of|strong=\"H5892\"* the|strong=\"H5221\"* city|strong=\"H5892\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H4191\"* heaven|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s ark was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* country|strong=\"H7704\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* seven|strong=\"H7651\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6213\"* Philistines|strong=\"H6430\"* called|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H6213\"* diviners|strong=\"H7080\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3548\"* we|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark? Show|strong=\"H6213\"* us|strong=\"H6213\"* how|strong=\"H4100\"* we|strong=\"H3068\"* should|strong=\"H3068\"* send|strong=\"H7971\"* it|strong=\"H7121\"* to|strong=\"H3068\"* its|strong=\"H6213\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said, “If|strong=\"H3588\"* you|strong=\"H3588\"* send|strong=\"H7971\"* away|strong=\"H5493\"* the|strong=\"H3588\"* ark of|strong=\"H3027\"* the|strong=\"H3588\"* God|strong=\"H3808\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*, don’t send|strong=\"H7971\"* it|strong=\"H3588\"* empty|strong=\"H7387\"*; but|strong=\"H3588\"* by|strong=\"H3027\"* all|strong=\"H3045\"* means|strong=\"H3027\"* return|strong=\"H7725\"* a|strong=\"H3068\"* trespass offering|strong=\"H4480\"* to|strong=\"H7725\"* him|strong=\"H7971\"*. Then|strong=\"H7971\"* you|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*, and|strong=\"H3478\"* it|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H7725\"* you|strong=\"H3588\"* why|strong=\"H4100\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* is|strong=\"H4100\"* not|strong=\"H3808\"* removed|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7725\"* they|strong=\"H3588\"* said, “What|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3605\"* trespass offering be|strong=\"H7725\"* which|strong=\"H4100\"* we|strong=\"H3068\"* shall|strong=\"H6430\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"*?”" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H5921\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* make|strong=\"H6213\"* images|strong=\"H6754\"* of|strong=\"H3027\"* your|strong=\"H5414\"* tumors|strong=\"H6076\"* and|strong=\"H3478\"* images|strong=\"H6754\"* of|strong=\"H3027\"* your|strong=\"H5414\"* mice|strong=\"H5909\"* that|strong=\"H3478\"* mar|strong=\"H7843\"* the|strong=\"H5921\"* land; and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3478\"* the|strong=\"H5921\"* God|strong=\"H5414\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*. Perhaps he|strong=\"H6213\"* will|strong=\"H3478\"* release his|strong=\"H5414\"* hand|strong=\"H3027\"* from|strong=\"H5921\"* you|strong=\"H5414\"*, from|strong=\"H5921\"* your|strong=\"H5414\"* gods, and|strong=\"H3478\"* from|strong=\"H5921\"* your|strong=\"H5414\"* land." + }, + { + "verseNum": 6, + "text": "Why|strong=\"H4100\"* then|strong=\"H7971\"* do|strong=\"H4100\"* you|strong=\"H7971\"* harden|strong=\"H3513\"* your|strong=\"H3513\"* hearts|strong=\"H3820\"* as|strong=\"H3824\"* the|strong=\"H7971\"* Egyptians|strong=\"H4713\"* and|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* hardened|strong=\"H3513\"* their|strong=\"H7971\"* hearts|strong=\"H3820\"*? When|strong=\"H7971\"* he|strong=\"H3808\"* had|strong=\"H6547\"* worked wonderfully|strong=\"H5953\"* among|strong=\"H3808\"* them|strong=\"H7971\"*, didn’t they|strong=\"H3808\"* let|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H3808\"* go|strong=\"H3212\"*, and|strong=\"H7971\"* they|strong=\"H3808\"* departed|strong=\"H3212\"*?" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"* take|strong=\"H3947\"* and|strong=\"H1121\"* prepare|strong=\"H6213\"* yourselves|strong=\"H5921\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"* and|strong=\"H1121\"* two|strong=\"H8147\"* milk cows|strong=\"H6510\"* on|strong=\"H5921\"* which|strong=\"H1004\"* there|strong=\"H5927\"* has|strong=\"H6213\"* come|strong=\"H5927\"* no|strong=\"H3808\"* yoke|strong=\"H5923\"*; and|strong=\"H1121\"* tie the|strong=\"H5921\"* cows|strong=\"H6510\"* to|strong=\"H7725\"* the|strong=\"H5921\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* bring|strong=\"H7725\"* their|strong=\"H3947\"* calves|strong=\"H1121\"* home|strong=\"H1004\"* from|strong=\"H7725\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1980\"* take|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s ark and|strong=\"H1980\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H1980\"* the|strong=\"H5414\"* cart|strong=\"H5699\"*. Put|strong=\"H5414\"* the|strong=\"H5414\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*, which|strong=\"H3068\"* you|strong=\"H5414\"* return|strong=\"H7725\"* him|strong=\"H5414\"* for|strong=\"H7971\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"*, in|strong=\"H1980\"* a|strong=\"H3068\"* box by|strong=\"H3068\"* its|strong=\"H5414\"* side|strong=\"H6654\"*; and|strong=\"H1980\"* send|strong=\"H7971\"* it|strong=\"H5414\"* away|strong=\"H7971\"*, that|strong=\"H3068\"* it|strong=\"H5414\"* may|strong=\"H3068\"* go|strong=\"H1980\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H7200\"*, if|strong=\"H3588\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H3027\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H3027\"* its|strong=\"H6213\"* own|strong=\"H1961\"* border|strong=\"H1366\"* to|strong=\"H5927\"* Beth Shemesh, then|strong=\"H1961\"* he|strong=\"H1931\"* has|strong=\"H1961\"* done|strong=\"H6213\"* us|strong=\"H6213\"* this|strong=\"H2063\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* not|strong=\"H3808\"*, then|strong=\"H1961\"* we|strong=\"H3068\"* shall|strong=\"H3027\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* his|strong=\"H7200\"* hand|strong=\"H3027\"* that|strong=\"H3588\"* struck|strong=\"H5060\"* us|strong=\"H6213\"*. It|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* chance|strong=\"H4745\"* that|strong=\"H3588\"* happened|strong=\"H1961\"* to|strong=\"H5927\"* us|strong=\"H6213\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3947\"* men|strong=\"H1121\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* two|strong=\"H8147\"* milk cows|strong=\"H6510\"* and|strong=\"H1121\"* tied them|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H3947\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* shut|strong=\"H3607\"* up|strong=\"H3607\"* their|strong=\"H3947\"* calves|strong=\"H1121\"* at|strong=\"H1004\"* home|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* put|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s ark on|strong=\"H7760\"* the|strong=\"H3068\"* cart|strong=\"H5699\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* box with|strong=\"H3068\"* the|strong=\"H3068\"* golden|strong=\"H2091\"* mice|strong=\"H5909\"* and|strong=\"H3068\"* the|strong=\"H3068\"* images|strong=\"H6754\"* of|strong=\"H3068\"* their|strong=\"H3068\"* tumors|strong=\"H2914\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* cows|strong=\"H6510\"* took|strong=\"H5493\"* the|strong=\"H5921\"* straight|strong=\"H3474\"* way|strong=\"H1870\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Beth Shemesh. They|strong=\"H3808\"* went|strong=\"H1980\"* along|strong=\"H5921\"* the|strong=\"H5921\"* highway|strong=\"H4546\"*, lowing|strong=\"H1600\"* as|strong=\"H5704\"* they|strong=\"H3808\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5704\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H5921\"* left|strong=\"H8040\"*; and|strong=\"H1980\"* the|strong=\"H5921\"* lords|strong=\"H5633\"* of|strong=\"H1366\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* after|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Beth Shemesh." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* people|strong=\"H5869\"* of|strong=\"H5869\"* Beth Shemesh were|strong=\"H5869\"* reaping|strong=\"H7114\"* their|strong=\"H5375\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"* in|strong=\"H8055\"* the|strong=\"H7200\"* valley|strong=\"H6010\"*; and|strong=\"H5869\"* they|strong=\"H5375\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* ark, and|strong=\"H5869\"* rejoiced|strong=\"H8055\"* to|strong=\"H7200\"* see|strong=\"H7200\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* cart|strong=\"H5699\"* came|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3068\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"* of|strong=\"H3068\"* Beth Shemesh, and|strong=\"H3068\"* stood|strong=\"H5975\"* there|strong=\"H8033\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* stone. Then|strong=\"H5975\"* they|strong=\"H8033\"* split|strong=\"H1234\"* the|strong=\"H3068\"* wood|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3068\"* cart|strong=\"H5699\"* and|strong=\"H3068\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3068\"* cows|strong=\"H6510\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* Levites|strong=\"H3881\"* took|strong=\"H5927\"* down|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s ark and|strong=\"H3068\"* the|strong=\"H3068\"* box that|strong=\"H3117\"* was|strong=\"H3068\"* with|strong=\"H3068\"* it|strong=\"H7760\"*, in|strong=\"H3068\"* which|strong=\"H1931\"* the|strong=\"H3068\"* jewels|strong=\"H3627\"* of|strong=\"H3068\"* gold|strong=\"H2091\"* were|strong=\"H3881\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* them|strong=\"H3381\"* on|strong=\"H3117\"* the|strong=\"H3068\"* great|strong=\"H1419\"* stone; and|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H1419\"* of|strong=\"H3068\"* Beth Shemesh offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sacrificed|strong=\"H2076\"* sacrifices|strong=\"H2077\"* the|strong=\"H3068\"* same|strong=\"H1931\"* day|strong=\"H3117\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3117\"* the|strong=\"H7200\"* five|strong=\"H2568\"* lords|strong=\"H5633\"* of|strong=\"H3117\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* seen|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3117\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Ekron|strong=\"H6138\"* the|strong=\"H7200\"* same|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "These are|strong=\"H3068\"* the|strong=\"H3068\"* golden|strong=\"H2091\"* tumors|strong=\"H2914\"* which|strong=\"H3068\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"* returned|strong=\"H7725\"* for|strong=\"H3068\"* a|strong=\"H3068\"* trespass offering|strong=\"H3068\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*: for|strong=\"H3068\"* Ashdod one|strong=\"H3068\"*, for|strong=\"H3068\"* Gaza|strong=\"H5804\"* one|strong=\"H3068\"*, for|strong=\"H3068\"* Ashkelon one|strong=\"H3068\"*, for|strong=\"H3068\"* Gath|strong=\"H1661\"* one|strong=\"H3068\"*, for|strong=\"H3068\"* Ekron|strong=\"H6138\"* one|strong=\"H3068\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* mice|strong=\"H5909\"*, according|strong=\"H5921\"* to|strong=\"H5704\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* belonging to|strong=\"H5704\"* the|strong=\"H3605\"* five|strong=\"H2568\"* lords|strong=\"H5633\"*, both|strong=\"H3605\"* of|strong=\"H3068\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* and|strong=\"H3068\"* of|strong=\"H3068\"* country|strong=\"H7704\"* villages|strong=\"H3724\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* stone on|strong=\"H5921\"* which|strong=\"H3068\"* they|strong=\"H3117\"* set|strong=\"H3240\"* down|strong=\"H3240\"* Yahweh|strong=\"H3068\"*’s ark. That|strong=\"H3605\"* stone remains to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Joshua|strong=\"H3091\"* of|strong=\"H3068\"* Beth Shemesh." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* struck|strong=\"H5221\"* of|strong=\"H3068\"* the|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H3068\"* Beth Shemesh, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* looked|strong=\"H7200\"* into|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s ark, he|strong=\"H3588\"* struck|strong=\"H5221\"* fifty|strong=\"H2572\"* thousand seventy|strong=\"H7657\"* of|strong=\"H3068\"* the|strong=\"H7200\"* men|strong=\"H1419\"*. Then|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* mourned|strong=\"H7657\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6440\"* men of|strong=\"H3068\"* Beth Shemesh said, “Who|strong=\"H4310\"* is|strong=\"H3068\"* able|strong=\"H3201\"* to|strong=\"H3201\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, this|strong=\"H2088\"* holy|strong=\"H6918\"* God|strong=\"H3068\"*? To|strong=\"H3201\"* whom|strong=\"H4310\"* shall|strong=\"H3068\"* he|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H6440\"* us|strong=\"H5921\"*?”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7725\"* the|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Kiriath|strong=\"H7157\"* Jearim, saying, “The|strong=\"H3068\"* Philistines|strong=\"H6430\"* have|strong=\"H3068\"* brought|strong=\"H5927\"* back|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s ark. Come|strong=\"H5927\"* down|strong=\"H3381\"* and|strong=\"H3068\"* bring|strong=\"H7725\"* it|strong=\"H7725\"* up|strong=\"H5927\"* to|strong=\"H7725\"* yourselves|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8104\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim came|strong=\"H5927\"* and|strong=\"H1121\"* took|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H1121\"* brought|strong=\"H5927\"* it|strong=\"H5927\"* into|strong=\"H5927\"* Abinadab’s house|strong=\"H1004\"* on|strong=\"H3068\"* the|strong=\"H8104\"* hill|strong=\"H1389\"*, and|strong=\"H1121\"* consecrated|strong=\"H6942\"* Eleazar his|strong=\"H8104\"* son|strong=\"H1121\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 2, + "text": "From|strong=\"H3478\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* the|strong=\"H3605\"* ark stayed|strong=\"H3427\"* in|strong=\"H3427\"* Kiriath|strong=\"H7157\"* Jearim, the|strong=\"H3605\"* time|strong=\"H3117\"* was|strong=\"H3068\"* long|strong=\"H3117\"*—for|strong=\"H3068\"* it|strong=\"H1961\"* was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* lamented|strong=\"H5091\"* after|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Samuel|strong=\"H8050\"* spoke to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, saying, “If you|strong=\"H3605\"* are|strong=\"H3478\"* returning|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, then|strong=\"H7725\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods and|strong=\"H3478\"* the|strong=\"H3605\"* Ashtaroth|strong=\"H6252\"* from|strong=\"H7725\"* among|strong=\"H8432\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* direct|strong=\"H3559\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* serve|strong=\"H5647\"* him|strong=\"H3027\"* only|strong=\"H3605\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H1004\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3068\"* the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* removed|strong=\"H5493\"* the|strong=\"H5647\"* Baals|strong=\"H1168\"* and|strong=\"H1121\"* the|strong=\"H5647\"* Ashtaroth|strong=\"H6252\"*, and|strong=\"H1121\"* served|strong=\"H5647\"* Yahweh|strong=\"H3068\"* only." + }, + { + "verseNum": 5, + "text": "Samuel|strong=\"H8050\"* said, “Gather|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, and|strong=\"H3478\"* I|strong=\"H3478\"* will|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* for|strong=\"H1157\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3117\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, and|strong=\"H1121\"* drew|strong=\"H7579\"* water|strong=\"H4325\"*, and|strong=\"H1121\"* poured|strong=\"H8210\"* it|strong=\"H1931\"* out|strong=\"H8210\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* said there|strong=\"H8033\"*, “We|strong=\"H3117\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.” Samuel|strong=\"H8050\"* judged|strong=\"H8199\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* at|strong=\"H3478\"* Mizpah|strong=\"H4709\"*, the|strong=\"H6440\"* lords|strong=\"H5633\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H6440\"* Israel|strong=\"H3478\"*. When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* it|strong=\"H3588\"*, they|strong=\"H3588\"* were|strong=\"H3478\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H2790\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Don’t stop crying|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H3027\"* us|strong=\"H3027\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* us|strong=\"H3027\"* out|strong=\"H2199\"* of|strong=\"H1121\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 9, + "text": "Samuel|strong=\"H8050\"* took|strong=\"H3947\"* a|strong=\"H3068\"* suckling|strong=\"H2461\"* lamb|strong=\"H2924\"*, and|strong=\"H3478\"* offered|strong=\"H5927\"* it|strong=\"H5927\"* for|strong=\"H1157\"* a|strong=\"H3068\"* whole|strong=\"H3632\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*. Samuel|strong=\"H8050\"* cried|strong=\"H2199\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* for|strong=\"H1157\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H3117\"* Samuel|strong=\"H8050\"* was|strong=\"H3068\"* offering|strong=\"H5930\"* up|strong=\"H5927\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H6440\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; but|strong=\"H1961\"* Yahweh|strong=\"H3068\"* thundered|strong=\"H7481\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* thunder|strong=\"H6963\"* on|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* and|strong=\"H3478\"* confused|strong=\"H2000\"* them|strong=\"H5921\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* were|strong=\"H3478\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5221\"* men|strong=\"H3478\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* Mizpah|strong=\"H4709\"* and|strong=\"H3478\"* pursued|strong=\"H7291\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* until|strong=\"H5704\"* they|strong=\"H5704\"* came|strong=\"H3318\"* under|strong=\"H8478\"* Beth Kar." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3947\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* a|strong=\"H3068\"* stone and|strong=\"H3068\"* set|strong=\"H7760\"* it|strong=\"H7760\"* between|strong=\"H5704\"* Mizpah|strong=\"H4709\"* and|strong=\"H3068\"* Shen|strong=\"H8129\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* its|strong=\"H7760\"* name|strong=\"H8034\"* Ebenezer,+ 7:12 “Ebenezer” means “stone of help”.* saying, “Yahweh|strong=\"H3068\"* helped|strong=\"H5826\"* us|strong=\"H7760\"* until|strong=\"H5704\"* now|strong=\"H2008\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H1961\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* were|strong=\"H3478\"* subdued|strong=\"H3665\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* stopped|strong=\"H6430\"* coming within|strong=\"H5750\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* against|strong=\"H3027\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* restored|strong=\"H7725\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"*, from|strong=\"H7725\"* Ekron|strong=\"H6138\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Gath|strong=\"H1661\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* recovered|strong=\"H7725\"* its|strong=\"H7725\"* border|strong=\"H1366\"* out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* peace|strong=\"H7965\"* between|strong=\"H7965\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H3947\"* Amorites." + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* went|strong=\"H1980\"* from|strong=\"H3478\"* year|strong=\"H8141\"* to|strong=\"H1980\"* year|strong=\"H8141\"* in|strong=\"H8141\"* a|strong=\"H3068\"* circuit|strong=\"H5437\"* to|strong=\"H1980\"* Bethel|strong=\"H1008\"*, Gilgal|strong=\"H1537\"*, and|strong=\"H1980\"* Mizpah|strong=\"H4709\"*; and|strong=\"H1980\"* he|strong=\"H3605\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* all|strong=\"H3605\"* those|strong=\"H3605\"* places|strong=\"H4725\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H3068\"* return|strong=\"H8666\"* was|strong=\"H3068\"* to|strong=\"H3478\"* Ramah|strong=\"H7414\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* house|strong=\"H1004\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* he|strong=\"H3588\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Samuel|strong=\"H8050\"* was|strong=\"H1961\"* old|strong=\"H1121\"*, he|strong=\"H3478\"* made|strong=\"H7760\"* his|strong=\"H7760\"* sons|strong=\"H1121\"* judges|strong=\"H8199\"* over|strong=\"H8199\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H1961\"* the|strong=\"H8199\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* firstborn|strong=\"H1060\"* was|strong=\"H8034\"* Joel|strong=\"H3100\"*, and|strong=\"H1121\"* the|strong=\"H8199\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* second|strong=\"H4932\"*, Abijah. They|strong=\"H8034\"* were|strong=\"H1961\"* judges|strong=\"H8199\"* in|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3947\"* sons|strong=\"H1121\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3947\"* ways|strong=\"H1870\"*, but|strong=\"H3808\"* turned|strong=\"H5186\"* away|strong=\"H3947\"* after|strong=\"H1980\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"*, took|strong=\"H3947\"* bribes|strong=\"H7810\"*, and|strong=\"H1121\"* perverted|strong=\"H5186\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"* to|strong=\"H3478\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* said to|strong=\"H1980\"* him|strong=\"H7760\"*, “Behold|strong=\"H2009\"*, you|strong=\"H3605\"* are|strong=\"H1121\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* don’t walk|strong=\"H1980\"* in|strong=\"H1980\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. Now|strong=\"H6258\"* make|strong=\"H7760\"* us|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* to|strong=\"H1980\"* judge|strong=\"H8199\"* us|strong=\"H7760\"* like|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* the|strong=\"H5414\"* thing|strong=\"H1697\"* displeased|strong=\"H7489\"* Samuel|strong=\"H8050\"* when|strong=\"H3068\"* they|strong=\"H3068\"* said|strong=\"H1697\"*, “Give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* to|strong=\"H3068\"* judge|strong=\"H8199\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “Listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H8085\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* me|strong=\"H5921\"* as|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "According to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1571\"* done|strong=\"H6213\"* since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* I|strong=\"H3117\"* brought|strong=\"H5927\"* them|strong=\"H1992\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"* even|strong=\"H1571\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* they|strong=\"H1992\"* have|strong=\"H1571\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"* and|strong=\"H3117\"* served|strong=\"H5647\"* other|strong=\"H2088\"* gods, so|strong=\"H3651\"* they|strong=\"H1992\"* also|strong=\"H1571\"* do|strong=\"H6213\"* to|strong=\"H5704\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, listen|strong=\"H8085\"* to|strong=\"H5921\"* their|strong=\"H8085\"* voice|strong=\"H6963\"*. However|strong=\"H8085\"*, you|strong=\"H3588\"* shall|strong=\"H4428\"* protest|strong=\"H5749\"* solemnly|strong=\"H5749\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* shall|strong=\"H4428\"* show|strong=\"H5046\"* them|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* who|strong=\"H4428\"* will|strong=\"H4428\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 10, + "text": "Samuel|strong=\"H8050\"* told|strong=\"H1697\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* asked|strong=\"H7592\"* him|strong=\"H3605\"* for|strong=\"H3068\"* a|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* said, “This|strong=\"H2088\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H6440\"* way|strong=\"H4941\"* of|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* who|strong=\"H1121\"* shall|strong=\"H1121\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H6440\"*: he|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H3947\"* your|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* appoint|strong=\"H7760\"* them|strong=\"H5921\"* as|strong=\"H1961\"* his|strong=\"H7760\"* servants|strong=\"H6440\"*, for|strong=\"H5921\"* his|strong=\"H7760\"* chariots|strong=\"H4818\"* and|strong=\"H1121\"* to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H7760\"* horsemen|strong=\"H6571\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* will|strong=\"H1961\"* run|strong=\"H7323\"* before|strong=\"H6440\"* his|strong=\"H7760\"* chariots|strong=\"H4818\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* will|strong=\"H8269\"* appoint|strong=\"H7760\"* them|strong=\"H6213\"* to|strong=\"H6213\"* him|strong=\"H6213\"* for|strong=\"H6213\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H2572\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* fifties|strong=\"H2572\"*; and|strong=\"H2572\"* he|strong=\"H6213\"* will|strong=\"H8269\"* assign|strong=\"H7760\"* some to|strong=\"H6213\"* plow|strong=\"H2790\"* his|strong=\"H7760\"* ground|strong=\"H2758\"* and|strong=\"H2572\"* to|strong=\"H6213\"* reap|strong=\"H7114\"* his|strong=\"H7760\"* harvest|strong=\"H7105\"*; and|strong=\"H2572\"* to|strong=\"H6213\"* make|strong=\"H6213\"* his|strong=\"H7760\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* war|strong=\"H4421\"* and|strong=\"H2572\"* the|strong=\"H6213\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* his|strong=\"H7760\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3947\"* will|strong=\"H1323\"* take|strong=\"H3947\"* your|strong=\"H3947\"* daughters|strong=\"H1323\"* to|strong=\"H1323\"* be perfumers|strong=\"H7548\"*, to|strong=\"H1323\"* be cooks|strong=\"H2879\"*, and|strong=\"H1323\"* to|strong=\"H1323\"* be bakers." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5414\"* will|strong=\"H5650\"* take|strong=\"H3947\"* your|strong=\"H5414\"* fields|strong=\"H7704\"*, your|strong=\"H5414\"* vineyards|strong=\"H3754\"*, and|strong=\"H5650\"* your|strong=\"H5414\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*, even your|strong=\"H5414\"* best|strong=\"H2896\"*, and|strong=\"H5650\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* will|strong=\"H5650\"* take|strong=\"H5414\"* one|strong=\"H2233\"* tenth|strong=\"H6237\"* of|strong=\"H5650\"* your|strong=\"H5414\"* seed|strong=\"H2233\"* and|strong=\"H5650\"* of|strong=\"H5650\"* your|strong=\"H5414\"* vineyards|strong=\"H3754\"*, and|strong=\"H5650\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* officers|strong=\"H5631\"* and|strong=\"H5650\"* to|strong=\"H5414\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* will|strong=\"H5650\"* take|strong=\"H3947\"* your|strong=\"H3947\"* male|strong=\"H5650\"* servants|strong=\"H5650\"*, your|strong=\"H3947\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, your|strong=\"H3947\"* best|strong=\"H2896\"* young|strong=\"H2896\"* men|strong=\"H5650\"*, and|strong=\"H5650\"* your|strong=\"H3947\"* donkeys|strong=\"H2543\"*, and|strong=\"H5650\"* assign them|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H3947\"* own work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "He will|strong=\"H1961\"* take|strong=\"H1961\"* one|strong=\"H1961\"* tenth|strong=\"H6237\"* of|strong=\"H5650\"* your|strong=\"H1961\"* flocks|strong=\"H6629\"*; and|strong=\"H5650\"* you|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* because|strong=\"H6440\"* of|strong=\"H4428\"* your|strong=\"H3068\"* king|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3068\"* have|strong=\"H3068\"* chosen for|strong=\"H6440\"* yourselves|strong=\"H3068\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H6440\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"* refused|strong=\"H3985\"* to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* Samuel|strong=\"H8050\"*; and|strong=\"H4428\"* they|strong=\"H3588\"* said|strong=\"H8085\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* have|strong=\"H1961\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 20, + "text": "that|strong=\"H3605\"* we|strong=\"H3068\"* also|strong=\"H1571\"* may|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*; and|strong=\"H4428\"* that|strong=\"H3605\"* our|strong=\"H3605\"* king|strong=\"H4428\"* may|strong=\"H1961\"* judge|strong=\"H8199\"* us|strong=\"H6440\"*, and|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* us|strong=\"H6440\"*, and|strong=\"H4428\"* fight|strong=\"H3898\"* our|strong=\"H3605\"* battles|strong=\"H4421\"*.”" + }, + { + "verseNum": 21, + "text": "Samuel|strong=\"H8050\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* rehearsed|strong=\"H1696\"* them|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3478\"* Samuel|strong=\"H8050\"*, “Listen|strong=\"H8085\"* to|strong=\"H3478\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3478\"* make|strong=\"H4427\"* them|strong=\"H8085\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man|strong=\"H1368\"* of|strong=\"H1121\"* Benjamin, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Kish|strong=\"H7027\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiel, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeror|strong=\"H6872\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Becorath|strong=\"H1064\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aphiah, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Benjamite|strong=\"H1121\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* had|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Saul|strong=\"H7586\"*, an|strong=\"H1961\"* impressive|strong=\"H2896\"* young|strong=\"H1121\"* man|strong=\"H1121\"*; and|strong=\"H1121\"* there|strong=\"H1961\"* was|strong=\"H8034\"* not|strong=\"H1961\"* among|strong=\"H4480\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* more|strong=\"H4480\"* handsome|strong=\"H2896\"* person than|strong=\"H4480\"* he|strong=\"H3605\"*. From|strong=\"H4480\"* his|strong=\"H3605\"* shoulders|strong=\"H7926\"* and|strong=\"H1121\"* upward|strong=\"H4605\"* he|strong=\"H3605\"* was|strong=\"H8034\"* taller|strong=\"H1364\"* than|strong=\"H4480\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3947\"* donkeys of|strong=\"H1121\"* Kish|strong=\"H7027\"*, Saul|strong=\"H7586\"*’s father|strong=\"H1121\"*, were|strong=\"H1121\"* lost. Kish|strong=\"H7027\"* said to|strong=\"H3212\"* Saul|strong=\"H7586\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, “Now|strong=\"H4994\"* take|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* servants|strong=\"H5288\"* with|strong=\"H3212\"* you|strong=\"H3947\"*, and|strong=\"H1121\"* arise|strong=\"H6965\"*, go|strong=\"H3212\"* look|strong=\"H1245\"* for|strong=\"H1121\"* the|strong=\"H3947\"* donkeys.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* Shalishah|strong=\"H8031\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5674\"*. Then|strong=\"H5674\"* they|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* Shaalim|strong=\"H8171\"*, and|strong=\"H2022\"* they|strong=\"H3808\"* weren’t there|strong=\"H4672\"*. Then|strong=\"H5674\"* he|strong=\"H3808\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* land of|strong=\"H2022\"* the|strong=\"H5674\"* Benjamites, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t find|strong=\"H4672\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H7725\"* they|strong=\"H1992\"* had|strong=\"H7586\"* come|strong=\"H3212\"* to|strong=\"H7725\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* Zuph|strong=\"H6689\"*, Saul|strong=\"H7586\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"* who|strong=\"H1992\"* was|strong=\"H7586\"* with|strong=\"H5973\"* him|strong=\"H7725\"*, “Come|strong=\"H3212\"*! Let|strong=\"H2308\"*’s return|strong=\"H7725\"*, lest|strong=\"H6435\"* my|strong=\"H7725\"* father stop|strong=\"H2308\"* caring about|strong=\"H4480\"* the|strong=\"H4480\"* donkeys and|strong=\"H7725\"* be|strong=\"H7725\"* anxious|strong=\"H1672\"* for|strong=\"H4480\"* us|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* servant said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Behold|strong=\"H2009\"* now|strong=\"H6258\"*, there|strong=\"H8033\"* is|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H5892\"* God in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H1980\"* he|strong=\"H8033\"* is|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1870\"* held|strong=\"H3513\"* in|strong=\"H5921\"* honor|strong=\"H3513\"*. All|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H8033\"* says|strong=\"H1696\"* surely|strong=\"H1980\"* happens. Now|strong=\"H6258\"* let|strong=\"H4994\"*’s go|strong=\"H1980\"* there|strong=\"H8033\"*. Perhaps he|strong=\"H8033\"* can|strong=\"H1980\"* tell|strong=\"H5046\"* us|strong=\"H4994\"* which|strong=\"H5892\"* way|strong=\"H1870\"* to|strong=\"H1696\"* go|strong=\"H1980\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* his|strong=\"H3588\"* servant|strong=\"H5288\"*, “But|strong=\"H3588\"* behold|strong=\"H2009\"*, if|strong=\"H3588\"* we|strong=\"H3068\"* go|strong=\"H3212\"*, what|strong=\"H4100\"* should|strong=\"H4100\"* we|strong=\"H3068\"* bring|strong=\"H3212\"* the|strong=\"H3588\"* man|strong=\"H5288\"*? For|strong=\"H3588\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* is|strong=\"H4100\"* spent in|strong=\"H3212\"* our|strong=\"H3588\"* sacks|strong=\"H3627\"*, and|strong=\"H3212\"* there|strong=\"H2009\"* is|strong=\"H4100\"* not|strong=\"H3588\"* a|strong=\"H3068\"* present|strong=\"H8670\"* to|strong=\"H3212\"* bring|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3588\"* man|strong=\"H5288\"* of|strong=\"H3627\"* God. What|strong=\"H4100\"* do|strong=\"H4100\"* we|strong=\"H3068\"* have|strong=\"H5288\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* servant|strong=\"H5288\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* again|strong=\"H3254\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* in|strong=\"H4672\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* the|strong=\"H5414\"* fourth|strong=\"H7253\"* part|strong=\"H7253\"* of|strong=\"H3027\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*+ 9:8 A shekel is about 10 grams or about 0.35 ounces, so 1/4 shekel would be a small coin of about 2.5 grams.* of|strong=\"H3027\"* silver|strong=\"H3701\"*. I|strong=\"H5414\"* will|strong=\"H3027\"* give|strong=\"H5414\"* that|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* man|strong=\"H5288\"* of|strong=\"H3027\"* God|strong=\"H5414\"*, to|strong=\"H5414\"* tell|strong=\"H5046\"* us|strong=\"H5414\"* our|strong=\"H5414\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 9, + "text": "(In|strong=\"H3478\"* earlier times|strong=\"H3117\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H6440\"* went|strong=\"H3212\"* to|strong=\"H5704\"* inquire|strong=\"H1875\"* of|strong=\"H3117\"* God, he|strong=\"H3588\"* said|strong=\"H7121\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H6440\"* seer|strong=\"H7203\"*;” for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3478\"* is|strong=\"H3117\"* now|strong=\"H3117\"* called|strong=\"H7121\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* was|strong=\"H3478\"* before|strong=\"H6440\"* called|strong=\"H7121\"* a|strong=\"H3068\"* seer|strong=\"H7203\"*.)" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7586\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3212\"* his|strong=\"H7586\"* servant|strong=\"H5288\"*, “Well|strong=\"H2896\"* said|strong=\"H1697\"*. Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"*.” So|strong=\"H1697\"* they|strong=\"H8033\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H1697\"* city|strong=\"H5892\"* where|strong=\"H8033\"* the|strong=\"H1697\"* man|strong=\"H5288\"* of|strong=\"H1697\"* God was|strong=\"H7586\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H5927\"* they|strong=\"H1992\"* went|strong=\"H3318\"* up|strong=\"H5927\"* the|strong=\"H3318\"* ascent|strong=\"H4608\"* to|strong=\"H3318\"* the|strong=\"H3318\"* city|strong=\"H5892\"*, they|strong=\"H1992\"* found|strong=\"H4672\"* young|strong=\"H5291\"* maidens|strong=\"H5291\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* draw|strong=\"H7579\"* water|strong=\"H4325\"*, and|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H1992\"*, “Is|strong=\"H3426\"* the|strong=\"H3318\"* seer|strong=\"H7203\"* here|strong=\"H2088\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* answered|strong=\"H6030\"* them|strong=\"H6440\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “He|strong=\"H3588\"* is|strong=\"H3426\"*. Behold|strong=\"H2009\"*, he|strong=\"H3588\"* is|strong=\"H3426\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Hurry|strong=\"H4116\"* now|strong=\"H6258\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3117\"* come|strong=\"H5971\"* today|strong=\"H3117\"* into|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* have|strong=\"H3426\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* today|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H5704\"* soon|strong=\"H6258\"* as|strong=\"H5704\"* you|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, you|strong=\"H3588\"* will|strong=\"H5971\"* immediately find|strong=\"H4672\"* him|strong=\"H7121\"* before|strong=\"H2962\"* he|strong=\"H1931\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H3588\"* high|strong=\"H1116\"* place|strong=\"H1116\"* to|strong=\"H5704\"* eat; for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* will|strong=\"H5971\"* not|strong=\"H3808\"* eat until|strong=\"H5704\"* he|strong=\"H1931\"* comes|strong=\"H5927\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* blesses|strong=\"H1288\"* the|strong=\"H3588\"* sacrifice|strong=\"H2077\"*. Afterwards those|strong=\"H1931\"* who|strong=\"H1931\"* are|strong=\"H3117\"* invited|strong=\"H7121\"* eat. Now|strong=\"H6258\"* therefore|strong=\"H3651\"* go|strong=\"H5927\"* up|strong=\"H5927\"*; for|strong=\"H3588\"* at|strong=\"H3117\"* this|strong=\"H3651\"* time|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H5971\"* find|strong=\"H4672\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 14, + "text": "They|strong=\"H1992\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* the|strong=\"H8432\"* city|strong=\"H5892\"*. As|strong=\"H5927\"* they|strong=\"H1992\"* came|strong=\"H3318\"* within|strong=\"H8432\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, Samuel|strong=\"H8050\"* came|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H5927\"* them|strong=\"H1992\"* to|strong=\"H3318\"* go|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* the|strong=\"H8432\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* revealed|strong=\"H1540\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"* a|strong=\"H3068\"* day|strong=\"H3117\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* came|strong=\"H3068\"*, saying," + }, + { + "verseNum": 16, + "text": "“Tomorrow|strong=\"H4279\"* about|strong=\"H5921\"* this|strong=\"H7200\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H5971\"* send|strong=\"H7971\"* you|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H7200\"* out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* land of|strong=\"H3027\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3478\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H3027\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H7200\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. He|strong=\"H3588\"* will|strong=\"H5971\"* save|strong=\"H3467\"* my|strong=\"H7200\"* people|strong=\"H5971\"* out|strong=\"H7971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* looked|strong=\"H7200\"* upon|strong=\"H5921\"* my|strong=\"H7200\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* their|strong=\"H7200\"* cry|strong=\"H6818\"* has|strong=\"H3478\"* come|strong=\"H4279\"* to|strong=\"H3478\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H7200\"* Samuel|strong=\"H8050\"* saw|strong=\"H7200\"* Saul|strong=\"H7586\"*, Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7200\"* man|strong=\"H2088\"* of|strong=\"H3068\"* whom|strong=\"H5971\"* I|strong=\"H2009\"* spoke|strong=\"H6030\"* to|strong=\"H3068\"* you|strong=\"H7200\"*! He|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H3068\"* authority over|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H2088\"* Saul|strong=\"H7586\"* approached|strong=\"H5066\"* Samuel|strong=\"H8050\"* in|strong=\"H1004\"* the|strong=\"H8432\"* gateway|strong=\"H8179\"*, and|strong=\"H1004\"* said, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* where|strong=\"H1004\"* the|strong=\"H8432\"* seer|strong=\"H7203\"*’s house|strong=\"H1004\"* is|strong=\"H2088\"*.”" + }, + { + "verseNum": 19, + "text": "Samuel|strong=\"H8050\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “I|strong=\"H3117\"* am the|strong=\"H3605\"* seer|strong=\"H7203\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H7971\"* the|strong=\"H3605\"* high|strong=\"H1116\"* place|strong=\"H1116\"*, for|strong=\"H6440\"* you|strong=\"H6440\"* are|strong=\"H3117\"* to|strong=\"H7971\"* eat with|strong=\"H5973\"* me|strong=\"H6440\"* today|strong=\"H3117\"*. In|strong=\"H3117\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* I|strong=\"H3117\"* will|strong=\"H3824\"* let|strong=\"H7971\"* you|strong=\"H6440\"* go|strong=\"H5927\"* and|strong=\"H6030\"* will|strong=\"H3824\"* tell|strong=\"H5046\"* you|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* for|strong=\"H3588\"* your|strong=\"H3605\"* donkeys who|strong=\"H4310\"* were|strong=\"H3478\"* lost three|strong=\"H7969\"* days|strong=\"H3117\"* ago|strong=\"H3117\"*, don’t set|strong=\"H7760\"* your|strong=\"H3605\"* mind|strong=\"H3820\"* on|strong=\"H3117\"* them|strong=\"H7760\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3478\"* been|strong=\"H3808\"* found|strong=\"H4672\"*. For|strong=\"H3588\"* whom|strong=\"H4310\"* does|strong=\"H3808\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* desire|strong=\"H2532\"*? Is|strong=\"H3820\"* it|strong=\"H7760\"* not|strong=\"H3808\"* you|strong=\"H3588\"* and|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*?”" + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* answered|strong=\"H6030\"*, “Am I|strong=\"H1697\"* not|strong=\"H3808\"* a|strong=\"H3068\"* Benjamite|strong=\"H1145\"*, of|strong=\"H1697\"* the|strong=\"H3605\"* smallest|strong=\"H6996\"* of|strong=\"H1697\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*? And|strong=\"H3478\"* my|strong=\"H3605\"* family|strong=\"H4940\"* the|strong=\"H3605\"* least|strong=\"H6996\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1697\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1697\"* Benjamin|strong=\"H1144\"*? Why|strong=\"H4100\"* then|strong=\"H6030\"* do|strong=\"H4100\"* you|strong=\"H3605\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* like|strong=\"H3478\"* this|strong=\"H2088\"*?”" + }, + { + "verseNum": 22, + "text": "Samuel|strong=\"H8050\"* took|strong=\"H3947\"* Saul|strong=\"H7586\"* and|strong=\"H7970\"* his|strong=\"H5414\"* servant|strong=\"H5288\"* and|strong=\"H7970\"* brought|strong=\"H3947\"* them|strong=\"H5414\"* into|strong=\"H3947\"* the|strong=\"H5414\"* guest room|strong=\"H4725\"*, and|strong=\"H7970\"* made|strong=\"H5414\"* them|strong=\"H5414\"* sit|strong=\"H5414\"* in|strong=\"H4725\"* the|strong=\"H5414\"* best|strong=\"H7218\"* place|strong=\"H4725\"* among|strong=\"H7218\"* those|strong=\"H1992\"* who|strong=\"H1992\"* were|strong=\"H1992\"* invited|strong=\"H7121\"*, who|strong=\"H1992\"* were|strong=\"H1992\"* about|strong=\"H3947\"* thirty|strong=\"H7970\"* persons." + }, + { + "verseNum": 23, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5414\"* the|strong=\"H5414\"* cook|strong=\"H2876\"*, “Bring|strong=\"H5414\"* the|strong=\"H5414\"* portion|strong=\"H4490\"* which I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"*, of|strong=\"H7760\"* which I|strong=\"H5414\"* said to|strong=\"H5414\"* you|strong=\"H5414\"*, ‘Set|strong=\"H7760\"* it|strong=\"H5414\"* aside|strong=\"H5973\"*.’”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* cook|strong=\"H2876\"* took|strong=\"H7760\"* up|strong=\"H7311\"* the|strong=\"H6440\"* thigh|strong=\"H7785\"*, and|strong=\"H3117\"* that|strong=\"H3588\"* which|strong=\"H1931\"* was|strong=\"H7586\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, and|strong=\"H3117\"* set|strong=\"H7760\"* it|strong=\"H7760\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*. Samuel|strong=\"H8050\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, that|strong=\"H3588\"* which|strong=\"H1931\"* has|strong=\"H3117\"* been|strong=\"H5971\"* reserved|strong=\"H8104\"*! Set|strong=\"H7760\"* it|strong=\"H7760\"* before|strong=\"H6440\"* yourself|strong=\"H5921\"* and|strong=\"H3117\"* eat; because|strong=\"H3588\"* it|strong=\"H7760\"* has|strong=\"H3117\"* been|strong=\"H5971\"* kept|strong=\"H8104\"* for|strong=\"H3588\"* you|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* appointed|strong=\"H4150\"* time|strong=\"H3117\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H7121\"*, ‘I|strong=\"H3588\"* have|strong=\"H5971\"* invited|strong=\"H7121\"* the|strong=\"H6440\"* people|strong=\"H5971\"*.’” So|strong=\"H7121\"* Saul|strong=\"H7586\"* ate with|strong=\"H5973\"* Samuel|strong=\"H8050\"* that|strong=\"H3588\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H1696\"* they|strong=\"H5921\"* had|strong=\"H7586\"* come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H5921\"* high|strong=\"H1116\"* place|strong=\"H1116\"* into|strong=\"H3381\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, he|strong=\"H5921\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* on|strong=\"H5921\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H1931\"* arose|strong=\"H6965\"* early|strong=\"H7925\"*; and|strong=\"H6965\"* about|strong=\"H1961\"* daybreak|strong=\"H7837\"*, Samuel|strong=\"H8050\"* called|strong=\"H7121\"* to|strong=\"H3318\"* Saul|strong=\"H7586\"* on|strong=\"H1961\"* the|strong=\"H7121\"* housetop|strong=\"H1406\"*, saying, “Get|strong=\"H6965\"* up|strong=\"H5927\"*, that|strong=\"H1931\"* I|strong=\"H6965\"* may|strong=\"H1961\"* send|strong=\"H7971\"* you|strong=\"H7971\"* away|strong=\"H7971\"*.” Saul|strong=\"H7586\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* they|strong=\"H1931\"* both|strong=\"H8147\"* went|strong=\"H3318\"* outside|strong=\"H2351\"*, he|strong=\"H1931\"* and|strong=\"H6965\"* Samuel|strong=\"H8050\"*, together|strong=\"H7121\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H1697\"* they|strong=\"H1992\"* were|strong=\"H3117\"* going|strong=\"H5674\"* down|strong=\"H3381\"* at|strong=\"H3117\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H3117\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"*, “Tell|strong=\"H8085\"* the|strong=\"H6440\"* servant|strong=\"H5288\"* to|strong=\"H3381\"* go|strong=\"H3381\"* on|strong=\"H3117\"* ahead|strong=\"H6440\"* of|strong=\"H3117\"* us|strong=\"H6440\"*.” He|strong=\"H3117\"* went|strong=\"H3381\"* ahead|strong=\"H6440\"*, then|strong=\"H5975\"* Samuel|strong=\"H8050\"* said|strong=\"H1697\"*, “But|strong=\"H1992\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* first|strong=\"H3117\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3117\"* cause|strong=\"H1697\"* you|strong=\"H6440\"* to|strong=\"H3381\"* hear|strong=\"H8085\"* God’s message|strong=\"H1697\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3947\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* the|strong=\"H5921\"* vial|strong=\"H6378\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* and|strong=\"H3068\"* poured|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, then|strong=\"H3947\"* kissed|strong=\"H5401\"* him|strong=\"H5921\"* and|strong=\"H3068\"* said, “Hasn’t Yahweh|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3808\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* his|strong=\"H3068\"* inheritance|strong=\"H5159\"*?" + }, + { + "verseNum": 2, + "text": "When|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H1121\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* me|strong=\"H5978\"* today|strong=\"H3117\"*, then|strong=\"H1980\"* you|strong=\"H3117\"* will|strong=\"H1121\"* find|strong=\"H4672\"* two|strong=\"H8147\"* men|strong=\"H1121\"* by|strong=\"H3117\"* Rachel|strong=\"H7354\"*’s tomb|strong=\"H6900\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* at|strong=\"H3117\"* Zelzah|strong=\"H6766\"*. They|strong=\"H3117\"* will|strong=\"H1121\"* tell you|strong=\"H3117\"*, ‘The|strong=\"H6213\"* donkeys which|strong=\"H1697\"* you|strong=\"H3117\"* went|strong=\"H1980\"* to|strong=\"H1980\"* look|strong=\"H2009\"* for|strong=\"H6213\"* have|strong=\"H1121\"* been found|strong=\"H4672\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, your|strong=\"H6213\"* father|strong=\"H1121\"* has|strong=\"H3117\"* stopped caring about|strong=\"H1980\"* the|strong=\"H6213\"* donkeys and|strong=\"H1121\"* is|strong=\"H4100\"* anxious|strong=\"H1672\"* for|strong=\"H6213\"* you|strong=\"H3117\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* shall|strong=\"H1121\"* I|strong=\"H3117\"* do|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H1245\"* son|strong=\"H1121\"*?”’" + }, + { + "verseNum": 3, + "text": "“Then|strong=\"H5375\"* you|strong=\"H5704\"* will|strong=\"H5704\"* go|strong=\"H5927\"* on|strong=\"H5927\"* forward|strong=\"H1973\"* from|strong=\"H5927\"* there|strong=\"H8033\"*, and|strong=\"H3899\"* you|strong=\"H5704\"* will|strong=\"H5704\"* come|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H5375\"* oak of|strong=\"H3603\"* Tabor|strong=\"H8396\"*. Three|strong=\"H7969\"* men will|strong=\"H5704\"* meet|strong=\"H4672\"* you|strong=\"H5704\"* there|strong=\"H8033\"* going|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* God|strong=\"H1008\"* to|strong=\"H5704\"* Bethel|strong=\"H1008\"*: one|strong=\"H5375\"* carrying|strong=\"H5375\"* three|strong=\"H7969\"* young|strong=\"H1423\"* goats|strong=\"H1423\"*, and|strong=\"H3899\"* another carrying|strong=\"H5375\"* three|strong=\"H7969\"* loaves|strong=\"H3899\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* another carrying|strong=\"H5375\"* a|strong=\"H3068\"* container of|strong=\"H3603\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3027\"* will|strong=\"H3027\"* greet|strong=\"H7592\"* you|strong=\"H5414\"* and|strong=\"H3027\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two|strong=\"H8147\"* loaves|strong=\"H3899\"* of|strong=\"H3027\"* bread|strong=\"H3899\"*, which|strong=\"H3899\"* you|strong=\"H5414\"* shall|strong=\"H3027\"* receive|strong=\"H3947\"* from|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "“After|strong=\"H1961\"* that|strong=\"H3651\"* you|strong=\"H6440\"* will|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H3381\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H5892\"* God, where|strong=\"H8033\"* the|strong=\"H6440\"* garrison|strong=\"H5333\"* of|strong=\"H5892\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* is|strong=\"H3651\"*; and|strong=\"H5892\"* it|strong=\"H3651\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H6440\"* have|strong=\"H1961\"* come|strong=\"H1961\"* there|strong=\"H8033\"* to|strong=\"H3381\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, that|strong=\"H3651\"* you|strong=\"H6440\"* will|strong=\"H1961\"* meet|strong=\"H6440\"* a|strong=\"H3068\"* band of|strong=\"H5892\"* prophets|strong=\"H5030\"* coming|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H6440\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* with|strong=\"H3381\"* a|strong=\"H3068\"* lute, a|strong=\"H3068\"* tambourine|strong=\"H8596\"*, a|strong=\"H3068\"* pipe|strong=\"H2485\"*, and|strong=\"H5892\"* a|strong=\"H3068\"* harp|strong=\"H3658\"* before|strong=\"H6440\"* them|strong=\"H1992\"*; and|strong=\"H5892\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* prophesying|strong=\"H5012\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* come|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, then|strong=\"H3068\"* you|strong=\"H5921\"* will|strong=\"H3068\"* prophesy|strong=\"H5012\"* with|strong=\"H5973\"* them|strong=\"H5921\"* and|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H2015\"* into|strong=\"H2015\"* another man." + }, + { + "verseNum": 7, + "text": "Let|strong=\"H1961\"* it|strong=\"H3588\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* these|strong=\"H6213\"* signs have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* what|strong=\"H6213\"* is|strong=\"H3027\"* appropriate|strong=\"H6213\"* for|strong=\"H3588\"* the|strong=\"H3588\"* occasion|strong=\"H4672\"*; for|strong=\"H3588\"* God|strong=\"H3027\"* is|strong=\"H3027\"* with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "“Go|strong=\"H5927\"* down|strong=\"H3381\"* ahead|strong=\"H6440\"* of|strong=\"H3117\"* me|strong=\"H6440\"* to|strong=\"H5704\"* Gilgal|strong=\"H1537\"*; and|strong=\"H3117\"* behold|strong=\"H2009\"*, I|strong=\"H3117\"* will|strong=\"H3117\"* come|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H5704\"* you|strong=\"H6440\"* to|strong=\"H5704\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3117\"* to|strong=\"H5704\"* sacrifice|strong=\"H2077\"* sacrifices|strong=\"H2077\"* of|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. Wait|strong=\"H3176\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, until|strong=\"H5704\"* I|strong=\"H3117\"* come|strong=\"H5927\"* to|strong=\"H5704\"* you|strong=\"H6440\"* and|strong=\"H3117\"* show|strong=\"H6213\"* you|strong=\"H6440\"* what|strong=\"H3045\"* you|strong=\"H6440\"* are|strong=\"H3117\"* to|strong=\"H5704\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H3605\"* when|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* turned|strong=\"H2015\"* his|strong=\"H3605\"* back|strong=\"H6437\"* to|strong=\"H3212\"* go|strong=\"H3212\"* from|strong=\"H3117\"* Samuel|strong=\"H8050\"*, God gave|strong=\"H2015\"* him|strong=\"H5973\"* another heart|strong=\"H3820\"*; and|strong=\"H3117\"* all|strong=\"H3605\"* those|strong=\"H3605\"* signs happened|strong=\"H1961\"* that|strong=\"H3605\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H5921\"* they|strong=\"H8033\"* came|strong=\"H6743\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H5921\"* hill|strong=\"H1389\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* band of|strong=\"H7307\"* prophets|strong=\"H5030\"* met|strong=\"H7122\"* him|strong=\"H5921\"*; and|strong=\"H8033\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God came|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* prophesied|strong=\"H5012\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* all|strong=\"H3605\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* him|strong=\"H7200\"* before|strong=\"H5973\"* saw|strong=\"H7200\"* that|strong=\"H3045\"*, behold|strong=\"H2009\"*, he|strong=\"H3605\"* prophesied|strong=\"H5012\"* with|strong=\"H5973\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, then|strong=\"H1961\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said to|strong=\"H1961\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3045\"* has|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*? Is|strong=\"H2088\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5973\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*?”" + }, + { + "verseNum": 12, + "text": "One|strong=\"H1961\"* from|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H3651\"* place|strong=\"H1961\"* answered|strong=\"H6030\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* their|strong=\"H5921\"* father?” Therefore|strong=\"H3651\"* it|strong=\"H5921\"* became|strong=\"H1961\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, “Is|strong=\"H4310\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*?”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3615\"* he|strong=\"H1116\"* had finished|strong=\"H3615\"* prophesying|strong=\"H5012\"*, he|strong=\"H1116\"* came|strong=\"H3615\"* to|strong=\"H1116\"* the|strong=\"H3615\"* high|strong=\"H1116\"* place|strong=\"H1116\"*." + }, + { + "verseNum": 14, + "text": "Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"* said to|strong=\"H1980\"* him|strong=\"H7200\"* and|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H7200\"* servant|strong=\"H5288\"*, “Where did|strong=\"H7200\"* you|strong=\"H3588\"* go|strong=\"H1980\"*?”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"* said, “Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"* what|strong=\"H4100\"* Samuel|strong=\"H8050\"* said to|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 16, + "text": "Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H1697\"* his|strong=\"H5046\"* uncle|strong=\"H1730\"*, “He|strong=\"H3588\"* told|strong=\"H5046\"* us|strong=\"H5046\"* plainly|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H3588\"* donkeys were|strong=\"H1697\"* found|strong=\"H4672\"*.” But|strong=\"H3588\"* concerning|strong=\"H1697\"* the|strong=\"H3588\"* matter|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* kingdom|strong=\"H4410\"*, of|strong=\"H1697\"* which|strong=\"H1697\"* Samuel|strong=\"H8050\"* spoke|strong=\"H1697\"*, he|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 17, + "text": "Samuel|strong=\"H8050\"* called|strong=\"H6817\"* the|strong=\"H3068\"* people|strong=\"H5971\"* together|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Mizpah|strong=\"H4709\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* ‘I|strong=\"H3541\"* brought|strong=\"H5927\"* Israel|strong=\"H3478\"* up|strong=\"H5927\"* out|strong=\"H5337\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* I|strong=\"H3541\"* delivered|strong=\"H5337\"* you|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"*, and|strong=\"H1121\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* that|strong=\"H3605\"* oppressed|strong=\"H3905\"* you|strong=\"H3605\"*.’" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* today|strong=\"H3117\"* rejected|strong=\"H3988\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* himself|strong=\"H1931\"* saves|strong=\"H3467\"* you|strong=\"H3588\"* out|strong=\"H5921\"* of|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3068\"* calamities|strong=\"H6869\"* and|strong=\"H3068\"* your|strong=\"H3068\"* distresses|strong=\"H6869\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H6440\"*, ‘No|strong=\"H3605\"*! Set|strong=\"H7760\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*!’ Now|strong=\"H6258\"* therefore|strong=\"H5921\"* present|strong=\"H3320\"* yourselves|strong=\"H3320\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* by|strong=\"H5921\"* your|strong=\"H3068\"* tribes|strong=\"H7626\"* and|strong=\"H3068\"* by|strong=\"H5921\"* your|strong=\"H3068\"* thousands.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H7126\"* Samuel|strong=\"H8050\"* brought|strong=\"H7126\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* near|strong=\"H7126\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Benjamin|strong=\"H1144\"* was|strong=\"H3478\"* chosen." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* brought|strong=\"H7126\"* the|strong=\"H7126\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* near|strong=\"H7126\"* by|strong=\"H3808\"* their|strong=\"H1245\"* families|strong=\"H4940\"* and|strong=\"H1121\"* the|strong=\"H7126\"* family|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H7126\"* Matrites was|strong=\"H7586\"* chosen. Then|strong=\"H7126\"* Saul|strong=\"H7586\"* the|strong=\"H7126\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"* was|strong=\"H7586\"* chosen; but|strong=\"H3808\"* when|strong=\"H1121\"* they|strong=\"H3808\"* looked|strong=\"H1245\"* for|strong=\"H1121\"* him|strong=\"H4672\"*, he|strong=\"H3808\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3068\"* they|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* further|strong=\"H5750\"*, “Is|strong=\"H3068\"* there|strong=\"H2009\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* man to|strong=\"H3068\"* come|strong=\"H5750\"* here|strong=\"H2009\"*?”" + }, + { + "verseNum": 23, + "text": "They|strong=\"H8033\"* ran|strong=\"H7323\"* and|strong=\"H5971\"* got|strong=\"H3947\"* him|strong=\"H3947\"* there|strong=\"H8033\"*. When|strong=\"H1361\"* he|strong=\"H8033\"* stood|strong=\"H3320\"* among|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, he|strong=\"H8033\"* was|strong=\"H3605\"* higher|strong=\"H4605\"* than|strong=\"H3605\"* any|strong=\"H3605\"* of|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H3947\"* his|strong=\"H3605\"* shoulders|strong=\"H7926\"* and|strong=\"H5971\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 24, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* see|strong=\"H7200\"* him|strong=\"H7200\"* whom|strong=\"H5971\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen, that|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* him|strong=\"H7200\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1696\"* Samuel|strong=\"H8050\"* told|strong=\"H1696\"* the|strong=\"H3605\"* people|strong=\"H5971\"* the|strong=\"H3605\"* regulations|strong=\"H4941\"* of|strong=\"H1004\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"*, and|strong=\"H3068\"* wrote|strong=\"H3789\"* it|strong=\"H6440\"* in|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"* and|strong=\"H3068\"* laid|strong=\"H7971\"* it|strong=\"H6440\"* up|strong=\"H3240\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Samuel|strong=\"H8050\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H7971\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H1696\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "Saul|strong=\"H7586\"* also|strong=\"H1571\"* went|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H7586\"* house|strong=\"H1004\"* in|strong=\"H1980\"* Gibeah|strong=\"H1390\"*; and|strong=\"H1980\"* the|strong=\"H5060\"* army|strong=\"H2428\"* went|strong=\"H1980\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, whose|strong=\"H7586\"* hearts|strong=\"H3820\"* God had|strong=\"H7586\"* touched|strong=\"H5060\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* certain worthless|strong=\"H1100\"* fellows|strong=\"H1121\"* said|strong=\"H2790\"*, “How|strong=\"H4100\"* could|strong=\"H2088\"* this|strong=\"H2088\"* man|strong=\"H1121\"* save|strong=\"H3467\"* us|strong=\"H1961\"*?” They|strong=\"H3808\"* despised him|strong=\"H2088\"*, and|strong=\"H1121\"* brought|strong=\"H3467\"* him|strong=\"H2088\"* no|strong=\"H3808\"* tribute|strong=\"H4503\"*. But|strong=\"H3808\"* he|strong=\"H3808\"* held|strong=\"H1961\"* his|strong=\"H1961\"* peace|strong=\"H2790\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H5927\"* Nahash|strong=\"H5176\"* the|strong=\"H3605\"* Ammonite|strong=\"H5984\"* came|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1285\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*; and|strong=\"H1285\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H5921\"* Jabesh|strong=\"H3003\"* said to|strong=\"H5927\"* Nahash|strong=\"H5176\"*, “Make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* us|strong=\"H5921\"*, and|strong=\"H1285\"* we|strong=\"H3068\"* will|strong=\"H5647\"* serve|strong=\"H5647\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 2, + "text": "Nahash|strong=\"H5176\"* the|strong=\"H3605\"* Ammonite|strong=\"H5984\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “On|strong=\"H5921\"* this|strong=\"H2063\"* condition I|strong=\"H5921\"* will|strong=\"H3478\"* make|strong=\"H7760\"* it|strong=\"H7760\"* with|strong=\"H5921\"* you|strong=\"H3605\"*, that|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* right|strong=\"H3225\"* eyes|strong=\"H5869\"* be|strong=\"H3478\"* gouged|strong=\"H5365\"* out|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H3478\"* make|strong=\"H7760\"* this|strong=\"H2063\"* dishonor all|strong=\"H3605\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H3117\"* Jabesh|strong=\"H3003\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H7971\"*, “Give us|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* may|strong=\"H3478\"* send|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* then|strong=\"H3318\"*, if there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H3318\"* save|strong=\"H3467\"* us|strong=\"H3117\"*, we|strong=\"H3068\"* will|strong=\"H3478\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Gibeah|strong=\"H1390\"* of|strong=\"H1697\"* Saul|strong=\"H7586\"*, and|strong=\"H5971\"* spoke|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H1696\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, then|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* came|strong=\"H5971\"* following the|strong=\"H3588\"* oxen|strong=\"H1241\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H3588\"* field|strong=\"H7704\"*; and|strong=\"H5971\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* ails the|strong=\"H3588\"* people|strong=\"H5971\"* that|strong=\"H3588\"* they|strong=\"H3588\"* weep|strong=\"H1058\"*?” They|strong=\"H3588\"* told|strong=\"H5608\"* him|strong=\"H4480\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3588\"* men|strong=\"H5971\"* of|strong=\"H1697\"* Jabesh|strong=\"H3003\"*." + }, + { + "verseNum": 6, + "text": "God’s Spirit|strong=\"H7307\"* came|strong=\"H6743\"* mightily|strong=\"H6743\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"* when|strong=\"H8085\"* he|strong=\"H5921\"* heard|strong=\"H8085\"* those|strong=\"H5921\"* words|strong=\"H1697\"*, and|strong=\"H7586\"* his|strong=\"H8085\"* anger|strong=\"H7307\"* burned|strong=\"H2734\"* hot|strong=\"H2734\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* took|strong=\"H3947\"* a|strong=\"H3068\"* yoke|strong=\"H6776\"* of|strong=\"H3068\"* oxen|strong=\"H1241\"* and|strong=\"H3478\"* cut|strong=\"H5408\"* them|strong=\"H5921\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"*, then|strong=\"H3318\"* sent|strong=\"H7971\"* them|strong=\"H5921\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* messengers|strong=\"H4397\"*, saying, “Whoever|strong=\"H3605\"* doesn’t come|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H5921\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* after|strong=\"H5921\"* Samuel|strong=\"H8050\"*, so|strong=\"H6213\"* shall|strong=\"H3068\"* it|strong=\"H5921\"* be|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H3318\"* his|strong=\"H3605\"* oxen|strong=\"H1241\"*.” The|strong=\"H3605\"* dread|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* they|strong=\"H3068\"* came|strong=\"H3318\"* out|strong=\"H3318\"* as|strong=\"H6213\"* one|strong=\"H3605\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3478\"* counted|strong=\"H6485\"* them|strong=\"H1961\"* in|strong=\"H3478\"* Bezek; and|strong=\"H3967\"* the|strong=\"H6485\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand, and|strong=\"H3967\"* the|strong=\"H6485\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* thirty|strong=\"H7970\"* thousand." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3541\"* said to|strong=\"H1961\"* the|strong=\"H3541\"* messengers|strong=\"H4397\"* who|strong=\"H4397\"* came|strong=\"H1961\"*, “Tell|strong=\"H5046\"* the|strong=\"H3541\"* men of|strong=\"H4397\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, ‘Tomorrow|strong=\"H4279\"*, by|strong=\"H1961\"* the|strong=\"H3541\"* time|strong=\"H4279\"* the|strong=\"H3541\"* sun|strong=\"H8121\"* is|strong=\"H1961\"* hot|strong=\"H2527\"*, you|strong=\"H5046\"* will|strong=\"H1961\"* be|strong=\"H1961\"* rescued.’” The|strong=\"H3541\"* messengers|strong=\"H4397\"* came|strong=\"H1961\"* and|strong=\"H1568\"* told|strong=\"H5046\"* the|strong=\"H3541\"* men of|strong=\"H4397\"* Jabesh|strong=\"H3003\"*; and|strong=\"H1568\"* they|strong=\"H3541\"* were|strong=\"H1961\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H6213\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H5869\"* Jabesh|strong=\"H3003\"* said|strong=\"H3318\"*, “Tomorrow|strong=\"H4279\"* we|strong=\"H3068\"* will|strong=\"H5869\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*, and|strong=\"H5869\"* you|strong=\"H3605\"* shall|strong=\"H5869\"* do|strong=\"H6213\"* with|strong=\"H6213\"* us|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3318\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 11, + "text": "On|strong=\"H3117\"* the|strong=\"H5221\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, Saul|strong=\"H7586\"* put|strong=\"H7760\"* the|strong=\"H5221\"* people|strong=\"H5971\"* in|strong=\"H3117\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* came|strong=\"H1961\"* into|strong=\"H8432\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H5221\"* camp|strong=\"H4264\"* in|strong=\"H3117\"* the|strong=\"H5221\"* morning|strong=\"H1242\"* watch, and|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Ammonites|strong=\"H5983\"* until|strong=\"H5704\"* the|strong=\"H5221\"* heat|strong=\"H2527\"* of|strong=\"H3117\"* the|strong=\"H5221\"* day|strong=\"H3117\"*. Those|strong=\"H1961\"* who|strong=\"H5971\"* remained|strong=\"H7604\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* no|strong=\"H3808\"* two|strong=\"H8147\"* of|strong=\"H3117\"* them|strong=\"H5221\"* were|strong=\"H1961\"* left|strong=\"H7604\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* people|strong=\"H5971\"* said to|strong=\"H4191\"* Samuel|strong=\"H8050\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* he|strong=\"H5414\"* who|strong=\"H4310\"* said, ‘Shall|strong=\"H5971\"* Saul|strong=\"H7586\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5414\"*?’ Bring|strong=\"H5414\"* those|strong=\"H5921\"* men|strong=\"H5971\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* put|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*!”" + }, + { + "verseNum": 13, + "text": "Saul|strong=\"H7586\"* said, “No|strong=\"H3808\"* man|strong=\"H4191\"* shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* today|strong=\"H3117\"*; for|strong=\"H3588\"* today|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rescued Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "Then Samuel|strong=\"H8050\"* said to|strong=\"H3212\"* the|strong=\"H8033\"* people|strong=\"H5971\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* to|strong=\"H3212\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3212\"* renew|strong=\"H2318\"* the|strong=\"H8033\"* kingdom|strong=\"H4410\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Gilgal|strong=\"H1537\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* they|strong=\"H8033\"* made|strong=\"H4427\"* Saul|strong=\"H7586\"* king|strong=\"H4427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3478\"* Gilgal|strong=\"H1537\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* there|strong=\"H8033\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* rejoiced|strong=\"H8055\"* greatly|strong=\"H3966\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3605\"* voice|strong=\"H6963\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* said|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H5921\"*, and|strong=\"H3478\"* have|strong=\"H3478\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* king|strong=\"H4428\"* walks|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* am|strong=\"H2204\"* old|strong=\"H1121\"* and|strong=\"H1121\"* gray-headed. Behold|strong=\"H2009\"*, my|strong=\"H6258\"* sons|strong=\"H1121\"* are|strong=\"H3117\"* with|strong=\"H1980\"* you|strong=\"H6440\"*. I|strong=\"H3117\"* have|strong=\"H1121\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* from|strong=\"H6440\"* my|strong=\"H6258\"* youth|strong=\"H5271\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H3068\"*. Witness|strong=\"H6030\"* against|strong=\"H5048\"* me|strong=\"H7725\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H5048\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"*. Whose|strong=\"H4310\"* ox|strong=\"H7794\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"*? Whose|strong=\"H4310\"* donkey|strong=\"H2543\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"*? Whom|strong=\"H4310\"* have|strong=\"H3068\"* I|strong=\"H2005\"* defrauded|strong=\"H6231\"*? Whom|strong=\"H4310\"* have|strong=\"H3068\"* I|strong=\"H2005\"* oppressed|strong=\"H6231\"*? Of|strong=\"H3068\"* whose|strong=\"H4310\"* hand|strong=\"H3027\"* have|strong=\"H3068\"* I|strong=\"H2005\"* taken|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H3724\"* to|strong=\"H7725\"* make|strong=\"H7725\"* me|strong=\"H7725\"* blind|strong=\"H5956\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"*? I|strong=\"H2005\"* will|strong=\"H3068\"* restore|strong=\"H7725\"* it|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* said, “You|strong=\"H3947\"* have|strong=\"H3027\"* not|strong=\"H3808\"* defrauded|strong=\"H6231\"* us|strong=\"H3027\"*, nor|strong=\"H3808\"* oppressed|strong=\"H6231\"* us|strong=\"H3027\"*, neither|strong=\"H3808\"* have|strong=\"H3027\"* you|strong=\"H3947\"* taken|strong=\"H3947\"* anything|strong=\"H3972\"* from|strong=\"H3027\"* anyone’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* said to|strong=\"H3068\"* them|strong=\"H3027\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H3027\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"* is|strong=\"H3068\"* witness|strong=\"H5707\"* today|strong=\"H3117\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* found|strong=\"H4672\"* anything|strong=\"H3972\"* in|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 6, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, “It|strong=\"H6213\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H5971\"* appointed|strong=\"H6213\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, and|strong=\"H4872\"* that|strong=\"H5971\"* brought|strong=\"H5927\"* your|strong=\"H3068\"* fathers up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* stand|strong=\"H3320\"* still|strong=\"H3320\"*, that|strong=\"H3605\"* I|strong=\"H6258\"* may|strong=\"H3068\"* plead|strong=\"H8199\"* with|strong=\"H3068\"* you|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6666\"* acts|strong=\"H6213\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3068\"* you|strong=\"H6440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 8, + "text": "“When|strong=\"H3318\"* Jacob|strong=\"H3290\"* had|strong=\"H3068\"* come|strong=\"H3318\"* into|strong=\"H3318\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* your|strong=\"H3068\"* fathers cried|strong=\"H2199\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron, who|strong=\"H3068\"* brought|strong=\"H3318\"* your|strong=\"H3068\"* fathers out|strong=\"H3318\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H4872\"* made|strong=\"H3068\"* them|strong=\"H7971\"* to|strong=\"H3318\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H7911\"* they|strong=\"H3068\"* forgot|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* sold|strong=\"H4376\"* them|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Sisera|strong=\"H5516\"*, captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3068\"* army|strong=\"H6635\"* of|strong=\"H4428\"* Hazor|strong=\"H2674\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, ‘We|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* have|strong=\"H3068\"* served|strong=\"H5647\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"* and|strong=\"H3068\"* the|strong=\"H3588\"* Ashtaroth|strong=\"H6252\"*; but|strong=\"H3588\"* now|strong=\"H6258\"* deliver|strong=\"H5337\"* us|strong=\"H3588\"* out|strong=\"H2199\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* our|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* you|strong=\"H3588\"*.’" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Jerubbaal|strong=\"H3378\"*, Bedan, Jephthah|strong=\"H3316\"*, and|strong=\"H3068\"* Samuel|strong=\"H8050\"*, and|strong=\"H3068\"* delivered|strong=\"H5337\"* you|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* on|strong=\"H3427\"* every|strong=\"H5439\"* side|strong=\"H5439\"*; and|strong=\"H3068\"* you|strong=\"H7971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* safety." + }, + { + "verseNum": 12, + "text": "“When|strong=\"H3588\"* you|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Nahash|strong=\"H5176\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* said to|strong=\"H3068\"* me|strong=\"H7200\"*, ‘No|strong=\"H3808\"*, but|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* us|strong=\"H5921\"*,’ when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* was|strong=\"H3068\"* your|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* see|strong=\"H2009\"* the|strong=\"H5921\"* king|strong=\"H4428\"* whom you|strong=\"H5414\"* have|strong=\"H3068\"* chosen and|strong=\"H3068\"* whom you|strong=\"H5414\"* have|strong=\"H3068\"* asked|strong=\"H7592\"* for|strong=\"H5921\"*. Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* set|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 14, + "text": "If|strong=\"H1961\"* you|strong=\"H5921\"* will|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* rebel|strong=\"H4784\"* against|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* both|strong=\"H1571\"* you|strong=\"H5921\"* and|strong=\"H3068\"* also|strong=\"H1571\"* the|strong=\"H5921\"* king|strong=\"H4428\"* who|strong=\"H3068\"* reigns|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H3068\"* followers of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* if|strong=\"H1961\"* you|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* rebel|strong=\"H4784\"* against|strong=\"H3027\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* will|strong=\"H3068\"* be|strong=\"H1961\"* against|strong=\"H3027\"* you|strong=\"H3808\"*, as|strong=\"H1961\"* it|strong=\"H1961\"* was|strong=\"H3068\"* against|strong=\"H3027\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* stand|strong=\"H3320\"* still|strong=\"H3320\"* and|strong=\"H3068\"* see|strong=\"H7200\"* this|strong=\"H2088\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 17, + "text": "Isn’t it|strong=\"H5414\"* wheat|strong=\"H2406\"* harvest|strong=\"H7105\"* today|strong=\"H3117\"*? I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* send|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H3068\"* rain|strong=\"H4306\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* and|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* your|strong=\"H3068\"* wickedness|strong=\"H7451\"* is|strong=\"H3068\"* great|strong=\"H7227\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, in|strong=\"H3068\"* asking|strong=\"H7592\"* for|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H7121\"* Samuel|strong=\"H8050\"* called|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* thunder|strong=\"H6963\"* and|strong=\"H3068\"* rain|strong=\"H4306\"* that|strong=\"H5971\"* day|strong=\"H3117\"*. Then|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* greatly|strong=\"H3966\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said to|strong=\"H4191\"* Samuel|strong=\"H8050\"*, “Pray|strong=\"H6419\"* for|strong=\"H3588\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* not|strong=\"H3254\"* die|strong=\"H4191\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* added|strong=\"H3254\"* to|strong=\"H4191\"* all|strong=\"H3605\"* our|strong=\"H3068\"* sins|strong=\"H2403\"* this|strong=\"H3588\"* evil|strong=\"H7451\"*, to|strong=\"H4191\"* ask|strong=\"H7592\"* for|strong=\"H3588\"* a|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 20, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* indeed|strong=\"H6213\"* done|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"*; yet|strong=\"H3068\"* don’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, but|strong=\"H5971\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 21, + "text": "Don’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5493\"* go|strong=\"H5493\"* after|strong=\"H3588\"* vain|strong=\"H8414\"* things|strong=\"H8414\"* which|strong=\"H1992\"* can|strong=\"H3808\"*’t profit|strong=\"H3276\"* or|strong=\"H3808\"* deliver|strong=\"H5337\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* vain|strong=\"H8414\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* forsake|strong=\"H5203\"* his|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* his|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*’s sake|strong=\"H5668\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* pleased|strong=\"H2974\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"* for|strong=\"H3588\"* himself|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "Moreover|strong=\"H1571\"*, as|strong=\"H1571\"* for|strong=\"H1157\"* me|strong=\"H1157\"*, far|strong=\"H2486\"* be|strong=\"H3068\"* it|strong=\"H2486\"* from|strong=\"H3068\"* me|strong=\"H1157\"* that|strong=\"H3068\"* I|strong=\"H1571\"* should|strong=\"H3068\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* ceasing|strong=\"H2308\"* to|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H1157\"* you|strong=\"H3384\"*; but|strong=\"H1571\"* I|strong=\"H1571\"* will|strong=\"H3068\"* instruct|strong=\"H3384\"* you|strong=\"H3384\"* in|strong=\"H3068\"* the|strong=\"H3068\"* good|strong=\"H2896\"* and|strong=\"H3068\"* the|strong=\"H3068\"* right|strong=\"H3477\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 24, + "text": "Only|strong=\"H3588\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H7200\"* in|strong=\"H3068\"* truth with|strong=\"H5973\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* consider|strong=\"H7200\"* what|strong=\"H3372\"* great|strong=\"H1431\"* things|strong=\"H3605\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H1431\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H1571\"* if you|strong=\"H7489\"* keep doing|strong=\"H7489\"* evil|strong=\"H7489\"*, you|strong=\"H7489\"* will|strong=\"H4428\"* be|strong=\"H1571\"* consumed|strong=\"H5595\"*, both|strong=\"H1571\"* you|strong=\"H7489\"* and|strong=\"H4428\"* your|strong=\"H1571\"* king|strong=\"H4428\"*.”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"H7586\"* was|strong=\"H3478\"* thirty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* became|strong=\"H4427\"* king|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forty-two|strong=\"H8147\"* years|strong=\"H8141\"*.+ 13:1 The traditional Hebrew text omits “thirty” and “forty-”. The blanks are filled in here from a few manuscripts of the Septuagint.*" + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* chose for|strong=\"H7971\"* himself three|strong=\"H7969\"* thousand men|strong=\"H5971\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, of|strong=\"H2022\"* which|strong=\"H5971\"* two thousand were|strong=\"H3478\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* in|strong=\"H3478\"* Michmash|strong=\"H4363\"* and|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H7971\"* Mount|strong=\"H2022\"* of|strong=\"H2022\"* Bethel|strong=\"H1008\"*, and|strong=\"H3478\"* one|strong=\"H1961\"* thousand were|strong=\"H3478\"* with|strong=\"H5973\"* Jonathan|strong=\"H3129\"* in|strong=\"H3478\"* Gibeah|strong=\"H1390\"* of|strong=\"H2022\"* Benjamin|strong=\"H1144\"*. He|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* rest|strong=\"H3499\"* of|strong=\"H2022\"* the|strong=\"H7971\"* people|strong=\"H5971\"* to|strong=\"H3478\"* their|strong=\"H7971\"* own|strong=\"H1961\"* tents." + }, + { + "verseNum": 3, + "text": "Jonathan|strong=\"H3129\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* garrison|strong=\"H5333\"* of|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* that|strong=\"H3605\"* was|strong=\"H7586\"* in|strong=\"H8085\"* Geba|strong=\"H1387\"*, and|strong=\"H8085\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* of|strong=\"H3605\"* it|strong=\"H5221\"*. Saul|strong=\"H7586\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, saying, “Let the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* hear|strong=\"H8085\"*!”" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* that|strong=\"H5971\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* garrison|strong=\"H5333\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* that|strong=\"H5971\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* considered|strong=\"H8085\"* an|strong=\"H5221\"* abomination to|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H3478\"* gathered|strong=\"H6430\"* together|strong=\"H6817\"* after|strong=\"H6430\"* Saul|strong=\"H7586\"* to|strong=\"H3478\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Philistines|strong=\"H6430\"* assembled|strong=\"H3478\"* themselves|strong=\"H5921\"* together|strong=\"H5973\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*: thirty|strong=\"H7970\"* thousand chariots|strong=\"H7393\"*, six|strong=\"H8337\"* thousand horsemen|strong=\"H6571\"*, and|strong=\"H3478\"* people|strong=\"H5971\"* as|strong=\"H7230\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H5971\"* is|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*. They|strong=\"H5921\"* came|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* Michmash|strong=\"H4363\"*, eastward|strong=\"H6926\"* of|strong=\"H7230\"* Beth Aven." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* in|strong=\"H3478\"* trouble|strong=\"H6862\"* (for|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H3478\"* distressed|strong=\"H5065\"*), then|strong=\"H3588\"* the|strong=\"H7200\"* people|strong=\"H5971\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"* in|strong=\"H3478\"* caves|strong=\"H4631\"*, in|strong=\"H3478\"* thickets|strong=\"H2337\"*, in|strong=\"H3478\"* rocks|strong=\"H5553\"*, in|strong=\"H3478\"* tombs, and|strong=\"H3478\"* in|strong=\"H3478\"* pits." + }, + { + "verseNum": 7, + "text": "Now some|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* had|strong=\"H7586\"* gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* to|strong=\"H5674\"* the|strong=\"H3605\"* land of|strong=\"H5971\"* Gad|strong=\"H1410\"* and|strong=\"H5971\"* Gilead|strong=\"H1568\"*; but|strong=\"H5971\"* as|strong=\"H5971\"* for|strong=\"H3605\"* Saul|strong=\"H7586\"*, he|strong=\"H3605\"* was|strong=\"H7586\"* yet|strong=\"H5750\"* in|strong=\"H5750\"* Gilgal|strong=\"H1537\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* followed him|strong=\"H3605\"* trembling|strong=\"H2729\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3117\"* stayed|strong=\"H3176\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H3117\"* set|strong=\"H4150\"* by|strong=\"H5921\"* Samuel|strong=\"H8050\"*; but|strong=\"H3808\"* Samuel|strong=\"H8050\"* didn’t come|strong=\"H5971\"* to|strong=\"H5921\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* scattering|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Saul|strong=\"H7586\"* said, “Bring|strong=\"H5927\"* the|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H5927\"* me|strong=\"H5927\"* here|strong=\"H5066\"*, and|strong=\"H7586\"* the|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*.” He offered|strong=\"H5927\"* the|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5927\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"* that|strong=\"H7586\"* as|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3318\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H1288\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, behold|strong=\"H2009\"*, Samuel|strong=\"H8050\"* came|strong=\"H1961\"*; and|strong=\"H7586\"* Saul|strong=\"H7586\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* him|strong=\"H3318\"*, that|strong=\"H7586\"* he|strong=\"H3318\"* might greet|strong=\"H1288\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "Samuel|strong=\"H8050\"* said, “What|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H3588\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H6258\"* I|strong=\"H6258\"* said, ‘Now|strong=\"H6258\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* will|strong=\"H3068\"* come|strong=\"H5927\"* down|strong=\"H3381\"* on|strong=\"H3068\"* me|strong=\"H6440\"* to|strong=\"H3381\"* Gilgal|strong=\"H1537\"*, and|strong=\"H3068\"* I|strong=\"H6258\"* haven’t entreated|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’ I|strong=\"H6258\"* forced myself therefore|strong=\"H6258\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*.”" + }, + { + "verseNum": 13, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5704\"* Saul|strong=\"H7586\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H3478\"* foolishly|strong=\"H5528\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* have|strong=\"H3068\"* established|strong=\"H3559\"* your|strong=\"H3068\"* kingdom|strong=\"H4467\"* on|strong=\"H3068\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* your|strong=\"H3068\"* kingdom|strong=\"H4467\"* will|strong=\"H3068\"* not|strong=\"H3808\"* continue|strong=\"H6965\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sought|strong=\"H1245\"* for|strong=\"H3588\"* himself|strong=\"H3824\"* a|strong=\"H3068\"* man after|strong=\"H5921\"* his|strong=\"H8104\"* own|strong=\"H5971\"* heart|strong=\"H3824\"*, and|strong=\"H6965\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* appointed|strong=\"H6680\"* him|strong=\"H5921\"* to|strong=\"H3068\"* be|strong=\"H3808\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* his|strong=\"H8104\"* people|strong=\"H5971\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* that|strong=\"H3588\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* arose|strong=\"H6965\"*, and|strong=\"H3967\"* went|strong=\"H5927\"* from|strong=\"H4480\"* Gilgal|strong=\"H1537\"* to|strong=\"H5927\"* Gibeah|strong=\"H1390\"* of|strong=\"H4480\"* Benjamin|strong=\"H1144\"*. Saul|strong=\"H7586\"* counted|strong=\"H6485\"* the|strong=\"H4480\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* present|strong=\"H4672\"* with|strong=\"H5973\"* him|strong=\"H4672\"*, about|strong=\"H4480\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 16, + "text": "Saul|strong=\"H7586\"*, and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* his|strong=\"H7586\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H4672\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* present|strong=\"H4672\"* with|strong=\"H5973\"* them|strong=\"H4672\"*, stayed|strong=\"H3427\"* in|strong=\"H3427\"* Geba|strong=\"H1387\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*; but|strong=\"H5971\"* the|strong=\"H4672\"* Philistines|strong=\"H6430\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* Michmash|strong=\"H4363\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* raiders|strong=\"H7843\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H7218\"* the|strong=\"H3318\"* camp|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* in|strong=\"H1870\"* three|strong=\"H7969\"* companies|strong=\"H7218\"*: one company|strong=\"H4264\"* turned|strong=\"H6437\"* to|strong=\"H3318\"* the|strong=\"H3318\"* way|strong=\"H1870\"* that|strong=\"H6430\"* leads|strong=\"H3318\"* to|strong=\"H3318\"* Ophrah|strong=\"H6084\"*, to|strong=\"H3318\"* the|strong=\"H3318\"* land of|strong=\"H7218\"* Shual|strong=\"H7777\"*;" + }, + { + "verseNum": 18, + "text": "another company|strong=\"H7218\"* turned|strong=\"H6437\"* the|strong=\"H5921\"* way|strong=\"H1870\"* to|strong=\"H5921\"* Beth Horon; and|strong=\"H7218\"* another company|strong=\"H7218\"* turned|strong=\"H6437\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1366\"* the|strong=\"H5921\"* border|strong=\"H1366\"* that|strong=\"H1870\"* looks|strong=\"H8259\"* down|strong=\"H8259\"* on|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1366\"* Zeboim|strong=\"H6650\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3588\"* there|strong=\"H4672\"* was|strong=\"H3478\"* no|strong=\"H3808\"* blacksmith|strong=\"H2796\"* found|strong=\"H4672\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* said, “Lest|strong=\"H6435\"* the|strong=\"H3605\"* Hebrews|strong=\"H5680\"* make|strong=\"H6213\"* themselves|strong=\"H6213\"* swords|strong=\"H2719\"* or|strong=\"H3808\"* spears|strong=\"H2595\"*”;" + }, + { + "verseNum": 20, + "text": "but|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, each|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3381\"* sharpen|strong=\"H3913\"* his|strong=\"H3605\"* own plowshare|strong=\"H4281\"*, mattock|strong=\"H4281\"*, ax, and|strong=\"H3478\"* sickle." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* price was|strong=\"H1961\"* one|strong=\"H6310\"* payim+ 13:21 A payim (or pim) was 2/3 shekel of silver, or 0.26 ounces, or 7.6 grams* each to|strong=\"H1961\"* sharpen|strong=\"H5324\"* mattocks|strong=\"H4281\"*, plowshares|strong=\"H4281\"*, pitchforks, axes|strong=\"H7134\"*, and|strong=\"H6310\"* goads|strong=\"H1861\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H1961\"* it|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* battle|strong=\"H4421\"* that|strong=\"H5971\"* neither|strong=\"H3808\"* sword|strong=\"H2719\"* nor|strong=\"H3808\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H3117\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* any|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H3117\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*; but|strong=\"H3808\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* his|strong=\"H3605\"* son|strong=\"H1121\"* had|strong=\"H1961\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3318\"* garrison|strong=\"H4673\"* of|strong=\"H3318\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* pass|strong=\"H4569\"* of|strong=\"H3318\"* Michmash|strong=\"H4363\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* it|strong=\"H5375\"* happened|strong=\"H1961\"* on|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Jonathan|strong=\"H3129\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* the|strong=\"H5375\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1121\"* bore|strong=\"H5375\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, “Come|strong=\"H1961\"*! Let|strong=\"H5046\"*’s go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*’ garrison|strong=\"H4673\"* that|strong=\"H3117\"* is|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H5375\"* other|strong=\"H5676\"* side|strong=\"H5676\"*.” But|strong=\"H3808\"* he|strong=\"H3117\"* didn’t tell|strong=\"H5046\"* his|strong=\"H5375\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8478\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3427\"* Gibeah|strong=\"H1390\"* under|strong=\"H8478\"* the|strong=\"H8478\"* pomegranate|strong=\"H7416\"* tree|strong=\"H7416\"* which|strong=\"H5971\"* is|strong=\"H7586\"* in|strong=\"H3427\"* Migron|strong=\"H4051\"*; and|strong=\"H3967\"* the|strong=\"H8478\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"* were|strong=\"H5971\"* about|strong=\"H5971\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "including Ahijah the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, Ichabod’s brother, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eli|strong=\"H5941\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* Shiloh|strong=\"H7887\"*, wearing|strong=\"H5375\"* an|strong=\"H5375\"* ephod. The|strong=\"H3588\"* people|strong=\"H5971\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* Jonathan|strong=\"H3129\"* was|strong=\"H3068\"* gone|strong=\"H1980\"*." + }, + { + "verseNum": 4, + "text": "Between|strong=\"H5921\"* the|strong=\"H5921\"* passes|strong=\"H5674\"*, by|strong=\"H5921\"* which|strong=\"H2088\"* Jonathan|strong=\"H3129\"* sought|strong=\"H1245\"* to|strong=\"H5921\"* go|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*’ garrison|strong=\"H4673\"*, there|strong=\"H2088\"* was|strong=\"H8034\"* a|strong=\"H3068\"* rocky|strong=\"H5553\"* crag|strong=\"H8127\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H5676\"* and|strong=\"H6430\"* a|strong=\"H3068\"* rocky|strong=\"H5553\"* crag|strong=\"H8127\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H5676\"*; and|strong=\"H6430\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* one|strong=\"H2088\"* was|strong=\"H8034\"* Bozez, and|strong=\"H6430\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H5921\"* other|strong=\"H2088\"* Seneh|strong=\"H5573\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4136\"* one crag|strong=\"H8127\"* rose|strong=\"H4690\"* up|strong=\"H1387\"* on|strong=\"H4136\"* the|strong=\"H4136\"* north|strong=\"H6828\"* in|strong=\"H8127\"* front|strong=\"H4136\"* of|strong=\"H5045\"* Michmash|strong=\"H4363\"*, and|strong=\"H6828\"* the|strong=\"H4136\"* other on|strong=\"H4136\"* the|strong=\"H4136\"* south|strong=\"H5045\"* in|strong=\"H8127\"* front|strong=\"H4136\"* of|strong=\"H5045\"* Geba|strong=\"H1387\"*." + }, + { + "verseNum": 6, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H3068\"* the|strong=\"H3588\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3068\"* the|strong=\"H3588\"* garrison|strong=\"H4673\"* of|strong=\"H3068\"* these|strong=\"H6213\"* uncircumcised|strong=\"H6189\"*. It|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* work|strong=\"H6213\"* for|strong=\"H3588\"* us|strong=\"H6213\"*, for|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6213\"* restraint|strong=\"H4622\"* on|strong=\"H5674\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* save|strong=\"H3467\"* by|strong=\"H5674\"* many|strong=\"H7227\"* or|strong=\"H4592\"* by|strong=\"H5674\"* few|strong=\"H4592\"*.”" + }, + { + "verseNum": 7, + "text": "His|strong=\"H3605\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “Do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*. Go, and|strong=\"H6213\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* with|strong=\"H5973\"* you|strong=\"H3605\"* according to|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2009\"* Jonathan|strong=\"H3083\"* said, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* will pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1540\"* the|strong=\"H5674\"* men, and|strong=\"H5674\"* we|strong=\"H3068\"* will reveal|strong=\"H1540\"* ourselves to|strong=\"H1540\"* them|strong=\"H5674\"*." + }, + { + "verseNum": 9, + "text": "If they|strong=\"H3808\"* say this|strong=\"H3541\"* to|strong=\"H5704\"* us|strong=\"H8478\"*, ‘Wait|strong=\"H1826\"* until|strong=\"H5704\"* we|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H5704\"* you|strong=\"H5704\"*!’ then|strong=\"H5975\"* we|strong=\"H3068\"* will|strong=\"H3808\"* stand|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5975\"* our|strong=\"H8478\"* place|strong=\"H8478\"* and|strong=\"H5975\"* will|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* them|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* they|strong=\"H3588\"* say this|strong=\"H2088\"*, ‘Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* us|strong=\"H5414\"*!’ then|strong=\"H2088\"* we|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*. This|strong=\"H2088\"* shall|strong=\"H3068\"* be|strong=\"H3027\"* the|strong=\"H5921\"* sign to|strong=\"H3068\"* us|strong=\"H5414\"*.”" + }, + { + "verseNum": 11, + "text": "Both|strong=\"H8147\"* of|strong=\"H4480\"* them|strong=\"H3318\"* revealed|strong=\"H1540\"* themselves|strong=\"H2244\"* to|strong=\"H3318\"* the|strong=\"H4480\"* garrison|strong=\"H4673\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"*; and|strong=\"H8033\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"* said|strong=\"H3318\"*, “Behold|strong=\"H2009\"*, the|strong=\"H4480\"* Hebrews|strong=\"H5680\"* are|strong=\"H6430\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* holes|strong=\"H2356\"* where|strong=\"H8033\"* they|strong=\"H8033\"* had|strong=\"H6430\"* hidden|strong=\"H2244\"* themselves|strong=\"H2244\"*!”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* men|strong=\"H3478\"* of|strong=\"H3068\"* the|strong=\"H3588\"* garrison|strong=\"H4675\"* answered|strong=\"H6030\"* Jonathan|strong=\"H3129\"* and|strong=\"H3478\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H3478\"* said|strong=\"H1697\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* us|strong=\"H5414\"*, and|strong=\"H3478\"* we|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H3045\"* you|strong=\"H3588\"* something|strong=\"H1697\"*!”" + }, + { + "verseNum": 13, + "text": "Jonathan|strong=\"H3129\"* climbed|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H5375\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* on|strong=\"H5921\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* after|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* fell|strong=\"H5307\"* before|strong=\"H6440\"* Jonathan|strong=\"H3129\"*; and|strong=\"H3027\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* killed|strong=\"H4191\"* them|strong=\"H5921\"* after|strong=\"H5921\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "That|strong=\"H3627\"* first|strong=\"H7223\"* slaughter|strong=\"H4347\"*, which|strong=\"H7704\"* Jonathan|strong=\"H3129\"* and|strong=\"H6242\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* made|strong=\"H1961\"*, was|strong=\"H1961\"* about|strong=\"H1961\"* twenty|strong=\"H6242\"* men, within as|strong=\"H1961\"* it|strong=\"H5375\"* were|strong=\"H1961\"* half|strong=\"H2677\"* a|strong=\"H3068\"* furrow|strong=\"H4618\"*’s length in|strong=\"H1961\"* an|strong=\"H1961\"* acre|strong=\"H6776\"* of|strong=\"H3627\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* trembling|strong=\"H2731\"* in|strong=\"H5971\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*, in|strong=\"H5971\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H5971\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; the|strong=\"H3605\"* garrison|strong=\"H4673\"* and|strong=\"H5971\"* the|strong=\"H3605\"* raiders|strong=\"H7843\"* also|strong=\"H1571\"* trembled|strong=\"H2729\"*; and|strong=\"H5971\"* the|strong=\"H3605\"* earth quaked|strong=\"H7264\"*, so|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* an|strong=\"H1961\"* exceedingly great trembling|strong=\"H2731\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7200\"* watchmen|strong=\"H6822\"* of|strong=\"H1995\"* Saul|strong=\"H7586\"* in|strong=\"H3212\"* Gibeah|strong=\"H1390\"* of|strong=\"H1995\"* Benjamin|strong=\"H1144\"* looked|strong=\"H7200\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* multitude|strong=\"H1995\"* melted|strong=\"H4127\"* away|strong=\"H3212\"* and|strong=\"H3212\"* scattered." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Saul|strong=\"H7586\"* said to|strong=\"H1980\"* the|strong=\"H7200\"* people|strong=\"H5971\"* who|strong=\"H4310\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H7200\"*, “Count|strong=\"H5375\"* now|strong=\"H4994\"*, and|strong=\"H1980\"* see|strong=\"H7200\"* who|strong=\"H4310\"* is|strong=\"H4310\"* missing|strong=\"H6485\"* from|strong=\"H1980\"* us|strong=\"H4994\"*.” When|strong=\"H7200\"* they|strong=\"H5971\"* had|strong=\"H7586\"* counted|strong=\"H6485\"*, behold|strong=\"H2009\"*, Jonathan|strong=\"H3129\"* and|strong=\"H1980\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* were|strong=\"H5971\"* not|strong=\"H7200\"* there|strong=\"H2009\"*." + }, + { + "verseNum": 18, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3478\"* Ahijah, “Bring|strong=\"H5066\"* God’s ark here|strong=\"H5066\"*.” For|strong=\"H3588\"* God’s ark was|strong=\"H1961\"* with|strong=\"H3117\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "While|strong=\"H5704\"* Saul|strong=\"H7586\"* talked|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5704\"* priest|strong=\"H3548\"*, the|strong=\"H5704\"* tumult|strong=\"H1995\"* that|strong=\"H3548\"* was|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H3027\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* on|strong=\"H1980\"* and|strong=\"H1980\"* increased|strong=\"H7227\"*; and|strong=\"H1980\"* Saul|strong=\"H7586\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5704\"* priest|strong=\"H3548\"*, “Withdraw your|strong=\"H1961\"* hand|strong=\"H3027\"*!”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* and|strong=\"H1419\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* him|strong=\"H3605\"* were|strong=\"H1961\"* gathered|strong=\"H2199\"* together|strong=\"H2199\"*, and|strong=\"H1419\"* came|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*; and|strong=\"H1419\"* behold|strong=\"H2009\"*, they|strong=\"H5704\"* were|strong=\"H1961\"* all|strong=\"H3605\"* striking each|strong=\"H3605\"* other|strong=\"H7453\"* with|strong=\"H5971\"* their|strong=\"H3605\"* swords|strong=\"H2719\"* in|strong=\"H4421\"* very|strong=\"H3966\"* great|strong=\"H1419\"* confusion|strong=\"H4103\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H1961\"* the|strong=\"H5927\"* Hebrews|strong=\"H5680\"* who|strong=\"H3478\"* were|strong=\"H3478\"* with|strong=\"H5973\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* before|strong=\"H5973\"* and|strong=\"H3478\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* them|strong=\"H1992\"* into|strong=\"H5927\"* the|strong=\"H5927\"* camp|strong=\"H4264\"* from|strong=\"H5927\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, even|strong=\"H1571\"* they|strong=\"H1992\"* also|strong=\"H1571\"* turned|strong=\"H3478\"* to|strong=\"H3478\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5927\"* Israelites|strong=\"H3478\"* who|strong=\"H3478\"* were|strong=\"H3478\"* with|strong=\"H5973\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* Jonathan|strong=\"H3129\"*." + }, + { + "verseNum": 22, + "text": "Likewise|strong=\"H1571\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* had|strong=\"H3478\"* hidden|strong=\"H2244\"* themselves|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, when|strong=\"H3588\"* they|strong=\"H1992\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* fled|strong=\"H5127\"*, even|strong=\"H1571\"* they|strong=\"H1992\"* also|strong=\"H1571\"* followed|strong=\"H6430\"* hard|strong=\"H1692\"* after|strong=\"H3588\"* them|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H5674\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Israel|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* the|strong=\"H3068\"* battle|strong=\"H4421\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* by|strong=\"H5674\"* Beth Aven." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* distressed|strong=\"H5065\"* that|strong=\"H5971\"* day|strong=\"H3117\"*; for|strong=\"H5704\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* adjured the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Cursed is|strong=\"H1931\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* eats any|strong=\"H3605\"* food|strong=\"H3899\"* until|strong=\"H5704\"* it|strong=\"H1931\"* is|strong=\"H1931\"* evening|strong=\"H6153\"*, and|strong=\"H3478\"* I|strong=\"H3117\"* am avenged|strong=\"H5358\"* of|strong=\"H3117\"* my|strong=\"H3605\"* enemies.” So|strong=\"H3808\"* none|strong=\"H3808\"* of|strong=\"H3117\"* the|strong=\"H3605\"* people|strong=\"H5971\"* tasted|strong=\"H2938\"* food|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people came|strong=\"H1961\"* into|strong=\"H5921\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*; and|strong=\"H6440\"* there|strong=\"H1961\"* was|strong=\"H1961\"* honey|strong=\"H1706\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3588\"* come|strong=\"H5971\"* to|strong=\"H3027\"* the|strong=\"H3588\"* forest|strong=\"H3293\"*, behold|strong=\"H2009\"*, honey|strong=\"H1706\"* was|strong=\"H3027\"* dripping, but|strong=\"H3588\"* no|strong=\"H3372\"* one|strong=\"H6310\"* put|strong=\"H5381\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* his|strong=\"H3027\"* mouth|strong=\"H6310\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* the|strong=\"H3588\"* oath|strong=\"H7621\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Jonathan|strong=\"H3129\"* didn’t hear|strong=\"H8085\"* when|strong=\"H7200\"* his|strong=\"H7971\"* father commanded|strong=\"H6310\"* the|strong=\"H8085\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H8085\"* oath|strong=\"H7650\"*. Therefore|strong=\"H7971\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H8085\"* end|strong=\"H7097\"* of|strong=\"H3027\"* the|strong=\"H8085\"* rod|strong=\"H4294\"* that|strong=\"H5971\"* was|strong=\"H3027\"* in|strong=\"H8085\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* dipped|strong=\"H2881\"* it|strong=\"H7725\"* in|strong=\"H8085\"* the|strong=\"H8085\"* honeycomb|strong=\"H3295\"*, and|strong=\"H7971\"* put|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H7725\"* his|strong=\"H7971\"* mouth|strong=\"H6310\"*; and|strong=\"H7971\"* his|strong=\"H7971\"* eyes|strong=\"H5869\"* brightened." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* one of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"* answered|strong=\"H6030\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*, “Your|strong=\"H3117\"* father directly commanded the|strong=\"H3117\"* people|strong=\"H5971\"* with|strong=\"H3117\"* an|strong=\"H7650\"* oath|strong=\"H7650\"*, saying, ‘Cursed is|strong=\"H3117\"* the|strong=\"H3117\"* man|strong=\"H6030\"* who|strong=\"H5971\"* eats food|strong=\"H3899\"* today|strong=\"H3117\"*.’” So|strong=\"H7650\"* the|strong=\"H3117\"* people|strong=\"H5971\"* were|strong=\"H5971\"* faint|strong=\"H5774\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H2088\"* Jonathan|strong=\"H3129\"* said, “My|strong=\"H7200\"* father has|strong=\"H3588\"* troubled|strong=\"H5916\"* the|strong=\"H7200\"* land. Please|strong=\"H4994\"* look|strong=\"H7200\"* how|strong=\"H3588\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* have|strong=\"H5869\"* brightened because|strong=\"H3588\"* I|strong=\"H3588\"* tasted|strong=\"H2938\"* a|strong=\"H3068\"* little|strong=\"H4592\"* of|strong=\"H5869\"* this|strong=\"H2088\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 30, + "text": "How|strong=\"H3588\"* much|strong=\"H7235\"* more|strong=\"H7235\"*, if|strong=\"H3588\"* perhaps|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H6430\"* eaten freely today|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3588\"* plunder|strong=\"H7998\"* of|strong=\"H3117\"* their|strong=\"H3588\"* enemies which|strong=\"H5971\"* they|strong=\"H3588\"* found|strong=\"H4672\"*? For|strong=\"H3588\"* now|strong=\"H6258\"* there|strong=\"H4672\"* has|strong=\"H3117\"* been|strong=\"H5971\"* no|strong=\"H3808\"* great|strong=\"H7235\"* slaughter|strong=\"H4347\"* among|strong=\"H4672\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 31, + "text": "They|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* that|strong=\"H5971\"* day|strong=\"H3117\"* from|strong=\"H3117\"* Michmash|strong=\"H4363\"* to|strong=\"H3117\"* Aijalon. The|strong=\"H5221\"* people|strong=\"H5971\"* were|strong=\"H5971\"* very|strong=\"H3966\"* faint|strong=\"H5774\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* pounced on|strong=\"H5921\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, and|strong=\"H1121\"* calves|strong=\"H1121\"*, and|strong=\"H1121\"* killed|strong=\"H7819\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground; and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* ate them|strong=\"H5921\"* with|strong=\"H6213\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 33, + "text": "Then|strong=\"H2009\"* they|strong=\"H3117\"* told|strong=\"H5046\"* Saul|strong=\"H7586\"*, saying, “Behold|strong=\"H2009\"*, the|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H3117\"* sinning|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, in|strong=\"H5921\"* that|strong=\"H5971\"* they|strong=\"H3117\"* eat meat with|strong=\"H3068\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 34, + "text": "Saul|strong=\"H7586\"* said, “Disperse|strong=\"H6327\"* yourselves|strong=\"H3027\"* among|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* tell|strong=\"H3605\"* them|strong=\"H3027\"*, ‘Every|strong=\"H3605\"* man|strong=\"H3605\"* bring|strong=\"H5066\"* me|strong=\"H5066\"* here|strong=\"H2088\"* his|strong=\"H3605\"* ox|strong=\"H7794\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H3605\"* his|strong=\"H3605\"* sheep|strong=\"H7716\"*, and|strong=\"H3068\"* kill|strong=\"H7819\"* them|strong=\"H3027\"* here|strong=\"H2088\"*, and|strong=\"H3068\"* eat; and|strong=\"H3068\"* don’t sin|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* eating meat with|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*.’” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* brought|strong=\"H5066\"* every|strong=\"H3605\"* man|strong=\"H3605\"* his|strong=\"H3605\"* ox|strong=\"H7794\"* with|strong=\"H3068\"* him|strong=\"H3027\"* that|strong=\"H5971\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* killed|strong=\"H7819\"* them|strong=\"H3027\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 35, + "text": "Saul|strong=\"H7586\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. This|strong=\"H3068\"* was|strong=\"H3068\"* the|strong=\"H3068\"* first|strong=\"H2490\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 36, + "text": "Saul|strong=\"H7586\"* said, “Let|strong=\"H3381\"*’s go|strong=\"H3381\"* down|strong=\"H3381\"* after|strong=\"H1242\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* by|strong=\"H1242\"* night|strong=\"H3915\"*, and|strong=\"H3548\"* take|strong=\"H6213\"* plunder among|strong=\"H3808\"* them|strong=\"H6213\"* until|strong=\"H5704\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light. Let|strong=\"H3381\"*’s not|strong=\"H3808\"* leave|strong=\"H7604\"* a|strong=\"H3068\"* man|strong=\"H2896\"* of|strong=\"H5869\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 37, + "text": "Saul|strong=\"H7586\"* asked|strong=\"H7592\"* counsel|strong=\"H7592\"* of|strong=\"H3117\"* God|strong=\"H5414\"*: “Shall|strong=\"H3478\"* I|strong=\"H3117\"* go|strong=\"H3381\"* down|strong=\"H3381\"* after|strong=\"H3117\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3478\"* you|strong=\"H5414\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3381\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*?” But|strong=\"H3808\"* he|strong=\"H1931\"* didn’t answer|strong=\"H6030\"* him|strong=\"H5414\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "Saul|strong=\"H7586\"* said, “Draw|strong=\"H5066\"* near|strong=\"H5066\"* here|strong=\"H1988\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* chiefs|strong=\"H6438\"* of|strong=\"H3117\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3117\"* know|strong=\"H3045\"* and|strong=\"H3117\"* see|strong=\"H7200\"* in|strong=\"H3117\"* whom|strong=\"H5971\"* this|strong=\"H2063\"* sin|strong=\"H2403\"* has|strong=\"H1961\"* been|strong=\"H1961\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H3588\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* saves|strong=\"H3467\"* Israel|strong=\"H3478\"*, though|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Jonathan|strong=\"H3129\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, he|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.” But|strong=\"H3588\"* there|strong=\"H3426\"* was|strong=\"H3068\"* not|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* answered|strong=\"H6030\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 40, + "text": "Then|strong=\"H1961\"* he|strong=\"H6213\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, “You|strong=\"H3605\"* be|strong=\"H1961\"* on|strong=\"H1961\"* one|strong=\"H3605\"* side|strong=\"H5676\"*, and|strong=\"H1121\"* I|strong=\"H1121\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* my|strong=\"H3605\"* son|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* other|strong=\"H5676\"* side|strong=\"H5676\"*.”" + }, + { + "verseNum": 41, + "text": "Therefore|strong=\"H3068\"* Saul|strong=\"H7586\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “Show the|strong=\"H3068\"* right|strong=\"H3478\"*.”" + }, + { + "verseNum": 42, + "text": "Saul|strong=\"H7586\"* said, “Cast|strong=\"H5307\"* lots between me|strong=\"H3920\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* my|strong=\"H7586\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 43, + "text": "Then|strong=\"H6213\"* Saul|strong=\"H7586\"* said to|strong=\"H4191\"* Jonathan|strong=\"H3129\"*, “Tell|strong=\"H5046\"* me|strong=\"H5046\"* what|strong=\"H4100\"* you|strong=\"H6213\"* have|strong=\"H3027\"* done|strong=\"H6213\"*!”" + }, + { + "verseNum": 44, + "text": "Saul|strong=\"H7586\"* said, “God do|strong=\"H6213\"* so|strong=\"H6213\"* and|strong=\"H7586\"* more|strong=\"H3254\"* also|strong=\"H3541\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H6213\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, Jonathan|strong=\"H3129\"*.”" + }, + { + "verseNum": 45, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* said to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Shall|strong=\"H3068\"* Jonathan|strong=\"H3129\"* die|strong=\"H4191\"*, who|strong=\"H5971\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* salvation|strong=\"H3444\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*? Far|strong=\"H2486\"* from|strong=\"H3478\"* it|strong=\"H3588\"*! As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, there|strong=\"H2088\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* one|strong=\"H2088\"* hair|strong=\"H8185\"* of|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H7218\"* fall|strong=\"H5307\"* to|strong=\"H3478\"* the|strong=\"H3588\"* ground, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* with|strong=\"H5973\"* God|strong=\"H3068\"* today|strong=\"H3117\"*!” So|strong=\"H6213\"* the|strong=\"H3588\"* people|strong=\"H5971\"* rescued|strong=\"H6299\"* Jonathan|strong=\"H3129\"*, so|strong=\"H6213\"* he|strong=\"H3588\"* didn’t die|strong=\"H4191\"*." + }, + { + "verseNum": 46, + "text": "Then|strong=\"H1980\"* Saul|strong=\"H7586\"* went|strong=\"H1980\"* up|strong=\"H5927\"* from|strong=\"H5927\"* following|strong=\"H1980\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"*; and|strong=\"H1980\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* went|strong=\"H1980\"* to|strong=\"H1980\"* their|strong=\"H5927\"* own place|strong=\"H4725\"*." + }, + { + "verseNum": 47, + "text": "Now|strong=\"H3478\"* when|strong=\"H1121\"* Saul|strong=\"H7586\"* had|strong=\"H3478\"* taken|strong=\"H3920\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, he|strong=\"H3605\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"*: against|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* Edom, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, and|strong=\"H1121\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*. Wherever|strong=\"H3605\"* he|strong=\"H3605\"* turned|strong=\"H6437\"* himself|strong=\"H6437\"*, he|strong=\"H3605\"* defeated them|strong=\"H5921\"*." + }, + { + "verseNum": 48, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* valiantly|strong=\"H2428\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3478\"* delivered|strong=\"H5337\"* Israel|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H5221\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H6213\"* who|strong=\"H3478\"* plundered|strong=\"H8154\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 49, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* were|strong=\"H1961\"* Jonathan|strong=\"H3129\"*, Ishvi|strong=\"H3440\"*, and|strong=\"H1121\"* Malchishua; and|strong=\"H1121\"* the|strong=\"H1961\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H1961\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* these|strong=\"H8147\"*: the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* firstborn|strong=\"H1067\"* Merab|strong=\"H4764\"*, and|strong=\"H1121\"* the|strong=\"H1961\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H1961\"* younger|strong=\"H6996\"* Michal|strong=\"H4324\"*." + }, + { + "verseNum": 50, + "text": "The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s wife was|strong=\"H8034\"* Ahinoam the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ahimaaz. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H8034\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H7586\"* army|strong=\"H6635\"* was|strong=\"H8034\"* Abner the|strong=\"H8034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, Saul|strong=\"H7586\"*’s uncle|strong=\"H1730\"*." + }, + { + "verseNum": 51, + "text": "Kish|strong=\"H7027\"* was|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, and|strong=\"H1121\"* Ner|strong=\"H5369\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Abner was|strong=\"H7586\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiel." + }, + { + "verseNum": 52, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* severe|strong=\"H2389\"* war|strong=\"H4421\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*; and|strong=\"H1121\"* when|strong=\"H1961\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* any|strong=\"H3605\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* or|strong=\"H3117\"* any|strong=\"H3605\"* valiant|strong=\"H2428\"* man|strong=\"H1368\"*, he|strong=\"H3117\"* took|strong=\"H1961\"* him|strong=\"H5921\"* into|strong=\"H5921\"* his|strong=\"H3605\"* service." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3478\"* anoint|strong=\"H4886\"* you|strong=\"H7971\"* to|strong=\"H3478\"* be|strong=\"H1697\"* king|strong=\"H4428\"* over|strong=\"H5921\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* remember|strong=\"H6485\"* what|strong=\"H6213\"* Amalek|strong=\"H6002\"* did|strong=\"H6213\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*, how|strong=\"H1870\"* he|strong=\"H6213\"* set|strong=\"H7760\"* himself|strong=\"H6213\"* against|strong=\"H5927\"* him|strong=\"H6213\"* on|strong=\"H1870\"* the|strong=\"H3541\"* way|strong=\"H1870\"* when|strong=\"H6213\"* he|strong=\"H6213\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* go|strong=\"H3212\"* and|strong=\"H3212\"* strike|strong=\"H5221\"* Amalek|strong=\"H6002\"*, and|strong=\"H3212\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* all|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3808\"* have|strong=\"H2550\"*, and|strong=\"H3212\"* don’t spare|strong=\"H2550\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* kill|strong=\"H4191\"* both|strong=\"H3605\"* man|strong=\"H4191\"* and|strong=\"H3212\"* woman, infant|strong=\"H3243\"* and|strong=\"H3212\"* nursing|strong=\"H3243\"* baby, ox|strong=\"H7794\"* and|strong=\"H3212\"* sheep|strong=\"H7716\"*, camel|strong=\"H1581\"* and|strong=\"H3212\"* donkey|strong=\"H2543\"*.’”" + }, + { + "verseNum": 4, + "text": "Saul|strong=\"H7586\"* summoned|strong=\"H8085\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3967\"* counted|strong=\"H6485\"* them|strong=\"H6485\"* in|strong=\"H8085\"* Telaim|strong=\"H2923\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand men|strong=\"H5971\"* of|strong=\"H5971\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "Saul|strong=\"H7586\"* came|strong=\"H7586\"* to|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* of|strong=\"H5892\"* Amalek|strong=\"H6002\"*, and|strong=\"H5892\"* set an|strong=\"H5892\"* ambush in|strong=\"H5892\"* the|strong=\"H5704\"* valley|strong=\"H5158\"*." + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3381\"* the|strong=\"H3605\"* Kenites|strong=\"H7017\"*, “Go|strong=\"H3212\"*, depart|strong=\"H5493\"*, go|strong=\"H3212\"* down|strong=\"H3381\"* from|strong=\"H5493\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"*, lest|strong=\"H6435\"* I|strong=\"H4714\"* destroy|strong=\"H6213\"* you|strong=\"H3605\"* with|strong=\"H5973\"* them|strong=\"H6213\"*; for|strong=\"H6213\"* you|strong=\"H3605\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H3381\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H6213\"* they|strong=\"H6213\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*.” So|strong=\"H6213\"* the|strong=\"H3605\"* Kenites|strong=\"H7017\"* departed|strong=\"H3212\"* from|strong=\"H5493\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Amalekites|strong=\"H6002\"*, from|strong=\"H6440\"* Havilah|strong=\"H2341\"* as|strong=\"H6440\"* you|strong=\"H6440\"* go to|strong=\"H5921\"* Shur|strong=\"H7793\"*, which is|strong=\"H6440\"* before|strong=\"H6440\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* took|strong=\"H8610\"* Agag the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* alive|strong=\"H2416\"*, and|strong=\"H4428\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* Saul|strong=\"H7586\"* and|strong=\"H5971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* spared|strong=\"H2550\"* Agag and|strong=\"H5971\"* the|strong=\"H3605\"* best|strong=\"H4315\"* of|strong=\"H5971\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* cattle|strong=\"H1241\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* fat calves|strong=\"H1241\"*, of|strong=\"H5971\"* the|strong=\"H3605\"* lambs|strong=\"H3733\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H7586\"* good|strong=\"H2896\"*, and|strong=\"H5971\"* were|strong=\"H5971\"* not|strong=\"H3808\"* willing to|strong=\"H5921\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* everything|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H7586\"* vile|strong=\"H5240\"* and|strong=\"H5971\"* refuse|strong=\"H3808\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* destroyed|strong=\"H2763\"* utterly|strong=\"H2763\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 11, + "text": "“It|strong=\"H3588\"* grieves me|strong=\"H7725\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* Saul|strong=\"H7586\"* to|strong=\"H7725\"* be|strong=\"H3808\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* following me|strong=\"H7725\"*, and|strong=\"H6965\"* has|strong=\"H3068\"* not|strong=\"H3808\"* performed|strong=\"H6965\"* my|strong=\"H3605\"* commandments|strong=\"H1697\"*.” Samuel|strong=\"H8050\"* was|strong=\"H3068\"* angry|strong=\"H2734\"*; and|strong=\"H6965\"* he|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 12, + "text": "Samuel|strong=\"H8050\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* to|strong=\"H3381\"* meet|strong=\"H7122\"* Saul|strong=\"H7586\"* in|strong=\"H3027\"* the|strong=\"H5674\"* morning|strong=\"H1242\"*; and|strong=\"H3027\"* Samuel|strong=\"H8050\"* was|strong=\"H7586\"* told|strong=\"H5046\"*, saying, “Saul|strong=\"H7586\"* came|strong=\"H3381\"* to|strong=\"H3381\"* Carmel|strong=\"H3760\"*, and|strong=\"H3027\"* behold|strong=\"H2009\"*, he|strong=\"H3027\"* set|strong=\"H5324\"* up|strong=\"H5324\"* a|strong=\"H3068\"* monument|strong=\"H3027\"* for|strong=\"H3027\"* himself|strong=\"H3027\"*, turned|strong=\"H5437\"*, passed|strong=\"H5674\"* on|strong=\"H5674\"*, and|strong=\"H3027\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gilgal|strong=\"H1537\"*.”" + }, + { + "verseNum": 13, + "text": "Samuel|strong=\"H8050\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Saul|strong=\"H7586\"*; and|strong=\"H6965\"* Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3068\"* him|strong=\"H1288\"*, “You|strong=\"H1288\"* are|strong=\"H1697\"* blessed|strong=\"H1288\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! I|strong=\"H1697\"* have|strong=\"H3068\"* performed|strong=\"H6965\"* the|strong=\"H3068\"* commandment|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “Then|strong=\"H2088\"* what|strong=\"H4100\"* does|strong=\"H4100\"* this|strong=\"H2088\"* bleating|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* sheep|strong=\"H6629\"* in|strong=\"H8085\"* my|strong=\"H8085\"* ears and|strong=\"H6963\"* the|strong=\"H8085\"* lowing|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* cattle|strong=\"H1241\"* which|strong=\"H4100\"* I|strong=\"H2088\"* hear|strong=\"H8085\"* mean?”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"* said, “They|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* Amalekites|strong=\"H6003\"*; for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* spared|strong=\"H2550\"* the|strong=\"H5921\"* best|strong=\"H4315\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* cattle|strong=\"H1241\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. We|strong=\"H2763\"* have|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* the|strong=\"H5921\"* rest|strong=\"H3498\"*.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* Samuel|strong=\"H8050\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"*, “Stay|strong=\"H7503\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* tell|strong=\"H5046\"* you|strong=\"H5046\"* what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5046\"* last night|strong=\"H3915\"*.”" + }, + { + "verseNum": 17, + "text": "Samuel|strong=\"H8050\"* said, “Though you|strong=\"H5921\"* were|strong=\"H3478\"* little|strong=\"H6996\"* in|strong=\"H5921\"* your|strong=\"H3068\"* own|strong=\"H5869\"* sight|strong=\"H5869\"*, weren’t you|strong=\"H5921\"* made|strong=\"H3478\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*? Yahweh|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, and|strong=\"H3068\"* said, ‘Go|strong=\"H3212\"*, and|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* the|strong=\"H3068\"* sinners|strong=\"H2400\"* the|strong=\"H3068\"* Amalekites|strong=\"H6002\"*, and|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H7971\"* until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H3068\"* consumed|strong=\"H3615\"*.’" + }, + { + "verseNum": 19, + "text": "Why|strong=\"H4100\"* then|strong=\"H6213\"* didn’t you|strong=\"H6213\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* took the|strong=\"H8085\"* plunder|strong=\"H7998\"*, and|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*?”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"* to|strong=\"H3212\"* Samuel|strong=\"H8050\"*, “But|strong=\"H8085\"* I|strong=\"H8085\"* have|strong=\"H3068\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* gone|strong=\"H3212\"* the|strong=\"H8085\"* way|strong=\"H1870\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* brought|strong=\"H3212\"* Agag the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Amalek|strong=\"H6002\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* the|strong=\"H8085\"* Amalekites|strong=\"H6002\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* people|strong=\"H5971\"* took|strong=\"H3947\"* of|strong=\"H3068\"* the|strong=\"H3947\"* plunder|strong=\"H7998\"*, sheep|strong=\"H6629\"* and|strong=\"H3068\"* cattle|strong=\"H1241\"*, the|strong=\"H3947\"* best of|strong=\"H3068\"* the|strong=\"H3947\"* devoted|strong=\"H2764\"* things|strong=\"H2764\"*, to|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H3068\"* Gilgal|strong=\"H1537\"*.”" + }, + { + "verseNum": 22, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* great|strong=\"H2896\"* delight|strong=\"H2656\"* in|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sacrifices|strong=\"H2077\"*, as|strong=\"H3068\"* in|strong=\"H3068\"* obeying|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*? Behold|strong=\"H2009\"*, to|strong=\"H3068\"* obey|strong=\"H8085\"* is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H2896\"* sacrifice|strong=\"H2077\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* listen|strong=\"H8085\"* than|strong=\"H2896\"* the|strong=\"H8085\"* fat|strong=\"H2459\"* of|strong=\"H3068\"* rams." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* rebellion|strong=\"H4805\"* is|strong=\"H3068\"* as|strong=\"H1697\"* the|strong=\"H3588\"* sin|strong=\"H2403\"* of|strong=\"H4428\"* witchcraft|strong=\"H7081\"*, and|strong=\"H3068\"* stubbornness|strong=\"H6484\"* is|strong=\"H3068\"* as|strong=\"H1697\"* idolatry|strong=\"H8655\"* and|strong=\"H3068\"* teraphim|strong=\"H8655\"*.+ 15:23 teraphim were household idols that may have been associated with inheritance rights to the household property.* Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* also|strong=\"H3068\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"* from|strong=\"H3068\"* being|strong=\"H3068\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 24, + "text": "Saul|strong=\"H7586\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* transgressed|strong=\"H5674\"* the|strong=\"H8085\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* feared|strong=\"H3372\"* the|strong=\"H8085\"* people|strong=\"H5971\"* and|strong=\"H3068\"* obeyed|strong=\"H8085\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* pardon|strong=\"H5375\"* my|strong=\"H3068\"* sin|strong=\"H2403\"*, and|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, that|strong=\"H3068\"* I|strong=\"H6258\"* may|strong=\"H4994\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 26, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H1697\"* to|strong=\"H7725\"* Saul|strong=\"H7586\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* rejected|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* you|strong=\"H3588\"* from|strong=\"H7725\"* being|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 27, + "text": "As|strong=\"H2388\"* Samuel|strong=\"H8050\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3212\"* go|strong=\"H3212\"* away|strong=\"H3212\"*, Saul|strong=\"H2388\"* grabbed|strong=\"H2388\"* the|strong=\"H2388\"* skirt|strong=\"H3671\"* of|strong=\"H3671\"* his|strong=\"H7167\"* robe|strong=\"H4598\"*, and|strong=\"H3212\"* it|strong=\"H5437\"* tore|strong=\"H7167\"*." + }, + { + "verseNum": 28, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H3478\"* him|strong=\"H5414\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* torn|strong=\"H7167\"* the|strong=\"H5921\"* kingdom|strong=\"H4468\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* you|strong=\"H5414\"* today|strong=\"H3117\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* a|strong=\"H3068\"* neighbor|strong=\"H7453\"* of|strong=\"H3068\"* yours|strong=\"H5414\"* who|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H4480\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "Also|strong=\"H1571\"* the|strong=\"H3588\"* Strength|strong=\"H5331\"* of|strong=\"H3808\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* lie|strong=\"H8266\"* nor|strong=\"H3808\"* repent|strong=\"H5162\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man, that|strong=\"H3588\"* he|strong=\"H1931\"* should|strong=\"H3588\"* repent|strong=\"H5162\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H6258\"* he|strong=\"H3068\"* said, “I|strong=\"H6258\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"*; yet|strong=\"H3068\"* please|strong=\"H4994\"* honor|strong=\"H3513\"* me|strong=\"H4994\"* now|strong=\"H6258\"* before|strong=\"H5048\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3478\"* before|strong=\"H5048\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* come|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, that|strong=\"H5971\"* I|strong=\"H6258\"* may|strong=\"H4994\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 31, + "text": "So|strong=\"H7725\"* Samuel|strong=\"H8050\"* went|strong=\"H3068\"* back|strong=\"H7725\"* with|strong=\"H3068\"* Saul|strong=\"H7586\"*; and|strong=\"H3068\"* Saul|strong=\"H7586\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "Then|strong=\"H4428\"* Samuel|strong=\"H8050\"* said, “Bring|strong=\"H5066\"* Agag the|strong=\"H5493\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5493\"* Amalekites|strong=\"H6002\"* here|strong=\"H5066\"* to|strong=\"H3212\"* me|strong=\"H5493\"*!”" + }, + { + "verseNum": 33, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H3651\"*, “As|strong=\"H3651\"* your|strong=\"H3068\"* sword|strong=\"H2719\"* has|strong=\"H3068\"* made|strong=\"H3068\"* women childless|strong=\"H7921\"*, so|strong=\"H3651\"* your|strong=\"H3068\"* mother will|strong=\"H3068\"* be|strong=\"H3068\"* childless|strong=\"H7921\"* among|strong=\"H2719\"* women!” Then|strong=\"H3651\"* Samuel|strong=\"H8050\"* cut Agag in|strong=\"H3068\"* pieces|strong=\"H8158\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H5927\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"*; and|strong=\"H1004\"* Saul|strong=\"H7586\"* went|strong=\"H3212\"* up|strong=\"H5927\"* to|strong=\"H3212\"* his|strong=\"H7586\"* house|strong=\"H1004\"* to|strong=\"H3212\"* Gibeah|strong=\"H1390\"* of|strong=\"H1004\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 35, + "text": "Samuel|strong=\"H8050\"* came|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H3254\"* to|strong=\"H5704\"* see|strong=\"H7200\"* Saul|strong=\"H7586\"* until|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, but|strong=\"H3588\"* Samuel|strong=\"H8050\"* mourned for|strong=\"H3588\"* Saul|strong=\"H7586\"*. Yahweh|strong=\"H3068\"* grieved that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* made|strong=\"H4427\"* Saul|strong=\"H7586\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H5704\"* Samuel|strong=\"H8050\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3588\"* mourn|strong=\"H5921\"* for|strong=\"H3588\"* Saul|strong=\"H7586\"*, since|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* him|strong=\"H5921\"* from|strong=\"H5921\"* being|strong=\"H4427\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*? Fill|strong=\"H4390\"* your|strong=\"H3068\"* horn|strong=\"H7161\"* with|strong=\"H4390\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H5704\"* Jesse|strong=\"H3448\"* the|strong=\"H5921\"* Bethlehemite|strong=\"H1022\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* provided|strong=\"H7200\"* a|strong=\"H3068\"* king|strong=\"H4428\"* for|strong=\"H3588\"* myself among|strong=\"H5921\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 2, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H8085\"*, “How|strong=\"H8085\"* can|strong=\"H3947\"* I|strong=\"H8085\"* go|strong=\"H3212\"*? If Saul|strong=\"H7586\"* hears|strong=\"H8085\"* it|strong=\"H3947\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H3947\"*.”" + }, + { + "verseNum": 3, + "text": "Call|strong=\"H7121\"* Jesse|strong=\"H3448\"* to|strong=\"H6213\"* the|strong=\"H6213\"* sacrifice|strong=\"H2077\"*, and|strong=\"H6213\"* I|strong=\"H3045\"* will|strong=\"H6213\"* show|strong=\"H6213\"* you|strong=\"H6213\"* what|strong=\"H3045\"* you|strong=\"H6213\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*. You|strong=\"H6213\"* shall|strong=\"H6213\"* anoint|strong=\"H4886\"* to|strong=\"H6213\"* me|strong=\"H7121\"* him|strong=\"H7121\"* whom|strong=\"H7121\"* I|strong=\"H3045\"* name|strong=\"H7121\"* to|strong=\"H6213\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Samuel|strong=\"H8050\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"*, and|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Bethlehem|strong=\"H1035\"*. The|strong=\"H6213\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H6213\"* city|strong=\"H5892\"* came|strong=\"H3068\"* to|strong=\"H1696\"* meet|strong=\"H7122\"* him|strong=\"H6213\"* trembling|strong=\"H2729\"*, and|strong=\"H3068\"* said|strong=\"H1696\"*, “Do|strong=\"H6213\"* you|strong=\"H6213\"* come|strong=\"H7122\"* peaceably|strong=\"H7965\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* said|strong=\"H7121\"*, “Peaceably|strong=\"H7965\"*; I|strong=\"H1121\"* have|strong=\"H3068\"* come to|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, and|strong=\"H1121\"* come with|strong=\"H3068\"* me|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"*.” He|strong=\"H3068\"* sanctified|strong=\"H6942\"* Jesse|strong=\"H3448\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* called|strong=\"H7121\"* them|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, he|strong=\"H3068\"* looked|strong=\"H7200\"* at|strong=\"H3068\"* Eliab, and|strong=\"H3068\"* said, “Surely|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"* is|strong=\"H3068\"* before|strong=\"H5048\"* him|strong=\"H7200\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Samuel|strong=\"H8050\"*, “Don’t look|strong=\"H7200\"* on|strong=\"H7200\"* his|strong=\"H3068\"* face|strong=\"H5869\"*, or|strong=\"H3808\"* on|strong=\"H7200\"* the|strong=\"H7200\"* height|strong=\"H6967\"* of|strong=\"H3068\"* his|strong=\"H3068\"* stature|strong=\"H6967\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* rejected|strong=\"H3988\"* him|strong=\"H7200\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* don’t see|strong=\"H7200\"* as|strong=\"H3824\"* man|strong=\"H7200\"* sees|strong=\"H7200\"*. For|strong=\"H3588\"* man|strong=\"H7200\"* looks|strong=\"H7200\"* at|strong=\"H3068\"* the|strong=\"H7200\"* outward|strong=\"H5869\"* appearance|strong=\"H4758\"*, but|strong=\"H3588\"* Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* at|strong=\"H3068\"* the|strong=\"H7200\"* heart|strong=\"H3824\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* Jesse|strong=\"H3448\"* called|strong=\"H7121\"* Abinadab, and|strong=\"H3068\"* made|strong=\"H3448\"* him|strong=\"H6440\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"*. He|strong=\"H3068\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen this|strong=\"H2088\"* one|strong=\"H2088\"*, either|strong=\"H1571\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2088\"* Jesse|strong=\"H3448\"* made|strong=\"H3448\"* Shammah|strong=\"H8048\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*. He|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen this|strong=\"H2088\"* one|strong=\"H2088\"*, either|strong=\"H1571\"*.”" + }, + { + "verseNum": 10, + "text": "Jesse|strong=\"H3448\"* made|strong=\"H3448\"* seven|strong=\"H7651\"* of|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"*. Samuel|strong=\"H8050\"* said to|strong=\"H3068\"* Jesse|strong=\"H3448\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* chosen these|strong=\"H6440\"*.”" + }, + { + "verseNum": 11, + "text": "Samuel|strong=\"H8050\"* said to|strong=\"H5704\"* Jesse|strong=\"H3448\"*, “Are|strong=\"H5288\"* all|strong=\"H8552\"* your|strong=\"H3947\"* children|strong=\"H5288\"* here|strong=\"H6311\"*?”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* sent|strong=\"H7971\"*, and|strong=\"H6965\"* brought|strong=\"H5869\"* him|strong=\"H7971\"* in|strong=\"H3068\"*. Now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* ruddy, with|strong=\"H5973\"* a|strong=\"H3068\"* handsome|strong=\"H3303\"* face|strong=\"H5869\"* and|strong=\"H6965\"* good|strong=\"H2896\"* appearance|strong=\"H5869\"*. Yahweh|strong=\"H3068\"* said, “Arise|strong=\"H6965\"*! Anoint|strong=\"H4886\"* him|strong=\"H7971\"*, for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H3068\"* he|strong=\"H1931\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6965\"* Samuel|strong=\"H8050\"* took|strong=\"H3947\"* the|strong=\"H3947\"* horn|strong=\"H7161\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* and|strong=\"H6965\"* anointed|strong=\"H4886\"* him|strong=\"H3947\"* in|strong=\"H3068\"* the|strong=\"H3947\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* his|strong=\"H3068\"* brothers. Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H3068\"* mightily|strong=\"H6743\"* on|strong=\"H3117\"* David|strong=\"H1732\"* from|strong=\"H3947\"* that|strong=\"H3117\"* day|strong=\"H3117\"* forward|strong=\"H4605\"*. So|strong=\"H3947\"* Samuel|strong=\"H8050\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 14, + "text": "Now Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* an|strong=\"H3068\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H5493\"* Yahweh|strong=\"H3068\"* troubled|strong=\"H7451\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"* said to|strong=\"H5650\"* him, “See|strong=\"H2009\"* now|strong=\"H4994\"*, an|strong=\"H7307\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H7307\"* God troubles|strong=\"H7451\"* you|strong=\"H4994\"*." + }, + { + "verseNum": 16, + "text": "Let|strong=\"H4994\"* our|strong=\"H5921\"* lord now|strong=\"H4994\"* command|strong=\"H3027\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* are|strong=\"H3027\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H3027\"* you|strong=\"H6440\"* to|strong=\"H1961\"* seek|strong=\"H1245\"* out|strong=\"H1245\"* a|strong=\"H3068\"* man|strong=\"H7451\"* who|strong=\"H5650\"* is|strong=\"H3027\"* a|strong=\"H3068\"* skillful|strong=\"H3045\"* player|strong=\"H5059\"* on|strong=\"H5921\"* the|strong=\"H6440\"* harp|strong=\"H3658\"*. Then|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H6440\"* God|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H6440\"*, he|strong=\"H3027\"* will|strong=\"H1961\"* play|strong=\"H5059\"* with|strong=\"H5921\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* you|strong=\"H6440\"* will|strong=\"H1961\"* be|strong=\"H1961\"* well|strong=\"H2895\"*.”" + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H5650\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*, “Provide|strong=\"H7200\"* me|strong=\"H4994\"* now|strong=\"H4994\"* a|strong=\"H3068\"* man|strong=\"H7200\"* who|strong=\"H5650\"* can|strong=\"H5650\"* play|strong=\"H5059\"* well|strong=\"H3190\"*, and|strong=\"H5650\"* bring him|strong=\"H7200\"* to|strong=\"H5650\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7200\"* young|strong=\"H5288\"* men|strong=\"H1368\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* the|strong=\"H7200\"* Bethlehemite|strong=\"H1022\"* who|strong=\"H3068\"* is|strong=\"H3068\"* skillful|strong=\"H3045\"* in|strong=\"H3068\"* playing|strong=\"H5059\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H5288\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, prudent in|strong=\"H3068\"* speech|strong=\"H1697\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* handsome|strong=\"H8389\"* person|strong=\"H3045\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H7200\"*.”" + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H1732\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Jesse|strong=\"H3448\"*, and|strong=\"H1121\"* said, “Send|strong=\"H7971\"* me|strong=\"H7971\"* David|strong=\"H1732\"* your|strong=\"H7971\"* son|strong=\"H1121\"*, who|strong=\"H1121\"* is|strong=\"H1121\"* with|strong=\"H1732\"* the|strong=\"H7971\"* sheep|strong=\"H6629\"*.”" + }, + { + "verseNum": 20, + "text": "Jesse|strong=\"H3448\"* took|strong=\"H3947\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* loaded with|strong=\"H3899\"* bread|strong=\"H3899\"*, a|strong=\"H3068\"* container of|strong=\"H1121\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* goat|strong=\"H5795\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* by|strong=\"H3027\"* David|strong=\"H1732\"* his|strong=\"H7971\"* son|strong=\"H1121\"* to|strong=\"H7971\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1732\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. He|strong=\"H1732\"* loved him|strong=\"H6440\"* greatly|strong=\"H3966\"*; and|strong=\"H1732\"* he|strong=\"H1732\"* became|strong=\"H1961\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*." + }, + { + "verseNum": 22, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Jesse|strong=\"H3448\"*, saying, “Please|strong=\"H4994\"* let|strong=\"H7971\"* David|strong=\"H1732\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H7586\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* my|strong=\"H1732\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* from|strong=\"H5493\"* God|strong=\"H3027\"* was|strong=\"H1961\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"*, David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* harp|strong=\"H3658\"* and|strong=\"H3027\"* played|strong=\"H5059\"* with|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*; so|strong=\"H3947\"* Saul|strong=\"H7586\"* was|strong=\"H1961\"* refreshed|strong=\"H7304\"* and|strong=\"H3027\"* was|strong=\"H1961\"* well|strong=\"H2895\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Now the|strong=\"H3063\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6430\"* together their armies|strong=\"H4264\"* to|strong=\"H3063\"* battle|strong=\"H4421\"*; and|strong=\"H3063\"* they|strong=\"H3063\"* were|strong=\"H6430\"* gathered|strong=\"H6430\"* together at|strong=\"H2583\"* Socoh|strong=\"H7755\"*, which|strong=\"H3063\"* belongs to|strong=\"H3063\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* encamped|strong=\"H2583\"* between|strong=\"H4421\"* Socoh|strong=\"H7755\"* and|strong=\"H3063\"* Azekah|strong=\"H5825\"* in|strong=\"H2583\"* Ephesdammim." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* and|strong=\"H3478\"* the|strong=\"H7122\"* men|strong=\"H3478\"* of|strong=\"H6010\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H6430\"* together, and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H7122\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Elah, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H7122\"* battle|strong=\"H4421\"* in|strong=\"H2583\"* array|strong=\"H6186\"* against|strong=\"H7122\"* the|strong=\"H7122\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5975\"* Philistines|strong=\"H6430\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H5975\"* mountain|strong=\"H2022\"* on|strong=\"H5975\"* the|strong=\"H5975\"* one|strong=\"H2088\"* side|strong=\"H2088\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H5975\"* mountain|strong=\"H2022\"* on|strong=\"H5975\"* the|strong=\"H5975\"* other|strong=\"H2088\"* side|strong=\"H2088\"*: and|strong=\"H3478\"* there|strong=\"H2088\"* was|strong=\"H3478\"* a|strong=\"H3068\"* valley|strong=\"H1516\"* between them|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* champion out|strong=\"H3318\"* of|strong=\"H8034\"* the|strong=\"H3318\"* camp|strong=\"H4264\"* of|strong=\"H8034\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* named|strong=\"H8034\"* Goliath|strong=\"H1555\"* of|strong=\"H8034\"* Gath|strong=\"H1661\"*, whose|strong=\"H8034\"* height|strong=\"H1363\"* was|strong=\"H8034\"* six|strong=\"H8337\"* cubits and|strong=\"H3318\"* a|strong=\"H3068\"* span|strong=\"H2239\"*+ 17:4 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.) Therefore, Goliath was about 9 feet and 9 inches or 2.97 meters tall.* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* had|strong=\"H1931\"* a|strong=\"H3068\"* helmet|strong=\"H3553\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"* on|strong=\"H5921\"* his|strong=\"H5921\"* head|strong=\"H7218\"*, and|strong=\"H7218\"* he|strong=\"H1931\"* wore|strong=\"H5921\"* a|strong=\"H3068\"* coat|strong=\"H8302\"* of|strong=\"H7218\"* mail|strong=\"H7193\"*; and|strong=\"H7218\"* the|strong=\"H5921\"* weight|strong=\"H4948\"* of|strong=\"H7218\"* the|strong=\"H5921\"* coat|strong=\"H8302\"* was|strong=\"H1931\"* five|strong=\"H2568\"* thousand shekels|strong=\"H8255\"*+ 17:5 A shekel is about 10 grams or about 0.35 ounces, so 5000 shekels is about 50 kilograms or 110 pounds.* of|strong=\"H7218\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* had bronze|strong=\"H5178\"* shin armor on|strong=\"H5921\"* his|strong=\"H5921\"* legs|strong=\"H7272\"* and|strong=\"H5178\"* a|strong=\"H3068\"* bronze|strong=\"H5178\"* javelin|strong=\"H3591\"* between|strong=\"H5921\"* his|strong=\"H5921\"* shoulders|strong=\"H3802\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* staff of|strong=\"H6440\"* his|strong=\"H5375\"* spear|strong=\"H2595\"* was|strong=\"H6440\"* like|strong=\"H1980\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*; and|strong=\"H3967\"* his|strong=\"H5375\"* spear|strong=\"H2595\"*’s head|strong=\"H1270\"* weighed six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"* of|strong=\"H6440\"* iron|strong=\"H1270\"*.+ 17:7 A shekel is about 10 grams or about 0.35 ounces, so 600 shekels is about 6 kilograms or about 13 pounds.* His|strong=\"H5375\"* shield|strong=\"H6793\"* bearer|strong=\"H5375\"* went|strong=\"H1980\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* stood|strong=\"H5975\"* and|strong=\"H3478\"* cried|strong=\"H7121\"* to|strong=\"H3381\"* the|strong=\"H7121\"* armies|strong=\"H4634\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said|strong=\"H7121\"* to|strong=\"H3381\"* them|strong=\"H3381\"*, “Why|strong=\"H4100\"* have|strong=\"H5650\"* you|strong=\"H3808\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* set|strong=\"H5975\"* your|strong=\"H3808\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"*? Am I|strong=\"H5650\"* not|strong=\"H3808\"* a|strong=\"H3068\"* Philistine|strong=\"H6430\"*, and|strong=\"H3478\"* you|strong=\"H3808\"* servants|strong=\"H5650\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"*? Choose|strong=\"H1262\"* a|strong=\"H3068\"* man for|strong=\"H7121\"* yourselves|strong=\"H6186\"*, and|strong=\"H3478\"* let|strong=\"H3381\"* him|strong=\"H7121\"* come|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1961\"* he|strong=\"H3201\"* is|strong=\"H5650\"* able|strong=\"H3201\"* to|strong=\"H3201\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* me|strong=\"H5221\"* and|strong=\"H5650\"* kill|strong=\"H5221\"* me|strong=\"H5221\"*, then|strong=\"H1961\"* will|strong=\"H1961\"* we|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H1961\"* servants|strong=\"H5650\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* I|strong=\"H3201\"* prevail|strong=\"H3201\"* against|strong=\"H3898\"* him|strong=\"H5221\"* and|strong=\"H5650\"* kill|strong=\"H5221\"* him|strong=\"H5221\"*, then|strong=\"H1961\"* you|strong=\"H5221\"* will|strong=\"H1961\"* be|strong=\"H1961\"* our|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H5650\"* serve|strong=\"H5647\"* us|strong=\"H1961\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* Philistine|strong=\"H6430\"* said, “I|strong=\"H3117\"* defy|strong=\"H2778\"* the|strong=\"H5414\"* armies|strong=\"H4634\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* today|strong=\"H3117\"*! Give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* man|strong=\"H2088\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H3478\"* fight|strong=\"H3898\"* together|strong=\"H3162\"*!”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* Saul|strong=\"H7586\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* those|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, they|strong=\"H1697\"* were|strong=\"H3478\"* dismayed|strong=\"H2865\"* and|strong=\"H3478\"* greatly|strong=\"H3966\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H8034\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* that|strong=\"H3117\"* Ephrathite of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"* Judah|strong=\"H3063\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jesse|strong=\"H3448\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* had|strong=\"H1732\"* eight|strong=\"H8083\"* sons|strong=\"H1121\"*. The|strong=\"H3117\"* man|strong=\"H1121\"* was|strong=\"H8034\"* an|strong=\"H2088\"* elderly old|strong=\"H1121\"* man|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1980\"* three|strong=\"H7969\"* oldest|strong=\"H1419\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* had|strong=\"H7586\"* gone|strong=\"H1980\"* after|strong=\"H7992\"* Saul|strong=\"H7586\"* to|strong=\"H1980\"* the|strong=\"H1980\"* battle|strong=\"H4421\"*; and|strong=\"H1121\"* the|strong=\"H1980\"* names|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7586\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H1980\"* battle|strong=\"H4421\"* were|strong=\"H1121\"* Eliab the|strong=\"H1980\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* next|strong=\"H4932\"* to|strong=\"H1980\"* him|strong=\"H1980\"* Abinadab, and|strong=\"H1121\"* the|strong=\"H1980\"* third|strong=\"H7992\"* Shammah|strong=\"H8048\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* the|strong=\"H1732\"* youngest|strong=\"H6996\"*; and|strong=\"H1980\"* the|strong=\"H1732\"* three|strong=\"H7969\"* oldest|strong=\"H1419\"* followed|strong=\"H1980\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H5921\"* David|strong=\"H1732\"* went|strong=\"H1980\"* back|strong=\"H7725\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* from|strong=\"H7725\"* Saul|strong=\"H7586\"* to|strong=\"H1980\"* feed|strong=\"H7462\"* his|strong=\"H1732\"* father’s sheep|strong=\"H6629\"* at|strong=\"H5921\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3117\"* Philistine|strong=\"H6430\"* came|strong=\"H5066\"* near|strong=\"H5066\"* morning|strong=\"H7925\"* and|strong=\"H3117\"* evening|strong=\"H6150\"*, and|strong=\"H3117\"* presented|strong=\"H3320\"* himself|strong=\"H3320\"* forty days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "Jesse|strong=\"H3448\"* said to|strong=\"H1121\"* David|strong=\"H1732\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, “Now|strong=\"H4994\"* take|strong=\"H3947\"* for|strong=\"H1121\"* your|strong=\"H3947\"* brothers|strong=\"H1121\"* an|strong=\"H3947\"* ephah+ 17:17 1 ephah is about 22 liters or about 2/3 of a bushel* of|strong=\"H1121\"* this|strong=\"H2088\"* parched|strong=\"H7039\"* grain|strong=\"H7039\"* and|strong=\"H1121\"* these|strong=\"H2088\"* ten|strong=\"H6235\"* loaves|strong=\"H3899\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* them|strong=\"H3947\"* quickly|strong=\"H7323\"* to|strong=\"H1121\"* the|strong=\"H3947\"* camp|strong=\"H4264\"* to|strong=\"H1121\"* your|strong=\"H3947\"* brothers|strong=\"H1121\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H2461\"* bring|strong=\"H3947\"* these|strong=\"H3947\"* ten|strong=\"H6235\"* cheeses|strong=\"H2461\"* to|strong=\"H3947\"* the|strong=\"H3947\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* their|strong=\"H3947\"* thousand; and|strong=\"H2461\"* see|strong=\"H6485\"* how|strong=\"H7965\"* your|strong=\"H3947\"* brothers are|strong=\"H8269\"* doing, and|strong=\"H2461\"* bring|strong=\"H3947\"* back|strong=\"H3947\"* news|strong=\"H6161\"*.”" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3478\"* Saul|strong=\"H7586\"*, and|strong=\"H3478\"* they|strong=\"H1992\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6010\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Elah, fighting|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* rose|strong=\"H7925\"* up|strong=\"H5375\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* and|strong=\"H3212\"* left|strong=\"H3318\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* with|strong=\"H5921\"* a|strong=\"H3068\"* keeper|strong=\"H8104\"*, and|strong=\"H3212\"* took|strong=\"H5375\"* the|strong=\"H5921\"* provisions and|strong=\"H3212\"* went|strong=\"H3212\"*, as|strong=\"H3318\"* Jesse|strong=\"H3448\"* had|strong=\"H1732\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"*. He|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* place|strong=\"H4634\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wagons as|strong=\"H3318\"* the|strong=\"H5921\"* army|strong=\"H2428\"* which|strong=\"H2428\"* was|strong=\"H1732\"* going|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* fight|strong=\"H4421\"* shouted|strong=\"H7321\"* for|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H7122\"* Philistines|strong=\"H6430\"* put|strong=\"H6186\"* the|strong=\"H7122\"* battle|strong=\"H4634\"* in|strong=\"H3478\"* array|strong=\"H6186\"*, army|strong=\"H4634\"* against|strong=\"H7122\"* army|strong=\"H4634\"*." + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* left|strong=\"H5203\"* his|strong=\"H8104\"* baggage|strong=\"H3627\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* keeper|strong=\"H8104\"* of|strong=\"H3027\"* the|strong=\"H5921\"* baggage|strong=\"H3627\"* and|strong=\"H3027\"* ran|strong=\"H7323\"* to|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H4634\"*, and|strong=\"H3027\"* came|strong=\"H1732\"* and|strong=\"H3027\"* greeted|strong=\"H7592\"* his|strong=\"H8104\"* brothers." + }, + { + "verseNum": 23, + "text": "As|strong=\"H1697\"* he|strong=\"H1931\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H5927\"*, behold|strong=\"H2009\"*, the|strong=\"H8085\"* champion, the|strong=\"H8085\"* Philistine|strong=\"H6430\"* of|strong=\"H1697\"* Gath|strong=\"H1661\"*, Goliath|strong=\"H1555\"* by|strong=\"H8034\"* name|strong=\"H8034\"*, came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H1696\"* of|strong=\"H1697\"* the|strong=\"H8085\"* ranks of|strong=\"H1697\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"*, and|strong=\"H1732\"* said|strong=\"H1696\"* the|strong=\"H8085\"* same|strong=\"H1931\"* words|strong=\"H1697\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* them|strong=\"H5927\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, when|strong=\"H7200\"* they|strong=\"H3605\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* man|strong=\"H3605\"*, fled|strong=\"H5127\"* from|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H3478\"* were|strong=\"H3478\"* terrified|strong=\"H3966\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said, “Have|strong=\"H1961\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* this|strong=\"H2088\"* man|strong=\"H1419\"* who|strong=\"H3478\"* has|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"*? He|strong=\"H3588\"* has|strong=\"H1961\"* surely|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* defy|strong=\"H2778\"* Israel|strong=\"H3478\"*. The|strong=\"H7200\"* king|strong=\"H4428\"* will|strong=\"H1961\"* give|strong=\"H5414\"* great|strong=\"H1419\"* riches|strong=\"H6239\"* to|strong=\"H3478\"* the|strong=\"H7200\"* man|strong=\"H1419\"* who|strong=\"H3478\"* kills|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, and|strong=\"H3478\"* will|strong=\"H1961\"* make|strong=\"H6213\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"* tax-free in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 26, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H3478\"* the|strong=\"H5921\"* men|strong=\"H6213\"* who|strong=\"H4310\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “What|strong=\"H4100\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* done|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H5921\"* man|strong=\"H2088\"* who|strong=\"H4310\"* kills|strong=\"H5221\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"* and|strong=\"H3478\"* takes|strong=\"H5221\"* away|strong=\"H5493\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* from|strong=\"H5493\"* Israel|strong=\"H3478\"*? For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* uncircumcised|strong=\"H6189\"* Philistine|strong=\"H6430\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H4100\"* defy|strong=\"H2778\"* the|strong=\"H5921\"* armies|strong=\"H4634\"* of|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H2416\"* God|strong=\"H4310\"*?”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H5221\"* people|strong=\"H5971\"* answered|strong=\"H1697\"* him|strong=\"H5221\"* in|strong=\"H6213\"* this|strong=\"H2088\"* way|strong=\"H1697\"*, saying|strong=\"H1697\"*, “So|strong=\"H6213\"* shall|strong=\"H5971\"* it|strong=\"H6213\"* be|strong=\"H1697\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H5221\"* man|strong=\"H2088\"* who|strong=\"H5971\"* kills|strong=\"H5221\"* him|strong=\"H5221\"*.”" + }, + { + "verseNum": 28, + "text": "Eliab his|strong=\"H1732\"* oldest|strong=\"H1419\"* brother heard|strong=\"H8085\"* when|strong=\"H3588\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men|strong=\"H1419\"*; and|strong=\"H1419\"* Eliab’s anger|strong=\"H3824\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* David|strong=\"H1732\"*, and|strong=\"H1419\"* he|strong=\"H3588\"* said|strong=\"H1696\"*, “Why|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H3588\"* come|strong=\"H3381\"* down|strong=\"H3381\"*? With|strong=\"H1696\"* whom|strong=\"H4310\"* have|strong=\"H3045\"* you|strong=\"H3588\"* left|strong=\"H5203\"* those|strong=\"H5921\"* few|strong=\"H4592\"* sheep|strong=\"H6629\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*? I|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H5921\"* pride|strong=\"H2087\"* and|strong=\"H1419\"* the|strong=\"H5921\"* evil|strong=\"H7455\"* of|strong=\"H4057\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* come|strong=\"H3381\"* down|strong=\"H3381\"* that|strong=\"H3588\"* you|strong=\"H3588\"* might|strong=\"H4616\"* see|strong=\"H7200\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*.”" + }, + { + "verseNum": 29, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H1697\"* I|strong=\"H1697\"* now|strong=\"H6258\"* done|strong=\"H6213\"*? Is|strong=\"H1931\"* there|strong=\"H6258\"* not|strong=\"H3808\"* a|strong=\"H3068\"* cause|strong=\"H1697\"*?”" + }, + { + "verseNum": 30, + "text": "He|strong=\"H5971\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* him|strong=\"H7725\"* toward|strong=\"H4136\"* another|strong=\"H2088\"*, and|strong=\"H7725\"* spoke|strong=\"H1697\"* like|strong=\"H1697\"* that|strong=\"H5971\"* again|strong=\"H7725\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H7725\"* same|strong=\"H2088\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 31, + "text": "When|strong=\"H8085\"* the|strong=\"H6440\"* words|strong=\"H1697\"* were|strong=\"H1697\"* heard|strong=\"H8085\"* which|strong=\"H1697\"* David|strong=\"H1732\"* spoke|strong=\"H1696\"*, they|strong=\"H1697\"* rehearsed|strong=\"H1696\"* them|strong=\"H6440\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*; and|strong=\"H1732\"* he|strong=\"H1732\"* sent|strong=\"H1732\"* for|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 32, + "text": "David|strong=\"H1732\"* said to|strong=\"H3212\"* Saul|strong=\"H7586\"*, “Let|strong=\"H3212\"* no man|strong=\"H2088\"*’s heart|strong=\"H3820\"* fail|strong=\"H5307\"* because|strong=\"H5921\"* of|strong=\"H5650\"* him|strong=\"H5921\"*. Your|strong=\"H5921\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* go|strong=\"H3212\"* and|strong=\"H3212\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 33, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3201\"* David|strong=\"H1732\"*, “You|strong=\"H3588\"* are|strong=\"H4421\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* go|strong=\"H3212\"* against|strong=\"H5973\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"* to|strong=\"H3201\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5973\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4421\"* but|strong=\"H3588\"* a|strong=\"H3068\"* youth|strong=\"H5271\"*, and|strong=\"H3212\"* he|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H5288\"* war|strong=\"H4421\"* from|strong=\"H6430\"* his|strong=\"H1732\"* youth|strong=\"H5271\"*.”" + }, + { + "verseNum": 34, + "text": "David|strong=\"H1732\"* said to|strong=\"H1961\"* Saul|strong=\"H7586\"*, “Your|strong=\"H5375\"* servant|strong=\"H5650\"* was|strong=\"H1961\"* keeping|strong=\"H7462\"* his|strong=\"H5375\"* father’s sheep|strong=\"H6629\"*; and|strong=\"H1732\"* when|strong=\"H1961\"* a|strong=\"H3068\"* lion or|strong=\"H7462\"* a|strong=\"H3068\"* bear|strong=\"H5375\"* came|strong=\"H1961\"* and|strong=\"H1732\"* took|strong=\"H5375\"* a|strong=\"H3068\"* lamb|strong=\"H7716\"* out of|strong=\"H5650\"* the|strong=\"H5375\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 35, + "text": "I|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, struck|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H6965\"* rescued|strong=\"H5337\"* it|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H6310\"* his|strong=\"H5921\"* mouth|strong=\"H6310\"*. When|strong=\"H3318\"* he|strong=\"H5921\"* arose|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, I|strong=\"H5921\"* caught|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H5921\"* his|strong=\"H5921\"* beard|strong=\"H2206\"*, struck|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H6965\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 36, + "text": "Your|strong=\"H3588\"* servant|strong=\"H5650\"* struck|strong=\"H5221\"* both|strong=\"H1571\"* the|strong=\"H3588\"* lion and|strong=\"H5650\"* the|strong=\"H3588\"* bear|strong=\"H1677\"*. This|strong=\"H2088\"* uncircumcised|strong=\"H6189\"* Philistine|strong=\"H6430\"* shall|strong=\"H5650\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H2088\"* of|strong=\"H5650\"* them|strong=\"H1992\"*, since|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* defied|strong=\"H2778\"* the|strong=\"H3588\"* armies|strong=\"H4634\"* of|strong=\"H5650\"* the|strong=\"H3588\"* living|strong=\"H2416\"* God.”" + }, + { + "verseNum": 37, + "text": "David|strong=\"H1732\"* said, “Yahweh|strong=\"H3068\"*, who|strong=\"H1931\"* delivered|strong=\"H5337\"* me|strong=\"H5973\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* paw|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* lion and|strong=\"H3068\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* paw|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3068\"* bear|strong=\"H1677\"*, will|strong=\"H3068\"* deliver|strong=\"H5337\"* me|strong=\"H5973\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* this|strong=\"H2088\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 38, + "text": "Saul|strong=\"H7586\"* dressed|strong=\"H3847\"* David|strong=\"H1732\"* with|strong=\"H3847\"* his|strong=\"H5414\"* clothing|strong=\"H3847\"*. He|strong=\"H1732\"* put|strong=\"H5414\"* a|strong=\"H3068\"* helmet|strong=\"H6959\"* of|strong=\"H7218\"* bronze|strong=\"H5178\"* on|strong=\"H5921\"* his|strong=\"H5414\"* head|strong=\"H7218\"*, and|strong=\"H1732\"* he|strong=\"H1732\"* clad him|strong=\"H5414\"* with|strong=\"H3847\"* a|strong=\"H3068\"* coat|strong=\"H8302\"* of|strong=\"H7218\"* mail|strong=\"H8302\"*." + }, + { + "verseNum": 39, + "text": "David|strong=\"H1732\"* strapped|strong=\"H2296\"* his|strong=\"H1732\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* his|strong=\"H1732\"* clothing and|strong=\"H3212\"* he|strong=\"H3588\"* tried|strong=\"H2974\"* to|strong=\"H3201\"* move|strong=\"H5493\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* not|strong=\"H3808\"* tested|strong=\"H5254\"* it|strong=\"H5921\"*. David|strong=\"H1732\"* said to|strong=\"H3201\"* Saul|strong=\"H7586\"*, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t go|strong=\"H3212\"* with|strong=\"H5921\"* these|strong=\"H1732\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* tested|strong=\"H5254\"* them|strong=\"H5921\"*.” Then|strong=\"H3588\"* David|strong=\"H1732\"* took|strong=\"H5493\"* them|strong=\"H5921\"* off|strong=\"H5493\"*." + }, + { + "verseNum": 40, + "text": "He|strong=\"H2568\"* took|strong=\"H3947\"* his|strong=\"H7760\"* staff|strong=\"H4731\"* in|strong=\"H3027\"* his|strong=\"H7760\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* chose for|strong=\"H3027\"* himself|strong=\"H3027\"* five|strong=\"H2568\"* smooth|strong=\"H2512\"* stones out|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H3947\"* brook|strong=\"H5158\"*, and|strong=\"H3027\"* put|strong=\"H7760\"* them|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3947\"* pouch|strong=\"H3219\"* of|strong=\"H3027\"* his|strong=\"H7760\"* shepherd|strong=\"H7462\"*’s bag|strong=\"H3627\"* which|strong=\"H5158\"* he|strong=\"H2568\"* had|strong=\"H6430\"*. His|strong=\"H7760\"* sling|strong=\"H7050\"* was|strong=\"H3027\"* in|strong=\"H3027\"* his|strong=\"H7760\"* hand|strong=\"H3027\"*; and|strong=\"H3027\"* he|strong=\"H2568\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3027\"* the|strong=\"H3947\"* Philistine|strong=\"H6430\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H6440\"* Philistine|strong=\"H6430\"* walked|strong=\"H1980\"* and|strong=\"H1980\"* came|strong=\"H1980\"* near|strong=\"H7131\"* to|strong=\"H1980\"* David|strong=\"H1732\"*; and|strong=\"H1980\"* the|strong=\"H6440\"* man|strong=\"H5375\"* who|strong=\"H1980\"* bore|strong=\"H5375\"* the|strong=\"H6440\"* shield|strong=\"H6793\"* went|strong=\"H1980\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 42, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"* looked|strong=\"H7200\"* around and|strong=\"H1732\"* saw|strong=\"H7200\"* David|strong=\"H1732\"*, he|strong=\"H3588\"* disdained him|strong=\"H7200\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* but|strong=\"H3588\"* a|strong=\"H3068\"* youth|strong=\"H5288\"*, and|strong=\"H1732\"* ruddy, and|strong=\"H1732\"* had|strong=\"H1961\"* a|strong=\"H3068\"* good looking|strong=\"H7200\"* face|strong=\"H4758\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H3588\"* Philistine|strong=\"H6430\"* said to|strong=\"H1732\"* David|strong=\"H1732\"*, “Am I|strong=\"H3588\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* come to|strong=\"H1732\"* me|strong=\"H3588\"* with|strong=\"H1732\"* sticks|strong=\"H4731\"*?” The|strong=\"H3588\"* Philistine|strong=\"H6430\"* cursed|strong=\"H7043\"* David|strong=\"H1732\"* by|strong=\"H6430\"* his|strong=\"H1732\"* gods." + }, + { + "verseNum": 44, + "text": "The|strong=\"H5414\"* Philistine|strong=\"H6430\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Come|strong=\"H3212\"* to|strong=\"H3212\"* me|strong=\"H5414\"*, and|strong=\"H8064\"* I|strong=\"H5414\"* will|strong=\"H8064\"* give|strong=\"H5414\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"* to|strong=\"H3212\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H7704\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* to|strong=\"H3212\"* the|strong=\"H5414\"* animals of|strong=\"H7704\"* the|strong=\"H5414\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 45, + "text": "Then|strong=\"H1732\"* David|strong=\"H1732\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* Philistine|strong=\"H6430\"*, “You|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H2719\"* with|strong=\"H3068\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* a|strong=\"H3068\"* spear|strong=\"H2595\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* a|strong=\"H3068\"* javelin|strong=\"H3591\"*; but|strong=\"H3068\"* I|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3068\"* armies|strong=\"H6635\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, whom you|strong=\"H3478\"* have|strong=\"H3068\"* defied|strong=\"H2778\"*." + }, + { + "verseNum": 46, + "text": "Today|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* you|strong=\"H3588\"* and|strong=\"H3478\"* take|strong=\"H5493\"* your|strong=\"H3068\"* head|strong=\"H7218\"* from|strong=\"H5493\"* off|strong=\"H5493\"* you|strong=\"H3588\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H3068\"* the|strong=\"H3605\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* today|strong=\"H3117\"* to|strong=\"H3478\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* wild animals|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 47, + "text": "and|strong=\"H3068\"* that|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"* assembly|strong=\"H6951\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* doesn’t save|strong=\"H3467\"* with|strong=\"H3068\"* sword|strong=\"H2719\"* and|strong=\"H3068\"* spear|strong=\"H2595\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H2595\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 48, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* Philistine|strong=\"H6430\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* walked|strong=\"H3212\"* and|strong=\"H6965\"* came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3212\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*, David|strong=\"H1732\"* hurried|strong=\"H4116\"* and|strong=\"H6965\"* ran|strong=\"H7323\"* toward|strong=\"H7122\"* the|strong=\"H3588\"* army|strong=\"H4634\"* to|strong=\"H3212\"* meet|strong=\"H7122\"* the|strong=\"H3588\"* Philistine|strong=\"H6430\"*." + }, + { + "verseNum": 49, + "text": "David|strong=\"H1732\"* put|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H7971\"* bag|strong=\"H3627\"*, took|strong=\"H3947\"* a|strong=\"H3068\"* stone and|strong=\"H7971\"* slung|strong=\"H7049\"* it|strong=\"H5921\"*, and|strong=\"H7971\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"* in|strong=\"H5921\"* his|strong=\"H7971\"* forehead|strong=\"H4696\"*. The|strong=\"H6440\"* stone sank|strong=\"H2883\"* into|strong=\"H5307\"* his|strong=\"H7971\"* forehead|strong=\"H4696\"*, and|strong=\"H7971\"* he|strong=\"H8033\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H7971\"* face|strong=\"H6440\"* to|strong=\"H7971\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 50, + "text": "So|strong=\"H4480\"* David|strong=\"H1732\"* prevailed|strong=\"H2388\"* over|strong=\"H3027\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* with|strong=\"H3027\"* a|strong=\"H3068\"* sling|strong=\"H7050\"* and|strong=\"H3027\"* with|strong=\"H3027\"* a|strong=\"H3068\"* stone, and|strong=\"H3027\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* and|strong=\"H3027\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*; but|strong=\"H2388\"* there|strong=\"H4480\"* was|strong=\"H1732\"* no|strong=\"H4480\"* sword|strong=\"H2719\"* in|strong=\"H4191\"* David|strong=\"H1732\"*’s hand|strong=\"H3027\"*." + }, + { + "verseNum": 51, + "text": "Then|strong=\"H3947\"* David|strong=\"H1732\"* ran|strong=\"H7323\"*, stood|strong=\"H5975\"* over|strong=\"H7218\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"*, took|strong=\"H3947\"* his|strong=\"H3947\"* sword|strong=\"H2719\"*, drew|strong=\"H8025\"* it|strong=\"H3588\"* out|strong=\"H7200\"* of|strong=\"H7218\"* its|strong=\"H5975\"* sheath|strong=\"H8593\"*, killed|strong=\"H4191\"* him|strong=\"H7200\"*, and|strong=\"H1732\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* his|strong=\"H3947\"* head|strong=\"H7218\"* with|strong=\"H1732\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 52, + "text": "The|strong=\"H5704\"* men|strong=\"H3478\"* of|strong=\"H1870\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1870\"* Judah|strong=\"H3063\"* arose|strong=\"H6965\"* and|strong=\"H3063\"* shouted|strong=\"H7321\"*, and|strong=\"H3063\"* pursued|strong=\"H7291\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Gai and|strong=\"H3063\"* to|strong=\"H5704\"* the|strong=\"H5704\"* gates|strong=\"H8179\"* of|strong=\"H1870\"* Ekron|strong=\"H6138\"*. The|strong=\"H5704\"* wounded|strong=\"H2491\"* of|strong=\"H1870\"* the|strong=\"H5704\"* Philistines|strong=\"H6430\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* by|strong=\"H1870\"* the|strong=\"H5704\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Shaaraim|strong=\"H8189\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Gath|strong=\"H1661\"* and|strong=\"H3063\"* to|strong=\"H5704\"* Ekron|strong=\"H6138\"*." + }, + { + "verseNum": 53, + "text": "The|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* chasing|strong=\"H1814\"* after|strong=\"H1814\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* they|strong=\"H3478\"* plundered|strong=\"H8155\"* their|strong=\"H7725\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 54, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* head|strong=\"H7218\"* of|strong=\"H3627\"* the|strong=\"H3947\"* Philistine|strong=\"H6430\"* and|strong=\"H3389\"* brought|strong=\"H3947\"* it|strong=\"H7760\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3947\"* he|strong=\"H1732\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1732\"* his|strong=\"H7760\"* tent." + }, + { + "verseNum": 55, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* David|strong=\"H1732\"* go|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H7122\"* the|strong=\"H7200\"* Philistine|strong=\"H6430\"*, he|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abner, the|strong=\"H7200\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H7200\"* army|strong=\"H6635\"*, “Abner, whose|strong=\"H4310\"* son|strong=\"H1121\"* is|strong=\"H2088\"* this|strong=\"H2088\"* youth|strong=\"H5288\"*?”" + }, + { + "verseNum": 56, + "text": "The|strong=\"H7592\"* king|strong=\"H4428\"* said, “Inquire|strong=\"H7592\"* whose|strong=\"H4310\"* son|strong=\"H1121\"* the|strong=\"H7592\"* young|strong=\"H1121\"* man|strong=\"H1121\"* is|strong=\"H2088\"*!”" + }, + { + "verseNum": 57, + "text": "As|strong=\"H6440\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H6440\"* slaughter|strong=\"H5221\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"*, Abner took|strong=\"H3947\"* him|strong=\"H6440\"* and|strong=\"H7725\"* brought|strong=\"H7725\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* with|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Philistine|strong=\"H6430\"* in|strong=\"H6440\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 58, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H1121\"* him|strong=\"H1732\"*, “Whose|strong=\"H4310\"* son|strong=\"H1121\"* are|strong=\"H1121\"* you|strong=\"H4310\"*, you|strong=\"H4310\"* young|strong=\"H5288\"* man|strong=\"H5288\"*?”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* he|strong=\"H1732\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"*, the|strong=\"H1961\"* soul|strong=\"H5315\"* of|strong=\"H3615\"* Jonathan|strong=\"H3083\"* was|strong=\"H1961\"* knit|strong=\"H7194\"* with|strong=\"H1696\"* the|strong=\"H1961\"* soul|strong=\"H5315\"* of|strong=\"H3615\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* Jonathan|strong=\"H3083\"* loved him|strong=\"H1732\"* as|strong=\"H1961\"* his|strong=\"H1732\"* own|strong=\"H1961\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"* took|strong=\"H3947\"* him|strong=\"H5414\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, and|strong=\"H7725\"* wouldn’t let|strong=\"H5414\"* him|strong=\"H5414\"* go|strong=\"H7725\"* home|strong=\"H1004\"* to|strong=\"H7725\"* his|strong=\"H5414\"* father’s house|strong=\"H1004\"* any|strong=\"H5414\"* more|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1732\"* Jonathan|strong=\"H3083\"* and|strong=\"H1732\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"*, because he|strong=\"H1732\"* loved him|strong=\"H3772\"* as|strong=\"H5315\"* his|strong=\"H1732\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Jonathan|strong=\"H3083\"* stripped|strong=\"H6584\"* himself of|strong=\"H5921\"* the|strong=\"H5921\"* robe|strong=\"H4598\"* that|strong=\"H5414\"* was|strong=\"H1732\"* on|strong=\"H5921\"* him|strong=\"H5414\"* and|strong=\"H1732\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5704\"* David|strong=\"H1732\"* with|strong=\"H5921\"* his|strong=\"H5414\"* clothing, even|strong=\"H5704\"* including|strong=\"H5704\"* his|strong=\"H5414\"* sword|strong=\"H2719\"*, his|strong=\"H5414\"* bow|strong=\"H7198\"*, and|strong=\"H1732\"* his|strong=\"H5414\"* sash." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* wherever|strong=\"H3605\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* wisely|strong=\"H7919\"*; and|strong=\"H7971\"* Saul|strong=\"H7586\"* set|strong=\"H7760\"* him|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5869\"* war|strong=\"H4421\"*. It|strong=\"H7760\"* was|strong=\"H1732\"* good|strong=\"H3190\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H7971\"* also|strong=\"H1571\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 6, + "text": "As|strong=\"H1961\"* they|strong=\"H3478\"* came|strong=\"H1961\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* slaughter|strong=\"H5221\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, the|strong=\"H3605\"* women|strong=\"H7891\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, singing|strong=\"H7891\"* and|strong=\"H3478\"* dancing|strong=\"H4246\"*, to|strong=\"H7725\"* meet|strong=\"H7122\"* King|strong=\"H4428\"* Saul|strong=\"H7586\"* with|strong=\"H3318\"* tambourines|strong=\"H8596\"*, with|strong=\"H3318\"* joy|strong=\"H8057\"*, and|strong=\"H3478\"* with|strong=\"H3318\"* instruments|strong=\"H7991\"* of|strong=\"H4428\"* music." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5221\"* women sang|strong=\"H6030\"* to|strong=\"H1732\"* one another as|strong=\"H5221\"* they|strong=\"H5221\"* played|strong=\"H7832\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*," + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*, and|strong=\"H5869\"* this|strong=\"H2088\"* saying|strong=\"H1697\"* displeased|strong=\"H7489\"* him|strong=\"H5414\"*. He|strong=\"H1732\"* said|strong=\"H1697\"*, “They|strong=\"H1697\"* have|strong=\"H5869\"* credited David|strong=\"H1732\"* with|strong=\"H1697\"* ten|strong=\"H7233\"* thousands|strong=\"H7233\"*, and|strong=\"H5869\"* they|strong=\"H1697\"* have|strong=\"H5869\"* only credited me|strong=\"H5414\"* with|strong=\"H1697\"* thousands|strong=\"H7233\"*. What|strong=\"H1697\"* can|strong=\"H5750\"* he|strong=\"H1732\"* have|strong=\"H5869\"* more|strong=\"H5750\"* but|strong=\"H5750\"* the|strong=\"H5414\"* kingdom|strong=\"H4410\"*?”" + }, + { + "verseNum": 9, + "text": "Saul|strong=\"H7586\"* watched David|strong=\"H1732\"* from|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H3117\"* forward|strong=\"H1973\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H8432\"* next|strong=\"H4283\"* day|strong=\"H3117\"*, an|strong=\"H1961\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H3027\"* God|strong=\"H3027\"* came|strong=\"H1961\"* mightily|strong=\"H6743\"* on|strong=\"H3117\"* Saul|strong=\"H7586\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* prophesied|strong=\"H5012\"* in|strong=\"H1004\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H8432\"* house|strong=\"H1004\"*. David|strong=\"H1732\"* played|strong=\"H5059\"* with|strong=\"H1004\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* did|strong=\"H1732\"* day|strong=\"H3117\"* by|strong=\"H3027\"* day|strong=\"H3117\"*. Saul|strong=\"H7586\"* had|strong=\"H1961\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* in|strong=\"H1004\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H1732\"* Saul|strong=\"H7586\"* threw|strong=\"H2904\"* the|strong=\"H6440\"* spear|strong=\"H2595\"*, for|strong=\"H6440\"* he|strong=\"H1732\"* said, “I|strong=\"H6440\"* will|strong=\"H2904\"* pin|strong=\"H5221\"* David|strong=\"H1732\"* to|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*!” David|strong=\"H1732\"* escaped|strong=\"H5437\"* from|strong=\"H6440\"* his|strong=\"H1732\"* presence|strong=\"H6440\"* twice|strong=\"H6471\"*." + }, + { + "verseNum": 12, + "text": "Saul|strong=\"H7586\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* David|strong=\"H1732\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5971\"* Saul|strong=\"H7586\"* removed|strong=\"H5493\"* him|strong=\"H6440\"* from|strong=\"H5493\"* his|strong=\"H7760\"* presence|strong=\"H6440\"*, and|strong=\"H5971\"* made|strong=\"H7760\"* him|strong=\"H6440\"* his|strong=\"H7760\"* captain|strong=\"H8269\"* over|strong=\"H8269\"* a|strong=\"H3068\"* thousand; and|strong=\"H5971\"* he|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* came|strong=\"H3318\"* in|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* wisely|strong=\"H7919\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* he|strong=\"H1931\"* behaved|strong=\"H7919\"* himself|strong=\"H1931\"* very|strong=\"H3966\"* wisely|strong=\"H7919\"*, he|strong=\"H1931\"* stood in|strong=\"H6440\"* awe|strong=\"H1481\"* of|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* loved David|strong=\"H1732\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3063\"* came|strong=\"H3318\"* in|strong=\"H3478\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H3068\"* David|strong=\"H1732\"*, “Behold|strong=\"H2009\"*, my|strong=\"H5414\"* elder|strong=\"H1419\"* daughter|strong=\"H1323\"* Merab|strong=\"H4764\"*. I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H3068\"* you|strong=\"H5414\"* as|strong=\"H1961\"* wife. Only be|strong=\"H1961\"* valiant|strong=\"H2428\"* for|strong=\"H3027\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* fight|strong=\"H3898\"* Yahweh|strong=\"H3068\"*’s battles|strong=\"H4421\"*.” For|strong=\"H3027\"* Saul|strong=\"H7586\"* said, “Don’t let|strong=\"H5414\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H5414\"*, but|strong=\"H1961\"* let|strong=\"H5414\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* be|strong=\"H1961\"* on|strong=\"H3027\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 18, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Saul|strong=\"H7586\"*, “Who|strong=\"H4310\"* am|strong=\"H1961\"* I|strong=\"H3588\"*, and|strong=\"H3478\"* what|strong=\"H4310\"* is|strong=\"H4310\"* my|strong=\"H1732\"* life|strong=\"H2416\"*, or|strong=\"H4310\"* my|strong=\"H1732\"* father’s family|strong=\"H4940\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* be|strong=\"H1961\"* son-in-law|strong=\"H2860\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H1961\"* at|strong=\"H1732\"* the|strong=\"H5414\"* time|strong=\"H6256\"* when|strong=\"H1961\"* Merab|strong=\"H4764\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, should|strong=\"H1732\"* have|strong=\"H1961\"* been|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, she|strong=\"H1931\"* was|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* Adriel|strong=\"H5741\"* the|strong=\"H5414\"* Meholathite|strong=\"H4259\"* as|strong=\"H1961\"* wife." + }, + { + "verseNum": 20, + "text": "Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, loved David|strong=\"H1732\"*; and|strong=\"H5869\"* they|strong=\"H1697\"* told|strong=\"H5046\"* Saul|strong=\"H7586\"*, and|strong=\"H5869\"* the|strong=\"H1697\"* thing|strong=\"H1697\"* pleased|strong=\"H3474\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* said, I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* her|strong=\"H5414\"* to|strong=\"H1961\"* him|strong=\"H5414\"*, that|strong=\"H3117\"* she|strong=\"H8147\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H1961\"* him|strong=\"H5414\"* and|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"* may|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H3027\"* him|strong=\"H5414\"*. Therefore|strong=\"H1732\"* Saul|strong=\"H7586\"* said to|strong=\"H1961\"* David|strong=\"H1732\"* a|strong=\"H3068\"* second|strong=\"H8147\"* time|strong=\"H3117\"*, “You|strong=\"H5414\"* shall|strong=\"H3117\"* today|strong=\"H3117\"* be|strong=\"H1961\"* my|strong=\"H5414\"* son-in-law|strong=\"H2859\"*.”" + }, + { + "verseNum": 22, + "text": "Saul|strong=\"H7586\"* commanded|strong=\"H6680\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, “Talk|strong=\"H1696\"* with|strong=\"H1696\"* David|strong=\"H1732\"* secretly|strong=\"H3909\"*, and|strong=\"H4428\"* say|strong=\"H1696\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* has|strong=\"H4428\"* delight|strong=\"H2654\"* in|strong=\"H4428\"* you|strong=\"H6680\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* love you|strong=\"H6680\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* be|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*.’”" + }, + { + "verseNum": 23, + "text": "Saul|strong=\"H7586\"*’s servants|strong=\"H5650\"* spoke|strong=\"H1696\"* those|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H4428\"* the|strong=\"H1697\"* ears of|strong=\"H4428\"* David|strong=\"H1732\"*. David|strong=\"H1732\"* said|strong=\"H1696\"*, “Does it|strong=\"H1696\"* seem|strong=\"H5869\"* to|strong=\"H1696\"* you|strong=\"H1696\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H1697\"* to|strong=\"H1696\"* be|strong=\"H1697\"* the|strong=\"H1697\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*, since I|strong=\"H1697\"* am|strong=\"H7326\"* a|strong=\"H3068\"* poor|strong=\"H7326\"* man|strong=\"H7326\"* and|strong=\"H4428\"* little known?”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H1697\"* servants|strong=\"H5650\"* of|strong=\"H1697\"* Saul|strong=\"H7586\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, saying|strong=\"H1697\"*, “David|strong=\"H1732\"* spoke|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H1696\"*.”" + }, + { + "verseNum": 25, + "text": "Saul|strong=\"H7586\"* said, “Tell David|strong=\"H1732\"*, ‘The|strong=\"H3588\"* king|strong=\"H4428\"* desires no|strong=\"H2803\"* dowry|strong=\"H4119\"* except|strong=\"H3588\"* one|strong=\"H3588\"* hundred|strong=\"H3967\"* foreskins|strong=\"H6190\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*, to|strong=\"H3027\"* be|strong=\"H3027\"* avenged|strong=\"H5358\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s enemies|strong=\"H3027\"*.’” Now|strong=\"H3588\"* Saul|strong=\"H7586\"* thought|strong=\"H2803\"* he|strong=\"H3588\"* would|strong=\"H4428\"* make|strong=\"H3027\"* David|strong=\"H1732\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3117\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* told|strong=\"H5046\"* David|strong=\"H1732\"* these|strong=\"H1732\"* words|strong=\"H1697\"*, it|strong=\"H3117\"* pleased|strong=\"H3474\"* David|strong=\"H1732\"* well|strong=\"H5869\"* to|strong=\"H3117\"* be|strong=\"H3808\"* the|strong=\"H3117\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*. Before|strong=\"H5869\"* the|strong=\"H3117\"* deadline," + }, + { + "verseNum": 27, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H3967\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* his|strong=\"H5414\"* men, and|strong=\"H3967\"* killed|strong=\"H5221\"* two|strong=\"H5221\"* hundred|strong=\"H3967\"* men of|strong=\"H4428\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*. Then|strong=\"H6965\"* David|strong=\"H1732\"* brought|strong=\"H3212\"* their|strong=\"H5414\"* foreskins|strong=\"H6190\"*, and|strong=\"H3967\"* they|strong=\"H1931\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H4428\"* full|strong=\"H4390\"* number to|strong=\"H3212\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, that|strong=\"H1931\"* he|strong=\"H1931\"* might|strong=\"H1323\"* be|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2859\"*. Then|strong=\"H6965\"* Saul|strong=\"H7586\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* Michal|strong=\"H4324\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* as|strong=\"H6965\"* wife." + }, + { + "verseNum": 28, + "text": "Saul|strong=\"H7586\"* saw|strong=\"H7200\"* and|strong=\"H3068\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* David|strong=\"H1732\"*; and|strong=\"H3068\"* Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, loved him|strong=\"H7200\"*." + }, + { + "verseNum": 29, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1961\"* even|strong=\"H5750\"* more|strong=\"H3254\"* afraid|strong=\"H3372\"* of|strong=\"H3117\"* David|strong=\"H1732\"*; and|strong=\"H3117\"* Saul|strong=\"H7586\"* was|strong=\"H1961\"* David|strong=\"H1732\"*’s enemy continually|strong=\"H3605\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H5650\"* as|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, David|strong=\"H1732\"* behaved|strong=\"H7919\"* himself|strong=\"H7919\"* more|strong=\"H3966\"* wisely|strong=\"H7919\"* than|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H8269\"* Saul|strong=\"H7586\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* his|strong=\"H3605\"* name|strong=\"H8034\"* was|strong=\"H8034\"* highly|strong=\"H3966\"* esteemed|strong=\"H3365\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Saul|strong=\"H7586\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jonathan|strong=\"H3129\"* his|strong=\"H3605\"* son|strong=\"H1121\"* and|strong=\"H1121\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* should|strong=\"H1732\"* kill|strong=\"H4191\"* David|strong=\"H1732\"*. But|strong=\"H1696\"* Jonathan|strong=\"H3129\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, greatly|strong=\"H3966\"* delighted|strong=\"H2654\"* in|strong=\"H4191\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 2, + "text": "Jonathan|strong=\"H3083\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Saul|strong=\"H7586\"* my|strong=\"H8104\"* father seeks|strong=\"H1245\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* you|strong=\"H5046\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H8104\"* care|strong=\"H8104\"* of|strong=\"H3427\"* yourself in|strong=\"H3427\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*, live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* secret|strong=\"H5643\"* place|strong=\"H5643\"*, and|strong=\"H1732\"* hide|strong=\"H2244\"* yourself." + }, + { + "verseNum": 3, + "text": "I|strong=\"H7200\"* will|strong=\"H3027\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3027\"* stand|strong=\"H5975\"* beside|strong=\"H3027\"* my|strong=\"H7200\"* father in|strong=\"H1696\"* the|strong=\"H7200\"* field|strong=\"H7704\"* where|strong=\"H8033\"* you|strong=\"H5046\"* are|strong=\"H3027\"*, and|strong=\"H3027\"* I|strong=\"H7200\"* will|strong=\"H3027\"* talk|strong=\"H1696\"* with|strong=\"H1696\"* my|strong=\"H7200\"* father about|strong=\"H8033\"* you|strong=\"H5046\"*; and|strong=\"H3027\"* if|strong=\"H7200\"* I|strong=\"H7200\"* see|strong=\"H7200\"* anything|strong=\"H4100\"*, I|strong=\"H7200\"* will|strong=\"H3027\"* tell|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 4, + "text": "Jonathan|strong=\"H3083\"* spoke|strong=\"H1696\"* good|strong=\"H2896\"* of|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"* his|strong=\"H1732\"* father, and|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1732\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H3588\"* king|strong=\"H4428\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* his|strong=\"H1732\"* servant|strong=\"H5650\"*, against|strong=\"H2398\"* David|strong=\"H1732\"*; because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H4428\"* not|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* because|strong=\"H3588\"* his|strong=\"H1732\"* works|strong=\"H4639\"* have|strong=\"H5650\"* been|strong=\"H3808\"* very|strong=\"H3966\"* good|strong=\"H2896\"* toward you|strong=\"H3588\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H7760\"* his|strong=\"H3605\"* life|strong=\"H5315\"* in|strong=\"H3478\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Philistine|strong=\"H6430\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"* for|strong=\"H6213\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. You|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H7760\"* and|strong=\"H3478\"* rejoiced|strong=\"H8055\"*. Why|strong=\"H4100\"* then|strong=\"H6213\"* will|strong=\"H3068\"* you|strong=\"H3605\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*, to|strong=\"H3478\"* kill|strong=\"H4191\"* David|strong=\"H1732\"* without|strong=\"H2600\"* a|strong=\"H3068\"* cause|strong=\"H2600\"*?”" + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* listened|strong=\"H8085\"* to|strong=\"H4191\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Jonathan|strong=\"H3083\"*; and|strong=\"H3068\"* Saul|strong=\"H7586\"* swore|strong=\"H7650\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H8085\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 7, + "text": "Jonathan|strong=\"H3083\"* called|strong=\"H7121\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* Jonathan|strong=\"H3083\"* showed him|strong=\"H6440\"* all|strong=\"H3605\"* those|strong=\"H3605\"* things|strong=\"H1697\"*. Then|strong=\"H1961\"* Jonathan|strong=\"H3083\"* brought|strong=\"H1961\"* David|strong=\"H1732\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"*, and|strong=\"H1732\"* he|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H6440\"* his|strong=\"H3605\"* presence|strong=\"H6440\"* as|strong=\"H1697\"* before|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* again|strong=\"H3254\"*. David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1419\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H1419\"* killed|strong=\"H5221\"* them|strong=\"H6440\"* with|strong=\"H3898\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*; and|strong=\"H1419\"* they|strong=\"H5221\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "An|strong=\"H1961\"* evil|strong=\"H7451\"* spirit|strong=\"H7307\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H3427\"* Saul|strong=\"H7586\"* as|strong=\"H1961\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3068\"* house|strong=\"H1004\"* with|strong=\"H1004\"* his|strong=\"H3068\"* spear|strong=\"H2595\"* in|strong=\"H3427\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* was|strong=\"H3068\"* playing|strong=\"H5059\"* music with|strong=\"H1004\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "Saul|strong=\"H7586\"* sought|strong=\"H1245\"* to|strong=\"H6440\"* pin|strong=\"H5221\"* David|strong=\"H1732\"* to|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* with|strong=\"H6440\"* the|strong=\"H6440\"* spear|strong=\"H2595\"*, but|strong=\"H5221\"* he|strong=\"H1931\"* slipped|strong=\"H6362\"* away|strong=\"H5127\"* out|strong=\"H1245\"* of|strong=\"H6440\"* Saul|strong=\"H7586\"*’s presence|strong=\"H6440\"*; and|strong=\"H1732\"* he|strong=\"H1931\"* stuck|strong=\"H5221\"* the|strong=\"H6440\"* spear|strong=\"H2595\"* into|strong=\"H2595\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*. David|strong=\"H1732\"* fled|strong=\"H5127\"* and|strong=\"H1732\"* escaped|strong=\"H4422\"* that|strong=\"H1931\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H4191\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H4191\"* watch|strong=\"H8104\"* him|strong=\"H7971\"* and|strong=\"H7971\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* him|strong=\"H7971\"* in|strong=\"H1004\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*. Michal|strong=\"H4324\"*, David|strong=\"H1732\"*’s wife, told|strong=\"H5046\"* him|strong=\"H7971\"*, saying, “If you|strong=\"H7971\"* don’t save|strong=\"H4422\"* your|strong=\"H8104\"* life|strong=\"H5315\"* tonight|strong=\"H3915\"*, tomorrow|strong=\"H4279\"* you|strong=\"H7971\"* will|strong=\"H5315\"* be|strong=\"H4191\"* killed|strong=\"H4191\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3381\"* Michal|strong=\"H4324\"* let|strong=\"H3381\"* David|strong=\"H1732\"* down|strong=\"H3381\"* through|strong=\"H1157\"* the|strong=\"H1732\"* window|strong=\"H2474\"*. He|strong=\"H1732\"* went|strong=\"H3212\"* away|strong=\"H3212\"*, fled|strong=\"H1272\"*, and|strong=\"H3212\"* escaped|strong=\"H4422\"*." + }, + { + "verseNum": 13, + "text": "Michal|strong=\"H4324\"* took|strong=\"H3947\"* the|strong=\"H3947\"* teraphim|strong=\"H8655\"*+ 19:13 teraphim were household idols that may have been associated with inheritance rights to the household property.* and|strong=\"H3947\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H7760\"* the|strong=\"H3947\"* bed|strong=\"H4296\"*, and|strong=\"H3947\"* put|strong=\"H7760\"* a|strong=\"H3068\"* pillow|strong=\"H3523\"* of|strong=\"H4296\"* goats|strong=\"H5795\"*’ hair at its|strong=\"H7760\"* head|strong=\"H4763\"* and|strong=\"H3947\"* covered|strong=\"H3680\"* it|strong=\"H7760\"* with|strong=\"H3680\"* clothes." + }, + { + "verseNum": 14, + "text": "When|strong=\"H7971\"* Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* take|strong=\"H3947\"* David|strong=\"H1732\"*, she|strong=\"H1931\"* said, “He|strong=\"H1931\"* is|strong=\"H1931\"* sick|strong=\"H2470\"*.”" + }, + { + "verseNum": 15, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* the|strong=\"H7200\"* messengers|strong=\"H4397\"* to|strong=\"H4191\"* see|strong=\"H7200\"* David|strong=\"H1732\"*, saying, “Bring|strong=\"H5927\"* him|strong=\"H7971\"* up|strong=\"H5927\"* to|strong=\"H4191\"* me|strong=\"H7971\"* in|strong=\"H4191\"* the|strong=\"H7200\"* bed|strong=\"H4296\"*, that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H1732\"* kill|strong=\"H4191\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H2009\"* the|strong=\"H2009\"* messengers|strong=\"H4397\"* came|strong=\"H4397\"* in, behold|strong=\"H2009\"*, the|strong=\"H2009\"* teraphim|strong=\"H8655\"* was|strong=\"H4397\"* in the|strong=\"H2009\"* bed|strong=\"H4296\"*, with the|strong=\"H2009\"* pillow|strong=\"H3523\"* of|strong=\"H4397\"* goats|strong=\"H5795\"*’ hair at its head|strong=\"H4763\"*." + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H4191\"* Michal|strong=\"H4324\"*, “Why|strong=\"H4100\"* have you|strong=\"H7971\"* deceived|strong=\"H7411\"* me|strong=\"H7971\"* like|strong=\"H4191\"* this|strong=\"H1931\"* and|strong=\"H7971\"* let|strong=\"H7971\"* my|strong=\"H7971\"* enemy go|strong=\"H7971\"*, so|strong=\"H7971\"* that|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H4100\"* escaped|strong=\"H4422\"*?”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3212\"* David|strong=\"H1732\"* fled|strong=\"H1272\"* and|strong=\"H3212\"* escaped|strong=\"H4422\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Samuel|strong=\"H8050\"* at|strong=\"H3427\"* Ramah|strong=\"H7414\"*, and|strong=\"H3212\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* done|strong=\"H6213\"* to|strong=\"H3212\"* him|strong=\"H5046\"*. He|strong=\"H1931\"* and|strong=\"H3212\"* Samuel|strong=\"H8050\"* went|strong=\"H3212\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Naioth|strong=\"H5121\"*." + }, + { + "verseNum": 19, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, saying, “Behold|strong=\"H2009\"*, David|strong=\"H1732\"* is|strong=\"H2009\"* at|strong=\"H1732\"* Naioth|strong=\"H5121\"* in|strong=\"H5121\"* Ramah|strong=\"H7414\"*.”" + }, + { + "verseNum": 20, + "text": "Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* seize|strong=\"H3947\"* David|strong=\"H1732\"*; and|strong=\"H7971\"* when|strong=\"H1961\"* they|strong=\"H1992\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* company|strong=\"H3862\"* of|strong=\"H7307\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* prophesying|strong=\"H5012\"*, and|strong=\"H7971\"* Samuel|strong=\"H8050\"* standing|strong=\"H5975\"* as|strong=\"H1961\"* head over|strong=\"H5921\"* them|strong=\"H1992\"*, God|strong=\"H7971\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Saul|strong=\"H7586\"*’s messengers|strong=\"H4397\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7971\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* told|strong=\"H5046\"*, he|strong=\"H7971\"* sent|strong=\"H7971\"* other messengers|strong=\"H4397\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*. Saul|strong=\"H7586\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H3254\"* the|strong=\"H7971\"* third|strong=\"H7992\"* time|strong=\"H7992\"*, and|strong=\"H7971\"* they|strong=\"H1992\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H2009\"* he|strong=\"H1931\"* also|strong=\"H1571\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Ramah|strong=\"H7414\"*, and|strong=\"H1419\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* great|strong=\"H1419\"* well|strong=\"H1571\"* that|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H3212\"* Secu|strong=\"H7906\"*: and|strong=\"H1419\"* he|strong=\"H1931\"* asked|strong=\"H7592\"*, “Where|strong=\"H2009\"* are|strong=\"H1571\"* Samuel|strong=\"H8050\"* and|strong=\"H1419\"* David|strong=\"H1732\"*?”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* went|strong=\"H1980\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Naioth|strong=\"H5121\"* in|strong=\"H5921\"* Ramah|strong=\"H7414\"*. Then|strong=\"H1961\"* God’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"* also|strong=\"H1571\"*, and|strong=\"H1980\"* he|strong=\"H1931\"* went|strong=\"H1980\"* on|strong=\"H5921\"*, and|strong=\"H1980\"* prophesied|strong=\"H5012\"*, until|strong=\"H5704\"* he|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Naioth|strong=\"H5121\"* in|strong=\"H5921\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* stripped|strong=\"H6584\"* off|strong=\"H6584\"* his|strong=\"H3605\"* clothes. He|strong=\"H1931\"* also|strong=\"H1571\"* prophesied|strong=\"H5012\"* before|strong=\"H6440\"* Samuel|strong=\"H8050\"* and|strong=\"H3117\"* lay|strong=\"H5307\"* down|strong=\"H5307\"* naked|strong=\"H6174\"* all|strong=\"H3605\"* that|strong=\"H3605\"* day|strong=\"H3117\"* and|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3605\"* night|strong=\"H3915\"*. Therefore|strong=\"H3651\"* they|strong=\"H3117\"* say, “Is|strong=\"H1931\"* Saul|strong=\"H7586\"* also|strong=\"H1571\"* among|strong=\"H5921\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*?”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* Naioth|strong=\"H5121\"* in|strong=\"H6213\"* Ramah|strong=\"H7414\"*, and|strong=\"H1732\"* came|strong=\"H1732\"* and|strong=\"H1732\"* said to|strong=\"H6213\"* Jonathan|strong=\"H3083\"*, “What|strong=\"H4100\"* have|strong=\"H5771\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1732\"* iniquity|strong=\"H5771\"*? What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1732\"* sin|strong=\"H2403\"* before|strong=\"H6440\"* your|strong=\"H6440\"* father, that|strong=\"H3588\"* he|strong=\"H3588\"* seeks|strong=\"H1245\"* my|strong=\"H1732\"* life|strong=\"H5315\"*?”" + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “Far|strong=\"H2486\"* from|strong=\"H4480\"* it|strong=\"H6213\"*; you|strong=\"H6213\"* will|strong=\"H1697\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Behold|strong=\"H2009\"*, my|strong=\"H5641\"* father does|strong=\"H6213\"* nothing|strong=\"H3808\"* either|strong=\"H4480\"* great|strong=\"H1419\"* or|strong=\"H3808\"* small|strong=\"H6996\"*, but|strong=\"H3808\"* that|strong=\"H1697\"* he|strong=\"H6213\"* discloses|strong=\"H1540\"* it|strong=\"H6213\"* to|strong=\"H4191\"* me|strong=\"H4480\"*. Why|strong=\"H4069\"* would|strong=\"H1697\"* my|strong=\"H5641\"* father hide|strong=\"H5641\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H4480\"*? It|strong=\"H6213\"* is|strong=\"H2088\"* not|strong=\"H3808\"* so|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* swore|strong=\"H7650\"* moreover|strong=\"H5750\"*, and|strong=\"H3068\"* said, “Your|strong=\"H3068\"* father knows|strong=\"H3045\"* well|strong=\"H5869\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* says, ‘Don’t let|strong=\"H5315\"* Jonathan|strong=\"H3083\"* know|strong=\"H3045\"* this|strong=\"H2063\"*, lest|strong=\"H6435\"* he|strong=\"H3588\"* be|strong=\"H5750\"* grieved|strong=\"H6087\"*;’ but|strong=\"H3588\"* truly|strong=\"H3588\"* as|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H3068\"* as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, there|strong=\"H4672\"* is|strong=\"H3068\"* but|strong=\"H3588\"* a|strong=\"H3068\"* step|strong=\"H6587\"* between|strong=\"H3045\"* me|strong=\"H5315\"* and|strong=\"H3068\"* death|strong=\"H4194\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6213\"* Jonathan|strong=\"H3083\"* said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Whatever|strong=\"H4100\"* your|strong=\"H6213\"* soul|strong=\"H5315\"* desires, I|strong=\"H5315\"* will|strong=\"H5315\"* even|strong=\"H6213\"* do|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Jonathan|strong=\"H3083\"*, “Behold|strong=\"H2009\"*, tomorrow|strong=\"H4279\"* is|strong=\"H2009\"* the|strong=\"H5704\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, and|strong=\"H7971\"* I|strong=\"H5704\"* should|strong=\"H1732\"* not|strong=\"H1732\"* fail|strong=\"H3427\"* to|strong=\"H5704\"* dine with|strong=\"H5973\"* the|strong=\"H5704\"* king|strong=\"H4428\"*; but|strong=\"H2009\"* let|strong=\"H7971\"* me|strong=\"H7971\"* go|strong=\"H7971\"*, that|strong=\"H4428\"* I|strong=\"H5704\"* may|strong=\"H4428\"* hide|strong=\"H5641\"* myself in|strong=\"H3427\"* the|strong=\"H5704\"* field|strong=\"H7704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* third|strong=\"H7992\"* day|strong=\"H2320\"* at|strong=\"H3427\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* your|strong=\"H3605\"* father misses|strong=\"H6485\"* me|strong=\"H4480\"* at|strong=\"H1732\"* all|strong=\"H3605\"*, then|strong=\"H3588\"* say, ‘David|strong=\"H1732\"* earnestly|strong=\"H7592\"* asked|strong=\"H7592\"* leave|strong=\"H4480\"* of|strong=\"H3117\"* me|strong=\"H4480\"* that|strong=\"H3588\"* he|strong=\"H3588\"* might run|strong=\"H7323\"* to|strong=\"H3117\"* Bethlehem|strong=\"H1035\"*, his|strong=\"H3605\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* the|strong=\"H3605\"* yearly|strong=\"H3117\"* sacrifice|strong=\"H2077\"* there|strong=\"H8033\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* family|strong=\"H4940\"*.’" + }, + { + "verseNum": 7, + "text": "If|strong=\"H3588\"* he|strong=\"H3588\"* says|strong=\"H3541\"*, ‘It|strong=\"H3588\"* is|strong=\"H2896\"* well|strong=\"H7965\"*,’ your|strong=\"H3045\"* servant|strong=\"H5650\"* shall|strong=\"H5650\"* have|strong=\"H3045\"* peace|strong=\"H7965\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H2896\"* angry|strong=\"H2734\"*, then|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* evil|strong=\"H7451\"* is|strong=\"H2896\"* determined|strong=\"H3615\"* by|strong=\"H7451\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H5921\"* deal|strong=\"H6213\"* kindly|strong=\"H2617\"* with|strong=\"H5973\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* brought|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* into|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3068\"* iniquity|strong=\"H5771\"* in|strong=\"H5921\"* me|strong=\"H5921\"*, kill|strong=\"H4191\"* me|strong=\"H5921\"* yourself|strong=\"H6213\"*, for|strong=\"H3588\"* why|strong=\"H4100\"* should|strong=\"H3068\"* you|strong=\"H3588\"* bring|strong=\"H6213\"* me|strong=\"H5921\"* to|strong=\"H5704\"* your|strong=\"H3068\"* father?”" + }, + { + "verseNum": 9, + "text": "Jonathan|strong=\"H3083\"* said, “Far|strong=\"H2486\"* be|strong=\"H3808\"* it|strong=\"H5921\"* from|strong=\"H5921\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* at|strong=\"H5921\"* all|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3588\"* evil|strong=\"H7451\"* were|strong=\"H5921\"* determined|strong=\"H3615\"* by|strong=\"H5921\"* my|strong=\"H5921\"* father to|strong=\"H5921\"* come|strong=\"H3615\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, then|strong=\"H3588\"* wouldn’t I|strong=\"H3588\"* tell|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"*?”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* said|strong=\"H6030\"* to|strong=\"H1732\"* Jonathan|strong=\"H3083\"*, “Who|strong=\"H4310\"* will|strong=\"H4310\"* tell|strong=\"H5046\"* me|strong=\"H5046\"* if your|strong=\"H5046\"* father answers|strong=\"H6030\"* you|strong=\"H5046\"* roughly|strong=\"H7186\"*?”" + }, + { + "verseNum": 11, + "text": "Jonathan|strong=\"H3083\"* said|strong=\"H3318\"* to|strong=\"H3318\"* David|strong=\"H1732\"*, “Come|strong=\"H3318\"*! Let|strong=\"H3212\"*’s go|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3318\"* field|strong=\"H7704\"*.” They|strong=\"H3318\"* both|strong=\"H8147\"* went|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 12, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H3478\"* David|strong=\"H1732\"*, “By|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* sounded|strong=\"H2713\"* out|strong=\"H7971\"* my|strong=\"H3068\"* father about|strong=\"H6256\"* this|strong=\"H3588\"* time|strong=\"H6256\"* tomorrow|strong=\"H4279\"*, or|strong=\"H3808\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H6256\"*, behold|strong=\"H2009\"*, if|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* good|strong=\"H2896\"* toward|strong=\"H3068\"* David|strong=\"H1732\"*, won’t I|strong=\"H3588\"* then|strong=\"H2009\"* send|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H3588\"* and|strong=\"H3478\"* disclose|strong=\"H1540\"* it|strong=\"H3588\"* to|strong=\"H3478\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1980\"* Jonathan|strong=\"H3083\"* and|strong=\"H1980\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, should|strong=\"H3068\"* it|strong=\"H5921\"* please|strong=\"H3190\"* my|strong=\"H3068\"* father to|strong=\"H1980\"* do|strong=\"H6213\"* you|strong=\"H3588\"* evil|strong=\"H7451\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* don’t disclose|strong=\"H1540\"* it|strong=\"H5921\"* to|strong=\"H1980\"* you|strong=\"H3588\"* and|strong=\"H1980\"* send|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* go|strong=\"H1980\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*. May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"* as|strong=\"H1961\"* he|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* with|strong=\"H5973\"* my|strong=\"H3068\"* father." + }, + { + "verseNum": 14, + "text": "You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* only show|strong=\"H6213\"* me|strong=\"H5978\"* the|strong=\"H6213\"* loving kindness|strong=\"H2617\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* while|strong=\"H5750\"* I|strong=\"H3808\"* still|strong=\"H5750\"* live|strong=\"H2416\"*, that|strong=\"H3068\"* I|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3808\"* you|strong=\"H6440\"* shall|strong=\"H3068\"* also|strong=\"H3068\"* not|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* your|strong=\"H3068\"* kindness|strong=\"H2617\"* from|strong=\"H6440\"* my|strong=\"H3068\"* house|strong=\"H1004\"* forever|strong=\"H5769\"*, no|strong=\"H3808\"*, not|strong=\"H3808\"* when|strong=\"H5704\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* every|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H1004\"* the|strong=\"H6440\"* enemies of|strong=\"H1004\"* David|strong=\"H1732\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H3027\"* Jonathan|strong=\"H3083\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* require|strong=\"H1245\"* it|strong=\"H3772\"* at|strong=\"H3068\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 17, + "text": "Jonathan|strong=\"H3083\"* caused|strong=\"H3083\"* David|strong=\"H1732\"* to|strong=\"H1732\"* swear|strong=\"H7650\"* again|strong=\"H3254\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* love that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* to|strong=\"H1732\"* him|strong=\"H1732\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* loved him|strong=\"H1732\"* as|strong=\"H5315\"* he|strong=\"H3588\"* loved his|strong=\"H1732\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* Jonathan|strong=\"H3083\"* said to|strong=\"H2320\"* him|strong=\"H6485\"*, “Tomorrow|strong=\"H4279\"* is|strong=\"H2320\"* the|strong=\"H3588\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, and|strong=\"H3083\"* you|strong=\"H3588\"* will|strong=\"H2320\"* be|strong=\"H2320\"* missed|strong=\"H6485\"*, because|strong=\"H3588\"* your|strong=\"H3588\"* seat|strong=\"H4186\"* will|strong=\"H2320\"* be|strong=\"H2320\"* empty|strong=\"H6485\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* stayed|strong=\"H3427\"* three|strong=\"H8027\"* days|strong=\"H3117\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* quickly|strong=\"H3966\"* and|strong=\"H3117\"* come|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3117\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H3117\"* hid|strong=\"H5641\"* yourself|strong=\"H8033\"* when|strong=\"H3117\"* this|strong=\"H3117\"* started, and|strong=\"H3117\"* remain|strong=\"H3427\"* by|strong=\"H3117\"* the|strong=\"H3117\"* stone Ezel." + }, + { + "verseNum": 20, + "text": "I|strong=\"H7971\"* will|strong=\"H7971\"* shoot|strong=\"H3384\"* three|strong=\"H7969\"* arrows|strong=\"H2678\"* on|strong=\"H7971\"* its|strong=\"H3384\"* side|strong=\"H6654\"*, as though I|strong=\"H7971\"* shot|strong=\"H3384\"* at|strong=\"H7969\"* a|strong=\"H3068\"* mark|strong=\"H4307\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H3588\"* boy|strong=\"H5288\"*, saying|strong=\"H1697\"*, ‘Go|strong=\"H3212\"*, find|strong=\"H4672\"* the|strong=\"H3588\"* arrows|strong=\"H2678\"*!’ If|strong=\"H3588\"* I|strong=\"H3588\"* tell the|strong=\"H3588\"* boy|strong=\"H5288\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3588\"* arrows|strong=\"H2678\"* are|strong=\"H1697\"* on|strong=\"H3068\"* this|strong=\"H1697\"* side|strong=\"H2008\"* of|strong=\"H3068\"* you|strong=\"H3588\"*. Take|strong=\"H3947\"* them|strong=\"H7971\"*;’ then|strong=\"H2009\"* come|strong=\"H3212\"*, for|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* peace|strong=\"H7965\"* to|strong=\"H3068\"* you|strong=\"H3588\"* and|strong=\"H3068\"* no|strong=\"H4480\"* danger, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* I|strong=\"H3588\"* say this|strong=\"H3541\"* to|strong=\"H3212\"* the|strong=\"H3588\"* boy|strong=\"H5958\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3588\"* arrows|strong=\"H2678\"* are|strong=\"H3068\"* beyond|strong=\"H4480\"* you|strong=\"H3588\"*,’ then|strong=\"H2009\"* go|strong=\"H3212\"* your|strong=\"H3068\"* way|strong=\"H3212\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "Concerning|strong=\"H1697\"* the|strong=\"H3068\"* matter|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H5704\"* and|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H3068\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* between|strong=\"H5704\"* you|strong=\"H5704\"* and|strong=\"H3068\"* me|strong=\"H1696\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H1961\"* David|strong=\"H1732\"* hid|strong=\"H5641\"* himself|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* field|strong=\"H7704\"*. When|strong=\"H1961\"* the|strong=\"H5921\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* had|strong=\"H1961\"* come|strong=\"H1961\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* himself|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* food|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H1732\"* seat|strong=\"H4186\"*, as|strong=\"H3427\"* at|strong=\"H3427\"* other|strong=\"H6471\"* times|strong=\"H6471\"*, even|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seat|strong=\"H4186\"* by|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"*; and|strong=\"H6965\"* Jonathan|strong=\"H3083\"* stood|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* Abner sat|strong=\"H3427\"* by|strong=\"H5921\"* Saul|strong=\"H7586\"*’s side|strong=\"H6654\"*, but|strong=\"H4428\"* David|strong=\"H1732\"*’s place|strong=\"H4725\"* was|strong=\"H1732\"* empty|strong=\"H6485\"*." + }, + { + "verseNum": 26, + "text": "Nevertheless|strong=\"H3588\"* Saul|strong=\"H7586\"* didn’t say|strong=\"H1696\"* anything|strong=\"H3972\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* thought|strong=\"H1696\"*, “Something|strong=\"H3972\"* has|strong=\"H3117\"* happened to|strong=\"H1696\"* him|strong=\"H1931\"*. He|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*. Surely|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*.”" + }, + { + "verseNum": 27, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moon|strong=\"H2320\"*, the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, David|strong=\"H1732\"*’s place|strong=\"H4725\"* was|strong=\"H1961\"* empty|strong=\"H6485\"*. Saul|strong=\"H7586\"* said to|strong=\"H1961\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"*, “Why|strong=\"H4069\"* didn’t the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* come|strong=\"H1961\"* to|strong=\"H1961\"* eat|strong=\"H3899\"*, either|strong=\"H1571\"* yesterday|strong=\"H8543\"*, or|strong=\"H3808\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 28, + "text": "Jonathan|strong=\"H3083\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"*, “David|strong=\"H1732\"* earnestly|strong=\"H7592\"* asked|strong=\"H7592\"* permission of|strong=\"H7592\"* me|strong=\"H5978\"* to|strong=\"H5704\"* go|strong=\"H1732\"* to|strong=\"H5704\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1931\"* said|strong=\"H3651\"*, ‘Please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* go|strong=\"H7971\"*, for|strong=\"H3588\"* our|strong=\"H7200\"* family|strong=\"H4940\"* has|strong=\"H4428\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*. My|strong=\"H7200\"* brother has|strong=\"H4428\"* commanded|strong=\"H6680\"* me|strong=\"H4994\"* to|strong=\"H7971\"* be|strong=\"H3808\"* there|strong=\"H4672\"*. Now|strong=\"H6258\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* me|strong=\"H4994\"* go|strong=\"H7971\"* away|strong=\"H7971\"* and|strong=\"H7971\"* see|strong=\"H7200\"* my|strong=\"H7200\"* brothers.’ Therefore|strong=\"H3651\"* he|strong=\"H1931\"* has|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H4672\"* to|strong=\"H7971\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3588\"* Saul|strong=\"H7586\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Jonathan|strong=\"H3083\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* said to|strong=\"H1121\"* him|strong=\"H3045\"*, “You|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* perverse|strong=\"H5753\"* rebellious|strong=\"H4780\"* woman, don’t I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3045\"* chosen|strong=\"H3045\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* to|strong=\"H1121\"* your|strong=\"H3045\"* own shame|strong=\"H1322\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3588\"* shame|strong=\"H1322\"* of|strong=\"H1121\"* your|strong=\"H3045\"* mother’s nakedness|strong=\"H6172\"*?" + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* lives|strong=\"H2425\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth, you|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"*, nor|strong=\"H3808\"* will|strong=\"H1121\"* your|strong=\"H3605\"* kingdom|strong=\"H4438\"*. Therefore|strong=\"H5921\"* now|strong=\"H6258\"* send|strong=\"H7971\"* and|strong=\"H1121\"* bring|strong=\"H3947\"* him|strong=\"H5921\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* surely|strong=\"H3588\"* die|strong=\"H4194\"*!”" + }, + { + "verseNum": 32, + "text": "Jonathan|strong=\"H3083\"* answered|strong=\"H6030\"* Saul|strong=\"H7586\"* his|strong=\"H6213\"* father, and|strong=\"H6030\"* said|strong=\"H6030\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “Why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H6213\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*? What|strong=\"H4100\"* has|strong=\"H4100\"* he|strong=\"H6213\"* done|strong=\"H6213\"*?”" + }, + { + "verseNum": 33, + "text": "Saul|strong=\"H7586\"* cast|strong=\"H2904\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* at|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* strike|strong=\"H5221\"* him|strong=\"H5921\"*. By|strong=\"H5921\"* this|strong=\"H1931\"* Jonathan|strong=\"H3083\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* his|strong=\"H1732\"* father was|strong=\"H1732\"* determined|strong=\"H3617\"* to|strong=\"H4191\"* put|strong=\"H4191\"* David|strong=\"H1732\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + }, + { + "verseNum": 34, + "text": "So|strong=\"H3808\"* Jonathan|strong=\"H3083\"* arose|strong=\"H6965\"* from|strong=\"H3117\"* the|strong=\"H3588\"* table|strong=\"H7979\"* in|strong=\"H3117\"* fierce|strong=\"H2750\"* anger, and|strong=\"H6965\"* ate no|strong=\"H3808\"* food|strong=\"H3899\"* the|strong=\"H3588\"* second|strong=\"H8145\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3588\"* month|strong=\"H2320\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* grieved|strong=\"H6087\"* for|strong=\"H3588\"* David|strong=\"H1732\"*, because|strong=\"H3588\"* his|strong=\"H1732\"* father had|strong=\"H1732\"* treated him|strong=\"H5973\"* shamefully." + }, + { + "verseNum": 35, + "text": "In|strong=\"H1732\"* the|strong=\"H3318\"* morning|strong=\"H1242\"*, Jonathan|strong=\"H3083\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"* at|strong=\"H1732\"* the|strong=\"H3318\"* time|strong=\"H4150\"* appointed|strong=\"H4150\"* with|strong=\"H5973\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* a|strong=\"H3068\"* little|strong=\"H6996\"* boy|strong=\"H5288\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H1931\"* said to|strong=\"H5674\"* his|strong=\"H5674\"* boy|strong=\"H5288\"*, “Run|strong=\"H7323\"*, find|strong=\"H4672\"* now|strong=\"H4994\"* the|strong=\"H5674\"* arrows|strong=\"H2678\"* which|strong=\"H1931\"* I|strong=\"H5288\"* shoot|strong=\"H3384\"*.” As the|strong=\"H5674\"* boy|strong=\"H5288\"* ran|strong=\"H7323\"*, he|strong=\"H1931\"* shot|strong=\"H3384\"* an|strong=\"H4672\"* arrow|strong=\"H2678\"* beyond|strong=\"H5674\"* him|strong=\"H4672\"*." + }, + { + "verseNum": 37, + "text": "When|strong=\"H5704\"* the|strong=\"H4480\"* boy|strong=\"H5288\"* had|strong=\"H3083\"* come|strong=\"H5288\"* to|strong=\"H5704\"* the|strong=\"H4480\"* place|strong=\"H4725\"* of|strong=\"H4480\"* the|strong=\"H4480\"* arrow|strong=\"H2678\"* which|strong=\"H4725\"* Jonathan|strong=\"H3083\"* had|strong=\"H3083\"* shot|strong=\"H3384\"*, Jonathan|strong=\"H3083\"* cried|strong=\"H7121\"* after|strong=\"H4480\"* the|strong=\"H4480\"* boy|strong=\"H5288\"*, and|strong=\"H5288\"* said|strong=\"H7121\"*, “Isn’t the|strong=\"H4480\"* arrow|strong=\"H2678\"* beyond|strong=\"H4480\"* you|strong=\"H5704\"*?”" + }, + { + "verseNum": 38, + "text": "Jonathan|strong=\"H3083\"* cried|strong=\"H7121\"* after|strong=\"H7121\"* the|strong=\"H7121\"* boy|strong=\"H5288\"*, “Go|strong=\"H5288\"* fast|strong=\"H5975\"*! Hurry|strong=\"H2363\"*! Don’t delay|strong=\"H5975\"*!” Jonathan|strong=\"H3083\"*’s boy|strong=\"H5288\"* gathered|strong=\"H3950\"* up|strong=\"H5975\"* the|strong=\"H7121\"* arrows|strong=\"H2678\"*, and|strong=\"H5288\"* came to|strong=\"H7121\"* his|strong=\"H7121\"* master." + }, + { + "verseNum": 39, + "text": "But|strong=\"H3808\"* the|strong=\"H3045\"* boy|strong=\"H5288\"* didn’t know|strong=\"H3045\"* anything|strong=\"H1697\"*. Only Jonathan|strong=\"H3083\"* and|strong=\"H1732\"* David|strong=\"H1732\"* knew|strong=\"H3045\"* the|strong=\"H3045\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 40, + "text": "Jonathan|strong=\"H3083\"* gave|strong=\"H5414\"* his|strong=\"H5414\"* weapons|strong=\"H3627\"* to|strong=\"H3212\"* his|strong=\"H5414\"* boy|strong=\"H5288\"*, and|strong=\"H3212\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Go|strong=\"H3212\"*, carry|strong=\"H3212\"* them|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H5414\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 41, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* the|strong=\"H5704\"* boy|strong=\"H5288\"* was|strong=\"H1732\"* gone|strong=\"H5307\"*, David|strong=\"H1732\"* arose|strong=\"H6965\"* out|strong=\"H5307\"* of|strong=\"H5045\"* the|strong=\"H5704\"* south|strong=\"H5045\"*, and|strong=\"H6965\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* his|strong=\"H1732\"* face to|strong=\"H5704\"* the|strong=\"H5704\"* ground, and|strong=\"H6965\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* three|strong=\"H7969\"* times|strong=\"H6471\"*. They|strong=\"H5704\"* kissed|strong=\"H5401\"* one|strong=\"H7453\"* another|strong=\"H7453\"* and|strong=\"H6965\"* wept|strong=\"H1058\"* with|strong=\"H1732\"* one|strong=\"H7453\"* another|strong=\"H7453\"*, and|strong=\"H6965\"* David|strong=\"H1732\"* wept|strong=\"H1058\"* the|strong=\"H5704\"* most." + }, + { + "verseNum": 42, + "text": "Jonathan|strong=\"H3083\"* said to|strong=\"H5704\"* David|strong=\"H1732\"*, “Go|strong=\"H1980\"* in|strong=\"H1980\"* peace|strong=\"H7965\"*, because|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H1961\"* both|strong=\"H8147\"* sworn|strong=\"H7650\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, saying, ‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* between|strong=\"H7965\"* me|strong=\"H1961\"* and|strong=\"H1980\"* you|strong=\"H5704\"*, and|strong=\"H1980\"* between|strong=\"H7965\"* my|strong=\"H3068\"* offspring|strong=\"H2233\"* and|strong=\"H1980\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, forever|strong=\"H5769\"*.’” He|strong=\"H5704\"* arose and|strong=\"H1980\"* departed|strong=\"H1980\"*; and|strong=\"H1980\"* Jonathan|strong=\"H3083\"* went|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H3068\"* city." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6965\"* David came|strong=\"H3212\"* to|strong=\"H3212\"* Nob to|strong=\"H3212\"* Ahimelech the|strong=\"H6965\"* priest. Ahimelech came|strong=\"H3212\"* to|strong=\"H3212\"* meet David trembling, and|strong=\"H6965\"* said to|strong=\"H3212\"* him|strong=\"H3083\"*, “Why are|strong=\"H5892\"* you|strong=\"H3212\"* alone, and|strong=\"H6965\"* no|strong=\"H6965\"* man with|strong=\"H3212\"* you|strong=\"H3212\"*?”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H1732\"* Ahimelech the|strong=\"H1732\"* priest|strong=\"H3548\"*, “The|strong=\"H1732\"* king has|strong=\"H3548\"* commanded me to|strong=\"H1732\"* do something, and|strong=\"H3548\"* has|strong=\"H3548\"* said to|strong=\"H1732\"* me, ‘Let no one know anything|strong=\"H7122\"* about|strong=\"H1732\"* the|strong=\"H1732\"* business about|strong=\"H1732\"* which|strong=\"H3548\"* I|strong=\"H7122\"* send you|strong=\"H7122\"*, and|strong=\"H3548\"* what|strong=\"H1732\"* I|strong=\"H7122\"* have|strong=\"H3548\"* commanded you|strong=\"H7122\"*. I|strong=\"H7122\"* have|strong=\"H3548\"* sent|strong=\"H1732\"* the|strong=\"H1732\"* young|strong=\"H1732\"* men to|strong=\"H1732\"* a|strong=\"H3068\"* certain place.’" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H4428\"* therefore|strong=\"H1732\"* what|strong=\"H1697\"* is|strong=\"H1697\"* under your|strong=\"H3045\"* hand? Please give|strong=\"H6680\"* me|strong=\"H7971\"* five loaves of|strong=\"H4428\"* bread in|strong=\"H4428\"* my|strong=\"H1732\"* hand, or|strong=\"H4428\"* whatever is|strong=\"H1697\"* available.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5414\"* priest answered David|strong=\"H3027\"*, and|strong=\"H3027\"* said, “I|strong=\"H5414\"* have|strong=\"H3426\"* no|strong=\"H4672\"* common bread|strong=\"H3899\"*, but|strong=\"H6258\"* there|strong=\"H3426\"* is|strong=\"H3426\"* holy bread|strong=\"H3899\"*; if|strong=\"H3426\"* only the|strong=\"H5414\"* young|strong=\"H4672\"* men have|strong=\"H3426\"* kept|strong=\"H5414\"* themselves|strong=\"H5414\"* from|strong=\"H3027\"* women.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*, and|strong=\"H6030\"* said|strong=\"H6030\"* to|strong=\"H8104\"* him|strong=\"H3027\"*, “Truly|strong=\"H3588\"*, women have|strong=\"H3426\"* been|strong=\"H3426\"* kept|strong=\"H8104\"* from|strong=\"H3027\"* us|strong=\"H3588\"* as|strong=\"H3588\"* usual these|strong=\"H1732\"* three days. When|strong=\"H3588\"* I|strong=\"H3588\"* came|strong=\"H3548\"* out|strong=\"H3027\"*, the|strong=\"H3588\"* vessels of|strong=\"H3027\"* the|strong=\"H3588\"* young|strong=\"H5288\"* men|strong=\"H5288\"* were|strong=\"H3027\"* holy|strong=\"H6944\"*, though|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1732\"* only|strong=\"H3588\"* a|strong=\"H3068\"* common|strong=\"H2455\"* journey. How|strong=\"H3588\"* much|strong=\"H3027\"* more|strong=\"H3588\"* then|strong=\"H6030\"* today shall|strong=\"H3548\"* their|strong=\"H3588\"* vessels be|strong=\"H3426\"* holy|strong=\"H6944\"*?”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* gave|strong=\"H3318\"* him|strong=\"H3318\"* holy|strong=\"H6944\"* bread; for|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H6113\"* bread there|strong=\"H1961\"* but|strong=\"H3588\"* the|strong=\"H3588\"* show|strong=\"H1961\"* bread that|strong=\"H3588\"* was|strong=\"H1961\"* taken|strong=\"H1961\"* from|strong=\"H3318\"* before|strong=\"H8032\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3318\"* be|strong=\"H1961\"* replaced with|strong=\"H3318\"* hot bread in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* when|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* taken|strong=\"H1961\"* away|strong=\"H3318\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* a|strong=\"H3068\"* certain man|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H6440\"* of|strong=\"H3068\"* Saul was|strong=\"H3068\"* there|strong=\"H8033\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, detained before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* his|strong=\"H5414\"* name was|strong=\"H3068\"* Doeg the|strong=\"H6440\"* Edomite, the|strong=\"H6440\"* best of|strong=\"H3068\"* the|strong=\"H6440\"* herdsmen who|strong=\"H3068\"* belonged|strong=\"H1961\"* to|strong=\"H3068\"* Saul." + }, + { + "verseNum": 8, + "text": "David|strong=\"H3117\"* said to|strong=\"H3068\"* Ahimelech, “Isn’t there|strong=\"H8033\"* here|strong=\"H8033\"* under|strong=\"H6440\"* your|strong=\"H3068\"* hand spear or|strong=\"H3117\"* sword? For|strong=\"H6440\"* I|strong=\"H3117\"* haven’t brought|strong=\"H3068\"* my|strong=\"H3068\"* sword or|strong=\"H3117\"* my|strong=\"H3068\"* weapons with|strong=\"H3068\"* me|strong=\"H6440\"*, because|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H6440\"*’s business required|strong=\"H3117\"* haste.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* priest said|strong=\"H1697\"*, “Behold|strong=\"H3808\"*, the|strong=\"H3588\"* sword|strong=\"H2719\"* of|strong=\"H4428\"* Goliath the|strong=\"H3588\"* Philistine, whom|strong=\"H3588\"* you|strong=\"H3588\"* killed|strong=\"H2719\"* in|strong=\"H4428\"* the|strong=\"H3588\"* valley of|strong=\"H4428\"* Elah, is|strong=\"H3426\"* here|strong=\"H6311\"* wrapped in|strong=\"H4428\"* a|strong=\"H3068\"* cloth behind the|strong=\"H3588\"* ephod. If|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H1697\"* like|strong=\"H1961\"* to|strong=\"H1961\"* take|strong=\"H3947\"* that|strong=\"H3588\"*, take|strong=\"H3947\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3808\"* other|strong=\"H6311\"* except|strong=\"H3588\"* that|strong=\"H3588\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* arose and|strong=\"H3548\"* fled that|strong=\"H3588\"* day for|strong=\"H3588\"* fear of|strong=\"H6010\"* Saul|strong=\"H1931\"*, and|strong=\"H3548\"* went|strong=\"H1732\"* to|strong=\"H5414\"* Achish the|strong=\"H3588\"* king of|strong=\"H6010\"* Gath." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* servants|strong=\"H6440\"* of|strong=\"H4428\"* Achish said to|strong=\"H6440\"* him|strong=\"H6440\"*, “Isn’t this|strong=\"H1931\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*? Didn’t they|strong=\"H3117\"* sing to|strong=\"H6440\"* one|strong=\"H1931\"* another|strong=\"H6440\"* about|strong=\"H3117\"* him|strong=\"H6440\"* in|strong=\"H4428\"* dances, saying," + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* laid|strong=\"H1732\"* up|strong=\"H6030\"* these|strong=\"H2088\"* words in|strong=\"H4428\"* his|strong=\"H1732\"* heart, and|strong=\"H6030\"* was|strong=\"H1732\"* very|strong=\"H2088\"* afraid of|strong=\"H4428\"* Achish the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Gath." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1732\"* changed his|strong=\"H7760\"* behavior before|strong=\"H6440\"* them|strong=\"H6440\"* and|strong=\"H4428\"* pretended to|strong=\"H6440\"* be|strong=\"H1697\"* insane in|strong=\"H4428\"* their|strong=\"H7760\"* hands, and|strong=\"H4428\"* scribbled on|strong=\"H7760\"* the|strong=\"H6440\"* doors of|strong=\"H4428\"* the|strong=\"H6440\"* gate, and|strong=\"H4428\"* let|strong=\"H7760\"* his|strong=\"H7760\"* spittle fall down|strong=\"H7760\"* on|strong=\"H7760\"* his|strong=\"H7760\"* beard." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3381\"* Achish said to|strong=\"H3381\"* his|strong=\"H5921\"* servants, “Look|strong=\"H5869\"*, you|strong=\"H5921\"* see|strong=\"H5869\"* the|strong=\"H5921\"* man|strong=\"H8179\"* is|strong=\"H3027\"* insane. Why|strong=\"H5921\"* then|strong=\"H3381\"* have|strong=\"H5869\"* you|strong=\"H5921\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* to|strong=\"H3381\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 15, + "text": "Do|strong=\"H4100\"* I|strong=\"H2009\"* lack madmen|strong=\"H7696\"*, that|strong=\"H7200\"* you|strong=\"H4100\"* have|strong=\"H5650\"* brought|strong=\"H5650\"* this|strong=\"H7200\"* fellow|strong=\"H7696\"* to|strong=\"H5650\"* play the|strong=\"H7200\"* madman|strong=\"H7696\"* in|strong=\"H5650\"* my|strong=\"H7200\"* presence? Should|strong=\"H4100\"* this|strong=\"H7200\"* fellow|strong=\"H7696\"* come into|strong=\"H7200\"* my|strong=\"H7200\"* house?”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* departed|strong=\"H3212\"* from|strong=\"H3381\"* there|strong=\"H8033\"* and|strong=\"H1004\"* escaped|strong=\"H4422\"* to|strong=\"H3381\"* Adullam|strong=\"H5725\"*’s cave|strong=\"H4631\"*. When|strong=\"H8085\"* his|strong=\"H3605\"* brothers and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"* heard|strong=\"H8085\"* it|strong=\"H3381\"*, they|strong=\"H8033\"* went|strong=\"H3212\"* down|strong=\"H3381\"* there|strong=\"H8033\"* to|strong=\"H3381\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 2, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* distress|strong=\"H4689\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* debt|strong=\"H5378\"*, and|strong=\"H3967\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H1961\"* discontented|strong=\"H4751\"* gathered|strong=\"H6908\"* themselves|strong=\"H5315\"* to|strong=\"H1961\"* him|strong=\"H5921\"*; and|strong=\"H3967\"* he|strong=\"H3605\"* became|strong=\"H1961\"* captain|strong=\"H8269\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. There|strong=\"H1961\"* were|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5921\"* about|strong=\"H1961\"* four hundred|strong=\"H3967\"* men|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* went|strong=\"H3212\"* from|strong=\"H3318\"* there|strong=\"H8033\"* to|strong=\"H5704\"* Mizpeh|strong=\"H4708\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H4428\"* he|strong=\"H5704\"* said|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H1732\"* father and|strong=\"H4428\"* my|strong=\"H1732\"* mother come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* know|strong=\"H3045\"* what|strong=\"H4100\"* God will|strong=\"H4428\"* do|strong=\"H6213\"* for|strong=\"H5704\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* brought|strong=\"H5148\"* them|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*; and|strong=\"H4428\"* they|strong=\"H3117\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* him|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* David|strong=\"H1732\"* was|strong=\"H1961\"* in|strong=\"H3427\"* the|strong=\"H3605\"* stronghold|strong=\"H4686\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1732\"* prophet|strong=\"H5030\"* Gad|strong=\"H1410\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Don’t stay|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*. Depart|strong=\"H3212\"*, and|strong=\"H3063\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H1732\"* land of|strong=\"H3427\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 6, + "text": "Saul|strong=\"H7586\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* was|strong=\"H1732\"* discovered|strong=\"H3045\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H3027\"* with|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H1732\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* Gibeah|strong=\"H1390\"*, under|strong=\"H8478\"* the|strong=\"H3605\"* tamarisk tree in|strong=\"H3427\"* Ramah, with|strong=\"H5921\"* his|strong=\"H3605\"* spear|strong=\"H2595\"* in|strong=\"H3427\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* were|strong=\"H3027\"* standing|strong=\"H5324\"* around|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"* to|strong=\"H5921\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* stood|strong=\"H5324\"* around|strong=\"H5921\"* him|strong=\"H5414\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H5414\"* Benjamites! Will|strong=\"H5650\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* give|strong=\"H5414\"* everyone|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H5414\"* fields|strong=\"H7704\"* and|strong=\"H3967\"* vineyards|strong=\"H3754\"*? Will|strong=\"H5650\"* he|strong=\"H3605\"* make|strong=\"H7760\"* you|strong=\"H5414\"* all|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*?" + }, + { + "verseNum": 8, + "text": "Is|strong=\"H2088\"* that|strong=\"H3588\"* why|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no|strong=\"H4480\"* one|strong=\"H2088\"* who|strong=\"H3605\"* discloses|strong=\"H1540\"* to|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H3588\"* my|strong=\"H3605\"* son|strong=\"H1121\"* makes|strong=\"H3772\"* a|strong=\"H3068\"* treaty with|strong=\"H5973\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* none|strong=\"H3605\"* of|strong=\"H1121\"* you|strong=\"H3588\"* who|strong=\"H3605\"* is|strong=\"H2088\"* sorry|strong=\"H2470\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, or|strong=\"H3117\"* discloses|strong=\"H1540\"* to|strong=\"H5921\"* me|strong=\"H5921\"* that|strong=\"H3588\"* my|strong=\"H3605\"* son|strong=\"H1121\"* has|strong=\"H5650\"* stirred|strong=\"H6965\"* up|strong=\"H6965\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, to|strong=\"H5921\"* lie in|strong=\"H5921\"* wait, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H2088\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* Doeg|strong=\"H1673\"* the|strong=\"H5921\"* Edomite, who|strong=\"H1931\"* stood|strong=\"H5324\"* by|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* coming|strong=\"H5650\"* to|strong=\"H5921\"* Nob|strong=\"H5011\"*, to|strong=\"H5921\"* Ahimelech the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3068\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* him|strong=\"H5414\"*, gave|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H6720\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Goliath|strong=\"H1555\"* the|strong=\"H5414\"* Philistine|strong=\"H6430\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* call|strong=\"H7121\"* Ahimelech the|strong=\"H3605\"* priest|strong=\"H3548\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1004\"* Nob|strong=\"H5011\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* all|strong=\"H3605\"* came|strong=\"H3548\"* to|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Saul|strong=\"H7586\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* now|strong=\"H4994\"*, you|strong=\"H4994\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub.”" + }, + { + "verseNum": 13, + "text": "Saul|strong=\"H7586\"* said to|strong=\"H5921\"* him|strong=\"H5414\"*, “Why|strong=\"H4100\"* have|strong=\"H1121\"* you|strong=\"H5414\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, you|strong=\"H5414\"* and|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*, in|strong=\"H5921\"* that|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* bread|strong=\"H3899\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* inquired|strong=\"H7592\"* of|strong=\"H1121\"* God|strong=\"H5414\"* for|strong=\"H5921\"* him|strong=\"H5414\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* should|strong=\"H4100\"* rise|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, to|strong=\"H5921\"* lie|strong=\"H5414\"* in|strong=\"H5921\"* wait, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Ahimelech answered|strong=\"H6030\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H6030\"* said|strong=\"H6030\"*, “Who|strong=\"H4310\"* among|strong=\"H4310\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* is|strong=\"H4310\"* so|strong=\"H5493\"* faithful as|strong=\"H1004\"* David|strong=\"H1732\"*, who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s son-in-law|strong=\"H2860\"*, captain of|strong=\"H4428\"* your|strong=\"H3605\"* body guard|strong=\"H4928\"*, and|strong=\"H6030\"* honored|strong=\"H3513\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?" + }, + { + "verseNum": 15, + "text": "Have|strong=\"H3045\"* I|strong=\"H3588\"* today|strong=\"H3117\"* begun|strong=\"H2490\"* to|strong=\"H3117\"* inquire|strong=\"H7592\"* of|strong=\"H4428\"* God|strong=\"H3808\"* for|strong=\"H3588\"* him|strong=\"H7760\"*? Be|strong=\"H3808\"* it|strong=\"H7760\"* far|strong=\"H2486\"* from|strong=\"H3117\"* me|strong=\"H7760\"*! Don’t let|strong=\"H7760\"* the|strong=\"H3605\"* king|strong=\"H4428\"* impute|strong=\"H7760\"* anything|strong=\"H3605\"* to|strong=\"H3117\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, nor|strong=\"H3808\"* to|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* my|strong=\"H3605\"* father; for|strong=\"H3588\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* knew|strong=\"H3045\"* nothing|strong=\"H3808\"* of|strong=\"H4428\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, less|strong=\"H6996\"* or|strong=\"H3808\"* more|strong=\"H1419\"*.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said, “You|strong=\"H3605\"* shall|strong=\"H4428\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*, Ahimelech, you|strong=\"H3605\"* and|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* the|strong=\"H5921\"* guard|strong=\"H7323\"* who|strong=\"H1931\"* stood|strong=\"H5324\"* about|strong=\"H5437\"* him|strong=\"H5921\"*, “Turn|strong=\"H5437\"* and|strong=\"H3068\"* kill|strong=\"H4191\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* also|strong=\"H1571\"* is|strong=\"H3068\"* with|strong=\"H5973\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* because|strong=\"H3588\"* they|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* fled|strong=\"H1272\"* and|strong=\"H3068\"* didn’t disclose|strong=\"H1540\"* it|strong=\"H1931\"* to|strong=\"H4191\"* me|strong=\"H7971\"*.” But|strong=\"H3588\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* wouldn’t put|strong=\"H4191\"* out|strong=\"H7971\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H4191\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* Doeg|strong=\"H1673\"*, “Turn|strong=\"H5437\"* and|strong=\"H4428\"* attack|strong=\"H6293\"* the|strong=\"H5375\"* priests|strong=\"H3548\"*!”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* Nob|strong=\"H5011\"*, the|strong=\"H5221\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5221\"* priests|strong=\"H3548\"*, with|strong=\"H5892\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*—both men and|strong=\"H3548\"* women, children|strong=\"H5768\"* and|strong=\"H3548\"* nursing|strong=\"H3243\"* babies, and|strong=\"H3548\"* cattle|strong=\"H7716\"*, donkeys|strong=\"H2543\"*, and|strong=\"H3548\"* sheep|strong=\"H7716\"*, with|strong=\"H5892\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 20, + "text": "One|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, named|strong=\"H8034\"* Abiathar, escaped|strong=\"H4422\"* and|strong=\"H1121\"* fled|strong=\"H1272\"* after|strong=\"H8034\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 21, + "text": "Abiathar told|strong=\"H5046\"* David|strong=\"H1732\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H3068\"* slain|strong=\"H2026\"* Yahweh|strong=\"H3068\"*’s priests|strong=\"H3548\"*." + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* said to|strong=\"H3117\"* Abiathar, “I|strong=\"H3588\"* knew|strong=\"H3045\"* on|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, when|strong=\"H3588\"* Doeg|strong=\"H1673\"* the|strong=\"H3605\"* Edomite was|strong=\"H1732\"* there|strong=\"H8033\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* would|strong=\"H5315\"* surely|strong=\"H3588\"* tell|strong=\"H5046\"* Saul|strong=\"H7586\"*. I|strong=\"H3588\"* am responsible for|strong=\"H3588\"* the|strong=\"H3605\"* death|strong=\"H5315\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* persons|strong=\"H5315\"* of|strong=\"H1004\"* your|strong=\"H3605\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "Stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H5315\"*. Don’t be|strong=\"H5315\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H5315\"* seeks|strong=\"H1245\"* my|strong=\"H1245\"* life|strong=\"H5315\"* seeks|strong=\"H1245\"* your|strong=\"H3588\"* life|strong=\"H5315\"*. You|strong=\"H3588\"* will|strong=\"H5315\"* be|strong=\"H5315\"* safe|strong=\"H4931\"* with|strong=\"H3427\"* me|strong=\"H5315\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, the|strong=\"H5046\"* Philistines|strong=\"H6430\"* are|strong=\"H1992\"* fighting|strong=\"H3898\"* against|strong=\"H3898\"* Keilah|strong=\"H7084\"*, and|strong=\"H1732\"* are|strong=\"H1992\"* robbing the|strong=\"H5046\"* threshing|strong=\"H1637\"* floors|strong=\"H1637\"*.”" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H1732\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3068\"* go|strong=\"H3212\"* and|strong=\"H3068\"* strike|strong=\"H5221\"* these|strong=\"H1732\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"*’s men said to|strong=\"H3212\"* him|strong=\"H1732\"*, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H6430\"* afraid|strong=\"H3372\"* here|strong=\"H6311\"* in|strong=\"H3212\"* Judah|strong=\"H3063\"*. How|strong=\"H3588\"* much more|strong=\"H3588\"* then|strong=\"H2009\"* if|strong=\"H3588\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Keilah|strong=\"H7084\"* against|strong=\"H3212\"* the|strong=\"H3588\"* armies|strong=\"H4634\"* of|strong=\"H3372\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*. Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H5414\"*, and|strong=\"H6965\"* said|strong=\"H6030\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* into|strong=\"H3381\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* and|strong=\"H1419\"* his|strong=\"H1732\"* men|strong=\"H1419\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Keilah|strong=\"H7084\"* and|strong=\"H1419\"* fought|strong=\"H3898\"* with|strong=\"H3427\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, and|strong=\"H1419\"* brought|strong=\"H3212\"* away|strong=\"H3212\"* their|strong=\"H5221\"* livestock|strong=\"H4735\"*, and|strong=\"H1419\"* killed|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H3427\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*. So|strong=\"H3427\"* David|strong=\"H1732\"* saved|strong=\"H3467\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Keilah|strong=\"H7084\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* Abiathar the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech fled|strong=\"H1272\"* to|strong=\"H3381\"* David|strong=\"H1732\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"*, he|strong=\"H1732\"* came|strong=\"H1961\"* down|strong=\"H3381\"* with|strong=\"H3381\"* an|strong=\"H1961\"* ephod in|strong=\"H1121\"* his|strong=\"H1732\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* come|strong=\"H7586\"* to|strong=\"H3027\"* Keilah|strong=\"H7084\"*. Saul|strong=\"H7586\"* said, “God|strong=\"H3027\"* has|strong=\"H7586\"* delivered|strong=\"H5462\"* him|strong=\"H5046\"* into|strong=\"H3027\"* my|strong=\"H1732\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3027\"* shut|strong=\"H5462\"* in|strong=\"H5892\"* by|strong=\"H3027\"* entering into|strong=\"H3027\"* a|strong=\"H3068\"* town|strong=\"H5892\"* that|strong=\"H3588\"* has|strong=\"H7586\"* gates|strong=\"H1817\"* and|strong=\"H3027\"* bars|strong=\"H1280\"*.”" + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* summoned|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3381\"* war|strong=\"H4421\"*, to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Keilah|strong=\"H7084\"* to|strong=\"H3381\"* besiege|strong=\"H6696\"* David|strong=\"H1732\"* and|strong=\"H5971\"* his|strong=\"H3605\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H1732\"* devising mischief|strong=\"H7451\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. He|strong=\"H3588\"* said|strong=\"H2790\"* to|strong=\"H5921\"* Abiathar the|strong=\"H5921\"* priest|strong=\"H3548\"*, “Bring|strong=\"H5066\"* the|strong=\"H5921\"* ephod here|strong=\"H5066\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H8085\"* David|strong=\"H1732\"* said|strong=\"H8085\"*, “O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* surely|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* seeks|strong=\"H1245\"* to|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* Keilah|strong=\"H7084\"* to|strong=\"H3478\"* destroy|strong=\"H7843\"* the|strong=\"H8085\"* city|strong=\"H5892\"* for|strong=\"H3588\"* my|strong=\"H8085\"* sake|strong=\"H5668\"*." + }, + { + "verseNum": 11, + "text": "Will|strong=\"H3068\"* the|strong=\"H8085\"* men|strong=\"H1167\"* of|strong=\"H3068\"* Keilah|strong=\"H7084\"* deliver|strong=\"H5462\"* me|strong=\"H4994\"* up|strong=\"H5462\"* into|strong=\"H3381\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*? Will|strong=\"H3068\"* Saul|strong=\"H7586\"* come|strong=\"H3381\"* down|strong=\"H3381\"*, as|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*? Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, I|strong=\"H5650\"* beg|strong=\"H4994\"* you|strong=\"H5046\"*, tell|strong=\"H5046\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H7586\"* David|strong=\"H1732\"* said, “Will|strong=\"H3068\"* the|strong=\"H3068\"* men|strong=\"H1167\"* of|strong=\"H3068\"* Keilah|strong=\"H7084\"* deliver|strong=\"H5462\"* me|strong=\"H5462\"* and|strong=\"H3068\"* my|strong=\"H3068\"* men|strong=\"H1167\"* into|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Saul|strong=\"H7586\"*?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H3967\"* his|strong=\"H1732\"* men|strong=\"H1980\"*, who|strong=\"H3588\"* were|strong=\"H1732\"* about|strong=\"H1980\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"*, arose|strong=\"H6965\"* and|strong=\"H3967\"* departed|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H3318\"* Keilah|strong=\"H7084\"* and|strong=\"H3967\"* went|strong=\"H1980\"* wherever|strong=\"H1980\"* they|strong=\"H3588\"* could|strong=\"H6965\"* go|strong=\"H1980\"*. Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* escaped|strong=\"H4422\"* from|strong=\"H3318\"* Keilah|strong=\"H7084\"*; and|strong=\"H3967\"* he|strong=\"H3588\"* gave|strong=\"H3318\"* up|strong=\"H6965\"* going|strong=\"H1980\"* there|strong=\"H6965\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* in|strong=\"H3427\"* the|strong=\"H3605\"* strongholds|strong=\"H4679\"*, and|strong=\"H3117\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* of|strong=\"H3117\"* Ziph|strong=\"H2128\"*. Saul|strong=\"H7586\"* sought|strong=\"H1245\"* him|strong=\"H5414\"* every|strong=\"H3605\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* God|strong=\"H5414\"* didn’t deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* his|strong=\"H1732\"* life|strong=\"H5315\"*. David|strong=\"H1732\"* was|strong=\"H1732\"* in|strong=\"H5315\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"* in|strong=\"H5315\"* the|strong=\"H7200\"* woods." + }, + { + "verseNum": 16, + "text": "Jonathan|strong=\"H3083\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, arose|strong=\"H6965\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* David|strong=\"H1732\"* into|strong=\"H3212\"* the|strong=\"H2388\"* woods, and|strong=\"H1121\"* strengthened|strong=\"H2388\"* his|strong=\"H1732\"* hand|strong=\"H3027\"* in|strong=\"H3212\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* said|strong=\"H3651\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, “Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Saul|strong=\"H7586\"* my|strong=\"H5921\"* father won’t find|strong=\"H4672\"* you|strong=\"H3588\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* next|strong=\"H5921\"* to|strong=\"H3478\"* you|strong=\"H3588\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* my|strong=\"H5921\"* father knows|strong=\"H3045\"* that|strong=\"H3588\"* also|strong=\"H1571\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3068\"* both|strong=\"H8147\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. Then|strong=\"H1980\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* woods and|strong=\"H1980\"* Jonathan|strong=\"H3083\"* went|strong=\"H1980\"* to|strong=\"H1980\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* Ziphites|strong=\"H2130\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Saul|strong=\"H7586\"* to|strong=\"H5927\"* Gibeah|strong=\"H1390\"*, saying, “Doesn’t David|strong=\"H1732\"* hide|strong=\"H5641\"* himself|strong=\"H3808\"* with|strong=\"H5973\"* us|strong=\"H5927\"* in|strong=\"H1732\"* the|strong=\"H5927\"* strongholds|strong=\"H4679\"* in|strong=\"H1732\"* the|strong=\"H5927\"* woods, in|strong=\"H1732\"* the|strong=\"H5927\"* hill|strong=\"H1389\"* of|strong=\"H1390\"* Hachilah|strong=\"H2444\"*, which is|strong=\"H7586\"* on|strong=\"H5927\"* the|strong=\"H5927\"* south|strong=\"H3225\"* of|strong=\"H1390\"* the|strong=\"H5927\"* desert|strong=\"H3452\"*?" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, come|strong=\"H3381\"* down|strong=\"H3381\"*. According|strong=\"H3027\"* to|strong=\"H3381\"* all|strong=\"H3605\"* the|strong=\"H3605\"* desire|strong=\"H5315\"* of|strong=\"H4428\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* to|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"*; and|strong=\"H4428\"* our|strong=\"H3605\"* part|strong=\"H3027\"* will|strong=\"H4428\"* be|strong=\"H3027\"* to|strong=\"H3381\"* deliver|strong=\"H5462\"* him|strong=\"H3027\"* up|strong=\"H5462\"* into|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "Saul|strong=\"H7586\"* said, “You|strong=\"H3588\"* are|strong=\"H3068\"* blessed|strong=\"H1288\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* had|strong=\"H3068\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Please|strong=\"H4994\"* go|strong=\"H3212\"* make|strong=\"H3045\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* sure|strong=\"H3045\"*, and|strong=\"H3212\"* know|strong=\"H3045\"* and|strong=\"H3212\"* see|strong=\"H7200\"* his|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* his|strong=\"H7200\"* haunt|strong=\"H7272\"* is|strong=\"H1931\"*, and|strong=\"H3212\"* who|strong=\"H4310\"* has|strong=\"H4310\"* seen|strong=\"H7200\"* him|strong=\"H7200\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* told that|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* very|strong=\"H6191\"* cunning|strong=\"H3045\"*." + }, + { + "verseNum": 23, + "text": "See|strong=\"H7200\"* therefore|strong=\"H3045\"*, and|strong=\"H1980\"* take|strong=\"H7725\"* knowledge|strong=\"H3045\"* of|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lurking places|strong=\"H4224\"* where|strong=\"H8033\"* he|strong=\"H8033\"* hides|strong=\"H2244\"* himself|strong=\"H3045\"*; and|strong=\"H1980\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7725\"* with|strong=\"H1980\"* certainty|strong=\"H3045\"*, and|strong=\"H1980\"* I|strong=\"H3045\"* will|strong=\"H1961\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H3605\"*. It|strong=\"H7725\"* shall|strong=\"H3063\"* happen|strong=\"H1961\"*, if|strong=\"H7200\"* he|strong=\"H8033\"* is|strong=\"H3426\"* in|strong=\"H1980\"* the|strong=\"H3605\"* land, that|strong=\"H3045\"* I|strong=\"H3045\"* will|strong=\"H1961\"* search|strong=\"H2664\"* him|strong=\"H7725\"* out|strong=\"H7200\"* among|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* thousands of|strong=\"H3605\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 24, + "text": "They|strong=\"H6440\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Ziph|strong=\"H2128\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"*; but|strong=\"H3225\"* David|strong=\"H1732\"* and|strong=\"H6965\"* his|strong=\"H1732\"* men were|strong=\"H1732\"* in|strong=\"H3212\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Maon|strong=\"H4584\"*, in|strong=\"H3212\"* the|strong=\"H6440\"* Arabah|strong=\"H6160\"* on|strong=\"H3212\"* the|strong=\"H6440\"* south|strong=\"H3225\"* of|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H6160\"*." + }, + { + "verseNum": 25, + "text": "Saul|strong=\"H7586\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men went|strong=\"H3212\"* to|strong=\"H3381\"* seek|strong=\"H1245\"* him|strong=\"H5046\"*. When|strong=\"H8085\"* David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, he|strong=\"H1732\"* went|strong=\"H3212\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*, and|strong=\"H3212\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Maon|strong=\"H4584\"*. When|strong=\"H8085\"* Saul|strong=\"H7586\"* heard|strong=\"H8085\"* that|strong=\"H8085\"*, he|strong=\"H1732\"* pursued|strong=\"H7291\"* David|strong=\"H1732\"* in|strong=\"H3427\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3427\"* Maon|strong=\"H4584\"*." + }, + { + "verseNum": 26, + "text": "Saul|strong=\"H7586\"* went|strong=\"H3212\"* on|strong=\"H1961\"* this|strong=\"H2088\"* side|strong=\"H6654\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*, and|strong=\"H3212\"* David|strong=\"H1732\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men on|strong=\"H1961\"* that|strong=\"H2088\"* side|strong=\"H6654\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"*; and|strong=\"H3212\"* David|strong=\"H1732\"* hurried|strong=\"H2648\"* to|strong=\"H3212\"* get|strong=\"H3212\"* away|strong=\"H3212\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H2022\"* Saul|strong=\"H7586\"*, for|strong=\"H6440\"* Saul|strong=\"H7586\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men surrounded David|strong=\"H1732\"* and|strong=\"H3212\"* his|strong=\"H1732\"* men to|strong=\"H3212\"* take|strong=\"H8610\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Saul|strong=\"H7586\"*, saying, “Hurry|strong=\"H4116\"* and|strong=\"H3212\"* come|strong=\"H3212\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* have|strong=\"H6430\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land!”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H3651\"* Saul|strong=\"H7586\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* pursuing|strong=\"H7291\"* David|strong=\"H1732\"*, and|strong=\"H7725\"* went|strong=\"H3212\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Sela Hammahlekoth.+ 23:28 “Sela Hammahlekoth” means “rock of parting”.*" + }, + { + "verseNum": 29, + "text": "David went up from there and lived in the strongholds of En Gedi." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3427\"* Saul had|strong=\"H1732\"* returned|strong=\"H5927\"* from|strong=\"H5927\"* following the|strong=\"H5927\"* Philistines, he|strong=\"H8033\"* was|strong=\"H1732\"* told, “Behold, David|strong=\"H1732\"* is|strong=\"H8033\"* in|strong=\"H3427\"* the|strong=\"H5927\"* wilderness of|strong=\"H3427\"* En Gedi.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Saul|strong=\"H7586\"* took|strong=\"H1961\"* three thousand chosen men out|strong=\"H7725\"* of|strong=\"H4057\"* all|strong=\"H7725\"* Israel, and|strong=\"H7725\"* went|strong=\"H1732\"* to|strong=\"H7725\"* seek David|strong=\"H1732\"* and|strong=\"H7725\"* his|strong=\"H1732\"* men on|strong=\"H1961\"* the|strong=\"H7725\"* rocks of|strong=\"H4057\"* the|strong=\"H7725\"* wild goats." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* sheep pens by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H3212\"*, where|strong=\"H5921\"* there|strong=\"H3605\"* was|strong=\"H1732\"* a|strong=\"H3068\"* cave; and|strong=\"H3478\"* Saul|strong=\"H7586\"* went|strong=\"H3212\"* in|strong=\"H5921\"* to|strong=\"H3478\"* relieve himself|strong=\"H6440\"*. Now|strong=\"H3947\"* David|strong=\"H1732\"* and|strong=\"H3478\"* his|strong=\"H3605\"* men|strong=\"H3605\"* were|strong=\"H3478\"* staying in|strong=\"H5921\"* the|strong=\"H3605\"* innermost parts of|strong=\"H6440\"* the|strong=\"H3605\"* cave." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"*’s men said to|strong=\"H5921\"* him|strong=\"H5921\"*, “Behold, the|strong=\"H5921\"* day of|strong=\"H3427\"* which|strong=\"H8033\"* Yahweh|strong=\"H3068\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Behold, I|strong=\"H5921\"* will|strong=\"H7272\"* deliver your|strong=\"H5921\"* enemy into|strong=\"H5921\"* your|strong=\"H5921\"* hand, and|strong=\"H1732\"* you|strong=\"H5921\"* shall|strong=\"H7272\"* do|strong=\"H1870\"* to|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3427\"* it|strong=\"H5921\"* shall|strong=\"H7272\"* seem good to|strong=\"H5921\"* you|strong=\"H5921\"*.’” Then|strong=\"H7586\"* David|strong=\"H1732\"* arose and|strong=\"H1732\"* cut|strong=\"H7272\"* off|strong=\"H5921\"* the|strong=\"H5921\"* skirt of|strong=\"H3427\"* Saul|strong=\"H7586\"*’s robe secretly|strong=\"H7586\"*." + }, + { + "verseNum": 5, + "text": "Afterward, David|strong=\"H1732\"*’s heart struck him|strong=\"H5414\"* because|strong=\"H3027\"* he|strong=\"H3117\"* had|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Saul|strong=\"H7586\"*’s skirt|strong=\"H3671\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H1961\"* his|strong=\"H1732\"* men|strong=\"H3772\"*, “Yahweh|strong=\"H3068\"* forbid that|strong=\"H3651\"* I|strong=\"H5921\"* should|strong=\"H1732\"* do|strong=\"H3671\"* this|strong=\"H3651\"* thing|strong=\"H3651\"* to|strong=\"H1961\"* my|strong=\"H1732\"* lord, Yahweh|strong=\"H3068\"*’s anointed, to|strong=\"H1961\"* stretch out|strong=\"H5921\"* my|strong=\"H1732\"* hand against|strong=\"H5921\"* him|strong=\"H5921\"*, since|strong=\"H3651\"* he|strong=\"H3651\"* is|strong=\"H3820\"* Yahweh|strong=\"H3068\"*’s anointed.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H6213\"* David|strong=\"H3027\"* checked his|strong=\"H3068\"* men|strong=\"H6213\"* with|strong=\"H3068\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* didn’t allow them|strong=\"H7971\"* to|strong=\"H3068\"* rise against|strong=\"H3027\"* Saul|strong=\"H1931\"*. Saul|strong=\"H1931\"* rose up|strong=\"H6213\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cave, and|strong=\"H3068\"* went|strong=\"H3068\"* on|strong=\"H3027\"* his|strong=\"H3068\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* arose|strong=\"H6965\"* afterward, and|strong=\"H6965\"* went|strong=\"H3212\"* out|strong=\"H5414\"* of|strong=\"H1697\"* the|strong=\"H5414\"* cave|strong=\"H4631\"* and|strong=\"H6965\"* cried|strong=\"H5414\"* after|strong=\"H6965\"* Saul|strong=\"H7586\"*, saying|strong=\"H1697\"*, “My|strong=\"H5414\"* lord the|strong=\"H5414\"* king!”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* said|strong=\"H7121\"* to|strong=\"H3318\"* Saul|strong=\"H7586\"*, “Why|strong=\"H3651\"* do|strong=\"H3318\"* you|strong=\"H4480\"* listen to|strong=\"H3318\"* men|strong=\"H7121\"*’s words, saying, ‘Behold|strong=\"H5027\"*, David|strong=\"H1732\"* seeks to|strong=\"H3318\"* harm you|strong=\"H4480\"*’?" + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, today your|strong=\"H8085\"* eyes have|strong=\"H1697\"* seen how|strong=\"H4100\"* Yahweh|strong=\"H3068\"* had|strong=\"H1732\"* delivered you|strong=\"H4100\"* today into|strong=\"H1697\"* my|strong=\"H8085\"* hand in|strong=\"H8085\"* the|strong=\"H8085\"* cave. Some|strong=\"H1697\"* urged me|strong=\"H1697\"* to|strong=\"H8085\"* kill you|strong=\"H4100\"*, but|strong=\"H2009\"* I|strong=\"H2009\"* spared you|strong=\"H4100\"*. I|strong=\"H2009\"* said|strong=\"H1697\"*, ‘I|strong=\"H2009\"* will|strong=\"H1697\"* not|strong=\"H8085\"* stretch out|strong=\"H1245\"* my|strong=\"H8085\"* hand against|strong=\"H1697\"* my|strong=\"H8085\"* lord, for|strong=\"H1245\"* he|strong=\"H1732\"* is|strong=\"H4100\"* Yahweh|strong=\"H3068\"*’s anointed.’" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H2009\"*, my|strong=\"H5414\"* father, behold|strong=\"H2009\"*, yes|strong=\"H3588\"*, see|strong=\"H7200\"* the|strong=\"H5921\"* skirt of|strong=\"H3068\"* your|strong=\"H3068\"* robe in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* cut off|strong=\"H5921\"* the|strong=\"H5921\"* skirt of|strong=\"H3068\"* your|strong=\"H3068\"* robe and|strong=\"H3068\"* didn’t kill|strong=\"H2026\"* you|strong=\"H3588\"*, know and|strong=\"H3068\"* see|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* neither|strong=\"H3808\"* evil nor|strong=\"H3808\"* disobedience in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sinned against|strong=\"H5921\"* you|strong=\"H3588\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* hunt for|strong=\"H3588\"* my|strong=\"H5414\"* life|strong=\"H3117\"* to|strong=\"H3068\"* take|strong=\"H5414\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H5315\"* Yahweh|strong=\"H3068\"* judge between|strong=\"H3045\"* me|strong=\"H5315\"* and|strong=\"H3027\"* you|strong=\"H3588\"*, and|strong=\"H3027\"* may|strong=\"H5315\"* Yahweh|strong=\"H3068\"* avenge me|strong=\"H5315\"* of|strong=\"H3027\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* my|strong=\"H7200\"* hand|strong=\"H3027\"* will|strong=\"H1571\"* not|strong=\"H3808\"* be|strong=\"H3808\"* on|strong=\"H7200\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* the|strong=\"H3068\"* proverb of|strong=\"H3068\"* the|strong=\"H3068\"* ancients says, ‘Out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked comes|strong=\"H1961\"* wickedness;’ but|strong=\"H3808\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* on|strong=\"H3027\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "Against|strong=\"H3027\"* whom has|strong=\"H1961\"* the|strong=\"H3318\"* king of|strong=\"H3027\"* Israel come|strong=\"H1961\"* out|strong=\"H3318\"*? Whom do|strong=\"H3318\"* you|strong=\"H3808\"* pursue? A|strong=\"H3068\"* dead dog? A|strong=\"H3068\"* flea?" + }, + { + "verseNum": 15, + "text": "May|strong=\"H4310\"* Yahweh|strong=\"H3068\"* therefore be|strong=\"H4191\"* judge, and|strong=\"H3478\"* give sentence between me|strong=\"H3318\"* and|strong=\"H3478\"* you|strong=\"H7291\"*, and|strong=\"H3478\"* see, and|strong=\"H3478\"* plead my|strong=\"H3318\"* cause|strong=\"H3318\"*, and|strong=\"H3478\"* deliver me|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* your|strong=\"H3318\"* hand.”" + }, + { + "verseNum": 16, + "text": "It|strong=\"H7200\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* David|strong=\"H3027\"* had|strong=\"H3068\"* finished speaking these words to|strong=\"H3068\"* Saul, that|strong=\"H7200\"* Saul said, “Is|strong=\"H3068\"* that|strong=\"H7200\"* your|strong=\"H3068\"* voice, my|strong=\"H3068\"* son David|strong=\"H3027\"*?” Saul lifted up|strong=\"H7200\"* his|strong=\"H3068\"* voice and|strong=\"H3068\"* wept." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1732\"* said|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, “You|strong=\"H1696\"* are|strong=\"H1121\"* more|strong=\"H1058\"* righteous than|strong=\"H2088\"* I|strong=\"H1697\"*; for|strong=\"H1121\"* you|strong=\"H1696\"* have|strong=\"H1961\"* done|strong=\"H1961\"* good to|strong=\"H1696\"* me|strong=\"H6963\"*, whereas I|strong=\"H1697\"* have|strong=\"H1961\"* done|strong=\"H1961\"* evil to|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* declared today how|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* dealt|strong=\"H1580\"* well|strong=\"H2896\"* with|strong=\"H1732\"* me|strong=\"H4480\"*, because|strong=\"H3588\"* when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H1732\"* delivered me|strong=\"H4480\"* up|strong=\"H4480\"* into|strong=\"H4480\"* your|strong=\"H3588\"* hand, you|strong=\"H3588\"* didn’t kill me|strong=\"H4480\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H6213\"* if a|strong=\"H3068\"* man|strong=\"H2896\"* finds his|strong=\"H3068\"* enemy, will|strong=\"H3068\"* he|strong=\"H3117\"* let|strong=\"H5046\"* him|strong=\"H5046\"* go|strong=\"H3068\"* away unharmed? Therefore|strong=\"H3068\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* reward you|strong=\"H3117\"* good|strong=\"H2896\"* for|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3068\"* me|strong=\"H5046\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"*, behold, I|strong=\"H3588\"* know that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* be|strong=\"H3068\"* king, and|strong=\"H3068\"* that|strong=\"H3588\"* the|strong=\"H3588\"* kingdom of|strong=\"H3068\"* Israel will|strong=\"H3068\"* be|strong=\"H3068\"* established|strong=\"H6213\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H4672\"*." + }, + { + "verseNum": 21, + "text": "Swear|strong=\"H3588\"* now|strong=\"H6258\"* therefore|strong=\"H6258\"* to|strong=\"H3478\"* me|strong=\"H4427\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3478\"* not|strong=\"H3045\"* cut|strong=\"H3478\"* off my|strong=\"H3045\"* offspring after|strong=\"H3588\"* me|strong=\"H4427\"*, and|strong=\"H6965\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3478\"* not|strong=\"H3045\"* destroy my|strong=\"H3045\"* name out|strong=\"H3045\"* of|strong=\"H3027\"* my|strong=\"H3045\"* father’s house.”" + }, + { + "verseNum": 22, + "text": "David swore|strong=\"H7650\"* to|strong=\"H3068\"* Saul. Saul went|strong=\"H3068\"* home|strong=\"H1004\"*, but|strong=\"H6258\"* David and|strong=\"H3068\"* his|strong=\"H3068\"* men|strong=\"H8034\"* went|strong=\"H3068\"* up to|strong=\"H3068\"* the|strong=\"H3068\"* stronghold." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Samuel|strong=\"H8050\"* died|strong=\"H4191\"*; and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H6965\"* mourned|strong=\"H5594\"* for|strong=\"H1004\"* him|strong=\"H4191\"*, and|strong=\"H6965\"* buried|strong=\"H6912\"* him|strong=\"H4191\"* at|strong=\"H3478\"* his|strong=\"H3605\"* house|strong=\"H1004\"* at|strong=\"H3478\"* Ramah|strong=\"H7414\"*." + }, + { + "verseNum": 2, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1419\"* in|strong=\"H1419\"* Maon|strong=\"H4584\"* whose|strong=\"H4584\"* possessions|strong=\"H4639\"* were|strong=\"H1961\"* in|strong=\"H1419\"* Carmel|strong=\"H3760\"*; and|strong=\"H1419\"* the|strong=\"H1961\"* man|strong=\"H1419\"* was|strong=\"H1961\"* very|strong=\"H3966\"* great|strong=\"H1419\"*. He|strong=\"H5795\"* had|strong=\"H1961\"* three|strong=\"H7969\"* thousand sheep|strong=\"H6629\"* and|strong=\"H1419\"* a|strong=\"H3068\"* thousand goats|strong=\"H5795\"*; and|strong=\"H1419\"* he|strong=\"H5795\"* was|strong=\"H1961\"* shearing|strong=\"H1494\"* his|strong=\"H1961\"* sheep|strong=\"H6629\"* in|strong=\"H1419\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 3, + "text": "Now the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* man|strong=\"H7451\"* was|strong=\"H8034\"* Nabal|strong=\"H5037\"*; and|strong=\"H2896\"* the|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* his|strong=\"H1931\"* wife Abigail. This|strong=\"H1931\"* woman|strong=\"H8034\"* was|strong=\"H8034\"* intelligent|strong=\"H2896\"* and|strong=\"H2896\"* had|strong=\"H3820\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* face; but|strong=\"H1931\"* the|strong=\"H8034\"* man|strong=\"H7451\"* was|strong=\"H8034\"* surly and|strong=\"H2896\"* evil|strong=\"H7451\"* in|strong=\"H8034\"* his|strong=\"H1931\"* doings|strong=\"H4611\"*. He|strong=\"H1931\"* was|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H8034\"* house of|strong=\"H8034\"* Caleb." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* that|strong=\"H3588\"* Nabal|strong=\"H5037\"* was|strong=\"H1732\"* shearing|strong=\"H1494\"* his|strong=\"H1732\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* ten|strong=\"H6235\"* young|strong=\"H5288\"* men|strong=\"H5288\"*; and|strong=\"H7971\"* David|strong=\"H1732\"* said to|strong=\"H7971\"* the|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7971\"* Carmel|strong=\"H3760\"*, and|strong=\"H7971\"* go|strong=\"H5927\"* to|strong=\"H7971\"* Nabal|strong=\"H5037\"*, and|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H7971\"* in|strong=\"H8034\"* my|strong=\"H1732\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "Tell|strong=\"H3605\"* him|strong=\"H3605\"*, ‘Long|strong=\"H3605\"* life|strong=\"H2416\"* to|strong=\"H1004\"* you|strong=\"H3605\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* you|strong=\"H3605\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*! Peace|strong=\"H7965\"* be|strong=\"H1004\"* to|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H7965\"*!" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* I|strong=\"H3588\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shearers|strong=\"H1494\"*. Your|strong=\"H3605\"* shepherds|strong=\"H7462\"* have|strong=\"H1961\"* now|strong=\"H6258\"* been|strong=\"H1961\"* with|strong=\"H5973\"* us|strong=\"H3588\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* didn’t harm|strong=\"H3972\"* them|strong=\"H1961\"*. Nothing|strong=\"H3808\"* was|strong=\"H1961\"* missing|strong=\"H6485\"* from|strong=\"H8085\"* them|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* they|strong=\"H3588\"* were|strong=\"H1961\"* in|strong=\"H8085\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 8, + "text": "Ask|strong=\"H7592\"* your|strong=\"H5414\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H1121\"* they|strong=\"H3588\"* will|strong=\"H5650\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*. Therefore|strong=\"H5921\"* let|strong=\"H4994\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* come|strong=\"H4672\"* on|strong=\"H5921\"* a|strong=\"H3068\"* good|strong=\"H2896\"* day|strong=\"H3117\"*. Please|strong=\"H4994\"* give|strong=\"H5414\"* whatever|strong=\"H2896\"* comes|strong=\"H5414\"* to|strong=\"H5921\"* your|strong=\"H5414\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* and|strong=\"H1121\"* to|strong=\"H5921\"* your|strong=\"H5414\"* son|strong=\"H1121\"* David|strong=\"H1732\"*.’”" + }, + { + "verseNum": 9, + "text": "When|strong=\"H1696\"* David|strong=\"H1732\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* came|strong=\"H1697\"*, they|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Nabal|strong=\"H5037\"* all|strong=\"H3605\"* those|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H1696\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H1697\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* waited|strong=\"H5117\"*." + }, + { + "verseNum": 10, + "text": "Nabal|strong=\"H5037\"* answered|strong=\"H6030\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “Who|strong=\"H4310\"* is|strong=\"H4310\"* David|strong=\"H1732\"*? Who|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*? There|strong=\"H3117\"* are|strong=\"H3117\"* many|strong=\"H7235\"* servants|strong=\"H5650\"* who|strong=\"H4310\"* break|strong=\"H6555\"* away|strong=\"H6555\"* from|strong=\"H6440\"* their|strong=\"H6440\"* masters these|strong=\"H6440\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Shall|strong=\"H3808\"* I|strong=\"H5414\"* then|strong=\"H2088\"* take|strong=\"H3947\"* my|strong=\"H5414\"* bread|strong=\"H3899\"*, my|strong=\"H5414\"* water|strong=\"H4325\"*, and|strong=\"H3899\"* my|strong=\"H5414\"* meat|strong=\"H3899\"* that|strong=\"H3045\"* I|strong=\"H5414\"* have|strong=\"H3045\"* killed|strong=\"H2873\"* for|strong=\"H4325\"* my|strong=\"H5414\"* shearers|strong=\"H1494\"*, and|strong=\"H3899\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* men|strong=\"H1992\"* who|strong=\"H1992\"* I|strong=\"H5414\"* don’t know|strong=\"H3045\"* where|strong=\"H2088\"* they|strong=\"H1992\"* come|strong=\"H3045\"* from|strong=\"H3947\"*?”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* David|strong=\"H1732\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* turned|strong=\"H2015\"* on|strong=\"H1870\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H7725\"* went|strong=\"H1732\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* and|strong=\"H7725\"* told|strong=\"H5046\"* him|strong=\"H5046\"* all|strong=\"H3605\"* these|strong=\"H3605\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H5927\"* his|strong=\"H1732\"* men, “Every|strong=\"H3427\"* man put|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H1732\"* sword|strong=\"H2719\"*!”" + }, + { + "verseNum": 14, + "text": "But|strong=\"H2009\"* one of|strong=\"H4057\"* the|strong=\"H1288\"* young|strong=\"H5288\"* men|strong=\"H5288\"* told|strong=\"H5046\"* Abigail, Nabal|strong=\"H5037\"*’s wife, saying, “Behold|strong=\"H2009\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* out|strong=\"H7971\"* of|strong=\"H4057\"* the|strong=\"H1288\"* wilderness|strong=\"H4057\"* to|strong=\"H7971\"* greet|strong=\"H1288\"* our|strong=\"H1288\"* master; and|strong=\"H7971\"* he|strong=\"H1732\"* insulted them|strong=\"H7971\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* the|strong=\"H3605\"* men|strong=\"H1980\"* were|strong=\"H1961\"* very|strong=\"H3966\"* good|strong=\"H2896\"* to|strong=\"H1980\"* us|strong=\"H3117\"*, and|strong=\"H1980\"* we|strong=\"H3068\"* were|strong=\"H1961\"* not|strong=\"H3808\"* harmed, and|strong=\"H1980\"* we|strong=\"H3068\"* didn’t miss|strong=\"H6485\"* anything|strong=\"H3605\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* we|strong=\"H3068\"* went|strong=\"H1980\"* with|strong=\"H1980\"* them|strong=\"H1961\"*, when|strong=\"H1961\"* we|strong=\"H3068\"* were|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3117\"* were|strong=\"H1961\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* to|strong=\"H1961\"* us|strong=\"H5921\"* both|strong=\"H1571\"* by|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* while|strong=\"H1961\"* we|strong=\"H3068\"* were|strong=\"H1961\"* with|strong=\"H5973\"* them|strong=\"H5921\"* keeping|strong=\"H7462\"* the|strong=\"H3605\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* know|strong=\"H3045\"* and|strong=\"H1121\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* you|strong=\"H3588\"* will|strong=\"H1121\"* do|strong=\"H6213\"*; for|strong=\"H3588\"* evil|strong=\"H7451\"* is|strong=\"H1931\"* determined|strong=\"H3615\"* against|strong=\"H5921\"* our|strong=\"H3605\"* master and|strong=\"H1121\"* against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* such|strong=\"H1931\"* a|strong=\"H3068\"* worthless|strong=\"H1100\"* fellow|strong=\"H1121\"* that|strong=\"H3588\"* one|strong=\"H3605\"* can|strong=\"H4100\"*’t speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3947\"* Abigail hurried|strong=\"H4116\"* and|strong=\"H3967\"* took|strong=\"H3947\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* loaves|strong=\"H3899\"* of|strong=\"H5921\"* bread|strong=\"H3899\"*, two|strong=\"H8147\"* containers|strong=\"H5035\"* of|strong=\"H5921\"* wine|strong=\"H3196\"*, five|strong=\"H2568\"* sheep|strong=\"H6629\"* ready|strong=\"H6213\"* dressed|strong=\"H6213\"*, five|strong=\"H2568\"* seahs|strong=\"H5429\"*+ 25:18 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H5921\"* parched|strong=\"H7039\"* grain|strong=\"H7039\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* clusters|strong=\"H6778\"* of|strong=\"H5921\"* raisins|strong=\"H6778\"*, and|strong=\"H3967\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* cakes|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H1690\"*, and|strong=\"H3967\"* laid|strong=\"H7760\"* them|strong=\"H5921\"* on|strong=\"H5921\"* donkeys|strong=\"H2543\"*." + }, + { + "verseNum": 19, + "text": "She|strong=\"H6440\"* said to|strong=\"H6440\"* her|strong=\"H5046\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, “Go|strong=\"H5674\"* on|strong=\"H5674\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* coming after you|strong=\"H6440\"*.” But|strong=\"H3808\"* she|strong=\"H6440\"* didn’t tell|strong=\"H5046\"* her|strong=\"H5046\"* husband, Nabal|strong=\"H5037\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H1961\"* she|strong=\"H1931\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H1732\"* came|strong=\"H1961\"* down|strong=\"H3381\"* hidden|strong=\"H5643\"* by|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*, behold|strong=\"H2009\"*, David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H1732\"* men came|strong=\"H1961\"* down|strong=\"H3381\"* toward|strong=\"H5921\"* her|strong=\"H5921\"*, and|strong=\"H1732\"* she|strong=\"H1931\"* met|strong=\"H6298\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H2088\"* David|strong=\"H1732\"* had|strong=\"H1732\"* said, “Surely|strong=\"H6485\"* in|strong=\"H7725\"* vain|strong=\"H8267\"* I|strong=\"H2088\"* have|strong=\"H3605\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* that|strong=\"H3605\"* this|strong=\"H2088\"* fellow has|strong=\"H2088\"* in|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, so|strong=\"H3808\"* that|strong=\"H3605\"* nothing|strong=\"H3808\"* was|strong=\"H1732\"* missed|strong=\"H6485\"* of|strong=\"H4057\"* all|strong=\"H3605\"* that|strong=\"H3605\"* pertained to|strong=\"H7725\"* him|strong=\"H7725\"*. He|strong=\"H3605\"* has|strong=\"H2088\"* returned|strong=\"H7725\"* me|strong=\"H7725\"* evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 22, + "text": "God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H3605\"* enemies of|strong=\"H3605\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* more|strong=\"H3254\"* also|strong=\"H1732\"*, if I|strong=\"H5704\"* leave|strong=\"H7604\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H5704\"* him|strong=\"H6213\"* by|strong=\"H1242\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light so|strong=\"H6213\"* much|strong=\"H6213\"* as|strong=\"H5704\"* one|strong=\"H3605\"* who|strong=\"H3605\"* urinates on|strong=\"H6213\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*.”+ 25:22 or, male.*" + }, + { + "verseNum": 23, + "text": "When|strong=\"H7200\"* Abigail saw|strong=\"H7200\"* David|strong=\"H1732\"*, she|strong=\"H5921\"* hurried|strong=\"H4116\"* and|strong=\"H1732\"* got off|strong=\"H5921\"* her|strong=\"H5921\"* donkey|strong=\"H2543\"*, and|strong=\"H1732\"* fell|strong=\"H5307\"* before|strong=\"H6440\"* David|strong=\"H1732\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face|strong=\"H6440\"* and|strong=\"H1732\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H3381\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 24, + "text": "She|strong=\"H5921\"* fell|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H8085\"* feet|strong=\"H7272\"* and|strong=\"H8085\"* said|strong=\"H1696\"*, “On|strong=\"H5921\"* me|strong=\"H4994\"*, my|strong=\"H8085\"* lord, on|strong=\"H5921\"* me|strong=\"H4994\"* be|strong=\"H1697\"* the|strong=\"H5921\"* blame|strong=\"H5771\"*! Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H5921\"* servant speak|strong=\"H1696\"* in|strong=\"H5921\"* your|strong=\"H5921\"* ears. Hear|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H5921\"* servant." + }, + { + "verseNum": 25, + "text": "Please|strong=\"H4994\"* don’t let|strong=\"H7971\"* my|strong=\"H7760\"* lord pay|strong=\"H7760\"* attention|strong=\"H3820\"* to|strong=\"H7971\"* this|strong=\"H2088\"* worthless|strong=\"H1100\"* fellow, Nabal|strong=\"H5037\"*, for|strong=\"H3588\"* as|strong=\"H3651\"* his|strong=\"H7760\"* name|strong=\"H8034\"* is|strong=\"H2088\"*, so|strong=\"H3651\"* is|strong=\"H2088\"* he|strong=\"H1931\"*. Nabal|strong=\"H5037\"*+ 25:25 “Nabal” means “foolish”.* is|strong=\"H2088\"* his|strong=\"H7760\"* name|strong=\"H8034\"*, and|strong=\"H7971\"* folly|strong=\"H5039\"* is|strong=\"H2088\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; but|strong=\"H3588\"* I|strong=\"H3588\"*, your|strong=\"H5921\"* servant|strong=\"H5288\"*, didn’t see|strong=\"H7200\"* my|strong=\"H7760\"* lord’s young|strong=\"H5288\"* men|strong=\"H5288\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* sent|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H3068\"* lord|strong=\"H3068\"*, as|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"* and|strong=\"H3068\"* as|strong=\"H1961\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, since|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* withheld|strong=\"H4513\"* you|strong=\"H3027\"* from|strong=\"H5315\"* blood|strong=\"H1818\"* guiltiness and|strong=\"H3068\"* from|strong=\"H5315\"* avenging|strong=\"H3467\"* yourself|strong=\"H5315\"* with|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* hand|strong=\"H3027\"*, now|strong=\"H6258\"* therefore|strong=\"H6258\"* let|strong=\"H6258\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"* and|strong=\"H3068\"* those|strong=\"H3467\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* evil|strong=\"H7451\"* to|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* Nabal|strong=\"H5037\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* this|strong=\"H2063\"* present|strong=\"H1293\"* which your|strong=\"H5414\"* servant|strong=\"H5288\"* has|strong=\"H7272\"* brought|strong=\"H5414\"* to|strong=\"H1980\"* my|strong=\"H5414\"* lord, let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H1980\"* the|strong=\"H5414\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H5288\"* follow|strong=\"H1980\"* my|strong=\"H5414\"* lord." + }, + { + "verseNum": 28, + "text": "Please|strong=\"H4994\"* forgive|strong=\"H5375\"* the|strong=\"H3588\"* trespass|strong=\"H6588\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* certainly|strong=\"H3588\"* make|strong=\"H6213\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* a|strong=\"H3068\"* sure house|strong=\"H1004\"*, because|strong=\"H3588\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* fights|strong=\"H3898\"* Yahweh|strong=\"H3068\"*’s battles|strong=\"H4421\"*. Evil|strong=\"H7451\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H3068\"* you|strong=\"H3588\"* all|strong=\"H6213\"* your|strong=\"H3068\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 29, + "text": "Though men|strong=\"H5315\"* may|strong=\"H1961\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* pursue|strong=\"H7291\"* you|strong=\"H8432\"* and|strong=\"H6965\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* soul|strong=\"H5315\"*, yet|strong=\"H3068\"* the|strong=\"H8432\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* bound|strong=\"H6887\"* in|strong=\"H3068\"* the|strong=\"H8432\"* bundle|strong=\"H6872\"* of|strong=\"H3068\"* life|strong=\"H5315\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* sling|strong=\"H7050\"* out|strong=\"H1245\"* the|strong=\"H8432\"* souls|strong=\"H5315\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H6887\"* as|strong=\"H1961\"* from|strong=\"H5315\"* a|strong=\"H3068\"* sling|strong=\"H7050\"*’s pocket|strong=\"H3709\"*." + }, + { + "verseNum": 30, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H1696\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* appointed|strong=\"H6680\"* you|strong=\"H3588\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 31, + "text": "that|strong=\"H3068\"* this|strong=\"H2063\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* grief|strong=\"H6330\"* to|strong=\"H3068\"* you|strong=\"H3808\"*, nor|strong=\"H3808\"* offense of|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"*, either|strong=\"H3808\"* that|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*, or|strong=\"H3808\"* that|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H3467\"* himself|strong=\"H3820\"*. When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* dealt well|strong=\"H3190\"* with|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"*, then|strong=\"H1961\"* remember|strong=\"H2142\"* your|strong=\"H3068\"* servant.”" + }, + { + "verseNum": 32, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Abigail, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* today|strong=\"H3117\"* to|strong=\"H3478\"* meet|strong=\"H7122\"* me|strong=\"H7971\"*!" + }, + { + "verseNum": 33, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H2088\"* your|strong=\"H3027\"* discretion|strong=\"H2940\"*, and|strong=\"H3117\"* blessed|strong=\"H1288\"* are|strong=\"H3117\"* you|strong=\"H3117\"*, who|strong=\"H2088\"* have|strong=\"H3027\"* kept|strong=\"H3607\"* me|strong=\"H1288\"* today|strong=\"H3117\"* from|strong=\"H3027\"* blood|strong=\"H1818\"* guiltiness, and|strong=\"H3117\"* from|strong=\"H3027\"* avenging|strong=\"H3467\"* myself with|strong=\"H3117\"* my|strong=\"H3467\"* own|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* withheld|strong=\"H4513\"* me|strong=\"H4513\"* from|strong=\"H3478\"* harming|strong=\"H7489\"* you|strong=\"H3588\"*, unless|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3068\"* hurried|strong=\"H4116\"* and|strong=\"H3478\"* come|strong=\"H7122\"* to|strong=\"H5704\"* meet|strong=\"H7122\"* me|strong=\"H4513\"*, surely|strong=\"H3588\"* there|strong=\"H3498\"* wouldn’t have|strong=\"H3068\"* been|strong=\"H3068\"* left|strong=\"H3498\"* to|strong=\"H5704\"* Nabal|strong=\"H5037\"* by|strong=\"H3068\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* light so|strong=\"H3588\"* much|strong=\"H3498\"* as|strong=\"H5704\"* one|strong=\"H2416\"* who|strong=\"H3068\"* urinates on|strong=\"H3068\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*.”+ 25:34 or, one male.*" + }, + { + "verseNum": 35, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* received|strong=\"H3947\"* from|strong=\"H6440\"* her|strong=\"H3947\"* hand|strong=\"H3027\"* that|strong=\"H7200\"* which|strong=\"H1004\"* she|strong=\"H6440\"* had|strong=\"H1732\"* brought|strong=\"H5927\"* him|strong=\"H6440\"*. Then|strong=\"H3947\"* he|strong=\"H1004\"* said|strong=\"H8085\"* to|strong=\"H5927\"* her|strong=\"H3947\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H1004\"* peace|strong=\"H7965\"* to|strong=\"H5927\"* your|strong=\"H3947\"* house|strong=\"H1004\"*. Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H3027\"* listened|strong=\"H8085\"* to|strong=\"H5927\"* your|strong=\"H3947\"* voice|strong=\"H6963\"* and|strong=\"H3027\"* have|strong=\"H3027\"* granted|strong=\"H5375\"* your|strong=\"H3947\"* request|strong=\"H6963\"*.”" + }, + { + "verseNum": 36, + "text": "Abigail came|strong=\"H1697\"* to|strong=\"H5704\"* Nabal|strong=\"H5037\"*; and|strong=\"H4428\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* held|strong=\"H4428\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* in|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5921\"* feast|strong=\"H4960\"* of|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"*. Nabal|strong=\"H5037\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* merry|strong=\"H2896\"* within|strong=\"H1004\"* him|strong=\"H5921\"*, for|strong=\"H5704\"* he|strong=\"H1931\"* was|strong=\"H3820\"* very|strong=\"H3966\"* drunk|strong=\"H7910\"*. Therefore|strong=\"H5921\"* she|strong=\"H1931\"* told|strong=\"H5046\"* him|strong=\"H5921\"* nothing|strong=\"H3808\"* until|strong=\"H5704\"* the|strong=\"H5921\"* morning|strong=\"H1242\"* light." + }, + { + "verseNum": 37, + "text": "In|strong=\"H4191\"* the|strong=\"H3318\"* morning|strong=\"H1242\"*, when|strong=\"H1961\"* the|strong=\"H3318\"* wine|strong=\"H3196\"* had|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Nabal|strong=\"H5037\"*, his|strong=\"H5046\"* wife told|strong=\"H5046\"* him|strong=\"H5046\"* these|strong=\"H1931\"* things|strong=\"H1697\"*; and|strong=\"H1242\"* his|strong=\"H5046\"* heart|strong=\"H3820\"* died|strong=\"H4191\"* within|strong=\"H7130\"* him|strong=\"H5046\"*, and|strong=\"H1242\"* he|strong=\"H1931\"* became|strong=\"H1961\"* as|strong=\"H1697\"* a|strong=\"H3068\"* stone." + }, + { + "verseNum": 38, + "text": "About|strong=\"H1961\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* later|strong=\"H1961\"*, Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* Nabal|strong=\"H5037\"*, so|strong=\"H1961\"* that|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H3588\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Nabal|strong=\"H5037\"* was|strong=\"H3068\"* dead|strong=\"H4191\"*, he|strong=\"H3588\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* pleaded|strong=\"H7378\"* the|strong=\"H8085\"* cause|strong=\"H7379\"* of|strong=\"H3068\"* my|strong=\"H8085\"* reproach|strong=\"H2781\"* from|strong=\"H7725\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Nabal|strong=\"H5037\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* kept|strong=\"H2820\"* back|strong=\"H7725\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* from|strong=\"H7725\"* evil|strong=\"H7451\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* returned|strong=\"H7725\"* the|strong=\"H8085\"* evildoing of|strong=\"H3068\"* Nabal|strong=\"H5037\"* on|strong=\"H3027\"* his|strong=\"H3068\"* own|strong=\"H3027\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 40, + "text": "When|strong=\"H1696\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* had|strong=\"H1732\"* come|strong=\"H7971\"* to|strong=\"H1696\"* Abigail to|strong=\"H1696\"* Carmel|strong=\"H3760\"*, they|strong=\"H3947\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H7971\"*, saying|strong=\"H1696\"*, “David|strong=\"H1732\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* us|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* take|strong=\"H3947\"* you|strong=\"H7971\"* to|strong=\"H1696\"* him|strong=\"H7971\"* as|strong=\"H1696\"* wife|strong=\"H1696\"*.”" + }, + { + "verseNum": 41, + "text": "She|strong=\"H6965\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* with|strong=\"H7364\"* her|strong=\"H6965\"* face to|strong=\"H6965\"* the|strong=\"H6965\"* earth, and|strong=\"H6965\"* said, “Behold|strong=\"H2009\"*, your|strong=\"H6965\"* servant|strong=\"H5650\"* is|strong=\"H2009\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H6965\"* wash|strong=\"H7364\"* the|strong=\"H6965\"* feet|strong=\"H7272\"* of|strong=\"H5650\"* the|strong=\"H6965\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* my|strong=\"H6965\"* lord.”" + }, + { + "verseNum": 42, + "text": "Abigail hurriedly|strong=\"H4116\"* arose|strong=\"H6965\"* and|strong=\"H1980\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"* with|strong=\"H1980\"* her|strong=\"H5921\"* five|strong=\"H2568\"* maids|strong=\"H5291\"* who|strong=\"H4397\"* followed|strong=\"H1980\"* her|strong=\"H5921\"*; and|strong=\"H1980\"* she|strong=\"H5921\"* went|strong=\"H1980\"* after|strong=\"H5921\"* the|strong=\"H5921\"* messengers|strong=\"H4397\"* of|strong=\"H5921\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* became|strong=\"H1961\"* his|strong=\"H1732\"* wife." + }, + { + "verseNum": 43, + "text": "David|strong=\"H1732\"* also|strong=\"H1571\"* took|strong=\"H3947\"* Ahinoam of|strong=\"H8147\"* Jezreel|strong=\"H3157\"*; and|strong=\"H1732\"* they|strong=\"H1571\"* both|strong=\"H8147\"* became|strong=\"H1961\"* his|strong=\"H3947\"* wives." + }, + { + "verseNum": 44, + "text": "Now|strong=\"H5414\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* given|strong=\"H5414\"* Michal|strong=\"H4324\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, David|strong=\"H1732\"*’s wife, to|strong=\"H5414\"* Palti|strong=\"H6406\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Laish|strong=\"H3919\"*, who|strong=\"H1121\"* was|strong=\"H1732\"* of|strong=\"H1121\"* Gallim|strong=\"H1554\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* Ziphites|strong=\"H2130\"* came|strong=\"H7586\"* to|strong=\"H5921\"* Saul|strong=\"H7586\"* to|strong=\"H5921\"* Gibeah|strong=\"H1390\"*, saying, “Doesn’t David|strong=\"H1732\"* hide|strong=\"H5641\"* himself|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H6440\"* Hachilah|strong=\"H2444\"*, which is|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H3452\"*?”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* Saul|strong=\"H7586\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6965\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"*, having three|strong=\"H7969\"* thousand chosen men|strong=\"H3478\"* of|strong=\"H4057\"* Israel|strong=\"H3478\"* with|strong=\"H3381\"* him|strong=\"H3381\"*, to|strong=\"H3381\"* seek|strong=\"H1245\"* David|strong=\"H1732\"* in|strong=\"H3478\"* the|strong=\"H6965\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* Ziph|strong=\"H2128\"*." + }, + { + "verseNum": 3, + "text": "Saul|strong=\"H7586\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H3427\"* Hachilah|strong=\"H2444\"*, which|strong=\"H4057\"* is|strong=\"H1870\"* before|strong=\"H6440\"* the|strong=\"H6440\"* desert|strong=\"H4057\"*, by|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"*. But|strong=\"H3588\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*, and|strong=\"H1732\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* came|strong=\"H7586\"* after|strong=\"H5921\"* him|strong=\"H6440\"* into|strong=\"H5921\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* spies|strong=\"H7270\"*, and|strong=\"H7971\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* certainly|strong=\"H3588\"* come|strong=\"H7586\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* came|strong=\"H5971\"* to|strong=\"H1121\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Saul|strong=\"H7586\"* had|strong=\"H1732\"* encamped|strong=\"H2583\"*; and|strong=\"H1121\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Saul|strong=\"H7586\"* lay|strong=\"H7901\"*, with|strong=\"H7901\"* Abner the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, the|strong=\"H7200\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H1732\"* army|strong=\"H6635\"*. Saul|strong=\"H7586\"* lay|strong=\"H7901\"* within the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H1121\"* the|strong=\"H7200\"* wagons, and|strong=\"H1121\"* the|strong=\"H7200\"* people|strong=\"H5971\"* were|strong=\"H5971\"* encamped|strong=\"H2583\"* around|strong=\"H5439\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* David|strong=\"H1732\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"* to|strong=\"H3381\"* Ahimelech the|strong=\"H5973\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* to|strong=\"H3381\"* Abishai the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, saying, “Who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* me|strong=\"H5973\"* to|strong=\"H3381\"* Saul|strong=\"H7586\"* to|strong=\"H3381\"* the|strong=\"H5973\"* camp|strong=\"H4264\"*?”" + }, + { + "verseNum": 7, + "text": "So David|strong=\"H1732\"* and|strong=\"H5971\"* Abishai came|strong=\"H5971\"* to|strong=\"H1732\"* the|strong=\"H5439\"* people|strong=\"H5971\"* by|strong=\"H3915\"* night|strong=\"H3915\"*; and|strong=\"H5971\"*, behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* lay|strong=\"H7901\"* sleeping|strong=\"H3463\"* within the|strong=\"H5439\"* place of|strong=\"H5971\"* the|strong=\"H5439\"* wagons, with|strong=\"H7901\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* stuck|strong=\"H4600\"* in|strong=\"H7901\"* the|strong=\"H5439\"* ground at|strong=\"H1732\"* his|strong=\"H1732\"* head|strong=\"H4763\"*; and|strong=\"H5971\"* Abner and|strong=\"H5971\"* the|strong=\"H5439\"* people|strong=\"H5971\"* lay|strong=\"H7901\"* around|strong=\"H5439\"* him|strong=\"H5439\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6258\"* Abishai said to|strong=\"H3027\"* David|strong=\"H1732\"*, “God|strong=\"H3808\"* has|strong=\"H3117\"* delivered|strong=\"H5462\"* up|strong=\"H5462\"* your|strong=\"H3808\"* enemy into|strong=\"H2595\"* your|strong=\"H3808\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3117\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* to|strong=\"H3027\"* the|strong=\"H5221\"* earth at|strong=\"H1732\"* one|strong=\"H3808\"* stroke|strong=\"H3027\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3027\"* not|strong=\"H3808\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* the|strong=\"H5221\"* second|strong=\"H8138\"* time|strong=\"H3117\"*.”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Abishai, “Don’t destroy|strong=\"H7843\"* him|strong=\"H7971\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*, and|strong=\"H3068\"* be|strong=\"H3027\"* guiltless|strong=\"H5352\"*?”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* said, “As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* him|strong=\"H4191\"*; or|strong=\"H3117\"* his|strong=\"H3068\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* come|strong=\"H3381\"* to|strong=\"H3381\"* die|strong=\"H4191\"*, or|strong=\"H3117\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* battle|strong=\"H4421\"* and|strong=\"H3068\"* perish|strong=\"H5595\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* forbid|strong=\"H2486\"* that|strong=\"H3068\"* I|strong=\"H6258\"* should|strong=\"H3068\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*; but|strong=\"H6258\"* now|strong=\"H6258\"* please|strong=\"H4994\"* take|strong=\"H3947\"* the|strong=\"H3947\"* spear|strong=\"H2595\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H4763\"* and|strong=\"H3068\"* the|strong=\"H3947\"* jar|strong=\"H6835\"* of|strong=\"H3068\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* let|strong=\"H7971\"*’s go|strong=\"H3212\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* and|strong=\"H3068\"* the|strong=\"H3605\"* jar|strong=\"H6835\"* of|strong=\"H3068\"* water|strong=\"H4325\"* from|strong=\"H5921\"* Saul|strong=\"H7586\"*’s head|strong=\"H5307\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* went|strong=\"H3212\"* away|strong=\"H3947\"*. No|strong=\"H3605\"* man|strong=\"H3605\"* saw|strong=\"H7200\"* it|strong=\"H5921\"*, or|strong=\"H7200\"* knew|strong=\"H3045\"* it|strong=\"H5921\"*, nor|strong=\"H3045\"* did|strong=\"H3068\"* any|strong=\"H3605\"* awake|strong=\"H6974\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4325\"* all|strong=\"H3605\"* asleep|strong=\"H3462\"*, because|strong=\"H3588\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H3462\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5975\"* David|strong=\"H1732\"* went|strong=\"H5674\"* over|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H5676\"* side|strong=\"H5676\"*, and|strong=\"H1732\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* far|strong=\"H7350\"* away|strong=\"H5674\"*, a|strong=\"H3068\"* great|strong=\"H7227\"* space|strong=\"H4725\"* being between|strong=\"H5921\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* David|strong=\"H1732\"* cried|strong=\"H7121\"* to|strong=\"H1121\"* the|strong=\"H7121\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Abner the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, saying, “Don’t you|strong=\"H3808\"* answer|strong=\"H6030\"*, Abner?”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Abner, “Aren’t you|strong=\"H3588\"* a|strong=\"H3068\"* man? Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H3644\"* you|strong=\"H3588\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*? Why|strong=\"H4100\"* then|strong=\"H4428\"* have|strong=\"H5971\"* you|strong=\"H3588\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* over|strong=\"H4428\"* your|strong=\"H8104\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*? For|strong=\"H3588\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* came|strong=\"H3478\"* in|strong=\"H3478\"* to|strong=\"H3478\"* destroy|strong=\"H7843\"* your|strong=\"H8104\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* isn’t good|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*. As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* worthy|strong=\"H1121\"* to|strong=\"H3068\"* die|strong=\"H4194\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* over|strong=\"H5921\"* your|strong=\"H3068\"* lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*. Now|strong=\"H6258\"* see|strong=\"H7200\"* where|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s spear|strong=\"H2595\"* is|strong=\"H3068\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* jar|strong=\"H6835\"* of|strong=\"H1121\"* water|strong=\"H4325\"* that|strong=\"H3588\"* was|strong=\"H3068\"* at|strong=\"H5921\"* his|strong=\"H8104\"* head|strong=\"H4763\"*.”" + }, + { + "verseNum": 17, + "text": "Saul|strong=\"H7586\"* recognized|strong=\"H5234\"* David|strong=\"H1732\"*’s voice|strong=\"H6963\"*, and|strong=\"H1121\"* said, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H2088\"* voice|strong=\"H6963\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* said, “Why|strong=\"H4100\"* does|strong=\"H6213\"* my|strong=\"H6213\"* lord pursue|strong=\"H7291\"* his|strong=\"H3027\"* servant|strong=\"H5650\"*? For|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H5650\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* evil|strong=\"H7451\"* is|strong=\"H2088\"* in|strong=\"H6213\"* my|strong=\"H6213\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H6440\"* king|strong=\"H4428\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1121\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*. If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* so|strong=\"H6258\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* stirred|strong=\"H3068\"* you|strong=\"H3588\"* up|strong=\"H5496\"* against|strong=\"H6440\"* me|strong=\"H6440\"*, let|strong=\"H4994\"* him|strong=\"H6440\"* accept|strong=\"H6440\"* an|strong=\"H3588\"* offering|strong=\"H4503\"*. But|strong=\"H3588\"* if|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, they|strong=\"H1992\"* are|strong=\"H3117\"* cursed before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3068\"* driven|strong=\"H1644\"* me|strong=\"H6440\"* out|strong=\"H1644\"* today|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* shouldn’t cling to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*, saying|strong=\"H1697\"*, ‘Go|strong=\"H3212\"*, serve|strong=\"H5647\"* other gods!’" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, don’t let|strong=\"H6258\"* my|strong=\"H3068\"* blood|strong=\"H1818\"* fall|strong=\"H5307\"* to|strong=\"H3318\"* the|strong=\"H6440\"* earth away|strong=\"H5307\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* flea|strong=\"H6550\"*, as|strong=\"H3068\"* when|strong=\"H3588\"* one|strong=\"H3588\"* hunts|strong=\"H7291\"* a|strong=\"H3068\"* partridge|strong=\"H7124\"* in|strong=\"H3478\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said, “I|strong=\"H3588\"* have|strong=\"H5869\"* sinned|strong=\"H2398\"*. Return|strong=\"H7725\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H5750\"* do|strong=\"H7489\"* you|strong=\"H3588\"* harm|strong=\"H7489\"*, because|strong=\"H3588\"* my|strong=\"H1732\"* life|strong=\"H5315\"* was|strong=\"H1732\"* precious|strong=\"H3365\"* in|strong=\"H3117\"* your|strong=\"H7725\"* eyes|strong=\"H5869\"* today|strong=\"H3117\"*. Behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H5869\"* played|strong=\"H5528\"* the|strong=\"H3588\"* fool|strong=\"H5528\"*, and|strong=\"H1121\"* have|strong=\"H5869\"* erred|strong=\"H7686\"* exceedingly|strong=\"H3966\"*.”" + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"*, “Behold|strong=\"H2009\"* the|strong=\"H3947\"* spear|strong=\"H2595\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*! Let one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"* come|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H6030\"* get|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H7725\"* every|strong=\"H7725\"* man his|strong=\"H5414\"* righteousness|strong=\"H6666\"* and|strong=\"H3068\"* his|strong=\"H5414\"* faithfulness; because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H7725\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* wouldn’t stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H3117\"* your|strong=\"H3068\"* life|strong=\"H5315\"* was|strong=\"H3068\"* respected|strong=\"H5869\"* today|strong=\"H3117\"* in|strong=\"H3068\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*, so|strong=\"H3651\"* let|strong=\"H3651\"* my|strong=\"H3605\"* life|strong=\"H5315\"* be|strong=\"H3068\"* respected|strong=\"H5869\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* let|strong=\"H3651\"* him|strong=\"H3605\"* deliver|strong=\"H5337\"* me|strong=\"H5315\"* out|strong=\"H5337\"* of|strong=\"H3068\"* all|strong=\"H3605\"* oppression.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1571\"* Saul|strong=\"H7586\"* said to|strong=\"H7725\"* David|strong=\"H1732\"*, “You|strong=\"H7725\"* are|strong=\"H1121\"* blessed|strong=\"H1288\"*, my|strong=\"H1732\"* son|strong=\"H1121\"* David|strong=\"H1732\"*. You|strong=\"H7725\"* will|strong=\"H1571\"* both|strong=\"H1571\"* do|strong=\"H6213\"* mightily, and|strong=\"H1121\"* will|strong=\"H1571\"* surely|strong=\"H7725\"* prevail|strong=\"H3201\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* said in|strong=\"H3478\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, “I|strong=\"H3588\"* will|strong=\"H3478\"* now|strong=\"H6258\"* perish|strong=\"H5595\"* one|strong=\"H3605\"* day|strong=\"H3117\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*. There|strong=\"H3117\"* is|strong=\"H3820\"* nothing|strong=\"H3605\"* better|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H4480\"* than|strong=\"H4480\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* escape|strong=\"H4422\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H3117\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* will|strong=\"H3478\"* despair|strong=\"H2976\"* of|strong=\"H3117\"* me|strong=\"H4480\"*, to|strong=\"H3478\"* seek|strong=\"H1245\"* me|strong=\"H4480\"* any|strong=\"H3605\"* more|strong=\"H4480\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*. So|strong=\"H4480\"* I|strong=\"H3588\"* will|strong=\"H3478\"* escape|strong=\"H4422\"* out|strong=\"H4480\"* of|strong=\"H3117\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H3967\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5674\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, to|strong=\"H1121\"* Achish the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maoch|strong=\"H4582\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* Achish at|strong=\"H3427\"* Gath|strong=\"H1661\"*, he|strong=\"H1931\"* and|strong=\"H1004\"* his|strong=\"H1732\"* men|strong=\"H8147\"*, every|strong=\"H3427\"* man with|strong=\"H5973\"* his|strong=\"H1732\"* household|strong=\"H1004\"*, even David|strong=\"H1732\"* with|strong=\"H5973\"* his|strong=\"H1732\"* two|strong=\"H8147\"* wives, Ahinoam the|strong=\"H5973\"* Jezreelitess|strong=\"H3159\"* and|strong=\"H1004\"* Abigail the|strong=\"H5973\"* Carmelitess|strong=\"H3762\"*, Nabal|strong=\"H5037\"*’s wife." + }, + { + "verseNum": 4, + "text": "Saul|strong=\"H7586\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* fled|strong=\"H1272\"* to|strong=\"H1732\"* Gath|strong=\"H1661\"*, so|strong=\"H3808\"* he|strong=\"H3588\"* stopped looking|strong=\"H1245\"* for|strong=\"H3588\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H5414\"* Achish, “If now|strong=\"H4994\"* I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3427\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*, let|strong=\"H4994\"* them|strong=\"H5414\"* give|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H4725\"* in|strong=\"H3427\"* one|strong=\"H5892\"* of|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H5414\"* country|strong=\"H7704\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* may|strong=\"H4994\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*. For|strong=\"H3427\"* why|strong=\"H4100\"* should|strong=\"H4100\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* royal|strong=\"H4467\"* city|strong=\"H5892\"* with|strong=\"H5973\"* you|strong=\"H5414\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* Achish gave|strong=\"H5414\"* him|strong=\"H5414\"* Ziklag|strong=\"H6860\"* that|strong=\"H3117\"* day|strong=\"H3117\"*: therefore|strong=\"H3651\"* Ziklag|strong=\"H6860\"* belongs|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3117\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3117\"* country|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* was|strong=\"H1961\"* a|strong=\"H3068\"* full|strong=\"H3117\"* year|strong=\"H3117\"* and|strong=\"H3117\"* four months|strong=\"H2320\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H1732\"* men went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1732\"* raided|strong=\"H6584\"* the|strong=\"H3588\"* Geshurites|strong=\"H1651\"*, the|strong=\"H3588\"* Girzites, and|strong=\"H1732\"* the|strong=\"H3588\"* Amalekites|strong=\"H6003\"*; for|strong=\"H3588\"* those|strong=\"H2007\"* were|strong=\"H4714\"* the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3588\"* land who|strong=\"H3427\"* were|strong=\"H4714\"* of|strong=\"H3427\"* old|strong=\"H5769\"*, on|strong=\"H3427\"* the|strong=\"H3588\"* way|strong=\"H5704\"* to|strong=\"H5704\"* Shur|strong=\"H7793\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* land, and|strong=\"H7725\"* saved|strong=\"H2421\"* no|strong=\"H3808\"* man or|strong=\"H3808\"* woman alive|strong=\"H2421\"*, and|strong=\"H7725\"* took|strong=\"H3947\"* away|strong=\"H7725\"* the|strong=\"H3947\"* sheep|strong=\"H6629\"*, the|strong=\"H3947\"* cattle|strong=\"H1241\"*, the|strong=\"H3947\"* donkeys|strong=\"H2543\"*, the|strong=\"H3947\"* camels|strong=\"H1581\"*, and|strong=\"H7725\"* the|strong=\"H3947\"* clothing. Then|strong=\"H3947\"* he|strong=\"H1732\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Achish." + }, + { + "verseNum": 10, + "text": "Achish said, “Against|strong=\"H5921\"* whom have|strong=\"H3063\"* you|strong=\"H5921\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* saved|strong=\"H2421\"* neither|strong=\"H3808\"* man|strong=\"H3605\"* nor|strong=\"H3808\"* woman alive|strong=\"H2421\"* to|strong=\"H6213\"* bring|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* Gath|strong=\"H1661\"*, saying, “Lest|strong=\"H6435\"* they|strong=\"H3117\"* should|strong=\"H3117\"* tell|strong=\"H5046\"* about|strong=\"H5921\"* us|strong=\"H5046\"*, saying, ‘David|strong=\"H1732\"* did|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H3117\"* this|strong=\"H6213\"* has|strong=\"H3117\"* been|strong=\"H5046\"* his|strong=\"H3605\"* way|strong=\"H3541\"* all|strong=\"H3605\"* the|strong=\"H3605\"* time|strong=\"H3117\"* he|strong=\"H3117\"* has|strong=\"H3117\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* country|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*.’”" + }, + { + "verseNum": 12, + "text": "Achish believed David|strong=\"H1732\"*, saying, “He|strong=\"H1732\"* has|strong=\"H1961\"* made|strong=\"H1961\"* his|strong=\"H1732\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* utterly to|strong=\"H3478\"* abhor him|strong=\"H1732\"*. Therefore|strong=\"H1732\"* he|strong=\"H1732\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, the|strong=\"H3588\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* their|strong=\"H1992\"* armies|strong=\"H6635\"* together|strong=\"H6908\"* for|strong=\"H3588\"* warfare|strong=\"H6635\"*, to|strong=\"H3318\"* fight|strong=\"H3898\"* with|strong=\"H3898\"* Israel|strong=\"H3478\"*. Achish said|strong=\"H3318\"* to|strong=\"H3318\"* David|strong=\"H1732\"*, “Know|strong=\"H3045\"* assuredly|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3898\"* me|strong=\"H3318\"* in|strong=\"H3478\"* the|strong=\"H3588\"* army|strong=\"H6635\"*, you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3045\"* men|strong=\"H1992\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said|strong=\"H3651\"* to|strong=\"H6213\"* Achish, “Therefore|strong=\"H3651\"* you|strong=\"H3605\"* will|strong=\"H5650\"* know|strong=\"H3045\"* what|strong=\"H3045\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* can|strong=\"H5650\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3478\"* Samuel|strong=\"H8050\"* was|strong=\"H3478\"* dead|strong=\"H4191\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* mourned|strong=\"H5594\"* for|strong=\"H4191\"* him|strong=\"H4191\"* and|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H4191\"* in|strong=\"H3478\"* Ramah|strong=\"H7414\"*, even in|strong=\"H3478\"* his|strong=\"H3605\"* own city|strong=\"H5892\"*. Saul|strong=\"H7586\"* had|strong=\"H3478\"* sent away|strong=\"H5493\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3478\"* familiar spirits and|strong=\"H3478\"* the|strong=\"H3605\"* wizards|strong=\"H3049\"* out|strong=\"H3605\"* of|strong=\"H5892\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* and|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Shunem|strong=\"H7766\"*; and|strong=\"H3478\"* Saul|strong=\"H7586\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H6908\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H7200\"* Saul|strong=\"H7586\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* army|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"*, he|strong=\"H3820\"* was|strong=\"H7586\"* afraid|strong=\"H3372\"*, and|strong=\"H7586\"* his|strong=\"H7200\"* heart|strong=\"H3820\"* trembled|strong=\"H2729\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3068\"* Saul|strong=\"H7586\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* didn’t answer|strong=\"H6030\"* him|strong=\"H7592\"* by|strong=\"H3068\"* dreams|strong=\"H2472\"*, by|strong=\"H3068\"* Urim, or|strong=\"H3808\"* by|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* Saul|strong=\"H7586\"* said to|strong=\"H3212\"* his|strong=\"H1245\"* servants|strong=\"H5650\"*, “Seek|strong=\"H1245\"* for|strong=\"H5650\"* me|strong=\"H1875\"* a|strong=\"H3068\"* woman who|strong=\"H5650\"* has|strong=\"H5650\"* a|strong=\"H3068\"* familiar spirit, that|strong=\"H7586\"* I|strong=\"H2009\"* may go|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3212\"* and|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H5650\"* her|strong=\"H3212\"*.”" + }, + { + "verseNum": 8, + "text": "Saul|strong=\"H7586\"* disguised|strong=\"H2664\"* himself|strong=\"H1931\"* and|strong=\"H3212\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other|strong=\"H8147\"* clothing|strong=\"H3847\"*, and|strong=\"H3212\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3212\"* two|strong=\"H8147\"* men|strong=\"H8147\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3212\"* they|strong=\"H1931\"* came|strong=\"H5927\"* to|strong=\"H3212\"* the|strong=\"H5927\"* woman by|strong=\"H5973\"* night|strong=\"H3915\"*. Then|strong=\"H5927\"* he|strong=\"H1931\"* said, “Please consult for|strong=\"H5973\"* me|strong=\"H5973\"* by|strong=\"H5973\"* the|strong=\"H5927\"* familiar spirit, and|strong=\"H3212\"* bring|strong=\"H5927\"* me|strong=\"H5973\"* up|strong=\"H5927\"* whomever I|strong=\"H3212\"* shall|strong=\"H1931\"* name to|strong=\"H3212\"* you|strong=\"H5973\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6213\"* woman said to|strong=\"H4191\"* him|strong=\"H6213\"*, “Behold|strong=\"H2009\"*, you|strong=\"H6213\"* know|strong=\"H3045\"* what|strong=\"H4100\"* Saul|strong=\"H7586\"* has|strong=\"H4100\"* done|strong=\"H6213\"*, how|strong=\"H4100\"* he|strong=\"H6213\"* has|strong=\"H4100\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* those|strong=\"H4480\"* who|strong=\"H5315\"* have|strong=\"H3045\"* familiar|strong=\"H3045\"* spirits and|strong=\"H7586\"* the|strong=\"H6213\"* wizards|strong=\"H3049\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H6213\"* land. Why|strong=\"H4100\"* then|strong=\"H2009\"* do|strong=\"H6213\"* you|strong=\"H6213\"* lay|strong=\"H5315\"* a|strong=\"H3068\"* snare|strong=\"H5367\"* for|strong=\"H6213\"* my|strong=\"H3045\"* life|strong=\"H5315\"*, to|strong=\"H4191\"* cause|strong=\"H6213\"* me|strong=\"H5315\"* to|strong=\"H4191\"* die|strong=\"H4191\"*?”" + }, + { + "verseNum": 10, + "text": "Saul|strong=\"H7586\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* her by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*, “As|strong=\"H1697\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, no punishment|strong=\"H5771\"* will|strong=\"H3068\"* happen|strong=\"H7136\"* to|strong=\"H3068\"* you|strong=\"H7136\"* for|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5927\"* the|strong=\"H5927\"* woman said, “Whom|strong=\"H4310\"* shall|strong=\"H4310\"* I bring|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* you|strong=\"H4310\"*?”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* woman saw|strong=\"H7200\"* Samuel|strong=\"H8050\"*, she|strong=\"H4100\"* cried|strong=\"H2199\"* with|strong=\"H6963\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*; and|strong=\"H1419\"* the|strong=\"H7200\"* woman spoke to|strong=\"H7200\"* Saul|strong=\"H7586\"*, saying|strong=\"H6963\"*, “Why|strong=\"H4100\"* have|strong=\"H7200\"* you|strong=\"H4100\"* deceived|strong=\"H7411\"* me|strong=\"H7200\"*? For|strong=\"H6963\"* you|strong=\"H4100\"* are|strong=\"H4100\"* Saul|strong=\"H7586\"*!”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H5927\"* her|strong=\"H7200\"*, “Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"*! What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* said to|strong=\"H5927\"* her|strong=\"H3045\"*, “What|strong=\"H4100\"* does|strong=\"H4100\"* he|strong=\"H1931\"* look like|strong=\"H5927\"*?”" + }, + { + "verseNum": 15, + "text": "Samuel|strong=\"H8050\"* said|strong=\"H6030\"* to|strong=\"H5927\"* Saul|strong=\"H7586\"*, “Why|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H5921\"* disturbed|strong=\"H7264\"* me|strong=\"H5921\"*, to|strong=\"H5927\"* bring|strong=\"H5927\"* me|strong=\"H5921\"* up|strong=\"H5927\"*?”" + }, + { + "verseNum": 16, + "text": "Samuel|strong=\"H8050\"* said, “Why|strong=\"H4100\"* then|strong=\"H1961\"* do|strong=\"H3068\"* you|strong=\"H5921\"* ask|strong=\"H7592\"* me|strong=\"H5921\"*, since Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* you|strong=\"H5921\"* and|strong=\"H3068\"* has|strong=\"H3068\"* become|strong=\"H1961\"* your|strong=\"H3068\"* adversary|strong=\"H6145\"*?" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* you|strong=\"H5414\"* as|strong=\"H6213\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* me|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* torn|strong=\"H7167\"* the|strong=\"H5414\"* kingdom|strong=\"H4467\"* out|strong=\"H5414\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* given|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1696\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*, even|strong=\"H6213\"* to|strong=\"H1696\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "Because|strong=\"H5921\"* you|strong=\"H5921\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, and|strong=\"H3068\"* didn’t execute|strong=\"H6213\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* Amalek|strong=\"H6002\"*, therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H3068\"* you|strong=\"H5921\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* with|strong=\"H5973\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*; and|strong=\"H1121\"* tomorrow|strong=\"H4279\"* you|strong=\"H5414\"* and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H3027\"* with|strong=\"H5973\"* me|strong=\"H5414\"*. Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* army|strong=\"H4264\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* also|strong=\"H1571\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H1961\"* Saul|strong=\"H7586\"* fell|strong=\"H5307\"* immediately|strong=\"H4116\"* his|strong=\"H3605\"* full|strong=\"H4393\"* length|strong=\"H6967\"* on|strong=\"H3117\"* the|strong=\"H3605\"* earth, and|strong=\"H3117\"* was|strong=\"H1961\"* terrified|strong=\"H3966\"*, because|strong=\"H3588\"* of|strong=\"H3117\"* Samuel|strong=\"H8050\"*’s words|strong=\"H1697\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* strength|strong=\"H3581\"* in|strong=\"H3117\"* him|strong=\"H3605\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* eaten no|strong=\"H3808\"* bread|strong=\"H3899\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* or|strong=\"H3808\"* all|strong=\"H3605\"* night|strong=\"H3915\"* long|strong=\"H3117\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H8085\"* woman came|strong=\"H1697\"* to|strong=\"H1696\"* Saul|strong=\"H7586\"* and|strong=\"H6963\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H7586\"* very|strong=\"H3966\"* troubled|strong=\"H3966\"*, and|strong=\"H6963\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7200\"*, “Behold|strong=\"H2009\"*, your|strong=\"H7760\"* servant|strong=\"H8198\"* has|strong=\"H7586\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H7760\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* I|strong=\"H3588\"* have|strong=\"H7200\"* put|strong=\"H7760\"* my|strong=\"H8085\"* life|strong=\"H5315\"* in|strong=\"H8085\"* my|strong=\"H8085\"* hand|strong=\"H3709\"*, and|strong=\"H6963\"* have|strong=\"H7200\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H7760\"* words|strong=\"H1697\"* which|strong=\"H1697\"* you|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* listen|strong=\"H8085\"* also|strong=\"H1571\"* to|strong=\"H3212\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H7760\"* servant|strong=\"H8198\"*, and|strong=\"H3212\"* let|strong=\"H4994\"* me|strong=\"H6440\"* set|strong=\"H7760\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H6963\"* bread|strong=\"H3899\"* before|strong=\"H6440\"* you|strong=\"H3588\"*. Eat|strong=\"H3899\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* have|strong=\"H1961\"* strength|strong=\"H3581\"* when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3212\"* on|strong=\"H1870\"* your|strong=\"H7760\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* refused|strong=\"H3985\"*, and|strong=\"H6965\"* said|strong=\"H8085\"*, “I|strong=\"H5650\"* will|strong=\"H5650\"* not|strong=\"H3808\"* eat.” But|strong=\"H3808\"* his|strong=\"H8085\"* servants|strong=\"H5650\"*, together|strong=\"H8085\"* with|strong=\"H3427\"* the|strong=\"H8085\"* woman, constrained him|strong=\"H6963\"*; and|strong=\"H6965\"* he|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3985\"* their|strong=\"H8085\"* voice|strong=\"H6963\"*. So|strong=\"H3808\"* he|strong=\"H3808\"* arose|strong=\"H6965\"* from|strong=\"H8085\"* the|strong=\"H8085\"* earth and|strong=\"H6965\"* sat|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H8085\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3947\"* woman|strong=\"H1004\"* had a|strong=\"H3068\"* fattened|strong=\"H4770\"* calf|strong=\"H5695\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*. She hurried|strong=\"H4116\"* and|strong=\"H1004\"* killed|strong=\"H2076\"* it|strong=\"H3947\"*; and|strong=\"H1004\"* she took|strong=\"H3947\"* flour|strong=\"H7058\"* and|strong=\"H1004\"* kneaded|strong=\"H3888\"* it|strong=\"H3947\"*, and|strong=\"H1004\"* baked unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* of|strong=\"H1004\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 25, + "text": "She|strong=\"H1931\"* brought|strong=\"H5066\"* it|strong=\"H1931\"* before|strong=\"H6440\"* Saul|strong=\"H7586\"* and|strong=\"H6965\"* before|strong=\"H6440\"* his|strong=\"H6440\"* servants|strong=\"H5650\"*, and|strong=\"H6965\"* they|strong=\"H1931\"* ate. Then|strong=\"H6965\"* they|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* away|strong=\"H3212\"* that|strong=\"H1931\"* night|strong=\"H3915\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* their|strong=\"H3605\"* armies|strong=\"H4264\"* to|strong=\"H3478\"* Aphek; and|strong=\"H3478\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* encamped|strong=\"H2583\"* by|strong=\"H3478\"* the|strong=\"H3605\"* spring|strong=\"H5869\"* which|strong=\"H5869\"* is|strong=\"H3478\"* in|strong=\"H2583\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5674\"* lords|strong=\"H5633\"* of|strong=\"H1732\"* the|strong=\"H5674\"* Philistines|strong=\"H6430\"* passed|strong=\"H5674\"* on|strong=\"H5674\"* by|strong=\"H5674\"* hundreds|strong=\"H3967\"* and|strong=\"H3967\"* by|strong=\"H5674\"* thousands; and|strong=\"H3967\"* David|strong=\"H1732\"* and|strong=\"H3967\"* his|strong=\"H1732\"* men passed|strong=\"H5674\"* on|strong=\"H5674\"* in|strong=\"H1732\"* the|strong=\"H5674\"* rear with|strong=\"H5973\"* Achish." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* the|strong=\"H3117\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3117\"* Philistines|strong=\"H6430\"* said, “What|strong=\"H4100\"* about|strong=\"H1961\"* these|strong=\"H2088\"* Hebrews|strong=\"H5680\"*?”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* angry|strong=\"H7107\"* with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H7725\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Make|strong=\"H7521\"* the|strong=\"H5921\"* man|strong=\"H2088\"* return|strong=\"H7725\"*, that|strong=\"H2088\"* he|strong=\"H8033\"* may|strong=\"H1961\"* go|strong=\"H3381\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H5921\"* have|strong=\"H1961\"* appointed|strong=\"H6485\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* let|strong=\"H3381\"* him|strong=\"H5921\"* not|strong=\"H3808\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* us|strong=\"H7725\"* to|strong=\"H7725\"* battle|strong=\"H4421\"*, lest in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* he|strong=\"H8033\"* become|strong=\"H1961\"* an|strong=\"H1961\"* adversary|strong=\"H7854\"* to|strong=\"H7725\"* us|strong=\"H7725\"*. For|strong=\"H5921\"* with|strong=\"H5973\"* what|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2088\"* fellow reconcile|strong=\"H7521\"* himself|strong=\"H7521\"* to|strong=\"H7725\"* his|strong=\"H7725\"* lord? Should|strong=\"H4100\"* it|strong=\"H5921\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* these|strong=\"H2088\"* men|strong=\"H7218\"*?" + }, + { + "verseNum": 5, + "text": "Isn’t this|strong=\"H2088\"* David|strong=\"H1732\"*, of|strong=\"H5221\"* whom people|strong=\"H3808\"* sang|strong=\"H6030\"* to|strong=\"H1732\"* one|strong=\"H2088\"* another|strong=\"H2088\"* in|strong=\"H1732\"* dances|strong=\"H4246\"*, saying," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3318\"* Achish called|strong=\"H7121\"* David|strong=\"H1732\"* and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H5704\"* him|strong=\"H7121\"*, “As|strong=\"H5704\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3808\"* upright|strong=\"H3477\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* in|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3588\"* army|strong=\"H4264\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* found|strong=\"H4672\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* you|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* to|strong=\"H5704\"* me|strong=\"H7121\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Nevertheless|strong=\"H3588\"*, the|strong=\"H3588\"* lords|strong=\"H5633\"* don’t favor|strong=\"H5869\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* go|strong=\"H3212\"* in|strong=\"H6213\"* peace|strong=\"H7965\"*, that|strong=\"H7451\"* you|strong=\"H7725\"* not|strong=\"H3808\"* displease|strong=\"H6213\"* the|strong=\"H6213\"* lords|strong=\"H5633\"* of|strong=\"H5869\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Achish, “But|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H1961\"* I|strong=\"H3588\"* done|strong=\"H6213\"*? What|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H3588\"* found|strong=\"H4672\"* in|strong=\"H6213\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* so|strong=\"H6213\"* long|strong=\"H5704\"* as|strong=\"H5704\"* I|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* not|strong=\"H3808\"* go|strong=\"H1961\"* and|strong=\"H4428\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H6440\"* enemies of|strong=\"H4428\"* my|strong=\"H1732\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 9, + "text": "Achish answered|strong=\"H6030\"* David|strong=\"H1732\"*, “I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5869\"* good|strong=\"H2896\"* in|strong=\"H4421\"* my|strong=\"H1732\"* sight|strong=\"H5869\"*, as|strong=\"H5927\"* an|strong=\"H3588\"* angel|strong=\"H4397\"* of|strong=\"H8269\"* God|strong=\"H3808\"*. Notwithstanding, the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* have|strong=\"H5869\"* said|strong=\"H6030\"*, ‘He|strong=\"H3588\"* shall|strong=\"H5869\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* us|strong=\"H3045\"* to|strong=\"H5927\"* the|strong=\"H3588\"* battle|strong=\"H4421\"*.’" + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H5650\"* morning|strong=\"H1242\"* with|strong=\"H3212\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* your|strong=\"H6258\"* lord who|strong=\"H5650\"* have|strong=\"H5650\"* come|strong=\"H3212\"* with|strong=\"H3212\"* you|strong=\"H3212\"*; and|strong=\"H3212\"* as|strong=\"H5650\"* soon|strong=\"H6258\"* as|strong=\"H5650\"* you|strong=\"H3212\"* are|strong=\"H5650\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3212\"* the|strong=\"H5650\"* morning|strong=\"H1242\"* and|strong=\"H3212\"* have|strong=\"H5650\"* light, depart|strong=\"H3212\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"*, he|strong=\"H1931\"* and|strong=\"H7725\"* his|strong=\"H1732\"* men, to|strong=\"H7725\"* depart|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H7725\"* morning|strong=\"H1242\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H7725\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*; and|strong=\"H7725\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"* went|strong=\"H3212\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Jezreel|strong=\"H3157\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* and|strong=\"H3117\"* his|strong=\"H1732\"* men had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Ziklag|strong=\"H6860\"* on|strong=\"H3117\"* the|strong=\"H5221\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, the|strong=\"H5221\"* Amalekites|strong=\"H6003\"* had|strong=\"H1961\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H3117\"* the|strong=\"H5221\"* South|strong=\"H5045\"* and|strong=\"H3117\"* on|strong=\"H3117\"* Ziklag|strong=\"H6860\"*, and|strong=\"H3117\"* had|strong=\"H1961\"* struck|strong=\"H5221\"* Ziklag|strong=\"H6860\"* and|strong=\"H3117\"* burned|strong=\"H8313\"* it|strong=\"H5221\"* with|strong=\"H8313\"* fire," + }, + { + "verseNum": 2, + "text": "and|strong=\"H1419\"* had|strong=\"H3808\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* the|strong=\"H5704\"* women and|strong=\"H1419\"* all|strong=\"H5704\"* who|strong=\"H3808\"* were|strong=\"H1419\"* in|strong=\"H4191\"* it|strong=\"H5704\"*, both|strong=\"H4191\"* small|strong=\"H6996\"* and|strong=\"H1419\"* great|strong=\"H1419\"*. They|strong=\"H3808\"* didn’t kill|strong=\"H4191\"* any|strong=\"H3808\"*, but|strong=\"H3808\"* carried|strong=\"H7617\"* them|strong=\"H7617\"* off|strong=\"H7617\"* and|strong=\"H1419\"* went|strong=\"H3212\"* their|strong=\"H3808\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* his|strong=\"H1732\"* men|strong=\"H1121\"* came|strong=\"H1323\"* to|strong=\"H1121\"* the|strong=\"H8313\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, it|strong=\"H2009\"* was|strong=\"H1732\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire; and|strong=\"H1121\"* their|strong=\"H8313\"* wives, their|strong=\"H8313\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H5375\"* David|strong=\"H1732\"* and|strong=\"H5971\"* the|strong=\"H5375\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H6963\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* voice|strong=\"H6963\"* and|strong=\"H5971\"* wept|strong=\"H1058\"* until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H1732\"* no|strong=\"H5375\"* more|strong=\"H5704\"* power|strong=\"H3581\"* to|strong=\"H5704\"* weep|strong=\"H1058\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"*’s two|strong=\"H8147\"* wives were|strong=\"H1732\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, Ahinoam the|strong=\"H1732\"* Jezreelitess|strong=\"H3159\"*, and|strong=\"H1732\"* Abigail the|strong=\"H1732\"* wife of|strong=\"H8147\"* Nabal|strong=\"H5037\"* the|strong=\"H1732\"* Carmelite|strong=\"H3761\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* greatly|strong=\"H3966\"* distressed|strong=\"H3334\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"* spoke of|strong=\"H1121\"* stoning|strong=\"H5619\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* grieved, every|strong=\"H3605\"* man|strong=\"H1121\"* for|strong=\"H3588\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* for|strong=\"H3588\"* his|strong=\"H3605\"* daughters|strong=\"H1323\"*; but|strong=\"H3588\"* David|strong=\"H1732\"* strengthened|strong=\"H2388\"* himself|strong=\"H5315\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* Abiathar the|strong=\"H3548\"* priest|strong=\"H3548\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahimelech, “Please|strong=\"H4994\"* bring|strong=\"H5066\"* the|strong=\"H3548\"* ephod here|strong=\"H5066\"* to|strong=\"H1121\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “If|strong=\"H3588\"* I|strong=\"H3588\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* this|strong=\"H2088\"* troop|strong=\"H1416\"*, will|strong=\"H3068\"* I|strong=\"H3588\"* overtake|strong=\"H5381\"* them|strong=\"H7291\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H5975\"* David|strong=\"H1732\"* went|strong=\"H3212\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* the|strong=\"H5704\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* men who|strong=\"H1931\"* were|strong=\"H1732\"* with|strong=\"H3212\"* him|strong=\"H5975\"*, and|strong=\"H3967\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*, where those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1732\"* left|strong=\"H3498\"* behind|strong=\"H3498\"* stayed|strong=\"H5975\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H1931\"* David|strong=\"H1732\"* pursued|strong=\"H7291\"*, he|strong=\"H1931\"* and|strong=\"H3967\"* four hundred|strong=\"H3967\"* men; for|strong=\"H5975\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* stayed|strong=\"H5975\"* behind|strong=\"H5975\"*, who|strong=\"H1931\"* were|strong=\"H1732\"* so|strong=\"H5975\"* faint|strong=\"H6296\"* that|strong=\"H1931\"* they|strong=\"H1931\"* couldn’t go|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5414\"* found|strong=\"H4672\"* an|strong=\"H5414\"* Egyptian|strong=\"H4713\"* in|strong=\"H4672\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H3899\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* to|strong=\"H5414\"* David|strong=\"H1732\"*, and|strong=\"H3899\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* bread|strong=\"H3899\"*, and|strong=\"H3899\"* he|strong=\"H1732\"* ate; and|strong=\"H3899\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* water|strong=\"H4325\"* to|strong=\"H5414\"* drink|strong=\"H8248\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* piece|strong=\"H6400\"* of|strong=\"H3117\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H3117\"* figs|strong=\"H1690\"* and|strong=\"H7725\"* two|strong=\"H8147\"* clusters|strong=\"H6778\"* of|strong=\"H3117\"* raisins|strong=\"H6778\"*. When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* eaten, his|strong=\"H5414\"* spirit|strong=\"H7307\"* came|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H5414\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* eaten no|strong=\"H3808\"* bread|strong=\"H3899\"*, and|strong=\"H7725\"* drank|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H3588\"* three|strong=\"H7969\"* days|strong=\"H3117\"* and|strong=\"H7725\"* three|strong=\"H7969\"* nights|strong=\"H3915\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* asked|strong=\"H2470\"* him|strong=\"H1732\"*, “To|strong=\"H3117\"* whom|strong=\"H4310\"* do|strong=\"H2088\"* you|strong=\"H3588\"* belong? Where|strong=\"H2088\"* are|strong=\"H3117\"* you|strong=\"H3588\"* from|strong=\"H3117\"*?”" + }, + { + "verseNum": 14, + "text": "We made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* on|strong=\"H5921\"* the|strong=\"H5921\"* South|strong=\"H5045\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* that|strong=\"H3063\"* which|strong=\"H3063\"* belongs to|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H5921\"* South|strong=\"H5045\"* of|strong=\"H5921\"* Caleb|strong=\"H3612\"*; and|strong=\"H3063\"* we|strong=\"H3068\"* burned|strong=\"H8313\"* Ziklag|strong=\"H6860\"* with|strong=\"H8313\"* fire.”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said to|strong=\"H3381\"* him|strong=\"H3027\"*, “Will|strong=\"H3027\"* you|strong=\"H3381\"* bring|strong=\"H3381\"* me|strong=\"H4191\"* down|strong=\"H3381\"* to|strong=\"H3381\"* this|strong=\"H2088\"* troop|strong=\"H1416\"*?”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H5921\"* he|strong=\"H3605\"* had|strong=\"H3063\"* brought|strong=\"H3947\"* him|strong=\"H6440\"* down|strong=\"H3381\"*, behold|strong=\"H2009\"*, they|strong=\"H5921\"* were|strong=\"H6430\"* spread|strong=\"H5203\"* around|strong=\"H5921\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*, eating, drinking|strong=\"H8354\"*, and|strong=\"H3063\"* dancing|strong=\"H2287\"*, because|strong=\"H5921\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* plunder|strong=\"H7998\"* that|strong=\"H3605\"* they|strong=\"H5921\"* had|strong=\"H3063\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3063\"* out|strong=\"H3947\"* of|strong=\"H6440\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* from|strong=\"H5921\"* the|strong=\"H5921\"* twilight|strong=\"H5399\"* even|strong=\"H6153\"* to|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* of|strong=\"H5921\"* the|strong=\"H5921\"* next|strong=\"H4283\"* day|strong=\"H4283\"*. Not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H5288\"* of|strong=\"H5921\"* them|strong=\"H1992\"* escaped|strong=\"H4422\"* from|strong=\"H5921\"* there|strong=\"H1992\"*, except|strong=\"H3588\"* four hundred|strong=\"H3967\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H1992\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* camels|strong=\"H1581\"* and|strong=\"H3967\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 18, + "text": "David|strong=\"H1732\"* recovered|strong=\"H5337\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amalekites|strong=\"H6002\"* had|strong=\"H1732\"* taken|strong=\"H3947\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* rescued|strong=\"H5337\"* his|strong=\"H3605\"* two|strong=\"H8147\"* wives." + }, + { + "verseNum": 19, + "text": "There|strong=\"H4480\"* was|strong=\"H1732\"* nothing|strong=\"H3808\"* lacking|strong=\"H5737\"* to|strong=\"H5704\"* them|strong=\"H7725\"*, neither|strong=\"H3808\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, neither|strong=\"H3808\"* sons|strong=\"H1121\"* nor|strong=\"H3808\"* daughters|strong=\"H1323\"*, neither|strong=\"H3808\"* plunder|strong=\"H7998\"*, nor|strong=\"H3808\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* they|strong=\"H3808\"* had|strong=\"H1732\"* taken|strong=\"H3947\"*. David|strong=\"H1732\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* all|strong=\"H3605\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* and|strong=\"H1732\"* the|strong=\"H3605\"* herds|strong=\"H1241\"*, which|strong=\"H1931\"* they|strong=\"H1931\"* drove|strong=\"H5090\"* before|strong=\"H6440\"* those|strong=\"H3605\"* other|strong=\"H2088\"* livestock|strong=\"H4735\"*, and|strong=\"H1732\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* David|strong=\"H1732\"*’s plunder|strong=\"H7998\"*.”" + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* two|strong=\"H3427\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*, who|strong=\"H5971\"* were|strong=\"H5971\"* so|strong=\"H3318\"* faint|strong=\"H6296\"* that|strong=\"H5971\"* they|strong=\"H5971\"* could|strong=\"H5971\"* not|strong=\"H1732\"* follow|strong=\"H3212\"* David|strong=\"H1732\"*, whom|strong=\"H5971\"* also|strong=\"H1732\"* they|strong=\"H5971\"* had|strong=\"H1732\"* made|strong=\"H1732\"* to|strong=\"H3318\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3318\"* brook|strong=\"H5158\"* Besor|strong=\"H1308\"*; and|strong=\"H3967\"* they|strong=\"H5971\"* went|strong=\"H3212\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*, and|strong=\"H3967\"* to|strong=\"H3318\"* meet|strong=\"H7122\"* the|strong=\"H3318\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H3427\"* him|strong=\"H3318\"*. When|strong=\"H3318\"* David|strong=\"H1732\"* came|strong=\"H3318\"* near|strong=\"H5066\"* to|strong=\"H3318\"* the|strong=\"H3318\"* people|strong=\"H5971\"*, he|strong=\"H1732\"* greeted|strong=\"H7592\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7451\"* men|strong=\"H1121\"* and|strong=\"H1121\"* worthless|strong=\"H1100\"* fellows|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* went|strong=\"H1980\"* with|strong=\"H5973\"* David|strong=\"H1732\"* answered|strong=\"H6030\"* and|strong=\"H1121\"* said|strong=\"H6030\"*, “Because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t go|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H5414\"*, we|strong=\"H3068\"* will|strong=\"H1121\"* not|strong=\"H3808\"* give|strong=\"H5414\"* them|strong=\"H5414\"* anything|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H1121\"* recovered|strong=\"H5337\"*, except|strong=\"H3588\"* to|strong=\"H1980\"* every|strong=\"H3605\"* man|strong=\"H1121\"* his|strong=\"H3605\"* wife and|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1121\"* lead|strong=\"H5090\"* them|strong=\"H5414\"* away|strong=\"H3212\"* and|strong=\"H1121\"* depart|strong=\"H3212\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3651\"* David|strong=\"H1732\"* said|strong=\"H3651\"*, “Do|strong=\"H6213\"* not|strong=\"H3808\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, my|strong=\"H8104\"* brothers, with|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* preserved|strong=\"H8104\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5921\"* troop|strong=\"H1416\"* that|strong=\"H3068\"* came|strong=\"H3068\"* against|strong=\"H5921\"* us|strong=\"H5414\"* into|strong=\"H5921\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 24, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* listen|strong=\"H8085\"* to|strong=\"H3381\"* you|strong=\"H3588\"* in|strong=\"H3427\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*? For|strong=\"H3588\"* as|strong=\"H1697\"* his|strong=\"H8085\"* share|strong=\"H2506\"* is|strong=\"H2088\"* who|strong=\"H4310\"* goes|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*, so|strong=\"H2088\"* shall|strong=\"H4310\"* his|strong=\"H8085\"* share|strong=\"H2506\"* be|strong=\"H1697\"* who|strong=\"H4310\"* stays|strong=\"H3427\"* with|strong=\"H5921\"* the|strong=\"H5921\"* baggage|strong=\"H3627\"*. They|strong=\"H3588\"* shall|strong=\"H4310\"* share|strong=\"H2506\"* alike|strong=\"H3162\"*.”" + }, + { + "verseNum": 25, + "text": "It|strong=\"H7760\"* was|strong=\"H1961\"* so|strong=\"H1961\"* from|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* forward|strong=\"H4605\"* that|strong=\"H3117\"* he|strong=\"H1931\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* statute|strong=\"H2706\"* and|strong=\"H3478\"* an|strong=\"H1961\"* ordinance|strong=\"H4941\"* for|strong=\"H5704\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H7971\"* David|strong=\"H1732\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Ziklag|strong=\"H6860\"*, he|strong=\"H3068\"* sent|strong=\"H7971\"* some|strong=\"H2009\"* of|strong=\"H3068\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* to|strong=\"H3068\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, even|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H3068\"* friends|strong=\"H7453\"*, saying, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* present|strong=\"H1293\"* for|strong=\"H7971\"* you|strong=\"H7971\"* from|strong=\"H7971\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s enemies.”" + }, + { + "verseNum": 27, + "text": "He sent it to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Bethel|strong=\"H1008\"*, to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Ramoth|strong=\"H7418\"* of the|strong=\"H1008\"* South, to|strong=\"H1008\"* those who were in|strong=\"H1008\"* Jattir|strong=\"H3492\"*," + }, + { + "verseNum": 28, + "text": "to those who were in Aroer|strong=\"H6177\"*, to those who were in Siphmoth|strong=\"H8224\"*, to those who were in Eshtemoa," + }, + { + "verseNum": 29, + "text": "to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* Racal|strong=\"H7403\"*, to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5892\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5892\"* Jerahmeelites|strong=\"H3397\"*, to|strong=\"H5892\"* those who|strong=\"H7017\"* were|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H5892\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5892\"* Kenites|strong=\"H7017\"*," + }, + { + "verseNum": 30, + "text": "to those who were in Hormah|strong=\"H2767\"*, to those who were in Borashan, to those who were in Athach|strong=\"H6269\"*," + }, + { + "verseNum": 31, + "text": "to|strong=\"H1980\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1732\"* in|strong=\"H1980\"* Hebron|strong=\"H2275\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* David|strong=\"H1732\"* himself|strong=\"H1931\"* and|strong=\"H1980\"* his|strong=\"H3605\"* men|strong=\"H1980\"* used|strong=\"H3605\"* to|strong=\"H1980\"* stay." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5221\"* Philistines|strong=\"H6430\"* overtook|strong=\"H1692\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H5221\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Jonathan|strong=\"H3083\"*, Abinadab, and|strong=\"H1121\"* Malchishua, the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H4672\"* battle|strong=\"H4421\"* went|strong=\"H7586\"* hard|strong=\"H3966\"* against|strong=\"H4421\"* Saul|strong=\"H7586\"*, and|strong=\"H7586\"* the|strong=\"H4672\"* archers|strong=\"H3384\"* overtook|strong=\"H4672\"* him|strong=\"H4672\"*; and|strong=\"H7586\"* he|strong=\"H3384\"* was|strong=\"H7586\"* greatly|strong=\"H3966\"* distressed by|strong=\"H4421\"* reason of|strong=\"H7198\"* the|strong=\"H4672\"* archers|strong=\"H3384\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3947\"* Saul|strong=\"H7586\"* said to|strong=\"H5921\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, “Draw|strong=\"H8025\"* your|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, lest|strong=\"H6435\"* these|strong=\"H3947\"* uncircumcised|strong=\"H6189\"* come|strong=\"H5307\"* and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* and|strong=\"H2719\"* abuse|strong=\"H5953\"* me|strong=\"H5921\"*!” But|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* would not|strong=\"H3808\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H7586\"* terrified|strong=\"H3966\"*. Therefore|strong=\"H5921\"* Saul|strong=\"H7586\"* took|strong=\"H3947\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* dead|strong=\"H4191\"*, he|strong=\"H1931\"* likewise|strong=\"H1571\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* died|strong=\"H4191\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1571\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* with|strong=\"H3117\"* his|strong=\"H3605\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*, his|strong=\"H3605\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* men|strong=\"H1121\"* that|strong=\"H3605\"* same|strong=\"H1931\"* day|strong=\"H3117\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* were|strong=\"H3478\"* on|strong=\"H7200\"* the|strong=\"H7200\"* other|strong=\"H5676\"* side|strong=\"H5676\"* of|strong=\"H1121\"* the|strong=\"H7200\"* valley|strong=\"H6010\"*, and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H7200\"* Jordan|strong=\"H3383\"*, saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* and|strong=\"H1121\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H7200\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* abandoned|strong=\"H5800\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*; and|strong=\"H1121\"* the|strong=\"H7200\"* Philistines|strong=\"H6430\"* came|strong=\"H3478\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"H5307\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, when|strong=\"H1961\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* to|strong=\"H1961\"* strip|strong=\"H6584\"* the|strong=\"H1961\"* slain|strong=\"H2491\"*, they|strong=\"H7586\"* found|strong=\"H4672\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H1961\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* his|strong=\"H7971\"* head|strong=\"H7218\"*, stripped|strong=\"H6584\"* off|strong=\"H3772\"* his|strong=\"H7971\"* armor|strong=\"H3627\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* into|strong=\"H3627\"* the|strong=\"H7971\"* land of|strong=\"H1004\"* the|strong=\"H7971\"* Philistines|strong=\"H6430\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, to|strong=\"H7971\"* carry|strong=\"H1319\"* the|strong=\"H7971\"* news|strong=\"H1319\"* to|strong=\"H7971\"* the|strong=\"H7971\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H7971\"* idols|strong=\"H6091\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H7760\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H7760\"* Ashtaroth|strong=\"H6252\"*, and|strong=\"H1004\"* they|strong=\"H7760\"* fastened|strong=\"H8628\"* his|strong=\"H7760\"* body|strong=\"H1472\"* to|strong=\"H1004\"* the|strong=\"H7760\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Beth|strong=\"H1004\"* Shan." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H8085\"* Philistines|strong=\"H6430\"* had|strong=\"H7586\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"* arose|strong=\"H6965\"*, went|strong=\"H3212\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3605\"* body|strong=\"H1472\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3605\"* bodies|strong=\"H1472\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Beth Shan; and|strong=\"H1121\"* they|strong=\"H8033\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Jabesh|strong=\"H3003\"* and|strong=\"H1121\"* burned|strong=\"H8313\"* them|strong=\"H3947\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* took|strong=\"H3947\"* their|strong=\"H3947\"* bones|strong=\"H6106\"* and|strong=\"H3117\"* buried|strong=\"H6912\"* them|strong=\"H3947\"* under|strong=\"H8478\"* the|strong=\"H3947\"* tamarisk+ 31:13 or, salt cedar* tree in|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H3117\"* fasted|strong=\"H6684\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + } + ] + } + ] + }, + { + "name": "2 Samuel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* the|strong=\"H5221\"* death|strong=\"H4191\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"*, and|strong=\"H7725\"* David|strong=\"H1732\"* had|strong=\"H1961\"* stayed|strong=\"H3427\"* two|strong=\"H8147\"* days|strong=\"H3117\"* in|strong=\"H3427\"* Ziklag|strong=\"H6860\"*," + }, + { + "verseNum": 2, + "text": "on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* man|strong=\"H5307\"* came|strong=\"H1961\"* out|strong=\"H4480\"* of|strong=\"H3117\"* the|strong=\"H5921\"* camp|strong=\"H4264\"* from|strong=\"H4480\"* Saul|strong=\"H7586\"*, with|strong=\"H5973\"* his|strong=\"H1732\"* clothes torn|strong=\"H7167\"* and|strong=\"H3117\"* earth on|strong=\"H5921\"* his|strong=\"H1732\"* head|strong=\"H7218\"*. When|strong=\"H1961\"* he|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, he|strong=\"H3117\"* fell|strong=\"H5307\"* to|strong=\"H1961\"* the|strong=\"H5921\"* earth and|strong=\"H3117\"* showed respect|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* him|strong=\"H1732\"*, “Where|strong=\"H2088\"* do|strong=\"H2088\"* you|strong=\"H2088\"* come|strong=\"H3478\"* from|strong=\"H3478\"*?”" + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H5046\"*, “How|strong=\"H4100\"* did|strong=\"H4100\"* it|strong=\"H1961\"* go|strong=\"H5971\"*? Please|strong=\"H4994\"* tell|strong=\"H5046\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said to|strong=\"H4191\"* the|strong=\"H3588\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “How|strong=\"H3588\"* do you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"* are|strong=\"H1121\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H5288\"* told|strong=\"H5046\"* him|strong=\"H5921\"* said, “As|strong=\"H2022\"* I|strong=\"H2009\"* happened|strong=\"H7122\"* by|strong=\"H5921\"* chance|strong=\"H7122\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*, behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* was|strong=\"H7586\"* leaning|strong=\"H8172\"* on|strong=\"H5921\"* his|strong=\"H5921\"* spear|strong=\"H2595\"*; and|strong=\"H7393\"* behold|strong=\"H2009\"*, the|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7393\"* the|strong=\"H5921\"* horsemen|strong=\"H6571\"* followed|strong=\"H1167\"* close|strong=\"H1692\"* behind|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* he|strong=\"H7121\"* looked|strong=\"H7200\"* behind him|strong=\"H7121\"*, he|strong=\"H7121\"* saw|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H7200\"* called|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H7200\"*. I|strong=\"H2005\"* answered, ‘Here|strong=\"H2005\"* I|strong=\"H2005\"* am|strong=\"H2005\"*.’" + }, + { + "verseNum": 8, + "text": "He|strong=\"H4310\"* said to|strong=\"H4310\"* me, ‘Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H4310\"*?’ I answered him, ‘I am an|strong=\"H4310\"* Amalekite|strong=\"H6003\"*.’" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said to|strong=\"H4191\"* me|strong=\"H4994\"*, ‘Please|strong=\"H4994\"* stand|strong=\"H5975\"* beside|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H5975\"* kill|strong=\"H4191\"* me|strong=\"H4994\"*, for|strong=\"H3588\"* anguish|strong=\"H7661\"* has|strong=\"H3588\"* taken hold of|strong=\"H5921\"* me|strong=\"H4994\"* because|strong=\"H3588\"* my|strong=\"H3605\"* life|strong=\"H5315\"* lingers in|strong=\"H5921\"* me|strong=\"H4994\"*.’" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3947\"* I|strong=\"H3588\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H7218\"* killed|strong=\"H4191\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H7218\"* sure|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H3588\"* could|strong=\"H3045\"* not|strong=\"H3808\"* live|strong=\"H2421\"* after|strong=\"H5921\"* he|strong=\"H3588\"* had|strong=\"H3588\"* fallen|strong=\"H5307\"*. I|strong=\"H3588\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* that|strong=\"H3588\"* was|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H7218\"* the|strong=\"H5921\"* bracelet that|strong=\"H3588\"* was|strong=\"H7218\"* on|strong=\"H5921\"* his|strong=\"H3947\"* arm|strong=\"H2220\"*, and|strong=\"H7218\"* have|strong=\"H3045\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* here|strong=\"H2008\"* to|strong=\"H4191\"* my|strong=\"H3947\"* lord.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1571\"* David|strong=\"H1732\"* took|strong=\"H2388\"* hold|strong=\"H2388\"* on|strong=\"H2388\"* his|strong=\"H3605\"* clothes and|strong=\"H1732\"* tore|strong=\"H7167\"* them|strong=\"H2388\"*; and|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1732\"* with|strong=\"H1732\"* him|strong=\"H3605\"* did|strong=\"H1732\"* likewise|strong=\"H1571\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* mourned|strong=\"H5594\"*, wept|strong=\"H1058\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* until|strong=\"H5704\"* evening|strong=\"H6153\"* for|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*,+ 1:12 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* fallen|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* the|strong=\"H5046\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H1616\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “Where|strong=\"H2088\"* are|strong=\"H1121\"* you|strong=\"H5046\"* from|strong=\"H1121\"*?”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Why|strong=\"H3808\"* were|strong=\"H3027\"* you|strong=\"H7971\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* to|strong=\"H3068\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*?”" + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* called|strong=\"H7121\"* one of|strong=\"H4191\"* the|strong=\"H5221\"* young|strong=\"H5288\"* men|strong=\"H5288\"* and|strong=\"H1732\"* said|strong=\"H7121\"*, “Go|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1732\"* cut|strong=\"H6293\"* him|strong=\"H7121\"* down|strong=\"H5221\"*!” He|strong=\"H1732\"* struck|strong=\"H5221\"* him|strong=\"H7121\"* so|strong=\"H7121\"* that|strong=\"H5288\"* he|strong=\"H1732\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* said|strong=\"H6030\"* to|strong=\"H4191\"* him|strong=\"H5921\"*, “Your|strong=\"H3068\"* blood|strong=\"H1818\"* be|strong=\"H4191\"* on|strong=\"H5921\"* your|strong=\"H3068\"* head|strong=\"H7218\"*, for|strong=\"H3588\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* has|strong=\"H3068\"* testified|strong=\"H6030\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, saying|strong=\"H6310\"*, ‘I|strong=\"H3588\"* have|strong=\"H3068\"* slain|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s anointed|strong=\"H4899\"*.’”" + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* lamented|strong=\"H6969\"* with|strong=\"H5921\"* this|strong=\"H2063\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* over|strong=\"H5921\"* Jonathan|strong=\"H3083\"* his|strong=\"H1732\"* son|strong=\"H1121\"*" + }, + { + "verseNum": 18, + "text": "(and|strong=\"H1121\"* he|strong=\"H5921\"* commanded them|strong=\"H5921\"* to|strong=\"H5921\"* teach|strong=\"H3925\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* the|strong=\"H5921\"* song of|strong=\"H1121\"* the|strong=\"H5921\"* bow|strong=\"H7198\"*; behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2009\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Jashar|strong=\"H3477\"*):" + }, + { + "verseNum": 19, + "text": "“Your|strong=\"H5921\"* glory|strong=\"H6643\"*, Israel|strong=\"H3478\"*, was|strong=\"H3478\"* slain|strong=\"H2491\"* on|strong=\"H5921\"* your|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"*!" + }, + { + "verseNum": 20, + "text": "Don’t tell|strong=\"H5046\"* it|strong=\"H8055\"* in|strong=\"H6189\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Gilboa|strong=\"H1533\"*," + }, + { + "verseNum": 22, + "text": "From|strong=\"H7725\"* the|strong=\"H7725\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* the|strong=\"H7725\"* slain|strong=\"H2491\"*," + }, + { + "verseNum": 23, + "text": "Saul|strong=\"H7586\"* and|strong=\"H7586\"* Jonathan|strong=\"H3083\"* were|strong=\"H7586\"* lovely|strong=\"H5273\"* and|strong=\"H7586\"* pleasant|strong=\"H5273\"* in|strong=\"H3808\"* their|strong=\"H3808\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Israel|strong=\"H3478\"*, weep|strong=\"H1058\"* over|strong=\"H5921\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 25, + "text": "How the|strong=\"H5921\"* mighty|strong=\"H1368\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*!" + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* am distressed|strong=\"H6887\"* for|strong=\"H5921\"* you|strong=\"H5921\"*, my|strong=\"H5921\"* brother Jonathan|strong=\"H3083\"*." + }, + { + "verseNum": 27, + "text": "How the|strong=\"H5307\"* mighty|strong=\"H1368\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3651\"* go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* any|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*?”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* with|strong=\"H5927\"* his|strong=\"H1732\"* two|strong=\"H8147\"* wives, Ahinoam the|strong=\"H5927\"* Jezreelitess|strong=\"H3159\"*, and|strong=\"H1732\"* Abigail the|strong=\"H5927\"* wife of|strong=\"H8147\"* Nabal|strong=\"H5037\"* the|strong=\"H5927\"* Carmelite|strong=\"H3761\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* his|strong=\"H1732\"* men who|strong=\"H3427\"* were|strong=\"H1732\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, every|strong=\"H3427\"* man with|strong=\"H5973\"* his|strong=\"H1732\"* household|strong=\"H1004\"*. They|strong=\"H5892\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5927\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"*, and|strong=\"H3063\"* there|strong=\"H8033\"* they|strong=\"H8033\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. They|strong=\"H8033\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, “The|strong=\"H5921\"* men of|strong=\"H4428\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* were|strong=\"H3063\"* those|strong=\"H5921\"* who|strong=\"H3063\"* buried|strong=\"H6912\"* Saul|strong=\"H7586\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3068\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H3068\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Blessed|strong=\"H1288\"* are|strong=\"H3068\"* you|strong=\"H7971\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* shown|strong=\"H6213\"* this|strong=\"H2088\"* kindness|strong=\"H2617\"* to|strong=\"H3068\"* your|strong=\"H3068\"* lord|strong=\"H3068\"*, even|strong=\"H6213\"* to|strong=\"H3068\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* buried|strong=\"H6912\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* show|strong=\"H6213\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth to|strong=\"H3068\"* you|strong=\"H6213\"*. I|strong=\"H1697\"* also|strong=\"H1571\"* will|strong=\"H3068\"* reward you|strong=\"H6213\"* for|strong=\"H6213\"* this|strong=\"H2088\"* kindness|strong=\"H2617\"*, because|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* your|strong=\"H5921\"* hands|strong=\"H3027\"* be|strong=\"H1961\"* strong|strong=\"H2388\"*, and|strong=\"H1121\"* be|strong=\"H1961\"* valiant|strong=\"H2428\"*; for|strong=\"H3588\"* Saul|strong=\"H7586\"* your|strong=\"H5921\"* lord is|strong=\"H1571\"* dead|strong=\"H4191\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H1961\"* anointed|strong=\"H4886\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H3947\"* Abner the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s army|strong=\"H6635\"*, had|strong=\"H7586\"* taken|strong=\"H3947\"* Ishbosheth the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H3947\"* over|strong=\"H5674\"* to|strong=\"H1121\"* Mahanaim|strong=\"H4266\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3605\"* made|strong=\"H4427\"* him|strong=\"H5921\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Gilead|strong=\"H1568\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* Ashurites, over|strong=\"H5921\"* Jezreel|strong=\"H3157\"*, over|strong=\"H5921\"* Ephraim, over|strong=\"H5921\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3478\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Ishbosheth, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, was|strong=\"H1961\"* forty years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H1004\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H1004\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"*. But|strong=\"H1961\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* followed|strong=\"H1961\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H1961\"* king|strong=\"H4428\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* was|strong=\"H1961\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H3063\"* six|strong=\"H8337\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 12, + "text": "Abner the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, and|strong=\"H1121\"* the|strong=\"H3318\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Ishbosheth the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Mahanaim|strong=\"H4266\"* to|strong=\"H3318\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 13, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* met|strong=\"H6298\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*, the|strong=\"H5921\"* one|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* and|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H2088\"* side|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H5921\"* pool|strong=\"H1295\"*." + }, + { + "verseNum": 14, + "text": "Abner said to|strong=\"H6440\"* Joab|strong=\"H3097\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H6440\"* young|strong=\"H5288\"* men|strong=\"H5288\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* compete before|strong=\"H6440\"* us|strong=\"H4994\"*!”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6965\"* they|strong=\"H7586\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* went|strong=\"H5674\"* over|strong=\"H5674\"* by|strong=\"H5674\"* number|strong=\"H4557\"*: twelve|strong=\"H8147\"* for|strong=\"H1121\"* Benjamin|strong=\"H1144\"* and|strong=\"H1121\"* for|strong=\"H1121\"* Ishbosheth the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, and|strong=\"H1121\"* twelve|strong=\"H8147\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H1931\"* each|strong=\"H3162\"* caught|strong=\"H2388\"* his|strong=\"H7121\"* opponent|strong=\"H7453\"* by|strong=\"H7121\"* the|strong=\"H7121\"* head|strong=\"H7218\"* and|strong=\"H7218\"* thrust his|strong=\"H7121\"* sword|strong=\"H2719\"* in|strong=\"H5307\"* his|strong=\"H7121\"* fellow|strong=\"H7453\"*’s side|strong=\"H6654\"*; so|strong=\"H7121\"* they|strong=\"H1931\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* together|strong=\"H3162\"*. Therefore that|strong=\"H1931\"* place|strong=\"H4725\"* in|strong=\"H5307\"* Gibeon|strong=\"H1391\"* was|strong=\"H1931\"* called|strong=\"H7121\"* Helkath Hazzurim.+ 2:16 “Helkath Hazzurim” means “field of daggers”.*" + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* very|strong=\"H3966\"* severe|strong=\"H7186\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* Abner was|strong=\"H1961\"* beaten|strong=\"H5062\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H5650\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, before|strong=\"H6440\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1961\"* three|strong=\"H7969\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* were|strong=\"H1961\"* there|strong=\"H8033\"*: Joab|strong=\"H3097\"*, Abishai, and|strong=\"H1121\"* Asahel|strong=\"H6214\"*. Asahel|strong=\"H6214\"* was|strong=\"H1961\"* as|strong=\"H1961\"* light|strong=\"H7031\"* of|strong=\"H1121\"* foot|strong=\"H7272\"* as|strong=\"H1961\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* gazelle|strong=\"H6643\"*." + }, + { + "verseNum": 19, + "text": "Asahel|strong=\"H6214\"* pursued|strong=\"H7291\"* Abner. He|strong=\"H3808\"* didn’t turn|strong=\"H5186\"* to|strong=\"H3212\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H5921\"* left|strong=\"H8040\"* from|strong=\"H5921\"* following|strong=\"H3212\"* Abner." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H2088\"* Abner looked|strong=\"H6437\"* behind him|strong=\"H2088\"* and|strong=\"H6437\"* said, “Is|strong=\"H2088\"* that|strong=\"H2088\"* you|strong=\"H6437\"*, Asahel|strong=\"H6214\"*?”" + }, + { + "verseNum": 21, + "text": "Abner said to|strong=\"H5921\"* him|strong=\"H5921\"*, “Turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H5921\"* your|strong=\"H3947\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H5921\"* your|strong=\"H3947\"* left|strong=\"H8040\"*, and|strong=\"H5288\"* grab one|strong=\"H3808\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H5288\"* take|strong=\"H3947\"* his|strong=\"H3947\"* armor.” But|strong=\"H3808\"* Asahel|strong=\"H6214\"* would|strong=\"H5288\"* not|strong=\"H3808\"* turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Abner said again|strong=\"H5750\"* to|strong=\"H6440\"* Asahel|strong=\"H6214\"*, “Turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following me|strong=\"H6440\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H4100\"* strike|strong=\"H5221\"* you|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*? How|strong=\"H4100\"* then|strong=\"H5375\"* could|strong=\"H4100\"* I|strong=\"H4100\"* look|strong=\"H5375\"* Joab|strong=\"H3097\"* your|strong=\"H5375\"* brother in|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"*?”" + }, + { + "verseNum": 23, + "text": "However, he|strong=\"H8033\"* refused|strong=\"H3985\"* to|strong=\"H3318\"* turn|strong=\"H5493\"* away|strong=\"H5493\"*. Therefore|strong=\"H1961\"* Abner with|strong=\"H3318\"* the|strong=\"H3605\"* back|strong=\"H5493\"* end|strong=\"H3318\"* of|strong=\"H8478\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H4191\"* the|strong=\"H3605\"* body|strong=\"H4191\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* the|strong=\"H3605\"* spear|strong=\"H2595\"* came|strong=\"H1961\"* out|strong=\"H3318\"* behind|strong=\"H5975\"* him|strong=\"H5221\"*; and|strong=\"H8033\"* he|strong=\"H8033\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* there|strong=\"H8033\"* and|strong=\"H8033\"* died|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H3605\"* same place|strong=\"H4725\"*. As|strong=\"H1961\"* many as|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3318\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* Asahel|strong=\"H6214\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* and|strong=\"H8033\"* died|strong=\"H4191\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1992\"* Joab|strong=\"H3097\"* and|strong=\"H6440\"* Abishai pursued|strong=\"H7291\"* Abner. The|strong=\"H6440\"* sun|strong=\"H8121\"* went|strong=\"H8121\"* down|strong=\"H1870\"* when|strong=\"H5704\"* they|strong=\"H1992\"* had|strong=\"H3097\"* come to|strong=\"H5704\"* the|strong=\"H6440\"* hill|strong=\"H1389\"* of|strong=\"H6440\"* Ammah, that|strong=\"H5704\"* lies before|strong=\"H6440\"* Giah|strong=\"H1520\"* by|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* after|strong=\"H5921\"* Abner and|strong=\"H1121\"* became|strong=\"H1961\"* one|strong=\"H1121\"* band|strong=\"H7218\"*, and|strong=\"H1121\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H1121\"* a|strong=\"H3068\"* hill|strong=\"H1389\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* Abner called|strong=\"H7121\"* to|strong=\"H5704\"* Joab|strong=\"H3097\"*, and|strong=\"H7725\"* said|strong=\"H7121\"*, “Shall|strong=\"H5971\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* devour forever|strong=\"H5704\"*? Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H7121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* bitterness|strong=\"H4751\"* in|strong=\"H7725\"* the|strong=\"H3588\"* latter end|strong=\"H5331\"*? How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H1961\"* it|strong=\"H7121\"* be|strong=\"H1961\"* then|strong=\"H1961\"*, before|strong=\"H5704\"* you|strong=\"H3588\"* ask the|strong=\"H3588\"* people|strong=\"H5971\"* to|strong=\"H5704\"* return|strong=\"H7725\"* from|strong=\"H7725\"* following their|strong=\"H7725\"* brothers?”" + }, + { + "verseNum": 27, + "text": "Joab|strong=\"H3097\"* said|strong=\"H1696\"*, “As|strong=\"H5927\"* God+ 2:27 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* lives|strong=\"H2416\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3588\"* not|strong=\"H3588\"* spoken|strong=\"H1696\"*, surely|strong=\"H3588\"* then|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* the|strong=\"H3588\"* people|strong=\"H5971\"* would|strong=\"H5971\"* have|strong=\"H5971\"* gone|strong=\"H5927\"* away|strong=\"H5927\"*, and|strong=\"H5971\"* not|strong=\"H3588\"* each|strong=\"H5971\"* followed|strong=\"H5927\"* his|strong=\"H3588\"* brother.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H3808\"* Joab|strong=\"H3097\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* still|strong=\"H5750\"* and|strong=\"H3478\"* pursued|strong=\"H7291\"* Israel|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H3254\"*, and|strong=\"H3478\"* they|strong=\"H3808\"* fought|strong=\"H3898\"* no|strong=\"H3808\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 29, + "text": "Abner and|strong=\"H1980\"* his|strong=\"H3605\"* men|strong=\"H1980\"* went|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* night|strong=\"H3915\"* through|strong=\"H5674\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*; and|strong=\"H1980\"* they|strong=\"H1931\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* through|strong=\"H5674\"* all|strong=\"H3605\"* Bithron|strong=\"H1338\"*, and|strong=\"H1980\"* came|strong=\"H1980\"* to|strong=\"H1980\"* Mahanaim|strong=\"H4266\"*." + }, + { + "verseNum": 30, + "text": "Joab|strong=\"H3097\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* following Abner; and|strong=\"H7725\"* when|strong=\"H7725\"* he|strong=\"H3605\"* had|strong=\"H1732\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H6908\"*, nineteen|strong=\"H8672\"* men|strong=\"H5971\"* of|strong=\"H5650\"* David|strong=\"H1732\"*’s and|strong=\"H7725\"* Asahel|strong=\"H6214\"* were|strong=\"H5971\"* missing|strong=\"H6485\"*." + }, + { + "verseNum": 31, + "text": "But|strong=\"H5221\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* Benjamin|strong=\"H1144\"* Abner’s men|strong=\"H5650\"* so|strong=\"H4191\"* that|strong=\"H1732\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"* men|strong=\"H5650\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H3605\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Asahel|strong=\"H6214\"* and|strong=\"H3212\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H3605\"* tomb|strong=\"H6913\"* of|strong=\"H3605\"* his|strong=\"H3605\"* father, which|strong=\"H3605\"* was|strong=\"H3097\"* in|strong=\"H6912\"* Bethlehem|strong=\"H1035\"*. Joab|strong=\"H3097\"* and|strong=\"H3212\"* his|strong=\"H3605\"* men|strong=\"H3605\"* went|strong=\"H3212\"* all|strong=\"H3605\"* night|strong=\"H3915\"*, and|strong=\"H3212\"* the|strong=\"H3605\"* day broke on|strong=\"H3212\"* them|strong=\"H5375\"* at|strong=\"H6912\"* Hebron|strong=\"H2275\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* long|strong=\"H1980\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* and|strong=\"H1980\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*. David|strong=\"H1732\"* grew|strong=\"H1980\"* stronger|strong=\"H2390\"* and|strong=\"H1980\"* stronger|strong=\"H2390\"*, but|strong=\"H1961\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* grew|strong=\"H1980\"* weaker|strong=\"H1800\"* and|strong=\"H1980\"* weaker|strong=\"H1800\"*." + }, + { + "verseNum": 2, + "text": "Sons|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* David|strong=\"H1732\"* in|strong=\"H1121\"* Hebron|strong=\"H2275\"*. His|strong=\"H1732\"* firstborn|strong=\"H1060\"* was|strong=\"H1961\"* Amnon, of|strong=\"H1121\"* Ahinoam the|strong=\"H3205\"* Jezreelitess|strong=\"H3159\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* his|strong=\"H4428\"* second|strong=\"H4932\"*, Chileab|strong=\"H3609\"*, of|strong=\"H1121\"* Abigail the|strong=\"H1121\"* wife of|strong=\"H1121\"* Nabal|strong=\"H5037\"* the|strong=\"H1121\"* Carmelite|strong=\"H3761\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, Absalom the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Talmai|strong=\"H8526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1121\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*, Adonijah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* fifth|strong=\"H2549\"*, Shephatiah|strong=\"H8203\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abital;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H1732\"* the|strong=\"H3205\"* sixth|strong=\"H8345\"*, Ithream|strong=\"H3507\"*, of|strong=\"H3205\"* Eglah|strong=\"H5698\"*, David|strong=\"H1732\"*’s wife. These|strong=\"H1732\"* were|strong=\"H1732\"* born|strong=\"H3205\"* to|strong=\"H3205\"* David|strong=\"H1732\"* in|strong=\"H1732\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 6, + "text": "While|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* and|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, Abner made|strong=\"H2388\"* himself|strong=\"H2388\"* strong|strong=\"H2388\"* in|strong=\"H1004\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "Now Saul|strong=\"H7586\"* had|strong=\"H7586\"* a|strong=\"H3068\"* concubine|strong=\"H6370\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Rizpah|strong=\"H7532\"*, the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah; and|strong=\"H7586\"* Ishbosheth said to|strong=\"H1323\"* Abner, “Why|strong=\"H4069\"* have|strong=\"H1323\"* you gone in|strong=\"H8034\"* to|strong=\"H1323\"* my|strong=\"H7586\"* father’s concubine|strong=\"H6370\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6213\"* Abner was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"* about|strong=\"H5921\"* Ishbosheth’s words|strong=\"H1697\"*, and|strong=\"H3063\"* said|strong=\"H1697\"*, “Am|strong=\"H6485\"* I|strong=\"H3117\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*’s head|strong=\"H7218\"* that|strong=\"H3117\"* belongs to|strong=\"H6213\"* Judah|strong=\"H3063\"*? Today|strong=\"H3117\"* I|strong=\"H3117\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H6213\"* your|strong=\"H5921\"* father Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, to|strong=\"H6213\"* his|strong=\"H1732\"* brothers, and|strong=\"H3063\"* to|strong=\"H6213\"* his|strong=\"H1732\"* friends|strong=\"H4828\"*, and|strong=\"H3063\"* have|strong=\"H3063\"* not|strong=\"H3808\"* delivered|strong=\"H4672\"* you|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* David|strong=\"H1732\"*; and|strong=\"H3063\"* yet|strong=\"H3808\"* you|strong=\"H5921\"* charge|strong=\"H5921\"* me|strong=\"H5921\"* today|strong=\"H3117\"* with|strong=\"H5973\"* a|strong=\"H3068\"* fault|strong=\"H5771\"* concerning|strong=\"H5921\"* this|strong=\"H6213\"* woman|strong=\"H1004\"*!" + }, + { + "verseNum": 9, + "text": "God|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H3068\"* Abner, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H3068\"* David|strong=\"H1732\"*, I|strong=\"H3588\"* don’t do|strong=\"H6213\"* even|strong=\"H3588\"* so|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H6213\"*:" + }, + { + "verseNum": 10, + "text": "to|strong=\"H5704\"* transfer|strong=\"H5674\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* from|strong=\"H5921\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* to|strong=\"H5704\"* set|strong=\"H6965\"* up|strong=\"H6965\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*, from|strong=\"H5921\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* answer|strong=\"H7725\"* Abner another|strong=\"H5750\"* word|strong=\"H1697\"*, because|strong=\"H1697\"* he|strong=\"H3808\"* was|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1697\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 12, + "text": "Abner sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* David|strong=\"H1732\"* on|strong=\"H3027\"* his|strong=\"H3605\"* behalf|strong=\"H5973\"*, saying, “Whose|strong=\"H4310\"* is|strong=\"H4310\"* the|strong=\"H3605\"* land?” and|strong=\"H3478\"* saying, “Make|strong=\"H3772\"* your|strong=\"H3605\"* alliance with|strong=\"H5973\"* me|strong=\"H7971\"*, and|strong=\"H3478\"* behold|strong=\"H2009\"*, my|strong=\"H3605\"* hand|strong=\"H3027\"* will|strong=\"H4310\"* be|strong=\"H3027\"* with|strong=\"H5973\"* you|strong=\"H3605\"* to|strong=\"H3478\"* bring|strong=\"H5437\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* around|strong=\"H5437\"* to|strong=\"H3478\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 13, + "text": "David said|strong=\"H1697\"*, “Good|strong=\"H2896\"*. I|strong=\"H3588\"* will|strong=\"H1697\"* make|strong=\"H3772\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* one|strong=\"H3808\"* thing|strong=\"H1697\"* I|strong=\"H3588\"* require|strong=\"H7592\"* of|strong=\"H1323\"* you|strong=\"H3588\"*. That|strong=\"H3588\"* is|strong=\"H1697\"*, you|strong=\"H3588\"* will|strong=\"H1697\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"* unless|strong=\"H3588\"* you|strong=\"H3588\"* first|strong=\"H1323\"* bring|strong=\"H1323\"* Michal|strong=\"H4324\"*, Saul|strong=\"H7586\"*’s daughter|strong=\"H1323\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* come|strong=\"H7586\"* to|strong=\"H6440\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* Ishbosheth, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, saying, “Deliver|strong=\"H5414\"* me|strong=\"H5414\"* my|strong=\"H5414\"* wife Michal|strong=\"H4324\"*, whom I|strong=\"H5414\"* was|strong=\"H1732\"* given|strong=\"H5414\"* to|strong=\"H7971\"* marry|strong=\"H5414\"* for|strong=\"H7971\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* foreskins|strong=\"H6190\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 15, + "text": "Ishbosheth sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H3947\"* her|strong=\"H7971\"* from|strong=\"H1121\"* her|strong=\"H7971\"* husband, Paltiel|strong=\"H6409\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Laish|strong=\"H3889\"*." + }, + { + "verseNum": 16, + "text": "Her|strong=\"H7725\"* husband went|strong=\"H1980\"* with|strong=\"H1980\"* her|strong=\"H7725\"*, weeping|strong=\"H1058\"* as|strong=\"H5704\"* he|strong=\"H5704\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* followed|strong=\"H1980\"* her|strong=\"H7725\"* to|strong=\"H5704\"* Bahurim. Then|strong=\"H1980\"* Abner said to|strong=\"H5704\"* him|strong=\"H7725\"*, “Go|strong=\"H1980\"*! Return|strong=\"H7725\"*!” and|strong=\"H1980\"* he|strong=\"H5704\"* returned|strong=\"H7725\"*." + }, + { + "verseNum": 17, + "text": "Abner had|strong=\"H1961\"* communication|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “In|strong=\"H5921\"* times|strong=\"H8543\"* past|strong=\"H8032\"*, you|strong=\"H5921\"* sought|strong=\"H1245\"* for|strong=\"H5921\"* David|strong=\"H1732\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* then|strong=\"H6258\"* do|strong=\"H6213\"* it|strong=\"H3588\"*! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken of|strong=\"H3068\"* David|strong=\"H1732\"*, saying, ‘By|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* save|strong=\"H3467\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*.’”" + }, + { + "verseNum": 19, + "text": "Abner also|strong=\"H1571\"* spoke|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*; and|strong=\"H3478\"* Abner went|strong=\"H3212\"* also|strong=\"H1571\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* David|strong=\"H1732\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"* all|strong=\"H3605\"* that|strong=\"H3605\"* seemed|strong=\"H5869\"* good|strong=\"H2896\"* to|strong=\"H1696\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* to|strong=\"H1696\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H6213\"* Abner came|strong=\"H1732\"* to|strong=\"H6213\"* David|strong=\"H1732\"* to|strong=\"H6213\"* Hebron|strong=\"H2275\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* men|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H6213\"*. David|strong=\"H1732\"* made|strong=\"H6213\"* Abner and|strong=\"H6242\"* the|strong=\"H6213\"* men|strong=\"H6213\"* who|strong=\"H6213\"* were|strong=\"H1732\"* with|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"*." + }, + { + "verseNum": 21, + "text": "Abner said to|strong=\"H3478\"* David|strong=\"H1732\"*, “I|strong=\"H5315\"* will|strong=\"H4428\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* go|strong=\"H3212\"*, and|strong=\"H6965\"* will|strong=\"H4428\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, that|strong=\"H3605\"* they|strong=\"H5315\"* may|strong=\"H3478\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3605\"*, and|strong=\"H6965\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* all|strong=\"H3605\"* that|strong=\"H3605\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* desires.” David|strong=\"H1732\"* sent|strong=\"H7971\"* Abner away|strong=\"H7971\"*; and|strong=\"H6965\"* he|strong=\"H3605\"* went|strong=\"H3212\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, David|strong=\"H1732\"*’s servants|strong=\"H5650\"* and|strong=\"H7971\"* Joab|strong=\"H3097\"* came|strong=\"H3212\"* from|strong=\"H7971\"* a|strong=\"H3068\"* raid|strong=\"H1416\"* and|strong=\"H7971\"* brought|strong=\"H3212\"* in|strong=\"H3212\"* a|strong=\"H3068\"* great|strong=\"H7227\"* plunder|strong=\"H7998\"* with|strong=\"H5973\"* them|strong=\"H7971\"*; but|strong=\"H3588\"* Abner was|strong=\"H1732\"* not|strong=\"H3588\"* with|strong=\"H5973\"* David|strong=\"H1732\"* in|strong=\"H3212\"* Hebron|strong=\"H2275\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H3588\"* had|strong=\"H1732\"* gone|strong=\"H3212\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* who|strong=\"H3605\"* was|strong=\"H4428\"* with|strong=\"H3212\"* him|strong=\"H7971\"* had|strong=\"H4428\"* come|strong=\"H3212\"*, they|strong=\"H3605\"* told|strong=\"H5046\"* Joab|strong=\"H3097\"*, “Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* has|strong=\"H6635\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* has|strong=\"H6635\"* gone|strong=\"H3212\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1980\"* Joab|strong=\"H3097\"* came|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H1980\"* said, “What|strong=\"H4100\"* have|strong=\"H4428\"* you|strong=\"H7971\"* done|strong=\"H6213\"*? Behold|strong=\"H2009\"*, Abner came|strong=\"H1980\"* to|strong=\"H1980\"* you|strong=\"H7971\"*. Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H6213\"* that|strong=\"H4428\"* you|strong=\"H7971\"* have|strong=\"H4428\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* away|strong=\"H7971\"*, and|strong=\"H1980\"* he|strong=\"H6213\"* is|strong=\"H2088\"* already|strong=\"H1980\"* gone|strong=\"H1980\"*?" + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* know|strong=\"H3045\"* Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*. He|strong=\"H3588\"* came to|strong=\"H6213\"* deceive|strong=\"H6601\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* know|strong=\"H3045\"* your|strong=\"H3605\"* going|strong=\"H4161\"* out|strong=\"H4161\"* and|strong=\"H1121\"* your|strong=\"H3605\"* coming|strong=\"H4126\"* in|strong=\"H6213\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* know|strong=\"H3045\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3318\"* Joab|strong=\"H3097\"* had|strong=\"H1732\"* come|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* David|strong=\"H1732\"*, he|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* after|strong=\"H3318\"* Abner, and|strong=\"H7971\"* they|strong=\"H3808\"* brought|strong=\"H3318\"* him|strong=\"H7971\"* back|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* well|strong=\"H3045\"* of|strong=\"H4397\"* Sirah|strong=\"H5626\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* didn’t know|strong=\"H3045\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H7725\"* Abner had|strong=\"H3097\"* returned|strong=\"H7725\"* to|strong=\"H1696\"* Hebron|strong=\"H2275\"*, Joab|strong=\"H3097\"* took|strong=\"H5186\"* him|strong=\"H5221\"* aside|strong=\"H5186\"* into|strong=\"H7725\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H8179\"* the|strong=\"H5221\"* gate|strong=\"H8179\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* him|strong=\"H5221\"* quietly|strong=\"H7987\"*, and|strong=\"H7725\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* there|strong=\"H8033\"* in|strong=\"H4191\"* the|strong=\"H5221\"* body|strong=\"H4191\"*, so|strong=\"H7725\"* that|strong=\"H8179\"* he|strong=\"H8033\"* died|strong=\"H4191\"* for|strong=\"H4191\"* the|strong=\"H5221\"* blood|strong=\"H1818\"* of|strong=\"H8179\"* Asahel|strong=\"H6214\"* his|strong=\"H7725\"* brother." + }, + { + "verseNum": 28, + "text": "Afterward, when|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* it|strong=\"H3651\"*, he|strong=\"H3651\"* said|strong=\"H8085\"*, “I|strong=\"H3651\"* and|strong=\"H1121\"* my|strong=\"H8085\"* kingdom|strong=\"H4467\"* are|strong=\"H1121\"* guiltless|strong=\"H5355\"* before|strong=\"H5973\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"* of|strong=\"H1121\"* the|strong=\"H8085\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Abner the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*." + }, + { + "verseNum": 29, + "text": "Let it|strong=\"H5921\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* and|strong=\"H1004\"* on|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*. Let there|strong=\"H3605\"* not|strong=\"H5307\"* fail|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* one|strong=\"H3605\"* who|strong=\"H3605\"* has|strong=\"H2719\"* a|strong=\"H3068\"* discharge|strong=\"H2100\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* leans on|strong=\"H5921\"* a|strong=\"H3068\"* staff|strong=\"H6418\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* falls|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, or|strong=\"H7218\"* who|strong=\"H3605\"* lacks|strong=\"H2638\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 30, + "text": "So|strong=\"H4191\"* Joab|strong=\"H3097\"* and|strong=\"H3097\"* Abishai his|strong=\"H5921\"* brother killed|strong=\"H2026\"* Abner, because|strong=\"H5921\"* he|strong=\"H5921\"* had|strong=\"H3097\"* killed|strong=\"H2026\"* their|strong=\"H5921\"* brother Asahel|strong=\"H6214\"* at|strong=\"H5921\"* Gibeon|strong=\"H1391\"* in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 31, + "text": "David|strong=\"H1732\"* said to|strong=\"H1980\"* Joab|strong=\"H3097\"* and|strong=\"H1980\"* to|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H1980\"* him|strong=\"H6440\"*, “Tear|strong=\"H7167\"* your|strong=\"H3605\"* clothes, and|strong=\"H1980\"* clothe yourselves|strong=\"H2296\"* with|strong=\"H1980\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1980\"* mourn|strong=\"H5594\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H4428\"* Abner.” King|strong=\"H4428\"* David|strong=\"H1732\"* followed|strong=\"H1980\"* the|strong=\"H3605\"* bier|strong=\"H4296\"*." + }, + { + "verseNum": 32, + "text": "They|strong=\"H5971\"* buried|strong=\"H6912\"* Abner in|strong=\"H4428\"* Hebron|strong=\"H2275\"*; and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H4428\"* wept|strong=\"H1058\"* at|strong=\"H4428\"* Abner’s grave|strong=\"H6913\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H4191\"* king|strong=\"H4428\"* lamented|strong=\"H6969\"* for|strong=\"H4191\"* Abner, and|strong=\"H4428\"* said, “Should|strong=\"H4428\"* Abner die|strong=\"H4191\"* as|strong=\"H4428\"* a|strong=\"H3068\"* fool|strong=\"H5036\"* dies|strong=\"H4191\"*?" + }, + { + "verseNum": 34, + "text": "Your|strong=\"H3605\"* hands|strong=\"H3027\"* weren’t bound, and|strong=\"H1121\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* weren’t put|strong=\"H3254\"* into|strong=\"H5307\"* fetters|strong=\"H5178\"*. As|strong=\"H5971\"* a|strong=\"H3068\"* man|strong=\"H1121\"* falls|strong=\"H5307\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* iniquity|strong=\"H5766\"*, so|strong=\"H3808\"* you|strong=\"H6440\"* fell|strong=\"H5307\"*.”" + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H6213\"* urge David|strong=\"H1732\"* to|strong=\"H6213\"* eat|strong=\"H1262\"* bread|strong=\"H3899\"* while|strong=\"H5750\"* it|strong=\"H3588\"* was|strong=\"H1732\"* yet|strong=\"H5750\"* day|strong=\"H3117\"*; but|strong=\"H3588\"* David|strong=\"H1732\"* swore|strong=\"H7650\"*, saying, “God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6440\"*, and|strong=\"H3117\"* more|strong=\"H3254\"* also|strong=\"H1732\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* taste|strong=\"H2938\"* bread|strong=\"H3899\"* or|strong=\"H3117\"* anything|strong=\"H3605\"* else|strong=\"H5750\"*, until|strong=\"H3588\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* goes|strong=\"H6440\"* down|strong=\"H6440\"*.”" + }, + { + "verseNum": 36, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* took|strong=\"H4428\"* notice|strong=\"H5234\"* of|strong=\"H4428\"* it|strong=\"H6213\"*, and|strong=\"H4428\"* it|strong=\"H6213\"* pleased|strong=\"H3190\"* them|strong=\"H6213\"*, as|strong=\"H6213\"* whatever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* did|strong=\"H6213\"* pleased|strong=\"H3190\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 37, + "text": "So|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* understood|strong=\"H3045\"* that|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* kill|strong=\"H4191\"* Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H3478\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, “Don’t you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* a|strong=\"H3068\"* prince|strong=\"H8269\"* and|strong=\"H3478\"* a|strong=\"H3068\"* great|strong=\"H1419\"* man|strong=\"H1419\"* has|strong=\"H3478\"* fallen|strong=\"H5307\"* today|strong=\"H3117\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* am|strong=\"H3068\"* weak|strong=\"H7390\"* today|strong=\"H3117\"*, though anointed|strong=\"H4886\"* king|strong=\"H4428\"*. These|strong=\"H6213\"* men|strong=\"H1121\"*, the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* are|strong=\"H3117\"* too|strong=\"H4480\"* hard|strong=\"H7186\"* for|strong=\"H6213\"* me|strong=\"H4480\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* reward|strong=\"H7999\"* the|strong=\"H6213\"* evildoer|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3068\"* his|strong=\"H3068\"* wickedness|strong=\"H7451\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* Saul|strong=\"H7586\"*’s son|strong=\"H1121\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Abner was|strong=\"H3478\"* dead|strong=\"H4191\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"*, his|strong=\"H3605\"* hands|strong=\"H3027\"* became|strong=\"H7586\"* feeble|strong=\"H7503\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Israelites|strong=\"H3478\"* were|strong=\"H3478\"* troubled." + }, + { + "verseNum": 2, + "text": "Saul|strong=\"H7586\"*’s son|strong=\"H1121\"* had|strong=\"H1961\"* two|strong=\"H8147\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1961\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* raiding bands|strong=\"H1416\"*. The|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Baanah|strong=\"H1196\"* and|strong=\"H1121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H5921\"* other|strong=\"H8145\"* Rechab|strong=\"H7394\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H5921\"* Beerothite, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* (for|strong=\"H3588\"* Beeroth also|strong=\"H1571\"* is|strong=\"H1571\"* considered|strong=\"H2803\"* a|strong=\"H3068\"* part|strong=\"H1571\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3117\"* the|strong=\"H3117\"* Beerothites fled|strong=\"H1272\"* to|strong=\"H5704\"* Gittaim|strong=\"H1664\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* lived|strong=\"H1481\"* as|strong=\"H5704\"* foreigners|strong=\"H1481\"* there|strong=\"H8033\"* until|strong=\"H5704\"* today|strong=\"H3117\"*)." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Jonathan|strong=\"H3083\"*, Saul|strong=\"H7586\"*’s son|strong=\"H1121\"*, had|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* was|strong=\"H8034\"* lame|strong=\"H5223\"* in|strong=\"H8141\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*. He|strong=\"H2568\"* was|strong=\"H8034\"* five|strong=\"H2568\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* the|strong=\"H5375\"* news|strong=\"H8052\"* came|strong=\"H1961\"* about|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* out|strong=\"H5307\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*; and|strong=\"H1121\"* his|strong=\"H5375\"* nurse picked|strong=\"H5375\"* him|strong=\"H5375\"* up|strong=\"H5375\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*. As|strong=\"H1961\"* she hurried|strong=\"H2648\"* to|strong=\"H1961\"* flee|strong=\"H5127\"*, he|strong=\"H2568\"* fell|strong=\"H5307\"* and|strong=\"H1121\"* became|strong=\"H1961\"* lame|strong=\"H5223\"*. His|strong=\"H5375\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mephibosheth|strong=\"H4648\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H3117\"* Beerothite, Rechab|strong=\"H7394\"* and|strong=\"H1121\"* Baanah|strong=\"H1196\"*, went|strong=\"H3212\"* out|strong=\"H3212\"* and|strong=\"H1121\"* came|strong=\"H3212\"* at|strong=\"H1004\"* about|strong=\"H3117\"* the|strong=\"H3117\"* heat|strong=\"H2527\"* of|strong=\"H1121\"* the|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3212\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ishbosheth as|strong=\"H3117\"* he|strong=\"H1931\"* took his|strong=\"H3117\"* rest|strong=\"H7901\"* at|strong=\"H1004\"* noon|strong=\"H6672\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H2007\"* came there|strong=\"H5704\"* into|strong=\"H8432\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"* as|strong=\"H5704\"* though they|strong=\"H2007\"* would have|strong=\"H7394\"* fetched|strong=\"H3947\"* wheat|strong=\"H2406\"*, and|strong=\"H1004\"* they|strong=\"H2007\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H1004\"* the|strong=\"H3947\"* body; and|strong=\"H1004\"* Rechab|strong=\"H7394\"* and|strong=\"H1004\"* Baanah|strong=\"H1196\"* his|strong=\"H3947\"* brother escaped|strong=\"H4422\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3947\"* when|strong=\"H7901\"* they|strong=\"H5921\"* came|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* as|strong=\"H1004\"* he|strong=\"H1931\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H3605\"* bed|strong=\"H4904\"* in|strong=\"H5921\"* his|strong=\"H3605\"* bedroom|strong=\"H2315\"*, they|strong=\"H5921\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*, killed|strong=\"H5221\"* him|strong=\"H5921\"*, beheaded|strong=\"H5493\"* him|strong=\"H5921\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"* all|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3117\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ishbosheth to|strong=\"H3068\"* David|strong=\"H1732\"* to|strong=\"H3068\"* Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, the|strong=\"H5414\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ishbosheth, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, your|strong=\"H3068\"* enemy, who|strong=\"H3068\"* sought|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H5360\"* my|strong=\"H5414\"* lord|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"* today|strong=\"H3117\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*.+ 4:8 or, seed*”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* answered|strong=\"H6030\"* Rechab|strong=\"H7394\"* and|strong=\"H1121\"* Baanah|strong=\"H1196\"* his|strong=\"H3605\"* brother, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rimmon|strong=\"H7417\"* the|strong=\"H3605\"* Beerothite, and|strong=\"H1121\"* said|strong=\"H6030\"* to|strong=\"H3068\"* them|strong=\"H6030\"*, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* redeemed|strong=\"H6299\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*," + }, + { + "verseNum": 10, + "text": "when|strong=\"H3588\"* someone|strong=\"H5414\"* told|strong=\"H5046\"* me|strong=\"H5414\"*, ‘Behold|strong=\"H2009\"*, Saul|strong=\"H7586\"* is|strong=\"H1931\"* dead|strong=\"H4191\"*,’ thinking that|strong=\"H3588\"* he|strong=\"H1931\"* brought|strong=\"H5414\"* good|strong=\"H1319\"* news|strong=\"H1319\"*, I|strong=\"H3588\"* seized him|strong=\"H5414\"* and|strong=\"H5869\"* killed|strong=\"H2026\"* him|strong=\"H5414\"* in|strong=\"H4191\"* Ziklag|strong=\"H6860\"*, which|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3588\"* reward|strong=\"H1309\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H3588\"* his|strong=\"H5414\"* news|strong=\"H1319\"*." + }, + { + "verseNum": 11, + "text": "How|strong=\"H3588\"* much|strong=\"H3027\"* more|strong=\"H4480\"*, when|strong=\"H3588\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"* have|strong=\"H3027\"* slain|strong=\"H2026\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* person|strong=\"H1245\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own|strong=\"H3027\"* house|strong=\"H1004\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4904\"*, should|strong=\"H3588\"* I|strong=\"H3588\"* not|strong=\"H3808\"* now|strong=\"H6258\"* require|strong=\"H1245\"* his|strong=\"H5921\"* blood|strong=\"H1818\"* from|strong=\"H4480\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* rid the|strong=\"H5921\"* earth of|strong=\"H1004\"* you|strong=\"H3588\"*?”" + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* commanded|strong=\"H6680\"* his|strong=\"H3947\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H3027\"* they|strong=\"H5921\"* killed|strong=\"H2026\"* them|strong=\"H5921\"*, cut|strong=\"H7112\"* off|strong=\"H7112\"* their|strong=\"H3947\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* their|strong=\"H3947\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* hanged|strong=\"H8518\"* them|strong=\"H5921\"* up|strong=\"H5921\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"*. But|strong=\"H3947\"* they|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H3027\"* Ishbosheth and|strong=\"H3027\"* buried|strong=\"H6912\"* it|strong=\"H5921\"* in|strong=\"H5921\"* Abner’s grave|strong=\"H6913\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* David|strong=\"H1732\"* at|strong=\"H3478\"* Hebron|strong=\"H2275\"* and|strong=\"H3478\"* spoke, saying, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* are|strong=\"H6106\"* your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H3478\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* times|strong=\"H1571\"* past|strong=\"H8032\"*, when|strong=\"H1961\"* Saul|strong=\"H7586\"* was|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* us|strong=\"H5921\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H5971\"* led|strong=\"H3318\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* and|strong=\"H3478\"* in|strong=\"H5921\"*. Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* shepherd|strong=\"H7462\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* King|strong=\"H4428\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H1732\"* began to|strong=\"H1121\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H8141\"* Hebron|strong=\"H2275\"* he|strong=\"H3605\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H3063\"* six|strong=\"H8337\"* months|strong=\"H2320\"*, and|strong=\"H3063\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* he|strong=\"H3605\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H1732\"* men|strong=\"H5787\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"* against|strong=\"H3212\"* the|strong=\"H3588\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H3588\"* land, who|strong=\"H3427\"* spoke to|strong=\"H3212\"* David|strong=\"H1732\"*, saying, “The|strong=\"H3588\"* blind|strong=\"H5787\"* and|strong=\"H4428\"* the|strong=\"H3588\"* lame|strong=\"H6452\"* will|strong=\"H4428\"* keep|strong=\"H3427\"* you|strong=\"H3588\"* out|strong=\"H3212\"* of|strong=\"H4428\"* here|strong=\"H2008\"*,” thinking, “David|strong=\"H1732\"* can|strong=\"H3808\"*’t come|strong=\"H3212\"* in|strong=\"H3427\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 7, + "text": "Nevertheless David|strong=\"H1732\"* took|strong=\"H3920\"* the|strong=\"H3920\"* stronghold|strong=\"H4686\"* of|strong=\"H5892\"* Zion|strong=\"H6726\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H3651\"* on|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, “Whoever|strong=\"H3605\"* strikes|strong=\"H5221\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, let|strong=\"H3808\"* him|strong=\"H5921\"* go|strong=\"H1732\"* up|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* watercourse and|strong=\"H3117\"* strike|strong=\"H5221\"* those|strong=\"H3605\"* lame|strong=\"H6455\"* and|strong=\"H3117\"* blind|strong=\"H5787\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* hated|strong=\"H8130\"* by|strong=\"H5921\"* David|strong=\"H1732\"*’s soul|strong=\"H5315\"*.” Therefore|strong=\"H3651\"* they|strong=\"H3117\"* say, “The|strong=\"H3605\"* blind|strong=\"H5787\"* and|strong=\"H3117\"* the|strong=\"H3605\"* lame|strong=\"H6455\"* can|strong=\"H3808\"*’t come|strong=\"H5060\"* into|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H4480\"* stronghold|strong=\"H4686\"*, and|strong=\"H1004\"* called|strong=\"H7121\"* it|strong=\"H7121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. David|strong=\"H1732\"* built|strong=\"H1129\"* around|strong=\"H5439\"* from|strong=\"H4480\"* Millo|strong=\"H4407\"* and|strong=\"H1004\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 11, + "text": "Hiram|strong=\"H2438\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"*, with|strong=\"H1004\"* cedar trees|strong=\"H6086\"*, carpenters|strong=\"H2796\"*, and|strong=\"H7971\"* masons|strong=\"H7023\"*; and|strong=\"H7971\"* they|strong=\"H4428\"* built|strong=\"H1129\"* David|strong=\"H1732\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* established|strong=\"H3559\"* him|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* exalted|strong=\"H5375\"* his|strong=\"H5375\"* kingdom|strong=\"H4467\"* for|strong=\"H3588\"* his|strong=\"H5375\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* more|strong=\"H5750\"* concubines|strong=\"H6370\"* and|strong=\"H1121\"* wives for|strong=\"H1121\"* himself out|strong=\"H3947\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, after he|strong=\"H1732\"* had|strong=\"H1732\"* come|strong=\"H3205\"* from|strong=\"H1121\"* Hebron|strong=\"H2275\"*; and|strong=\"H1121\"* more|strong=\"H5750\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3389\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 14, + "text": "These are|strong=\"H8034\"* the|strong=\"H5416\"* names|strong=\"H8034\"* of|strong=\"H8034\"* those who|strong=\"H3389\"* were|strong=\"H3389\"* born|strong=\"H3209\"* to|strong=\"H3389\"* him|strong=\"H8010\"* in|strong=\"H8034\"* Jerusalem|strong=\"H3389\"*: Shammua|strong=\"H8051\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, Solomon|strong=\"H8010\"*," + }, + { + "verseNum": 15, + "text": "Ibhar|strong=\"H2984\"*, Elishua, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 16, + "text": "Elishama, Eliada, and Eliphelet." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3478\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* seek|strong=\"H1245\"* David|strong=\"H1732\"*, but|strong=\"H3588\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* about|strong=\"H5921\"* it|strong=\"H5921\"* and|strong=\"H3478\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* stronghold|strong=\"H4686\"*." + }, + { + "verseNum": 18, + "text": "Now the|strong=\"H5203\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* come and|strong=\"H6430\"* spread|strong=\"H5203\"* themselves in|strong=\"H6430\"* the|strong=\"H5203\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3068\"* you|strong=\"H3588\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Baal Perazim, and|strong=\"H3068\"* David|strong=\"H1732\"* struck|strong=\"H5221\"* them|strong=\"H5921\"* there|strong=\"H8033\"*. Then|strong=\"H3651\"* he|strong=\"H1931\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H6555\"* my|strong=\"H3068\"* enemies before|strong=\"H6440\"* me|strong=\"H6440\"*, like|strong=\"H3651\"* the|strong=\"H6440\"* breach|strong=\"H6556\"* of|strong=\"H3068\"* waters|strong=\"H4325\"*.” Therefore|strong=\"H3651\"* he|strong=\"H1931\"* called|strong=\"H7121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Baal Perazim.+ 5:20 “Baal Perazim” means “Lord who breaks out”.*" + }, + { + "verseNum": 21, + "text": "They|strong=\"H8033\"* left|strong=\"H5800\"* their|strong=\"H5375\"* images|strong=\"H6091\"* there|strong=\"H8033\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* and|strong=\"H1732\"* his|strong=\"H5375\"* men took|strong=\"H5375\"* them|strong=\"H5375\"* away|strong=\"H5375\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5927\"* Philistines|strong=\"H6430\"* came|strong=\"H5927\"* up|strong=\"H5927\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* and|strong=\"H5927\"* spread|strong=\"H5203\"* themselves in|strong=\"H5750\"* the|strong=\"H5927\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3068\"* David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* said, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"*. Circle|strong=\"H5437\"* around|strong=\"H5437\"* behind them|strong=\"H5927\"*, and|strong=\"H3068\"* attack|strong=\"H5927\"* them|strong=\"H5927\"* in|strong=\"H3068\"* front|strong=\"H4136\"* of|strong=\"H3068\"* the|strong=\"H3068\"* mulberry trees|strong=\"H1057\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H3068\"* marching|strong=\"H6807\"* in|strong=\"H3068\"* the|strong=\"H6440\"* tops|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H6440\"* mulberry trees|strong=\"H1057\"*, then|strong=\"H1961\"* stir yourself up|strong=\"H3318\"*; for|strong=\"H3588\"* then|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 25, + "text": "David|strong=\"H1732\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H5221\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* all|strong=\"H5704\"* the|strong=\"H5221\"* way|strong=\"H3651\"* from|strong=\"H5704\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* again|strong=\"H5750\"* gathered|strong=\"H1732\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* chosen men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"*, thirty|strong=\"H7970\"* thousand." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H3068\"* him|strong=\"H7121\"* from|strong=\"H5921\"* Baale Judah|strong=\"H1184\"*, to|strong=\"H3068\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* there|strong=\"H8033\"* God|strong=\"H3068\"*’s ark, which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*, even|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* above|strong=\"H5921\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H5375\"* set|strong=\"H5375\"* God’s ark on|strong=\"H7392\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*, and|strong=\"H1121\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* out of|strong=\"H1121\"* Abinadab’s house|strong=\"H1004\"* that|strong=\"H1121\"* was|strong=\"H1004\"* on|strong=\"H7392\"* the|strong=\"H5375\"* hill|strong=\"H1389\"*; and|strong=\"H1121\"* Uzzah|strong=\"H5798\"* and|strong=\"H1121\"* Ahio, the|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abinadab, drove|strong=\"H5090\"* the|strong=\"H5375\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5375\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* out|strong=\"H1980\"* of|strong=\"H1004\"* Abinadab’s house|strong=\"H1004\"* which|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H1980\"* the|strong=\"H6440\"* hill|strong=\"H1389\"*, with|strong=\"H5973\"* God’s ark; and|strong=\"H1980\"* Ahio went|strong=\"H1980\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* played|strong=\"H7832\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* instruments made|strong=\"H1732\"* of|strong=\"H1004\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*, with|strong=\"H1004\"* harps|strong=\"H3658\"*, with|strong=\"H1004\"* stringed instruments, with|strong=\"H1004\"* tambourines|strong=\"H8596\"*, with|strong=\"H1004\"* castanets|strong=\"H4517\"*, and|strong=\"H3478\"* with|strong=\"H1004\"* cymbals|strong=\"H6767\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* came to|strong=\"H5704\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H1637\"* Nacon|strong=\"H5225\"*, Uzzah|strong=\"H5798\"* reached|strong=\"H7971\"* for|strong=\"H3588\"* God|strong=\"H7971\"*’s ark and|strong=\"H7971\"* took hold of|strong=\"H1637\"* it|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* cattle|strong=\"H1241\"* stumbled|strong=\"H8058\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H5921\"* Uzzah|strong=\"H5798\"*, and|strong=\"H3068\"* God|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* there|strong=\"H8033\"* for|strong=\"H5921\"* his|strong=\"H3068\"* error|strong=\"H7944\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"* by|strong=\"H5921\"* God|strong=\"H3068\"*’s ark." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* displeased|strong=\"H2734\"* because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* broken|strong=\"H6555\"* out|strong=\"H5921\"* against|strong=\"H5921\"* Uzzah|strong=\"H5798\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3117\"* place|strong=\"H4725\"* Perez Uzzah|strong=\"H5798\"*+ 6:8 “Perez Uzzah” means “outbreak against Uzzah”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* said, “How could Yahweh|strong=\"H3068\"*’s ark come to|strong=\"H3068\"* me|strong=\"H3372\"*?”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3808\"* David|strong=\"H1732\"* would|strong=\"H3068\"* not|strong=\"H3808\"* move|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3068\"* be|strong=\"H3808\"* with|strong=\"H1004\"* him|strong=\"H5921\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* carried|strong=\"H3068\"* it|strong=\"H5921\"* aside|strong=\"H5493\"* into|strong=\"H5921\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H5921\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s ark remained|strong=\"H3427\"* in|strong=\"H3427\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H3605\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"* three|strong=\"H7969\"* months|strong=\"H2320\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* Obed-Edom|strong=\"H5654\"* and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* was|strong=\"H3068\"* told|strong=\"H5046\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Obed-Edom|strong=\"H5654\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H3068\"* him|strong=\"H5046\"*, because|strong=\"H5668\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s ark.”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* those|strong=\"H5375\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s ark had|strong=\"H3068\"* gone|strong=\"H6805\"* six|strong=\"H8337\"* paces|strong=\"H6806\"*, he|strong=\"H3588\"* sacrificed|strong=\"H2076\"* an|strong=\"H1961\"* ox|strong=\"H7794\"* and|strong=\"H3068\"* a|strong=\"H3068\"* fattened calf." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* danced|strong=\"H3769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H5797\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* was|strong=\"H3068\"* clothed|strong=\"H2296\"* in|strong=\"H3068\"* a|strong=\"H3068\"* linen ephod." + }, + { + "verseNum": 15, + "text": "So|strong=\"H5927\"* David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark with|strong=\"H1004\"* shouting|strong=\"H8643\"* and|strong=\"H3478\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s ark came|strong=\"H1961\"* into|strong=\"H1323\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, Michal|strong=\"H4324\"* the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* through|strong=\"H1157\"* the|strong=\"H6440\"* window|strong=\"H2474\"* and|strong=\"H3068\"* saw|strong=\"H7200\"* King|strong=\"H4428\"* David|strong=\"H1732\"* leaping|strong=\"H6339\"* and|strong=\"H3068\"* dancing|strong=\"H3769\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* she|strong=\"H3820\"* despised him|strong=\"H6440\"* in|strong=\"H3068\"* her|strong=\"H7200\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H3068\"* set|strong=\"H3322\"* it|strong=\"H8432\"* in|strong=\"H3068\"* its|strong=\"H5927\"* place|strong=\"H4725\"* in|strong=\"H3068\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H6440\"* tent that|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* pitched|strong=\"H5186\"* for|strong=\"H6440\"* it|strong=\"H8432\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3615\"* David|strong=\"H1732\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, he|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H5704\"* gave to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H5704\"* among|strong=\"H5971\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* to|strong=\"H5704\"* men|strong=\"H5971\"* and|strong=\"H3478\"* women, to|strong=\"H5704\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* of|strong=\"H1004\"* bread|strong=\"H3899\"*, dates, and|strong=\"H3478\"* raisins. So|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* departed|strong=\"H3212\"*, each|strong=\"H3605\"* to|strong=\"H5704\"* his|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3318\"* David|strong=\"H1732\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* bless|strong=\"H1288\"* his|strong=\"H1732\"* household|strong=\"H1004\"*. Michal|strong=\"H4324\"* the|strong=\"H7725\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* David|strong=\"H1732\"*, and|strong=\"H3478\"* said|strong=\"H3318\"*, “How|strong=\"H4100\"* glorious|strong=\"H3513\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* was|strong=\"H1732\"* today|strong=\"H3117\"*, who|strong=\"H5650\"* uncovered|strong=\"H1540\"* himself|strong=\"H1540\"* today|strong=\"H3117\"* in|strong=\"H3478\"* the|strong=\"H7725\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*’ maids, as|strong=\"H3117\"* one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7725\"* vain|strong=\"H7386\"* fellows|strong=\"H7386\"* shamelessly|strong=\"H1540\"* uncovers|strong=\"H1540\"* himself|strong=\"H1540\"*!”" + }, + { + "verseNum": 21, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* Michal|strong=\"H4324\"*, “It|strong=\"H5921\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3605\"* chose me|strong=\"H6440\"* above|strong=\"H5921\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* above|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, to|strong=\"H3478\"* appoint|strong=\"H6680\"* me|strong=\"H6440\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H3068\"* celebrate|strong=\"H7832\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* undignified than|strong=\"H7043\"* this|strong=\"H2063\"*, and|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* worthless in|strong=\"H5750\"* my|strong=\"H1961\"* own|strong=\"H1961\"* sight|strong=\"H5869\"*. But|strong=\"H1961\"* the|strong=\"H1961\"* maids of|strong=\"H5869\"* whom|strong=\"H5869\"* you|strong=\"H5973\"* have|strong=\"H1961\"* spoken will|strong=\"H1961\"* honor|strong=\"H3513\"* me|strong=\"H5973\"*.”" + }, + { + "verseNum": 23, + "text": "Michal|strong=\"H4324\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"* had|strong=\"H1961\"* no|strong=\"H3808\"* child|strong=\"H3206\"* to|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H1961\"* death|strong=\"H4194\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* him|strong=\"H5117\"* rest|strong=\"H5117\"* from|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H7200\"* prophet|strong=\"H5030\"*, “See|strong=\"H7200\"* now|strong=\"H4994\"*, I|strong=\"H7200\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* cedar, but|strong=\"H7200\"* God’s ark dwells|strong=\"H3427\"* within|strong=\"H8432\"* curtains|strong=\"H3407\"*.”" + }, + { + "verseNum": 3, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Go|strong=\"H3212\"*, do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Nathan|strong=\"H5416\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Should|strong=\"H3068\"* you|strong=\"H3212\"* build|strong=\"H1129\"* me|strong=\"H5650\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3068\"* me|strong=\"H5650\"* to|strong=\"H3212\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*?" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* up|strong=\"H5927\"* out|strong=\"H1980\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3588\"* have|strong=\"H1961\"* moved|strong=\"H1980\"* around|strong=\"H1980\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tent and|strong=\"H1121\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tabernacle|strong=\"H4908\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H1980\"* all|strong=\"H3605\"* places|strong=\"H1004\"* in|strong=\"H1980\"* which|strong=\"H1697\"* I|strong=\"H1697\"* have|strong=\"H5971\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, did|strong=\"H4100\"* I|strong=\"H1697\"* say|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* anyone|strong=\"H3605\"* from|strong=\"H3478\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* whom|strong=\"H5971\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* to|strong=\"H1696\"* be|strong=\"H3808\"* shepherd|strong=\"H7462\"* of|strong=\"H1121\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H6680\"* not|strong=\"H3808\"* built|strong=\"H1129\"* me|strong=\"H1696\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* cedar?’”’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* this|strong=\"H3541\"*: ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* took|strong=\"H3947\"* you|strong=\"H5921\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* pen, from|strong=\"H4480\"* following the|strong=\"H5921\"* sheep|strong=\"H6629\"*, to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H1980\"* have|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"* wherever|strong=\"H3605\"* you|strong=\"H6440\"* went|strong=\"H1980\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H1980\"* will|strong=\"H1961\"* make|strong=\"H6213\"* you|strong=\"H6440\"* a|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*, like|strong=\"H1961\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H6440\"* the|strong=\"H3605\"* great|strong=\"H1419\"* ones|strong=\"H1419\"* who|strong=\"H3605\"* are|strong=\"H6213\"* in|strong=\"H1980\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "I|strong=\"H7760\"* will|strong=\"H5971\"* appoint|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H8478\"* my|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* plant|strong=\"H5193\"* them|strong=\"H7760\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H5971\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* their|strong=\"H7760\"* own|strong=\"H5971\"* place|strong=\"H4725\"* and|strong=\"H1121\"* be|strong=\"H3808\"* moved|strong=\"H7264\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* wickedness|strong=\"H5766\"* will|strong=\"H5971\"* not|strong=\"H3808\"* afflict|strong=\"H6031\"* them|strong=\"H7760\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, as|strong=\"H5971\"* at|strong=\"H3478\"* the|strong=\"H7760\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3478\"* as|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* judges|strong=\"H8199\"* to|strong=\"H3478\"* be|strong=\"H3068\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H6213\"* you|strong=\"H3588\"* to|strong=\"H3478\"* rest|strong=\"H5117\"* from|strong=\"H4480\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies. Moreover|strong=\"H3588\"* Yahweh|strong=\"H3068\"* tells|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H6213\"* you|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* your|strong=\"H3588\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* and|strong=\"H6965\"* you|strong=\"H3588\"* sleep|strong=\"H7901\"* with|strong=\"H4390\"* your|strong=\"H3588\"* fathers, I|strong=\"H3588\"* will|strong=\"H2233\"* set|strong=\"H6965\"* up|strong=\"H6965\"* your|strong=\"H3588\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3588\"*, who|strong=\"H3588\"* will|strong=\"H2233\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* your|strong=\"H3588\"* body|strong=\"H4578\"*, and|strong=\"H6965\"* I|strong=\"H3588\"* will|strong=\"H2233\"* establish|strong=\"H6965\"* his|strong=\"H3559\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* will|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H5704\"* my|strong=\"H3559\"* name|strong=\"H8034\"*, and|strong=\"H1004\"* I|strong=\"H5704\"* will|strong=\"H1004\"* establish|strong=\"H3559\"* the|strong=\"H1129\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* his|strong=\"H3559\"* kingdom|strong=\"H4467\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*. If|strong=\"H1961\"* he|strong=\"H1931\"* commits|strong=\"H5753\"* iniquity|strong=\"H5753\"*, I|strong=\"H1121\"* will|strong=\"H1961\"* chasten|strong=\"H3198\"* him|strong=\"H1931\"* with|strong=\"H3198\"* the|strong=\"H1961\"* rod|strong=\"H7626\"* of|strong=\"H1121\"* men|strong=\"H1121\"* and|strong=\"H1121\"* with|strong=\"H3198\"* the|strong=\"H1961\"* stripes|strong=\"H5061\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3808\"* my|strong=\"H5493\"* loving kindness|strong=\"H2617\"* will|strong=\"H3808\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H4480\"* him|strong=\"H6440\"*, as|strong=\"H6440\"* I|strong=\"H3808\"* took|strong=\"H5493\"* it|strong=\"H6440\"* from|strong=\"H4480\"* Saul|strong=\"H7586\"*, whom|strong=\"H6440\"* I|strong=\"H3808\"* put|strong=\"H5493\"* away|strong=\"H5493\"* before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H6440\"* house|strong=\"H1004\"* and|strong=\"H1004\"* your|strong=\"H6440\"* kingdom|strong=\"H4467\"* will|strong=\"H1961\"* be|strong=\"H1961\"* made|strong=\"H3559\"* sure|strong=\"H3559\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Your|strong=\"H6440\"* throne|strong=\"H3678\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established|strong=\"H3559\"* forever|strong=\"H5769\"*.”’”" + }, + { + "verseNum": 17, + "text": "Nathan|strong=\"H5416\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H1732\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* vision|strong=\"H2384\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H1732\"* in|strong=\"H3427\"* and|strong=\"H3068\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* said, “Who|strong=\"H4310\"* am|strong=\"H3068\"* I|strong=\"H3588\"*, Lord|strong=\"H3068\"*+ 7:18 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* what|strong=\"H4310\"* is|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* this|strong=\"H3588\"* far|strong=\"H5704\"*?" + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* was|strong=\"H1004\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* small|strong=\"H6994\"* thing|strong=\"H6994\"* in|strong=\"H1004\"* your|strong=\"H1571\"* eyes|strong=\"H5869\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, but|strong=\"H1696\"* you|strong=\"H1696\"* have|strong=\"H5869\"* spoken|strong=\"H1696\"* also|strong=\"H1571\"* of|strong=\"H1004\"* your|strong=\"H1571\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"* for|strong=\"H1004\"* a|strong=\"H3068\"* great|strong=\"H7350\"* while|strong=\"H5750\"* to|strong=\"H1696\"* come|strong=\"H7350\"*; and|strong=\"H1004\"* this|strong=\"H2063\"* among men|strong=\"H5650\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 20, + "text": "What|strong=\"H4100\"* more|strong=\"H3254\"* can|strong=\"H4100\"* David|strong=\"H1732\"* say|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3045\"*? For|strong=\"H5650\"* you|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H6213\"* your|strong=\"H3605\"* word|strong=\"H1697\"*’s sake|strong=\"H5668\"*, and|strong=\"H5650\"* according to|strong=\"H6213\"* your|strong=\"H3605\"* own heart|strong=\"H3820\"*, you|strong=\"H3605\"* have|strong=\"H3045\"* worked|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* greatness|strong=\"H1420\"*, to|strong=\"H6213\"* make|strong=\"H6213\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* know|strong=\"H3045\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* are great|strong=\"H1431\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3069\"*. For|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3651\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* you|strong=\"H3588\"*, neither is|strong=\"H3651\"* there|strong=\"H3605\"* any|strong=\"H3605\"* God|strong=\"H3069\"* besides|strong=\"H2108\"* you|strong=\"H3588\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* with|strong=\"H5921\"* our|strong=\"H3605\"* ears." + }, + { + "verseNum": 23, + "text": "What|strong=\"H4310\"* one|strong=\"H6213\"* nation|strong=\"H1471\"* in|strong=\"H1980\"* the|strong=\"H6440\"* earth is|strong=\"H4310\"* like|strong=\"H3478\"* your|strong=\"H7760\"* people|strong=\"H5971\"*, even|strong=\"H6213\"* like|strong=\"H3478\"* Israel|strong=\"H3478\"*, whom|strong=\"H4310\"* God|strong=\"H4310\"* went|strong=\"H1980\"* to|strong=\"H1980\"* redeem|strong=\"H6299\"* to|strong=\"H1980\"* himself|strong=\"H6213\"* for|strong=\"H6213\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* make|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* do|strong=\"H6213\"* great|strong=\"H6213\"* things|strong=\"H3372\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* awesome|strong=\"H3372\"* things|strong=\"H3372\"* for|strong=\"H6213\"* your|strong=\"H7760\"* land|strong=\"H6440\"*, before|strong=\"H6440\"* your|strong=\"H7760\"* people|strong=\"H5971\"*, whom|strong=\"H4310\"* you|strong=\"H6440\"* redeemed|strong=\"H6299\"* to|strong=\"H1980\"* yourself|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* and|strong=\"H1980\"* their|strong=\"H7760\"* gods|strong=\"H1980\"*?" + }, + { + "verseNum": 24, + "text": "You|strong=\"H5704\"* established|strong=\"H3559\"* for|strong=\"H5704\"* yourself|strong=\"H3559\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* be|strong=\"H1961\"* your|strong=\"H3068\"* people|strong=\"H5971\"* forever|strong=\"H5769\"*; and|strong=\"H3478\"* you|strong=\"H5704\"*, Yahweh|strong=\"H3068\"*, became|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H6965\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, confirm|strong=\"H6965\"* it|strong=\"H5921\"* forever|strong=\"H5769\"*, and|strong=\"H6965\"* do|strong=\"H6213\"* as|strong=\"H5704\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 26, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H1961\"* magnified|strong=\"H1431\"* forever|strong=\"H5769\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* God|strong=\"H3068\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* will|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, have|strong=\"H3068\"* revealed|strong=\"H1540\"* to|strong=\"H3478\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, saying, ‘I|strong=\"H3588\"* will|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"*.’ Therefore|strong=\"H3651\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* has|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3478\"* pray|strong=\"H6419\"* this|strong=\"H2063\"* prayer|strong=\"H8605\"* to|strong=\"H3478\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 28, + "text": "“Now|strong=\"H6258\"*, O|strong=\"H3068\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, you|strong=\"H1696\"* are|strong=\"H1697\"* God|strong=\"H3069\"*, and|strong=\"H5650\"* your|strong=\"H1961\"* words|strong=\"H1697\"* are|strong=\"H1697\"* truth, and|strong=\"H5650\"* you|strong=\"H1696\"* have|strong=\"H1961\"* promised|strong=\"H1696\"* this|strong=\"H2063\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* to|strong=\"H1696\"* your|strong=\"H1961\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, let|strong=\"H6258\"* it|strong=\"H3588\"* please|strong=\"H2974\"* you|strong=\"H3588\"* to|strong=\"H1696\"* bless|strong=\"H1288\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H6440\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* continue|strong=\"H1961\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*. Let|strong=\"H6258\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"* forever|strong=\"H5769\"* with|strong=\"H1004\"* your|strong=\"H6440\"* blessing|strong=\"H1293\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* and|strong=\"H3027\"* subdued|strong=\"H3665\"* them|strong=\"H5221\"*; and|strong=\"H3027\"* David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* bridle of|strong=\"H3027\"* the|strong=\"H3947\"* mother city out|strong=\"H3947\"* of|strong=\"H3027\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1732\"* defeated|strong=\"H5221\"* Moab|strong=\"H4124\"*, and|strong=\"H1732\"* measured|strong=\"H4058\"* them|strong=\"H5221\"* with|strong=\"H7901\"* the|strong=\"H5221\"* line|strong=\"H2256\"*, making them|strong=\"H5221\"* to|strong=\"H4191\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* on|strong=\"H1961\"* the|strong=\"H5221\"* ground; and|strong=\"H1732\"* he|strong=\"H1732\"* measured|strong=\"H4058\"* two|strong=\"H8147\"* lines|strong=\"H2256\"* to|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, and|strong=\"H1732\"* one|strong=\"H2421\"* full|strong=\"H4393\"* line|strong=\"H2256\"* to|strong=\"H4191\"* keep|strong=\"H2421\"* alive|strong=\"H2421\"*. The|strong=\"H5221\"* Moabites|strong=\"H4124\"* became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H4191\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* struck|strong=\"H5221\"* Hadadezer|strong=\"H1909\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, as|strong=\"H1121\"* he|strong=\"H1732\"* went|strong=\"H3212\"* to|strong=\"H7725\"* recover|strong=\"H7725\"* his|strong=\"H1732\"* dominion|strong=\"H3027\"* at|strong=\"H1732\"* the|strong=\"H5221\"* River|strong=\"H5104\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* took|strong=\"H3920\"* from|strong=\"H4480\"* him|strong=\"H3605\"* one|strong=\"H3605\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* horsemen|strong=\"H6571\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*. David|strong=\"H1732\"* hamstrung the|strong=\"H3605\"* chariot|strong=\"H7393\"* horses|strong=\"H6571\"*, but|strong=\"H3498\"* reserved|strong=\"H3498\"* enough|strong=\"H3605\"* of|strong=\"H4480\"* them|strong=\"H4480\"* for|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "When the|strong=\"H5221\"* Syrians of|strong=\"H4428\"* Damascus|strong=\"H1834\"* came|strong=\"H4428\"* to|strong=\"H4428\"* help|strong=\"H5826\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* twenty|strong=\"H6242\"* two|strong=\"H8147\"* thousand men|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Syrians." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* David|strong=\"H1732\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Syria of|strong=\"H3068\"* Damascus|strong=\"H1834\"*; and|strong=\"H1980\"* the|strong=\"H3605\"* Syrians became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H3947\"* shields|strong=\"H7982\"* of|strong=\"H5650\"* gold|strong=\"H2091\"* that|strong=\"H1732\"* were|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3947\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Hadadezer|strong=\"H1909\"*, and|strong=\"H2091\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H3947\"* Betah and|strong=\"H4428\"* from|strong=\"H3947\"* Berothai|strong=\"H1268\"*, cities|strong=\"H5892\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"*, King|strong=\"H4428\"* David|strong=\"H1732\"* took|strong=\"H3947\"* a|strong=\"H3068\"* great|strong=\"H3966\"* quantity of|strong=\"H4428\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Toi|strong=\"H8583\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"*," + }, + { + "verseNum": 10, + "text": "then|strong=\"H1961\"* Toi|strong=\"H8583\"* sent|strong=\"H7971\"* Joram|strong=\"H3141\"* his|strong=\"H7971\"* son|strong=\"H1121\"* to|strong=\"H7971\"* King|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H7971\"* bless|strong=\"H1288\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Hadadezer|strong=\"H1909\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*; for|strong=\"H3588\"* Hadadezer|strong=\"H1909\"* had|strong=\"H1961\"* wars|strong=\"H4421\"* with|strong=\"H5921\"* Toi|strong=\"H8583\"*. Joram|strong=\"H3141\"* brought|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* also|strong=\"H1571\"* dedicated|strong=\"H6942\"* these|strong=\"H3605\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* he|strong=\"H3068\"* dedicated|strong=\"H6942\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* he|strong=\"H3068\"* subdued|strong=\"H3533\"*—" + }, + { + "verseNum": 12, + "text": "of|strong=\"H1121\"* Syria, of|strong=\"H1121\"* Moab|strong=\"H4124\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* Philistines|strong=\"H6430\"*, of|strong=\"H1121\"* Amalek|strong=\"H6002\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* plunder|strong=\"H7998\"* of|strong=\"H1121\"* Hadadezer|strong=\"H1909\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* earned a|strong=\"H3068\"* reputation|strong=\"H8034\"* when|strong=\"H7725\"* he|strong=\"H6213\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* striking|strong=\"H5221\"* down|strong=\"H5221\"* eighteen|strong=\"H8083\"* thousand men|strong=\"H6213\"* of|strong=\"H8034\"* the|strong=\"H5221\"* Syrians in|strong=\"H6213\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H8034\"* Salt|strong=\"H4417\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Edom. Throughout|strong=\"H3605\"* all|strong=\"H3605\"* Edom, he|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Edomites became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* executed|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 16, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* recorder|strong=\"H2142\"*," + }, + { + "verseNum": 17, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub and|strong=\"H1121\"* Ahimelech the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*, Seraiah|strong=\"H8304\"* was|strong=\"H1121\"* scribe|strong=\"H5608\"*," + }, + { + "verseNum": 18, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1961\"* over|strong=\"H1732\"* the|strong=\"H1961\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H1961\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* David|strong=\"H1732\"*’s sons|strong=\"H1121\"* were|strong=\"H1961\"* chief|strong=\"H3548\"* ministers|strong=\"H3548\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* said, “Is|strong=\"H3426\"* there|strong=\"H3426\"* yet|strong=\"H5750\"* any|strong=\"H5750\"* who|strong=\"H3588\"* is|strong=\"H3426\"* left|strong=\"H3498\"* of|strong=\"H1004\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H6213\"* show|strong=\"H6213\"* him|strong=\"H6213\"* kindness|strong=\"H2617\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"*’s sake|strong=\"H5668\"*?”" + }, + { + "verseNum": 2, + "text": "There|strong=\"H8034\"* was|strong=\"H8034\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* whose|strong=\"H5650\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Ziba|strong=\"H6717\"*, and|strong=\"H4428\"* they|strong=\"H7586\"* called|strong=\"H7121\"* him|strong=\"H7121\"* to|strong=\"H1004\"* David|strong=\"H1732\"*; and|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* said|strong=\"H7121\"* to|strong=\"H1004\"* him|strong=\"H7121\"*, “Are|strong=\"H5650\"* you|strong=\"H7121\"* Ziba|strong=\"H6717\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* said, “Is|strong=\"H2617\"* there not|strong=\"H6213\"* yet|strong=\"H5750\"* any|strong=\"H5750\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, that|strong=\"H4428\"* I|strong=\"H1121\"* may|strong=\"H4428\"* show|strong=\"H6213\"* the|strong=\"H6213\"* kindness|strong=\"H2617\"* of|strong=\"H1121\"* God to|strong=\"H6213\"* him|strong=\"H6213\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H2009\"* king|strong=\"H4428\"* said to|strong=\"H1121\"* him|strong=\"H1931\"*, “Where|strong=\"H1004\"* is|strong=\"H1931\"* he|strong=\"H1931\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3947\"* King|strong=\"H4428\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammiel|strong=\"H5988\"*, from|strong=\"H1121\"* Lo Debar." + }, + { + "verseNum": 6, + "text": "Mephibosheth|strong=\"H4648\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, came|strong=\"H7586\"* to|strong=\"H5921\"* David|strong=\"H1732\"*, fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H1732\"* face|strong=\"H6440\"*, and|strong=\"H1121\"* showed respect|strong=\"H5921\"*. David|strong=\"H1732\"* said, “Mephibosheth|strong=\"H4648\"*?”" + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7704\"* surely|strong=\"H3588\"* show|strong=\"H6213\"* you|strong=\"H3588\"* kindness|strong=\"H2617\"* for|strong=\"H3588\"* Jonathan|strong=\"H3083\"* your|strong=\"H3605\"* father’s sake|strong=\"H5668\"*, and|strong=\"H7725\"* will|strong=\"H7704\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H7704\"* of|strong=\"H7704\"* Saul|strong=\"H7586\"* your|strong=\"H3605\"* father. You|strong=\"H3588\"* will|strong=\"H7704\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* at|strong=\"H5921\"* my|strong=\"H3605\"* table|strong=\"H7979\"* continually|strong=\"H8548\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"*, and|strong=\"H5650\"* said, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H3588\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* look|strong=\"H6437\"* at|strong=\"H4191\"* such|strong=\"H3644\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* dog|strong=\"H3611\"* as|strong=\"H3644\"* I|strong=\"H3588\"* am?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H1961\"* Ziba|strong=\"H6717\"*, Saul|strong=\"H7586\"*’s servant|strong=\"H5288\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H1961\"* him|strong=\"H5414\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H3605\"* master|strong=\"H5414\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "Till|strong=\"H5647\"* the|strong=\"H5921\"* land for|strong=\"H5921\"* him|strong=\"H5921\"*—you|strong=\"H5921\"*, your|strong=\"H5921\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*. Bring|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* harvest, that|strong=\"H1121\"* your|strong=\"H5921\"* master’s son|strong=\"H1121\"* may|strong=\"H1961\"* have|strong=\"H1961\"* bread|strong=\"H3899\"* to|strong=\"H1961\"* eat|strong=\"H3899\"*; but|strong=\"H1961\"* Mephibosheth|strong=\"H4648\"* your|strong=\"H5921\"* master’s son|strong=\"H1121\"* will|strong=\"H1961\"* always|strong=\"H8548\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* at|strong=\"H5921\"* my|strong=\"H5921\"* table|strong=\"H7979\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3651\"* Ziba|strong=\"H6717\"* said|strong=\"H3651\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “According|strong=\"H5921\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* commands|strong=\"H6680\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, so|strong=\"H3651\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* will|strong=\"H4428\"* do|strong=\"H6213\"*.” So|strong=\"H3651\"* Mephibosheth|strong=\"H4648\"* ate at|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"* like|strong=\"H3651\"* one|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Mephibosheth|strong=\"H4648\"* had|strong=\"H1121\"* a|strong=\"H3068\"* young|strong=\"H1121\"* son|strong=\"H1121\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mica|strong=\"H4316\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* lived|strong=\"H4186\"* in|strong=\"H1004\"* Ziba|strong=\"H6717\"*’s house|strong=\"H1004\"* were|strong=\"H1121\"* servants|strong=\"H5650\"* to|strong=\"H1121\"* Mephibosheth|strong=\"H4648\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3588\"* Mephibosheth|strong=\"H4648\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* ate continually|strong=\"H8548\"* at|strong=\"H3427\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s table|strong=\"H7979\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* lame|strong=\"H6455\"* in|strong=\"H3427\"* both|strong=\"H8147\"* his|strong=\"H5921\"* feet|strong=\"H7272\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, the|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hanun|strong=\"H2586\"* his|strong=\"H1961\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H1961\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said, “I|strong=\"H5650\"* will|strong=\"H5650\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* Hanun|strong=\"H2586\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, as|strong=\"H6213\"* his|strong=\"H7971\"* father|strong=\"H1121\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* me|strong=\"H7971\"*.” So|strong=\"H6213\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* comfort|strong=\"H5162\"* him|strong=\"H7971\"* concerning|strong=\"H5162\"* his|strong=\"H7971\"* father|strong=\"H1121\"*. David|strong=\"H1732\"*’s servants|strong=\"H5650\"* came|strong=\"H5983\"* into|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* said to|strong=\"H7971\"* Hanun|strong=\"H2586\"* their|strong=\"H3588\"* lord, “Do|strong=\"H5869\"* you|strong=\"H3588\"* think|strong=\"H5869\"* that|strong=\"H3588\"* David|strong=\"H1732\"* honors|strong=\"H3513\"* your|strong=\"H3588\"* father|strong=\"H1121\"*, in|strong=\"H5892\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* comforters|strong=\"H5162\"* to|strong=\"H7971\"* you|strong=\"H3588\"*? Hasn’t David|strong=\"H1732\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H7971\"* search|strong=\"H2713\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, to|strong=\"H7971\"* spy|strong=\"H7270\"* it|strong=\"H3588\"* out|strong=\"H7971\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* overthrow|strong=\"H2015\"* it|strong=\"H3588\"*?”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3947\"* Hanun|strong=\"H2586\"* took|strong=\"H3947\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, shaved|strong=\"H1548\"* off|strong=\"H3772\"* one half|strong=\"H2677\"* of|strong=\"H5650\"* their|strong=\"H3947\"* beards|strong=\"H2206\"*, and|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* their|strong=\"H3947\"* garments|strong=\"H4063\"* in|strong=\"H5650\"* the|strong=\"H3947\"* middle|strong=\"H2677\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H3947\"* buttocks|strong=\"H8357\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* told|strong=\"H5046\"* David|strong=\"H1732\"* this|strong=\"H3588\"*, he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* them|strong=\"H7725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* men were|strong=\"H1961\"* greatly|strong=\"H3966\"* ashamed|strong=\"H3637\"*. The|strong=\"H3588\"* king|strong=\"H4428\"* said, “Wait|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"* until|strong=\"H5704\"* your|strong=\"H7725\"* beards|strong=\"H2206\"* have|strong=\"H1961\"* grown|strong=\"H6779\"*, and|strong=\"H7971\"* then|strong=\"H1961\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* become|strong=\"H7200\"* odious to|strong=\"H7971\"* David|strong=\"H1732\"*, the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* hired|strong=\"H7936\"* the|strong=\"H7200\"* Syrians of|strong=\"H1121\"* Beth Rehob and|strong=\"H1121\"* the|strong=\"H7200\"* Syrians of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* with|strong=\"H1732\"* one|strong=\"H1121\"* thousand men|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H7200\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tob|strong=\"H2897\"* twelve|strong=\"H8147\"* thousand men|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H6635\"* it|strong=\"H7971\"*, he|strong=\"H3605\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* put|strong=\"H3318\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"* at|strong=\"H4421\"* the|strong=\"H3318\"* entrance|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3318\"* gate|strong=\"H8179\"*. The|strong=\"H3318\"* Syrians of|strong=\"H1121\"* Zobah|strong=\"H6678\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Rehob|strong=\"H7340\"* and|strong=\"H1121\"* the|strong=\"H3318\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tob|strong=\"H2897\"* and|strong=\"H1121\"* Maacah|strong=\"H4601\"* were|strong=\"H1121\"* by|strong=\"H3318\"* themselves|strong=\"H6186\"* in|strong=\"H4421\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Joab|strong=\"H3097\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* set|strong=\"H6186\"* against|strong=\"H7125\"* him|strong=\"H6440\"* before|strong=\"H6440\"* and|strong=\"H3478\"* behind, he|strong=\"H3588\"* chose of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* choice|strong=\"H7200\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* put|strong=\"H6186\"* them|strong=\"H6440\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H3605\"* Syrians." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* he|strong=\"H3027\"* committed|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai his|strong=\"H5414\"* brother; and|strong=\"H1121\"* he|strong=\"H3027\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1121\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H4480\"* said, “If|strong=\"H1961\"* the|strong=\"H4480\"* Syrians are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* me|strong=\"H4480\"*, then|strong=\"H1961\"* you|strong=\"H4480\"* shall|strong=\"H1121\"* help|strong=\"H3467\"* me|strong=\"H4480\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* you|strong=\"H4480\"*, then|strong=\"H1961\"* I|strong=\"H1980\"* will|strong=\"H1961\"* come|strong=\"H1980\"* and|strong=\"H1121\"* help|strong=\"H3467\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 12, + "text": "Be|strong=\"H3068\"* courageous|strong=\"H2388\"*, and|strong=\"H3068\"* let’s be|strong=\"H3068\"* strong|strong=\"H2388\"* for|strong=\"H6213\"* our|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* for|strong=\"H6213\"* the|strong=\"H6213\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H2896\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3068\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5066\"* Joab|strong=\"H3097\"* and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H6440\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6440\"* the|strong=\"H6440\"* battle|strong=\"H4421\"* against|strong=\"H5973\"* the|strong=\"H6440\"* Syrians, and|strong=\"H5971\"* they|strong=\"H5971\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Syrians had|strong=\"H3588\"* fled|strong=\"H5127\"*, they|strong=\"H3588\"* likewise fled|strong=\"H5127\"* before|strong=\"H6440\"* Abishai, and|strong=\"H1121\"* entered into|strong=\"H7725\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H7725\"* Joab|strong=\"H3097\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Syrians saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* gathered|strong=\"H3478\"* themselves|strong=\"H6440\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 16, + "text": "Hadadezer|strong=\"H1909\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* Syrians who|strong=\"H6635\"* were|strong=\"H8269\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* River|strong=\"H5104\"*; and|strong=\"H7971\"* they|strong=\"H6440\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Helam|strong=\"H2431\"*, with|strong=\"H6440\"* Shobach|strong=\"H7731\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"* of|strong=\"H8269\"* Hadadezer|strong=\"H1909\"* at|strong=\"H6440\"* their|strong=\"H6440\"* head|strong=\"H8269\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3605\"*; and|strong=\"H3478\"* he|strong=\"H3605\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H5973\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Helam|strong=\"H2431\"*. The|strong=\"H3605\"* Syrians set|strong=\"H6186\"* themselves|strong=\"H6186\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* David|strong=\"H1732\"* and|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* Syrians fled|strong=\"H5127\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3967\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* charioteers|strong=\"H7393\"* of|strong=\"H8269\"* the|strong=\"H6440\"* Syrians and|strong=\"H3967\"* forty thousand horsemen|strong=\"H6571\"*, and|strong=\"H3967\"* struck|strong=\"H5221\"* Shobach|strong=\"H7731\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* their|strong=\"H6440\"* army|strong=\"H6635\"*, so|strong=\"H4191\"* that|strong=\"H3478\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* were|strong=\"H3478\"* servants|strong=\"H5650\"* to|strong=\"H3478\"* Hadadezer|strong=\"H1909\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H6440\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* served|strong=\"H5647\"* them|strong=\"H6440\"*. So|strong=\"H3588\"* the|strong=\"H3605\"* Syrians were|strong=\"H3478\"* afraid|strong=\"H3372\"* to|strong=\"H3478\"* help|strong=\"H3467\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* any|strong=\"H3605\"* more|strong=\"H5750\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3427\"* the|strong=\"H3605\"* return|strong=\"H8666\"* of|strong=\"H1121\"* the|strong=\"H3605\"* year|strong=\"H8141\"*, at|strong=\"H3427\"* the|strong=\"H3605\"* time|strong=\"H6256\"* when|strong=\"H1961\"* kings|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H1121\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* destroyed|strong=\"H7843\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* Rabbah|strong=\"H7237\"*. But|strong=\"H1961\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "At|strong=\"H5921\"* evening|strong=\"H6153\"*, David|strong=\"H1732\"* arose|strong=\"H6965\"* from|strong=\"H5921\"* his|strong=\"H1732\"* bed|strong=\"H4904\"* and|strong=\"H1980\"* walked|strong=\"H1980\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. From|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"*, he|strong=\"H1004\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* woman|strong=\"H1004\"* bathing|strong=\"H7364\"*, and|strong=\"H1980\"* the|strong=\"H5921\"* woman|strong=\"H1004\"* was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H2896\"* to|strong=\"H1980\"* look|strong=\"H7200\"* at|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* inquired|strong=\"H1875\"* after|strong=\"H1875\"* the|strong=\"H7971\"* woman|strong=\"H1323\"*. One|strong=\"H3808\"* said, “Isn’t this|strong=\"H2063\"* Bathsheba|strong=\"H1339\"*, the|strong=\"H7971\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Eliam, Uriah the|strong=\"H7971\"* Hittite|strong=\"H2850\"*’s wife?”" + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* her|strong=\"H7971\"*; and|strong=\"H7971\"* she|strong=\"H1931\"* came|strong=\"H7725\"* in|strong=\"H1004\"* to|strong=\"H7725\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H1931\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7971\"* (for|strong=\"H7971\"* she|strong=\"H1931\"* was|strong=\"H1732\"* purified|strong=\"H6942\"* from|strong=\"H7725\"* her|strong=\"H7971\"* uncleanness|strong=\"H2932\"*); and|strong=\"H7971\"* she|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H7971\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7971\"* woman|strong=\"H2030\"* conceived|strong=\"H2029\"*; and|strong=\"H7971\"* she sent|strong=\"H7971\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* said, “I|strong=\"H5046\"* am|strong=\"H2029\"* with|strong=\"H1732\"* child|strong=\"H2030\"*.”" + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Joab|strong=\"H3097\"*, “Send|strong=\"H7971\"* me|strong=\"H7971\"* Uriah the|strong=\"H7971\"* Hittite|strong=\"H2850\"*.” Joab|strong=\"H3097\"* sent|strong=\"H7971\"* Uriah to|strong=\"H7971\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 7, + "text": "When Uriah had|strong=\"H1732\"* come|strong=\"H5971\"* to|strong=\"H1732\"* him|strong=\"H7592\"*, David|strong=\"H1732\"* asked|strong=\"H7592\"* him|strong=\"H7592\"* how|strong=\"H7965\"* Joab|strong=\"H3097\"* did|strong=\"H5971\"*, and|strong=\"H5971\"* how|strong=\"H7965\"* the|strong=\"H1732\"* people|strong=\"H5971\"* fared, and|strong=\"H5971\"* how|strong=\"H7965\"* the|strong=\"H1732\"* war|strong=\"H4421\"* prospered|strong=\"H7965\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3381\"* Uriah, “Go|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* your|strong=\"H3318\"* house|strong=\"H1004\"* and|strong=\"H4428\"* wash|strong=\"H7364\"* your|strong=\"H3318\"* feet|strong=\"H7272\"*.” Uriah departed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* a|strong=\"H3068\"* gift|strong=\"H4864\"* from|strong=\"H3318\"* the|strong=\"H3318\"* king|strong=\"H4428\"* was|strong=\"H1732\"* sent|strong=\"H3318\"* after|strong=\"H7272\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* Uriah slept|strong=\"H7901\"* at|strong=\"H1004\"* the|strong=\"H3605\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* his|strong=\"H3605\"* lord, and|strong=\"H4428\"* didn’t go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "When they|strong=\"H3808\"* had|strong=\"H1732\"* told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Uriah didn’t go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H1732\"* house|strong=\"H1004\"*,” David|strong=\"H1732\"* said to|strong=\"H3381\"* Uriah, “Haven’t you|strong=\"H5046\"* come|strong=\"H3381\"* from|strong=\"H3381\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*? Why|strong=\"H4069\"* didn’t you|strong=\"H5046\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* your|strong=\"H3808\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 11, + "text": "Uriah said|strong=\"H1697\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, “The|strong=\"H6440\"* ark, Israel|strong=\"H3478\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"*, are|strong=\"H3478\"* staying|strong=\"H3427\"* in|strong=\"H3427\"* tents|strong=\"H2583\"*; and|strong=\"H3063\"* my|strong=\"H1732\"* lord Joab|strong=\"H3097\"* and|strong=\"H3063\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* my|strong=\"H1732\"* lord are|strong=\"H3478\"* encamped|strong=\"H2583\"* in|strong=\"H3427\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*. Shall|strong=\"H3478\"* I|strong=\"H5921\"* then|strong=\"H2088\"* go|strong=\"H3478\"* into|strong=\"H5921\"* my|strong=\"H1732\"* house|strong=\"H1004\"* to|strong=\"H3478\"* eat and|strong=\"H3063\"* to|strong=\"H3478\"* drink|strong=\"H8354\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* my|strong=\"H1732\"* wife|strong=\"H2416\"*? As|strong=\"H1697\"* you|strong=\"H6440\"* live|strong=\"H3427\"*, and|strong=\"H3063\"* as|strong=\"H1697\"* your|strong=\"H5921\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, I|strong=\"H5921\"* will|strong=\"H3478\"* not|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*!”" + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* said to|strong=\"H7971\"* Uriah, “Stay|strong=\"H3427\"* here|strong=\"H2088\"* today|strong=\"H3117\"* also|strong=\"H1571\"*, and|strong=\"H7971\"* tomorrow|strong=\"H4279\"* I|strong=\"H3117\"* will|strong=\"H1571\"* let|strong=\"H7971\"* you|strong=\"H7971\"* depart|strong=\"H7971\"*.” So|strong=\"H7971\"* Uriah stayed|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* that|strong=\"H3117\"* day|strong=\"H3117\"* and|strong=\"H7971\"* the|strong=\"H3117\"* next|strong=\"H4283\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3318\"* David|strong=\"H1732\"* had|strong=\"H1732\"* called|strong=\"H7121\"* him|strong=\"H6440\"*, he|strong=\"H1004\"* ate and|strong=\"H1004\"* drank|strong=\"H8354\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* made|strong=\"H1732\"* him|strong=\"H6440\"* drunk|strong=\"H8354\"*. At|strong=\"H1004\"* evening|strong=\"H6153\"*, he|strong=\"H1004\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3381\"* lie|strong=\"H7901\"* on|strong=\"H1004\"* his|strong=\"H7121\"* bed|strong=\"H4904\"* with|strong=\"H5973\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* his|strong=\"H7121\"* lord, but|strong=\"H3808\"* didn’t go|strong=\"H3318\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H7121\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3789\"* the|strong=\"H7971\"* morning|strong=\"H1242\"*, David|strong=\"H1732\"* wrote|strong=\"H3789\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* to|strong=\"H7971\"* Joab|strong=\"H3097\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* it|strong=\"H1242\"* by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Uriah." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5221\"* wrote|strong=\"H3789\"* in|strong=\"H4191\"* the|strong=\"H6440\"* letter|strong=\"H5612\"*, saying, “Send Uriah to|strong=\"H7725\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* hottest|strong=\"H2389\"* battle|strong=\"H4421\"*, and|strong=\"H7725\"* retreat|strong=\"H7725\"* from|strong=\"H7725\"* him|strong=\"H6440\"*, that|strong=\"H4421\"* he|strong=\"H5221\"* may|strong=\"H7725\"* be|strong=\"H4191\"* struck|strong=\"H5221\"* and|strong=\"H7725\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Joab|strong=\"H3097\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* on|strong=\"H1961\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, he|strong=\"H3588\"* assigned|strong=\"H5414\"* Uriah to|strong=\"H1961\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* valiant|strong=\"H2428\"* men|strong=\"H2428\"* were|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* men|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Joab|strong=\"H3097\"*. Some|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H4480\"* people|strong=\"H5971\"* fell|strong=\"H5307\"*, even|strong=\"H1571\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*; and|strong=\"H5971\"* Uriah the|strong=\"H4480\"* Hittite|strong=\"H2850\"* died|strong=\"H4191\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* Joab|strong=\"H3097\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* war|strong=\"H4421\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4428\"* he|strong=\"H3605\"* commanded|strong=\"H6680\"* the|strong=\"H3605\"* messenger|strong=\"H4397\"*, saying|strong=\"H1697\"*, “When|strong=\"H3615\"* you|strong=\"H6680\"* have|strong=\"H1697\"* finished|strong=\"H3615\"* telling|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* war|strong=\"H4421\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 20, + "text": "it|strong=\"H5921\"* shall|strong=\"H4428\"* be|strong=\"H1961\"* that|strong=\"H3045\"*, if|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* arise|strong=\"H5927\"*, and|strong=\"H4428\"* he|strong=\"H3808\"* asks you|strong=\"H5921\"*, ‘Why|strong=\"H4069\"* did|strong=\"H3808\"* you|strong=\"H5921\"* go|strong=\"H5927\"* so|strong=\"H1961\"* near|strong=\"H5066\"* to|strong=\"H5927\"* the|strong=\"H5921\"* city|strong=\"H5892\"* to|strong=\"H5927\"* fight|strong=\"H3898\"*? Didn’t you|strong=\"H5921\"* know|strong=\"H3045\"* that|strong=\"H3045\"* they|strong=\"H3808\"* would|strong=\"H4428\"* shoot|strong=\"H3384\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*?" + }, + { + "verseNum": 21, + "text": "Who|strong=\"H4310\"* struck|strong=\"H5221\"* Abimelech the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jerubbesheth|strong=\"H3380\"*? Didn’t a|strong=\"H3068\"* woman cast|strong=\"H7993\"* an|strong=\"H5221\"* upper|strong=\"H7393\"* millstone|strong=\"H7393\"* on|strong=\"H5921\"* him|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, so|strong=\"H3808\"* that|strong=\"H1121\"* he|strong=\"H3808\"* died|strong=\"H4191\"* at|strong=\"H5921\"* Thebez|strong=\"H8405\"*? Why|strong=\"H4100\"* did|strong=\"H4100\"* you|strong=\"H5921\"* go|strong=\"H5066\"* so|strong=\"H3808\"* near|strong=\"H5066\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*?’ then|strong=\"H1571\"* you|strong=\"H5921\"* shall|strong=\"H1121\"* say, ‘Your|strong=\"H5921\"* servant|strong=\"H5650\"* Uriah the|strong=\"H5921\"* Hittite|strong=\"H2850\"* is|strong=\"H4310\"* also|strong=\"H1571\"* dead|strong=\"H4191\"*.’”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H7971\"* the|strong=\"H3605\"* messenger|strong=\"H4397\"* went|strong=\"H3212\"*, and|strong=\"H7971\"* came|strong=\"H3212\"* and|strong=\"H7971\"* showed David|strong=\"H1732\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Joab|strong=\"H3097\"* had|strong=\"H1732\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* for|strong=\"H7971\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* messenger|strong=\"H4397\"* said|strong=\"H3318\"* to|strong=\"H5704\"* David|strong=\"H1732\"*, “The|strong=\"H5921\"* men prevailed|strong=\"H1396\"* against|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H1732\"* came|strong=\"H1961\"* out|strong=\"H3318\"* to|strong=\"H5704\"* us|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"*; and|strong=\"H1732\"* we|strong=\"H3068\"* were|strong=\"H1961\"* on|strong=\"H5921\"* them|strong=\"H5921\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* shooters|strong=\"H3384\"* shot|strong=\"H3384\"* at|strong=\"H5921\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*; and|strong=\"H4428\"* some of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* are|strong=\"H5650\"* dead|strong=\"H4191\"*, and|strong=\"H4428\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* Uriah the|strong=\"H5921\"* Hittite|strong=\"H2850\"* is|strong=\"H1571\"* also|strong=\"H1571\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H2088\"* David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H4397\"* the|strong=\"H3588\"* messenger|strong=\"H4397\"*, “Tell Joab|strong=\"H3097\"*, ‘Don’t let this|strong=\"H2088\"* thing|strong=\"H1697\"* displease|strong=\"H7489\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* devours one|strong=\"H2088\"* as|strong=\"H1697\"* well|strong=\"H5869\"* as|strong=\"H1697\"* another|strong=\"H2088\"*. Make|strong=\"H2388\"* your|strong=\"H3588\"* battle|strong=\"H4421\"* stronger|strong=\"H2388\"* against|strong=\"H4421\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, and|strong=\"H5869\"* overthrow|strong=\"H2040\"* it|strong=\"H3588\"*.’ Encourage|strong=\"H2388\"* him|strong=\"H1732\"*.”" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* Uriah’s wife heard|strong=\"H8085\"* that|strong=\"H3588\"* Uriah her|strong=\"H5921\"* husband|strong=\"H1167\"* was dead|strong=\"H4191\"*, she|strong=\"H3588\"* mourned|strong=\"H5594\"* for|strong=\"H3588\"* her|strong=\"H5921\"* husband|strong=\"H1167\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* the|strong=\"H6213\"* mourning was|strong=\"H3068\"* past|strong=\"H5674\"*, David|strong=\"H1732\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H1961\"* her|strong=\"H7971\"* home|strong=\"H1004\"* to|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* she became|strong=\"H3205\"* his|strong=\"H3068\"* wife and|strong=\"H1121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. But|strong=\"H1961\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* done|strong=\"H6213\"* displeased|strong=\"H7489\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* Nathan|strong=\"H5416\"* to|strong=\"H3068\"* David|strong=\"H1732\"*. He|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H7971\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “There|strong=\"H1961\"* were|strong=\"H1961\"* two|strong=\"H8147\"* men|strong=\"H6223\"* in|strong=\"H3068\"* one|strong=\"H1961\"* city|strong=\"H5892\"*: the|strong=\"H3068\"* one|strong=\"H1961\"* rich|strong=\"H6223\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* other|strong=\"H8147\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H1961\"* rich|strong=\"H6223\"* man|strong=\"H6223\"* had|strong=\"H1961\"* very|strong=\"H3966\"* many|strong=\"H7235\"* flocks|strong=\"H6629\"* and|strong=\"H6629\"* herds|strong=\"H1241\"*," + }, + { + "verseNum": 3, + "text": "but|strong=\"H3588\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* man|strong=\"H1121\"* had|strong=\"H1961\"* nothing|strong=\"H3605\"*, except|strong=\"H3588\"* one|strong=\"H3605\"* little|strong=\"H6996\"* ewe|strong=\"H3535\"* lamb|strong=\"H3535\"*, which|strong=\"H1323\"* he|strong=\"H3588\"* had|strong=\"H1961\"* bought|strong=\"H7069\"* and|strong=\"H1121\"* raised|strong=\"H1431\"*. It|strong=\"H3588\"* grew|strong=\"H1431\"* up|strong=\"H1431\"* together|strong=\"H3162\"* with|strong=\"H5973\"* him|strong=\"H5973\"* and|strong=\"H1121\"* with|strong=\"H5973\"* his|strong=\"H3605\"* children|strong=\"H1121\"*. It|strong=\"H3588\"* ate of|strong=\"H1121\"* his|strong=\"H3605\"* own|strong=\"H1961\"* food, drank|strong=\"H8354\"* of|strong=\"H1121\"* his|strong=\"H3605\"* own|strong=\"H1961\"* cup|strong=\"H3563\"*, and|strong=\"H1121\"* lay|strong=\"H7901\"* in|strong=\"H1121\"* his|strong=\"H3605\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"* to|strong=\"H1961\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* traveler|strong=\"H1982\"* came to|strong=\"H6213\"* the|strong=\"H3947\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*, and|strong=\"H6629\"* he|strong=\"H6213\"* didn’t want to|strong=\"H6213\"* take|strong=\"H3947\"* of|strong=\"H6629\"* his|strong=\"H3947\"* own flock|strong=\"H6629\"* and|strong=\"H6629\"* of|strong=\"H6629\"* his|strong=\"H3947\"* own herd|strong=\"H1241\"* to|strong=\"H6213\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3947\"* wayfaring man|strong=\"H6223\"* who|strong=\"H6213\"* had|strong=\"H2550\"* come to|strong=\"H6213\"* him|strong=\"H6213\"*, but|strong=\"H7326\"* took|strong=\"H3947\"* the|strong=\"H3947\"* poor|strong=\"H7326\"* man|strong=\"H6223\"*’s lamb|strong=\"H3535\"* and|strong=\"H6629\"* prepared|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3947\"* man|strong=\"H6223\"* who|strong=\"H6213\"* had|strong=\"H2550\"* come to|strong=\"H6213\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"*’s anger burned|strong=\"H2734\"* hot|strong=\"H2734\"* against|strong=\"H2734\"* the|strong=\"H3588\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* Nathan|strong=\"H5416\"*, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, the|strong=\"H3588\"* man|strong=\"H1121\"* who|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2063\"* deserves|strong=\"H1121\"* to|strong=\"H3068\"* die|strong=\"H4194\"*!" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* must|strong=\"H3808\"* restore|strong=\"H7999\"* the|strong=\"H5921\"* lamb|strong=\"H3535\"* fourfold, because|strong=\"H5921\"* he|strong=\"H6213\"* did|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* and|strong=\"H6213\"* because|strong=\"H5921\"* he|strong=\"H6213\"* had|strong=\"H2550\"* no|strong=\"H3808\"* pity|strong=\"H2550\"*!”" + }, + { + "verseNum": 7, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H3478\"* David|strong=\"H1732\"*, “You|strong=\"H5921\"* are|strong=\"H3478\"* the|strong=\"H5921\"* man! This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘I|strong=\"H3541\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* delivered|strong=\"H5337\"* you|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* your|strong=\"H5414\"* master|strong=\"H5414\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* your|strong=\"H5414\"* master|strong=\"H5414\"*’s wives into|strong=\"H3063\"* your|strong=\"H5414\"* bosom|strong=\"H2436\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* if that|strong=\"H3478\"* would|strong=\"H3478\"* have|strong=\"H3478\"* been|strong=\"H4592\"* too little|strong=\"H4592\"*, I|strong=\"H5414\"* would|strong=\"H3478\"* have|strong=\"H3478\"* added|strong=\"H3254\"* to|strong=\"H3478\"* you|strong=\"H5414\"* many more|strong=\"H3254\"* such|strong=\"H2007\"* things|strong=\"H2007\"*." + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H3947\"* despised Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H5869\"*? You|strong=\"H3947\"* have|strong=\"H3068\"* struck|strong=\"H5221\"* Uriah the|strong=\"H3947\"* Hittite|strong=\"H2850\"* with|strong=\"H3068\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, have|strong=\"H3068\"* taken|strong=\"H3947\"* his|strong=\"H3068\"* wife to|strong=\"H3068\"* be|strong=\"H1697\"* your|strong=\"H3068\"* wife, and|strong=\"H1121\"* have|strong=\"H3068\"* slain|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3068\"* the|strong=\"H3947\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* will|strong=\"H1961\"* never|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3947\"* house|strong=\"H1004\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* despised me|strong=\"H3947\"* and|strong=\"H1004\"* have|strong=\"H1961\"* taken|strong=\"H3947\"* Uriah the|strong=\"H3588\"* Hittite|strong=\"H2850\"*’s wife to|strong=\"H5704\"* be|strong=\"H1961\"* your|strong=\"H3947\"* wife.’" + }, + { + "verseNum": 11, + "text": "“This|strong=\"H2063\"* is|strong=\"H3068\"* what|strong=\"H7451\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1004\"* your|strong=\"H3068\"* own|strong=\"H5973\"* house|strong=\"H1004\"*; and|strong=\"H6965\"* I|strong=\"H2005\"* will|strong=\"H3068\"* take|strong=\"H3947\"* your|strong=\"H3068\"* wives before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* and|strong=\"H6965\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H6965\"* he|strong=\"H3068\"* will|strong=\"H3068\"* lie|strong=\"H7901\"* with|strong=\"H5973\"* your|strong=\"H3068\"* wives in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* this|strong=\"H2063\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* did|strong=\"H6213\"* this|strong=\"H2088\"* secretly|strong=\"H5643\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3478\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* before|strong=\"H5048\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* before|strong=\"H5048\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*.’”" + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H4191\"* Nathan|strong=\"H5416\"*, “I|strong=\"H3808\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 14, + "text": "However|strong=\"H1571\"*, because|strong=\"H3588\"* by|strong=\"H3068\"* this|strong=\"H2088\"* deed|strong=\"H1697\"* you|strong=\"H3588\"* have|strong=\"H3068\"* given|strong=\"H5006\"* great|strong=\"H5006\"* occasion|strong=\"H5006\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"*’s enemies to|strong=\"H4191\"* blaspheme|strong=\"H5006\"*, the|strong=\"H3588\"* child|strong=\"H1121\"* also|strong=\"H1571\"* who|strong=\"H3068\"* is|strong=\"H3068\"* born|strong=\"H3209\"* to|strong=\"H4191\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1732\"* Nathan|strong=\"H5416\"* departed|strong=\"H3212\"* to|strong=\"H3068\"* his|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* therefore|strong=\"H1732\"* begged God for|strong=\"H1157\"* the|strong=\"H1245\"* child|strong=\"H5288\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* fasted|strong=\"H6684\"*, and|strong=\"H1732\"* went|strong=\"H1732\"* in|strong=\"H7901\"* and|strong=\"H1732\"* lay|strong=\"H7901\"* all|strong=\"H7901\"* night|strong=\"H3885\"* on|strong=\"H7901\"* the|strong=\"H1245\"* ground." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"* arose|strong=\"H6965\"* beside|strong=\"H5921\"* him|strong=\"H5921\"*, to|strong=\"H5921\"* raise|strong=\"H6965\"* him|strong=\"H5921\"* up|strong=\"H6965\"* from|strong=\"H4480\"* the|strong=\"H5921\"* earth; but|strong=\"H3808\"* he|strong=\"H1004\"* would not|strong=\"H3808\"*, and|strong=\"H6965\"* he|strong=\"H1004\"* didn’t eat|strong=\"H3899\"* bread|strong=\"H3899\"* with|strong=\"H1004\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "On|strong=\"H3117\"* the|strong=\"H8085\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, the|strong=\"H8085\"* child|strong=\"H3206\"* died|strong=\"H4191\"*. David|strong=\"H1732\"*’s servants|strong=\"H5650\"* were|strong=\"H1961\"* afraid|strong=\"H3372\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H8085\"* child|strong=\"H3206\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, while|strong=\"H1961\"* the|strong=\"H8085\"* child|strong=\"H3206\"* was|strong=\"H1961\"* yet|strong=\"H3588\"* alive|strong=\"H2416\"*, we|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5046\"* and|strong=\"H3117\"* he|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* our|strong=\"H8085\"* voice|strong=\"H6963\"*. How|strong=\"H3588\"* will|strong=\"H1961\"* he|strong=\"H3588\"* then|strong=\"H1961\"* harm|strong=\"H7451\"* himself|strong=\"H6213\"* if|strong=\"H3588\"* we|strong=\"H3068\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* that|strong=\"H3588\"* the|strong=\"H8085\"* child|strong=\"H3206\"* is|strong=\"H3117\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* were|strong=\"H5650\"* whispering|strong=\"H3907\"* together, David|strong=\"H1732\"* perceived|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* child|strong=\"H3206\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* said to|strong=\"H4191\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*, “Is|strong=\"H5650\"* the|strong=\"H7200\"* child|strong=\"H3206\"* dead|strong=\"H4191\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"* from|strong=\"H6965\"* the|strong=\"H3068\"* earth, and|strong=\"H6965\"* washed|strong=\"H7364\"* and|strong=\"H6965\"* anointed|strong=\"H5480\"* himself|strong=\"H7812\"*, and|strong=\"H6965\"* changed|strong=\"H2498\"* his|strong=\"H7760\"* clothing|strong=\"H8071\"*; and|strong=\"H6965\"* he|strong=\"H3068\"* came|strong=\"H3068\"* into|strong=\"H7760\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* worshiped|strong=\"H7812\"*. Then|strong=\"H6965\"* he|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H7760\"* own house|strong=\"H1004\"*; and|strong=\"H6965\"* when|strong=\"H3068\"* he|strong=\"H3068\"* requested|strong=\"H7592\"*, they|strong=\"H3068\"* set|strong=\"H7760\"* bread|strong=\"H3899\"* before|strong=\"H6965\"* him|strong=\"H7760\"* and|strong=\"H6965\"* he|strong=\"H3068\"* ate." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H6965\"* his|strong=\"H6965\"* servants|strong=\"H5650\"* said|strong=\"H1697\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H5650\"* done|strong=\"H6213\"*? You|strong=\"H6213\"* fasted|strong=\"H6684\"* and|strong=\"H6965\"* wept|strong=\"H1058\"* for|strong=\"H6213\"* the|strong=\"H6213\"* child|strong=\"H3206\"* while|strong=\"H2088\"* he|strong=\"H6213\"* was|strong=\"H1697\"* alive|strong=\"H2416\"*, but|strong=\"H4191\"* when|strong=\"H6213\"* the|strong=\"H6213\"* child|strong=\"H3206\"* was|strong=\"H1697\"* dead|strong=\"H4191\"*, you|strong=\"H6213\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* ate bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3588\"* said, “While|strong=\"H5750\"* the|strong=\"H3588\"* child|strong=\"H3206\"* was|strong=\"H3068\"* yet|strong=\"H5750\"* alive|strong=\"H2416\"*, I|strong=\"H3588\"* fasted|strong=\"H6684\"* and|strong=\"H3068\"* wept|strong=\"H1058\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* said, ‘Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3045\"* be|strong=\"H5750\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* me|strong=\"H2603\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* child|strong=\"H3206\"* may|strong=\"H3068\"* live|strong=\"H2416\"*?’" + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* he|strong=\"H1931\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H6258\"* fast|strong=\"H6684\"*? Can|strong=\"H3201\"* I|strong=\"H6258\"* bring|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*? I|strong=\"H6258\"* will|strong=\"H3808\"* go|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H7725\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 24, + "text": "David|strong=\"H1732\"* comforted|strong=\"H5162\"* Bathsheba|strong=\"H1339\"* his|strong=\"H3068\"* wife, and|strong=\"H1121\"* went|strong=\"H1732\"* in|strong=\"H3068\"* to|strong=\"H3068\"* her|strong=\"H7121\"*, and|strong=\"H1121\"* lay|strong=\"H7901\"* with|strong=\"H5973\"* her|strong=\"H7121\"*. She|strong=\"H7121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* called|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Solomon|strong=\"H8010\"*. Yahweh|strong=\"H3068\"* loved him|strong=\"H3205\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* named|strong=\"H7121\"* him|strong=\"H7121\"* Jedidiah|strong=\"H3041\"*,+ 12:25 “Jedidiah” means “loved by Yahweh”.* for|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 26, + "text": "Now Joab|strong=\"H3097\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H3920\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* took|strong=\"H3920\"* the|strong=\"H3920\"* royal|strong=\"H4410\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 27, + "text": "Joab|strong=\"H3097\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* said, “I|strong=\"H1571\"* have|strong=\"H1571\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Rabbah|strong=\"H7237\"*. Yes|strong=\"H1571\"*, I|strong=\"H1571\"* have|strong=\"H1571\"* taken|strong=\"H3920\"* the|strong=\"H7971\"* city|strong=\"H5892\"* of|strong=\"H5892\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* gather the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* together|strong=\"H5921\"*, and|strong=\"H5971\"* encamp|strong=\"H2583\"* against|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H5971\"* take|strong=\"H3920\"* it|strong=\"H7121\"*; lest|strong=\"H6435\"* I|strong=\"H5921\"* take|strong=\"H3920\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* it|strong=\"H7121\"* be|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5921\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 29, + "text": "David|strong=\"H1732\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H3920\"* and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Rabbah|strong=\"H7237\"*, and|strong=\"H3212\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* it|strong=\"H3920\"* and|strong=\"H3212\"* took|strong=\"H3920\"* it|strong=\"H3920\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* their|strong=\"H3947\"* king|strong=\"H4428\"* from|strong=\"H3318\"* off|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*; and|strong=\"H4428\"* its|strong=\"H5921\"* weight|strong=\"H4948\"* was|strong=\"H1961\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 12:30 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* it|strong=\"H5921\"* were|strong=\"H1961\"* precious|strong=\"H3368\"* stones; and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1961\"* set|strong=\"H3318\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s head|strong=\"H7218\"*. He|strong=\"H1732\"* brought|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H3966\"* quantity of|strong=\"H4428\"* plunder|strong=\"H7998\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3651\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H6213\"* it|strong=\"H7760\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* them|strong=\"H7725\"* to|strong=\"H7725\"* work|strong=\"H6213\"* under|strong=\"H6213\"* saws|strong=\"H4050\"*, under|strong=\"H6213\"* iron|strong=\"H1270\"* picks|strong=\"H2757\"*, under|strong=\"H6213\"* axes|strong=\"H4037\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* them|strong=\"H7725\"* go|strong=\"H3318\"* to|strong=\"H7725\"* the|strong=\"H3605\"* brick|strong=\"H4404\"* kiln; and|strong=\"H1121\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Then|strong=\"H3318\"* David|strong=\"H1732\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Absalom the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* had|strong=\"H1961\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* sister, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*; and|strong=\"H1121\"* Amnon the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* loved her|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "Amnon was|strong=\"H1931\"* so|strong=\"H6213\"* troubled that|strong=\"H3588\"* he|strong=\"H1931\"* became|strong=\"H2470\"* sick|strong=\"H2470\"* because|strong=\"H3588\"* of|strong=\"H5869\"* his|strong=\"H6213\"* sister Tamar|strong=\"H8559\"*, for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*, and|strong=\"H5869\"* it|strong=\"H1931\"* seemed|strong=\"H5869\"* hard|strong=\"H6381\"* to|strong=\"H6213\"* Amnon to|strong=\"H6213\"* do|strong=\"H6213\"* anything|strong=\"H3972\"* to|strong=\"H6213\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 3, + "text": "But Amnon had|strong=\"H1732\"* a|strong=\"H3068\"* friend|strong=\"H7453\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jonadab|strong=\"H3122\"* the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeah|strong=\"H8093\"*, David|strong=\"H1732\"*’s brother|strong=\"H7453\"*; and|strong=\"H1121\"* Jonadab|strong=\"H3122\"* was|strong=\"H8034\"* a|strong=\"H3068\"* very|strong=\"H3966\"* subtle man|strong=\"H2450\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* said to|strong=\"H1121\"* him|strong=\"H5046\"*, “Why|strong=\"H4069\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5046\"* king|strong=\"H4428\"*, are|strong=\"H1121\"* you|strong=\"H5046\"* so|strong=\"H3602\"* sad from|strong=\"H1121\"* day|strong=\"H1242\"* to|strong=\"H1121\"* day|strong=\"H1242\"*? Won’t you|strong=\"H5046\"* tell|strong=\"H5046\"* me|strong=\"H5046\"*?”" + }, + { + "verseNum": 5, + "text": "Jonadab|strong=\"H3082\"* said to|strong=\"H6213\"* him|strong=\"H5921\"*, “Lay|strong=\"H7901\"* down|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5921\"* bed|strong=\"H4904\"* and|strong=\"H3027\"* pretend|strong=\"H2470\"* to|strong=\"H6213\"* be|strong=\"H3027\"* sick|strong=\"H2470\"*. When|strong=\"H7200\"* your|strong=\"H5921\"* father comes to|strong=\"H6213\"* see|strong=\"H7200\"* you|strong=\"H5921\"*, tell|strong=\"H4994\"* him|strong=\"H5921\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H7200\"* sister Tamar|strong=\"H8559\"* come|strong=\"H4994\"* and|strong=\"H3027\"* give|strong=\"H4994\"* me|strong=\"H4994\"* bread|strong=\"H3899\"* to|strong=\"H6213\"* eat|strong=\"H1262\"*, and|strong=\"H3027\"* prepare|strong=\"H6213\"* the|strong=\"H5921\"* food|strong=\"H3899\"* in|strong=\"H5921\"* my|strong=\"H7200\"* sight|strong=\"H5869\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* may|strong=\"H4994\"* see|strong=\"H7200\"* it|strong=\"H5921\"* and|strong=\"H3027\"* eat|strong=\"H1262\"* it|strong=\"H5921\"* from|strong=\"H5921\"* her|strong=\"H5921\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7200\"* Amnon lay|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H4428\"* faked being sick|strong=\"H2470\"*. When|strong=\"H7200\"* the|strong=\"H7200\"* king|strong=\"H4428\"* came|strong=\"H4428\"* to|strong=\"H3027\"* see|strong=\"H7200\"* him|strong=\"H3027\"*, Amnon said to|strong=\"H3027\"* the|strong=\"H7200\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H7200\"* sister Tamar|strong=\"H8559\"* come|strong=\"H4994\"* and|strong=\"H4428\"* make|strong=\"H7200\"* me|strong=\"H4994\"* a|strong=\"H3068\"* couple|strong=\"H8147\"* of|strong=\"H4428\"* cakes|strong=\"H3834\"* in|strong=\"H4428\"* my|strong=\"H7200\"* sight|strong=\"H5869\"*, that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H4994\"* eat|strong=\"H1262\"* from|strong=\"H3027\"* her|strong=\"H7200\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7971\"* David|strong=\"H1732\"* sent|strong=\"H7971\"* home|strong=\"H1004\"* to|strong=\"H3212\"* Tamar|strong=\"H8559\"*, saying, “Go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3212\"* your|strong=\"H6213\"* brother Amnon’s house|strong=\"H1004\"*, and|strong=\"H7971\"* prepare|strong=\"H6213\"* food|strong=\"H1279\"* for|strong=\"H6213\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"* Tamar|strong=\"H8559\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3947\"* brother Amnon’s house|strong=\"H1004\"*; and|strong=\"H1004\"* he|strong=\"H1931\"* was|strong=\"H1931\"* lying|strong=\"H7901\"* down|strong=\"H7901\"*. She|strong=\"H1931\"* took|strong=\"H3947\"* dough|strong=\"H1217\"*, kneaded|strong=\"H3888\"* it|strong=\"H1931\"*, made|strong=\"H3947\"* cakes|strong=\"H3834\"* in|strong=\"H1004\"* his|strong=\"H3947\"* sight|strong=\"H5869\"*, and|strong=\"H1004\"* baked|strong=\"H1310\"* the|strong=\"H3947\"* cakes|strong=\"H3834\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H3605\"* pan|strong=\"H4958\"* and|strong=\"H6440\"* poured|strong=\"H3332\"* them|strong=\"H5921\"* out|strong=\"H3318\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3947\"* he|strong=\"H3605\"* refused|strong=\"H3985\"* to|strong=\"H3318\"* eat. Amnon said|strong=\"H3318\"*, “Have|strong=\"H3605\"* all|strong=\"H3605\"* men|strong=\"H3605\"* leave|strong=\"H3318\"* me|strong=\"H6440\"*.” Then|strong=\"H3318\"* every|strong=\"H3605\"* man|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Amnon said to|strong=\"H6213\"* Tamar|strong=\"H8559\"*, “Bring|strong=\"H3947\"* the|strong=\"H3947\"* food|strong=\"H1279\"* into|strong=\"H6213\"* the|strong=\"H3947\"* room|strong=\"H2315\"*, that|strong=\"H3027\"* I|strong=\"H3027\"* may|strong=\"H6213\"* eat|strong=\"H1262\"* from|strong=\"H3027\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*.” Tamar|strong=\"H8559\"* took|strong=\"H3947\"* the|strong=\"H3947\"* cakes|strong=\"H3834\"* which she had|strong=\"H3027\"* made|strong=\"H6213\"*, and|strong=\"H3027\"* brought|strong=\"H3947\"* them|strong=\"H3027\"* into|strong=\"H6213\"* the|strong=\"H3947\"* room|strong=\"H2315\"* to|strong=\"H6213\"* Amnon her|strong=\"H3947\"* brother." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7901\"* she|strong=\"H5973\"* had brought|strong=\"H5066\"* them|strong=\"H2388\"* near|strong=\"H5066\"* to|strong=\"H5066\"* him|strong=\"H5973\"* to|strong=\"H5066\"* eat, he took|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H2388\"* her|strong=\"H7901\"* and|strong=\"H2388\"* said to|strong=\"H5066\"* her|strong=\"H7901\"*, “Come|strong=\"H5066\"*, lie|strong=\"H7901\"* with|strong=\"H5973\"* me|strong=\"H5973\"*, my|strong=\"H2388\"* sister!”" + }, + { + "verseNum": 12, + "text": "She|strong=\"H3588\"* answered him|strong=\"H6213\"*, “No|strong=\"H3808\"*, my|strong=\"H6213\"* brother, do|strong=\"H6213\"* not|strong=\"H3808\"* force|strong=\"H6031\"* me|strong=\"H6213\"*! For|strong=\"H3588\"* no|strong=\"H3808\"* such|strong=\"H3651\"* thing|strong=\"H5039\"* ought|strong=\"H3651\"* to|strong=\"H3478\"* be|strong=\"H3808\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Don’t you|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2063\"* folly|strong=\"H5039\"*!" + }, + { + "verseNum": 13, + "text": "As|strong=\"H1961\"* for|strong=\"H3588\"* me|strong=\"H4994\"*, where|strong=\"H4480\"* would|strong=\"H3478\"* I|strong=\"H3588\"* carry|strong=\"H3212\"* my|strong=\"H1961\"* shame|strong=\"H2781\"*? And|strong=\"H3478\"* as|strong=\"H1961\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3588\"* fools|strong=\"H5036\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* withhold|strong=\"H4513\"* me|strong=\"H4994\"* from|strong=\"H4480\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 14, + "text": "However|strong=\"H8085\"*, he|strong=\"H4480\"* would not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* her|strong=\"H6031\"* voice|strong=\"H6963\"*; but|strong=\"H3808\"* being stronger|strong=\"H2388\"* than|strong=\"H4480\"* she|strong=\"H7901\"*, he|strong=\"H4480\"* forced|strong=\"H6031\"* her|strong=\"H6031\"* and|strong=\"H6963\"* lay|strong=\"H7901\"* with|strong=\"H7901\"* her|strong=\"H6031\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6965\"* Amnon hated|strong=\"H8130\"* her|strong=\"H8130\"* with|strong=\"H3212\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* hatred|strong=\"H8135\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* hatred|strong=\"H8135\"* with|strong=\"H3212\"* which|strong=\"H3588\"* he|strong=\"H3588\"* hated|strong=\"H8130\"* her|strong=\"H8130\"* was|strong=\"H3966\"* greater|strong=\"H1419\"* than|strong=\"H1419\"* the|strong=\"H3588\"* love with|strong=\"H3212\"* which|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* loved her|strong=\"H8130\"*. Amnon said to|strong=\"H3212\"* her|strong=\"H8130\"*, “Arise|strong=\"H6965\"*, be|strong=\"H8130\"* gone|strong=\"H3212\"*!”" + }, + { + "verseNum": 16, + "text": "She|strong=\"H2063\"* said|strong=\"H8085\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, “Not|strong=\"H3808\"* so|strong=\"H6213\"*, because|strong=\"H5973\"* this|strong=\"H2063\"* great|strong=\"H1419\"* wrong|strong=\"H7451\"* in|strong=\"H6213\"* sending|strong=\"H7971\"* me|strong=\"H7971\"* away|strong=\"H7971\"* is|strong=\"H7451\"* worse|strong=\"H7451\"* than|strong=\"H3808\"* the|strong=\"H8085\"* other|strong=\"H2063\"* that|strong=\"H8085\"* you|strong=\"H7971\"* did|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*!”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H7971\"* he|strong=\"H5921\"* called|strong=\"H7121\"* his|strong=\"H7121\"* servant|strong=\"H5288\"* who|strong=\"H5288\"* ministered|strong=\"H8334\"* to|strong=\"H7971\"* him|strong=\"H7121\"*, and|strong=\"H7971\"* said|strong=\"H7121\"*, “Now|strong=\"H4994\"* put|strong=\"H7971\"* this|strong=\"H2063\"* woman out|strong=\"H7971\"* from|strong=\"H5921\"* me|strong=\"H4994\"*, and|strong=\"H7971\"* bolt|strong=\"H5274\"* the|strong=\"H5921\"* door|strong=\"H1817\"* after|strong=\"H5921\"* her|strong=\"H7971\"*.”" + }, + { + "verseNum": 18, + "text": "She|strong=\"H3588\"* had|strong=\"H4428\"* a|strong=\"H3068\"* garment|strong=\"H3801\"* of|strong=\"H4428\"* various colors on|strong=\"H5921\"* her|strong=\"H5921\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"* who|strong=\"H4428\"* were|strong=\"H1323\"* virgins|strong=\"H1330\"* dressed|strong=\"H3847\"* in|strong=\"H5921\"* such|strong=\"H3651\"* robes|strong=\"H4598\"*. Then|strong=\"H3318\"* his|strong=\"H5921\"* servant|strong=\"H8334\"* brought|strong=\"H3318\"* her|strong=\"H5921\"* out|strong=\"H3318\"* and|strong=\"H4428\"* bolted|strong=\"H5274\"* the|strong=\"H5921\"* door|strong=\"H1817\"* after|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Tamar|strong=\"H8559\"* put|strong=\"H7760\"* ashes on|strong=\"H5921\"* her|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* tore|strong=\"H7167\"* her|strong=\"H3947\"* garment|strong=\"H3801\"* of|strong=\"H3027\"* various colors that|strong=\"H3027\"* was|strong=\"H3027\"* on|strong=\"H5921\"* her|strong=\"H3947\"*; and|strong=\"H1980\"* she|strong=\"H5921\"* laid|strong=\"H7760\"* her|strong=\"H3947\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* her|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H1980\"* went|strong=\"H1980\"* her|strong=\"H3947\"* way|strong=\"H3212\"*, crying|strong=\"H2199\"* aloud|strong=\"H2199\"* as|strong=\"H1980\"* she|strong=\"H5921\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 20, + "text": "Absalom her|strong=\"H7896\"* brother said|strong=\"H1697\"* to|strong=\"H1961\"* her|strong=\"H7896\"*, “Has|strong=\"H1961\"* Amnon your|strong=\"H1961\"* brother been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5973\"*? But|strong=\"H1961\"* now|strong=\"H6258\"* hold|strong=\"H1004\"* your|strong=\"H1961\"* peace|strong=\"H2790\"*, my|strong=\"H1961\"* sister. He|strong=\"H1931\"* is|strong=\"H2088\"* your|strong=\"H1961\"* brother. Don’t take|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H1961\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* King|strong=\"H4428\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H1697\"*, he|strong=\"H3605\"* was|strong=\"H1732\"* very|strong=\"H3966\"* angry|strong=\"H2734\"*." + }, + { + "verseNum": 22, + "text": "Absalom spoke|strong=\"H1696\"* to|strong=\"H1696\"* Amnon neither|strong=\"H3808\"* good|strong=\"H2896\"* nor|strong=\"H3808\"* bad|strong=\"H7451\"*; for|strong=\"H3588\"* Absalom hated|strong=\"H8130\"* Amnon, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* forced|strong=\"H6031\"* his|strong=\"H5921\"* sister Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H1961\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*, Absalom had|strong=\"H1961\"* sheep shearers|strong=\"H1494\"* in|strong=\"H8141\"* Baal Hazor, which|strong=\"H3117\"* is|strong=\"H3117\"* beside|strong=\"H5973\"* Ephraim; and|strong=\"H1121\"* Absalom invited|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 24, + "text": "Absalom came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* said, “See|strong=\"H2009\"* now|strong=\"H4994\"*, your|strong=\"H4994\"* servant|strong=\"H5650\"* has|strong=\"H4428\"* sheep shearers|strong=\"H1494\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H1494\"* servants|strong=\"H5650\"* go|strong=\"H3212\"* with|strong=\"H5973\"* your|strong=\"H4994\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* Absalom, “No|strong=\"H3808\"*, my|strong=\"H3605\"* son|strong=\"H1121\"*, let|strong=\"H4994\"*’s not|strong=\"H3808\"* all|strong=\"H3605\"* go|strong=\"H3212\"*, lest we|strong=\"H3068\"* be|strong=\"H3808\"* burdensome|strong=\"H3513\"* to|strong=\"H3212\"* you|strong=\"H3605\"*.” He|strong=\"H3605\"* pressed|strong=\"H6555\"* him|strong=\"H5921\"*; however he|strong=\"H3605\"* would|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H3212\"*, but|strong=\"H3808\"* blessed|strong=\"H1288\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "Then|strong=\"H4428\"* Absalom said, “If not|strong=\"H3808\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H3808\"* brother Amnon go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3605\"* Absalom pressed|strong=\"H6555\"* him|strong=\"H7971\"*, and|strong=\"H1121\"* he|strong=\"H3605\"* let|strong=\"H7971\"* Amnon and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* go|strong=\"H7971\"* with|strong=\"H4428\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 28, + "text": "Absalom commanded|strong=\"H6680\"* his|strong=\"H7200\"* servants|strong=\"H5288\"*, saying, “Mark|strong=\"H7200\"* now|strong=\"H4994\"*, when|strong=\"H3588\"* Amnon’s heart|strong=\"H3820\"* is|strong=\"H3820\"* merry|strong=\"H2896\"* with|strong=\"H4191\"* wine|strong=\"H3196\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* I|strong=\"H3588\"* tell|strong=\"H4994\"* you|strong=\"H3588\"*, ‘Strike|strong=\"H5221\"* Amnon,’ then|strong=\"H1961\"* kill|strong=\"H4191\"* him|strong=\"H5221\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Haven’t I|strong=\"H3588\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*? Be|strong=\"H1961\"* courageous|strong=\"H2388\"*, and|strong=\"H1121\"* be|strong=\"H1961\"* valiant|strong=\"H2428\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* servants|strong=\"H5288\"* of|strong=\"H1121\"* Absalom did|strong=\"H6213\"* to|strong=\"H6213\"* Amnon as|strong=\"H6213\"* Absalom had|strong=\"H4428\"* commanded|strong=\"H6680\"*. Then|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* arose|strong=\"H6965\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* man|strong=\"H5288\"* got|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H3605\"* mule|strong=\"H6505\"* and|strong=\"H1121\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 30, + "text": "While|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* on|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, the|strong=\"H3605\"* news|strong=\"H8052\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, saying, “Absalom has|strong=\"H1961\"* slain|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* there|strong=\"H1961\"* is|strong=\"H1870\"* not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* left|strong=\"H3498\"*!”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* king|strong=\"H4428\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* tore|strong=\"H7167\"* his|strong=\"H3605\"* garments, and|strong=\"H6965\"* lay|strong=\"H7901\"* on|strong=\"H6965\"* the|strong=\"H3605\"* earth; and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* stood|strong=\"H5324\"* by|strong=\"H6965\"* with|strong=\"H7901\"* their|strong=\"H3605\"* clothes torn|strong=\"H7167\"*." + }, + { + "verseNum": 32, + "text": "Jonadab|strong=\"H3122\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeah|strong=\"H8093\"*, David|strong=\"H1732\"*’s brother, answered|strong=\"H6030\"*, “Don’t let|strong=\"H7760\"* my|strong=\"H3605\"* lord suppose|strong=\"H3588\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* killed|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, for|strong=\"H3588\"* Amnon only|strong=\"H3588\"* is|strong=\"H3117\"* dead|strong=\"H4191\"*; for|strong=\"H3588\"* by|strong=\"H5921\"* the|strong=\"H3605\"* appointment|strong=\"H6310\"* of|strong=\"H1121\"* Absalom this|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* determined|strong=\"H7760\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* he|strong=\"H3588\"* forced|strong=\"H6031\"* his|strong=\"H3605\"* sister Tamar|strong=\"H8559\"*." + }, + { + "verseNum": 33, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t let|strong=\"H6258\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* take|strong=\"H7760\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* to|strong=\"H4191\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, to|strong=\"H4191\"* think|strong=\"H3820\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* are|strong=\"H1121\"* dead|strong=\"H4191\"*; for|strong=\"H3588\"* only|strong=\"H3588\"* Amnon is|strong=\"H3820\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 34, + "text": "But|strong=\"H7200\"* Absalom fled|strong=\"H1272\"*. The|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"* who|strong=\"H5971\"* kept the|strong=\"H7200\"* watch|strong=\"H6822\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H1980\"* looked|strong=\"H7200\"*, and|strong=\"H1980\"* behold|strong=\"H2009\"*, many|strong=\"H7227\"* people|strong=\"H5971\"* were|strong=\"H5971\"* coming|strong=\"H1980\"* by|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H2022\"* the|strong=\"H7200\"* hillside behind|strong=\"H1980\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 35, + "text": "Jonadab|strong=\"H3122\"* said|strong=\"H1697\"* to|strong=\"H1961\"* the|strong=\"H1697\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, the|strong=\"H1697\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* are|strong=\"H1121\"* coming|strong=\"H2009\"*! It|strong=\"H3651\"* is|strong=\"H1697\"* as|strong=\"H1697\"* your|strong=\"H1961\"* servant|strong=\"H5650\"* said|strong=\"H1697\"*.”" + }, + { + "verseNum": 36, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3605\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"*, and|strong=\"H1121\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3605\"* voices|strong=\"H6963\"* and|strong=\"H1121\"* wept|strong=\"H1058\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* also|strong=\"H1571\"* and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 37, + "text": "But|strong=\"H3605\"* Absalom fled|strong=\"H1272\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Talmai|strong=\"H8526\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihur, king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*. David|strong=\"H3117\"* mourned for|strong=\"H5921\"* his|strong=\"H3605\"* son|strong=\"H1121\"* every|strong=\"H3605\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 38, + "text": "So|strong=\"H1961\"* Absalom fled|strong=\"H1272\"* and|strong=\"H3212\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Geshur|strong=\"H1650\"*, and|strong=\"H3212\"* was|strong=\"H1961\"* there|strong=\"H8033\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 39, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* longed|strong=\"H3615\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Absalom, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* comforted|strong=\"H5162\"* concerning|strong=\"H5921\"* Amnon, since|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"* was|strong=\"H3820\"* toward|strong=\"H5921\"* Absalom." + }, + { + "verseNum": 2, + "text": "Joab|strong=\"H3097\"* sent|strong=\"H7971\"* to|strong=\"H4191\"* Tekoa|strong=\"H8620\"* and|strong=\"H7971\"* brought|strong=\"H3947\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* woman|strong=\"H2088\"* from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* said to|strong=\"H4191\"* her|strong=\"H7971\"*, “Please|strong=\"H4994\"* act|strong=\"H4994\"* like|strong=\"H1961\"* a|strong=\"H3068\"* mourner, and|strong=\"H7971\"* put|strong=\"H4191\"* on|strong=\"H5921\"* mourning clothing|strong=\"H3847\"*, please|strong=\"H4994\"*, and|strong=\"H7971\"* don’t anoint|strong=\"H5480\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* oil|strong=\"H8081\"*; but|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H3117\"* a|strong=\"H3068\"* woman|strong=\"H2088\"* who|strong=\"H7227\"* has|strong=\"H1961\"* mourned a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "Go|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H1696\"* the|strong=\"H7760\"* king|strong=\"H4428\"* and|strong=\"H4428\"* speak|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H2088\"* to|strong=\"H1696\"* him|strong=\"H7760\"*.” So|strong=\"H2088\"* Joab|strong=\"H3097\"* put|strong=\"H7760\"* the|strong=\"H7760\"* words|strong=\"H1697\"* in|strong=\"H4428\"* her|strong=\"H7760\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H5307\"* the|strong=\"H5921\"* woman of|strong=\"H4428\"* Tekoa|strong=\"H8621\"* spoke to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, she|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* her|strong=\"H5921\"* face to|strong=\"H5921\"* the|strong=\"H5921\"* ground, showed respect|strong=\"H5921\"*, and|strong=\"H4428\"* said, “Help|strong=\"H3467\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H4191\"* king|strong=\"H4428\"* said to|strong=\"H4191\"* her|strong=\"H4191\"*, “What|strong=\"H4100\"* ails you|strong=\"H4100\"*?”" + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5221\"* servant|strong=\"H8198\"* had|strong=\"H1121\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* they|strong=\"H5221\"* both|strong=\"H8147\"* fought together|strong=\"H5327\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"*, and|strong=\"H1121\"* there was|strong=\"H1121\"* no one|strong=\"H1121\"* to|strong=\"H4191\"* part|strong=\"H5337\"* them|strong=\"H5221\"*, but|strong=\"H5221\"* the|strong=\"H5221\"* one|strong=\"H1121\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* other|strong=\"H8147\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* whole|strong=\"H3605\"* family|strong=\"H4940\"* has|strong=\"H1571\"* risen|strong=\"H6965\"* against|strong=\"H5921\"* your|strong=\"H3605\"* servant|strong=\"H8198\"*, and|strong=\"H6965\"* they|strong=\"H5921\"* say, ‘Deliver|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H3605\"* struck|strong=\"H5221\"* his|strong=\"H3605\"* brother, that|strong=\"H3605\"* we|strong=\"H3068\"* may|strong=\"H5315\"* kill|strong=\"H2026\"* him|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H6440\"* his|strong=\"H3605\"* brother whom|strong=\"H6440\"* he|strong=\"H3605\"* killed|strong=\"H2026\"*, and|strong=\"H6965\"* so|strong=\"H5414\"* destroy|strong=\"H8045\"* the|strong=\"H3605\"* heir|strong=\"H3423\"* also|strong=\"H1571\"*.’ Thus|strong=\"H4191\"* they|strong=\"H5921\"* would|strong=\"H5315\"* quench|strong=\"H3518\"* my|strong=\"H5414\"* coal|strong=\"H1513\"* which|strong=\"H5315\"* is|strong=\"H5315\"* left|strong=\"H7604\"*, and|strong=\"H6965\"* would|strong=\"H5315\"* leave|strong=\"H7604\"* to|strong=\"H4191\"* my|strong=\"H5414\"* husband neither|strong=\"H1571\"* name|strong=\"H8034\"* nor|strong=\"H1571\"* remainder|strong=\"H7611\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* the|strong=\"H5921\"* woman|strong=\"H1004\"*, “Go|strong=\"H3212\"* to|strong=\"H3212\"* your|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* I|strong=\"H5921\"* will|strong=\"H4428\"* give|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* concerning|strong=\"H5921\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* woman|strong=\"H1004\"* of|strong=\"H4428\"* Tekoa|strong=\"H8621\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “My|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, may|strong=\"H4428\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* be|strong=\"H4428\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* on|strong=\"H5921\"* my|strong=\"H5921\"* father’s house|strong=\"H1004\"*; and|strong=\"H4428\"* may|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H5921\"* throne|strong=\"H3678\"* be|strong=\"H4428\"* guiltless|strong=\"H5355\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5060\"* king|strong=\"H4428\"* said|strong=\"H1696\"*, “Whoever says|strong=\"H1696\"* anything|strong=\"H3808\"* to|strong=\"H1696\"* you|strong=\"H3808\"*, bring|strong=\"H5060\"* him|strong=\"H4428\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, and|strong=\"H4428\"* he|strong=\"H3808\"* will|strong=\"H4428\"* not|strong=\"H3808\"* bother|strong=\"H5060\"* you|strong=\"H3808\"* any|strong=\"H5750\"* more|strong=\"H3254\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5307\"* she|strong=\"H3808\"* said, “Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H3068\"* king|strong=\"H4428\"* remember|strong=\"H2142\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* avenger|strong=\"H1350\"* of|strong=\"H1121\"* blood|strong=\"H1818\"* destroy|strong=\"H7843\"* not|strong=\"H3808\"* any|strong=\"H3808\"* more|strong=\"H7235\"*, lest they|strong=\"H3068\"* destroy|strong=\"H7843\"* my|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1696\"* the|strong=\"H1697\"* woman said|strong=\"H1696\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* servant|strong=\"H8198\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* my|strong=\"H1696\"* lord the|strong=\"H1697\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* woman|strong=\"H2088\"* said|strong=\"H1696\"*, “Why|strong=\"H4100\"* then|strong=\"H1696\"* have|strong=\"H5971\"* you|strong=\"H5921\"* devised|strong=\"H2803\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H4428\"* God? For|strong=\"H5921\"* in|strong=\"H5921\"* speaking|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* the|strong=\"H5921\"* king|strong=\"H4428\"* is|strong=\"H2088\"* as|strong=\"H1697\"* one|strong=\"H2088\"* who|strong=\"H5971\"* is|strong=\"H2088\"* guilty, in|strong=\"H5921\"* that|strong=\"H5971\"* the|strong=\"H5921\"* king|strong=\"H4428\"* does|strong=\"H4100\"* not|strong=\"H1115\"* bring|strong=\"H7725\"* home|strong=\"H7725\"* again|strong=\"H7725\"* his|strong=\"H7725\"* banished|strong=\"H5080\"* one|strong=\"H2088\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H4191\"* die|strong=\"H4191\"*, and|strong=\"H4325\"* are|strong=\"H4284\"* like|strong=\"H2803\"* water|strong=\"H4325\"* spilled|strong=\"H5064\"* on|strong=\"H4191\"* the|strong=\"H3588\"* ground, which|strong=\"H4325\"* can|strong=\"H3808\"*’t be|strong=\"H4191\"* gathered|strong=\"H3588\"* up|strong=\"H5375\"* again; neither|strong=\"H3808\"* does|strong=\"H3808\"* God|strong=\"H3808\"* take|strong=\"H5375\"* away|strong=\"H5375\"* life|strong=\"H5315\"*, but|strong=\"H3588\"* devises|strong=\"H2803\"* means|strong=\"H4191\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H5315\"* is|strong=\"H5315\"* banished|strong=\"H5080\"* not|strong=\"H3808\"* be|strong=\"H4191\"* an|strong=\"H5375\"* outcast|strong=\"H5080\"* from|strong=\"H4480\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, seeing|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H4994\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* my|strong=\"H6213\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*, it|strong=\"H3588\"* is|strong=\"H2088\"* because|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* have|strong=\"H5971\"* made|strong=\"H6213\"* me|strong=\"H4994\"* afraid|strong=\"H3372\"*. Your|strong=\"H6213\"* servant|strong=\"H8198\"* said|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H4428\"* now|strong=\"H6258\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; it|strong=\"H3588\"* may|strong=\"H4994\"* be|strong=\"H1697\"* that|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* will|strong=\"H4428\"* perform|strong=\"H6213\"* the|strong=\"H3588\"* request|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H6213\"* servant|strong=\"H8198\"*.’" + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* will|strong=\"H4428\"* hear|strong=\"H8085\"*, to|strong=\"H8085\"* deliver|strong=\"H5337\"* his|strong=\"H8085\"* servant out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H8085\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H8085\"* man|strong=\"H1121\"* who|strong=\"H1121\"* would|strong=\"H3162\"* destroy|strong=\"H8045\"* me|strong=\"H5337\"* and|strong=\"H1121\"* my|strong=\"H8085\"* son|strong=\"H1121\"* together|strong=\"H3162\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H8085\"* inheritance|strong=\"H5159\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* your|strong=\"H3068\"* servant|strong=\"H8198\"* said|strong=\"H1697\"*, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H4428\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H8085\"* king|strong=\"H4428\"* bring|strong=\"H7451\"* rest|strong=\"H4496\"*; for|strong=\"H3588\"* as|strong=\"H1697\"* an|strong=\"H1961\"* angel|strong=\"H4397\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, so|strong=\"H3651\"* is|strong=\"H3068\"* my|strong=\"H8085\"* lord|strong=\"H3068\"* the|strong=\"H8085\"* king|strong=\"H4428\"* to|strong=\"H3068\"* discern|strong=\"H8085\"* good|strong=\"H2896\"* and|strong=\"H3068\"* bad|strong=\"H7451\"*. May|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* the|strong=\"H4480\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H4480\"* woman, “Please|strong=\"H4994\"* don’t hide|strong=\"H3582\"* anything|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H4994\"* that|strong=\"H1697\"* I|strong=\"H1697\"* ask|strong=\"H7592\"* you|strong=\"H4480\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1696\"*, “Is|strong=\"H1931\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Joab|strong=\"H3097\"* with|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H4428\"* all|strong=\"H3605\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3605\"* servant|strong=\"H5650\"* Joab|strong=\"H3097\"* has|strong=\"H5650\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* to|strong=\"H6213\"* change|strong=\"H5437\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1697\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*. My|strong=\"H3605\"* lord is|strong=\"H2088\"* wise|strong=\"H2450\"*, according to|strong=\"H6213\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H1697\"* an|strong=\"H6213\"* angel|strong=\"H4397\"* of|strong=\"H1697\"* God|strong=\"H2451\"*, to|strong=\"H6213\"* know|strong=\"H3045\"* all|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H3045\"* are|strong=\"H1697\"* in|strong=\"H6213\"* the|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H7725\"* Joab|strong=\"H3097\"*, “Behold|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H5288\"* granted|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. Go|strong=\"H3212\"* therefore|strong=\"H6213\"*, and|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H6213\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom back|strong=\"H7725\"*.”" + }, + { + "verseNum": 22, + "text": "Joab|strong=\"H3097\"* fell|strong=\"H5307\"* to|strong=\"H6213\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* on|strong=\"H3117\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, showed|strong=\"H6213\"* respect|strong=\"H3045\"*, and|strong=\"H4428\"* blessed|strong=\"H1288\"* the|strong=\"H6440\"* king|strong=\"H4428\"*. Joab|strong=\"H3097\"* said|strong=\"H1697\"*, “Today|strong=\"H3117\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H6213\"* your|strong=\"H6440\"* sight|strong=\"H5869\"*, my|strong=\"H3045\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, in|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* has|strong=\"H4428\"* performed|strong=\"H6213\"* the|strong=\"H6440\"* request|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H6440\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H6965\"* Joab|strong=\"H3097\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Geshur|strong=\"H1650\"*, and|strong=\"H6965\"* brought|strong=\"H3212\"* Absalom to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said, “Let|strong=\"H3808\"* him|strong=\"H6440\"* return to|strong=\"H6440\"* his|strong=\"H6440\"* own|strong=\"H6440\"* house|strong=\"H1004\"*, but|strong=\"H3808\"* let|strong=\"H3808\"* him|strong=\"H6440\"* not|strong=\"H3808\"* see|strong=\"H7200\"* my|strong=\"H7200\"* face|strong=\"H6440\"*.” So|strong=\"H3808\"* Absalom returned|strong=\"H5437\"* to|strong=\"H6440\"* his|strong=\"H6440\"* own|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* didn’t see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H1961\"* in|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* to|strong=\"H5704\"* be|strong=\"H1961\"* so|strong=\"H1961\"* much|strong=\"H3966\"* praised|strong=\"H1984\"* as|strong=\"H5704\"* Absalom for|strong=\"H5704\"* his|strong=\"H3605\"* beauty|strong=\"H3303\"*. From|strong=\"H3478\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H3709\"* his|strong=\"H3605\"* foot|strong=\"H7272\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* crown|strong=\"H6936\"* of|strong=\"H3709\"* his|strong=\"H3605\"* head|strong=\"H6936\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* defect|strong=\"H3971\"* in|strong=\"H3478\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* his|strong=\"H5921\"* head|strong=\"H7218\"* (now|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* at|strong=\"H5921\"* every|strong=\"H3117\"* year|strong=\"H3117\"*’s end|strong=\"H7093\"* that|strong=\"H3588\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* it|strong=\"H5921\"*; because|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H1961\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, therefore|strong=\"H5921\"* he|strong=\"H3588\"* cut|strong=\"H1548\"* it|strong=\"H5921\"*), he|strong=\"H3588\"* weighed|strong=\"H8254\"* the|strong=\"H5921\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* his|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*,+ 14:26 A shekel is about 10 grams or about 0.35 ounces, so 200 shekels is about 2 kilograms or about 4.4 pounds.* after|strong=\"H7093\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s weight." + }, + { + "verseNum": 27, + "text": "Three|strong=\"H7969\"* sons|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* Absalom, and|strong=\"H1121\"* one|strong=\"H1931\"* daughter|strong=\"H1323\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Tamar|strong=\"H8559\"*. She|strong=\"H1931\"* was|strong=\"H8034\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* with|strong=\"H1961\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* face|strong=\"H4758\"*." + }, + { + "verseNum": 28, + "text": "Absalom lived|strong=\"H3427\"* two|strong=\"H3427\"* full|strong=\"H3117\"* years|strong=\"H8141\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* he|strong=\"H3117\"* didn’t see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H7971\"* Absalom sent|strong=\"H7971\"* for|strong=\"H7971\"* Joab|strong=\"H3097\"*, to|strong=\"H7971\"* send|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H5750\"* to|strong=\"H7971\"* him|strong=\"H7971\"*. Then|strong=\"H7971\"* he|strong=\"H3808\"* sent|strong=\"H7971\"* again|strong=\"H5750\"* a|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* come|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H5650\"* he|strong=\"H8033\"* said to|strong=\"H3212\"* his|strong=\"H7200\"* servants|strong=\"H5650\"*, “Behold|strong=\"H7200\"*, Joab|strong=\"H3097\"*’s field|strong=\"H2513\"* is|strong=\"H3027\"* near|strong=\"H3027\"* mine|strong=\"H7200\"*, and|strong=\"H3027\"* he|strong=\"H8033\"* has|strong=\"H5650\"* barley|strong=\"H8184\"* there|strong=\"H8033\"*. Go|strong=\"H3212\"* and|strong=\"H3027\"* set|strong=\"H3341\"* it|strong=\"H7200\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*.” So|strong=\"H7200\"* Absalom’s servants|strong=\"H5650\"* set|strong=\"H3341\"* the|strong=\"H7200\"* field|strong=\"H2513\"* on|strong=\"H7200\"* fire|strong=\"H3341\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6965\"* Joab|strong=\"H3097\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* came|strong=\"H5650\"* to|strong=\"H1004\"* Absalom to|strong=\"H1004\"* his|strong=\"H6965\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* said to|strong=\"H1004\"* him, “Why|strong=\"H4100\"* have|strong=\"H5650\"* your|strong=\"H6965\"* servants|strong=\"H5650\"* set|strong=\"H6965\"* my|strong=\"H6965\"* field|strong=\"H2513\"* on|strong=\"H1004\"* fire|strong=\"H3341\"*?”" + }, + { + "verseNum": 32, + "text": "Absalom answered Joab|strong=\"H3097\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* sent|strong=\"H7971\"* to|strong=\"H4191\"* you|strong=\"H6440\"*, saying, ‘Come|strong=\"H5750\"* here|strong=\"H2009\"*, that|strong=\"H7200\"* I|strong=\"H2009\"* may|strong=\"H4428\"* send|strong=\"H7971\"* you|strong=\"H6440\"* to|strong=\"H4191\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, to|strong=\"H4191\"* say, “Why|strong=\"H4100\"* have|strong=\"H3426\"* I|strong=\"H2009\"* come|strong=\"H5750\"* from|strong=\"H6440\"* Geshur|strong=\"H1650\"*? It|strong=\"H7200\"* would|strong=\"H4100\"* be|strong=\"H4191\"* better|strong=\"H2896\"* for|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H4191\"* be|strong=\"H4191\"* there|strong=\"H8033\"* still|strong=\"H5750\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, let|strong=\"H7971\"* me|strong=\"H6440\"* see|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*; and|strong=\"H7971\"* if|strong=\"H2009\"* there|strong=\"H8033\"* is|strong=\"H3426\"* iniquity|strong=\"H5771\"* in|strong=\"H4428\"* me|strong=\"H6440\"*, let|strong=\"H7971\"* him|strong=\"H6440\"* kill|strong=\"H4191\"* me|strong=\"H6440\"*.”’”" + }, + { + "verseNum": 33, + "text": "So|strong=\"H7121\"* Joab|strong=\"H3097\"* came|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* told|strong=\"H5046\"* him|strong=\"H6440\"*; and|strong=\"H4428\"* when|strong=\"H5921\"* he|strong=\"H5921\"* had|strong=\"H4428\"* called|strong=\"H7121\"* for|strong=\"H5921\"* Absalom, he|strong=\"H5921\"* came|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* his|strong=\"H7121\"* face|strong=\"H6440\"* to|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* kissed|strong=\"H5401\"* Absalom." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Absalom prepared|strong=\"H6213\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* and|strong=\"H2572\"* horses|strong=\"H5483\"* for|strong=\"H6213\"* himself|strong=\"H6213\"*, and|strong=\"H2572\"* fifty|strong=\"H2572\"* men|strong=\"H6213\"* to|strong=\"H1961\"* run|strong=\"H7323\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Absalom rose|strong=\"H7925\"* up|strong=\"H5975\"* early|strong=\"H7925\"*, and|strong=\"H3478\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"*. When|strong=\"H1961\"* any|strong=\"H3605\"* man|strong=\"H3605\"* had|strong=\"H1961\"* a|strong=\"H3068\"* suit|strong=\"H7379\"* which|strong=\"H5892\"* should|strong=\"H3478\"* come|strong=\"H1961\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* for|strong=\"H5921\"* judgment|strong=\"H4941\"*, then|strong=\"H1961\"* Absalom called|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, and|strong=\"H3478\"* said|strong=\"H7121\"*, “What|strong=\"H2088\"* city|strong=\"H5892\"* are|strong=\"H3478\"* you|strong=\"H3605\"* from|strong=\"H5921\"*?”" + }, + { + "verseNum": 3, + "text": "Absalom said|strong=\"H1697\"* to|strong=\"H8085\"* him|strong=\"H7200\"*, “Behold|strong=\"H7200\"*, your|strong=\"H7200\"* matters|strong=\"H1697\"* are|strong=\"H1697\"* good|strong=\"H2896\"* and|strong=\"H4428\"* right|strong=\"H5228\"*; but|strong=\"H7200\"* there|strong=\"H1697\"* is|strong=\"H1697\"* no|strong=\"H7200\"* man|strong=\"H2896\"* deputized by|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* you|strong=\"H7200\"*.”" + }, + { + "verseNum": 4, + "text": "Absalom said moreover|strong=\"H1961\"*, “Oh|strong=\"H4310\"* that|strong=\"H3605\"* I|strong=\"H5921\"* were|strong=\"H1961\"* made|strong=\"H7760\"* judge|strong=\"H8199\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land, that|strong=\"H3605\"* every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H4310\"* has|strong=\"H4310\"* any|strong=\"H3605\"* suit|strong=\"H7379\"* or|strong=\"H7379\"* cause|strong=\"H7379\"* might|strong=\"H4941\"* come|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5921\"*, and|strong=\"H4941\"* I|strong=\"H5921\"* would|strong=\"H4310\"* do|strong=\"H3605\"* him|strong=\"H5921\"* justice|strong=\"H4941\"*!”" + }, + { + "verseNum": 5, + "text": "It|strong=\"H7126\"* was|strong=\"H1961\"* so|strong=\"H7971\"*, that|strong=\"H3027\"* when|strong=\"H1961\"* any|strong=\"H1961\"* man came|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H7971\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, he|strong=\"H3027\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*, took|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3027\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* kissed|strong=\"H5401\"* him|strong=\"H7971\"*." + }, + { + "verseNum": 6, + "text": "Absalom did|strong=\"H6213\"* this|strong=\"H2088\"* sort|strong=\"H1697\"* of|strong=\"H4428\"* thing|strong=\"H1697\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* for|strong=\"H6213\"* judgment|strong=\"H4941\"*. So|strong=\"H6213\"* Absalom stole|strong=\"H1589\"* the|strong=\"H3605\"* hearts|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7093\"* of|strong=\"H4428\"* forty years|strong=\"H8141\"*, Absalom said to|strong=\"H3212\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"* and|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3068\"* vow|strong=\"H5088\"*, which|strong=\"H3068\"* I|strong=\"H8141\"* have|strong=\"H1961\"* vowed|strong=\"H5087\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*, in|strong=\"H8141\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* vowed|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* while|strong=\"H3588\"* I|strong=\"H3588\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Geshur|strong=\"H1650\"* in|strong=\"H3427\"* Syria, saying, ‘If|strong=\"H3588\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* indeed|strong=\"H3588\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H7725\"* I|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6965\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* him|strong=\"H4428\"*, “Go|strong=\"H3212\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H8085\"* Absalom sent|strong=\"H7971\"* spies|strong=\"H7270\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, saying|strong=\"H6963\"*, “As|strong=\"H4427\"* soon as|strong=\"H4427\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H7626\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, then|strong=\"H7971\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* say|strong=\"H6963\"*, ‘Absalom is|strong=\"H3478\"* king|strong=\"H4427\"* in|strong=\"H3478\"* Hebron|strong=\"H2275\"*!’”" + }, + { + "verseNum": 11, + "text": "Two|strong=\"H1980\"* hundred|strong=\"H3967\"* men|strong=\"H1980\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Absalom out|strong=\"H1980\"* of|strong=\"H1697\"* Jerusalem|strong=\"H3389\"*, who|strong=\"H3605\"* were|strong=\"H1697\"* invited|strong=\"H7121\"*, and|strong=\"H3967\"* went|strong=\"H1980\"* in|strong=\"H1980\"* their|strong=\"H3605\"* simplicity|strong=\"H8537\"*; and|strong=\"H3967\"* they|strong=\"H3808\"* didn’t know|strong=\"H3045\"* anything|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Absalom sent|strong=\"H7971\"* for|strong=\"H7971\"* Ahithophel the|strong=\"H7971\"* Gilonite|strong=\"H1526\"*, David|strong=\"H1732\"*’s counselor|strong=\"H3289\"*, from|strong=\"H1980\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, even from|strong=\"H1980\"* Giloh|strong=\"H1542\"*, while|strong=\"H1961\"* he|strong=\"H1732\"* was|strong=\"H1961\"* offering|strong=\"H2076\"* the|strong=\"H7971\"* sacrifices|strong=\"H2077\"*. The|strong=\"H7971\"* conspiracy|strong=\"H7195\"* was|strong=\"H1961\"* strong, for|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* increased|strong=\"H7227\"* continually|strong=\"H1980\"* with|strong=\"H1980\"* Absalom." + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* messenger|strong=\"H5046\"* came|strong=\"H1961\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, saying, “The|strong=\"H5046\"* hearts|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H5046\"* men|strong=\"H3478\"* of|strong=\"H3820\"* Israel|strong=\"H3478\"* are|strong=\"H3478\"* after|strong=\"H1961\"* Absalom.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said|strong=\"H6310\"* to|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H6440\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, “Arise|strong=\"H6965\"*! Let|strong=\"H3808\"*’s flee|strong=\"H1272\"*, or|strong=\"H3808\"* else|strong=\"H6435\"* none|strong=\"H3808\"* of|strong=\"H5892\"* us|strong=\"H5921\"* will|strong=\"H1961\"* escape|strong=\"H6413\"* from|strong=\"H6440\"* Absalom. Hurry|strong=\"H4116\"* to|strong=\"H3212\"* depart|strong=\"H3212\"*, lest|strong=\"H6435\"* he|strong=\"H3588\"* overtake|strong=\"H5381\"* us|strong=\"H5921\"* quickly|strong=\"H4116\"* and|strong=\"H6965\"* bring|strong=\"H3212\"* down|strong=\"H5221\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H6965\"* strike|strong=\"H5221\"* the|strong=\"H3605\"* city|strong=\"H5892\"* with|strong=\"H5921\"* the|strong=\"H3605\"* edge|strong=\"H6310\"* of|strong=\"H5892\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* said to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Behold|strong=\"H2009\"*, your|strong=\"H3605\"* servants|strong=\"H5650\"* are|strong=\"H5650\"* ready to|strong=\"H4428\"* do|strong=\"H3605\"* whatever|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* chooses.”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* household|strong=\"H1004\"* after|strong=\"H7272\"* him|strong=\"H3318\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* left|strong=\"H5800\"* ten|strong=\"H6235\"* women, who|strong=\"H3605\"* were|strong=\"H7272\"* concubines|strong=\"H6370\"*, to|strong=\"H3318\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* after|strong=\"H7272\"* him|strong=\"H3318\"*; and|strong=\"H4428\"* they|strong=\"H5971\"* stayed|strong=\"H5975\"* in|strong=\"H4428\"* Beth Merhak." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* passed|strong=\"H5674\"* on|strong=\"H5921\"* beside|strong=\"H5921\"* him|strong=\"H6440\"*; and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Gittites|strong=\"H1663\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* men|strong=\"H5650\"* who|strong=\"H3605\"* came|strong=\"H5674\"* after|strong=\"H5921\"* him|strong=\"H6440\"* from|strong=\"H6440\"* Gath|strong=\"H1661\"*, passed|strong=\"H5674\"* on|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1571\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H7725\"* Ittai the|strong=\"H3588\"* Gittite|strong=\"H1663\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* also|strong=\"H1571\"* go|strong=\"H3212\"* with|strong=\"H5973\"* us|strong=\"H7725\"*? Return|strong=\"H7725\"*, and|strong=\"H7725\"* stay|strong=\"H3427\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* a|strong=\"H3068\"* foreigner|strong=\"H5237\"* and|strong=\"H7725\"* also|strong=\"H1571\"* an|strong=\"H3588\"* exile|strong=\"H1540\"*. Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* own|strong=\"H5973\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 20, + "text": "Whereas you|strong=\"H5921\"* came|strong=\"H1980\"* but|strong=\"H7725\"* yesterday|strong=\"H8543\"*, should|strong=\"H1980\"* I|strong=\"H3117\"* today|strong=\"H3117\"* make|strong=\"H7725\"* you|strong=\"H5921\"* go|strong=\"H1980\"* up|strong=\"H5921\"* and|strong=\"H1980\"* down|strong=\"H1980\"* with|strong=\"H5973\"* us|strong=\"H7725\"*, since|strong=\"H3117\"* I|strong=\"H3117\"* go|strong=\"H1980\"* where|strong=\"H5921\"* I|strong=\"H3117\"* may|strong=\"H7725\"*? Return|strong=\"H7725\"*, and|strong=\"H1980\"* take|strong=\"H7725\"* back|strong=\"H7725\"* your|strong=\"H5921\"* brothers. Mercy|strong=\"H2617\"* and|strong=\"H1980\"* truth be|strong=\"H3117\"* with|strong=\"H5973\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 21, + "text": "Ittai answered|strong=\"H6030\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H3068\"* said|strong=\"H6030\"*, “As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, and|strong=\"H3068\"* as|strong=\"H1961\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* lives|strong=\"H2416\"*, surely|strong=\"H3588\"* in|strong=\"H3068\"* what|strong=\"H3588\"* place|strong=\"H4725\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* is|strong=\"H3068\"*, whether for|strong=\"H3588\"* death|strong=\"H4194\"* or|strong=\"H4194\"* for|strong=\"H3588\"* life|strong=\"H2416\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"* will|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* also|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "David|strong=\"H1732\"* said to|strong=\"H3212\"* Ittai, “Go|strong=\"H3212\"* and|strong=\"H3212\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*.” Ittai the|strong=\"H3605\"* Gittite|strong=\"H1663\"* passed|strong=\"H5674\"* over|strong=\"H5674\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* men|strong=\"H3605\"*, and|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* who|strong=\"H3605\"* were|strong=\"H1732\"* with|strong=\"H3212\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* country wept|strong=\"H1058\"* with|strong=\"H5921\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* also|strong=\"H4428\"* himself|strong=\"H6440\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* passed|strong=\"H5674\"* over|strong=\"H5921\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2009\"*, Zadok|strong=\"H6659\"* also|strong=\"H1571\"* came|strong=\"H5927\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* with|strong=\"H1285\"* him|strong=\"H3605\"*, bearing|strong=\"H5375\"* the|strong=\"H3605\"* ark of|strong=\"H5892\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H5892\"* God; and|strong=\"H5971\"* they|strong=\"H5704\"* set|strong=\"H5375\"* down|strong=\"H3332\"* God’s ark; and|strong=\"H5971\"* Abiathar went|strong=\"H5927\"* up|strong=\"H5927\"* until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* finished|strong=\"H8552\"* passing|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said to|strong=\"H7725\"* Zadok|strong=\"H6659\"*, “Carry God|strong=\"H3068\"*’s ark back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7200\"* city|strong=\"H5892\"*. If|strong=\"H7200\"* I|strong=\"H7200\"* find|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* show|strong=\"H7200\"* me|strong=\"H7725\"* both it|strong=\"H7725\"* and|strong=\"H3068\"* his|strong=\"H3068\"* habitation|strong=\"H5116\"*;" + }, + { + "verseNum": 26, + "text": "but|strong=\"H3808\"* if|strong=\"H2005\"* he|strong=\"H6213\"* says|strong=\"H3541\"*, ‘I|strong=\"H2005\"* have|strong=\"H5869\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H6213\"* you|strong=\"H6213\"*,’ behold|strong=\"H2005\"*, here|strong=\"H3541\"* I|strong=\"H2005\"* am|strong=\"H2005\"*. Let|strong=\"H3808\"* him|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"* as|strong=\"H6213\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H6213\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said also|strong=\"H4428\"* to|strong=\"H7725\"* Zadok|strong=\"H6659\"* the|strong=\"H7200\"* priest|strong=\"H3548\"*, “Aren’t you|strong=\"H7725\"* a|strong=\"H3068\"* seer|strong=\"H7200\"*? Return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7200\"* city|strong=\"H5892\"* in|strong=\"H4428\"* peace|strong=\"H7965\"*, and|strong=\"H1121\"* your|strong=\"H7200\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* with|strong=\"H5892\"* you|strong=\"H7725\"*, Ahimaaz your|strong=\"H7200\"* son|strong=\"H1121\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar." + }, + { + "verseNum": 28, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H5704\"* will|strong=\"H1697\"* stay|strong=\"H4102\"* at|strong=\"H7200\"* the|strong=\"H7200\"* fords|strong=\"H5679\"* of|strong=\"H1697\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"* until|strong=\"H5704\"* word|strong=\"H1697\"* comes|strong=\"H5973\"* from|strong=\"H5704\"* you|strong=\"H5704\"* to|strong=\"H5704\"* inform|strong=\"H5046\"* me|strong=\"H7200\"*.”" + }, + { + "verseNum": 29, + "text": "Zadok|strong=\"H6659\"* therefore and|strong=\"H7725\"* Abiathar carried|strong=\"H7725\"* God’s ark to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* again|strong=\"H7725\"*; and|strong=\"H7725\"* they|strong=\"H8033\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 30, + "text": "David|strong=\"H1732\"* went|strong=\"H1980\"* up|strong=\"H5927\"* by|strong=\"H1980\"* the|strong=\"H3605\"* ascent|strong=\"H4608\"* of|strong=\"H7218\"* the|strong=\"H3605\"* Mount|strong=\"H5927\"* of|strong=\"H7218\"* Olives|strong=\"H2132\"*, and|strong=\"H1980\"* wept|strong=\"H1058\"* as|strong=\"H5927\"* he|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*; and|strong=\"H1980\"* he|strong=\"H1931\"* had|strong=\"H1732\"* his|strong=\"H3605\"* head|strong=\"H7218\"* covered|strong=\"H2645\"* and|strong=\"H1980\"* went|strong=\"H1980\"* barefoot|strong=\"H3182\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H1980\"* him|strong=\"H1931\"* each|strong=\"H3605\"* covered|strong=\"H2645\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* they|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*, weeping|strong=\"H1058\"* as|strong=\"H5927\"* they|strong=\"H1931\"* went|strong=\"H1980\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 31, + "text": "Someone told|strong=\"H5046\"* David|strong=\"H1732\"*, saying, “Ahithophel is|strong=\"H3068\"* among|strong=\"H5973\"* the|strong=\"H3068\"* conspirators|strong=\"H7194\"* with|strong=\"H5973\"* Absalom.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H5921\"* top|strong=\"H7218\"*, where|strong=\"H8033\"* God was|strong=\"H1961\"* worshiped|strong=\"H7812\"*, behold|strong=\"H2009\"*, Hushai|strong=\"H2365\"* the|strong=\"H5921\"* Archite came|strong=\"H1961\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* him|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H1732\"* tunic|strong=\"H3801\"* torn|strong=\"H7167\"* and|strong=\"H1732\"* earth on|strong=\"H5921\"* his|strong=\"H1732\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 33, + "text": "David|strong=\"H1732\"* said to|strong=\"H1961\"* him|strong=\"H5921\"*, “If|strong=\"H1961\"* you|strong=\"H5921\"* pass|strong=\"H5674\"* on|strong=\"H5921\"* with|strong=\"H5921\"* me|strong=\"H5921\"*, then|strong=\"H1961\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* to|strong=\"H1961\"* me|strong=\"H5921\"*;" + }, + { + "verseNum": 34, + "text": "but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* city|strong=\"H5892\"*, and|strong=\"H7725\"* tell Absalom, ‘I|strong=\"H6258\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H7725\"* servant|strong=\"H5650\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*. As|strong=\"H1961\"* I|strong=\"H6258\"* have|strong=\"H1961\"* been|strong=\"H1961\"* your|strong=\"H7725\"* father’s servant|strong=\"H5650\"* in|strong=\"H4428\"* time|strong=\"H6258\"* past|strong=\"H7725\"*, so|strong=\"H1961\"* I|strong=\"H6258\"* will|strong=\"H1961\"* now|strong=\"H6258\"* be|strong=\"H1961\"* your|strong=\"H7725\"* servant|strong=\"H5650\"*; then|strong=\"H1961\"* you|strong=\"H7725\"* will|strong=\"H1961\"* defeat|strong=\"H6565\"* for|strong=\"H5650\"* me|strong=\"H7725\"* the|strong=\"H7725\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* Ahithophel.’" + }, + { + "verseNum": 35, + "text": "Don’t you|strong=\"H3605\"* have|strong=\"H1961\"* Zadok|strong=\"H6659\"* and|strong=\"H4428\"* Abiathar the|strong=\"H3605\"* priests|strong=\"H3548\"* there|strong=\"H8033\"* with|strong=\"H5973\"* you|strong=\"H3605\"*? Therefore|strong=\"H1961\"* whatever|strong=\"H3605\"* you|strong=\"H3605\"* hear|strong=\"H8085\"* out|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, tell|strong=\"H5046\"* it|strong=\"H8033\"* to|strong=\"H1961\"* Zadok|strong=\"H6659\"* and|strong=\"H4428\"* Abiathar the|strong=\"H3605\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 36, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H8033\"* have|strong=\"H1121\"* there|strong=\"H8033\"* with|strong=\"H5973\"* them|strong=\"H7971\"* their|strong=\"H3605\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*, Ahimaaz, Zadok|strong=\"H6659\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Jonathan|strong=\"H3083\"*, Abiathar’s son|strong=\"H1121\"*. Send|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"* everything|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* shall|strong=\"H1121\"* hear|strong=\"H8085\"* by|strong=\"H3027\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 37, + "text": "So Hushai|strong=\"H2365\"*, David|strong=\"H1732\"*’s friend|strong=\"H7463\"*, came|strong=\"H1732\"* into|strong=\"H5892\"* the|strong=\"H1732\"* city|strong=\"H5892\"*; and|strong=\"H3389\"* Absalom came|strong=\"H1732\"* into|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H5674\"* David|strong=\"H1732\"* was|strong=\"H1732\"* a|strong=\"H3068\"* little|strong=\"H4592\"* past|strong=\"H5674\"* the|strong=\"H5921\"* top|strong=\"H7218\"*, behold|strong=\"H2009\"*, Ziba|strong=\"H6717\"* the|strong=\"H5921\"* servant|strong=\"H5288\"* of|strong=\"H7218\"* Mephibosheth|strong=\"H4648\"* met|strong=\"H7122\"* him|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* couple|strong=\"H6776\"* of|strong=\"H7218\"* donkeys|strong=\"H2543\"* saddled|strong=\"H2280\"*, and|strong=\"H3967\"* on|strong=\"H5921\"* them|strong=\"H5921\"* two|strong=\"H6776\"* hundred|strong=\"H3967\"* loaves|strong=\"H3899\"* of|strong=\"H7218\"* bread|strong=\"H3899\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* clusters|strong=\"H6778\"* of|strong=\"H7218\"* raisins|strong=\"H6778\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* container of|strong=\"H7218\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H8354\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Ziba|strong=\"H6717\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* mean by|strong=\"H4428\"* these|strong=\"H1004\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said, “Where|strong=\"H1004\"* is|strong=\"H3117\"* your|strong=\"H7725\"* master|strong=\"H3427\"*’s son|strong=\"H1121\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2009\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* Ziba|strong=\"H6717\"*, “Behold|strong=\"H2009\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* belongs to|strong=\"H4428\"* Mephibosheth|strong=\"H4648\"* is|strong=\"H2009\"* yours.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H3318\"* King|strong=\"H4428\"* David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Bahurim, behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* family|strong=\"H4940\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Shimei|strong=\"H8096\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*. He|strong=\"H5704\"* came|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1121\"* cursed|strong=\"H7043\"* as|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3605\"* cast|strong=\"H5619\"* stones|strong=\"H5619\"* at|strong=\"H1732\"* David|strong=\"H1732\"* and|strong=\"H4428\"* at|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* were|strong=\"H5971\"* on|strong=\"H3605\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H4428\"* on|strong=\"H3605\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 7, + "text": "Shimei|strong=\"H8096\"* said|strong=\"H3318\"* when|strong=\"H3318\"* he|strong=\"H3541\"* cursed|strong=\"H7043\"*, “Be|strong=\"H1818\"* gone|strong=\"H3318\"*, be|strong=\"H1818\"* gone|strong=\"H3318\"*, you|strong=\"H3318\"* man of|strong=\"H1818\"* blood|strong=\"H1818\"*, and|strong=\"H1818\"* wicked|strong=\"H1100\"* fellow!" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* returned|strong=\"H7725\"* on|strong=\"H5921\"* you|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*’s house|strong=\"H1004\"*, in|strong=\"H5921\"* whose|strong=\"H1121\"* place|strong=\"H8478\"* you|strong=\"H3588\"* have|strong=\"H3068\"* reigned|strong=\"H4427\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* into|strong=\"H7725\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Absalom your|strong=\"H3068\"* son|strong=\"H1121\"*! Behold|strong=\"H2005\"*, you|strong=\"H3588\"* are|strong=\"H1121\"* caught by|strong=\"H3027\"* your|strong=\"H3068\"* own|strong=\"H3027\"* mischief|strong=\"H7451\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* blood|strong=\"H1818\"*!”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2088\"* Abishai the|strong=\"H5674\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* said to|strong=\"H4191\"* the|strong=\"H5674\"* king|strong=\"H4428\"*, “Why|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2088\"* dead|strong=\"H4191\"* dog|strong=\"H3611\"* curse|strong=\"H7043\"* my|strong=\"H5493\"* lord the|strong=\"H5674\"* king|strong=\"H4428\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H5674\"* over|strong=\"H5674\"* and|strong=\"H1121\"* take|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5493\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said|strong=\"H3651\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H3068\"* do|strong=\"H6213\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*? Because|strong=\"H3588\"* he|strong=\"H3588\"* curses|strong=\"H7043\"*, and|strong=\"H1121\"* because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H6213\"*, ‘Curse|strong=\"H7043\"* David|strong=\"H1732\"*,’ who|strong=\"H4310\"* then|strong=\"H3651\"* shall|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* done|strong=\"H6213\"* so|strong=\"H3651\"*?’”" + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Abishai and|strong=\"H1121\"* to|strong=\"H3318\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, “Behold|strong=\"H2009\"*, my|strong=\"H3605\"* son|strong=\"H1121\"*, who|strong=\"H3605\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* my|strong=\"H3605\"* bowels|strong=\"H4578\"*, seeks|strong=\"H1245\"* my|strong=\"H3605\"* life|strong=\"H5315\"*. How|strong=\"H3588\"* much|strong=\"H3605\"* more|strong=\"H3588\"* this|strong=\"H6258\"* Benjamite|strong=\"H1145\"*, now|strong=\"H6258\"*? Leave|strong=\"H3240\"* him|strong=\"H3318\"* alone|strong=\"H3240\"*, and|strong=\"H1121\"* let|strong=\"H6258\"* him|strong=\"H3318\"* curse|strong=\"H7043\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* invited him|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H7725\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* look|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* wrong|strong=\"H5771\"* done to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H3068\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* repay|strong=\"H7725\"* me|strong=\"H7725\"* good|strong=\"H2896\"* for|strong=\"H8478\"* the|strong=\"H7200\"* cursing|strong=\"H7045\"* of|strong=\"H3068\"* me|strong=\"H7725\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H1980\"* his|strong=\"H1732\"* men|strong=\"H1980\"* went|strong=\"H1980\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"*; and|strong=\"H1980\"* Shimei|strong=\"H8096\"* went|strong=\"H1980\"* along|strong=\"H1980\"* on|strong=\"H1980\"* the|strong=\"H1870\"* hillside|strong=\"H6763\"* opposite him|strong=\"H1732\"* and|strong=\"H1980\"* cursed|strong=\"H7043\"* as|strong=\"H1980\"* he|strong=\"H1732\"* went|strong=\"H1980\"*, threw|strong=\"H5619\"* stones|strong=\"H5619\"* at|strong=\"H1732\"* him|strong=\"H1732\"*, and|strong=\"H1980\"* threw|strong=\"H5619\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"* arrived weary|strong=\"H5889\"*; and|strong=\"H4428\"* he|strong=\"H8033\"* refreshed|strong=\"H5314\"* himself|strong=\"H5314\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 15, + "text": "Absalom and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* Ahithophel with|strong=\"H3389\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H1961\"* Hushai|strong=\"H2365\"* the|strong=\"H1961\"* Archite, David|strong=\"H1732\"*’s friend|strong=\"H7463\"*, had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Absalom, Hushai|strong=\"H2365\"* said to|strong=\"H1961\"* Absalom, “Long live|strong=\"H2421\"* the|strong=\"H1961\"* king|strong=\"H4428\"*! Long live|strong=\"H2421\"* the|strong=\"H1961\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 17, + "text": "Absalom said to|strong=\"H1980\"* Hushai|strong=\"H2365\"*, “Is|strong=\"H2088\"* this|strong=\"H2088\"* your|strong=\"H3808\"* kindness|strong=\"H2617\"* to|strong=\"H1980\"* your|strong=\"H3808\"* friend|strong=\"H7453\"*? Why|strong=\"H4100\"* didn’t you|strong=\"H3808\"* go|strong=\"H1980\"* with|strong=\"H1980\"* your|strong=\"H3808\"* friend|strong=\"H7453\"*?”" + }, + { + "verseNum": 18, + "text": "Hushai|strong=\"H2365\"* said to|strong=\"H3478\"* Absalom, “No|strong=\"H3808\"*; but|strong=\"H3588\"* whomever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* have|strong=\"H1961\"* chosen, I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* his|strong=\"H3605\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* stay|strong=\"H3427\"* with|strong=\"H3068\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "Again|strong=\"H8145\"*, whom|strong=\"H4310\"* should|strong=\"H4310\"* I|strong=\"H3651\"* serve|strong=\"H5647\"*? Shouldn’t I|strong=\"H3651\"* serve|strong=\"H5647\"* in|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* his|strong=\"H6440\"* son|strong=\"H1121\"*? As|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* served|strong=\"H5647\"* in|strong=\"H6440\"* your|strong=\"H6440\"* father|strong=\"H1121\"*’s presence|strong=\"H6440\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H4310\"* be|strong=\"H1961\"* in|strong=\"H6440\"* your|strong=\"H6440\"* presence|strong=\"H6440\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6213\"* Absalom said to|strong=\"H6213\"* Ahithophel, “Give|strong=\"H3051\"* your|strong=\"H6213\"* counsel|strong=\"H6098\"* what|strong=\"H4100\"* we|strong=\"H3068\"* shall|strong=\"H6213\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 21, + "text": "Ahithophel said|strong=\"H8085\"* to|strong=\"H3478\"* Absalom, “Go|strong=\"H3478\"* in|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H3605\"* father’s concubines|strong=\"H6370\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3478\"* left|strong=\"H3240\"* to|strong=\"H3478\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. Then|strong=\"H8085\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* hear|strong=\"H8085\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* abhorred by|strong=\"H3027\"* your|strong=\"H3605\"* father. Then|strong=\"H8085\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3478\"* with|strong=\"H1004\"* you|strong=\"H3588\"* will|strong=\"H3478\"* be|strong=\"H3027\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H5921\"* they|strong=\"H5921\"* spread|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H5921\"* Absalom on|strong=\"H5921\"* the|strong=\"H3605\"* top|strong=\"H1406\"* of|strong=\"H5869\"* the|strong=\"H3605\"* house|strong=\"H1406\"*, and|strong=\"H3478\"* Absalom went|strong=\"H3478\"* in|strong=\"H5921\"* to|strong=\"H3478\"* his|strong=\"H3605\"* father’s concubines|strong=\"H6370\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* Ahithophel, which|strong=\"H1992\"* he|strong=\"H3117\"* gave|strong=\"H3289\"* in|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, was|strong=\"H1732\"* as|strong=\"H1697\"* if|strong=\"H3651\"* a|strong=\"H3068\"* man|strong=\"H3605\"* inquired|strong=\"H7592\"* at|strong=\"H1732\"* the|strong=\"H3605\"* inner sanctuary of|strong=\"H3117\"* God. All|strong=\"H3605\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* Ahithophel was|strong=\"H1732\"* like|strong=\"H3651\"* this|strong=\"H3651\"* both|strong=\"H1571\"* with|strong=\"H1697\"* David|strong=\"H1732\"* and|strong=\"H3117\"* with|strong=\"H1697\"* Absalom." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Ahithophel said to|strong=\"H1732\"* Absalom, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* choose twelve|strong=\"H8147\"* thousand men|strong=\"H8147\"*, and|strong=\"H6965\"* I|strong=\"H6965\"* will|strong=\"H8147\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* David|strong=\"H1732\"* tonight|strong=\"H3915\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H4428\"* come|strong=\"H5971\"* on|strong=\"H5921\"* him|strong=\"H5921\"* while|strong=\"H1931\"* he|strong=\"H1931\"* is|strong=\"H1931\"* weary|strong=\"H3023\"* and|strong=\"H4428\"* exhausted|strong=\"H3027\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* make|strong=\"H2729\"* him|strong=\"H5921\"* afraid|strong=\"H2729\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"* will|strong=\"H4428\"* flee|strong=\"H5127\"*. I|strong=\"H5921\"* will|strong=\"H4428\"* strike|strong=\"H5221\"* the|strong=\"H3605\"* king|strong=\"H4428\"* only|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H7725\"* I|strong=\"H3605\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H7725\"* you|strong=\"H3605\"*. The|strong=\"H3605\"* man|strong=\"H3605\"* whom|strong=\"H5971\"* you|strong=\"H3605\"* seek|strong=\"H1245\"* is|strong=\"H3605\"* as|strong=\"H1961\"* if|strong=\"H1961\"* all|strong=\"H3605\"* returned|strong=\"H7725\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* in|strong=\"H7725\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* saying|strong=\"H1697\"* pleased|strong=\"H3474\"* Absalom well|strong=\"H5869\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1571\"* Absalom said|strong=\"H7121\"*, “Now|strong=\"H4994\"* call|strong=\"H7121\"* Hushai|strong=\"H2365\"* the|strong=\"H8085\"* Archite also|strong=\"H1571\"*, and|strong=\"H8085\"* let|strong=\"H4994\"*’s hear|strong=\"H8085\"* likewise|strong=\"H1571\"* what|strong=\"H4100\"* he|strong=\"H1931\"* says|strong=\"H6310\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H1696\"* Hushai|strong=\"H2365\"* had|strong=\"H1697\"* come to|strong=\"H1696\"* Absalom, Absalom spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, saying|strong=\"H1697\"*, “Ahithophel has|strong=\"H1697\"* spoken|strong=\"H1696\"* like|strong=\"H1697\"* this|strong=\"H2088\"*. Shall|strong=\"H2088\"* we|strong=\"H3068\"* do|strong=\"H6213\"* what|strong=\"H1697\"* he|strong=\"H6213\"* says|strong=\"H1696\"*? If not|strong=\"H6213\"*, speak|strong=\"H1696\"* up|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "Hushai|strong=\"H2365\"* said to|strong=\"H2896\"* Absalom, “The|strong=\"H3808\"* counsel|strong=\"H6098\"* that|strong=\"H3808\"* Ahithophel has|strong=\"H3289\"* given|strong=\"H3289\"* this|strong=\"H2063\"* time|strong=\"H6471\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 8, + "text": "Hushai|strong=\"H2365\"* said moreover|strong=\"H3588\"*, “You|strong=\"H3588\"* know|strong=\"H3045\"* your|strong=\"H3045\"* father and|strong=\"H5971\"* his|strong=\"H3045\"* men|strong=\"H1368\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H5971\"* they|strong=\"H1992\"* are|strong=\"H1992\"* fierce|strong=\"H4751\"* in|strong=\"H5315\"* their|strong=\"H1992\"* minds|strong=\"H5315\"*, like|strong=\"H3808\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* robbed|strong=\"H7909\"* of|strong=\"H7704\"* her|strong=\"H3045\"* cubs|strong=\"H7909\"* in|strong=\"H5315\"* the|strong=\"H3588\"* field|strong=\"H7704\"*. Your|strong=\"H3045\"* father is|strong=\"H5315\"* a|strong=\"H3068\"* man|strong=\"H1368\"* of|strong=\"H7704\"* war|strong=\"H4421\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* not|strong=\"H3808\"* lodge|strong=\"H3885\"* with|strong=\"H3045\"* the|strong=\"H3588\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* now|strong=\"H6258\"* hidden|strong=\"H2244\"* in|strong=\"H8085\"* some|strong=\"H5971\"* pit|strong=\"H6354\"*, or|strong=\"H8085\"* in|strong=\"H8085\"* some|strong=\"H5971\"* other place|strong=\"H4725\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* some|strong=\"H5971\"* of|strong=\"H5971\"* them|strong=\"H1961\"* have|strong=\"H1961\"* fallen|strong=\"H5307\"* at|strong=\"H1961\"* the|strong=\"H8085\"* first|strong=\"H8462\"*, that|strong=\"H5971\"* whoever hears|strong=\"H8085\"* it|strong=\"H1931\"* will|strong=\"H1961\"* say, ‘There|strong=\"H2009\"* is|strong=\"H1931\"* a|strong=\"H3068\"* slaughter|strong=\"H4046\"* among|strong=\"H5971\"* the|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H1931\"* follow|strong=\"H1961\"* Absalom!’" + }, + { + "verseNum": 10, + "text": "Even|strong=\"H1571\"* he|strong=\"H1931\"* who|strong=\"H3605\"* is|strong=\"H1931\"* valiant|strong=\"H2428\"*, whose|strong=\"H1121\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* as|strong=\"H1571\"* the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* a|strong=\"H3068\"* lion, will|strong=\"H3478\"* utterly|strong=\"H4549\"* melt|strong=\"H4549\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3605\"* father|strong=\"H1121\"* is|strong=\"H1931\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*, and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* with|strong=\"H3045\"* him|strong=\"H1931\"* are|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* counsel|strong=\"H3289\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* be|strong=\"H3478\"* gathered|strong=\"H3478\"* together|strong=\"H5921\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, from|strong=\"H6440\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, as|strong=\"H5704\"* the|strong=\"H3605\"* sand|strong=\"H2344\"* that|strong=\"H3588\"* is|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* for|strong=\"H3588\"* multitude|strong=\"H7230\"*; and|strong=\"H1980\"* that|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H1980\"* to|strong=\"H5704\"* battle|strong=\"H7128\"* in|strong=\"H5921\"* your|strong=\"H3605\"* own|strong=\"H6440\"* person|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H1571\"* come|strong=\"H4672\"* on|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* some|strong=\"H8033\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H1571\"* be|strong=\"H3808\"* found|strong=\"H4672\"*, and|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H1571\"* light on|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H1571\"* the|strong=\"H3605\"* dew|strong=\"H2919\"* falls|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H4725\"*, then|strong=\"H5307\"* we|strong=\"H3068\"* will|strong=\"H1571\"* not|strong=\"H3808\"* leave|strong=\"H3498\"* so|strong=\"H3808\"* much|strong=\"H3498\"* as|strong=\"H1571\"* one|strong=\"H3605\"* of|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H8033\"* of|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1571\"* with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Moreover|strong=\"H1571\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3478\"* gone|strong=\"H3808\"* into|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, then|strong=\"H5375\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* bring|strong=\"H5375\"* ropes|strong=\"H2256\"* to|strong=\"H5704\"* that|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3478\"* we|strong=\"H3068\"* will|strong=\"H3478\"* draw|strong=\"H5498\"* it|strong=\"H1931\"* into|strong=\"H5892\"* the|strong=\"H3605\"* river|strong=\"H5158\"*, until|strong=\"H5704\"* there|strong=\"H8033\"* isn’t one|strong=\"H3605\"* small|strong=\"H1571\"* stone|strong=\"H6872\"* found|strong=\"H4672\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 14, + "text": "Absalom and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* said, “The|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Hushai|strong=\"H2365\"* the|strong=\"H3605\"* Archite is|strong=\"H3068\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Ahithophel.” For|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* ordained|strong=\"H6680\"* to|strong=\"H3478\"* defeat|strong=\"H6565\"* the|strong=\"H3605\"* good|strong=\"H2896\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Ahithophel, to|strong=\"H3478\"* the|strong=\"H3605\"* intent|strong=\"H5668\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* might|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* Absalom." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3548\"* Hushai|strong=\"H2365\"* said to|strong=\"H3478\"* Zadok|strong=\"H6659\"* and|strong=\"H3478\"* to|strong=\"H3478\"* Abiathar the|strong=\"H6659\"* priests|strong=\"H3548\"*, “Ahithophel counseled|strong=\"H3289\"* Absalom and|strong=\"H3478\"* the|strong=\"H6659\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* that|strong=\"H3478\"* way|strong=\"H2063\"*; and|strong=\"H3478\"* I|strong=\"H3478\"* have|strong=\"H3478\"* counseled|strong=\"H3289\"* this|strong=\"H2063\"* way|strong=\"H2063\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* send|strong=\"H7971\"* quickly|strong=\"H4120\"*, and|strong=\"H7971\"* tell|strong=\"H5046\"* David|strong=\"H1732\"*, saying, ‘Don’t lodge|strong=\"H3885\"* tonight|strong=\"H3915\"* at|strong=\"H1732\"* the|strong=\"H3605\"* fords|strong=\"H6160\"* of|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, but|strong=\"H1571\"* by|strong=\"H5674\"* all|strong=\"H3605\"* means|strong=\"H5674\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*, lest|strong=\"H6435\"* the|strong=\"H3605\"* king|strong=\"H4428\"* be|strong=\"H1571\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"*, and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H7971\"*.’”" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3588\"* Jonathan|strong=\"H3083\"* and|strong=\"H1980\"* Ahimaaz were|strong=\"H1992\"* staying|strong=\"H5975\"* by|strong=\"H5975\"* En Rogel; and|strong=\"H1980\"* a|strong=\"H3068\"* female|strong=\"H8198\"* servant|strong=\"H8198\"* used to|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* report|strong=\"H5046\"* to|strong=\"H1980\"* them|strong=\"H1992\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* went|strong=\"H1980\"* and|strong=\"H1980\"* told|strong=\"H5046\"* King|strong=\"H4428\"* David|strong=\"H1732\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* couldn’t risk being seen|strong=\"H7200\"* coming|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H7200\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H7200\"* a|strong=\"H3068\"* boy|strong=\"H5288\"* saw|strong=\"H7200\"* them|strong=\"H3381\"*, and|strong=\"H3212\"* told|strong=\"H5046\"* Absalom. Then|strong=\"H7200\"* they|strong=\"H8033\"* both|strong=\"H8147\"* went|strong=\"H3212\"* away|strong=\"H3212\"* quickly|strong=\"H4120\"* and|strong=\"H3212\"* came|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H5288\"* in|strong=\"H1004\"* Bahurim, who|strong=\"H5288\"* had a|strong=\"H3068\"* well in|strong=\"H1004\"* his|strong=\"H7200\"* court|strong=\"H2691\"*; and|strong=\"H3212\"* they|strong=\"H8033\"* went|strong=\"H3212\"* down|strong=\"H3381\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* woman took|strong=\"H3947\"* and|strong=\"H6440\"* spread|strong=\"H6566\"* the|strong=\"H6440\"* covering|strong=\"H4539\"* over|strong=\"H5921\"* the|strong=\"H6440\"* well|strong=\"H3045\"*’s mouth|strong=\"H6440\"*, and|strong=\"H6440\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* crushed|strong=\"H7383\"* grain|strong=\"H7383\"* on|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H6440\"* nothing|strong=\"H3808\"* was|strong=\"H1697\"* known|strong=\"H3045\"*." + }, + { + "verseNum": 20, + "text": "Absalom’s servants|strong=\"H5650\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* woman|strong=\"H1004\"* to|strong=\"H7725\"* the|strong=\"H7725\"* house|strong=\"H1004\"*; and|strong=\"H7725\"* they|strong=\"H3808\"* said, “Where|strong=\"H1004\"* are|strong=\"H5650\"* Ahimaaz and|strong=\"H7725\"* Jonathan|strong=\"H3083\"*?”" + }, + { + "verseNum": 21, + "text": "After|strong=\"H5921\"* they|strong=\"H3588\"* had|strong=\"H1961\"* departed|strong=\"H3212\"*, they|strong=\"H3588\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* well and|strong=\"H6965\"* went|strong=\"H3212\"* and|strong=\"H6965\"* told|strong=\"H5046\"* King|strong=\"H4428\"* David|strong=\"H1732\"*; and|strong=\"H6965\"* they|strong=\"H3588\"* said to|strong=\"H3212\"* David|strong=\"H1732\"*, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* pass|strong=\"H5674\"* quickly|strong=\"H4120\"* over|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*; for|strong=\"H3588\"* thus|strong=\"H3602\"* has|strong=\"H1961\"* Ahithophel counseled|strong=\"H3289\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H3605\"*, and|strong=\"H6965\"* they|strong=\"H3808\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*. By|strong=\"H5674\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* light there|strong=\"H3605\"* lacked|strong=\"H5737\"* not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H5971\"* them|strong=\"H5674\"* who|strong=\"H3605\"* had|strong=\"H1732\"* not|strong=\"H3808\"* gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3588\"* Ahithophel saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H7200\"* counsel|strong=\"H6098\"* was|strong=\"H5892\"* not|strong=\"H3808\"* followed|strong=\"H3212\"*, he|strong=\"H3588\"* saddled|strong=\"H2280\"* his|strong=\"H7200\"* donkey|strong=\"H2543\"*, arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* home|strong=\"H1004\"* to|strong=\"H4191\"* his|strong=\"H7200\"* city|strong=\"H5892\"*, set|strong=\"H6965\"* his|strong=\"H7200\"* house|strong=\"H1004\"* in|strong=\"H6213\"* order|strong=\"H6680\"*, and|strong=\"H6965\"* hanged|strong=\"H2614\"* himself|strong=\"H6213\"*; and|strong=\"H6965\"* he|strong=\"H3588\"* died|strong=\"H4191\"*, and|strong=\"H6965\"* was|strong=\"H5892\"* buried|strong=\"H6912\"* in|strong=\"H6213\"* the|strong=\"H7200\"* tomb|strong=\"H6913\"* of|strong=\"H1004\"* his|strong=\"H7200\"* father." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H5674\"* David|strong=\"H1732\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Mahanaim|strong=\"H4266\"*. Absalom passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 25, + "text": "Absalom set|strong=\"H7760\"* Amasa|strong=\"H6021\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"*. Now|strong=\"H7760\"* Amasa|strong=\"H6021\"* was|strong=\"H8034\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Ithra|strong=\"H3501\"* the|strong=\"H5921\"* Israelite|strong=\"H3481\"*, who|strong=\"H1121\"* went|strong=\"H1121\"* in|strong=\"H5921\"* to|strong=\"H5921\"* Abigail the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, sister to|strong=\"H5921\"* Zeruiah|strong=\"H6870\"*, Joab|strong=\"H3097\"*’s mother." + }, + { + "verseNum": 26, + "text": "Israel|strong=\"H3478\"* and|strong=\"H3478\"* Absalom encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H3478\"* land of|strong=\"H3478\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Mahanaim|strong=\"H4266\"*, Shobi|strong=\"H7629\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"* of|strong=\"H1121\"* Rabbah|strong=\"H7237\"* of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammiel|strong=\"H5988\"* of|strong=\"H1121\"* Lodebar|strong=\"H3810\"*, and|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H1961\"* Gileadite|strong=\"H1569\"* of|strong=\"H1121\"* Rogelim|strong=\"H7274\"*," + }, + { + "verseNum": 28, + "text": "brought beds|strong=\"H4904\"*, basins|strong=\"H5592\"*, earthen|strong=\"H3335\"* vessels|strong=\"H3627\"*, wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, meal|strong=\"H7058\"*, parched|strong=\"H7039\"* grain|strong=\"H7039\"*, beans|strong=\"H6321\"*, lentils|strong=\"H5742\"*, roasted|strong=\"H7039\"* grain|strong=\"H7039\"*," + }, + { + "verseNum": 29, + "text": "honey|strong=\"H1706\"*, butter|strong=\"H2529\"*, sheep|strong=\"H6629\"*, and|strong=\"H5971\"* cheese|strong=\"H8194\"* of|strong=\"H4057\"* the|strong=\"H3588\"* herd|strong=\"H1241\"*, for|strong=\"H3588\"* David|strong=\"H1732\"* and|strong=\"H5971\"* for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H1732\"* to|strong=\"H1732\"* eat; for|strong=\"H3588\"* they|strong=\"H3588\"* said, “The|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H5971\"* hungry|strong=\"H7457\"*, weary|strong=\"H5889\"*, and|strong=\"H5971\"* thirsty|strong=\"H6771\"* in|strong=\"H6629\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* counted|strong=\"H6485\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3967\"* set|strong=\"H7760\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* people|strong=\"H5971\"* out|strong=\"H3318\"*, a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, Joab|strong=\"H3097\"*’s brother, and|strong=\"H1121\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* under|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ittai the|strong=\"H7971\"* Gittite|strong=\"H1663\"*. The|strong=\"H7971\"* king|strong=\"H4428\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H7971\"* people|strong=\"H5971\"*, “I|strong=\"H1571\"* will|strong=\"H4428\"* also|strong=\"H1571\"* surely|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* you|strong=\"H7971\"* myself|strong=\"H1571\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* said|strong=\"H3318\"*, “You|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, for|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* care|strong=\"H7760\"* for|strong=\"H3588\"* us|strong=\"H7760\"*, neither|strong=\"H3808\"* if|strong=\"H3588\"* half|strong=\"H2677\"* of|strong=\"H5892\"* us|strong=\"H7760\"* die|strong=\"H4191\"*, will|strong=\"H1961\"* they|strong=\"H3588\"* care|strong=\"H7760\"* for|strong=\"H3588\"* us|strong=\"H7760\"*. But|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* worth|strong=\"H3644\"* ten|strong=\"H6235\"* thousand of|strong=\"H5892\"* us|strong=\"H7760\"*. Therefore|strong=\"H6258\"* now|strong=\"H6258\"* it|strong=\"H7760\"* is|strong=\"H3820\"* better|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* ready|strong=\"H2896\"* to|strong=\"H3318\"* help|strong=\"H5826\"* us|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H3588\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3381\"* them|strong=\"H3027\"*, “I|strong=\"H3027\"* will|strong=\"H4428\"* do|strong=\"H6213\"* what|strong=\"H6213\"* seems|strong=\"H3190\"* best|strong=\"H3190\"* to|strong=\"H3381\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Joab|strong=\"H3097\"* and|strong=\"H4428\"* Abishai and|strong=\"H4428\"* Ittai, saying|strong=\"H1697\"*, “Deal gently for|strong=\"H5921\"* my|strong=\"H8085\"* sake|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* when|strong=\"H8085\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* concerning|strong=\"H5921\"* Absalom." + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* the|strong=\"H3318\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* field|strong=\"H7704\"* against|strong=\"H7125\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3318\"* forest|strong=\"H3293\"* of|strong=\"H7704\"* Ephraim." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* struck|strong=\"H5062\"* there|strong=\"H8033\"* before|strong=\"H6440\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, and|strong=\"H3478\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4046\"* there|strong=\"H8033\"* that|strong=\"H5971\"* day|strong=\"H3117\"* of|strong=\"H3117\"* twenty|strong=\"H6242\"* thousand men|strong=\"H1419\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* there|strong=\"H8033\"* spread|strong=\"H6327\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* country, and|strong=\"H3117\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* devoured more|strong=\"H7235\"* people|strong=\"H5971\"* that|strong=\"H5971\"* day|strong=\"H3117\"* than|strong=\"H7235\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* devoured." + }, + { + "verseNum": 9, + "text": "Absalom happened|strong=\"H7122\"* to|strong=\"H5921\"* meet|strong=\"H7122\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*. Absalom was|strong=\"H1732\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* his|strong=\"H5414\"* mule|strong=\"H6505\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* mule|strong=\"H6505\"* went|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H6440\"* thick|strong=\"H7730\"* boughs|strong=\"H7730\"* of|strong=\"H7218\"* a|strong=\"H3068\"* great|strong=\"H1419\"* oak; and|strong=\"H1419\"* his|strong=\"H5414\"* head|strong=\"H7218\"* caught|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H7218\"* the|strong=\"H6440\"* oak, and|strong=\"H1419\"* he|strong=\"H1732\"* was|strong=\"H1732\"* hanging|strong=\"H5414\"* between|strong=\"H5921\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H1419\"* earth|strong=\"H8064\"*; and|strong=\"H1419\"* the|strong=\"H6440\"* mule|strong=\"H6505\"* that|strong=\"H5414\"* was|strong=\"H1732\"* under|strong=\"H8478\"* him|strong=\"H5414\"* went|strong=\"H5674\"* on|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* certain man|strong=\"H7200\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* told|strong=\"H5046\"* Joab|strong=\"H3097\"*, and|strong=\"H7200\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* saw|strong=\"H7200\"* Absalom hanging|strong=\"H8518\"* in|strong=\"H7200\"* an|strong=\"H7200\"* oak.”" + }, + { + "verseNum": 11, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* man|strong=\"H7200\"* who|strong=\"H5221\"* told|strong=\"H5046\"* him|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, you|strong=\"H5414\"* saw|strong=\"H7200\"* it|strong=\"H5414\"*, and|strong=\"H3701\"* why|strong=\"H4069\"* didn’t you|strong=\"H5414\"* strike|strong=\"H5221\"* him|strong=\"H5414\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground? I|strong=\"H5414\"* would have|strong=\"H7200\"* given|strong=\"H5414\"* you|strong=\"H5414\"* ten|strong=\"H6235\"* pieces of|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* sash.”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* man|strong=\"H5288\"* said to|strong=\"H7971\"* Joab|strong=\"H3097\"*, “Though|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* receive|strong=\"H8254\"* a|strong=\"H3068\"* thousand pieces of|strong=\"H1121\"* silver|strong=\"H3701\"* in|strong=\"H5921\"* my|strong=\"H8104\"* hand|strong=\"H3027\"*, I|strong=\"H3588\"* still|strong=\"H3588\"* wouldn’t stretch|strong=\"H7971\"* out|strong=\"H7971\"* my|strong=\"H8104\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H5921\"* hearing the|strong=\"H5921\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"* and|strong=\"H1121\"* Abishai and|strong=\"H1121\"* Ittai, saying, ‘Beware|strong=\"H8104\"* that|strong=\"H3588\"* no|strong=\"H3808\"* one|strong=\"H3808\"* touch the|strong=\"H5921\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom.’" + }, + { + "verseNum": 13, + "text": "Otherwise|strong=\"H3808\"*, if I|strong=\"H1697\"* had|strong=\"H4428\"* dealt|strong=\"H6213\"* falsely|strong=\"H8267\"* against|strong=\"H4480\"* his|strong=\"H3605\"* life|strong=\"H5315\"* (and|strong=\"H4428\"* there|strong=\"H4480\"* is|strong=\"H5315\"* no|strong=\"H3808\"* matter|strong=\"H1697\"* hidden|strong=\"H3582\"* from|strong=\"H4480\"* the|strong=\"H3605\"* king|strong=\"H4428\"*), then|strong=\"H6213\"* you|strong=\"H3605\"* yourself|strong=\"H5315\"* would|strong=\"H1697\"* have|strong=\"H1697\"* set|strong=\"H3320\"* yourself|strong=\"H5315\"* against|strong=\"H4480\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3947\"* Joab|strong=\"H3097\"* said|strong=\"H3651\"*, “I|strong=\"H3651\"*’m not|strong=\"H3808\"* going to|strong=\"H3820\"* wait|strong=\"H3176\"* like|strong=\"H3651\"* this|strong=\"H3651\"* with|strong=\"H6440\"* you|strong=\"H6440\"*.” He|strong=\"H3651\"* took|strong=\"H3947\"* three|strong=\"H7969\"* darts|strong=\"H7626\"* in|strong=\"H6440\"* his|strong=\"H3947\"* hand|strong=\"H3709\"* and|strong=\"H6440\"* thrust|strong=\"H8628\"* them|strong=\"H6440\"* through|strong=\"H3820\"* Absalom’s heart|strong=\"H3820\"* while|strong=\"H5750\"* he|strong=\"H3651\"* was|strong=\"H3820\"* still|strong=\"H5750\"* alive|strong=\"H2416\"* in|strong=\"H6440\"* the|strong=\"H6440\"* middle|strong=\"H3820\"* of|strong=\"H7626\"* the|strong=\"H6440\"* oak." + }, + { + "verseNum": 15, + "text": "Ten|strong=\"H6235\"* young|strong=\"H5288\"* men|strong=\"H5288\"* who|strong=\"H5288\"* bore|strong=\"H5375\"* Joab|strong=\"H3097\"*’s armor|strong=\"H3627\"* surrounded|strong=\"H5437\"* and|strong=\"H5288\"* struck|strong=\"H5221\"* Absalom, and|strong=\"H5288\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 16, + "text": "Joab|strong=\"H3097\"* blew|strong=\"H8628\"* the|strong=\"H3588\"* trumpet|strong=\"H7782\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* pursuing|strong=\"H7291\"* after|strong=\"H7291\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* Joab|strong=\"H3097\"* held|strong=\"H3097\"* the|strong=\"H3588\"* people|strong=\"H5971\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* took|strong=\"H3947\"* Absalom and|strong=\"H3478\"* cast|strong=\"H7993\"* him|strong=\"H5921\"* into|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* pit|strong=\"H6354\"* in|strong=\"H5921\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*, and|strong=\"H3478\"* raised over|strong=\"H5921\"* him|strong=\"H5921\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* heap|strong=\"H1530\"* of|strong=\"H5921\"* stones. Then|strong=\"H3947\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"*, each|strong=\"H3605\"* to|strong=\"H3478\"* his|strong=\"H3605\"* own tent." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* Absalom in|strong=\"H5921\"* his|strong=\"H7121\"* lifetime|strong=\"H3117\"* had|strong=\"H4428\"* taken|strong=\"H3947\"* and|strong=\"H1121\"* reared up|strong=\"H5324\"* for|strong=\"H3588\"* himself|strong=\"H3027\"* the|strong=\"H5921\"* pillar|strong=\"H4678\"* which|strong=\"H2088\"* is|strong=\"H2088\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s valley|strong=\"H6010\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H7121\"*, “I|strong=\"H3588\"* have|strong=\"H1121\"* no|strong=\"H3947\"* son|strong=\"H1121\"* to|strong=\"H5704\"* keep|strong=\"H2142\"* my|strong=\"H3947\"* name|strong=\"H8034\"* in|strong=\"H5921\"* memory|strong=\"H8034\"*.” He|strong=\"H3588\"* called|strong=\"H7121\"* the|strong=\"H5921\"* pillar|strong=\"H4678\"* after|strong=\"H5921\"* his|strong=\"H7121\"* own|strong=\"H3027\"* name|strong=\"H8034\"*. It|strong=\"H7121\"* is|strong=\"H2088\"* called|strong=\"H7121\"* Absalom’s monument|strong=\"H3027\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4428\"* Ahimaaz the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* now|strong=\"H4994\"* run|strong=\"H7323\"* and|strong=\"H1121\"* carry|strong=\"H1319\"* the|strong=\"H3588\"* king|strong=\"H4428\"* news|strong=\"H1319\"*, how|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H8199\"* him|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3068\"* enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 20, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H4191\"* him|strong=\"H5921\"*, “You|strong=\"H3588\"* must|strong=\"H4191\"* not|strong=\"H3808\"* be|strong=\"H4191\"* the|strong=\"H5921\"* bearer|strong=\"H1319\"* of|strong=\"H1121\"* news|strong=\"H1319\"* today|strong=\"H3117\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H4191\"* carry|strong=\"H1319\"* news|strong=\"H1319\"* another|strong=\"H2088\"* day|strong=\"H3117\"*. But|strong=\"H3588\"* today|strong=\"H3117\"* you|strong=\"H3588\"* must|strong=\"H4191\"* carry|strong=\"H1319\"* no|strong=\"H3808\"* news|strong=\"H1319\"*, because|strong=\"H3588\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"* is|strong=\"H2088\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H4428\"* Joab|strong=\"H3097\"* said to|strong=\"H3212\"* the|strong=\"H7200\"* Cushite|strong=\"H3569\"*, “Go|strong=\"H3212\"*, tell|strong=\"H5046\"* the|strong=\"H7200\"* king|strong=\"H4428\"* what|strong=\"H7200\"* you|strong=\"H5046\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*!” The|strong=\"H7200\"* Cushite|strong=\"H3569\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H3212\"* Joab|strong=\"H3097\"*, and|strong=\"H4428\"* ran|strong=\"H7323\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1961\"* Ahimaaz the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"* said yet|strong=\"H5750\"* again|strong=\"H5750\"* to|strong=\"H1961\"* Joab|strong=\"H3097\"*, “But|strong=\"H1961\"* come|strong=\"H1961\"* what|strong=\"H4100\"* may|strong=\"H1961\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* also|strong=\"H1571\"* run|strong=\"H7323\"* after|strong=\"H1961\"* the|strong=\"H1961\"* Cushite|strong=\"H3569\"*.”" + }, + { + "verseNum": 23, + "text": "“But|strong=\"H1961\"* come|strong=\"H1961\"* what|strong=\"H4100\"* may|strong=\"H1961\"*,” he|strong=\"H4100\"* said, “I|strong=\"H4100\"* will|strong=\"H1961\"* run|strong=\"H7323\"*.”" + }, + { + "verseNum": 24, + "text": "Now|strong=\"H2009\"* David|strong=\"H1732\"* was|strong=\"H1732\"* sitting|strong=\"H3427\"* between|strong=\"H3427\"* the|strong=\"H7200\"* two|strong=\"H8147\"* gates|strong=\"H8179\"*; and|strong=\"H3212\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* went|strong=\"H3212\"* up|strong=\"H5375\"* to|strong=\"H3212\"* the|strong=\"H7200\"* roof|strong=\"H1406\"* of|strong=\"H3427\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* to|strong=\"H3212\"* the|strong=\"H7200\"* wall|strong=\"H2346\"*, and|strong=\"H3212\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H3212\"* looked|strong=\"H7200\"*, and|strong=\"H3212\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* running|strong=\"H7323\"* alone." + }, + { + "verseNum": 25, + "text": "The|strong=\"H7121\"* watchman|strong=\"H6822\"* shouted|strong=\"H7121\"* and|strong=\"H1980\"* told|strong=\"H5046\"* the|strong=\"H7121\"* king|strong=\"H4428\"*. The|strong=\"H7121\"* king|strong=\"H4428\"* said|strong=\"H7121\"*, “If he|strong=\"H1980\"* is|strong=\"H4428\"* alone, there is|strong=\"H4428\"* news|strong=\"H1309\"* in|strong=\"H1980\"* his|strong=\"H7121\"* mouth|strong=\"H6310\"*.” He|strong=\"H1980\"* came|strong=\"H1980\"* closer and|strong=\"H1980\"* closer." + }, + { + "verseNum": 26, + "text": "The|strong=\"H7200\"* watchman|strong=\"H6822\"* saw|strong=\"H7200\"* another|strong=\"H2088\"* man|strong=\"H2088\"* running|strong=\"H7323\"*; and|strong=\"H4428\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* called|strong=\"H7121\"* to|strong=\"H4428\"* the|strong=\"H7200\"* gatekeeper|strong=\"H7778\"* and|strong=\"H4428\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H2088\"* running|strong=\"H7323\"* alone!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H7200\"* watchman|strong=\"H6822\"* said, “I|strong=\"H7200\"* think|strong=\"H7200\"* the|strong=\"H7200\"* running|strong=\"H4794\"* of|strong=\"H1121\"* the|strong=\"H7200\"* first|strong=\"H7223\"* one|strong=\"H2088\"* is|strong=\"H2088\"* like|strong=\"H1121\"* the|strong=\"H7200\"* running|strong=\"H4794\"* of|strong=\"H1121\"* Ahimaaz the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*.”" + }, + { + "verseNum": 28, + "text": "Ahimaaz called|strong=\"H7121\"*, and|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H5375\"* king|strong=\"H4428\"*, “All|strong=\"H1288\"* is|strong=\"H3068\"* well|strong=\"H7965\"*.” He|strong=\"H3068\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H7121\"* the|strong=\"H5375\"* king|strong=\"H4428\"* with|strong=\"H3068\"* his|strong=\"H5375\"* face to|strong=\"H3068\"* the|strong=\"H5375\"* earth, and|strong=\"H3068\"* said|strong=\"H7121\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5462\"* up|strong=\"H5375\"* the|strong=\"H5375\"* men|strong=\"H7121\"* who|strong=\"H3068\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H5375\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* said, “Is|strong=\"H4100\"* it|strong=\"H7200\"* well|strong=\"H7965\"* with|strong=\"H3045\"* the|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom?”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H3541\"* king|strong=\"H4428\"* said, “Come|strong=\"H5437\"* and|strong=\"H4428\"* stand|strong=\"H5975\"* here|strong=\"H3541\"*.” He|strong=\"H3541\"* came|strong=\"H4428\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3605\"* Cushite|strong=\"H3569\"* came|strong=\"H3068\"*. The|strong=\"H3605\"* Cushite|strong=\"H3569\"* said, “Good|strong=\"H1319\"* news|strong=\"H1319\"* for|strong=\"H3588\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* avenged|strong=\"H8199\"* you|strong=\"H3588\"* today|strong=\"H3117\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H1961\"* the|strong=\"H3605\"* Cushite|strong=\"H3569\"*, “Is|strong=\"H3605\"* it|strong=\"H5921\"* well|strong=\"H7965\"* with|strong=\"H5921\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* Absalom?”" + }, + { + "verseNum": 33, + "text": "The king was much moved, and went up to the room over the gate and wept. As he went, he said, “My son Absalom! My son, my son Absalom! I wish I had died instead of you, Absalom, my son, my son!”" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Joab was|strong=\"H4428\"* told, “Behold, the|strong=\"H5921\"* king|strong=\"H4428\"* weeps|strong=\"H1058\"* and|strong=\"H1121\"* mourns for|strong=\"H5921\"* Absalom.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* victory that|strong=\"H4428\"* day was|strong=\"H4428\"* turned into|strong=\"H5921\"* mourning among|strong=\"H5921\"* all|strong=\"H1058\"* the|strong=\"H5921\"* people, for|strong=\"H5921\"* the|strong=\"H5921\"* people heard|strong=\"H5046\"* it|strong=\"H5921\"* said that|strong=\"H4428\"* day, “The|strong=\"H5921\"* king|strong=\"H4428\"* grieves for|strong=\"H5921\"* his|strong=\"H5921\"* son.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* sneaked into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H1931\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H3117\"* ashamed steal away|strong=\"H3605\"* when|strong=\"H3588\"* they|strong=\"H3588\"* flee in|strong=\"H5921\"* battle|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* king covered his|strong=\"H3117\"* face, and|strong=\"H3117\"* the|strong=\"H3117\"* king cried|strong=\"H5892\"* with|strong=\"H3117\"* a|strong=\"H3068\"* loud voice, “My|strong=\"H1589\"* son Absalom, Absalom, my|strong=\"H1589\"* son, my|strong=\"H1589\"* son!”" + }, + { + "verseNum": 5, + "text": "Joab came|strong=\"H4428\"* into the|strong=\"H6440\"* house to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said, “Today you|strong=\"H6440\"* have|strong=\"H1121\"* shamed the|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H1121\"* all|strong=\"H1419\"* your|strong=\"H6440\"* servants|strong=\"H6440\"* who|strong=\"H1121\"* today have|strong=\"H1121\"* saved your|strong=\"H6440\"* life, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H6440\"* daughters|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* wives, and|strong=\"H1121\"* the|strong=\"H6440\"* lives of|strong=\"H1121\"* your|strong=\"H6440\"* concubines;" + }, + { + "verseNum": 6, + "text": "in|strong=\"H1004\"* that|strong=\"H3605\"* you|strong=\"H6440\"* love those|strong=\"H3605\"* who|strong=\"H3605\"* hate you|strong=\"H6440\"* and|strong=\"H1121\"* hate those|strong=\"H3605\"* who|strong=\"H3605\"* love you|strong=\"H6440\"*. For|strong=\"H6440\"* you|strong=\"H6440\"* have|strong=\"H1121\"* declared today|strong=\"H3117\"* that|strong=\"H3605\"* princes and|strong=\"H1121\"* servants|strong=\"H5650\"* are|strong=\"H3117\"* nothing|strong=\"H3605\"* to|strong=\"H6440\"* you|strong=\"H6440\"*. For|strong=\"H6440\"* today|strong=\"H3117\"* I|strong=\"H3117\"* perceive that|strong=\"H3605\"* if|strong=\"H1121\"* Absalom had|strong=\"H4428\"* lived|strong=\"H5315\"* and|strong=\"H1121\"* we|strong=\"H3068\"* had|strong=\"H4428\"* all|strong=\"H3605\"* died today|strong=\"H3117\"*, then|strong=\"H4428\"* it|strong=\"H6440\"* would|strong=\"H5315\"* have|strong=\"H1121\"* pleased you|strong=\"H6440\"* well." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3117\"* therefore|strong=\"H3588\"* arise, go out|strong=\"H3045\"* and|strong=\"H3117\"* speak to|strong=\"H4191\"* comfort your|strong=\"H3605\"* servants|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* swear|strong=\"H3588\"* by|strong=\"H3117\"* Yahweh|strong=\"H3068\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* don’t go out|strong=\"H3045\"*, not|strong=\"H3045\"* a|strong=\"H3068\"* man|strong=\"H4191\"* will|strong=\"H5650\"* stay with|strong=\"H3045\"* you|strong=\"H3588\"* this|strong=\"H3588\"* night. That|strong=\"H3588\"* would|strong=\"H3863\"* be|strong=\"H4191\"* worse to|strong=\"H4191\"* you|strong=\"H3588\"* than|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil that|strong=\"H3588\"* has|strong=\"H5650\"* happened to|strong=\"H4191\"* you|strong=\"H3588\"* from|strong=\"H3117\"* your|strong=\"H3605\"* youth until|strong=\"H3588\"* now|strong=\"H3117\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* king|strong=\"H5921\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* sat in|strong=\"H5921\"* the|strong=\"H3605\"* gate. The|strong=\"H3605\"* people|strong=\"H1696\"* were|strong=\"H5650\"* all|strong=\"H3605\"* told|strong=\"H1696\"*, “Behold, the|strong=\"H3605\"* king|strong=\"H5921\"* is|strong=\"H3068\"* sitting in|strong=\"H5921\"* the|strong=\"H3605\"* gate.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1696\"* came|strong=\"H3318\"* before|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H5921\"*. Now|strong=\"H6258\"* Israel had|strong=\"H3068\"* fled every|strong=\"H3605\"* man|strong=\"H7451\"* to|strong=\"H1696\"* his|strong=\"H3605\"* tent." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H3478\"* at|strong=\"H3427\"* strife throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “The|strong=\"H3605\"* king|strong=\"H4428\"* delivered us|strong=\"H5046\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hand of|strong=\"H4428\"* our|strong=\"H3605\"* enemies|strong=\"H6965\"*, and|strong=\"H6965\"* he|strong=\"H3605\"* saved us|strong=\"H5046\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hand of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines; and|strong=\"H6965\"* now|strong=\"H2009\"* he|strong=\"H3605\"* has|strong=\"H3478\"* fled|strong=\"H5127\"* out|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H6440\"* from|strong=\"H6440\"* Absalom." + }, + { + "verseNum": 10, + "text": "Absalom, whom|strong=\"H5971\"* we|strong=\"H3068\"* anointed over|strong=\"H5921\"* us|strong=\"H5921\"*, is|strong=\"H1931\"* dead in|strong=\"H5921\"* battle. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* why|strong=\"H5921\"* don’t you|strong=\"H3605\"* speak a|strong=\"H3068\"* word of|strong=\"H4428\"* bringing the|strong=\"H3605\"* king|strong=\"H4428\"* back?”" + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David sent|strong=\"H7725\"* to|strong=\"H7725\"* Zadok and|strong=\"H7725\"* to|strong=\"H7725\"* Abiathar the|strong=\"H5921\"* priests, saying, “Speak|strong=\"H2790\"* to|strong=\"H7725\"* the|strong=\"H5921\"* elders of|strong=\"H4428\"* Judah, saying, ‘Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H5921\"* the|strong=\"H5921\"* last to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* back|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house, since|strong=\"H6258\"* the|strong=\"H5921\"* speech of|strong=\"H4428\"* all|strong=\"H5921\"* Israel|strong=\"H4421\"* has|strong=\"H4428\"* come|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* him|strong=\"H5921\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house?" + }, + { + "verseNum": 12, + "text": "You|strong=\"H3605\"* are|strong=\"H3478\"* my|strong=\"H3605\"* brothers. You|strong=\"H3605\"* are|strong=\"H3478\"* my|strong=\"H3605\"* bone and|strong=\"H3063\"* my|strong=\"H3605\"* flesh. Why|strong=\"H4100\"* then|strong=\"H1961\"* are|strong=\"H3478\"* you|strong=\"H3605\"* the|strong=\"H3605\"* last to|strong=\"H1696\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*?’" + }, + { + "verseNum": 13, + "text": "Say|strong=\"H7725\"* to|strong=\"H7725\"* Amasa, ‘Aren’t you|strong=\"H7725\"* my|strong=\"H7725\"* bone|strong=\"H6106\"* and|strong=\"H7725\"* my|strong=\"H7725\"* flesh|strong=\"H1320\"*? God do|strong=\"H4100\"* so|strong=\"H1961\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* more|strong=\"H7725\"* also|strong=\"H4428\"*, if|strong=\"H1961\"* you|strong=\"H7725\"* aren’t captain of|strong=\"H4428\"* the|strong=\"H7725\"* army before|strong=\"H1961\"* me|strong=\"H7725\"* continually instead of|strong=\"H4428\"* Joab.’”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3117\"* bowed the|strong=\"H3605\"* heart of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H6213\"* of|strong=\"H3117\"* Judah, even|strong=\"H3808\"* as|strong=\"H3117\"* one|strong=\"H3605\"* man|strong=\"H3605\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* they|strong=\"H3117\"* sent to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H6440\"*, saying, “Return|strong=\"H8478\"*, you|strong=\"H6440\"* and|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* servants|strong=\"H6440\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* returned|strong=\"H7725\"*, and|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* Jordan. Judah|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* Gilgal, to|strong=\"H7725\"* go|strong=\"H7971\"* to|strong=\"H7725\"* meet the|strong=\"H3605\"* king|strong=\"H4428\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan." + }, + { + "verseNum": 16, + "text": "Shimei the|strong=\"H7725\"* son of|strong=\"H4428\"* Gera, the|strong=\"H7725\"* Benjamite, who|strong=\"H3063\"* was|strong=\"H4428\"* of|strong=\"H4428\"* Bahurim, hurried and|strong=\"H3063\"* came|strong=\"H3212\"* down|strong=\"H3212\"* with|strong=\"H3212\"* the|strong=\"H7725\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* King|strong=\"H4428\"* David." + }, + { + "verseNum": 17, + "text": "There were|strong=\"H1121\"* a|strong=\"H3068\"* thousand men|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1145\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H1121\"* Ziba the|strong=\"H5973\"* servant of|strong=\"H1121\"* Saul’s house, and|strong=\"H1121\"* his|strong=\"H1732\"* fifteen sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H1732\"* twenty servants with|strong=\"H5973\"* him|strong=\"H5973\"*; and|strong=\"H1121\"* they|strong=\"H3063\"* went|strong=\"H3381\"* through the|strong=\"H5973\"* Jordan in|strong=\"H4428\"* the|strong=\"H5973\"* presence|strong=\"H5973\"* of|strong=\"H1121\"* the|strong=\"H5973\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* ferry boat went|strong=\"H4428\"* to|strong=\"H6440\"* bring over|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"*, and|strong=\"H1121\"* to|strong=\"H6440\"* do what he|strong=\"H2568\"* thought good|strong=\"H6743\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “Don’t let my|strong=\"H6213\"* lord impute iniquity to|strong=\"H6213\"* me|strong=\"H6440\"*, or|strong=\"H1121\"* remember that|strong=\"H4428\"* which|strong=\"H1004\"* your|strong=\"H6440\"* servant did|strong=\"H6213\"* perversely the|strong=\"H6440\"* day that|strong=\"H4428\"* my|strong=\"H6213\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H5674\"* out|strong=\"H6213\"* of|strong=\"H1121\"* Jerusalem, that|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* should|strong=\"H6213\"* take|strong=\"H5674\"* it|strong=\"H6213\"* to|strong=\"H6213\"* his|strong=\"H6440\"* heart." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3117\"* your|strong=\"H7760\"* servant|strong=\"H5650\"* knows that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H5650\"* sinned. Therefore|strong=\"H5650\"* behold, I|strong=\"H3117\"* have|strong=\"H5650\"* come|strong=\"H3318\"* today|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H3117\"* of|strong=\"H4428\"* all|strong=\"H3117\"* the|strong=\"H3117\"* house of|strong=\"H4428\"* Joseph to|strong=\"H3318\"* go|strong=\"H3318\"* down|strong=\"H7760\"* to|strong=\"H3318\"* meet|strong=\"H3318\"* my|strong=\"H7760\"* lord the|strong=\"H3117\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* Abishai the|strong=\"H3605\"* son of|strong=\"H4428\"* Zeruiah answered, “Shouldn’t Shimei be|strong=\"H3117\"* put|strong=\"H3381\"* to|strong=\"H3381\"* death for|strong=\"H3588\"* this|strong=\"H3588\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* cursed Yahweh|strong=\"H3068\"*’s anointed?”" + }, + { + "verseNum": 22, + "text": "David said|strong=\"H6030\"*, “What|strong=\"H2063\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H4191\"* do|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H4191\"* adversaries to|strong=\"H4191\"* me|strong=\"H6030\"* today? Shall|strong=\"H3068\"* any|strong=\"H3588\"* man|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* today in|strong=\"H3068\"* Israel? For|strong=\"H3588\"* don’t I|strong=\"H3588\"* know that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* king over|strong=\"H3068\"* Israel today?”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3478\"* Shimei, “You|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* die|strong=\"H4191\"*.” The|strong=\"H5921\"* king|strong=\"H4428\"* swore to|strong=\"H3478\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "Mephibosheth|strong=\"H3808\"* the|strong=\"H4191\"* son of|strong=\"H4428\"* Saul came|strong=\"H4428\"* down to|strong=\"H4191\"* meet the|strong=\"H4191\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* he|strong=\"H3808\"* had|strong=\"H4428\"* neither|strong=\"H3808\"* groomed his|strong=\"H8096\"* feet, nor|strong=\"H3808\"* trimmed his|strong=\"H8096\"* beard, nor|strong=\"H3808\"* washed his|strong=\"H8096\"* clothes, from|strong=\"H4191\"* the|strong=\"H4191\"* day the|strong=\"H4191\"* king|strong=\"H4428\"* departed until the|strong=\"H4191\"* day he|strong=\"H3808\"* came|strong=\"H4428\"* home in|strong=\"H4428\"* peace." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H4428\"* come|strong=\"H3212\"* to|strong=\"H5704\"* Jerusalem to|strong=\"H5704\"* meet|strong=\"H7125\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, the|strong=\"H6213\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* him|strong=\"H6213\"*, “Why|strong=\"H3808\"* didn’t you|strong=\"H3117\"* go|strong=\"H3212\"* with|strong=\"H6213\"* me|strong=\"H4480\"*, Mephibosheth|strong=\"H4648\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3588\"* answered, “My|strong=\"H1961\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, my|strong=\"H1961\"* servant deceived me|strong=\"H5973\"*. For|strong=\"H3588\"* your|strong=\"H3588\"* servant said, ‘I|strong=\"H3588\"* will|strong=\"H1961\"* saddle a|strong=\"H3068\"* donkey for|strong=\"H3588\"* myself|strong=\"H1980\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* ride on|strong=\"H1980\"* it|strong=\"H3588\"* and|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*,’ because|strong=\"H3588\"* your|strong=\"H3588\"* servant is|strong=\"H4100\"* lame." + }, + { + "verseNum": 27, + "text": "He|strong=\"H3588\"* has|strong=\"H4428\"* slandered your|strong=\"H5921\"* servant|strong=\"H5650\"* to|strong=\"H3212\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, but|strong=\"H3588\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"* is|strong=\"H4428\"* as|strong=\"H3588\"* an|strong=\"H3588\"* angel of|strong=\"H4428\"* God. Therefore|strong=\"H5921\"* do what|strong=\"H3588\"* is|strong=\"H4428\"* good in|strong=\"H5921\"* your|strong=\"H5921\"* eyes." + }, + { + "verseNum": 28, + "text": "For|strong=\"H6213\"* all|strong=\"H6213\"* my|strong=\"H6213\"* father’s house were|strong=\"H5869\"* but|strong=\"H4428\"* dead men|strong=\"H5650\"* before|strong=\"H5869\"* my|strong=\"H6213\"* lord the|strong=\"H6213\"* king|strong=\"H4428\"*; yet you|strong=\"H6213\"* set|strong=\"H6213\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* among those|strong=\"H6213\"* who|strong=\"H5650\"* ate at|strong=\"H4428\"* your|strong=\"H6213\"* own|strong=\"H5869\"* table. What|strong=\"H2896\"* right|strong=\"H5869\"* therefore|strong=\"H5650\"* have|strong=\"H5869\"* I|strong=\"H5650\"* yet that|strong=\"H4397\"* I|strong=\"H5650\"* should|strong=\"H6213\"* appeal any|strong=\"H6213\"* more|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H1961\"* him|strong=\"H3605\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* speak any|strong=\"H3605\"* more|strong=\"H5750\"* of|strong=\"H4428\"* your|strong=\"H3605\"* matters? I|strong=\"H3588\"* say, you|strong=\"H3588\"* and|strong=\"H4428\"* Ziba divide the|strong=\"H3605\"* land.”" + }, + { + "verseNum": 30, + "text": "Mephibosheth said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1697\"* king|strong=\"H4428\"*, “Yes, let him|strong=\"H4428\"* take|strong=\"H2505\"* all|strong=\"H1697\"*, because|strong=\"H1697\"* my|strong=\"H1696\"* lord the|strong=\"H1697\"* king|strong=\"H4428\"* has|strong=\"H4428\"* come|strong=\"H5750\"* in|strong=\"H4428\"* peace to|strong=\"H1696\"* his|strong=\"H4428\"* own house.”" + }, + { + "verseNum": 31, + "text": "Barzillai the|strong=\"H3605\"* Gileadite came|strong=\"H4428\"* down from|strong=\"H3947\"* Rogelim; and|strong=\"H4428\"* he|strong=\"H3605\"* went|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan with|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H4428\"* conduct him|strong=\"H3947\"* over|strong=\"H4428\"* the|strong=\"H3605\"* Jordan." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H4428\"* Barzillai|strong=\"H1271\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very aged man|strong=\"H5674\"*, even eighty years old. He|strong=\"H7971\"* had|strong=\"H4428\"* provided the|strong=\"H5674\"* king|strong=\"H4428\"* with|strong=\"H3381\"* sustenance while|strong=\"H3383\"* he|strong=\"H7971\"* stayed at|strong=\"H4428\"* Mahanaim, for|strong=\"H7971\"* he|strong=\"H7971\"* was|strong=\"H4428\"* a|strong=\"H3068\"* very great man|strong=\"H5674\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H1121\"* Barzillai|strong=\"H1271\"*, “Come over|strong=\"H4428\"* with|strong=\"H4428\"* me|strong=\"H3588\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H4428\"* sustain|strong=\"H3557\"* you|strong=\"H3588\"* with|strong=\"H4428\"* me|strong=\"H3588\"* in|strong=\"H8141\"* Jerusalem.”" + }, + { + "verseNum": 34, + "text": "Barzillai|strong=\"H1271\"* said to|strong=\"H3389\"* the|strong=\"H5674\"* king|strong=\"H4428\"*, “How many are|strong=\"H4428\"* the|strong=\"H5674\"* days of|strong=\"H4428\"* the|strong=\"H5674\"* years of|strong=\"H4428\"* my|strong=\"H5674\"* life, that|strong=\"H4428\"* I should|strong=\"H4428\"* go|strong=\"H5674\"* up|strong=\"H4428\"* with|strong=\"H3389\"* the|strong=\"H5674\"* king|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 35, + "text": "I|strong=\"H3588\"* am eighty years|strong=\"H3117\"* old|strong=\"H2416\"*, today|strong=\"H3117\"*. Can|strong=\"H4100\"* I|strong=\"H3588\"* discern between good|strong=\"H4100\"* and|strong=\"H4428\"* bad? Can|strong=\"H4100\"* your|strong=\"H3588\"* servant taste what|strong=\"H4100\"* I|strong=\"H3588\"* eat or|strong=\"H3117\"* what|strong=\"H4100\"* I|strong=\"H3588\"* drink? Can|strong=\"H4100\"* I|strong=\"H3588\"* hear the|strong=\"H3588\"* voice of|strong=\"H4428\"* singing men|strong=\"H8147\"* and|strong=\"H4428\"* singing women any|strong=\"H3588\"* more|strong=\"H3588\"*? Why|strong=\"H4100\"* then|strong=\"H4428\"* should|strong=\"H4100\"* your|strong=\"H3588\"* servant be|strong=\"H3117\"* a|strong=\"H3068\"* burden to|strong=\"H5927\"* my|strong=\"H5927\"* lord the|strong=\"H3588\"* king|strong=\"H4428\"*?" + }, + { + "verseNum": 36, + "text": "Your|strong=\"H8085\"* servant|strong=\"H5650\"* will|strong=\"H1961\"* just go|strong=\"H1961\"* over|strong=\"H4428\"* the|strong=\"H8085\"* Jordan with|strong=\"H3045\"* the|strong=\"H8085\"* king|strong=\"H4428\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H8085\"* king|strong=\"H4428\"* repay me|strong=\"H6963\"* with|strong=\"H3045\"* such|strong=\"H1961\"* a|strong=\"H3068\"* reward?" + }, + { + "verseNum": 37, + "text": "Please let your|strong=\"H5674\"* servant|strong=\"H5650\"* turn|strong=\"H5674\"* back again|strong=\"H5674\"*, that|strong=\"H4428\"* I|strong=\"H5650\"* may|strong=\"H4428\"* die in|strong=\"H4428\"* my|strong=\"H5674\"* own city, by|strong=\"H5674\"* the|strong=\"H5674\"* grave of|strong=\"H4428\"* my|strong=\"H5674\"* father and|strong=\"H4428\"* my|strong=\"H5674\"* mother. But|strong=\"H4428\"* behold, your|strong=\"H5674\"* servant|strong=\"H5650\"* Chimham; let him|strong=\"H1580\"* go|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H4428\"* my|strong=\"H5674\"* lord the|strong=\"H5674\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* do|strong=\"H4100\"* to|strong=\"H4428\"* him|strong=\"H1580\"* what|strong=\"H4100\"* shall|strong=\"H4428\"* seem good|strong=\"H1580\"* to|strong=\"H4428\"* you|strong=\"H4100\"*.”" + }, + { + "verseNum": 38, + "text": "The|strong=\"H6213\"* king|strong=\"H4428\"* answered|strong=\"H7725\"*, “Chimham|strong=\"H3643\"* shall|strong=\"H4428\"* go|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5973\"* me|strong=\"H4994\"*, and|strong=\"H7725\"* I|strong=\"H2009\"* will|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H7725\"* him|strong=\"H6213\"* that|strong=\"H4428\"* which|strong=\"H5869\"* shall|strong=\"H4428\"* seem|strong=\"H5869\"* good|strong=\"H2896\"* to|strong=\"H7725\"* you|strong=\"H7725\"*. Whatever|strong=\"H2896\"* you|strong=\"H7725\"* request of|strong=\"H4428\"* me|strong=\"H4994\"*, that|strong=\"H4428\"* I|strong=\"H2009\"* will|strong=\"H4428\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H7725\"*.”" + }, + { + "verseNum": 39, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5869\"* went|strong=\"H5674\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Jordan, and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5674\"* over|strong=\"H5921\"*. Then|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* kissed Barzillai and|strong=\"H4428\"* blessed him|strong=\"H5921\"*; and|strong=\"H4428\"* he|strong=\"H6213\"* returned to|strong=\"H6213\"* his|strong=\"H3605\"* own|strong=\"H5869\"* place|strong=\"H3605\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H7725\"* Gilgal, and|strong=\"H7725\"* Chimham went|strong=\"H5674\"* over|strong=\"H5674\"* with|strong=\"H5971\"* him|strong=\"H7725\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Judah brought|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* over|strong=\"H5674\"*, and|strong=\"H7725\"* also|strong=\"H4428\"* half the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H5971\"*." + }, + { + "verseNum": 41, + "text": "Behold, all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Why have|strong=\"H5971\"* our|strong=\"H3605\"* brothers the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* stolen you|strong=\"H3605\"* away|strong=\"H5674\"*, and|strong=\"H3063\"* brought|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3063\"* his|strong=\"H3605\"* household, over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan, and|strong=\"H3063\"* all|strong=\"H3605\"* David|strong=\"H5973\"*’s men|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*?”" + }, + { + "verseNum": 42, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* answered the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Because|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* is|strong=\"H2009\"* a|strong=\"H3068\"* close|strong=\"H5973\"* relative to|strong=\"H3478\"* us|strong=\"H3478\"*. Why|strong=\"H4069\"* then|strong=\"H2009\"* are|strong=\"H3478\"* you|strong=\"H3605\"* angry|strong=\"H5674\"* about|strong=\"H4428\"* this|strong=\"H5674\"* matter? Have|strong=\"H3478\"* we|strong=\"H3068\"* eaten at|strong=\"H3478\"* all|strong=\"H3605\"* at|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s cost? Or|strong=\"H1004\"* has|strong=\"H3478\"* he|strong=\"H3605\"* given us|strong=\"H3478\"* any|strong=\"H3605\"* gift?”" + }, + { + "verseNum": 43, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H1697\"*, “We|strong=\"H3588\"* have|strong=\"H3478\"* ten parts|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* we|strong=\"H3068\"* have|strong=\"H3478\"* also|strong=\"H3478\"* more|strong=\"H4480\"* claim to|strong=\"H3478\"* David than|strong=\"H4480\"* you|strong=\"H3588\"*. Why|strong=\"H4100\"* then|strong=\"H6030\"* did|strong=\"H4100\"* you|strong=\"H3588\"* despise us|strong=\"H5921\"*, that|strong=\"H3588\"* our|strong=\"H3605\"* advice|strong=\"H1697\"* should|strong=\"H4100\"* not|strong=\"H2088\"* be|strong=\"H1697\"* first|strong=\"H2088\"* had|strong=\"H3478\"* in|strong=\"H5921\"* bringing|strong=\"H5375\"* back our|strong=\"H3605\"* king|strong=\"H4428\"*?” The|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* fiercer than|strong=\"H4480\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H8033\"* happened|strong=\"H7122\"* to|strong=\"H3478\"* be|strong=\"H3808\"* there|strong=\"H8033\"* a|strong=\"H3068\"* wicked|strong=\"H1100\"* fellow|strong=\"H1121\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Sheba|strong=\"H7652\"* the|strong=\"H8628\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*, a|strong=\"H3068\"* Benjamite|strong=\"H1121\"*; and|strong=\"H1121\"* he|strong=\"H8033\"* blew|strong=\"H8628\"* the|strong=\"H8628\"* trumpet|strong=\"H7782\"*, and|strong=\"H1121\"* said, “We|strong=\"H8033\"* have|strong=\"H1121\"* no|strong=\"H3808\"* portion|strong=\"H2506\"* in|strong=\"H3478\"* David|strong=\"H1732\"*, neither|strong=\"H3808\"* have|strong=\"H1121\"* we|strong=\"H3068\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H8628\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*. Every|strong=\"H3478\"* man|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H1732\"* tents, Israel|strong=\"H3478\"*!”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* following David|strong=\"H1732\"*, and|strong=\"H1121\"* followed|strong=\"H5927\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*; but|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* joined|strong=\"H1692\"* with|strong=\"H3389\"* their|strong=\"H3605\"* king|strong=\"H4428\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* came|strong=\"H1961\"* to|strong=\"H5704\"* his|strong=\"H5414\"* house|strong=\"H1004\"* at|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* took|strong=\"H3947\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* women his|strong=\"H5414\"* concubines|strong=\"H6370\"*, whom he|strong=\"H3117\"* had|strong=\"H1961\"* left|strong=\"H3240\"* to|strong=\"H5704\"* keep|strong=\"H8104\"* the|strong=\"H5414\"* house|strong=\"H1004\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* custody and|strong=\"H4428\"* provided|strong=\"H3557\"* them|strong=\"H5414\"* with|strong=\"H1004\"* sustenance|strong=\"H3557\"*, but|strong=\"H3808\"* didn’t go|strong=\"H1961\"* in|strong=\"H1004\"* to|strong=\"H5704\"* them|strong=\"H5414\"*. So|strong=\"H3947\"* they|strong=\"H3117\"* were|strong=\"H1961\"* shut|strong=\"H6887\"* up|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5414\"* day|strong=\"H3117\"* of|strong=\"H4428\"* their|strong=\"H5414\"* death|strong=\"H4194\"*, living|strong=\"H2424\"* in|strong=\"H1004\"* widowhood." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H5975\"* the|strong=\"H3117\"* king|strong=\"H4428\"* said to|strong=\"H3117\"* Amasa|strong=\"H6021\"*, “Call|strong=\"H2199\"* me|strong=\"H5975\"* the|strong=\"H3117\"* men of|strong=\"H4428\"* Judah|strong=\"H3063\"* together|strong=\"H2199\"* within|strong=\"H3063\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, and|strong=\"H3063\"* be|strong=\"H3117\"* here|strong=\"H6311\"* present|strong=\"H5975\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* Amasa|strong=\"H6021\"* went|strong=\"H3212\"* to|strong=\"H3212\"* call|strong=\"H2199\"* the|strong=\"H4480\"* men of|strong=\"H4480\"* Judah|strong=\"H3063\"* together|strong=\"H2199\"*, but he|strong=\"H4480\"* stayed longer than|strong=\"H4480\"* the|strong=\"H4480\"* set|strong=\"H3259\"* time|strong=\"H4150\"* which|strong=\"H3063\"* had|strong=\"H3063\"* been appointed|strong=\"H4150\"* to|strong=\"H3212\"* him|strong=\"H4480\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* said to|strong=\"H1121\"* Abishai, “Now|strong=\"H6258\"* Sheba|strong=\"H7652\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"* will|strong=\"H5650\"* do|strong=\"H5869\"* us|strong=\"H6435\"* more|strong=\"H4480\"* harm|strong=\"H3415\"* than|strong=\"H4480\"* Absalom did|strong=\"H5650\"*. Take|strong=\"H3947\"* your|strong=\"H3947\"* lord’s servants|strong=\"H5650\"* and|strong=\"H1121\"* pursue|strong=\"H7291\"* after|strong=\"H4480\"* him|strong=\"H4672\"*, lest|strong=\"H6435\"* he|strong=\"H1732\"* get|strong=\"H3947\"* himself fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* escape|strong=\"H5337\"* out|strong=\"H4672\"* of|strong=\"H1121\"* our|strong=\"H3947\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 7, + "text": "Joab|strong=\"H3097\"*’s men|strong=\"H1368\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H7291\"* him|strong=\"H3318\"* with|strong=\"H3389\"* the|strong=\"H3605\"* Cherethites|strong=\"H3774\"*, the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* pursue|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* were|strong=\"H1992\"* at|strong=\"H5921\"* the|strong=\"H6440\"* great|strong=\"H1419\"* stone which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, Amasa|strong=\"H6021\"* came|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* them|strong=\"H1992\"*. Joab|strong=\"H3097\"* was|strong=\"H1931\"* clothed|strong=\"H3830\"* in|strong=\"H5921\"* his|strong=\"H6440\"* apparel|strong=\"H3830\"* of|strong=\"H6440\"* war|strong=\"H2719\"* that|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H3097\"* put|strong=\"H2296\"* on|strong=\"H5921\"*, and|strong=\"H1419\"* on|strong=\"H5921\"* it|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* sash with|strong=\"H5973\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* fastened|strong=\"H6775\"* on|strong=\"H5921\"* his|strong=\"H6440\"* waist|strong=\"H4975\"* in|strong=\"H5921\"* its|strong=\"H5921\"* sheath|strong=\"H8593\"*; and|strong=\"H1419\"* as|strong=\"H3318\"* he|strong=\"H1931\"* went|strong=\"H3318\"* along|strong=\"H5921\"* it|strong=\"H1931\"* fell|strong=\"H5307\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "Joab|strong=\"H3097\"* said to|strong=\"H3027\"* Amasa|strong=\"H6021\"*, “Is|strong=\"H3027\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H3027\"* you|strong=\"H3027\"*, my|strong=\"H3027\"* brother?” Joab|strong=\"H3097\"* took|strong=\"H3027\"* Amasa|strong=\"H6021\"* by|strong=\"H3027\"* the|strong=\"H3027\"* beard|strong=\"H2206\"* with|strong=\"H3027\"* his|strong=\"H3027\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* kiss|strong=\"H5401\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* Amasa|strong=\"H6021\"* took|strong=\"H4191\"* no|strong=\"H3808\"* heed|strong=\"H8104\"* to|strong=\"H4191\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* that|strong=\"H1121\"* was|strong=\"H1121\"* in|strong=\"H4191\"* Joab|strong=\"H3097\"*’s hand|strong=\"H3027\"*. So|strong=\"H3808\"* he|strong=\"H3027\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3027\"* it|strong=\"H5221\"* in|strong=\"H4191\"* the|strong=\"H5221\"* body|strong=\"H4578\"* and|strong=\"H1121\"* shed|strong=\"H8210\"* out|strong=\"H8210\"* his|strong=\"H8104\"* bowels|strong=\"H4578\"* to|strong=\"H4191\"* the|strong=\"H5221\"* ground, and|strong=\"H1121\"* didn’t strike|strong=\"H5221\"* him|strong=\"H5221\"* again|strong=\"H8138\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* died|strong=\"H4191\"*. Joab|strong=\"H3097\"* and|strong=\"H1121\"* Abishai his|strong=\"H8104\"* brother pursued|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H4310\"* of|strong=\"H5921\"* Joab|strong=\"H3097\"*’s young|strong=\"H5288\"* men|strong=\"H5288\"* stood by|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1732\"* said, “He|strong=\"H1732\"* who|strong=\"H4310\"* favors|strong=\"H2654\"* Joab|strong=\"H3097\"*, and|strong=\"H1732\"* he|strong=\"H1732\"* who|strong=\"H4310\"* is|strong=\"H4310\"* for|strong=\"H5921\"* David|strong=\"H1732\"*, let him|strong=\"H5921\"* follow Joab|strong=\"H3097\"*!”" + }, + { + "verseNum": 12, + "text": "Amasa|strong=\"H6021\"* lay|strong=\"H1556\"* wallowing|strong=\"H1556\"* in|strong=\"H5921\"* his|strong=\"H3605\"* blood|strong=\"H1818\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H7704\"* the|strong=\"H3605\"* highway|strong=\"H4546\"*. When|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H3605\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, he|strong=\"H3588\"* carried|strong=\"H5437\"* Amasa|strong=\"H6021\"* out|strong=\"H7993\"* of|strong=\"H7704\"* the|strong=\"H3605\"* highway|strong=\"H4546\"* into|strong=\"H8432\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H5971\"* cast|strong=\"H7993\"* a|strong=\"H3068\"* garment over|strong=\"H5921\"* him|strong=\"H5921\"* when|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H5971\"* by|strong=\"H5921\"* him|strong=\"H5921\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1121\"* he|strong=\"H3605\"* was|strong=\"H1121\"* removed|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3605\"* highway|strong=\"H4546\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H1121\"* went|strong=\"H5674\"* on|strong=\"H5674\"* after|strong=\"H4480\"* Joab|strong=\"H3097\"* to|strong=\"H1121\"* pursue|strong=\"H7291\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* went|strong=\"H3478\"* through|strong=\"H5674\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Abel, to|strong=\"H3478\"* Beth Maacah, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Berites|strong=\"H1276\"*. They|strong=\"H3478\"* were|strong=\"H3478\"* gathered|strong=\"H3478\"* together, and|strong=\"H3478\"* went|strong=\"H3478\"* also|strong=\"H3478\"* after him|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5921\"* came|strong=\"H5971\"* and|strong=\"H5971\"* besieged|strong=\"H6696\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Abel of|strong=\"H5892\"* Beth Maacah, and|strong=\"H5971\"* they|strong=\"H5921\"* cast|strong=\"H5307\"* up|strong=\"H5975\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* it|strong=\"H5921\"* stood|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H3605\"* rampart|strong=\"H2426\"*; and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5921\"* Joab|strong=\"H3097\"* battered|strong=\"H7843\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* to|strong=\"H5921\"* throw|strong=\"H8210\"* it|strong=\"H5921\"* down|strong=\"H5307\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* woman cried|strong=\"H7121\"* out|strong=\"H4480\"* of|strong=\"H5892\"* the|strong=\"H8085\"* city|strong=\"H5892\"*, “Hear|strong=\"H8085\"*, hear|strong=\"H8085\"*! Please|strong=\"H4994\"* say|strong=\"H1696\"* to|strong=\"H1696\"* Joab|strong=\"H3097\"*, ‘Come|strong=\"H7126\"* near|strong=\"H7126\"* here|strong=\"H2008\"*, that|strong=\"H8085\"* I|strong=\"H5704\"* may|strong=\"H4994\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H5704\"*.’”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H7126\"* came|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H8085\"* her|strong=\"H8085\"*; and|strong=\"H8085\"* the|strong=\"H8085\"* woman said|strong=\"H1697\"*, “Are|strong=\"H1697\"* you|strong=\"H7126\"* Joab|strong=\"H3097\"*?”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1696\"* she|strong=\"H3651\"* spoke|strong=\"H1696\"*, saying|strong=\"H1696\"*, “They|strong=\"H3651\"* used to|strong=\"H1696\"* say|strong=\"H1696\"* in|strong=\"H1696\"* old|strong=\"H7223\"* times, ‘They|strong=\"H3651\"* shall surely|strong=\"H3651\"* ask|strong=\"H7592\"* counsel|strong=\"H7592\"* at|strong=\"H3651\"* Abel,’ and|strong=\"H7223\"* so|strong=\"H3651\"* they|strong=\"H3651\"* settled a|strong=\"H3068\"* matter." + }, + { + "verseNum": 19, + "text": "I|strong=\"H4100\"* am|strong=\"H3068\"* among|strong=\"H3478\"* those who|strong=\"H3068\"* are|strong=\"H3478\"* peaceable|strong=\"H7999\"* and|strong=\"H3478\"* faithful in|strong=\"H3478\"* Israel|strong=\"H3478\"*. You|strong=\"H4100\"* seek|strong=\"H1245\"* to|strong=\"H3478\"* destroy|strong=\"H1104\"* a|strong=\"H3068\"* city|strong=\"H5892\"* and|strong=\"H3478\"* a|strong=\"H3068\"* mother in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H4100\"* swallow|strong=\"H1104\"* up|strong=\"H1104\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*?”" + }, + { + "verseNum": 20, + "text": "Joab|strong=\"H3097\"* answered|strong=\"H6030\"*, “Far|strong=\"H2486\"* be it|strong=\"H2486\"*, far|strong=\"H2486\"* be it|strong=\"H2486\"* from|strong=\"H2486\"* me|strong=\"H6030\"*, that|strong=\"H6030\"* I should swallow|strong=\"H1104\"* up|strong=\"H1104\"* or|strong=\"H1104\"* destroy|strong=\"H7843\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* matter|strong=\"H1697\"* is|strong=\"H8034\"* not|strong=\"H3808\"* so|strong=\"H3651\"*. But|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim|strong=\"H8034\"*, Sheba|strong=\"H7652\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"* by|strong=\"H3027\"* name|strong=\"H8034\"*, has|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, even|strong=\"H3588\"* against|strong=\"H5921\"* David|strong=\"H1732\"*. Just|strong=\"H1697\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H4428\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7725\"* the|strong=\"H3605\"* woman went|strong=\"H5971\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* her|strong=\"H3605\"* wisdom|strong=\"H2451\"*. They|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Sheba|strong=\"H7652\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bichri|strong=\"H1075\"*, and|strong=\"H1121\"* threw|strong=\"H7993\"* it|strong=\"H5921\"* out|strong=\"H7993\"* to|strong=\"H7725\"* Joab|strong=\"H3097\"*. He|strong=\"H3605\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* were|strong=\"H5971\"* dispersed|strong=\"H6327\"* from|strong=\"H7725\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H7725\"* his|strong=\"H3605\"* tent. Then|strong=\"H7725\"* Joab|strong=\"H3097\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3478\"* Joab|strong=\"H3097\"* was|strong=\"H3478\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Benaiah|strong=\"H1141\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Cherethites and|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Pelethites|strong=\"H6432\"*," + }, + { + "verseNum": 24, + "text": "Adoram was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H5921\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* the|strong=\"H5921\"* recorder|strong=\"H2142\"*," + }, + { + "verseNum": 25, + "text": "Sheva|strong=\"H7864\"* was|strong=\"H3548\"* scribe|strong=\"H5608\"*, Zadok|strong=\"H6659\"* and|strong=\"H3548\"* Abiathar were priests|strong=\"H3548\"*," + }, + { + "verseNum": 26, + "text": "and|strong=\"H3548\"* Ira|strong=\"H5896\"* the|strong=\"H1961\"* Jairite|strong=\"H2972\"* was|strong=\"H1961\"* chief|strong=\"H3548\"* minister to|strong=\"H1961\"* David|strong=\"H1732\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1004\"* David|strong=\"H1732\"* for|strong=\"H5921\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, year|strong=\"H8141\"* after|strong=\"H5921\"* year|strong=\"H8141\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* sought|strong=\"H1245\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*. Yahweh|strong=\"H3068\"* said, “It|strong=\"H5921\"* is|strong=\"H3068\"* for|strong=\"H5921\"* Saul|strong=\"H7586\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* his|strong=\"H3068\"* bloody|strong=\"H1818\"* house|strong=\"H1004\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* put|strong=\"H4191\"* the|strong=\"H6440\"* Gibeonites|strong=\"H1393\"* to|strong=\"H4191\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* called|strong=\"H7121\"* the|strong=\"H3588\"* Gibeonites|strong=\"H1393\"* and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* them|strong=\"H1992\"* (now|strong=\"H3588\"* the|strong=\"H3588\"* Gibeonites|strong=\"H1393\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* remnant|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Amorites, and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* sworn|strong=\"H7650\"* to|strong=\"H3478\"* them|strong=\"H1992\"*; and|strong=\"H1121\"* Saul|strong=\"H7586\"* sought|strong=\"H1245\"* to|strong=\"H3478\"* kill|strong=\"H5221\"* them|strong=\"H1992\"* in|strong=\"H3478\"* his|strong=\"H7121\"* zeal|strong=\"H7065\"* for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*);" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* the|strong=\"H6213\"* Gibeonites|strong=\"H1393\"*, “What|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H4100\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6213\"*? And|strong=\"H3068\"* with|strong=\"H3068\"* what|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H4100\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"*, that|strong=\"H3068\"* you|strong=\"H6213\"* may|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*’s inheritance|strong=\"H5159\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* Gibeonites|strong=\"H1393\"* said to|strong=\"H3478\"* him|strong=\"H6213\"*, “It|strong=\"H6213\"* is|strong=\"H4100\"* no|strong=\"H6213\"* matter of|strong=\"H1004\"* silver|strong=\"H3701\"* or|strong=\"H3701\"* gold|strong=\"H2091\"* between|strong=\"H5973\"* us|strong=\"H6213\"* and|strong=\"H3478\"* Saul|strong=\"H7586\"* or|strong=\"H3701\"* his|strong=\"H3478\"* house|strong=\"H1004\"*; neither|strong=\"H5973\"* is|strong=\"H4100\"* it|strong=\"H6213\"* for|strong=\"H6213\"* us|strong=\"H6213\"* to|strong=\"H3478\"* put|strong=\"H4191\"* any|strong=\"H6213\"* man|strong=\"H4191\"* to|strong=\"H3478\"* death|strong=\"H4191\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H3478\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “The|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* consumed|strong=\"H3615\"* us|strong=\"H3478\"* and|strong=\"H3478\"* who|strong=\"H3605\"* plotted|strong=\"H3615\"* against|strong=\"H3605\"* us|strong=\"H3478\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* should|strong=\"H3478\"* be|strong=\"H3478\"* destroyed|strong=\"H8045\"* from|strong=\"H3478\"* remaining|strong=\"H3320\"* in|strong=\"H3478\"* any|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 6, + "text": "let|strong=\"H5414\"* seven|strong=\"H7651\"* men|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* be|strong=\"H3068\"* delivered|strong=\"H5414\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* will|strong=\"H3068\"* hang|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, the|strong=\"H5414\"* chosen of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* spared|strong=\"H2550\"* Mephibosheth|strong=\"H4648\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, because|strong=\"H5921\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s oath|strong=\"H7621\"* that|strong=\"H3068\"* was|strong=\"H3068\"* between|strong=\"H5921\"* them|strong=\"H5921\"*, between|strong=\"H5921\"* David|strong=\"H1732\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"* took|strong=\"H3947\"* the|strong=\"H3947\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rizpah|strong=\"H7532\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Aiah, whom she|strong=\"H8147\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Saul|strong=\"H7586\"*, Armoni and|strong=\"H1121\"* Mephibosheth|strong=\"H4648\"*; and|strong=\"H1121\"* the|strong=\"H3947\"* five|strong=\"H2568\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merab|strong=\"H4324\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*, whom she|strong=\"H8147\"* bore|strong=\"H3205\"* to|strong=\"H3205\"* Adriel|strong=\"H5741\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H3947\"* Meholathite|strong=\"H4259\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3117\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5307\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Gibeonites|strong=\"H1393\"*; and|strong=\"H3068\"* they|strong=\"H1992\"* hanged|strong=\"H3363\"* them|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* all|strong=\"H3162\"* seven|strong=\"H7651\"* of|strong=\"H3068\"* them|strong=\"H5414\"* fell|strong=\"H5307\"* together|strong=\"H3162\"*. They|strong=\"H1992\"* were|strong=\"H3117\"* put|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H3068\"* harvest|strong=\"H7105\"*, in|strong=\"H3068\"* the|strong=\"H6440\"* first|strong=\"H7223\"* days|strong=\"H3117\"*, at|strong=\"H3068\"* the|strong=\"H6440\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* harvest|strong=\"H7105\"*." + }, + { + "verseNum": 10, + "text": "Rizpah|strong=\"H7532\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah took|strong=\"H3947\"* sackcloth|strong=\"H8242\"* and|strong=\"H8064\"* spread|strong=\"H5186\"* it|strong=\"H5414\"* for|strong=\"H5704\"* herself|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"*, from|strong=\"H4480\"* the|strong=\"H5921\"* beginning|strong=\"H8462\"* of|strong=\"H1323\"* harvest|strong=\"H7105\"* until|strong=\"H5704\"* water|strong=\"H4325\"* poured|strong=\"H5413\"* on|strong=\"H5921\"* them|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*. She|strong=\"H5921\"* allowed|strong=\"H5414\"* neither|strong=\"H3808\"* the|strong=\"H5921\"* birds|strong=\"H5775\"* of|strong=\"H1323\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* to|strong=\"H5704\"* rest|strong=\"H5117\"* on|strong=\"H5921\"* them|strong=\"H5414\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, nor|strong=\"H3808\"* the|strong=\"H5921\"* animals|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H5921\"* field|strong=\"H7704\"* by|strong=\"H5921\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* what|strong=\"H6213\"* Rizpah|strong=\"H7532\"* the|strong=\"H6213\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Aiah, the|strong=\"H6213\"* concubine|strong=\"H6370\"* of|strong=\"H1323\"* Saul|strong=\"H7586\"*, had|strong=\"H1732\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3947\"* David|strong=\"H1732\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* the|strong=\"H3947\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3947\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3947\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"*, who|strong=\"H1121\"* had|strong=\"H1732\"* stolen|strong=\"H1589\"* them|strong=\"H5221\"* from|strong=\"H1121\"* the|strong=\"H3947\"* street|strong=\"H7339\"* of|strong=\"H1121\"* Beth Shan, where|strong=\"H8033\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* had|strong=\"H1732\"* hanged|strong=\"H8518\"* them|strong=\"H5221\"* in|strong=\"H3117\"* the|strong=\"H3947\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Saul|strong=\"H7586\"* in|strong=\"H3117\"* Gilboa|strong=\"H1533\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* he|strong=\"H8033\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3083\"* son|strong=\"H1121\"*. They|strong=\"H8033\"* also|strong=\"H1121\"* gathered the|strong=\"H5927\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* hanged|strong=\"H3363\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3651\"* buried|strong=\"H6912\"* the|strong=\"H3605\"* bones|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* Jonathan|strong=\"H3083\"* his|strong=\"H3605\"* son|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H3605\"* country of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* in|strong=\"H6213\"* Zela|strong=\"H6762\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* tomb|strong=\"H6913\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"* his|strong=\"H3605\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"*. After that|strong=\"H3605\"*, God answered|strong=\"H6279\"* prayer|strong=\"H6279\"* for|strong=\"H6213\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1961\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* war|strong=\"H4421\"* again|strong=\"H5750\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* went|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3478\"* his|strong=\"H1732\"* servants|strong=\"H5650\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3478\"* fought|strong=\"H3898\"* against|strong=\"H5973\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"*. David|strong=\"H1732\"* grew faint|strong=\"H5774\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* Ishbibenob, who|strong=\"H1931\"* was|strong=\"H1732\"* of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*, the|strong=\"H5221\"* weight|strong=\"H4948\"* of|strong=\"H5221\"* whose spear|strong=\"H7013\"* was|strong=\"H1732\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shekels|strong=\"H4948\"* of|strong=\"H5221\"* bronze|strong=\"H5178\"* in|strong=\"H1732\"* weight|strong=\"H4948\"*, he|strong=\"H1931\"* being armed|strong=\"H2296\"* with|strong=\"H2296\"* a|strong=\"H3068\"* new|strong=\"H2319\"* sword, thought he|strong=\"H1931\"* would|strong=\"H1732\"* kill|strong=\"H5221\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* Abishai the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* helped|strong=\"H5826\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistine|strong=\"H6430\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*. Then|strong=\"H3318\"* the|strong=\"H5221\"* men|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* swore|strong=\"H7650\"* to|strong=\"H3318\"* him|strong=\"H5221\"*, saying, “Don’t go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* us|strong=\"H3478\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, so|strong=\"H3808\"* that|strong=\"H3478\"* you|strong=\"H3808\"* don’t quench|strong=\"H3518\"* the|strong=\"H5221\"* lamp|strong=\"H5216\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, there|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* at|strong=\"H4421\"* Gob|strong=\"H1359\"*. Then|strong=\"H1961\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5221\"* Hushathite|strong=\"H2843\"* killed|strong=\"H5221\"* Saph|strong=\"H5593\"*, who|strong=\"H3211\"* was|strong=\"H1961\"* of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* at|strong=\"H4421\"* Gob|strong=\"H1359\"*, and|strong=\"H1121\"* Elhanan the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaare-Oregim|strong=\"H3296\"* the|strong=\"H5221\"* Bethlehemite|strong=\"H1022\"* killed|strong=\"H5221\"* Goliath|strong=\"H1555\"* the|strong=\"H5221\"* Gittite|strong=\"H1663\"*’s brother, the|strong=\"H5221\"* staff|strong=\"H6086\"* of|strong=\"H1121\"* whose|strong=\"H1121\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*." + }, + { + "verseNum": 20, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* at|strong=\"H4421\"* Gath|strong=\"H1661\"*, where|strong=\"H3027\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H3027\"* great stature|strong=\"H4067\"*, who|strong=\"H1931\"* had|strong=\"H1961\"* six|strong=\"H8337\"* fingers on|strong=\"H3027\"* every hand|strong=\"H3027\"* and|strong=\"H6242\"* six|strong=\"H8337\"* toes|strong=\"H7272\"* on|strong=\"H3027\"* every foot|strong=\"H7272\"*, twenty-four|strong=\"H6242\"* in|strong=\"H4421\"* number|strong=\"H4557\"*, and|strong=\"H6242\"* he|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* the|strong=\"H3205\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1121\"* he|strong=\"H1732\"* defied|strong=\"H2778\"* Israel|strong=\"H3478\"*, Jonathan|strong=\"H3083\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*, David|strong=\"H1732\"*’s brother, killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 22, + "text": "These|strong=\"H1732\"* four were|strong=\"H3027\"* born|strong=\"H3205\"* to|strong=\"H3027\"* the|strong=\"H3205\"* giant|strong=\"H7497\"* in|strong=\"H5650\"* Gath|strong=\"H1661\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* David|strong=\"H1732\"* and|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* song|strong=\"H7892\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5337\"* him|strong=\"H3605\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies, and|strong=\"H3068\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3709\"* of|strong=\"H3068\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* he|strong=\"H3068\"* said:" + }, + { + "verseNum": 3, + "text": "God|strong=\"H6697\"* is|strong=\"H7161\"* my|strong=\"H3467\"* rock|strong=\"H6697\"* in|strong=\"H4043\"* whom I|strong=\"H6697\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* worthy to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*;" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waves|strong=\"H4867\"* of|strong=\"H5158\"* death|strong=\"H4194\"* surrounded me|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5437\"* cords|strong=\"H2256\"* of|strong=\"H4194\"* Sheol|strong=\"H7585\"*+ 22:6 Sheol is the place of the dead.* were|strong=\"H4194\"* around|strong=\"H5437\"* me|strong=\"H5437\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3068\"* my|strong=\"H8085\"* distress|strong=\"H6862\"*, I|strong=\"H8085\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* earth|strong=\"H8064\"* shook|strong=\"H1607\"* and|strong=\"H8064\"* trembled|strong=\"H7264\"*." + }, + { + "verseNum": 9, + "text": "Smoke|strong=\"H6227\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H6310\"* his|strong=\"H4480\"* nostrils." + }, + { + "verseNum": 10, + "text": "He|strong=\"H7272\"* bowed|strong=\"H5186\"* the|strong=\"H8478\"* heavens|strong=\"H8064\"* also|strong=\"H8064\"*, and|strong=\"H8064\"* came|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* cherub|strong=\"H3742\"*, and|strong=\"H7200\"* flew|strong=\"H5774\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H2822\"* made|strong=\"H7896\"* darkness|strong=\"H2822\"* a|strong=\"H3068\"* shelter|strong=\"H5521\"* around|strong=\"H5439\"* himself|strong=\"H4325\"*," + }, + { + "verseNum": 13, + "text": "At the|strong=\"H5048\"* brightness|strong=\"H5051\"* before|strong=\"H5048\"* him|strong=\"H5048\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* thundered|strong=\"H7481\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* arrows|strong=\"H2671\"* and|strong=\"H7971\"* scattered|strong=\"H6327\"* them|strong=\"H7971\"*," + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7200\"* the|strong=\"H7200\"* channels of|strong=\"H3068\"* the|strong=\"H7200\"* sea|strong=\"H3220\"* appeared|strong=\"H7200\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* on|strong=\"H7971\"* high|strong=\"H4791\"* and|strong=\"H7971\"* he|strong=\"H7971\"* took|strong=\"H3947\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* delivered|strong=\"H5337\"* me|strong=\"H8130\"* from|strong=\"H4480\"* my|strong=\"H5337\"* strong|strong=\"H5794\"* enemy|strong=\"H8130\"*," + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* came|strong=\"H1961\"* on|strong=\"H3117\"* me|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* my|strong=\"H3068\"* calamity," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3588\"* also|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* a|strong=\"H3068\"* large|strong=\"H4800\"* place|strong=\"H4800\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* rewarded|strong=\"H1580\"* me|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s ways|strong=\"H1870\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ordinances|strong=\"H4941\"* were|strong=\"H3605\"* before|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5771\"* was|strong=\"H1961\"* also perfect|strong=\"H8549\"* toward him|strong=\"H8104\"*." + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rewarded|strong=\"H7725\"* me|strong=\"H7725\"* according to|strong=\"H7725\"* my|strong=\"H3068\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 26, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* merciful|strong=\"H2623\"* you|strong=\"H5973\"* will|strong=\"H8549\"* show|strong=\"H8552\"* yourself|strong=\"H2616\"* merciful|strong=\"H2623\"*." + }, + { + "verseNum": 27, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* pure|strong=\"H1305\"* you|strong=\"H5973\"* will show|strong=\"H6617\"* yourself|strong=\"H1305\"* pure|strong=\"H1305\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5921\"* will|strong=\"H5971\"* save|strong=\"H3467\"* the|strong=\"H5921\"* afflicted|strong=\"H6041\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* lamp|strong=\"H5216\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* by|strong=\"H7323\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* run|strong=\"H7323\"* against a|strong=\"H3068\"* troop|strong=\"H1416\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H3068\"* for|strong=\"H3068\"* God|strong=\"H3068\"*, his|strong=\"H3605\"* way|strong=\"H1870\"* is|strong=\"H3068\"* perfect|strong=\"H8549\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, besides|strong=\"H1107\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 33, + "text": "God is|strong=\"H1870\"* my|strong=\"H1870\"* strong|strong=\"H2428\"* fortress|strong=\"H4581\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* makes|strong=\"H7737\"* his|strong=\"H5921\"* feet|strong=\"H7272\"* like|strong=\"H7272\"* hinds’ feet|strong=\"H7272\"*," + }, + { + "verseNum": 35, + "text": "He|strong=\"H3027\"* teaches|strong=\"H3925\"* my|strong=\"H3925\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* also given|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5414\"* shield|strong=\"H4043\"* of|strong=\"H4043\"* your|strong=\"H5414\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* enlarged|strong=\"H7337\"* my|strong=\"H8478\"* steps|strong=\"H6806\"* under|strong=\"H8478\"* me|strong=\"H7337\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5704\"* have|strong=\"H3808\"* pursued|strong=\"H7291\"* my|strong=\"H7725\"* enemies and|strong=\"H7725\"* destroyed|strong=\"H8045\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* consumed them|strong=\"H8478\"*," + }, + { + "verseNum": 40, + "text": "For|strong=\"H8478\"* you|strong=\"H8478\"* have|strong=\"H2428\"* armed|strong=\"H4421\"* me|strong=\"H3766\"* with|strong=\"H4421\"* strength|strong=\"H2428\"* for|strong=\"H8478\"* the|strong=\"H8478\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 41, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* also made|strong=\"H5414\"* my|strong=\"H5414\"* enemies|strong=\"H8130\"* turn|strong=\"H5414\"* their|strong=\"H5414\"* backs|strong=\"H6203\"* to|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 42, + "text": "They|strong=\"H3068\"* looked|strong=\"H8159\"*, but|strong=\"H3808\"* there|strong=\"H3068\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H3068\"* save|strong=\"H3467\"*;" + }, + { + "verseNum": 43, + "text": "Then I beat|strong=\"H7833\"* them|strong=\"H7833\"* as|strong=\"H1854\"* small|strong=\"H1854\"* as|strong=\"H1854\"* the|strong=\"H2351\"* dust|strong=\"H6083\"* of|strong=\"H2351\"* the|strong=\"H2351\"* earth|strong=\"H6083\"*." + }, + { + "verseNum": 44, + "text": "You|strong=\"H3045\"* also|strong=\"H1471\"* have|strong=\"H5971\"* delivered|strong=\"H6403\"* me|strong=\"H8104\"* from|strong=\"H1471\"* the|strong=\"H8104\"* strivings|strong=\"H7379\"* of|strong=\"H7218\"* my|strong=\"H8104\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H8085\"* foreigners|strong=\"H1121\"* will|strong=\"H1121\"* submit|strong=\"H3584\"* themselves|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H1121\"* foreigners|strong=\"H1121\"* will|strong=\"H1121\"* fade|strong=\"H5034\"* away|strong=\"H5034\"*," + }, + { + "verseNum": 47, + "text": "Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*!" + }, + { + "verseNum": 48, + "text": "even the|strong=\"H5414\"* God|strong=\"H5414\"* who|strong=\"H5971\"* executes|strong=\"H5414\"* vengeance|strong=\"H5360\"* for|strong=\"H8478\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 49, + "text": "who brings|strong=\"H3318\"* me|strong=\"H7311\"* away|strong=\"H3318\"* from|strong=\"H3318\"* my|strong=\"H6965\"* enemies|strong=\"H6965\"*." + }, + { + "verseNum": 50, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 51, + "text": "He|strong=\"H5704\"* gives|strong=\"H3444\"* great|strong=\"H6213\"* deliverance|strong=\"H3444\"* to|strong=\"H5704\"* his|strong=\"H1732\"* king|strong=\"H4428\"*," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* these|strong=\"H6965\"* are|strong=\"H1121\"* the|strong=\"H5002\"* last|strong=\"H6965\"* words|strong=\"H1697\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* spoke|strong=\"H1696\"* by|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1696\"* God|strong=\"H6697\"* of|strong=\"H6697\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "shall|strong=\"H3808\"* be|strong=\"H3808\"* as|strong=\"H5645\"* the|strong=\"H3808\"* light|strong=\"H5051\"* of|strong=\"H3808\"* the|strong=\"H3808\"* morning|strong=\"H1242\"* when the|strong=\"H3808\"* sun|strong=\"H8121\"* rises|strong=\"H2224\"*," + }, + { + "verseNum": 5, + "text": "Isn’t my|strong=\"H8104\"* house|strong=\"H1004\"* so|strong=\"H3651\"* with|strong=\"H5973\"* God|strong=\"H3808\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ungodly|strong=\"H1100\"* will|strong=\"H3027\"* be|strong=\"H3808\"* as|strong=\"H3588\"* thorns|strong=\"H6975\"* to|strong=\"H3027\"* be|strong=\"H3808\"* thrust|strong=\"H6975\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H4390\"* man who touches|strong=\"H5060\"* them|strong=\"H8313\"* must be|strong=\"H6086\"* armed|strong=\"H4390\"* with|strong=\"H4390\"* iron|strong=\"H1270\"* and|strong=\"H6086\"* the|strong=\"H4390\"* staff|strong=\"H6086\"* of|strong=\"H4390\"* a|strong=\"H3068\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 8, + "text": "These|strong=\"H1931\"* are|strong=\"H1368\"* the|strong=\"H5921\"* names|strong=\"H8034\"* of|strong=\"H7218\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H1732\"*: Josheb Basshebeth a|strong=\"H3068\"* Tahchemonite|strong=\"H8461\"*, chief|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* captains|strong=\"H7218\"*; he|strong=\"H1931\"* was|strong=\"H8034\"* called|strong=\"H8034\"* Adino|strong=\"H5722\"* the|strong=\"H5921\"* Eznite|strong=\"H6112\"*, who|strong=\"H1931\"* killed|strong=\"H2491\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* at|strong=\"H5921\"* one|strong=\"H1931\"* time|strong=\"H6471\"*." + }, + { + "verseNum": 9, + "text": "After|strong=\"H5927\"* him|strong=\"H5973\"* was|strong=\"H1732\"* Eleazar the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodai the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* an|strong=\"H8033\"* Ahohite, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* with|strong=\"H5973\"* David|strong=\"H1732\"* when|strong=\"H1121\"* they|strong=\"H8033\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Philistines|strong=\"H6430\"* who|strong=\"H1121\"* were|strong=\"H3478\"* there|strong=\"H8033\"* gathered|strong=\"H6430\"* together|strong=\"H5973\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, and|strong=\"H1121\"* the|strong=\"H5927\"* men|strong=\"H1368\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* gone|strong=\"H5927\"* away|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* Philistines|strong=\"H6430\"* until|strong=\"H5704\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* was|strong=\"H3068\"* weary|strong=\"H3021\"*, and|strong=\"H6965\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* froze to|strong=\"H5704\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*; and|strong=\"H6965\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; and|strong=\"H6965\"* the|strong=\"H3588\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* after|strong=\"H3117\"* him|strong=\"H5221\"* only|strong=\"H3588\"* to|strong=\"H5704\"* take|strong=\"H7725\"* plunder." + }, + { + "verseNum": 11, + "text": "After|strong=\"H1961\"* him|strong=\"H6440\"* was|strong=\"H1961\"* Shammah the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Agee a|strong=\"H3068\"* Hararite|strong=\"H2043\"*. The|strong=\"H6440\"* Philistines|strong=\"H6430\"* had|strong=\"H1961\"* gathered|strong=\"H6430\"* together|strong=\"H5971\"* into|strong=\"H1961\"* a|strong=\"H3068\"* troop|strong=\"H2416\"* where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H7704\"* full|strong=\"H4395\"* of|strong=\"H1121\"* lentils|strong=\"H5742\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5221\"* he|strong=\"H6213\"* stood|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5221\"* plot|strong=\"H2513\"* and|strong=\"H3068\"* defended|strong=\"H5337\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* worked|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"*." + }, + { + "verseNum": 13, + "text": "Three|strong=\"H7970\"* of|strong=\"H7218\"* the|strong=\"H1732\"* thirty|strong=\"H7970\"* chief|strong=\"H7218\"* men|strong=\"H7218\"* went|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H7970\"* came|strong=\"H3381\"* to|strong=\"H3381\"* David|strong=\"H1732\"* in|strong=\"H2583\"* the|strong=\"H1732\"* harvest|strong=\"H7105\"* time|strong=\"H7105\"* to|strong=\"H3381\"* the|strong=\"H1732\"* cave|strong=\"H4631\"* of|strong=\"H7218\"* Adullam|strong=\"H5725\"*; and|strong=\"H7970\"* the|strong=\"H1732\"* troop|strong=\"H2416\"* of|strong=\"H7218\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* the|strong=\"H1732\"* valley|strong=\"H6010\"* of|strong=\"H7218\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*; and|strong=\"H1732\"* the|strong=\"H1732\"* garrison|strong=\"H4673\"* of|strong=\"H1732\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 15, + "text": "David|strong=\"H1732\"* said longingly, “Oh|strong=\"H4310\"* that|strong=\"H4325\"* someone|strong=\"H4310\"* would|strong=\"H4310\"* give|strong=\"H8248\"* me|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H1732\"* drink|strong=\"H8248\"* from|strong=\"H4325\"* the|strong=\"H1732\"* well of|strong=\"H8179\"* Bethlehem|strong=\"H1035\"*, which|strong=\"H4310\"* is|strong=\"H4310\"* by|strong=\"H4325\"* the|strong=\"H1732\"* gate|strong=\"H8179\"*!”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H5375\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* broke|strong=\"H1234\"* through|strong=\"H1234\"* the|strong=\"H5375\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* drew|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H5258\"* of|strong=\"H3068\"* the|strong=\"H5375\"* well of|strong=\"H3068\"* Bethlehem|strong=\"H1035\"* that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5375\"* gate|strong=\"H8179\"* and|strong=\"H3068\"* took|strong=\"H5375\"* it|strong=\"H5375\"* and|strong=\"H3068\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* to|strong=\"H3068\"* David|strong=\"H1732\"*; but|strong=\"H3808\"* he|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* of|strong=\"H3068\"* it|strong=\"H5375\"*, but|strong=\"H3808\"* poured|strong=\"H5258\"* it|strong=\"H5375\"* out|strong=\"H5258\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* said, “Be|strong=\"H3808\"* it|strong=\"H6213\"* far|strong=\"H2486\"* from|strong=\"H5315\"* me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, that|strong=\"H5315\"* I|strong=\"H5315\"* should|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2063\"*! Isn’t this|strong=\"H2063\"* the|strong=\"H6213\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* the|strong=\"H6213\"* men|strong=\"H1368\"* who|strong=\"H3068\"* risked their|strong=\"H3068\"* lives|strong=\"H5315\"* to|strong=\"H1980\"* go|strong=\"H1980\"*?” Therefore|strong=\"H3068\"* he|strong=\"H6213\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* it|strong=\"H6213\"*. The|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* did|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7969\"*." + }, + { + "verseNum": 18, + "text": "Abishai, the|strong=\"H5921\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*, was|strong=\"H8034\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* three|strong=\"H7969\"*. He|strong=\"H1931\"* lifted|strong=\"H5782\"* up|strong=\"H5782\"* his|strong=\"H5921\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2491\"* them|strong=\"H5921\"*, and|strong=\"H3967\"* had|strong=\"H3097\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 19, + "text": "Wasn’t he|strong=\"H3588\"* most|strong=\"H4480\"* honorable|strong=\"H3513\"* of|strong=\"H8269\"* the|strong=\"H3588\"* three|strong=\"H7969\"*? Therefore|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* made|strong=\"H3513\"* their|strong=\"H3588\"* captain|strong=\"H8269\"*. However|strong=\"H3588\"* he|strong=\"H3588\"* wasn’t included|strong=\"H1961\"* as|strong=\"H5704\"* one|strong=\"H3808\"* of|strong=\"H8269\"* the|strong=\"H3588\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 20, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* valiant|strong=\"H1121\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Kabzeel|strong=\"H6909\"*, who|strong=\"H1931\"* had|strong=\"H1121\"* done|strong=\"H6467\"* mighty|strong=\"H7227\"* deeds|strong=\"H6467\"*, killed|strong=\"H5221\"* the|strong=\"H5221\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ariel of|strong=\"H1121\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* also|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* a|strong=\"H3068\"* lion in|strong=\"H3117\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* a|strong=\"H3068\"* pit in|strong=\"H3117\"* a|strong=\"H3068\"* time|strong=\"H3117\"* of|strong=\"H1121\"* snow|strong=\"H7950\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1931\"* killed|strong=\"H2026\"* a|strong=\"H3068\"* huge Egyptian|strong=\"H4713\"*, and|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"* had|strong=\"H3027\"* a|strong=\"H3068\"* spear|strong=\"H2595\"* in|strong=\"H3027\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*; but|strong=\"H5221\"* he|strong=\"H1931\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"* with|strong=\"H3381\"* a|strong=\"H3068\"* staff|strong=\"H7626\"* and|strong=\"H3027\"* plucked|strong=\"H1497\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* out|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* killed|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3381\"* his|strong=\"H5221\"* own|strong=\"H3027\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 22, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* did|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H7969\"*, and|strong=\"H1121\"* had|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H8034\"* the|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1732\"* was|strong=\"H1732\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H4480\"* thirty|strong=\"H7970\"*, but|strong=\"H3808\"* he|strong=\"H1732\"* didn’t attain to|strong=\"H1732\"* the|strong=\"H4480\"* three|strong=\"H7969\"*. David|strong=\"H1732\"* set|strong=\"H7760\"* him|strong=\"H7760\"* over|strong=\"H4480\"* his|strong=\"H7760\"* guard|strong=\"H4928\"*." + }, + { + "verseNum": 24, + "text": "Asahel|strong=\"H6214\"* the|strong=\"H3097\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"* was|strong=\"H1121\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3097\"* thirty|strong=\"H7970\"*: Elhanan the|strong=\"H3097\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*," + }, + { + "verseNum": 25, + "text": "Shammah|strong=\"H8048\"* the|strong=\"H8048\"* Harodite|strong=\"H2733\"*, Elika the|strong=\"H8048\"* Harodite|strong=\"H2733\"*," + }, + { + "verseNum": 26, + "text": "Helez|strong=\"H2503\"* the|strong=\"H1121\"* Paltite|strong=\"H6407\"*, Ira|strong=\"H5896\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H1121\"* Tekoite|strong=\"H8621\"*," + }, + { + "verseNum": 27, + "text": "Abiezer the|strong=\"H4012\"* Anathothite|strong=\"H6069\"*, Mebunnai|strong=\"H4012\"* the|strong=\"H4012\"* Hushathite|strong=\"H2843\"*," + }, + { + "verseNum": 28, + "text": "Zalmon|strong=\"H6756\"* the|strong=\"H4121\"* Ahohite, Maharai|strong=\"H4121\"* the|strong=\"H4121\"* Netophathite|strong=\"H5200\"*," + }, + { + "verseNum": 29, + "text": "Heleb|strong=\"H2460\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baanah|strong=\"H1196\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*, Ittai the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ribai|strong=\"H7380\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*," + }, + { + "verseNum": 30, + "text": "Benaiah|strong=\"H1141\"* a|strong=\"H3068\"* Pirathonite|strong=\"H6553\"*, Hiddai|strong=\"H1914\"* of|strong=\"H5158\"* the|strong=\"H1141\"* brooks|strong=\"H5158\"* of|strong=\"H5158\"* Gaash|strong=\"H1608\"*." + }, + { + "verseNum": 31, + "text": "Abialbon the|strong=\"H5820\"* Arbathite|strong=\"H6164\"*, Azmaveth|strong=\"H5820\"* the|strong=\"H5820\"* Barhumite|strong=\"H1273\"*," + }, + { + "verseNum": 32, + "text": "Eliahba the|strong=\"H3083\"* Shaalbonite|strong=\"H8170\"*, the|strong=\"H3083\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jashen|strong=\"H3464\"*, Jonathan|strong=\"H3083\"*," + }, + { + "verseNum": 33, + "text": "Shammah|strong=\"H8048\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*, Ahiam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sharar|strong=\"H8325\"* the|strong=\"H1121\"* Ararite|strong=\"H2043\"*," + }, + { + "verseNum": 34, + "text": "Eliphelet the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahasbai, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Maacathite|strong=\"H4602\"*, Eliam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahithophel the|strong=\"H1121\"* Gilonite|strong=\"H1526\"*," + }, + { + "verseNum": 35, + "text": "Hezro|strong=\"H2695\"* the|strong=\"H2695\"* Carmelite|strong=\"H3761\"*, Paarai|strong=\"H6474\"* the|strong=\"H2695\"* Arbite," + }, + { + "verseNum": 36, + "text": "Igal|strong=\"H3008\"* the|strong=\"H5416\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*, Bani|strong=\"H1137\"* the|strong=\"H5416\"* Gadite|strong=\"H1425\"*," + }, + { + "verseNum": 37, + "text": "Zelek|strong=\"H6768\"* the|strong=\"H5375\"* Ammonite|strong=\"H5984\"*, Naharai|strong=\"H5171\"* the|strong=\"H5375\"* Beerothite, armor|strong=\"H3627\"* bearers|strong=\"H5375\"* to|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*," + }, + { + "verseNum": 38, + "text": "Ira|strong=\"H5896\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*, Gareb|strong=\"H1619\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H7970\"* Uriah the|strong=\"H3605\"* Hittite|strong=\"H2850\"*: thirty-seven|strong=\"H7970\"* in|strong=\"H3605\"* all|strong=\"H3605\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H3254\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* moved|strong=\"H5496\"* David|strong=\"H1732\"* against|strong=\"H2734\"* them|strong=\"H3068\"*, saying, “Go|strong=\"H3212\"*, count|strong=\"H4487\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H2428\"*, who|strong=\"H3605\"* was|strong=\"H3478\"* with|strong=\"H3045\"* him|strong=\"H3605\"*, “Now|strong=\"H4994\"* go|strong=\"H5971\"* back|strong=\"H3045\"* and|strong=\"H3478\"* forth|strong=\"H7751\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba, and|strong=\"H3478\"* count|strong=\"H4557\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, that|strong=\"H3045\"* I|strong=\"H5704\"* may|strong=\"H4994\"* know|strong=\"H3045\"* the|strong=\"H3605\"* sum|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Joab|strong=\"H3097\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"*, “Now|strong=\"H6471\"* may|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* add|strong=\"H3254\"* to|strong=\"H3068\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, however many|strong=\"H4100\"* they|strong=\"H1992\"* may|strong=\"H3068\"* be|strong=\"H1697\"*, one|strong=\"H2088\"* hundred|strong=\"H3967\"* times|strong=\"H6471\"*; and|strong=\"H3967\"* may|strong=\"H3068\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"* see|strong=\"H7200\"* it|strong=\"H7200\"*. But|strong=\"H7200\"* why|strong=\"H4100\"* does|strong=\"H4100\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H7200\"* king|strong=\"H4428\"* delight|strong=\"H2654\"* in|strong=\"H3068\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 4, + "text": "Notwithstanding, the|strong=\"H6440\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* against|strong=\"H5921\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"*. Joab|strong=\"H3097\"* and|strong=\"H3478\"* the|strong=\"H6440\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* to|strong=\"H3318\"* count the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5892\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H8432\"* Jordan|strong=\"H3383\"* and|strong=\"H5892\"* encamped|strong=\"H2583\"* in|strong=\"H2583\"* Aroer|strong=\"H6177\"*, on|strong=\"H5674\"* the|strong=\"H8432\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H2583\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H8432\"* valley|strong=\"H5158\"* of|strong=\"H5892\"* Gad|strong=\"H1410\"*, and|strong=\"H5892\"* to|strong=\"H5674\"* Jazer|strong=\"H3270\"*;" + }, + { + "verseNum": 6, + "text": "then they came to|strong=\"H5439\"* Gilead|strong=\"H1568\"* and|strong=\"H1568\"* to|strong=\"H5439\"* the|strong=\"H5439\"* land of|strong=\"H5439\"* Tahtim Hodshi; and|strong=\"H1568\"* they came to|strong=\"H5439\"* Dan Jaan and|strong=\"H1568\"* around|strong=\"H5439\"* to|strong=\"H5439\"* Sidon|strong=\"H6721\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H3063\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* stronghold of|strong=\"H5892\"* Tyre|strong=\"H6865\"*, and|strong=\"H3063\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Hivites|strong=\"H2340\"* and|strong=\"H3063\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Canaanites|strong=\"H3669\"*; and|strong=\"H3063\"* they|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* south|strong=\"H5045\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, at|strong=\"H3318\"* Beersheba." + }, + { + "verseNum": 8, + "text": "So when|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H3389\"* gone|strong=\"H7751\"* back|strong=\"H7751\"* and|strong=\"H6242\"* forth|strong=\"H7751\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, they|strong=\"H3117\"* came to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* at|strong=\"H2320\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3117\"* nine|strong=\"H8672\"* months|strong=\"H2320\"* and|strong=\"H6242\"* twenty|strong=\"H6242\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "Joab|strong=\"H3097\"* gave|strong=\"H5414\"* up|strong=\"H5414\"* the|strong=\"H5414\"* sum|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H5414\"* counting|strong=\"H4557\"* of|strong=\"H4428\"* the|strong=\"H5414\"* people|strong=\"H5971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* king|strong=\"H4428\"*; and|strong=\"H3967\"* there|strong=\"H1961\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thousand valiant|strong=\"H2428\"* men|strong=\"H5971\"* who|strong=\"H5971\"* drew|strong=\"H8025\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, and|strong=\"H3967\"* the|strong=\"H5414\"* men|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"*’s heart|strong=\"H3820\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* after|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* counted|strong=\"H5608\"* the|strong=\"H3588\"* people|strong=\"H5971\"*. David|strong=\"H1732\"* said|strong=\"H3651\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* greatly|strong=\"H3966\"* in|strong=\"H3068\"* that|strong=\"H3588\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*. But|strong=\"H3588\"* now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, put|strong=\"H6213\"* away|strong=\"H5674\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* very|strong=\"H3966\"* foolishly|strong=\"H5528\"*.”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Gad|strong=\"H1410\"*, David|strong=\"H1732\"*’s seer|strong=\"H2374\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Go|strong=\"H1980\"* and|strong=\"H1980\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* offer|strong=\"H6213\"* you|strong=\"H5921\"* three|strong=\"H7969\"* things|strong=\"H7969\"*. Choose one|strong=\"H6213\"* of|strong=\"H3068\"* them|strong=\"H1992\"*, that|strong=\"H3068\"* I|strong=\"H3541\"* may|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H1696\"* you|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H7971\"* Gad|strong=\"H1410\"* came|strong=\"H1961\"* to|strong=\"H7725\"* David|strong=\"H1732\"*, and|strong=\"H7971\"* told|strong=\"H5046\"* him|strong=\"H6440\"*, saying|strong=\"H1697\"*, “Shall|strong=\"H3117\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* of|strong=\"H3117\"* famine|strong=\"H7458\"* come|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H6440\"* in|strong=\"H8141\"* your|strong=\"H6440\"* land|strong=\"H6440\"*? Or|strong=\"H3117\"* will|strong=\"H1961\"* you|strong=\"H6440\"* flee|strong=\"H5127\"* three|strong=\"H7969\"* months|strong=\"H2320\"* before|strong=\"H6440\"* your|strong=\"H6440\"* foes|strong=\"H6862\"* while|strong=\"H1961\"* they|strong=\"H3117\"* pursue|strong=\"H7291\"* you|strong=\"H6440\"*? Or|strong=\"H3117\"* shall|strong=\"H3117\"* there|strong=\"H1961\"* be|strong=\"H1961\"* three|strong=\"H7969\"* days|strong=\"H3117\"*’ pestilence|strong=\"H1698\"* in|strong=\"H8141\"* your|strong=\"H6440\"* land|strong=\"H6440\"*? Now|strong=\"H6258\"* answer|strong=\"H7725\"*, and|strong=\"H7971\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* answer|strong=\"H7725\"* I|strong=\"H3117\"* shall|strong=\"H3117\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* who|strong=\"H1931\"* sent|strong=\"H7971\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Gad|strong=\"H1410\"*, “I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*. Let|strong=\"H4994\"* us|strong=\"H4994\"* fall|strong=\"H5307\"* now|strong=\"H4994\"* into|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* mercies|strong=\"H7356\"* are|strong=\"H3027\"* great|strong=\"H7227\"*. Let|strong=\"H4994\"* me|strong=\"H4994\"* not|strong=\"H3588\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* man|strong=\"H5307\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4480\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* on|strong=\"H3068\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H5414\"* morning|strong=\"H1242\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* appointed|strong=\"H4150\"* time|strong=\"H6256\"*; and|strong=\"H3478\"* seventy|strong=\"H7657\"* thousand men|strong=\"H5971\"* died|strong=\"H4191\"* of|strong=\"H3068\"* the|strong=\"H5414\"* people|strong=\"H5971\"* from|strong=\"H4480\"* Dan|strong=\"H1835\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beersheba." + }, + { + "verseNum": 16, + "text": "When|strong=\"H1961\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* toward|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H1961\"*, Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H3068\"* the|strong=\"H3068\"* disaster|strong=\"H7451\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* who|strong=\"H5971\"* destroyed|strong=\"H7843\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “It|strong=\"H1961\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"* withdraw your|strong=\"H3068\"* hand|strong=\"H3027\"*.” Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* was|strong=\"H3068\"* by|strong=\"H3027\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Araunah the|strong=\"H3068\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H6213\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* angel|strong=\"H4397\"* who|strong=\"H5971\"* struck|strong=\"H5221\"* the|strong=\"H7200\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* said, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H3068\"* I|strong=\"H2009\"* have|strong=\"H1961\"* done|strong=\"H6213\"* perversely|strong=\"H5753\"*; but|strong=\"H1961\"* these|strong=\"H6213\"* sheep|strong=\"H6629\"*, what|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3068\"* done|strong=\"H6213\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* against|strong=\"H2398\"* me|strong=\"H4994\"*, and|strong=\"H3068\"* against|strong=\"H2398\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 18, + "text": "Gad|strong=\"H1410\"* came|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3068\"* David|strong=\"H1732\"* and|strong=\"H6965\"* said to|strong=\"H3068\"* him|strong=\"H1931\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"*, build|strong=\"H6965\"* an|strong=\"H6965\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Araunah the|strong=\"H3068\"* Jebusite|strong=\"H2983\"*.”" + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* according to|strong=\"H3068\"* the|strong=\"H3068\"* saying|strong=\"H1697\"* of|strong=\"H3068\"* Gad|strong=\"H1410\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 20, + "text": "Araunah looked|strong=\"H7200\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* coming|strong=\"H3318\"* on|strong=\"H5921\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*. Then|strong=\"H3318\"* Araunah went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* with|strong=\"H5921\"* his|strong=\"H5921\"* face|strong=\"H7200\"* to|strong=\"H3318\"* the|strong=\"H5921\"* ground." + }, + { + "verseNum": 21, + "text": "Araunah said, “Why|strong=\"H4069\"* has|strong=\"H3068\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* come|strong=\"H5971\"* to|strong=\"H3068\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*?”" + }, + { + "verseNum": 22, + "text": "Araunah said to|strong=\"H5927\"* David|strong=\"H1732\"*, “Let my|strong=\"H7200\"* lord the|strong=\"H7200\"* king|strong=\"H4428\"* take|strong=\"H3947\"* and|strong=\"H4428\"* offer|strong=\"H5927\"* up|strong=\"H5927\"* what|strong=\"H2896\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H5927\"* him|strong=\"H7200\"*. Behold|strong=\"H7200\"*, the|strong=\"H7200\"* cattle|strong=\"H1241\"* for|strong=\"H6086\"* the|strong=\"H7200\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, and|strong=\"H4428\"* the|strong=\"H7200\"* threshing|strong=\"H4173\"* sledges|strong=\"H4173\"* and|strong=\"H4428\"* the|strong=\"H7200\"* yokes|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H7200\"* oxen|strong=\"H1241\"* for|strong=\"H6086\"* the|strong=\"H7200\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* this|strong=\"H5414\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, does|strong=\"H3068\"* Araunah give|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.” Araunah said to|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* accept|strong=\"H7521\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* Araunah, “No|strong=\"H3808\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* buy|strong=\"H7069\"* it|strong=\"H3588\"* from|strong=\"H5927\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* price|strong=\"H4242\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* which|strong=\"H3068\"* cost|strong=\"H4242\"* me|strong=\"H2600\"* nothing|strong=\"H3808\"*.” So|strong=\"H5927\"* David|strong=\"H1732\"* bought|strong=\"H7069\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H3068\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* for|strong=\"H3588\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 24:24 A shekel is about 10 grams or about 0.35 ounces, so 50 shekels is about 0.5 kilograms or 1.1 pounds.* of|strong=\"H4428\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 25, + "text": "David|strong=\"H1732\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3478\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. So|strong=\"H5927\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* for|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H3478\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* was|strong=\"H3068\"* removed from|strong=\"H5921\"* Israel|strong=\"H3478\"*." + } + ] + } + ] + }, + { + "name": "1 Kings", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* King|strong=\"H4428\"* David|strong=\"H1732\"* was|strong=\"H1732\"* old|strong=\"H2204\"* and|strong=\"H4428\"* advanced in|strong=\"H4428\"* years|strong=\"H3117\"*; and|strong=\"H4428\"* they|strong=\"H3117\"* covered|strong=\"H3680\"* him|strong=\"H1732\"* with|strong=\"H3117\"* clothes, but|strong=\"H3808\"* he|strong=\"H3117\"* couldn’t keep|strong=\"H3680\"* warm|strong=\"H3179\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H5650\"* his|strong=\"H6440\"* servants|strong=\"H5650\"* said to|strong=\"H1961\"* him|strong=\"H6440\"*, “Let|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H5291\"* virgin|strong=\"H1330\"* be|strong=\"H1961\"* sought|strong=\"H1245\"* for|strong=\"H6440\"* my|strong=\"H1245\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*. Let|strong=\"H1961\"* her|strong=\"H7901\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* cherish|strong=\"H2436\"* him|strong=\"H6440\"*; and|strong=\"H4428\"* let|strong=\"H1961\"* her|strong=\"H7901\"* lie|strong=\"H7901\"* in|strong=\"H4428\"* your|strong=\"H6440\"* bosom|strong=\"H2436\"*, that|strong=\"H4428\"* my|strong=\"H1245\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"* may|strong=\"H1961\"* keep|strong=\"H2552\"* warm|strong=\"H2552\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H4672\"* they|strong=\"H3478\"* sought|strong=\"H1245\"* for|strong=\"H4428\"* a|strong=\"H3068\"* beautiful|strong=\"H3303\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* found|strong=\"H4672\"* Abishag the|strong=\"H3605\"* Shunammite|strong=\"H7767\"*, and|strong=\"H3478\"* brought|strong=\"H3478\"* her|strong=\"H3605\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3045\"* young|strong=\"H5291\"* lady|strong=\"H5291\"* was|strong=\"H1961\"* very|strong=\"H3966\"* beautiful|strong=\"H3303\"*; and|strong=\"H4428\"* she|strong=\"H5704\"* cherished|strong=\"H5532\"* the|strong=\"H3045\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* served|strong=\"H8334\"* him|strong=\"H3045\"*; but|strong=\"H3808\"* the|strong=\"H3045\"* king|strong=\"H4428\"* didn’t know|strong=\"H3045\"* her|strong=\"H3045\"* intimately|strong=\"H5532\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6213\"* Adonijah the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* exalted|strong=\"H4984\"* himself|strong=\"H6213\"*, saying, “I|strong=\"H6440\"* will|strong=\"H1121\"* be|strong=\"H1121\"* king|strong=\"H4427\"*.” Then|strong=\"H6213\"* he|strong=\"H6213\"* prepared|strong=\"H6213\"* him|strong=\"H6440\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horsemen|strong=\"H6571\"*, and|strong=\"H1121\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"* to|strong=\"H6213\"* run|strong=\"H7323\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6213\"* father|strong=\"H3205\"* had|strong=\"H3205\"* not|strong=\"H3808\"* displeased|strong=\"H6087\"* him|strong=\"H3205\"* at|strong=\"H3117\"* any|strong=\"H6213\"* time|strong=\"H3117\"* in|strong=\"H6213\"* saying, “Why|strong=\"H4069\"* have|strong=\"H1571\"* you|strong=\"H3117\"* done|strong=\"H6213\"* so|strong=\"H6213\"*?” and|strong=\"H3117\"* he|strong=\"H1931\"* was|strong=\"H1931\"* also|strong=\"H1571\"* a|strong=\"H3068\"* very|strong=\"H3966\"* handsome|strong=\"H2896\"* man|strong=\"H2896\"*; and|strong=\"H3117\"* he|strong=\"H1931\"* was|strong=\"H1931\"* born|strong=\"H3205\"* after|strong=\"H3117\"* Absalom." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1697\"* conferred|strong=\"H1697\"* with|strong=\"H5973\"* Joab|strong=\"H3097\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* with|strong=\"H5973\"* Abiathar the|strong=\"H1697\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* they|strong=\"H1697\"* followed|strong=\"H1961\"* Adonijah and|strong=\"H1121\"* helped|strong=\"H5826\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* Zadok|strong=\"H6659\"* the|strong=\"H1961\"* priest|strong=\"H3548\"*, Benaiah|strong=\"H1141\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, Nathan|strong=\"H5416\"* the|strong=\"H1961\"* prophet|strong=\"H5030\"*, Shimei|strong=\"H8096\"*, Rei|strong=\"H7472\"*, and|strong=\"H1121\"* the|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* who|strong=\"H3548\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"*, were|strong=\"H1961\"* not|strong=\"H3808\"* with|strong=\"H5973\"* Adonijah." + }, + { + "verseNum": 9, + "text": "Adonijah killed|strong=\"H2076\"* sheep|strong=\"H6629\"*, cattle|strong=\"H1241\"*, and|strong=\"H1121\"* fatlings|strong=\"H4806\"* by|strong=\"H7121\"* the|strong=\"H3605\"* stone of|strong=\"H1121\"* Zoheleth|strong=\"H2120\"*, which|strong=\"H3063\"* is|strong=\"H3605\"* beside|strong=\"H5973\"* En Rogel; and|strong=\"H1121\"* he|strong=\"H3605\"* called|strong=\"H7121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t call|strong=\"H7121\"* Nathan|strong=\"H5416\"* the|strong=\"H7121\"* prophet|strong=\"H5030\"*, and|strong=\"H5030\"* Benaiah|strong=\"H1141\"*, and|strong=\"H5030\"* the|strong=\"H7121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H5030\"* Solomon|strong=\"H8010\"* his|strong=\"H7121\"* brother." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H8085\"* Nathan|strong=\"H5416\"* spoke to|strong=\"H8085\"* Bathsheba|strong=\"H1339\"* the|strong=\"H8085\"* mother of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, saying, “Haven’t you|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Adonijah the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* reigns|strong=\"H4427\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* our|strong=\"H8085\"* lord doesn’t know|strong=\"H3045\"* it|strong=\"H3588\"*?" + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* come|strong=\"H3212\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* give|strong=\"H3289\"* you|strong=\"H3289\"* counsel|strong=\"H6098\"*, that|strong=\"H5315\"* you|strong=\"H3289\"* may|strong=\"H4994\"* save|strong=\"H4422\"* your|strong=\"H4994\"* own|strong=\"H5315\"* life|strong=\"H5315\"* and|strong=\"H1121\"* your|strong=\"H4994\"* son|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s life|strong=\"H5315\"*." + }, + { + "verseNum": 13, + "text": "Go|strong=\"H3212\"* in|strong=\"H3427\"* to|strong=\"H3212\"* King|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*, ‘Didn’t you|strong=\"H3588\"*, my|strong=\"H1732\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, swear|strong=\"H7650\"* to|strong=\"H3212\"* your|strong=\"H5921\"* servant, saying, “Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H5921\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H1121\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H1732\"* throne|strong=\"H3678\"*”? Why|strong=\"H4069\"* then|strong=\"H4428\"* does|strong=\"H3808\"* Adonijah reign|strong=\"H4427\"*?’" + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*,+ 1:14 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* while|strong=\"H5750\"* you|strong=\"H5973\"* are|strong=\"H1697\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H4390\"* king|strong=\"H4428\"*, I|strong=\"H2009\"* will|strong=\"H4428\"* also|strong=\"H5750\"* come|strong=\"H4390\"* in|strong=\"H4428\"* after|strong=\"H2009\"* you|strong=\"H5973\"* and|strong=\"H4428\"* confirm|strong=\"H4390\"* your|strong=\"H4390\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 15, + "text": "Bathsheba|strong=\"H1339\"* went|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H8334\"* king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H4428\"* room|strong=\"H2315\"*. The|strong=\"H8334\"* king|strong=\"H4428\"* was|strong=\"H4428\"* very|strong=\"H3966\"* old|strong=\"H2204\"*; and|strong=\"H4428\"* Abishag the|strong=\"H8334\"* Shunammite|strong=\"H7767\"* was|strong=\"H4428\"* serving|strong=\"H8334\"* the|strong=\"H8334\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "Bathsheba|strong=\"H1339\"* bowed|strong=\"H7812\"* and|strong=\"H4428\"* showed respect to|strong=\"H4428\"* the|strong=\"H7812\"* king|strong=\"H4428\"*. The|strong=\"H7812\"* king|strong=\"H4428\"* said, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H4100\"* like?”" + }, + { + "verseNum": 17, + "text": "She|strong=\"H1931\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “My|strong=\"H3068\"* lord|strong=\"H3068\"*, you|strong=\"H3588\"* swore|strong=\"H7650\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*+ 1:17 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. * your|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:17 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* to|strong=\"H3068\"* your|strong=\"H3068\"* servant, ‘Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H3068\"* throne|strong=\"H3678\"*.’" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, Adonijah reigns|strong=\"H4427\"*; and|strong=\"H4428\"* you|strong=\"H3045\"*, my|strong=\"H3045\"* lord the|strong=\"H3045\"* king|strong=\"H4428\"*, don’t know|strong=\"H3045\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3605\"* has|strong=\"H6635\"* slain|strong=\"H2076\"* cattle|strong=\"H6629\"* and|strong=\"H1121\"* fatlings|strong=\"H4806\"* and|strong=\"H1121\"* sheep|strong=\"H6629\"* in|strong=\"H4428\"* abundance|strong=\"H7230\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"*; but|strong=\"H3808\"* he|strong=\"H3605\"* hasn’t called|strong=\"H7121\"* Solomon|strong=\"H8010\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"*, my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* are|strong=\"H3478\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* should|strong=\"H3478\"* tell|strong=\"H5046\"* them|strong=\"H5921\"* who|strong=\"H4310\"* will|strong=\"H4310\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Otherwise it|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* my|strong=\"H1961\"* lord the|strong=\"H1961\"* king|strong=\"H4428\"* sleeps|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1961\"* fathers, that|strong=\"H4428\"* I|strong=\"H1121\"* and|strong=\"H1121\"* my|strong=\"H1961\"* son|strong=\"H1121\"* Solomon|strong=\"H8010\"* will|strong=\"H1961\"* be|strong=\"H1961\"* considered|strong=\"H1961\"* criminals|strong=\"H2400\"*.”" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, while|strong=\"H5750\"* she|strong=\"H5973\"* was|strong=\"H4428\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* the|strong=\"H1696\"* king|strong=\"H4428\"*, Nathan|strong=\"H5416\"* the|strong=\"H1696\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* in|strong=\"H4428\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5921\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Behold|strong=\"H2009\"*, Nathan|strong=\"H5416\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*!”" + }, + { + "verseNum": 24, + "text": "Nathan|strong=\"H5416\"* said, “My|strong=\"H5921\"* lord, King|strong=\"H4428\"*, have|strong=\"H4428\"* you|strong=\"H5921\"* said, ‘Adonijah shall|strong=\"H4428\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* shall|strong=\"H4428\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5921\"* throne|strong=\"H3678\"*’?" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H6635\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* today|strong=\"H3117\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* slain|strong=\"H2076\"* cattle|strong=\"H6629\"*, fatlings|strong=\"H4806\"*, and|strong=\"H1121\"* sheep|strong=\"H6629\"* in|strong=\"H4428\"* abundance|strong=\"H7230\"*, and|strong=\"H1121\"* has|strong=\"H6635\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, and|strong=\"H1121\"* Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"*. Behold|strong=\"H2009\"*, they|strong=\"H3588\"* are|strong=\"H3117\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* saying, ‘Long|strong=\"H3117\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Adonijah!’" + }, + { + "verseNum": 26, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* hasn’t called|strong=\"H7121\"* me|strong=\"H7121\"*, even|strong=\"H3808\"* me|strong=\"H7121\"* your|strong=\"H3808\"* servant|strong=\"H5650\"*, Zadok|strong=\"H6659\"* the|strong=\"H7121\"* priest|strong=\"H3548\"*, Benaiah|strong=\"H1141\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* your|strong=\"H3808\"* servant|strong=\"H5650\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 27, + "text": "Was|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* done|strong=\"H1961\"* by|strong=\"H5921\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* you|strong=\"H5921\"* haven’t shown|strong=\"H3045\"* to|strong=\"H1961\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H4310\"* should|strong=\"H4310\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H5921\"* lord the|strong=\"H5921\"* king|strong=\"H4428\"* after|strong=\"H5921\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* King|strong=\"H4428\"* David|strong=\"H1732\"* answered|strong=\"H6030\"*, “Call|strong=\"H7121\"* Bathsheba|strong=\"H1339\"* in|strong=\"H4428\"* to|strong=\"H6440\"* me|strong=\"H6440\"*.” She|strong=\"H7121\"* came|strong=\"H4428\"* into the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"* and|strong=\"H6030\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* vowed|strong=\"H7650\"* and|strong=\"H3068\"* said, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* redeemed|strong=\"H6299\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* out|strong=\"H3605\"* of|strong=\"H4428\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*," + }, + { + "verseNum": 30, + "text": "most|strong=\"H3068\"* certainly|strong=\"H3588\"* as|strong=\"H3117\"* I|strong=\"H3588\"* swore|strong=\"H7650\"* to|strong=\"H3478\"* you|strong=\"H3588\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, ‘Assuredly|strong=\"H3588\"* Solomon|strong=\"H8010\"* your|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H3068\"* reign|strong=\"H4427\"* after|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H3068\"* throne|strong=\"H3678\"* in|strong=\"H3427\"* my|strong=\"H3068\"* place|strong=\"H8478\"*;’ I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 31, + "text": "Then|strong=\"H4428\"* Bathsheba|strong=\"H1339\"* bowed|strong=\"H7812\"* with|strong=\"H4428\"* her face to|strong=\"H4428\"* the|strong=\"H7812\"* earth and|strong=\"H4428\"* showed respect to|strong=\"H4428\"* the|strong=\"H7812\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* said, “Let my|strong=\"H1732\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*!”" + }, + { + "verseNum": 32, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* to|strong=\"H6440\"* me|strong=\"H6440\"* Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*.” They|strong=\"H6440\"* came|strong=\"H3548\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H3381\"* them|strong=\"H5921\"*, “Take|strong=\"H3947\"* with|strong=\"H5973\"* you|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* your|strong=\"H3947\"* lord, and|strong=\"H1121\"* cause|strong=\"H7392\"* Solomon|strong=\"H8010\"* my|strong=\"H3947\"* son|strong=\"H1121\"* to|strong=\"H3381\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* my|strong=\"H3947\"* own|strong=\"H5973\"* mule|strong=\"H6506\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* him|strong=\"H5921\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Gihon|strong=\"H1521\"*." + }, + { + "verseNum": 34, + "text": "Let Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* and|strong=\"H3478\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* anoint|strong=\"H4886\"* him|strong=\"H5921\"* there|strong=\"H8033\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Blow|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, ‘Long|strong=\"H5921\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*!’" + }, + { + "verseNum": 35, + "text": "Then|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* shall|strong=\"H3478\"* come|strong=\"H5927\"* and|strong=\"H3063\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5921\"* throne|strong=\"H3678\"*; for|strong=\"H5921\"* he|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4427\"* in|strong=\"H3427\"* my|strong=\"H5921\"* place|strong=\"H8478\"*. I|strong=\"H5921\"* have|strong=\"H1961\"* appointed|strong=\"H6680\"* him|strong=\"H5921\"* to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 36, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* answered|strong=\"H6030\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said|strong=\"H6030\"*, “Amen. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, say so|strong=\"H3651\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H1961\"* with|strong=\"H5973\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, even|strong=\"H3651\"* so|strong=\"H3651\"* may|strong=\"H1961\"* he|strong=\"H3651\"* be|strong=\"H1961\"* with|strong=\"H5973\"* Solomon|strong=\"H8010\"*, and|strong=\"H3068\"* make|strong=\"H1431\"* his|strong=\"H3068\"* throne|strong=\"H3678\"* greater|strong=\"H1431\"* than|strong=\"H4428\"* the|strong=\"H3068\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* King|strong=\"H4428\"* David|strong=\"H1732\"*.”" + }, + { + "verseNum": 38, + "text": "So|strong=\"H3381\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* Cherethites and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"* went|strong=\"H3212\"* down|strong=\"H3381\"* and|strong=\"H1121\"* had|strong=\"H1732\"* Solomon|strong=\"H8010\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s mule|strong=\"H6506\"*, and|strong=\"H1121\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* to|strong=\"H3381\"* Gihon|strong=\"H1521\"*." + }, + { + "verseNum": 39, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H4428\"* oil|strong=\"H8081\"* from|strong=\"H4480\"* the|strong=\"H3605\"* Tent, and|strong=\"H4428\"* anointed|strong=\"H4886\"* Solomon|strong=\"H8010\"*. They|strong=\"H5971\"* blew|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said, “Long|strong=\"H3605\"* live|strong=\"H2421\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*!”" + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5927\"* him|strong=\"H6963\"*, and|strong=\"H1419\"* the|strong=\"H3605\"* people|strong=\"H5971\"* piped|strong=\"H2490\"* with|strong=\"H5971\"* pipes|strong=\"H2485\"*, and|strong=\"H1419\"* rejoiced|strong=\"H8056\"* with|strong=\"H5971\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*, so|strong=\"H5927\"* that|strong=\"H5971\"* the|strong=\"H3605\"* earth|strong=\"H5927\"* shook|strong=\"H1234\"* with|strong=\"H5971\"* their|strong=\"H3605\"* sound|strong=\"H6963\"*." + }, + { + "verseNum": 41, + "text": "Adonijah and|strong=\"H6963\"* all|strong=\"H3605\"* the|strong=\"H3605\"* guests|strong=\"H7121\"* who|strong=\"H3605\"* were|strong=\"H1992\"* with|strong=\"H8085\"* him|strong=\"H7121\"* heard|strong=\"H8085\"* it|strong=\"H7121\"* as|strong=\"H1992\"* they|strong=\"H1992\"* had|strong=\"H3097\"* finished|strong=\"H3615\"* eating. When|strong=\"H8085\"* Joab|strong=\"H3097\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"*, he|strong=\"H3605\"* said|strong=\"H7121\"*, “Why|strong=\"H4069\"* is|strong=\"H3605\"* this|strong=\"H7121\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3605\"* city|strong=\"H7151\"* being in|strong=\"H8085\"* an|strong=\"H7121\"* uproar|strong=\"H1993\"*?”" + }, + { + "verseNum": 42, + "text": "While|strong=\"H5750\"* he|strong=\"H3588\"* yet|strong=\"H5750\"* spoke|strong=\"H1696\"*, behold|strong=\"H2009\"*, Jonathan|strong=\"H3129\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar the|strong=\"H3588\"* priest|strong=\"H3548\"* came|strong=\"H3548\"*; and|strong=\"H1121\"* Adonijah said|strong=\"H1696\"*, “Come|strong=\"H5750\"* in|strong=\"H1696\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1121\"* a|strong=\"H3068\"* worthy|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* bring|strong=\"H1319\"* good|strong=\"H2896\"* news|strong=\"H1319\"*.”" + }, + { + "verseNum": 43, + "text": "Jonathan|strong=\"H3129\"* answered|strong=\"H6030\"* Adonijah, “Most|strong=\"H4428\"* certainly our|strong=\"H1732\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"* has|strong=\"H4428\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 44, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* with|strong=\"H5921\"* him|strong=\"H5921\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* have|strong=\"H1121\"* caused him|strong=\"H5921\"* to|strong=\"H7971\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s mule|strong=\"H6506\"*." + }, + { + "verseNum": 45, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H8085\"* priest|strong=\"H3548\"* and|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* have|strong=\"H5030\"* anointed|strong=\"H4886\"* him|strong=\"H6963\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Gihon|strong=\"H1521\"*. They|strong=\"H8033\"* have|strong=\"H5030\"* come|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* rejoicing|strong=\"H8056\"*, so|strong=\"H5927\"* that|strong=\"H8085\"* the|strong=\"H8085\"* city|strong=\"H7151\"* rang|strong=\"H7151\"* again|strong=\"H1949\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* that|strong=\"H8085\"* you|strong=\"H4886\"* have|strong=\"H5030\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 46, + "text": "Also|strong=\"H1571\"*, Solomon|strong=\"H8010\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3427\"* the|strong=\"H5921\"* kingdom|strong=\"H4410\"*." + }, + { + "verseNum": 47, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* came|strong=\"H5650\"* to|strong=\"H5921\"* bless|strong=\"H1288\"* our|strong=\"H5921\"* lord King|strong=\"H4428\"* David|strong=\"H1732\"*, saying, ‘May|strong=\"H4428\"* your|strong=\"H5921\"* God|strong=\"H3190\"* make|strong=\"H1431\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* better|strong=\"H3190\"* than|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*, and|strong=\"H4428\"* make|strong=\"H1431\"* his|strong=\"H1732\"* throne|strong=\"H3678\"* greater|strong=\"H1431\"* than|strong=\"H5921\"* your|strong=\"H5921\"* throne|strong=\"H3678\"*;’ and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bed|strong=\"H4904\"*." + }, + { + "verseNum": 48, + "text": "Also|strong=\"H1571\"* thus|strong=\"H3602\"* said the|strong=\"H5921\"* king|strong=\"H4428\"*, ‘Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* one|strong=\"H7200\"* to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* my|strong=\"H5414\"* throne|strong=\"H3678\"* today|strong=\"H3117\"*, my|strong=\"H5414\"* eyes|strong=\"H5869\"* even|strong=\"H1571\"* seeing|strong=\"H7200\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 49, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* guests|strong=\"H7121\"* of|strong=\"H1870\"* Adonijah were|strong=\"H1870\"* afraid|strong=\"H2729\"*, and|strong=\"H6965\"* rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* each|strong=\"H3605\"* man|strong=\"H3605\"* went|strong=\"H3212\"* his|strong=\"H3605\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 50, + "text": "Adonijah was|strong=\"H8010\"* afraid|strong=\"H3372\"* because|strong=\"H6440\"* of|strong=\"H6440\"* Solomon|strong=\"H8010\"*; and|strong=\"H6965\"* he|strong=\"H8010\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"*, and|strong=\"H6965\"* hung onto the|strong=\"H6440\"* horns|strong=\"H7161\"* of|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 51, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H3117\"* told|strong=\"H5046\"*, “Behold|strong=\"H2009\"*, Adonijah fears|strong=\"H3372\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*; for|strong=\"H4196\"*, behold|strong=\"H2009\"*, he|strong=\"H3117\"* is|strong=\"H3117\"* hanging onto the|strong=\"H3117\"* horns|strong=\"H7161\"* of|strong=\"H4428\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, saying, ‘Let|strong=\"H5046\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* swear|strong=\"H7650\"* to|strong=\"H4191\"* me|strong=\"H5046\"* first|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H4428\"* not|strong=\"H3372\"* kill|strong=\"H4191\"* his|strong=\"H5046\"* servant|strong=\"H5650\"* with|strong=\"H3117\"* the|strong=\"H3117\"* sword|strong=\"H2719\"*.’”" + }, + { + "verseNum": 52, + "text": "Solomon|strong=\"H8010\"* said, “If|strong=\"H1961\"* he|strong=\"H3808\"* shows himself|strong=\"H5307\"* a|strong=\"H3068\"* worthy|strong=\"H1121\"* man|strong=\"H1121\"*, not|strong=\"H3808\"* a|strong=\"H3068\"* hair|strong=\"H8185\"* of|strong=\"H1121\"* his|strong=\"H1961\"* shall|strong=\"H1121\"* fall|strong=\"H5307\"* to|strong=\"H4191\"* the|strong=\"H1961\"* earth; but|strong=\"H3808\"* if|strong=\"H1961\"* wickedness|strong=\"H7451\"* is|strong=\"H7451\"* found|strong=\"H4672\"* in|strong=\"H4191\"* him|strong=\"H4672\"*, he|strong=\"H3808\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 53, + "text": "So|strong=\"H7971\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* brought|strong=\"H3381\"* him|strong=\"H5921\"* down|strong=\"H3381\"* from|strong=\"H3381\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. He|strong=\"H1004\"* came|strong=\"H3381\"* and|strong=\"H7971\"* bowed|strong=\"H7812\"* down|strong=\"H3381\"* to|strong=\"H3381\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*; and|strong=\"H7971\"* Solomon|strong=\"H8010\"* said to|strong=\"H3381\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"* to|strong=\"H3381\"* your|strong=\"H5921\"* house|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* David|strong=\"H1732\"* came|strong=\"H7126\"* near|strong=\"H7126\"* that|strong=\"H3117\"* he|strong=\"H3117\"* should|strong=\"H3117\"* die|strong=\"H4191\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"*, saying," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H1980\"* am|strong=\"H1961\"* going|strong=\"H1980\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. You|strong=\"H3605\"* be|strong=\"H1961\"* strong|strong=\"H2388\"* therefore|strong=\"H1961\"*, and|strong=\"H1980\"* show|strong=\"H2388\"* yourself a|strong=\"H3068\"* man|strong=\"H3605\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H4872\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* instruction|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"*, his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H4872\"* his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, according|strong=\"H4941\"* to|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* prosper|strong=\"H7919\"* in|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* do|strong=\"H6213\"* and|strong=\"H4872\"* wherever|strong=\"H3605\"* you|strong=\"H3605\"* turn|strong=\"H6437\"* yourself|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* me|strong=\"H6440\"*, saying|strong=\"H1697\"*, ‘If|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"* are|strong=\"H1121\"* careful|strong=\"H8104\"* of|strong=\"H1121\"* their|strong=\"H3605\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H3212\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* truth|strong=\"H3808\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"*, there|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H6440\"*,’ he|strong=\"H3068\"* said|strong=\"H1696\"*, ‘a|strong=\"H3068\"* man|strong=\"H1121\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 5, + "text": "“Moreover|strong=\"H1571\"* you|strong=\"H5414\"* know|strong=\"H3045\"* also|strong=\"H1571\"* what|strong=\"H3045\"* Joab|strong=\"H3097\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* did|strong=\"H6213\"* to|strong=\"H3478\"* me|strong=\"H5414\"*, even|strong=\"H1571\"* what|strong=\"H3045\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* the|strong=\"H5414\"* two|strong=\"H8147\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5414\"* armies|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* Abner the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Amasa|strong=\"H6021\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*, whom he|strong=\"H6213\"* killed|strong=\"H2026\"*, and|strong=\"H1121\"* shed|strong=\"H7760\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* war|strong=\"H4421\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* war|strong=\"H4421\"* on|strong=\"H7760\"* his|strong=\"H5414\"* sash that|strong=\"H3045\"* was|strong=\"H3478\"* around his|strong=\"H5414\"* waist|strong=\"H4975\"* and|strong=\"H1121\"* in|strong=\"H3478\"* his|strong=\"H5414\"* sandals|strong=\"H5275\"* that|strong=\"H3045\"* were|strong=\"H3478\"* on|strong=\"H7760\"* his|strong=\"H5414\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 6, + "text": "Do|strong=\"H6213\"* therefore|strong=\"H6213\"* according to|strong=\"H3381\"* your|strong=\"H6213\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* don’t let|strong=\"H3381\"* his|strong=\"H6213\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 2:6 Sheol is the place of the dead.* in|strong=\"H6213\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H6440\"* Gileadite|strong=\"H1569\"*, and|strong=\"H1121\"* let|strong=\"H3651\"* them|strong=\"H6440\"* be|strong=\"H1961\"* among those|strong=\"H1121\"* who|strong=\"H1121\"* eat at|strong=\"H6213\"* your|strong=\"H6440\"* table|strong=\"H7979\"*; for|strong=\"H3588\"* so|strong=\"H3651\"* they|strong=\"H3588\"* came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H6440\"* when|strong=\"H3588\"* I|strong=\"H3588\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* Absalom your|strong=\"H6440\"* brother." + }, + { + "verseNum": 8, + "text": "“Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3117\"* Shimei|strong=\"H8096\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gera|strong=\"H1617\"*, the|strong=\"H3068\"* Benjamite|strong=\"H1145\"* of|strong=\"H1121\"* Bahurim, who|strong=\"H1931\"* cursed|strong=\"H7043\"* me|strong=\"H5973\"* with|strong=\"H5973\"* a|strong=\"H3068\"* grievous|strong=\"H4834\"* curse|strong=\"H7045\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* went|strong=\"H3212\"* to|strong=\"H3381\"* Mahanaim|strong=\"H4266\"*; but|strong=\"H2009\"* he|strong=\"H1931\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* meet|strong=\"H7125\"* me|strong=\"H5973\"* at|strong=\"H3068\"* the|strong=\"H3068\"* Jordan|strong=\"H3383\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* swore|strong=\"H7650\"* to|strong=\"H3381\"* him|strong=\"H5973\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying, ‘I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H4191\"* put|strong=\"H4191\"* you|strong=\"H3117\"* to|strong=\"H3381\"* death|strong=\"H4191\"* with|strong=\"H5973\"* the|strong=\"H3068\"* sword|strong=\"H2719\"*.’" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t hold|strong=\"H6213\"* him|strong=\"H6213\"* guiltless|strong=\"H5352\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H2450\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*; and|strong=\"H1818\"* you|strong=\"H3588\"* will|strong=\"H2450\"* know|strong=\"H3045\"* what|strong=\"H3045\"* you|strong=\"H3588\"* ought to|strong=\"H3381\"* do|strong=\"H6213\"* to|strong=\"H3381\"* him|strong=\"H6213\"*, and|strong=\"H1818\"* you|strong=\"H3588\"* shall|strong=\"H1818\"* bring|strong=\"H3381\"* his|strong=\"H3045\"* gray|strong=\"H7872\"* head|strong=\"H7872\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 2:9 Sheol is the place of the dead.* with|strong=\"H6213\"* blood|strong=\"H1818\"*.”" + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H5892\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* forty years|strong=\"H8141\"*; he|strong=\"H3117\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "Solomon|strong=\"H8010\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father’s throne|strong=\"H3678\"*; and|strong=\"H4428\"* his|strong=\"H1732\"* kingdom|strong=\"H4428\"* was|strong=\"H1732\"* firmly|strong=\"H3559\"* established|strong=\"H3559\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H8010\"* Adonijah the|strong=\"H8010\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"* came to|strong=\"H1121\"* Bathsheba|strong=\"H1339\"* the|strong=\"H8010\"* mother of|strong=\"H1121\"* Solomon|strong=\"H8010\"*. She said, “Do you come peaceably|strong=\"H7965\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* moreover|strong=\"H1696\"*, I|strong=\"H1697\"* have|strong=\"H1697\"* something|strong=\"H1697\"* to|strong=\"H1696\"* tell|strong=\"H1696\"* you|strong=\"H1696\"*.”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* said, “You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* was|strong=\"H3068\"* mine|strong=\"H7760\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* on|strong=\"H5921\"* me|strong=\"H6440\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3068\"* reign|strong=\"H4427\"*. However|strong=\"H3588\"*, the|strong=\"H3605\"* kingdom|strong=\"H4410\"* is|strong=\"H3068\"* turned|strong=\"H5437\"* around|strong=\"H5437\"*, and|strong=\"H3478\"* has|strong=\"H3068\"* become|strong=\"H1961\"* my|strong=\"H3605\"* brother’s; for|strong=\"H3588\"* it|strong=\"H7760\"* was|strong=\"H3068\"* his|strong=\"H3605\"* from|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* I|strong=\"H6258\"* ask|strong=\"H7592\"* one|strong=\"H7596\"* petition|strong=\"H7596\"* of|strong=\"H6440\"* you|strong=\"H6440\"*. Don’t deny|strong=\"H7725\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* said, “Please|strong=\"H4994\"* speak to|strong=\"H7725\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* king|strong=\"H4428\"* (for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* tell|strong=\"H4994\"* you|strong=\"H3588\"* ‘no|strong=\"H3808\"*’), that|strong=\"H3588\"* he|strong=\"H3588\"* give|strong=\"H5414\"* me|strong=\"H5414\"* Abishag the|strong=\"H6440\"* Shunammite|strong=\"H7767\"* as|strong=\"H3588\"* wife.”" + }, + { + "verseNum": 18, + "text": "Bathsheba|strong=\"H1339\"* said|strong=\"H1696\"*, “All|strong=\"H5921\"* right|strong=\"H1696\"*. I|strong=\"H5921\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* for|strong=\"H5921\"* you|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 19, + "text": "Bathsheba|strong=\"H1339\"* therefore|strong=\"H5921\"* went|strong=\"H4428\"* to|strong=\"H1696\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* for|strong=\"H5921\"* Adonijah. The|strong=\"H5921\"* king|strong=\"H4428\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* her|strong=\"H5921\"* and|strong=\"H6965\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H1696\"* her|strong=\"H5921\"*, and|strong=\"H6965\"* sat|strong=\"H3427\"* down|strong=\"H7812\"* on|strong=\"H5921\"* his|strong=\"H7760\"* throne|strong=\"H3678\"* and|strong=\"H6965\"* caused|strong=\"H6965\"* a|strong=\"H3068\"* throne|strong=\"H3678\"* to|strong=\"H1696\"* be|strong=\"H4428\"* set|strong=\"H7760\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s mother; and|strong=\"H6965\"* she|strong=\"H5921\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H7760\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 20, + "text": "Then|strong=\"H7725\"* she|strong=\"H3588\"* said, “I|strong=\"H3588\"* ask|strong=\"H7592\"* one|strong=\"H3808\"* small|strong=\"H6996\"* petition|strong=\"H7596\"* of|strong=\"H4428\"* you|strong=\"H3588\"*; don’t deny|strong=\"H7725\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 21, + "text": "She said, “Let|strong=\"H5414\"* Abishag the|strong=\"H5414\"* Shunammite|strong=\"H7767\"* be|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* Adonijah your|strong=\"H5414\"* brother as|strong=\"H5414\"* wife.”" + }, + { + "verseNum": 22, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* answered|strong=\"H6030\"* his|strong=\"H8010\"* mother, “Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* ask|strong=\"H7592\"* Abishag the|strong=\"H3588\"* Shunammite|strong=\"H7767\"* for|strong=\"H3588\"* Adonijah? Ask|strong=\"H7592\"* for|strong=\"H3588\"* him|strong=\"H1931\"* the|strong=\"H3588\"* kingdom|strong=\"H4410\"* also|strong=\"H4428\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* my|strong=\"H3588\"* elder|strong=\"H1419\"* brother; even|strong=\"H3588\"* for|strong=\"H3588\"* him|strong=\"H1931\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* Abiathar the|strong=\"H3588\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1696\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* swore|strong=\"H7650\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*, “God|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H1696\"* me|strong=\"H5315\"*, and|strong=\"H3068\"* more|strong=\"H3254\"* also|strong=\"H3068\"*, if|strong=\"H3588\"* Adonijah has|strong=\"H3068\"* not|strong=\"H6213\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* against|strong=\"H1696\"* his|strong=\"H3068\"* own|strong=\"H5315\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 24, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* as|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H3559\"* me|strong=\"H5921\"* and|strong=\"H3068\"* set|strong=\"H3427\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H3068\"* father David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"* me|strong=\"H5921\"* a|strong=\"H3068\"* house|strong=\"H1004\"* as|strong=\"H3117\"* he|strong=\"H3588\"* promised|strong=\"H1696\"*, surely|strong=\"H4191\"* Adonijah shall|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H1696\"* death|strong=\"H4191\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 25, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* Benaiah|strong=\"H1141\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* fell|strong=\"H6293\"* on|strong=\"H3027\"* him|strong=\"H7971\"*, so|strong=\"H7971\"* that|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 26, + "text": "To|strong=\"H4191\"* Abiathar the|strong=\"H3605\"* priest|strong=\"H3548\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said, “Go|strong=\"H3212\"* to|strong=\"H4191\"* Anathoth|strong=\"H6068\"*, to|strong=\"H4191\"* your|strong=\"H3605\"* own|strong=\"H3548\"* fields|strong=\"H7704\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* worthy of|strong=\"H4428\"* death|strong=\"H4194\"*. But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* at|strong=\"H5921\"* this|strong=\"H2088\"* time|strong=\"H3117\"* put|strong=\"H4191\"* you|strong=\"H3588\"* to|strong=\"H4191\"* death|strong=\"H4194\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*+ 2:26 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*’s ark before|strong=\"H6440\"* David|strong=\"H1732\"* my|strong=\"H3605\"* father, and|strong=\"H4428\"* because|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* afflicted|strong=\"H6031\"* in|strong=\"H5921\"* all|strong=\"H3605\"* in|strong=\"H5921\"* which|strong=\"H3548\"* my|strong=\"H3605\"* father was|strong=\"H1732\"* afflicted|strong=\"H6031\"*.”" + }, + { + "verseNum": 27, + "text": "So|strong=\"H1961\"* Solomon|strong=\"H8010\"* thrust|strong=\"H8010\"* Abiathar out|strong=\"H1644\"* from|strong=\"H5921\"* being|strong=\"H1961\"* priest|strong=\"H3548\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* might|strong=\"H3068\"* fulfill|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Eli|strong=\"H5941\"* in|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H3588\"* news|strong=\"H8052\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Joab|strong=\"H3097\"*; for|strong=\"H3588\"* Joab|strong=\"H3097\"* had|strong=\"H3068\"* followed|strong=\"H5186\"* Adonijah, although|strong=\"H3588\"* he|strong=\"H3588\"* didn’t follow|strong=\"H3068\"* Absalom. Joab|strong=\"H3097\"* fled|strong=\"H5127\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s Tent, and|strong=\"H3068\"* held|strong=\"H2388\"* onto the|strong=\"H3588\"* horns|strong=\"H7161\"* of|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 29, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* told|strong=\"H5046\"*, “Joab|strong=\"H3097\"* has|strong=\"H3068\"* fled|strong=\"H5127\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Tent; and|strong=\"H1121\"* behold|strong=\"H2009\"*, he|strong=\"H3588\"* is|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3588\"* altar|strong=\"H4196\"*.” Then|strong=\"H2009\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* Benaiah|strong=\"H1141\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, saying, “Go|strong=\"H3212\"*, fall|strong=\"H6293\"* on|strong=\"H3068\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 30, + "text": "Benaiah|strong=\"H1141\"* came|strong=\"H3318\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s Tent, and|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7725\"*, “The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Come|strong=\"H3318\"* out|strong=\"H3318\"*!’”" + }, + { + "verseNum": 31, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Do|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, and|strong=\"H4428\"* fall|strong=\"H6293\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* bury|strong=\"H6912\"* him|strong=\"H5921\"*, that|strong=\"H4428\"* you|strong=\"H5921\"* may|strong=\"H4428\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, which|strong=\"H1004\"* Joab|strong=\"H3097\"* shed|strong=\"H8210\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*, from|strong=\"H5493\"* me|strong=\"H5921\"* and|strong=\"H4428\"* from|strong=\"H5493\"* my|strong=\"H5921\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* his|strong=\"H3068\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* his|strong=\"H3068\"* own head|strong=\"H7218\"*, because|strong=\"H5921\"* he|strong=\"H3068\"* fell|strong=\"H6293\"* on|strong=\"H5921\"* two|strong=\"H8147\"* men|strong=\"H1121\"* more|strong=\"H4480\"* righteous|strong=\"H6662\"* and|strong=\"H1121\"* better|strong=\"H2896\"* than|strong=\"H4480\"* he|strong=\"H3068\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* my|strong=\"H3068\"* father|strong=\"H1121\"* David|strong=\"H1732\"* didn’t know|strong=\"H3045\"* it|strong=\"H5921\"*: Abner the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* Amasa|strong=\"H6021\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*, captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 33, + "text": "So|strong=\"H1961\"* their|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* return|strong=\"H7725\"* on|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H7218\"* of|strong=\"H1004\"* Joab|strong=\"H3097\"* and|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H7218\"* of|strong=\"H1004\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*+ 2:33 or, seed* forever|strong=\"H5769\"*. But|strong=\"H1961\"* for|strong=\"H5704\"* David|strong=\"H1732\"*, for|strong=\"H5704\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*, for|strong=\"H5704\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H5704\"* his|strong=\"H3068\"* throne|strong=\"H3678\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* peace|strong=\"H7965\"* forever|strong=\"H5769\"* from|strong=\"H7725\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 34, + "text": "Then|strong=\"H5927\"* Benaiah|strong=\"H1141\"* the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* fell|strong=\"H6293\"* on|strong=\"H5927\"* him|strong=\"H4191\"*, and|strong=\"H1121\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H1121\"* he|strong=\"H1004\"* was|strong=\"H1004\"* buried|strong=\"H6912\"* in|strong=\"H1004\"* his|strong=\"H6912\"* own house|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H5927\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* in|strong=\"H5921\"* his|strong=\"H5414\"* place|strong=\"H8478\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* in|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1121\"* Abiathar." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1129\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Shimei|strong=\"H8096\"*, and|strong=\"H7971\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Build|strong=\"H1129\"* yourself|strong=\"H8033\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H7971\"* live|strong=\"H3427\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* don’t go|strong=\"H3318\"* anywhere else|strong=\"H3808\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* on|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3117\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*. Your|strong=\"H3045\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H3117\"* your|strong=\"H3045\"* own|strong=\"H1961\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 38, + "text": "Shimei|strong=\"H8096\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, “What|strong=\"H1697\"* you|strong=\"H3117\"* say|strong=\"H1696\"* is|strong=\"H3117\"* good|strong=\"H2896\"*. As|strong=\"H1697\"* my|strong=\"H6213\"* lord the|strong=\"H6213\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, so|strong=\"H3651\"* will|strong=\"H4428\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* do|strong=\"H6213\"*.” Shimei|strong=\"H8096\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 39, + "text": "At|strong=\"H4428\"* the|strong=\"H1961\"* end|strong=\"H7093\"* of|strong=\"H1121\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, two|strong=\"H8147\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*’s slaves|strong=\"H5650\"* ran|strong=\"H1272\"* away|strong=\"H1272\"* to|strong=\"H1961\"* Achish, son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"*. They|strong=\"H8141\"* told|strong=\"H5046\"* Shimei|strong=\"H8096\"*, saying, “Behold|strong=\"H2009\"*, your|strong=\"H1961\"* slaves|strong=\"H5650\"* are|strong=\"H1121\"* in|strong=\"H8141\"* Gath|strong=\"H1661\"*.”" + }, + { + "verseNum": 40, + "text": "Shimei|strong=\"H8096\"* arose|strong=\"H6965\"*, saddled|strong=\"H2280\"* his|strong=\"H6965\"* donkey|strong=\"H2543\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gath|strong=\"H1661\"* to|strong=\"H3212\"* Achish to|strong=\"H3212\"* seek|strong=\"H1245\"* his|strong=\"H6965\"* slaves|strong=\"H5650\"*; and|strong=\"H6965\"* Shimei|strong=\"H8096\"* went|strong=\"H3212\"* and|strong=\"H6965\"* brought|strong=\"H3212\"* his|strong=\"H6965\"* slaves|strong=\"H5650\"* from|strong=\"H6965\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 41, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H3389\"* told|strong=\"H5046\"* that|strong=\"H3588\"* Shimei|strong=\"H8096\"* had|strong=\"H8010\"* gone|strong=\"H1980\"* from|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* to|strong=\"H1980\"* Gath|strong=\"H1661\"*, and|strong=\"H1980\"* had|strong=\"H8010\"* come|strong=\"H1980\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H1980\"* called|strong=\"H7121\"* for|strong=\"H3588\"* Shimei|strong=\"H8096\"*, and|strong=\"H1980\"* said|strong=\"H1697\"* to|strong=\"H1980\"* him|strong=\"H7121\"*, “Didn’t I|strong=\"H3588\"* adjure|strong=\"H7650\"* you|strong=\"H3588\"* by|strong=\"H7650\"* Yahweh|strong=\"H3068\"* and|strong=\"H1980\"* warn|strong=\"H5749\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘Know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* on|strong=\"H3117\"* the|strong=\"H8085\"* day|strong=\"H3117\"* you|strong=\"H3588\"* go|strong=\"H1980\"* out|strong=\"H3318\"* and|strong=\"H1980\"* walk|strong=\"H1980\"* anywhere else|strong=\"H3808\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*’? You|strong=\"H3588\"* said|strong=\"H1697\"* to|strong=\"H1980\"* me|strong=\"H7971\"*, ‘The|strong=\"H8085\"* saying|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.’" + }, + { + "verseNum": 43, + "text": "Why|strong=\"H4069\"* then|strong=\"H6680\"* have|strong=\"H3068\"* you|strong=\"H6680\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* that|strong=\"H3068\"* I|strong=\"H5921\"* have|strong=\"H3068\"* instructed|strong=\"H6680\"* you|strong=\"H6680\"* with|strong=\"H3068\"*?”" + }, + { + "verseNum": 44, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* said moreover to|strong=\"H7725\"* Shimei|strong=\"H8096\"*, “You|strong=\"H3605\"* know|strong=\"H3045\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wickedness|strong=\"H7451\"* that|strong=\"H3045\"* you|strong=\"H3605\"* did|strong=\"H6213\"* to|strong=\"H7725\"* David|strong=\"H1732\"* my|strong=\"H3605\"* father. Therefore|strong=\"H1732\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* your|strong=\"H3068\"* wickedness|strong=\"H7451\"* on|strong=\"H3068\"* your|strong=\"H3068\"* own head|strong=\"H7218\"*." + }, + { + "verseNum": 45, + "text": "But|strong=\"H1961\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*, and|strong=\"H3068\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* will|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 46, + "text": "So|strong=\"H3318\"* the|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Benaiah|strong=\"H1141\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*; and|strong=\"H1121\"* he|strong=\"H3027\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* fell|strong=\"H6293\"* on|strong=\"H3027\"* him|strong=\"H3027\"*, so|strong=\"H3318\"* that|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"*. The|strong=\"H6680\"* kingdom|strong=\"H4467\"* was|strong=\"H4428\"* established|strong=\"H3559\"* in|strong=\"H4428\"* the|strong=\"H6680\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H1129\"* a|strong=\"H3068\"* marriage|strong=\"H2859\"* alliance|strong=\"H2859\"* with|strong=\"H1004\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*. He|strong=\"H5704\"* took|strong=\"H3947\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* and|strong=\"H3068\"* brought|strong=\"H3947\"* her|strong=\"H3947\"* into|strong=\"H4714\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* building|strong=\"H1129\"* his|strong=\"H3068\"* own house|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3947\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "However|strong=\"H7535\"*, the|strong=\"H3588\"* people|strong=\"H5971\"* sacrificed|strong=\"H2076\"* in|strong=\"H3068\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, because|strong=\"H3588\"* there|strong=\"H1992\"* was|strong=\"H3068\"* not|strong=\"H3808\"* yet|strong=\"H3588\"* a|strong=\"H3068\"* house|strong=\"H1004\"* built|strong=\"H1129\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* loved Yahweh|strong=\"H3068\"*, walking|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3068\"* statutes|strong=\"H2708\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, except|strong=\"H7535\"* that|strong=\"H1931\"* he|strong=\"H1931\"* sacrificed|strong=\"H2076\"* and|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Gibeon|strong=\"H1391\"* to|strong=\"H3212\"* sacrifice|strong=\"H2076\"* there|strong=\"H8033\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1931\"* the|strong=\"H5921\"* great|strong=\"H1419\"* high|strong=\"H1116\"* place|strong=\"H1116\"*. Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* a|strong=\"H3068\"* thousand burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* that|strong=\"H3588\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* Gibeon|strong=\"H1391\"*, Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"* by|strong=\"H3068\"* night|strong=\"H3915\"*; and|strong=\"H3068\"* God|strong=\"H3068\"* said, “Ask|strong=\"H7592\"* for|strong=\"H3068\"* what|strong=\"H4100\"* I|strong=\"H5414\"* should|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* said, “You|strong=\"H5414\"* have|strong=\"H1121\"* shown|strong=\"H6213\"* to|strong=\"H1980\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"*, because|strong=\"H5921\"* he|strong=\"H3117\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H5414\"* in|strong=\"H3427\"* truth, in|strong=\"H3427\"* righteousness|strong=\"H6666\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* uprightness|strong=\"H3483\"* of|strong=\"H1121\"* heart|strong=\"H3824\"* with|strong=\"H5973\"* you|strong=\"H5414\"*. You|strong=\"H5414\"* have|strong=\"H1121\"* kept|strong=\"H8104\"* for|strong=\"H5921\"* him|strong=\"H5414\"* this|strong=\"H2088\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"*, that|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1980\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5414\"* throne|strong=\"H3678\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, you|strong=\"H3045\"* have|strong=\"H3068\"* made|strong=\"H4427\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* king|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father. I|strong=\"H6258\"* am|strong=\"H3068\"* just|strong=\"H6258\"* a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*. I|strong=\"H6258\"* don’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H3808\"* come|strong=\"H3318\"* in|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3808\"* servant|strong=\"H5650\"* is|strong=\"H5650\"* among|strong=\"H8432\"* your|strong=\"H3808\"* people|strong=\"H5971\"* which|strong=\"H5971\"* you|strong=\"H3808\"* have|strong=\"H5971\"* chosen, a|strong=\"H3068\"* great|strong=\"H7227\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* numbered|strong=\"H5608\"* or|strong=\"H3808\"* counted|strong=\"H5608\"* for|strong=\"H5650\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 9, + "text": "Give|strong=\"H5414\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* therefore|strong=\"H3588\"* an|strong=\"H5414\"* understanding|strong=\"H3820\"* heart|strong=\"H3820\"* to|strong=\"H3201\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3201\"* discern|strong=\"H8085\"* between|strong=\"H8199\"* good|strong=\"H2896\"* and|strong=\"H5971\"* evil|strong=\"H7451\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* is|strong=\"H2088\"* able|strong=\"H3201\"* to|strong=\"H3201\"* judge|strong=\"H8199\"* this|strong=\"H2088\"* great|strong=\"H3515\"* people|strong=\"H5971\"* of|strong=\"H5650\"* yours|strong=\"H5650\"*?”" + }, + { + "verseNum": 10, + "text": "This|strong=\"H2088\"* request|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H3588\"* Lord, that|strong=\"H3588\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* asked|strong=\"H7592\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"H3808\"* said|strong=\"H1697\"* to|strong=\"H3117\"* him|strong=\"H7592\"*, “Because|strong=\"H3282\"* you|strong=\"H3117\"* have|strong=\"H1697\"* asked|strong=\"H7592\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, and|strong=\"H3117\"* have|strong=\"H1697\"* not|strong=\"H3808\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"* long|strong=\"H3117\"* life|strong=\"H5315\"*, nor|strong=\"H3808\"* have|strong=\"H1697\"* you|strong=\"H3117\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* riches|strong=\"H6239\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"*, nor|strong=\"H3808\"* have|strong=\"H1697\"* you|strong=\"H3117\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* the|strong=\"H8085\"* life|strong=\"H5315\"* of|strong=\"H3117\"* your|strong=\"H8085\"* enemies, but|strong=\"H3808\"* have|strong=\"H1697\"* asked|strong=\"H7592\"* for|strong=\"H4941\"* yourself|strong=\"H5315\"* understanding|strong=\"H8085\"* to|strong=\"H3117\"* discern|strong=\"H8085\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 12, + "text": "behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* done|strong=\"H6213\"* according|strong=\"H3644\"* to|strong=\"H1961\"* your|strong=\"H5414\"* word|strong=\"H1697\"*. Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* and|strong=\"H6965\"* understanding|strong=\"H3820\"* heart|strong=\"H3820\"*, so|strong=\"H6213\"* that|strong=\"H1697\"* there|strong=\"H2009\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* like|strong=\"H3644\"* you|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* after|strong=\"H1961\"* you|strong=\"H5414\"* none|strong=\"H3808\"* will|strong=\"H1961\"* arise|strong=\"H6965\"* like|strong=\"H3644\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3117\"* have|strong=\"H1961\"* also|strong=\"H1571\"* given|strong=\"H5414\"* you|strong=\"H5414\"* that|strong=\"H3605\"* which|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* asked|strong=\"H7592\"*, both|strong=\"H1571\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* honor|strong=\"H3519\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* there|strong=\"H1961\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H3605\"* among|strong=\"H3808\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* like|strong=\"H3644\"* you|strong=\"H5414\"* for|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "If you|strong=\"H3117\"* will|strong=\"H3117\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, to|strong=\"H1980\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H3117\"* your|strong=\"H8104\"* father David|strong=\"H1732\"* walked|strong=\"H1980\"*, then|strong=\"H1980\"* I|strong=\"H3117\"* will|strong=\"H3117\"* lengthen your|strong=\"H8104\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "Solomon|strong=\"H8010\"* awoke|strong=\"H3364\"*; and|strong=\"H3389\"* behold|strong=\"H2009\"*, it|strong=\"H6213\"* was|strong=\"H8010\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*. Then|strong=\"H2009\"* he|strong=\"H6213\"* came|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark of|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H3389\"* offered|strong=\"H5927\"* up|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, offered|strong=\"H5927\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3389\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H5975\"* two|strong=\"H8147\"* women who|strong=\"H4428\"* were|strong=\"H4428\"* prostitutes|strong=\"H2185\"* came|strong=\"H4428\"* to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* one|strong=\"H2063\"* woman|strong=\"H3205\"* said, “Oh, my|strong=\"H5973\"* lord, I|strong=\"H1004\"* and|strong=\"H1004\"* this|strong=\"H2063\"* woman|strong=\"H3205\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* one|strong=\"H2063\"* house|strong=\"H1004\"*. I|strong=\"H1004\"* delivered|strong=\"H3205\"* a|strong=\"H3068\"* child|strong=\"H3205\"* with|strong=\"H5973\"* her|strong=\"H3205\"* in|strong=\"H3427\"* the|strong=\"H3205\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3205\"* third|strong=\"H7992\"* day|strong=\"H3117\"* after|strong=\"H1961\"* I|strong=\"H3117\"* delivered|strong=\"H3205\"*, this|strong=\"H2063\"* woman|strong=\"H2114\"* delivered|strong=\"H3205\"* also|strong=\"H1571\"*. We|strong=\"H3117\"* were|strong=\"H1961\"* together|strong=\"H3162\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H1961\"* stranger|strong=\"H2114\"* with|strong=\"H1004\"* us|strong=\"H3117\"* in|strong=\"H1004\"* the|strong=\"H3205\"* house|strong=\"H1004\"*, just|strong=\"H1571\"* us|strong=\"H3117\"* two|strong=\"H8147\"* in|strong=\"H1004\"* the|strong=\"H3205\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* woman’s child|strong=\"H1121\"* died|strong=\"H4191\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, because|strong=\"H5921\"* she|strong=\"H2063\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H7901\"* arose|strong=\"H6965\"* at|strong=\"H4191\"* midnight|strong=\"H8432\"*, and|strong=\"H1121\"* took|strong=\"H3947\"* my|strong=\"H3947\"* son|strong=\"H1121\"* from|strong=\"H1121\"* beside me|strong=\"H3947\"* while your|strong=\"H3947\"* servant slept|strong=\"H7901\"*, and|strong=\"H1121\"* laid|strong=\"H7901\"* it|strong=\"H8432\"* in|strong=\"H4191\"* her|strong=\"H3947\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* laid|strong=\"H7901\"* her|strong=\"H3947\"* dead|strong=\"H4191\"* child|strong=\"H1121\"* in|strong=\"H4191\"* my|strong=\"H3947\"* bosom|strong=\"H2436\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1961\"* I|strong=\"H2009\"* rose|strong=\"H6965\"* in|strong=\"H4191\"* the|strong=\"H3205\"* morning|strong=\"H1242\"* to|strong=\"H4191\"* nurse|strong=\"H3243\"* my|strong=\"H6965\"* child|strong=\"H1121\"*, behold|strong=\"H2009\"*, he|strong=\"H3808\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*; but|strong=\"H3808\"* when|strong=\"H1961\"* I|strong=\"H2009\"* had|strong=\"H1961\"* looked|strong=\"H2009\"* at|strong=\"H4191\"* him|strong=\"H3205\"* in|strong=\"H4191\"* the|strong=\"H3205\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, it|strong=\"H1242\"* was|strong=\"H1961\"* not|strong=\"H3808\"* my|strong=\"H6965\"* son|strong=\"H1121\"* whom I|strong=\"H2009\"* bore|strong=\"H3205\"*.”" + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* other|strong=\"H2063\"* woman said|strong=\"H1696\"*, “No|strong=\"H3808\"*! But|strong=\"H3588\"* the|strong=\"H6440\"* living|strong=\"H2416\"* one|strong=\"H3808\"* is|strong=\"H4428\"* my|strong=\"H1696\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* dead|strong=\"H4191\"* one|strong=\"H3808\"* is|strong=\"H4428\"* your|strong=\"H6440\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H2088\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said, “One|strong=\"H2088\"* says, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* my|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1121\"* lives|strong=\"H2416\"*, and|strong=\"H1121\"* your|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* one|strong=\"H2088\"*;’ and|strong=\"H1121\"* the|strong=\"H3588\"* other|strong=\"H2088\"* says, ‘No|strong=\"H3808\"*! But|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* one|strong=\"H2088\"*, and|strong=\"H1121\"* my|strong=\"H3588\"* son|strong=\"H1121\"* is|strong=\"H2088\"* the|strong=\"H3588\"* living|strong=\"H2416\"* one|strong=\"H2088\"*.’”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said, “Get|strong=\"H3947\"* me|strong=\"H6440\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*.” So|strong=\"H3947\"* they|strong=\"H6440\"* brought|strong=\"H3947\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said, “Divide|strong=\"H1504\"* the|strong=\"H5414\"* living|strong=\"H2416\"* child|strong=\"H3206\"* in|strong=\"H4428\"* two|strong=\"H8147\"*, and|strong=\"H4428\"* give|strong=\"H5414\"* half|strong=\"H2677\"* to|strong=\"H5414\"* the|strong=\"H5414\"* one|strong=\"H2416\"*, and|strong=\"H4428\"* half|strong=\"H2677\"* to|strong=\"H5414\"* the|strong=\"H5414\"* other|strong=\"H8147\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* the|strong=\"H5921\"* woman|strong=\"H3205\"* whose|strong=\"H1121\"* the|strong=\"H5921\"* living|strong=\"H2416\"* child|strong=\"H1121\"* was|strong=\"H1961\"* spoke to|strong=\"H4191\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* her|strong=\"H5414\"* heart yearned|strong=\"H3648\"* over|strong=\"H5921\"* her|strong=\"H5414\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H3588\"* said, “Oh, my|strong=\"H5414\"* lord, give|strong=\"H5414\"* her|strong=\"H5414\"* the|strong=\"H5921\"* living|strong=\"H2416\"* child|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* no|strong=\"H3808\"* way|strong=\"H2063\"* kill|strong=\"H4191\"* him|strong=\"H5414\"*!”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H6030\"* the|strong=\"H5414\"* king|strong=\"H4428\"* answered|strong=\"H6030\"*, “Give|strong=\"H5414\"* the|strong=\"H5414\"* first woman|strong=\"H3205\"* the|strong=\"H5414\"* living|strong=\"H2416\"* child|strong=\"H3205\"*, and|strong=\"H6030\"* definitely do not|strong=\"H3808\"* kill|strong=\"H4191\"* him|strong=\"H5414\"*. She|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H5414\"* mother.”" + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* the|strong=\"H3605\"* judgment|strong=\"H4941\"* which|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3478\"* judged|strong=\"H8199\"*; and|strong=\"H3478\"* they|strong=\"H3588\"* feared|strong=\"H3372\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H4428\"* God|strong=\"H2451\"* was|strong=\"H3478\"* in|strong=\"H3478\"* him|strong=\"H6440\"* to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* was|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "These were|strong=\"H1121\"* the|strong=\"H6659\"* princes|strong=\"H8269\"* whom he|strong=\"H1121\"* had|strong=\"H3548\"*: Azariah|strong=\"H5838\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 3, + "text": "Elihoreph and|strong=\"H1121\"* Ahijah, the|strong=\"H2142\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shisha|strong=\"H7894\"*, scribes|strong=\"H5608\"*; Jehoshaphat|strong=\"H3092\"* the|strong=\"H2142\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud, the|strong=\"H2142\"* recorder|strong=\"H2142\"*;" + }, + { + "verseNum": 4, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; Zadok|strong=\"H6659\"* and|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*;" + }, + { + "verseNum": 5, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* was|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* officers|strong=\"H5324\"*; Zabud|strong=\"H2071\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nathan|strong=\"H5416\"* was|strong=\"H4428\"* chief|strong=\"H3548\"* minister, the|strong=\"H5921\"* king|strong=\"H4428\"*’s friend|strong=\"H7463\"*;" + }, + { + "verseNum": 6, + "text": "Ahishar was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*; and|strong=\"H1121\"* Adoniram the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abda|strong=\"H5653\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H5921\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*." + }, + { + "verseNum": 7, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* twelve|strong=\"H8147\"* officers|strong=\"H5324\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* provided|strong=\"H3557\"* food|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3478\"* his|strong=\"H3605\"* household|strong=\"H1004\"*. Each|strong=\"H3605\"* man|strong=\"H3605\"* had|strong=\"H1961\"* to|strong=\"H3478\"* make|strong=\"H8141\"* provision|strong=\"H3557\"* for|strong=\"H5921\"* a|strong=\"H3068\"* month|strong=\"H2320\"* in|strong=\"H8141\"* the|strong=\"H3605\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 8, + "text": "These are|strong=\"H2022\"* their names|strong=\"H8034\"*: Ben Hur|strong=\"H1133\"*, in|strong=\"H8034\"* the|strong=\"H8034\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim|strong=\"H8034\"*;" + }, + { + "verseNum": 9, + "text": "Ben Deker, in|strong=\"H1128\"* Makaz|strong=\"H4739\"*, in|strong=\"H1128\"* Shaalbim|strong=\"H8169\"*, Beth Shemesh, and|strong=\"H1053\"* Elon Beth Hanan;" + }, + { + "verseNum": 10, + "text": "Ben Hesed|strong=\"H1136\"*, in|strong=\"H3605\"* Arubboth (Socoh|strong=\"H7755\"* and|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Hepher|strong=\"H2660\"* belonged to|strong=\"H3605\"* him|strong=\"H3605\"*);" + }, + { + "verseNum": 11, + "text": "Ben Abinadab|strong=\"H1125\"*, in|strong=\"H8010\"* all|strong=\"H3605\"* the|strong=\"H3605\"* height|strong=\"H5299\"* of|strong=\"H1323\"* Dor|strong=\"H1756\"* (he|strong=\"H3605\"* had|strong=\"H1961\"* Taphath|strong=\"H2955\"*, Solomon|strong=\"H8010\"*’s daughter|strong=\"H1323\"*, as|strong=\"H1961\"* wife);" + }, + { + "verseNum": 12, + "text": "Baana|strong=\"H1195\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud, in|strong=\"H1121\"* Taanach|strong=\"H8590\"* and|strong=\"H1121\"* Megiddo|strong=\"H4023\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* Beth Shean which|strong=\"H3605\"* is|strong=\"H3605\"* beside|strong=\"H5704\"* Zarethan|strong=\"H6891\"*, beneath|strong=\"H8478\"* Jezreel|strong=\"H3157\"*, from|strong=\"H1121\"* Beth Shean to|strong=\"H5704\"* Abel Meholah, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* beyond|strong=\"H5676\"* Jokmeam|strong=\"H3361\"*;" + }, + { + "verseNum": 13, + "text": "Ben Geber|strong=\"H1127\"*, in|strong=\"H5892\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* (the|strong=\"H1121\"* towns|strong=\"H5892\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, which|strong=\"H5892\"* are|strong=\"H1121\"* in|strong=\"H5892\"* Gilead|strong=\"H1568\"*, belonged to|strong=\"H1121\"* him|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H1121\"* region|strong=\"H2256\"* of|strong=\"H1121\"* Argob, which|strong=\"H5892\"* is|strong=\"H5892\"* in|strong=\"H5892\"* Bashan|strong=\"H1316\"*, sixty|strong=\"H8346\"* great|strong=\"H1419\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* walls|strong=\"H2346\"* and|strong=\"H1121\"* bronze|strong=\"H5178\"* bars|strong=\"H1280\"*, belonged to|strong=\"H1121\"* him|strong=\"H1121\"*);" + }, + { + "verseNum": 14, + "text": "Ahinadab the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, in|strong=\"H1121\"* Mahanaim|strong=\"H4266\"*;" + }, + { + "verseNum": 15, + "text": "Ahimaaz, in|strong=\"H8010\"* Naphtali|strong=\"H5321\"* (he|strong=\"H1931\"* also|strong=\"H1571\"* took|strong=\"H3947\"* Basemath|strong=\"H1315\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Solomon|strong=\"H8010\"* as|strong=\"H1571\"* wife);" + }, + { + "verseNum": 16, + "text": "Baana|strong=\"H1195\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hushai|strong=\"H2365\"*, in|strong=\"H1121\"* Asher and|strong=\"H1121\"* Bealoth|strong=\"H1175\"*;" + }, + { + "verseNum": 17, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Paruah|strong=\"H6515\"*, in|strong=\"H1121\"* Issachar|strong=\"H3485\"*;" + }, + { + "verseNum": 18, + "text": "Shimei|strong=\"H8096\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ela, in|strong=\"H1121\"* Benjamin|strong=\"H1144\"*;" + }, + { + "verseNum": 19, + "text": "Geber|strong=\"H1398\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, in|strong=\"H4428\"* the|strong=\"H1121\"* land of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H1121\"* country of|strong=\"H1121\"* Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Amorites and|strong=\"H1121\"* of|strong=\"H1121\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Bashan|strong=\"H1316\"*; and|strong=\"H1121\"* he|strong=\"H4428\"* was|strong=\"H4428\"* the|strong=\"H1121\"* only officer|strong=\"H5333\"* who|strong=\"H1121\"* was|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H1121\"* land." + }, + { + "verseNum": 20, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* numerous|strong=\"H7227\"* as|strong=\"H7230\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* which|strong=\"H2344\"* is|strong=\"H3478\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* in|strong=\"H5921\"* multitude|strong=\"H7230\"*, eating and|strong=\"H3063\"* drinking|strong=\"H8354\"* and|strong=\"H3063\"* making merry|strong=\"H8056\"*." + }, + { + "verseNum": 21, + "text": "Solomon ruled over all the kingdoms from the River to the land of the Philistines, and to the border of Egypt. They brought tribute and served Solomon all the days of his life." + }, + { + "verseNum": 22, + "text": "Solomon’s provision for one day was thirty cors+ 4:22 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels* of fine flour, sixty measures of meal," + }, + { + "verseNum": 23, + "text": "ten head of fat cattle, twenty head of cattle out of the pastures, and one hundred sheep, in addition to deer, gazelles, roebucks, and fattened fowl." + }, + { + "verseNum": 24, + "text": "For he had dominion over all on this side of the River, from Tiphsah even to Gaza, over all the kings on this side of the River; and he had peace on all sides around him." + }, + { + "verseNum": 25, + "text": "Judah and Israel lived safely, every man under his vine and under his fig tree, from Dan even to Beersheba, all the days of Solomon." + }, + { + "verseNum": 26, + "text": "Solomon had forty thousand stalls of horses for his chariots, and twelve thousand horsemen." + }, + { + "verseNum": 27, + "text": "Those officers provided food for King Solomon, and for all who came to King Solomon’s table, every man in his month. They let nothing be lacking." + }, + { + "verseNum": 28, + "text": "They also brought barley and straw for the horses and swift steeds to the place where the officers were, each man according to his duty." + }, + { + "verseNum": 29, + "text": "God gave Solomon abundant wisdom, understanding, and breadth of mind like the sand that is on the seashore." + }, + { + "verseNum": 30, + "text": "Solomon’s wisdom excelled the wisdom of all the children of the east and all the wisdom of Egypt." + }, + { + "verseNum": 31, + "text": "For he was wiser than all men—wiser than Ethan the Ezrahite, Heman, Calcol, and Darda, the sons of Mahol; and his fame was in all the nations all around." + }, + { + "verseNum": 32, + "text": "He spoke three thousand proverbs, and his songs numbered one thousand five." + }, + { + "verseNum": 33, + "text": "He spoke of trees, from the cedar that is in Lebanon even to the hyssop that grows out of the wall; he also spoke of animals, of birds, of creeping things, and of fish." + }, + { + "verseNum": 34, + "text": "People of all nations came to hear the wisdom of Solomon, sent by all kings of the earth who had heard of his wisdom." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Hiram king of|strong=\"H3117\"* Tyre sent his|strong=\"H3605\"* servants|strong=\"H5647\"* to|strong=\"H5704\"* Solomon|strong=\"H8010\"*, for|strong=\"H5704\"* he|strong=\"H3117\"* had|strong=\"H1961\"* heard that|strong=\"H3605\"* they|strong=\"H3117\"* had|strong=\"H1961\"* anointed him|strong=\"H5647\"* king in|strong=\"H3117\"* the|strong=\"H3605\"* place|strong=\"H1961\"* of|strong=\"H3117\"* his|strong=\"H3605\"* father, and|strong=\"H3117\"* Hiram had|strong=\"H1961\"* always|strong=\"H3605\"* loved David|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* sent to|strong=\"H1961\"* Hiram, saying," + }, + { + "verseNum": 3, + "text": "“You know that|strong=\"H1241\"* David my father could not build a|strong=\"H3068\"* house for|strong=\"H1241\"* the|strong=\"H3967\"* name of|strong=\"H6629\"* Yahweh|strong=\"H3068\"* his God because of|strong=\"H6629\"* the|strong=\"H3967\"* wars which were|strong=\"H6629\"* around him on every side, until Yahweh|strong=\"H3068\"* put his enemies under the|strong=\"H3967\"* soles of|strong=\"H6629\"* his feet." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* now|strong=\"H1961\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God has|strong=\"H1961\"* given me|strong=\"H1961\"* rest|strong=\"H7965\"* on|strong=\"H1961\"* every|strong=\"H3605\"* side|strong=\"H5676\"*. There|strong=\"H1961\"* is|strong=\"H1931\"* no|strong=\"H3605\"* enemy and|strong=\"H4428\"* no|strong=\"H3605\"* evil occurrence." + }, + { + "verseNum": 5, + "text": "Behold, I|strong=\"H3117\"* intend to|strong=\"H5704\"* build a|strong=\"H3068\"* house for|strong=\"H5704\"* the|strong=\"H3605\"* name of|strong=\"H3117\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God, as|strong=\"H5704\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H5704\"* David|strong=\"H3117\"* my|strong=\"H3605\"* father, saying, ‘Your|strong=\"H3605\"* son, whom I|strong=\"H3117\"* will|strong=\"H3478\"* set|strong=\"H3427\"* on|strong=\"H3117\"* your|strong=\"H3605\"* throne in|strong=\"H3427\"* your|strong=\"H3605\"* place|strong=\"H8478\"* shall|strong=\"H3478\"* build the|strong=\"H3605\"* house for|strong=\"H5704\"* my|strong=\"H3605\"* name.’" + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* therefore|strong=\"H1961\"* command that|strong=\"H8010\"* cedar trees be|strong=\"H1961\"* cut for|strong=\"H1961\"* me|strong=\"H1961\"* out|strong=\"H8147\"* of|strong=\"H8147\"* Lebanon. My|strong=\"H1961\"* servants will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H8147\"* your|strong=\"H1961\"* servants; and|strong=\"H5483\"* I|strong=\"H1961\"* will|strong=\"H1961\"* give|strong=\"H1961\"* you|strong=\"H1961\"* wages for|strong=\"H1961\"* your|strong=\"H1961\"* servants according to|strong=\"H1961\"* all that|strong=\"H8010\"* you|strong=\"H1961\"* say. For|strong=\"H1961\"* you|strong=\"H1961\"* know that|strong=\"H8010\"* there|strong=\"H1961\"* is|strong=\"H1961\"* nobody among us|strong=\"H1961\"* who knows how to|strong=\"H1961\"* cut timber like|strong=\"H1961\"* the|strong=\"H1961\"* Sidonians.”" + }, + { + "verseNum": 7, + "text": "When Hiram heard the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*, he|strong=\"H3605\"* rejoiced greatly|strong=\"H4428\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “Blessed is|strong=\"H1697\"* Yahweh|strong=\"H3068\"* today, who|strong=\"H3605\"* has|strong=\"H4428\"* given to|strong=\"H4428\"* David a|strong=\"H3068\"* wise son to|strong=\"H4428\"* rule|strong=\"H4428\"* over|strong=\"H4428\"* this|strong=\"H1697\"* great people|strong=\"H3808\"*.”" + }, + { + "verseNum": 8, + "text": "Hiram sent to|strong=\"H1961\"* Solomon, saying, “I|strong=\"H8033\"* have|strong=\"H1961\"* heard the|strong=\"H1961\"* message which|strong=\"H8033\"* you|strong=\"H4725\"* have|strong=\"H1961\"* sent to|strong=\"H1961\"* me|strong=\"H1961\"*. I|strong=\"H8033\"* will|strong=\"H1961\"* do all your|strong=\"H1961\"* desire concerning timber of|strong=\"H4725\"* cedar, and|strong=\"H4941\"* concerning cypress timber." + }, + { + "verseNum": 9, + "text": "My|strong=\"H5414\"* servants will|strong=\"H3820\"* bring|strong=\"H5414\"* them|strong=\"H5414\"* down|strong=\"H5414\"* from|strong=\"H5921\"* Lebanon to|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* make|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* rafts to|strong=\"H5921\"* go by|strong=\"H5921\"* sea|strong=\"H3220\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H5414\"* that|strong=\"H5414\"* you|strong=\"H5414\"* specify to|strong=\"H5921\"* me|strong=\"H5414\"*, and|strong=\"H2451\"* will|strong=\"H3820\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5921\"* be|strong=\"H3820\"* broken up|strong=\"H5414\"* there, and|strong=\"H2451\"* you|strong=\"H5414\"* will|strong=\"H3820\"* receive|strong=\"H5414\"* them|strong=\"H5414\"*. You|strong=\"H5414\"* will|strong=\"H3820\"* accomplish my|strong=\"H5414\"* desire, in|strong=\"H5921\"* giving|strong=\"H5414\"* food for|strong=\"H5921\"* my|strong=\"H5414\"* household.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7235\"* Hiram gave|strong=\"H7235\"* Solomon|strong=\"H8010\"* cedar timber and|strong=\"H1121\"* cypress timber according to|strong=\"H4714\"* all|strong=\"H3605\"* his|strong=\"H3605\"* desire." + }, + { + "verseNum": 11, + "text": "Solomon gave|strong=\"H1961\"* Hiram twenty thousand cors+ 5:11 20,000 cors would be about 120,000 bushels or about 4.2 megaliters of wheat, which would weigh about 3,270 metric tons.* of|strong=\"H1121\"* wheat for|strong=\"H8034\"* food to|strong=\"H1961\"* his|strong=\"H3605\"* household, and|strong=\"H1121\"* twenty cors+ 5:11 20 cors is about 1,100 gallons or about 4220 liters.* of|strong=\"H1121\"* pure oil. Solomon gave|strong=\"H1961\"* this|strong=\"H3605\"* to|strong=\"H1961\"* Hiram year|strong=\"H1121\"* by|strong=\"H8034\"* year|strong=\"H1121\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* gave|strong=\"H1696\"* Solomon wisdom, as|strong=\"H1961\"* he|strong=\"H2568\"* promised|strong=\"H1696\"* him|strong=\"H1961\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* peace between Hiram and|strong=\"H2568\"* Solomon, and|strong=\"H2568\"* the|strong=\"H1961\"* two of|strong=\"H7892\"* them|strong=\"H1961\"* made|strong=\"H1696\"* a|strong=\"H3068\"* treaty together." + }, + { + "verseNum": 13, + "text": "King|strong=\"H5921\"* Solomon raised a|strong=\"H3068\"* levy out|strong=\"H3318\"* of|strong=\"H4480\"* all|strong=\"H5704\"* Israel; and|strong=\"H6086\"* the|strong=\"H5921\"* levy was|strong=\"H6086\"* thirty thousand men." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* sent them|strong=\"H8085\"* to|strong=\"H8085\"* Lebanon, ten thousand a|strong=\"H3068\"* month by|strong=\"H3605\"* courses: for|strong=\"H4428\"* a|strong=\"H3068\"* month they|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H4428\"* Lebanon, and|strong=\"H4428\"* two months at|strong=\"H4428\"* home; and|strong=\"H4428\"* Adoniram was|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H5971\"* subject|strong=\"H8085\"* to|strong=\"H8085\"* forced labor." + }, + { + "verseNum": 15, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* seventy thousand who|strong=\"H3605\"* bore burdens, and|strong=\"H7971\"* eighty thousand who|strong=\"H3605\"* were|strong=\"H1961\"* stone cutters in|strong=\"H4428\"* the|strong=\"H3605\"* mountains," + }, + { + "verseNum": 16, + "text": "besides Solomon|strong=\"H8010\"*’s chief officers who were over|strong=\"H7971\"* the|strong=\"H7971\"* work: three thousand three hundred who ruled over|strong=\"H7971\"* the|strong=\"H7971\"* people who labored in|strong=\"H8010\"* the|strong=\"H7971\"* work." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* king|strong=\"H6440\"* commanded, and|strong=\"H3068\"* they|strong=\"H3588\"* cut|strong=\"H7272\"* out|strong=\"H5414\"* large|strong=\"H1004\"* stones, costly stones, to|strong=\"H5704\"* lay|strong=\"H5414\"* the|strong=\"H6440\"* foundation of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* with|strong=\"H1004\"* worked|strong=\"H5704\"* stone." + }, + { + "verseNum": 18, + "text": "Solomon’s builders and|strong=\"H3068\"* Hiram’s builders and|strong=\"H3068\"* the|strong=\"H3068\"* Gebalites cut them|strong=\"H5117\"*, and|strong=\"H3068\"* prepared the|strong=\"H3068\"* timber and|strong=\"H3068\"* the|strong=\"H3068\"* stones to|strong=\"H3068\"* build the|strong=\"H3068\"* house." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* four hundred|strong=\"H3967\"* and|strong=\"H3967\"* eightieth|strong=\"H8084\"* year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"* Ziv|strong=\"H2099\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, he|strong=\"H1931\"* began|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3068\"* house|strong=\"H1004\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* built|strong=\"H1129\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* length|strong=\"H6967\"* of|strong=\"H4428\"* sixty|strong=\"H8346\"* cubits,+ 6:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H3068\"* its width|strong=\"H7341\"* twenty|strong=\"H6242\"*, and|strong=\"H3068\"* its height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* porch in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* had a|strong=\"H3068\"* length|strong=\"H5921\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, which|strong=\"H1004\"* was|strong=\"H1004\"* along|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*. Ten|strong=\"H6235\"* cubits was|strong=\"H1004\"* its|strong=\"H5921\"* width|strong=\"H7341\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* windows|strong=\"H2474\"* of|strong=\"H1004\"* fixed lattice work|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Against|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, he|strong=\"H6213\"* built|strong=\"H1129\"* floors all|strong=\"H5439\"* around|strong=\"H5439\"*, against|strong=\"H5921\"* the|strong=\"H5921\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, both|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* temple|strong=\"H1004\"* and|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*; and|strong=\"H1004\"* he|strong=\"H6213\"* made|strong=\"H6213\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* lowest|strong=\"H8481\"* floor|strong=\"H8484\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H1004\"* the|strong=\"H3588\"* middle|strong=\"H8484\"* was|strong=\"H1004\"* six|strong=\"H8337\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H1004\"* the|strong=\"H3588\"* third|strong=\"H7992\"* was|strong=\"H1004\"* seven|strong=\"H7651\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*; for|strong=\"H3588\"* on|strong=\"H1004\"* the|strong=\"H3588\"* outside|strong=\"H2351\"* he|strong=\"H3588\"* made|strong=\"H5414\"* offsets|strong=\"H4052\"* in|strong=\"H1004\"* the|strong=\"H3588\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* beams should|strong=\"H3588\"* not|strong=\"H1115\"* be|strong=\"H5414\"* inserted|strong=\"H5414\"* into|strong=\"H5414\"* the|strong=\"H3588\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* house|strong=\"H1004\"*, when|strong=\"H8085\"* it|strong=\"H3808\"* was|strong=\"H1004\"* under|strong=\"H1004\"* construction|strong=\"H1129\"*, was|strong=\"H1004\"* built|strong=\"H1129\"* of|strong=\"H1004\"* stone prepared|strong=\"H8003\"* at|strong=\"H1004\"* the|strong=\"H3605\"* quarry|strong=\"H4551\"*; and|strong=\"H1004\"* no|strong=\"H3808\"* hammer|strong=\"H4717\"* or|strong=\"H3808\"* ax or|strong=\"H3808\"* any|strong=\"H3605\"* tool|strong=\"H3627\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* was|strong=\"H1004\"* heard|strong=\"H8085\"* in|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* while|strong=\"H1004\"* it|strong=\"H3808\"* was|strong=\"H1004\"* under|strong=\"H1004\"* construction|strong=\"H1129\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* door|strong=\"H6607\"* for|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* side|strong=\"H3802\"* rooms|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*. They|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* winding|strong=\"H3883\"* stairs|strong=\"H3883\"* into|strong=\"H5927\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* floor|strong=\"H8484\"*, and|strong=\"H1004\"* out|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* into|strong=\"H5927\"* the|strong=\"H5921\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 9, + "text": "So he|strong=\"H1004\"* built|strong=\"H1129\"* the|strong=\"H1129\"* house|strong=\"H1004\"* and|strong=\"H1004\"* finished|strong=\"H3615\"* it|strong=\"H3615\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* covered|strong=\"H5603\"* the|strong=\"H1129\"* house|strong=\"H1004\"* with|strong=\"H1004\"* beams|strong=\"H1356\"* and|strong=\"H1004\"* planks|strong=\"H7713\"* of|strong=\"H1004\"* cedar." + }, + { + "verseNum": 10, + "text": "He|strong=\"H2568\"* built|strong=\"H1129\"* the|strong=\"H3605\"* floors all|strong=\"H3605\"* along|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, each|strong=\"H3605\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*; and|strong=\"H1004\"* they|strong=\"H5921\"* rested on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* with|strong=\"H1004\"* timbers|strong=\"H6086\"* of|strong=\"H1004\"* cedar|strong=\"H6967\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Concerning|strong=\"H1697\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1697\"* you|strong=\"H3605\"* are|strong=\"H1697\"* building|strong=\"H1129\"*, if you|strong=\"H3605\"* will|strong=\"H1004\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H6965\"* execute|strong=\"H6213\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H6965\"* keep|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* to|strong=\"H1696\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, then|strong=\"H6965\"* I|strong=\"H1697\"* will|strong=\"H1004\"* establish|strong=\"H6965\"* my|strong=\"H8104\"* word|strong=\"H1697\"* with|strong=\"H1004\"* you|strong=\"H3605\"*, which|strong=\"H1697\"* I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H5971\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* not|strong=\"H3808\"* forsake|strong=\"H5800\"* my|strong=\"H8432\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "So Solomon|strong=\"H8010\"* built|strong=\"H1129\"* the|strong=\"H1129\"* house|strong=\"H1004\"* and|strong=\"H1004\"* finished|strong=\"H3615\"* it|strong=\"H1129\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* the|strong=\"H1129\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* within|strong=\"H1004\"* with|strong=\"H1004\"* boards|strong=\"H6763\"* of|strong=\"H1004\"* cedar; from|strong=\"H5704\"* the|strong=\"H1129\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H1129\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1129\"* ceiling|strong=\"H7023\"*, he|strong=\"H5704\"* covered|strong=\"H6823\"* them|strong=\"H5704\"* on|strong=\"H1004\"* the|strong=\"H1129\"* inside|strong=\"H1004\"* with|strong=\"H1004\"* wood|strong=\"H6086\"*. He|strong=\"H5704\"* covered|strong=\"H6823\"* the|strong=\"H1129\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* with|strong=\"H1004\"* cypress|strong=\"H1265\"* boards|strong=\"H6763\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* twenty|strong=\"H6242\"* cubits of|strong=\"H1004\"* the|strong=\"H4480\"* back|strong=\"H1004\"* part|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H4480\"* house|strong=\"H1004\"* with|strong=\"H1004\"* boards|strong=\"H6763\"* of|strong=\"H1004\"* cedar from|strong=\"H4480\"* the|strong=\"H4480\"* floor|strong=\"H7172\"* to|strong=\"H5704\"* the|strong=\"H4480\"* ceiling|strong=\"H7023\"*. He|strong=\"H5704\"* built|strong=\"H1129\"* this|strong=\"H1004\"* within|strong=\"H1004\"*, for|strong=\"H5704\"* an|strong=\"H1129\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"*, even|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H4480\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H1004\"* front of|strong=\"H1004\"* the|strong=\"H1961\"* temple|strong=\"H1004\"* sanctuary|strong=\"H1004\"* was|strong=\"H1961\"* forty cubits long." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3605\"* was|strong=\"H1004\"* cedar on|strong=\"H7200\"* the|strong=\"H3605\"* house|strong=\"H1004\"* within|strong=\"H1004\"*, carved|strong=\"H4734\"* with|strong=\"H1004\"* buds and|strong=\"H1004\"* open flowers|strong=\"H6731\"*. All|strong=\"H3605\"* was|strong=\"H1004\"* cedar. No|strong=\"H3605\"* stone was|strong=\"H1004\"* visible|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H8033\"* prepared|strong=\"H3559\"* an|strong=\"H5414\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* in|strong=\"H3068\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* within|strong=\"H8432\"*, to|strong=\"H3068\"* set|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "Within|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* was|strong=\"H6967\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* length|strong=\"H6967\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* width|strong=\"H7341\"*, and|strong=\"H6242\"* twenty|strong=\"H6242\"* cubits in|strong=\"H6440\"* its|strong=\"H6440\"* height|strong=\"H6967\"*. He|strong=\"H1687\"* overlaid|strong=\"H6823\"* it|strong=\"H6440\"* with|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. He|strong=\"H1687\"* covered|strong=\"H6823\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* with|strong=\"H6440\"* cedar|strong=\"H6967\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5674\"* Solomon|strong=\"H8010\"* overlaid|strong=\"H6823\"* the|strong=\"H6440\"* house|strong=\"H1004\"* within|strong=\"H1004\"* with|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. He|strong=\"H1004\"* drew|strong=\"H5674\"* chains|strong=\"H7572\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* across|strong=\"H5674\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* overlaid|strong=\"H6823\"* it|strong=\"H6440\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H5704\"* overlaid|strong=\"H6823\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1004\"* finished|strong=\"H8552\"*. He|strong=\"H5704\"* also overlaid|strong=\"H6823\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* altar|strong=\"H4196\"* that|strong=\"H3605\"* belonged to|strong=\"H5704\"* the|strong=\"H3605\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"* he|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"*+ 6:23 “Cherubim” is plural of “cherub”, an angelic being.* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*, each|strong=\"H8147\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*." + }, + { + "verseNum": 24, + "text": "Five|strong=\"H2568\"* cubits|strong=\"H2568\"* was|strong=\"H3742\"* the|strong=\"H5704\"* length of|strong=\"H3671\"* one|strong=\"H3671\"* wing|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5704\"* cherub|strong=\"H3742\"*, and|strong=\"H2568\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* was|strong=\"H3742\"* the|strong=\"H5704\"* length of|strong=\"H3671\"* the|strong=\"H5704\"* other|strong=\"H8145\"* wing|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5704\"* cherub|strong=\"H3742\"*. From|strong=\"H5704\"* the|strong=\"H5704\"* tip of|strong=\"H3671\"* one|strong=\"H3671\"* wing|strong=\"H3671\"* to|strong=\"H5704\"* the|strong=\"H5704\"* tip of|strong=\"H3671\"* the|strong=\"H5704\"* other|strong=\"H8145\"* was|strong=\"H3742\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H8147\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"* was|strong=\"H3742\"* ten|strong=\"H6235\"* cubits. Both|strong=\"H8147\"* the|strong=\"H8147\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* of|strong=\"H8147\"* one|strong=\"H8147\"* measure|strong=\"H4060\"* and|strong=\"H8147\"* one|strong=\"H8147\"* form|strong=\"H7095\"*." + }, + { + "verseNum": 26, + "text": "One|strong=\"H3651\"* cherub|strong=\"H3742\"* was|strong=\"H6967\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*, and|strong=\"H3742\"* so|strong=\"H3651\"* was|strong=\"H6967\"* the|strong=\"H3651\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1004\"* set|strong=\"H5414\"* the|strong=\"H5414\"* cherubim|strong=\"H3742\"* within|strong=\"H8432\"* the|strong=\"H5414\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*. The|strong=\"H5414\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* stretched|strong=\"H6566\"* out|strong=\"H6566\"*, so|strong=\"H5414\"* that|strong=\"H5414\"* the|strong=\"H5414\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* one|strong=\"H3671\"* touched|strong=\"H5060\"* the|strong=\"H5414\"* one|strong=\"H3671\"* wall|strong=\"H7023\"* and|strong=\"H1004\"* the|strong=\"H5414\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5414\"* other|strong=\"H8145\"* cherub|strong=\"H3742\"* touched|strong=\"H5060\"* the|strong=\"H5414\"* other|strong=\"H8145\"* wall|strong=\"H7023\"*; and|strong=\"H1004\"* their|strong=\"H5414\"* wings|strong=\"H3671\"* touched|strong=\"H5060\"* one|strong=\"H3671\"* another|strong=\"H8145\"* in|strong=\"H1004\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "He overlaid|strong=\"H6823\"* the|strong=\"H6823\"* cherubim|strong=\"H3742\"* with|strong=\"H6823\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H3605\"* carved|strong=\"H7049\"* all|strong=\"H3605\"* the|strong=\"H3605\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* around|strong=\"H4524\"* with|strong=\"H1004\"* carved|strong=\"H7049\"* figures|strong=\"H4734\"* of|strong=\"H1004\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H8561\"*, and|strong=\"H1004\"* open|strong=\"H6440\"* flowers|strong=\"H6731\"*, inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2435\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H1004\"* overlaid|strong=\"H6823\"* the|strong=\"H6823\"* floor|strong=\"H7172\"* of|strong=\"H1004\"* the|strong=\"H6823\"* house|strong=\"H1004\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2435\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H6213\"* the|strong=\"H6213\"* entrance|strong=\"H6607\"* of|strong=\"H6086\"* the|strong=\"H6213\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*. The|strong=\"H6213\"* lintel and|strong=\"H6086\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* were a|strong=\"H3068\"* fifth|strong=\"H2549\"* part|strong=\"H2549\"* of|strong=\"H6086\"* the|strong=\"H6213\"* wall." + }, + { + "verseNum": 32, + "text": "So|strong=\"H5921\"* he|strong=\"H8147\"* made|strong=\"H6086\"* two|strong=\"H8147\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*; and|strong=\"H6086\"* he|strong=\"H8147\"* carved|strong=\"H7049\"* on|strong=\"H5921\"* them|strong=\"H5921\"* carvings|strong=\"H4734\"* of|strong=\"H6086\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H6086\"*, and|strong=\"H6086\"* open flowers|strong=\"H6731\"*, and|strong=\"H6086\"* overlaid|strong=\"H6823\"* them|strong=\"H5921\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*. He|strong=\"H8147\"* spread|strong=\"H3742\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* entrance|strong=\"H6607\"* of|strong=\"H6086\"* the|strong=\"H6213\"* temple|strong=\"H1964\"* door|strong=\"H6607\"* posts|strong=\"H4201\"* of|strong=\"H6086\"* olive|strong=\"H8081\"* wood|strong=\"H6086\"*, out|strong=\"H6213\"* of|strong=\"H6086\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H6086\"* the|strong=\"H6213\"* wall," + }, + { + "verseNum": 34, + "text": "and|strong=\"H6086\"* two|strong=\"H8147\"* doors|strong=\"H1817\"* of|strong=\"H6086\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*. The|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* of|strong=\"H6086\"* the|strong=\"H8147\"* one|strong=\"H7050\"* door|strong=\"H1817\"* were|strong=\"H8147\"* folding|strong=\"H1550\"*, and|strong=\"H6086\"* the|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* of|strong=\"H6086\"* the|strong=\"H8147\"* other|strong=\"H8145\"* door|strong=\"H1817\"* were|strong=\"H8147\"* folding|strong=\"H1550\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H5921\"* carved|strong=\"H7049\"* cherubim|strong=\"H3742\"*, palm|strong=\"H8561\"* trees|strong=\"H8561\"*, and|strong=\"H2091\"* open flowers|strong=\"H6731\"*; and|strong=\"H2091\"* he|strong=\"H5921\"* overlaid|strong=\"H6823\"* them|strong=\"H5921\"* with|strong=\"H5921\"* gold|strong=\"H2091\"* fitted|strong=\"H3474\"* on|strong=\"H5921\"* the|strong=\"H5921\"* engraved|strong=\"H2707\"* work|strong=\"H2707\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* the|strong=\"H1129\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* with|strong=\"H2691\"* three|strong=\"H7969\"* courses of|strong=\"H2905\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"* and|strong=\"H7969\"* a|strong=\"H3068\"* course of|strong=\"H2905\"* cedar beams|strong=\"H3773\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* laid|strong=\"H3245\"* in|strong=\"H8141\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* month|strong=\"H3391\"* Ziv|strong=\"H2099\"*." + }, + { + "verseNum": 38, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Bul, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* was|strong=\"H1931\"* finished|strong=\"H3615\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* its|strong=\"H3605\"* parts|strong=\"H1697\"* and|strong=\"H4941\"* according|strong=\"H4941\"* to|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* specifications. So|strong=\"H1697\"* he|strong=\"H1931\"* spent|strong=\"H3615\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* building|strong=\"H1129\"* it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* was|strong=\"H1004\"* building|strong=\"H1129\"* his|strong=\"H3605\"* own house|strong=\"H1004\"* thirteen|strong=\"H7969\"* years|strong=\"H8141\"*, and|strong=\"H1004\"* he|strong=\"H3605\"* finished|strong=\"H3615\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* he|strong=\"H1004\"* built|strong=\"H1129\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H1004\"* Lebanon|strong=\"H3844\"*. Its|strong=\"H5921\"* length|strong=\"H6967\"* was|strong=\"H1004\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits,+ 7:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* its|strong=\"H5921\"* width|strong=\"H7341\"* fifty|strong=\"H2572\"* cubits, and|strong=\"H3967\"* its|strong=\"H5921\"* height|strong=\"H6967\"* thirty|strong=\"H7970\"* cubits, on|strong=\"H5921\"* four rows|strong=\"H2905\"* of|strong=\"H1004\"* cedar|strong=\"H6967\"* pillars|strong=\"H5982\"*, with|strong=\"H1004\"* cedar|strong=\"H6967\"* beams|strong=\"H3773\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H5921\"* was|strong=\"H5982\"* covered|strong=\"H5603\"* with|strong=\"H5921\"* cedar above|strong=\"H4605\"* over|strong=\"H5921\"* the|strong=\"H5921\"* forty-five beams|strong=\"H6763\"* that|strong=\"H6763\"* were|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, fifteen|strong=\"H2568\"* in|strong=\"H5921\"* a|strong=\"H3068\"* row|strong=\"H2905\"*." + }, + { + "verseNum": 4, + "text": "There were|strong=\"H7969\"* beams in|strong=\"H6471\"* three|strong=\"H7969\"* rows|strong=\"H2905\"*, and|strong=\"H7969\"* window|strong=\"H4237\"* was|strong=\"H4237\"* facing window|strong=\"H4237\"* in|strong=\"H6471\"* three|strong=\"H7969\"* ranks|strong=\"H6471\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* doors|strong=\"H6607\"* and|strong=\"H7969\"* posts|strong=\"H4201\"* were|strong=\"H7969\"* made|strong=\"H3605\"* square|strong=\"H7251\"* with|strong=\"H3605\"* beams; and|strong=\"H7969\"* window|strong=\"H4237\"* was|strong=\"H3605\"* facing window|strong=\"H4237\"* in|strong=\"H6607\"* three|strong=\"H7969\"* ranks|strong=\"H6471\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6440\"* hall of|strong=\"H6440\"* pillars|strong=\"H5982\"*. Its|strong=\"H5921\"* length|strong=\"H5921\"* was|strong=\"H5982\"* fifty|strong=\"H2572\"* cubits and|strong=\"H7970\"* its|strong=\"H5921\"* width|strong=\"H7341\"* thirty|strong=\"H7970\"* cubits, with|strong=\"H6213\"* a|strong=\"H3068\"* porch before|strong=\"H6440\"* them|strong=\"H5921\"*, and|strong=\"H7970\"* pillars|strong=\"H5982\"* and|strong=\"H7970\"* a|strong=\"H3068\"* threshold|strong=\"H5646\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* the|strong=\"H6213\"* porch of|strong=\"H3678\"* the|strong=\"H6213\"* throne|strong=\"H3678\"* where|strong=\"H8033\"* he|strong=\"H5704\"* was|strong=\"H6213\"* to|strong=\"H5704\"* judge|strong=\"H8199\"*, even|strong=\"H5704\"* the|strong=\"H6213\"* porch of|strong=\"H3678\"* judgment|strong=\"H4941\"*; and|strong=\"H4941\"* it|strong=\"H6213\"* was|strong=\"H6213\"* covered|strong=\"H5603\"* with|strong=\"H6213\"* cedar from|strong=\"H5704\"* floor|strong=\"H7172\"* to|strong=\"H5704\"* floor|strong=\"H7172\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H3947\"* house|strong=\"H1004\"* where|strong=\"H8033\"* he|strong=\"H8033\"* was|strong=\"H1961\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"*, the|strong=\"H3947\"* other|strong=\"H2088\"* court|strong=\"H2691\"* within|strong=\"H1004\"* the|strong=\"H3947\"* porch, was|strong=\"H1961\"* of|strong=\"H1004\"* the|strong=\"H3947\"* same|strong=\"H2088\"* construction. He|strong=\"H8033\"* made|strong=\"H6213\"* also|strong=\"H6213\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H6213\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* (whom Solomon|strong=\"H8010\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* as|strong=\"H1961\"* wife), like|strong=\"H1961\"* this|strong=\"H2088\"* porch." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1419\"* of|strong=\"H1004\"* costly|strong=\"H3368\"* stones|strong=\"H1496\"*, even|strong=\"H5704\"* of|strong=\"H1004\"* stone|strong=\"H1496\"* cut|strong=\"H1496\"* according to|strong=\"H5704\"* measure|strong=\"H4060\"*, sawed|strong=\"H1641\"* with|strong=\"H1004\"* saws|strong=\"H4050\"*, inside|strong=\"H1004\"* and|strong=\"H1419\"* outside|strong=\"H2351\"*, even|strong=\"H5704\"* from|strong=\"H5704\"* the|strong=\"H3605\"* foundation|strong=\"H4527\"* to|strong=\"H5704\"* the|strong=\"H3605\"* coping|strong=\"H2947\"*, and|strong=\"H1419\"* so|strong=\"H5704\"* on|strong=\"H1004\"* the|strong=\"H3605\"* outside|strong=\"H2351\"* to|strong=\"H5704\"* the|strong=\"H3605\"* great|strong=\"H1419\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3245\"* foundation|strong=\"H3245\"* was|strong=\"H1419\"* of|strong=\"H1419\"* costly|strong=\"H3368\"* stones, even great|strong=\"H1419\"* stones, stones of|strong=\"H1419\"* ten|strong=\"H6235\"* cubits and|strong=\"H1419\"* stones of|strong=\"H1419\"* eight|strong=\"H8083\"* cubits." + }, + { + "verseNum": 11, + "text": "Above|strong=\"H4605\"* were|strong=\"H4605\"* costly|strong=\"H3368\"* stones|strong=\"H1496\"*, even cut|strong=\"H1496\"* stone|strong=\"H1496\"*, according to|strong=\"H4605\"* measure|strong=\"H4060\"*, and|strong=\"H4605\"* cedar wood." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3068\"* great|strong=\"H1419\"* court|strong=\"H2691\"* around|strong=\"H5439\"* had|strong=\"H3068\"* three|strong=\"H7969\"* courses|strong=\"H5439\"* of|strong=\"H1004\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"* with|strong=\"H1004\"* a|strong=\"H3068\"* course of|strong=\"H1004\"* cedar beams|strong=\"H3773\"*, like|strong=\"H1004\"* the|strong=\"H3068\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3068\"* porch of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* brought|strong=\"H3947\"* Hiram|strong=\"H2438\"* out|strong=\"H7971\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* widow of|strong=\"H1121\"* the|strong=\"H3605\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* was|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Tyre|strong=\"H6876\"*, a|strong=\"H3068\"* worker|strong=\"H6213\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* was|strong=\"H1931\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wisdom|strong=\"H2451\"* and|strong=\"H1121\"* understanding|strong=\"H8394\"* and|strong=\"H1121\"* skill|strong=\"H2451\"* to|strong=\"H6213\"* work|strong=\"H4399\"* all|strong=\"H3605\"* works|strong=\"H6213\"* in|strong=\"H6213\"* bronze|strong=\"H5178\"*. He|strong=\"H1931\"* came|strong=\"H4428\"* to|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H1121\"* performed|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H5178\"* he|strong=\"H8147\"* fashioned|strong=\"H6696\"* the|strong=\"H5437\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*, eighteen|strong=\"H8083\"* cubits high|strong=\"H6967\"* apiece|strong=\"H5982\"*; and|strong=\"H8147\"* a|strong=\"H3068\"* line|strong=\"H2339\"* of|strong=\"H5982\"* twelve|strong=\"H8147\"* cubits encircled|strong=\"H5437\"* either|strong=\"H8145\"* of|strong=\"H5982\"* them|strong=\"H8147\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* capitals|strong=\"H3805\"* of|strong=\"H7218\"* molten|strong=\"H3332\"* bronze|strong=\"H5178\"* to|strong=\"H6213\"* set|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*. The|strong=\"H5921\"* height|strong=\"H6967\"* of|strong=\"H7218\"* the|strong=\"H5921\"* one|strong=\"H6213\"* capital|strong=\"H3805\"* was|strong=\"H7218\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, and|strong=\"H7218\"* the|strong=\"H5921\"* height|strong=\"H6967\"* of|strong=\"H7218\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"* was|strong=\"H7218\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 17, + "text": "There were|strong=\"H7218\"* nets|strong=\"H7638\"* of|strong=\"H7218\"* checker|strong=\"H7639\"* work|strong=\"H4639\"* and|strong=\"H7218\"* wreaths|strong=\"H1434\"* of|strong=\"H7218\"* chain|strong=\"H8333\"* work|strong=\"H4639\"* for|strong=\"H5921\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* which|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*: seven|strong=\"H7651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* one|strong=\"H7651\"* capital|strong=\"H3805\"*, and|strong=\"H7218\"* seven|strong=\"H7651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"H3651\"* he|strong=\"H3651\"* made|strong=\"H6213\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H7218\"* there were|strong=\"H7218\"* two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H7218\"* pomegranates|strong=\"H7416\"* around|strong=\"H5439\"* the|strong=\"H5921\"* one|strong=\"H6213\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3651\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H7218\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"* for|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* in|strong=\"H5921\"* the|strong=\"H5921\"* porch were|strong=\"H7218\"* of|strong=\"H7218\"* lily|strong=\"H7799\"* work|strong=\"H4639\"*, four cubits." + }, + { + "verseNum": 20, + "text": "There were|strong=\"H8147\"* capitals|strong=\"H3805\"* above|strong=\"H4605\"* also|strong=\"H1571\"* on|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, close|strong=\"H5980\"* by|strong=\"H5921\"* the|strong=\"H5921\"* belly which|strong=\"H3805\"* was|strong=\"H3805\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* network|strong=\"H7639\"*. There were|strong=\"H8147\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* in|strong=\"H5921\"* rows|strong=\"H2905\"* around|strong=\"H5439\"* the|strong=\"H5921\"* other|strong=\"H8145\"* capital|strong=\"H3805\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* pillars|strong=\"H5982\"* at|strong=\"H6965\"* the|strong=\"H7121\"* porch of|strong=\"H8034\"* the|strong=\"H7121\"* temple|strong=\"H1964\"*. He|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* right|strong=\"H3233\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* called|strong=\"H7121\"* its|strong=\"H6965\"* name|strong=\"H8034\"* Jachin|strong=\"H3199\"*; and|strong=\"H6965\"* he|strong=\"H7121\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H7121\"* left|strong=\"H8042\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* called|strong=\"H7121\"* its|strong=\"H6965\"* name|strong=\"H8034\"* Boaz|strong=\"H1162\"*." + }, + { + "verseNum": 22, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* was|strong=\"H7218\"* lily|strong=\"H7799\"* work|strong=\"H4399\"*. So|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* was|strong=\"H7218\"* finished|strong=\"H8552\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H5704\"* made|strong=\"H6213\"* the|strong=\"H6213\"* molten sea|strong=\"H3220\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"* from|strong=\"H5704\"* brim|strong=\"H8193\"* to|strong=\"H5704\"* brim|strong=\"H8193\"*, round|strong=\"H5439\"* in|strong=\"H6213\"* shape. Its|strong=\"H6213\"* height|strong=\"H6967\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*; and|strong=\"H7970\"* a|strong=\"H3068\"* line of|strong=\"H8193\"* thirty|strong=\"H7970\"* cubits|strong=\"H2568\"* encircled|strong=\"H5437\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "Under|strong=\"H8478\"* its|strong=\"H8478\"* brim|strong=\"H8193\"* around|strong=\"H5439\"* there|strong=\"H8478\"* were|strong=\"H8147\"* buds which encircled|strong=\"H5437\"* it|strong=\"H5439\"* for|strong=\"H8478\"* ten|strong=\"H6235\"* cubits, encircling|strong=\"H5437\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*. The|strong=\"H8478\"* buds were|strong=\"H8147\"* in|strong=\"H3220\"* two|strong=\"H8147\"* rows|strong=\"H2905\"*, cast|strong=\"H3332\"* when it|strong=\"H5439\"* was|strong=\"H8193\"* cast|strong=\"H3332\"*." + }, + { + "verseNum": 25, + "text": "It|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* south|strong=\"H5045\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* east|strong=\"H4217\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* was|strong=\"H1004\"* set|strong=\"H5975\"* on|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* hindquarters were|strong=\"H1241\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "It was|strong=\"H8193\"* a|strong=\"H3068\"* hand width thick|strong=\"H5672\"*. Its brim|strong=\"H8193\"* was|strong=\"H8193\"* worked like|strong=\"H7799\"* the|strong=\"H3557\"* brim|strong=\"H8193\"* of|strong=\"H4639\"* a|strong=\"H3068\"* cup|strong=\"H3563\"*, like|strong=\"H7799\"* the|strong=\"H3557\"* flower|strong=\"H6525\"* of|strong=\"H4639\"* a|strong=\"H3068\"* lily|strong=\"H7799\"*. It held|strong=\"H3557\"* two|strong=\"H3557\"* thousand baths|strong=\"H1324\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"* of|strong=\"H7341\"* bronze|strong=\"H5178\"*. The|strong=\"H6213\"* length|strong=\"H6967\"* of|strong=\"H7341\"* one|strong=\"H6213\"* base|strong=\"H4350\"* was|strong=\"H6967\"* four|strong=\"H7969\"* cubits, four|strong=\"H7969\"* cubits its|strong=\"H6213\"* width|strong=\"H7341\"*, and|strong=\"H6213\"* three|strong=\"H7969\"* cubits its|strong=\"H6213\"* height|strong=\"H6967\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H2088\"* work|strong=\"H4639\"* of|strong=\"H4639\"* the|strong=\"H2088\"* bases|strong=\"H4350\"* was|strong=\"H2088\"* like|strong=\"H4526\"* this|strong=\"H2088\"*: they|strong=\"H1992\"* had|strong=\"H4350\"* panels; and|strong=\"H2088\"* there|strong=\"H1992\"* were|strong=\"H1992\"* panels between the|strong=\"H2088\"* ledges|strong=\"H7948\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1241\"* on|strong=\"H5921\"* the|strong=\"H5921\"* panels that|strong=\"H1241\"* were|strong=\"H1241\"* between|strong=\"H5921\"* the|strong=\"H5921\"* ledges|strong=\"H7948\"* were|strong=\"H1241\"* lions, oxen|strong=\"H1241\"*, and|strong=\"H1241\"* cherubim|strong=\"H3742\"*; and|strong=\"H1241\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ledges|strong=\"H7948\"* there|strong=\"H7948\"* was|strong=\"H3742\"* a|strong=\"H3068\"* pedestal|strong=\"H3653\"* above|strong=\"H4605\"*; and|strong=\"H1241\"* beneath|strong=\"H8478\"* the|strong=\"H5921\"* lions and|strong=\"H1241\"* oxen|strong=\"H1241\"* were|strong=\"H1241\"* wreaths|strong=\"H3914\"* of|strong=\"H5921\"* hanging|strong=\"H4174\"* work|strong=\"H4639\"*." + }, + { + "verseNum": 30, + "text": "Every|strong=\"H8478\"* base|strong=\"H4350\"* had|strong=\"H4350\"* four bronze|strong=\"H5178\"* wheels|strong=\"H6471\"* and|strong=\"H5178\"* axles|strong=\"H5633\"* of|strong=\"H8478\"* bronze|strong=\"H5178\"*; and|strong=\"H5178\"* its|strong=\"H8478\"* four feet|strong=\"H6471\"* had|strong=\"H4350\"* supports|strong=\"H3802\"*. The|strong=\"H8478\"* supports|strong=\"H3802\"* were cast|strong=\"H3333\"* beneath|strong=\"H8478\"* the|strong=\"H8478\"* basin|strong=\"H3595\"*, with|strong=\"H6471\"* wreaths|strong=\"H3914\"* at|strong=\"H3914\"* the|strong=\"H8478\"* side|strong=\"H5676\"* of|strong=\"H8478\"* each|strong=\"H6471\"*." + }, + { + "verseNum": 31, + "text": "Its|strong=\"H5921\"* opening|strong=\"H6310\"* within|strong=\"H1004\"* the|strong=\"H5921\"* capital|strong=\"H3805\"* and|strong=\"H1004\"* above|strong=\"H4605\"* was|strong=\"H1004\"* a|strong=\"H3068\"* cubit. Its|strong=\"H5921\"* opening|strong=\"H6310\"* was|strong=\"H1004\"* round|strong=\"H5696\"* like|strong=\"H1004\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H1004\"* a|strong=\"H3068\"* pedestal|strong=\"H3653\"*, a|strong=\"H3068\"* cubit and|strong=\"H1004\"* a|strong=\"H3068\"* half|strong=\"H2677\"*; and|strong=\"H1004\"* also|strong=\"H1571\"* on|strong=\"H5921\"* its|strong=\"H5921\"* opening|strong=\"H6310\"* were|strong=\"H1004\"* engravings|strong=\"H4734\"*, and|strong=\"H1004\"* their|strong=\"H5921\"* panels were|strong=\"H1004\"* square|strong=\"H7251\"*, not|strong=\"H3808\"* round|strong=\"H5696\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H8478\"* four wheels were|strong=\"H3027\"* underneath|strong=\"H8478\"* the|strong=\"H8478\"* panels; and|strong=\"H3027\"* the|strong=\"H8478\"* axles|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H8478\"* wheels were|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H8478\"* base|strong=\"H4350\"*. The|strong=\"H8478\"* height|strong=\"H6967\"* of|strong=\"H3027\"* a|strong=\"H3068\"* wheel was|strong=\"H3027\"* a|strong=\"H3068\"* cubit and|strong=\"H3027\"* half|strong=\"H2677\"* a|strong=\"H3068\"* cubit." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* the|strong=\"H3605\"* wheels was|strong=\"H3027\"* like|strong=\"H4818\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* wheel. Their|strong=\"H3605\"* axles|strong=\"H3027\"*, their|strong=\"H3605\"* rims|strong=\"H1354\"*, their|strong=\"H3605\"* spokes|strong=\"H2839\"*, and|strong=\"H3027\"* their|strong=\"H3605\"* hubs|strong=\"H2840\"* were|strong=\"H3027\"* all|strong=\"H3605\"* of|strong=\"H3027\"* cast|strong=\"H3332\"* metal." + }, + { + "verseNum": 34, + "text": "There|strong=\"H4480\"* were|strong=\"H4480\"* four supports|strong=\"H3802\"* at|strong=\"H4480\"* the|strong=\"H4480\"* four corners|strong=\"H6438\"* of|strong=\"H4480\"* each base|strong=\"H4350\"*. Its|strong=\"H4350\"* supports|strong=\"H3802\"* were|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* base|strong=\"H4350\"* itself." + }, + { + "verseNum": 35, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* base|strong=\"H4350\"* there|strong=\"H4480\"* was|strong=\"H3027\"* a|strong=\"H3068\"* round|strong=\"H5439\"* band|strong=\"H7218\"* half|strong=\"H2677\"* a|strong=\"H3068\"* cubit high|strong=\"H6967\"*; and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* base|strong=\"H4350\"* its|strong=\"H5921\"* supports and|strong=\"H3027\"* its|strong=\"H5921\"* panels were|strong=\"H3027\"* the|strong=\"H5921\"* same|strong=\"H4480\"*." + }, + { + "verseNum": 36, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* plates|strong=\"H3871\"* of|strong=\"H3027\"* its|strong=\"H5921\"* supports and|strong=\"H3027\"* on|strong=\"H5921\"* its|strong=\"H5921\"* panels, he|strong=\"H3027\"* engraved|strong=\"H6605\"* cherubim|strong=\"H3742\"*, lions, and|strong=\"H3027\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"*, each|strong=\"H5439\"* in|strong=\"H5921\"* its|strong=\"H5921\"* space|strong=\"H4626\"*, with|strong=\"H5921\"* wreaths|strong=\"H3914\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H3605\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"* in|strong=\"H6213\"* this|strong=\"H2063\"* way|strong=\"H2063\"*: all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H6213\"* had|strong=\"H4350\"* one|strong=\"H3605\"* casting|strong=\"H4165\"*, one|strong=\"H3605\"* measure|strong=\"H4060\"*, and|strong=\"H6213\"* one|strong=\"H3605\"* form|strong=\"H7095\"*." + }, + { + "verseNum": 38, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"* of|strong=\"H5921\"* bronze|strong=\"H5178\"*. One|strong=\"H6213\"* basin|strong=\"H3595\"* contained|strong=\"H3557\"* forty baths|strong=\"H1324\"*.+ 7:38 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters, so 40 baths was about 224 gallons or 840 liters.* Every|strong=\"H6213\"* basin|strong=\"H3595\"* measured four cubits. One|strong=\"H6213\"* basin|strong=\"H3595\"* was|strong=\"H6213\"* on|strong=\"H5921\"* every|strong=\"H6213\"* one|strong=\"H6213\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H2568\"* set|strong=\"H5414\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, five|strong=\"H2568\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1004\"* five|strong=\"H2568\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*. He|strong=\"H2568\"* set|strong=\"H5414\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* eastward|strong=\"H6924\"* and|strong=\"H1004\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 40, + "text": "Hiram|strong=\"H2438\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pots, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*. So|strong=\"H6213\"* Hiram|strong=\"H2438\"* finished|strong=\"H3615\"* doing|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* he|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*:" + }, + { + "verseNum": 41, + "text": "the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*; the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; the|strong=\"H5921\"* two|strong=\"H8147\"* networks|strong=\"H7639\"* to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 42, + "text": "the|strong=\"H6440\"* four hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* networks|strong=\"H7639\"*; two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H6440\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* each|strong=\"H8147\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H6440\"* the|strong=\"H6440\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"*;" + }, + { + "verseNum": 43, + "text": "the|strong=\"H5921\"* ten|strong=\"H6235\"* bases|strong=\"H4350\"*; the|strong=\"H5921\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*;" + }, + { + "verseNum": 44, + "text": "the|strong=\"H8478\"* one|strong=\"H8147\"* sea|strong=\"H3220\"*; the|strong=\"H8478\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"* under|strong=\"H8478\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 45, + "text": "the|strong=\"H3605\"* pots|strong=\"H5518\"*; the|strong=\"H3605\"* shovels|strong=\"H3257\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* basins|strong=\"H4219\"*. All|strong=\"H3605\"* of|strong=\"H4428\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"*, which|strong=\"H3068\"* Hiram|strong=\"H2438\"* made|strong=\"H6213\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, were|strong=\"H4428\"* of|strong=\"H4428\"* burnished bronze|strong=\"H5178\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H3332\"* king|strong=\"H4428\"* cast|strong=\"H3332\"* them in|strong=\"H4428\"* the|strong=\"H3332\"* plain|strong=\"H3603\"* of|strong=\"H4428\"* the|strong=\"H3332\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3332\"* clay|strong=\"H4568\"* ground between Succoth|strong=\"H5523\"* and|strong=\"H4428\"* Zarethan|strong=\"H6891\"*." + }, + { + "verseNum": 47, + "text": "Solomon|strong=\"H8010\"* left|strong=\"H3240\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* unweighed|strong=\"H7230\"*, because|strong=\"H7230\"* there|strong=\"H3605\"* were|strong=\"H3627\"* so|strong=\"H3808\"* many|strong=\"H7230\"* of|strong=\"H3627\"* them|strong=\"H3240\"*. The|strong=\"H3605\"* weight|strong=\"H4948\"* of|strong=\"H3627\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* determined." + }, + { + "verseNum": 48, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3627\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*: the|strong=\"H3605\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"* and|strong=\"H3068\"* the|strong=\"H3605\"* table|strong=\"H7979\"* that|strong=\"H3605\"* the|strong=\"H3605\"* show|strong=\"H6213\"* bread|strong=\"H3899\"* was|strong=\"H3068\"* on|strong=\"H5921\"*, of|strong=\"H1004\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 49, + "text": "and|strong=\"H2091\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stands, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6440\"* right|strong=\"H3225\"* side|strong=\"H3225\"* and|strong=\"H2091\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6440\"* left|strong=\"H8040\"*, in|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, of|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*; and|strong=\"H2091\"* the|strong=\"H6440\"* flowers|strong=\"H6525\"*, the|strong=\"H6440\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* the|strong=\"H6440\"* tongs|strong=\"H4457\"*, of|strong=\"H6440\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 50, + "text": "the|strong=\"H5462\"* cups|strong=\"H5592\"*, the|strong=\"H5462\"* snuffers|strong=\"H4212\"*, the|strong=\"H5462\"* basins|strong=\"H4219\"*, the|strong=\"H5462\"* spoons|strong=\"H3709\"*, and|strong=\"H1004\"* the|strong=\"H5462\"* fire pans|strong=\"H3709\"*, of|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*; and|strong=\"H1004\"* the|strong=\"H5462\"* hinges|strong=\"H6596\"*, both for|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, the|strong=\"H5462\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* house|strong=\"H1004\"*, of|strong=\"H1004\"* the|strong=\"H5462\"* temple|strong=\"H1004\"*, of|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 51, + "text": "Thus all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* did|strong=\"H6213\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* finished|strong=\"H7999\"*. Solomon|strong=\"H8010\"* brought|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H6944\"* which|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*—the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*—and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H4428\"* Solomon|strong=\"H8010\"* assembled|strong=\"H6950\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3605\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6950\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* at|strong=\"H3478\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* in|strong=\"H3478\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Ethanim, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* ark." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark, the|strong=\"H3605\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3881\"* in|strong=\"H3068\"* the|strong=\"H3605\"* Tent. The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* brought|strong=\"H5927\"* these|strong=\"H3605\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 5, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* assembled|strong=\"H3259\"* to|strong=\"H3478\"* him|strong=\"H6440\"*, were|strong=\"H3478\"* with|strong=\"H5921\"* him|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark, sacrificing|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H3478\"* cattle|strong=\"H1241\"* that|strong=\"H3605\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* or|strong=\"H3808\"* numbered|strong=\"H5608\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* brought|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* to|strong=\"H3068\"* its|strong=\"H8478\"* place|strong=\"H4725\"*, into the|strong=\"H3068\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, even|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H3068\"* cherubim|strong=\"H3742\"*’s wings|strong=\"H3671\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* their|strong=\"H5921\"* wings|strong=\"H3671\"* out|strong=\"H6566\"* over|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4725\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* covered|strong=\"H5526\"* the|strong=\"H5921\"* ark and|strong=\"H4725\"* its|strong=\"H5921\"* poles above|strong=\"H4605\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* poles were|strong=\"H1961\"* so|strong=\"H4480\"* long|strong=\"H5704\"* that|strong=\"H7200\"* the|strong=\"H6440\"* ends|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H6440\"* poles were|strong=\"H1961\"* seen|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"*, but|strong=\"H3808\"* they|strong=\"H3117\"* were|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* outside|strong=\"H2351\"*. They|strong=\"H3117\"* are|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "There|strong=\"H8033\"* was|strong=\"H3068\"* nothing in|strong=\"H3478\"* the|strong=\"H3068\"* ark except|strong=\"H7535\"* the|strong=\"H3068\"* two|strong=\"H8147\"* stone tablets|strong=\"H3871\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* put|strong=\"H3240\"* there|strong=\"H8033\"* at|strong=\"H3478\"* Horeb|strong=\"H2722\"*, when|strong=\"H3318\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H8033\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H3068\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3318\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* had|strong=\"H3068\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* cloud|strong=\"H6051\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H3808\"* that|strong=\"H3588\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* stand|strong=\"H5975\"* to|strong=\"H3201\"* minister|strong=\"H8334\"* by|strong=\"H3068\"* reason|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3068\"* Solomon|strong=\"H8010\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3068\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H1004\"* have|strong=\"H1129\"* surely|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* habitation|strong=\"H2073\"*, a|strong=\"H3068\"* place|strong=\"H4349\"* for|strong=\"H3427\"* you|strong=\"H1129\"* to|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* turned|strong=\"H5437\"* his|strong=\"H3605\"* face|strong=\"H6440\"* around|strong=\"H5437\"* and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* his|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* has|strong=\"H3068\"* with|strong=\"H4390\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 16, + "text": "‘Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, I|strong=\"H3117\"* chose no|strong=\"H3808\"* city|strong=\"H5892\"* out|strong=\"H3318\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H5971\"* my|strong=\"H3605\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*; but|strong=\"H3808\"* I|strong=\"H3117\"* chose David|strong=\"H1732\"* to|strong=\"H3318\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 17, + "text": "“Now|strong=\"H1961\"* it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H8034\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, ‘Whereas|strong=\"H3282\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, you|strong=\"H3588\"* did|strong=\"H3068\"* well|strong=\"H2895\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 19, + "text": "Nevertheless|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"*; but|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1931\"* shall|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3588\"* body, he|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3318\"* name|strong=\"H8034\"*.’" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3427\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H6965\"* I|strong=\"H5921\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* promised|strong=\"H1696\"*, and|strong=\"H6965\"* have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 21, + "text": "There|strong=\"H8033\"* I|strong=\"H7760\"* have|strong=\"H3068\"* set|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H4714\"* the|strong=\"H3068\"* ark, in|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* made|strong=\"H3772\"* with|strong=\"H5973\"* our|strong=\"H3068\"* fathers when|strong=\"H3318\"* he|strong=\"H8033\"* brought|strong=\"H3318\"* them|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H4725\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*.”" + }, + { + "verseNum": 22, + "text": "Solomon|strong=\"H8010\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3478\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H6440\"* heaven|strong=\"H8064\"*;" + }, + { + "verseNum": 23, + "text": "and|strong=\"H1980\"* he|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* God|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6440\"*, in|strong=\"H5921\"* heaven|strong=\"H8064\"* above|strong=\"H4605\"*, or|strong=\"H3068\"* on|strong=\"H5921\"* earth|strong=\"H8064\"* beneath|strong=\"H8478\"*; who|strong=\"H3605\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H1980\"* loving kindness|strong=\"H2617\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* with|strong=\"H1980\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 24, + "text": "who|strong=\"H5650\"* has|strong=\"H5650\"* kept|strong=\"H8104\"* with|strong=\"H4390\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father that|strong=\"H3117\"* which|strong=\"H2088\"* you|strong=\"H3117\"* promised|strong=\"H1696\"* him|strong=\"H3027\"*. Yes, you|strong=\"H3117\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* have|strong=\"H5650\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H1696\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, may|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, keep|strong=\"H8104\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* that|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*, ‘There|strong=\"H3427\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* from|strong=\"H6440\"* you|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H3427\"* my|strong=\"H8104\"* sight|strong=\"H6440\"* to|strong=\"H1696\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, if|strong=\"H1121\"* only|strong=\"H7535\"* your|strong=\"H3068\"* children|strong=\"H1121\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.’" + }, + { + "verseNum": 26, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, God of|strong=\"H1697\"* Israel|strong=\"H3478\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* word|strong=\"H1697\"* be|strong=\"H1697\"* verified, which|strong=\"H1697\"* you|strong=\"H1696\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H4994\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* father." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* will|strong=\"H1004\"* God|strong=\"H3808\"* in|strong=\"H3427\"* very|strong=\"H2088\"* deed dwell|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*? Behold|strong=\"H2009\"*, heaven|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H5921\"* heaven|strong=\"H8064\"* of|strong=\"H1004\"* heavens|strong=\"H8064\"* can|strong=\"H3808\"*’t contain|strong=\"H3557\"* you|strong=\"H3588\"*; how|strong=\"H3588\"* much|strong=\"H5921\"* less|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1129\"* built|strong=\"H1129\"*!" + }, + { + "verseNum": 28, + "text": "Yet|strong=\"H3068\"* have|strong=\"H3068\"* respect|strong=\"H6437\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3068\"* for|strong=\"H6440\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* cry|strong=\"H7440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 29, + "text": "that|strong=\"H3117\"* your|strong=\"H8085\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* toward this|strong=\"H2088\"* house|strong=\"H1004\"* night|strong=\"H3915\"* and|strong=\"H3117\"* day|strong=\"H3117\"*, even|strong=\"H5869\"* toward the|strong=\"H8085\"* place|strong=\"H4725\"* of|strong=\"H1004\"* which|strong=\"H1004\"* you|strong=\"H3117\"* have|strong=\"H1961\"* said|strong=\"H8085\"*, ‘My|strong=\"H8085\"* name|strong=\"H8034\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* there|strong=\"H8033\"*;’ to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* prayer|strong=\"H8605\"* which|strong=\"H1004\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 30, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* supplication|strong=\"H8467\"* of|strong=\"H3427\"* your|strong=\"H8085\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* of|strong=\"H3427\"* your|strong=\"H8085\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H8085\"* they|strong=\"H5971\"* pray|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*. Yes, hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4725\"*; and|strong=\"H3478\"* when|strong=\"H8085\"* you|strong=\"H5971\"* hear|strong=\"H8085\"*, forgive|strong=\"H5545\"*." + }, + { + "verseNum": 31, + "text": "“If|strong=\"H2398\"* a|strong=\"H3068\"* man|strong=\"H2088\"* sins|strong=\"H2398\"* against|strong=\"H6440\"* his|strong=\"H6440\"* neighbor|strong=\"H7453\"*, and|strong=\"H1004\"* an|strong=\"H6440\"* oath is|strong=\"H2088\"* laid|strong=\"H6440\"* on|strong=\"H1004\"* him|strong=\"H6440\"* to|strong=\"H6440\"* cause him|strong=\"H6440\"* to|strong=\"H6440\"* swear, and|strong=\"H1004\"* he|strong=\"H1004\"* comes|strong=\"H6440\"* and|strong=\"H1004\"* swears before|strong=\"H6440\"* your|strong=\"H6440\"* altar|strong=\"H4196\"* in|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 32, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* act|strong=\"H6213\"*, and|strong=\"H8064\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, condemning|strong=\"H7561\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*, to|strong=\"H6213\"* bring|strong=\"H5414\"* his|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* his|strong=\"H5414\"* own head|strong=\"H7218\"*, and|strong=\"H8064\"* justifying|strong=\"H6663\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*, to|strong=\"H6213\"* give|strong=\"H5414\"* him|strong=\"H5414\"* according to|strong=\"H6213\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H7725\"* your|strong=\"H6440\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy because|strong=\"H6440\"* they|strong=\"H5971\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H6440\"*, if|strong=\"H2603\"* they|strong=\"H5971\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H6440\"* and|strong=\"H3478\"* confess|strong=\"H3034\"* your|strong=\"H6440\"* name|strong=\"H8034\"*, and|strong=\"H3478\"* pray|strong=\"H6419\"* and|strong=\"H3478\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H6440\"* in|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 34, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H3478\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H8085\"* sin|strong=\"H2403\"* of|strong=\"H5971\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H8085\"* land|strong=\"H8064\"* which|strong=\"H5971\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H5414\"* fathers." + }, + { + "verseNum": 35, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* is|strong=\"H2088\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H7725\"* there|strong=\"H1961\"* is|strong=\"H2088\"* no|strong=\"H3808\"* rain|strong=\"H4306\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* toward|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* confess|strong=\"H3034\"* your|strong=\"H7725\"* name|strong=\"H8034\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* sin|strong=\"H2403\"* when|strong=\"H3588\"* you|strong=\"H3588\"* afflict|strong=\"H6031\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 36, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H1870\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H3478\"* of|strong=\"H1870\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* teach|strong=\"H3384\"* them|strong=\"H5414\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H3588\"* should|strong=\"H3588\"* walk|strong=\"H3212\"*; and|strong=\"H3478\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* your|strong=\"H5414\"* land|strong=\"H5159\"* which|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H5414\"* people|strong=\"H5971\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 37, + "text": "“If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* famine|strong=\"H7458\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* pestilence|strong=\"H1698\"*, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* blight|strong=\"H7711\"*, mildew|strong=\"H3420\"*, locust|strong=\"H2625\"* or|strong=\"H5061\"* caterpillar|strong=\"H2625\"*; if|strong=\"H3588\"* their|strong=\"H3605\"* enemy|strong=\"H6887\"* besieges|strong=\"H6887\"* them|strong=\"H1961\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land of|strong=\"H8179\"* their|strong=\"H3605\"* cities|strong=\"H8179\"*, whatever|strong=\"H3605\"* plague|strong=\"H5061\"*, whatever|strong=\"H3605\"* sickness|strong=\"H4245\"* there|strong=\"H1961\"* is|strong=\"H3605\"*," + }, + { + "verseNum": 38, + "text": "whatever|strong=\"H3605\"* prayer|strong=\"H8605\"* and|strong=\"H3478\"* supplication|strong=\"H8467\"* is|strong=\"H2088\"* made|strong=\"H3045\"* by|strong=\"H3478\"* any|strong=\"H3605\"* man|strong=\"H3605\"*, or|strong=\"H1004\"* by|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* shall|strong=\"H5971\"* each|strong=\"H3605\"* know|strong=\"H3045\"* the|strong=\"H3605\"* plague|strong=\"H5061\"* of|strong=\"H1004\"* his|strong=\"H3605\"* own|strong=\"H1961\"* heart|strong=\"H3824\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H3709\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 39, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H1121\"* forgive|strong=\"H5545\"*, and|strong=\"H1121\"* act|strong=\"H6213\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H1121\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, whose|strong=\"H1121\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* know|strong=\"H3045\"* (for|strong=\"H3588\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* hearts|strong=\"H3824\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*);" + }, + { + "verseNum": 40, + "text": "that|strong=\"H3605\"* they|strong=\"H1992\"* may|strong=\"H5414\"* fear|strong=\"H3372\"* you|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* that|strong=\"H3605\"* they|strong=\"H1992\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 41, + "text": "“Moreover|strong=\"H1571\"*, concerning|strong=\"H3478\"* the|strong=\"H1571\"* foreigner|strong=\"H5237\"*, who|strong=\"H1931\"* is|strong=\"H1931\"* not|strong=\"H3808\"* of|strong=\"H8034\"* your|strong=\"H3808\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H1571\"* he|strong=\"H1931\"* comes out|strong=\"H3808\"* of|strong=\"H8034\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country for|strong=\"H8034\"* your|strong=\"H3808\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*" + }, + { + "verseNum": 42, + "text": "(for|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H1004\"* hear|strong=\"H8085\"* of|strong=\"H1004\"* your|strong=\"H5186\"* great|strong=\"H1419\"* name|strong=\"H8034\"* and|strong=\"H1419\"* of|strong=\"H1004\"* your|strong=\"H5186\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* of|strong=\"H1004\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*), when|strong=\"H3588\"* he|strong=\"H3588\"* comes and|strong=\"H1419\"* prays|strong=\"H6419\"* toward|strong=\"H3027\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 43, + "text": "hear|strong=\"H8085\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* calls|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"*; that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H5971\"* know|strong=\"H3045\"* your|strong=\"H3605\"* name|strong=\"H8034\"*, to|strong=\"H3478\"* fear|strong=\"H3372\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 44, + "text": "“If|strong=\"H3588\"* your|strong=\"H3068\"* people|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* their|strong=\"H3068\"* enemy, by|strong=\"H5921\"* whatever way|strong=\"H1870\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* send|strong=\"H7971\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* chosen, and|strong=\"H3068\"* toward|strong=\"H1870\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H3588\"* your|strong=\"H3068\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 45, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* in|strong=\"H6213\"* heaven|strong=\"H8064\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*." + }, + { + "verseNum": 46, + "text": "If|strong=\"H3588\"* they|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* there|strong=\"H6440\"* is|strong=\"H6440\"* no|strong=\"H3808\"* man|strong=\"H6440\"* who|strong=\"H7350\"* doesn’t sin|strong=\"H2398\"*), and|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H7350\"* angry with|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H6440\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* enemy, so|strong=\"H5414\"* that|strong=\"H3588\"* they|strong=\"H3588\"* carry them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* to|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* enemy, far|strong=\"H7350\"* off|strong=\"H7350\"* or|strong=\"H3808\"* near|strong=\"H7138\"*;" + }, + { + "verseNum": 47, + "text": "yet|strong=\"H2398\"* if|strong=\"H2603\"* they|strong=\"H8033\"* repent|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H8033\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H3820\"* those who carried|strong=\"H7617\"* them|strong=\"H7725\"* captive|strong=\"H7617\"*, saying, ‘We|strong=\"H8033\"* have|strong=\"H7617\"* sinned|strong=\"H2398\"* and|strong=\"H7725\"* have|strong=\"H7617\"* done|strong=\"H2398\"* perversely|strong=\"H5753\"*; we|strong=\"H3068\"* have|strong=\"H7617\"* dealt|strong=\"H2603\"* wickedly|strong=\"H7561\"*,’" + }, + { + "verseNum": 48, + "text": "if they|strong=\"H5315\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H7725\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* their|strong=\"H3605\"* enemies who|strong=\"H3605\"* carried|strong=\"H7617\"* them|strong=\"H5414\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* pray|strong=\"H6419\"* to|strong=\"H7725\"* you|strong=\"H5414\"* toward|strong=\"H1870\"* their|strong=\"H3605\"* land which|strong=\"H1004\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H5414\"* chosen and|strong=\"H7725\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H8034\"* your|strong=\"H3605\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 49, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"* in|strong=\"H3427\"* heaven|strong=\"H8064\"*, your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*;" + }, + { + "verseNum": 50, + "text": "and|strong=\"H5971\"* forgive|strong=\"H5545\"* your|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* have|strong=\"H7355\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"* in|strong=\"H6440\"* which|strong=\"H5971\"* they|strong=\"H5971\"* have|strong=\"H7355\"* transgressed|strong=\"H6586\"* against|strong=\"H6440\"* you|strong=\"H5414\"*; and|strong=\"H5971\"* give|strong=\"H5414\"* them|strong=\"H5414\"* compassion|strong=\"H7355\"* before|strong=\"H6440\"* those|strong=\"H3605\"* who|strong=\"H3605\"* carried|strong=\"H7617\"* them|strong=\"H5414\"* captive|strong=\"H7617\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H5971\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H5414\"*" + }, + { + "verseNum": 51, + "text": "(for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H3588\"* people|strong=\"H5971\"* and|strong=\"H5971\"* your|strong=\"H3588\"* inheritance|strong=\"H5159\"*, which|strong=\"H1992\"* you|strong=\"H3588\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8432\"* Egypt|strong=\"H4714\"*, from|strong=\"H3318\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3588\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*);" + }, + { + "verseNum": 52, + "text": "that|strong=\"H5971\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* to|strong=\"H3478\"* the|strong=\"H3605\"* supplication|strong=\"H8467\"* of|strong=\"H5869\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* supplication|strong=\"H8467\"* of|strong=\"H5869\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* them|strong=\"H7121\"* whenever|strong=\"H3605\"* they|strong=\"H5971\"* cry|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 53, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* separated them|strong=\"H3027\"* from|strong=\"H3318\"* among|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth to|strong=\"H1696\"* be|strong=\"H3027\"* your|strong=\"H3605\"* inheritance|strong=\"H5159\"*, as|strong=\"H3588\"* you|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H3318\"* our|strong=\"H3605\"* fathers out|strong=\"H3318\"* of|strong=\"H3027\"* Egypt|strong=\"H4714\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 54, + "text": "It|strong=\"H5921\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3605\"* when|strong=\"H1961\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* praying|strong=\"H6419\"* all|strong=\"H3605\"* this|strong=\"H2063\"* prayer|strong=\"H8605\"* and|strong=\"H6965\"* supplication|strong=\"H8467\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* arose|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, from|strong=\"H6440\"* kneeling|strong=\"H3766\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* with|strong=\"H3068\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* toward|strong=\"H5921\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 55, + "text": "He|strong=\"H3605\"* stood|strong=\"H5975\"* and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"* with|strong=\"H3478\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, saying|strong=\"H6963\"*," + }, + { + "verseNum": 56, + "text": "“Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* given|strong=\"H5414\"* rest|strong=\"H4496\"* to|strong=\"H1696\"* his|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* he|strong=\"H3068\"* promised|strong=\"H1696\"*. There|strong=\"H3605\"* has|strong=\"H3068\"* not|strong=\"H3808\"* failed|strong=\"H5307\"* one|strong=\"H3605\"* word|strong=\"H1697\"* of|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* good|strong=\"H2896\"* promise|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* promised|strong=\"H1696\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 57, + "text": "May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* us|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* our|strong=\"H3068\"* fathers. Let|strong=\"H5800\"* him|strong=\"H5973\"* not|strong=\"H1961\"* leave|strong=\"H5800\"* us|strong=\"H1961\"* or|strong=\"H3068\"* forsake|strong=\"H5800\"* us|strong=\"H1961\"*," + }, + { + "verseNum": 58, + "text": "that|strong=\"H3605\"* he|strong=\"H3605\"* may|strong=\"H3824\"* incline|strong=\"H5186\"* our|strong=\"H3605\"* hearts|strong=\"H3824\"* to|strong=\"H3212\"* him|strong=\"H6680\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H4941\"* to|strong=\"H3212\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4941\"* his|strong=\"H3605\"* ordinances|strong=\"H4941\"*, which|strong=\"H3605\"* he|strong=\"H3605\"* commanded|strong=\"H6680\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 59, + "text": "Let|strong=\"H1961\"* these|strong=\"H6213\"* my|strong=\"H3068\"* words|strong=\"H1697\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H6213\"* supplication|strong=\"H2603\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, be|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* day|strong=\"H3117\"* and|strong=\"H3478\"* night|strong=\"H3915\"*, that|strong=\"H5971\"* he|strong=\"H3117\"* may|strong=\"H1961\"* maintain|strong=\"H6213\"* the|strong=\"H6440\"* cause|strong=\"H4941\"* of|strong=\"H3068\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* the|strong=\"H6440\"* cause|strong=\"H4941\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"* requires|strong=\"H1697\"*;" + }, + { + "verseNum": 60, + "text": "that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* himself|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*. There|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 61, + "text": "“Let|strong=\"H3212\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* therefore|strong=\"H3068\"* be|strong=\"H1961\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 62, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, offered|strong=\"H2076\"* sacrifice|strong=\"H2077\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 63, + "text": "Solomon|strong=\"H8010\"* offered|strong=\"H2076\"* for|strong=\"H3068\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"* of|strong=\"H1121\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* offered|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, twenty|strong=\"H6242\"* two|strong=\"H8147\"* thousand head of|strong=\"H1121\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand sheep|strong=\"H6629\"*. So the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* dedicated|strong=\"H2596\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 64, + "text": "The|strong=\"H6440\"* same|strong=\"H1931\"* day|strong=\"H3117\"* the|strong=\"H6440\"* king|strong=\"H4428\"* made|strong=\"H6213\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H6440\"* court|strong=\"H2691\"* holy|strong=\"H6942\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* he|strong=\"H1931\"* offered|strong=\"H6213\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H4428\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* too little|strong=\"H6996\"* to|strong=\"H3068\"* receive|strong=\"H3557\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H4428\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*." + }, + { + "verseNum": 65, + "text": "So|strong=\"H6213\"* Solomon|strong=\"H8010\"* held|strong=\"H6213\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6440\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, from|strong=\"H6440\"* the|strong=\"H3605\"* entrance of|strong=\"H3068\"* Hamath|strong=\"H2574\"* to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, seven|strong=\"H7651\"* days|strong=\"H3117\"* and|strong=\"H3478\"* seven|strong=\"H7651\"* more|strong=\"H1419\"* days|strong=\"H3117\"*, even|strong=\"H5704\"* fourteen|strong=\"H6240\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 66, + "text": "On|strong=\"H5921\"* the|strong=\"H3605\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H7971\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H3605\"* tents joyful|strong=\"H8056\"* and|strong=\"H3478\"* glad|strong=\"H8056\"* in|strong=\"H5921\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* goodness|strong=\"H2896\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* David|strong=\"H1732\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* the|strong=\"H3605\"* building|strong=\"H1129\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* Solomon|strong=\"H8010\"*’s desire|strong=\"H2654\"* which|strong=\"H3068\"* he|strong=\"H6213\"* was|strong=\"H3068\"* pleased|strong=\"H2654\"* to|strong=\"H3068\"* do|strong=\"H6213\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* the|strong=\"H7200\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* him|strong=\"H7200\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, “I|strong=\"H3117\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* and|strong=\"H3068\"* your|strong=\"H3068\"* supplication|strong=\"H8467\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* made|strong=\"H7760\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H7760\"* this|strong=\"H2088\"* house|strong=\"H1004\"* holy|strong=\"H6942\"*, which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H1961\"* built|strong=\"H1129\"*, to|strong=\"H5704\"* put|strong=\"H7760\"* my|strong=\"H8085\"* name|strong=\"H8034\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*; and|strong=\"H3068\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* and|strong=\"H3068\"* my|strong=\"H8085\"* heart|strong=\"H3820\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* perpetually|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, if you|strong=\"H6440\"* will|strong=\"H3824\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father walked|strong=\"H1980\"*, in|strong=\"H1980\"* integrity|strong=\"H8537\"* of|strong=\"H6440\"* heart|strong=\"H3824\"* and|strong=\"H1980\"* in|strong=\"H1980\"* uprightness|strong=\"H3476\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* will|strong=\"H3824\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3478\"* establish|strong=\"H6965\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* your|strong=\"H5921\"* kingdom|strong=\"H4467\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*, as|strong=\"H6965\"* I|strong=\"H5921\"* promised|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"* your|strong=\"H5921\"* father, saying|strong=\"H1696\"*, ‘There|strong=\"H5769\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* from|strong=\"H3772\"* you|strong=\"H5921\"* a|strong=\"H3068\"* man on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* if|strong=\"H1121\"* you|strong=\"H5414\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H1980\"* me|strong=\"H5414\"*, you|strong=\"H5414\"* or|strong=\"H3808\"* your|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H1121\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* which|strong=\"H2708\"* I|strong=\"H5414\"* have|strong=\"H1121\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, but|strong=\"H3808\"* go|strong=\"H1980\"* and|strong=\"H1121\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"* and|strong=\"H1121\"* worship|strong=\"H7812\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 7, + "text": "then|strong=\"H1961\"* I|strong=\"H5414\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Israel|strong=\"H3478\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* given|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H3478\"* I|strong=\"H5414\"* will|strong=\"H1961\"* cast|strong=\"H7971\"* this|strong=\"H5414\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H1961\"* made|strong=\"H3772\"* holy|strong=\"H6942\"* for|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, out|strong=\"H7971\"* of|strong=\"H1004\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*; and|strong=\"H3478\"* Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H3478\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "Though this|strong=\"H2088\"* house|strong=\"H1004\"* is|strong=\"H3068\"* so|strong=\"H6213\"* high|strong=\"H5945\"*, yet|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* and|strong=\"H3068\"* hiss|strong=\"H8319\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H3068\"* this|strong=\"H2088\"* land and|strong=\"H3068\"* to|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*?’" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3651\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, who|strong=\"H3605\"* brought|strong=\"H3318\"* their|strong=\"H3605\"* fathers out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* embraced other|strong=\"H3605\"* gods, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*. Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H4428\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H3068\"* two|strong=\"H8147\"* houses|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*" + }, + { + "verseNum": 11, + "text": "(now|strong=\"H5414\"* Hiram|strong=\"H2438\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* had|strong=\"H8010\"* furnished|strong=\"H5375\"* Solomon|strong=\"H8010\"* with|strong=\"H5892\"* cedar trees|strong=\"H6086\"* and|strong=\"H6242\"* cypress|strong=\"H1265\"* trees|strong=\"H6086\"*, and|strong=\"H6242\"* with|strong=\"H5892\"* gold|strong=\"H2091\"*, according to|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* desire|strong=\"H2656\"*), King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* Hiram|strong=\"H2438\"* twenty|strong=\"H6242\"* cities|strong=\"H5892\"* in|strong=\"H4428\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Galilee|strong=\"H1551\"*." + }, + { + "verseNum": 12, + "text": "Hiram|strong=\"H2438\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* Tyre|strong=\"H6865\"* to|strong=\"H3318\"* see|strong=\"H7200\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* which|strong=\"H5869\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* given|strong=\"H5414\"* him|strong=\"H5414\"*; and|strong=\"H5869\"* they|strong=\"H3808\"* didn’t please|strong=\"H3474\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3117\"* said|strong=\"H7121\"*, “What|strong=\"H4100\"* cities|strong=\"H5892\"* are|strong=\"H3117\"* these|strong=\"H2088\"* which|strong=\"H5892\"* you|strong=\"H5414\"* have|strong=\"H3117\"* given|strong=\"H5414\"* me|strong=\"H5414\"*, my|strong=\"H5414\"* brother?” He|strong=\"H3117\"* called|strong=\"H7121\"* them|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H3117\"* Cabul|strong=\"H3521\"*+ 9:13 “Cabul” sounds like Hebrew for “good-for-nothing”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 14, + "text": "Hiram|strong=\"H2438\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*+ 9:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* reason|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3068\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* conscripted|strong=\"H5927\"*: to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, his|strong=\"H3068\"* own house|strong=\"H1004\"*, Millo|strong=\"H4407\"*, Jerusalem|strong=\"H3389\"*’s wall|strong=\"H2346\"*, Hazor|strong=\"H2674\"*, Megiddo|strong=\"H4023\"*, and|strong=\"H3068\"* Gezer|strong=\"H1507\"*." + }, + { + "verseNum": 16, + "text": "Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* had|strong=\"H8010\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, taken|strong=\"H3920\"* Gezer|strong=\"H1507\"*, burned|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire, killed|strong=\"H2026\"* the|strong=\"H5414\"* Canaanites|strong=\"H3669\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* given|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H4714\"* a|strong=\"H3068\"* wedding gift|strong=\"H5414\"* to|strong=\"H5927\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"*, Solomon|strong=\"H8010\"*’s wife." + }, + { + "verseNum": 17, + "text": "Solomon|strong=\"H8010\"* built|strong=\"H1129\"* in|strong=\"H1129\"* the|strong=\"H1129\"* land Gezer|strong=\"H1507\"*, Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"*," + }, + { + "verseNum": 18, + "text": "Baalath|strong=\"H1191\"*, Tamar|strong=\"H8559\"* in the|strong=\"H4057\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 19, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* had|strong=\"H1961\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H5892\"* that|strong=\"H3605\"* which|strong=\"H5892\"* Solomon|strong=\"H8010\"* desired|strong=\"H2836\"* to|strong=\"H1961\"* build|strong=\"H1129\"* for|strong=\"H3389\"* his|strong=\"H3605\"* pleasure|strong=\"H2837\"* in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* Lebanon|strong=\"H3844\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H5971\"* for|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* left|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, the|strong=\"H3605\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 21, + "text": "their|strong=\"H5647\"* children|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* left|strong=\"H3498\"* after|strong=\"H3117\"* them|strong=\"H2763\"* in|strong=\"H3478\"* the|strong=\"H5647\"* land, whom the|strong=\"H5647\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* not|strong=\"H3808\"* able|strong=\"H3201\"* utterly|strong=\"H2763\"* to|strong=\"H5704\"* destroy|strong=\"H2763\"*—of|strong=\"H1121\"* them|strong=\"H2763\"* Solomon|strong=\"H8010\"* raised|strong=\"H5927\"* a|strong=\"H3068\"* levy|strong=\"H4522\"* of|strong=\"H1121\"* bondservants to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* Solomon|strong=\"H8010\"* made|strong=\"H5414\"* no|strong=\"H3808\"* bondservants; but|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, his|strong=\"H5414\"* servants|strong=\"H5650\"*, his|strong=\"H5414\"* princes|strong=\"H8269\"*, his|strong=\"H5414\"* captains|strong=\"H8269\"*, and|strong=\"H1121\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H6213\"* were|strong=\"H5971\"* the|strong=\"H5921\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* chief|strong=\"H8269\"* officers|strong=\"H8269\"* who|strong=\"H5971\"* were|strong=\"H5971\"* over|strong=\"H5921\"* Solomon|strong=\"H8010\"*’s work|strong=\"H4399\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* labored|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 24, + "text": "But Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* came|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5927\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* to|strong=\"H5927\"* her|strong=\"H1129\"* house|strong=\"H1004\"* which|strong=\"H1004\"* Solomon had|strong=\"H1732\"* built|strong=\"H1129\"* for|strong=\"H1004\"* her|strong=\"H1129\"*. Then|strong=\"H5927\"* he|strong=\"H1004\"* built|strong=\"H1129\"* Millo|strong=\"H4407\"*." + }, + { + "verseNum": 25, + "text": "Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* he|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* three|strong=\"H7969\"* times|strong=\"H6471\"* per year|strong=\"H8141\"*, burning|strong=\"H6999\"* incense|strong=\"H6999\"* with|strong=\"H1004\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. So|strong=\"H5927\"* he|strong=\"H3068\"* finished|strong=\"H7999\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 26, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* a|strong=\"H3068\"* fleet of|strong=\"H4428\"* ships in|strong=\"H5921\"* Ezion Geber, which|strong=\"H4428\"* is|strong=\"H4428\"* beside|strong=\"H5921\"* Eloth, on|strong=\"H5921\"* the|strong=\"H5921\"* shore|strong=\"H8193\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Edom." + }, + { + "verseNum": 27, + "text": "Hiram|strong=\"H2438\"* sent|strong=\"H7971\"* in|strong=\"H5650\"* the|strong=\"H3045\"* fleet his|strong=\"H7971\"* servants|strong=\"H5650\"*, sailors who|strong=\"H5650\"* had|strong=\"H8010\"* knowledge|strong=\"H3045\"* of|strong=\"H5650\"* the|strong=\"H3045\"* sea|strong=\"H3220\"*, with|strong=\"H5973\"* the|strong=\"H3045\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H8033\"* came|strong=\"H4428\"* to|strong=\"H4428\"* Ophir, and|strong=\"H3967\"* fetched|strong=\"H3947\"* from|strong=\"H3947\"* there|strong=\"H8033\"* gold|strong=\"H2091\"*, four hundred|strong=\"H3967\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*,+ 9:28 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 420 talents is about 12.6 metric tons* and|strong=\"H3967\"* brought|strong=\"H3947\"* it|strong=\"H8033\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* queen|strong=\"H4436\"* of|strong=\"H3068\"* Sheba|strong=\"H7614\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* the|strong=\"H8085\"* fame|strong=\"H8034\"* of|strong=\"H3068\"* Solomon|strong=\"H8010\"* concerning|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* test|strong=\"H5254\"* him|strong=\"H8085\"* with|strong=\"H3068\"* hard questions|strong=\"H2420\"*." + }, + { + "verseNum": 2, + "text": "She|strong=\"H5973\"* came|strong=\"H1961\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* caravan, with|strong=\"H5973\"* camels|strong=\"H1581\"* that|strong=\"H3605\"* bore|strong=\"H5375\"* spices|strong=\"H1314\"*, very|strong=\"H3966\"* much|strong=\"H7227\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* precious|strong=\"H3368\"* stones; and|strong=\"H2091\"* when|strong=\"H1961\"* she|strong=\"H5973\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5973\"* about|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H1696\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* answered|strong=\"H5046\"* all|strong=\"H3605\"* her|strong=\"H3605\"* questions|strong=\"H1697\"*. There|strong=\"H1961\"* wasn’t anything|strong=\"H3605\"* hidden|strong=\"H5956\"* from|strong=\"H4480\"* the|strong=\"H3605\"* king|strong=\"H4428\"* which|strong=\"H1697\"* he|strong=\"H3605\"* didn’t tell|strong=\"H5046\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H7200\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H1004\"* Sheba|strong=\"H7614\"* had|strong=\"H8010\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wisdom|strong=\"H2451\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* that|strong=\"H7200\"* he|strong=\"H3605\"* had|strong=\"H8010\"* built|strong=\"H1129\"*," + }, + { + "verseNum": 5, + "text": "the|strong=\"H3068\"* food|strong=\"H3978\"* of|strong=\"H1004\"* his|strong=\"H3068\"* table|strong=\"H7979\"*, the|strong=\"H3068\"* sitting|strong=\"H4186\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, the|strong=\"H3068\"* attendance|strong=\"H4612\"* of|strong=\"H1004\"* his|strong=\"H3068\"* officials|strong=\"H5650\"*, their|strong=\"H3068\"* clothing, his|strong=\"H3068\"* cup bearers, and|strong=\"H3068\"* his|strong=\"H3068\"* ascent|strong=\"H5927\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H3068\"* her|strong=\"H1961\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “It|strong=\"H5921\"* was|strong=\"H1961\"* a|strong=\"H3068\"* true report|strong=\"H1697\"* that|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* my|strong=\"H8085\"* own|strong=\"H1961\"* land of|strong=\"H4428\"* your|strong=\"H5921\"* acts|strong=\"H1697\"* and|strong=\"H4428\"* of|strong=\"H4428\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H8085\"*, I|strong=\"H5704\"* didn’t believe the|strong=\"H8085\"* words|strong=\"H1697\"* until|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1697\"* and|strong=\"H5869\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*. Behold|strong=\"H2009\"*, not|strong=\"H3808\"* even|strong=\"H5704\"* half|strong=\"H2677\"* was|strong=\"H1697\"* told|strong=\"H5046\"* me|strong=\"H7200\"*! Your|strong=\"H7200\"* wisdom|strong=\"H2451\"* and|strong=\"H5869\"* prosperity|strong=\"H2896\"* exceed|strong=\"H3254\"* the|strong=\"H8085\"* fame|strong=\"H8052\"* which|strong=\"H1697\"* I|strong=\"H5704\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 8, + "text": "Happy are|strong=\"H5650\"* your|strong=\"H6440\"* men|strong=\"H5650\"*, happy are|strong=\"H5650\"* these|strong=\"H8085\"* your|strong=\"H6440\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, who|strong=\"H5650\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 9, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* delighted|strong=\"H2654\"* in|strong=\"H5921\"* you|strong=\"H5414\"*, to|strong=\"H3478\"* set|strong=\"H7760\"* you|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Because|strong=\"H5921\"* Yahweh|strong=\"H3068\"* loved Israel|strong=\"H3478\"* forever|strong=\"H5769\"*, therefore|strong=\"H5921\"* he|strong=\"H6213\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 10, + "text": "She|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* quantity|strong=\"H7230\"* of|strong=\"H4428\"* spices|strong=\"H1314\"*, and|strong=\"H3967\"* precious|strong=\"H3368\"* stones. Never|strong=\"H3808\"* again|strong=\"H5750\"* was|strong=\"H1931\"* there|strong=\"H7230\"* such|strong=\"H1931\"* an|strong=\"H5414\"* abundance|strong=\"H7230\"* of|strong=\"H4428\"* spices|strong=\"H1314\"* as|strong=\"H7230\"* these|strong=\"H1931\"* which|strong=\"H1931\"* the|strong=\"H5414\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5375\"* fleet of|strong=\"H6086\"* Hiram|strong=\"H2438\"* that|strong=\"H6086\"* brought|strong=\"H5375\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Ophir also|strong=\"H1571\"* brought|strong=\"H5375\"* in|strong=\"H6086\"* from|strong=\"H2091\"* Ophir great|strong=\"H3966\"* quantities of|strong=\"H6086\"* almug trees|strong=\"H6086\"*+ 10:11 possibly an Indian sandalwood, with nice grain and a pleasant scent, and good for woodworking* and|strong=\"H6086\"* precious|strong=\"H3368\"* stones." + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* made|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H7200\"* almug trees|strong=\"H6086\"* pillars|strong=\"H4552\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* for|strong=\"H5704\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, harps|strong=\"H3658\"* also|strong=\"H3068\"* and|strong=\"H3068\"* stringed instruments for|strong=\"H5704\"* the|strong=\"H7200\"* singers|strong=\"H7891\"*; no|strong=\"H3808\"* such|strong=\"H2088\"* almug trees|strong=\"H6086\"* came|strong=\"H3068\"* or|strong=\"H3808\"* were|strong=\"H3117\"* seen|strong=\"H7200\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* all|strong=\"H3605\"* her|strong=\"H3605\"* desire|strong=\"H2656\"*, whatever|strong=\"H3605\"* she|strong=\"H1931\"* asked|strong=\"H7592\"*, in|strong=\"H4428\"* addition to|strong=\"H3212\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* her|strong=\"H3605\"* of|strong=\"H4428\"* his|strong=\"H3605\"* royal|strong=\"H4428\"* bounty|strong=\"H3027\"*. So|strong=\"H5414\"* she|strong=\"H1931\"* turned|strong=\"H6437\"* and|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3605\"* own|strong=\"H3027\"* land, she|strong=\"H1931\"* and|strong=\"H4428\"* her|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* weight|strong=\"H4948\"* of|strong=\"H8141\"* gold|strong=\"H2091\"* that|strong=\"H8141\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Solomon|strong=\"H8010\"* in|strong=\"H8141\"* one|strong=\"H1961\"* year|strong=\"H8141\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"* talents|strong=\"H3603\"*+ 10:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons* of|strong=\"H8141\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"H4428\"* addition to|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H4428\"* the|strong=\"H3605\"* traders|strong=\"H7402\"* brought|strong=\"H4428\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* traffic of|strong=\"H4428\"* the|strong=\"H3605\"* merchants|strong=\"H7402\"*, and|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mixed people, and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* of|strong=\"H4428\"* the|strong=\"H3605\"* country." + }, + { + "verseNum": 16, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* two|strong=\"H6213\"* hundred|strong=\"H3967\"* bucklers|strong=\"H6793\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*; six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels+ 10:16 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels is about 6 kilograms or 13.2 pounds or 192 Troy ounces.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H6213\"* buckler|strong=\"H6793\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H1004\"* made|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*; three|strong=\"H7969\"* minas|strong=\"H4488\"*+ 10:17 A mina is about 600 grams or 1.3 U. S. pounds.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H3967\"* shield|strong=\"H4043\"*; and|strong=\"H3967\"* the|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*." + }, + { + "verseNum": 18, + "text": "Moreover the|strong=\"H6213\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* ivory|strong=\"H8127\"*, and|strong=\"H4428\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* the|strong=\"H6213\"* finest gold|strong=\"H2091\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H2088\"* were|strong=\"H3027\"* six|strong=\"H8337\"* steps|strong=\"H4609\"* to|strong=\"H3027\"* the|strong=\"H3027\"* throne|strong=\"H3678\"*, and|strong=\"H3027\"* the|strong=\"H3027\"* top|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H3027\"* throne|strong=\"H3678\"* was|strong=\"H4725\"* round|strong=\"H5696\"* behind|strong=\"H5975\"*; and|strong=\"H3027\"* there|strong=\"H2088\"* were|strong=\"H3027\"* armrests|strong=\"H7675\"* on|strong=\"H3027\"* either|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H3027\"* the|strong=\"H3027\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H3027\"* seat|strong=\"H3678\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* lions standing|strong=\"H5975\"* beside|strong=\"H3027\"* the|strong=\"H3027\"* armrests|strong=\"H7675\"*." + }, + { + "verseNum": 20, + "text": "Twelve|strong=\"H8147\"* lions stood|strong=\"H5975\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H3605\"* six|strong=\"H8337\"* steps|strong=\"H4609\"*. Nothing|strong=\"H3808\"* like|strong=\"H3651\"* it|strong=\"H5921\"* was|strong=\"H4467\"* made|strong=\"H6213\"* in|strong=\"H5921\"* any|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*’s drinking|strong=\"H4945\"* vessels|strong=\"H3627\"* were|strong=\"H3117\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H3605\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* were|strong=\"H3117\"* of|strong=\"H4428\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. None|strong=\"H3808\"* were|strong=\"H3117\"* of|strong=\"H4428\"* silver|strong=\"H3701\"*, because|strong=\"H3117\"* it|strong=\"H3117\"* was|strong=\"H3117\"* considered|strong=\"H2803\"* of|strong=\"H4428\"* little value|strong=\"H2803\"* in|strong=\"H1004\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* had|strong=\"H4428\"* a|strong=\"H3068\"* fleet of|strong=\"H4428\"* ships of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* at|strong=\"H4428\"* sea|strong=\"H3220\"* with|strong=\"H5973\"* Hiram|strong=\"H2438\"*’s fleet. Once every|strong=\"H8141\"* three|strong=\"H7969\"* years|strong=\"H8141\"* the|strong=\"H3588\"* fleet of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* came|strong=\"H4428\"* bringing|strong=\"H5375\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, ivory|strong=\"H8143\"*, apes|strong=\"H6971\"*, and|strong=\"H3701\"* peacocks|strong=\"H8500\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1431\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* exceeded|strong=\"H1431\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth in|strong=\"H4428\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* in|strong=\"H4428\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* earth sought|strong=\"H1245\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* Solomon|strong=\"H8010\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"* which|strong=\"H8085\"* God|strong=\"H5414\"* had|strong=\"H8010\"* put|strong=\"H5414\"* in|strong=\"H8085\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 25, + "text": "Year|strong=\"H8141\"* after|strong=\"H1992\"* year|strong=\"H8141\"*, every|strong=\"H1697\"* man brought his|strong=\"H1992\"* tribute|strong=\"H4503\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* gold|strong=\"H2091\"*, clothing|strong=\"H3627\"*, armor|strong=\"H3627\"*, spices|strong=\"H1314\"*, horses|strong=\"H5483\"*, and|strong=\"H3701\"* mules|strong=\"H6505\"*." + }, + { + "verseNum": 26, + "text": "Solomon|strong=\"H8010\"* gathered|strong=\"H8010\"* together|strong=\"H5973\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* had|strong=\"H1961\"* one|strong=\"H1961\"* thousand four hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* kept|strong=\"H1961\"* them|strong=\"H8147\"* in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"* and|strong=\"H3967\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* stones in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3701\"* cedars as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3947\"* horses|strong=\"H5483\"* which|strong=\"H5483\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* were|strong=\"H4714\"* brought|strong=\"H3947\"* out|strong=\"H4161\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*. The|strong=\"H3947\"* king|strong=\"H4428\"*’s merchants|strong=\"H5503\"* received|strong=\"H3947\"* them|strong=\"H3947\"* in|strong=\"H4428\"* droves, each|strong=\"H3947\"* drove at|strong=\"H4428\"* a|strong=\"H3068\"* price|strong=\"H4242\"*." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* chariot|strong=\"H4818\"* was|strong=\"H4428\"* imported|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"* for|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H3701\"*+ 10:29 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H4428\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* for|strong=\"H3027\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* shekels|strong=\"H3701\"*; and|strong=\"H3967\"* so|strong=\"H3651\"* they|strong=\"H3651\"* exported|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"* and|strong=\"H3967\"* to|strong=\"H3318\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Syria." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7227\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* loved many|strong=\"H7227\"* foreign|strong=\"H5237\"* women|strong=\"H1323\"*, together with|strong=\"H4428\"* the|strong=\"H8010\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"*: women|strong=\"H1323\"* of|strong=\"H4428\"* the|strong=\"H8010\"* Moabites|strong=\"H4125\"*, Ammonites|strong=\"H5984\"*, Edomites, Sidonians|strong=\"H6722\"*, and|strong=\"H4428\"* Hittites|strong=\"H2850\"*," + }, + { + "verseNum": 2, + "text": "of|strong=\"H1121\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* concerning|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3068\"* among|strong=\"H4480\"* them|strong=\"H1992\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* they|strong=\"H1992\"* come|strong=\"H3478\"* among|strong=\"H4480\"* you|strong=\"H3808\"*, for|strong=\"H3068\"* surely|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H3068\"* turn|strong=\"H5186\"* away|strong=\"H5186\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* after|strong=\"H4480\"* their|strong=\"H3068\"* gods.” Solomon|strong=\"H8010\"* joined|strong=\"H1692\"* to|strong=\"H3478\"* these|strong=\"H1992\"* in|strong=\"H3478\"* love." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5186\"* had|strong=\"H1961\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* wives, princesses|strong=\"H8282\"*, and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* concubines|strong=\"H6370\"*. His|strong=\"H5186\"* wives turned|strong=\"H5186\"* his|strong=\"H5186\"* heart|strong=\"H3820\"* away|strong=\"H5186\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* old|strong=\"H2209\"*, his|strong=\"H3068\"* wives turned|strong=\"H5186\"* away|strong=\"H5186\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* after|strong=\"H1961\"* other gods; and|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* not|strong=\"H3808\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father was|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H8010\"* Solomon|strong=\"H8010\"* went|strong=\"H3212\"* after Ashtoreth|strong=\"H6253\"* the|strong=\"H8010\"* goddess of|strong=\"H8251\"* the|strong=\"H8010\"* Sidonians|strong=\"H6722\"*, and|strong=\"H3212\"* after Milcom|strong=\"H4445\"* the|strong=\"H8010\"* abomination|strong=\"H8251\"* of|strong=\"H8251\"* the|strong=\"H8010\"* Ammonites|strong=\"H5984\"*." + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* didn’t go|strong=\"H3068\"* fully|strong=\"H4390\"* after Yahweh|strong=\"H3068\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8010\"* Solomon|strong=\"H8010\"* built|strong=\"H1129\"* a|strong=\"H3068\"* high|strong=\"H1116\"* place|strong=\"H1116\"* for|strong=\"H5921\"* Chemosh|strong=\"H3645\"* the|strong=\"H6440\"* abomination|strong=\"H8251\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* that|strong=\"H1121\"* is|strong=\"H1121\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Molech|strong=\"H4432\"* the|strong=\"H6440\"* abomination|strong=\"H8251\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3651\"* he|strong=\"H6213\"* did|strong=\"H6213\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* foreign|strong=\"H5237\"* wives, who|strong=\"H3605\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* and|strong=\"H6213\"* sacrificed|strong=\"H2076\"* to|strong=\"H6213\"* their|strong=\"H3605\"* gods." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H5973\"* Solomon|strong=\"H8010\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3478\"* him|strong=\"H7200\"* twice|strong=\"H6471\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"* concerning|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* after|strong=\"H5921\"* other|strong=\"H2088\"* gods; but|strong=\"H3808\"* he|strong=\"H3068\"* didn’t keep|strong=\"H8104\"* that|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Solomon|strong=\"H8010\"*, “Because|strong=\"H5921\"* this|strong=\"H2063\"* is|strong=\"H3068\"* done|strong=\"H1961\"* by|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* you|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* tear|strong=\"H7167\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* from|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 12, + "text": "Nevertheless, I|strong=\"H3117\"* will|strong=\"H1121\"* not|strong=\"H3808\"* do|strong=\"H6213\"* it|strong=\"H6213\"* in|strong=\"H6213\"* your|strong=\"H6213\"* days|strong=\"H3117\"*, for|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H6213\"* father|strong=\"H1121\"*’s sake|strong=\"H4616\"*; but|strong=\"H3808\"* I|strong=\"H3117\"* will|strong=\"H1121\"* tear|strong=\"H7167\"* it|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H1121\"* your|strong=\"H6213\"* son|strong=\"H1121\"*’s hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "However|strong=\"H7535\"*, I|strong=\"H5414\"* will|strong=\"H5650\"* not|strong=\"H3808\"* tear|strong=\"H7167\"* away|strong=\"H7167\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*; but|strong=\"H7535\"* I|strong=\"H5414\"* will|strong=\"H5650\"* give|strong=\"H5414\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"* to|strong=\"H5414\"* your|strong=\"H3605\"* son|strong=\"H1121\"*, for|strong=\"H4616\"* David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*, and|strong=\"H1121\"* for|strong=\"H4616\"* Jerusalem|strong=\"H3389\"*’s sake|strong=\"H4616\"* which|strong=\"H7626\"* I|strong=\"H5414\"* have|strong=\"H1121\"* chosen.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H6965\"* adversary|strong=\"H7854\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"*: Hadad|strong=\"H1908\"* the|strong=\"H3068\"* Edomite. He|strong=\"H1931\"* was|strong=\"H3068\"* one|strong=\"H1931\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s offspring|strong=\"H2233\"* in|strong=\"H3068\"* Edom." + }, + { + "verseNum": 15, + "text": "For|strong=\"H6635\"* when|strong=\"H1961\"* David|strong=\"H1732\"* was|strong=\"H1961\"* in|strong=\"H6912\"* Edom, and|strong=\"H1732\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* army|strong=\"H6635\"* had|strong=\"H1961\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* bury|strong=\"H6912\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*, and|strong=\"H1732\"* had|strong=\"H1961\"* struck|strong=\"H5221\"* every|strong=\"H3605\"* male|strong=\"H2145\"* in|strong=\"H6912\"* Edom" + }, + { + "verseNum": 16, + "text": "(for|strong=\"H3588\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* remained|strong=\"H3427\"* there|strong=\"H8033\"* six|strong=\"H8337\"* months|strong=\"H2320\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* every|strong=\"H3605\"* male|strong=\"H2145\"* in|strong=\"H3427\"* Edom)," + }, + { + "verseNum": 17, + "text": "Hadad|strong=\"H1908\"* fled|strong=\"H1272\"*, he|strong=\"H1931\"* and|strong=\"H5650\"* certain Edomites of|strong=\"H5650\"* his|strong=\"H1931\"* father’s servants|strong=\"H5650\"* with|strong=\"H4714\"* him|strong=\"H1931\"*, to|strong=\"H4714\"* go|strong=\"H5288\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, when Hadad|strong=\"H1908\"* was|strong=\"H1931\"* still a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5414\"* arose|strong=\"H6965\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Midian|strong=\"H4080\"* and|strong=\"H6965\"* came|strong=\"H4714\"* to|strong=\"H5414\"* Paran|strong=\"H6290\"*; and|strong=\"H6965\"* they|strong=\"H5414\"* took|strong=\"H3947\"* men|strong=\"H3947\"* with|strong=\"H5973\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Paran|strong=\"H6290\"*, and|strong=\"H6965\"* they|strong=\"H5414\"* came|strong=\"H4714\"* to|strong=\"H5414\"* Egypt|strong=\"H4714\"*, to|strong=\"H5414\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, who|strong=\"H4428\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* appointed|strong=\"H5414\"* him|strong=\"H5414\"* food|strong=\"H3899\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* land." + }, + { + "verseNum": 19, + "text": "Hadad|strong=\"H1908\"* found|strong=\"H4672\"* great|strong=\"H3966\"* favor|strong=\"H2580\"* in|strong=\"H4672\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* Pharaoh|strong=\"H6547\"*, so|strong=\"H5414\"* that|strong=\"H5414\"* he|strong=\"H5414\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* as|strong=\"H5869\"* wife the|strong=\"H5414\"* sister of|strong=\"H5869\"* his|strong=\"H5414\"* own|strong=\"H5869\"* wife, the|strong=\"H5414\"* sister of|strong=\"H5869\"* Tahpenes|strong=\"H8472\"* the|strong=\"H5414\"* queen|strong=\"H1377\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H8432\"* sister of|strong=\"H1121\"* Tahpenes|strong=\"H8472\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Genubath|strong=\"H1592\"* his|strong=\"H1961\"* son|strong=\"H1121\"*, whom Tahpenes|strong=\"H8472\"* weaned|strong=\"H1580\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* Genubath|strong=\"H1592\"* was|strong=\"H1961\"* in|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"* among|strong=\"H8432\"* the|strong=\"H8432\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* Hadad|strong=\"H1908\"* heard|strong=\"H8085\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"* that|strong=\"H3588\"* David|strong=\"H1732\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7971\"* fathers, and|strong=\"H7971\"* that|strong=\"H3588\"* Joab|strong=\"H3097\"* the|strong=\"H8085\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H8085\"* army|strong=\"H6635\"* was|strong=\"H1732\"* dead|strong=\"H4191\"*, Hadad|strong=\"H1908\"* said|strong=\"H8085\"* to|strong=\"H4191\"* Pharaoh|strong=\"H6547\"*, “Let|strong=\"H7971\"* me|strong=\"H7971\"* depart|strong=\"H3212\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H4714\"* go|strong=\"H3212\"* to|strong=\"H4191\"* my|strong=\"H8085\"* own|strong=\"H5973\"* country.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7971\"* Pharaoh|strong=\"H6547\"* said to|strong=\"H3212\"* him|strong=\"H7971\"*, “But|strong=\"H3588\"* what|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* lacked|strong=\"H2638\"* with|strong=\"H5973\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* behold|strong=\"H2005\"*, you|strong=\"H3588\"* seek|strong=\"H1245\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* your|strong=\"H3588\"* own|strong=\"H5973\"* country?”" + }, + { + "verseNum": 23, + "text": "God raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H6965\"* adversary|strong=\"H7854\"* to|strong=\"H1121\"* him|strong=\"H4428\"*, Rezon|strong=\"H7331\"* the|strong=\"H6965\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliada, who|strong=\"H1121\"* had|strong=\"H4428\"* fled|strong=\"H1272\"* from|strong=\"H1121\"* his|strong=\"H6965\"* lord, Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H1732\"* gathered|strong=\"H6908\"* men|strong=\"H1416\"* to|strong=\"H3212\"* himself|strong=\"H3427\"*, and|strong=\"H3212\"* became|strong=\"H4427\"* captain|strong=\"H8269\"* over|strong=\"H5921\"* a|strong=\"H3068\"* troop|strong=\"H1416\"*, when|strong=\"H1961\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* them|strong=\"H5921\"* of|strong=\"H3427\"* Zobah. They|strong=\"H5921\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Damascus|strong=\"H1834\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* there|strong=\"H1961\"*, and|strong=\"H3212\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3117\"* was|strong=\"H1961\"* an|strong=\"H1961\"* adversary|strong=\"H7854\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Solomon|strong=\"H8010\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H3605\"* mischief|strong=\"H7451\"* of|strong=\"H3117\"* Hadad|strong=\"H1908\"*. He|strong=\"H3117\"* abhorred|strong=\"H6973\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Syria." + }, + { + "verseNum": 26, + "text": "Jeroboam|strong=\"H3379\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, an|strong=\"H4480\"* Ephraimite of|strong=\"H1121\"* Zeredah|strong=\"H6868\"*, a|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, whose|strong=\"H1121\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zeruah|strong=\"H6871\"*, a|strong=\"H3068\"* widow, also|strong=\"H8034\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* against|strong=\"H4480\"* the|strong=\"H4480\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 27, + "text": "This|strong=\"H2088\"* was|strong=\"H1732\"* the|strong=\"H1129\"* reason|strong=\"H1697\"* why|strong=\"H1697\"* he|strong=\"H1732\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H1732\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* the|strong=\"H1129\"* king|strong=\"H4428\"*: Solomon|strong=\"H8010\"* built|strong=\"H1129\"* Millo|strong=\"H4407\"*, and|strong=\"H4428\"* repaired|strong=\"H1129\"* the|strong=\"H1129\"* breach|strong=\"H6556\"* of|strong=\"H4428\"* his|strong=\"H1732\"* father David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3605\"* man|strong=\"H5288\"* Jeroboam|strong=\"H3379\"* was|strong=\"H1931\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H5288\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*; and|strong=\"H1004\"* Solomon|strong=\"H8010\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* young|strong=\"H5288\"* man|strong=\"H5288\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* industrious|strong=\"H4399\"*, and|strong=\"H1004\"* he|strong=\"H1931\"* put|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H6213\"* charge|strong=\"H6485\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5447\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H1961\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, when|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1870\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3680\"* prophet|strong=\"H5030\"* Ahijah|strong=\"H3680\"* the|strong=\"H3680\"* Shilonite|strong=\"H7888\"* found|strong=\"H4672\"* him|strong=\"H4672\"* on|strong=\"H1870\"* the|strong=\"H3680\"* way|strong=\"H1870\"*. Now|strong=\"H1961\"* Ahijah|strong=\"H3680\"* had|strong=\"H1961\"* clad|strong=\"H3680\"* himself|strong=\"H1931\"* with|strong=\"H3389\"* a|strong=\"H3068\"* new|strong=\"H2319\"* garment|strong=\"H8008\"*; and|strong=\"H3389\"* the|strong=\"H3680\"* two|strong=\"H8147\"* of|strong=\"H1870\"* them|strong=\"H3318\"* were|strong=\"H1961\"* alone|strong=\"H1931\"* in|strong=\"H4672\"* the|strong=\"H3680\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 30, + "text": "Ahijah took|strong=\"H8610\"* the|strong=\"H5921\"* new|strong=\"H2319\"* garment|strong=\"H8008\"* that|strong=\"H5921\"* was on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8147\"* tore|strong=\"H7167\"* it|strong=\"H5921\"* in|strong=\"H5921\"* twelve|strong=\"H8147\"* pieces|strong=\"H7168\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H3588\"* said to|strong=\"H3478\"* Jeroboam|strong=\"H3379\"*, “Take|strong=\"H3947\"* ten|strong=\"H6235\"* pieces|strong=\"H7168\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* tear|strong=\"H7167\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* will|strong=\"H3068\"* give|strong=\"H5414\"* ten|strong=\"H6235\"* tribes|strong=\"H7626\"* to|strong=\"H3478\"* you|strong=\"H3588\"*" + }, + { + "verseNum": 32, + "text": "(but|strong=\"H1961\"* he|strong=\"H3605\"* shall|strong=\"H3478\"* have|strong=\"H1961\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"*, for|strong=\"H4616\"* my|strong=\"H3605\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"* and|strong=\"H3478\"* for|strong=\"H4616\"* Jerusalem|strong=\"H3389\"*’s sake|strong=\"H4616\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H5650\"* have|strong=\"H1961\"* chosen out|strong=\"H3605\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*)," + }, + { + "verseNum": 33, + "text": "because|strong=\"H3282\"* they|strong=\"H3808\"* have|strong=\"H5869\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"*, and|strong=\"H1121\"* have|strong=\"H5869\"* worshiped|strong=\"H7812\"* Ashtoreth|strong=\"H6253\"* the|strong=\"H6213\"* goddess of|strong=\"H1121\"* the|strong=\"H6213\"* Sidonians|strong=\"H6722\"*, Chemosh|strong=\"H3645\"* the|strong=\"H6213\"* god|strong=\"H3808\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* Milcom|strong=\"H4445\"* the|strong=\"H6213\"* god|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. They|strong=\"H3808\"* have|strong=\"H5869\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H1732\"* ways|strong=\"H1870\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H1121\"* which|strong=\"H5869\"* is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H1732\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* to|strong=\"H1980\"* keep|strong=\"H6213\"* my|strong=\"H1732\"* statutes|strong=\"H2708\"* and|strong=\"H1121\"* my|strong=\"H1732\"* ordinances|strong=\"H4941\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father|strong=\"H1121\"* did|strong=\"H6213\"*." + }, + { + "verseNum": 34, + "text": "“‘However|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H5650\"* not|strong=\"H3808\"* take|strong=\"H3947\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4467\"* out|strong=\"H3947\"* of|strong=\"H3117\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* make|strong=\"H7896\"* him|strong=\"H3027\"* prince|strong=\"H5387\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"* for|strong=\"H3588\"* David|strong=\"H1732\"* my|strong=\"H8104\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* chose, who|strong=\"H3605\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H3117\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*," + }, + { + "verseNum": 35, + "text": "but|strong=\"H3947\"* I|strong=\"H5414\"* will|strong=\"H1121\"* take|strong=\"H3947\"* the|strong=\"H5414\"* kingdom|strong=\"H4410\"* out|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* son|strong=\"H1121\"*’s hand|strong=\"H3027\"* and|strong=\"H1121\"* will|strong=\"H1121\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, even ten|strong=\"H6235\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 36, + "text": "I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* one|strong=\"H3605\"* tribe|strong=\"H7626\"* to|strong=\"H1961\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, that|strong=\"H3605\"* David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* may|strong=\"H1961\"* have|strong=\"H1961\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* always|strong=\"H3605\"* before|strong=\"H6440\"* me|strong=\"H5414\"* in|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H5892\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen for|strong=\"H6440\"* myself to|strong=\"H1961\"* put|strong=\"H5414\"* my|strong=\"H5414\"* name|strong=\"H8034\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 37, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H3947\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* reign|strong=\"H4427\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* desires, and|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 38, + "text": "It|strong=\"H5414\"* shall|strong=\"H3478\"* be|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H5414\"* will|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* command|strong=\"H6680\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*, to|strong=\"H1980\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, as|strong=\"H1961\"* David|strong=\"H1732\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* did|strong=\"H6213\"*, that|strong=\"H3605\"* I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* build|strong=\"H1129\"* you|strong=\"H5414\"* a|strong=\"H3068\"* sure|strong=\"H8104\"* house|strong=\"H1004\"*, as|strong=\"H1961\"* I|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H6213\"* David|strong=\"H1732\"*, and|strong=\"H1980\"* will|strong=\"H1961\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* will|strong=\"H3808\"* afflict|strong=\"H6031\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3117\"* David|strong=\"H1732\"* for|strong=\"H4616\"* this|strong=\"H2063\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* forever|strong=\"H3605\"*.’”" + }, + { + "verseNum": 40, + "text": "Therefore|strong=\"H1961\"* Solomon|strong=\"H8010\"* sought|strong=\"H1245\"* to|strong=\"H5704\"* kill|strong=\"H4191\"* Jeroboam|strong=\"H3379\"*, but|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* fled|strong=\"H1272\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H5704\"* Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H6965\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Egypt|strong=\"H4714\"* until|strong=\"H5704\"* the|strong=\"H5704\"* death|strong=\"H4194\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 41, + "text": "Now|strong=\"H5921\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Solomon|strong=\"H8010\"*, and|strong=\"H2451\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"*, and|strong=\"H2451\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H1697\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Solomon|strong=\"H8010\"*?" + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* time|strong=\"H3117\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 43, + "text": "Solomon|strong=\"H8010\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Rehoboam|strong=\"H7346\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"* to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"* (for|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H1961\"* yet|strong=\"H5750\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where he|strong=\"H1931\"* had|strong=\"H1961\"* fled|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* they|strong=\"H3478\"* sent|strong=\"H7971\"* and|strong=\"H3478\"* called|strong=\"H7121\"* him|strong=\"H7121\"*), Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H6951\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Your|strong=\"H5414\"* father made|strong=\"H5414\"* our|strong=\"H5414\"* yoke|strong=\"H5923\"* difficult|strong=\"H3515\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* make|strong=\"H5414\"* the|strong=\"H5921\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* of|strong=\"H5921\"* your|strong=\"H5414\"* father, and|strong=\"H5647\"* his|strong=\"H5414\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"* which he|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"*, lighter|strong=\"H7043\"*, and|strong=\"H5647\"* we|strong=\"H3068\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Depart|strong=\"H3212\"* for|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, then|strong=\"H7725\"* come|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H1697\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* who|strong=\"H5971\"* had|strong=\"H1961\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Solomon|strong=\"H8010\"* his|strong=\"H7725\"* father while|strong=\"H1961\"* he|strong=\"H8010\"* yet|strong=\"H5975\"* lived|strong=\"H2416\"*, saying|strong=\"H1697\"*, “What|strong=\"H1697\"* counsel|strong=\"H3289\"* do|strong=\"H1697\"* you|strong=\"H6440\"* give|strong=\"H3289\"* me|strong=\"H6440\"* to|strong=\"H7725\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* replied|strong=\"H6030\"*, “If|strong=\"H1961\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H1696\"* this|strong=\"H2088\"* people|strong=\"H5971\"* today|strong=\"H3117\"*, and|strong=\"H6030\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* them|strong=\"H1961\"*, and|strong=\"H6030\"* answer|strong=\"H6030\"* them|strong=\"H1961\"* with|strong=\"H1696\"* good|strong=\"H2896\"* words|strong=\"H1697\"*, then|strong=\"H6030\"* they|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* forever|strong=\"H3605\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H5800\"* he|strong=\"H6440\"* abandoned|strong=\"H5800\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H3206\"* they|strong=\"H3289\"* had given|strong=\"H3289\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* took|strong=\"H5975\"* counsel|strong=\"H6098\"* with|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H3206\"* men|strong=\"H2205\"* who|strong=\"H5975\"* had grown|strong=\"H1431\"* up|strong=\"H5975\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, “What|strong=\"H4100\"* counsel|strong=\"H3289\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Make|strong=\"H5414\"* the|strong=\"H5921\"* yoke|strong=\"H5923\"* that|strong=\"H5971\"* your|strong=\"H5414\"* father put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* lighter|strong=\"H7043\"*’?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"* who|strong=\"H5971\"* had|strong=\"H5971\"* grown|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H1696\"* him|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Tell|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"* who|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, saying|strong=\"H1696\"*, ‘Your|strong=\"H5921\"* father made|strong=\"H3513\"* our|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* make|strong=\"H1431\"* it|strong=\"H5921\"* lighter|strong=\"H7043\"* to|strong=\"H1696\"* us|strong=\"H5921\"*’—tell|strong=\"H1696\"* them|strong=\"H5921\"*, ‘My|strong=\"H5921\"* little|strong=\"H6995\"* finger|strong=\"H6995\"* is|strong=\"H2088\"* thicker|strong=\"H5666\"* than|strong=\"H5921\"* my|strong=\"H5921\"* father’s waist|strong=\"H4975\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* my|strong=\"H5921\"* father burdened you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* whips|strong=\"H7752\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* scorpions|strong=\"H6137\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* Jeroboam|strong=\"H3379\"* and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Come|strong=\"H7725\"* to|strong=\"H1696\"* me|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5800\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H5800\"* people|strong=\"H5971\"* roughly|strong=\"H7186\"*, and|strong=\"H6030\"* abandoned|strong=\"H5800\"* the|strong=\"H5800\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* the|strong=\"H5800\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H5971\"* they|strong=\"H5971\"* had|strong=\"H4428\"* given|strong=\"H3289\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6098\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"*, saying|strong=\"H1696\"*, “My|strong=\"H5921\"* father made|strong=\"H3513\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* add|strong=\"H3254\"* to|strong=\"H1696\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* whips|strong=\"H7752\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* scorpions|strong=\"H6137\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4616\"* the|strong=\"H8085\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* brought|strong=\"H1961\"* about|strong=\"H1961\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Ahijah the|strong=\"H8085\"* Shilonite|strong=\"H7888\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* portion|strong=\"H2506\"* have|strong=\"H5971\"* we|strong=\"H3068\"* in|strong=\"H3478\"* David|strong=\"H1732\"*? We|strong=\"H3588\"* don’t have|strong=\"H5971\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*. To|strong=\"H7725\"* your|strong=\"H3605\"* tents, Israel|strong=\"H3478\"*! Now|strong=\"H6258\"* see|strong=\"H7200\"* to|strong=\"H7725\"* your|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*, David|strong=\"H1732\"*.” So|strong=\"H3808\"* Israel|strong=\"H3478\"* departed|strong=\"H3212\"* to|strong=\"H7725\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 17, + "text": "But|strong=\"H5921\"* as|strong=\"H4427\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rehoboam|strong=\"H7346\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* sent|strong=\"H7971\"* Adoram, who|strong=\"H3605\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H3605\"* subject to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones. King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* hurried|strong=\"H5127\"* to|strong=\"H3478\"* get|strong=\"H5927\"* himself up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H3605\"* chariot|strong=\"H4818\"*, to|strong=\"H3478\"* flee|strong=\"H5127\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H2088\"* Israel|strong=\"H3478\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Jeroboam|strong=\"H3379\"* had|strong=\"H1961\"* returned|strong=\"H7725\"*, they|strong=\"H3588\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* called|strong=\"H7121\"* him|strong=\"H7121\"* to|strong=\"H7725\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* him|strong=\"H7121\"* king|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* followed|strong=\"H1961\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, except|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* only|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* had|strong=\"H3478\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H6213\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* the|strong=\"H3605\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, a|strong=\"H3068\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand chosen men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H3478\"* warriors|strong=\"H4421\"*, to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* the|strong=\"H1697\"* word|strong=\"H1697\"* of|strong=\"H1697\"* God came|strong=\"H1961\"* to|strong=\"H1961\"* Shemaiah|strong=\"H8098\"* the|strong=\"H1697\"* man of|strong=\"H1697\"* God, saying|strong=\"H1697\"*," + }, + { + "verseNum": 23, + "text": "“Speak to|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 24, + "text": "‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* up|strong=\"H5927\"* or|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Everyone return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3068\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* from|strong=\"H7725\"* me|strong=\"H7725\"*.”’” So|strong=\"H3541\"* they|strong=\"H3588\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* and|strong=\"H1121\"* went|strong=\"H3212\"* their|strong=\"H3068\"* way|strong=\"H3212\"*, according to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H3318\"* Jeroboam|strong=\"H3379\"* built|strong=\"H1129\"* Shechem|strong=\"H7927\"* in|strong=\"H3427\"* the|strong=\"H1129\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3427\"* Ephraim, and|strong=\"H8033\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H8033\"*; and|strong=\"H8033\"* he|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* and|strong=\"H8033\"* built|strong=\"H1129\"* Penuel|strong=\"H6439\"*." + }, + { + "verseNum": 26, + "text": "Jeroboam|strong=\"H3379\"* said in|strong=\"H1004\"* his|strong=\"H1732\"* heart|strong=\"H3820\"*, “Now|strong=\"H6258\"* the|strong=\"H7725\"* kingdom|strong=\"H4467\"* will|strong=\"H1004\"* return|strong=\"H7725\"* to|strong=\"H7725\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "If this|strong=\"H2088\"* people|strong=\"H5971\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7725\"* offer|strong=\"H5927\"* sacrifices|strong=\"H2077\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H2088\"* the|strong=\"H6213\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* this|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3068\"* lord|strong=\"H3068\"*, even|strong=\"H6213\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H7725\"*, and|strong=\"H3063\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* took|strong=\"H5927\"* counsel|strong=\"H3289\"*, and|strong=\"H3478\"* made|strong=\"H6213\"* two|strong=\"H8147\"* calves|strong=\"H5695\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* said to|strong=\"H3478\"* them|strong=\"H6213\"*, “It|strong=\"H6213\"* is|strong=\"H2009\"* too|strong=\"H7227\"* much|strong=\"H7227\"* for|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*. Look|strong=\"H2009\"* and|strong=\"H3478\"* behold|strong=\"H2009\"* your|strong=\"H6213\"* gods, Israel|strong=\"H3478\"*, which|strong=\"H3478\"* brought|strong=\"H5927\"* you|strong=\"H6213\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H6213\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*!”" + }, + { + "verseNum": 29, + "text": "He|strong=\"H5414\"* set|strong=\"H7760\"* the|strong=\"H5414\"* one in|strong=\"H5414\"* Bethel|strong=\"H1008\"*, and|strong=\"H1008\"* the|strong=\"H5414\"* other he|strong=\"H5414\"* put|strong=\"H5414\"* in|strong=\"H5414\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 30, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* became|strong=\"H1961\"* a|strong=\"H3068\"* sin|strong=\"H2403\"*, for|strong=\"H5704\"* the|strong=\"H6440\"* people|strong=\"H5971\"* went|strong=\"H3212\"* even|strong=\"H5704\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Dan|strong=\"H1835\"* to|strong=\"H5704\"* worship before|strong=\"H6440\"* the|strong=\"H6440\"* one|strong=\"H2088\"* there|strong=\"H1961\"*." + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1121\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* from|strong=\"H1121\"* among|strong=\"H5971\"* all|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* not|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 32, + "text": "Jeroboam|strong=\"H3379\"* ordained|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, like|strong=\"H3651\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* that|strong=\"H3117\"* is|strong=\"H3117\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* he|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. He|strong=\"H3117\"* did|strong=\"H6213\"* so|strong=\"H3651\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, sacrificing|strong=\"H2076\"* to|strong=\"H5927\"* the|strong=\"H5921\"* calves|strong=\"H5695\"* that|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H3063\"* made|strong=\"H6213\"*, and|strong=\"H3063\"* he|strong=\"H3117\"* placed|strong=\"H5975\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H3117\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3117\"* he|strong=\"H3117\"* had|strong=\"H3063\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3117\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* which|strong=\"H4196\"* he|strong=\"H3117\"* had|strong=\"H3478\"* made|strong=\"H6213\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, even|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* month|strong=\"H2320\"* which|strong=\"H4196\"* he|strong=\"H3117\"* had|strong=\"H3478\"* devised of|strong=\"H1121\"* his|strong=\"H5921\"* own heart; and|strong=\"H1121\"* he|strong=\"H3117\"* ordained|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H2282\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3478\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* came|strong=\"H3068\"* out|strong=\"H5921\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* to|strong=\"H3068\"* Bethel|strong=\"H1008\"*; and|strong=\"H3063\"* Jeroboam|strong=\"H3379\"* was|strong=\"H3068\"* standing|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* cried|strong=\"H7121\"* against|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* said|strong=\"H1697\"*, “Altar|strong=\"H4196\"*! Altar|strong=\"H4196\"*! Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2009\"*, a|strong=\"H3068\"* son|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H1697\"* born|strong=\"H3205\"* to|strong=\"H3068\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, Josiah|strong=\"H2977\"* by|strong=\"H5921\"* name|strong=\"H8034\"*. On|strong=\"H5921\"* you|strong=\"H5921\"* he|strong=\"H3068\"* will|strong=\"H3068\"* sacrifice|strong=\"H2076\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* who|strong=\"H3068\"* burn|strong=\"H8313\"* incense|strong=\"H6999\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1121\"* they|strong=\"H3068\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* men|strong=\"H1121\"*’s bones|strong=\"H6106\"* on|strong=\"H5921\"* you|strong=\"H5921\"*.’”" + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* the|strong=\"H5921\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, saying|strong=\"H1696\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* sign|strong=\"H4159\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*: Behold|strong=\"H2009\"*, the|strong=\"H5921\"* altar|strong=\"H4196\"* will|strong=\"H3068\"* be|strong=\"H3068\"* split|strong=\"H7167\"* apart|strong=\"H7167\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* ashes|strong=\"H1880\"* that|strong=\"H3117\"* are|strong=\"H3117\"* on|strong=\"H5921\"* it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* saying|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* man of|strong=\"H4428\"* God|strong=\"H3808\"*, which|strong=\"H1697\"* he|strong=\"H3027\"* cried|strong=\"H7121\"* against|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, Jeroboam|strong=\"H3379\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7121\"* hand|strong=\"H3027\"* from|strong=\"H7725\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, saying|strong=\"H1697\"*, “Seize|strong=\"H8610\"* him|strong=\"H7121\"*!” His|strong=\"H7121\"* hand|strong=\"H3027\"*, which|strong=\"H1697\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* against|strong=\"H5921\"* him|strong=\"H7121\"*, dried|strong=\"H3001\"* up|strong=\"H3001\"*, so|strong=\"H7971\"* that|strong=\"H8085\"* he|strong=\"H3027\"* could|strong=\"H3201\"* not|strong=\"H3808\"* draw|strong=\"H7725\"* it|strong=\"H7121\"* back|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5414\"* altar|strong=\"H4196\"* was|strong=\"H3068\"* also|strong=\"H3068\"* split|strong=\"H7167\"* apart|strong=\"H7167\"*, and|strong=\"H3068\"* the|strong=\"H5414\"* ashes|strong=\"H1880\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* from|strong=\"H4480\"* the|strong=\"H5414\"* altar|strong=\"H4196\"*, according|strong=\"H4480\"* to|strong=\"H3068\"* the|strong=\"H5414\"* sign|strong=\"H4159\"* which|strong=\"H3068\"* the|strong=\"H5414\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, “Now|strong=\"H4994\"* intercede|strong=\"H6419\"* for|strong=\"H1157\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H1157\"* me|strong=\"H6440\"*, that|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* may|strong=\"H1961\"* be|strong=\"H1961\"* restored|strong=\"H7725\"* me|strong=\"H6440\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5414\"* man of|strong=\"H4428\"* God|strong=\"H5414\"*, “Come home|strong=\"H1004\"* with|strong=\"H1004\"* me|strong=\"H5414\"* and|strong=\"H4428\"* refresh|strong=\"H5582\"* yourself|strong=\"H5414\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* reward|strong=\"H4991\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5414\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H5414\"* said to|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, “Even|strong=\"H3808\"* if you|strong=\"H5414\"* gave|strong=\"H5414\"* me|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* your|strong=\"H5414\"* house|strong=\"H1004\"*, I|strong=\"H5414\"* would|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H4428\"* in|strong=\"H1004\"* with|strong=\"H5973\"* you|strong=\"H5414\"*, neither|strong=\"H3808\"* would|strong=\"H4428\"* I|strong=\"H5414\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* nor|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* in|strong=\"H1004\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* so|strong=\"H3651\"* was|strong=\"H3068\"* it|strong=\"H3588\"* commanded|strong=\"H6680\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*, drink|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"*, and|strong=\"H1980\"* don’t return|strong=\"H7725\"* by|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H1980\"*.’”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3808\"* he|strong=\"H3808\"* went|strong=\"H3212\"* another|strong=\"H3808\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* didn’t return|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* that|strong=\"H3808\"* he|strong=\"H3808\"* came|strong=\"H3212\"* to|strong=\"H7725\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H3117\"* an|strong=\"H6213\"* old|strong=\"H1121\"* prophet|strong=\"H5030\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*, and|strong=\"H1121\"* one|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* came|strong=\"H1697\"* and|strong=\"H1121\"* told|strong=\"H1696\"* him|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H3605\"* the|strong=\"H3605\"* man|strong=\"H2205\"* of|strong=\"H1121\"* God|strong=\"H1008\"* had|strong=\"H4428\"* done|strong=\"H6213\"* that|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*. They|strong=\"H3117\"* also|strong=\"H6213\"* told|strong=\"H1696\"* their|strong=\"H3605\"* father|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3117\"* had|strong=\"H4428\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H7200\"* father|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H7200\"*, “Which|strong=\"H2088\"* way|strong=\"H1870\"* did|strong=\"H3063\"* he|strong=\"H1980\"* go|strong=\"H1980\"*?” Now|strong=\"H2088\"* his|strong=\"H7200\"* sons|strong=\"H1121\"* had|strong=\"H3063\"* seen|strong=\"H7200\"* which|strong=\"H2088\"* way|strong=\"H1870\"* the|strong=\"H7200\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God went|strong=\"H1980\"*, who|strong=\"H1121\"* came|strong=\"H1980\"* from|strong=\"H1980\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* said to|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, “Saddle|strong=\"H2280\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"* for|strong=\"H5921\"* me|strong=\"H5921\"*.” So|strong=\"H5921\"* they|strong=\"H5921\"* saddled|strong=\"H2280\"* the|strong=\"H5921\"* donkey|strong=\"H2543\"* for|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H1121\"* he|strong=\"H5921\"* rode|strong=\"H7392\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3063\"* went|strong=\"H3212\"* after the|strong=\"H8478\"* man of|strong=\"H3427\"* God, and|strong=\"H3063\"* found|strong=\"H4672\"* him|strong=\"H4672\"* sitting|strong=\"H3427\"* under|strong=\"H8478\"* an|strong=\"H4672\"* oak. He|strong=\"H3063\"* said to|strong=\"H3212\"* him|strong=\"H4672\"*, “Are|strong=\"H8478\"* you|strong=\"H4672\"* the|strong=\"H8478\"* man of|strong=\"H3427\"* God who|strong=\"H3427\"* came|strong=\"H3212\"* from|strong=\"H8478\"* Judah|strong=\"H3063\"*?”" + }, + { + "verseNum": 15, + "text": "Then he|strong=\"H1004\"* said to|strong=\"H3212\"* him, “Come|strong=\"H3212\"* home|strong=\"H1004\"* with|strong=\"H1004\"* me|strong=\"H1004\"* and|strong=\"H1004\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3808\"* said, “I|strong=\"H3201\"* may|strong=\"H3201\"* not|strong=\"H3808\"* return|strong=\"H7725\"* with|strong=\"H3899\"* you|strong=\"H7725\"*, nor|strong=\"H3808\"* go|strong=\"H7725\"* in|strong=\"H3899\"* with|strong=\"H3899\"* you|strong=\"H7725\"*. I|strong=\"H3201\"* will|strong=\"H3808\"* not|strong=\"H3808\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* with|strong=\"H3899\"* you|strong=\"H7725\"* in|strong=\"H3899\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H1980\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* there|strong=\"H8033\"*, and|strong=\"H1980\"* don’t turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* go|strong=\"H1980\"* by|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* you|strong=\"H3588\"* came|strong=\"H1980\"*.’”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7725\"*, “I|strong=\"H1697\"* also|strong=\"H1571\"* am|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* as|strong=\"H1697\"* you|strong=\"H7725\"* are|strong=\"H1697\"*; and|strong=\"H3068\"* an|strong=\"H3068\"* angel|strong=\"H4397\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘Bring|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H1004\"* you|strong=\"H7725\"* into|strong=\"H7725\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*.’” He|strong=\"H3068\"* lied|strong=\"H3584\"* to|strong=\"H1696\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H7725\"* he|strong=\"H1004\"* went|strong=\"H7725\"* back|strong=\"H7725\"* with|strong=\"H1004\"* him|strong=\"H7725\"*, ate bread|strong=\"H3899\"* in|strong=\"H1004\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, and|strong=\"H7725\"* drank|strong=\"H8354\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H1697\"* they|strong=\"H1992\"* sat|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3068\"* table|strong=\"H7979\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H7725\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* brought|strong=\"H7725\"* him|strong=\"H7725\"* back|strong=\"H7725\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3063\"* he|strong=\"H3588\"* cried|strong=\"H7121\"* out|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H3588\"* man of|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* came|strong=\"H3068\"* from|strong=\"H3068\"* Judah|strong=\"H3063\"*, saying|strong=\"H6310\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3808\"* disobedient|strong=\"H4784\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H6310\"*, and|strong=\"H3063\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* commanded|strong=\"H6680\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "but|strong=\"H3808\"* came|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1696\"* eaten bread|strong=\"H3899\"* and|strong=\"H7725\"* drank|strong=\"H8354\"* water|strong=\"H4325\"* in|strong=\"H1696\"* the|strong=\"H7725\"* place|strong=\"H4725\"* of|strong=\"H4325\"* which|strong=\"H4325\"* he|strong=\"H3808\"* said|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H7725\"*, “Eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*, and|strong=\"H7725\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* water|strong=\"H4325\"*,” your|strong=\"H7725\"* body|strong=\"H5038\"* will|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H7725\"* to|strong=\"H1696\"* the|strong=\"H7725\"* tomb|strong=\"H6913\"* of|strong=\"H4325\"* your|strong=\"H7725\"* fathers.’”" + }, + { + "verseNum": 23, + "text": "After|strong=\"H1961\"* he|strong=\"H7725\"* had|strong=\"H1961\"* eaten bread|strong=\"H3899\"* and|strong=\"H7725\"* after|strong=\"H1961\"* he|strong=\"H7725\"* drank|strong=\"H8354\"*, he|strong=\"H7725\"* saddled|strong=\"H2280\"* the|strong=\"H7725\"* donkey|strong=\"H2543\"* for|strong=\"H1961\"* the|strong=\"H7725\"* prophet|strong=\"H5030\"* whom he|strong=\"H7725\"* had|strong=\"H1961\"* brought|strong=\"H7725\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H1961\"* he|strong=\"H3212\"* had|strong=\"H1961\"* gone|strong=\"H3212\"*, a|strong=\"H3068\"* lion met|strong=\"H4672\"* him|strong=\"H4672\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H3212\"* killed|strong=\"H4191\"* him|strong=\"H4672\"*. His|strong=\"H1961\"* body|strong=\"H5038\"* was|strong=\"H1961\"* thrown|strong=\"H7993\"* on|strong=\"H1870\"* the|strong=\"H1870\"* path|strong=\"H1870\"*, and|strong=\"H3212\"* the|strong=\"H1870\"* donkey|strong=\"H2543\"* stood|strong=\"H5975\"* by|strong=\"H1870\"* it|strong=\"H5038\"*. The|strong=\"H1870\"* lion also|strong=\"H4191\"* stood|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H1870\"* body|strong=\"H5038\"*." + }, + { + "verseNum": 25, + "text": "Behold|strong=\"H2009\"*, men|strong=\"H2205\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* and|strong=\"H5892\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* body|strong=\"H5038\"* thrown|strong=\"H7993\"* on|strong=\"H5674\"* the|strong=\"H7200\"* path|strong=\"H1870\"*, and|strong=\"H5892\"* the|strong=\"H7200\"* lion standing|strong=\"H5975\"* by|strong=\"H5674\"* the|strong=\"H7200\"* body|strong=\"H5038\"*; and|strong=\"H5892\"* they|strong=\"H5892\"* came|strong=\"H5674\"* and|strong=\"H5892\"* told|strong=\"H1696\"* it|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"* where|strong=\"H2009\"* the|strong=\"H7200\"* old|strong=\"H2205\"* prophet|strong=\"H5030\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* who|strong=\"H1931\"* brought|strong=\"H7725\"* him|strong=\"H5414\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H8085\"* way|strong=\"H1870\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* it|strong=\"H5414\"*, he|strong=\"H1931\"* said|strong=\"H1696\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* the|strong=\"H8085\"* man|strong=\"H4191\"* of|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* was|strong=\"H3068\"* disobedient|strong=\"H4784\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H1696\"* the|strong=\"H8085\"* lion, which|strong=\"H1931\"* has|strong=\"H3068\"* mauled him|strong=\"H5414\"* and|strong=\"H3068\"* slain|strong=\"H4191\"* him|strong=\"H5414\"*, according|strong=\"H6310\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*.”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H2280\"* sons|strong=\"H1121\"*, saying|strong=\"H1696\"*, “Saddle|strong=\"H2280\"* the|strong=\"H1696\"* donkey|strong=\"H2543\"* for|strong=\"H1121\"* me|strong=\"H1696\"*,” and|strong=\"H1121\"* they|strong=\"H1696\"* saddled|strong=\"H2280\"* it|strong=\"H1696\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3808\"* went|strong=\"H3212\"* and|strong=\"H3212\"* found|strong=\"H4672\"* his|strong=\"H7993\"* body|strong=\"H5038\"* thrown|strong=\"H7993\"* on|strong=\"H1870\"* the|strong=\"H7665\"* path|strong=\"H1870\"*, and|strong=\"H3212\"* the|strong=\"H7665\"* donkey|strong=\"H2543\"* and|strong=\"H3212\"* the|strong=\"H7665\"* lion standing|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H7665\"* body|strong=\"H5038\"*. The|strong=\"H7665\"* lion had|strong=\"H4672\"* not|strong=\"H3808\"* eaten the|strong=\"H7665\"* body|strong=\"H5038\"* nor|strong=\"H3808\"* mauled the|strong=\"H7665\"* donkey|strong=\"H2543\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5375\"* prophet|strong=\"H5030\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5375\"* body|strong=\"H5038\"* of|strong=\"H5892\"* the|strong=\"H5375\"* man|strong=\"H2205\"* of|strong=\"H5892\"* God, and|strong=\"H7725\"* laid|strong=\"H5375\"* it|strong=\"H7725\"* on|strong=\"H5892\"* the|strong=\"H5375\"* donkey|strong=\"H2543\"*, and|strong=\"H7725\"* brought|strong=\"H7725\"* it|strong=\"H7725\"* back|strong=\"H7725\"*. He|strong=\"H7725\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5375\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5375\"* old|strong=\"H2205\"* prophet|strong=\"H5030\"* to|strong=\"H7725\"* mourn|strong=\"H5594\"*, and|strong=\"H7725\"* to|strong=\"H7725\"* bury|strong=\"H6912\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H5921\"* laid|strong=\"H3240\"* his|strong=\"H5921\"* body|strong=\"H5038\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own grave|strong=\"H6913\"*; and|strong=\"H5594\"* they|strong=\"H5921\"* mourned|strong=\"H5594\"* over|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “Alas|strong=\"H1945\"*, my|strong=\"H5921\"* brother!”" + }, + { + "verseNum": 31, + "text": "After|strong=\"H1961\"* he|strong=\"H1121\"* had|strong=\"H1961\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*, he|strong=\"H1121\"* spoke to|strong=\"H4191\"* his|strong=\"H1961\"* sons|strong=\"H1121\"*, saying, “When|strong=\"H1961\"* I|strong=\"H1121\"* am|strong=\"H1961\"* dead|strong=\"H4191\"*, bury|strong=\"H6912\"* me|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* tomb|strong=\"H6913\"* in|strong=\"H4191\"* which|strong=\"H4191\"* the|strong=\"H1961\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God is|strong=\"H1121\"* buried|strong=\"H6912\"*. Lay|strong=\"H3240\"* my|strong=\"H1961\"* bones|strong=\"H6106\"* beside his|strong=\"H1961\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* saying|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3588\"* cried|strong=\"H7121\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* against|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H3068\"* are|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Samaria|strong=\"H8111\"*, will|strong=\"H3068\"* surely|strong=\"H3588\"* happen|strong=\"H1961\"*.”" + }, + { + "verseNum": 33, + "text": "After|strong=\"H1961\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, Jeroboam|strong=\"H3379\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, but|strong=\"H3808\"* again|strong=\"H7725\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* of|strong=\"H3027\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* from|strong=\"H7725\"* among|strong=\"H5971\"* all|strong=\"H6213\"* the|strong=\"H6213\"* people|strong=\"H5971\"*. Whoever wanted to|strong=\"H7725\"*, he|strong=\"H6213\"* consecrated|strong=\"H4390\"* him|strong=\"H3027\"*, that|strong=\"H5971\"* there|strong=\"H1961\"* might|strong=\"H5971\"* be|strong=\"H1961\"* priests|strong=\"H3548\"* of|strong=\"H3027\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 34, + "text": "This|strong=\"H2088\"* thing|strong=\"H1697\"* became|strong=\"H1961\"* sin|strong=\"H2403\"* to|strong=\"H1961\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, even|strong=\"H5921\"* to|strong=\"H1961\"* cut|strong=\"H3582\"* it|strong=\"H5921\"* off|strong=\"H3582\"* and|strong=\"H1004\"* to|strong=\"H1961\"* destroy|strong=\"H8045\"* it|strong=\"H5921\"* from|strong=\"H6440\"* off|strong=\"H3582\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H1121\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Abijah the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* became|strong=\"H2470\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 2, + "text": "Jeroboam|strong=\"H3379\"* said|strong=\"H1696\"* to|strong=\"H1696\"* his|strong=\"H5921\"* wife|strong=\"H1696\"*, “Please|strong=\"H4994\"* get|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1980\"* disguise|strong=\"H8138\"* yourself|strong=\"H5921\"*, so|strong=\"H1980\"* that|strong=\"H3588\"* you|strong=\"H3588\"* won’t be|strong=\"H3808\"* recognized|strong=\"H3045\"* as|strong=\"H3588\"* Jeroboam|strong=\"H3379\"*’s wife|strong=\"H1696\"*. Go|strong=\"H1980\"* to|strong=\"H1696\"* Shiloh|strong=\"H7887\"*. Behold|strong=\"H2009\"*, Ahijah the|strong=\"H5921\"* prophet|strong=\"H5030\"* is|strong=\"H2088\"* there|strong=\"H8033\"*, who|strong=\"H1931\"* said|strong=\"H1696\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H5971\"* be|strong=\"H3808\"* king|strong=\"H4428\"* over|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "Take|strong=\"H3947\"* with|strong=\"H3899\"* you|strong=\"H3947\"* ten|strong=\"H6235\"* loaves|strong=\"H3899\"* of|strong=\"H3027\"* bread|strong=\"H3899\"*, some|strong=\"H3027\"* cakes|strong=\"H5350\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* jar|strong=\"H1228\"* of|strong=\"H3027\"* honey|strong=\"H1706\"*, and|strong=\"H3027\"* go|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H5046\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* tell|strong=\"H5046\"* you|strong=\"H3947\"* what|strong=\"H4100\"* will|strong=\"H1961\"* become|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H3947\"* child|strong=\"H5288\"*.”" + }, + { + "verseNum": 4, + "text": "Jeroboam|strong=\"H3379\"*’s wife did|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6965\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3201\"* Shiloh|strong=\"H7887\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H3201\"* Ahijah’s house|strong=\"H1004\"*. Now|strong=\"H3588\"* Ahijah could|strong=\"H3201\"* not|strong=\"H3808\"* see|strong=\"H7200\"*, for|strong=\"H3588\"* his|strong=\"H7200\"* eyes|strong=\"H5869\"* were|strong=\"H5869\"* set|strong=\"H6965\"* by|strong=\"H6965\"* reason|strong=\"H3651\"* of|strong=\"H1004\"* his|strong=\"H7200\"* age|strong=\"H7869\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Ahijah, “Behold|strong=\"H2009\"*, Jeroboam|strong=\"H3379\"*’s wife|strong=\"H1696\"* is|strong=\"H3068\"* coming|strong=\"H2009\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* you|strong=\"H3588\"* concerning|strong=\"H1697\"* her|strong=\"H1931\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* sick|strong=\"H2470\"*. Tell|strong=\"H1696\"* her|strong=\"H1931\"* such|strong=\"H2088\"* and|strong=\"H1121\"* such|strong=\"H2088\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, when|strong=\"H3588\"* she|strong=\"H1931\"* comes|strong=\"H1961\"* in|strong=\"H3068\"*, that|strong=\"H3588\"* she|strong=\"H1931\"* will|strong=\"H3068\"* pretend|strong=\"H2470\"* to|strong=\"H1696\"* be|strong=\"H1961\"* another|strong=\"H2088\"* woman|strong=\"H2088\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H7971\"* when|strong=\"H1961\"* Ahijah heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* her|strong=\"H7971\"* feet|strong=\"H7272\"* as|strong=\"H1961\"* she|strong=\"H4100\"* came|strong=\"H1961\"* in|strong=\"H8085\"* at|strong=\"H1961\"* the|strong=\"H8085\"* door|strong=\"H6607\"*, he|strong=\"H7971\"* said|strong=\"H8085\"*, “Come|strong=\"H1961\"* in|strong=\"H8085\"*, Jeroboam|strong=\"H3379\"*’s wife! Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7971\"* pretend to|strong=\"H7971\"* be|strong=\"H1961\"* another|strong=\"H2088\"*? For|strong=\"H7971\"* I|strong=\"H2088\"* am|strong=\"H1961\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H7971\"* with|strong=\"H8085\"* heavy|strong=\"H7186\"* news|strong=\"H6963\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"H3212\"*, tell Jeroboam|strong=\"H3379\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Because|strong=\"H5921\"* I|strong=\"H5414\"* exalted|strong=\"H7311\"* you|strong=\"H5414\"* from|strong=\"H5921\"* among|strong=\"H8432\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* made|strong=\"H5414\"* you|strong=\"H5414\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1980\"* tore|strong=\"H7167\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* away|strong=\"H1980\"* from|strong=\"H1980\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, and|strong=\"H1980\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1980\"* you|strong=\"H5414\"*; and|strong=\"H1980\"* yet|strong=\"H7535\"* you|strong=\"H5414\"* have|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* as|strong=\"H1961\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, who|strong=\"H3605\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"*, and|strong=\"H1980\"* who|strong=\"H3605\"* followed|strong=\"H1980\"* me|strong=\"H5414\"* with|strong=\"H1980\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*, to|strong=\"H1980\"* do|strong=\"H6213\"* that|strong=\"H3605\"* only|strong=\"H7535\"* which|strong=\"H1004\"* was|strong=\"H1961\"* right|strong=\"H3477\"* in|strong=\"H1980\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H1961\"* have|strong=\"H1961\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3212\"* have|strong=\"H1961\"* gone|strong=\"H3212\"* and|strong=\"H3212\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"* other|strong=\"H3605\"* gods, molten|strong=\"H4541\"* images|strong=\"H4541\"*, to|strong=\"H3212\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3212\"* anger|strong=\"H3707\"*, and|strong=\"H3212\"* have|strong=\"H1961\"* cast|strong=\"H7993\"* me|strong=\"H6440\"* behind your|strong=\"H3605\"* back|strong=\"H1458\"*," + }, + { + "verseNum": 10, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H1004\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Jeroboam|strong=\"H3379\"* everyone who|strong=\"H3478\"* urinates on|strong=\"H1004\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 14:10 or, male* he|strong=\"H5704\"* who|strong=\"H3478\"* is|strong=\"H3651\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* he|strong=\"H5704\"* who|strong=\"H3478\"* is|strong=\"H3651\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large|strong=\"H1004\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* utterly|strong=\"H5704\"* sweep|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, as|strong=\"H5704\"* a|strong=\"H3068\"* man|strong=\"H7451\"* sweeps|strong=\"H1197\"* away|strong=\"H1197\"* dung|strong=\"H1557\"* until|strong=\"H5704\"* it|strong=\"H3651\"* is|strong=\"H3651\"* all|strong=\"H8552\"* gone|strong=\"H8552\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3588\"* dogs|strong=\"H3611\"* will|strong=\"H3068\"* eat he|strong=\"H3588\"* who|strong=\"H3068\"* belongs to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* who|strong=\"H3068\"* dies|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"*; and|strong=\"H3068\"* the|strong=\"H3588\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* will|strong=\"H3068\"* eat he|strong=\"H3588\"* who|strong=\"H3068\"* dies|strong=\"H4191\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.”’" + }, + { + "verseNum": 12, + "text": "Arise|strong=\"H6965\"* therefore, and|strong=\"H6965\"* go|strong=\"H3212\"* to|strong=\"H4191\"* your|strong=\"H6965\"* house|strong=\"H1004\"*. When|strong=\"H6965\"* your|strong=\"H6965\"* feet|strong=\"H7272\"* enter into|strong=\"H3212\"* the|strong=\"H6965\"* city|strong=\"H5892\"*, the|strong=\"H6965\"* child|strong=\"H3206\"* will|strong=\"H1004\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* mourn|strong=\"H5594\"* for|strong=\"H3588\"* him|strong=\"H4672\"* and|strong=\"H3478\"* bury|strong=\"H6912\"* him|strong=\"H4672\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* only|strong=\"H3588\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"* will|strong=\"H3068\"* come|strong=\"H4672\"* to|strong=\"H3478\"* the|strong=\"H3605\"* grave|strong=\"H6913\"*, because|strong=\"H3588\"* in|strong=\"H3478\"* him|strong=\"H4672\"* there|strong=\"H2088\"* is|strong=\"H3068\"* found|strong=\"H4672\"* some|strong=\"H1697\"* good|strong=\"H2896\"* thing|strong=\"H1697\"* toward|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* king|strong=\"H4428\"* for|strong=\"H5921\"* himself|strong=\"H3068\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*. This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* day|strong=\"H3117\"*! What|strong=\"H4100\"*? Even|strong=\"H1571\"* now|strong=\"H6258\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* Israel|strong=\"H3478\"*, as|strong=\"H6213\"* a|strong=\"H3068\"* reed|strong=\"H7070\"* is|strong=\"H3068\"* shaken|strong=\"H5110\"* in|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* will|strong=\"H3068\"* root|strong=\"H5428\"* up|strong=\"H5414\"* Israel|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H3068\"* this|strong=\"H2063\"* good|strong=\"H2896\"* land|strong=\"H5676\"* which|strong=\"H3068\"* he|strong=\"H6213\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* their|strong=\"H3068\"* fathers, and|strong=\"H3478\"* will|strong=\"H3068\"* scatter|strong=\"H2219\"* them|strong=\"H5414\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*,+ 14:15 That is, the Euphrates.* because|strong=\"H5921\"* they|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H6213\"* their|strong=\"H3068\"* Asherah poles, provoking|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* Israel|strong=\"H3478\"* up|strong=\"H5414\"* because|strong=\"H1558\"* of|strong=\"H2403\"* the|strong=\"H5414\"* sins|strong=\"H2403\"* of|strong=\"H2403\"* Jeroboam|strong=\"H3379\"*, which|strong=\"H3478\"* he|strong=\"H5414\"* has|strong=\"H3478\"* sinned|strong=\"H2398\"*, and|strong=\"H3478\"* with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H5414\"* has|strong=\"H3478\"* made|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 17, + "text": "Jeroboam|strong=\"H3379\"*’s wife arose|strong=\"H6965\"* and|strong=\"H6965\"* departed|strong=\"H3212\"*, and|strong=\"H6965\"* came|strong=\"H3212\"* to|strong=\"H4191\"* Tirzah|strong=\"H8656\"*. As|strong=\"H6965\"* she|strong=\"H1931\"* came|strong=\"H3212\"* to|strong=\"H4191\"* the|strong=\"H6965\"* threshold|strong=\"H5592\"* of|strong=\"H1004\"* the|strong=\"H6965\"* house|strong=\"H1004\"*, the|strong=\"H6965\"* child|strong=\"H5288\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* buried|strong=\"H6912\"* him|strong=\"H3027\"* and|strong=\"H3478\"* mourned|strong=\"H5594\"* for|strong=\"H3027\"* him|strong=\"H3027\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Ahijah the|strong=\"H3605\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, how|strong=\"H2009\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* and|strong=\"H3478\"* how|strong=\"H2009\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3117\"* days|strong=\"H3117\"* which|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* reigned|strong=\"H4427\"* were|strong=\"H1121\"* twenty|strong=\"H6242\"* two|strong=\"H8147\"* years|strong=\"H8141\"*; then|strong=\"H3117\"* he|strong=\"H3117\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Nadab|strong=\"H5070\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 21, + "text": "Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Judah|strong=\"H3063\"*. Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* forty-one years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3068\"* he|strong=\"H8033\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* reigned|strong=\"H4427\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* chosen out|strong=\"H3605\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*. His|strong=\"H3605\"* mother’s name|strong=\"H8034\"* was|strong=\"H3068\"* Naamah|strong=\"H5279\"* the|strong=\"H3605\"* Ammonitess|strong=\"H5985\"*." + }, + { + "verseNum": 22, + "text": "Judah|strong=\"H3063\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3063\"* they|strong=\"H3068\"* provoked|strong=\"H7065\"* him|strong=\"H6213\"* to|strong=\"H3068\"* jealousy|strong=\"H7065\"* with|strong=\"H3068\"* their|strong=\"H3605\"* sins|strong=\"H2403\"* which|strong=\"H3068\"* they|strong=\"H3068\"* committed|strong=\"H6213\"*, above all|strong=\"H3605\"* that|strong=\"H3605\"* their|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* they|strong=\"H1992\"* also|strong=\"H1571\"* built|strong=\"H1129\"* for|strong=\"H5921\"* themselves|strong=\"H1992\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, sacred pillars|strong=\"H4676\"*, and|strong=\"H6086\"* Asherah poles on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1116\"* hill|strong=\"H1389\"* and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H1961\"* were|strong=\"H3478\"* also|strong=\"H1571\"* sodomites|strong=\"H6945\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land|strong=\"H6440\"*. They|strong=\"H3068\"* did|strong=\"H6213\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* drove|strong=\"H3423\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H3068\"* he|strong=\"H6213\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H6213\"* even|strong=\"H6213\"* took|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* of|strong=\"H4428\"* it|strong=\"H6213\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* shields|strong=\"H4043\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* made|strong=\"H6213\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* bronze|strong=\"H5178\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* committed|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H8104\"*, who|strong=\"H8104\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "It|strong=\"H7725\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3068\"* as|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* the|strong=\"H5375\"* king|strong=\"H4428\"* went|strong=\"H3068\"* into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H5375\"* guard|strong=\"H7323\"* bore|strong=\"H5375\"* them|strong=\"H7725\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5375\"* guard|strong=\"H7323\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 30, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 31, + "text": "Rehoboam|strong=\"H7346\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H8034\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. His|strong=\"H1732\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Naamah|strong=\"H5279\"* the|strong=\"H8478\"* Ammonitess|strong=\"H5985\"*. Abijam his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, Abijam began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abishalom." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* his|strong=\"H3605\"* father, which|strong=\"H3068\"* he|strong=\"H6213\"* had|strong=\"H3068\"* done|strong=\"H6213\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H3068\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* not|strong=\"H3808\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father." + }, + { + "verseNum": 4, + "text": "Nevertheless|strong=\"H3588\"* for|strong=\"H3588\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*, Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* God|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3068\"* set|strong=\"H5414\"* up|strong=\"H6965\"* his|strong=\"H5414\"* son|strong=\"H1121\"* after|strong=\"H3588\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* establish|strong=\"H6965\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 5, + "text": "because|strong=\"H1697\"* David|strong=\"H1732\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* him|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3605\"* life|strong=\"H2416\"*, except|strong=\"H7535\"* only|strong=\"H7535\"* in|strong=\"H3068\"* the|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H3068\"* Uriah the|strong=\"H3605\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Abijam, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Abijam and|strong=\"H3063\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 8, + "text": "Abijam slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Asa his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Asa began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3389\"* reigned|strong=\"H4427\"* forty-one years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abishalom." + }, + { + "verseNum": 11, + "text": "Asa did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, as|strong=\"H6213\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* sodomites|strong=\"H6945\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land, and|strong=\"H6213\"* removed|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H6213\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* also|strong=\"H1571\"* removed|strong=\"H5493\"* Maacah|strong=\"H4601\"* his|strong=\"H5493\"* mother|strong=\"H1377\"* from|strong=\"H5493\"* being|strong=\"H3772\"* queen|strong=\"H1377\"*, because she|strong=\"H1571\"* had|strong=\"H8313\"* made|strong=\"H6213\"* an|strong=\"H6213\"* abominable image|strong=\"H4656\"* for|strong=\"H6213\"* an|strong=\"H6213\"* Asherah. Asa cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* image|strong=\"H4656\"* and|strong=\"H6213\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* at|strong=\"H6213\"* the|strong=\"H6213\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H7535\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H1961\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. Nevertheless|strong=\"H7535\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* Asa was|strong=\"H3068\"* perfect|strong=\"H8003\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* into|strong=\"H3701\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* the|strong=\"H3068\"* things|strong=\"H6944\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* things|strong=\"H6944\"* that|strong=\"H3068\"* he|strong=\"H3068\"* himself|strong=\"H3068\"* had|strong=\"H3068\"* dedicated|strong=\"H6944\"*: silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3068\"* utensils|strong=\"H3627\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Asa and|strong=\"H3478\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* Ramah|strong=\"H7414\"*, that|strong=\"H3478\"* he|strong=\"H5414\"* might|strong=\"H3478\"* not|strong=\"H1115\"* allow|strong=\"H5414\"* anyone to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H1115\"* come|strong=\"H5927\"* in|strong=\"H5921\"* to|strong=\"H3318\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3947\"* Asa took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* was|strong=\"H3068\"* left|strong=\"H3498\"* in|strong=\"H3427\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*. Then|strong=\"H3947\"* King|strong=\"H4428\"* Asa sent|strong=\"H7971\"* them|strong=\"H5414\"* to|strong=\"H3068\"* Ben Hadad, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tabrimmon|strong=\"H2886\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezion|strong=\"H2383\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Syria, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Damascus|strong=\"H1834\"*, saying," + }, + { + "verseNum": 19, + "text": "“Let|strong=\"H7971\"* there|strong=\"H2009\"* be|strong=\"H3478\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* between|strong=\"H5921\"* me|strong=\"H7971\"* and|strong=\"H3478\"* you|strong=\"H7971\"*, like|strong=\"H3478\"* that|strong=\"H3478\"* between|strong=\"H5921\"* my|strong=\"H5921\"* father and|strong=\"H3478\"* your|strong=\"H5921\"* father. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* you|strong=\"H7971\"* a|strong=\"H3068\"* present|strong=\"H7810\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3478\"* gold|strong=\"H2091\"*. Go|strong=\"H3212\"*, break|strong=\"H6565\"* your|strong=\"H5921\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H5921\"* may|strong=\"H3478\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 20, + "text": "Ben Hadad listened|strong=\"H8085\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Asa, and|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H3605\"* armies|strong=\"H2428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* Ijon|strong=\"H5859\"*, and|strong=\"H3478\"* Dan|strong=\"H1835\"*, and|strong=\"H3478\"* Abel Beth Maacah, and|strong=\"H3478\"* all|strong=\"H3605\"* Chinneroth|strong=\"H3672\"*, with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H1961\"* Baasha|strong=\"H1201\"* heard|strong=\"H8085\"* of|strong=\"H3427\"* it|strong=\"H1961\"*, he|strong=\"H3427\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* Ramah|strong=\"H7414\"*, and|strong=\"H8085\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5375\"* King|strong=\"H4428\"* Asa made|strong=\"H1129\"* a|strong=\"H3068\"* proclamation|strong=\"H8085\"* to|strong=\"H8085\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*. No|strong=\"H3605\"* one|strong=\"H3605\"* was|strong=\"H4428\"* exempted|strong=\"H5355\"*. They|strong=\"H3605\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H3605\"* stones of|strong=\"H4428\"* Ramah|strong=\"H7414\"*, and|strong=\"H3063\"* its|strong=\"H3605\"* timber|strong=\"H6086\"*, with|strong=\"H4428\"* which|strong=\"H6086\"* Baasha|strong=\"H1201\"* had|strong=\"H4428\"* built|strong=\"H1129\"*; and|strong=\"H3063\"* King|strong=\"H4428\"* Asa used|strong=\"H3605\"* it|strong=\"H5375\"* to|strong=\"H8085\"* build|strong=\"H1129\"* Geba|strong=\"H1387\"* of|strong=\"H4428\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Asa, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H1992\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? But|strong=\"H7535\"* in|strong=\"H5921\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H4428\"* his|strong=\"H3605\"* old|strong=\"H2209\"* age|strong=\"H3117\"* he|strong=\"H3117\"* was|strong=\"H1697\"* diseased|strong=\"H2470\"* in|strong=\"H5921\"* his|strong=\"H3605\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 24, + "text": "Asa slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Nadab|strong=\"H5070\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* two|strong=\"H8147\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* his|strong=\"H3068\"* father, and|strong=\"H3478\"* in|strong=\"H3478\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 27, + "text": "Baasha|strong=\"H1201\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah, of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H1121\"* Baasha|strong=\"H1201\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* at|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, which|strong=\"H1004\"* belonged to|strong=\"H3478\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*; for|strong=\"H5921\"* Nadab|strong=\"H5070\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* besieging|strong=\"H6696\"* Gibbethon|strong=\"H1405\"*." + }, + { + "verseNum": 28, + "text": "Even in|strong=\"H8141\"* the|strong=\"H8478\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Baasha|strong=\"H1201\"* killed|strong=\"H4191\"* him|strong=\"H4427\"* and|strong=\"H3063\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H3068\"* king|strong=\"H4427\"*, he|strong=\"H5704\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*. He|strong=\"H5704\"* didn’t leave|strong=\"H7604\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* any|strong=\"H3605\"* who|strong=\"H3605\"* breathed|strong=\"H5397\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* destroyed|strong=\"H8045\"* him|strong=\"H5221\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* the|strong=\"H3605\"* saying|strong=\"H1697\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* he|strong=\"H5704\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3605\"* servant|strong=\"H5650\"* Ahijah the|strong=\"H3605\"* Shilonite|strong=\"H7888\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"* which|strong=\"H3068\"* he|strong=\"H3068\"* sinned|strong=\"H2398\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* provocation|strong=\"H3708\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Nadab|strong=\"H5070\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 32, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Asa and|strong=\"H3478\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Baasha|strong=\"H1201\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"* for|strong=\"H5921\"* twenty-four|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* in|strong=\"H3478\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* against|strong=\"H5921\"* Baasha|strong=\"H1201\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Because|strong=\"H5921\"* I|strong=\"H5414\"* exalted|strong=\"H7311\"* you|strong=\"H5414\"* out|strong=\"H4480\"* of|strong=\"H1870\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* and|strong=\"H3478\"* made|strong=\"H5414\"* you|strong=\"H5414\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5414\"* have|strong=\"H5971\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* have|strong=\"H5971\"* made|strong=\"H5414\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* me|strong=\"H5414\"* to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H5921\"* their|strong=\"H5414\"* sins|strong=\"H2403\"*," + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* utterly|strong=\"H1197\"* sweep|strong=\"H1197\"* away|strong=\"H1197\"* Baasha|strong=\"H1201\"* and|strong=\"H1121\"* his|strong=\"H5414\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* I|strong=\"H2005\"* will|strong=\"H1121\"* make|strong=\"H5414\"* your|strong=\"H5414\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H4191\"* dogs|strong=\"H3611\"* will|strong=\"H5892\"* eat Baasha|strong=\"H1201\"*’s descendants who|strong=\"H1201\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* city|strong=\"H5892\"*; and|strong=\"H8064\"* he|strong=\"H5892\"* who|strong=\"H1201\"* dies|strong=\"H4191\"* of|strong=\"H5892\"* his|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* field|strong=\"H7704\"*, the|strong=\"H4191\"* birds|strong=\"H5775\"* of|strong=\"H5892\"* the|strong=\"H4191\"* sky|strong=\"H8064\"* will|strong=\"H5892\"* eat.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Baasha|strong=\"H1201\"*, and|strong=\"H3478\"* what|strong=\"H1697\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 6, + "text": "Baasha|strong=\"H1201\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* Tirzah|strong=\"H8656\"*; and|strong=\"H1121\"* Elah his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"H1571\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* against|strong=\"H5921\"* Baasha|strong=\"H1201\"* and|strong=\"H1121\"* against|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, both|strong=\"H1571\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H5921\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* with|strong=\"H1004\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1121\"* his|strong=\"H3605\"* hands|strong=\"H3027\"*, in|strong=\"H5921\"* being|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H1121\"* because|strong=\"H5921\"* he|strong=\"H6213\"* struck|strong=\"H5221\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-sixth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Elah the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"* for|strong=\"H5921\"* two|strong=\"H4427\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 9, + "text": "His|strong=\"H5921\"* servant|strong=\"H5650\"* Zimri|strong=\"H2174\"*, captain|strong=\"H8269\"* of|strong=\"H1004\"* half|strong=\"H4276\"* his|strong=\"H5921\"* chariots|strong=\"H7393\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Now|strong=\"H5921\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H5921\"* Tirzah|strong=\"H8656\"*, drinking|strong=\"H8354\"* himself|strong=\"H1931\"* drunk|strong=\"H8354\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Arza, who|strong=\"H1931\"* was|strong=\"H1931\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"* in|strong=\"H5921\"* Tirzah|strong=\"H8656\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H3063\"* Zimri|strong=\"H2174\"* went|strong=\"H3063\"* in|strong=\"H8141\"* and|strong=\"H3063\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* and|strong=\"H3063\"* killed|strong=\"H5221\"* him|strong=\"H5221\"* in|strong=\"H8141\"* the|strong=\"H5221\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* he|strong=\"H3605\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, as|strong=\"H1961\"* soon as|strong=\"H1961\"* he|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, he|strong=\"H3605\"* attacked|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baasha|strong=\"H1201\"*. He|strong=\"H3605\"* didn’t leave|strong=\"H7604\"* him|strong=\"H5921\"* a|strong=\"H3068\"* single one|strong=\"H3605\"* who|strong=\"H3605\"* urinates on|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*+ 16:11 or, male* among|strong=\"H5921\"* his|strong=\"H3605\"* relatives|strong=\"H1350\"* or|strong=\"H3808\"* his|strong=\"H3605\"* friends|strong=\"H7453\"*." + }, + { + "verseNum": 12, + "text": "Thus|strong=\"H1697\"* Zimri|strong=\"H2174\"* destroyed|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baasha|strong=\"H1201\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* against|strong=\"H1696\"* Baasha|strong=\"H1201\"* by|strong=\"H3027\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*," + }, + { + "verseNum": 13, + "text": "for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Elah his|strong=\"H3605\"* son|strong=\"H1121\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* sinned|strong=\"H2398\"* and|strong=\"H1121\"* with|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* their|strong=\"H3605\"* vanities|strong=\"H1892\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Elah, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 15, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Zimri|strong=\"H2174\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"*. Now|strong=\"H3117\"* the|strong=\"H5921\"* people|strong=\"H5971\"* were|strong=\"H5971\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, which|strong=\"H5971\"* belonged to|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* encamped|strong=\"H2583\"* heard|strong=\"H8085\"* that|strong=\"H5971\"* Zimri|strong=\"H2174\"* had|strong=\"H3478\"* conspired|strong=\"H7194\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* also|strong=\"H1571\"* killed|strong=\"H5221\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. Therefore|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* made|strong=\"H4427\"* Omri|strong=\"H6018\"*, the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* that|strong=\"H5971\"* day|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H3605\"* camp|strong=\"H4264\"*." + }, + { + "verseNum": 17, + "text": "Omri|strong=\"H6018\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Gibbethon|strong=\"H1405\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H5921\"* besieged|strong=\"H6696\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3588\"* Zimri|strong=\"H2174\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H1961\"* taken|strong=\"H3920\"*, he|strong=\"H3588\"* went|strong=\"H4428\"* into|strong=\"H5921\"* the|strong=\"H5921\"* fortified part|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* and|strong=\"H4428\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* over|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H8313\"* fire, and|strong=\"H4428\"* died|strong=\"H4191\"*," + }, + { + "verseNum": 19, + "text": "for|strong=\"H5921\"* his|strong=\"H3068\"* sins|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H6213\"* sinned|strong=\"H2398\"* in|strong=\"H5921\"* doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, in|strong=\"H5921\"* walking|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3478\"* in|strong=\"H5921\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* which|strong=\"H3068\"* he|strong=\"H6213\"* did|strong=\"H6213\"* to|strong=\"H3478\"* make|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Zimri|strong=\"H2174\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* treason|strong=\"H7195\"* that|strong=\"H3117\"* he|strong=\"H3117\"* committed|strong=\"H3478\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* the|strong=\"H1961\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* divided|strong=\"H2505\"* into|strong=\"H1961\"* two|strong=\"H4427\"* parts|strong=\"H2677\"*: half|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H1961\"* people|strong=\"H5971\"* followed|strong=\"H1961\"* Tibni|strong=\"H8402\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ginath|strong=\"H1527\"*, to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*, and|strong=\"H1121\"* half|strong=\"H2677\"* followed|strong=\"H1961\"* Omri|strong=\"H6018\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H2388\"* the|strong=\"H2388\"* people|strong=\"H5971\"* who|strong=\"H5971\"* followed Omri|strong=\"H6018\"* prevailed|strong=\"H2388\"* against|strong=\"H2388\"* the|strong=\"H2388\"* people|strong=\"H5971\"* who|strong=\"H5971\"* followed Tibni|strong=\"H8402\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ginath|strong=\"H1527\"*; so|strong=\"H4191\"* Tibni|strong=\"H8402\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Omri|strong=\"H6018\"* reigned|strong=\"H4427\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-first|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Omri|strong=\"H6018\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*. He|strong=\"H8147\"* reigned|strong=\"H4427\"* six|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Tirzah|strong=\"H8656\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5921\"* bought|strong=\"H7069\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* Samaria|strong=\"H8111\"* of|strong=\"H5892\"* Shemer|strong=\"H8106\"* for|strong=\"H5921\"* two talents|strong=\"H3603\"*+ 16:24 A talent is about 30 kilograms or 66 pounds.* of|strong=\"H5892\"* silver|strong=\"H3701\"*; and|strong=\"H3701\"* he|strong=\"H5921\"* built|strong=\"H1129\"* on|strong=\"H5921\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*, and|strong=\"H3701\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H5892\"* the|strong=\"H5921\"* city|strong=\"H5892\"* which|strong=\"H5892\"* he|strong=\"H5921\"* built|strong=\"H1129\"*, Samaria|strong=\"H8111\"*, after|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H5892\"* Shemer|strong=\"H8106\"*, the|strong=\"H5921\"* owner|strong=\"H7069\"* of|strong=\"H5892\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*." + }, + { + "verseNum": 25, + "text": "Omri|strong=\"H6018\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* dealt|strong=\"H6213\"* wickedly|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5869\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*, to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* their|strong=\"H3605\"* vanities|strong=\"H1892\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Omri|strong=\"H6018\"* which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* might|strong=\"H1369\"* that|strong=\"H3117\"* he|strong=\"H3117\"* showed|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 28, + "text": "So Omri|strong=\"H6018\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*; and|strong=\"H1121\"* Ahab his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-eighth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Asa king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Ahab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*. Ahab the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 30, + "text": "Ahab the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* above|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* were|strong=\"H1121\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H1961\"* if|strong=\"H1961\"* it|strong=\"H1961\"* had|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* for|strong=\"H1121\"* him|strong=\"H3947\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H4428\"* the|strong=\"H3947\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, he|strong=\"H4428\"* took|strong=\"H3947\"* as|strong=\"H1961\"* wife Jezebel the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Ethbaal king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3947\"* Sidonians|strong=\"H6722\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* and|strong=\"H1121\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"* and|strong=\"H1121\"* worshiped|strong=\"H7812\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H1004\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* for|strong=\"H1004\"* Baal|strong=\"H1168\"* in|strong=\"H1004\"* the|strong=\"H1129\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* had|strong=\"H1129\"* built|strong=\"H1129\"* in|strong=\"H1004\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 33, + "text": "Ahab made|strong=\"H6213\"* the|strong=\"H3605\"* Asherah; and|strong=\"H3478\"* Ahab did|strong=\"H6213\"* more|strong=\"H3254\"* yet|strong=\"H3254\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger|strong=\"H3707\"* than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "In|strong=\"H3068\"* his|strong=\"H3068\"* days|strong=\"H3117\"* Hiel|strong=\"H2419\"* the|strong=\"H3068\"* Bethelite|strong=\"H1017\"* built|strong=\"H1129\"* Jericho|strong=\"H3405\"*. He|strong=\"H3117\"* laid|strong=\"H3245\"* its|strong=\"H3245\"* foundation|strong=\"H3245\"* with|strong=\"H3068\"* the|strong=\"H3068\"* loss of|strong=\"H1121\"* Abiram his|strong=\"H3068\"* firstborn|strong=\"H1060\"*, and|strong=\"H1121\"* set|strong=\"H5324\"* up|strong=\"H1129\"* its|strong=\"H3245\"* gates|strong=\"H1817\"* with|strong=\"H3068\"* the|strong=\"H3068\"* loss of|strong=\"H1121\"* his|strong=\"H3068\"* youngest|strong=\"H6810\"* son|strong=\"H1121\"* Segub|strong=\"H7687\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Elijah the|strong=\"H6440\"* Tishbite|strong=\"H8664\"*, who|strong=\"H3068\"* was|strong=\"H3068\"* one|strong=\"H2416\"* of|strong=\"H3068\"* the|strong=\"H6440\"* settlers|strong=\"H8453\"* of|strong=\"H3068\"* Gilead|strong=\"H1568\"*, said|strong=\"H1697\"* to|strong=\"H3478\"* Ahab, “As|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, there|strong=\"H1961\"* shall|strong=\"H3068\"* not|strong=\"H1961\"* be|strong=\"H1961\"* dew|strong=\"H2919\"* nor|strong=\"H2919\"* rain|strong=\"H4306\"* these|strong=\"H6440\"* years|strong=\"H8141\"*, but|strong=\"H3588\"* according|strong=\"H6310\"* to|strong=\"H3478\"* my|strong=\"H3068\"* word|strong=\"H1697\"*.”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Go|strong=\"H3212\"* away|strong=\"H3212\"* from|strong=\"H6440\"* here|strong=\"H2088\"*, turn|strong=\"H6437\"* eastward|strong=\"H6924\"*, and|strong=\"H3212\"* hide|strong=\"H5641\"* yourself|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* Cherith|strong=\"H3747\"*, that|strong=\"H2088\"* is|strong=\"H2088\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6680\"* shall|strong=\"H5158\"* drink|strong=\"H8354\"* from|strong=\"H1961\"* the|strong=\"H6680\"* brook|strong=\"H5158\"*. I|strong=\"H6680\"* have|strong=\"H1961\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* ravens|strong=\"H6158\"* to|strong=\"H1961\"* feed|strong=\"H3557\"* you|strong=\"H6680\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H6213\"* he|strong=\"H6213\"* went|strong=\"H3212\"* and|strong=\"H3068\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, for|strong=\"H5921\"* he|strong=\"H6213\"* went|strong=\"H3212\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H6440\"* brook|strong=\"H5158\"* Cherith|strong=\"H3747\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H4480\"* ravens|strong=\"H6158\"* brought him|strong=\"H4480\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H4480\"* morning|strong=\"H1242\"*, and|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H4480\"* evening|strong=\"H6153\"*; and|strong=\"H3899\"* he|strong=\"H4480\"* drank|strong=\"H8354\"* from|strong=\"H4480\"* the|strong=\"H4480\"* brook|strong=\"H5158\"*." + }, + { + "verseNum": 7, + "text": "After|strong=\"H7093\"* a|strong=\"H3068\"* while|strong=\"H1961\"*, the|strong=\"H3588\"* brook|strong=\"H5158\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H1653\"* in|strong=\"H3117\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Zarephath|strong=\"H6886\"*, which|strong=\"H8033\"* belongs to|strong=\"H3212\"* Sidon|strong=\"H6721\"*, and|strong=\"H6965\"* stay|strong=\"H3427\"* there|strong=\"H8033\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H2009\"* commanded|strong=\"H6680\"* a|strong=\"H3068\"* widow there|strong=\"H8033\"* to|strong=\"H3212\"* sustain|strong=\"H3557\"* you|strong=\"H6680\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3947\"* he|strong=\"H8033\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Zarephath|strong=\"H6886\"*; and|strong=\"H6965\"* when|strong=\"H2009\"* he|strong=\"H8033\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* gate|strong=\"H6607\"* of|strong=\"H5892\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* widow was|strong=\"H5892\"* there|strong=\"H8033\"* gathering|strong=\"H7197\"* sticks|strong=\"H6086\"*. He|strong=\"H8033\"* called|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H3947\"* and|strong=\"H6965\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* get|strong=\"H3947\"* me|strong=\"H4994\"* a|strong=\"H3068\"* little|strong=\"H4592\"* water|strong=\"H4325\"* in|strong=\"H3212\"* a|strong=\"H3068\"* jar|strong=\"H3627\"*, that|strong=\"H5892\"* I|strong=\"H2009\"* may|strong=\"H4994\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 11, + "text": "As|strong=\"H3947\"* she|strong=\"H7121\"* was|strong=\"H3027\"* going|strong=\"H3212\"* to|strong=\"H3212\"* get|strong=\"H3947\"* it|strong=\"H7121\"*, he|strong=\"H3027\"* called|strong=\"H7121\"* to|strong=\"H3212\"* her|strong=\"H3947\"* and|strong=\"H3027\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* bring|strong=\"H3947\"* me|strong=\"H4994\"* a|strong=\"H3068\"* morsel|strong=\"H6595\"* of|strong=\"H3027\"* bread|strong=\"H3899\"* in|strong=\"H3212\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 12, + "text": "She|strong=\"H3588\"* said, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* don’t have|strong=\"H3426\"* anything|strong=\"H6213\"* baked, but|strong=\"H3588\"* only|strong=\"H3588\"* a|strong=\"H3068\"* handful|strong=\"H4393\"* of|strong=\"H1121\"* meal|strong=\"H7058\"* in|strong=\"H3068\"* a|strong=\"H3068\"* jar|strong=\"H3537\"* and|strong=\"H1121\"* a|strong=\"H3068\"* little|strong=\"H4592\"* oil|strong=\"H8081\"* in|strong=\"H3068\"* a|strong=\"H3068\"* jar|strong=\"H3537\"*. Behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H3068\"* gathering|strong=\"H7197\"* two|strong=\"H8147\"* sticks|strong=\"H6086\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* go|strong=\"H3068\"* in|strong=\"H3068\"* and|strong=\"H1121\"* bake it|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H6213\"* and|strong=\"H1121\"* my|strong=\"H3068\"* son|strong=\"H1121\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* eat it|strong=\"H3588\"*, and|strong=\"H1121\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 13, + "text": "Elijah said|strong=\"H1697\"* to|strong=\"H3318\"* her|strong=\"H3318\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*. Go|strong=\"H3318\"* and|strong=\"H1121\"* do|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H6213\"* have|strong=\"H1121\"* said|strong=\"H1697\"*; but|strong=\"H7223\"* make|strong=\"H6213\"* me|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* cake|strong=\"H5692\"* from|strong=\"H3318\"* it|strong=\"H6213\"* first|strong=\"H7223\"*, and|strong=\"H1121\"* bring|strong=\"H3318\"* it|strong=\"H6213\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*, and|strong=\"H1121\"* afterward make|strong=\"H6213\"* some|strong=\"H8033\"* for|strong=\"H6213\"* you|strong=\"H6213\"* and|strong=\"H1121\"* for|strong=\"H6213\"* your|strong=\"H6213\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘The|strong=\"H6440\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* meal|strong=\"H7058\"* will|strong=\"H3068\"* not|strong=\"H3808\"* run|strong=\"H2637\"* out|strong=\"H5414\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3615\"*, until|strong=\"H5704\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* sends|strong=\"H5414\"* rain|strong=\"H1653\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth.’”" + }, + { + "verseNum": 15, + "text": "She|strong=\"H1931\"* went|strong=\"H3212\"* and|strong=\"H3117\"* did|strong=\"H6213\"* according to|strong=\"H3212\"* the|strong=\"H6213\"* saying|strong=\"H1697\"* of|strong=\"H1004\"* Elijah; and|strong=\"H3117\"* she|strong=\"H1931\"*, he|strong=\"H1931\"*, and|strong=\"H3117\"* her|strong=\"H1931\"* household|strong=\"H1004\"* ate many days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* meal|strong=\"H7058\"* didn’t run out|strong=\"H3027\"* and|strong=\"H3068\"* the|strong=\"H3068\"* jar|strong=\"H3537\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* didn’t fail|strong=\"H3615\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Elijah|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"H1961\"* these|strong=\"H1004\"* things|strong=\"H1697\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* woman|strong=\"H1004\"*, the|strong=\"H5704\"* mistress|strong=\"H1172\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"*, became|strong=\"H1961\"* sick|strong=\"H2470\"*; and|strong=\"H1121\"* his|strong=\"H1961\"* sickness|strong=\"H2483\"* was|strong=\"H1961\"* so|strong=\"H1961\"* severe|strong=\"H2389\"* that|strong=\"H1697\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* breath|strong=\"H5397\"* left|strong=\"H3498\"* in|strong=\"H1004\"* him|strong=\"H5704\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H4100\"* said to|strong=\"H4191\"* Elijah, “What|strong=\"H4100\"* have|strong=\"H1121\"* I|strong=\"H4100\"* to|strong=\"H4191\"* do|strong=\"H4100\"* with|strong=\"H4191\"* you|strong=\"H4100\"*, you|strong=\"H4100\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God? You|strong=\"H4100\"* have|strong=\"H1121\"* come|strong=\"H2142\"* to|strong=\"H4191\"* me|strong=\"H4191\"* to|strong=\"H4191\"* bring|strong=\"H4191\"* my|strong=\"H2142\"* sin|strong=\"H5771\"* to|strong=\"H4191\"* memory, and|strong=\"H1121\"* to|strong=\"H4191\"* kill|strong=\"H4191\"* my|strong=\"H2142\"* son|strong=\"H1121\"*!”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* said to|strong=\"H5927\"* her|strong=\"H5414\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* son|strong=\"H1121\"*.” He|strong=\"H1931\"* took|strong=\"H3947\"* him|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H1121\"* her|strong=\"H5414\"* bosom|strong=\"H2436\"*, and|strong=\"H1121\"* carried|strong=\"H5927\"* him|strong=\"H5414\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* room|strong=\"H5944\"* where|strong=\"H8033\"* he|strong=\"H1931\"* stayed|strong=\"H3427\"*, and|strong=\"H1121\"* laid|strong=\"H5414\"* him|strong=\"H5414\"* on|strong=\"H5921\"* his|strong=\"H5414\"* own bed|strong=\"H4296\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H4191\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, have|strong=\"H3068\"* you|strong=\"H5921\"* also|strong=\"H1571\"* brought|strong=\"H7489\"* evil|strong=\"H7489\"* on|strong=\"H5921\"* the|strong=\"H5921\"* widow with|strong=\"H5973\"* whom|strong=\"H7121\"* I|strong=\"H5921\"* am|strong=\"H3068\"* staying|strong=\"H1481\"*, by|strong=\"H5921\"* killing|strong=\"H4191\"* her|strong=\"H5921\"* son|strong=\"H1121\"*?”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H3068\"* stretched|strong=\"H4058\"* himself|strong=\"H5315\"* on|strong=\"H5921\"* the|strong=\"H5921\"* child|strong=\"H3206\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* this|strong=\"H2088\"* child|strong=\"H3206\"*’s soul|strong=\"H5315\"* come|strong=\"H7725\"* into|strong=\"H7725\"* him|strong=\"H7121\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* the|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Elijah; and|strong=\"H3068\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H5921\"* child|strong=\"H3206\"* came|strong=\"H3068\"* into|strong=\"H7725\"* him|strong=\"H5921\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* revived|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Elijah took|strong=\"H3947\"* the|strong=\"H7200\"* child|strong=\"H3206\"* and|strong=\"H1121\"* brought|strong=\"H3947\"* him|strong=\"H5414\"* down|strong=\"H3381\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H7200\"* room|strong=\"H1004\"* into|strong=\"H3381\"* the|strong=\"H7200\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3381\"* his|strong=\"H5414\"* mother; and|strong=\"H1121\"* Elijah said, “Behold|strong=\"H7200\"*, your|strong=\"H5414\"* son|strong=\"H1121\"* lives|strong=\"H2416\"*.”" + }, + { + "verseNum": 24, + "text": "The|strong=\"H3588\"* woman|strong=\"H2088\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Elijah, “Now|strong=\"H6258\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* in|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* is|strong=\"H3068\"* truth.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah, in|strong=\"H8141\"* the|strong=\"H6440\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, saying|strong=\"H1697\"*, “Go|strong=\"H3212\"*, show|strong=\"H7200\"* yourself|strong=\"H5921\"* to|strong=\"H3068\"* Ahab; and|strong=\"H3068\"* I|strong=\"H3117\"* will|strong=\"H3068\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth.”" + }, + { + "verseNum": 2, + "text": "Elijah went|strong=\"H3212\"* to|strong=\"H3212\"* show|strong=\"H7200\"* himself to|strong=\"H3212\"* Ahab. The|strong=\"H7200\"* famine|strong=\"H7458\"* was|strong=\"H7458\"* severe|strong=\"H2389\"* in|strong=\"H3212\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 3, + "text": "Ahab called|strong=\"H7121\"* Obadiah|strong=\"H5662\"*, who|strong=\"H3068\"* was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*. (Now|strong=\"H1961\"* Obadiah|strong=\"H5662\"* feared|strong=\"H3373\"* Yahweh|strong=\"H3068\"* greatly|strong=\"H3966\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3068\"* when|strong=\"H1961\"* Jezebel cut|strong=\"H3772\"* off|strong=\"H3772\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"*, Obadiah|strong=\"H5662\"* took|strong=\"H3947\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* prophets|strong=\"H5030\"*, and|strong=\"H3967\"* hid|strong=\"H2244\"* them|strong=\"H3947\"* fifty|strong=\"H2572\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"*, and|strong=\"H3967\"* fed|strong=\"H3557\"* them|strong=\"H3947\"* with|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3967\"* water|strong=\"H4325\"*.)" + }, + { + "verseNum": 5, + "text": "Ahab said to|strong=\"H3212\"* Obadiah|strong=\"H5662\"*, “Go|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3605\"* land, to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H4325\"* water|strong=\"H4325\"*, and|strong=\"H3212\"* to|strong=\"H3212\"* all|strong=\"H3605\"* the|strong=\"H3605\"* brooks|strong=\"H5158\"*. Perhaps we|strong=\"H3068\"* may|strong=\"H4325\"* find|strong=\"H4672\"* grass|strong=\"H2682\"* and|strong=\"H3212\"* save|strong=\"H2421\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* and|strong=\"H3212\"* mules|strong=\"H6505\"* alive|strong=\"H2421\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* not|strong=\"H3808\"* lose|strong=\"H3772\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2421\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1980\"* they|strong=\"H1992\"* divided|strong=\"H2505\"* the|strong=\"H5674\"* land between|strong=\"H5674\"* them|strong=\"H1992\"* to|strong=\"H1980\"* pass|strong=\"H5674\"* throughout|strong=\"H5674\"* it|strong=\"H1980\"*. Ahab went|strong=\"H1980\"* one way|strong=\"H1870\"* by|strong=\"H5674\"* himself, and|strong=\"H1980\"* Obadiah|strong=\"H5662\"* went|strong=\"H1980\"* another way|strong=\"H1870\"* by|strong=\"H5674\"* himself." + }, + { + "verseNum": 7, + "text": "As|strong=\"H1961\"* Obadiah|strong=\"H5662\"* was|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, behold|strong=\"H2009\"*, Elijah met|strong=\"H7125\"* him|strong=\"H6440\"*. He|strong=\"H5921\"* recognized|strong=\"H5234\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H6440\"* face|strong=\"H6440\"*, and|strong=\"H6440\"* said, “Is|strong=\"H2088\"* it|strong=\"H5921\"* you|strong=\"H6440\"*, my|strong=\"H5921\"* lord Elijah?”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H2009\"* answered him, “It|strong=\"H2009\"* is|strong=\"H2009\"* I|strong=\"H2009\"*. Go|strong=\"H3212\"*, tell your|strong=\"H2009\"* lord, ‘Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*!’”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said, “How|strong=\"H4100\"* have|strong=\"H5650\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H4100\"* deliver|strong=\"H5414\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Ahab, to|strong=\"H4191\"* kill|strong=\"H4191\"* me|strong=\"H5414\"*?" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* lives|strong=\"H2416\"*, there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* nation|strong=\"H1471\"* or|strong=\"H3808\"* kingdom|strong=\"H4467\"* where|strong=\"H8033\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* you|strong=\"H3588\"*. When|strong=\"H3588\"* they|strong=\"H3588\"* said, ‘He|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* here|strong=\"H8033\"*,’ he|strong=\"H3588\"* took|strong=\"H7650\"* an|strong=\"H7971\"* oath|strong=\"H7650\"* of|strong=\"H3068\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* and|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3588\"* they|strong=\"H3588\"* didn’t find|strong=\"H4672\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* you|strong=\"H3212\"* say, ‘Go|strong=\"H3212\"*, tell your|strong=\"H6258\"* lord, “Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*.”’" + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, as|strong=\"H1961\"* soon as|strong=\"H1961\"* I|strong=\"H5921\"* leave you|strong=\"H5921\"*, that|strong=\"H3045\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* carry|strong=\"H5375\"* you|strong=\"H5921\"* I|strong=\"H5921\"* don’t know|strong=\"H3045\"* where|strong=\"H5921\"*; and|strong=\"H3068\"* so|strong=\"H1961\"* when|strong=\"H1961\"* I|strong=\"H5921\"* come|strong=\"H1961\"* and|strong=\"H3068\"* tell|strong=\"H5046\"* Ahab, and|strong=\"H3068\"* he|strong=\"H3068\"* can|strong=\"H5650\"*’t find|strong=\"H4672\"* you|strong=\"H5921\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* me|strong=\"H5046\"*. But|strong=\"H3808\"* I|strong=\"H5921\"*, your|strong=\"H3068\"* servant|strong=\"H5650\"*, have|strong=\"H1961\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* from|strong=\"H5921\"* my|strong=\"H3068\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 13, + "text": "Wasn’t it|strong=\"H6213\"* told|strong=\"H5046\"* my|strong=\"H3068\"* lord|strong=\"H3068\"* what|strong=\"H6213\"* I|strong=\"H3808\"* did|strong=\"H6213\"* when|strong=\"H6213\"* Jezebel killed|strong=\"H2026\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"*, how|strong=\"H6213\"* I|strong=\"H3808\"* hid|strong=\"H2244\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* men|strong=\"H6213\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s prophets|strong=\"H5030\"* with|strong=\"H3068\"* fifty|strong=\"H2572\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"*, and|strong=\"H3967\"* fed|strong=\"H3557\"* them|strong=\"H6213\"* with|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3967\"* water|strong=\"H4325\"*?" + }, + { + "verseNum": 14, + "text": "Now|strong=\"H6258\"* you|strong=\"H3212\"* say, ‘Go|strong=\"H3212\"*, tell your|strong=\"H2026\"* lord, “Behold|strong=\"H2009\"*, Elijah is|strong=\"H2009\"* here|strong=\"H2009\"*”.’ He|strong=\"H2009\"* will kill|strong=\"H2026\"* me|strong=\"H2026\"*.”" + }, + { + "verseNum": 15, + "text": "Elijah said, “As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* show|strong=\"H7200\"* myself to|strong=\"H3068\"* him|strong=\"H6440\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 16, + "text": "So Obadiah|strong=\"H5662\"* went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Ahab, and|strong=\"H3212\"* told|strong=\"H5046\"* him|strong=\"H5046\"*; and|strong=\"H3212\"* Ahab went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Elijah." + }, + { + "verseNum": 17, + "text": "When|strong=\"H1961\"* Ahab saw|strong=\"H7200\"* Elijah, Ahab said to|strong=\"H3478\"* him|strong=\"H7200\"*, “Is|strong=\"H2088\"* that|strong=\"H7200\"* you|strong=\"H7200\"*, you|strong=\"H7200\"* troubler|strong=\"H5916\"* of|strong=\"H7200\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* answered, “I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* troubled|strong=\"H5916\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"*, in|strong=\"H3478\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"* and|strong=\"H3478\"* you|strong=\"H3588\"* have|strong=\"H3068\"* followed|strong=\"H3212\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* send|strong=\"H7971\"*, and|strong=\"H3967\"* gather|strong=\"H6908\"* to|strong=\"H3478\"* me|strong=\"H7971\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*, and|strong=\"H3967\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* of|strong=\"H2022\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2022\"* Baal|strong=\"H1168\"*, and|strong=\"H3967\"* four hundred|strong=\"H3967\"* of|strong=\"H2022\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2022\"* the|strong=\"H3605\"* Asherah, who|strong=\"H3605\"* eat at|strong=\"H3478\"* Jezebel’s table|strong=\"H7979\"*.”" + }, + { + "verseNum": 20, + "text": "So|strong=\"H7971\"* Ahab sent|strong=\"H7971\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* gathered|strong=\"H6908\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"* to|strong=\"H3478\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*." + }, + { + "verseNum": 21, + "text": "Elijah came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3605\"* waver between|strong=\"H5704\"* the|strong=\"H3605\"* two|strong=\"H8147\"* sides? If Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, follow|strong=\"H3212\"* him|strong=\"H5921\"*; but|strong=\"H3808\"* if Baal|strong=\"H1168\"*, then|strong=\"H6030\"* follow|strong=\"H3212\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H3068\"* Elijah said to|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, “I|strong=\"H3068\"*, even|strong=\"H3068\"* I|strong=\"H3068\"* only, am|strong=\"H3068\"* left|strong=\"H3498\"* as|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3498\"* Baal|strong=\"H1168\"*’s prophets|strong=\"H5030\"* are|strong=\"H5971\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 23, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* therefore|strong=\"H5921\"* give|strong=\"H5414\"* us|strong=\"H5414\"* two|strong=\"H8147\"* bulls|strong=\"H6499\"*; and|strong=\"H6086\"* let|strong=\"H5414\"* them|strong=\"H5414\"* choose one|strong=\"H3808\"* bull|strong=\"H6499\"* for|strong=\"H5921\"* themselves|strong=\"H1992\"*, and|strong=\"H6086\"* cut|strong=\"H5408\"* it|strong=\"H5414\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"*, and|strong=\"H6086\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* put|strong=\"H5414\"* no|strong=\"H3808\"* fire under|strong=\"H5921\"*; and|strong=\"H6086\"* I|strong=\"H5414\"* will|strong=\"H5414\"* dress|strong=\"H6213\"* the|strong=\"H5921\"* other|strong=\"H8147\"* bull|strong=\"H6499\"*, and|strong=\"H6086\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H6086\"* put|strong=\"H5414\"* no|strong=\"H3808\"* fire under|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* your|strong=\"H3068\"* god|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H1697\"* will|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. The|strong=\"H3605\"* God|strong=\"H3068\"* who|strong=\"H3605\"* answers|strong=\"H6030\"* by|strong=\"H3068\"* fire, let|strong=\"H1961\"* him|strong=\"H7121\"* be|strong=\"H1961\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 25, + "text": "Elijah said|strong=\"H7121\"* to|strong=\"H6213\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H8034\"* Baal|strong=\"H1168\"*, “Choose one|strong=\"H3808\"* bull|strong=\"H6499\"* for|strong=\"H3588\"* yourselves, and|strong=\"H6499\"* dress|strong=\"H6213\"* it|strong=\"H7760\"* first|strong=\"H7223\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5030\"* many|strong=\"H7227\"*; and|strong=\"H6499\"* call|strong=\"H7121\"* on|strong=\"H7760\"* the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H8034\"* your|strong=\"H7760\"* god|strong=\"H3808\"*, but|strong=\"H3588\"* put|strong=\"H7760\"* no|strong=\"H3808\"* fire under|strong=\"H6213\"* it|strong=\"H7760\"*.”" + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* which|strong=\"H4196\"* was|strong=\"H8034\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, and|strong=\"H6030\"* they|strong=\"H5921\"* dressed|strong=\"H6213\"* it|strong=\"H5414\"*, and|strong=\"H6030\"* called|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H6963\"* Baal|strong=\"H1168\"* from|strong=\"H5921\"* morning|strong=\"H1242\"* even|strong=\"H5704\"* until|strong=\"H5704\"* noon|strong=\"H6672\"*, saying|strong=\"H6963\"*, “Baal|strong=\"H1168\"*, hear|strong=\"H6030\"* us|strong=\"H5414\"*!” But|strong=\"H6030\"* there|strong=\"H5704\"* was|strong=\"H8034\"* no|strong=\"H6213\"* voice|strong=\"H6963\"*, and|strong=\"H6030\"* nobody answered|strong=\"H6030\"*. They|strong=\"H5921\"* leaped|strong=\"H6452\"* about|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* which|strong=\"H4196\"* was|strong=\"H8034\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H1961\"* noon|strong=\"H6672\"*, Elijah mocked|strong=\"H2048\"* them|strong=\"H7121\"*, and|strong=\"H1419\"* said|strong=\"H7121\"*, “Cry|strong=\"H7121\"* aloud|strong=\"H6963\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* god. Either|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* deep|strong=\"H1419\"* in|strong=\"H1419\"* thought, or|strong=\"H1419\"* he|strong=\"H1931\"* has|strong=\"H1961\"* gone|strong=\"H1961\"* somewhere, or|strong=\"H1419\"* he|strong=\"H1931\"* is|strong=\"H1931\"* on|strong=\"H1870\"* a|strong=\"H3068\"* journey|strong=\"H1870\"*, or|strong=\"H1419\"* perhaps|strong=\"H3588\"* he|strong=\"H1931\"* sleeps and|strong=\"H1419\"* must be|strong=\"H1961\"* awakened|strong=\"H3364\"*.”" + }, + { + "verseNum": 28, + "text": "They|strong=\"H5921\"* cried|strong=\"H7121\"* aloud|strong=\"H6963\"*, and|strong=\"H1419\"* cut|strong=\"H1413\"* themselves|strong=\"H7121\"* in|strong=\"H5921\"* their|strong=\"H5921\"* way|strong=\"H4941\"* with|strong=\"H5921\"* knives|strong=\"H2719\"* and|strong=\"H1419\"* lances|strong=\"H7420\"* until|strong=\"H5704\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* gushed|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H1961\"* midday|strong=\"H6672\"* was|strong=\"H1961\"* past|strong=\"H5674\"*, they|strong=\"H5704\"* prophesied|strong=\"H5012\"* until|strong=\"H5704\"* the|strong=\"H5704\"* time|strong=\"H5704\"* of|strong=\"H6963\"* the|strong=\"H5704\"* evening offering|strong=\"H4503\"*; but|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H5927\"* voice|strong=\"H6963\"*, no|strong=\"H5927\"* answer|strong=\"H6030\"*, and|strong=\"H6030\"* nobody paid|strong=\"H7182\"* attention|strong=\"H7182\"*." + }, + { + "verseNum": 30, + "text": "Elijah said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* me|strong=\"H5066\"*!”; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* him|strong=\"H3605\"*. He|strong=\"H3068\"* repaired|strong=\"H7495\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H5971\"* had|strong=\"H3068\"* been|strong=\"H5971\"* thrown|strong=\"H2040\"* down|strong=\"H2040\"*." + }, + { + "verseNum": 31, + "text": "Elijah took|strong=\"H3947\"* twelve|strong=\"H8147\"* stones, according to|strong=\"H3478\"* the|strong=\"H3947\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3947\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, to|strong=\"H3478\"* whom Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"*, saying|strong=\"H1697\"*, “Israel|strong=\"H3478\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 32, + "text": "With|strong=\"H1004\"* the|strong=\"H6213\"* stones he|strong=\"H6213\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* trench|strong=\"H8585\"* around|strong=\"H5439\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* large|strong=\"H1004\"* enough|strong=\"H6213\"* to|strong=\"H3068\"* contain|strong=\"H1004\"* two|strong=\"H6213\"* seahs|strong=\"H5429\"*+ 18:32 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H1004\"* seed|strong=\"H2233\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H5921\"* put|strong=\"H7760\"* the|strong=\"H5921\"* wood|strong=\"H6086\"* in|strong=\"H5921\"* order|strong=\"H6186\"*, and|strong=\"H6086\"* cut|strong=\"H5408\"* the|strong=\"H5921\"* bull|strong=\"H6499\"* in|strong=\"H5921\"* pieces|strong=\"H5408\"* and|strong=\"H6086\"* laid|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*. He|strong=\"H5921\"* said, “Fill four jars with|strong=\"H5921\"* water, and|strong=\"H6086\"* pour it|strong=\"H7760\"* on|strong=\"H5921\"* the|strong=\"H5921\"* burnt offering and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wood|strong=\"H6086\"*.”" + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* said, “Do|strong=\"H8138\"* it|strong=\"H5921\"* a|strong=\"H3068\"* second|strong=\"H8138\"* time|strong=\"H8138\"*;” and|strong=\"H6086\"* they|strong=\"H5921\"* did|strong=\"H5930\"* it|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8138\"* time|strong=\"H8138\"*. He|strong=\"H5921\"* said, “Do|strong=\"H8138\"* it|strong=\"H5921\"* a|strong=\"H3068\"* third|strong=\"H8027\"* time|strong=\"H8138\"*;” and|strong=\"H6086\"* they|strong=\"H5921\"* did|strong=\"H5930\"* it|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H8027\"* time|strong=\"H8138\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H4390\"* water|strong=\"H4325\"* ran|strong=\"H3212\"* around|strong=\"H5439\"* the|strong=\"H4390\"* altar|strong=\"H4196\"*; and|strong=\"H3212\"* he|strong=\"H4325\"* also|strong=\"H1571\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* trench|strong=\"H8585\"* with|strong=\"H4390\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 36, + "text": "At|strong=\"H3478\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* evening|strong=\"H3117\"* offering|strong=\"H4503\"*, Elijah the|strong=\"H3605\"* prophet|strong=\"H5030\"* came|strong=\"H1961\"* near|strong=\"H5066\"* and|strong=\"H3478\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, let|strong=\"H1961\"* it|strong=\"H3588\"* be|strong=\"H1961\"* known|strong=\"H3045\"* today|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H1697\"* at|strong=\"H3478\"* your|strong=\"H3068\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 37, + "text": "Hear|strong=\"H6030\"* me|strong=\"H5437\"*, Yahweh|strong=\"H3068\"*, hear|strong=\"H6030\"* me|strong=\"H5437\"*, that|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H5971\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* turned|strong=\"H5437\"* their|strong=\"H3068\"* heart|strong=\"H3820\"* back|strong=\"H5437\"* again|strong=\"H5437\"*.”" + }, + { + "verseNum": 38, + "text": "Then|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s fire fell|strong=\"H5307\"* and|strong=\"H3068\"* consumed the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H3068\"* wood|strong=\"H6086\"*, the|strong=\"H3068\"* stones, and|strong=\"H3068\"* the|strong=\"H3068\"* dust|strong=\"H6083\"*; and|strong=\"H3068\"* it|strong=\"H3068\"* licked|strong=\"H3897\"* up|strong=\"H3897\"* the|strong=\"H3068\"* water|strong=\"H4325\"* that|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* trench|strong=\"H8585\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* saw|strong=\"H7200\"* it|strong=\"H1931\"*, they|strong=\"H3068\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* their|strong=\"H3605\"* faces|strong=\"H6440\"*. They|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*! Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*!”" + }, + { + "verseNum": 40, + "text": "Elijah said to|strong=\"H3381\"* them|strong=\"H1992\"*, “Seize|strong=\"H8610\"* the|strong=\"H7819\"* prophets|strong=\"H5030\"* of|strong=\"H5158\"* Baal|strong=\"H1168\"*! Don’t let|strong=\"H3381\"* one|strong=\"H4422\"* of|strong=\"H5158\"* them|strong=\"H1992\"* escape|strong=\"H4422\"*!”" + }, + { + "verseNum": 41, + "text": "Elijah said to|strong=\"H5927\"* Ahab, “Get|strong=\"H5927\"* up|strong=\"H5927\"*, eat and|strong=\"H6963\"* drink|strong=\"H8354\"*; for|strong=\"H3588\"* there|strong=\"H5927\"* is|strong=\"H6963\"* the|strong=\"H3588\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* abundance|strong=\"H1995\"* of|strong=\"H6963\"* rain|strong=\"H1653\"*.”" + }, + { + "verseNum": 42, + "text": "So|strong=\"H5927\"* Ahab went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* eat and|strong=\"H7218\"* to|strong=\"H5927\"* drink|strong=\"H8354\"*. Elijah went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Carmel|strong=\"H3760\"*; and|strong=\"H7218\"* he|strong=\"H6440\"* bowed himself|strong=\"H8354\"* down|strong=\"H7760\"* on|strong=\"H7760\"* the|strong=\"H6440\"* earth|strong=\"H5927\"*, and|strong=\"H7218\"* put|strong=\"H7760\"* his|strong=\"H7760\"* face|strong=\"H6440\"* between his|strong=\"H7760\"* knees|strong=\"H1290\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* now|strong=\"H4994\"* and|strong=\"H7725\"* look|strong=\"H5027\"* toward|strong=\"H1870\"* the|strong=\"H7725\"* sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 44, + "text": "On|strong=\"H1961\"* the|strong=\"H5927\"* seventh|strong=\"H7637\"* time|strong=\"H1961\"*, he|strong=\"H3808\"* said, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* small|strong=\"H6996\"* cloud|strong=\"H5645\"*, like|strong=\"H1961\"* a|strong=\"H3068\"* man’s hand|strong=\"H3709\"*, is|strong=\"H2009\"* rising|strong=\"H5927\"* out|strong=\"H3381\"* of|strong=\"H3709\"* the|strong=\"H5927\"* sea|strong=\"H3220\"*.”" + }, + { + "verseNum": 45, + "text": "In|strong=\"H3212\"* a|strong=\"H3068\"* little|strong=\"H5704\"* while|strong=\"H5704\"*, the|strong=\"H3541\"* sky|strong=\"H8064\"* grew|strong=\"H6937\"* black|strong=\"H6937\"* with|strong=\"H3212\"* clouds|strong=\"H5645\"* and|strong=\"H8064\"* wind|strong=\"H7307\"*, and|strong=\"H8064\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rain|strong=\"H1653\"*. Ahab rode|strong=\"H7392\"*, and|strong=\"H8064\"* went|strong=\"H3212\"* to|strong=\"H5704\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 46, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H3027\"* Elijah; and|strong=\"H3068\"* he|strong=\"H5704\"* tucked his|strong=\"H3068\"* cloak into|strong=\"H3027\"* his|strong=\"H3068\"* belt and|strong=\"H3068\"* ran|strong=\"H7323\"* before|strong=\"H6440\"* Ahab to|strong=\"H5704\"* the|strong=\"H6440\"* entrance of|strong=\"H3068\"* Jezreel|strong=\"H3157\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Ahab told|strong=\"H5046\"* Jezebel all|strong=\"H3605\"* that|strong=\"H3605\"* Elijah had|strong=\"H5030\"* done|strong=\"H6213\"*, and|strong=\"H2719\"* how|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H5030\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* with|strong=\"H6213\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H7971\"* Jezebel sent|strong=\"H7971\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* to|strong=\"H7971\"* Elijah, saying, “So|strong=\"H6213\"* let|strong=\"H7971\"* the|strong=\"H3588\"* gods do|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if|strong=\"H3588\"* I|strong=\"H3588\"* don’t make|strong=\"H6213\"* your|strong=\"H7760\"* life|strong=\"H5315\"* as|strong=\"H6213\"* the|strong=\"H3588\"* life|strong=\"H5315\"* of|strong=\"H6256\"* one|strong=\"H6213\"* of|strong=\"H6256\"* them|strong=\"H1992\"* by|strong=\"H7971\"* tomorrow|strong=\"H4279\"* about|strong=\"H6213\"* this|strong=\"H6213\"* time|strong=\"H6256\"*!”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* he|strong=\"H8033\"* saw|strong=\"H7200\"* that|strong=\"H7200\"*, he|strong=\"H8033\"* arose|strong=\"H6965\"* and|strong=\"H3063\"* ran|strong=\"H3212\"* for|strong=\"H5315\"* his|strong=\"H7200\"* life|strong=\"H5315\"*, and|strong=\"H3063\"* came|strong=\"H3212\"* to|strong=\"H3212\"* Beersheba, which|strong=\"H8033\"* belongs to|strong=\"H3212\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* left|strong=\"H3240\"* his|strong=\"H7200\"* servant|strong=\"H5288\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* he|strong=\"H1931\"* himself|strong=\"H5315\"* went|strong=\"H1980\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H1870\"* into|strong=\"H1980\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H1980\"* came|strong=\"H1980\"* and|strong=\"H1980\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* under|strong=\"H8478\"* a|strong=\"H3068\"* juniper|strong=\"H7574\"* tree|strong=\"H7574\"*. Then|strong=\"H1980\"* he|strong=\"H1931\"* requested|strong=\"H7592\"* for|strong=\"H3588\"* himself|strong=\"H5315\"* that|strong=\"H3588\"* he|strong=\"H1931\"* might|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1980\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, take|strong=\"H3947\"* away|strong=\"H3947\"* my|strong=\"H3068\"* life|strong=\"H5315\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* not|strong=\"H3808\"* better|strong=\"H2896\"* than|strong=\"H2896\"* my|strong=\"H3068\"* fathers.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H4397\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H6965\"* slept|strong=\"H7901\"* under|strong=\"H8478\"* a|strong=\"H3068\"* juniper|strong=\"H7574\"* tree|strong=\"H7574\"*; and|strong=\"H6965\"* behold|strong=\"H2009\"*, an|strong=\"H6965\"* angel|strong=\"H4397\"* touched|strong=\"H5060\"* him|strong=\"H8478\"*, and|strong=\"H6965\"* said to|strong=\"H4397\"* him|strong=\"H8478\"*, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* eat!”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H7725\"* looked|strong=\"H5027\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H4325\"* at|strong=\"H7725\"* his|strong=\"H7725\"* head|strong=\"H4763\"* a|strong=\"H3068\"* cake|strong=\"H5692\"* baked on|strong=\"H5027\"* the|strong=\"H7725\"* coals|strong=\"H7529\"*, and|strong=\"H7725\"* a|strong=\"H3068\"* jar|strong=\"H6835\"* of|strong=\"H4325\"* water|strong=\"H4325\"*. He|strong=\"H7725\"* ate and|strong=\"H7725\"* drank|strong=\"H8354\"*, and|strong=\"H7725\"* lay|strong=\"H7901\"* down|strong=\"H7901\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* came|strong=\"H5060\"* again|strong=\"H7725\"* the|strong=\"H3588\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, and|strong=\"H6965\"* touched|strong=\"H5060\"* him|strong=\"H7725\"*, and|strong=\"H6965\"* said, “Arise|strong=\"H6965\"* and|strong=\"H6965\"* eat, because|strong=\"H3588\"* the|strong=\"H3588\"* journey|strong=\"H1870\"* is|strong=\"H3068\"* too|strong=\"H4480\"* great|strong=\"H7227\"* for|strong=\"H3588\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* ate and|strong=\"H6965\"* drank|strong=\"H8354\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* in|strong=\"H3117\"* the|strong=\"H3117\"* strength|strong=\"H3581\"* of|strong=\"H3117\"* that|strong=\"H3117\"* food forty days|strong=\"H3117\"* and|strong=\"H6965\"* forty nights|strong=\"H3915\"* to|strong=\"H5704\"* Horeb|strong=\"H2722\"*, God’s Mountain|strong=\"H2022\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H8033\"* came|strong=\"H3068\"* to|strong=\"H3068\"* a|strong=\"H3068\"* cave|strong=\"H4631\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* camped there|strong=\"H8033\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* said|strong=\"H1697\"* to|strong=\"H3068\"* him|strong=\"H1697\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H4100\"* doing here|strong=\"H6311\"*, Elijah?”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H7065\"* very|strong=\"H7065\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*, thrown|strong=\"H2040\"* down|strong=\"H2040\"* your|strong=\"H3068\"* altars|strong=\"H4196\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"*, even|strong=\"H3588\"* I|strong=\"H3588\"* only|strong=\"H3588\"*, am|strong=\"H3068\"* left|strong=\"H3498\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* seek|strong=\"H1245\"* my|strong=\"H3068\"* life|strong=\"H5315\"*, to|strong=\"H3478\"* take|strong=\"H3947\"* it|strong=\"H3588\"* away|strong=\"H3947\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* said|strong=\"H3318\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* stand|strong=\"H5975\"* on|strong=\"H5674\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 12, + "text": "After the|strong=\"H3068\"* earthquake|strong=\"H7494\"* a|strong=\"H3068\"* fire passed|strong=\"H3068\"*; but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* not|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3068\"* fire. After the|strong=\"H3068\"* fire, there|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* still|strong=\"H1827\"* small|strong=\"H1851\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* Elijah heard|strong=\"H8085\"* it|strong=\"H6440\"*, he|strong=\"H6440\"* wrapped|strong=\"H3874\"* his|strong=\"H8085\"* face|strong=\"H6440\"* in|strong=\"H8085\"* his|strong=\"H8085\"* mantle, went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H6963\"* stood|strong=\"H5975\"* in|strong=\"H8085\"* the|strong=\"H6440\"* entrance|strong=\"H6607\"* of|strong=\"H6963\"* the|strong=\"H6440\"* cave|strong=\"H4631\"*. Behold|strong=\"H2009\"*, a|strong=\"H3068\"* voice|strong=\"H6963\"* came|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H6440\"*, and|strong=\"H6963\"* said|strong=\"H8085\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6440\"* doing|strong=\"H3318\"* here|strong=\"H6311\"*, Elijah?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* said, “I|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H7065\"* very|strong=\"H7065\"* jealous|strong=\"H7065\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*, thrown|strong=\"H2040\"* down|strong=\"H2040\"* your|strong=\"H3068\"* altars|strong=\"H4196\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"*, even|strong=\"H3588\"* I|strong=\"H3588\"* only|strong=\"H3588\"*, am|strong=\"H3068\"* left|strong=\"H3498\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* seek|strong=\"H1245\"* my|strong=\"H3068\"* life|strong=\"H5315\"*, to|strong=\"H3478\"* take|strong=\"H3947\"* it|strong=\"H3588\"* away|strong=\"H3947\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H7725\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"*, return|strong=\"H7725\"* on|strong=\"H5921\"* your|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H7725\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"*. When|strong=\"H7725\"* you|strong=\"H5921\"* arrive, anoint|strong=\"H4886\"* Hazael|strong=\"H2371\"* to|strong=\"H7725\"* be|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Syria." + }, + { + "verseNum": 16, + "text": "Anoint|strong=\"H4886\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"* to|strong=\"H3478\"* be|strong=\"H1121\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* anoint|strong=\"H4886\"* Elisha the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"* of|strong=\"H1121\"* Abel Meholah to|strong=\"H3478\"* be|strong=\"H1121\"* prophet|strong=\"H5030\"* in|strong=\"H5921\"* your|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2719\"* who escapes|strong=\"H4422\"* from|strong=\"H1961\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* of|strong=\"H2719\"* Hazael|strong=\"H2371\"*, Jehu|strong=\"H3058\"* will|strong=\"H1961\"* kill|strong=\"H4191\"*; and|strong=\"H2719\"* he|strong=\"H2719\"* who escapes|strong=\"H4422\"* from|strong=\"H1961\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* of|strong=\"H2719\"* Jehu|strong=\"H3058\"*, Elisha will|strong=\"H1961\"* kill|strong=\"H4191\"*." + }, + { + "verseNum": 18, + "text": "Yet|strong=\"H3808\"* I|strong=\"H3808\"* reserved|strong=\"H7604\"* seven|strong=\"H7651\"* thousand in|strong=\"H3478\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* knees|strong=\"H1290\"* of|strong=\"H6310\"* which|strong=\"H3478\"* have|strong=\"H3478\"* not|strong=\"H3808\"* bowed|strong=\"H3766\"* to|strong=\"H3478\"* Baal|strong=\"H1168\"*, and|strong=\"H3478\"* every|strong=\"H3605\"* mouth|strong=\"H6310\"* which|strong=\"H3478\"* has|strong=\"H3478\"* not|strong=\"H3808\"* kissed|strong=\"H5401\"* him|strong=\"H3605\"*.”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H5674\"* he|strong=\"H1931\"* departed|strong=\"H3212\"* from|strong=\"H6440\"* there|strong=\"H8033\"* and|strong=\"H1121\"* found|strong=\"H4672\"* Elisha the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* plowing|strong=\"H2790\"* with|strong=\"H6440\"* twelve|strong=\"H8147\"* yoke|strong=\"H6776\"* of|strong=\"H1121\"* oxen|strong=\"H6776\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* with|strong=\"H6440\"* the|strong=\"H6440\"* twelfth|strong=\"H8147\"*. Elijah went|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* him|strong=\"H6440\"* and|strong=\"H1121\"* put|strong=\"H5674\"* his|strong=\"H6440\"* mantle on|strong=\"H5674\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 20, + "text": "Elisha|strong=\"H7725\"* left|strong=\"H5800\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* and|strong=\"H7725\"* ran|strong=\"H7323\"* after|strong=\"H3588\"* Elijah, and|strong=\"H7725\"* said, “Let|strong=\"H4994\"* me|strong=\"H4994\"* please|strong=\"H4994\"* kiss|strong=\"H5401\"* my|strong=\"H7725\"* father and|strong=\"H7725\"* my|strong=\"H7725\"* mother, and|strong=\"H7725\"* then|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H4100\"* follow|strong=\"H3212\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 21, + "text": "He|strong=\"H5414\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* following|strong=\"H3212\"* him|strong=\"H5414\"*, and|strong=\"H6965\"* took|strong=\"H3947\"* the|strong=\"H5414\"* yoke|strong=\"H6776\"* of|strong=\"H3627\"* oxen|strong=\"H1241\"*, killed|strong=\"H2076\"* them|strong=\"H5414\"*, and|strong=\"H6965\"* boiled|strong=\"H1310\"* their|strong=\"H5414\"* meat|strong=\"H1320\"* with|strong=\"H3212\"* the|strong=\"H5414\"* oxen|strong=\"H1241\"*’s equipment|strong=\"H3627\"*, and|strong=\"H6965\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* the|strong=\"H5414\"* people|strong=\"H5971\"*; and|strong=\"H6965\"* they|strong=\"H5971\"* ate. Then|strong=\"H6965\"* he|strong=\"H5414\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* after|strong=\"H6965\"* Elijah, and|strong=\"H6965\"* served|strong=\"H8334\"* him|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Ben Hadad the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria gathered|strong=\"H6908\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2426\"* together|strong=\"H6908\"*; and|strong=\"H4428\"* there|strong=\"H5927\"* were|strong=\"H5483\"* thirty-two|strong=\"H7970\"* kings|strong=\"H4428\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, with|strong=\"H5921\"* horses|strong=\"H5483\"* and|strong=\"H4428\"* chariots|strong=\"H7393\"*. He|strong=\"H3605\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4428\"* besieged|strong=\"H6696\"* Samaria|strong=\"H8111\"*, and|strong=\"H4428\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* into|strong=\"H5892\"* the|strong=\"H7971\"* city|strong=\"H5892\"* to|strong=\"H3478\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H7971\"*, “Ben Hadad says," + }, + { + "verseNum": 3, + "text": "‘Your|strong=\"H3541\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* your|strong=\"H3541\"* gold|strong=\"H2091\"* are|strong=\"H1992\"* mine. Your|strong=\"H3541\"* wives also|strong=\"H3541\"* and|strong=\"H1121\"* your|strong=\"H3541\"* children|strong=\"H1121\"*, even|strong=\"H3541\"* the|strong=\"H3541\"* best|strong=\"H2896\"*, are|strong=\"H1992\"* mine.’”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"*, “It|strong=\"H3605\"* is|strong=\"H1697\"* according to|strong=\"H3478\"* your|strong=\"H3605\"* saying|strong=\"H1697\"*, my|strong=\"H3605\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*. I|strong=\"H1697\"* am yours, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H1697\"* have|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* messengers|strong=\"H4397\"* came|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H1121\"* said, “Ben Hadad says|strong=\"H3541\"*, ‘I|strong=\"H3588\"* sent|strong=\"H7971\"* indeed|strong=\"H3588\"* to|strong=\"H7725\"* you|strong=\"H3588\"*, saying, “You|strong=\"H3588\"* shall|strong=\"H1121\"* deliver|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* silver|strong=\"H3701\"*, your|strong=\"H5414\"* gold|strong=\"H2091\"*, your|strong=\"H5414\"* wives, and|strong=\"H1121\"* your|strong=\"H5414\"* children|strong=\"H1121\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* send|strong=\"H7971\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* you|strong=\"H3588\"* tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* will|strong=\"H1961\"* search|strong=\"H2664\"* your|strong=\"H3605\"* house|strong=\"H1004\"* and|strong=\"H7971\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*. Whatever|strong=\"H3605\"* is|strong=\"H3027\"* pleasant|strong=\"H4261\"* in|strong=\"H1004\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H1004\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* take|strong=\"H3947\"* it|strong=\"H7760\"* away|strong=\"H7971\"*.”’”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2088\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* notice|strong=\"H3045\"* how|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H2205\"* seeks|strong=\"H1245\"* mischief|strong=\"H7451\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H4994\"* for|strong=\"H3588\"* my|strong=\"H3605\"* wives, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* my|strong=\"H3605\"* gold|strong=\"H2091\"*; and|strong=\"H1121\"* I|strong=\"H3588\"* didn’t deny|strong=\"H4513\"* him|strong=\"H7121\"*.”" + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H8085\"* to|strong=\"H8085\"* him|strong=\"H3605\"*, “Don’t listen|strong=\"H8085\"*, and|strong=\"H5971\"* don’t consent.”" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H7971\"* he|strong=\"H6213\"* said|strong=\"H1697\"* to|strong=\"H7725\"* the|strong=\"H3605\"* messengers|strong=\"H4397\"* of|strong=\"H4428\"* Ben Hadad, “Tell|strong=\"H3605\"* my|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, ‘All|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* sent|strong=\"H7971\"* for|strong=\"H6213\"* to|strong=\"H7725\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* at|strong=\"H4428\"* the|strong=\"H3605\"* first|strong=\"H7223\"* I|strong=\"H1697\"* will|strong=\"H4428\"* do|strong=\"H6213\"*, but|strong=\"H3808\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* I|strong=\"H1697\"* cannot|strong=\"H3808\"* do|strong=\"H6213\"*.’”" + }, + { + "verseNum": 10, + "text": "Ben Hadad sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* said, “The|strong=\"H3605\"* gods do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if the|strong=\"H3605\"* dust|strong=\"H6083\"* of|strong=\"H5971\"* Samaria|strong=\"H8111\"* will|strong=\"H5971\"* be|strong=\"H3254\"* enough|strong=\"H3605\"* for|strong=\"H6213\"* handfuls|strong=\"H8168\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* follow|strong=\"H7272\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H1696\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* answered|strong=\"H6030\"*, “Tell|strong=\"H1696\"* him|strong=\"H6030\"*, ‘Don’t let him|strong=\"H6030\"* who|strong=\"H3478\"* puts on|strong=\"H2296\"* his|strong=\"H3478\"* armor brag like|strong=\"H3478\"* he|strong=\"H3478\"* who|strong=\"H3478\"* takes|strong=\"H6605\"* it|strong=\"H1696\"* off|strong=\"H6605\"*.’”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* Ben Hadad heard|strong=\"H8085\"* this|strong=\"H2088\"* message|strong=\"H1697\"* as|strong=\"H1697\"* he|strong=\"H1931\"* was|strong=\"H1961\"* drinking|strong=\"H8354\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* pavilions|strong=\"H5521\"*, he|strong=\"H1931\"* said|strong=\"H1697\"* to|strong=\"H1961\"* his|strong=\"H7760\"* servants|strong=\"H5650\"*, “Prepare|strong=\"H7760\"* to|strong=\"H1961\"* attack!” So|strong=\"H1961\"* they|strong=\"H5921\"* prepared to|strong=\"H1961\"* attack the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* prophet|strong=\"H5030\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Have|strong=\"H3068\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* multitude|strong=\"H1995\"*? Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* today|strong=\"H3117\"*. Then|strong=\"H2009\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 14, + "text": "Ahab said, “By|strong=\"H3068\"* whom|strong=\"H4310\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* he|strong=\"H3605\"* mustered|strong=\"H6485\"* the|strong=\"H3605\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, and|strong=\"H3967\"* they|strong=\"H5971\"* were|strong=\"H3478\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* thirty-two|strong=\"H7970\"*. After|strong=\"H1961\"* them|strong=\"H8147\"*, he|strong=\"H3605\"* mustered|strong=\"H6485\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H7651\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, being|strong=\"H1961\"* seven|strong=\"H7651\"* thousand." + }, + { + "verseNum": 16, + "text": "They|strong=\"H1931\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H4428\"* noon|strong=\"H6672\"*. But|strong=\"H1931\"* Ben Hadad was|strong=\"H1931\"* drinking|strong=\"H8354\"* himself|strong=\"H1931\"* drunk|strong=\"H8354\"* in|strong=\"H4428\"* the|strong=\"H3318\"* pavilions|strong=\"H5521\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* the|strong=\"H3318\"* kings|strong=\"H4428\"*, the|strong=\"H3318\"* thirty-two|strong=\"H7970\"* kings|strong=\"H4428\"* who|strong=\"H1931\"* helped|strong=\"H5826\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7971\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H7971\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7971\"* provinces|strong=\"H4082\"* went|strong=\"H3318\"* out|strong=\"H3318\"* first|strong=\"H7223\"*; and|strong=\"H7971\"* Ben Hadad sent|strong=\"H7971\"* out|strong=\"H3318\"*, and|strong=\"H7971\"* they|strong=\"H3318\"* told|strong=\"H5046\"* him|strong=\"H7971\"*, saying, “Men|strong=\"H5288\"* are|strong=\"H8269\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Samaria|strong=\"H8111\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3318\"* said|strong=\"H3318\"*, “If they|strong=\"H3318\"* have|strong=\"H7965\"* come|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H3318\"* peace|strong=\"H7965\"*, take|strong=\"H8610\"* them|strong=\"H8610\"* alive|strong=\"H2416\"*; or|strong=\"H2416\"* if they|strong=\"H3318\"* have|strong=\"H7965\"* come|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H3318\"* war|strong=\"H4421\"*, take|strong=\"H8610\"* them|strong=\"H8610\"* alive|strong=\"H2416\"*.”" + }, + { + "verseNum": 19, + "text": "So|strong=\"H4480\"* these went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8269\"* the|strong=\"H4480\"* city|strong=\"H5892\"*, the|strong=\"H4480\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H8269\"* the|strong=\"H4480\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4480\"* provinces|strong=\"H4082\"*, and|strong=\"H5892\"* the|strong=\"H4480\"* army|strong=\"H2428\"* which|strong=\"H5892\"* followed them|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* each killed|strong=\"H5221\"* his|strong=\"H5921\"* man. The|strong=\"H5921\"* Syrians fled|strong=\"H5127\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* pursued|strong=\"H7291\"* them|strong=\"H5921\"*. Ben Hadad the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria escaped|strong=\"H4422\"* on|strong=\"H5921\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* with|strong=\"H5921\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* horses|strong=\"H5483\"* and|strong=\"H3478\"* chariots|strong=\"H7393\"*, and|strong=\"H3478\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Syrians with|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* prophet|strong=\"H5030\"* came|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* said to|strong=\"H3478\"* him|strong=\"H5921\"*, “Go|strong=\"H3212\"*, strengthen|strong=\"H2388\"* yourself|strong=\"H6213\"*, and|strong=\"H3478\"* plan|strong=\"H5927\"* what|strong=\"H3045\"* you|strong=\"H3588\"* must|strong=\"H3478\"* do|strong=\"H6213\"*, for|strong=\"H3588\"* at|strong=\"H5921\"* the|strong=\"H5921\"* return|strong=\"H8666\"* of|strong=\"H4428\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria will|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria said|strong=\"H3651\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, “Their|strong=\"H1992\"* god|strong=\"H3808\"* is|strong=\"H3651\"* a|strong=\"H3068\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hills|strong=\"H2022\"*; therefore|strong=\"H3651\"* they|strong=\"H1992\"* were|strong=\"H1992\"* stronger|strong=\"H2388\"* than|strong=\"H4480\"* we|strong=\"H3068\"*. But|strong=\"H3808\"* let|strong=\"H3808\"*’s fight|strong=\"H3898\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H4334\"*, and|strong=\"H4428\"* surely|strong=\"H3651\"* we|strong=\"H3068\"* will|strong=\"H4428\"* be|strong=\"H3808\"* stronger|strong=\"H2388\"* than|strong=\"H4480\"* they|strong=\"H1992\"*." + }, + { + "verseNum": 24, + "text": "Do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*: take|strong=\"H5493\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* away|strong=\"H5493\"*, every|strong=\"H1697\"* man|strong=\"H2088\"* out|strong=\"H6213\"* of|strong=\"H4428\"* his|strong=\"H7760\"* place|strong=\"H4725\"*, and|strong=\"H4428\"* put|strong=\"H7760\"* captains|strong=\"H6346\"* in|strong=\"H6213\"* their|strong=\"H7760\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 25, + "text": "Muster|strong=\"H4487\"* an|strong=\"H6213\"* army|strong=\"H2428\"* like|strong=\"H3651\"* the|strong=\"H8085\"* army|strong=\"H2428\"* that|strong=\"H8085\"* you|strong=\"H6213\"* have|strong=\"H3808\"* lost|strong=\"H5307\"*, horse|strong=\"H5483\"* for|strong=\"H6213\"* horse|strong=\"H5483\"* and|strong=\"H6963\"* chariot|strong=\"H7393\"* for|strong=\"H6213\"* chariot|strong=\"H7393\"*. We|strong=\"H8085\"* will|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* them|strong=\"H1992\"* in|strong=\"H6213\"* the|strong=\"H8085\"* plain|strong=\"H4334\"*, and|strong=\"H6963\"* surely|strong=\"H6213\"* we|strong=\"H3068\"* will|strong=\"H3808\"* be|strong=\"H3808\"* stronger|strong=\"H2388\"* than|strong=\"H3808\"* they|strong=\"H1992\"* are|strong=\"H1992\"*.”" + }, + { + "verseNum": 26, + "text": "At|strong=\"H3478\"* the|strong=\"H6485\"* return|strong=\"H8666\"* of|strong=\"H8141\"* the|strong=\"H6485\"* year|strong=\"H8141\"*, Ben Hadad mustered|strong=\"H6485\"* the|strong=\"H6485\"* Syrians and|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Aphek to|strong=\"H3478\"* fight|strong=\"H4421\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* mustered|strong=\"H6485\"* and|strong=\"H1121\"* given|strong=\"H4390\"* provisions, and|strong=\"H1121\"* went|strong=\"H3212\"* against|strong=\"H7125\"* them|strong=\"H8147\"*. The|strong=\"H4390\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* encamped|strong=\"H2583\"* before|strong=\"H5048\"* them|strong=\"H8147\"* like|strong=\"H3478\"* two|strong=\"H8147\"* little|strong=\"H8147\"* flocks|strong=\"H2835\"* of|strong=\"H1121\"* young|strong=\"H1121\"* goats|strong=\"H5795\"*, but the|strong=\"H4390\"* Syrians filled|strong=\"H4390\"* the|strong=\"H4390\"* country." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* man|strong=\"H1419\"* of|strong=\"H4428\"* God|strong=\"H3068\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H3478\"* spoke to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* the|strong=\"H3605\"* Syrians have|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3605\"* hills|strong=\"H2022\"*, but|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* a|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3605\"* valleys|strong=\"H6010\"*,” therefore|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* multitude|strong=\"H1995\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 29, + "text": "They|strong=\"H3117\"* encamped|strong=\"H2583\"* opposite|strong=\"H5227\"* each|strong=\"H3117\"* other for|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H5221\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"* the|strong=\"H5221\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* joined|strong=\"H7126\"*; and|strong=\"H3967\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* killed|strong=\"H5221\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thousand footmen|strong=\"H7273\"* of|strong=\"H1121\"* the|strong=\"H5221\"* Syrians in|strong=\"H2583\"* one|strong=\"H1121\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3498\"* the|strong=\"H5921\"* rest|strong=\"H3498\"* fled|strong=\"H5127\"* to|strong=\"H5921\"* Aphek, into|strong=\"H5307\"* the|strong=\"H5921\"* city|strong=\"H5892\"*; and|strong=\"H6242\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* twenty-seven|strong=\"H6242\"* thousand men|strong=\"H7651\"* who were|strong=\"H5892\"* left|strong=\"H3498\"*. Ben Hadad fled|strong=\"H5127\"* and|strong=\"H6242\"* came|strong=\"H1130\"* into|strong=\"H5307\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, into|strong=\"H5307\"* an|strong=\"H5307\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*." + }, + { + "verseNum": 31, + "text": "His|strong=\"H7760\"* servants|strong=\"H5650\"* said|strong=\"H8085\"* to|strong=\"H3318\"* him|strong=\"H7760\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, we|strong=\"H3068\"* have|strong=\"H5650\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* merciful|strong=\"H2617\"* kings|strong=\"H4428\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H7760\"* our|strong=\"H8085\"* bodies and|strong=\"H3478\"* ropes|strong=\"H2256\"* on|strong=\"H7760\"* our|strong=\"H8085\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Maybe he|strong=\"H3588\"* will|strong=\"H4428\"* save|strong=\"H2421\"* your|strong=\"H7760\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 32, + "text": "So|strong=\"H5650\"* they|strong=\"H1931\"* put|strong=\"H2296\"* sackcloth|strong=\"H8242\"* on|strong=\"H2296\"* their|strong=\"H8242\"* bodies and|strong=\"H3478\"* ropes|strong=\"H2256\"* on|strong=\"H2296\"* their|strong=\"H8242\"* heads|strong=\"H7218\"*, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5650\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* said, “Your|strong=\"H4994\"* servant|strong=\"H5650\"* Ben Hadad says, ‘Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 33, + "text": "Now|strong=\"H3947\"* the|strong=\"H5921\"* men|strong=\"H3947\"* observed diligently and|strong=\"H3318\"* hurried|strong=\"H4116\"* to|strong=\"H3318\"* take|strong=\"H3947\"* this|strong=\"H5927\"* phrase; and|strong=\"H3318\"* they|strong=\"H5921\"* said|strong=\"H3318\"*, “Your|strong=\"H5921\"* brother Ben Hadad.”" + }, + { + "verseNum": 34, + "text": "Ben Hadad said to|strong=\"H7725\"* him|strong=\"H7971\"*, “The|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* my|strong=\"H7760\"* father took|strong=\"H3947\"* from|strong=\"H7725\"* your|strong=\"H3947\"* father I|strong=\"H7760\"* will|strong=\"H5892\"* restore|strong=\"H7725\"*. You|strong=\"H7971\"* shall|strong=\"H5892\"* make|strong=\"H7760\"* streets|strong=\"H2351\"* for|strong=\"H7971\"* yourself in|strong=\"H5892\"* Damascus|strong=\"H1834\"*, as|strong=\"H5892\"* my|strong=\"H7760\"* father made|strong=\"H3772\"* in|strong=\"H5892\"* Samaria|strong=\"H8111\"*.”" + }, + { + "verseNum": 35, + "text": "A|strong=\"H3068\"* certain man|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* prophets|strong=\"H5030\"* said|strong=\"H1697\"* to|strong=\"H3068\"* his|strong=\"H3068\"* fellow|strong=\"H7453\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* me|strong=\"H4994\"*!”" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H1980\"* he|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H1980\"* him|strong=\"H5221\"*, “Because|strong=\"H3282\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, behold|strong=\"H2005\"*, as|strong=\"H3068\"* soon as|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H3068\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* me|strong=\"H6963\"*, a|strong=\"H3068\"* lion will|strong=\"H3068\"* kill|strong=\"H5221\"* you|strong=\"H3808\"*.” As|strong=\"H3068\"* soon as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* departed|strong=\"H1980\"* from|strong=\"H1980\"* him|strong=\"H5221\"*, a|strong=\"H3068\"* lion found|strong=\"H4672\"* him|strong=\"H5221\"* and|strong=\"H1980\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H5221\"* he|strong=\"H5221\"* found|strong=\"H4672\"* another man, and|strong=\"H4994\"* said, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 38, + "text": "So|strong=\"H5975\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* departed|strong=\"H3212\"* and|strong=\"H4428\"* waited|strong=\"H5975\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*, and|strong=\"H4428\"* disguised|strong=\"H2664\"* himself|strong=\"H5975\"* with|strong=\"H5921\"* his|strong=\"H5921\"* headband over|strong=\"H5921\"* his|strong=\"H5921\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 39, + "text": "As|strong=\"H1961\"* the|strong=\"H8104\"* king|strong=\"H4428\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, he|strong=\"H1931\"* cried|strong=\"H6817\"* to|strong=\"H3318\"* the|strong=\"H8104\"* king|strong=\"H4428\"*, and|strong=\"H3701\"* he|strong=\"H1931\"* said|strong=\"H3318\"*, “Your|strong=\"H8104\"* servant|strong=\"H5650\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H8104\"* middle|strong=\"H7130\"* of|strong=\"H4428\"* the|strong=\"H8104\"* battle|strong=\"H4421\"*; and|strong=\"H3701\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5315\"* came|strong=\"H1961\"* over|strong=\"H5674\"* and|strong=\"H3701\"* brought|strong=\"H3318\"* a|strong=\"H3068\"* man|strong=\"H5315\"* to|strong=\"H3318\"* me|strong=\"H5315\"*, and|strong=\"H3701\"* said|strong=\"H3318\"*, ‘Guard|strong=\"H8104\"* this|strong=\"H2088\"* man|strong=\"H5315\"*! If|strong=\"H2009\"* by|strong=\"H5674\"* any|strong=\"H5315\"* means|strong=\"H6485\"* he|strong=\"H1931\"* is|strong=\"H2088\"* missing|strong=\"H6485\"*, then|strong=\"H1961\"* your|strong=\"H8104\"* life|strong=\"H5315\"* shall|strong=\"H4428\"* be|strong=\"H1961\"* for|strong=\"H8478\"* his|strong=\"H8104\"* life|strong=\"H5315\"*, or|strong=\"H3701\"* else you|strong=\"H7130\"* shall|strong=\"H4428\"* pay|strong=\"H8254\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 20:39 A talent is about 30 kilograms or 66 pounds* of|strong=\"H4428\"* silver|strong=\"H3701\"*.’" + }, + { + "verseNum": 40, + "text": "As|strong=\"H1961\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* was|strong=\"H1961\"* busy|strong=\"H6213\"* here|strong=\"H2008\"* and|strong=\"H3478\"* there|strong=\"H1961\"*, he|strong=\"H1931\"* was|strong=\"H1961\"* gone|strong=\"H1961\"*.”" + }, + { + "verseNum": 41, + "text": "He|strong=\"H1931\"* hurried|strong=\"H4116\"*, and|strong=\"H3478\"* took|strong=\"H5493\"* the|strong=\"H5921\"* headband away|strong=\"H5493\"* from|strong=\"H5493\"* his|strong=\"H5921\"* eyes|strong=\"H5869\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* recognized|strong=\"H5234\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* one|strong=\"H1931\"* of|strong=\"H4428\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3282\"* you|strong=\"H7971\"* have|strong=\"H1961\"* let|strong=\"H7971\"* go|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* the|strong=\"H3541\"* man|strong=\"H5315\"* whom|strong=\"H5971\"* I|strong=\"H3541\"* had|strong=\"H3068\"* devoted|strong=\"H2764\"* to|strong=\"H3068\"* destruction|strong=\"H2764\"*, therefore|strong=\"H7971\"* your|strong=\"H3068\"* life|strong=\"H5315\"* will|strong=\"H3068\"* take|strong=\"H1961\"* the|strong=\"H3541\"* place|strong=\"H8478\"* of|strong=\"H3068\"* his|strong=\"H3068\"* life|strong=\"H5315\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"* take|strong=\"H1961\"* the|strong=\"H3541\"* place|strong=\"H8478\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*.’”" + }, + { + "verseNum": 43, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* his|strong=\"H5921\"* house|strong=\"H1004\"* sullen|strong=\"H5620\"* and|strong=\"H3478\"* angry, and|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Samaria|strong=\"H8111\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* these|strong=\"H4428\"* things|strong=\"H1697\"*, Naboth|strong=\"H5022\"* the|strong=\"H1697\"* Jezreelite|strong=\"H3158\"* had|strong=\"H1961\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"* which|strong=\"H1697\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, next to|strong=\"H1961\"* the|strong=\"H1697\"* palace|strong=\"H1964\"* of|strong=\"H4428\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 2, + "text": "Ahab spoke|strong=\"H1696\"* to|strong=\"H1696\"* Naboth|strong=\"H5022\"*, saying|strong=\"H1696\"*, “Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* vineyard|strong=\"H3754\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* have|strong=\"H1961\"* it|strong=\"H5414\"* for|strong=\"H3588\"* a|strong=\"H3068\"* garden|strong=\"H1588\"* of|strong=\"H1004\"* herbs|strong=\"H3419\"*, because|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H2088\"* near|strong=\"H7138\"* my|strong=\"H5414\"* house|strong=\"H1004\"*; and|strong=\"H3701\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* it|strong=\"H5414\"* a|strong=\"H3068\"* better|strong=\"H2896\"* vineyard|strong=\"H3754\"* than|strong=\"H4480\"* it|strong=\"H5414\"*. Or|strong=\"H3701\"*, if|strong=\"H3588\"* it|strong=\"H5414\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* its|strong=\"H5414\"* worth|strong=\"H4242\"* in|strong=\"H1004\"* money|strong=\"H3701\"*.”" + }, + { + "verseNum": 3, + "text": "Naboth|strong=\"H5022\"* said to|strong=\"H3068\"* Ahab, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forbid|strong=\"H2486\"* me|strong=\"H5414\"*, that|strong=\"H3068\"* I|strong=\"H5414\"* should|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inheritance|strong=\"H5159\"* of|strong=\"H3068\"* my|strong=\"H5414\"* fathers to|strong=\"H3068\"* you|strong=\"H5414\"*!”" + }, + { + "verseNum": 4, + "text": "Ahab came|strong=\"H1697\"* into|strong=\"H5921\"* his|strong=\"H5414\"* house|strong=\"H1004\"* sullen|strong=\"H5620\"* and|strong=\"H1004\"* angry because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H6440\"* word|strong=\"H1697\"* which|strong=\"H1697\"* Naboth|strong=\"H5022\"* the|strong=\"H6440\"* Jezreelite|strong=\"H3158\"* had|strong=\"H5414\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, for|strong=\"H5921\"* he|strong=\"H1004\"* had|strong=\"H5414\"* said|strong=\"H1696\"*, “I|strong=\"H5414\"* will|strong=\"H1004\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H6440\"* inheritance|strong=\"H5159\"* of|strong=\"H1004\"* my|strong=\"H5414\"* fathers.” He|strong=\"H1004\"* laid|strong=\"H5414\"* himself|strong=\"H6440\"* down|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H5414\"* bed|strong=\"H4296\"*, and|strong=\"H1004\"* turned|strong=\"H5437\"* away|strong=\"H5437\"* his|strong=\"H5414\"* face|strong=\"H6440\"*, and|strong=\"H1004\"* would|strong=\"H1697\"* eat|strong=\"H3899\"* no|strong=\"H3808\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* Jezebel his|strong=\"H1696\"* wife|strong=\"H1696\"* came|strong=\"H7307\"* to|strong=\"H1696\"* him|strong=\"H2088\"*, and|strong=\"H3899\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H2088\"*, “Why|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H2088\"* spirit|strong=\"H7307\"* so|strong=\"H2088\"* sad|strong=\"H5620\"* that|strong=\"H2088\"* you|strong=\"H4100\"* eat|strong=\"H3899\"* no|strong=\"H1696\"* bread|strong=\"H3899\"*?”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H5414\"*, “Because|strong=\"H3588\"* I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Naboth|strong=\"H5022\"* the|strong=\"H3588\"* Jezreelite|strong=\"H3158\"*, and|strong=\"H3701\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, ‘Give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* vineyard|strong=\"H3754\"* for|strong=\"H3588\"* money|strong=\"H3701\"*; or|strong=\"H3808\"* else|strong=\"H3808\"*, if|strong=\"H3588\"* it|strong=\"H5414\"* pleases|strong=\"H2655\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H3588\"* another|strong=\"H3808\"* vineyard|strong=\"H3754\"* for|strong=\"H3588\"* it|strong=\"H5414\"*.’ He|strong=\"H3588\"* answered|strong=\"H1696\"*, ‘I|strong=\"H3588\"* will|strong=\"H5414\"* not|strong=\"H3808\"* give|strong=\"H5414\"* you|strong=\"H3588\"* my|strong=\"H5414\"* vineyard|strong=\"H3754\"*.’”" + }, + { + "verseNum": 7, + "text": "Jezebel his|strong=\"H5414\"* wife said to|strong=\"H3478\"* him|strong=\"H5414\"*, “Do|strong=\"H6213\"* you|strong=\"H5414\"* now|strong=\"H6258\"* govern|strong=\"H6213\"* the|strong=\"H5921\"* kingdom|strong=\"H4410\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"*? Arise|strong=\"H6965\"*, and|strong=\"H6965\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H6965\"* let|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"* be|strong=\"H3820\"* merry|strong=\"H3190\"*. I|strong=\"H5414\"* will|strong=\"H3478\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5921\"* vineyard|strong=\"H3754\"* of|strong=\"H5921\"* Naboth|strong=\"H5022\"* the|strong=\"H5921\"* Jezreelite|strong=\"H3158\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7971\"* she|strong=\"H5892\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* in|strong=\"H3427\"* Ahab’s name|strong=\"H8034\"* and|strong=\"H7971\"* sealed|strong=\"H2856\"* them|strong=\"H7971\"* with|strong=\"H3427\"* his|strong=\"H7971\"* seal|strong=\"H2368\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* the|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* the|strong=\"H7971\"* elders|strong=\"H2205\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* nobles|strong=\"H2715\"* who|strong=\"H3427\"* were|strong=\"H5612\"* in|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* Naboth|strong=\"H5022\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H7121\"* wrote|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H7121\"* letters|strong=\"H5612\"*, saying, “Proclaim|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*, and|strong=\"H5971\"* set|strong=\"H3427\"* Naboth|strong=\"H5022\"* on|strong=\"H3427\"* high|strong=\"H7218\"* among|strong=\"H3427\"* the|strong=\"H7121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Set|strong=\"H3427\"* two|strong=\"H8147\"* men|strong=\"H1121\"*, wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, before|strong=\"H5048\"* him|strong=\"H3318\"*, and|strong=\"H1121\"* let them|strong=\"H3318\"* testify|strong=\"H5749\"* against|strong=\"H5048\"* him|strong=\"H3318\"*, saying, ‘You|strong=\"H1288\"* cursed|strong=\"H1288\"* God and|strong=\"H1121\"* the|strong=\"H1288\"* king|strong=\"H4428\"*!’ Then|strong=\"H3318\"* carry|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* stone|strong=\"H5619\"* him|strong=\"H3318\"* to|strong=\"H3318\"* death|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "The|strong=\"H6213\"* men|strong=\"H2205\"* of|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, even|strong=\"H6213\"* the|strong=\"H6213\"* elders|strong=\"H2205\"* and|strong=\"H7971\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7971\"* city|strong=\"H5892\"*, did|strong=\"H6213\"* as|strong=\"H6213\"* Jezebel had|strong=\"H3427\"* instructed them|strong=\"H7971\"* in|strong=\"H3427\"* the|strong=\"H6213\"* letters|strong=\"H5612\"* which|strong=\"H5892\"* she|strong=\"H5892\"* had|strong=\"H3427\"* written|strong=\"H3789\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5971\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*, and|strong=\"H5971\"* set|strong=\"H3427\"* Naboth|strong=\"H5022\"* on|strong=\"H3427\"* high|strong=\"H7218\"* among|strong=\"H3427\"* the|strong=\"H7121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1288\"* two|strong=\"H8147\"* men|strong=\"H1121\"*, the|strong=\"H1288\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"*, came|strong=\"H3318\"* in|strong=\"H3427\"* and|strong=\"H1121\"* sat|strong=\"H3427\"* before|strong=\"H5048\"* him|strong=\"H3318\"*. The|strong=\"H1288\"* wicked|strong=\"H1100\"* fellows|strong=\"H1121\"* testified|strong=\"H5749\"* against|strong=\"H5048\"* him|strong=\"H3318\"*, even against|strong=\"H5048\"* Naboth|strong=\"H5022\"*, in|strong=\"H3427\"* the|strong=\"H1288\"* presence|strong=\"H5048\"* of|strong=\"H1121\"* the|strong=\"H1288\"* people|strong=\"H5971\"*, saying, “Naboth|strong=\"H5022\"* cursed|strong=\"H1288\"* God and|strong=\"H1121\"* the|strong=\"H1288\"* king|strong=\"H4428\"*!” Then|strong=\"H3318\"* they|strong=\"H5971\"* carried|strong=\"H3318\"* him|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H1288\"* city|strong=\"H5892\"* and|strong=\"H1121\"* stoned|strong=\"H5619\"* him|strong=\"H3318\"* to|strong=\"H3318\"* death|strong=\"H4191\"* with|strong=\"H3427\"* stones|strong=\"H5619\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* they sent|strong=\"H7971\"* to|strong=\"H4191\"* Jezebel, saying, “Naboth|strong=\"H5022\"* has been stoned|strong=\"H5619\"* and|strong=\"H7971\"* is|strong=\"H4191\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* Jezebel heard|strong=\"H8085\"* that|strong=\"H3588\"* Naboth|strong=\"H5022\"* had|strong=\"H1961\"* been|strong=\"H1961\"* stoned|strong=\"H5619\"* and|strong=\"H6965\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, Jezebel said|strong=\"H8085\"* to|strong=\"H4191\"* Ahab, “Arise|strong=\"H6965\"*, take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4191\"* the|strong=\"H8085\"* vineyard|strong=\"H3754\"* of|strong=\"H4191\"* Naboth|strong=\"H5022\"* the|strong=\"H8085\"* Jezreelite|strong=\"H3158\"*, which|strong=\"H2416\"* he|strong=\"H3588\"* refused|strong=\"H3985\"* to|strong=\"H4191\"* give|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* money|strong=\"H3701\"*; for|strong=\"H3588\"* Naboth|strong=\"H5022\"* is|strong=\"H3701\"* not|strong=\"H5414\"* alive|strong=\"H2416\"*, but|strong=\"H3588\"* dead|strong=\"H4191\"*.”" + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Ahab heard|strong=\"H8085\"* that|strong=\"H3588\"* Naboth|strong=\"H5022\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, Ahab rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* vineyard|strong=\"H3754\"* of|strong=\"H4191\"* Naboth|strong=\"H5022\"* the|strong=\"H8085\"* Jezreelite|strong=\"H3158\"*, to|strong=\"H3381\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4191\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* meet|strong=\"H7125\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3478\"* dwells in|strong=\"H3478\"* Samaria|strong=\"H8111\"*. Behold|strong=\"H2009\"*, he|strong=\"H8033\"* is|strong=\"H2009\"* in|strong=\"H3478\"* the|strong=\"H3423\"* vineyard|strong=\"H3754\"* of|strong=\"H4428\"* Naboth|strong=\"H5022\"*, where|strong=\"H8033\"* he|strong=\"H8033\"* has|strong=\"H3478\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* take|strong=\"H3423\"* possession|strong=\"H3423\"* of|strong=\"H4428\"* it|strong=\"H3381\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H1696\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1571\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Have|strong=\"H3068\"* you|strong=\"H1696\"* killed|strong=\"H7523\"* and|strong=\"H3068\"* also|strong=\"H1571\"* taken|strong=\"H3423\"* possession|strong=\"H3423\"*?”’ You|strong=\"H1696\"* shall|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H1571\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “In|strong=\"H3068\"* the|strong=\"H3541\"* place|strong=\"H4725\"* where|strong=\"H4725\"* dogs|strong=\"H3611\"* licked|strong=\"H3952\"* the|strong=\"H3541\"* blood|strong=\"H1818\"* of|strong=\"H3068\"* Naboth|strong=\"H5022\"*, dogs|strong=\"H3611\"* will|strong=\"H3068\"* lick|strong=\"H3952\"* your|strong=\"H3068\"* blood|strong=\"H1818\"*, even|strong=\"H1571\"* yours.”’”" + }, + { + "verseNum": 20, + "text": "Ahab said to|strong=\"H3068\"* Elijah, “Have|strong=\"H3068\"* you|strong=\"H6213\"* found|strong=\"H4672\"* me|strong=\"H6213\"*, my|strong=\"H3068\"* enemy?”" + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H7451\"* you|strong=\"H5800\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* utterly|strong=\"H1197\"* sweep|strong=\"H1197\"* you|strong=\"H5800\"* away|strong=\"H1197\"* and|strong=\"H3478\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Ahab everyone who|strong=\"H3478\"* urinates against|strong=\"H1197\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 21:21 or, male * and|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3478\"* is|strong=\"H3478\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3478\"* is|strong=\"H3478\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* make|strong=\"H5414\"* your|strong=\"H5414\"* house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah, for|strong=\"H1004\"* the|strong=\"H5414\"* provocation|strong=\"H3708\"* with|strong=\"H1004\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H1121\"* provoked|strong=\"H3707\"* me|strong=\"H5414\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* made|strong=\"H5414\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H1571\"* spoke|strong=\"H1696\"* of|strong=\"H3068\"* Jezebel, saying|strong=\"H1696\"*, “The|strong=\"H3068\"* dogs|strong=\"H3611\"* will|strong=\"H3068\"* eat Jezebel by|strong=\"H3068\"* the|strong=\"H3068\"* rampart of|strong=\"H3068\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H4191\"* dogs|strong=\"H3611\"* will|strong=\"H5892\"* eat he|strong=\"H5892\"* who dies|strong=\"H4191\"* of|strong=\"H5892\"* Ahab in|strong=\"H4191\"* the|strong=\"H4191\"* city|strong=\"H5892\"*; and|strong=\"H8064\"* the|strong=\"H4191\"* birds|strong=\"H5775\"* of|strong=\"H5892\"* the|strong=\"H4191\"* sky|strong=\"H8064\"* will|strong=\"H5892\"* eat he|strong=\"H5892\"* who dies|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H4191\"* field|strong=\"H7704\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H7535\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* like|strong=\"H1961\"* Ahab, who|strong=\"H3068\"* sold|strong=\"H4376\"* himself|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, whom|strong=\"H5869\"* Jezebel his|strong=\"H3068\"* wife stirred|strong=\"H3068\"* up|strong=\"H5496\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* very|strong=\"H3966\"* abominably|strong=\"H8581\"* in|strong=\"H3478\"* following|strong=\"H3212\"* idols|strong=\"H1544\"*, according to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amorites did|strong=\"H6213\"*, whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* Ahab heard|strong=\"H8085\"* those|strong=\"H5921\"* words|strong=\"H1697\"*, he|strong=\"H5921\"* tore|strong=\"H7167\"* his|strong=\"H7760\"* clothes, put|strong=\"H7760\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* his|strong=\"H7760\"* body|strong=\"H1320\"*, fasted|strong=\"H6684\"*, lay|strong=\"H7901\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1980\"* went|strong=\"H1980\"* about|strong=\"H1961\"* despondently." + }, + { + "verseNum": 28, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Elijah the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 29, + "text": "“See|strong=\"H7200\"* how|strong=\"H3588\"* Ahab humbles himself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*? Because|strong=\"H3588\"* he|strong=\"H3588\"* humbles himself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* bring|strong=\"H7451\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* his|strong=\"H6440\"* days|strong=\"H3117\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1121\"* bring|strong=\"H7451\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* his|strong=\"H6440\"* house|strong=\"H1004\"* in|strong=\"H5921\"* his|strong=\"H6440\"* son|strong=\"H1121\"*’s day|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H8141\"* continued|strong=\"H3427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* without|strong=\"H8141\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Syria and|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H1961\"* third|strong=\"H7992\"* year|strong=\"H8141\"*, Jehoshaphat|strong=\"H3092\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H1961\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* his|strong=\"H3947\"* servants|strong=\"H5650\"*, “You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* is|strong=\"H3027\"* ours, and|strong=\"H3478\"* we|strong=\"H3068\"* do|strong=\"H3027\"* nothing|strong=\"H2814\"*, and|strong=\"H3478\"* don’t take|strong=\"H3947\"* it|strong=\"H3588\"* out|strong=\"H3947\"* of|strong=\"H4428\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria?”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Will|strong=\"H4428\"* you|strong=\"H3644\"* go|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H3212\"* to|strong=\"H3478\"* battle|strong=\"H4421\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?”" + }, + { + "verseNum": 5, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Please|strong=\"H4994\"* inquire|strong=\"H1875\"* first|strong=\"H3117\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"*, about|strong=\"H5921\"* four hundred|strong=\"H3967\"* men|strong=\"H3478\"*, and|strong=\"H3967\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “Should|strong=\"H3478\"* I|strong=\"H5414\"* go|strong=\"H3212\"* against|strong=\"H5921\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* should|strong=\"H3478\"* I|strong=\"H5414\"* refrain|strong=\"H2308\"*?”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* said, “Isn’t there|strong=\"H3068\"* here|strong=\"H6311\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* him|strong=\"H1875\"*?”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “There|strong=\"H3068\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* one|strong=\"H3808\"* man|strong=\"H1121\"* by|strong=\"H5921\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, Micaiah|strong=\"H4321\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imlah|strong=\"H3229\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H3808\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H8130\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* an|strong=\"H7121\"* officer|strong=\"H5631\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Quickly|strong=\"H4116\"* get Micaiah|strong=\"H4321\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imlah|strong=\"H3229\"*.”" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* sitting|strong=\"H3427\"* each|strong=\"H3605\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, arrayed|strong=\"H3847\"* in|strong=\"H3427\"* their|strong=\"H3605\"* robes, in|strong=\"H3427\"* an|strong=\"H6440\"* open|strong=\"H6440\"* place|strong=\"H1637\"* at|strong=\"H3427\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* were|strong=\"H3478\"* prophesying|strong=\"H5012\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* iron|strong=\"H1270\"*, and|strong=\"H1121\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘With|strong=\"H3068\"* these|strong=\"H6213\"* you|strong=\"H5704\"* will|strong=\"H3068\"* push|strong=\"H5055\"* the|strong=\"H3541\"* Syrians, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H1121\"* consumed|strong=\"H3615\"*.’”" + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* prophesied|strong=\"H5012\"* so|strong=\"H3651\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* and|strong=\"H3068\"* prosper|strong=\"H6743\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H7121\"* messenger|strong=\"H4397\"* who|strong=\"H5030\"* went|strong=\"H1980\"* to|strong=\"H1696\"* call|strong=\"H7121\"* Micaiah|strong=\"H4321\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, saying|strong=\"H1697\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, the|strong=\"H7121\"* prophets|strong=\"H5030\"* declare|strong=\"H1696\"* good|strong=\"H2896\"* to|strong=\"H1696\"* the|strong=\"H7121\"* king|strong=\"H4428\"* with|strong=\"H1980\"* one|strong=\"H2896\"* mouth|strong=\"H6310\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H1961\"* word|strong=\"H1697\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H7121\"* word|strong=\"H1697\"* of|strong=\"H4428\"* one|strong=\"H2896\"* of|strong=\"H4428\"* them|strong=\"H1992\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 14, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, what|strong=\"H1696\"* Yahweh|strong=\"H3068\"* says|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* him|strong=\"H5414\"*, “Micaiah|strong=\"H4321\"*, shall|strong=\"H3068\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3068\"* battle|strong=\"H4421\"*, or|strong=\"H3068\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4428\"*, “How|strong=\"H4100\"* many|strong=\"H4100\"* times|strong=\"H6471\"* do|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* to|strong=\"H1696\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"* that|strong=\"H3068\"* you|strong=\"H5704\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* the|strong=\"H3068\"* truth|strong=\"H3808\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*?”" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* said, “I|strong=\"H7200\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* scattered|strong=\"H6327\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* sheep|strong=\"H6629\"* that|strong=\"H7200\"* have|strong=\"H3068\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*. Yahweh|strong=\"H3068\"* said, ‘These|strong=\"H1992\"* have|strong=\"H3068\"* no|strong=\"H3808\"* master. Let|strong=\"H3808\"* them|strong=\"H1992\"* each|strong=\"H3605\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* house|strong=\"H1004\"* in|strong=\"H3478\"* peace|strong=\"H7965\"*.’”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Didn’t I|strong=\"H3588\"* tell you|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 19, + "text": "Micaiah said|strong=\"H1697\"*, “Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. I|strong=\"H5921\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* standing|strong=\"H5975\"* by|strong=\"H5921\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* said, ‘Who|strong=\"H4310\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* Ahab, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* fall|strong=\"H5307\"* at|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?’ One|strong=\"H2088\"* said one|strong=\"H2088\"* thing|strong=\"H2088\"*, and|strong=\"H3068\"* another|strong=\"H2088\"* said another|strong=\"H2088\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, ‘I|strong=\"H6440\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3651\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, ‘How|strong=\"H3651\"*?’" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H1696\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* evil|strong=\"H7451\"* concerning|strong=\"H5921\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* Micaiah|strong=\"H4321\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cheek|strong=\"H3895\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Which|strong=\"H3068\"* way|strong=\"H2088\"* did|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* go|strong=\"H5674\"* from|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 25, + "text": "Micaiah|strong=\"H4321\"* said, “Behold|strong=\"H2005\"*, you|strong=\"H3117\"* will|strong=\"H3117\"* see|strong=\"H7200\"* on|strong=\"H3117\"* that|strong=\"H7200\"* day|strong=\"H3117\"* when|strong=\"H3117\"* you|strong=\"H3117\"* go into|strong=\"H7200\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"* to|strong=\"H3117\"* hide|strong=\"H2247\"* yourself.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Take|strong=\"H3947\"* Micaiah|strong=\"H4321\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* him|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Amon the|strong=\"H3947\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3947\"* city|strong=\"H5892\"* and|strong=\"H1121\"* to|strong=\"H7725\"* Joash|strong=\"H3101\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "Say, ‘The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, “Put|strong=\"H7760\"* this|strong=\"H2088\"* fellow in|strong=\"H1004\"* the|strong=\"H3541\"* prison|strong=\"H1004\"*, and|strong=\"H4428\"* feed him|strong=\"H7760\"* with|strong=\"H1004\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"* and|strong=\"H4428\"* with|strong=\"H1004\"* water|strong=\"H4325\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* come in|strong=\"H1004\"* peace|strong=\"H7965\"*.”’”" + }, + { + "verseNum": 28, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “If you|strong=\"H3605\"* return|strong=\"H7725\"* at|strong=\"H3068\"* all|strong=\"H3605\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* by|strong=\"H3068\"* me|strong=\"H7725\"*.” He|strong=\"H3068\"* said|strong=\"H1696\"*, “Listen|strong=\"H8085\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* people|strong=\"H5971\"*!”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H5927\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “I|strong=\"H3478\"* will|strong=\"H4428\"* disguise|strong=\"H2664\"* myself and|strong=\"H3478\"* go|strong=\"H4428\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*, but|strong=\"H4428\"* you|strong=\"H3847\"* put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3478\"* robes.” The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* disguised|strong=\"H2664\"* himself and|strong=\"H3478\"* went|strong=\"H3478\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria had|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* thirty-two|strong=\"H7970\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H6680\"* chariots|strong=\"H7393\"*, saying, “Don’t fight|strong=\"H3898\"* with|strong=\"H3898\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, except|strong=\"H3588\"* only|strong=\"H3588\"* with|strong=\"H3898\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* Jehoshaphat|strong=\"H3092\"*, they|strong=\"H1992\"* said, “Surely|strong=\"H1961\"* that|strong=\"H7200\"* is|strong=\"H1931\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*!” and|strong=\"H3478\"* they|strong=\"H1992\"* came|strong=\"H1961\"* over|strong=\"H5921\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Jehoshaphat|strong=\"H3092\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 33, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H7200\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* pursuing him|strong=\"H7725\"*." + }, + { + "verseNum": 34, + "text": "A|strong=\"H3068\"* certain man drew|strong=\"H4900\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* at|strong=\"H3478\"* random|strong=\"H8537\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* between|strong=\"H4480\"* the|strong=\"H3588\"* joints|strong=\"H1694\"* of|strong=\"H4428\"* the|strong=\"H3588\"* armor|strong=\"H8302\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* driver|strong=\"H7395\"* of|strong=\"H4428\"* his|strong=\"H5221\"* chariot|strong=\"H7395\"*, “Turn|strong=\"H2015\"* around|strong=\"H3027\"*, and|strong=\"H3478\"* carry|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* battle|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* severely|strong=\"H2470\"* wounded|strong=\"H5221\"*.”" + }, + { + "verseNum": 35, + "text": "The|strong=\"H3117\"* battle|strong=\"H4421\"* increased|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"*. The|strong=\"H3117\"* king|strong=\"H4428\"* was|strong=\"H1961\"* propped|strong=\"H5975\"* up|strong=\"H5927\"* in|strong=\"H4428\"* his|strong=\"H1961\"* chariot|strong=\"H7393\"* facing the|strong=\"H3117\"* Syrians, and|strong=\"H4428\"* died|strong=\"H4191\"* at|strong=\"H4421\"* evening|strong=\"H6153\"*. The|strong=\"H3117\"* blood|strong=\"H1818\"* ran|strong=\"H1818\"* out|strong=\"H3332\"* of|strong=\"H4428\"* the|strong=\"H3117\"* wound|strong=\"H4347\"* into|strong=\"H5927\"* the|strong=\"H3117\"* bottom|strong=\"H2436\"* of|strong=\"H4428\"* the|strong=\"H3117\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* cry|strong=\"H7440\"* went|strong=\"H5674\"* throughout|strong=\"H5674\"* the|strong=\"H5674\"* army|strong=\"H4264\"* about|strong=\"H5892\"* the|strong=\"H5674\"* going|strong=\"H5674\"* down of|strong=\"H5892\"* the|strong=\"H5674\"* sun|strong=\"H8121\"*, saying, “Every|strong=\"H5892\"* man|strong=\"H5674\"* to|strong=\"H5674\"* his|strong=\"H5674\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* every|strong=\"H5892\"* man|strong=\"H5674\"* to|strong=\"H5674\"* his|strong=\"H5674\"* country!”" + }, + { + "verseNum": 37, + "text": "So|strong=\"H4191\"* the|strong=\"H4191\"* king|strong=\"H4428\"* died|strong=\"H4191\"*, and|strong=\"H4428\"* was|strong=\"H4428\"* brought|strong=\"H4428\"* to|strong=\"H4191\"* Samaria|strong=\"H8111\"*; and|strong=\"H4428\"* they|strong=\"H4428\"* buried|strong=\"H6912\"* the|strong=\"H4191\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 38, + "text": "They|strong=\"H3068\"* washed|strong=\"H7364\"* the|strong=\"H5921\"* chariot|strong=\"H7393\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pool|strong=\"H1295\"* of|strong=\"H3068\"* Samaria|strong=\"H8111\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* dogs|strong=\"H3611\"* licked|strong=\"H3952\"* up|strong=\"H5921\"* his|strong=\"H3068\"* blood|strong=\"H1818\"* where|strong=\"H5921\"* the|strong=\"H5921\"* prostitutes|strong=\"H2185\"* washed|strong=\"H7364\"* themselves|strong=\"H7364\"*, according|strong=\"H5921\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*." + }, + { + "verseNum": 39, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahab, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* ivory|strong=\"H8127\"* house|strong=\"H1004\"* which|strong=\"H1992\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* he|strong=\"H3117\"* built|strong=\"H1129\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 40, + "text": "So Ahab slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* Ahaziah his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 41, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asa began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fourth year|strong=\"H8141\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 42, + "text": "Jehoshaphat|strong=\"H3092\"* was|strong=\"H8034\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3092\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Azubah|strong=\"H5806\"* the|strong=\"H3092\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Shilhi|strong=\"H7977\"*." + }, + { + "verseNum": 43, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Asa his|strong=\"H3605\"* father. He|strong=\"H6213\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*, doing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*. However, the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"* were|strong=\"H5869\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H3605\"* people|strong=\"H3808\"* still sacrificed|strong=\"H6213\"* and|strong=\"H3068\"* burned incense on|strong=\"H1870\"* the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"*." + }, + { + "verseNum": 44, + "text": "Jehoshaphat made|strong=\"H2076\"* peace|strong=\"H2076\"* with|strong=\"H5971\"* the|strong=\"H5493\"* king of|strong=\"H5971\"* Israel|strong=\"H5971\"*." + }, + { + "verseNum": 45, + "text": "Now|strong=\"H3478\"* the|strong=\"H5973\"* rest of|strong=\"H4428\"* the|strong=\"H5973\"* acts of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*, and|strong=\"H3478\"* his|strong=\"H3478\"* might|strong=\"H3478\"* that|strong=\"H3478\"* he|strong=\"H3478\"* showed, and|strong=\"H3478\"* how he|strong=\"H3478\"* fought, aren’t they|strong=\"H3478\"* written in|strong=\"H3478\"* the|strong=\"H5973\"* book of|strong=\"H4428\"* the|strong=\"H5973\"* chronicles of|strong=\"H4428\"* the|strong=\"H5973\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah?" + }, + { + "verseNum": 46, + "text": "The|strong=\"H5921\"* remnant|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* sodomites, that|strong=\"H3117\"* remained in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H5921\"* father Asa, he|strong=\"H3117\"* put|strong=\"H6213\"* away out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 47, + "text": "There|strong=\"H3117\"* was|strong=\"H3117\"* no|strong=\"H4480\"* king in|strong=\"H3117\"* Edom. A|strong=\"H3068\"* deputy ruled." + }, + { + "verseNum": 48, + "text": "Jehoshaphat made ships of|strong=\"H4428\"* Tarshish to|strong=\"H4428\"* go|strong=\"H4428\"* to|strong=\"H4428\"* Ophir for|strong=\"H4428\"* gold, but|strong=\"H4428\"* they|strong=\"H4428\"* didn’t go|strong=\"H4428\"*, for|strong=\"H4428\"* the|strong=\"H5324\"* ships wrecked at|strong=\"H4428\"* Ezion Geber." + }, + { + "verseNum": 49, + "text": "Then|strong=\"H1980\"* Ahaziah the|strong=\"H3588\"* son of|strong=\"H2091\"* Ahab said to|strong=\"H1980\"* Jehoshaphat|strong=\"H3092\"*, “Let|strong=\"H3808\"* my|strong=\"H3588\"* servants go|strong=\"H1980\"* with|strong=\"H1980\"* your|strong=\"H3588\"* servants in|strong=\"H1980\"* the|strong=\"H3588\"* ships.” But|strong=\"H3588\"* Jehoshaphat|strong=\"H3092\"* would|strong=\"H1980\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 50, + "text": "Jehoshaphat|strong=\"H3092\"* slept with|strong=\"H5973\"* his|strong=\"H3808\"* fathers, and|strong=\"H1121\"* was|strong=\"H1121\"* buried with|strong=\"H5973\"* his|strong=\"H3808\"* fathers in|strong=\"H3212\"* his|strong=\"H3808\"* father|strong=\"H1121\"* David|strong=\"H5973\"*’s city. Jehoram his|strong=\"H3808\"* son|strong=\"H1121\"* reigned in|strong=\"H3212\"* his|strong=\"H3808\"* place." + }, + { + "verseNum": 51, + "text": "Ahaziah the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab began to|strong=\"H1121\"* reign|strong=\"H4427\"* over|strong=\"H4427\"* Israel in|strong=\"H6912\"* Samaria in|strong=\"H6912\"* the|strong=\"H8478\"* seventeenth year|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4427\"* of|strong=\"H1121\"* Judah, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* two|strong=\"H4427\"* years over|strong=\"H4427\"* Israel." + }, + { + "verseNum": 52, + "text": "He|strong=\"H5921\"* did|strong=\"H3478\"* that|strong=\"H3478\"* which|strong=\"H3478\"* was|strong=\"H3478\"* evil in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight, and|strong=\"H1121\"* walked in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H5921\"* mother, and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H5921\"* way|strong=\"H5921\"* of|strong=\"H1121\"* Jeroboam the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat, in|strong=\"H8141\"* which|strong=\"H3478\"* he|strong=\"H5921\"* made|strong=\"H4427\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin." + }, + { + "verseNum": 53, + "text": "He|strong=\"H6213\"* served|strong=\"H6213\"* Baal and|strong=\"H1121\"* worshiped him|strong=\"H6213\"*, and|strong=\"H1121\"* provoked Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* anger in|strong=\"H3478\"* all|strong=\"H6213\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father|strong=\"H1121\"* had|strong=\"H3068\"* done|strong=\"H6213\"* so|strong=\"H6213\"*." + } + ] + } + ] + }, + { + "name": "2 Kings", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Moab|strong=\"H4124\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* Israel|strong=\"H3478\"* after the|strong=\"H3478\"* death|strong=\"H4194\"* of|strong=\"H4194\"* Ahab." + }, + { + "verseNum": 2, + "text": "Ahaziah fell|strong=\"H5307\"* down|strong=\"H5307\"* through|strong=\"H1157\"* the|strong=\"H7971\"* lattice|strong=\"H7639\"* in|strong=\"H3212\"* his|strong=\"H7971\"* upper|strong=\"H5944\"* room|strong=\"H5944\"* that|strong=\"H4397\"* was|strong=\"H2088\"* in|strong=\"H3212\"* Samaria|strong=\"H8111\"*, and|strong=\"H7971\"* was|strong=\"H2088\"* sick|strong=\"H2470\"*. So|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"*, and|strong=\"H7971\"* said to|strong=\"H3212\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"*, inquire|strong=\"H1875\"* of|strong=\"H4397\"* Baal Zebub, the|strong=\"H7971\"* god|strong=\"H7971\"* of|strong=\"H4397\"* Ekron|strong=\"H6138\"*, whether I|strong=\"H2088\"* will|strong=\"H5307\"* recover|strong=\"H2421\"* of|strong=\"H4397\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"* the|strong=\"H3068\"* Tishbite|strong=\"H8664\"*, “Arise|strong=\"H6965\"*, go|strong=\"H1980\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* the|strong=\"H3068\"* messengers|strong=\"H4397\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*, and|strong=\"H1980\"* tell|strong=\"H1696\"* them|strong=\"H5927\"*, ‘Is|strong=\"H3068\"* it|strong=\"H5927\"* because|strong=\"H1097\"* there|strong=\"H5927\"* is|strong=\"H3068\"* no|strong=\"H1097\"* God|strong=\"H3068\"*+ 1:3 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* in|strong=\"H1980\"* Israel|strong=\"H3478\"* that|strong=\"H3068\"* you|strong=\"H1696\"* go|strong=\"H1980\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Baal Zebub, the|strong=\"H3068\"* god|strong=\"H3068\"* of|strong=\"H4428\"* Ekron|strong=\"H6138\"*?" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H3588\"* therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”’” Then|strong=\"H3651\"* Elijah departed|strong=\"H3212\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H7725\"* messengers|strong=\"H4397\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"*, and|strong=\"H7725\"* he|strong=\"H4397\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Why|strong=\"H4100\"* is|strong=\"H2088\"* it|strong=\"H7725\"* that|strong=\"H4397\"* you|strong=\"H7725\"* have|strong=\"H2088\"* returned|strong=\"H7725\"*?”" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7971\"*, “A|strong=\"H3068\"* man|strong=\"H4191\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* us|strong=\"H7725\"*, and|strong=\"H3478\"* said|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H7725\"*, ‘Go|strong=\"H3212\"*, return|strong=\"H7725\"* to|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"* who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* tell|strong=\"H1696\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Is|strong=\"H3068\"* it|strong=\"H3588\"* because|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* that|strong=\"H3588\"* you|strong=\"H3588\"* send|strong=\"H7971\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Baal Zebub, the|strong=\"H3588\"* god|strong=\"H3068\"* of|strong=\"H4428\"* Ekron|strong=\"H6138\"*? Therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.’”’”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1696\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5927\"*, “What|strong=\"H4100\"* kind|strong=\"H4941\"* of|strong=\"H1697\"* man was|strong=\"H1697\"* he|strong=\"H1696\"* who|strong=\"H4100\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* meet|strong=\"H7125\"* you|strong=\"H4100\"* and|strong=\"H4941\"* told|strong=\"H1696\"* you|strong=\"H4100\"* these|strong=\"H1696\"* words|strong=\"H1697\"*?”" + }, + { + "verseNum": 8, + "text": "They|strong=\"H1931\"* answered him|strong=\"H1931\"*, “He|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* man|strong=\"H1167\"*, and|strong=\"H4975\"* wearing a|strong=\"H3068\"* leather|strong=\"H5785\"* belt around his|strong=\"H1931\"* waist|strong=\"H4975\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"* to|strong=\"H1696\"* him|strong=\"H5921\"*. He|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* him|strong=\"H5921\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"H5921\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hill|strong=\"H2022\"*. He|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Man|strong=\"H7218\"* of|strong=\"H4428\"* God|strong=\"H7971\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, ‘Come|strong=\"H5927\"* down|strong=\"H3381\"*!’”" + }, + { + "verseNum": 10, + "text": "Elijah|strong=\"H1696\"* answered|strong=\"H6030\"* to|strong=\"H1696\"* the|strong=\"H4480\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"*, “If I|strong=\"H4480\"* am a|strong=\"H3068\"* man|strong=\"H6030\"* of|strong=\"H8269\"* God|strong=\"H8064\"*, then|strong=\"H6030\"* let|strong=\"H3381\"* fire come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H6030\"* consume you|strong=\"H4480\"* and|strong=\"H6030\"* your|strong=\"H4480\"* fifty|strong=\"H2572\"*!” Then|strong=\"H6030\"* fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H6030\"* consumed him|strong=\"H3381\"* and|strong=\"H6030\"* his|strong=\"H4480\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 11, + "text": "Again|strong=\"H7725\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* him|strong=\"H7971\"* another captain|strong=\"H8269\"* of|strong=\"H4428\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"*. He|strong=\"H7971\"* answered|strong=\"H6030\"* him|strong=\"H7971\"*, “Man|strong=\"H6030\"* of|strong=\"H4428\"* God|strong=\"H7971\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1696\"*, ‘Come|strong=\"H3381\"* down|strong=\"H3381\"* quickly|strong=\"H4120\"*!’”" + }, + { + "verseNum": 12, + "text": "Elijah|strong=\"H1696\"* answered|strong=\"H6030\"* them|strong=\"H3381\"*, “If I|strong=\"H4480\"* am a|strong=\"H3068\"* man|strong=\"H6030\"* of|strong=\"H4480\"* God|strong=\"H8064\"*, then|strong=\"H6030\"* let|strong=\"H3381\"* fire come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H6030\"* consume you|strong=\"H4480\"* and|strong=\"H6030\"* your|strong=\"H4480\"* fifty|strong=\"H2572\"*!” Then|strong=\"H6030\"* God|strong=\"H8064\"*’s fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H6030\"* consumed him|strong=\"H3381\"* and|strong=\"H6030\"* his|strong=\"H4480\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 13, + "text": "Again|strong=\"H7725\"* he|strong=\"H5921\"* sent|strong=\"H7971\"* the|strong=\"H5921\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* a|strong=\"H3068\"* third|strong=\"H7992\"* fifty|strong=\"H2572\"* with|strong=\"H1696\"* his|strong=\"H7971\"* fifty|strong=\"H2572\"*. The|strong=\"H5921\"* third|strong=\"H7992\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7971\"* came|strong=\"H5927\"* and|strong=\"H7971\"* fell|strong=\"H5927\"* on|strong=\"H5921\"* his|strong=\"H7971\"* knees|strong=\"H1290\"* before|strong=\"H5048\"* Elijah|strong=\"H1696\"*, and|strong=\"H7971\"* begged|strong=\"H2603\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, “Man|strong=\"H5315\"* of|strong=\"H8269\"* God|strong=\"H7971\"*, please|strong=\"H4994\"* let|strong=\"H7971\"* my|strong=\"H5921\"* life|strong=\"H5315\"* and|strong=\"H7971\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H8269\"* these|strong=\"H1696\"* fifty|strong=\"H2572\"* of|strong=\"H8269\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* be|strong=\"H5315\"* precious|strong=\"H3365\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* consumed the|strong=\"H4480\"* last two|strong=\"H8147\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"* with|strong=\"H3381\"* their|strong=\"H8064\"* fifties|strong=\"H2572\"*. But|strong=\"H2009\"* now|strong=\"H6258\"* let|strong=\"H3381\"* my|strong=\"H4480\"* life|strong=\"H5315\"* be|strong=\"H5315\"* precious|strong=\"H3365\"* in|strong=\"H5315\"* your|strong=\"H4480\"* sight|strong=\"H5869\"*.”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3068\"* him|strong=\"H6440\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Baal Zebub, the|strong=\"H3588\"* god|strong=\"H3068\"* of|strong=\"H3068\"* Ekron|strong=\"H6138\"*, is|strong=\"H3068\"* it|strong=\"H3588\"* because|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3068\"* no|strong=\"H3808\"* God|strong=\"H3068\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"*? Therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* down|strong=\"H3381\"* from|strong=\"H4480\"* the|strong=\"H3588\"* bed|strong=\"H4296\"* where|strong=\"H8033\"* you|strong=\"H3588\"* have|strong=\"H3068\"* gone|strong=\"H5927\"* up|strong=\"H5927\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.’”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* he|strong=\"H3588\"* died|strong=\"H4191\"* according to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* Elijah|strong=\"H1696\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"*. Jehoram|strong=\"H3088\"* began|strong=\"H3063\"* to|strong=\"H1696\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H3068\"* place|strong=\"H8478\"* in|strong=\"H8141\"* the|strong=\"H3588\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* no|strong=\"H3808\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahaziah which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* about|strong=\"H1961\"* to|strong=\"H3212\"* take|strong=\"H1961\"* Elijah up|strong=\"H5927\"* by|strong=\"H3068\"* a|strong=\"H3068\"* whirlwind|strong=\"H5591\"* into|strong=\"H5927\"* heaven|strong=\"H8064\"*, Elijah went|strong=\"H3212\"* with|strong=\"H3068\"* Elisha from|strong=\"H4480\"* Gilgal|strong=\"H1537\"*." + }, + { + "verseNum": 2, + "text": "Elijah said to|strong=\"H5704\"* Elisha|strong=\"H3427\"*, “Please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Bethel|strong=\"H1008\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Bethel|strong=\"H1008\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Elisha, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3068\"* master from|strong=\"H3318\"* over|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 4, + "text": "Elijah said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Elisha|strong=\"H3427\"*, please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* to|strong=\"H3068\"* Jericho|strong=\"H3405\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* Elisha, and|strong=\"H1121\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Do|strong=\"H3068\"* you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3068\"* master from|strong=\"H5921\"* over|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*?”" + }, + { + "verseNum": 6, + "text": "Elijah said to|strong=\"H3212\"* him|strong=\"H7971\"*, “Please|strong=\"H4994\"* wait|strong=\"H3427\"* here|strong=\"H6311\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H4994\"* to|strong=\"H3212\"* the|strong=\"H3588\"* Jordan|strong=\"H3383\"*.”" + }, + { + "verseNum": 7, + "text": "Fifty|strong=\"H2572\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* went|strong=\"H1980\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* opposite|strong=\"H5048\"* them|strong=\"H5921\"* at|strong=\"H5921\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* both|strong=\"H8147\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 8, + "text": "Elijah took|strong=\"H3947\"* his|strong=\"H3947\"* mantle, and|strong=\"H8147\"* rolled|strong=\"H5674\"* it|strong=\"H5221\"* up|strong=\"H3947\"*, and|strong=\"H8147\"* struck|strong=\"H5221\"* the|strong=\"H3947\"* waters|strong=\"H4325\"*; and|strong=\"H8147\"* they|strong=\"H5221\"* were|strong=\"H4325\"* divided|strong=\"H2673\"* here|strong=\"H2008\"* and|strong=\"H8147\"* there|strong=\"H2008\"*, so|strong=\"H3947\"* that|strong=\"H4325\"* they|strong=\"H5221\"* both|strong=\"H8147\"* went|strong=\"H5674\"* over|strong=\"H5674\"* on|strong=\"H5674\"* dry|strong=\"H2724\"* ground|strong=\"H2724\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H1961\"* they|strong=\"H2962\"* had|strong=\"H1961\"* gone|strong=\"H5674\"* over|strong=\"H5674\"*, Elijah said|strong=\"H6310\"* to|strong=\"H1961\"* Elisha, “Ask|strong=\"H7592\"* what|strong=\"H4100\"* I|strong=\"H2962\"* shall|strong=\"H6310\"* do|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3947\"*, before|strong=\"H2962\"* I|strong=\"H2962\"* am|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* you|strong=\"H3947\"*.”" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3651\"* said|strong=\"H3651\"*, “You|strong=\"H3947\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* a|strong=\"H3068\"* hard|strong=\"H7185\"* thing|strong=\"H7185\"*. If|strong=\"H7200\"* you|strong=\"H3947\"* see|strong=\"H7200\"* me|strong=\"H7200\"* when|strong=\"H1961\"* I|strong=\"H3651\"* am|strong=\"H1961\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* you|strong=\"H3947\"*, it|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H3651\"* for|strong=\"H7592\"* you|strong=\"H3947\"*; but|strong=\"H3808\"* if|strong=\"H7200\"* not|strong=\"H3808\"*, it|strong=\"H3651\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* so|strong=\"H3651\"*.”" + }, + { + "verseNum": 11, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* continued|strong=\"H1980\"* on|strong=\"H1980\"* and|strong=\"H1980\"* talked|strong=\"H1696\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* chariot|strong=\"H7393\"* of|strong=\"H7393\"* fire and|strong=\"H1980\"* horses|strong=\"H5483\"* of|strong=\"H7393\"* fire separated|strong=\"H6504\"* them|strong=\"H1992\"*; and|strong=\"H1980\"* Elijah|strong=\"H1696\"* went|strong=\"H1980\"* up|strong=\"H5927\"* by|strong=\"H1980\"* a|strong=\"H3068\"* whirlwind|strong=\"H5591\"* into|strong=\"H1980\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 12, + "text": "Elisha saw|strong=\"H7200\"* it|strong=\"H1931\"*, and|strong=\"H3478\"* he|strong=\"H1931\"* cried|strong=\"H6817\"*, “My|strong=\"H7200\"* father, my|strong=\"H7200\"* father, the|strong=\"H7200\"* chariots|strong=\"H7393\"* of|strong=\"H7393\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* its|strong=\"H3808\"* horsemen|strong=\"H6571\"*!”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* also took|strong=\"H5975\"* up|strong=\"H7311\"* Elijah’s mantle that|strong=\"H5307\"* fell|strong=\"H5307\"* from|strong=\"H7725\"* him|strong=\"H5921\"*, and|strong=\"H7725\"* went|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H7725\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* bank|strong=\"H8193\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* Elijah’s mantle that|strong=\"H1931\"* fell|strong=\"H5307\"* from|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* said, “Where|strong=\"H5921\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Elijah?” When|strong=\"H3068\"* he|strong=\"H1931\"* also|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5221\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*, they|strong=\"H3068\"* were|strong=\"H4325\"* divided|strong=\"H2673\"* apart|strong=\"H5674\"*, and|strong=\"H3068\"* Elisha went|strong=\"H5674\"* over|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H1121\"* were|strong=\"H1121\"* at|strong=\"H5921\"* Jericho|strong=\"H3405\"* facing|strong=\"H5921\"* him|strong=\"H5921\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*, they|strong=\"H5921\"* said, “The|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Elijah rests|strong=\"H5117\"* on|strong=\"H5921\"* Elisha.” They|strong=\"H5921\"* came|strong=\"H7307\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground before|strong=\"H5048\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, there|strong=\"H3426\"* are|strong=\"H1121\"* with|strong=\"H3068\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* fifty|strong=\"H2572\"* strong|strong=\"H2428\"* men|strong=\"H1121\"*. Please|strong=\"H4994\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H3212\"* and|strong=\"H1121\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* master. Perhaps|strong=\"H5375\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* has|strong=\"H3068\"* taken|strong=\"H5375\"* him|strong=\"H7971\"* up|strong=\"H5375\"*, and|strong=\"H1121\"* put|strong=\"H7971\"* him|strong=\"H7971\"* on|strong=\"H3068\"* some|strong=\"H2009\"* mountain|strong=\"H2022\"* or|strong=\"H3808\"* into|strong=\"H3212\"* some|strong=\"H2009\"* valley|strong=\"H1516\"*.”" + }, + { + "verseNum": 17, + "text": "When|strong=\"H3117\"* they|strong=\"H3117\"* urged|strong=\"H6484\"* him|strong=\"H7971\"* until|strong=\"H5704\"* he|strong=\"H3117\"* was|strong=\"H3117\"* ashamed, he|strong=\"H3117\"* said, “Send|strong=\"H7971\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H3808\"* came|strong=\"H3212\"* back|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* while|strong=\"H1931\"* he|strong=\"H1931\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"*; and|strong=\"H7725\"* he|strong=\"H1931\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Didn’t I|strong=\"H3808\"* tell you|strong=\"H7725\"*, ‘Don’t go|strong=\"H3212\"*’?”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* men|strong=\"H7451\"* of|strong=\"H5892\"* the|strong=\"H7200\"* city|strong=\"H5892\"* said to|strong=\"H4325\"* Elisha, “Behold|strong=\"H2009\"*, please|strong=\"H4994\"*, the|strong=\"H7200\"* situation|strong=\"H4186\"* of|strong=\"H5892\"* this|strong=\"H7200\"* city|strong=\"H5892\"* is|strong=\"H2896\"* pleasant|strong=\"H2896\"*, as|strong=\"H5892\"* my|strong=\"H7200\"* lord sees|strong=\"H7200\"*; but|strong=\"H7200\"* the|strong=\"H7200\"* water|strong=\"H4325\"* is|strong=\"H2896\"* bad|strong=\"H7451\"*, and|strong=\"H5892\"* the|strong=\"H7200\"* land is|strong=\"H2896\"* barren|strong=\"H7921\"*.”" + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* said, “Bring|strong=\"H3947\"* me|strong=\"H7760\"* a|strong=\"H3068\"* new|strong=\"H2319\"* jar|strong=\"H6746\"*, and|strong=\"H8033\"* put|strong=\"H7760\"* salt|strong=\"H4417\"* in|strong=\"H8033\"* it|strong=\"H7760\"*.” Then|strong=\"H3947\"* they|strong=\"H8033\"* brought|strong=\"H3947\"* it|strong=\"H7760\"* to|strong=\"H8033\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H8033\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* spring|strong=\"H4161\"* of|strong=\"H3068\"* the|strong=\"H3541\"* waters|strong=\"H4325\"*, and|strong=\"H3068\"* threw|strong=\"H7993\"* salt|strong=\"H4417\"* into|strong=\"H3318\"* it|strong=\"H8033\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H1961\"* healed|strong=\"H7495\"* these|strong=\"H7495\"* waters|strong=\"H4325\"*. There|strong=\"H8033\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* from|strong=\"H3318\"* there|strong=\"H8033\"* any|strong=\"H5750\"* more|strong=\"H5750\"* death|strong=\"H4194\"* or|strong=\"H3808\"* barren|strong=\"H7921\"* wasteland.’”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2088\"* the|strong=\"H3117\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* healed|strong=\"H7495\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, according to|strong=\"H1696\"* Elisha|strong=\"H5704\"*’s word|strong=\"H1697\"* which|strong=\"H1697\"* he|strong=\"H3117\"* spoke|strong=\"H1696\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* went|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H4480\"* there|strong=\"H8033\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*. As|strong=\"H5927\"* he|strong=\"H1931\"* was|strong=\"H1931\"* going|strong=\"H3318\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"*, some|strong=\"H4480\"* youths|strong=\"H5288\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"* and|strong=\"H5892\"* mocked|strong=\"H7046\"* him|strong=\"H3318\"*, and|strong=\"H5892\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H4480\"* baldy|strong=\"H7142\"*! Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H4480\"* baldy|strong=\"H7142\"*!”" + }, + { + "verseNum": 24, + "text": "He|strong=\"H3068\"* looked|strong=\"H7200\"* behind|strong=\"H4480\"* him|strong=\"H7200\"* and|strong=\"H3068\"* saw|strong=\"H7200\"* them|strong=\"H1992\"*, and|strong=\"H3068\"* cursed|strong=\"H7043\"* them|strong=\"H1992\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*. Then|strong=\"H3318\"* two|strong=\"H8147\"* female|strong=\"H8147\"* bears|strong=\"H1677\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H7200\"* woods|strong=\"H3293\"* and|strong=\"H3068\"* mauled forty-two|strong=\"H8147\"* of|strong=\"H3068\"* those|strong=\"H1992\"* youths|strong=\"H3206\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H8033\"* went|strong=\"H3212\"* from|strong=\"H7725\"* there|strong=\"H8033\"* to|strong=\"H7725\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*, and|strong=\"H7725\"* from|strong=\"H7725\"* there|strong=\"H8033\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* in|strong=\"H8141\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, but|strong=\"H7535\"* not|strong=\"H3808\"* like|strong=\"H3808\"* his|strong=\"H3068\"* father and|strong=\"H3068\"* like|strong=\"H3808\"* his|strong=\"H3068\"* mother, for|strong=\"H6213\"* he|strong=\"H6213\"* put|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6213\"* pillar|strong=\"H4676\"* of|strong=\"H3068\"* Baal|strong=\"H1168\"* that|strong=\"H3068\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Nevertheless|strong=\"H7535\"* he|strong=\"H4480\"* held|strong=\"H1692\"* to|strong=\"H3478\"* the|strong=\"H4480\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H4480\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*. He|strong=\"H4480\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* them|strong=\"H1692\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Mesha|strong=\"H4338\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* was|strong=\"H1961\"* a|strong=\"H3068\"* sheep|strong=\"H5349\"* breeder|strong=\"H5349\"*; and|strong=\"H3967\"* he|strong=\"H3478\"* supplied the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* with|strong=\"H4428\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand lambs|strong=\"H3733\"* and|strong=\"H3967\"* the|strong=\"H7725\"* wool|strong=\"H6785\"* of|strong=\"H4428\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand rams|strong=\"H3733\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* when|strong=\"H1961\"* Ahab was|strong=\"H1961\"* dead|strong=\"H4194\"*, the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Jehoram|strong=\"H3088\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H3117\"*, and|strong=\"H3478\"* mustered|strong=\"H6485\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H7971\"* went|strong=\"H3212\"* and|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H3212\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* has|strong=\"H4428\"* rebelled|strong=\"H6586\"* against|strong=\"H5927\"* me|strong=\"H7971\"*. Will|strong=\"H4428\"* you|strong=\"H7971\"* go|strong=\"H3212\"* with|strong=\"H3212\"* me|strong=\"H7971\"* against|strong=\"H5927\"* Moab|strong=\"H4124\"* to|strong=\"H3212\"* battle|strong=\"H4421\"*?”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* he|strong=\"H2088\"* said, “Which|strong=\"H2088\"* way|strong=\"H1870\"* shall|strong=\"H2088\"* we|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*?”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H1961\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* with|strong=\"H3117\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom, and|strong=\"H3063\"* they|strong=\"H3117\"* marched|strong=\"H5437\"* for|strong=\"H4325\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* along|strong=\"H3212\"* a|strong=\"H3068\"* circuitous route|strong=\"H1870\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H3117\"* army|strong=\"H4264\"* or|strong=\"H3808\"* for|strong=\"H4325\"* the|strong=\"H3117\"* animals|strong=\"H1961\"* that|strong=\"H3117\"* followed|strong=\"H3212\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said|strong=\"H7121\"*, “Alas! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* these|strong=\"H7121\"* three|strong=\"H7969\"* kings|strong=\"H4428\"* together|strong=\"H7121\"* to|strong=\"H3478\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H6030\"* Jehoshaphat|strong=\"H3092\"* said|strong=\"H6030\"*, “Isn’t there|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* here|strong=\"H6311\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* him|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* with|strong=\"H3068\"* him|strong=\"H3381\"*.” So|strong=\"H1697\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"* and|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "Elisha|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* I|strong=\"H3588\"* to|strong=\"H3478\"* do|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*? Go|strong=\"H3212\"* to|strong=\"H3478\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H4428\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* of|strong=\"H4428\"* your|strong=\"H3068\"* mother.”" + }, + { + "verseNum": 14, + "text": "Elisha said, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H3588\"* stand|strong=\"H5975\"*, surely|strong=\"H3588\"*, were|strong=\"H3063\"* it|strong=\"H3588\"* not|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* respect|strong=\"H7200\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, I|strong=\"H3588\"* would|strong=\"H3068\"* not|strong=\"H3588\"* look|strong=\"H7200\"* toward|strong=\"H6440\"* you|strong=\"H3588\"*, nor|strong=\"H3588\"* see|strong=\"H7200\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H1961\"* now|strong=\"H6258\"* bring|strong=\"H3947\"* me|strong=\"H5921\"* a|strong=\"H3068\"* musician|strong=\"H5059\"*.” When|strong=\"H1961\"* the|strong=\"H5921\"* musician|strong=\"H5059\"* played|strong=\"H5059\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* came|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* this|strong=\"H2088\"* valley|strong=\"H5158\"* full|strong=\"H1356\"* of|strong=\"H3068\"* trenches|strong=\"H1356\"*.’" + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* see|strong=\"H7200\"* wind|strong=\"H7307\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* you|strong=\"H3588\"* see|strong=\"H7200\"* rain|strong=\"H1653\"*, yet|strong=\"H3588\"* that|strong=\"H3588\"* valley|strong=\"H5158\"* will|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* water|strong=\"H4325\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* drink|strong=\"H8354\"*, both you|strong=\"H3588\"* and|strong=\"H3068\"* your|strong=\"H3068\"* livestock|strong=\"H4735\"* and|strong=\"H3068\"* your|strong=\"H3068\"* other|strong=\"H3541\"* animals." + }, + { + "verseNum": 18, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* an|strong=\"H5414\"* easy|strong=\"H7043\"* thing|strong=\"H7043\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* also|strong=\"H3068\"* deliver|strong=\"H5414\"* the|strong=\"H5414\"* Moabites|strong=\"H4124\"* into|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3605\"* shall|strong=\"H5892\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* and|strong=\"H6086\"* every|strong=\"H3605\"* choice|strong=\"H4004\"* city|strong=\"H5892\"*, and|strong=\"H6086\"* shall|strong=\"H5892\"* fell|strong=\"H5307\"* every|strong=\"H3605\"* good|strong=\"H2896\"* tree|strong=\"H6086\"*, and|strong=\"H6086\"* stop|strong=\"H5640\"* all|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H5892\"* water|strong=\"H4325\"*, and|strong=\"H6086\"* mar|strong=\"H3510\"* every|strong=\"H3605\"* good|strong=\"H2896\"* piece|strong=\"H2513\"* of|strong=\"H5892\"* land|strong=\"H2513\"* with|strong=\"H5892\"* stones.’”" + }, + { + "verseNum": 20, + "text": "In|strong=\"H1870\"* the|strong=\"H4390\"* morning|strong=\"H1242\"*, about|strong=\"H1961\"* the|strong=\"H4390\"* time|strong=\"H1961\"* of|strong=\"H1870\"* offering|strong=\"H4503\"* the|strong=\"H4390\"* sacrifice|strong=\"H4503\"*, behold|strong=\"H2009\"*, water|strong=\"H4325\"* came|strong=\"H1961\"* by|strong=\"H1870\"* the|strong=\"H4390\"* way|strong=\"H1870\"* of|strong=\"H1870\"* Edom, and|strong=\"H1242\"* the|strong=\"H4390\"* country was|strong=\"H1961\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Moabites|strong=\"H4124\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* had|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, they|strong=\"H3588\"* gathered|strong=\"H8085\"* themselves|strong=\"H8085\"* together|strong=\"H6817\"*, all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4428\"* able to|strong=\"H5927\"* put|strong=\"H5927\"* on|strong=\"H5921\"* armor|strong=\"H2290\"*, young and|strong=\"H4428\"* old|strong=\"H4605\"*, and|strong=\"H4428\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H3605\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H5921\"* rose|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H5921\"* the|strong=\"H5921\"* morning|strong=\"H1242\"*, and|strong=\"H7925\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* shone|strong=\"H2224\"* on|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H7925\"* the|strong=\"H5921\"* Moabites|strong=\"H4124\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* water|strong=\"H4325\"* opposite|strong=\"H5048\"* them|strong=\"H5921\"* as|strong=\"H4325\"* red as|strong=\"H4325\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5221\"* said, “This|strong=\"H2088\"* is|strong=\"H2088\"* blood|strong=\"H1818\"*. The|strong=\"H5221\"* kings|strong=\"H4428\"* are|strong=\"H4428\"* surely|strong=\"H5221\"* destroyed|strong=\"H2717\"*, and|strong=\"H4428\"* they|strong=\"H5221\"* have|strong=\"H6258\"* struck|strong=\"H5221\"* each|strong=\"H2088\"* other|strong=\"H2088\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Moab|strong=\"H4124\"*, to|strong=\"H4428\"* the|strong=\"H5221\"* plunder|strong=\"H7998\"*!”" + }, + { + "verseNum": 24, + "text": "When|strong=\"H5127\"* they|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H6440\"* camp|strong=\"H4264\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, the|strong=\"H6440\"* Israelites|strong=\"H3478\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* Moabites|strong=\"H4124\"*, so|strong=\"H6965\"* that|strong=\"H3478\"* they|strong=\"H3478\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* them|strong=\"H6440\"*; and|strong=\"H6965\"* they|strong=\"H3478\"* went|strong=\"H3478\"* forward|strong=\"H6440\"* into|strong=\"H5127\"* the|strong=\"H6440\"* land|strong=\"H6440\"* attacking|strong=\"H5221\"* the|strong=\"H6440\"* Moabites|strong=\"H4124\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5704\"* beat|strong=\"H5221\"* down|strong=\"H5307\"* the|strong=\"H3605\"* cities|strong=\"H5892\"*; and|strong=\"H6086\"* on|strong=\"H5307\"* every|strong=\"H3605\"* good|strong=\"H2896\"* piece|strong=\"H2513\"* of|strong=\"H5892\"* land|strong=\"H2513\"* each|strong=\"H3605\"* man|strong=\"H2896\"* cast|strong=\"H7993\"* his|strong=\"H3605\"* stone, and|strong=\"H6086\"* filled|strong=\"H4390\"* it|strong=\"H5221\"*. They|strong=\"H5704\"* also|strong=\"H5221\"* stopped|strong=\"H5640\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* of|strong=\"H5892\"* water|strong=\"H4325\"* and|strong=\"H6086\"* cut|strong=\"H5640\"* down|strong=\"H5307\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* trees|strong=\"H6086\"*, until|strong=\"H5704\"* in|strong=\"H5892\"* Kir Hareseth all|strong=\"H3605\"* they|strong=\"H5704\"* left|strong=\"H7604\"* was|strong=\"H5892\"* its|strong=\"H3605\"* stones; however the|strong=\"H3605\"* men|strong=\"H3605\"* armed|strong=\"H4390\"* with|strong=\"H4390\"* slings went|strong=\"H5437\"* around|strong=\"H5437\"* it|strong=\"H5221\"* and|strong=\"H6086\"* attacked|strong=\"H5221\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Moab|strong=\"H4124\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H7200\"* battle|strong=\"H4421\"* was|strong=\"H4428\"* too|strong=\"H4480\"* severe|strong=\"H2388\"* for|strong=\"H3588\"* him|strong=\"H7200\"*, he|strong=\"H3588\"* took|strong=\"H3947\"* with|strong=\"H4428\"* him|strong=\"H7200\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* men|strong=\"H2388\"* who|strong=\"H4428\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*, to|strong=\"H3201\"* break|strong=\"H1234\"* through|strong=\"H4480\"* to|strong=\"H3201\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Edom; but|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* he|strong=\"H5921\"* took|strong=\"H3947\"* his|strong=\"H3947\"* oldest|strong=\"H1419\"* son|strong=\"H1121\"* who|strong=\"H1121\"* would|strong=\"H3478\"* have|strong=\"H1961\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H3947\"* place|strong=\"H8478\"*, and|strong=\"H1121\"* offered|strong=\"H5927\"* him|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* great|strong=\"H1419\"* wrath|strong=\"H7110\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3947\"* own|strong=\"H1961\"* land." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* a|strong=\"H3068\"* certain|strong=\"H3045\"* woman of|strong=\"H1121\"* the|strong=\"H3588\"* wives of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* cried|strong=\"H6817\"* out|strong=\"H3947\"* to|strong=\"H4191\"* Elisha, saying, “Your|strong=\"H3068\"* servant|strong=\"H5650\"* my|strong=\"H3068\"* husband is|strong=\"H3068\"* dead|strong=\"H4191\"*. You|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H1961\"* the|strong=\"H3588\"* creditor|strong=\"H5383\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H4191\"* take|strong=\"H3947\"* for|strong=\"H3588\"* himself|strong=\"H3045\"* my|strong=\"H3068\"* two|strong=\"H8147\"* children|strong=\"H1121\"* to|strong=\"H4191\"* be|strong=\"H1961\"* slaves|strong=\"H5650\"*.”" + }, + { + "verseNum": 2, + "text": "Elisha said to|strong=\"H6213\"* her|strong=\"H3605\"*, “What|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H3588\"* do|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"*? Tell|strong=\"H5046\"* me|strong=\"H5046\"*, what|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H3588\"* have|strong=\"H3426\"* in|strong=\"H6213\"* the|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3605\"* he|strong=\"H3605\"* said, “Go|strong=\"H3212\"*, borrow|strong=\"H7592\"* empty|strong=\"H7386\"* containers|strong=\"H3627\"* from|strong=\"H4480\"* all|strong=\"H3605\"* your|strong=\"H3605\"* neighbors|strong=\"H7934\"*. Don’t borrow|strong=\"H7592\"* just|strong=\"H3605\"* a|strong=\"H3068\"* few|strong=\"H4591\"* containers|strong=\"H3627\"*." + }, + { + "verseNum": 4, + "text": "Go|strong=\"H5265\"* in|strong=\"H5921\"* and|strong=\"H1121\"* shut|strong=\"H5462\"* the|strong=\"H3605\"* door|strong=\"H1817\"* on|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H1121\"* on|strong=\"H5921\"* your|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* pour|strong=\"H3332\"* oil into|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* containers|strong=\"H3627\"*; and|strong=\"H1121\"* set|strong=\"H5265\"* aside|strong=\"H5265\"* those|strong=\"H3605\"* which|strong=\"H3627\"* are|strong=\"H1121\"* full|strong=\"H4392\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5066\"* she|strong=\"H1931\"* went|strong=\"H3212\"* from|strong=\"H1121\"* him|strong=\"H1931\"*, and|strong=\"H1121\"* shut|strong=\"H5462\"* the|strong=\"H5462\"* door|strong=\"H1817\"* on|strong=\"H3212\"* herself|strong=\"H1931\"* and|strong=\"H1121\"* on|strong=\"H3212\"* her|strong=\"H5462\"* sons|strong=\"H1121\"*. They|strong=\"H1992\"* brought|strong=\"H5066\"* the|strong=\"H5462\"* containers to|strong=\"H3212\"* her|strong=\"H5462\"*, and|strong=\"H1121\"* she|strong=\"H1931\"* poured|strong=\"H3332\"* oil." + }, + { + "verseNum": 6, + "text": "When|strong=\"H1961\"* the|strong=\"H4390\"* containers|strong=\"H3627\"* were|strong=\"H1961\"* full|strong=\"H4390\"*, she|strong=\"H3627\"* said to|strong=\"H1961\"* her|strong=\"H4390\"* son|strong=\"H1121\"*, “Bring|strong=\"H5066\"* me|strong=\"H1961\"* another|strong=\"H5750\"* container|strong=\"H3627\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1121\"* she came|strong=\"H3212\"* and|strong=\"H1121\"* told|strong=\"H5046\"* the|strong=\"H5046\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H7999\"*. He|strong=\"H3212\"* said, “Go|strong=\"H3212\"*, sell|strong=\"H4376\"* the|strong=\"H5046\"* oil|strong=\"H8081\"*, and|strong=\"H1121\"* pay|strong=\"H7999\"* your|strong=\"H5046\"* debt|strong=\"H5386\"*; and|strong=\"H1121\"* you|strong=\"H5046\"* and|strong=\"H1121\"* your|strong=\"H5046\"* sons|strong=\"H1121\"* live|strong=\"H2421\"* on|strong=\"H3212\"* the|strong=\"H5046\"* rest|strong=\"H3498\"*.”" + }, + { + "verseNum": 8, + "text": "One|strong=\"H1961\"* day|strong=\"H3117\"* Elisha went|strong=\"H5674\"* to|strong=\"H1961\"* Shunem|strong=\"H7766\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* prominent|strong=\"H1419\"* woman; and|strong=\"H3117\"* she persuaded|strong=\"H2388\"* him|strong=\"H5674\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*. So|strong=\"H1961\"* it|strong=\"H8033\"* was|strong=\"H1961\"*, that|strong=\"H3117\"* as|strong=\"H3117\"* often|strong=\"H1767\"* as|strong=\"H3117\"* he|strong=\"H3117\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, he|strong=\"H3117\"* turned|strong=\"H5493\"* in|strong=\"H3117\"* there|strong=\"H8033\"* to|strong=\"H1961\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H1931\"* said to|strong=\"H5921\"* her|strong=\"H5921\"* husband, “See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* perceive|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* holy|strong=\"H6918\"* man|strong=\"H5674\"* of|strong=\"H6918\"* God who|strong=\"H1931\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* us|strong=\"H4994\"* continually|strong=\"H8548\"*." + }, + { + "verseNum": 10, + "text": "Please|strong=\"H4994\"*, let|strong=\"H4994\"*’s make|strong=\"H6213\"* a|strong=\"H3068\"* little|strong=\"H6996\"* room|strong=\"H5944\"* on|strong=\"H7760\"* the|strong=\"H6213\"* roof|strong=\"H5944\"*. Let|strong=\"H4994\"*’s set|strong=\"H7760\"* a|strong=\"H3068\"* bed|strong=\"H4296\"*, a|strong=\"H3068\"* table|strong=\"H7979\"*, a|strong=\"H3068\"* chair|strong=\"H3678\"*, and|strong=\"H8033\"* a|strong=\"H3068\"* lamp stand for|strong=\"H6213\"* him|strong=\"H6213\"* there|strong=\"H8033\"*. When|strong=\"H1961\"* he|strong=\"H8033\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* us|strong=\"H4994\"*, he|strong=\"H8033\"* can|strong=\"H6213\"* stay there|strong=\"H8033\"*.”" + }, + { + "verseNum": 11, + "text": "One|strong=\"H1961\"* day|strong=\"H3117\"* he|strong=\"H3117\"* came|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3117\"* room|strong=\"H5944\"* and|strong=\"H3117\"* lay|strong=\"H7901\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H6440\"* Gehazi|strong=\"H1522\"* his|strong=\"H7121\"* servant|strong=\"H5288\"*, “Call|strong=\"H7121\"* this|strong=\"H2063\"* Shunammite|strong=\"H7767\"*.” When|strong=\"H5975\"* he|strong=\"H7121\"* had called|strong=\"H7121\"* her|strong=\"H7121\"*, she|strong=\"H7121\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, “Say|strong=\"H1696\"* now|strong=\"H4994\"* to|strong=\"H1696\"* her|strong=\"H3605\"*, ‘Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3426\"* cared|strong=\"H6213\"* for|strong=\"H6213\"* us|strong=\"H4994\"* with|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* care|strong=\"H2731\"*. What|strong=\"H4100\"* is|strong=\"H3426\"* to|strong=\"H1696\"* be|strong=\"H3426\"* done|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H3605\"*? Would|strong=\"H5971\"* you|strong=\"H3605\"* like|strong=\"H6213\"* to|strong=\"H1696\"* be|strong=\"H3426\"* spoken|strong=\"H1696\"* for|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, or|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H3605\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*?’”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* said, “What|strong=\"H4100\"* then|strong=\"H6213\"* is|strong=\"H4100\"* to|strong=\"H6213\"* be|strong=\"H1121\"* done|strong=\"H6213\"* for|strong=\"H6213\"* her|strong=\"H6213\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H7121\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* her|strong=\"H7121\"*.” When|strong=\"H5975\"* he|strong=\"H7121\"* had called|strong=\"H7121\"* her|strong=\"H7121\"*, she|strong=\"H7121\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H7121\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6256\"* said, “At|strong=\"H1121\"* this|strong=\"H2088\"* season|strong=\"H6256\"* next|strong=\"H2416\"* year|strong=\"H6256\"*, you|strong=\"H6256\"* will|strong=\"H1121\"* embrace|strong=\"H2263\"* a|strong=\"H3068\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3205\"* woman|strong=\"H3205\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* at|strong=\"H1121\"* that|strong=\"H2416\"* season|strong=\"H6256\"* when|strong=\"H6256\"* the|strong=\"H3205\"* time|strong=\"H6256\"* came around, as|strong=\"H1121\"* Elisha had|strong=\"H3205\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H3205\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H1961\"* the|strong=\"H3117\"* child|strong=\"H3206\"* was|strong=\"H1961\"* grown|strong=\"H1431\"*, one|strong=\"H1961\"* day|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H1961\"* father to|strong=\"H3318\"* the|strong=\"H3117\"* reapers|strong=\"H7114\"*." + }, + { + "verseNum": 19, + "text": "He said to|strong=\"H5375\"* his|strong=\"H5375\"* father, “My|strong=\"H5375\"* head|strong=\"H7218\"*! My|strong=\"H5375\"* head|strong=\"H7218\"*!”" + }, + { + "verseNum": 20, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3427\"* taken|strong=\"H5375\"* him|strong=\"H5921\"* and|strong=\"H3427\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* to|strong=\"H5704\"* his|strong=\"H5375\"* mother, he|strong=\"H5704\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* her|strong=\"H5375\"* knees|strong=\"H1290\"* until|strong=\"H5704\"* noon|strong=\"H6672\"*, and|strong=\"H3427\"* then|strong=\"H5375\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H5921\"* went|strong=\"H3318\"* up|strong=\"H5927\"* and|strong=\"H5927\"* laid|strong=\"H7901\"* him|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* man of|strong=\"H5921\"* God’s bed|strong=\"H4296\"*, and|strong=\"H5927\"* shut|strong=\"H5462\"* the|strong=\"H5921\"* door on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5927\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 22, + "text": "She|strong=\"H7121\"* called|strong=\"H7121\"* to|strong=\"H5704\"* her|strong=\"H7971\"* husband and|strong=\"H7971\"* said|strong=\"H7121\"*, “Please|strong=\"H4994\"* send|strong=\"H7971\"* me|strong=\"H4994\"* one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* servants|strong=\"H5288\"*, and|strong=\"H7971\"* one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* donkeys, that|strong=\"H5288\"* I|strong=\"H5704\"* may|strong=\"H4994\"* run|strong=\"H7323\"* to|strong=\"H5704\"* the|strong=\"H4480\"* man|strong=\"H5288\"* of|strong=\"H4480\"* God|strong=\"H7971\"* and|strong=\"H7971\"* come|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3117\"* said, “Why|strong=\"H4069\"* would|strong=\"H1980\"* you|strong=\"H3117\"* want|strong=\"H3808\"* to|strong=\"H1980\"* go|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H1980\"* today|strong=\"H3117\"*? It|strong=\"H1980\"* is|strong=\"H3117\"* not|strong=\"H3808\"* a|strong=\"H3068\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* or|strong=\"H3808\"* a|strong=\"H3068\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3588\"* she|strong=\"H3588\"* saddled|strong=\"H2280\"* a|strong=\"H3068\"* donkey, and|strong=\"H3212\"* said to|strong=\"H3212\"* her|strong=\"H3212\"* servant|strong=\"H5288\"*, “Drive|strong=\"H5090\"*, and|strong=\"H3212\"* go|strong=\"H3212\"* forward|strong=\"H3212\"*! Don’t slow|strong=\"H6113\"* down|strong=\"H3212\"* for|strong=\"H3588\"* me|strong=\"H3212\"*, unless|strong=\"H3588\"* I|strong=\"H3588\"* ask you|strong=\"H3588\"* to|strong=\"H3212\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H1961\"* she went|strong=\"H3212\"*, and|strong=\"H3212\"* came|strong=\"H1961\"* to|strong=\"H3212\"* the|strong=\"H7200\"* man|strong=\"H5288\"* of|strong=\"H2022\"* God to|strong=\"H3212\"* Mount|strong=\"H2022\"* Carmel|strong=\"H3760\"*. When|strong=\"H1961\"* the|strong=\"H7200\"* man|strong=\"H5288\"* of|strong=\"H2022\"* God saw|strong=\"H7200\"* her|strong=\"H7200\"* afar|strong=\"H2022\"* off|strong=\"H7200\"*, he|strong=\"H3212\"* said to|strong=\"H3212\"* Gehazi|strong=\"H1522\"* his|strong=\"H7200\"* servant|strong=\"H5288\"*, “Behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H2009\"* the|strong=\"H7200\"* Shunammite|strong=\"H7767\"*." + }, + { + "verseNum": 26, + "text": "Please|strong=\"H4994\"* run|strong=\"H7323\"* now|strong=\"H6258\"* to|strong=\"H7323\"* meet|strong=\"H7125\"* her|strong=\"H7125\"*, and|strong=\"H7965\"* ask her|strong=\"H7125\"*, ‘Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* you|strong=\"H6258\"*? Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* your|strong=\"H4994\"* husband? Is|strong=\"H3206\"* it|strong=\"H7965\"* well|strong=\"H7965\"* with|strong=\"H7323\"* your|strong=\"H4994\"* child|strong=\"H3206\"*?’”" + }, + { + "verseNum": 27, + "text": "When|strong=\"H3588\"* she|strong=\"H3588\"* came|strong=\"H5066\"* to|strong=\"H3068\"* the|strong=\"H3588\"* man|strong=\"H5315\"* of|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3588\"* hill|strong=\"H2022\"*, she|strong=\"H3588\"* caught|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3068\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*. Gehazi|strong=\"H1522\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3068\"* thrust|strong=\"H1920\"* her|strong=\"H5046\"* away|strong=\"H4480\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H5315\"* of|strong=\"H3068\"* God|strong=\"H3068\"* said, “Leave|strong=\"H4480\"* her|strong=\"H5046\"* alone|strong=\"H7503\"*, for|strong=\"H3588\"* her|strong=\"H5046\"* soul|strong=\"H5315\"* is|strong=\"H3068\"* troubled|strong=\"H4843\"* within|strong=\"H4480\"* her|strong=\"H5046\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* hidden|strong=\"H5956\"* it|strong=\"H3588\"* from|strong=\"H4480\"* me|strong=\"H5315\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* told|strong=\"H5046\"* me|strong=\"H5315\"*.”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H3808\"* she|strong=\"H3808\"* said, “Did|strong=\"H3808\"* I|strong=\"H3808\"* ask|strong=\"H7592\"* you|strong=\"H3808\"* for|strong=\"H1121\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, my|strong=\"H3808\"* lord? Didn’t I|strong=\"H3808\"* say, ‘Do not|strong=\"H3808\"* deceive|strong=\"H7952\"* me|strong=\"H7592\"*’?”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H6030\"* he|strong=\"H3588\"* said|strong=\"H6030\"* to|strong=\"H3212\"* Gehazi|strong=\"H1522\"*, “Tuck your|strong=\"H3947\"* cloak into|strong=\"H3212\"* your|strong=\"H3947\"* belt, take|strong=\"H3947\"* my|strong=\"H7760\"* staff|strong=\"H4938\"* in|strong=\"H5921\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H6030\"* go|strong=\"H3212\"* your|strong=\"H3947\"* way|strong=\"H3212\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* meet|strong=\"H6440\"* any|strong=\"H6440\"* man|strong=\"H5288\"*, don’t greet|strong=\"H1288\"* him|strong=\"H6440\"*; and|strong=\"H6030\"* if|strong=\"H3588\"* anyone|strong=\"H3588\"* greets you|strong=\"H3588\"*, don’t answer|strong=\"H6030\"* him|strong=\"H6440\"* again|strong=\"H3212\"*. Then|strong=\"H6030\"* lay|strong=\"H7760\"* my|strong=\"H7760\"* staff|strong=\"H4938\"* on|strong=\"H5921\"* the|strong=\"H6440\"* child|strong=\"H5288\"*’s face|strong=\"H6440\"*.”" + }, + { + "verseNum": 30, + "text": "The|strong=\"H3068\"* child|strong=\"H5288\"*’s mother said, “As|strong=\"H5315\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H6965\"* as|strong=\"H5315\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* lives|strong=\"H5315\"*, I|strong=\"H5315\"* will|strong=\"H3068\"* not|strong=\"H3212\"* leave|strong=\"H5800\"* you|strong=\"H5800\"*.”" + }, + { + "verseNum": 31, + "text": "Gehazi|strong=\"H1522\"* went|strong=\"H5674\"* ahead|strong=\"H6440\"* of|strong=\"H6963\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* laid|strong=\"H7760\"* the|strong=\"H6440\"* staff|strong=\"H4938\"* on|strong=\"H5921\"* the|strong=\"H6440\"* child|strong=\"H5288\"*’s face|strong=\"H6440\"*; but|strong=\"H3808\"* there|strong=\"H7725\"* was|strong=\"H5288\"* no|strong=\"H3808\"* voice|strong=\"H6963\"* and|strong=\"H7725\"* no|strong=\"H3808\"* hearing|strong=\"H7182\"*. Therefore|strong=\"H5921\"* he|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* meet|strong=\"H7125\"* him|strong=\"H6440\"*, and|strong=\"H7725\"* told|strong=\"H5046\"* him|strong=\"H6440\"*, “The|strong=\"H6440\"* child|strong=\"H5288\"* has|strong=\"H5674\"* not|strong=\"H3808\"* awakened.”" + }, + { + "verseNum": 32, + "text": "When|strong=\"H7901\"* Elisha had come|strong=\"H5288\"* into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* child|strong=\"H5288\"* was|strong=\"H1004\"* dead|strong=\"H4191\"*, and|strong=\"H1004\"* lying|strong=\"H7901\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4296\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* therefore|strong=\"H3068\"*, and|strong=\"H3068\"* shut|strong=\"H5462\"* the|strong=\"H3068\"* door|strong=\"H1817\"* on|strong=\"H3068\"* them|strong=\"H8147\"* both|strong=\"H8147\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H5869\"* lay|strong=\"H7901\"* on|strong=\"H5921\"* the|strong=\"H5921\"* child|strong=\"H3206\"*, and|strong=\"H5869\"* put|strong=\"H7760\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"* on|strong=\"H5921\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*, and|strong=\"H5869\"* his|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* his|strong=\"H7760\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* his|strong=\"H7760\"* hands|strong=\"H3709\"* on|strong=\"H5921\"* his|strong=\"H7760\"* hands|strong=\"H3709\"*. He|strong=\"H5921\"* stretched|strong=\"H1457\"* himself on|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H5869\"* the|strong=\"H5921\"* child|strong=\"H3206\"*’s flesh|strong=\"H1320\"* grew|strong=\"H5927\"* warm|strong=\"H2552\"*." + }, + { + "verseNum": 35, + "text": "Then|strong=\"H7725\"* he|strong=\"H5704\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* once|strong=\"H6471\"* back|strong=\"H7725\"* and|strong=\"H7725\"* forth|strong=\"H2008\"*, then|strong=\"H7725\"* went|strong=\"H3212\"* up|strong=\"H5927\"* and|strong=\"H7725\"* stretched|strong=\"H1457\"* himself out|strong=\"H5921\"* on|strong=\"H5921\"* him|strong=\"H5921\"*. Then|strong=\"H7725\"* the|strong=\"H5921\"* child|strong=\"H5288\"* sneezed|strong=\"H2237\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H7725\"* the|strong=\"H5921\"* child|strong=\"H5288\"* opened|strong=\"H6491\"* his|strong=\"H7725\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H7121\"* called|strong=\"H7121\"* Gehazi|strong=\"H1522\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* this|strong=\"H2063\"* Shunammite|strong=\"H7767\"*!” So|strong=\"H7121\"* he|strong=\"H7121\"* called|strong=\"H7121\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H3318\"* she|strong=\"H5921\"* went|strong=\"H3318\"* in|strong=\"H5921\"*, fell|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H5375\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* bowed|strong=\"H7812\"* herself|strong=\"H7812\"* to|strong=\"H3318\"* the|strong=\"H5921\"* ground; then|strong=\"H3318\"* she|strong=\"H5921\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* her|strong=\"H5375\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 38, + "text": "Elisha|strong=\"H7725\"* came|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Gilgal|strong=\"H1537\"*. There|strong=\"H3427\"* was|strong=\"H5288\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* in|strong=\"H3427\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H1121\"* he|strong=\"H6440\"* said to|strong=\"H7725\"* his|strong=\"H7725\"* servant|strong=\"H5288\"*, “Get|strong=\"H7725\"* the|strong=\"H6440\"* large|strong=\"H1419\"* pot|strong=\"H5518\"*, and|strong=\"H1121\"* boil|strong=\"H1310\"* stew|strong=\"H5138\"* for|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"*.”" + }, + { + "verseNum": 39, + "text": "One|strong=\"H3808\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"* to|strong=\"H3318\"* gather|strong=\"H3950\"* herbs, and|strong=\"H7704\"* found|strong=\"H4672\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* vine|strong=\"H1612\"*, and|strong=\"H7704\"* gathered|strong=\"H3950\"* a|strong=\"H3068\"* lap full|strong=\"H4393\"* of|strong=\"H7704\"* wild|strong=\"H7704\"* gourds|strong=\"H6498\"* from|strong=\"H4480\"* it|strong=\"H3588\"*, and|strong=\"H7704\"* came|strong=\"H3318\"* and|strong=\"H7704\"* cut them|strong=\"H3318\"* up|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* pot|strong=\"H5518\"* of|strong=\"H7704\"* stew|strong=\"H5138\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t recognize|strong=\"H3045\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H1961\"* they|strong=\"H1992\"* poured|strong=\"H3332\"* out|strong=\"H3332\"* for|strong=\"H1961\"* the|strong=\"H1961\"* men|strong=\"H1992\"* to|strong=\"H3201\"* eat. As|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* eating some|strong=\"H1992\"* of|strong=\"H4194\"* the|strong=\"H1961\"* stew|strong=\"H5138\"*, they|strong=\"H1992\"* cried|strong=\"H6817\"* out|strong=\"H3332\"* and|strong=\"H4194\"* said, “Man of|strong=\"H4194\"* God|strong=\"H3808\"*, there|strong=\"H1961\"* is|strong=\"H1961\"* death|strong=\"H4194\"* in|strong=\"H3808\"* the|strong=\"H1961\"* pot|strong=\"H5518\"*!” And|strong=\"H4194\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* eat it|strong=\"H1961\"*." + }, + { + "verseNum": 41, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* said|strong=\"H1697\"*, “Then|strong=\"H1961\"* bring|strong=\"H3947\"* meal|strong=\"H7058\"*.” He|strong=\"H3808\"* threw|strong=\"H7993\"* it|strong=\"H1961\"* into|strong=\"H3332\"* the|strong=\"H3947\"* pot|strong=\"H5518\"*; and|strong=\"H5971\"* he|strong=\"H3808\"* said|strong=\"H1697\"*, “Serve|strong=\"H1961\"* it|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3947\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H1961\"* eat.” And|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* harmful|strong=\"H7451\"* in|strong=\"H1697\"* the|strong=\"H3947\"* pot|strong=\"H5518\"*." + }, + { + "verseNum": 42, + "text": "A|strong=\"H3068\"* man from|strong=\"H3899\"* Baal Shalishah came|strong=\"H5971\"*, and|strong=\"H6242\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* man of|strong=\"H5971\"* God|strong=\"H5414\"* some|strong=\"H5971\"* bread|strong=\"H3899\"* of|strong=\"H5971\"* the|strong=\"H5414\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*: twenty|strong=\"H6242\"* loaves|strong=\"H3899\"* of|strong=\"H5971\"* barley|strong=\"H8184\"* and|strong=\"H6242\"* fresh|strong=\"H3759\"* ears|strong=\"H3759\"* of|strong=\"H5971\"* grain|strong=\"H3899\"* in|strong=\"H3899\"* his|strong=\"H5414\"* sack|strong=\"H6861\"*. Elisha said, “Give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H5971\"* eat|strong=\"H3899\"*.”" + }, + { + "verseNum": 43, + "text": "His|strong=\"H5414\"* servant|strong=\"H8334\"* said, “What|strong=\"H4100\"*, should|strong=\"H3068\"* I|strong=\"H3588\"* set|strong=\"H5414\"* this|strong=\"H2088\"* before|strong=\"H6440\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* men|strong=\"H5971\"*?”" + }, + { + "verseNum": 44, + "text": "So|strong=\"H5414\"* he|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H3068\"* they|strong=\"H3068\"* ate and|strong=\"H3068\"* had|strong=\"H3068\"* some|strong=\"H1697\"* left|strong=\"H3498\"* over|strong=\"H5414\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Naaman|strong=\"H5283\"*, captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, was|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* man|strong=\"H1368\"* with|strong=\"H3068\"* his|strong=\"H5375\"* master|strong=\"H8269\"*, and|strong=\"H3068\"* honorable|strong=\"H5375\"*, because|strong=\"H3588\"* by|strong=\"H3068\"* him|strong=\"H5414\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5414\"* victory|strong=\"H8668\"* to|strong=\"H3068\"* Syria; he|strong=\"H3588\"* was|strong=\"H3068\"* also|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* Syrians had|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3478\"* bands|strong=\"H1416\"*, and|strong=\"H3478\"* had|strong=\"H1961\"* brought|strong=\"H3318\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* out|strong=\"H3318\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* little|strong=\"H6996\"* girl|strong=\"H5291\"*, and|strong=\"H3478\"* she|strong=\"H6440\"* waited|strong=\"H1961\"* on|strong=\"H1961\"* Naaman|strong=\"H5283\"*’s wife." + }, + { + "verseNum": 3, + "text": "She|strong=\"H6440\"* said to|strong=\"H6440\"* her|strong=\"H6440\"* mistress|strong=\"H1404\"*, “I|strong=\"H6440\"* wish that|strong=\"H5030\"* my|strong=\"H6440\"* lord were|strong=\"H5030\"* with|strong=\"H6440\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* who|strong=\"H5030\"* is|strong=\"H6440\"* in|strong=\"H6440\"* Samaria|strong=\"H8111\"*! Then he|strong=\"H6440\"* would heal him|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* leprosy|strong=\"H6883\"*.”" + }, + { + "verseNum": 4, + "text": "Someone went|strong=\"H3478\"* in|strong=\"H3478\"* and|strong=\"H3478\"* told|strong=\"H5046\"* his|strong=\"H5046\"* lord, saying|strong=\"H1696\"*, “The|strong=\"H5046\"* girl|strong=\"H5291\"* who|strong=\"H3478\"* is|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H5046\"* land of|strong=\"H1696\"* Israel|strong=\"H3478\"* said|strong=\"H1696\"* this|strong=\"H2063\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria said, “Go|strong=\"H3212\"* now|strong=\"H3947\"*, and|strong=\"H3478\"* I|strong=\"H3027\"* will|strong=\"H4428\"* send|strong=\"H7971\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* to|strong=\"H3478\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H7971\"* brought|strong=\"H3478\"* the|strong=\"H7971\"* letter|strong=\"H5612\"* to|strong=\"H3478\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “Now|strong=\"H6258\"* when|strong=\"H7971\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* has|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H7971\"*, behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H5650\"* sent|strong=\"H7971\"* Naaman|strong=\"H5283\"* my|strong=\"H7971\"* servant|strong=\"H5650\"* to|strong=\"H3478\"* you|strong=\"H7971\"*, that|strong=\"H3478\"* you|strong=\"H7971\"* may|strong=\"H3478\"* heal him|strong=\"H7971\"* of|strong=\"H4428\"* his|strong=\"H7971\"* leprosy|strong=\"H6883\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* read|strong=\"H7121\"* the|strong=\"H7200\"* letter|strong=\"H5612\"*, he|strong=\"H1931\"* tore|strong=\"H7167\"* his|strong=\"H7121\"* clothes and|strong=\"H3478\"* said|strong=\"H7121\"*, “Am|strong=\"H1961\"* I|strong=\"H3588\"* God|strong=\"H7971\"*, to|strong=\"H3478\"* kill|strong=\"H4191\"* and|strong=\"H3478\"* to|strong=\"H3478\"* make|strong=\"H3045\"* alive|strong=\"H2421\"*, that|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H4191\"* sends|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H4994\"* to|strong=\"H3478\"* heal a|strong=\"H3068\"* man|strong=\"H4191\"* of|strong=\"H4428\"* his|strong=\"H7121\"* leprosy|strong=\"H6883\"*? But|strong=\"H3588\"* please|strong=\"H4994\"* consider|strong=\"H7200\"* and|strong=\"H3478\"* see|strong=\"H7200\"* how|strong=\"H3588\"* he|strong=\"H1931\"* seeks a|strong=\"H3068\"* quarrel against|strong=\"H7971\"* me|strong=\"H4994\"*.”" + }, + { + "verseNum": 8, + "text": "It|strong=\"H3588\"* was|strong=\"H1961\"* so|strong=\"H7971\"*, when|strong=\"H3588\"* Elisha the|strong=\"H8085\"* man|strong=\"H3045\"* of|strong=\"H4428\"* God|strong=\"H7971\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* torn|strong=\"H7167\"* his|strong=\"H7971\"* clothes, that|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"*, saying, “Why|strong=\"H4100\"* have|strong=\"H1961\"* you|strong=\"H3588\"* torn|strong=\"H7167\"* your|strong=\"H8085\"* clothes? Let|strong=\"H7971\"* him|strong=\"H7971\"* come|strong=\"H1961\"* now|strong=\"H4994\"* to|strong=\"H3478\"* me|strong=\"H4994\"*, and|strong=\"H3478\"* he|strong=\"H3588\"* shall|strong=\"H3478\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H5975\"* Naaman|strong=\"H5283\"* came with|strong=\"H1004\"* his|strong=\"H5975\"* horses|strong=\"H5483\"* and|strong=\"H1004\"* with|strong=\"H1004\"* his|strong=\"H5975\"* chariots|strong=\"H7393\"*, and|strong=\"H1004\"* stood|strong=\"H5975\"* at|strong=\"H1004\"* the|strong=\"H5975\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5975\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Elisha." + }, + { + "verseNum": 10, + "text": "Elisha|strong=\"H7725\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* to|strong=\"H1980\"* him|strong=\"H7971\"*, saying, “Go|strong=\"H1980\"* and|strong=\"H1980\"* wash|strong=\"H7364\"* in|strong=\"H1980\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"* seven|strong=\"H7651\"* times|strong=\"H6471\"*, and|strong=\"H1980\"* your|strong=\"H7725\"* flesh|strong=\"H1320\"* shall|strong=\"H1320\"* come|strong=\"H1980\"* again|strong=\"H7725\"* to|strong=\"H1980\"* you|strong=\"H7971\"*, and|strong=\"H1980\"* you|strong=\"H7971\"* shall|strong=\"H1320\"* be|strong=\"H1320\"* clean|strong=\"H2891\"*.”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H2009\"* Naaman|strong=\"H5283\"* was|strong=\"H3068\"* angry|strong=\"H7107\"*, and|strong=\"H3068\"* went|strong=\"H3212\"* away|strong=\"H3212\"* and|strong=\"H3068\"* said|strong=\"H7121\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* thought, ‘He|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H3318\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H7121\"*, and|strong=\"H3068\"* stand|strong=\"H5975\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3027\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* wave|strong=\"H5130\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H3027\"* the|strong=\"H3068\"* place|strong=\"H4725\"*, and|strong=\"H3068\"* heal the|strong=\"H3068\"* leper|strong=\"H6879\"*.’" + }, + { + "verseNum": 12, + "text": "Aren’t Abanah and|strong=\"H3478\"* Pharpar|strong=\"H6554\"*, the|strong=\"H3605\"* rivers|strong=\"H5104\"* of|strong=\"H4325\"* Damascus|strong=\"H1834\"*, better|strong=\"H2896\"* than|strong=\"H2896\"* all|strong=\"H3605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Israel|strong=\"H3478\"*? Couldn’t I|strong=\"H3808\"* wash|strong=\"H7364\"* in|strong=\"H3478\"* them|strong=\"H3478\"* and|strong=\"H3478\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*?” So|strong=\"H3808\"* he|strong=\"H3605\"* turned|strong=\"H6437\"* and|strong=\"H3478\"* went|strong=\"H3212\"* away|strong=\"H3212\"* in|strong=\"H3478\"* a|strong=\"H3068\"* rage|strong=\"H2534\"*." + }, + { + "verseNum": 13, + "text": "His|strong=\"H7364\"* servants|strong=\"H5650\"* came|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H1419\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H6213\"*, and|strong=\"H1419\"* said|strong=\"H1696\"*, “My|strong=\"H6213\"* father, if|strong=\"H3588\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"* had|strong=\"H3588\"* asked|strong=\"H1696\"* you|strong=\"H3588\"* do|strong=\"H6213\"* some|strong=\"H1697\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*, wouldn’t you|strong=\"H3588\"* have|strong=\"H5030\"* done|strong=\"H6213\"* it|strong=\"H3588\"*? How|strong=\"H3588\"* much|strong=\"H1697\"* rather|strong=\"H3588\"* then|strong=\"H1696\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* says|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, ‘Wash|strong=\"H7364\"*, and|strong=\"H1419\"* be|strong=\"H3808\"* clean|strong=\"H2891\"*’?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7725\"* went|strong=\"H3381\"* he|strong=\"H7725\"* down|strong=\"H3381\"* and|strong=\"H7725\"* dipped|strong=\"H2881\"* himself|strong=\"H2881\"* seven|strong=\"H7651\"* times|strong=\"H6471\"* in|strong=\"H1320\"* the|strong=\"H7725\"* Jordan|strong=\"H3383\"*, according to|strong=\"H7725\"* the|strong=\"H7725\"* saying|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H7725\"* man|strong=\"H5288\"* of|strong=\"H1697\"* God; and|strong=\"H7725\"* his|strong=\"H7725\"* flesh|strong=\"H1320\"* was|strong=\"H1697\"* restored|strong=\"H7725\"* like|strong=\"H3381\"* the|strong=\"H7725\"* flesh|strong=\"H1320\"* of|strong=\"H1697\"* a|strong=\"H3068\"* little|strong=\"H6996\"* child|strong=\"H5288\"*, and|strong=\"H7725\"* he|strong=\"H7725\"* was|strong=\"H1697\"* clean|strong=\"H2891\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H6440\"* God, he|strong=\"H1931\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* company|strong=\"H4264\"*, and|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; and|strong=\"H3478\"* he|strong=\"H1931\"* said, “See|strong=\"H2009\"* now|strong=\"H6258\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H3605\"* God in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, but|strong=\"H3588\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, please|strong=\"H4994\"* take|strong=\"H3947\"* a|strong=\"H3068\"* gift|strong=\"H1293\"* from|strong=\"H7725\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*.”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H3947\"* he|strong=\"H3068\"* said, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* I|strong=\"H6440\"* stand|strong=\"H5975\"*, I|strong=\"H6440\"* will|strong=\"H3068\"* receive|strong=\"H3947\"* none.”" + }, + { + "verseNum": 17, + "text": "Naaman|strong=\"H5283\"* said, “If|strong=\"H3588\"* not|strong=\"H3808\"*, then|strong=\"H5414\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* two|strong=\"H6776\"* mules|strong=\"H6505\"*’ load|strong=\"H4853\"* of|strong=\"H3068\"* earth be|strong=\"H3808\"* given|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* will|strong=\"H3068\"* from|strong=\"H3068\"* now|strong=\"H4994\"* on|strong=\"H3068\"* offer|strong=\"H6213\"* neither|strong=\"H3808\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* nor|strong=\"H3808\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* other|strong=\"H5750\"* gods, but|strong=\"H3588\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* may|strong=\"H4994\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H5545\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*: when|strong=\"H3068\"* my|strong=\"H3068\"* master goes into|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* leans|strong=\"H8172\"* on|strong=\"H5921\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* bow|strong=\"H7812\"* myself in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"*. When|strong=\"H3068\"* I|strong=\"H5921\"* bow|strong=\"H7812\"* myself in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rimmon|strong=\"H7417\"*, may|strong=\"H4994\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H5545\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* in|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3212\"* said to|strong=\"H3212\"* him, “Go|strong=\"H3212\"* in|strong=\"H3212\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* Gehazi|strong=\"H1522\"* the|strong=\"H3588\"* servant|strong=\"H5288\"* of|strong=\"H3068\"* Elisha the|strong=\"H3588\"* man|strong=\"H5288\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, said, “Behold|strong=\"H2009\"*, my|strong=\"H3068\"* master has|strong=\"H3068\"* spared|strong=\"H2820\"* this|strong=\"H2088\"* Naaman|strong=\"H5283\"* the|strong=\"H3588\"* Syrian, in|strong=\"H3068\"* not|strong=\"H2088\"* receiving|strong=\"H3947\"* at|strong=\"H3068\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* brought|strong=\"H3947\"*. As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* run|strong=\"H7323\"* after|strong=\"H3588\"* him|strong=\"H3027\"*, and|strong=\"H3068\"* take|strong=\"H3947\"* something|strong=\"H3972\"* from|strong=\"H3027\"* him|strong=\"H3027\"*.”" + }, + { + "verseNum": 21, + "text": "So|strong=\"H7200\"* Gehazi|strong=\"H1522\"* followed|strong=\"H7291\"* after|strong=\"H5921\"* Naaman|strong=\"H5283\"*. When|strong=\"H7200\"* Naaman|strong=\"H5283\"* saw|strong=\"H7200\"* one|strong=\"H7200\"* running|strong=\"H7323\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H5921\"* came|strong=\"H1522\"* down|strong=\"H5307\"* from|strong=\"H5921\"* the|strong=\"H5921\"* chariot|strong=\"H4818\"* to|strong=\"H5921\"* meet|strong=\"H7125\"* him|strong=\"H5921\"*, and|strong=\"H7200\"* said, “Is|strong=\"H5307\"* all|strong=\"H7200\"* well|strong=\"H7965\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H5414\"* said, “All|strong=\"H5414\"* is|strong=\"H2088\"* well|strong=\"H7965\"*. My|strong=\"H5414\"* master|strong=\"H5414\"* has|strong=\"H5030\"* sent|strong=\"H7971\"* me|strong=\"H5414\"*, saying, ‘Behold|strong=\"H2009\"*, even now|strong=\"H6258\"* two|strong=\"H8147\"* young|strong=\"H5288\"* men|strong=\"H5288\"* of|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* prophets|strong=\"H5030\"* have|strong=\"H1121\"* come|strong=\"H4994\"* to|strong=\"H7971\"* me|strong=\"H5414\"* from|strong=\"H1121\"* the|strong=\"H5414\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H1121\"* Ephraim. Please|strong=\"H4994\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 5:22 A talent is about 30 kilograms or 66 pounds* of|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* two|strong=\"H8147\"* changes|strong=\"H2487\"* of|strong=\"H1121\"* clothing.’”" + }, + { + "verseNum": 23, + "text": "Naaman|strong=\"H5283\"* said, “Be|strong=\"H5414\"* pleased|strong=\"H2974\"* to|strong=\"H5414\"* take|strong=\"H3947\"* two|strong=\"H8147\"* talents|strong=\"H3603\"*.” He|strong=\"H5414\"* urged|strong=\"H6555\"* him|strong=\"H5414\"*, and|strong=\"H3701\"* bound|strong=\"H6887\"* two|strong=\"H8147\"* talents|strong=\"H3603\"* of|strong=\"H6440\"* silver|strong=\"H3701\"* in|strong=\"H6440\"* two|strong=\"H8147\"* bags|strong=\"H2754\"*, with|strong=\"H6440\"* two|strong=\"H8147\"* changes|strong=\"H2487\"* of|strong=\"H6440\"* clothing, and|strong=\"H3701\"* laid|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5375\"* two|strong=\"H8147\"* of|strong=\"H6440\"* his|strong=\"H5375\"* servants|strong=\"H5288\"*; and|strong=\"H3701\"* they|strong=\"H5375\"* carried|strong=\"H5375\"* them|strong=\"H5414\"* before|strong=\"H6440\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H7971\"* he|strong=\"H1004\"* came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3947\"* hill|strong=\"H6076\"*, he|strong=\"H1004\"* took|strong=\"H3947\"* them|strong=\"H7971\"* from|strong=\"H3027\"* their|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* stored them|strong=\"H7971\"* in|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*. Then|strong=\"H3947\"* he|strong=\"H1004\"* let|strong=\"H7971\"* the|strong=\"H3947\"* men|strong=\"H6485\"* go|strong=\"H3212\"*, and|strong=\"H7971\"* they|strong=\"H3027\"* departed|strong=\"H3212\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* he|strong=\"H1931\"* went|strong=\"H1980\"* in|strong=\"H1980\"*, and|strong=\"H1980\"* stood|strong=\"H5975\"* before|strong=\"H3808\"* his|strong=\"H3808\"* master. Elisha said to|strong=\"H1980\"* him|strong=\"H5975\"*, “Where|strong=\"H3808\"* did|strong=\"H5650\"* you|strong=\"H3808\"* come|strong=\"H1980\"* from|strong=\"H1980\"*, Gehazi|strong=\"H1522\"*?”" + }, + { + "verseNum": 26, + "text": "He|strong=\"H3808\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “Didn’t my|strong=\"H3947\"* heart|strong=\"H3820\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H5921\"* when|strong=\"H6256\"* the|strong=\"H5921\"* man|strong=\"H3820\"* turned|strong=\"H2015\"* from|strong=\"H5921\"* his|strong=\"H3947\"* chariot|strong=\"H4818\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* you|strong=\"H5921\"*? Is|strong=\"H3820\"* it|strong=\"H5921\"* a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H1980\"* receive|strong=\"H3947\"* money|strong=\"H3701\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* receive|strong=\"H3947\"* garments, and|strong=\"H1980\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"* and|strong=\"H1980\"* vineyards|strong=\"H3754\"*, and|strong=\"H1980\"* sheep|strong=\"H6629\"* and|strong=\"H1980\"* cattle|strong=\"H1241\"*, and|strong=\"H1980\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H1980\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*?" + }, + { + "verseNum": 27, + "text": "Therefore the|strong=\"H6440\"* leprosy|strong=\"H6883\"* of|strong=\"H6440\"* Naaman|strong=\"H5283\"* will|strong=\"H2233\"* cling|strong=\"H1692\"* to|strong=\"H3318\"* you|strong=\"H6440\"* and|strong=\"H5769\"* to|strong=\"H3318\"* your|strong=\"H6440\"* offspring|strong=\"H2233\"*+ 5:27 or, seed* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"* said to|strong=\"H6440\"* Elisha|strong=\"H3427\"*, “See|strong=\"H2009\"* now|strong=\"H4994\"*, the|strong=\"H6440\"* place|strong=\"H4725\"* where|strong=\"H8033\"* we|strong=\"H3068\"* live|strong=\"H3427\"* and|strong=\"H1121\"* meet|strong=\"H6440\"* with|strong=\"H3427\"* you|strong=\"H6440\"* is|strong=\"H2009\"* too|strong=\"H4480\"* small|strong=\"H6862\"* for|strong=\"H6440\"* us|strong=\"H4994\"*." + }, + { + "verseNum": 2, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* go|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H3947\"* Jordan|strong=\"H3383\"*, and|strong=\"H3212\"* each|strong=\"H3947\"* man take|strong=\"H3947\"* a|strong=\"H3068\"* beam|strong=\"H6982\"* from|strong=\"H3947\"* there|strong=\"H8033\"*, and|strong=\"H3212\"* let|strong=\"H4994\"*’s make|strong=\"H6213\"* us|strong=\"H4994\"* a|strong=\"H3068\"* place|strong=\"H4725\"* there|strong=\"H8033\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* may|strong=\"H4994\"* live|strong=\"H3427\"*.”" + }, + { + "verseNum": 3, + "text": "One said, “Please|strong=\"H4994\"* be|strong=\"H4994\"* pleased|strong=\"H2974\"* to|strong=\"H3212\"* go|strong=\"H3212\"* with|strong=\"H3212\"* your|strong=\"H4994\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 4, + "text": "So he|strong=\"H3212\"* went|strong=\"H3212\"* with|strong=\"H3212\"* them. When they came|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3212\"* Jordan|strong=\"H3383\"*, they cut|strong=\"H1504\"* down|strong=\"H1504\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H1931\"* was|strong=\"H1961\"* cutting down|strong=\"H5307\"* a|strong=\"H3068\"* tree, the|strong=\"H1961\"* ax head|strong=\"H1270\"* fell|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H1961\"* water|strong=\"H4325\"*. Then|strong=\"H1961\"* he|strong=\"H1931\"* cried|strong=\"H6817\"* out|strong=\"H6817\"* and|strong=\"H4325\"* said, “Alas, my|strong=\"H1961\"* master! For|strong=\"H4325\"* it|strong=\"H1931\"* was|strong=\"H1961\"* borrowed|strong=\"H7592\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H7200\"* man|strong=\"H5307\"* of|strong=\"H6086\"* God asked, “Where|strong=\"H8033\"* did|strong=\"H1270\"* it|strong=\"H7200\"* fall|strong=\"H5307\"*?” He|strong=\"H8033\"* showed|strong=\"H7200\"* him|strong=\"H7200\"* the|strong=\"H7200\"* place|strong=\"H4725\"*. He|strong=\"H8033\"* cut|strong=\"H7094\"* down|strong=\"H5307\"* a|strong=\"H3068\"* stick|strong=\"H6086\"*, threw|strong=\"H7993\"* it|strong=\"H7200\"* in|strong=\"H6086\"* there|strong=\"H8033\"*, and|strong=\"H6086\"* made|strong=\"H6086\"* the|strong=\"H7200\"* iron|strong=\"H1270\"* float|strong=\"H6687\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3027\"* said, “Take|strong=\"H3947\"* it|strong=\"H7971\"*.” So|strong=\"H3947\"* he|strong=\"H3027\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* and|strong=\"H7971\"* took|strong=\"H3947\"* it|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria was|strong=\"H1961\"* at|strong=\"H3478\"* war|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H3478\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H3898\"* his|strong=\"H3478\"* servants|strong=\"H5650\"*, saying, “My|strong=\"H1961\"* camp|strong=\"H8466\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H3478\"* such|strong=\"H6423\"* and|strong=\"H3478\"* such|strong=\"H6423\"* a|strong=\"H3068\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H7971\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying, “Beware|strong=\"H8104\"* that|strong=\"H3588\"* you|strong=\"H3588\"* not|strong=\"H2088\"* pass|strong=\"H5674\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Syrians are|strong=\"H3478\"* coming|strong=\"H5185\"* down|strong=\"H7971\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H8104\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H8104\"* place|strong=\"H4725\"* which|strong=\"H8033\"* the|strong=\"H8104\"* man of|strong=\"H4428\"* God|strong=\"H3808\"* told him|strong=\"H7971\"* and|strong=\"H3478\"* warned|strong=\"H2094\"* him|strong=\"H7971\"* of|strong=\"H4428\"*; and|strong=\"H3478\"* he|strong=\"H8033\"* saved|strong=\"H8104\"* himself|strong=\"H8104\"* there|strong=\"H8033\"*, not|strong=\"H3808\"* once or|strong=\"H3808\"* twice|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria’s heart|strong=\"H3820\"* was|strong=\"H3478\"* very|strong=\"H2088\"* troubled|strong=\"H5590\"* about|strong=\"H5921\"* this|strong=\"H2088\"*. He|strong=\"H3808\"* called|strong=\"H7121\"* his|strong=\"H7121\"* servants|strong=\"H5650\"*, and|strong=\"H3478\"* said|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H5921\"*, “Won’t you|strong=\"H5921\"* show|strong=\"H5046\"* me|strong=\"H5046\"* which|strong=\"H7945\"* of|strong=\"H4428\"* us|strong=\"H5046\"* is|strong=\"H2088\"* for|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 12, + "text": "One|strong=\"H3808\"* of|strong=\"H4428\"* his|strong=\"H5046\"* servants|strong=\"H5650\"* said|strong=\"H1696\"*, “No|strong=\"H3808\"*, my|strong=\"H5046\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*; but|strong=\"H3588\"* Elisha, the|strong=\"H3588\"* prophet|strong=\"H5030\"* who|strong=\"H5650\"* is|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, tells|strong=\"H1696\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* the|strong=\"H3588\"* words|strong=\"H1697\"* that|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* in|strong=\"H3478\"* your|strong=\"H3588\"* bedroom|strong=\"H2315\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* said, “Go|strong=\"H3212\"* and|strong=\"H7971\"* see|strong=\"H7200\"* where|strong=\"H2009\"* he|strong=\"H1931\"* is|strong=\"H1931\"*, that|strong=\"H7200\"* I|strong=\"H2009\"* may|strong=\"H1931\"* send|strong=\"H7971\"* and|strong=\"H7971\"* get|strong=\"H3947\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H8033\"* sent|strong=\"H7971\"* horses|strong=\"H5483\"*, chariots|strong=\"H7393\"*, and|strong=\"H7971\"* a|strong=\"H3068\"* great|strong=\"H3515\"* army|strong=\"H2428\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* came by|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H7971\"* surrounded|strong=\"H5362\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3318\"* the|strong=\"H6213\"* servant|strong=\"H5288\"* of|strong=\"H5892\"* the|strong=\"H6213\"* man|strong=\"H5288\"* of|strong=\"H5892\"* God had|strong=\"H2428\"* risen|strong=\"H6965\"* early|strong=\"H7925\"* and|strong=\"H6965\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*, behold|strong=\"H2009\"*, an|strong=\"H6213\"* army|strong=\"H2428\"* with|strong=\"H6213\"* horses|strong=\"H5483\"* and|strong=\"H6965\"* chariots|strong=\"H7393\"* was|strong=\"H5892\"* around|strong=\"H5437\"* the|strong=\"H6213\"* city|strong=\"H5892\"*. His|strong=\"H6965\"* servant|strong=\"H5288\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H6213\"*, “Alas, my|strong=\"H6965\"* master! What|strong=\"H6213\"* shall|strong=\"H5892\"* we|strong=\"H3068\"* do|strong=\"H6213\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3588\"* answered, “Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H7227\"* are|strong=\"H7227\"* with|strong=\"H7227\"* us|strong=\"H3588\"* are|strong=\"H7227\"* more|strong=\"H7227\"* than|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H7227\"* are|strong=\"H7227\"* with|strong=\"H7227\"* them|strong=\"H3588\"*.”" + }, + { + "verseNum": 17, + "text": "Elisha prayed|strong=\"H6419\"*, and|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, please|strong=\"H4994\"* open|strong=\"H6491\"* his|strong=\"H3068\"* eyes|strong=\"H5869\"*, that|strong=\"H7200\"* he|strong=\"H3068\"* may|strong=\"H4994\"* see|strong=\"H7200\"*.” Yahweh|strong=\"H3068\"* opened|strong=\"H6491\"* the|strong=\"H7200\"* young|strong=\"H5288\"* man|strong=\"H5288\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* saw|strong=\"H7200\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H7200\"* mountain|strong=\"H2022\"* was|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* horses|strong=\"H5483\"* and|strong=\"H3068\"* chariots|strong=\"H7393\"* of|strong=\"H3068\"* fire around|strong=\"H5439\"* Elisha." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"*, Elisha prayed|strong=\"H6419\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Please|strong=\"H4994\"* strike|strong=\"H5221\"* this|strong=\"H2088\"* people|strong=\"H1471\"* with|strong=\"H3068\"* blindness|strong=\"H5575\"*.”" + }, + { + "verseNum": 19, + "text": "Elisha said to|strong=\"H3212\"* them|strong=\"H2088\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* the|strong=\"H1870\"* way|strong=\"H1870\"*, neither|strong=\"H3808\"* is|strong=\"H2088\"* this|strong=\"H2088\"* the|strong=\"H1870\"* city|strong=\"H5892\"*. Follow|strong=\"H3212\"* me|strong=\"H3808\"*, and|strong=\"H3212\"* I|strong=\"H2088\"* will|strong=\"H5892\"* bring|strong=\"H3212\"* you|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H1870\"* man|strong=\"H2088\"* whom you|strong=\"H3808\"* seek|strong=\"H1245\"*.” He|strong=\"H3808\"* led|strong=\"H3212\"* them|strong=\"H2088\"* to|strong=\"H3212\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1961\"* they|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"* into|strong=\"H8432\"* Samaria|strong=\"H8111\"*, Elisha said, “Yahweh|strong=\"H3068\"*, open|strong=\"H6491\"* these men’s eyes|strong=\"H5869\"*, that|strong=\"H7200\"* they|strong=\"H3068\"* may|strong=\"H1961\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 21, + "text": "The|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Elisha, when|strong=\"H7200\"* he|strong=\"H5221\"* saw|strong=\"H7200\"* them|strong=\"H5221\"*, “My|strong=\"H7200\"* father, shall|strong=\"H3478\"* I|strong=\"H7200\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*? Shall|strong=\"H3478\"* I|strong=\"H7200\"* strike|strong=\"H5221\"* them|strong=\"H5221\"*?”" + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* answered, “You|strong=\"H6440\"* shall|strong=\"H2719\"* not|strong=\"H3808\"* strike|strong=\"H5221\"* them|strong=\"H6440\"*. Would you|strong=\"H6440\"* strike|strong=\"H5221\"* those whom|strong=\"H6440\"* you|strong=\"H6440\"* have|strong=\"H3808\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* with|strong=\"H6440\"* your|strong=\"H7760\"* sword|strong=\"H2719\"* and|strong=\"H3212\"* with|strong=\"H6440\"* your|strong=\"H7760\"* bow|strong=\"H7198\"*? Set|strong=\"H7760\"* bread|strong=\"H3899\"* and|strong=\"H3212\"* water|strong=\"H4325\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, that|strong=\"H4325\"* they|strong=\"H3808\"* may|strong=\"H4325\"* eat|strong=\"H3899\"* and|strong=\"H3212\"* drink|strong=\"H8354\"*, then|strong=\"H7760\"* go|strong=\"H3212\"* to|strong=\"H3212\"* their|strong=\"H7760\"* master.”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H3808\"* prepared|strong=\"H3739\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H3740\"* for|strong=\"H7971\"* them|strong=\"H1992\"*. After|strong=\"H1992\"* they|strong=\"H1992\"* ate and|strong=\"H3478\"* drank|strong=\"H8354\"*, he|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"* away|strong=\"H7971\"* and|strong=\"H3478\"* they|strong=\"H1992\"* went|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H1992\"* master. So|strong=\"H7971\"* the|strong=\"H7971\"* bands|strong=\"H1416\"* of|strong=\"H1416\"* Syria stopped raiding the|strong=\"H7971\"* land of|strong=\"H1416\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H5921\"* this|strong=\"H3651\"*, Benhadad king|strong=\"H4428\"* of|strong=\"H4428\"* Syria gathered|strong=\"H6908\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H4264\"*, and|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H4428\"* besieged|strong=\"H6696\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H2009\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* famine|strong=\"H7458\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"* until|strong=\"H5704\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*’s head|strong=\"H7218\"* was|strong=\"H1961\"* sold|strong=\"H1961\"* for|strong=\"H5704\"* eighty|strong=\"H8084\"* pieces of|strong=\"H7218\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H5921\"* fourth|strong=\"H7255\"* part|strong=\"H7255\"* of|strong=\"H7218\"* a|strong=\"H3068\"* kab|strong=\"H6894\"*+ 6:25 A kab was about 2 liters, so a fourth of a kab would be about 500 milliliters or about a pint* of|strong=\"H7218\"* dove’s dung for|strong=\"H5704\"* five|strong=\"H2568\"* pieces of|strong=\"H7218\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 26, + "text": "As|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* was|strong=\"H1961\"* passing|strong=\"H5674\"* by|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, a|strong=\"H3068\"* woman cried|strong=\"H6817\"* to|strong=\"H3478\"* him|strong=\"H5921\"*, saying, “Help|strong=\"H3467\"*, my|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 27, + "text": "He|strong=\"H3068\"* said, “If Yahweh|strong=\"H3068\"* doesn’t help|strong=\"H3467\"* you|strong=\"H4480\"*, where|strong=\"H4480\"* could I|strong=\"H3068\"* get help|strong=\"H3467\"* for|strong=\"H3068\"* you|strong=\"H4480\"*? From|strong=\"H4480\"* the|strong=\"H3068\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, or|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H3068\"* wine|strong=\"H3342\"* press|strong=\"H3342\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H4100\"* her|strong=\"H5414\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* problem?”" + }, + { + "verseNum": 29, + "text": "So|strong=\"H5414\"* we|strong=\"H3068\"* boiled|strong=\"H1310\"* my|strong=\"H5414\"* son|strong=\"H1121\"* and|strong=\"H1121\"* ate him|strong=\"H5414\"*; and|strong=\"H1121\"* I|strong=\"H3117\"* said to|strong=\"H5414\"* her|strong=\"H5414\"* on|strong=\"H3117\"* the|strong=\"H5414\"* next day|strong=\"H3117\"*, ‘Give|strong=\"H5414\"* up|strong=\"H5414\"* your|strong=\"H5414\"* son|strong=\"H1121\"*, that|strong=\"H3117\"* we|strong=\"H3068\"* may|strong=\"H1121\"* eat him|strong=\"H5414\"*;’ and|strong=\"H1121\"* she has|strong=\"H3117\"* hidden|strong=\"H2244\"* her|strong=\"H5414\"* son|strong=\"H1121\"*.”" + }, + { + "verseNum": 30, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* woman|strong=\"H1004\"*, he|strong=\"H1931\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes. Now|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* passing|strong=\"H5674\"* by|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* had|strong=\"H1961\"* sackcloth|strong=\"H8242\"* underneath on|strong=\"H5921\"* his|strong=\"H8085\"* body|strong=\"H1320\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H3254\"* he|strong=\"H3117\"* said, “God do|strong=\"H6213\"* so|strong=\"H6213\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H1121\"* more|strong=\"H3254\"* also|strong=\"H3541\"*, if|strong=\"H1121\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Elisha the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphat|strong=\"H8202\"* stays|strong=\"H5975\"* on|strong=\"H5921\"* him|strong=\"H5921\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 32, + "text": "But|strong=\"H3588\"* Elisha|strong=\"H3427\"* was|strong=\"H1931\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H7971\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* with|strong=\"H1004\"* him|strong=\"H6440\"*. Then|strong=\"H2088\"* the|strong=\"H6440\"* king|strong=\"H6440\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H2205\"* from|strong=\"H5493\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; but|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* messenger|strong=\"H4397\"* came|strong=\"H4397\"* to|strong=\"H7971\"* him|strong=\"H6440\"*, he|strong=\"H1931\"* said to|strong=\"H7971\"* the|strong=\"H6440\"* elders|strong=\"H2205\"*, “Do|strong=\"H2088\"* you|strong=\"H3588\"* see|strong=\"H7200\"* how|strong=\"H3588\"* this|strong=\"H2088\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* murderer|strong=\"H7523\"* has|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* take|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7200\"* head|strong=\"H7218\"*? Behold|strong=\"H7200\"*, when|strong=\"H3588\"* the|strong=\"H6440\"* messenger|strong=\"H4397\"* comes|strong=\"H6440\"*, shut|strong=\"H5462\"* the|strong=\"H6440\"* door|strong=\"H1817\"*, and|strong=\"H1121\"* hold|strong=\"H3905\"* the|strong=\"H6440\"* door|strong=\"H1817\"* shut|strong=\"H5462\"* against|strong=\"H6440\"* him|strong=\"H6440\"*. Isn’t the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H1121\"* his|strong=\"H7971\"* master|strong=\"H3427\"*’s feet|strong=\"H7272\"* behind him|strong=\"H6440\"*?”" + }, + { + "verseNum": 33, + "text": "While|strong=\"H5750\"* he|strong=\"H3068\"* was|strong=\"H3068\"* still|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H3381\"*, behold|strong=\"H2009\"*, the|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* him|strong=\"H5973\"*. Then|strong=\"H1696\"* he|strong=\"H3068\"* said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2063\"* evil|strong=\"H7451\"* is|strong=\"H3068\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*. Why|strong=\"H4100\"* should|strong=\"H3068\"* I|strong=\"H2009\"* wait|strong=\"H3176\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* any|strong=\"H5750\"* longer|strong=\"H5750\"*?”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Elisha said|strong=\"H1697\"*, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Tomorrow|strong=\"H4279\"* about|strong=\"H1697\"* this|strong=\"H3541\"* time|strong=\"H6256\"* a|strong=\"H3068\"* seah+ 7:1 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* will|strong=\"H3068\"* be|strong=\"H1697\"* sold for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:1 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* and|strong=\"H3068\"* two seahs|strong=\"H5429\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, in|strong=\"H3068\"* the|strong=\"H8085\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* Samaria|strong=\"H8111\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6030\"* the|strong=\"H5921\"* captain|strong=\"H7991\"* on|strong=\"H5921\"* whose|strong=\"H8033\"* hand|strong=\"H3027\"* the|strong=\"H5921\"* king|strong=\"H4428\"* leaned|strong=\"H8172\"* answered|strong=\"H6030\"* the|strong=\"H5921\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, if|strong=\"H2005\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* windows in|strong=\"H5921\"* heaven|strong=\"H8064\"*, could|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* be|strong=\"H1961\"*?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* there|strong=\"H1961\"* were|strong=\"H1961\"* four leprous|strong=\"H6879\"* men at|strong=\"H3427\"* the|strong=\"H5704\"* entrance|strong=\"H6607\"* of|strong=\"H3427\"* the|strong=\"H5704\"* gate|strong=\"H8179\"*. They|strong=\"H5704\"* said to|strong=\"H5704\"* one|strong=\"H1961\"* another|strong=\"H7453\"*, “Why|strong=\"H4100\"* do|strong=\"H4100\"* we|strong=\"H3068\"* sit|strong=\"H3427\"* here|strong=\"H6311\"* until|strong=\"H5704\"* we|strong=\"H3068\"* die|strong=\"H4191\"*?" + }, + { + "verseNum": 4, + "text": "If we|strong=\"H3068\"* say, ‘We|strong=\"H6258\"* will|strong=\"H5892\"* enter into|strong=\"H3212\"* the|strong=\"H8033\"* city|strong=\"H5892\"*,’ then|strong=\"H6258\"* the|strong=\"H8033\"* famine|strong=\"H7458\"* is|strong=\"H5892\"* in|strong=\"H3427\"* the|strong=\"H8033\"* city|strong=\"H5892\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H5892\"* die|strong=\"H4191\"* there|strong=\"H8033\"*. If we|strong=\"H3068\"* sit|strong=\"H3427\"* still|strong=\"H3427\"* here|strong=\"H6311\"*, we|strong=\"H3068\"* also|strong=\"H4191\"* die|strong=\"H4191\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* come|strong=\"H3212\"*, and|strong=\"H3212\"* let|strong=\"H6258\"*’s surrender to|strong=\"H4191\"* the|strong=\"H8033\"* army|strong=\"H4264\"* of|strong=\"H3427\"* the|strong=\"H8033\"* Syrians. If they|strong=\"H8033\"* save|strong=\"H2421\"* us|strong=\"H2421\"* alive|strong=\"H2421\"*, we|strong=\"H3068\"* will|strong=\"H5892\"* live|strong=\"H3427\"*; and|strong=\"H3212\"* if they|strong=\"H8033\"* kill|strong=\"H4191\"* us|strong=\"H2421\"*, we|strong=\"H3068\"* will|strong=\"H5892\"* only|strong=\"H5307\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 5, + "text": "They|strong=\"H8033\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H8033\"* the|strong=\"H5704\"* twilight|strong=\"H5399\"* to|strong=\"H5704\"* go|strong=\"H6965\"* to|strong=\"H5704\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5704\"* Syrians. When|strong=\"H5704\"* they|strong=\"H8033\"* had|strong=\"H4264\"* come|strong=\"H6965\"* to|strong=\"H5704\"* the|strong=\"H5704\"* outermost part|strong=\"H7097\"* of|strong=\"H4264\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5704\"* Syrians, behold|strong=\"H2009\"*, no|strong=\"H6965\"* man was|strong=\"H4264\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* Lord+ 7:6 The word translated “Lord” is “Adonai.”* had|strong=\"H3478\"* made|strong=\"H3478\"* the|strong=\"H5921\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Syrians to|strong=\"H3478\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* chariots|strong=\"H7393\"* and|strong=\"H3478\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* horses|strong=\"H5483\"*, even|strong=\"H5921\"* the|strong=\"H5921\"* noise|strong=\"H6963\"* of|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"*; and|strong=\"H3478\"* they|strong=\"H5921\"* said|strong=\"H8085\"* to|strong=\"H3478\"* one|strong=\"H8085\"* another, “Behold|strong=\"H2009\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* hired|strong=\"H7936\"* against|strong=\"H5921\"* us|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Hittites|strong=\"H2850\"* and|strong=\"H3478\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Egyptians|strong=\"H4714\"* to|strong=\"H3478\"* attack us|strong=\"H5921\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore they|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* fled|strong=\"H5127\"* in|strong=\"H5315\"* the|strong=\"H6965\"* twilight|strong=\"H5399\"*, and|strong=\"H6965\"* left|strong=\"H5800\"* their|strong=\"H5800\"* tents|strong=\"H4264\"*, their|strong=\"H5800\"* horses|strong=\"H5483\"*, and|strong=\"H6965\"* their|strong=\"H5800\"* donkeys|strong=\"H2543\"*, even the|strong=\"H6965\"* camp|strong=\"H4264\"* as|strong=\"H5315\"* it|strong=\"H1931\"* was|strong=\"H1931\"*, and|strong=\"H6965\"* fled|strong=\"H5127\"* for|strong=\"H5315\"* their|strong=\"H5800\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H5704\"* these lepers|strong=\"H6879\"* came|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5375\"* outermost part|strong=\"H7097\"* of|strong=\"H4264\"* the|strong=\"H5375\"* camp|strong=\"H4264\"*, they|strong=\"H8033\"* went|strong=\"H3212\"* into|strong=\"H7725\"* one|strong=\"H5375\"* tent, and|strong=\"H3701\"* ate and|strong=\"H3701\"* drank|strong=\"H8354\"*, then|strong=\"H5375\"* carried|strong=\"H5375\"* away|strong=\"H7725\"* silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3701\"* clothing and|strong=\"H3701\"* went|strong=\"H3212\"* and|strong=\"H3701\"* hid|strong=\"H2934\"* it|strong=\"H7725\"*. Then|strong=\"H5375\"* they|strong=\"H8033\"* came|strong=\"H3212\"* back|strong=\"H7725\"*, and|strong=\"H3701\"* entered|strong=\"H5704\"* into|strong=\"H7725\"* another tent and|strong=\"H3701\"* carried|strong=\"H5375\"* things from|strong=\"H7725\"* there|strong=\"H8033\"* also|strong=\"H8354\"*, and|strong=\"H3701\"* went|strong=\"H3212\"* and|strong=\"H3701\"* hid|strong=\"H2934\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6258\"* they|strong=\"H3117\"* said|strong=\"H3651\"* to|strong=\"H5704\"* one|strong=\"H2088\"* another|strong=\"H7453\"*, “We|strong=\"H3117\"* aren’t doing|strong=\"H6213\"* right|strong=\"H3651\"*. Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H4428\"* good news|strong=\"H1309\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* keep|strong=\"H6213\"* silent|strong=\"H2814\"*. If|strong=\"H3651\"* we|strong=\"H3068\"* wait|strong=\"H2442\"* until|strong=\"H5704\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* light, punishment|strong=\"H5771\"* will|strong=\"H4428\"* overtake|strong=\"H4672\"* us|strong=\"H5046\"*. Now|strong=\"H6258\"* therefore|strong=\"H3651\"* come|strong=\"H3212\"*, let|strong=\"H6258\"*’s go|strong=\"H3212\"* and|strong=\"H4428\"* tell|strong=\"H5046\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7121\"* they|strong=\"H1992\"* came and|strong=\"H6963\"* called|strong=\"H7121\"* to|strong=\"H7121\"* the|strong=\"H3588\"* city|strong=\"H5892\"* gatekeepers|strong=\"H7778\"*; and|strong=\"H6963\"* they|strong=\"H1992\"* told|strong=\"H5046\"* them|strong=\"H1992\"*, “We|strong=\"H3588\"* came to|strong=\"H7121\"* the|strong=\"H3588\"* camp|strong=\"H4264\"* of|strong=\"H5892\"* the|strong=\"H3588\"* Syrians, and|strong=\"H6963\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H5892\"* no man there|strong=\"H8033\"*, not|strong=\"H3588\"* even|strong=\"H3588\"* a|strong=\"H3068\"* man’s voice|strong=\"H6963\"*, but|strong=\"H3588\"* the|strong=\"H3588\"* horses|strong=\"H5483\"* tied, and|strong=\"H6963\"* the|strong=\"H3588\"* donkeys|strong=\"H2543\"* tied, and|strong=\"H6963\"* the|strong=\"H3588\"* tents|strong=\"H4264\"* as|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* gatekeepers|strong=\"H7778\"* called|strong=\"H7121\"* out and|strong=\"H4428\"* told|strong=\"H5046\"* it|strong=\"H7121\"* to|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"*’s household|strong=\"H1004\"* within|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* arose|strong=\"H6965\"* in|strong=\"H6213\"* the|strong=\"H3588\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* said|strong=\"H3318\"* to|strong=\"H3318\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, “I|strong=\"H3588\"* will|strong=\"H4428\"* now|strong=\"H4994\"* show|strong=\"H6213\"* you|strong=\"H3588\"* what|strong=\"H3045\"* the|strong=\"H3588\"* Syrians have|strong=\"H3045\"* done|strong=\"H6213\"* to|strong=\"H3318\"* us|strong=\"H4994\"*. They|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5892\"* hungry|strong=\"H7457\"*. Therefore|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3045\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* camp|strong=\"H4264\"* to|strong=\"H3318\"* hide|strong=\"H2247\"* themselves|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, saying, ‘When|strong=\"H3588\"* they|strong=\"H3588\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, we|strong=\"H3068\"* shall|strong=\"H4428\"* take|strong=\"H8610\"* them|strong=\"H6213\"* alive|strong=\"H2416\"*, and|strong=\"H6965\"* get|strong=\"H6965\"* into|strong=\"H6213\"* the|strong=\"H3588\"* city|strong=\"H5892\"*.’”" + }, + { + "verseNum": 13, + "text": "One|strong=\"H3605\"* of|strong=\"H5650\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* answered|strong=\"H6030\"*, “Please|strong=\"H4994\"* let|strong=\"H7971\"* some|strong=\"H4480\"* people|strong=\"H1995\"* take|strong=\"H3947\"* five|strong=\"H2568\"* of|strong=\"H5650\"* the|strong=\"H3605\"* horses|strong=\"H5483\"* that|strong=\"H7200\"* remain|strong=\"H7604\"*, which|strong=\"H3478\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H3478\"* the|strong=\"H3605\"* city. Behold|strong=\"H2009\"*, they|strong=\"H3478\"* are|strong=\"H3478\"* like|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H3478\"* it|strong=\"H7200\"*. Behold|strong=\"H2009\"*, they|strong=\"H3478\"* are|strong=\"H3478\"* like|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* are|strong=\"H3478\"* consumed|strong=\"H8552\"*. Let|strong=\"H7971\"*’s send|strong=\"H7971\"* and|strong=\"H3478\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H7971\"* they|strong=\"H3947\"* took|strong=\"H3947\"* two|strong=\"H8147\"* chariots|strong=\"H7393\"* with|strong=\"H3212\"* horses|strong=\"H5483\"*; and|strong=\"H7971\"* the|strong=\"H7200\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* out|strong=\"H7971\"* to|strong=\"H3212\"* the|strong=\"H7200\"* Syrian army|strong=\"H4264\"*, saying, “Go|strong=\"H3212\"* and|strong=\"H7971\"* see|strong=\"H7200\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H5704\"* went|strong=\"H3212\"* after|strong=\"H2009\"* them|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*; and|strong=\"H7725\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* path|strong=\"H1870\"* was|strong=\"H4428\"* full|strong=\"H4392\"* of|strong=\"H4428\"* garments and|strong=\"H7725\"* equipment|strong=\"H3627\"* which|strong=\"H4397\"* the|strong=\"H3605\"* Syrians had|strong=\"H4428\"* cast|strong=\"H7993\"* away|strong=\"H7725\"* in|strong=\"H4428\"* their|strong=\"H3605\"* haste|strong=\"H2648\"*. The|strong=\"H3605\"* messengers|strong=\"H4397\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* told|strong=\"H5046\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3068\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* plundered the|strong=\"H3068\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Syrians. So|strong=\"H1961\"* a|strong=\"H3068\"* seah+ 7:16 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H3068\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* was|strong=\"H3068\"* sold|strong=\"H3318\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, and|strong=\"H3068\"* two measures|strong=\"H5429\"* of|strong=\"H3068\"* barley|strong=\"H8184\"* for|strong=\"H3068\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:16 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* according to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* had|strong=\"H4428\"* appointed|strong=\"H6485\"* the|strong=\"H5921\"* captain|strong=\"H7991\"* on|strong=\"H5921\"* whose|strong=\"H8179\"* hand|strong=\"H3027\"* he|strong=\"H3027\"* leaned|strong=\"H8172\"* to|strong=\"H1696\"* be|strong=\"H4191\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* trampled|strong=\"H7429\"* over|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*, and|strong=\"H4428\"* he|strong=\"H3027\"* died|strong=\"H4191\"* as|strong=\"H5971\"* the|strong=\"H5921\"* man|strong=\"H4191\"* of|strong=\"H4428\"* God|strong=\"H3027\"* had|strong=\"H4428\"* said|strong=\"H1696\"*, who|strong=\"H5971\"* spoke|strong=\"H1696\"* when|strong=\"H1696\"* the|strong=\"H5921\"* king|strong=\"H4428\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H1961\"* happened|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* man|strong=\"H8179\"* of|strong=\"H4428\"* God had|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1961\"* king|strong=\"H4428\"*, saying|strong=\"H1696\"*, “Two seahs|strong=\"H5429\"*+ 7:18 1 seah is about 7 liters or 1.9 gallons or 0.8 pecks* of|strong=\"H4428\"* barley|strong=\"H8184\"* for|strong=\"H4428\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*,+ 7:18 A shekel is about 10 grams or about 0.35 ounces. In this context, it was probably a silver coin weighing that much.* and|strong=\"H4428\"* a|strong=\"H3068\"* seah of|strong=\"H4428\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H4428\"* a|strong=\"H3068\"* shekel|strong=\"H8255\"*, shall|strong=\"H4428\"* be|strong=\"H1961\"* tomorrow|strong=\"H4279\"* about|strong=\"H1961\"* this|strong=\"H1696\"* time|strong=\"H6256\"* in|strong=\"H4428\"* the|strong=\"H1961\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*;”" + }, + { + "verseNum": 19, + "text": "and|strong=\"H3068\"* that|strong=\"H7200\"* captain|strong=\"H7991\"* answered|strong=\"H6030\"* the|strong=\"H7200\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Now|strong=\"H1961\"*, behold|strong=\"H2009\"*, if|strong=\"H2005\"* Yahweh|strong=\"H3068\"* made|strong=\"H6213\"* windows in|strong=\"H3068\"* heaven|strong=\"H8064\"*, might|strong=\"H3068\"* such|strong=\"H2088\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* be|strong=\"H1961\"*?” and|strong=\"H3068\"* he|strong=\"H8033\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, you|strong=\"H6213\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H6213\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, but|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* eat of|strong=\"H3068\"* it|strong=\"H6213\"*.”" + }, + { + "verseNum": 20, + "text": "It|strong=\"H3651\"* happened|strong=\"H1961\"* like|strong=\"H1961\"* that|strong=\"H5971\"* to|strong=\"H4191\"* him|strong=\"H4191\"*, for|strong=\"H4191\"* the|strong=\"H1961\"* people|strong=\"H5971\"* trampled|strong=\"H7429\"* over|strong=\"H8179\"* him|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H1961\"* gate|strong=\"H8179\"*, and|strong=\"H5971\"* he|strong=\"H3651\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* Elisha|strong=\"H7121\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3588\"* woman|strong=\"H1004\"* whose|strong=\"H1121\"* son|strong=\"H1121\"* he|strong=\"H3588\"* had|strong=\"H3068\"* restored|strong=\"H2421\"* to|strong=\"H1696\"* life|strong=\"H2421\"*, saying|strong=\"H1696\"*, “Arise|strong=\"H6965\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, you|strong=\"H3588\"* and|strong=\"H1121\"* your|strong=\"H3068\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* stay|strong=\"H1481\"* for|strong=\"H3588\"* a|strong=\"H3068\"* while|strong=\"H3588\"* wherever you|strong=\"H3588\"* can|strong=\"H1004\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* famine|strong=\"H7458\"*. It|strong=\"H7121\"* will|strong=\"H3068\"* also|strong=\"H1571\"* come|strong=\"H3212\"* on|strong=\"H3068\"* the|strong=\"H3588\"* land for|strong=\"H3588\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H6213\"* woman|strong=\"H1004\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* did|strong=\"H6213\"* according to|strong=\"H3212\"* the|strong=\"H6213\"* man of|strong=\"H1004\"* God’s word|strong=\"H1697\"*. She|strong=\"H1931\"* went|strong=\"H3212\"* with|strong=\"H1004\"* her|strong=\"H1931\"* household|strong=\"H1004\"*, and|strong=\"H6965\"* lived|strong=\"H1481\"* in|strong=\"H8141\"* the|strong=\"H6213\"* land of|strong=\"H1004\"* the|strong=\"H6213\"* Philistines|strong=\"H6430\"* for|strong=\"H6213\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"H1004\"* the|strong=\"H7725\"* end|strong=\"H7097\"* of|strong=\"H4428\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, the|strong=\"H7725\"* woman|strong=\"H1004\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* land|strong=\"H7704\"* of|strong=\"H4428\"* the|strong=\"H7725\"* Philistines|strong=\"H6430\"*. Then|strong=\"H1961\"* she went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* beg the|strong=\"H7725\"* king|strong=\"H4428\"* for|strong=\"H1004\"* her|strong=\"H3318\"* house|strong=\"H1004\"* and|strong=\"H7725\"* for|strong=\"H1004\"* her|strong=\"H3318\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* the|strong=\"H3605\"* king|strong=\"H4428\"* was|strong=\"H4428\"* talking|strong=\"H1696\"* with|strong=\"H6213\"* Gehazi|strong=\"H1522\"* the|strong=\"H3605\"* servant|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H3605\"* man|strong=\"H5288\"* of|strong=\"H4428\"* God, saying|strong=\"H1696\"*, “Please|strong=\"H4994\"* tell|strong=\"H1696\"* me|strong=\"H4994\"* all|strong=\"H3605\"* the|strong=\"H3605\"* great|strong=\"H1419\"* things|strong=\"H1419\"* that|strong=\"H3605\"* Elisha has|strong=\"H4428\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* telling|strong=\"H5608\"* the|strong=\"H5921\"* king|strong=\"H4428\"* how|strong=\"H2009\"* he|strong=\"H1931\"* had|strong=\"H1961\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"* him|strong=\"H5921\"* who|strong=\"H1931\"* was|strong=\"H1961\"* dead|strong=\"H4191\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* woman|strong=\"H2088\"* whose|strong=\"H1121\"* son|strong=\"H1121\"* he|strong=\"H1931\"* had|strong=\"H1961\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"* begged the|strong=\"H5921\"* king|strong=\"H4428\"* for|strong=\"H5921\"* her|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H1121\"* for|strong=\"H5921\"* her|strong=\"H5921\"* land|strong=\"H7704\"*. Gehazi|strong=\"H1522\"* said, “My|strong=\"H5921\"* lord, O|strong=\"H3068\"* king|strong=\"H4428\"*, this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H5921\"* woman|strong=\"H2088\"*, and|strong=\"H1121\"* this|strong=\"H2088\"* is|strong=\"H2088\"* her|strong=\"H5921\"* son|strong=\"H1121\"*, whom Elisha|strong=\"H2421\"* restored|strong=\"H2421\"* to|strong=\"H4191\"* life|strong=\"H2421\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H7592\"* the|strong=\"H3605\"* woman, she|strong=\"H5704\"* told|strong=\"H5608\"* him|strong=\"H5414\"*. So|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* appointed|strong=\"H5414\"* to|strong=\"H5704\"* her|strong=\"H3605\"* a|strong=\"H3068\"* certain officer|strong=\"H5631\"*, saying, “Restore|strong=\"H7725\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3117\"* hers, and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruits|strong=\"H8393\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"* since|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* she|strong=\"H5704\"* left|strong=\"H5800\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"*.”" + }, + { + "verseNum": 7, + "text": "Elisha|strong=\"H5704\"* came|strong=\"H4428\"* to|strong=\"H5704\"* Damascus|strong=\"H1834\"*; and|strong=\"H4428\"* Benhadad the|strong=\"H5704\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria was|strong=\"H4428\"* sick|strong=\"H2470\"*. He|strong=\"H5704\"* was|strong=\"H4428\"* told|strong=\"H5046\"*, “The|strong=\"H5704\"* man of|strong=\"H4428\"* God has|strong=\"H4428\"* come here|strong=\"H2008\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* Hazael|strong=\"H2371\"*, “Take|strong=\"H3947\"* a|strong=\"H3068\"* present|strong=\"H4503\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* go|strong=\"H3212\"* meet|strong=\"H7125\"* the|strong=\"H3947\"* man|strong=\"H2088\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* him|strong=\"H3027\"*, saying, ‘Will|strong=\"H3068\"* I|strong=\"H2088\"* recover|strong=\"H2421\"* from|strong=\"H3027\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*?’”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H3947\"* Hazael|strong=\"H2371\"* went|strong=\"H3212\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* him|strong=\"H6440\"* and|strong=\"H1121\"* took|strong=\"H3947\"* a|strong=\"H3068\"* present|strong=\"H4503\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, even of|strong=\"H1121\"* every|strong=\"H3605\"* good|strong=\"H2898\"* thing|strong=\"H2088\"* of|strong=\"H1121\"* Damascus|strong=\"H1834\"*, forty camels|strong=\"H1581\"*’ burden|strong=\"H4853\"*, and|strong=\"H1121\"* came|strong=\"H3212\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H1121\"* said, “Your|strong=\"H3605\"* son|strong=\"H1121\"* Benhadad king|strong=\"H4428\"* of|strong=\"H1121\"* Syria has|strong=\"H4428\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H3212\"* you|strong=\"H6440\"*, saying, ‘Will|strong=\"H4428\"* I|strong=\"H2088\"* recover|strong=\"H2421\"* from|strong=\"H6440\"* this|strong=\"H2088\"* sickness|strong=\"H2483\"*?’”" + }, + { + "verseNum": 10, + "text": "Elisha|strong=\"H2421\"* said to|strong=\"H4191\"* him|strong=\"H7200\"*, “Go|strong=\"H3212\"*, tell|strong=\"H7200\"* him|strong=\"H7200\"*, ‘You|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* recover|strong=\"H2421\"*;’ however|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"* that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H5704\"* settled|strong=\"H5975\"* his|strong=\"H7760\"* gaze|strong=\"H6440\"* steadfastly on|strong=\"H7760\"* him|strong=\"H6440\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H6440\"* ashamed. Then|strong=\"H5975\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H6440\"* God wept|strong=\"H1058\"*." + }, + { + "verseNum": 12, + "text": "Hazael|strong=\"H2371\"* said, “Why|strong=\"H4069\"* do|strong=\"H6213\"* you|strong=\"H3588\"* weep|strong=\"H1058\"*, my|strong=\"H3045\"* lord?”" + }, + { + "verseNum": 13, + "text": "Hazael|strong=\"H2371\"* said|strong=\"H1697\"*, “But|strong=\"H3588\"* what|strong=\"H4100\"* is|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* but|strong=\"H3588\"* a|strong=\"H3068\"* dog|strong=\"H3611\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* could|strong=\"H2088\"* do|strong=\"H6213\"* this|strong=\"H2088\"* great|strong=\"H1419\"* thing|strong=\"H1697\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H4100\"* he|strong=\"H3212\"* departed|strong=\"H3212\"* from|strong=\"H3212\"* Elisha|strong=\"H2421\"*, and|strong=\"H3212\"* came|strong=\"H3212\"* to|strong=\"H3212\"* his|strong=\"H2421\"* master, who|strong=\"H4100\"* said to|strong=\"H3212\"* him|strong=\"H2421\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* Elisha|strong=\"H2421\"* say to|strong=\"H3212\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 15, + "text": "On|strong=\"H5921\"* the|strong=\"H6440\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, he|strong=\"H5921\"* took|strong=\"H3947\"* a|strong=\"H3068\"* thick cloth|strong=\"H4346\"*, dipped|strong=\"H2881\"* it|strong=\"H5921\"* in|strong=\"H5921\"* water|strong=\"H4325\"*, and|strong=\"H6440\"* spread|strong=\"H6566\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4427\"*’s face|strong=\"H6440\"*, so|strong=\"H3947\"* that|strong=\"H4325\"* he|strong=\"H5921\"* died|strong=\"H4191\"*. Then|strong=\"H1961\"* Hazael|strong=\"H2371\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H3947\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H8141\"* the|strong=\"H3092\"* fifth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Jehoshaphat|strong=\"H3092\"* being|strong=\"H4427\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* then|strong=\"H4428\"*, Jehoram|strong=\"H3088\"* the|strong=\"H3092\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H8147\"* was|strong=\"H1961\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8147\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*. He|strong=\"H8147\"* reigned|strong=\"H4427\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* married Ahab’s daughter|strong=\"H1323\"*. He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 19, + "text": "However, Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* Judah|strong=\"H3063\"*, for|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*, as|strong=\"H3117\"* he|strong=\"H3117\"* promised|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* him|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* for|strong=\"H3068\"* his|strong=\"H3605\"* children|strong=\"H1121\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Edom revolted|strong=\"H6586\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1961\"* Joram|strong=\"H3141\"* crossed|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H1961\"* Zair|strong=\"H6811\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"* with|strong=\"H5973\"* him|strong=\"H5221\"*; and|strong=\"H6965\"* he|strong=\"H1931\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H5674\"* night|strong=\"H3915\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Edomites who|strong=\"H3605\"* surrounded|strong=\"H5437\"* him|strong=\"H5221\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"*; and|strong=\"H6965\"* the|strong=\"H3605\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* to|strong=\"H1961\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 22, + "text": "So|strong=\"H2088\"* Edom revolted|strong=\"H6586\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3117\"* hand|strong=\"H3027\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Then|strong=\"H2088\"* Libnah|strong=\"H3841\"* revolted|strong=\"H6586\"* at|strong=\"H3117\"* the|strong=\"H3117\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Joram|strong=\"H3141\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 24, + "text": "Joram|strong=\"H3141\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaziah his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Ahaziah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 26, + "text": "Ahaziah was|strong=\"H8034\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began|strong=\"H3478\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* one|strong=\"H1121\"* year|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3478\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Athaliah|strong=\"H6271\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1931\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* and|strong=\"H3068\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H1931\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* the|strong=\"H3588\"* son-in-law|strong=\"H2860\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5221\"* went|strong=\"H3212\"* with|strong=\"H5973\"* Joram|strong=\"H3141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab to|strong=\"H3212\"* war|strong=\"H4421\"* against|strong=\"H5973\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria at|strong=\"H4421\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* Syrians wounded|strong=\"H5221\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 29, + "text": "King|strong=\"H4428\"* Joram|strong=\"H3141\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1121\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* from|strong=\"H4480\"* the|strong=\"H7200\"* wounds|strong=\"H4347\"* which|strong=\"H1931\"* the|strong=\"H7200\"* Syrians had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H4428\"* Ramah|strong=\"H7414\"*, when|strong=\"H3588\"* he|strong=\"H1931\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria. Ahaziah the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H7725\"* see|strong=\"H7200\"* Joram|strong=\"H3141\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sick|strong=\"H2470\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Elisha|strong=\"H7121\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* called|strong=\"H7121\"* one|strong=\"H2088\"* of|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3947\"* prophets|strong=\"H5030\"*, and|strong=\"H1121\"* said|strong=\"H7121\"* to|strong=\"H3212\"* him|strong=\"H7121\"*, “Put|strong=\"H2296\"* your|strong=\"H3947\"* belt on|strong=\"H2296\"* your|strong=\"H3947\"* waist|strong=\"H4975\"*, take|strong=\"H3947\"* this|strong=\"H2088\"* vial|strong=\"H6378\"* of|strong=\"H1121\"* oil|strong=\"H8081\"* in|strong=\"H3212\"* your|strong=\"H3947\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H7200\"* you|strong=\"H8432\"* come|strong=\"H6965\"* there|strong=\"H8033\"*, find|strong=\"H7200\"* Jehu|strong=\"H3058\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, and|strong=\"H1121\"* go|strong=\"H6965\"* in|strong=\"H8432\"* and|strong=\"H1121\"* make|strong=\"H7200\"* him|strong=\"H7200\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H1121\"* among|strong=\"H8432\"* his|strong=\"H7200\"* brothers|strong=\"H1121\"*, and|strong=\"H1121\"* take|strong=\"H1121\"* him|strong=\"H7200\"* to|strong=\"H1121\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3947\"* take|strong=\"H3947\"* the|strong=\"H5921\"* vial|strong=\"H6378\"* of|strong=\"H4428\"* oil|strong=\"H8081\"*, and|strong=\"H3478\"* pour|strong=\"H3332\"* it|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* have|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*.”’ Then|strong=\"H3947\"* open|strong=\"H6605\"* the|strong=\"H5921\"* door|strong=\"H1817\"*, flee|strong=\"H5127\"*, and|strong=\"H3478\"* don’t wait|strong=\"H2442\"*.”" + }, + { + "verseNum": 4, + "text": "So the|strong=\"H3212\"* young|strong=\"H5288\"* man|strong=\"H5288\"*, the|strong=\"H3212\"* young|strong=\"H5288\"* prophet|strong=\"H5030\"*, went|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3427\"* he|strong=\"H3605\"* came|strong=\"H1697\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1697\"* the|strong=\"H3605\"* army|strong=\"H2428\"* were|strong=\"H1697\"* sitting|strong=\"H3427\"*. Then|strong=\"H2009\"* he|strong=\"H3605\"* said|strong=\"H1697\"*, “I|strong=\"H2009\"* have|strong=\"H1697\"* a|strong=\"H3068\"* message|strong=\"H1697\"* for|strong=\"H3427\"* you|strong=\"H3605\"*, captain|strong=\"H8269\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3478\"* into|strong=\"H3332\"* the|strong=\"H3541\"* house|strong=\"H1004\"*. Then|strong=\"H6965\"* he|strong=\"H3068\"* poured|strong=\"H3332\"* the|strong=\"H3541\"* oil|strong=\"H8081\"* on|strong=\"H3068\"* his|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H6965\"* said to|strong=\"H3478\"* him|strong=\"H4886\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H3068\"* anointed|strong=\"H4886\"* you|strong=\"H4886\"* king|strong=\"H4428\"* over|strong=\"H4428\"* the|strong=\"H3541\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* over|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* must|strong=\"H1818\"* strike|strong=\"H5221\"* your|strong=\"H3068\"* master Ahab’s house|strong=\"H1004\"*, that|strong=\"H3605\"* I|strong=\"H5650\"* may|strong=\"H3068\"* avenge|strong=\"H5358\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, at|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* Jezebel." + }, + { + "verseNum": 8, + "text": "For|strong=\"H1004\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Ahab will|strong=\"H3478\"* perish|strong=\"H3772\"*. I|strong=\"H3772\"* will|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Ahab everyone|strong=\"H3605\"* who|strong=\"H3605\"* urinates against|strong=\"H3605\"* a|strong=\"H3068\"* wall|strong=\"H7023\"*,+ 9:8 or, male* both|strong=\"H3605\"* him|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3478\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H3478\"* him|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3478\"* left|strong=\"H5800\"* at|strong=\"H3478\"* large|strong=\"H1004\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* make|strong=\"H5414\"* Ahab’s house|strong=\"H1004\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, and|strong=\"H1121\"* like|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahijah." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6605\"* dogs|strong=\"H3611\"* will|strong=\"H3611\"* eat Jezebel on|strong=\"H5127\"* the|strong=\"H6605\"* plot of|strong=\"H2506\"* ground of|strong=\"H2506\"* Jezreel|strong=\"H3157\"*, and|strong=\"H1817\"* there shall|strong=\"H3611\"* be no|strong=\"H2506\"* one to|strong=\"H5127\"* bury|strong=\"H6912\"* her|strong=\"H6605\"*.’” Then|strong=\"H2506\"* he|strong=\"H6912\"* opened|strong=\"H6605\"* the|strong=\"H6605\"* door|strong=\"H1817\"* and|strong=\"H1817\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3318\"* Jehu|strong=\"H3058\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3045\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* his|strong=\"H3045\"* lord and|strong=\"H5650\"* one|strong=\"H2088\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, “Is|strong=\"H2088\"* all|strong=\"H3045\"* well|strong=\"H7965\"*? Why|strong=\"H4069\"* did|strong=\"H5650\"* this|strong=\"H2088\"* madman|strong=\"H7696\"* come|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3045\"*?”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* said, “That|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*. Tell|strong=\"H5046\"* us|strong=\"H4994\"* now|strong=\"H4994\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3947\"* they|strong=\"H3947\"* hurried|strong=\"H4116\"*, and|strong=\"H4116\"* each|strong=\"H3947\"* man took|strong=\"H3947\"* his|strong=\"H7760\"* cloak, and|strong=\"H4116\"* put|strong=\"H7760\"* it|strong=\"H7760\"* under|strong=\"H8478\"* him|strong=\"H4427\"* on|strong=\"H7760\"* the|strong=\"H3947\"* top|strong=\"H1634\"* of|strong=\"H8478\"* the|strong=\"H3947\"* stairs|strong=\"H4609\"*, and|strong=\"H4116\"* blew|strong=\"H8628\"* the|strong=\"H3947\"* trumpet|strong=\"H7782\"*, saying, “Jehu|strong=\"H3058\"* is|strong=\"H3058\"* king|strong=\"H4427\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H1961\"* Jehu|strong=\"H3058\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"* conspired|strong=\"H7194\"* against|strong=\"H6440\"* Joram|strong=\"H3141\"*. (Now|strong=\"H1961\"* Joram|strong=\"H3141\"* was|strong=\"H1961\"* defending|strong=\"H8104\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, because|strong=\"H6440\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria;" + }, + { + "verseNum": 15, + "text": "but|strong=\"H5221\"* King|strong=\"H4428\"* Joram|strong=\"H3088\"* had|strong=\"H4428\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H3426\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* of|strong=\"H4428\"* the|strong=\"H5221\"* wounds|strong=\"H4347\"* which|strong=\"H5892\"* the|strong=\"H5221\"* Syrians had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* when|strong=\"H3318\"* he|strong=\"H4480\"* fought|strong=\"H3898\"* with|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria.) Jehu|strong=\"H3058\"* said|strong=\"H3318\"*, “If|strong=\"H3426\"* this|strong=\"H7725\"* is|strong=\"H3426\"* your|strong=\"H7725\"* thinking, then|strong=\"H3318\"* let|strong=\"H5046\"* no|strong=\"H4480\"* one|strong=\"H4480\"* escape|strong=\"H6412\"* and|strong=\"H7725\"* go|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5221\"* city|strong=\"H5892\"* to|strong=\"H7725\"* go|strong=\"H3212\"* to|strong=\"H7725\"* tell|strong=\"H5046\"* it|strong=\"H7725\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H3588\"* Jehu|strong=\"H3058\"* rode|strong=\"H7392\"* in|strong=\"H4428\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* and|strong=\"H3063\"* went|strong=\"H3212\"* to|strong=\"H3381\"* Jezreel|strong=\"H3157\"*, for|strong=\"H3588\"* Joram|strong=\"H3141\"* lay|strong=\"H7901\"* there|strong=\"H8033\"*. Ahaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* come|strong=\"H3212\"* down|strong=\"H3381\"* to|strong=\"H3381\"* see|strong=\"H7200\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3947\"* the|strong=\"H5921\"* watchman|strong=\"H6822\"* was|strong=\"H3058\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* in|strong=\"H5921\"* Jezreel|strong=\"H3157\"*, and|strong=\"H7971\"* he|strong=\"H5921\"* spied|strong=\"H7200\"* the|strong=\"H5921\"* company|strong=\"H8229\"* of|strong=\"H5921\"* Jehu|strong=\"H3058\"* as|strong=\"H3947\"* he|strong=\"H5921\"* came|strong=\"H3058\"*, and|strong=\"H7971\"* said, “I|strong=\"H5921\"* see|strong=\"H7200\"* a|strong=\"H3068\"* company|strong=\"H8229\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H3541\"* one|strong=\"H3808\"* went|strong=\"H3212\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* him|strong=\"H5046\"*, and|strong=\"H7725\"* said, “the|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Is|strong=\"H4100\"* it|strong=\"H7725\"* peace|strong=\"H7965\"*?’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H7971\"* he|strong=\"H7971\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* second|strong=\"H8145\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"*, who|strong=\"H4428\"* came|strong=\"H4428\"* to|strong=\"H7971\"* them|strong=\"H7971\"* and|strong=\"H7971\"* said, “The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Is|strong=\"H4100\"* it|strong=\"H5437\"* peace|strong=\"H7965\"*?’”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* watchman|strong=\"H6822\"* said, “He|strong=\"H3588\"* came|strong=\"H7725\"* to|strong=\"H5704\"* them|strong=\"H7725\"*, and|strong=\"H1121\"* isn’t coming back|strong=\"H7725\"*. The|strong=\"H3588\"* driving|strong=\"H4491\"* is|strong=\"H1121\"* like|strong=\"H3808\"* the|strong=\"H3588\"* driving|strong=\"H4491\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* drives|strong=\"H5090\"* furiously|strong=\"H7697\"*.”" + }, + { + "verseNum": 21, + "text": "Joram|strong=\"H3088\"* said|strong=\"H3318\"*, “Get|strong=\"H3318\"* ready|strong=\"H4672\"*!”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H1961\"* Joram|strong=\"H3088\"* saw|strong=\"H7200\"* Jehu|strong=\"H3058\"*, he|strong=\"H5704\"* said, “Is|strong=\"H4100\"* it|strong=\"H7200\"* peace|strong=\"H7965\"*, Jehu|strong=\"H3058\"*?”" + }, + { + "verseNum": 23, + "text": "Joram|strong=\"H3088\"* turned|strong=\"H2015\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* and|strong=\"H3027\"* fled|strong=\"H5127\"*, and|strong=\"H3027\"* said to|strong=\"H3027\"* Ahaziah, “This|strong=\"H3027\"* is|strong=\"H3027\"* treason, Ahaziah!”" + }, + { + "verseNum": 24, + "text": "Jehu|strong=\"H3058\"* drew|strong=\"H4390\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* with|strong=\"H4390\"* his|strong=\"H5221\"* full|strong=\"H4390\"* strength|strong=\"H2220\"*, and|strong=\"H3027\"* struck|strong=\"H5221\"* Joram|strong=\"H3088\"* between his|strong=\"H5221\"* arms|strong=\"H2220\"*; and|strong=\"H3027\"* the|strong=\"H5221\"* arrow|strong=\"H2678\"* went|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3318\"* his|strong=\"H5221\"* heart|strong=\"H3820\"*, and|strong=\"H3027\"* he|strong=\"H3027\"* sunk down|strong=\"H5221\"* in|strong=\"H3027\"* his|strong=\"H5221\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H2088\"* Jehu said to|strong=\"H3068\"* Bidkar his|strong=\"H5375\"* captain|strong=\"H7991\"*, “Pick|strong=\"H5375\"* him|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* throw|strong=\"H7993\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* plot|strong=\"H2513\"* of|strong=\"H3068\"* the|strong=\"H5921\"* field|strong=\"H7704\"* of|strong=\"H3068\"* Naboth|strong=\"H5022\"* the|strong=\"H5921\"* Jezreelite|strong=\"H3158\"*; for|strong=\"H3588\"* remember|strong=\"H2142\"* how|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H3068\"* I|strong=\"H3588\"* rode|strong=\"H7392\"* together|strong=\"H5921\"* after|strong=\"H5921\"* Ahab his|strong=\"H5375\"* father, Yahweh|strong=\"H3068\"* laid|strong=\"H5375\"* this|strong=\"H2088\"* burden|strong=\"H4853\"* on|strong=\"H5921\"* him|strong=\"H5921\"*:" + }, + { + "verseNum": 26, + "text": "‘Surely|strong=\"H7999\"* I|strong=\"H1697\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* yesterday the|strong=\"H5002\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* Naboth|strong=\"H5022\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* his|strong=\"H5375\"* sons|strong=\"H1121\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H1121\"* I|strong=\"H1697\"* will|strong=\"H3068\"* repay|strong=\"H7999\"* you|strong=\"H3808\"* in|strong=\"H3068\"* this|strong=\"H2063\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H2513\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* take|strong=\"H5375\"* and|strong=\"H1121\"* cast|strong=\"H7993\"* him|strong=\"H7200\"* onto the|strong=\"H5002\"* plot|strong=\"H2513\"* of|strong=\"H1121\"* ground|strong=\"H2513\"*, according to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H7200\"* when|strong=\"H7200\"* Ahaziah the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* saw|strong=\"H7200\"* this|strong=\"H7200\"*, he|strong=\"H8033\"* fled|strong=\"H5127\"* by|strong=\"H1870\"* the|strong=\"H7200\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H7200\"* garden|strong=\"H1588\"* house|strong=\"H1004\"*. Jehu|strong=\"H3058\"* followed|strong=\"H7291\"* after|strong=\"H7291\"* him|strong=\"H5221\"*, and|strong=\"H3063\"* said, “Strike|strong=\"H5221\"* him|strong=\"H5221\"* also|strong=\"H1571\"* in|strong=\"H1004\"* the|strong=\"H7200\"* chariot|strong=\"H4818\"*!” They|strong=\"H8033\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H1004\"* the|strong=\"H7200\"* ascent|strong=\"H4608\"* of|strong=\"H4428\"* Gur|strong=\"H1483\"*, which|strong=\"H1004\"* is|strong=\"H1571\"* by|strong=\"H1870\"* Ibleam|strong=\"H2991\"*. He|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Megiddo|strong=\"H4023\"*, and|strong=\"H3063\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "His|strong=\"H1732\"* servants|strong=\"H5650\"* carried|strong=\"H7392\"* him|strong=\"H5973\"* in|strong=\"H6912\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H5973\"* in|strong=\"H6912\"* his|strong=\"H1732\"* tomb|strong=\"H6900\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joram|strong=\"H3141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab, Ahaziah began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 30, + "text": "When|strong=\"H8085\"* Jehu|strong=\"H3058\"* had|strong=\"H5869\"* come to|strong=\"H8085\"* Jezreel|strong=\"H3157\"*, Jezebel heard|strong=\"H8085\"* of|strong=\"H7218\"* it|strong=\"H7760\"*; and|strong=\"H5869\"* she|strong=\"H2474\"* painted|strong=\"H7760\"* her|strong=\"H7760\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* adorned|strong=\"H3190\"* her|strong=\"H7760\"* head|strong=\"H7218\"*, and|strong=\"H5869\"* looked|strong=\"H8259\"* out|strong=\"H8259\"* at|strong=\"H7218\"* the|strong=\"H8085\"* window|strong=\"H2474\"*." + }, + { + "verseNum": 31, + "text": "As|strong=\"H8179\"* Jehu|strong=\"H3058\"* entered|strong=\"H3058\"* in|strong=\"H2026\"* at|strong=\"H2026\"* the|strong=\"H2026\"* gate|strong=\"H8179\"*, she said, “Do you come in|strong=\"H2026\"* peace|strong=\"H7965\"*, Zimri|strong=\"H2174\"*, you murderer|strong=\"H2026\"* of|strong=\"H8179\"* your|strong=\"H2026\"* master?”" + }, + { + "verseNum": 32, + "text": "He|strong=\"H8147\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* face|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* window|strong=\"H2474\"*, and|strong=\"H6440\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* on|strong=\"H5375\"* my|strong=\"H5375\"* side|strong=\"H8147\"*? Who|strong=\"H4310\"*?”" + }, + { + "verseNum": 33, + "text": "He|strong=\"H1818\"* said, “Throw|strong=\"H8058\"* her|strong=\"H8058\"* down|strong=\"H7429\"*!”" + }, + { + "verseNum": 34, + "text": "When|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* come|strong=\"H4994\"* in|strong=\"H4428\"*, he|strong=\"H1931\"* ate and|strong=\"H4428\"* drank|strong=\"H8354\"*. Then|strong=\"H4428\"* he|strong=\"H1931\"* said, “See|strong=\"H6485\"* now|strong=\"H4994\"* to|strong=\"H4428\"* this|strong=\"H2063\"* cursed woman|strong=\"H1323\"*, and|strong=\"H4428\"* bury|strong=\"H6912\"* her|strong=\"H6485\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* king|strong=\"H4428\"*’s daughter|strong=\"H1323\"*.”" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3588\"* went|strong=\"H3212\"* to|strong=\"H3212\"* bury|strong=\"H6912\"* her|strong=\"H4672\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* found|strong=\"H4672\"* no|strong=\"H3808\"* more|strong=\"H3808\"* of|strong=\"H3027\"* her|strong=\"H4672\"* than|strong=\"H3808\"* the|strong=\"H3588\"* skull|strong=\"H1538\"*, the|strong=\"H3588\"* feet|strong=\"H7272\"*, and|strong=\"H3027\"* the|strong=\"H3588\"* palms|strong=\"H3709\"* of|strong=\"H3027\"* her|strong=\"H4672\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* back|strong=\"H7725\"*, and|strong=\"H3068\"* told|strong=\"H5046\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 37, + "text": "and|strong=\"H6440\"* the|strong=\"H6440\"* body|strong=\"H5038\"* of|strong=\"H6440\"* Jezebel will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* field|strong=\"H7704\"* on|strong=\"H5921\"* Jezreel|strong=\"H3157\"*’s land|strong=\"H7704\"*, so|strong=\"H1961\"* that|strong=\"H3808\"* they|strong=\"H3808\"* won’t say, “This|strong=\"H2063\"* is|strong=\"H1961\"* Jezebel.”’”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7971\"* Ahab had|strong=\"H1121\"* seventy|strong=\"H7657\"* sons|strong=\"H1121\"* in|strong=\"H3789\"* Samaria|strong=\"H8111\"*. Jehu|strong=\"H3058\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* Samaria|strong=\"H8111\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* Jezreel|strong=\"H3157\"*, even the|strong=\"H7971\"* elders|strong=\"H2205\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* those|strong=\"H1121\"* who|strong=\"H1121\"* brought|strong=\"H7971\"* up|strong=\"H1121\"* Ahab’s sons|strong=\"H1121\"*, saying," + }, + { + "verseNum": 2, + "text": "“Now|strong=\"H6258\"* as|strong=\"H5892\"* soon|strong=\"H6258\"* as|strong=\"H5892\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* comes to|strong=\"H1121\"* you|strong=\"H6258\"*, since|strong=\"H6258\"* your|strong=\"H2088\"* master’s sons|strong=\"H1121\"* are|strong=\"H1121\"* with|strong=\"H5892\"* you|strong=\"H6258\"*, and|strong=\"H1121\"* you|strong=\"H6258\"* have|strong=\"H1121\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horses|strong=\"H5483\"*, a|strong=\"H3068\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"* also|strong=\"H2088\"*, and|strong=\"H1121\"* armor," + }, + { + "verseNum": 3, + "text": "select|strong=\"H7200\"* the|strong=\"H5921\"* best|strong=\"H2896\"* and|strong=\"H1121\"* fittest|strong=\"H3477\"* of|strong=\"H1121\"* your|strong=\"H5921\"* master’s sons|strong=\"H1121\"*, set|strong=\"H7760\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H7760\"* father|strong=\"H1121\"*’s throne|strong=\"H3678\"*, and|strong=\"H1121\"* fight|strong=\"H3898\"* for|strong=\"H5921\"* your|strong=\"H5921\"* master’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 4, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* were|strong=\"H4428\"* exceedingly|strong=\"H3966\"* afraid|strong=\"H3372\"*, and|strong=\"H4428\"* said, “Behold|strong=\"H2009\"*, the|strong=\"H6440\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* didn’t stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*! How|strong=\"H2009\"* then|strong=\"H2009\"* shall|strong=\"H4428\"* we|strong=\"H3068\"* stand|strong=\"H5975\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* who|strong=\"H3605\"* was|strong=\"H5892\"* over|strong=\"H5921\"* the|strong=\"H3605\"* household|strong=\"H1004\"*, and|strong=\"H7971\"* he|strong=\"H6213\"* who|strong=\"H3605\"* was|strong=\"H5892\"* over|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, the|strong=\"H3605\"* elders|strong=\"H2205\"* also|strong=\"H6213\"*, and|strong=\"H7971\"* those|strong=\"H3605\"* who|strong=\"H3605\"* raised the|strong=\"H3605\"* children, sent|strong=\"H7971\"* to|strong=\"H7971\"* Jehu|strong=\"H3058\"*, saying, “We|strong=\"H6213\"* are|strong=\"H5869\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H7971\"* will|strong=\"H5650\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* ask us|strong=\"H5921\"*. We|strong=\"H6213\"* will|strong=\"H5650\"* not|strong=\"H3808\"* make|strong=\"H6213\"* any|strong=\"H3605\"* man|strong=\"H2205\"* king|strong=\"H4427\"*. You|strong=\"H3605\"* do|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1004\"* is|strong=\"H2896\"* good|strong=\"H2896\"* in|strong=\"H5921\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* he|strong=\"H6256\"* wrote|strong=\"H3789\"* a|strong=\"H3068\"* letter|strong=\"H5612\"* the|strong=\"H8085\"* second|strong=\"H8145\"* time|strong=\"H6256\"* to|strong=\"H6256\"* them|strong=\"H3947\"*, saying|strong=\"H6963\"*, “If|strong=\"H1121\"* you|strong=\"H3947\"* are|strong=\"H1121\"* on|strong=\"H5892\"* my|strong=\"H8085\"* side, and|strong=\"H1121\"* if|strong=\"H1121\"* you|strong=\"H3947\"* will|strong=\"H4428\"* listen|strong=\"H8085\"* to|strong=\"H6256\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, take|strong=\"H3947\"* the|strong=\"H8085\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H8085\"* men|strong=\"H1121\"* who|strong=\"H1121\"* are|strong=\"H1121\"* your|strong=\"H3947\"* master’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* come|strong=\"H4279\"* to|strong=\"H6256\"* me|strong=\"H6963\"* to|strong=\"H6256\"* Jezreel|strong=\"H3157\"* by|strong=\"H5892\"* tomorrow|strong=\"H4279\"* this|strong=\"H8085\"* time|strong=\"H6256\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H1961\"* the|strong=\"H3947\"* letter|strong=\"H5612\"* came|strong=\"H1961\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, they|strong=\"H3947\"* took|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* and|strong=\"H1121\"* killed|strong=\"H7819\"* them|strong=\"H7971\"*, even seventy|strong=\"H7657\"* people|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H7760\"* their|strong=\"H3947\"* heads|strong=\"H7218\"* in|strong=\"H4428\"* baskets|strong=\"H1731\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H7971\"* Jezreel|strong=\"H3157\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H4397\"* and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5046\"*, “They|strong=\"H5704\"* have|strong=\"H1121\"* brought|strong=\"H7760\"* the|strong=\"H7760\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*.”" + }, + { + "verseNum": 9, + "text": "In|strong=\"H5921\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, he|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5971\"* stood|strong=\"H5975\"*, and|strong=\"H5971\"* said|strong=\"H3318\"* to|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “You|strong=\"H3605\"* are|strong=\"H5971\"* righteous|strong=\"H6662\"*. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* my|strong=\"H3605\"* master and|strong=\"H5971\"* killed|strong=\"H2026\"* him|strong=\"H5921\"*, but|strong=\"H1961\"* who|strong=\"H4310\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* these|strong=\"H3605\"*?" + }, + { + "verseNum": 10, + "text": "Know|strong=\"H3045\"* now|strong=\"H3588\"* that|strong=\"H3588\"* nothing|strong=\"H3808\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* to|strong=\"H1696\"* the|strong=\"H5921\"* earth of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H5921\"* Ahab’s house|strong=\"H1004\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Elijah|strong=\"H1696\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H1115\"* Jehu|strong=\"H3058\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* that|strong=\"H3045\"* remained|strong=\"H7604\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* in|strong=\"H1004\"* Jezreel|strong=\"H3157\"*, with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* great|strong=\"H1419\"* men|strong=\"H1419\"*, his|strong=\"H3605\"* familiar|strong=\"H3045\"* friends|strong=\"H3045\"*, and|strong=\"H1419\"* his|strong=\"H3605\"* priests|strong=\"H3548\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* left|strong=\"H7604\"* him|strong=\"H5221\"* no|strong=\"H1115\"* one|strong=\"H3605\"* remaining|strong=\"H8300\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* departed|strong=\"H3212\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Samaria|strong=\"H8111\"*. As|strong=\"H6965\"* he|strong=\"H1931\"* was|strong=\"H1931\"* at|strong=\"H6965\"* the|strong=\"H6965\"* shearing|strong=\"H7462\"* house|strong=\"H1044\"* of|strong=\"H1870\"* the|strong=\"H6965\"* shepherds|strong=\"H7462\"* on|strong=\"H1870\"* the|strong=\"H6965\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 13, + "text": "Jehu|strong=\"H3058\"* met|strong=\"H4672\"* with|strong=\"H3381\"* the|strong=\"H4672\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* said, “Who|strong=\"H4310\"* are|strong=\"H1121\"* you|strong=\"H3381\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H8147\"* said, “Take|strong=\"H8610\"* them|strong=\"H1992\"* alive|strong=\"H2416\"*!”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1121\"* he|strong=\"H8033\"* had|strong=\"H5414\"* departed|strong=\"H3212\"* from|strong=\"H5927\"* there|strong=\"H8033\"*, he|strong=\"H8033\"* met|strong=\"H4672\"* Jehonadab|strong=\"H3082\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* coming|strong=\"H5927\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* him|strong=\"H5414\"*. He|strong=\"H8033\"* greeted|strong=\"H1288\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Is|strong=\"H3426\"* your|strong=\"H5414\"* heart|strong=\"H3824\"* right|strong=\"H3477\"*, as|strong=\"H3824\"* my|strong=\"H5414\"* heart|strong=\"H3824\"* is|strong=\"H3426\"* with|strong=\"H5973\"* your|strong=\"H5414\"* heart|strong=\"H3824\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* said, “Come|strong=\"H3212\"* with|strong=\"H3068\"* me|strong=\"H7200\"*, and|strong=\"H3068\"* see|strong=\"H7200\"* my|strong=\"H3068\"* zeal|strong=\"H7068\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.” So|strong=\"H7200\"* they|strong=\"H3068\"* made|strong=\"H3068\"* him|strong=\"H7200\"* ride|strong=\"H7392\"* in|strong=\"H3068\"* his|strong=\"H3068\"* chariot|strong=\"H7393\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H3068\"* to|strong=\"H1696\"* Samaria|strong=\"H8111\"*, he|strong=\"H5704\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* who|strong=\"H3605\"* remained|strong=\"H7604\"* to|strong=\"H1696\"* Ahab in|strong=\"H3068\"* Samaria|strong=\"H8111\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* destroyed|strong=\"H8045\"* them|strong=\"H5221\"*, according to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H5704\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Elijah|strong=\"H1696\"*." + }, + { + "verseNum": 18, + "text": "Jehu|strong=\"H3058\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* together|strong=\"H6908\"*, and|strong=\"H5971\"* said to|strong=\"H5971\"* them|strong=\"H5647\"*, “Ahab served|strong=\"H5647\"* Baal|strong=\"H1168\"* a|strong=\"H3068\"* little|strong=\"H4592\"*, but|strong=\"H5971\"* Jehu|strong=\"H3058\"* will|strong=\"H5971\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* much|strong=\"H7235\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* call|strong=\"H7121\"* to|strong=\"H6213\"* me|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H2077\"* Baal|strong=\"H1168\"*, all|strong=\"H3605\"* of|strong=\"H2077\"* his|strong=\"H3605\"* worshipers|strong=\"H5647\"*, and|strong=\"H1419\"* all|strong=\"H3605\"* of|strong=\"H2077\"* his|strong=\"H3605\"* priests|strong=\"H3548\"*. Let|strong=\"H6258\"* no|strong=\"H3808\"* one|strong=\"H3605\"* be|strong=\"H3808\"* absent, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5030\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* to|strong=\"H6213\"* Baal|strong=\"H1168\"*. Whoever|strong=\"H3605\"* is|strong=\"H3605\"* absent, he|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.” But|strong=\"H3588\"* Jehu|strong=\"H3058\"* did|strong=\"H6213\"* deceptively, intending to|strong=\"H6213\"* destroy|strong=\"H6213\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H2077\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 20, + "text": "Jehu|strong=\"H3058\"* said|strong=\"H7121\"*, “Sanctify|strong=\"H6942\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"* for|strong=\"H7121\"* Baal|strong=\"H1168\"*!”" + }, + { + "verseNum": 21, + "text": "Jehu|strong=\"H3058\"* sent|strong=\"H7971\"* through|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* came|strong=\"H3478\"*, so|strong=\"H7971\"* that|strong=\"H3605\"* there|strong=\"H3605\"* was|strong=\"H3478\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H3605\"* left|strong=\"H7604\"* that|strong=\"H3605\"* didn’t come|strong=\"H3478\"*. They|strong=\"H3808\"* came|strong=\"H3478\"* into the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*; and|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* was|strong=\"H3478\"* filled|strong=\"H4390\"* from|strong=\"H3478\"* one|strong=\"H3605\"* end|strong=\"H6310\"* to|strong=\"H3478\"* another|strong=\"H6310\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3605\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* kept the|strong=\"H3605\"* wardrobe|strong=\"H4458\"*, “Bring|strong=\"H3318\"* out|strong=\"H3318\"* robes|strong=\"H3830\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* worshipers|strong=\"H5647\"* of|strong=\"H5921\"* Baal|strong=\"H1168\"*!”" + }, + { + "verseNum": 23, + "text": "Jehu|strong=\"H3058\"* went|strong=\"H3068\"* with|strong=\"H5973\"* Jehonadab|strong=\"H3082\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* into|strong=\"H7200\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*. Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* the|strong=\"H7200\"* worshipers|strong=\"H5647\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, “Search|strong=\"H2664\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* that|strong=\"H3588\"* none|strong=\"H6435\"* of|strong=\"H1121\"* the|strong=\"H7200\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* are|strong=\"H1121\"* here|strong=\"H6311\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* the|strong=\"H7200\"* worshipers|strong=\"H5647\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*.”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H6213\"* they|strong=\"H5921\"* went|strong=\"H3027\"* in|strong=\"H5921\"* to|strong=\"H6213\"* offer|strong=\"H6213\"* sacrifices|strong=\"H2077\"* and|strong=\"H3027\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*. Now|strong=\"H7760\"* Jehu|strong=\"H3058\"* had|strong=\"H3027\"* appointed|strong=\"H7760\"* for|strong=\"H5921\"* himself|strong=\"H5315\"* eighty|strong=\"H8084\"* men|strong=\"H6213\"* outside|strong=\"H2351\"*, and|strong=\"H3027\"* said, “If|strong=\"H7760\"* any|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* men|strong=\"H6213\"* whom I|strong=\"H5921\"* bring|strong=\"H6213\"* into|strong=\"H5921\"* your|strong=\"H5921\"* hands|strong=\"H3027\"* escape|strong=\"H4422\"*, he|strong=\"H6213\"* who|strong=\"H5315\"* lets him|strong=\"H5921\"* go, his|strong=\"H7760\"* life|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H3027\"* for|strong=\"H5921\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H3027\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 25, + "text": "As|strong=\"H5704\"* soon as|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H1961\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H5221\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, Jehu|strong=\"H3058\"* said|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H5221\"* guard|strong=\"H7323\"* and|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H5221\"* captains|strong=\"H7991\"*, “Go|strong=\"H3212\"* in|strong=\"H6213\"* and|strong=\"H1004\"* kill|strong=\"H5221\"* them|strong=\"H5221\"*! Let|strong=\"H3212\"* no|strong=\"H6213\"* one|strong=\"H6310\"* escape|strong=\"H3318\"*.” So|strong=\"H6213\"* they|strong=\"H5704\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* edge|strong=\"H6310\"* of|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*. The|strong=\"H5221\"* guard|strong=\"H7323\"* and|strong=\"H1004\"* the|strong=\"H5221\"* captains|strong=\"H7991\"* threw|strong=\"H7993\"* the|strong=\"H5221\"* bodies out|strong=\"H3318\"*, and|strong=\"H1004\"* went|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5221\"* inner|strong=\"H1004\"* shrine|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3318\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* pillars|strong=\"H4676\"* that|strong=\"H1004\"* were|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H3318\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* and|strong=\"H1004\"* burned|strong=\"H8313\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3117\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3117\"* pillar|strong=\"H4676\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3117\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3117\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* latrine|strong=\"H4280\"*, to|strong=\"H5704\"* this|strong=\"H7760\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 28, + "text": "Thus Jehu|strong=\"H3058\"* destroyed|strong=\"H8045\"* Baal|strong=\"H1168\"* out of|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 29, + "text": "However|strong=\"H7535\"*, Jehu|strong=\"H3058\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H5493\"* sins|strong=\"H2398\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5493\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3478\"* which|strong=\"H3478\"* he|strong=\"H3808\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*—the|strong=\"H5493\"* golden|strong=\"H2091\"* calves|strong=\"H5695\"* that|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* that|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* Jehu|strong=\"H3058\"*, “Because|strong=\"H5921\"* you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* well|strong=\"H2895\"* in|strong=\"H3427\"* executing|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3427\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H3478\"* Ahab’s house|strong=\"H1004\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3068\"* in|strong=\"H3427\"* my|strong=\"H3605\"* heart|strong=\"H3824\"*, your|strong=\"H3068\"* descendants|strong=\"H1121\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* generation.”" + }, + { + "verseNum": 31, + "text": "But|strong=\"H3808\"* Jehu|strong=\"H3058\"* took|strong=\"H5493\"* no|strong=\"H3808\"* heed|strong=\"H8104\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*. He|strong=\"H3068\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Jeroboam|strong=\"H3379\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Yahweh|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3478\"* cut|strong=\"H7096\"* away|strong=\"H3605\"* parts of|strong=\"H3068\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* Hazael|strong=\"H2371\"* struck|strong=\"H5221\"* them|strong=\"H1992\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 33, + "text": "from|strong=\"H4480\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* eastward|strong=\"H4217\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4480\"* Gilead|strong=\"H1568\"*, the|strong=\"H3605\"* Gadites|strong=\"H1425\"*, and|strong=\"H1568\"* the|strong=\"H3605\"* Reubenites|strong=\"H7206\"*, and|strong=\"H1568\"* the|strong=\"H3605\"* Manassites|strong=\"H4520\"*, from|strong=\"H4480\"* Aroer|strong=\"H6177\"*, which|strong=\"H5158\"* is|strong=\"H3605\"* by|strong=\"H5921\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Arnon, even|strong=\"H5921\"* Gilead|strong=\"H1568\"* and|strong=\"H1568\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehu|strong=\"H3058\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 35, + "text": "Jehu|strong=\"H3058\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*. Jehoahaz|strong=\"H3059\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* Jehu|strong=\"H3058\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"* was|strong=\"H3478\"* twenty-eight|strong=\"H6242\"* years|strong=\"H8141\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Athaliah|strong=\"H6271\"* the|strong=\"H3605\"* mother of|strong=\"H1121\"* Ahaziah saw|strong=\"H7200\"* that|strong=\"H3588\"* her|strong=\"H3605\"* son|strong=\"H1121\"* was|strong=\"H4467\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* destroyed all|strong=\"H3605\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* offspring|strong=\"H2233\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* Jehosheba|strong=\"H3089\"*, the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Joram|strong=\"H3141\"*, sister of|strong=\"H1121\"* Ahaziah, took|strong=\"H3947\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, and|strong=\"H1121\"* stole|strong=\"H1589\"* him|strong=\"H6440\"* away|strong=\"H3947\"* from|strong=\"H6440\"* among|strong=\"H8432\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* slain|strong=\"H4191\"*, even|strong=\"H3808\"* him|strong=\"H6440\"* and|strong=\"H1121\"* his|strong=\"H3947\"* nurse|strong=\"H3243\"*, and|strong=\"H1121\"* put|strong=\"H4191\"* them|strong=\"H6440\"* in|strong=\"H4428\"* the|strong=\"H6440\"* bedroom|strong=\"H2315\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* hid|strong=\"H5641\"* him|strong=\"H6440\"* from|strong=\"H6440\"* Athaliah|strong=\"H6271\"*, so|strong=\"H3947\"* that|strong=\"H4428\"* he|strong=\"H3808\"* was|strong=\"H4428\"* not|strong=\"H3808\"* slain|strong=\"H4191\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H1004\"* her|strong=\"H5921\"* hidden|strong=\"H2244\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* six|strong=\"H8337\"* years|strong=\"H8141\"* while|strong=\"H1961\"* Athaliah|strong=\"H6271\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 4, + "text": "In|strong=\"H8141\"* the|strong=\"H7200\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* Jehoiada|strong=\"H3077\"* sent|strong=\"H7971\"* and|strong=\"H3967\"* fetched|strong=\"H3947\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* over|strong=\"H4428\"* hundreds|strong=\"H3967\"* of|strong=\"H1121\"* the|strong=\"H7200\"* Carites|strong=\"H3746\"* and|strong=\"H3967\"* of|strong=\"H1121\"* the|strong=\"H7200\"* guard|strong=\"H7323\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* them|strong=\"H1992\"* to|strong=\"H3068\"* him|strong=\"H7971\"* into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3967\"* he|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3967\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* them|strong=\"H1992\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* showed|strong=\"H7200\"* them|strong=\"H1992\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* what|strong=\"H1697\"* you|strong=\"H6680\"* must do|strong=\"H6213\"*: a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H4428\"* you|strong=\"H6680\"*, who|strong=\"H8104\"* come in|strong=\"H6213\"* on|strong=\"H1004\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, shall|strong=\"H4428\"* be|strong=\"H1697\"* keepers|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H6213\"* watch|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 6, + "text": "a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H1004\"* you|strong=\"H8104\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* at|strong=\"H1004\"* the|strong=\"H8104\"* gate|strong=\"H8179\"* Sur|strong=\"H5495\"*; and|strong=\"H1004\"* a|strong=\"H3068\"* third|strong=\"H7992\"* of|strong=\"H1004\"* you|strong=\"H8104\"* at|strong=\"H1004\"* the|strong=\"H8104\"* gate|strong=\"H8179\"* behind the|strong=\"H8104\"* guard|strong=\"H8104\"*. So|strong=\"H7323\"* you|strong=\"H8104\"* shall|strong=\"H1004\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* watch|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H8104\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* be|strong=\"H1004\"* a|strong=\"H3068\"* barrier." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* two|strong=\"H8147\"* companies of|strong=\"H4428\"* you|strong=\"H3605\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3027\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, shall|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* watch|strong=\"H8104\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* around|strong=\"H3027\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* shall|strong=\"H4428\"* surround|strong=\"H5439\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, every|strong=\"H5439\"* man|strong=\"H4191\"* with|strong=\"H5921\"* his|strong=\"H5921\"* weapons|strong=\"H3627\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*; and|strong=\"H4428\"* he|strong=\"H3027\"* who|strong=\"H4428\"* comes|strong=\"H3318\"* within|strong=\"H5921\"* the|strong=\"H5921\"* ranks|strong=\"H7713\"*, let|strong=\"H1961\"* him|strong=\"H5921\"* be|strong=\"H1961\"* slain|strong=\"H4191\"*. Be|strong=\"H1961\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H3027\"* goes|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H3027\"* comes|strong=\"H3318\"* in|strong=\"H5921\"*.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H8269\"* hundreds|strong=\"H3967\"* did|strong=\"H6213\"* according to|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"*; and|strong=\"H3967\"* they|strong=\"H6213\"* each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* men|strong=\"H6213\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8269\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H6213\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* with|strong=\"H5973\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H8269\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, and|strong=\"H3967\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5414\"* priest|strong=\"H3548\"* delivered|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* captains|strong=\"H8269\"* over|strong=\"H4428\"* hundreds|strong=\"H3967\"* the|strong=\"H5414\"* spears|strong=\"H2595\"* and|strong=\"H3967\"* shields|strong=\"H7982\"* that|strong=\"H3068\"* had|strong=\"H3068\"* been|strong=\"H3068\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s, which|strong=\"H3068\"* were|strong=\"H1732\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* guard|strong=\"H7323\"* stood|strong=\"H5975\"*, every|strong=\"H5439\"* man with|strong=\"H1004\"* his|strong=\"H5921\"* weapons|strong=\"H3627\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H5921\"* left|strong=\"H8042\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, along|strong=\"H5921\"* by|strong=\"H3027\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* and|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, around|strong=\"H5439\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3318\"* he|strong=\"H5414\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* covenant; and|strong=\"H1121\"* they|strong=\"H5921\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H5414\"*; and|strong=\"H1121\"* they|strong=\"H5921\"* clapped|strong=\"H5221\"* their|strong=\"H5414\"* hands|strong=\"H3709\"*, and|strong=\"H1121\"* said|strong=\"H3318\"*, “Long|strong=\"H5921\"* live|strong=\"H2421\"* the|strong=\"H5921\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H8085\"* Athaliah|strong=\"H6271\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H8085\"* guard|strong=\"H7323\"* and|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H8085\"* people|strong=\"H5971\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H4428\"* she|strong=\"H7121\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"*, as|strong=\"H5971\"* the|strong=\"H3605\"* tradition was|strong=\"H4428\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H4428\"* the|strong=\"H3605\"* trumpets|strong=\"H2689\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8056\"*, and|strong=\"H4428\"* blew|strong=\"H8628\"* trumpets|strong=\"H2689\"*. Then|strong=\"H2009\"* Athaliah|strong=\"H6271\"* tore|strong=\"H7167\"* her|strong=\"H3605\"* clothes and|strong=\"H4428\"* cried|strong=\"H7121\"*, “Treason|strong=\"H7195\"*! Treason|strong=\"H7195\"*!”" + }, + { + "verseNum": 15, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* hundreds|strong=\"H3967\"* who|strong=\"H3068\"* were|strong=\"H8269\"* set|strong=\"H6485\"* over|strong=\"H8269\"* the|strong=\"H3588\"* army|strong=\"H2428\"*, and|strong=\"H3967\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H6680\"*, “Bring|strong=\"H3318\"* her|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3588\"* ranks|strong=\"H7713\"*. Kill|strong=\"H4191\"* anyone|strong=\"H3588\"* who|strong=\"H3068\"* follows her|strong=\"H3318\"* with|strong=\"H1004\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*.” For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* said|strong=\"H3318\"*, “Don’t let|strong=\"H6485\"* her|strong=\"H3318\"* be|strong=\"H4191\"* slain|strong=\"H4191\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H4191\"* they|strong=\"H8033\"* seized|strong=\"H7760\"* her|strong=\"H7760\"*; and|strong=\"H4428\"* she went|strong=\"H4428\"* by|strong=\"H3027\"* the|strong=\"H7760\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H7760\"* horses|strong=\"H5483\"*’ entry|strong=\"H3996\"* to|strong=\"H4191\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* she was|strong=\"H4428\"* slain|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "Jehoiada|strong=\"H3077\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*; also|strong=\"H3068\"* between the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land|strong=\"H6440\"* went|strong=\"H5971\"* to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, and|strong=\"H3068\"* broke|strong=\"H7665\"* it|strong=\"H7760\"* down|strong=\"H5422\"*. They|strong=\"H3068\"* broke|strong=\"H7665\"* his|strong=\"H3605\"* altars|strong=\"H4196\"* and|strong=\"H3068\"* his|strong=\"H3605\"* images|strong=\"H6754\"* in|strong=\"H5921\"* pieces|strong=\"H7665\"* thoroughly|strong=\"H3190\"*, and|strong=\"H3068\"* killed|strong=\"H2026\"* Mattan|strong=\"H4977\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* before|strong=\"H6440\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*. The|strong=\"H3605\"* priest|strong=\"H3548\"* appointed|strong=\"H7760\"* officers|strong=\"H6486\"* over|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H5921\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* Carites|strong=\"H3746\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* guard|strong=\"H7323\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land; and|strong=\"H3967\"* they|strong=\"H3068\"* brought|strong=\"H3947\"* down|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* came|strong=\"H3381\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H7323\"* to|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H3068\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* quiet|strong=\"H8252\"*. They|strong=\"H5971\"* had|strong=\"H4428\"* slain|strong=\"H4191\"* Athaliah|strong=\"H6271\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* at|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Jehoash was seven years old when he began to reign." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Jehoash|strong=\"H3060\"* began to|strong=\"H1121\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3060\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehu, and|strong=\"H1121\"* he|strong=\"H8141\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem. His|strong=\"H3060\"* mother’s name was|strong=\"H1121\"* Zibiah of|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 2, + "text": "Jehoash|strong=\"H3060\"* did|strong=\"H3389\"* that|strong=\"H8141\"* which was|strong=\"H8034\"* right in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s eyes all his|strong=\"H3060\"* days|strong=\"H8141\"* in|strong=\"H8141\"* which Jehoiada the|strong=\"H3058\"* priest instructed him|strong=\"H4427\"*." + }, + { + "verseNum": 3, + "text": "However, the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"* were|strong=\"H3117\"* not|strong=\"H6213\"* taken|strong=\"H6213\"* away|strong=\"H3605\"*. The|strong=\"H3605\"* people|strong=\"H5869\"* still sacrificed|strong=\"H6213\"* and|strong=\"H3068\"* burned incense in|strong=\"H3068\"* the|strong=\"H3605\"* high|strong=\"H6213\"* places|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "Jehoash said to|strong=\"H5971\"* the|strong=\"H5493\"* priests|strong=\"H3808\"*, “All|strong=\"H5750\"* the|strong=\"H5493\"* money of|strong=\"H5971\"* the|strong=\"H5493\"* holy things|strong=\"H3808\"* that|strong=\"H5971\"* is|strong=\"H5971\"* brought|strong=\"H5493\"* into|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s house, in|strong=\"H5493\"* current money, the|strong=\"H5493\"* money of|strong=\"H5971\"* the|strong=\"H5493\"* people|strong=\"H5971\"* for|strong=\"H5971\"* whom|strong=\"H5971\"* each|strong=\"H5971\"* man is|strong=\"H5971\"* evaluated,+ 12:4 Exodus 30:12* and|strong=\"H5971\"* all|strong=\"H5750\"* the|strong=\"H5493\"* money that|strong=\"H5971\"* it|strong=\"H3808\"* comes into|strong=\"H5493\"* any|strong=\"H5750\"* man’s heart to|strong=\"H5971\"* bring into|strong=\"H5493\"* Yahweh|strong=\"H3068\"*’s house," + }, + { + "verseNum": 5, + "text": "let|strong=\"H5315\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* take|strong=\"H5674\"* it|strong=\"H5921\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, each|strong=\"H3605\"* man|strong=\"H5315\"* from|strong=\"H5921\"* his|strong=\"H3605\"* donor; and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* repair the|strong=\"H3605\"* damage to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, wherever|strong=\"H3605\"* any|strong=\"H3605\"* damage is|strong=\"H3068\"* found|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H2388\"* it|strong=\"H8033\"* was|strong=\"H1004\"* so|strong=\"H3947\"*, that|strong=\"H3605\"* in|strong=\"H1004\"* the|strong=\"H3605\"* twenty-third year of|strong=\"H1004\"* King Jehoash the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H3548\"* not|strong=\"H3947\"* repaired|strong=\"H2388\"* the|strong=\"H3605\"* damage to|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H1961\"* King|strong=\"H4428\"* Jehoash|strong=\"H3060\"* called for|strong=\"H1004\"* Jehoiada the|strong=\"H2388\"* priest|strong=\"H3548\"*, and|strong=\"H6242\"* for|strong=\"H1004\"* the|strong=\"H2388\"* other priests|strong=\"H3548\"*, and|strong=\"H6242\"* said to|strong=\"H1961\"* them|strong=\"H1961\"*, “Why|strong=\"H3808\"* aren’t you|strong=\"H3808\"* repairing|strong=\"H2388\"* the|strong=\"H2388\"* damage to|strong=\"H1961\"* the|strong=\"H2388\"* house|strong=\"H1004\"*? Now|strong=\"H1961\"* therefore|strong=\"H1961\"* take|strong=\"H2388\"* no|strong=\"H3808\"* more|strong=\"H3808\"* money from|strong=\"H1961\"* your|strong=\"H1961\"* treasurers, but|strong=\"H3808\"* deliver it|strong=\"H1961\"* for|strong=\"H1004\"* repair|strong=\"H2388\"* of|strong=\"H4428\"* the|strong=\"H2388\"* damage to|strong=\"H1961\"* the|strong=\"H2388\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* priests|strong=\"H3548\"* consented that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3947\"* no|strong=\"H3947\"* more|strong=\"H3588\"* money|strong=\"H3701\"* from|strong=\"H3947\"* the|strong=\"H3588\"* people, and|strong=\"H3701\"* not|strong=\"H5414\"* repair|strong=\"H2388\"* the|strong=\"H3588\"* damage to|strong=\"H5414\"* the|strong=\"H3588\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H2388\"* Jehoiada the|strong=\"H3947\"* priest|strong=\"H3548\"* took|strong=\"H3947\"* a|strong=\"H3068\"* chest and|strong=\"H3701\"* bored a|strong=\"H3068\"* hole in|strong=\"H1004\"* its|strong=\"H3947\"* lid, and|strong=\"H3701\"* set it|strong=\"H3947\"* beside|strong=\"H1115\"* the|strong=\"H3947\"* altar, on|strong=\"H1004\"* the|strong=\"H3947\"* right side as|strong=\"H5971\"* one|strong=\"H1004\"* comes into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3701\"* the|strong=\"H3947\"* priests|strong=\"H3548\"* who|strong=\"H5971\"* kept the|strong=\"H3947\"* threshold put|strong=\"H3947\"* all|strong=\"H3947\"* the|strong=\"H3947\"* money|strong=\"H3701\"* that|strong=\"H5971\"* was|strong=\"H1004\"* brought|strong=\"H3947\"* into|strong=\"H3947\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* into|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* they|strong=\"H8033\"* saw that|strong=\"H3605\"* there|strong=\"H8033\"* was|strong=\"H3068\"* much|strong=\"H3605\"* money|strong=\"H3701\"* in|strong=\"H3068\"* the|strong=\"H3605\"* chest, the|strong=\"H3605\"* king’s scribe and|strong=\"H3068\"* the|strong=\"H3605\"* high priest|strong=\"H3548\"* came|strong=\"H3068\"* up|strong=\"H5414\"*, and|strong=\"H3068\"* they|strong=\"H8033\"* put|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H3068\"* bags and|strong=\"H3068\"* counted the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3068\"* found|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* gave|strong=\"H1961\"* the|strong=\"H7200\"* money|strong=\"H3701\"* that|strong=\"H3588\"* was|strong=\"H3068\"* weighed out|strong=\"H4672\"* into|strong=\"H5927\"* the|strong=\"H7200\"* hands of|strong=\"H4428\"* those|strong=\"H1961\"* who|strong=\"H3068\"* did|strong=\"H3068\"* the|strong=\"H7200\"* work, who|strong=\"H3068\"* had|strong=\"H3068\"* the|strong=\"H7200\"* oversight of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* paid it|strong=\"H3588\"* out|strong=\"H4672\"* to|strong=\"H3068\"* the|strong=\"H7200\"* carpenters and|strong=\"H3068\"* the|strong=\"H7200\"* builders who|strong=\"H3068\"* worked|strong=\"H5927\"* on|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* to|strong=\"H3318\"* the|strong=\"H5921\"* masons|strong=\"H2796\"* and|strong=\"H3068\"* the|strong=\"H5921\"* stone cutters, and|strong=\"H3068\"* for|strong=\"H5921\"* buying timber|strong=\"H6086\"* and|strong=\"H3068\"* cut stone to|strong=\"H3318\"* repair the|strong=\"H5921\"* damage|strong=\"H6485\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H5921\"* all|strong=\"H6213\"* that|strong=\"H3068\"* was|strong=\"H3068\"* laid|strong=\"H5414\"* out|strong=\"H3318\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* to|strong=\"H3318\"* repair it|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H2388\"* there|strong=\"H3605\"* were|strong=\"H1004\"* not|strong=\"H3318\"* made|strong=\"H2388\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* cups of|strong=\"H1004\"* silver, snuffers, basins, trumpets, any|strong=\"H3605\"* vessels of|strong=\"H1004\"* gold or|strong=\"H1004\"* vessels of|strong=\"H1004\"* silver, of|strong=\"H1004\"* the|strong=\"H3605\"* money that|strong=\"H3605\"* was|strong=\"H3068\"* brought|strong=\"H3318\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 14, + "text": "for|strong=\"H6213\"* they|strong=\"H3068\"* gave|strong=\"H6213\"* that|strong=\"H3605\"* to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H6213\"*, and|strong=\"H3068\"* repaired Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H3588\"* they|strong=\"H3588\"* didn’t demand an|strong=\"H6213\"* accounting from|strong=\"H3068\"* the|strong=\"H3588\"* men|strong=\"H6213\"* into|strong=\"H6213\"* whose hand|strong=\"H5414\"* they|strong=\"H3588\"* delivered|strong=\"H5414\"* the|strong=\"H3588\"* money to|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* those|strong=\"H2388\"* who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H3588\"* work|strong=\"H4399\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* dealt|strong=\"H6213\"* faithfully." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* money|strong=\"H3701\"* for|strong=\"H3588\"* the|strong=\"H5921\"* trespass offerings|strong=\"H3588\"* and|strong=\"H3701\"* the|strong=\"H5921\"* money|strong=\"H3701\"* for|strong=\"H3588\"* the|strong=\"H5921\"* sin offerings|strong=\"H3588\"* was|strong=\"H3027\"* not|strong=\"H3808\"* brought|strong=\"H5414\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house. It|strong=\"H5414\"* was|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3808\"*’." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* Hazael king of|strong=\"H1004\"* Syria went|strong=\"H3068\"* up|strong=\"H1961\"* and|strong=\"H3068\"* fought against|strong=\"H3068\"* Gath, and|strong=\"H3068\"* took|strong=\"H1961\"* it|strong=\"H1961\"*; and|strong=\"H3068\"* Hazael set his|strong=\"H3068\"* face to|strong=\"H3068\"* go|strong=\"H1961\"* up|strong=\"H1961\"* to|strong=\"H3068\"* Jerusalem." + }, + { + "verseNum": 18, + "text": "Jehoash king|strong=\"H4428\"* of|strong=\"H4428\"* Judah took|strong=\"H3920\"* all|strong=\"H5921\"* the|strong=\"H6440\"* holy things that|strong=\"H4428\"* Jehoshaphat and|strong=\"H4428\"* Jehoram and|strong=\"H4428\"* Ahaziah, his|strong=\"H7760\"* fathers, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah, had|strong=\"H4428\"* dedicated, and|strong=\"H4428\"* his|strong=\"H7760\"* own|strong=\"H6440\"* holy things, and|strong=\"H4428\"* all|strong=\"H5921\"* the|strong=\"H6440\"* gold that|strong=\"H4428\"* was|strong=\"H4428\"* found in|strong=\"H5921\"* the|strong=\"H6440\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house, and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house, and|strong=\"H4428\"* sent|strong=\"H5927\"* it|strong=\"H7760\"* to|strong=\"H5927\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria; and|strong=\"H4428\"* he|strong=\"H3389\"* went|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3947\"* the|strong=\"H3605\"* rest of|strong=\"H4428\"* the|strong=\"H3605\"* acts of|strong=\"H4428\"* Joash|strong=\"H3060\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* did|strong=\"H3068\"*, aren’t they|strong=\"H3068\"* written in|strong=\"H5921\"* the|strong=\"H3605\"* book of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "His|strong=\"H3605\"* servants arose and|strong=\"H3063\"* made|strong=\"H6213\"* a|strong=\"H3068\"* conspiracy, and|strong=\"H3063\"* struck Joash|strong=\"H3101\"* at|strong=\"H5921\"* the|strong=\"H3605\"* house of|strong=\"H4428\"* Millo, on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1697\"* that|strong=\"H3605\"* goes down|strong=\"H3789\"* to|strong=\"H5921\"* Silla." + }, + { + "verseNum": 21, + "text": "For|strong=\"H1004\"* Jozacar the|strong=\"H5221\"* son of|strong=\"H1004\"* Shimeath, and|strong=\"H6965\"* Jehozabad the|strong=\"H5221\"* son of|strong=\"H1004\"* Shomer, his|strong=\"H5221\"* servants|strong=\"H5650\"*, struck|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H6965\"* he|strong=\"H1004\"* died; and|strong=\"H6965\"* they|strong=\"H5221\"* buried him|strong=\"H5221\"* with|strong=\"H1004\"* his|strong=\"H5221\"* fathers in|strong=\"H1004\"* David’s city; and|strong=\"H6965\"* Amaziah his|strong=\"H5221\"* son reigned in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-third|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jehoahaz|strong=\"H3059\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H1121\"* followed|strong=\"H3212\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria, and|strong=\"H1121\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Benhadad the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"*, continually|strong=\"H3605\"*." + }, + { + "verseNum": 4, + "text": "Jehoahaz|strong=\"H3059\"* begged Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3478\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* oppression|strong=\"H3906\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, how|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria oppressed|strong=\"H3905\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "(Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* savior|strong=\"H3467\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* under|strong=\"H8478\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* Syrians; and|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* tents as|strong=\"H3068\"* before|strong=\"H8032\"*." + }, + { + "verseNum": 6, + "text": "Nevertheless|strong=\"H1571\"* they|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H5493\"* sins|strong=\"H2403\"* of|strong=\"H1004\"* the|strong=\"H5493\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"*, with|strong=\"H1980\"* which|strong=\"H1004\"* he|strong=\"H1004\"* made|strong=\"H5975\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* sin|strong=\"H2403\"*, but|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H5975\"*; and|strong=\"H1980\"* the|strong=\"H5493\"* Asherah also|strong=\"H1571\"* remained|strong=\"H5975\"* in|strong=\"H1980\"* Samaria|strong=\"H8111\"*.)" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* didn’t leave|strong=\"H7604\"* to|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* any|strong=\"H3588\"* more|strong=\"H3808\"* than|strong=\"H3808\"* fifty|strong=\"H2572\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* ten|strong=\"H6235\"* chariots|strong=\"H7393\"*, and|strong=\"H4428\"* ten|strong=\"H6235\"* thousand footmen|strong=\"H7273\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria destroyed them|strong=\"H7760\"* and|strong=\"H4428\"* made|strong=\"H7760\"* them|strong=\"H7760\"* like|strong=\"H3808\"* the|strong=\"H3588\"* dust|strong=\"H6083\"* in|strong=\"H4428\"* threshing|strong=\"H1758\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3478\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 9, + "text": "Jehoahaz|strong=\"H3059\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers; and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* Samaria|strong=\"H8111\"*; and|strong=\"H1121\"* Joash|strong=\"H3101\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jehoash|strong=\"H3060\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H1980\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* sin|strong=\"H2403\"*; but|strong=\"H3808\"* he|strong=\"H6213\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Joash|strong=\"H3101\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* might|strong=\"H1369\"* with|strong=\"H5973\"* which|strong=\"H1992\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 13, + "text": "Joash|strong=\"H3101\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H5921\"* fathers; and|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5921\"* throne|strong=\"H3678\"*. Joash|strong=\"H3101\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H3427\"* Samaria|strong=\"H8111\"* with|strong=\"H5973\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3478\"* Elisha became|strong=\"H2470\"* sick|strong=\"H2470\"* with|strong=\"H5921\"* the|strong=\"H6440\"* illness|strong=\"H2483\"* of|strong=\"H4428\"* which|strong=\"H3478\"* he|strong=\"H5921\"* died|strong=\"H4191\"*; and|strong=\"H3478\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H6440\"*, and|strong=\"H3478\"* wept|strong=\"H1058\"* over|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3478\"* said, “My|strong=\"H5921\"* father, my|strong=\"H5921\"* father, the|strong=\"H6440\"* chariots|strong=\"H7393\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* its|strong=\"H5921\"* horsemen|strong=\"H6571\"*!”" + }, + { + "verseNum": 15, + "text": "Elisha said to|strong=\"H3947\"* him|strong=\"H3947\"*, “Take|strong=\"H3947\"* bow|strong=\"H7198\"* and|strong=\"H7198\"* arrows|strong=\"H2671\"*;” and|strong=\"H7198\"* he|strong=\"H3947\"* took|strong=\"H3947\"* bow|strong=\"H7198\"* and|strong=\"H7198\"* arrows|strong=\"H2671\"* for|strong=\"H3947\"* himself." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3027\"* said to|strong=\"H3478\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Put|strong=\"H7760\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bow|strong=\"H7198\"*;” and|strong=\"H3478\"* he|strong=\"H3027\"* put|strong=\"H7760\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. Elisha laid|strong=\"H7760\"* his|strong=\"H7760\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s hands|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5704\"* said, “Open|strong=\"H6605\"* the|strong=\"H5221\"* window|strong=\"H2474\"* eastward|strong=\"H6924\"*;” and|strong=\"H3068\"* he|strong=\"H5704\"* opened|strong=\"H6605\"* it|strong=\"H5221\"*. Then|strong=\"H3068\"* Elisha|strong=\"H5704\"* said, “Shoot|strong=\"H3384\"*!” and|strong=\"H3068\"* he|strong=\"H5704\"* shot|strong=\"H3384\"*. He|strong=\"H5704\"* said, “Yahweh|strong=\"H3068\"*’s arrow|strong=\"H2671\"* of|strong=\"H3068\"* victory|strong=\"H8668\"*, even|strong=\"H5704\"* the|strong=\"H5221\"* arrow|strong=\"H2671\"* of|strong=\"H3068\"* victory|strong=\"H8668\"* over|strong=\"H3068\"* Syria; for|strong=\"H5704\"* you|strong=\"H5704\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* Syrians in|strong=\"H3068\"* Aphek until|strong=\"H5704\"* you|strong=\"H5704\"* have|strong=\"H3068\"* consumed|strong=\"H3615\"* them|strong=\"H5221\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H5221\"* said, “Take|strong=\"H3947\"* the|strong=\"H3947\"* arrows|strong=\"H2678\"*;” and|strong=\"H3478\"* he|strong=\"H5221\"* took|strong=\"H3947\"* them|strong=\"H5221\"*. He|strong=\"H5221\"* said to|strong=\"H3478\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Strike|strong=\"H5221\"* the|strong=\"H3947\"* ground;” and|strong=\"H3478\"* he|strong=\"H5221\"* struck|strong=\"H5221\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H3478\"* stopped|strong=\"H5975\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* man of|strong=\"H5921\"* God was|strong=\"H5221\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H2568\"* said, “You|strong=\"H5921\"* should have|strong=\"H6258\"* struck|strong=\"H5221\"* five|strong=\"H2568\"* or|strong=\"H5704\"* six|strong=\"H8337\"* times|strong=\"H6471\"*. Then|strong=\"H6258\"* you|strong=\"H5921\"* would have|strong=\"H6258\"* struck|strong=\"H5221\"* Syria until|strong=\"H5704\"* you|strong=\"H5921\"* had|strong=\"H7969\"* consumed|strong=\"H3615\"* it|strong=\"H5921\"*, but|strong=\"H5221\"* now|strong=\"H6258\"* you|strong=\"H5921\"* will|strong=\"H5704\"* strike|strong=\"H5221\"* Syria just|strong=\"H6258\"* three|strong=\"H7969\"* times|strong=\"H6471\"*.”" + }, + { + "verseNum": 20, + "text": "Elisha died|strong=\"H4191\"*, and|strong=\"H8141\"* they|strong=\"H8141\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"H1961\"* they|strong=\"H1992\"* were|strong=\"H1961\"* burying|strong=\"H6912\"* a|strong=\"H3068\"* man|strong=\"H7200\"*, behold|strong=\"H2009\"*, they|strong=\"H1992\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* band|strong=\"H1416\"* of|strong=\"H5921\"* raiders|strong=\"H1416\"*; and|strong=\"H6965\"* they|strong=\"H1992\"* threw|strong=\"H7993\"* the|strong=\"H5921\"* man|strong=\"H7200\"* into|strong=\"H3212\"* Elisha|strong=\"H2421\"*’s tomb|strong=\"H6913\"*. As|strong=\"H1961\"* soon as|strong=\"H1961\"* the|strong=\"H5921\"* man|strong=\"H7200\"* touched|strong=\"H5060\"* Elisha|strong=\"H2421\"*’s bones|strong=\"H6106\"*, he|strong=\"H5921\"* revived|strong=\"H2421\"*, and|strong=\"H6965\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H5921\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 22, + "text": "Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria oppressed|strong=\"H3905\"* Israel|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jehoahaz|strong=\"H3059\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H5704\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* favored them|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H3068\"* Jacob|strong=\"H3290\"*, and|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H5921\"* and|strong=\"H3068\"* he|strong=\"H5704\"* didn’t cast|strong=\"H7993\"* them|strong=\"H5921\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"* as|strong=\"H5704\"* yet|strong=\"H5704\"*." + }, + { + "verseNum": 24, + "text": "Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria died|strong=\"H4191\"*; and|strong=\"H1121\"* Benhadad his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Jehoash|strong=\"H3060\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* took|strong=\"H3947\"* again|strong=\"H7725\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Benhadad the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazael|strong=\"H2371\"* the|strong=\"H3947\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* he|strong=\"H3027\"* had|strong=\"H3478\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* his|strong=\"H3947\"* father|strong=\"H1121\"* by|strong=\"H3027\"* war|strong=\"H4421\"*. Joash|strong=\"H3101\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* three|strong=\"H7969\"* times|strong=\"H6471\"*, and|strong=\"H1121\"* recovered|strong=\"H7725\"* the|strong=\"H3947\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Joahaz|strong=\"H3099\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Amaziah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jehoaddin|strong=\"H3086\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, yet|strong=\"H7535\"* not|strong=\"H3808\"* like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father. He|strong=\"H6213\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Joash|strong=\"H3101\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H7535\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H5493\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H5971\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5493\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* soon as|strong=\"H1961\"* the|strong=\"H5221\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* established|strong=\"H2388\"* in|strong=\"H4428\"* his|strong=\"H5221\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* killed|strong=\"H5221\"* his|strong=\"H5221\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H1961\"* slain|strong=\"H5221\"* the|strong=\"H5221\"* king|strong=\"H4428\"* his|strong=\"H5221\"* father," + }, + { + "verseNum": 6, + "text": "but|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* murderers|strong=\"H5221\"* he|strong=\"H3588\"* didn’t put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, according|strong=\"H5921\"* to|strong=\"H4191\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying, “The|strong=\"H5921\"* fathers shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, nor|strong=\"H3808\"* the|strong=\"H5921\"* children|strong=\"H1121\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* fathers; but|strong=\"H3588\"* every|strong=\"H5221\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3068\"* own sin|strong=\"H2399\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* killed|strong=\"H5221\"* ten|strong=\"H6235\"* thousand Edomites in|strong=\"H3117\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H3117\"* Salt|strong=\"H4417\"*, and|strong=\"H3117\"* took|strong=\"H8610\"* Sela|strong=\"H5554\"* by|strong=\"H3117\"* war|strong=\"H4421\"*, and|strong=\"H3117\"* called|strong=\"H7121\"* its|strong=\"H1516\"* name|strong=\"H8034\"* Joktheel|strong=\"H3371\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7971\"* Amaziah sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Jehoash|strong=\"H3060\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “Come|strong=\"H3212\"*, let|strong=\"H7971\"*’s look|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 9, + "text": "Jehoash|strong=\"H3060\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H5414\"* thistle|strong=\"H2336\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* cedar that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"*, saying, ‘Give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* my|strong=\"H5414\"* son|strong=\"H1121\"* as|strong=\"H3063\"* wife|strong=\"H2416\"*.’ Then|strong=\"H7971\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* animal|strong=\"H2416\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H1121\"* trampled|strong=\"H7429\"* down|strong=\"H7429\"* the|strong=\"H5414\"* thistle|strong=\"H2336\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5973\"* have|strong=\"H3063\"* indeed|strong=\"H5221\"* struck|strong=\"H5221\"* Edom, and|strong=\"H3063\"* your|strong=\"H5375\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* lifted|strong=\"H5375\"* you|strong=\"H5973\"* up|strong=\"H5375\"*. Enjoy|strong=\"H3513\"* the|strong=\"H5221\"* glory|strong=\"H3513\"* of|strong=\"H1004\"* it|strong=\"H5375\"*, and|strong=\"H3063\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* home|strong=\"H1004\"*; for|strong=\"H3427\"* why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H5973\"* meddle|strong=\"H1624\"* to|strong=\"H3820\"* your|strong=\"H5375\"* harm|strong=\"H7451\"*, that|strong=\"H5307\"* you|strong=\"H5973\"* fall|strong=\"H5307\"*, even you|strong=\"H5973\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* with|strong=\"H5973\"* you|strong=\"H5973\"*?”" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* Amaziah would|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*. So|strong=\"H5927\"* Jehoash|strong=\"H3060\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* and|strong=\"H3063\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* looked|strong=\"H7200\"* one|strong=\"H3808\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"* at|strong=\"H3478\"* Beth Shemesh, which|strong=\"H1931\"* belongs to|strong=\"H3478\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "Judah|strong=\"H3063\"* was|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*; and|strong=\"H3063\"* each man|strong=\"H6440\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H6440\"* tent." + }, + { + "verseNum": 13, + "text": "Jehoash|strong=\"H3060\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H8610\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoash|strong=\"H3060\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, at|strong=\"H3478\"* Beth Shemesh and|strong=\"H3967\"* came|strong=\"H3478\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*, then|strong=\"H4428\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3478\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Ephraim to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6438\"* gate|strong=\"H8179\"*, four hundred|strong=\"H3967\"* cubits.+ 14:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.*" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* hostages|strong=\"H8594\"* also|strong=\"H3068\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoash|strong=\"H3060\"* which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H5921\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 16, + "text": "Jehoash|strong=\"H3060\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, and|strong=\"H1121\"* was|strong=\"H3478\"* buried|strong=\"H6912\"* in|strong=\"H3478\"* Samaria|strong=\"H8111\"* with|strong=\"H5973\"* the|strong=\"H8478\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "Amaziah the|strong=\"H3060\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* lived|strong=\"H2421\"* after|strong=\"H8141\"* the|strong=\"H3060\"* death|strong=\"H4194\"* of|strong=\"H1121\"* Jehoash|strong=\"H3060\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, fifteen|strong=\"H2568\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amaziah, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 19, + "text": "They|strong=\"H8033\"* made|strong=\"H7194\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H7971\"* he|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"*; but|strong=\"H4191\"* they|strong=\"H8033\"* sent|strong=\"H7971\"* after|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"* and|strong=\"H7971\"* killed|strong=\"H4191\"* him|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H5921\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, and|strong=\"H3389\"* he|strong=\"H1732\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* his|strong=\"H5375\"* fathers in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* took|strong=\"H3947\"* Azariah|strong=\"H5838\"*, who|strong=\"H3605\"* was|strong=\"H1931\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* Amaziah." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* Elath and|strong=\"H3063\"* restored|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*. After that|strong=\"H1931\"* the|strong=\"H7725\"* king|strong=\"H4428\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* fifteenth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Amaziah the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Jeroboam|strong=\"H3379\"* the|strong=\"H3379\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H1121\"* forty-one years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H1931\"* restored|strong=\"H7725\"* the|strong=\"H3068\"* border|strong=\"H1366\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H7725\"* the|strong=\"H3068\"* entrance of|strong=\"H1121\"* Hamath|strong=\"H2574\"* to|strong=\"H1696\"* the|strong=\"H3068\"* sea|strong=\"H3220\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Arabah|strong=\"H6160\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*’s word|strong=\"H1697\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amittai, the|strong=\"H3068\"* prophet|strong=\"H5030\"*, who|strong=\"H1931\"* was|strong=\"H3068\"* from|strong=\"H7725\"* Gath Hepher." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* affliction|strong=\"H6040\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* very|strong=\"H3966\"* bitter|strong=\"H4784\"* for|strong=\"H3588\"* all|strong=\"H7200\"*, slave and|strong=\"H3478\"* free|strong=\"H5800\"*; and|strong=\"H3478\"* there|strong=\"H3068\"* was|strong=\"H3068\"* no|strong=\"H7200\"* helper|strong=\"H5826\"* for|strong=\"H3588\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* didn’t say|strong=\"H1696\"* that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* blot|strong=\"H4229\"* out|strong=\"H4229\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* under|strong=\"H8478\"* the|strong=\"H3068\"* sky|strong=\"H8064\"*; but|strong=\"H3808\"* he|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*." + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, how|strong=\"H6213\"* he|strong=\"H3117\"* fought|strong=\"H3898\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* recovered|strong=\"H7725\"* Damascus|strong=\"H1834\"*, and|strong=\"H3063\"* Hamath|strong=\"H2574\"*, which|strong=\"H1992\"* had|strong=\"H3478\"* belonged to|strong=\"H7725\"* Judah|strong=\"H3063\"*, for|strong=\"H5921\"* Israel|strong=\"H3478\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 29, + "text": "Jeroboam|strong=\"H3379\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, even with|strong=\"H5973\"* the|strong=\"H8478\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3379\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Azariah|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8147\"* was|strong=\"H8034\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H8147\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* fifty-two|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jecoliah|strong=\"H3203\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Amaziah had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "However|strong=\"H7535\"*, the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H5493\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H5971\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5493\"* the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* struck|strong=\"H5060\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* he|strong=\"H3117\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* to|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* separate|strong=\"H2669\"* house|strong=\"H1004\"*. Jotham|strong=\"H3147\"*, the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, judging|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Azariah|strong=\"H5838\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 7, + "text": "Azariah|strong=\"H5838\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers; and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jotham|strong=\"H3147\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-eighth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Zechariah|strong=\"H2148\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* six|strong=\"H8337\"* months|strong=\"H2320\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* his|strong=\"H3068\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "Shallum|strong=\"H7967\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* before|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Zechariah|strong=\"H2148\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"H3651\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jehu|strong=\"H3058\"*, saying|strong=\"H1697\"*, “Your|strong=\"H3068\"* sons|strong=\"H1121\"* to|strong=\"H1696\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* generation shall|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.” So|strong=\"H3651\"* it|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H1696\"* pass|strong=\"H1961\"*." + }, + { + "verseNum": 13, + "text": "Shallum|strong=\"H7967\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* began|strong=\"H3063\"* to|strong=\"H3117\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3117\"* thirty-ninth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* for|strong=\"H3117\"* a|strong=\"H3068\"* month|strong=\"H3391\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 14, + "text": "Menahem|strong=\"H4505\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gadi|strong=\"H1424\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tirzah|strong=\"H8656\"*, came|strong=\"H5927\"* to|strong=\"H4191\"* Samaria|strong=\"H8111\"*, struck|strong=\"H5221\"* Shallum|strong=\"H7967\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jabesh|strong=\"H3003\"* in|strong=\"H4191\"* Samaria|strong=\"H8111\"*, killed|strong=\"H5221\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Shallum|strong=\"H7967\"*, and|strong=\"H3478\"* his|strong=\"H5921\"* conspiracy|strong=\"H7195\"* which|strong=\"H1697\"* he|strong=\"H3117\"* made|strong=\"H7194\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3588\"* Menahem|strong=\"H4505\"* attacked|strong=\"H5221\"* Tiphsah|strong=\"H8607\"* and|strong=\"H5221\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3605\"* in|strong=\"H3808\"* it|strong=\"H3588\"* and|strong=\"H5221\"* its|strong=\"H3605\"* border|strong=\"H1366\"* areas, from|strong=\"H1366\"* Tirzah|strong=\"H8656\"*. He|strong=\"H3588\"* attacked|strong=\"H5221\"* it|strong=\"H3588\"* because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t open|strong=\"H6605\"* their|strong=\"H3605\"* gates to|strong=\"H3808\"* him|strong=\"H5221\"*, and|strong=\"H5221\"* he|strong=\"H3588\"* ripped|strong=\"H1234\"* up|strong=\"H1234\"* all|strong=\"H3605\"* their|strong=\"H3605\"* women|strong=\"H2030\"* who|strong=\"H3605\"* were|strong=\"H3605\"* with|strong=\"H3605\"* child|strong=\"H2030\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* ninth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Menahem|strong=\"H4505\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gadi|strong=\"H1424\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* ten|strong=\"H6235\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3117\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H3117\"* didn’t depart|strong=\"H5493\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* from|strong=\"H5493\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3117\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 19, + "text": "Pul|strong=\"H6322\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1961\"* against|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H3701\"* Menahem|strong=\"H4505\"* gave|strong=\"H5414\"* Pul|strong=\"H6322\"* one|strong=\"H1961\"* thousand talents|strong=\"H3603\"*+ 15:19 A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons* of|strong=\"H4428\"* silver|strong=\"H3701\"*, that|strong=\"H5414\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* might|strong=\"H4467\"* be|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5414\"* to|strong=\"H1961\"* confirm|strong=\"H2388\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* in|strong=\"H5921\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Menahem|strong=\"H4505\"* exacted|strong=\"H3318\"* the|strong=\"H3605\"* money|strong=\"H3701\"* from|strong=\"H7725\"* Israel|strong=\"H3478\"*, even|strong=\"H3808\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* wealth|strong=\"H2428\"*, from|strong=\"H7725\"* each|strong=\"H3605\"* man|strong=\"H1368\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 15:20 A shekel is about 10 grams or about 0.35 ounces, so 50 shekels was about 0.5 kilograms or 1.1 pounds.* of|strong=\"H4428\"* silver|strong=\"H3701\"*, to|strong=\"H7725\"* give|strong=\"H5414\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. So|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H3478\"* didn’t stay|strong=\"H5975\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Menahem|strong=\"H4505\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 22, + "text": "Menahem|strong=\"H4505\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Pekahiah|strong=\"H6494\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fiftieth|strong=\"H2572\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Pekahiah|strong=\"H6494\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Menahem|strong=\"H4505\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* two|strong=\"H4427\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 25, + "text": "Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, his|strong=\"H5921\"* captain|strong=\"H7991\"*, conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H1121\"* attacked|strong=\"H5221\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Samaria|strong=\"H8111\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* fortress of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, with|strong=\"H5973\"* Argob and|strong=\"H1121\"* Arieh; and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5921\"* were|strong=\"H1121\"* fifty|strong=\"H2572\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Gileadites|strong=\"H1569\"*. He|strong=\"H1004\"* killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Pekahiah|strong=\"H6494\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifty-second|strong=\"H2572\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* for|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H6213\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 29, + "text": "In|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Pekah|strong=\"H6492\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H3478\"* and|strong=\"H3478\"* took|strong=\"H3947\"* Ijon|strong=\"H5859\"*, Abel Beth Maacah, Janoah|strong=\"H3239\"*, Kedesh|strong=\"H6943\"*, Hazor|strong=\"H2674\"*, Gilead|strong=\"H1568\"*, and|strong=\"H3478\"* Galilee|strong=\"H1551\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*; and|strong=\"H3478\"* he|strong=\"H3117\"* carried|strong=\"H1540\"* them|strong=\"H3947\"* captive|strong=\"H1540\"* to|strong=\"H3478\"* Assyria." + }, + { + "verseNum": 30, + "text": "Hoshea|strong=\"H1954\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah made|strong=\"H4427\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, attacked|strong=\"H5221\"* him|strong=\"H5921\"*, killed|strong=\"H5221\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* his|strong=\"H5921\"* place|strong=\"H8478\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*." + }, + { + "verseNum": 31, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Pekah|strong=\"H6492\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 32, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Jotham|strong=\"H3147\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jerusha|strong=\"H3388\"* the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Uzziah|strong=\"H5818\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "However|strong=\"H7535\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*. The|strong=\"H3068\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* and|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 36, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, and|strong=\"H3063\"* all|strong=\"H6213\"* that|strong=\"H3117\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 37, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3068\"* send|strong=\"H7971\"* Rezin|strong=\"H7526\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* against|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 38, + "text": "Jotham|strong=\"H3147\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaz his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H1121\"* seventeenth|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, Ahaz the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H1121\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "Ahaz was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* didn’t do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H1571\"* he|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* even|strong=\"H1571\"* made|strong=\"H3478\"* his|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* fire, according to|strong=\"H3478\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* sacrificed|strong=\"H2076\"* and|strong=\"H6086\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* Rezin|strong=\"H7526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* wage|strong=\"H4421\"* war|strong=\"H4421\"*. They|strong=\"H3808\"* besieged|strong=\"H6696\"* Ahaz, but|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* overcome|strong=\"H3201\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H3427\"* that|strong=\"H3117\"* time|strong=\"H6256\"* Rezin|strong=\"H7526\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria recovered|strong=\"H7725\"* Elath to|strong=\"H5704\"* Syria, and|strong=\"H7725\"* drove the|strong=\"H3117\"* Jews|strong=\"H3064\"* from|strong=\"H7725\"* Elath; and|strong=\"H7725\"* the|strong=\"H3117\"* Syrians came|strong=\"H7725\"* to|strong=\"H5704\"* Elath, and|strong=\"H7725\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H7971\"* Ahaz sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3478\"* Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria, saying, “I|strong=\"H5921\"* am your|strong=\"H5921\"* servant|strong=\"H5650\"* and|strong=\"H1121\"* your|strong=\"H5921\"* son|strong=\"H1121\"*. Come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1121\"* save|strong=\"H3467\"* me|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* rise|strong=\"H6965\"* up|strong=\"H5927\"* against|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "Ahaz took|strong=\"H3947\"* the|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3947\"* treasures of|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* sent|strong=\"H7971\"* it|strong=\"H7971\"* for|strong=\"H7971\"* a|strong=\"H3068\"* present|strong=\"H4672\"* to|strong=\"H3068\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 9, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria listened|strong=\"H8085\"* to|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Damascus|strong=\"H1834\"* and|strong=\"H4428\"* took|strong=\"H8610\"* it|strong=\"H5927\"*, and|strong=\"H4428\"* carried|strong=\"H1540\"* its|strong=\"H5927\"* people|strong=\"H8085\"* captive|strong=\"H1540\"* to|strong=\"H4191\"* Kir|strong=\"H7024\"*, and|strong=\"H4428\"* killed|strong=\"H4191\"* Rezin|strong=\"H7526\"*." + }, + { + "verseNum": 10, + "text": "King|strong=\"H4428\"* Ahaz went|strong=\"H3212\"* to|strong=\"H3212\"* Damascus|strong=\"H1834\"* to|strong=\"H3212\"* meet|strong=\"H7125\"* Tiglath Pileser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H7971\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* that|strong=\"H7200\"* was|strong=\"H4428\"* at|strong=\"H4428\"* Damascus|strong=\"H1834\"*; and|strong=\"H7971\"* King|strong=\"H4428\"* Ahaz sent|strong=\"H7971\"* to|strong=\"H3212\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* a|strong=\"H3068\"* drawing of|strong=\"H4428\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H7971\"* plans to|strong=\"H3212\"* build it|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"*. According to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Ahaz had|strong=\"H4428\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* Damascus|strong=\"H1834\"*, so|strong=\"H3651\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* made|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H5704\"* the|strong=\"H3605\"* coming of|strong=\"H4428\"* King|strong=\"H4428\"* Ahaz from|strong=\"H7971\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H7200\"* the|strong=\"H5921\"* king|strong=\"H4428\"* had|strong=\"H4428\"* come|strong=\"H5927\"* from|strong=\"H5921\"* Damascus|strong=\"H1834\"*, the|strong=\"H5921\"* king|strong=\"H4428\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* came|strong=\"H5927\"* near|strong=\"H7126\"* to|strong=\"H5927\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H4428\"* offered|strong=\"H5927\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* burned|strong=\"H6999\"* his|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4196\"* his|strong=\"H5921\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, poured|strong=\"H5258\"* his|strong=\"H5921\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"*, and|strong=\"H4196\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H4196\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* brought|strong=\"H7126\"* from|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, from|strong=\"H6440\"* between|strong=\"H5921\"* his|strong=\"H5414\"* altar|strong=\"H4196\"* and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"* side|strong=\"H3409\"* of|strong=\"H1004\"* his|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 15, + "text": "King|strong=\"H4428\"* Ahaz commanded|strong=\"H6680\"* Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"*, saying, “On|strong=\"H5921\"* the|strong=\"H3605\"* great|strong=\"H1419\"* altar|strong=\"H4196\"* burn|strong=\"H6999\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* evening|strong=\"H6153\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H4428\"* his|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, their|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H4428\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"*; and|strong=\"H4428\"* sprinkle|strong=\"H2236\"* on|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sacrifice|strong=\"H2077\"*; but|strong=\"H1961\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1961\"* inquire|strong=\"H1239\"* by|strong=\"H5921\"*.”" + }, + { + "verseNum": 16, + "text": "Urijah the|strong=\"H3605\"* priest|strong=\"H3548\"* did|strong=\"H6213\"* so|strong=\"H6213\"*, according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* King|strong=\"H4428\"* Ahaz commanded|strong=\"H6680\"*." + }, + { + "verseNum": 17, + "text": "King|strong=\"H4428\"* Ahaz cut|strong=\"H7112\"* off|strong=\"H7112\"* the|strong=\"H5921\"* panels of|strong=\"H4428\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H4428\"* removed|strong=\"H5493\"* the|strong=\"H5921\"* basin from|strong=\"H5493\"* off|strong=\"H7112\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* took|strong=\"H5493\"* down|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* from|strong=\"H5493\"* off|strong=\"H7112\"* the|strong=\"H5921\"* bronze|strong=\"H5178\"* oxen|strong=\"H1241\"* that|strong=\"H5414\"* were|strong=\"H1241\"* under|strong=\"H8478\"* it|strong=\"H5414\"*, and|strong=\"H4428\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pavement|strong=\"H4837\"* of|strong=\"H4428\"* stone." + }, + { + "verseNum": 18, + "text": "He|strong=\"H3068\"* removed|strong=\"H5437\"* the|strong=\"H6440\"* covered way|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* that|strong=\"H3068\"* they|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s outer|strong=\"H2435\"* entrance|strong=\"H3996\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, because|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Ahaz which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "Ahaz slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Ahaz king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Hoshea|strong=\"H1954\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"* in|strong=\"H8141\"* Samaria|strong=\"H8111\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* nine|strong=\"H8672\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, yet|strong=\"H7535\"* not|strong=\"H3808\"* as|strong=\"H1961\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Shalmaneser|strong=\"H8022\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*; and|strong=\"H7725\"* Hoshea|strong=\"H1954\"* became|strong=\"H1961\"* his|strong=\"H7725\"* servant|strong=\"H5650\"*, and|strong=\"H7725\"* brought|strong=\"H5927\"* him|strong=\"H5921\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria discovered|strong=\"H4672\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* in|strong=\"H8141\"* Hoshea|strong=\"H1954\"*; for|strong=\"H7971\"* he|strong=\"H1004\"* had|strong=\"H4428\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* So|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H7971\"* offered|strong=\"H5927\"* no|strong=\"H3808\"* tribute|strong=\"H4503\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, as|strong=\"H5927\"* he|strong=\"H1004\"* had|strong=\"H4428\"* done year|strong=\"H8141\"* by|strong=\"H8141\"* year|strong=\"H8141\"*. Therefore|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria seized him|strong=\"H7971\"*, and|strong=\"H7971\"* bound him|strong=\"H7971\"* in|strong=\"H8141\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H5927\"* up|strong=\"H5927\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Samaria|strong=\"H8111\"*, and|strong=\"H4428\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"* three|strong=\"H7969\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* the|strong=\"H3920\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hoshea|strong=\"H1954\"* the|strong=\"H3920\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria took|strong=\"H3920\"* Samaria|strong=\"H8111\"* and|strong=\"H3478\"* carried|strong=\"H1540\"* Israel|strong=\"H3478\"* away|strong=\"H1540\"* to|strong=\"H3478\"* Assyria, and|strong=\"H3478\"* placed|strong=\"H3427\"* them|strong=\"H1540\"* in|strong=\"H3427\"* Halah|strong=\"H2477\"*, and|strong=\"H3478\"* on|strong=\"H3427\"* the|strong=\"H3920\"* Habor|strong=\"H2249\"*, the|strong=\"H3920\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, and|strong=\"H3478\"* in|strong=\"H3427\"* the|strong=\"H3920\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H3920\"* Medes|strong=\"H4074\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* was|strong=\"H3068\"* so|strong=\"H1961\"* because|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H5927\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* them|strong=\"H3027\"* up|strong=\"H5927\"* out|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"* from|strong=\"H5927\"* under|strong=\"H8478\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* had|strong=\"H3068\"* feared|strong=\"H3372\"* other gods," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6440\"* statutes|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* secretly|strong=\"H2644\"* did|strong=\"H3478\"* things|strong=\"H1697\"* that|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* right|strong=\"H3651\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* built|strong=\"H1129\"* high|strong=\"H1116\"* places|strong=\"H1116\"* for|strong=\"H5704\"* themselves|strong=\"H1129\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H1121\"* the|strong=\"H3605\"* watchmen|strong=\"H5341\"* to|strong=\"H5704\"* the|strong=\"H3605\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H6086\"* they|strong=\"H5921\"* set|strong=\"H5324\"* up|strong=\"H5324\"* for|strong=\"H5921\"* themselves|strong=\"H5921\"* pillars|strong=\"H4676\"* and|strong=\"H6086\"* Asherah poles on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* hill|strong=\"H1389\"* and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H8033\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, as|strong=\"H1697\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* before|strong=\"H6440\"* them|strong=\"H6440\"* did|strong=\"H6213\"*; and|strong=\"H3068\"* they|strong=\"H8033\"* did|strong=\"H6213\"* wicked|strong=\"H7451\"* things|strong=\"H1697\"* to|strong=\"H3068\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* they|strong=\"H3068\"* served|strong=\"H5647\"* idols|strong=\"H1544\"*, of|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6213\"*, “You|strong=\"H6213\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*.”" + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3068\"* Yahweh|strong=\"H3068\"* testified|strong=\"H5749\"* to|strong=\"H7725\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, by|strong=\"H3027\"* every|strong=\"H3605\"* prophet|strong=\"H5030\"* and|strong=\"H3063\"* every|strong=\"H3605\"* seer|strong=\"H2374\"*, saying, “Turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, and|strong=\"H3063\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H3063\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, according|strong=\"H3027\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* I|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H3068\"* fathers, and|strong=\"H3063\"* which|strong=\"H3068\"* I|strong=\"H6680\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* you|strong=\"H6680\"* by|strong=\"H3027\"* my|strong=\"H8104\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*.”" + }, + { + "verseNum": 14, + "text": "Notwithstanding, they|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*, but|strong=\"H3808\"* hardened|strong=\"H7185\"* their|strong=\"H3068\"* neck|strong=\"H6203\"* like|strong=\"H3808\"* the|strong=\"H8085\"* neck|strong=\"H6203\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers who|strong=\"H3068\"* didn’t believe in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* rejected|strong=\"H3988\"* his|strong=\"H3068\"* statutes|strong=\"H2706\"* and|strong=\"H3068\"* his|strong=\"H3068\"* covenant|strong=\"H1285\"* that|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* with|strong=\"H3068\"* their|strong=\"H3068\"* fathers, and|strong=\"H3068\"* his|strong=\"H3068\"* testimonies|strong=\"H5715\"* which|strong=\"H3068\"* he|strong=\"H6213\"* testified|strong=\"H5749\"* to|strong=\"H3068\"* them|strong=\"H6213\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* followed|strong=\"H3212\"* vanity|strong=\"H1892\"*, and|strong=\"H3068\"* became|strong=\"H1891\"* vain|strong=\"H1892\"*, and|strong=\"H3068\"* followed|strong=\"H3212\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* were|strong=\"H1471\"* around|strong=\"H5439\"* them|strong=\"H6213\"*, concerning|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"* that|strong=\"H3068\"* they|strong=\"H3068\"* should|strong=\"H3068\"* not|strong=\"H1115\"* do|strong=\"H6213\"* like|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* molten|strong=\"H4541\"* images|strong=\"H4541\"* for|strong=\"H6213\"* themselves|strong=\"H7812\"*, even|strong=\"H6213\"* two|strong=\"H8147\"* calves|strong=\"H5695\"*, and|strong=\"H3068\"* made|strong=\"H6213\"* an|strong=\"H6213\"* Asherah, and|strong=\"H3068\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* caused|strong=\"H5674\"* their|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3068\"* daughters|strong=\"H1323\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire, used|strong=\"H6213\"* divination|strong=\"H7081\"* and|strong=\"H1121\"* enchantments|strong=\"H5172\"*, and|strong=\"H1121\"* sold|strong=\"H4376\"* themselves|strong=\"H6213\"* to|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H3966\"* angry with|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* removed|strong=\"H5493\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3068\"* sight|strong=\"H6440\"*. There|strong=\"H3068\"* was|strong=\"H3068\"* none|strong=\"H3808\"* left|strong=\"H7604\"* but|strong=\"H7535\"* the|strong=\"H6440\"* tribe|strong=\"H7626\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* only|strong=\"H7535\"*." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H1571\"* Judah|strong=\"H3063\"* didn’t keep|strong=\"H8104\"* the|strong=\"H6213\"* commandments|strong=\"H4687\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3808\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* which|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* rejected|strong=\"H3988\"* all|strong=\"H3605\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, afflicted|strong=\"H6031\"* them|strong=\"H5414\"*, and|strong=\"H3478\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* raiders, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5414\"* out|strong=\"H7993\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* tore|strong=\"H7167\"* Israel|strong=\"H3478\"* from|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* made|strong=\"H4427\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* king|strong=\"H4427\"*; and|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* drove|strong=\"H5077\"* Israel|strong=\"H3478\"* from|strong=\"H5921\"* following Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* them|strong=\"H5921\"* sin|strong=\"H2398\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sin|strong=\"H2398\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* which|strong=\"H3478\"* he|strong=\"H6213\"* did|strong=\"H6213\"*; they|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H4480\"* them|strong=\"H6213\"*" + }, + { + "verseNum": 23, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* removed|strong=\"H5493\"* Israel|strong=\"H3478\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"*, as|strong=\"H5704\"* he|strong=\"H3117\"* said|strong=\"H1696\"* by|strong=\"H3027\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*. So|strong=\"H2088\"* Israel|strong=\"H3478\"* was|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H5493\"* out|strong=\"H5921\"* of|strong=\"H3068\"* their|strong=\"H3605\"* own|strong=\"H3027\"* land|strong=\"H6440\"* to|strong=\"H1696\"* Assyria to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria brought|strong=\"H3478\"* people|strong=\"H1121\"* from|strong=\"H3478\"* Babylon, from|strong=\"H3478\"* Cuthah|strong=\"H3575\"*, from|strong=\"H3478\"* Avva|strong=\"H5755\"*, and|strong=\"H1121\"* from|strong=\"H3478\"* Hamath|strong=\"H2574\"* and|strong=\"H1121\"* Sepharvaim|strong=\"H5617\"*, and|strong=\"H1121\"* placed|strong=\"H3427\"* them|strong=\"H3423\"* in|strong=\"H3427\"* the|strong=\"H8478\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Samaria|strong=\"H8111\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* they|strong=\"H3478\"* possessed|strong=\"H3423\"* Samaria|strong=\"H8111\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* its|strong=\"H8478\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 25, + "text": "So|strong=\"H7971\"* it|strong=\"H8033\"* was|strong=\"H3068\"*, at|strong=\"H3427\"* the|strong=\"H3068\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* their|strong=\"H3068\"* dwelling|strong=\"H3427\"* there|strong=\"H8033\"*, that|strong=\"H3068\"* they|strong=\"H8033\"* didn’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* lions among|strong=\"H3427\"* them|strong=\"H7971\"*, which|strong=\"H3068\"* killed|strong=\"H2026\"* some|strong=\"H8033\"* of|strong=\"H3068\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H7971\"* they|strong=\"H3808\"* spoke to|strong=\"H4191\"* the|strong=\"H3045\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, saying, “The|strong=\"H3045\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* you|strong=\"H7971\"* have|strong=\"H3045\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* and|strong=\"H7971\"* placed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3045\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* don’t know|strong=\"H3045\"* the|strong=\"H3045\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H3045\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3045\"* land. Therefore|strong=\"H7971\"* he|strong=\"H3808\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* lions among|strong=\"H3427\"* them|strong=\"H7971\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*, they|strong=\"H3808\"* kill|strong=\"H4191\"* them|strong=\"H7971\"*, because they|strong=\"H3808\"* don’t know|strong=\"H3045\"* the|strong=\"H3045\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H3045\"* god|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3045\"* land.”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H4428\"* the|strong=\"H6680\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria commanded|strong=\"H6680\"*, saying, “Carry|strong=\"H3212\"* there|strong=\"H8033\"* one|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6680\"* priests|strong=\"H3548\"* whom you|strong=\"H6680\"* brought|strong=\"H3212\"* from|strong=\"H1540\"* there|strong=\"H8033\"*; and|strong=\"H4428\"* let|strong=\"H1540\"* him|strong=\"H6680\"*+ 17:27 Hebrew: them* go|strong=\"H3212\"* and|strong=\"H4428\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*, and|strong=\"H4428\"* let|strong=\"H1540\"* him|strong=\"H6680\"* teach|strong=\"H3384\"* them|strong=\"H6680\"* the|strong=\"H6680\"* law|strong=\"H4941\"* of|strong=\"H4428\"* the|strong=\"H6680\"* god of|strong=\"H4428\"* the|strong=\"H6680\"* land.”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H1961\"* one|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* whom they|strong=\"H3068\"* had|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* from|strong=\"H1540\"* Samaria|strong=\"H8111\"* came|strong=\"H1961\"* and|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Bethel|strong=\"H1008\"*, and|strong=\"H3068\"* taught|strong=\"H3384\"* them|strong=\"H1540\"* how they|strong=\"H3068\"* should|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "However every|strong=\"H6213\"* nation|strong=\"H1471\"* made|strong=\"H6213\"* gods of|strong=\"H1004\"* their|strong=\"H1992\"* own|strong=\"H1961\"*, and|strong=\"H1004\"* put|strong=\"H3240\"* them|strong=\"H1992\"* in|strong=\"H3427\"* the|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1471\"* the|strong=\"H6213\"* Samaritans|strong=\"H8118\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, every|strong=\"H6213\"* nation|strong=\"H1471\"* in|strong=\"H3427\"* their|strong=\"H1992\"* cities|strong=\"H5892\"* in|strong=\"H3427\"* which|strong=\"H1471\"* they|strong=\"H1992\"* lived|strong=\"H3427\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Babylon made|strong=\"H6213\"* Succoth Benoth, and|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Cuth|strong=\"H3575\"* made|strong=\"H6213\"* Nergal|strong=\"H5370\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* men|strong=\"H6213\"* of|strong=\"H6213\"* Hamath|strong=\"H2574\"* made|strong=\"H6213\"* Ashima," + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* the|strong=\"H6213\"* Avvites|strong=\"H5757\"* made|strong=\"H6213\"* Nibhaz|strong=\"H5026\"* and|strong=\"H1121\"* Tartak|strong=\"H8662\"*; and|strong=\"H1121\"* the|strong=\"H6213\"* Sepharvites|strong=\"H5616\"* burned|strong=\"H8313\"* their|strong=\"H8313\"* children|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H6213\"* fire to|strong=\"H6213\"* Adrammelech and|strong=\"H1121\"* Anammelech|strong=\"H6048\"*, the|strong=\"H6213\"* gods of|strong=\"H1121\"* Sepharvaim|strong=\"H5617\"*." + }, + { + "verseNum": 32, + "text": "So|strong=\"H6213\"* they|strong=\"H1992\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* also|strong=\"H3068\"* made|strong=\"H6213\"* from|strong=\"H3068\"* among|strong=\"H7098\"* themselves|strong=\"H1992\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* for|strong=\"H6213\"* themselves|strong=\"H1992\"*, who|strong=\"H3068\"* sacrificed|strong=\"H6213\"* for|strong=\"H6213\"* them|strong=\"H1992\"* in|strong=\"H3068\"* the|strong=\"H6213\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H8033\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* also|strong=\"H3068\"* served|strong=\"H5647\"* their|strong=\"H3068\"* own|strong=\"H1961\"* gods, after|strong=\"H1961\"* the|strong=\"H5647\"* ways of|strong=\"H3068\"* the|strong=\"H5647\"* nations|strong=\"H1471\"* from|strong=\"H1540\"* among|strong=\"H8033\"* whom they|strong=\"H8033\"* had|strong=\"H3068\"* been|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H1540\"*." + }, + { + "verseNum": 34, + "text": "To|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H1992\"* do|strong=\"H6213\"* what|strong=\"H2088\"* they|strong=\"H1992\"* did|strong=\"H6213\"* before|strong=\"H5704\"*. They|strong=\"H1992\"* don’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* do|strong=\"H6213\"* not|strong=\"H6213\"* follow|strong=\"H6213\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* ordinances|strong=\"H4941\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* law|strong=\"H8451\"*, or|strong=\"H5704\"* the|strong=\"H6213\"* commandment|strong=\"H4687\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* the|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, whom|strong=\"H1992\"* he|strong=\"H3117\"* named|strong=\"H8034\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 35, + "text": "with|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other gods, nor|strong=\"H3808\"* bow|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* them|strong=\"H6680\"*, nor|strong=\"H3808\"* serve|strong=\"H5647\"* them|strong=\"H6680\"*, nor|strong=\"H3808\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* them|strong=\"H6680\"*;" + }, + { + "verseNum": 36, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* with|strong=\"H3068\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H3068\"* with|strong=\"H3068\"* an|strong=\"H3588\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* bow|strong=\"H7812\"* yourselves|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H5186\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* sacrifice|strong=\"H2076\"* to|strong=\"H3068\"* him|strong=\"H5186\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H3605\"* statutes|strong=\"H2706\"* and|strong=\"H3117\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"* and|strong=\"H3117\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* which|strong=\"H3117\"* he|strong=\"H3117\"* wrote|strong=\"H3789\"* for|strong=\"H6213\"* you|strong=\"H3605\"*, you|strong=\"H3605\"* shall|strong=\"H3117\"* observe|strong=\"H8104\"* to|strong=\"H6213\"* do|strong=\"H6213\"* forever|strong=\"H3605\"* more|strong=\"H3808\"*. You|strong=\"H3605\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other|strong=\"H3605\"* gods." + }, + { + "verseNum": 38, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* forget|strong=\"H7911\"* the|strong=\"H3772\"* covenant|strong=\"H1285\"* that|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H3808\"* made|strong=\"H3772\"* with|strong=\"H1285\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* other gods." + }, + { + "verseNum": 39, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies|strong=\"H3027\"*.”" + }, + { + "verseNum": 40, + "text": "However|strong=\"H8085\"* they|strong=\"H1992\"* didn’t listen|strong=\"H8085\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* did|strong=\"H6213\"* what|strong=\"H6213\"* they|strong=\"H1992\"* did|strong=\"H6213\"* before|strong=\"H7223\"*." + }, + { + "verseNum": 41, + "text": "So|strong=\"H6213\"* these|strong=\"H2088\"* nations|strong=\"H1471\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* served|strong=\"H5647\"* their|strong=\"H3068\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*. Their|strong=\"H3068\"* children|strong=\"H1121\"* did|strong=\"H6213\"* likewise|strong=\"H1571\"*, and|strong=\"H1121\"* so|strong=\"H6213\"* did|strong=\"H6213\"* their|strong=\"H3068\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*. They|strong=\"H1992\"* do|strong=\"H6213\"* as|strong=\"H5704\"* their|strong=\"H3068\"* fathers did|strong=\"H6213\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Hoshea|strong=\"H1954\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Hezekiah|strong=\"H2396\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaz king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* began|strong=\"H3063\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Abi the|strong=\"H1961\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H1931\"* removed|strong=\"H5493\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, broke|strong=\"H7665\"* the|strong=\"H3588\"* pillars|strong=\"H4676\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H3588\"* Asherah. He|strong=\"H1931\"* also|strong=\"H6213\"* broke|strong=\"H7665\"* in|strong=\"H3478\"* pieces|strong=\"H7665\"* the|strong=\"H3588\"* bronze|strong=\"H5178\"* serpent|strong=\"H5175\"* that|strong=\"H3588\"* Moses|strong=\"H4872\"* had|strong=\"H1961\"* made|strong=\"H6213\"*, because|strong=\"H3588\"* in|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5704\"* it|strong=\"H1931\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* called|strong=\"H7121\"* it|strong=\"H1931\"* Nehushtan|strong=\"H5180\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* trusted in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* after|strong=\"H1961\"* him|strong=\"H6440\"* was|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3605\"* like|strong=\"H3644\"* him|strong=\"H6440\"* among|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, nor|strong=\"H3808\"* among|strong=\"H3808\"* them|strong=\"H6440\"* that|strong=\"H3605\"* were|strong=\"H3478\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* joined|strong=\"H1692\"* with|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* following him|strong=\"H6680\"*, but|strong=\"H3808\"* kept|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*. Wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H3318\"*, he|strong=\"H3068\"* prospered|strong=\"H7919\"*. He|strong=\"H3068\"* rebelled|strong=\"H4775\"* against|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3068\"* didn’t serve|strong=\"H5647\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* to|strong=\"H5704\"* Gaza|strong=\"H5804\"* and|strong=\"H5892\"* its|strong=\"H5892\"* borders|strong=\"H1366\"*, from|strong=\"H5704\"* the|strong=\"H5221\"* tower|strong=\"H4026\"* of|strong=\"H5892\"* the|strong=\"H5221\"* watchmen|strong=\"H5341\"* to|strong=\"H5704\"* the|strong=\"H5221\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, which|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Hoshea|strong=\"H1954\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Shalmaneser|strong=\"H8022\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Samaria|strong=\"H8111\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H3478\"* the|strong=\"H3920\"* end|strong=\"H7097\"* of|strong=\"H4428\"* three|strong=\"H7969\"* years|strong=\"H8141\"* they|strong=\"H8141\"* took|strong=\"H3920\"* it|strong=\"H1931\"*. In|strong=\"H8141\"* the|strong=\"H3920\"* sixth|strong=\"H8337\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, which|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3920\"* ninth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Hoshea|strong=\"H1954\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Samaria|strong=\"H8111\"* was|strong=\"H3478\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria carried|strong=\"H1540\"* Israel|strong=\"H3478\"* away|strong=\"H1540\"* to|strong=\"H3478\"* Assyria, and|strong=\"H3478\"* put|strong=\"H5148\"* them|strong=\"H1540\"* in|strong=\"H3478\"* Halah|strong=\"H2477\"*, and|strong=\"H3478\"* on|strong=\"H5892\"* the|strong=\"H1540\"* Habor|strong=\"H2249\"*, the|strong=\"H1540\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, and|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1540\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* the|strong=\"H1540\"* Medes|strong=\"H4074\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H5921\"* they|strong=\"H3068\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, but|strong=\"H3808\"* transgressed|strong=\"H5674\"* his|strong=\"H3605\"* covenant|strong=\"H1285\"*, even|strong=\"H3808\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Moses|strong=\"H4872\"* the|strong=\"H3605\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, and|strong=\"H4872\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* it|strong=\"H5921\"* or|strong=\"H3808\"* do|strong=\"H6213\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H4428\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* took|strong=\"H8610\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria at|strong=\"H5921\"* Lachish|strong=\"H3923\"*, saying, “I|strong=\"H5414\"* have|strong=\"H3063\"* offended|strong=\"H2398\"* you|strong=\"H5414\"*. Withdraw|strong=\"H7725\"* from|strong=\"H7725\"* me|strong=\"H5414\"*. That|strong=\"H5414\"* which|strong=\"H2091\"* you|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* me|strong=\"H5414\"*, I|strong=\"H5414\"* will|strong=\"H4428\"* bear|strong=\"H5375\"*.” The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria appointed|strong=\"H5414\"* to|strong=\"H7725\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* thirty|strong=\"H7970\"* talents|strong=\"H3603\"*+ 18:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, Hezekiah|strong=\"H2396\"* cut|strong=\"H7112\"* off|strong=\"H7112\"* the|strong=\"H5414\"* gold from|strong=\"H3068\"* the|strong=\"H5414\"* doors|strong=\"H1817\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, and|strong=\"H3063\"* from|strong=\"H3068\"* the|strong=\"H5414\"* pillars which|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* overlaid|strong=\"H6823\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* Tartan|strong=\"H8661\"*, Rabsaris|strong=\"H7249\"*, and|strong=\"H7971\"* Rabshakeh|strong=\"H7262\"* from|strong=\"H4480\"* Lachish|strong=\"H3923\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* with|strong=\"H3389\"* a|strong=\"H3068\"* great|strong=\"H3515\"* army|strong=\"H2426\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3389\"* went|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H7971\"* came|strong=\"H5927\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*. When|strong=\"H7971\"* they|strong=\"H3389\"* had|strong=\"H4428\"* come|strong=\"H5927\"* up|strong=\"H5927\"*, they|strong=\"H3389\"* came|strong=\"H5927\"* and|strong=\"H7971\"* stood|strong=\"H5975\"* by|strong=\"H5975\"* the|strong=\"H4480\"* conduit|strong=\"H8585\"* of|strong=\"H4428\"* the|strong=\"H4480\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"*, which|strong=\"H7704\"* is|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H4480\"* highway|strong=\"H4546\"* of|strong=\"H4428\"* the|strong=\"H4480\"* fuller’s field|strong=\"H7704\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H3318\"* they|strong=\"H5921\"* had|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H4428\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebnah|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Rabshakeh|strong=\"H7262\"* said to|strong=\"H4428\"* them|strong=\"H2088\"*, “Say now|strong=\"H4994\"* to|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, ‘The|strong=\"H3541\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, says|strong=\"H3541\"*, “What|strong=\"H4100\"* confidence is|strong=\"H2088\"* this|strong=\"H2088\"* in|strong=\"H4428\"* which|strong=\"H4100\"* you|strong=\"H4100\"* trust?" + }, + { + "verseNum": 20, + "text": "You|strong=\"H3588\"* say|strong=\"H1697\"* (but|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1697\"* but|strong=\"H3588\"* vain|strong=\"H8193\"* words|strong=\"H1697\"*), ‘There|strong=\"H6258\"* is|strong=\"H4310\"* counsel|strong=\"H6098\"* and|strong=\"H1697\"* strength|strong=\"H1369\"* for|strong=\"H3588\"* war|strong=\"H4421\"*.’ Now|strong=\"H6258\"* on|strong=\"H5921\"* whom|strong=\"H4310\"* do|strong=\"H1697\"* you|strong=\"H3588\"* trust, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1697\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, you|strong=\"H3605\"* trust in|strong=\"H5921\"* the|strong=\"H3605\"* staff|strong=\"H4938\"* of|strong=\"H4428\"* this|strong=\"H2088\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*, even|strong=\"H3651\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*. If|strong=\"H2009\"* a|strong=\"H3068\"* man|strong=\"H3605\"* leans|strong=\"H5564\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, it|strong=\"H5921\"* will|strong=\"H4428\"* go|strong=\"H4428\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H4428\"* pierce|strong=\"H5344\"* it|strong=\"H5921\"*. So|strong=\"H3651\"* is|strong=\"H2088\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* trust on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* tell me|strong=\"H6440\"*, ‘We|strong=\"H3588\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*,’ isn’t that|strong=\"H3588\"* he|strong=\"H1931\"* whose high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* whose altars|strong=\"H4196\"* Hezekiah|strong=\"H2396\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3063\"* has|strong=\"H3068\"* said to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* this|strong=\"H2088\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*’?" + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, please|strong=\"H4994\"* give|strong=\"H5414\"* pledges|strong=\"H6148\"* to|strong=\"H3201\"* my|strong=\"H5414\"* master|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two thousand horses|strong=\"H5483\"* if you|strong=\"H5414\"* are|strong=\"H5483\"* able|strong=\"H3201\"* on|strong=\"H5921\"* your|strong=\"H5414\"* part|strong=\"H5921\"* to|strong=\"H3201\"* set|strong=\"H5414\"* riders|strong=\"H7392\"* on|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "How then|strong=\"H7725\"* can|strong=\"H5650\"* you|strong=\"H6440\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H6996\"* captain|strong=\"H6346\"* of|strong=\"H6440\"* the|strong=\"H6440\"* least|strong=\"H6996\"* of|strong=\"H6440\"* my|strong=\"H5921\"* master’s servants|strong=\"H5650\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* your|strong=\"H5921\"* trust on|strong=\"H5921\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* for|strong=\"H5921\"* horsemen|strong=\"H6571\"*?" + }, + { + "verseNum": 25, + "text": "Have|strong=\"H3068\"* I|strong=\"H5921\"* now|strong=\"H6258\"* come|strong=\"H5927\"* up|strong=\"H5927\"* without|strong=\"H1107\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*? Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, ‘Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* this|strong=\"H2088\"* land|strong=\"H4725\"*, and|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*.’”’”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1696\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, Shebnah|strong=\"H7644\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, said|strong=\"H1696\"* to|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"*, “Please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Syrian language|strong=\"H3066\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* understand|strong=\"H8085\"* it|strong=\"H5921\"*. Don’t speak|strong=\"H1696\"* with|strong=\"H5973\"* us|strong=\"H4994\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* hearing|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*.”" + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* Rabshakeh|strong=\"H7262\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, “Has|strong=\"H1697\"* my|strong=\"H5921\"* master|strong=\"H3427\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H1696\"* your|strong=\"H5921\"* master|strong=\"H3427\"* and|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*? Hasn’t he|strong=\"H3808\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men who|strong=\"H3427\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, to|strong=\"H1696\"* eat their|strong=\"H5921\"* own|strong=\"H5973\"* dung, and|strong=\"H7971\"* to|strong=\"H1696\"* drink|strong=\"H8354\"* their|strong=\"H5921\"* own|strong=\"H5973\"* urine|strong=\"H7890\"* with|strong=\"H5973\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 28, + "text": "Then|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"* stood|strong=\"H5975\"* and|strong=\"H4428\"* cried|strong=\"H7121\"* with|strong=\"H1696\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H4428\"* the|strong=\"H8085\"* Jews’ language|strong=\"H3066\"*, and|strong=\"H4428\"* spoke|strong=\"H1696\"*, saying|strong=\"H1697\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Don’t let|strong=\"H3808\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H4428\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 30, + "text": "Don’t let|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* make|strong=\"H5414\"* you|strong=\"H5414\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"*, and|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 31, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*.’ For|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* your|strong=\"H8085\"* peace|strong=\"H1293\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*; and|strong=\"H4428\"* everyone of|strong=\"H4428\"* you|strong=\"H3588\"* eat from|strong=\"H3318\"* his|strong=\"H8085\"* own vine|strong=\"H1612\"*, and|strong=\"H4428\"* everyone from|strong=\"H3318\"* his|strong=\"H8085\"* own fig|strong=\"H8384\"* tree|strong=\"H8384\"*, and|strong=\"H4428\"* everyone drink|strong=\"H8354\"* water|strong=\"H4325\"* from|strong=\"H3318\"* his|strong=\"H8085\"* own cistern;" + }, + { + "verseNum": 32, + "text": "until|strong=\"H5704\"* I|strong=\"H3588\"* come|strong=\"H2421\"* and|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"* away|strong=\"H3947\"* to|strong=\"H5704\"* a|strong=\"H3068\"* land like|strong=\"H3808\"* your|strong=\"H3068\"* own land, a|strong=\"H3068\"* land of|strong=\"H3068\"* grain|strong=\"H1715\"* and|strong=\"H3068\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, a|strong=\"H3068\"* land of|strong=\"H3068\"* bread|strong=\"H3899\"* and|strong=\"H3068\"* vineyards|strong=\"H3754\"*, a|strong=\"H3068\"* land of|strong=\"H3068\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H3068\"* of|strong=\"H3068\"* honey|strong=\"H1706\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* live|strong=\"H2421\"* and|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Don’t listen|strong=\"H8085\"* to|strong=\"H5704\"* Hezekiah|strong=\"H2396\"* when|strong=\"H3588\"* he|strong=\"H3588\"* persuades you|strong=\"H3588\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 33, + "text": "Has|strong=\"H4428\"* any of|strong=\"H4428\"* the|strong=\"H3027\"* gods of|strong=\"H4428\"* the|strong=\"H3027\"* nations|strong=\"H1471\"* ever delivered|strong=\"H5337\"* his|strong=\"H3027\"* land out|strong=\"H5337\"* of|strong=\"H4428\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3027\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria?" + }, + { + "verseNum": 34, + "text": "Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Hamath|strong=\"H2574\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Arpad? Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H3027\"* Hena|strong=\"H2012\"*, and|strong=\"H3027\"* Ivvah|strong=\"H5755\"*? Have|strong=\"H3027\"* they|strong=\"H3588\"* delivered|strong=\"H5337\"* Samaria|strong=\"H8111\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H5337\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 35, + "text": "Who|strong=\"H4310\"* are|strong=\"H3027\"* they|strong=\"H3588\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* countries, that|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* their|strong=\"H3605\"* country out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* should|strong=\"H3068\"* deliver|strong=\"H5337\"* Jerusalem|strong=\"H3389\"* out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?’”" + }, + { + "verseNum": 36, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* stayed quiet|strong=\"H2790\"*, and|strong=\"H6030\"* answered|strong=\"H6030\"* him|strong=\"H1931\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"* was|strong=\"H1931\"*, “Don’t answer|strong=\"H6030\"* him|strong=\"H1931\"*.”" + }, + { + "verseNum": 37, + "text": "Then|strong=\"H1121\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1697\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, came|strong=\"H1697\"* with|strong=\"H1004\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* to|strong=\"H5921\"* Hezekiah|strong=\"H2396\"* with|strong=\"H1004\"* their|strong=\"H5921\"* clothes torn|strong=\"H7167\"*, and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5921\"* Rabshakeh|strong=\"H7262\"*’s words|strong=\"H1697\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, covered|strong=\"H3680\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* sent|strong=\"H7971\"* Eliakim, who|strong=\"H3548\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, covered|strong=\"H3680\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, to|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said to|strong=\"H5704\"* him|strong=\"H3205\"*, “Hezekiah|strong=\"H2396\"* says|strong=\"H3541\"*, ‘Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, of|strong=\"H1121\"* rebuke|strong=\"H8433\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rejection|strong=\"H5007\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H3205\"* to|strong=\"H5704\"* the|strong=\"H3588\"* point|strong=\"H5704\"* of|strong=\"H1121\"* birth|strong=\"H3205\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no strength|strong=\"H3581\"* to|strong=\"H5704\"* deliver|strong=\"H6869\"* them|strong=\"H5704\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5375\"* may|strong=\"H3068\"* be|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Rabshakeh|strong=\"H7262\"*, whom the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria his|strong=\"H3605\"* master has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* rebuke|strong=\"H3198\"* the|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*. Therefore|strong=\"H7971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* for|strong=\"H1157\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* that|strong=\"H3605\"* is|strong=\"H3068\"* left|strong=\"H4672\"*.’”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5650\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* came|strong=\"H5650\"* to|strong=\"H4428\"* Isaiah|strong=\"H3470\"*." + }, + { + "verseNum": 6, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Tell|strong=\"H8085\"* your|strong=\"H3068\"* master this|strong=\"H3541\"*: ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* words|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H6440\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* blasphemed|strong=\"H1442\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H8085\"* him|strong=\"H5414\"*, and|strong=\"H7725\"* he|strong=\"H5414\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* news|strong=\"H8052\"*, and|strong=\"H7725\"* will|strong=\"H2719\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H5414\"* own land. I|strong=\"H2005\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* in|strong=\"H8085\"* his|strong=\"H5414\"* own land.”’”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7725\"* Rabshakeh|strong=\"H7262\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* found|strong=\"H4672\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria warring|strong=\"H3898\"* against|strong=\"H5921\"* Libnah|strong=\"H3841\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H8085\"* he|strong=\"H7971\"* heard|strong=\"H8085\"* it|strong=\"H7725\"* said|strong=\"H8085\"* of|strong=\"H4428\"* Tirhakah|strong=\"H8640\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, “Behold|strong=\"H2009\"*, he|strong=\"H7971\"* has|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H7971\"*,” he|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Hezekiah|strong=\"H2396\"*, saying," + }, + { + "verseNum": 10, + "text": "“Tell Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* this|strong=\"H3541\"*: ‘Don’t let|strong=\"H5414\"* your|strong=\"H5414\"* God|strong=\"H5414\"* in|strong=\"H4428\"* whom you|strong=\"H5414\"* trust deceive|strong=\"H5377\"* you|strong=\"H5414\"*, saying, Jerusalem|strong=\"H3389\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3605\"* done|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* lands, by|strong=\"H3605\"* destroying|strong=\"H2763\"* them|strong=\"H6213\"* utterly|strong=\"H2763\"*. Will|strong=\"H4428\"* you|strong=\"H3605\"* be|strong=\"H4428\"* delivered|strong=\"H5337\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H1121\"* the|strong=\"H7843\"* gods of|strong=\"H1121\"* the|strong=\"H7843\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* them|strong=\"H7843\"*, which|strong=\"H1471\"* my|strong=\"H5337\"* fathers have|strong=\"H1121\"* destroyed|strong=\"H7843\"*—Gozan|strong=\"H1470\"*, Haran|strong=\"H2771\"*, Rezeph|strong=\"H7530\"*, and|strong=\"H1121\"* the|strong=\"H7843\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eden|strong=\"H5729\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Telassar|strong=\"H8515\"*?" + }, + { + "verseNum": 13, + "text": "Where is|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"*, the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arpad, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H4428\"* Hena|strong=\"H2012\"*, and|strong=\"H4428\"* Ivvah|strong=\"H5755\"*?’”" + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* received|strong=\"H3947\"* the|strong=\"H6440\"* letter|strong=\"H5612\"* from|strong=\"H6440\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H6440\"* messengers|strong=\"H4397\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*. Then|strong=\"H3947\"* Hezekiah|strong=\"H2396\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* spread|strong=\"H6566\"* it|strong=\"H7121\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* prayed|strong=\"H6419\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* are|strong=\"H3478\"* enthroned|strong=\"H3427\"* above|strong=\"H6440\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, you|strong=\"H6440\"* are|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H6440\"* alone|strong=\"H1931\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. You|strong=\"H6440\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3478\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 16, + "text": "Incline|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*. Open|strong=\"H6491\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* see|strong=\"H7200\"*. Hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Sennacherib|strong=\"H5576\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H8085\"* living|strong=\"H2416\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "Truly, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* their|strong=\"H3068\"* lands|strong=\"H2717\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3027\"* have|strong=\"H3027\"* cast|strong=\"H5414\"* their|strong=\"H5414\"* gods into|strong=\"H3027\"* the|strong=\"H3588\"* fire; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* no|strong=\"H3808\"* gods, but|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H1992\"*’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone. Therefore|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3027\"* destroyed them|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, save|strong=\"H3467\"* us|strong=\"H4994\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, out|strong=\"H3045\"* of|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H4994\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H3027\"* God|strong=\"H3068\"* alone|strong=\"H3045\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz sent|strong=\"H7971\"* to|strong=\"H3478\"* Hezekiah|strong=\"H2396\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* ‘You|strong=\"H7971\"* have|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3478\"* me|strong=\"H7971\"* against|strong=\"H3068\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria, and|strong=\"H1121\"* I|strong=\"H3541\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*: ‘The|strong=\"H5921\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* has|strong=\"H3068\"* despised you|strong=\"H5921\"* and|strong=\"H3068\"* ridiculed you|strong=\"H5921\"*. The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* has|strong=\"H3068\"* shaken|strong=\"H5128\"* her|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* defied|strong=\"H2778\"* and|strong=\"H3478\"* blasphemed|strong=\"H1442\"*? Against|strong=\"H5921\"* whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* exalted|strong=\"H7311\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* and|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* high|strong=\"H4791\"*? Against|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 23, + "text": "By|strong=\"H3027\"* your|strong=\"H3772\"* messengers|strong=\"H4397\"*, you|strong=\"H3027\"* have|strong=\"H3027\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Lord, and|strong=\"H3027\"* have|strong=\"H3027\"* said, “With|strong=\"H3027\"* the|strong=\"H5927\"* multitude of|strong=\"H3027\"* my|strong=\"H5927\"* chariots|strong=\"H7393\"*, I|strong=\"H3772\"* have|strong=\"H3027\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* height|strong=\"H6967\"* of|strong=\"H3027\"* the|strong=\"H5927\"* mountains|strong=\"H2022\"*, to|strong=\"H5927\"* the|strong=\"H5927\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3027\"* Lebanon|strong=\"H3844\"*, and|strong=\"H3027\"* I|strong=\"H3772\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* its|strong=\"H5927\"* tall|strong=\"H6967\"* cedars and|strong=\"H3027\"* its|strong=\"H5927\"* choice|strong=\"H4005\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"*; and|strong=\"H3027\"* I|strong=\"H3772\"* will|strong=\"H3027\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* his|strong=\"H3027\"* farthest|strong=\"H7093\"* lodging|strong=\"H4411\"* place|strong=\"H3027\"*, the|strong=\"H5927\"* forest|strong=\"H3293\"* of|strong=\"H3027\"* his|strong=\"H3027\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H6471\"* have|strong=\"H3605\"* dug|strong=\"H6979\"* and|strong=\"H8354\"* drunk|strong=\"H8354\"* strange|strong=\"H2114\"* waters|strong=\"H4325\"*, and|strong=\"H8354\"* I|strong=\"H6471\"* will|strong=\"H4325\"* dry|strong=\"H2717\"* up|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H2975\"* of|strong=\"H4325\"* Egypt|strong=\"H4693\"* with|strong=\"H4325\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H4325\"* my|strong=\"H3605\"* feet|strong=\"H6471\"*.”" + }, + { + "verseNum": 25, + "text": "Haven’t you|strong=\"H3117\"* heard|strong=\"H8085\"* how|strong=\"H8085\"* I|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H6213\"* long|strong=\"H3117\"* ago|strong=\"H7350\"*, and|strong=\"H3117\"* formed|strong=\"H3335\"* it|strong=\"H6213\"* of|strong=\"H3117\"* ancient|strong=\"H6924\"* times|strong=\"H3117\"*? Now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, that|strong=\"H3117\"* it|strong=\"H6213\"* should|strong=\"H3117\"* be|strong=\"H1961\"* yours to|strong=\"H1961\"* lay|strong=\"H1961\"* waste|strong=\"H7582\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* into|strong=\"H6213\"* ruinous|strong=\"H5327\"* heaps|strong=\"H1530\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H1961\"* their|strong=\"H6440\"* inhabitants|strong=\"H3427\"* had|strong=\"H1961\"* little power|strong=\"H3027\"*. They|strong=\"H6440\"* were|strong=\"H1961\"* dismayed|strong=\"H2865\"* and|strong=\"H3027\"* confounded. They|strong=\"H6440\"* were|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* of|strong=\"H3027\"* the|strong=\"H6440\"* field|strong=\"H7704\"* and|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H6440\"* green|strong=\"H3419\"* herb|strong=\"H6212\"*, like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* on|strong=\"H3427\"* the|strong=\"H6440\"* housetops|strong=\"H1406\"* and|strong=\"H3027\"* like|strong=\"H1961\"* grain|strong=\"H7054\"* blasted|strong=\"H7711\"* before|strong=\"H6440\"* it|strong=\"H6440\"* has|strong=\"H1961\"* grown|strong=\"H7054\"* up|strong=\"H7054\"*." + }, + { + "verseNum": 27, + "text": "But I|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"*, your|strong=\"H3045\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, your|strong=\"H3045\"* coming|strong=\"H3318\"* in|strong=\"H3427\"*, and|strong=\"H3318\"* your|strong=\"H3045\"* raging|strong=\"H7264\"* against|strong=\"H3427\"* me|strong=\"H3318\"*." + }, + { + "verseNum": 28, + "text": "Because|strong=\"H3282\"* of|strong=\"H1870\"* your|strong=\"H7760\"* raging|strong=\"H7264\"* against|strong=\"H5927\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* because|strong=\"H3282\"* your|strong=\"H7760\"* arrogance|strong=\"H7600\"* has|strong=\"H7600\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H7725\"* my|strong=\"H7760\"* ears, therefore I|strong=\"H7760\"* will|strong=\"H7725\"* put|strong=\"H7760\"* my|strong=\"H7760\"* hook|strong=\"H2397\"* in|strong=\"H7725\"* your|strong=\"H7760\"* nose, and|strong=\"H7725\"* my|strong=\"H7760\"* bridle|strong=\"H4964\"* in|strong=\"H7725\"* your|strong=\"H7760\"* lips|strong=\"H8193\"*, and|strong=\"H7725\"* I|strong=\"H7760\"* will|strong=\"H7725\"* turn|strong=\"H7725\"* you|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which you|strong=\"H7725\"* came|strong=\"H5927\"*.’" + }, + { + "verseNum": 29, + "text": "“This|strong=\"H2088\"* will|strong=\"H3754\"* be|strong=\"H8141\"* the|strong=\"H8141\"* sign to|strong=\"H8141\"* you|strong=\"H8141\"*: This|strong=\"H2088\"* year|strong=\"H8141\"*, you|strong=\"H8141\"* will|strong=\"H3754\"* eat that|strong=\"H8141\"* which|strong=\"H2088\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H2088\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* second|strong=\"H8145\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* springs from|strong=\"H2232\"* that|strong=\"H8141\"*; and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* third|strong=\"H7992\"* year|strong=\"H8141\"* sow|strong=\"H2232\"* and|strong=\"H8141\"* reap|strong=\"H7114\"*, and|strong=\"H8141\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* and|strong=\"H8141\"* eat their|strong=\"H7114\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H6213\"* remnant|strong=\"H7604\"* that|strong=\"H3063\"* has|strong=\"H3063\"* escaped|strong=\"H6413\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* again|strong=\"H3254\"* take|strong=\"H6213\"* root|strong=\"H8328\"* downward|strong=\"H4295\"*, and|strong=\"H3063\"* bear|strong=\"H6213\"* fruit|strong=\"H6529\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* those|strong=\"H3318\"* who|strong=\"H3068\"* shall|strong=\"H3068\"* escape|strong=\"H6413\"*. Yahweh|strong=\"H3068\"*’s zeal|strong=\"H7068\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 32, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, ‘He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* to|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, nor|strong=\"H3808\"* shoot|strong=\"H3384\"* an|strong=\"H8033\"* arrow|strong=\"H2671\"* there|strong=\"H8033\"*. He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* before|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* shield|strong=\"H4043\"*, nor|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* the|strong=\"H5002\"* same|strong=\"H2063\"* way|strong=\"H1870\"* that|strong=\"H3068\"* he|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 34, + "text": "‘For|strong=\"H4616\"* I|strong=\"H5650\"* will|strong=\"H5650\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H1732\"* save|strong=\"H3467\"* it|strong=\"H2063\"*, for|strong=\"H4616\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"* and|strong=\"H5892\"* for|strong=\"H4616\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.’”" + }, + { + "verseNum": 35, + "text": "That|strong=\"H3605\"* night|strong=\"H3915\"*, Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* struck|strong=\"H5221\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* eighty-five|strong=\"H8084\"* thousand in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Assyrians. When|strong=\"H1961\"* men|strong=\"H3605\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, these|strong=\"H1931\"* were|strong=\"H1961\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"*." + }, + { + "verseNum": 36, + "text": "So|strong=\"H7725\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria departed|strong=\"H3212\"*, went|strong=\"H3212\"* home|strong=\"H7725\"*, and|strong=\"H7725\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Nineveh|strong=\"H5210\"*." + }, + { + "verseNum": 37, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* worshiping|strong=\"H7812\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Nisroch|strong=\"H5268\"* his|strong=\"H5221\"* god, Adrammelech and|strong=\"H1121\"* Sharezer|strong=\"H8272\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* escaped|strong=\"H4422\"* into|strong=\"H2719\"* the|strong=\"H5221\"* land of|strong=\"H1121\"* Ararat. Esar Haddon his|strong=\"H5221\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* sick|strong=\"H2470\"* and|strong=\"H1121\"* dying|strong=\"H4191\"*. Isaiah|strong=\"H3470\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz came|strong=\"H3068\"* to|strong=\"H4191\"* him|strong=\"H6680\"*, and|strong=\"H1121\"* said to|strong=\"H4191\"* him|strong=\"H6680\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Set|strong=\"H6680\"* your|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3068\"* order|strong=\"H6680\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3068\"* he|strong=\"H3068\"* turned|strong=\"H5437\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* wall|strong=\"H7023\"*, and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 3, + "text": "“Remember|strong=\"H2142\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H1980\"* beg|strong=\"H4994\"* you|strong=\"H6440\"*, how|strong=\"H4994\"* I|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* truth and|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H1980\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*.” And|strong=\"H1980\"* Hezekiah|strong=\"H2396\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 4, + "text": "Before|strong=\"H3808\"* Isaiah|strong=\"H3470\"* had|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3068\"* middle|strong=\"H8484\"* part of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3318\"* him|strong=\"H3318\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Turn|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H3068\"* tell|strong=\"H8085\"* Hezekiah|strong=\"H2396\"* the|strong=\"H8085\"* prince|strong=\"H5057\"* of|strong=\"H1004\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1004\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*. I|strong=\"H3117\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* tears|strong=\"H1832\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* you|strong=\"H3117\"*. On|strong=\"H3117\"* the|strong=\"H8085\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, you|strong=\"H3117\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* will|strong=\"H4428\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* days|strong=\"H3117\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"*. I|strong=\"H3117\"* will|strong=\"H4428\"* deliver|strong=\"H5337\"* you|strong=\"H5921\"* and|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. I|strong=\"H3117\"* will|strong=\"H4428\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H5921\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"*, and|strong=\"H4428\"* for|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.”’”" + }, + { + "verseNum": 7, + "text": "Isaiah|strong=\"H3470\"* said, “Take|strong=\"H3947\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H8384\"*.”" + }, + { + "verseNum": 8, + "text": "Hezekiah|strong=\"H2396\"* said to|strong=\"H3068\"* Isaiah|strong=\"H3470\"*, “What|strong=\"H4100\"* will|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3588\"* sign that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* me|strong=\"H5927\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* the|strong=\"H3588\"* third|strong=\"H7992\"* day|strong=\"H3117\"*?”" + }, + { + "verseNum": 9, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1696\"*, “This|strong=\"H2088\"* will|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H3588\"* sign to|strong=\"H1696\"* you|strong=\"H3588\"* from|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*: should|strong=\"H3068\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* go|strong=\"H1980\"* forward|strong=\"H1980\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"*, or|strong=\"H3068\"* go|strong=\"H1980\"* back|strong=\"H7725\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"*?”" + }, + { + "verseNum": 10, + "text": "Hezekiah|strong=\"H2396\"* answered|strong=\"H7725\"*, “It|strong=\"H3588\"* is|strong=\"H6738\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* for|strong=\"H3588\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* to|strong=\"H7725\"* go|strong=\"H7725\"* forward ten|strong=\"H6235\"* steps|strong=\"H4609\"*. No|strong=\"H3808\"*, but|strong=\"H3588\"* let|strong=\"H5186\"* the|strong=\"H3588\"* shadow|strong=\"H6738\"* return|strong=\"H7725\"* backward ten|strong=\"H6235\"* steps|strong=\"H4609\"*.”" + }, + { + "verseNum": 11, + "text": "Isaiah|strong=\"H3470\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* cried|strong=\"H7121\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* brought|strong=\"H7725\"* the|strong=\"H3068\"* shadow|strong=\"H6738\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"* backward, by|strong=\"H3068\"* which|strong=\"H3068\"* it|strong=\"H7121\"* had|strong=\"H3068\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sundial of|strong=\"H3068\"* Ahaz." + }, + { + "verseNum": 12, + "text": "At|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"* Berodach Baladan|strong=\"H1081\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baladan|strong=\"H1081\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, sent|strong=\"H7971\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 13, + "text": "Hezekiah|strong=\"H2396\"* listened|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H3701\"* showed|strong=\"H7200\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storehouse|strong=\"H5238\"* of|strong=\"H1004\"* his|strong=\"H3605\"* precious|strong=\"H2896\"* things|strong=\"H1697\"*—the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* spices|strong=\"H1314\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* armor|strong=\"H3627\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3605\"* treasures. There|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, or|strong=\"H3808\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* dominion|strong=\"H4474\"*, that|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* didn’t show|strong=\"H7200\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H4428\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H4428\"* said to|strong=\"H4428\"* him|strong=\"H4428\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* these|strong=\"H4428\"* men say? From|strong=\"H7350\"* where|strong=\"H4100\"* did|strong=\"H4100\"* they|strong=\"H4100\"* come|strong=\"H7350\"* to|strong=\"H4428\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3605\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3808\"* seen|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 16, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come that|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* laid|strong=\"H5375\"* up|strong=\"H5375\"* in|strong=\"H3068\"* store to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* to|strong=\"H5704\"* Babylon. Nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H3498\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "‘They|strong=\"H3205\"* will|strong=\"H1961\"* take|strong=\"H3947\"* away|strong=\"H3947\"* some|strong=\"H4480\"* of|strong=\"H1121\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* issue|strong=\"H3318\"* from|strong=\"H4480\"* you|strong=\"H3947\"*, whom you|strong=\"H3947\"* will|strong=\"H1961\"* father|strong=\"H3205\"*; and|strong=\"H1121\"* they|strong=\"H3205\"* will|strong=\"H1961\"* be|strong=\"H1961\"* eunuchs|strong=\"H5631\"* in|strong=\"H4428\"* the|strong=\"H3947\"* palace|strong=\"H1964\"* of|strong=\"H1121\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon.’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1961\"* Hezekiah|strong=\"H2396\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Isaiah|strong=\"H3470\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.” He|strong=\"H3117\"* said|strong=\"H1696\"* moreover|strong=\"H1961\"*, “Isn’t it|strong=\"H1961\"* so|strong=\"H1961\"*, if|strong=\"H1961\"* peace|strong=\"H7965\"* and|strong=\"H3068\"* truth|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* my|strong=\"H3068\"* days|strong=\"H3117\"*?”" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3063\"* how|strong=\"H6213\"* he|strong=\"H3117\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pool|strong=\"H1295\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* conduit|strong=\"H8585\"*, and|strong=\"H3063\"* brought|strong=\"H6213\"* water|strong=\"H4325\"* into|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 21, + "text": "Hezekiah|strong=\"H2396\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Manasseh|strong=\"H4519\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Manasseh|strong=\"H4519\"* was|strong=\"H8034\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* fifty-five|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4519\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hephzibah|strong=\"H2657\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, after the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* built|strong=\"H1129\"* again|strong=\"H7725\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1116\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3605\"* father had|strong=\"H3478\"* destroyed; and|strong=\"H6965\"* he|strong=\"H6213\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* altars|strong=\"H4196\"* for|strong=\"H6213\"* Baal|strong=\"H1168\"*, and|strong=\"H6965\"* made|strong=\"H6213\"* an|strong=\"H1129\"* Asherah, as|strong=\"H6213\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* did|strong=\"H6213\"*, and|strong=\"H6965\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* served|strong=\"H5647\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said, “I|strong=\"H7760\"* will|strong=\"H3068\"* put|strong=\"H7760\"* my|strong=\"H3068\"* name|strong=\"H8034\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1004\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3605\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* his|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire, practiced|strong=\"H6213\"* sorcery, used|strong=\"H6213\"* enchantments|strong=\"H5172\"*, and|strong=\"H1121\"* dealt|strong=\"H6213\"* with|strong=\"H3068\"* those|strong=\"H1121\"* who|strong=\"H3068\"* had|strong=\"H3068\"* familiar spirits and|strong=\"H1121\"* with|strong=\"H3068\"* wizards|strong=\"H3049\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* much|strong=\"H7235\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H3605\"* engraved image|strong=\"H6459\"* of|strong=\"H1121\"* Asherah that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* David|strong=\"H1732\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “In|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H3068\"* I|strong=\"H7760\"* have|strong=\"H3068\"* chosen out|strong=\"H6213\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H7760\"* will|strong=\"H3068\"* put|strong=\"H7760\"* my|strong=\"H3605\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* not|strong=\"H3808\"* cause|strong=\"H5414\"* the|strong=\"H3605\"* feet|strong=\"H7272\"* of|strong=\"H5650\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* wander|strong=\"H5110\"* any|strong=\"H3605\"* more|strong=\"H3254\"* out|strong=\"H4480\"* of|strong=\"H5650\"* the|strong=\"H3605\"* land which|strong=\"H3478\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* their|strong=\"H3605\"* fathers, if only|strong=\"H7535\"* they|strong=\"H3808\"* will|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H4480\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H5650\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*, and|strong=\"H4872\"* according|strong=\"H4480\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* that|strong=\"H3605\"* my|strong=\"H8104\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* they|strong=\"H3068\"* didn’t listen|strong=\"H8085\"*, and|strong=\"H1121\"* Manasseh|strong=\"H4519\"* seduced|strong=\"H8582\"* them|strong=\"H6440\"* to|strong=\"H3478\"* do|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* did|strong=\"H6213\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H3068\"* prophets|strong=\"H5030\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Because|strong=\"H6440\"* Manasseh|strong=\"H4519\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H4428\"* done|strong=\"H6213\"* these|strong=\"H6213\"* abominations|strong=\"H8441\"*, and|strong=\"H3063\"* has|strong=\"H4428\"* done|strong=\"H6213\"* wickedly|strong=\"H7489\"* above|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Amorites did|strong=\"H6213\"*, who|strong=\"H3605\"* were|strong=\"H3063\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3063\"* has|strong=\"H4428\"* also|strong=\"H1571\"* made|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H6213\"* sin|strong=\"H2398\"* with|strong=\"H6213\"* his|strong=\"H3605\"* idols|strong=\"H1544\"*;" + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* such|strong=\"H3651\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* hears|strong=\"H8085\"* of|strong=\"H3068\"* it|strong=\"H5921\"*, both|strong=\"H8147\"* his|strong=\"H3605\"* ears will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H1004\"* stretch|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* the|strong=\"H6440\"* line|strong=\"H6957\"* of|strong=\"H1004\"* Samaria|strong=\"H8111\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* plumb line|strong=\"H6957\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*; and|strong=\"H1004\"* I|strong=\"H5921\"* will|strong=\"H1004\"* wipe|strong=\"H4229\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3389\"* a|strong=\"H3068\"* man|strong=\"H6440\"* wipes|strong=\"H4229\"* a|strong=\"H3068\"* dish|strong=\"H6747\"*, wiping|strong=\"H4229\"* it|strong=\"H5921\"* and|strong=\"H1004\"* turning|strong=\"H2015\"* it|strong=\"H5921\"* upside|strong=\"H5921\"* down|strong=\"H5186\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* cast|strong=\"H5414\"* off|strong=\"H5203\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H3027\"* my|strong=\"H5414\"* inheritance|strong=\"H5159\"* and|strong=\"H3027\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*. They|strong=\"H3605\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prey and|strong=\"H3027\"* a|strong=\"H3068\"* plunder|strong=\"H4933\"* to|strong=\"H1961\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*," + }, + { + "verseNum": 15, + "text": "because|strong=\"H4480\"* they|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H5869\"* is|strong=\"H2088\"* evil|strong=\"H7451\"* in|strong=\"H6213\"* my|strong=\"H3318\"* sight|strong=\"H5869\"*, and|strong=\"H3117\"* have|strong=\"H1961\"* provoked|strong=\"H3707\"* me|strong=\"H4480\"* to|strong=\"H5704\"* anger|strong=\"H3707\"* since|strong=\"H4480\"* the|strong=\"H6213\"* day|strong=\"H3117\"* their|strong=\"H1961\"* fathers came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H1571\"* Manasseh|strong=\"H4519\"* shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* very|strong=\"H3966\"* much|strong=\"H7235\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3068\"* filled|strong=\"H4390\"* Jerusalem|strong=\"H3389\"* from|strong=\"H5704\"* one|strong=\"H6310\"* end|strong=\"H6310\"* to|strong=\"H5704\"* another|strong=\"H6310\"*; in|strong=\"H3068\"* addition|strong=\"H1571\"* to|strong=\"H5704\"* his|strong=\"H3068\"* sin|strong=\"H2403\"* with|strong=\"H4390\"* which|strong=\"H3068\"* he|strong=\"H5704\"* made|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* sin|strong=\"H2403\"*, in|strong=\"H3068\"* doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H3117\"* sinned|strong=\"H2398\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 18, + "text": "Manasseh|strong=\"H4519\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* was|strong=\"H1004\"* buried|strong=\"H6912\"* in|strong=\"H1004\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* his|strong=\"H8478\"* own|strong=\"H5973\"* house|strong=\"H1004\"*, in|strong=\"H1004\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*; and|strong=\"H1121\"* Amon his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 19, + "text": "Amon was|strong=\"H8034\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Meshullemeth|strong=\"H4922\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Haruz|strong=\"H2743\"* of|strong=\"H1121\"* Jotbah|strong=\"H3192\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* Manasseh|strong=\"H4519\"* his|strong=\"H3068\"* father did|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3605\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father walked|strong=\"H1980\"* in|strong=\"H1980\"*, and|strong=\"H1980\"* served|strong=\"H5647\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father served|strong=\"H5647\"*, and|strong=\"H1980\"* worshiped|strong=\"H7812\"* them|strong=\"H5647\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1980\"* he|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers, and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Amon conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* put|strong=\"H4191\"* the|strong=\"H5921\"* king|strong=\"H4428\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5221\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land killed|strong=\"H5221\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H4428\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* King|strong=\"H4428\"* Amon; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land made|strong=\"H4427\"* Josiah|strong=\"H2977\"* his|strong=\"H3605\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 25, + "text": "Now|strong=\"H3117\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amon which|strong=\"H1992\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 26, + "text": "He|strong=\"H4427\"* was|strong=\"H1121\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H8478\"* tomb|strong=\"H6900\"* in|strong=\"H6912\"* the|strong=\"H8478\"* garden|strong=\"H1588\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, and|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* was|strong=\"H8034\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* thirty-one|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H2977\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jedidah|strong=\"H3040\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"* of|strong=\"H1121\"* Bozkath|strong=\"H1218\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3225\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3212\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*, the|strong=\"H3068\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Shaphan|strong=\"H8227\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaliah the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H3068\"* scribe|strong=\"H5608\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, saying," + }, + { + "verseNum": 4, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Hilkiah|strong=\"H2518\"* the|strong=\"H8104\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, that|strong=\"H5971\"* he|strong=\"H3068\"* may|strong=\"H3068\"* count|strong=\"H8552\"* the|strong=\"H8104\"* money|strong=\"H3701\"* which|strong=\"H3068\"* is|strong=\"H3068\"* brought|strong=\"H5927\"* into|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* the|strong=\"H8104\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H8104\"* threshold|strong=\"H5592\"* have|strong=\"H3068\"* gathered of|strong=\"H1004\"* the|strong=\"H8104\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workers|strong=\"H4399\"* who|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* let|strong=\"H5414\"* them|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5921\"* workers|strong=\"H4399\"* who|strong=\"H3068\"* are|strong=\"H3027\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, to|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H5921\"* damage|strong=\"H6485\"* to|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"H1004\"* the|strong=\"H1129\"* carpenters|strong=\"H2796\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H1129\"* builders|strong=\"H1129\"*, and|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H1129\"* masons|strong=\"H1443\"*, and|strong=\"H1004\"* for|strong=\"H1004\"* buying|strong=\"H7069\"* timber|strong=\"H6086\"* and|strong=\"H1004\"* cut stone to|strong=\"H1004\"* repair|strong=\"H2388\"* the|strong=\"H1129\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, no|strong=\"H3808\"* accounting|strong=\"H2803\"* shall|strong=\"H3027\"* be|strong=\"H3808\"* asked of|strong=\"H3027\"* them|strong=\"H5414\"* for|strong=\"H3588\"* the|strong=\"H5921\"* money|strong=\"H3701\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* deal|strong=\"H6213\"* faithfully.”" + }, + { + "verseNum": 8, + "text": "Hilkiah|strong=\"H2518\"* the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* said|strong=\"H7121\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* found|strong=\"H4672\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1004\"* the|strong=\"H5921\"* law|strong=\"H8451\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” Hilkiah|strong=\"H2518\"* delivered|strong=\"H5414\"* the|strong=\"H5921\"* book|strong=\"H5612\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* came|strong=\"H3068\"* to|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* the|strong=\"H5921\"* king|strong=\"H4428\"* word|strong=\"H1697\"* again|strong=\"H7725\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Your|strong=\"H3068\"* servants|strong=\"H5650\"* have|strong=\"H3068\"* emptied|strong=\"H5413\"* out|strong=\"H4672\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H7725\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Hilkiah|strong=\"H2518\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* has|strong=\"H4428\"* delivered|strong=\"H5414\"* a|strong=\"H3068\"* book|strong=\"H5612\"* to|strong=\"H5414\"* me|strong=\"H5414\"*.” Then|strong=\"H5414\"* Shaphan|strong=\"H8227\"* read|strong=\"H7121\"* it|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H8085\"* law|strong=\"H8451\"*, he|strong=\"H4428\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"* the|strong=\"H6680\"* priest|strong=\"H3548\"*, Ahikam the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Achbor|strong=\"H5907\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micaiah|strong=\"H4320\"*, Shaphan|strong=\"H8227\"* the|strong=\"H6680\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* the|strong=\"H6680\"* king|strong=\"H4428\"*’s servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 13, + "text": "“Go|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*, concerning|strong=\"H5921\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H3068\"* found|strong=\"H4672\"*; for|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* that|strong=\"H3588\"* is|strong=\"H3068\"* kindled|strong=\"H3341\"* against|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H3588\"* our|strong=\"H3068\"* fathers have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3588\"* which|strong=\"H1931\"* is|strong=\"H3068\"* written|strong=\"H3789\"* concerning|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H1696\"* Hilkiah|strong=\"H2518\"* the|strong=\"H8104\"* priest|strong=\"H3548\"*, Ahikam, Achbor|strong=\"H5907\"*, Shaphan|strong=\"H8227\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Huldah|strong=\"H2468\"* the|strong=\"H8104\"* prophetess|strong=\"H5031\"*, the|strong=\"H8104\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tikvah|strong=\"H8616\"*, the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harhas|strong=\"H2745\"*, keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* wardrobe (now|strong=\"H3212\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3427\"* the|strong=\"H8104\"* second|strong=\"H4932\"* quarter); and|strong=\"H1121\"* they|strong=\"H1931\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 15, + "text": "She said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Tell the|strong=\"H3541\"* man who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 16, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3063\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H3068\"* read|strong=\"H7121\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"H4616\"* they|strong=\"H3808\"* have|strong=\"H3027\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"* and|strong=\"H3027\"* have|strong=\"H3027\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3027\"* other|strong=\"H2088\"* gods, that|strong=\"H3605\"* they|strong=\"H3808\"* might|strong=\"H4616\"* provoke|strong=\"H3707\"* me|strong=\"H5800\"* to|strong=\"H3027\"* anger|strong=\"H3707\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, therefore|strong=\"H4616\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"* shall|strong=\"H3027\"* be|strong=\"H3808\"* kindled|strong=\"H3341\"* against|strong=\"H3027\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3027\"* it|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.’”" + }, + { + "verseNum": 18, + "text": "But|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, tell|strong=\"H8085\"* him|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"* the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Concerning|strong=\"H1697\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "because|strong=\"H5921\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* tender|strong=\"H7401\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* when|strong=\"H1961\"* you|strong=\"H6440\"* heard|strong=\"H8085\"* what|strong=\"H2088\"* I|strong=\"H5921\"* spoke|strong=\"H1696\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H5921\"* inhabitants|strong=\"H3427\"*, that|strong=\"H8085\"* they|strong=\"H3068\"* should|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"* and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* torn|strong=\"H7167\"* your|strong=\"H3068\"* clothes and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* you|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "‘Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H4428\"* gather you|strong=\"H3605\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers, and|strong=\"H7725\"* you|strong=\"H3605\"* will|strong=\"H4428\"* be|strong=\"H3808\"* gathered to|strong=\"H7725\"* your|strong=\"H3605\"* grave|strong=\"H6913\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* not|strong=\"H3808\"* see|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1697\"* I|strong=\"H2005\"* will|strong=\"H4428\"* bring|strong=\"H7725\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”’” So|strong=\"H3651\"* they|strong=\"H3651\"* brought|strong=\"H7725\"* this|strong=\"H2088\"* message|strong=\"H1697\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"*, and|strong=\"H3063\"* they|strong=\"H3605\"* gathered to|strong=\"H7971\"* him|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* him|strong=\"H7121\"*—with|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* small|strong=\"H6996\"* and|strong=\"H3063\"* great|strong=\"H1419\"*; and|strong=\"H3063\"* he|strong=\"H5704\"* read|strong=\"H7121\"* in|strong=\"H3427\"* their|strong=\"H3605\"* hearing all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* which|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pillar|strong=\"H5982\"* and|strong=\"H6965\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H6965\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H6965\"* his|strong=\"H3605\"* statutes|strong=\"H2708\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, to|strong=\"H3068\"* confirm|strong=\"H6965\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* this|strong=\"H2088\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* were|strong=\"H5971\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*; and|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* agreed|strong=\"H5975\"* to|strong=\"H3068\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H4428\"* the|strong=\"H3605\"* second|strong=\"H4932\"* order|strong=\"H6680\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* keepers|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* threshold|strong=\"H5592\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H8064\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Baal|strong=\"H1168\"*, for|strong=\"H6213\"* the|strong=\"H3605\"* Asherah, and|strong=\"H3068\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* burned|strong=\"H8313\"* them|strong=\"H6213\"* outside|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fields|strong=\"H7709\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Kidron|strong=\"H6939\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* their|strong=\"H3605\"* ashes|strong=\"H6083\"* to|strong=\"H3318\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* got rid|strong=\"H7673\"* of|strong=\"H4428\"* the|strong=\"H3605\"* idolatrous|strong=\"H3649\"* priests|strong=\"H3649\"* whom the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* ordained|strong=\"H5414\"* to|strong=\"H5414\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H4428\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* in|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H4428\"* the|strong=\"H3605\"* places|strong=\"H1116\"* around|strong=\"H4524\"* Jerusalem|strong=\"H3389\"*; those|strong=\"H3605\"* also|strong=\"H4428\"* who|strong=\"H3605\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5414\"* Baal|strong=\"H1168\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* moon|strong=\"H3394\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* planets|strong=\"H4208\"*, and|strong=\"H3063\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* Asherah from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, outside|strong=\"H2351\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3318\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* it|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, and|strong=\"H1121\"* beat it|strong=\"H5921\"* to|strong=\"H3318\"* dust|strong=\"H6083\"*, and|strong=\"H1121\"* cast|strong=\"H7993\"* its|strong=\"H5921\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* the|strong=\"H5921\"* graves|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5921\"* common|strong=\"H1121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H8033\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3068\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* male|strong=\"H6945\"* shrine|strong=\"H1004\"* prostitutes|strong=\"H6945\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, where|strong=\"H8033\"* the|strong=\"H3068\"* women wove hangings|strong=\"H1004\"* for|strong=\"H3068\"* the|strong=\"H3068\"* Asherah." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* brought|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* out|strong=\"H5921\"* of|strong=\"H8269\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* defiled|strong=\"H2930\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* where|strong=\"H8033\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H3063\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"*, from|strong=\"H5921\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Beersheba; and|strong=\"H3063\"* he|strong=\"H5704\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H8269\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* that|strong=\"H3605\"* were|strong=\"H3063\"* at|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H8269\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* governor|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, which|strong=\"H5892\"* were|strong=\"H3063\"* on|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H3605\"*’s left|strong=\"H8040\"* hand|strong=\"H8040\"* at|strong=\"H5921\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "Nevertheless|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* of|strong=\"H3068\"* the|strong=\"H3588\"* high|strong=\"H1116\"* places|strong=\"H1116\"* didn’t come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* ate unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* among|strong=\"H8432\"* their|strong=\"H3068\"* brothers." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1121\"* defiled|strong=\"H2930\"* Topheth|strong=\"H8612\"*, which|strong=\"H1323\"* is|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H5674\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5674\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, that|strong=\"H1121\"* no|strong=\"H1115\"* man|strong=\"H1121\"* might|strong=\"H1121\"* make|strong=\"H2930\"* his|strong=\"H2930\"* son|strong=\"H1121\"* or|strong=\"H1121\"* his|strong=\"H2930\"* daughter|strong=\"H1323\"* to|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* fire to|strong=\"H1121\"* Molech|strong=\"H4432\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* took|strong=\"H4428\"* away|strong=\"H7673\"* the|strong=\"H5414\"* horses|strong=\"H5483\"* that|strong=\"H3068\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* dedicated|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5414\"* sun|strong=\"H8121\"*, at|strong=\"H3068\"* the|strong=\"H5414\"* entrance of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, by|strong=\"H3068\"* the|strong=\"H5414\"* room|strong=\"H1004\"* of|strong=\"H4428\"* Nathan Melech the|strong=\"H5414\"* officer|strong=\"H5631\"* who|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5414\"* court|strong=\"H1004\"*; and|strong=\"H3063\"* he|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H5414\"* chariots|strong=\"H4818\"* of|strong=\"H4428\"* the|strong=\"H5414\"* sun|strong=\"H8121\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5921\"* altars|strong=\"H4196\"* that|strong=\"H3068\"* were|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H4428\"* the|strong=\"H5921\"* upper|strong=\"H5944\"* room|strong=\"H1004\"* of|strong=\"H4428\"* Ahaz, which|strong=\"H3068\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* made|strong=\"H6213\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* altars|strong=\"H4196\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* beat|strong=\"H4428\"* them|strong=\"H5921\"* down|strong=\"H5422\"* from|strong=\"H5921\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* cast|strong=\"H7993\"* their|strong=\"H3068\"* dust|strong=\"H6083\"* into|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* defiled|strong=\"H2930\"* the|strong=\"H6440\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3478\"* were|strong=\"H3478\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1116\"* were|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H1121\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* of|strong=\"H1121\"* corruption|strong=\"H4889\"*, which|strong=\"H1116\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* built|strong=\"H1129\"* for|strong=\"H5921\"* Ashtoreth|strong=\"H6253\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Sidonians|strong=\"H6722\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Chemosh|strong=\"H3645\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Milcom|strong=\"H4445\"* the|strong=\"H6440\"* abomination|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 14, + "text": "He broke|strong=\"H7665\"* in|strong=\"H7665\"* pieces|strong=\"H7665\"* the|strong=\"H7665\"* pillars|strong=\"H4676\"*, cut|strong=\"H3772\"* down|strong=\"H3772\"* the|strong=\"H7665\"* Asherah poles, and|strong=\"H4725\"* filled|strong=\"H4390\"* their|strong=\"H4390\"* places|strong=\"H4725\"* with|strong=\"H4390\"* men|strong=\"H3772\"*’s bones|strong=\"H6106\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* that|strong=\"H1931\"* was|strong=\"H3478\"* at|strong=\"H3478\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* which|strong=\"H1931\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, who|strong=\"H1931\"* made|strong=\"H6213\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*, had|strong=\"H3478\"* made|strong=\"H6213\"*, even|strong=\"H1571\"* that|strong=\"H1931\"* altar|strong=\"H4196\"* and|strong=\"H1121\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* he|strong=\"H1931\"* broke|strong=\"H5422\"* down|strong=\"H5422\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* burned|strong=\"H8313\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* and|strong=\"H1121\"* beat it|strong=\"H1931\"* to|strong=\"H3478\"* dust|strong=\"H6083\"*, and|strong=\"H1121\"* burned|strong=\"H8313\"* the|strong=\"H6213\"* Asherah." + }, + { + "verseNum": 16, + "text": "As|strong=\"H1697\"* Josiah|strong=\"H2977\"* turned|strong=\"H6437\"* himself|strong=\"H2930\"*, he|strong=\"H8033\"* spied|strong=\"H7200\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"* that|strong=\"H7200\"* were|strong=\"H1697\"* there|strong=\"H8033\"* in|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* sent|strong=\"H7971\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bones|strong=\"H6106\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"*, and|strong=\"H3068\"* burned|strong=\"H8313\"* them|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H3068\"* defiled|strong=\"H2930\"* it|strong=\"H7121\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* the|strong=\"H5921\"* man|strong=\"H7200\"* of|strong=\"H3068\"* God|strong=\"H3068\"* proclaimed|strong=\"H7121\"*, who|strong=\"H3068\"* proclaimed|strong=\"H7121\"* these|strong=\"H7121\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* monument|strong=\"H6725\"* is|strong=\"H4100\"* that|strong=\"H7200\"* which|strong=\"H1697\"* I|strong=\"H5921\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 18, + "text": "He said, “Let him|strong=\"H3240\"* be|strong=\"H5030\"*! Let no|strong=\"H5030\"* one|strong=\"H4422\"* move|strong=\"H5128\"* his|strong=\"H4422\"* bones|strong=\"H6106\"*.” So they let his|strong=\"H4422\"* bones|strong=\"H6106\"* alone|strong=\"H3240\"*, with|strong=\"H8111\"* the|strong=\"H5030\"* bones|strong=\"H6106\"* of|strong=\"H5030\"* the|strong=\"H5030\"* prophet|strong=\"H5030\"* who|strong=\"H5030\"* came|strong=\"H5030\"* out|strong=\"H4422\"* of|strong=\"H5030\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* also|strong=\"H1571\"* of|strong=\"H4428\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*, which|strong=\"H1992\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* made|strong=\"H6213\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* Yahweh|strong=\"H3068\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*, Josiah|strong=\"H2977\"* took|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3478\"* did|strong=\"H6213\"* to|strong=\"H3478\"* them|strong=\"H1992\"* according to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H6213\"* that|strong=\"H3605\"* he|strong=\"H6213\"* had|strong=\"H3478\"* done|strong=\"H6213\"* in|strong=\"H3478\"* Bethel|strong=\"H1008\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* killed|strong=\"H2076\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H4196\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* that|strong=\"H3605\"* were|strong=\"H5921\"* there|strong=\"H8033\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*, and|strong=\"H7725\"* burned|strong=\"H8313\"* men|strong=\"H3605\"*’s bones|strong=\"H6106\"* on|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H7725\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H6213\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*.”" + }, + { + "verseNum": 22, + "text": "Surely|strong=\"H3588\"* there|strong=\"H2088\"* was|strong=\"H3478\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* such|strong=\"H2088\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* from|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* judges|strong=\"H8199\"* who|strong=\"H3605\"* judged|strong=\"H8199\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 23, + "text": "but|strong=\"H3588\"* in|strong=\"H8141\"* the|strong=\"H3588\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*, this|strong=\"H2088\"* Passover|strong=\"H6453\"* was|strong=\"H3068\"* kept|strong=\"H6213\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 24, + "text": "Moreover|strong=\"H1571\"*, Josiah|strong=\"H2977\"* removed|strong=\"H1197\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* familiar spirits, the|strong=\"H3605\"* wizards|strong=\"H3049\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* teraphim|strong=\"H8655\"*,+ 23:24 teraphim were household idols.* and|strong=\"H3063\"* the|strong=\"H3605\"* idols|strong=\"H1544\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8251\"* that|strong=\"H7200\"* were|strong=\"H1697\"* seen|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H7200\"* he|strong=\"H3068\"* might|strong=\"H3068\"* confirm|strong=\"H6965\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1004\"* the|strong=\"H3605\"* law|strong=\"H8451\"* which|strong=\"H3068\"* were|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* that|strong=\"H7200\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* found|strong=\"H4672\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* king|strong=\"H4428\"* like|strong=\"H3644\"* him|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H3605\"* turned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, and|strong=\"H6965\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* might|strong=\"H3966\"*, according|strong=\"H3644\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"*; and|strong=\"H6965\"* there|strong=\"H1961\"* was|strong=\"H3068\"* none|strong=\"H3808\"* like|strong=\"H3644\"* him|strong=\"H6440\"* who|strong=\"H3605\"* arose|strong=\"H6965\"* after|strong=\"H1961\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "Notwithstanding, Yahweh|strong=\"H3068\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* fierceness|strong=\"H2740\"* of|strong=\"H3068\"* his|strong=\"H3605\"* great|strong=\"H1419\"* wrath|strong=\"H2740\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* his|strong=\"H3605\"* anger|strong=\"H3707\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* had|strong=\"H3068\"* provoked|strong=\"H3707\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* said, “I|strong=\"H5921\"* will|strong=\"H3068\"* also|strong=\"H1571\"* remove|strong=\"H5493\"* Judah|strong=\"H3063\"* out|strong=\"H5921\"* of|strong=\"H1004\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* removed|strong=\"H5493\"* Israel|strong=\"H3478\"*; and|strong=\"H3063\"* I|strong=\"H5921\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* off|strong=\"H5493\"* this|strong=\"H2063\"* city|strong=\"H5892\"* which|strong=\"H3068\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen, even|strong=\"H1571\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* which|strong=\"H3068\"* I|strong=\"H5921\"* said, ‘My|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"*.’”" + }, + { + "verseNum": 28, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Josiah|strong=\"H2977\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 29, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Pharaoh|strong=\"H6549\"* Necoh king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* went|strong=\"H3212\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H4191\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*; and|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"* went|strong=\"H3212\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, but|strong=\"H7200\"* Pharaoh|strong=\"H6549\"* Necoh killed|strong=\"H4191\"* him|strong=\"H5921\"* at|strong=\"H5921\"* Megiddo|strong=\"H4023\"* when|strong=\"H3117\"* he|strong=\"H3117\"* saw|strong=\"H7200\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 30, + "text": "His|strong=\"H3947\"* servants|strong=\"H5650\"* carried|strong=\"H7392\"* him|strong=\"H4427\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* a|strong=\"H3068\"* chariot|strong=\"H7392\"* from|strong=\"H1121\"* Megiddo|strong=\"H4023\"*, brought|strong=\"H3947\"* him|strong=\"H4427\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H3947\"* own|strong=\"H5971\"* tomb|strong=\"H6900\"*. The|strong=\"H3947\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H4427\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H3947\"* father|strong=\"H1121\"*’s place|strong=\"H8478\"*." + }, + { + "verseNum": 31, + "text": "Jehoahaz|strong=\"H3059\"* was|strong=\"H8034\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3059\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "Pharaoh|strong=\"H6549\"* Necoh put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* bonds at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3603\"* Hamath|strong=\"H2574\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* might not|strong=\"H5414\"* reign|strong=\"H4427\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3967\"* put|strong=\"H5414\"* the|strong=\"H5921\"* land to|strong=\"H5921\"* a|strong=\"H3068\"* tribute|strong=\"H6066\"* of|strong=\"H3603\"* one|strong=\"H4427\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3603\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 23:33 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3603\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 34, + "text": "Pharaoh|strong=\"H6549\"* Necoh made|strong=\"H4427\"* Eliakim the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* king|strong=\"H4427\"* in|strong=\"H4191\"* the|strong=\"H3947\"* place|strong=\"H8478\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H3947\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* changed|strong=\"H5437\"* his|strong=\"H3947\"* name|strong=\"H8034\"* to|strong=\"H4191\"* Jehoiakim|strong=\"H3079\"*; but|strong=\"H3947\"* he|strong=\"H8033\"* took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* away|strong=\"H3947\"*, and|strong=\"H1121\"* he|strong=\"H8033\"* came|strong=\"H4714\"* to|strong=\"H4191\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* died|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 35, + "text": "Jehoiakim|strong=\"H3079\"* gave|strong=\"H5414\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*; but|strong=\"H5971\"* he|strong=\"H5414\"* taxed|strong=\"H6186\"* the|strong=\"H5921\"* land to|strong=\"H5921\"* give|strong=\"H5414\"* the|strong=\"H5921\"* money|strong=\"H3701\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H6310\"* of|strong=\"H6310\"* Pharaoh|strong=\"H6547\"*. He|strong=\"H5414\"* exacted|strong=\"H5065\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* of|strong=\"H6310\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H6310\"* the|strong=\"H5921\"* land, from|strong=\"H5921\"* everyone according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H5414\"* assessment|strong=\"H6187\"*, to|strong=\"H5921\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* Necoh." + }, + { + "verseNum": 36, + "text": "Jehoiakim|strong=\"H3079\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zebidah|strong=\"H2080\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"* of|strong=\"H1121\"* Rumah|strong=\"H7316\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* fathers had|strong=\"H3068\"* done|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* his|strong=\"H7725\"* days|strong=\"H3117\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"* up|strong=\"H5927\"*, and|strong=\"H7725\"* Jehoiakim|strong=\"H3079\"* became|strong=\"H1961\"* his|strong=\"H7725\"* servant|strong=\"H5650\"* three|strong=\"H7969\"* years|strong=\"H8141\"*. Then|strong=\"H1961\"* he|strong=\"H3117\"* turned|strong=\"H7725\"* and|strong=\"H7725\"* rebelled|strong=\"H4775\"* against|strong=\"H5927\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* against|strong=\"H1696\"* him|strong=\"H7971\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Chaldeans|strong=\"H3778\"*, bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Syrians, bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Moabites|strong=\"H4124\"*, and|strong=\"H1121\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* against|strong=\"H1696\"* Judah|strong=\"H3063\"* to|strong=\"H1696\"* destroy it|strong=\"H1696\"*, according|strong=\"H3027\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* his|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H6213\"* at|strong=\"H5921\"* the|strong=\"H3605\"* commandment|strong=\"H6310\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* this|strong=\"H6213\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"*, to|strong=\"H3068\"* remove|strong=\"H5493\"* them|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H3068\"* his|strong=\"H3605\"* sight|strong=\"H6440\"* for|strong=\"H5921\"* the|strong=\"H3605\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* Manasseh|strong=\"H4519\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* did|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3068\"* also|strong=\"H1571\"* for|strong=\"H3068\"* the|strong=\"H3068\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* that|strong=\"H3068\"* he|strong=\"H3068\"* shed|strong=\"H8210\"*; for|strong=\"H3068\"* he|strong=\"H3068\"* filled|strong=\"H4390\"* Jerusalem|strong=\"H3389\"* with|strong=\"H4390\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* pardon|strong=\"H5545\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jehoiakim|strong=\"H3079\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* did|strong=\"H6213\"*, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 6, + "text": "So Jehoiakim|strong=\"H3079\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* Jehoiachin|strong=\"H3078\"* his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* didn’t come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4428\"* his|strong=\"H3605\"* land any|strong=\"H3605\"* more|strong=\"H3254\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon had|strong=\"H1961\"* taken|strong=\"H3947\"*, from|strong=\"H3318\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* the|strong=\"H3605\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, all|strong=\"H3605\"* that|strong=\"H3588\"* belonged|strong=\"H1961\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "Jehoiachin|strong=\"H3078\"* was|strong=\"H8034\"* eighteen|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* three|strong=\"H7969\"* months|strong=\"H2320\"*. His|strong=\"H3078\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Nehushta|strong=\"H5179\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Elnathan of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H4428\"* that|strong=\"H1931\"* time|strong=\"H6256\"* the|strong=\"H5927\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* the|strong=\"H5927\"* city|strong=\"H5892\"* was|strong=\"H1931\"* besieged|strong=\"H4692\"*." + }, + { + "verseNum": 11, + "text": "Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5650\"* to|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* while|strong=\"H5921\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* were|strong=\"H5650\"* besieging|strong=\"H6696\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3063\"* Jehoiachin|strong=\"H3078\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon—he|strong=\"H1931\"*, his|strong=\"H3947\"* mother, his|strong=\"H3947\"* servants|strong=\"H5650\"*, his|strong=\"H3947\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* his|strong=\"H3947\"* officers|strong=\"H8269\"*; and|strong=\"H3063\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon captured|strong=\"H3947\"* him|strong=\"H5921\"* in|strong=\"H8141\"* the|strong=\"H5921\"* eighth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3947\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H8033\"* carried|strong=\"H6213\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3478\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3478\"* cut|strong=\"H7112\"* in|strong=\"H3478\"* pieces|strong=\"H7112\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"*, as|strong=\"H6213\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said|strong=\"H1696\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* all|strong=\"H3605\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H8269\"* valor|strong=\"H2428\"*, even|strong=\"H3808\"* ten|strong=\"H6235\"* thousand captives|strong=\"H1473\"*, and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* craftsmen|strong=\"H2796\"* and|strong=\"H5971\"* the|strong=\"H3605\"* smiths|strong=\"H4525\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* remained|strong=\"H7604\"* except|strong=\"H2108\"* the|strong=\"H3605\"* poorest|strong=\"H1803\"* people|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3389\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* Jehoiachin|strong=\"H3078\"* to|strong=\"H3212\"* Babylon, with|strong=\"H3389\"* the|strong=\"H1540\"* king|strong=\"H4428\"*’s mother, the|strong=\"H1540\"* king|strong=\"H4428\"*’s wives, his|strong=\"H1540\"* officers|strong=\"H5631\"*, and|strong=\"H4428\"* the|strong=\"H1540\"* chief men of|strong=\"H4428\"* the|strong=\"H1540\"* land. He|strong=\"H3389\"* carried|strong=\"H1540\"* them|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1473\"* from|strong=\"H1540\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3212\"* Babylon." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1368\"* of|strong=\"H4428\"* might|strong=\"H2428\"*, even|strong=\"H6213\"* seven|strong=\"H7651\"* thousand, and|strong=\"H4428\"* the|strong=\"H3605\"* craftsmen|strong=\"H2796\"* and|strong=\"H4428\"* the|strong=\"H3605\"* smiths|strong=\"H4525\"* one|strong=\"H3605\"* thousand, all|strong=\"H3605\"* of|strong=\"H4428\"* them|strong=\"H6213\"* strong|strong=\"H2428\"* and|strong=\"H4428\"* fit|strong=\"H6213\"* for|strong=\"H6213\"* war|strong=\"H4421\"*, even|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon brought|strong=\"H6213\"* captive|strong=\"H1473\"* to|strong=\"H6213\"* Babylon." + }, + { + "verseNum": 17, + "text": "The|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon made|strong=\"H4427\"* Mattaniah|strong=\"H4983\"*, Jehoiachin’s father’s brother, king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H5437\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* changed|strong=\"H5437\"* his|strong=\"H5437\"* name|strong=\"H8034\"* to|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 18, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H8034\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H6667\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiakim|strong=\"H3079\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* through|strong=\"H5921\"* the|strong=\"H6440\"* anger|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, this|strong=\"H3588\"* happened|strong=\"H1961\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H1931\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* built|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H1931\"* around|strong=\"H5439\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 2, + "text": "So|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* was|strong=\"H5892\"* besieged|strong=\"H4692\"* until|strong=\"H5704\"* the|strong=\"H5704\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H1961\"* the|strong=\"H2388\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5892\"* the|strong=\"H2388\"* fourth month|strong=\"H2320\"*, the|strong=\"H2388\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5892\"* the|strong=\"H2388\"* city|strong=\"H5892\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* for|strong=\"H5892\"* the|strong=\"H2388\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H2388\"* land." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* fled by|strong=\"H5921\"* night|strong=\"H3915\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H2346\"* walls|strong=\"H2346\"*, which|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"* (now|strong=\"H3212\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* were|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* around|strong=\"H5439\"* it|strong=\"H5921\"*); and|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H3212\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3605\"* the|strong=\"H3605\"* Chaldean army|strong=\"H2428\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* was|strong=\"H4428\"* scattered|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* they|strong=\"H4428\"* captured|strong=\"H8610\"* the|strong=\"H5927\"* king|strong=\"H4428\"* and|strong=\"H4428\"* carried|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"*; and|strong=\"H4428\"* they|strong=\"H4428\"* passed|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5178\"* killed|strong=\"H7819\"* Zedekiah|strong=\"H6667\"*’s sons|strong=\"H1121\"* before|strong=\"H5869\"* his|strong=\"H6667\"* eyes|strong=\"H5869\"*, then|strong=\"H1121\"* put|strong=\"H5786\"* out|strong=\"H5786\"* Zedekiah|strong=\"H6667\"*’s eyes|strong=\"H5869\"*, bound him|strong=\"H5869\"* in|strong=\"H1121\"* fetters|strong=\"H5178\"*, and|strong=\"H1121\"* carried him|strong=\"H5869\"* to|strong=\"H1121\"* Babylon." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H7227\"* in|strong=\"H8141\"* the|strong=\"H5650\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, on|strong=\"H3389\"* the|strong=\"H5650\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5650\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5650\"* nineteenth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, Nebuzaradan|strong=\"H5018\"* the|strong=\"H5650\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5650\"* guard|strong=\"H2876\"*, a|strong=\"H3068\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5650\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, came|strong=\"H5650\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* burned|strong=\"H8313\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H3068\"* burned|strong=\"H8313\"* every|strong=\"H3605\"* great|strong=\"H1419\"* house|strong=\"H1004\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H2346\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* were|strong=\"H2428\"* with|strong=\"H3389\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H2346\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* walls|strong=\"H2346\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 11, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5971\"* had|strong=\"H4428\"* deserted|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon—all|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7604\"* the|strong=\"H7604\"* captain|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H7604\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* some|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H7604\"* poorest|strong=\"H1803\"* of|strong=\"H7227\"* the|strong=\"H7604\"* land to|strong=\"H7227\"* work the|strong=\"H7604\"* vineyards and|strong=\"H7227\"* fields." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5375\"* Chaldeans|strong=\"H3778\"* broke|strong=\"H7665\"* up|strong=\"H5375\"* the|strong=\"H5375\"* pillars|strong=\"H5982\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H5375\"* bases|strong=\"H4350\"* and|strong=\"H3068\"* the|strong=\"H5375\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"* that|strong=\"H3068\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* bronze|strong=\"H5178\"* pieces|strong=\"H7665\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3605\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* snuffers|strong=\"H4212\"*, the|strong=\"H3605\"* spoons|strong=\"H3709\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H3605\"* ministered|strong=\"H8334\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H4219\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* fire pans, the|strong=\"H3947\"* basins|strong=\"H4219\"*, that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H4219\"* gold|strong=\"H2091\"*, for|strong=\"H3701\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H4219\"* silver|strong=\"H3701\"*, for|strong=\"H3701\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H3605\"* one|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* bases|strong=\"H4350\"*, which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* of|strong=\"H1004\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* was|strong=\"H3068\"* not|strong=\"H3808\"* weighed|strong=\"H4948\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* one|strong=\"H3605\"* pillar|strong=\"H5982\"* was|strong=\"H6967\"* eighteen|strong=\"H8083\"* cubits,+ 25:17 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H5178\"* a|strong=\"H3068\"* capital|strong=\"H3805\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"* was|strong=\"H6967\"* on|strong=\"H5921\"* it|strong=\"H5921\"*. The|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* was|strong=\"H6967\"* three|strong=\"H7969\"* cubits, with|strong=\"H5921\"* network|strong=\"H7639\"* and|strong=\"H5178\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* around|strong=\"H5439\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*; and|strong=\"H5178\"* the|strong=\"H3605\"* second|strong=\"H8145\"* pillar|strong=\"H5982\"* with|strong=\"H5921\"* its|strong=\"H3605\"* network|strong=\"H7639\"* was|strong=\"H6967\"* like|strong=\"H5921\"* these|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H7218\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, Zephaniah|strong=\"H6846\"* the|strong=\"H3947\"* second|strong=\"H4932\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* three|strong=\"H7969\"* keepers|strong=\"H8104\"* of|strong=\"H7218\"* the|strong=\"H3947\"* threshold|strong=\"H5592\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H4428\"* out|strong=\"H4672\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H1931\"* took|strong=\"H3947\"* an|strong=\"H3947\"* officer|strong=\"H5631\"* who|strong=\"H1931\"* was|strong=\"H1931\"* set|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"*; and|strong=\"H4428\"* five|strong=\"H2568\"* men|strong=\"H5971\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H1931\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, who|strong=\"H1931\"* were|strong=\"H5971\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H6635\"*, who|strong=\"H1931\"* mustered|strong=\"H6633\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, and|strong=\"H4428\"* sixty|strong=\"H8346\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"* who|strong=\"H1931\"* were|strong=\"H5971\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 20, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H3212\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon attacked|strong=\"H5221\"* them|strong=\"H5921\"* and|strong=\"H3063\"* put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*. So|strong=\"H4191\"* Judah|strong=\"H3063\"* was|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H4428\"* his|strong=\"H5921\"* land." + }, + { + "verseNum": 22, + "text": "As|strong=\"H5971\"* for|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* left|strong=\"H7604\"*, even|strong=\"H5921\"* over|strong=\"H5921\"* them|strong=\"H5921\"* he|strong=\"H5921\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, governor|strong=\"H6485\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* governor|strong=\"H8269\"*, they|strong=\"H1992\"* came|strong=\"H4428\"* to|strong=\"H8085\"* Gedaliah|strong=\"H1436\"* to|strong=\"H8085\"* Mizpah|strong=\"H4709\"*, even|strong=\"H3588\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, Seraiah|strong=\"H8304\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tanhumeth|strong=\"H8576\"* the|strong=\"H3605\"* Netophathite|strong=\"H5200\"*, and|strong=\"H1121\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Maacathite|strong=\"H4602\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 24, + "text": "Gedaliah|strong=\"H1436\"* swore|strong=\"H7650\"* to|strong=\"H4428\"* them|strong=\"H3190\"* and|strong=\"H4428\"* to|strong=\"H4428\"* their|strong=\"H5647\"* men|strong=\"H5650\"*, and|strong=\"H4428\"* said to|strong=\"H4428\"* them|strong=\"H3190\"*, “Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"* because|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H5647\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* the|strong=\"H5647\"* Chaldeans|strong=\"H3778\"*. Dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* land and|strong=\"H4428\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* it|strong=\"H3190\"* will|strong=\"H4428\"* be|strong=\"H4428\"* well|strong=\"H3190\"* with|strong=\"H3427\"* you|strong=\"H5647\"*.”" + }, + { + "verseNum": 25, + "text": "But|strong=\"H1961\"* in|strong=\"H4191\"* the|strong=\"H5221\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, Ishmael|strong=\"H3458\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elishama, of|strong=\"H1121\"* the|strong=\"H5221\"* royal|strong=\"H4410\"* offspring|strong=\"H2233\"* came|strong=\"H1961\"*, and|strong=\"H1121\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* with|strong=\"H4191\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* so|strong=\"H1961\"* that|strong=\"H1121\"* he|strong=\"H5221\"* died|strong=\"H4191\"*, with|strong=\"H4191\"* the|strong=\"H5221\"* Jews|strong=\"H3064\"* and|strong=\"H1121\"* the|strong=\"H5221\"* Chaldeans|strong=\"H3778\"* that|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H4191\"* him|strong=\"H5221\"* at|strong=\"H2320\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* small|strong=\"H6996\"* and|strong=\"H6965\"* great|strong=\"H1419\"*, and|strong=\"H6965\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* came|strong=\"H4714\"* to|strong=\"H5704\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H5971\"* afraid|strong=\"H3372\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H8141\"* the|strong=\"H5375\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5375\"* captivity|strong=\"H1546\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, on|strong=\"H1961\"* the|strong=\"H5375\"* twenty-seventh|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5375\"* month|strong=\"H2320\"*, Evilmerodach king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, in|strong=\"H8141\"* the|strong=\"H5375\"* year|strong=\"H8141\"* that|strong=\"H4428\"* he|strong=\"H1004\"* began|strong=\"H3063\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, released|strong=\"H5375\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* out|strong=\"H8147\"* of|strong=\"H4428\"* prison|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H4428\"* he|strong=\"H5414\"* spoke|strong=\"H1696\"* kindly|strong=\"H2896\"* to|strong=\"H1696\"* him|strong=\"H5414\"* and|strong=\"H4428\"* set|strong=\"H5414\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* above|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 29, + "text": "and|strong=\"H3117\"* changed|strong=\"H8132\"* his|strong=\"H3605\"* prison|strong=\"H3608\"* garments. Jehoiachin|strong=\"H8132\"* ate bread|strong=\"H3899\"* before|strong=\"H6440\"* him|strong=\"H6440\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4428\"* for|strong=\"H3117\"* his|strong=\"H3605\"* allowance, there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* allowance given|strong=\"H5414\"* him|strong=\"H5414\"* from|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, every|strong=\"H3605\"* day|strong=\"H3117\"* a|strong=\"H3068\"* portion|strong=\"H1697\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + } + ] + } + ] + }, + { + "name": "1 Chronicles", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Adam, Seth|strong=\"H8352\"*, Enosh," + }, + { + "verseNum": 2, + "text": "Kenan|strong=\"H7018\"*, Mahalalel|strong=\"H4111\"*, Jared|strong=\"H3382\"*," + }, + { + "verseNum": 3, + "text": "Enoch|strong=\"H2585\"*, Methuselah|strong=\"H4968\"*, Lamech|strong=\"H3929\"*," + }, + { + "verseNum": 4, + "text": "Noah|strong=\"H5146\"*, Shem|strong=\"H8035\"*, Ham|strong=\"H2526\"*, and|strong=\"H8035\"* Japheth|strong=\"H3315\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japheth|strong=\"H3315\"*: Gomer|strong=\"H1586\"*, Magog|strong=\"H4031\"*, Madai|strong=\"H4074\"*, Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tiras|strong=\"H8494\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gomer|strong=\"H1586\"*: Ashkenaz, Diphath, and|strong=\"H1121\"* Togarmah|strong=\"H8425\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Javan|strong=\"H3120\"*: Elishah, Tarshish|strong=\"H8659\"*, Kittim|strong=\"H3794\"*, and|strong=\"H1121\"* Rodanim." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ham|strong=\"H2526\"*: Cush|strong=\"H3568\"*, Mizraim|strong=\"H4714\"*, Put|strong=\"H6316\"*, and|strong=\"H1121\"* Canaan|strong=\"H3667\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Cush|strong=\"H3568\"*: Seba|strong=\"H5434\"*, Havilah|strong=\"H2341\"*, Sabta|strong=\"H5454\"*, Raama|strong=\"H7484\"*, Sabteca|strong=\"H5455\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Raamah|strong=\"H7484\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 10, + "text": "Cush|strong=\"H3568\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nimrod|strong=\"H5248\"*. He|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1931\"* in|strong=\"H1368\"* the|strong=\"H3205\"* earth." + }, + { + "verseNum": 11, + "text": "Mizraim|strong=\"H4714\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ludim|strong=\"H3866\"*, Anamim|strong=\"H6047\"*, Lehabim|strong=\"H3853\"*, Naphtuhim|strong=\"H5320\"*," + }, + { + "verseNum": 12, + "text": "Pathrusim|strong=\"H6625\"*, Casluhim|strong=\"H3695\"* (where|strong=\"H8033\"* the|strong=\"H3318\"* Philistines|strong=\"H6430\"* came|strong=\"H3318\"* from|strong=\"H3318\"*), and|strong=\"H8033\"* Caphtorim|strong=\"H3732\"*." + }, + { + "verseNum": 13, + "text": "Canaan|strong=\"H3667\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sidon|strong=\"H6721\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Heth|strong=\"H2845\"*," + }, + { + "verseNum": 14, + "text": "the|strong=\"H2983\"* Jebusite|strong=\"H2983\"*, the|strong=\"H2983\"* Amorite, the|strong=\"H2983\"* Girgashite|strong=\"H1622\"*," + }, + { + "verseNum": 15, + "text": "the|strong=\"H2340\"* Hivite|strong=\"H2340\"*, the|strong=\"H2340\"* Arkite|strong=\"H6208\"*, the|strong=\"H2340\"* Sinite|strong=\"H5513\"*," + }, + { + "verseNum": 16, + "text": "the Arvadite, the Zemarite|strong=\"H6786\"*, and the Hamathite|strong=\"H2577\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shem|strong=\"H8035\"*: Elam|strong=\"H5867\"*, Asshur, Arpachshad, Lud|strong=\"H3865\"*, Aram, Uz|strong=\"H5780\"*, Hul|strong=\"H2343\"*, Gether|strong=\"H1666\"*, and|strong=\"H1121\"* Meshech|strong=\"H4902\"*." + }, + { + "verseNum": 18, + "text": "Arpachshad became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shelah|strong=\"H7974\"*, and|strong=\"H3205\"* Shelah|strong=\"H7974\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eber|strong=\"H5677\"*." + }, + { + "verseNum": 19, + "text": "To|strong=\"H3117\"* Eber|strong=\"H5677\"* were|strong=\"H1121\"* born|strong=\"H3205\"* two|strong=\"H8147\"* sons|strong=\"H1121\"*: the|strong=\"H3588\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3588\"* one|strong=\"H1121\"* was|strong=\"H8034\"* Peleg|strong=\"H6389\"*, for|strong=\"H3588\"* in|strong=\"H3117\"* his|strong=\"H3588\"* days|strong=\"H3117\"* the|strong=\"H3588\"* earth was|strong=\"H8034\"* divided|strong=\"H6385\"*; and|strong=\"H1121\"* his|strong=\"H3588\"* brother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 20, + "text": "Joktan|strong=\"H3355\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Almodad, Sheleph|strong=\"H8026\"*, Hazarmaveth|strong=\"H2700\"*, Jerah|strong=\"H3392\"*," + }, + { + "verseNum": 21, + "text": "Hadoram|strong=\"H1913\"*, Uzal, Diklah|strong=\"H1853\"*," + }, + { + "verseNum": 22, + "text": "Ebal|strong=\"H5858\"*, Abimael, Sheba|strong=\"H7614\"*," + }, + { + "verseNum": 23, + "text": "Ophir, Havilah|strong=\"H2341\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joktan|strong=\"H3355\"*." + }, + { + "verseNum": 24, + "text": "Shem|strong=\"H8035\"*, Arpachshad, Shelah|strong=\"H7974\"*," + }, + { + "verseNum": 25, + "text": "Eber|strong=\"H5677\"*, Peleg|strong=\"H6389\"*, Reu|strong=\"H7466\"*," + }, + { + "verseNum": 26, + "text": "Serug|strong=\"H8286\"*, Nahor|strong=\"H5152\"*, Terah|strong=\"H8646\"*," + }, + { + "verseNum": 27, + "text": "Abram (also|strong=\"H1931\"* called Abraham)." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abraham: Isaac|strong=\"H3327\"* and|strong=\"H1121\"* Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 29, + "text": "These are their generations|strong=\"H8435\"*: the|strong=\"H3458\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* Ishmael|strong=\"H3458\"*, Nebaioth|strong=\"H5032\"*; then Kedar|strong=\"H6938\"*, Adbeel, Mibsam|strong=\"H4017\"*," + }, + { + "verseNum": 30, + "text": "Mishma|strong=\"H4927\"*, Dumah|strong=\"H1746\"*, Massa|strong=\"H4854\"*, Hadad|strong=\"H2301\"*, Tema|strong=\"H8485\"*," + }, + { + "verseNum": 31, + "text": "Jetur|strong=\"H3195\"*, Naphish|strong=\"H5305\"*, and|strong=\"H1121\"* Kedemah|strong=\"H6929\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*, Abraham’s concubine|strong=\"H6370\"*: she bore|strong=\"H3205\"* Zimran|strong=\"H2175\"*, Jokshan|strong=\"H3370\"*, Medan|strong=\"H4091\"*, Midian|strong=\"H4080\"*, Ishbak|strong=\"H3435\"*, and|strong=\"H1121\"* Shuah|strong=\"H7744\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jokshan|strong=\"H3370\"*: Sheba|strong=\"H7614\"* and|strong=\"H1121\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Midian|strong=\"H4080\"*: Ephah|strong=\"H5891\"*, Epher|strong=\"H6081\"*, Hanoch|strong=\"H2585\"*, Abida, and|strong=\"H1121\"* Eldaah. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Keturah|strong=\"H6989\"*." + }, + { + "verseNum": 34, + "text": "Abraham became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*. The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Isaac|strong=\"H3327\"*: Esau|strong=\"H6215\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Esau|strong=\"H6215\"*: Eliphaz, Reuel|strong=\"H7467\"*, Jeush|strong=\"H3266\"*, Jalam|strong=\"H3281\"*, and|strong=\"H1121\"* Korah|strong=\"H7141\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eliphaz: Teman|strong=\"H8487\"*, Omar, Zephi|strong=\"H6825\"*, Gatam|strong=\"H1609\"*, Kenaz|strong=\"H7073\"*, Timna|strong=\"H8555\"*, and|strong=\"H1121\"* Amalek|strong=\"H6002\"*." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*: Nahath|strong=\"H5184\"*, Zerah|strong=\"H2226\"*, Shammah|strong=\"H8048\"*, and|strong=\"H1121\"* Mizzah|strong=\"H4199\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*: Lotan|strong=\"H3877\"*, Shobal|strong=\"H7732\"*, Zibeon|strong=\"H6649\"*, Anah|strong=\"H6034\"*, Dishon|strong=\"H1787\"*, Ezer, and|strong=\"H1121\"* Dishan|strong=\"H1789\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Lotan|strong=\"H3877\"*: Hori|strong=\"H2753\"* and|strong=\"H1121\"* Homam|strong=\"H1950\"*; and|strong=\"H1121\"* Timna|strong=\"H8555\"* was|strong=\"H1121\"* Lotan|strong=\"H3877\"*’s sister." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"*: Alian|strong=\"H5935\"*, Manahath|strong=\"H4506\"*, Ebal|strong=\"H5858\"*, Shephi|strong=\"H8195\"*, and|strong=\"H1121\"* Onam. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zibeon|strong=\"H6649\"*: Aiah and|strong=\"H1121\"* Anah|strong=\"H6034\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Anah|strong=\"H6034\"*: Dishon|strong=\"H1787\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dishon|strong=\"H1787\"*: Hamran|strong=\"H2566\"*, Eshban, Ithran|strong=\"H3506\"*, and|strong=\"H1121\"* Cheran|strong=\"H3763\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ezer: Bilhan|strong=\"H1092\"*, Zaavan|strong=\"H2190\"*, and|strong=\"H1121\"* Jaakan|strong=\"H3292\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Dishan|strong=\"H1787\"*: Uz|strong=\"H5780\"* and|strong=\"H1121\"* Aran." + }, + { + "verseNum": 43, + "text": "Now|strong=\"H3478\"* these|strong=\"H6440\"* are|strong=\"H1121\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Edom, before|strong=\"H6440\"* any|strong=\"H6440\"* king|strong=\"H4428\"* reigned|strong=\"H4427\"* over|strong=\"H4427\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Bela|strong=\"H1106\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beor|strong=\"H1160\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H6440\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Dinhabah|strong=\"H1838\"*." + }, + { + "verseNum": 44, + "text": "Bela|strong=\"H1106\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Jobab|strong=\"H3103\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* of|strong=\"H1121\"* Bozrah|strong=\"H1224\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 45, + "text": "Jobab|strong=\"H3103\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Husham|strong=\"H2367\"* of|strong=\"H8478\"* the|strong=\"H8478\"* land of|strong=\"H8478\"* the|strong=\"H8478\"* Temanites|strong=\"H8489\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 46, + "text": "Husham|strong=\"H2367\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Hadad|strong=\"H1908\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bedad, who|strong=\"H1121\"* struck|strong=\"H5221\"* Midian|strong=\"H4080\"* in|strong=\"H4191\"* the|strong=\"H5221\"* field|strong=\"H7704\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H5221\"* place|strong=\"H8478\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H5221\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Avith|strong=\"H5762\"*." + }, + { + "verseNum": 47, + "text": "Hadad|strong=\"H1908\"* died|strong=\"H4191\"*, and|strong=\"H4191\"* Samlah|strong=\"H8072\"* of|strong=\"H8478\"* Masrekah|strong=\"H4957\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 48, + "text": "Samlah|strong=\"H8072\"* died|strong=\"H4191\"*, and|strong=\"H7586\"* Shaul|strong=\"H7586\"* of|strong=\"H8478\"* Rehoboth|strong=\"H7344\"* by|strong=\"H4191\"* the|strong=\"H8478\"* River|strong=\"H5104\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 49, + "text": "Shaul|strong=\"H7586\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* Baal Hanan the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 50, + "text": "Baal Hanan died|strong=\"H4191\"*, and|strong=\"H5892\"* Hadad|strong=\"H1908\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8478\"* place|strong=\"H8478\"*; and|strong=\"H5892\"* the|strong=\"H8478\"* name|strong=\"H8034\"* of|strong=\"H1323\"* his|strong=\"H8478\"* city|strong=\"H5892\"* was|strong=\"H8034\"* Pai|strong=\"H6464\"*. His|strong=\"H8478\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Mehetabel|strong=\"H4105\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Matred|strong=\"H4308\"*, the|strong=\"H8478\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Mezahab|strong=\"H4314\"*." + }, + { + "verseNum": 51, + "text": "Then|strong=\"H1961\"* Hadad|strong=\"H1908\"* died|strong=\"H4191\"*. The|strong=\"H1961\"* chiefs of|strong=\"H4191\"* Edom were|strong=\"H1961\"*: chief Timna|strong=\"H8555\"*, chief Aliah|strong=\"H5933\"*, chief Jetheth|strong=\"H3509\"*," + }, + { + "verseNum": 52, + "text": "chief Oholibamah, chief Elah, chief Pinon|strong=\"H6373\"*," + }, + { + "verseNum": 53, + "text": "chief Kenaz|strong=\"H7073\"*, chief Teman|strong=\"H8487\"*, chief Mibzar|strong=\"H4014\"*," + }, + { + "verseNum": 54, + "text": "chief Magdiel|strong=\"H4025\"*, and chief Iram|strong=\"H5902\"*. These are the chiefs of Edom." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Reuben|strong=\"H7205\"*, Simeon|strong=\"H8095\"*, Levi|strong=\"H3878\"*, Judah|strong=\"H3063\"*, Issachar|strong=\"H3485\"*, Zebulun|strong=\"H2074\"*," + }, + { + "verseNum": 2, + "text": "Dan|strong=\"H1835\"*, Joseph|strong=\"H3130\"*, Benjamin|strong=\"H1144\"*, Naphtali|strong=\"H5321\"*, Gad|strong=\"H1410\"*, and|strong=\"H1144\"* Asher." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"*, Onan, and|strong=\"H1121\"* Shelah|strong=\"H7956\"*, which|strong=\"H3068\"* three|strong=\"H7969\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H4191\"* him|strong=\"H3205\"* of|strong=\"H1121\"* Shua|strong=\"H7774\"*’s daughter|strong=\"H1323\"* the|strong=\"H3205\"* Canaanitess|strong=\"H3669\"*. Er|strong=\"H6147\"*, Judah|strong=\"H3063\"*’s firstborn|strong=\"H1060\"*, was|strong=\"H3068\"* wicked|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 2:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* sight|strong=\"H5869\"*; and|strong=\"H1121\"* he|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 4, + "text": "Tamar|strong=\"H8559\"* his|strong=\"H3605\"* daughter-in-law|strong=\"H3618\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Perez|strong=\"H6557\"* and|strong=\"H1121\"* Zerah|strong=\"H2226\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1121\"* five|strong=\"H2568\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*: Hezron|strong=\"H2696\"* and|strong=\"H1121\"* Hamul|strong=\"H2538\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*: Zimri|strong=\"H2174\"*, Ethan, Heman|strong=\"H1968\"*, Calcol|strong=\"H3633\"*, and|strong=\"H1121\"* Dara|strong=\"H1873\"*—five|strong=\"H2568\"* of|strong=\"H1121\"* them|strong=\"H1121\"* in|strong=\"H1121\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Carmi|strong=\"H3756\"*: Achar|strong=\"H5917\"*, the|strong=\"H1121\"* troubler|strong=\"H5916\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4603\"* in|strong=\"H3478\"* the|strong=\"H1121\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethan: Azariah|strong=\"H5838\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* also|strong=\"H1121\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"*: Jerahmeel|strong=\"H3396\"*, Ram|strong=\"H7410\"*, and|strong=\"H1121\"* Chelubai|strong=\"H3621\"*." + }, + { + "verseNum": 10, + "text": "Ram|strong=\"H7410\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Amminadab|strong=\"H5992\"*, and|strong=\"H1121\"* Amminadab|strong=\"H5992\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Nahshon|strong=\"H5177\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3205\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H3205\"* Nahshon|strong=\"H5177\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Salma|strong=\"H8007\"*, and|strong=\"H3205\"* Salma|strong=\"H8007\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Boaz|strong=\"H1162\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3205\"* Boaz|strong=\"H1162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*, and|strong=\"H3205\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jesse|strong=\"H3448\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3205\"* Jesse|strong=\"H3448\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"* Eliab, Abinadab the|strong=\"H3205\"* second|strong=\"H8145\"*, Shimea|strong=\"H8092\"* the|strong=\"H3205\"* third|strong=\"H7992\"*," + }, + { + "verseNum": 14, + "text": "Nethanel|strong=\"H5417\"* the|strong=\"H5417\"* fourth|strong=\"H7243\"*, Raddai|strong=\"H7288\"* the|strong=\"H5417\"* fifth|strong=\"H2549\"*," + }, + { + "verseNum": 15, + "text": "Ozem the|strong=\"H1732\"* sixth|strong=\"H8345\"*, and|strong=\"H1732\"* David|strong=\"H1732\"* the|strong=\"H1732\"* seventh|strong=\"H7637\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* their sisters were|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* and|strong=\"H1121\"* Abigail. The|strong=\"H3097\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*: Abishai, Joab|strong=\"H3097\"*, and|strong=\"H1121\"* Asahel|strong=\"H6214\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 17, + "text": "Abigail bore|strong=\"H3205\"* Amasa|strong=\"H6021\"*; and|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Amasa|strong=\"H6021\"* was|strong=\"H3205\"* Jether|strong=\"H3500\"* the|strong=\"H3205\"* Ishmaelite|strong=\"H3459\"*." + }, + { + "verseNum": 18, + "text": "Caleb|strong=\"H3612\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* children|strong=\"H1121\"* by|strong=\"H3205\"* Azubah|strong=\"H5806\"* his|strong=\"H3205\"* wife, and|strong=\"H1121\"* by|strong=\"H3205\"* Jerioth|strong=\"H3408\"*; and|strong=\"H1121\"* these were|strong=\"H1121\"* her|strong=\"H3205\"* sons|strong=\"H1121\"*: Jesher|strong=\"H3475\"*, Shobab|strong=\"H7727\"*, and|strong=\"H1121\"* Ardon." + }, + { + "verseNum": 19, + "text": "Azubah|strong=\"H5806\"* died|strong=\"H4191\"*, and|strong=\"H3947\"* Caleb|strong=\"H3612\"* married|strong=\"H3947\"* Ephrath, who|strong=\"H3205\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Hur|strong=\"H2354\"*." + }, + { + "verseNum": 20, + "text": "Hur|strong=\"H2354\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Uri, and|strong=\"H3205\"* Uri became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Bezalel|strong=\"H1212\"*." + }, + { + "verseNum": 21, + "text": "Afterward Hezron|strong=\"H2696\"* went|strong=\"H1121\"* in|strong=\"H8141\"* to|strong=\"H3205\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, whom he|strong=\"H1931\"* took|strong=\"H3947\"* as|strong=\"H8141\"* wife when|strong=\"H1121\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sixty|strong=\"H8346\"* years|strong=\"H8141\"* old|strong=\"H1121\"*; and|strong=\"H1121\"* she|strong=\"H1931\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Segub|strong=\"H7687\"*." + }, + { + "verseNum": 22, + "text": "Segub|strong=\"H7687\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H5892\"* Jair|strong=\"H2971\"*, who|strong=\"H3205\"* had|strong=\"H1961\"* twenty-three|strong=\"H6242\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H3205\"* land of|strong=\"H5892\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 23, + "text": "Geshur|strong=\"H1650\"* and|strong=\"H1121\"* Aram took|strong=\"H3947\"* the|strong=\"H3605\"* towns|strong=\"H1323\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"* from|strong=\"H1121\"* them|strong=\"H3947\"*, with|strong=\"H5892\"* Kenath|strong=\"H7079\"*, and|strong=\"H1121\"* its|strong=\"H3605\"* villages|strong=\"H1323\"*, even sixty|strong=\"H8346\"* cities|strong=\"H5892\"*. All|strong=\"H3605\"* these|strong=\"H3947\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"* the|strong=\"H3605\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 24, + "text": "After Hezron|strong=\"H2696\"* died|strong=\"H4194\"* in|strong=\"H3205\"* Caleb|strong=\"H3613\"* Ephrathah, Abijah, Hezron|strong=\"H2696\"*’s wife, bore|strong=\"H3205\"* him|strong=\"H3205\"* Ashhur the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Tekoa|strong=\"H8620\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Hezron|strong=\"H2696\"* were|strong=\"H1961\"* Ram|strong=\"H7410\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"*, Bunah, Oren, Ozem, and|strong=\"H1121\"* Ahijah." + }, + { + "verseNum": 26, + "text": "Jerahmeel|strong=\"H3396\"* had|strong=\"H1961\"* another wife, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Atarah|strong=\"H5851\"*. She|strong=\"H1931\"* was|strong=\"H8034\"* the|strong=\"H1961\"* mother of|strong=\"H8034\"* Onam." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ram|strong=\"H7410\"* the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* were|strong=\"H1961\"* Maaz|strong=\"H4619\"*, Jamin|strong=\"H3226\"*, and|strong=\"H1121\"* Eker|strong=\"H6134\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Onam were|strong=\"H1961\"* Shammai|strong=\"H8060\"* and|strong=\"H1121\"* Jada|strong=\"H3047\"*. The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shammai|strong=\"H8060\"*: Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abishur." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H3205\"* the|strong=\"H3205\"* wife of|strong=\"H3205\"* Abishur was|strong=\"H8034\"* Abihail; and|strong=\"H8034\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Ahban and|strong=\"H8034\"* Molid|strong=\"H4140\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Nadab|strong=\"H5070\"*: Seled|strong=\"H5540\"* and|strong=\"H1121\"* Appaim; but|strong=\"H3808\"* Seled|strong=\"H5540\"* died|strong=\"H4191\"* without|strong=\"H3808\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Appaim: Ishi|strong=\"H3469\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*: Sheshan|strong=\"H8348\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sheshan|strong=\"H8348\"*: Ahlai." + }, + { + "verseNum": 32, + "text": "The|strong=\"H4191\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jada|strong=\"H3047\"* the|strong=\"H4191\"* brother of|strong=\"H1121\"* Shammai|strong=\"H8060\"*: Jether|strong=\"H3500\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"*; and|strong=\"H1121\"* Jether|strong=\"H3500\"* died|strong=\"H4191\"* without|strong=\"H3808\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3129\"*: Peleth|strong=\"H6431\"* and|strong=\"H1121\"* Zaza|strong=\"H2117\"*. These were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H1961\"* Sheshan|strong=\"H8348\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* daughters|strong=\"H1323\"*. Sheshan|strong=\"H8348\"* had|strong=\"H1961\"* a|strong=\"H3068\"* servant|strong=\"H5650\"*, an|strong=\"H1961\"* Egyptian|strong=\"H4713\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Jarha|strong=\"H3398\"*." + }, + { + "verseNum": 35, + "text": "Sheshan|strong=\"H8348\"* gave|strong=\"H5414\"* his|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H5414\"* Jarha|strong=\"H3398\"* his|strong=\"H5414\"* servant|strong=\"H5650\"* as|strong=\"H5414\"* wife; and|strong=\"H5650\"* she bore|strong=\"H3205\"* him|strong=\"H5414\"* Attai|strong=\"H6262\"*." + }, + { + "verseNum": 36, + "text": "Attai|strong=\"H6262\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Nathan|strong=\"H5416\"*, and|strong=\"H3205\"* Nathan|strong=\"H5416\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Zabad|strong=\"H2066\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"H3205\"* Zabad|strong=\"H2066\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ephlal, and|strong=\"H3205\"* Ephlal became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Obed|strong=\"H5744\"*," + }, + { + "verseNum": 38, + "text": "and|strong=\"H3205\"* Obed|strong=\"H5744\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jehu|strong=\"H3058\"*, and|strong=\"H3205\"* Jehu|strong=\"H3058\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Azariah|strong=\"H5838\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H3205\"* Azariah|strong=\"H5838\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Helez|strong=\"H2503\"*, and|strong=\"H3205\"* Helez|strong=\"H2503\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eleasah," + }, + { + "verseNum": 40, + "text": "and|strong=\"H3205\"* Eleasah became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Sismai|strong=\"H5581\"*, and|strong=\"H3205\"* Sismai|strong=\"H5581\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shallum|strong=\"H7967\"*," + }, + { + "verseNum": 41, + "text": "and|strong=\"H3205\"* Shallum|strong=\"H7967\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jekamiah|strong=\"H3359\"*, and|strong=\"H3205\"* Jekamiah|strong=\"H3359\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Elishama." + }, + { + "verseNum": 42, + "text": "The|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H3612\"* brother of|strong=\"H1121\"* Jerahmeel|strong=\"H3396\"* were|strong=\"H1121\"* Mesha|strong=\"H4337\"* his|strong=\"H1931\"* firstborn|strong=\"H1060\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3612\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ziph|strong=\"H2128\"*, and|strong=\"H1121\"* the|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"* the|strong=\"H3612\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*: Korah|strong=\"H7141\"*, Tappuah|strong=\"H8599\"*, Rekem|strong=\"H7552\"*, and|strong=\"H1121\"* Shema|strong=\"H8087\"*." + }, + { + "verseNum": 44, + "text": "Shema|strong=\"H8087\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Raham|strong=\"H7357\"*, the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jorkeam|strong=\"H3421\"*; and|strong=\"H7552\"* Rekem|strong=\"H7552\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Shammai|strong=\"H8060\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shammai|strong=\"H8060\"* was|strong=\"H1121\"* Maon|strong=\"H4584\"*; and|strong=\"H1121\"* Maon|strong=\"H4584\"* was|strong=\"H1121\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Beth Zur." + }, + { + "verseNum": 46, + "text": "Ephah|strong=\"H5891\"*, Caleb|strong=\"H3612\"*’s concubine|strong=\"H6370\"*, bore|strong=\"H3205\"* Haran|strong=\"H2771\"*, Moza|strong=\"H4162\"*, and|strong=\"H6370\"* Gazez|strong=\"H1495\"*; and|strong=\"H6370\"* Haran|strong=\"H2771\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Gazez|strong=\"H1495\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jahdai|strong=\"H3056\"*: Regem|strong=\"H7276\"*, Jothan, Geshan|strong=\"H1529\"*, Pelet|strong=\"H6404\"*, Ephah|strong=\"H5891\"*, and|strong=\"H1121\"* Shaaph|strong=\"H8174\"*." + }, + { + "verseNum": 48, + "text": "Maacah|strong=\"H4601\"*, Caleb|strong=\"H3612\"*’s concubine|strong=\"H6370\"*, bore|strong=\"H3205\"* Sheber|strong=\"H7669\"* and|strong=\"H6370\"* Tirhanah|strong=\"H8647\"*." + }, + { + "verseNum": 49, + "text": "She bore|strong=\"H3205\"* also|strong=\"H3205\"* Shaaph|strong=\"H8174\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Madmannah|strong=\"H4089\"*, Sheva|strong=\"H7724\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Machbena|strong=\"H4343\"* and|strong=\"H1323\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1323\"* Gibea|strong=\"H1388\"*; and|strong=\"H1323\"* the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Caleb|strong=\"H3612\"* was|strong=\"H3205\"* Achsah|strong=\"H5915\"*." + }, + { + "verseNum": 50, + "text": "These were|strong=\"H1961\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H1961\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ephrathah: Shobal|strong=\"H7732\"* the|strong=\"H1961\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim," + }, + { + "verseNum": 51, + "text": "Salma|strong=\"H8007\"* the|strong=\"H2780\"* father of Bethlehem|strong=\"H1035\"*, and|strong=\"H1035\"* Hareph|strong=\"H2780\"* the|strong=\"H2780\"* father of Beth Gader." + }, + { + "verseNum": 52, + "text": "Shobal|strong=\"H7732\"* the|strong=\"H1961\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim had|strong=\"H1961\"* sons|strong=\"H1121\"*: Haroeh|strong=\"H7204\"*, half of|strong=\"H1121\"* the|strong=\"H1961\"* Menuhoth." + }, + { + "verseNum": 53, + "text": "The|strong=\"H3318\"* families|strong=\"H4940\"* of|strong=\"H4940\"* Kiriath|strong=\"H7157\"* Jearim: the|strong=\"H3318\"* Ithrites|strong=\"H3505\"*, the|strong=\"H3318\"* Puthites|strong=\"H6336\"*, the|strong=\"H3318\"* Shumathites|strong=\"H8126\"*, and|strong=\"H3318\"* the|strong=\"H3318\"* Mishraites|strong=\"H4954\"*; from|strong=\"H3318\"* them|strong=\"H3318\"* came|strong=\"H3318\"* the|strong=\"H3318\"* Zorathites|strong=\"H6882\"* and|strong=\"H3318\"* the|strong=\"H3318\"* Eshtaolites." + }, + { + "verseNum": 54, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Salma|strong=\"H8007\"*: Bethlehem|strong=\"H1035\"*, the|strong=\"H1121\"* Netophathites|strong=\"H5200\"*, Atroth Beth Joab|strong=\"H5854\"*, and|strong=\"H1121\"* half of|strong=\"H1121\"* the|strong=\"H1121\"* Manahathites, the|strong=\"H1121\"* Zorites|strong=\"H6882\"*." + }, + { + "verseNum": 55, + "text": "The|strong=\"H3427\"* families|strong=\"H4940\"* of|strong=\"H1004\"* scribes|strong=\"H5608\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jabez|strong=\"H3258\"*: the|strong=\"H3427\"* Tirathites|strong=\"H8654\"*, the|strong=\"H3427\"* Shimeathites|strong=\"H8101\"*, and|strong=\"H1004\"* the|strong=\"H3427\"* Sucathites|strong=\"H7756\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3427\"* Kenites|strong=\"H7017\"* who|strong=\"H3427\"* came from|strong=\"H3427\"* Hammath|strong=\"H2575\"*, the|strong=\"H3427\"* father of|strong=\"H1004\"* the|strong=\"H3427\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Rechab|strong=\"H7394\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* these|strong=\"H1732\"* were|strong=\"H1961\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* him|strong=\"H3205\"* in|strong=\"H1121\"* Hebron|strong=\"H2275\"*: the|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Amnon, of|strong=\"H1121\"* Ahinoam the|strong=\"H3205\"* Jezreelitess|strong=\"H3159\"*; the|strong=\"H3205\"* second|strong=\"H8145\"*, Daniel|strong=\"H1840\"*, of|strong=\"H1121\"* Abigail the|strong=\"H3205\"* Carmelitess|strong=\"H3762\"*;" + }, + { + "verseNum": 2, + "text": "the|strong=\"H1121\"* third|strong=\"H7992\"*, Absalom the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Talmai|strong=\"H8526\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Geshur|strong=\"H1650\"*; the|strong=\"H1121\"* fourth|strong=\"H7243\"*, Adonijah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggith|strong=\"H2294\"*;" + }, + { + "verseNum": 3, + "text": "the|strong=\"H8203\"* fifth|strong=\"H2549\"*, Shephatiah|strong=\"H8203\"* of|strong=\"H8203\"* Abital; the|strong=\"H8203\"* sixth|strong=\"H8345\"*, Ithream|strong=\"H3507\"* by|strong=\"H3507\"* Eglah|strong=\"H5698\"* his|strong=\"H5698\"* wife:" + }, + { + "verseNum": 4, + "text": "six|strong=\"H8337\"* were|strong=\"H3205\"* born|strong=\"H3205\"* to|strong=\"H3389\"* him|strong=\"H3205\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*; and|strong=\"H7970\"* he|strong=\"H8033\"* reigned|strong=\"H4427\"* there|strong=\"H8033\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* and|strong=\"H7970\"* six|strong=\"H8337\"* months|strong=\"H2320\"*. He|strong=\"H8033\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3389\"* these were|strong=\"H1323\"* born|strong=\"H3205\"* to|strong=\"H3389\"* him|strong=\"H3205\"* in|strong=\"H8010\"* Jerusalem|strong=\"H3389\"*: Shimea|strong=\"H8092\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, and|strong=\"H3389\"* Solomon|strong=\"H8010\"*, four, by|strong=\"H3205\"* Bathshua the|strong=\"H3205\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Ammiel|strong=\"H5988\"*;" + }, + { + "verseNum": 6, + "text": "and Ibhar|strong=\"H2984\"*, Elishama, Eliphelet," + }, + { + "verseNum": 7, + "text": "Nogah|strong=\"H5052\"*, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 8, + "text": "Elishama, Eliada, and|strong=\"H8672\"* Eliphelet, nine|strong=\"H8672\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, in|strong=\"H1121\"* addition to|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* concubines|strong=\"H6370\"*; and|strong=\"H1121\"* Tamar|strong=\"H8559\"* was|strong=\"H1732\"* their|strong=\"H3605\"* sister." + }, + { + "verseNum": 10, + "text": "Solomon|strong=\"H8010\"*’s son|strong=\"H1121\"* was|strong=\"H1121\"* Rehoboam|strong=\"H7346\"*, Abijah his|strong=\"H8010\"* son|strong=\"H1121\"*, Asa his|strong=\"H8010\"* son|strong=\"H1121\"*, Jehoshaphat|strong=\"H3092\"* his|strong=\"H8010\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 11, + "text": "Joram|strong=\"H3141\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, Ahaziah his|strong=\"H3141\"* son|strong=\"H1121\"*, Joash|strong=\"H3101\"* his|strong=\"H3141\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "Amaziah his|strong=\"H3147\"* son|strong=\"H1121\"*, Azariah|strong=\"H5838\"* his|strong=\"H3147\"* son|strong=\"H1121\"*, Jotham|strong=\"H3147\"* his|strong=\"H3147\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "Ahaz his|strong=\"H4519\"* son|strong=\"H1121\"*, Hezekiah|strong=\"H2396\"* his|strong=\"H4519\"* son|strong=\"H1121\"*, Manasseh|strong=\"H4519\"* his|strong=\"H4519\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 14, + "text": "Amon his|strong=\"H2977\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H2977\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6667\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*: the|strong=\"H6667\"* firstborn|strong=\"H1060\"* Johanan|strong=\"H3110\"*, the|strong=\"H6667\"* second|strong=\"H8145\"* Jehoiakim|strong=\"H3079\"*, the|strong=\"H6667\"* third|strong=\"H7992\"* Zedekiah|strong=\"H6667\"*, and|strong=\"H1121\"* the|strong=\"H6667\"* fourth|strong=\"H7243\"* Shallum|strong=\"H7967\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6667\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*: Jeconiah|strong=\"H3204\"* his|strong=\"H6667\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* his|strong=\"H6667\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeconiah|strong=\"H3204\"*, the|strong=\"H1121\"* captive: Shealtiel|strong=\"H7597\"* his|strong=\"H3204\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 18, + "text": "Malchiram|strong=\"H4443\"*, Pedaiah|strong=\"H6305\"*, Shenazzar|strong=\"H8137\"*, Jekamiah|strong=\"H3359\"*, Hoshama|strong=\"H1953\"*, and|strong=\"H1953\"* Nedabiah|strong=\"H5072\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*: Zerubbabel|strong=\"H2216\"* and|strong=\"H1121\"* Shimei|strong=\"H8096\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"*: Meshullam|strong=\"H4918\"* and|strong=\"H1121\"* Hananiah|strong=\"H2608\"*; and|strong=\"H1121\"* Shelomith|strong=\"H8019\"* was|strong=\"H1121\"* their|strong=\"H8019\"* sister;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H2568\"* Hashubah|strong=\"H2807\"*, Ohel, Berechiah|strong=\"H1296\"*, Hasadiah|strong=\"H2619\"*, and|strong=\"H2568\"* Jushab Hesed, five|strong=\"H2568\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*: Pelatiah|strong=\"H6410\"* and|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*; the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rephaiah|strong=\"H7509\"*, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Arnan, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Obadiah|strong=\"H5662\"*, the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*: Shemaiah|strong=\"H8098\"*. The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*: Hattush|strong=\"H2407\"*, Igal|strong=\"H3008\"*, Bariah|strong=\"H1282\"*, Neariah|strong=\"H5294\"*, and|strong=\"H1121\"* Shaphat|strong=\"H8202\"*, six|strong=\"H8337\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Neariah|strong=\"H5294\"*: Elioenai, Hizkiah|strong=\"H2396\"*, and|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3110\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elioenai: Hodaviah|strong=\"H1939\"*, Eliashib, Pelaiah|strong=\"H6411\"*, Akkub|strong=\"H6126\"*, Johanan|strong=\"H3110\"*, Delaiah|strong=\"H1806\"*, and|strong=\"H1121\"* Anani|strong=\"H6054\"*, seven|strong=\"H7651\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Perez|strong=\"H6557\"*, Hezron|strong=\"H2696\"*, Carmi|strong=\"H3756\"*, Hur|strong=\"H2354\"*, and|strong=\"H1121\"* Shobal|strong=\"H7732\"*." + }, + { + "verseNum": 2, + "text": "Reaiah|strong=\"H7211\"* the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shobal|strong=\"H7732\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Jahath|strong=\"H3189\"*; and|strong=\"H1121\"* Jahath|strong=\"H3189\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Ahumai and|strong=\"H1121\"* Lahad|strong=\"H3855\"*. These are|strong=\"H1121\"* the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H3205\"* Zorathites|strong=\"H6882\"*." + }, + { + "verseNum": 3, + "text": "These were|strong=\"H8034\"* the|strong=\"H8034\"* sons of|strong=\"H8034\"* the|strong=\"H8034\"* father of|strong=\"H8034\"* Etam|strong=\"H5862\"*: Jezreel|strong=\"H3157\"*, Ishma|strong=\"H3457\"*, and|strong=\"H8034\"* Idbash|strong=\"H3031\"*. The|strong=\"H8034\"* name|strong=\"H8034\"* of|strong=\"H8034\"* their sister was|strong=\"H8034\"* Hazzelelponi|strong=\"H6753\"*." + }, + { + "verseNum": 4, + "text": "Penuel|strong=\"H6439\"* was|strong=\"H1121\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Gedor|strong=\"H1446\"* and|strong=\"H1121\"* Ezer|strong=\"H5829\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hushah|strong=\"H2364\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Ephrathah, the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*." + }, + { + "verseNum": 5, + "text": "Ashhur the|strong=\"H1961\"* father of|strong=\"H8147\"* Tekoa|strong=\"H8620\"* had|strong=\"H1961\"* two|strong=\"H8147\"* wives, Helah|strong=\"H2458\"* and|strong=\"H8147\"* Naarah|strong=\"H5292\"*." + }, + { + "verseNum": 6, + "text": "Naarah|strong=\"H5292\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* Ahuzzam, Hepher|strong=\"H2660\"*, Temeni|strong=\"H8488\"*, and|strong=\"H1121\"* Haahashtari. These were|strong=\"H1121\"* the|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naarah|strong=\"H5292\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Helah|strong=\"H2458\"* were|strong=\"H1121\"* Zereth|strong=\"H6889\"*, Izhar|strong=\"H3328\"*, and|strong=\"H1121\"* Ethnan." + }, + { + "verseNum": 8, + "text": "Hakkoz|strong=\"H6976\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Anub|strong=\"H6036\"*, Zobebah|strong=\"H6637\"*, and|strong=\"H1121\"* the|strong=\"H3205\"* families|strong=\"H4940\"* of|strong=\"H1121\"* Aharhel the|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harum|strong=\"H2037\"*." + }, + { + "verseNum": 9, + "text": "Jabez|strong=\"H3258\"* was|strong=\"H8034\"* more|strong=\"H3588\"* honorable|strong=\"H3513\"* than|strong=\"H3588\"* his|strong=\"H7121\"* brothers. His|strong=\"H7121\"* mother named|strong=\"H7121\"* him|strong=\"H3205\"* Jabez|strong=\"H3258\"*,+ 4:9 “Jabez” sounds similar to the Hebrew word for “pain”.* saying, “Because|strong=\"H3588\"* I|strong=\"H3588\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* with|strong=\"H3513\"* sorrow|strong=\"H6090\"*.”" + }, + { + "verseNum": 10, + "text": "Jabez|strong=\"H3258\"* called|strong=\"H7121\"* on|strong=\"H3027\"* the|strong=\"H6213\"* God|strong=\"H3027\"*+ 4:10 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3027\"* Israel|strong=\"H3478\"*, saying, “Oh that|strong=\"H3478\"* you|strong=\"H6213\"* would|strong=\"H3478\"* bless|strong=\"H1288\"* me|strong=\"H7121\"* indeed|strong=\"H1288\"*, and|strong=\"H3478\"* enlarge|strong=\"H7235\"* my|strong=\"H1961\"* border|strong=\"H1366\"*! May|strong=\"H1961\"* your|strong=\"H6213\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* with|strong=\"H5973\"* me|strong=\"H7121\"*, and|strong=\"H3478\"* may|strong=\"H1961\"* you|strong=\"H6213\"* keep|strong=\"H6213\"* me|strong=\"H7121\"* from|strong=\"H3478\"* evil|strong=\"H7451\"*, that|strong=\"H3478\"* I|strong=\"H3027\"* may|strong=\"H1961\"* not|strong=\"H1115\"* cause|strong=\"H6213\"* pain|strong=\"H7451\"*!”" + }, + { + "verseNum": 11, + "text": "Chelub|strong=\"H3620\"* the|strong=\"H3205\"* brother of|strong=\"H3205\"* Shuhah|strong=\"H7746\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Mehir|strong=\"H4243\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eshton." + }, + { + "verseNum": 12, + "text": "Eshton became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Beth Rapha, Paseah|strong=\"H6454\"*, and|strong=\"H3205\"* Tehinnah|strong=\"H8468\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ir Nahash. These are the|strong=\"H3205\"* men of|strong=\"H3205\"* Recah|strong=\"H7397\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kenaz|strong=\"H7073\"*: Othniel|strong=\"H6274\"* and|strong=\"H1121\"* Seraiah|strong=\"H8304\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Othniel|strong=\"H6274\"*: Hathath|strong=\"H2867\"*.+ 4:13 Greek and Vulgate add “and Meonothai”*" + }, + { + "verseNum": 14, + "text": "Meonothai|strong=\"H4587\"* became|strong=\"H3205\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ophrah|strong=\"H6084\"*: and|strong=\"H3097\"* Seraiah|strong=\"H8304\"* became|strong=\"H3205\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joab|strong=\"H3097\"* the|strong=\"H3588\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Ge Harashim|strong=\"H2798\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* craftsmen|strong=\"H2796\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3612\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Caleb|strong=\"H3612\"* the|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh|strong=\"H3312\"*: Iru|strong=\"H5900\"*, Elah, and|strong=\"H1121\"* Naam|strong=\"H5277\"*. The|strong=\"H3612\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elah: Kenaz|strong=\"H7073\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehallelel|strong=\"H3094\"*: Ziph|strong=\"H2128\"*, Ziphah|strong=\"H2129\"*, Tiria|strong=\"H8493\"*, and|strong=\"H1121\"* Asarel." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ezrah|strong=\"H5834\"*: Jether|strong=\"H3500\"*, Mered|strong=\"H4778\"*, Epher|strong=\"H6081\"*, and|strong=\"H1121\"* Jalon|strong=\"H3210\"*; and|strong=\"H1121\"* Mered|strong=\"H4778\"*’s wife bore Miriam|strong=\"H4813\"*, Shammai|strong=\"H8060\"*, and|strong=\"H1121\"* Ishbah|strong=\"H3431\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Eshtemoa." + }, + { + "verseNum": 18, + "text": "His|strong=\"H3947\"* wife the|strong=\"H3947\"* Jewess bore|strong=\"H3205\"* Jered|strong=\"H3382\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gedor|strong=\"H1446\"*, Heber|strong=\"H2268\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Soco|strong=\"H7755\"*, and|strong=\"H1121\"* Jekuthiel|strong=\"H3354\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Zanoah|strong=\"H2182\"*. These|strong=\"H3947\"* are|strong=\"H1121\"* the|strong=\"H3947\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bithiah|strong=\"H1332\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, whom Mered|strong=\"H4778\"* took|strong=\"H3947\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* wife of|strong=\"H1121\"* Hodiah|strong=\"H1940\"*, the|strong=\"H1121\"* sister of|strong=\"H1121\"* Naham|strong=\"H5163\"*, were|strong=\"H1121\"* the|strong=\"H1121\"* fathers of|strong=\"H1121\"* Keilah|strong=\"H7084\"* the|strong=\"H1121\"* Garmite|strong=\"H1636\"* and|strong=\"H1121\"* Eshtemoa the|strong=\"H1121\"* Maacathite|strong=\"H4602\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimon|strong=\"H7889\"*: Amnon, Rinnah|strong=\"H7441\"*, Ben Hanan, and|strong=\"H1121\"* Tilon|strong=\"H8436\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*: Zoheth|strong=\"H2105\"*, and|strong=\"H1121\"* Ben Zoheth|strong=\"H2105\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shelah|strong=\"H7956\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Er|strong=\"H6147\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Lecah|strong=\"H3922\"*, Laadah|strong=\"H3935\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H4940\"* of|strong=\"H1121\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* worked fine|strong=\"H5656\"* linen, of|strong=\"H1121\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ashbea;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1697\"* Jokim|strong=\"H3137\"*, and|strong=\"H1697\"* the|strong=\"H1697\"* men of|strong=\"H1697\"* Cozeba|strong=\"H3578\"*, and|strong=\"H1697\"* Joash|strong=\"H3101\"*, and|strong=\"H1697\"* Saraph|strong=\"H8315\"*, who had|strong=\"H1697\"* dominion|strong=\"H1166\"* in|strong=\"H1697\"* Moab|strong=\"H4124\"*, and|strong=\"H1697\"* Jashubilehem. These records|strong=\"H1697\"* are|strong=\"H1697\"* ancient|strong=\"H6267\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H1992\"* were|strong=\"H1992\"* the|strong=\"H5973\"* potters|strong=\"H3335\"*, and|strong=\"H4428\"* the|strong=\"H5973\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Netaim|strong=\"H5196\"* and|strong=\"H4428\"* Gederah|strong=\"H1448\"*; they|strong=\"H1992\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* with|strong=\"H5973\"* the|strong=\"H5973\"* king|strong=\"H4428\"* for|strong=\"H3427\"* his|strong=\"H4428\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*: Nemuel|strong=\"H5241\"*, Jamin|strong=\"H3226\"*, Jarib|strong=\"H3402\"*, Zerah|strong=\"H2226\"*, Shaul|strong=\"H7586\"*;" + }, + { + "verseNum": 25, + "text": "Shallum|strong=\"H7967\"* his|strong=\"H4927\"* son|strong=\"H1121\"*, Mibsam|strong=\"H4017\"* his|strong=\"H4927\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Mishma|strong=\"H4927\"* his|strong=\"H4927\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mishma|strong=\"H4927\"*: Hammuel|strong=\"H2536\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Zaccur|strong=\"H2139\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Shimei|strong=\"H8096\"* his|strong=\"H8096\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "Shimei|strong=\"H8096\"* had|strong=\"H3063\"* sixteen|strong=\"H8337\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* six|strong=\"H8337\"* daughters|strong=\"H1323\"*; but|strong=\"H3808\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"* didn’t have|strong=\"H1121\"* many|strong=\"H7227\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* family|strong=\"H4940\"* didn’t multiply|strong=\"H7235\"* like|strong=\"H3808\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 28, + "text": "They lived|strong=\"H3427\"* at|strong=\"H3427\"* Beersheba, Moladah|strong=\"H4137\"*, Hazarshual," + }, + { + "verseNum": 29, + "text": "at Bilhah|strong=\"H1090\"*, at Ezem|strong=\"H6107\"*, at Tolad|strong=\"H8434\"*," + }, + { + "verseNum": 30, + "text": "at Bethuel|strong=\"H1328\"*, at Hormah|strong=\"H2767\"*, at Ziklag|strong=\"H6860\"*," + }, + { + "verseNum": 31, + "text": "at|strong=\"H1732\"* Beth Marcaboth, Hazar Susim, at|strong=\"H1732\"* Beth Biri, and|strong=\"H5892\"* at|strong=\"H1732\"* Shaaraim|strong=\"H8189\"*. These|strong=\"H1732\"* were|strong=\"H1732\"* their|strong=\"H1732\"* cities|strong=\"H5892\"* until|strong=\"H5704\"* David|strong=\"H1732\"*’s reign|strong=\"H4427\"*." + }, + { + "verseNum": 32, + "text": "Their villages|strong=\"H2691\"* were|strong=\"H5892\"* Etam|strong=\"H5862\"*, Ain|strong=\"H5871\"*, Rimmon|strong=\"H7417\"*, Tochen|strong=\"H8507\"*, and|strong=\"H5892\"* Ashan|strong=\"H6228\"*, five|strong=\"H2568\"* cities|strong=\"H5892\"*;" + }, + { + "verseNum": 33, + "text": "and|strong=\"H5892\"* all|strong=\"H3605\"* their|strong=\"H3605\"* villages|strong=\"H2691\"* that|strong=\"H3605\"* were|strong=\"H5892\"* around|strong=\"H5439\"* the|strong=\"H3605\"* same|strong=\"H2063\"* cities|strong=\"H5892\"*, as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* Baal|strong=\"H1168\"*. These|strong=\"H2063\"* were|strong=\"H5892\"* their|strong=\"H3605\"* settlements|strong=\"H4186\"*, and|strong=\"H5892\"* they|strong=\"H5704\"* kept their|strong=\"H3605\"* genealogy|strong=\"H3187\"*." + }, + { + "verseNum": 34, + "text": "Meshobab|strong=\"H4877\"*, Jamlech|strong=\"H3230\"*, Joshah|strong=\"H3144\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amaziah," + }, + { + "verseNum": 35, + "text": "Joel|strong=\"H3100\"*, Jehu|strong=\"H3058\"* the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joshibiah|strong=\"H3143\"*, the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah|strong=\"H8304\"*, the|strong=\"H3058\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asiel|strong=\"H6221\"*," + }, + { + "verseNum": 36, + "text": "Elioenai, Jaakobah|strong=\"H3291\"*, Jeshohaiah|strong=\"H3439\"*, Asaiah|strong=\"H6222\"*, Adiel|strong=\"H5717\"*, Jesimiel|strong=\"H3450\"*, Benaiah|strong=\"H1141\"*," + }, + { + "verseNum": 37, + "text": "and|strong=\"H1121\"* Ziza|strong=\"H2124\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiphi|strong=\"H8230\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Allon, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3042\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimri|strong=\"H8113\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*—" + }, + { + "verseNum": 38, + "text": "these|strong=\"H1004\"* mentioned by|strong=\"H8034\"* name|strong=\"H8034\"* were|strong=\"H4940\"* princes|strong=\"H5387\"* in|strong=\"H1004\"* their|strong=\"H6555\"* families|strong=\"H4940\"*. Their|strong=\"H6555\"* fathers’ houses|strong=\"H1004\"* increased|strong=\"H6555\"* greatly|strong=\"H7230\"*." + }, + { + "verseNum": 39, + "text": "They|strong=\"H5704\"* went|strong=\"H3212\"* to|strong=\"H5704\"* the|strong=\"H5704\"* entrance|strong=\"H3996\"* of|strong=\"H1516\"* Gedor|strong=\"H1446\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* east|strong=\"H4217\"* side|strong=\"H4217\"* of|strong=\"H1516\"* the|strong=\"H5704\"* valley|strong=\"H1516\"*, to|strong=\"H5704\"* seek|strong=\"H1245\"* pasture|strong=\"H4829\"* for|strong=\"H5704\"* their|strong=\"H1245\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H3588\"* found|strong=\"H4672\"* rich|strong=\"H8082\"*, good|strong=\"H2896\"* pasture|strong=\"H4829\"*, and|strong=\"H3027\"* the|strong=\"H6440\"* land|strong=\"H6440\"* was|strong=\"H3027\"* wide|strong=\"H7342\"*, and|strong=\"H3027\"* quiet|strong=\"H8252\"*, and|strong=\"H3027\"* peaceful|strong=\"H7961\"*, for|strong=\"H3588\"* those|strong=\"H4480\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* before|strong=\"H6440\"* were|strong=\"H3027\"* descended from|strong=\"H4480\"* Ham|strong=\"H2526\"*." + }, + { + "verseNum": 41, + "text": "These|strong=\"H2088\"* written|strong=\"H3789\"* by|strong=\"H3117\"* name|strong=\"H8034\"* came|strong=\"H4672\"* in|strong=\"H3427\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* struck|strong=\"H5221\"* their|strong=\"H3588\"* tents and|strong=\"H3063\"* the|strong=\"H3588\"* Meunim|strong=\"H4586\"* who|strong=\"H3427\"* were|strong=\"H3117\"* found|strong=\"H4672\"* there|strong=\"H8033\"*; and|strong=\"H3063\"* they|strong=\"H3588\"* destroyed|strong=\"H2763\"* them|strong=\"H5221\"* utterly|strong=\"H2763\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, and|strong=\"H3063\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3588\"* place|strong=\"H8478\"*, because|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H8034\"* pasture|strong=\"H4829\"* there|strong=\"H8033\"* for|strong=\"H3588\"* their|strong=\"H3588\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 42, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, even of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Simeon|strong=\"H8095\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"*, went|strong=\"H1980\"* to|strong=\"H1980\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, having for|strong=\"H1121\"* their|strong=\"H1992\"* captains|strong=\"H7218\"* Pelatiah|strong=\"H6410\"*, Neariah|strong=\"H5294\"*, Rephaiah|strong=\"H7509\"*, and|strong=\"H3967\"* Uzziel|strong=\"H5816\"*, the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ishi|strong=\"H3469\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3117\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* remnant|strong=\"H7611\"* of|strong=\"H3117\"* the|strong=\"H5221\"* Amalekites|strong=\"H6002\"* who|strong=\"H3427\"* escaped|strong=\"H6413\"*, and|strong=\"H3117\"* have|strong=\"H3117\"* lived|strong=\"H3427\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* (for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3478\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*, but|strong=\"H3588\"* because|strong=\"H3588\"* he|strong=\"H1931\"* defiled|strong=\"H2490\"* his|strong=\"H5414\"* father|strong=\"H1121\"*’s couch|strong=\"H3326\"*, his|strong=\"H5414\"* birthright|strong=\"H1062\"* was|strong=\"H3478\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* the|strong=\"H3588\"* genealogy|strong=\"H3187\"* is|strong=\"H1931\"* not|strong=\"H3808\"* to|strong=\"H3478\"* be|strong=\"H3808\"* listed|strong=\"H3187\"* according to|strong=\"H3478\"* the|strong=\"H3588\"* birthright|strong=\"H1062\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* Judah|strong=\"H3063\"* prevailed|strong=\"H1396\"* above|strong=\"H4480\"* his|strong=\"H3588\"* brothers, and|strong=\"H3063\"* from|strong=\"H4480\"* him|strong=\"H4480\"* came|strong=\"H3063\"* the|strong=\"H3588\"* prince|strong=\"H5057\"*; but|strong=\"H3588\"* the|strong=\"H3588\"* birthright|strong=\"H1062\"* was|strong=\"H3063\"* Joseph|strong=\"H3130\"*’s)—" + }, + { + "verseNum": 3, + "text": "the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: Hanoch|strong=\"H2585\"*, Pallu|strong=\"H6396\"*, Hezron|strong=\"H2696\"*, and|strong=\"H1121\"* Carmi|strong=\"H3756\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*: Shemaiah|strong=\"H8098\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Gog|strong=\"H1463\"* his|strong=\"H8096\"* son|strong=\"H1121\"*, Shimei|strong=\"H8096\"* his|strong=\"H8096\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 5, + "text": "Micah|strong=\"H4318\"* his|strong=\"H4318\"* son|strong=\"H1121\"*, Reaiah|strong=\"H7211\"* his|strong=\"H4318\"* son|strong=\"H1121\"*, Baal|strong=\"H1168\"* his|strong=\"H4318\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H1121\"* Beerah|strong=\"H5387\"* his|strong=\"H1540\"* son|strong=\"H1121\"*, whom Tilgath Pilneser king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*. He|strong=\"H1931\"* was|strong=\"H1931\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H1540\"* Reubenites|strong=\"H7206\"*." + }, + { + "verseNum": 7, + "text": "His|strong=\"H2148\"* brothers by|strong=\"H3187\"* their families|strong=\"H4940\"*, when the|strong=\"H2148\"* genealogy|strong=\"H3187\"* of|strong=\"H7218\"* their generations|strong=\"H8435\"* was|strong=\"H7218\"* listed|strong=\"H3187\"*: the|strong=\"H2148\"* chief|strong=\"H7218\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H7218\"* Zechariah|strong=\"H2148\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Bela|strong=\"H1106\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaz|strong=\"H5811\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shema|strong=\"H8087\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*, who|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Aroer|strong=\"H6177\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Nebo|strong=\"H5015\"* and|strong=\"H1121\"* Baal Meon;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3427\"* he|strong=\"H3588\"* lived|strong=\"H3427\"* eastward|strong=\"H4217\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* entrance of|strong=\"H3427\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"* from|strong=\"H4480\"* the|strong=\"H3588\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*, because|strong=\"H3588\"* their|strong=\"H3588\"* livestock|strong=\"H4735\"* were|strong=\"H3427\"* multiplied|strong=\"H7235\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3427\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*, they|strong=\"H3117\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H3605\"* Hagrites|strong=\"H1905\"*, who|strong=\"H3605\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* tents throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* east|strong=\"H4217\"* of|strong=\"H3117\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5704\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gad|strong=\"H1410\"* lived|strong=\"H3427\"* beside|strong=\"H5704\"* them|strong=\"H5048\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land of|strong=\"H1121\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Salecah|strong=\"H5548\"*:" + }, + { + "verseNum": 12, + "text": "Joel|strong=\"H3100\"* the|strong=\"H3100\"* chief|strong=\"H7218\"*, Shapham|strong=\"H8223\"* the|strong=\"H3100\"* second|strong=\"H4932\"*, Janai|strong=\"H3285\"*, and|strong=\"H7218\"* Shaphat|strong=\"H8202\"* in|strong=\"H7218\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 13, + "text": "Their brothers of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*: Michael|strong=\"H4317\"*, Meshullam|strong=\"H4918\"*, Sheba|strong=\"H7652\"*, Jorai|strong=\"H3140\"*, Jacan|strong=\"H3275\"*, Zia|strong=\"H2127\"*, and|strong=\"H1004\"* Eber|strong=\"H5677\"*, seven|strong=\"H7651\"*." + }, + { + "verseNum": 14, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Abihail, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Huri|strong=\"H2359\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaroah|strong=\"H3386\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshishai|strong=\"H3454\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jahdo|strong=\"H3163\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Buz;" + }, + { + "verseNum": 15, + "text": "Ahi the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdiel|strong=\"H5661\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Guni|strong=\"H1476\"*, chief|strong=\"H7218\"* of|strong=\"H1121\"* their fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gilead|strong=\"H1568\"* in|strong=\"H3427\"* Bashan|strong=\"H1316\"* and|strong=\"H4054\"* in|strong=\"H3427\"* its|strong=\"H3605\"* towns|strong=\"H1323\"*, and|strong=\"H4054\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H1323\"* Sharon|strong=\"H8289\"* as|strong=\"H3427\"* far|strong=\"H5921\"* as|strong=\"H3427\"* their|strong=\"H3605\"* borders|strong=\"H8444\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3478\"* listed|strong=\"H3187\"* by|strong=\"H3117\"* genealogies|strong=\"H3187\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Reuben|strong=\"H7205\"*, the|strong=\"H5375\"* Gadites|strong=\"H1425\"*, and|strong=\"H3967\"* the|strong=\"H5375\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, of|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, men|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* bear|strong=\"H5375\"* buckler|strong=\"H4043\"* and|strong=\"H3967\"* sword|strong=\"H2719\"*, able|strong=\"H2428\"* to|strong=\"H3318\"* shoot|strong=\"H1869\"* with|strong=\"H3318\"* bow|strong=\"H7198\"*, and|strong=\"H3967\"* skillful|strong=\"H3925\"* in|strong=\"H4421\"* war|strong=\"H4421\"*, were|strong=\"H1121\"* forty-four thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"* that|strong=\"H4480\"* were|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H5973\"* the|strong=\"H6213\"* Hagrites|strong=\"H1905\"*, with|strong=\"H5973\"* Jetur|strong=\"H3195\"*, and|strong=\"H6213\"* Naphish|strong=\"H5305\"*, and|strong=\"H6213\"* Nodab|strong=\"H5114\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3588\"* were|strong=\"H3027\"* helped|strong=\"H5826\"* against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* Hagrites|strong=\"H1905\"* were|strong=\"H3027\"* delivered|strong=\"H5414\"* into|strong=\"H5921\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* with|strong=\"H5973\"* them|strong=\"H5414\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* cried|strong=\"H2199\"* to|strong=\"H5921\"* God|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*, and|strong=\"H3027\"* he|strong=\"H3588\"* answered|strong=\"H6279\"* them|strong=\"H5414\"* because|strong=\"H3588\"* they|strong=\"H3588\"* put|strong=\"H5414\"* their|strong=\"H3605\"* trust in|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5315\"* took|strong=\"H7617\"* away|strong=\"H7617\"* their|strong=\"H7617\"* livestock|strong=\"H4735\"*: of|strong=\"H5315\"* their|strong=\"H7617\"* camels|strong=\"H1581\"* fifty|strong=\"H2572\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* sheep|strong=\"H6629\"* two|strong=\"H2543\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* donkeys|strong=\"H2543\"* two|strong=\"H2543\"* thousand, and|strong=\"H3967\"* of|strong=\"H5315\"* men|strong=\"H5315\"* one|strong=\"H5315\"* hundred|strong=\"H3967\"* thousand." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* many|strong=\"H7227\"* fell|strong=\"H5307\"* slain|strong=\"H2491\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* war|strong=\"H4421\"* was|strong=\"H4421\"* of|strong=\"H3427\"* God. They|strong=\"H3588\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3588\"* place|strong=\"H8478\"* until|strong=\"H5704\"* the|strong=\"H3588\"* captivity|strong=\"H1473\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5704\"* land. They|strong=\"H1992\"* increased|strong=\"H7235\"* from|strong=\"H1121\"* Bashan|strong=\"H1316\"* to|strong=\"H5704\"* Baal Hermon|strong=\"H2768\"*, Senir|strong=\"H8149\"*, and|strong=\"H1121\"* Mount|strong=\"H2022\"* Hermon|strong=\"H2768\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1004\"* were|strong=\"H2428\"* the|strong=\"H3414\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*: Epher|strong=\"H6081\"*, Ishi|strong=\"H3469\"*, Eliel, Azriel|strong=\"H5837\"*, Jeremiah|strong=\"H3414\"*, Hodaviah|strong=\"H1938\"*, and|strong=\"H1004\"* Jahdiel|strong=\"H3164\"*—mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*, famous|strong=\"H8034\"* men|strong=\"H1368\"*, heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H5971\"* trespassed|strong=\"H4603\"* against|strong=\"H6440\"* the|strong=\"H6440\"* God of|strong=\"H6440\"* their|strong=\"H6440\"* fathers, and|strong=\"H5971\"* played|strong=\"H2181\"* the|strong=\"H6440\"* prostitute|strong=\"H2181\"* after the|strong=\"H6440\"* gods of|strong=\"H6440\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"* whom|strong=\"H6440\"* God destroyed|strong=\"H8045\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 26, + "text": "So|strong=\"H2088\"* the|strong=\"H3117\"* God of|strong=\"H4428\"* Israel|strong=\"H3478\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3117\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Pul|strong=\"H6322\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3478\"* the|strong=\"H3117\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Tilgath Pilneser king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H3478\"* he|strong=\"H3117\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* the|strong=\"H3117\"* Reubenites|strong=\"H7206\"*, the|strong=\"H3117\"* Gadites|strong=\"H1425\"*, and|strong=\"H3478\"* the|strong=\"H3117\"* half-tribe|strong=\"H2677\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* brought|strong=\"H3478\"* them|strong=\"H1540\"* to|strong=\"H5704\"* Halah|strong=\"H2477\"*, Habor|strong=\"H2249\"*, Hara|strong=\"H2024\"*, and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3117\"* river|strong=\"H5104\"* of|strong=\"H4428\"* Gozan|strong=\"H1470\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H8034\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath: Amram, Izhar, Hebron, and|strong=\"H1121\"* Uzziel." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*: Aaron, Moses, and|strong=\"H1121\"* Miriam. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 4, + "text": "Eleazar became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas, Phinehas became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Abishua," + }, + { + "verseNum": 5, + "text": "Abishua became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Bukki. Bukki became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi." + }, + { + "verseNum": 6, + "text": "Uzzi became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zerahiah. Zerahiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth." + }, + { + "verseNum": 7, + "text": "Meraioth became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Amariah. Amariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 8, + "text": "Ahitub became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zadok. Zadok became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahimaaz." + }, + { + "verseNum": 9, + "text": "Ahimaaz became|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah. Azariah became|strong=\"H7586\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Johanan." + }, + { + "verseNum": 10, + "text": "Johanan became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah, who|strong=\"H1121\"* executed the|strong=\"H1121\"* priest’s office in|strong=\"H1121\"* the|strong=\"H1121\"* house that|strong=\"H1121\"* Solomon built in|strong=\"H1121\"* Jerusalem." + }, + { + "verseNum": 11, + "text": "Azariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Amariah. Amariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub." + }, + { + "verseNum": 12, + "text": "Ahitub became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Zadok. Zadok became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Shallum." + }, + { + "verseNum": 13, + "text": "Shallum became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah. Hilkiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Azariah." + }, + { + "verseNum": 14, + "text": "Azariah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah. Seraiah became the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak." + }, + { + "verseNum": 15, + "text": "Jehozadak went|strong=\"H1121\"* into captivity when|strong=\"H1121\"* Yahweh|strong=\"H3068\"* carried Judah and|strong=\"H1121\"* Jerusalem away by|strong=\"H1121\"* the|strong=\"H1121\"* hand of|strong=\"H1121\"* Nebuchadnezzar." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* sons of|strong=\"H1004\"* Levi: Gershom, Kohath, and|strong=\"H3068\"* Merari." + }, + { + "verseNum": 17, + "text": "These|strong=\"H6440\"* are|strong=\"H3068\"* the|strong=\"H6440\"* names of|strong=\"H1004\"* the|strong=\"H6440\"* sons of|strong=\"H1004\"* Gershom: Libni and|strong=\"H3068\"* Shimei." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5975\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath were|strong=\"H1121\"* Amram, Izhar, Hebron, and|strong=\"H1121\"* Uzziel." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari: Mahli and|strong=\"H1121\"* Mushi. These are|strong=\"H1121\"* the|strong=\"H1121\"* families|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H1121\"* according to|strong=\"H1121\"* their fathers’ households." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* Gershom: Libni his|strong=\"H6689\"* son|strong=\"H1121\"*, Jahath his|strong=\"H6689\"* son|strong=\"H1121\"*, Zimmah his|strong=\"H6689\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 21, + "text": "Joah his|strong=\"H3100\"* son|strong=\"H1121\"*, Iddo his|strong=\"H3100\"* son|strong=\"H1121\"*, Zerah his|strong=\"H3100\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Jeatherai his|strong=\"H3100\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath: Amminadab his|strong=\"H8480\"* son|strong=\"H1121\"*, Korah|strong=\"H7141\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Assir his|strong=\"H8480\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 23, + "text": "Elkanah his|strong=\"H3478\"* son|strong=\"H1121\"*, Ebiasaph his|strong=\"H3478\"* son|strong=\"H1121\"*, Assir his|strong=\"H3478\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "Tahath his|strong=\"H5921\"* son|strong=\"H1121\"*, Uriel his|strong=\"H5921\"* son|strong=\"H1121\"*, Uzziah his|strong=\"H5921\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Shaul his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah: Amasai and|strong=\"H1121\"* Ahimoth." + }, + { + "verseNum": 26, + "text": "As|strong=\"H1121\"* for|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah: Zophai his|strong=\"H2226\"* son|strong=\"H1121\"*, Nahath his|strong=\"H2226\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 27, + "text": "Eliab his|strong=\"H8096\"* son|strong=\"H1121\"*, Jeroham his|strong=\"H8096\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Elkanah his|strong=\"H8096\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Samuel: the|strong=\"H1121\"* firstborn|strong=\"H1121\"*, Joel, and|strong=\"H1121\"* the|strong=\"H1121\"* second, Abijah." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli, Libni his|strong=\"H5921\"* son|strong=\"H1121\"*, Shimei his|strong=\"H5921\"* son|strong=\"H1121\"*, Uzzah his|strong=\"H5921\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 30, + "text": "Shimea his|strong=\"H1121\"* son|strong=\"H1121\"*, Haggiah his|strong=\"H1121\"* son|strong=\"H1121\"*, Asaiah his|strong=\"H1121\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 31, + "text": "These are|strong=\"H1121\"* they whom David set over the|strong=\"H1121\"* service of|strong=\"H1121\"* song in|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house after the|strong=\"H1121\"* ark came to|strong=\"H1121\"* rest there." + }, + { + "verseNum": 32, + "text": "They ministered with|strong=\"H1121\"* song before the|strong=\"H1121\"* tabernacle of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting until Solomon had|strong=\"H1121\"* built Yahweh|strong=\"H3068\"*’s house in|strong=\"H1121\"* Jerusalem. They performed the|strong=\"H1121\"* duties of|strong=\"H1121\"* their|strong=\"H4847\"* office according to|strong=\"H1121\"* their|strong=\"H4847\"* order." + }, + { + "verseNum": 33, + "text": "These|strong=\"H3605\"* are|strong=\"H1004\"* those|strong=\"H3605\"* who|strong=\"H3605\"* served, and|strong=\"H1004\"* their|strong=\"H3605\"* sons. Of|strong=\"H1004\"* the|strong=\"H3605\"* sons of|strong=\"H1004\"* the|strong=\"H3605\"* Kohathites: Heman the|strong=\"H3605\"* singer, the|strong=\"H3605\"* son of|strong=\"H1004\"* Joel, the|strong=\"H3605\"* son of|strong=\"H1004\"* Samuel," + }, + { + "verseNum": 34, + "text": "the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliel, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Toah," + }, + { + "verseNum": 35, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zuph, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahath, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amasai," + }, + { + "verseNum": 36, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah," + }, + { + "verseNum": 37, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tahath, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Assir, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebiasaph, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Korah," + }, + { + "verseNum": 38, + "text": "the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kohath, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel." + }, + { + "verseNum": 39, + "text": "His|strong=\"H1961\"* brother Asaph, who|strong=\"H1121\"* stood on|strong=\"H1961\"* his|strong=\"H1961\"* right hand, even|strong=\"H3588\"* Asaph the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimea," + }, + { + "verseNum": 40, + "text": "the|strong=\"H5414\"* son of|strong=\"H5439\"* Michael, the|strong=\"H5414\"* son of|strong=\"H5439\"* Baaseiah, the|strong=\"H5414\"* son of|strong=\"H5439\"* Malchijah," + }, + { + "verseNum": 41, + "text": "the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethni, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerah, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah," + }, + { + "verseNum": 42, + "text": "the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ethan, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zimmah, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei," + }, + { + "verseNum": 43, + "text": "the son of|strong=\"H4054\"* Jahath, the son of|strong=\"H4054\"* Gershom, the son of|strong=\"H4054\"* Levi." + }, + { + "verseNum": 44, + "text": "On the left hand their brothers the sons of|strong=\"H4054\"* Merari: Ethan the son of|strong=\"H4054\"* Kishi, the son of|strong=\"H4054\"* Abdi, the son of|strong=\"H4054\"* Malluch," + }, + { + "verseNum": 45, + "text": "the|strong=\"H3605\"* son of|strong=\"H4294\"* Hashabiah, the|strong=\"H3605\"* son of|strong=\"H4294\"* Amaziah, the|strong=\"H3605\"* son of|strong=\"H4294\"* Hilkiah," + }, + { + "verseNum": 46, + "text": "the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amzi, the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani, the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemer," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahli, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mushi, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Merari, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi." + }, + { + "verseNum": 48, + "text": "Their|strong=\"H8147\"* brothers|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H1121\"* were|strong=\"H1121\"* appointed|strong=\"H1121\"* for|strong=\"H1121\"* all the|strong=\"H1121\"* service of|strong=\"H1121\"* the|strong=\"H1121\"* tabernacle of|strong=\"H1121\"* God’s house." + }, + { + "verseNum": 49, + "text": "But|strong=\"H3881\"* Aaron and|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* offered|strong=\"H5414\"* on|strong=\"H5892\"* the|strong=\"H5414\"* altar of|strong=\"H1121\"* burnt offering, and|strong=\"H1121\"* on|strong=\"H5892\"* the|strong=\"H5414\"* altar of|strong=\"H1121\"* incense, for|strong=\"H1121\"* all|strong=\"H5414\"* the|strong=\"H5414\"* work|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* most holy place|strong=\"H5414\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* make|strong=\"H5414\"* atonement for|strong=\"H1121\"* Israel|strong=\"H3478\"*, according to|strong=\"H3478\"* all|strong=\"H5414\"* that|strong=\"H3478\"* Moses|strong=\"H5414\"* the|strong=\"H5414\"* servant of|strong=\"H1121\"* God|strong=\"H5414\"* had|strong=\"H3478\"* commanded." + }, + { + "verseNum": 50, + "text": "These|strong=\"H7121\"* are|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Eleazar his|strong=\"H5414\"* son|strong=\"H1121\"*, Phinehas his|strong=\"H5414\"* son|strong=\"H1121\"*, Abishua his|strong=\"H5414\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 51, + "text": "Bukki his|strong=\"H1961\"* son|strong=\"H1121\"*, Uzzi his|strong=\"H1961\"* son|strong=\"H1121\"*, Zerahiah his|strong=\"H1961\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 52, + "text": "Meraioth his|strong=\"H5414\"* son, Amariah his|strong=\"H5414\"* son, Ahitub his|strong=\"H5414\"* son," + }, + { + "verseNum": 53, + "text": "Zadok his son, and|strong=\"H4054\"* Ahimaaz his son." + }, + { + "verseNum": 54, + "text": "Now these are their dwelling places according to their encampments in|strong=\"H4054\"* their borders: to the sons of|strong=\"H4054\"* Aaron, of|strong=\"H4054\"* the families of|strong=\"H4054\"* the Kohathites (for theirs was the first lot)," + }, + { + "verseNum": 55, + "text": "to|strong=\"H1121\"* them|strong=\"H1121\"* they gave Hebron in|strong=\"H1121\"* the|strong=\"H1121\"* land|strong=\"H4940\"* of|strong=\"H1121\"* Judah, and|strong=\"H1121\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"* around it|strong=\"H1121\"*;" + }, + { + "verseNum": 56, + "text": "but the|strong=\"H2677\"* fields of|strong=\"H1121\"* the|strong=\"H2677\"* city and|strong=\"H1121\"* its|strong=\"H2677\"* villages, they gave to|strong=\"H1121\"* Caleb the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jephunneh." + }, + { + "verseNum": 57, + "text": "To|strong=\"H4294\"* the|strong=\"H3485\"* sons of|strong=\"H4294\"* Aaron they gave the|strong=\"H3485\"* cities of|strong=\"H4294\"* refuge, Hebron, Libnah also with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Jattir, Eshtemoa with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 58, + "text": "Hilen with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Debir with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*," + }, + { + "verseNum": 59, + "text": "Ashan with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H4054\"* Beth Shemesh with|strong=\"H4294\"* its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*;" + }, + { + "verseNum": 60, + "text": "and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4054\"* the tribe of|strong=\"H4054\"* Benjamin, Geba with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, Allemeth with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, and|strong=\"H4054\"* Anathoth with its pasture|strong=\"H4054\"* lands|strong=\"H4054\"*. All their cities throughout their families were thirteen cities." + }, + { + "verseNum": 61, + "text": "To|strong=\"H4294\"* the|strong=\"H4294\"* rest of|strong=\"H4294\"* the|strong=\"H4294\"* sons of|strong=\"H4294\"* Kohath were|strong=\"H4294\"* given by lot, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* family of|strong=\"H4294\"* the|strong=\"H4294\"* tribe|strong=\"H4294\"*, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H4294\"* half-tribe, the|strong=\"H4294\"* half of|strong=\"H4294\"* Manasseh, ten cities." + }, + { + "verseNum": 62, + "text": "To|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom, according to|strong=\"H1121\"* their|strong=\"H4847\"* families|strong=\"H1121\"*, out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Issachar, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Asher, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Naphtali, and|strong=\"H1121\"* out|strong=\"H4054\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribe|strong=\"H4294\"* of|strong=\"H1121\"* Manasseh in|strong=\"H1121\"* Bashan, thirteen cities." + }, + { + "verseNum": 63, + "text": "To|strong=\"H3383\"* the|strong=\"H5676\"* sons of|strong=\"H4294\"* Merari were|strong=\"H3383\"* given by|strong=\"H3383\"* lot, according to|strong=\"H3383\"* their families, out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Reuben|strong=\"H7205\"*, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Gad, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H5676\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* Zebulun, twelve cities." + }, + { + "verseNum": 64, + "text": "The children of|strong=\"H4054\"* Israel gave to|strong=\"H6932\"* the Levites the cities with their pasture|strong=\"H4054\"* lands|strong=\"H4054\"*." + }, + { + "verseNum": 65, + "text": "They gave by lot out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Judah, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Simeon, and|strong=\"H4054\"* out|strong=\"H4054\"* of|strong=\"H4294\"* the|strong=\"H1410\"* tribe|strong=\"H4294\"* of|strong=\"H4294\"* the|strong=\"H1410\"* children of|strong=\"H4294\"* Benjamin, these cities which are|strong=\"H4294\"* mentioned by name." + }, + { + "verseNum": 66, + "text": "Some of|strong=\"H3270\"* the|strong=\"H3270\"* families of|strong=\"H3270\"* the|strong=\"H3270\"* sons of|strong=\"H3270\"* Kohath had cities of|strong=\"H3270\"* their borders out|strong=\"H4054\"* of|strong=\"H3270\"* the|strong=\"H3270\"* tribe of|strong=\"H3270\"* Ephraim." + }, + { + "verseNum": 67, + "text": "They gave to them the cities of refuge, Shechem in the hill country of Ephraim with its pasture lands and Gezer with its pasture lands," + }, + { + "verseNum": 68, + "text": "Jokmeam with its pasture lands, Beth Horon with its pasture lands," + }, + { + "verseNum": 69, + "text": "Aijalon with its pasture lands, Gath Rimmon with its pasture lands;" + }, + { + "verseNum": 70, + "text": "and out of the half-tribe of Manasseh, Aner with its pasture lands, and Bileam with its pasture lands, for the rest of the family of the sons of Kohath." + }, + { + "verseNum": 71, + "text": "To the sons of Gershom were given, out of the family of the half-tribe of Manasseh, Golan in Bashan with its pasture lands, and Ashtaroth with its pasture lands;" + }, + { + "verseNum": 72, + "text": "and out of the tribe of Issachar, Kedesh with its pasture lands, Daberath with its pasture lands," + }, + { + "verseNum": 73, + "text": "Ramoth with its pasture lands, and Anem with its pasture lands;" + }, + { + "verseNum": 74, + "text": "and out of the tribe of Asher, Mashal with its pasture lands, Abdon with its pasture lands," + }, + { + "verseNum": 75, + "text": "Hukok with its pasture lands, and Rehob with its pasture lands;" + }, + { + "verseNum": 76, + "text": "and out of the tribe of Naphtali, Kedesh in Galilee with its pasture lands, Hammon with its pasture lands, and Kiriathaim with its pasture lands." + }, + { + "verseNum": 77, + "text": "To the rest of the Levites, the sons of Merari, were given, out of the tribe of Zebulun, Rimmono with its pasture lands, and Tabor with its pasture lands;" + }, + { + "verseNum": 78, + "text": "and beyond the Jordan at Jericho, on the east side of the Jordan, were given them out of the tribe of Reuben: Bezer in the wilderness with its pasture lands, Jahzah with its pasture lands," + }, + { + "verseNum": 79, + "text": "Kedemoth with its pasture lands, and Mephaath with its pasture lands;" + }, + { + "verseNum": 80, + "text": "and out of the tribe of Gad, Ramoth in Gilead with its pasture lands, Mahanaim with its pasture lands," + }, + { + "verseNum": 81, + "text": "Heshbon with its pasture lands, and Jazer with its pasture lands." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Issachar|strong=\"H3485\"*: Tola|strong=\"H8439\"*, Puah|strong=\"H6312\"*, Jashub|strong=\"H3437\"*, and|strong=\"H1121\"* Shimron|strong=\"H8110\"*, four." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Tola|strong=\"H8439\"*: Uzzi|strong=\"H5813\"*, Rephaiah|strong=\"H7509\"*, Jeriel|strong=\"H3400\"*, Jahmai|strong=\"H3181\"*, Ibsam|strong=\"H3005\"*, and|strong=\"H3967\"* Shemuel|strong=\"H8050\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* their|strong=\"H3117\"* fathers’ houses|strong=\"H1004\"*, of|strong=\"H1121\"* Tola|strong=\"H8439\"*; mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"* in|strong=\"H1004\"* their|strong=\"H3117\"* generations|strong=\"H8435\"*. Their|strong=\"H3117\"* number|strong=\"H4557\"* in|strong=\"H1004\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* David|strong=\"H1732\"* was|strong=\"H1732\"* twenty-two|strong=\"H6242\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*: Izrahiah|strong=\"H3156\"*. The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Izrahiah|strong=\"H3156\"*: Michael|strong=\"H4317\"*, Obadiah|strong=\"H5662\"*, Joel|strong=\"H3100\"*, and|strong=\"H1121\"* Isshiah|strong=\"H3449\"*, five|strong=\"H2568\"*; all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* chief|strong=\"H7218\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "With|strong=\"H1004\"* them|strong=\"H5921\"*, by|strong=\"H5921\"* their|strong=\"H5921\"* generations|strong=\"H8435\"*, after|strong=\"H5921\"* their|strong=\"H5921\"* fathers’ houses|strong=\"H1004\"*, were|strong=\"H1121\"* bands|strong=\"H1416\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* for|strong=\"H3588\"* war|strong=\"H4421\"*, thirty-six|strong=\"H7970\"* thousand; for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* many|strong=\"H7235\"* wives and|strong=\"H1121\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Their|strong=\"H3605\"* brothers among|strong=\"H1368\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1368\"* Issachar|strong=\"H3485\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*, listed|strong=\"H3187\"* in|strong=\"H1368\"* all|strong=\"H3605\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, were|strong=\"H4940\"* eighty-seven|strong=\"H8084\"* thousand." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3043\"* sons of|strong=\"H1144\"* Benjamin|strong=\"H1144\"*: Bela|strong=\"H1106\"*, Becher|strong=\"H1071\"*, and|strong=\"H1144\"* Jediael|strong=\"H3043\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bela|strong=\"H1106\"*: Ezbon, Uzzi|strong=\"H5813\"*, Uzziel|strong=\"H5816\"*, Jerimoth|strong=\"H3406\"*, and|strong=\"H1121\"* Iri|strong=\"H5901\"*, five|strong=\"H2568\"*; heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses|strong=\"H1004\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*; and|strong=\"H1121\"* they|strong=\"H2428\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* twenty-two|strong=\"H6242\"* thousand thirty-four|strong=\"H7970\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Becher|strong=\"H1071\"*: Zemirah|strong=\"H2160\"*, Joash|strong=\"H3135\"*, Eliezer, Elioenai, Omri|strong=\"H6018\"*, Jeremoth|strong=\"H3406\"*, Abijah, Anathoth|strong=\"H6068\"*, and|strong=\"H1121\"* Alemeth|strong=\"H5964\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Becher|strong=\"H1071\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H2428\"* were|strong=\"H2428\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, after|strong=\"H1004\"* their generations|strong=\"H8435\"*, heads|strong=\"H7218\"* of|strong=\"H1004\"* their fathers’ houses|strong=\"H1004\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*, twenty|strong=\"H6242\"* thousand two|strong=\"H1004\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jediael|strong=\"H3043\"*: Bilhan|strong=\"H1092\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhan|strong=\"H1092\"*: Jeush|strong=\"H3266\"*, Benjamin|strong=\"H1144\"*, Ehud, Chenaanah|strong=\"H3668\"*, Zethan|strong=\"H2133\"*, Tarshish|strong=\"H8659\"*, and|strong=\"H1121\"* Ahishahar." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jediael|strong=\"H3043\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers’ households, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, seventeen|strong=\"H7651\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* able|strong=\"H2428\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H4421\"* the|strong=\"H3605\"* army|strong=\"H2428\"* for|strong=\"H1121\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 12, + "text": "So were|strong=\"H1121\"* Shuppim|strong=\"H8206\"*, Huppim|strong=\"H2650\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ir|strong=\"H5893\"*, Hushim|strong=\"H2366\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aher." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7967\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*: Jahziel|strong=\"H3185\"*, Guni|strong=\"H1476\"*, Jezer|strong=\"H3337\"*, Shallum|strong=\"H7967\"*, and|strong=\"H1121\"* the|strong=\"H7967\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Bilhah|strong=\"H1090\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3205\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*: Asriel, whom his|strong=\"H4519\"* concubine|strong=\"H6370\"* the|strong=\"H3205\"* Aramitess bore|strong=\"H3205\"*. She bore|strong=\"H3205\"* Machir|strong=\"H4353\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 15, + "text": "Machir|strong=\"H4353\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1323\"* Huppim|strong=\"H2650\"* and|strong=\"H1323\"* Shuppim|strong=\"H8206\"*, whose|strong=\"H8034\"* sister’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*. The|strong=\"H3947\"* name|strong=\"H8034\"* of|strong=\"H1323\"* the|strong=\"H3947\"* second|strong=\"H8145\"* was|strong=\"H8034\"* Zelophehad|strong=\"H6765\"*; and|strong=\"H1323\"* Zelophehad|strong=\"H6765\"* had|strong=\"H1961\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 16, + "text": "Maacah|strong=\"H4601\"* the|strong=\"H3205\"* wife of|strong=\"H1121\"* Machir|strong=\"H4353\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* she|strong=\"H7121\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Peresh|strong=\"H6570\"*. The|strong=\"H3205\"* name|strong=\"H8034\"* of|strong=\"H1121\"* his|strong=\"H7121\"* brother was|strong=\"H8034\"* Sheresh|strong=\"H8329\"*; and|strong=\"H1121\"* his|strong=\"H7121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* Ulam and|strong=\"H1121\"* Rakem|strong=\"H7552\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4353\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulam: Bedan. These were|strong=\"H1121\"* the|strong=\"H4353\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gilead|strong=\"H1568\"* the|strong=\"H4353\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Machir|strong=\"H4353\"*, the|strong=\"H4353\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 18, + "text": "His|strong=\"H3205\"* sister Hammolecheth|strong=\"H4447\"* bore|strong=\"H3205\"* Ishhod, Abiezer, and|strong=\"H3205\"* Mahlah|strong=\"H4244\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemida|strong=\"H8061\"* were|strong=\"H1961\"* Ahian, Shechem|strong=\"H7928\"*, Likhi|strong=\"H3949\"*, and|strong=\"H1121\"* Aniam." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim: Shuthelah|strong=\"H7803\"*, Bered|strong=\"H1260\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Tahath|strong=\"H8480\"* his|strong=\"H8480\"* son|strong=\"H1121\"*, Eleadah his|strong=\"H8480\"* son|strong=\"H1121\"*, Tahath|strong=\"H8480\"* his|strong=\"H8480\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 21, + "text": "Zabad|strong=\"H2066\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, Shuthelah|strong=\"H7803\"* his|strong=\"H3947\"* son|strong=\"H1121\"*, Ezer|strong=\"H5827\"*, and|strong=\"H1121\"* Elead, whom|strong=\"H3588\"* the|strong=\"H3588\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Gath|strong=\"H1661\"* who|strong=\"H1121\"* were|strong=\"H1121\"* born|strong=\"H3205\"* in|strong=\"H1121\"* the|strong=\"H3588\"* land killed|strong=\"H2026\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* take|strong=\"H3947\"* away|strong=\"H3947\"* their|strong=\"H3947\"* livestock|strong=\"H4735\"*." + }, + { + "verseNum": 22, + "text": "Ephraim their|strong=\"H3117\"* father mourned many|strong=\"H7227\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* his|strong=\"H5162\"* brothers came to|strong=\"H3117\"* comfort|strong=\"H5162\"* him|strong=\"H5162\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3588\"* went|strong=\"H1121\"* in|strong=\"H1004\"* to|strong=\"H1961\"* his|strong=\"H7121\"* wife, and|strong=\"H1121\"* she|strong=\"H3588\"* conceived|strong=\"H2029\"* and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* named|strong=\"H7121\"* him|strong=\"H3205\"* Beriah|strong=\"H1283\"*,+ 7:23 “Beriah” is similar to the Hebrew word for “misfortune”.* because|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H8034\"* trouble|strong=\"H7451\"* with|strong=\"H1004\"* his|strong=\"H7121\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H1129\"* daughter|strong=\"H1323\"* was|strong=\"H1323\"* Sheerah|strong=\"H7609\"*, who|strong=\"H1323\"* built|strong=\"H1129\"* Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"* and|strong=\"H1323\"* the|strong=\"H1129\"* upper|strong=\"H5945\"*, and|strong=\"H1323\"* Uzzen Sheerah|strong=\"H7609\"*." + }, + { + "verseNum": 25, + "text": "Rephah|strong=\"H7506\"* was|strong=\"H1121\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Resheph|strong=\"H7566\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Telah|strong=\"H8520\"* his|strong=\"H8520\"* son|strong=\"H1121\"*, Tahan|strong=\"H8465\"* his|strong=\"H8520\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 26, + "text": "Ladan|strong=\"H3936\"* his|strong=\"H3936\"* son|strong=\"H1121\"*, Ammihud|strong=\"H5989\"* his|strong=\"H3936\"* son|strong=\"H1121\"*, Elishama his|strong=\"H3936\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 27, + "text": "Nun|strong=\"H5126\"* his|strong=\"H3091\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Joshua|strong=\"H3091\"* his|strong=\"H3091\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 28, + "text": "Their|strong=\"H1008\"* possessions and|strong=\"H1008\"* settlements|strong=\"H4186\"* were|strong=\"H1323\"* Bethel|strong=\"H1008\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*, and|strong=\"H1008\"* eastward|strong=\"H4217\"* Naaran|strong=\"H5295\"*, and|strong=\"H1008\"* westward|strong=\"H4628\"* Gezer|strong=\"H1507\"* with its|strong=\"H5704\"* towns|strong=\"H1323\"*; Shechem|strong=\"H7927\"* also|strong=\"H5804\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*, to|strong=\"H5704\"* Azzah|strong=\"H5804\"* and|strong=\"H1008\"* its|strong=\"H5704\"* towns|strong=\"H1323\"*;" + }, + { + "verseNum": 29, + "text": "and|strong=\"H1121\"* by|strong=\"H3027\"* the|strong=\"H5921\"* borders|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Beth Shean and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, Taanach|strong=\"H8590\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, Megiddo|strong=\"H4023\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*, and|strong=\"H1121\"* Dor|strong=\"H1756\"* and|strong=\"H1121\"* its|strong=\"H5921\"* towns|strong=\"H1323\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Joseph|strong=\"H3130\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* these." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asher: Imnah|strong=\"H3232\"*, Ishvah|strong=\"H3438\"*, Ishvi|strong=\"H3440\"*, and|strong=\"H1121\"* Beriah|strong=\"H1283\"*. Serah|strong=\"H8294\"* was|strong=\"H1121\"* their|strong=\"H8294\"* sister." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*: Heber|strong=\"H2268\"* and|strong=\"H1121\"* Malchiel|strong=\"H4439\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H1121\"* father|strong=\"H1121\"* of|strong=\"H1121\"* Birzaith|strong=\"H1269\"*." + }, + { + "verseNum": 32, + "text": "Heber|strong=\"H2268\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Japhlet|strong=\"H3310\"*, Shomer|strong=\"H7763\"*, Hotham|strong=\"H2369\"*, and|strong=\"H3205\"* Shua|strong=\"H7774\"* their|strong=\"H7774\"* sister." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Japhlet|strong=\"H3310\"*: Pasach|strong=\"H6457\"*, Bimhal|strong=\"H1118\"*, and|strong=\"H1121\"* Ashvath|strong=\"H6220\"*. These are|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Japhlet|strong=\"H3310\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemer|strong=\"H8106\"*: Ahi, Rohgah|strong=\"H7303\"*, Jehubbah|strong=\"H3160\"*, and|strong=\"H1121\"* Aram." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Helem|strong=\"H1987\"* his|strong=\"H1121\"* brother: Zophah|strong=\"H6690\"*, Imna|strong=\"H3234\"*, Shelesh|strong=\"H8028\"*, and|strong=\"H1121\"* Amal|strong=\"H6000\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zophah|strong=\"H6690\"*: Suah|strong=\"H5477\"*, Harnepher|strong=\"H2774\"*, Shual|strong=\"H7777\"*, Beri|strong=\"H1275\"*, Imrah|strong=\"H3236\"*," + }, + { + "verseNum": 37, + "text": "Bezer|strong=\"H1221\"*, Hod|strong=\"H1936\"*, Shamma|strong=\"H8037\"*, Shilshah|strong=\"H8030\"*, Ithran|strong=\"H3506\"*, and|strong=\"H3506\"* Beera." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jether|strong=\"H3500\"*: Jephunneh|strong=\"H3312\"*, Pispa|strong=\"H6462\"*, and|strong=\"H1121\"* Ara." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulla|strong=\"H5925\"*: Arah, Hanniel|strong=\"H2592\"*, and|strong=\"H1121\"* Rizia|strong=\"H7525\"*." + }, + { + "verseNum": 40, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asher, heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, choice|strong=\"H1305\"* and|strong=\"H1121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* princes|strong=\"H5387\"*. The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* for|strong=\"H1004\"* service|strong=\"H6635\"* in|strong=\"H1004\"* war|strong=\"H4421\"* was|strong=\"H1004\"* twenty-six|strong=\"H8337\"* thousand men|strong=\"H1368\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Benjamin|strong=\"H1144\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Bela|strong=\"H1106\"* his|strong=\"H3205\"* firstborn|strong=\"H1060\"*, Ashbel the|strong=\"H3205\"* second|strong=\"H8145\"*, Aharah the|strong=\"H3205\"* third|strong=\"H7992\"*," + }, + { + "verseNum": 2, + "text": "Nohah|strong=\"H5119\"* the|strong=\"H7243\"* fourth|strong=\"H7243\"*, and|strong=\"H2549\"* Rapha|strong=\"H7498\"* the|strong=\"H7243\"* fifth|strong=\"H2549\"*." + }, + { + "verseNum": 3, + "text": "Bela|strong=\"H1106\"* had|strong=\"H1961\"* sons|strong=\"H1121\"*: Addar, Gera|strong=\"H1617\"*, Abihud," + }, + { + "verseNum": 4, + "text": "Abishua, Naaman|strong=\"H5283\"*, Ahoah," + }, + { + "verseNum": 5, + "text": "Gera|strong=\"H1617\"*, Shephuphan|strong=\"H8197\"*, and|strong=\"H8197\"* Huram|strong=\"H2361\"*." + }, + { + "verseNum": 6, + "text": "These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1540\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ehud. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H1540\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H1540\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Geba|strong=\"H1387\"*, who|strong=\"H1121\"* were|strong=\"H1121\"* carried|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H1121\"* Manahath|strong=\"H4506\"*:" + }, + { + "verseNum": 7, + "text": "Naaman|strong=\"H5283\"*, Ahijah, and|strong=\"H5798\"* Gera|strong=\"H1617\"*, who|strong=\"H1931\"* carried|strong=\"H1540\"* them|strong=\"H1540\"* captive|strong=\"H1540\"*; and|strong=\"H5798\"* he|strong=\"H1931\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Uzza|strong=\"H5798\"* and|strong=\"H5798\"* Ahihud." + }, + { + "verseNum": 8, + "text": "Shaharaim|strong=\"H7842\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* children|strong=\"H3205\"* in|strong=\"H7971\"* the|strong=\"H3205\"* field|strong=\"H7704\"* of|strong=\"H3205\"* Moab|strong=\"H4124\"*, after|strong=\"H4480\"* he|strong=\"H4480\"* had|strong=\"H3205\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*. Hushim|strong=\"H2366\"* and|strong=\"H7971\"* Baara|strong=\"H1199\"* were|strong=\"H3205\"* his|strong=\"H7971\"* wives." + }, + { + "verseNum": 9, + "text": "By|strong=\"H3205\"* Hodesh|strong=\"H2321\"* his|strong=\"H4480\"* wife, he|strong=\"H4480\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jobab|strong=\"H3103\"*, Zibia|strong=\"H6644\"*, Mesha|strong=\"H4331\"*, Malcam|strong=\"H4445\"*," + }, + { + "verseNum": 10, + "text": "Jeuz|strong=\"H3263\"*, Shachia|strong=\"H7634\"*, and|strong=\"H1121\"* Mirmah|strong=\"H4821\"*. These were|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households." + }, + { + "verseNum": 11, + "text": "By|strong=\"H3205\"* Hushim|strong=\"H2366\"*, he|strong=\"H2366\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Abitub and|strong=\"H3205\"* Elpaal." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1129\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elpaal: Eber|strong=\"H5677\"*, Misham|strong=\"H4936\"*, and|strong=\"H1121\"* Shemed|strong=\"H8106\"*, who|strong=\"H1931\"* built|strong=\"H1129\"* Ono and|strong=\"H1121\"* Lod|strong=\"H3850\"*, with|strong=\"H1121\"* its towns|strong=\"H1323\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H7218\"* Beriah|strong=\"H1283\"* and|strong=\"H7218\"* Shema|strong=\"H8087\"*, who|strong=\"H3427\"* were|strong=\"H1992\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households of|strong=\"H3427\"* the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Aijalon, who|strong=\"H3427\"* put|strong=\"H1272\"* to|strong=\"H3427\"* flight|strong=\"H1272\"* the|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gath|strong=\"H1661\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H3406\"* Ahio, Shashak|strong=\"H8349\"*, Jeremoth|strong=\"H3406\"*," + }, + { + "verseNum": 15, + "text": "Zebadiah|strong=\"H2069\"*, Arad|strong=\"H6166\"*, Eder|strong=\"H5738\"*," + }, + { + "verseNum": 16, + "text": "Michael|strong=\"H4317\"*, Ishpah|strong=\"H3472\"*, Joha|strong=\"H3109\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Beriah|strong=\"H1283\"*," + }, + { + "verseNum": 17, + "text": "Zebadiah|strong=\"H2069\"*, Meshullam|strong=\"H4918\"*, Hizki|strong=\"H2395\"*, Heber|strong=\"H2268\"*," + }, + { + "verseNum": 18, + "text": "Ishmerai|strong=\"H3461\"*, Izliah|strong=\"H3152\"*, Jobab|strong=\"H3103\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elpaal," + }, + { + "verseNum": 19, + "text": "Jakim|strong=\"H3356\"*, Zichri|strong=\"H2147\"*, Zabdi|strong=\"H2067\"*," + }, + { + "verseNum": 20, + "text": "Elienai, Zillethai|strong=\"H6769\"*, Eliel," + }, + { + "verseNum": 21, + "text": "Adaiah|strong=\"H5718\"*, Beraiah|strong=\"H1256\"*, Shimrath|strong=\"H8119\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*," + }, + { + "verseNum": 22, + "text": "Ishpan|strong=\"H3473\"*, Eber|strong=\"H5677\"*, Eliel," + }, + { + "verseNum": 23, + "text": "Abdon|strong=\"H5658\"*, Zichri|strong=\"H2147\"*, Hanan|strong=\"H2605\"*," + }, + { + "verseNum": 24, + "text": "Hananiah|strong=\"H2608\"*, Elam|strong=\"H5867\"*, Anthothijah|strong=\"H6070\"*," + }, + { + "verseNum": 25, + "text": "Iphdeiah|strong=\"H3301\"*, Penuel|strong=\"H6439\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shashak|strong=\"H8349\"*," + }, + { + "verseNum": 26, + "text": "Shamsherai|strong=\"H8125\"*, Shehariah|strong=\"H7841\"*, Athaliah|strong=\"H6271\"*," + }, + { + "verseNum": 27, + "text": "Jaareshiah|strong=\"H3298\"*, Elijah, Zichri|strong=\"H2147\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*." + }, + { + "verseNum": 28, + "text": "These were|strong=\"H7218\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households throughout their|strong=\"H3427\"* generations|strong=\"H8435\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*. These lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3427\"* father of|strong=\"H3427\"* Gibeon|strong=\"H1391\"*, whose|strong=\"H8034\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* Gibeon|strong=\"H1391\"*" + }, + { + "verseNum": 30, + "text": "with|strong=\"H1121\"* his|strong=\"H7027\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* Abdon|strong=\"H5658\"*, Zur|strong=\"H6698\"*, Kish|strong=\"H7027\"*, Baal|strong=\"H1168\"*, Nadab|strong=\"H5070\"*," + }, + { + "verseNum": 31, + "text": "Gedor|strong=\"H1446\"*, Ahio, Zecher|strong=\"H2144\"*," + }, + { + "verseNum": 32, + "text": "and|strong=\"H3389\"* Mikloth|strong=\"H4732\"*, who|strong=\"H3427\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* Shimeah|strong=\"H8039\"*. They|strong=\"H1992\"* also|strong=\"H3205\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* their|strong=\"H1992\"* families in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, near|strong=\"H5973\"* their|strong=\"H1992\"* relatives." + }, + { + "verseNum": 33, + "text": "Ner|strong=\"H5369\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Kish|strong=\"H7027\"*. Kish|strong=\"H7027\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Saul|strong=\"H7586\"*. Saul|strong=\"H7586\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3083\"*, Malchishua, Abinadab, and|strong=\"H7586\"* Eshbaal." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* was|strong=\"H1121\"* Merib-baal|strong=\"H4807\"*. Merib-baal|strong=\"H4807\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Pithon|strong=\"H6377\"*, Melech|strong=\"H4429\"*, Tarea|strong=\"H8390\"*, and|strong=\"H1121\"* Ahaz." + }, + { + "verseNum": 36, + "text": "Ahaz became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jehoaddah|strong=\"H3085\"*. Jehoaddah|strong=\"H3085\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Alemeth|strong=\"H5964\"*, Azmaveth|strong=\"H5820\"*, and|strong=\"H3205\"* Zimri|strong=\"H2174\"*. Zimri|strong=\"H2174\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Moza|strong=\"H4162\"*." + }, + { + "verseNum": 37, + "text": "Moza|strong=\"H4162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Binea|strong=\"H1150\"*. Raphah was|strong=\"H1121\"* his|strong=\"H3205\"* son|strong=\"H1121\"*, Eleasah his|strong=\"H3205\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Azel his|strong=\"H3205\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 38, + "text": "Azel had|strong=\"H1121\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*, whose|strong=\"H1121\"* names|strong=\"H8034\"* are|strong=\"H1121\"* these|strong=\"H3605\"*: Azrikam|strong=\"H5840\"*, Bocheru|strong=\"H1074\"*, Ishmael|strong=\"H3458\"*, Sheariah|strong=\"H8187\"*, Obadiah|strong=\"H5662\"*, and|strong=\"H1121\"* Hanan|strong=\"H2605\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azel." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eshek|strong=\"H6232\"* his|strong=\"H6232\"* brother: Ulam his|strong=\"H6232\"* firstborn|strong=\"H1060\"*, Jeush|strong=\"H3266\"* the|strong=\"H1121\"* second|strong=\"H8145\"*, and|strong=\"H1121\"* Eliphelet the|strong=\"H1121\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ulam were|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, archers|strong=\"H7198\"*, and|strong=\"H3967\"* had|strong=\"H1961\"* many|strong=\"H7235\"* sons|strong=\"H1121\"*, and|strong=\"H3967\"* grandsons|strong=\"H1121\"*, one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1961\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* listed|strong=\"H3187\"* by|strong=\"H5921\"* genealogies|strong=\"H3187\"*; and|strong=\"H3063\"* behold|strong=\"H2009\"*,+ 9:1 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. Judah|strong=\"H3063\"* was|strong=\"H3478\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H3478\"* Babylon for|strong=\"H5921\"* their|strong=\"H3605\"* disobedience." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H3478\"* the|strong=\"H3548\"* first|strong=\"H7223\"* inhabitants|strong=\"H3427\"* who|strong=\"H3548\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3427\"* possessions in|strong=\"H3427\"* their|strong=\"H3427\"* cities|strong=\"H5892\"* were|strong=\"H3478\"* Israel|strong=\"H3478\"*, the|strong=\"H3548\"* priests|strong=\"H3548\"*, the|strong=\"H3548\"* Levites|strong=\"H3881\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, there|strong=\"H3427\"* lived|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*:" + }, + { + "verseNum": 4, + "text": "Uthai|strong=\"H5793\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ammihud|strong=\"H5989\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imri, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Shilonites|strong=\"H7888\"*: Asaiah|strong=\"H6222\"* the|strong=\"H4480\"* firstborn|strong=\"H1060\"* and|strong=\"H1121\"* his|strong=\"H4480\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 6, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"*: Jeuel|strong=\"H3262\"* and|strong=\"H3967\"* their|strong=\"H4480\"* brothers|strong=\"H1121\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Sallu|strong=\"H5543\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hodaviah|strong=\"H1938\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hassenuah|strong=\"H5574\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* Ibneiah|strong=\"H2997\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, and|strong=\"H1121\"* Elah the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michri|strong=\"H4381\"*; and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Reuel|strong=\"H7467\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ibnijah|strong=\"H2998\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H3967\"* their|strong=\"H3605\"* brothers, according to|strong=\"H1004\"* their|strong=\"H3605\"* generations|strong=\"H8435\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* fifty-six. All|strong=\"H3605\"* these|strong=\"H3605\"* men|strong=\"H7218\"* were|strong=\"H7218\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"* by|strong=\"H3605\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H4480\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*: Jedaiah|strong=\"H3048\"*, Jehoiarib|strong=\"H3080\"*, Jachin|strong=\"H3199\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H1121\"* Azariah|strong=\"H5838\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, the|strong=\"H6659\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H1121\"* Adaiah|strong=\"H5718\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*; and|strong=\"H1121\"* Maasai|strong=\"H4640\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adiel|strong=\"H5717\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jahzerah|strong=\"H3170\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemith|strong=\"H4921\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* their|strong=\"H4399\"* brothers, heads|strong=\"H7218\"* of|strong=\"H1004\"* their|strong=\"H4399\"* fathers’ houses|strong=\"H1004\"*, one|strong=\"H1368\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*; they|strong=\"H4399\"* were|strong=\"H2428\"* very|strong=\"H2428\"* able|strong=\"H2428\"* men|strong=\"H1368\"* for|strong=\"H1004\"* the|strong=\"H1004\"* work|strong=\"H4399\"* of|strong=\"H1004\"* the|strong=\"H1004\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasshub|strong=\"H2815\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H1121\"* Bakbakkar|strong=\"H1230\"*, Heresh|strong=\"H2792\"*, Galal|strong=\"H1559\"*, and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica|strong=\"H4316\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1121\"* Obadiah|strong=\"H5662\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Galal|strong=\"H1559\"*, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*; and|strong=\"H1121\"* Berechiah|strong=\"H1296\"* the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asa, the|strong=\"H8098\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elkanah, who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8098\"* villages|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H8098\"* Netophathites|strong=\"H5200\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7967\"* gatekeepers|strong=\"H7778\"*: Shallum|strong=\"H7967\"*, Akkub|strong=\"H6126\"*, Talmon|strong=\"H2929\"*, Ahiman, and|strong=\"H7218\"* their brothers (Shallum|strong=\"H7967\"* was|strong=\"H7218\"* the|strong=\"H7967\"* chief|strong=\"H7218\"*)," + }, + { + "verseNum": 18, + "text": "who|strong=\"H1121\"* previously served in|strong=\"H4428\"* the|strong=\"H5704\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* eastward|strong=\"H4217\"*. They|strong=\"H1992\"* were|strong=\"H1121\"* the|strong=\"H5704\"* gatekeepers|strong=\"H7778\"* for|strong=\"H5704\"* the|strong=\"H5704\"* camp|strong=\"H4264\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 19, + "text": "Shallum|strong=\"H7967\"* was|strong=\"H3068\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kore|strong=\"H6981\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ebiasaph, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Korah|strong=\"H7141\"*, and|strong=\"H1121\"* his|strong=\"H8104\"* brothers|strong=\"H1121\"*, of|strong=\"H1121\"* his|strong=\"H8104\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"*, the|strong=\"H5921\"* Korahites|strong=\"H7145\"*, were|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H5921\"* service|strong=\"H5656\"*, keepers|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thresholds|strong=\"H5592\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tent. Their|strong=\"H3068\"* fathers had|strong=\"H3068\"* been|strong=\"H3068\"* over|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s camp|strong=\"H4264\"*, keepers|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H5921\"* entry|strong=\"H3996\"*." + }, + { + "verseNum": 20, + "text": "Phinehas|strong=\"H6372\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar was|strong=\"H3068\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* time|strong=\"H6440\"* past|strong=\"H6440\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 21, + "text": "Zechariah|strong=\"H2148\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshelemiah|strong=\"H4920\"* was|strong=\"H1121\"* gatekeeper|strong=\"H7778\"* of|strong=\"H1121\"* the|strong=\"H1121\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*." + }, + { + "verseNum": 22, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H1992\"* chosen|strong=\"H1305\"* to|strong=\"H1732\"* be|strong=\"H1732\"* gatekeepers|strong=\"H7778\"* in|strong=\"H1732\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"* were|strong=\"H1992\"* two|strong=\"H8147\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*. These|strong=\"H1992\"* were|strong=\"H1992\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* in|strong=\"H1732\"* their|strong=\"H3605\"* villages|strong=\"H2691\"*, whom|strong=\"H1992\"* David|strong=\"H1732\"* and|strong=\"H3967\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* seer|strong=\"H7200\"* ordained|strong=\"H3245\"* in|strong=\"H1732\"* their|strong=\"H3605\"* office of|strong=\"H3605\"* trust." + }, + { + "verseNum": 23, + "text": "So|strong=\"H1992\"* they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"* had|strong=\"H3068\"* the|strong=\"H5921\"* oversight of|strong=\"H1121\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5921\"* tent, as|strong=\"H3068\"* guards|strong=\"H4931\"*." + }, + { + "verseNum": 24, + "text": "On|strong=\"H1961\"* the|strong=\"H1961\"* four sides|strong=\"H7307\"* were|strong=\"H1961\"* the|strong=\"H1961\"* gatekeepers|strong=\"H7778\"*, toward the|strong=\"H1961\"* east|strong=\"H4217\"*, west|strong=\"H3220\"*, north|strong=\"H6828\"*, and|strong=\"H3220\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 25, + "text": "Their|strong=\"H3117\"* brothers, in|strong=\"H3117\"* their|strong=\"H3117\"* villages|strong=\"H2691\"*, were|strong=\"H3117\"* to|strong=\"H6256\"* come in|strong=\"H3117\"* every|strong=\"H3117\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* from|strong=\"H3117\"* time|strong=\"H6256\"* to|strong=\"H6256\"* time|strong=\"H6256\"* to|strong=\"H6256\"* be|strong=\"H3117\"* with|strong=\"H5973\"* them|strong=\"H3117\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* the|strong=\"H5921\"* four chief|strong=\"H1368\"* gatekeepers|strong=\"H7778\"*, who|strong=\"H1992\"* were|strong=\"H1961\"* Levites|strong=\"H3881\"*, were|strong=\"H1961\"* in|strong=\"H5921\"* an|strong=\"H1961\"* office of|strong=\"H1004\"* trust, and|strong=\"H1004\"* were|strong=\"H1961\"* over|strong=\"H5921\"* the|strong=\"H5921\"* rooms|strong=\"H3957\"* and|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries in|strong=\"H5921\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H1992\"* stayed|strong=\"H3885\"* around|strong=\"H5439\"* God’s house|strong=\"H1004\"*, because|strong=\"H3588\"* that|strong=\"H3588\"* was|strong=\"H1004\"* their|strong=\"H1992\"* duty|strong=\"H4931\"*; and|strong=\"H1004\"* it|strong=\"H5921\"* was|strong=\"H1004\"* their|strong=\"H1992\"* duty|strong=\"H4931\"* to|strong=\"H5921\"* open it|strong=\"H5921\"* morning|strong=\"H1242\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 28, + "text": "Certain of|strong=\"H3627\"* them|strong=\"H1992\"* were|strong=\"H1992\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3627\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* service|strong=\"H5656\"*, for|strong=\"H3588\"* these|strong=\"H1992\"* were|strong=\"H1992\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* by|strong=\"H5921\"* count|strong=\"H4557\"*, and|strong=\"H3318\"* these|strong=\"H1992\"* were|strong=\"H1992\"* taken|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H5921\"* count|strong=\"H4557\"*." + }, + { + "verseNum": 29, + "text": "Some|strong=\"H1992\"* of|strong=\"H3627\"* them|strong=\"H1992\"* also|strong=\"H1992\"* were|strong=\"H1992\"* appointed|strong=\"H4487\"* over|strong=\"H5921\"* the|strong=\"H3605\"* furniture|strong=\"H3627\"*, and|strong=\"H8081\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*, over|strong=\"H5921\"* the|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*, the|strong=\"H3605\"* wine|strong=\"H3196\"*, the|strong=\"H3605\"* oil|strong=\"H8081\"*, the|strong=\"H3605\"* frankincense|strong=\"H3828\"*, and|strong=\"H8081\"* the|strong=\"H3605\"* spices|strong=\"H1314\"*." + }, + { + "verseNum": 30, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"* prepared|strong=\"H7543\"* the|strong=\"H4480\"* mixing|strong=\"H4842\"* of|strong=\"H1121\"* the|strong=\"H4480\"* spices|strong=\"H1314\"*." + }, + { + "verseNum": 31, + "text": "Mattithiah|strong=\"H4993\"*, one|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5921\"* firstborn|strong=\"H1060\"* of|strong=\"H4480\"* Shallum|strong=\"H7967\"* the|strong=\"H5921\"* Korahite|strong=\"H7145\"*, had|strong=\"H1931\"* the|strong=\"H5921\"* office of|strong=\"H4480\"* trust over|strong=\"H5921\"* the|strong=\"H5921\"* things|strong=\"H4639\"* that|strong=\"H1931\"* were|strong=\"H3881\"* baked|strong=\"H2281\"* in|strong=\"H5921\"* pans|strong=\"H2281\"*." + }, + { + "verseNum": 32, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Kohathites|strong=\"H6956\"*, were|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* show bread|strong=\"H3899\"*, to|strong=\"H5921\"* prepare|strong=\"H3559\"* it|strong=\"H5921\"* every|strong=\"H7676\"* Sabbath|strong=\"H7676\"*." + }, + { + "verseNum": 33, + "text": "These|strong=\"H3881\"* are|strong=\"H3915\"* the|strong=\"H5921\"* singers|strong=\"H7891\"*, heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households|strong=\"H3881\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H3881\"* lived in|strong=\"H5921\"* the|strong=\"H5921\"* rooms|strong=\"H3957\"* and|strong=\"H7218\"* were|strong=\"H3881\"* free from|strong=\"H5921\"* other service|strong=\"H4399\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3881\"* employed in|strong=\"H5921\"* their|strong=\"H5921\"* work|strong=\"H4399\"* day|strong=\"H3119\"* and|strong=\"H7218\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 34, + "text": "These|strong=\"H3881\"* were|strong=\"H3881\"* heads|strong=\"H7218\"* of|strong=\"H3427\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3427\"* the|strong=\"H3427\"* Levites|strong=\"H3881\"*, throughout their|strong=\"H3427\"* generations|strong=\"H8435\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*. They|strong=\"H3389\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 35, + "text": "Jeiel|strong=\"H3273\"* the|strong=\"H3427\"* father of|strong=\"H3427\"* Gibeon|strong=\"H1391\"*, whose|strong=\"H8034\"* wife’s name|strong=\"H8034\"* was|strong=\"H8034\"* Maacah|strong=\"H4601\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 36, + "text": "His|strong=\"H7027\"* firstborn|strong=\"H1060\"* son|strong=\"H1121\"* was|strong=\"H1121\"* Abdon|strong=\"H5658\"*, then|strong=\"H1121\"* Zur|strong=\"H6698\"*, Kish|strong=\"H7027\"*, Baal|strong=\"H1168\"*, Ner|strong=\"H5369\"*, Nadab|strong=\"H5070\"*," + }, + { + "verseNum": 37, + "text": "Gedor|strong=\"H1446\"*, Ahio, Zechariah|strong=\"H2148\"*, and|strong=\"H2148\"* Mikloth|strong=\"H4732\"*." + }, + { + "verseNum": 38, + "text": "Mikloth|strong=\"H4732\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3427\"* Shimeam|strong=\"H8043\"*. They|strong=\"H1992\"* also|strong=\"H3205\"* lived|strong=\"H3427\"* with|strong=\"H5973\"* their|strong=\"H1992\"* relatives in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, near|strong=\"H5973\"* their|strong=\"H1992\"* relatives." + }, + { + "verseNum": 39, + "text": "Ner|strong=\"H5369\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Kish|strong=\"H7027\"*. Kish|strong=\"H7027\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Saul|strong=\"H7586\"*. Saul|strong=\"H7586\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3083\"*, Malchishua, Abinadab, and|strong=\"H7586\"* Eshbaal." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3205\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3083\"* was|strong=\"H1121\"* Merib-baal|strong=\"H4807\"*. Merib-baal|strong=\"H4807\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Pithon|strong=\"H6377\"*, Melech|strong=\"H4429\"*, Tahrea|strong=\"H8475\"*, and|strong=\"H1121\"* Ahaz." + }, + { + "verseNum": 42, + "text": "Ahaz became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jarah|strong=\"H3294\"*. Jarah|strong=\"H3294\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Alemeth|strong=\"H5964\"*, Azmaveth|strong=\"H5820\"*, and|strong=\"H3205\"* Zimri|strong=\"H2174\"*. Zimri|strong=\"H2174\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Moza|strong=\"H4162\"*." + }, + { + "verseNum": 43, + "text": "Moza|strong=\"H4162\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H1121\"* Binea|strong=\"H1150\"*, Rephaiah|strong=\"H7509\"* his|strong=\"H3205\"* son|strong=\"H1121\"*, Eleasah his|strong=\"H3205\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Azel his|strong=\"H3205\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 44, + "text": "Azel had|strong=\"H1121\"* six|strong=\"H8337\"* sons|strong=\"H1121\"*, whose|strong=\"H1121\"* names|strong=\"H8034\"* are|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, Bocheru|strong=\"H1074\"*, Ishmael|strong=\"H3458\"*, Sheariah|strong=\"H8187\"*, Obadiah|strong=\"H5662\"*, and|strong=\"H1121\"* Hanan|strong=\"H2605\"*. These were|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azel." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* the|strong=\"H6440\"* men|strong=\"H3478\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*, and|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5221\"* Philistines|strong=\"H6430\"* followed|strong=\"H6430\"* hard|strong=\"H1692\"* after|strong=\"H6430\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* after|strong=\"H6430\"* his|strong=\"H5221\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* killed|strong=\"H5221\"* Jonathan|strong=\"H3129\"*, Abinadab, and|strong=\"H1121\"* Malchishua, the|strong=\"H5221\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* battle|strong=\"H4421\"* went|strong=\"H7586\"* hard against|strong=\"H5921\"* Saul|strong=\"H7586\"*, and|strong=\"H7586\"* the|strong=\"H5921\"* archers|strong=\"H3384\"* overtook|strong=\"H4672\"* him|strong=\"H5921\"*; and|strong=\"H7586\"* he|strong=\"H4480\"* was|strong=\"H7586\"* distressed by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4480\"* the|strong=\"H5921\"* archers|strong=\"H3384\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3947\"* Saul|strong=\"H7586\"* said to|strong=\"H5921\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"*, “Draw|strong=\"H8025\"* your|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* thrust|strong=\"H1856\"* me|strong=\"H5921\"* through|strong=\"H1856\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, lest|strong=\"H6435\"* these|strong=\"H3947\"* uncircumcised|strong=\"H6189\"* come|strong=\"H5307\"* and|strong=\"H2719\"* abuse|strong=\"H5953\"* me|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* his|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* was|strong=\"H7586\"* dead|strong=\"H4191\"*, he|strong=\"H1931\"* likewise|strong=\"H1571\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* his|strong=\"H5375\"* sword|strong=\"H2719\"* and|strong=\"H2719\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H4191\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* with|strong=\"H1004\"* his|strong=\"H3605\"* three|strong=\"H7969\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* all|strong=\"H3605\"* his|strong=\"H3605\"* house|strong=\"H1004\"* died|strong=\"H4191\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H3427\"* the|strong=\"H3605\"* valley|strong=\"H6010\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* fled|strong=\"H5127\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* dead|strong=\"H4191\"*, they|strong=\"H3588\"* abandoned|strong=\"H5800\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* fled|strong=\"H5127\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* came|strong=\"H3478\"* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "On|strong=\"H5307\"* the|strong=\"H1961\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, when|strong=\"H1961\"* the|strong=\"H1961\"* Philistines|strong=\"H6430\"* came|strong=\"H1961\"* to|strong=\"H1961\"* strip|strong=\"H6584\"* the|strong=\"H1961\"* slain|strong=\"H2491\"*, they|strong=\"H7586\"* found|strong=\"H4672\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* his|strong=\"H1961\"* sons|strong=\"H1121\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* Mount|strong=\"H2022\"* Gilboa|strong=\"H1533\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H5971\"* stripped|strong=\"H6584\"* him|strong=\"H7971\"* and|strong=\"H7971\"* took|strong=\"H5375\"* his|strong=\"H5375\"* head|strong=\"H7218\"* and|strong=\"H7971\"* his|strong=\"H5375\"* armor|strong=\"H3627\"*, then|strong=\"H7971\"* sent|strong=\"H7971\"* into|strong=\"H5375\"* the|strong=\"H5375\"* land of|strong=\"H3627\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"* all|strong=\"H5439\"* around|strong=\"H5439\"* to|strong=\"H7971\"* carry|strong=\"H5375\"* the|strong=\"H5375\"* news|strong=\"H1319\"* to|strong=\"H7971\"* their|strong=\"H5375\"* idols|strong=\"H6091\"* and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H7760\"* put|strong=\"H7760\"* his|strong=\"H7760\"* armor|strong=\"H3627\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* their|strong=\"H7760\"* gods, and|strong=\"H1004\"* fastened|strong=\"H8628\"* his|strong=\"H7760\"* head|strong=\"H1538\"* in|strong=\"H1004\"* the|strong=\"H7760\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Dagon|strong=\"H1712\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* all|strong=\"H3605\"* Jabesh|strong=\"H3003\"* Gilead|strong=\"H1568\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* had|strong=\"H7586\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Saul|strong=\"H7586\"*," + }, + { + "verseNum": 12, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* took|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H3605\"* body|strong=\"H6106\"* of|strong=\"H1121\"* Saul|strong=\"H7586\"* and|strong=\"H1121\"* the|strong=\"H3605\"* bodies|strong=\"H1480\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* brought|strong=\"H5375\"* them|strong=\"H5375\"* to|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H1121\"* buried|strong=\"H6912\"* their|strong=\"H3605\"* bones|strong=\"H6106\"* under|strong=\"H8478\"* the|strong=\"H3605\"* oak in|strong=\"H3117\"* Jabesh|strong=\"H3003\"*, and|strong=\"H1121\"* fasted|strong=\"H6684\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3808\"* Saul|strong=\"H7586\"* died|strong=\"H4191\"* for|strong=\"H5921\"* his|strong=\"H8104\"* trespass|strong=\"H4604\"* which|strong=\"H3068\"* he|strong=\"H3068\"* committed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* didn’t keep|strong=\"H8104\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* because|strong=\"H5921\"* he|strong=\"H3068\"* asked|strong=\"H7592\"* counsel|strong=\"H1697\"* of|strong=\"H3068\"* one|strong=\"H3808\"* who|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* familiar spirit, to|strong=\"H4191\"* inquire|strong=\"H1875\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* didn’t inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H1732\"* he|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*, and|strong=\"H1121\"* turned|strong=\"H5437\"* the|strong=\"H3068\"* kingdom|strong=\"H4410\"* over|strong=\"H3068\"* to|strong=\"H4191\"* David|strong=\"H1732\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* to|strong=\"H3478\"* David|strong=\"H1732\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*, saying, “Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H6106\"* your|strong=\"H3605\"* bone|strong=\"H6106\"* and|strong=\"H3478\"* your|strong=\"H3605\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* times|strong=\"H8543\"* past|strong=\"H8032\"*, even|strong=\"H1571\"* when|strong=\"H1961\"* Saul|strong=\"H7586\"* was|strong=\"H3068\"* king|strong=\"H4428\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H5971\"* led|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*. Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shepherd|strong=\"H7462\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H3478\"* Hebron|strong=\"H2275\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Hebron|strong=\"H2275\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* anointed|strong=\"H4886\"* David|strong=\"H1732\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H3027\"* Samuel|strong=\"H8050\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* (also|strong=\"H1732\"* called|strong=\"H8033\"* Jebus|strong=\"H2982\"*); and|strong=\"H3478\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land, were|strong=\"H3478\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3920\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jebus|strong=\"H2982\"* said to|strong=\"H1732\"* David|strong=\"H1732\"*, “You|strong=\"H3808\"* will|strong=\"H5892\"* not|strong=\"H3808\"* come|strong=\"H5892\"* in|strong=\"H3427\"* here|strong=\"H2008\"*!” Nevertheless David|strong=\"H1732\"* took|strong=\"H3920\"* the|strong=\"H3920\"* stronghold|strong=\"H4686\"* of|strong=\"H3427\"* Zion|strong=\"H6726\"*. The|strong=\"H3920\"* same|strong=\"H1931\"* is|strong=\"H1931\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* had|strong=\"H1961\"* said, “Whoever|strong=\"H3605\"* strikes|strong=\"H5221\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"* first|strong=\"H7223\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* chief|strong=\"H7218\"* and|strong=\"H1121\"* captain|strong=\"H8269\"*.” Joab|strong=\"H3097\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* went|strong=\"H5927\"* up|strong=\"H5927\"* first|strong=\"H7223\"*, and|strong=\"H1121\"* was|strong=\"H1961\"* made|strong=\"H1961\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* stronghold|strong=\"H4679\"*; therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* it|strong=\"H7121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* built|strong=\"H1129\"* the|strong=\"H4480\"* city|strong=\"H5892\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, from|strong=\"H4480\"* Millo|strong=\"H4407\"* even|strong=\"H5704\"* around|strong=\"H5439\"*; and|strong=\"H5892\"* Joab|strong=\"H3097\"* repaired|strong=\"H1129\"* the|strong=\"H4480\"* rest|strong=\"H7605\"* of|strong=\"H5892\"* the|strong=\"H4480\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 9, + "text": "David|strong=\"H1732\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*, for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3478\"* these|strong=\"H3605\"* are|strong=\"H3478\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H3068\"*, who|strong=\"H3605\"* showed themselves|strong=\"H2388\"* strong|strong=\"H2388\"* with|strong=\"H5973\"* him|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, together|strong=\"H5973\"* with|strong=\"H5973\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H5921\"* king|strong=\"H4427\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* whom|strong=\"H1368\"* David|strong=\"H1732\"* had|strong=\"H1732\"*: Jashobeam|strong=\"H3434\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* Hachmonite|strong=\"H2453\"*, the|strong=\"H5921\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*; he|strong=\"H1931\"* lifted|strong=\"H1732\"* up|strong=\"H5782\"* his|strong=\"H1732\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2491\"* them|strong=\"H5921\"* at|strong=\"H5921\"* one|strong=\"H1931\"* time|strong=\"H6471\"*." + }, + { + "verseNum": 12, + "text": "After him|strong=\"H1931\"* was|strong=\"H1931\"* Eleazar the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"*, the|strong=\"H1121\"* Ahohite, who|strong=\"H1931\"* was|strong=\"H1931\"* one|strong=\"H1931\"* of|strong=\"H1121\"* the|strong=\"H1121\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* was|strong=\"H1961\"* with|strong=\"H5973\"* David|strong=\"H1732\"* at|strong=\"H4421\"* Pasdammim|strong=\"H6450\"*, and|strong=\"H5971\"* there|strong=\"H8033\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"* were|strong=\"H1961\"* gathered|strong=\"H6430\"* together|strong=\"H5973\"* to|strong=\"H1961\"* battle|strong=\"H4421\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H1961\"* a|strong=\"H3068\"* plot|strong=\"H2513\"* of|strong=\"H6440\"* ground|strong=\"H7704\"* full|strong=\"H4392\"* of|strong=\"H6440\"* barley|strong=\"H8184\"*; and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* stood|strong=\"H3320\"* in|strong=\"H3068\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5221\"* plot|strong=\"H2513\"*, defended|strong=\"H5337\"* it|strong=\"H8432\"*, and|strong=\"H3068\"* killed|strong=\"H5221\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* them|strong=\"H5221\"* by|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* victory|strong=\"H8668\"*." + }, + { + "verseNum": 15, + "text": "Three|strong=\"H7969\"* of|strong=\"H7218\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* chief|strong=\"H7218\"* men|strong=\"H7218\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* to|strong=\"H3381\"* David|strong=\"H1732\"*, into|strong=\"H3381\"* the|strong=\"H5921\"* cave|strong=\"H4631\"* of|strong=\"H7218\"* Adullam|strong=\"H5725\"*; and|strong=\"H7970\"* the|strong=\"H5921\"* army|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* were|strong=\"H6430\"* encamped|strong=\"H2583\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H6010\"* of|strong=\"H7218\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* then|strong=\"H1732\"* in|strong=\"H1035\"* the|strong=\"H1732\"* stronghold|strong=\"H4686\"*, and|strong=\"H1732\"* the|strong=\"H1732\"* garrison|strong=\"H5333\"* of|strong=\"H5333\"* the|strong=\"H1732\"* Philistines|strong=\"H6430\"* was|strong=\"H1732\"* in|strong=\"H1035\"* Bethlehem|strong=\"H1035\"* at|strong=\"H1732\"* that|strong=\"H1732\"* time." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* longed, and|strong=\"H1732\"* said, “Oh|strong=\"H4310\"*, that|strong=\"H4325\"* someone|strong=\"H4310\"* would|strong=\"H4310\"* give|strong=\"H8248\"* me|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H1732\"* drink|strong=\"H8248\"* from|strong=\"H4325\"* the|strong=\"H1732\"* well of|strong=\"H8179\"* Bethlehem|strong=\"H1035\"*, which|strong=\"H4310\"* is|strong=\"H4310\"* by|strong=\"H4325\"* the|strong=\"H1732\"* gate|strong=\"H8179\"*!”" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5375\"* three|strong=\"H7969\"* broke|strong=\"H1234\"* through|strong=\"H1234\"* the|strong=\"H5375\"* army|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H5375\"* Philistines|strong=\"H6430\"*, and|strong=\"H3068\"* drew|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H5258\"* of|strong=\"H3068\"* the|strong=\"H5375\"* well of|strong=\"H3068\"* Bethlehem|strong=\"H1035\"* that|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5375\"* gate|strong=\"H8179\"*, took|strong=\"H5375\"* it|strong=\"H5375\"*, and|strong=\"H3068\"* brought|strong=\"H5375\"* it|strong=\"H5375\"* to|strong=\"H3068\"* David|strong=\"H1732\"*; but|strong=\"H3808\"* David|strong=\"H1732\"* would|strong=\"H3068\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* any|strong=\"H5375\"* of|strong=\"H3068\"* it|strong=\"H5375\"*, but|strong=\"H3808\"* poured|strong=\"H5258\"* it|strong=\"H5375\"* out|strong=\"H5258\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1818\"* said, “My|strong=\"H6213\"* God|strong=\"H3808\"* forbid|strong=\"H2486\"* me|strong=\"H5315\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2063\"*! Shall|strong=\"H5315\"* I|strong=\"H3588\"* drink|strong=\"H8354\"* the|strong=\"H3588\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* these|strong=\"H2063\"* men|strong=\"H1368\"* who|strong=\"H5315\"* have|strong=\"H3588\"* put|strong=\"H6213\"* their|strong=\"H3588\"* lives|strong=\"H5315\"* in|strong=\"H6213\"* jeopardy|strong=\"H5315\"*?” For|strong=\"H3588\"* they|strong=\"H3588\"* risked their|strong=\"H3588\"* lives|strong=\"H5315\"* to|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H3588\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H6213\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* it|strong=\"H3588\"*. The|strong=\"H3588\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* did|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7969\"*." + }, + { + "verseNum": 20, + "text": "Abishai, the|strong=\"H5921\"* brother of|strong=\"H7218\"* Joab|strong=\"H3097\"*, was|strong=\"H8034\"* chief|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* three|strong=\"H7969\"*; for|strong=\"H5921\"* he|strong=\"H1931\"* lifted|strong=\"H5782\"* up|strong=\"H5782\"* his|strong=\"H5921\"* spear|strong=\"H2595\"* against|strong=\"H5921\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* killed|strong=\"H2490\"* them|strong=\"H5921\"*, and|strong=\"H3967\"* had|strong=\"H1961\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H8269\"* the|strong=\"H4480\"* three|strong=\"H7969\"*, he|strong=\"H5704\"* was|strong=\"H1961\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H4480\"* two|strong=\"H8147\"*, and|strong=\"H8147\"* was|strong=\"H1961\"* made|strong=\"H3513\"* their|strong=\"H1961\"* captain|strong=\"H8269\"*; however he|strong=\"H5704\"* wasn’t included|strong=\"H1961\"* in|strong=\"H3808\"* the|strong=\"H4480\"* three|strong=\"H7969\"*." + }, + { + "verseNum": 22, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* valiant|strong=\"H2428\"* man|strong=\"H1121\"* of|strong=\"H1121\"* Kabzeel|strong=\"H6909\"*, who|strong=\"H1931\"* had|strong=\"H1121\"* done|strong=\"H6467\"* mighty|strong=\"H7227\"* deeds|strong=\"H6467\"*, killed|strong=\"H5221\"* the|strong=\"H5221\"* two|strong=\"H8147\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ariel of|strong=\"H1121\"* Moab|strong=\"H4124\"*. He|strong=\"H1931\"* also|strong=\"H1121\"* went|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* a|strong=\"H3068\"* lion in|strong=\"H3117\"* the|strong=\"H5221\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* a|strong=\"H3068\"* pit on|strong=\"H3117\"* a|strong=\"H3068\"* snowy|strong=\"H7950\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* killed|strong=\"H2026\"* an|strong=\"H5221\"* Egyptian|strong=\"H4713\"*, a|strong=\"H3068\"* man of|strong=\"H3027\"* great stature|strong=\"H4060\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 11:23 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. Therefore this Egyptian was about 7 feet and 6 inches or 2.28 meters tall.* high. In|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"* was|strong=\"H1931\"* a|strong=\"H3068\"* spear|strong=\"H2595\"* like|strong=\"H3381\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*; and|strong=\"H3027\"* he|strong=\"H1931\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* him|strong=\"H5221\"* with|strong=\"H3381\"* a|strong=\"H3068\"* staff|strong=\"H7626\"*, plucked|strong=\"H1497\"* the|strong=\"H5221\"* spear|strong=\"H2595\"* out|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5221\"* Egyptian|strong=\"H4713\"*’s hand|strong=\"H3027\"*, and|strong=\"H3027\"* killed|strong=\"H2026\"* him|strong=\"H5221\"* with|strong=\"H3381\"* his|strong=\"H5221\"* own|strong=\"H3027\"* spear|strong=\"H2595\"*." + }, + { + "verseNum": 24, + "text": "Benaiah|strong=\"H1141\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* did|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H7969\"* and|strong=\"H1121\"* had|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* among|strong=\"H8034\"* the|strong=\"H6213\"* three|strong=\"H7969\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 25, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H1931\"* was|strong=\"H1732\"* more|strong=\"H4480\"* honorable|strong=\"H3513\"* than|strong=\"H4480\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*, but|strong=\"H3808\"* he|strong=\"H1931\"* didn’t attain to|strong=\"H5921\"* the|strong=\"H5921\"* three|strong=\"H7969\"*; and|strong=\"H7970\"* David|strong=\"H1732\"* set|strong=\"H7760\"* him|strong=\"H5921\"* over|strong=\"H5921\"* his|strong=\"H7760\"* guard|strong=\"H4928\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3097\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H3097\"* armies|strong=\"H2428\"* also|strong=\"H1121\"* include Asahel|strong=\"H6214\"* the|strong=\"H3097\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, Elhanan the|strong=\"H3097\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodo|strong=\"H1734\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*," + }, + { + "verseNum": 27, + "text": "Shammoth|strong=\"H8054\"* the|strong=\"H2503\"* Harorite|strong=\"H2033\"*, Helez|strong=\"H2503\"* the|strong=\"H2503\"* Pelonite|strong=\"H6397\"*," + }, + { + "verseNum": 28, + "text": "Ira|strong=\"H5896\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H1121\"* Tekoite|strong=\"H8621\"*, Abiezer the|strong=\"H1121\"* Anathothite|strong=\"H6069\"*," + }, + { + "verseNum": 29, + "text": "Sibbecai|strong=\"H5444\"* the|strong=\"H5444\"* Hushathite|strong=\"H2843\"*, Ilai|strong=\"H5866\"* the|strong=\"H5444\"* Ahohite," + }, + { + "verseNum": 30, + "text": "Maharai|strong=\"H4121\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*, Heled|strong=\"H2466\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baanah|strong=\"H1196\"* the|strong=\"H1121\"* Netophathite|strong=\"H5200\"*," + }, + { + "verseNum": 31, + "text": "Ithai the|strong=\"H1141\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ribai|strong=\"H7380\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"* of|strong=\"H1121\"* the|strong=\"H1141\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Benaiah|strong=\"H1141\"* the|strong=\"H1141\"* Pirathonite|strong=\"H6553\"*," + }, + { + "verseNum": 32, + "text": "Hurai|strong=\"H2360\"* of|strong=\"H5158\"* the brooks|strong=\"H5158\"* of|strong=\"H5158\"* Gaash|strong=\"H1608\"*, Abiel the Arbathite|strong=\"H6164\"*," + }, + { + "verseNum": 33, + "text": "Azmaveth|strong=\"H5820\"* the|strong=\"H5820\"* Baharumite, Eliahba the|strong=\"H5820\"* Shaalbonite|strong=\"H8170\"*," + }, + { + "verseNum": 34, + "text": "the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hashem|strong=\"H2044\"* the|strong=\"H1121\"* Gizonite|strong=\"H1493\"*, Jonathan|strong=\"H3129\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shagee|strong=\"H7681\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*," + }, + { + "verseNum": 35, + "text": "Ahiam the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Sacar|strong=\"H7940\"* the|strong=\"H1121\"* Hararite|strong=\"H2043\"*, Eliphal the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ur," + }, + { + "verseNum": 36, + "text": "Hepher|strong=\"H2660\"* the|strong=\"H2660\"* Mecherathite|strong=\"H4382\"*, Ahijah the|strong=\"H2660\"* Pelonite|strong=\"H6397\"*," + }, + { + "verseNum": 37, + "text": "Hezro|strong=\"H2695\"* the|strong=\"H1121\"* Carmelite|strong=\"H3761\"*, Naarai|strong=\"H5293\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ezbai," + }, + { + "verseNum": 38, + "text": "Joel|strong=\"H3100\"* the|strong=\"H5416\"* brother of|strong=\"H1121\"* Nathan|strong=\"H5416\"*, Mibhar|strong=\"H4006\"* the|strong=\"H5416\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hagri|strong=\"H1905\"*," + }, + { + "verseNum": 39, + "text": "Zelek|strong=\"H6768\"* the|strong=\"H5375\"* Ammonite|strong=\"H5984\"*, Naharai|strong=\"H5171\"* the|strong=\"H5375\"* Berothite|strong=\"H1307\"* (the|strong=\"H5375\"* armor|strong=\"H3627\"* bearer|strong=\"H5375\"* of|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H5375\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"*)," + }, + { + "verseNum": 40, + "text": "Ira|strong=\"H5896\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*, Gareb|strong=\"H1619\"* the|strong=\"H5896\"* Ithrite|strong=\"H3505\"*," + }, + { + "verseNum": 41, + "text": "Uriah the|strong=\"H1121\"* Hittite|strong=\"H2850\"*, Zabad|strong=\"H2066\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahlai," + }, + { + "verseNum": 42, + "text": "Adina|strong=\"H5721\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shiza|strong=\"H7877\"* the|strong=\"H5921\"* Reubenite|strong=\"H7206\"* (a|strong=\"H3068\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"*), and|strong=\"H1121\"* thirty|strong=\"H7970\"* with|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 43, + "text": "Hanan|strong=\"H2605\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*, Joshaphat|strong=\"H3146\"* the|strong=\"H1121\"* Mithnite|strong=\"H4981\"*," + }, + { + "verseNum": 44, + "text": "Uzzia|strong=\"H5814\"* the|strong=\"H1121\"* Ashterathite|strong=\"H6254\"*, Shama|strong=\"H8091\"* and|strong=\"H1121\"* Jeiel|strong=\"H3273\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hotham|strong=\"H2369\"* the|strong=\"H1121\"* Aroerite|strong=\"H6200\"*," + }, + { + "verseNum": 45, + "text": "Jediael|strong=\"H3043\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimri|strong=\"H8113\"*, and|strong=\"H1121\"* Joha|strong=\"H3109\"* his|strong=\"H3109\"* brother, the|strong=\"H1121\"* Tizite|strong=\"H8491\"*," + }, + { + "verseNum": 46, + "text": "Eliel the|strong=\"H1121\"* Mahavite|strong=\"H4233\"*, and|strong=\"H1121\"* Jeribai|strong=\"H3403\"*, and|strong=\"H1121\"* Joshaviah|strong=\"H3145\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elnaam, and|strong=\"H1121\"* Ithmah|strong=\"H3495\"* the|strong=\"H1121\"* Moabite|strong=\"H4125\"*," + }, + { + "verseNum": 47, + "text": "Eliel, Obed|strong=\"H5744\"*, and|strong=\"H5744\"* Jaasiel|strong=\"H3300\"* the|strong=\"H3300\"* Mezobaite|strong=\"H4677\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H1992\"* are|strong=\"H1992\"* those|strong=\"H1992\"* who|strong=\"H1121\"* came|strong=\"H7586\"* to|strong=\"H6440\"* David|strong=\"H1732\"* to|strong=\"H6440\"* Ziklag|strong=\"H6860\"* while|strong=\"H5750\"* he|strong=\"H1732\"* was|strong=\"H1732\"* a|strong=\"H3068\"* fugitive from|strong=\"H6440\"* Saul|strong=\"H7586\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*. They|strong=\"H1992\"* were|strong=\"H1121\"* among|strong=\"H1368\"* the|strong=\"H6440\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, his|strong=\"H1732\"* helpers|strong=\"H5826\"* in|strong=\"H4421\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H7586\"* were|strong=\"H1144\"* armed|strong=\"H5401\"* with|strong=\"H5401\"* bows|strong=\"H7198\"*, and|strong=\"H7586\"* could use both the|strong=\"H7586\"* right|strong=\"H3231\"* hand|strong=\"H3231\"* and|strong=\"H7586\"* the|strong=\"H7586\"* left|strong=\"H8041\"* in|strong=\"H7586\"* slinging stones and|strong=\"H7586\"* in|strong=\"H7586\"* shooting arrows|strong=\"H2671\"* from|strong=\"H3231\"* the|strong=\"H7586\"* bow|strong=\"H7198\"*. They|strong=\"H7586\"* were|strong=\"H1144\"* of|strong=\"H7198\"* Saul|strong=\"H7586\"*’s relatives of|strong=\"H7198\"* the|strong=\"H7586\"* tribe of|strong=\"H7198\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3058\"* chief|strong=\"H7218\"* was|strong=\"H1121\"* Ahiezer, then|strong=\"H1121\"* Joash|strong=\"H3101\"*, the|strong=\"H3058\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaah|strong=\"H8094\"* the|strong=\"H3058\"* Gibeathite|strong=\"H1395\"*; Jeziel|strong=\"H3149\"* and|strong=\"H1121\"* Pelet|strong=\"H6404\"*, the|strong=\"H3058\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Azmaveth|strong=\"H5820\"*; Beracah|strong=\"H1294\"*; Jehu|strong=\"H3058\"* the|strong=\"H3058\"* Anathothite|strong=\"H6069\"*;" + }, + { + "verseNum": 4, + "text": "Ishmaiah|strong=\"H3460\"* the|strong=\"H5921\"* Gibeonite|strong=\"H1393\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* among|strong=\"H5921\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* and|strong=\"H7970\"* a|strong=\"H3068\"* leader of|strong=\"H1368\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*; Jeremiah; Jahaziel; Johanan; Jozabad the|strong=\"H5921\"* Gederathite;" + }, + { + "verseNum": 5, + "text": "Eluzai; Jerimoth; Bealiah; Shemariah; Shephatiah the|strong=\"H3414\"* Haruphite;" + }, + { + "verseNum": 6, + "text": "Elkanah, Isshiah, Azarel, Joezer, and|strong=\"H3406\"* Jashobeam, the|strong=\"H8203\"* Korahites;" + }, + { + "verseNum": 7, + "text": "and Joelah and Zebadiah, the|strong=\"H3449\"* sons of Jeroham of Gedor." + }, + { + "verseNum": 8, + "text": "Some|strong=\"H4480\"* Gadites joined David in|strong=\"H1121\"* the|strong=\"H4480\"* stronghold in|strong=\"H1121\"* the|strong=\"H4480\"* wilderness, mighty|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor, men|strong=\"H1121\"* trained for|strong=\"H1121\"* war, who|strong=\"H1121\"* could handle shield and|strong=\"H1121\"* spear; whose|strong=\"H1121\"* faces were|strong=\"H1121\"* like|strong=\"H1121\"* the|strong=\"H4480\"* faces of|strong=\"H1121\"* lions, and|strong=\"H1121\"* they were|strong=\"H1121\"* as|strong=\"H1121\"* swift as|strong=\"H1121\"* the|strong=\"H4480\"* gazelles on|strong=\"H4480\"* the|strong=\"H4480\"* mountains:" + }, + { + "verseNum": 9, + "text": "Ezer the|strong=\"H6440\"* chief|strong=\"H1368\"*, Obadiah the|strong=\"H6440\"* second, Eliab the|strong=\"H6440\"* third," + }, + { + "verseNum": 10, + "text": "Mishmannah the|strong=\"H5662\"* fourth, Jeremiah the|strong=\"H5662\"* fifth," + }, + { + "verseNum": 11, + "text": "Attai the|strong=\"H3414\"* sixth, Eliel the|strong=\"H3414\"* seventh," + }, + { + "verseNum": 12, + "text": "Johanan the|strong=\"H6262\"* eighth, Elzabad the|strong=\"H6262\"* ninth," + }, + { + "verseNum": 13, + "text": "Jeremiah the|strong=\"H3076\"* tenth, and|strong=\"H3076\"* Machbannai the|strong=\"H3076\"* eleventh." + }, + { + "verseNum": 14, + "text": "These of|strong=\"H3414\"* the|strong=\"H3414\"* sons of|strong=\"H3414\"* Gad were captains of|strong=\"H3414\"* the|strong=\"H3414\"* army. He|strong=\"H3414\"* who was|strong=\"H3414\"* least was|strong=\"H3414\"* equal to|strong=\"H6224\"* one hundred, and|strong=\"H3414\"* the|strong=\"H3414\"* greatest to|strong=\"H6224\"* one thousand." + }, + { + "verseNum": 15, + "text": "These are|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* went|strong=\"H1121\"* over|strong=\"H7218\"* the|strong=\"H1121\"* Jordan in|strong=\"H1419\"* the|strong=\"H1121\"* first|strong=\"H1121\"* month, when|strong=\"H1121\"* it|strong=\"H7218\"* had|strong=\"H6635\"* overflowed all|strong=\"H1419\"* its banks; and|strong=\"H3967\"* they put to|strong=\"H1121\"* flight all|strong=\"H1419\"* who|strong=\"H1121\"* lived in|strong=\"H1419\"* the|strong=\"H1121\"* valleys, both toward|strong=\"H7218\"* the|strong=\"H1121\"* east and|strong=\"H3967\"* toward|strong=\"H7218\"* the|strong=\"H1121\"* west." + }, + { + "verseNum": 16, + "text": "Some|strong=\"H1992\"* of|strong=\"H6010\"* the|strong=\"H3605\"* children of|strong=\"H6010\"* Benjamin and|strong=\"H5674\"* Judah came|strong=\"H5674\"* to|strong=\"H5921\"* the|strong=\"H3605\"* stronghold to|strong=\"H5921\"* David." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* went|strong=\"H1732\"* out|strong=\"H4480\"* to|strong=\"H5704\"* meet|strong=\"H1121\"* them|strong=\"H4480\"*, and|strong=\"H1121\"* answered them|strong=\"H4480\"*, “If|strong=\"H1121\"* you|strong=\"H5704\"* have|strong=\"H1121\"* come|strong=\"H3063\"* peaceably to|strong=\"H5704\"* me|strong=\"H4480\"* to|strong=\"H5704\"* help|strong=\"H4480\"* me|strong=\"H4480\"*, my|strong=\"H1732\"* heart will|strong=\"H1121\"* be|strong=\"H1121\"* united with|strong=\"H1732\"* you|strong=\"H5704\"*; but if|strong=\"H1121\"* you|strong=\"H5704\"* have|strong=\"H1121\"* come|strong=\"H3063\"* to|strong=\"H5704\"* betray me|strong=\"H4480\"* to|strong=\"H5704\"* my|strong=\"H1732\"* adversaries, since|strong=\"H4480\"* there|strong=\"H4480\"* is|strong=\"H1121\"* no|strong=\"H4480\"* wrong in|strong=\"H1121\"* my|strong=\"H1732\"* hands, may|strong=\"H1121\"* the|strong=\"H4480\"* God of|strong=\"H1121\"* our|strong=\"H4480\"* fathers see this|strong=\"H1732\"* and|strong=\"H1121\"* rebuke it|strong=\"H5704\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6030\"* the|strong=\"H6440\"* Spirit came|strong=\"H1961\"* on|strong=\"H5921\"* Amasai, who|strong=\"H6862\"* was|strong=\"H1961\"* chief of|strong=\"H6440\"* the|strong=\"H6440\"* thirty, and|strong=\"H6030\"* he|strong=\"H1732\"* said|strong=\"H6030\"*, “We|strong=\"H7200\"* are|strong=\"H1961\"* yours, David|strong=\"H1732\"*, and|strong=\"H6030\"* on|strong=\"H5921\"* your|strong=\"H5921\"* side, you|strong=\"H6440\"* son of|strong=\"H6440\"* Jesse. Peace|strong=\"H7965\"*, peace|strong=\"H7965\"* be|strong=\"H1961\"* to|strong=\"H3318\"* you|strong=\"H6440\"*, and|strong=\"H6030\"* peace|strong=\"H7965\"* be|strong=\"H1961\"* to|strong=\"H3318\"* your|strong=\"H5921\"* helpers|strong=\"H5826\"*; for|strong=\"H5921\"* your|strong=\"H5921\"* God|strong=\"H3808\"* helps|strong=\"H5826\"* you|strong=\"H6440\"*.” Then|strong=\"H6030\"* David|strong=\"H1732\"* received|strong=\"H1961\"* them|strong=\"H5921\"* and|strong=\"H6030\"* made|strong=\"H1961\"* them|strong=\"H5921\"* captains of|strong=\"H6440\"* the|strong=\"H6440\"* band." + }, + { + "verseNum": 19, + "text": "Some of|strong=\"H1121\"* Manasseh also|strong=\"H1732\"* joined David|strong=\"H1732\"* when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3847\"* with|strong=\"H5973\"* the|strong=\"H3588\"* Philistines against|strong=\"H5973\"* Saul to|strong=\"H5414\"* battle, but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t help|strong=\"H5826\"* them|strong=\"H5414\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* lords of|strong=\"H1121\"* the|strong=\"H3588\"* Philistines sent|strong=\"H5414\"* him|strong=\"H5414\"* away|strong=\"H5973\"* after|strong=\"H3588\"* consultation, saying, “He|strong=\"H3588\"* will|strong=\"H1121\"* desert to|strong=\"H5414\"* his|strong=\"H5414\"* master|strong=\"H5414\"* Saul to|strong=\"H5414\"* the|strong=\"H3588\"* jeopardy of|strong=\"H1121\"* our|strong=\"H5414\"* heads|strong=\"H7218\"*.”" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3588\"* he|strong=\"H3588\"* went|strong=\"H1732\"* to|strong=\"H7971\"* Ziklag, some|strong=\"H4480\"* from|strong=\"H4480\"* Manasseh|strong=\"H4519\"* joined|strong=\"H5307\"* him|strong=\"H5921\"*: Adnah, Jozabad, Jediael, Michael, Jozabad, Elihu, and|strong=\"H7971\"* Zillethai, captains|strong=\"H7218\"* of|strong=\"H7218\"* thousands who|strong=\"H4421\"* were|strong=\"H6430\"* of|strong=\"H7218\"* Manasseh|strong=\"H4519\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* helped David against|strong=\"H5921\"* the|strong=\"H5921\"* band|strong=\"H7218\"* of|strong=\"H7218\"* raiders, for|strong=\"H5921\"* they|strong=\"H5921\"* were|strong=\"H7218\"* all|strong=\"H3212\"* mighty men|strong=\"H7218\"* of|strong=\"H7218\"* valor and|strong=\"H3212\"* were|strong=\"H7218\"* captains|strong=\"H7218\"* in|strong=\"H5921\"* the|strong=\"H5921\"* army." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* from|strong=\"H5921\"* day to|strong=\"H1961\"* day men|strong=\"H1368\"* came|strong=\"H1961\"* to|strong=\"H1961\"* David|strong=\"H1732\"* to|strong=\"H1961\"* help|strong=\"H5826\"* him|strong=\"H5921\"*, until|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1368\"* army|strong=\"H2428\"*, like|strong=\"H1961\"* God’s army|strong=\"H2428\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H1732\"* are|strong=\"H3117\"* the|strong=\"H5921\"* numbers of|strong=\"H3117\"* the|strong=\"H5921\"* heads of|strong=\"H3117\"* those|strong=\"H5921\"* who|strong=\"H3588\"* were|strong=\"H3117\"* armed for|strong=\"H3588\"* war, who|strong=\"H3588\"* came|strong=\"H1732\"* to|strong=\"H5704\"* David|strong=\"H1732\"* to|strong=\"H5704\"* Hebron to|strong=\"H5704\"* turn the|strong=\"H5921\"* kingdom of|strong=\"H3117\"* Saul to|strong=\"H5704\"* him|strong=\"H5921\"*, according|strong=\"H5921\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s word." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* children of|strong=\"H3068\"* Judah who|strong=\"H3068\"* bore shield and|strong=\"H3068\"* spear were|strong=\"H1732\"* six thousand eight hundred, armed|strong=\"H2502\"* for|strong=\"H5921\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H1121\"* the|strong=\"H5375\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Simeon, mighty|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor for|strong=\"H1121\"* the|strong=\"H5375\"* war|strong=\"H6635\"*: seven thousand one|strong=\"H1121\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 26, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi: four thousand six hundred|strong=\"H3967\"*." + }, + { + "verseNum": 27, + "text": "Jehoiada was|strong=\"H1121\"* the|strong=\"H4480\"* leader of|strong=\"H1121\"* the|strong=\"H4480\"* household of|strong=\"H1121\"* Aaron; and|strong=\"H3967\"* with|strong=\"H4480\"* him|strong=\"H4480\"* were|strong=\"H1121\"* three thousand seven hundred|strong=\"H3967\"*," + }, + { + "verseNum": 28, + "text": "and|strong=\"H3967\"* Zadok, a|strong=\"H3068\"* young man mighty|strong=\"H7969\"* of|strong=\"H5057\"* valor, and|strong=\"H3967\"* of|strong=\"H5057\"* his|strong=\"H5973\"* father’s house twenty-two captains|strong=\"H5057\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1004\"* the|strong=\"H6659\"* children|strong=\"H5288\"* of|strong=\"H1004\"* Benjamin, Saul’s relatives: three thousand, for|strong=\"H1004\"* until then, the|strong=\"H6659\"* greatest part of|strong=\"H1004\"* them|strong=\"H8147\"* had|strong=\"H8269\"* kept their|strong=\"H8147\"* allegiance to|strong=\"H1004\"* Saul’s house|strong=\"H1004\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim: twenty thousand eight hundred, mighty|strong=\"H7969\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor, famous men|strong=\"H1121\"* in|strong=\"H1004\"* their|strong=\"H8104\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* half-tribe of|strong=\"H1121\"* Manasseh: eighteen|strong=\"H8083\"* thousand, who|strong=\"H1121\"* were|strong=\"H1121\"* mentioned by|strong=\"H8034\"* name|strong=\"H8034\"*, to|strong=\"H1121\"* come|strong=\"H1368\"* and|strong=\"H3967\"* make|strong=\"H8034\"* David king." + }, + { + "verseNum": 32, + "text": "Of|strong=\"H4294\"* the|strong=\"H1732\"* children of|strong=\"H4294\"* Issachar, men|strong=\"H8034\"* who had|strong=\"H1732\"* understanding of|strong=\"H4294\"* the|strong=\"H1732\"* times, to|strong=\"H1732\"* know what|strong=\"H1732\"* Israel ought to|strong=\"H1732\"* do, their|strong=\"H1732\"* heads were|strong=\"H1732\"* two|strong=\"H4427\"* hundred; and|strong=\"H1732\"* all their|strong=\"H1732\"* brothers were|strong=\"H1732\"* at|strong=\"H1732\"* their|strong=\"H1732\"* command." + }, + { + "verseNum": 33, + "text": "Of|strong=\"H1121\"* Zebulun, such|strong=\"H6213\"* as|strong=\"H6213\"* were|strong=\"H3478\"* able to|strong=\"H3478\"* go|strong=\"H3478\"* out|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* army, who|strong=\"H3605\"* could|strong=\"H3045\"* set|strong=\"H6213\"* the|strong=\"H3605\"* battle in|strong=\"H5921\"* array with|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* instruments of|strong=\"H1121\"* war: fifty thousand who|strong=\"H3605\"* could|strong=\"H3045\"* command|strong=\"H6310\"* and|strong=\"H3967\"* were|strong=\"H3478\"* not|strong=\"H3045\"* of|strong=\"H1121\"* double heart." + }, + { + "verseNum": 34, + "text": "Of|strong=\"H3627\"* Naphtali: one|strong=\"H3605\"* thousand captains, and|strong=\"H2572\"* with|strong=\"H3318\"* them|strong=\"H3318\"* with|strong=\"H3318\"* shield and|strong=\"H2572\"* spear thirty-seven thousand." + }, + { + "verseNum": 35, + "text": "Of|strong=\"H8269\"* the|strong=\"H5973\"* Danites who|strong=\"H8269\"* could set the|strong=\"H5973\"* battle in|strong=\"H5973\"* array: twenty-eight thousand six hundred." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H4480\"* Asher, such as|strong=\"H6186\"* were|strong=\"H4421\"* able to|strong=\"H4480\"* go out|strong=\"H4480\"* in|strong=\"H4421\"* the|strong=\"H4480\"* army|strong=\"H4421\"*, who|strong=\"H4421\"* could set|strong=\"H6186\"* the|strong=\"H4480\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"*: forty thousand." + }, + { + "verseNum": 37, + "text": "On|strong=\"H3318\"* the|strong=\"H3318\"* other side of|strong=\"H6635\"* the|strong=\"H3318\"* Jordan, of|strong=\"H6635\"* the|strong=\"H3318\"* Reubenites, the|strong=\"H3318\"* Gadites, and|strong=\"H3318\"* of|strong=\"H6635\"* the|strong=\"H3318\"* half-tribe of|strong=\"H6635\"* Manasseh, with|strong=\"H3318\"* all|strong=\"H3318\"* kinds of|strong=\"H6635\"* instruments of|strong=\"H6635\"* war|strong=\"H4421\"* for|strong=\"H6635\"* the|strong=\"H3318\"* battle|strong=\"H4421\"*: one hundred twenty thousand." + }, + { + "verseNum": 38, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3627\"* men|strong=\"H3605\"* of|strong=\"H7626\"* war|strong=\"H4421\"* who|strong=\"H3605\"* could order the|strong=\"H3605\"* battle|strong=\"H4421\"* array|strong=\"H6635\"*, and|strong=\"H3967\"* came|strong=\"H6635\"* with|strong=\"H3627\"* a|strong=\"H3068\"* perfect heart to|strong=\"H4480\"* Hebron to|strong=\"H4480\"* make David king over|strong=\"H4480\"* all|strong=\"H3605\"* Israel|strong=\"H4421\"*; and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest also|strong=\"H4519\"* of|strong=\"H7626\"* Israel|strong=\"H4421\"* were|strong=\"H3627\"* of|strong=\"H7626\"* one|strong=\"H3605\"* heart to|strong=\"H4480\"* make David king." + }, + { + "verseNum": 39, + "text": "They|strong=\"H5921\"* were|strong=\"H3478\"* there|strong=\"H3605\"* with|strong=\"H5921\"* David|strong=\"H1732\"* three days, eating and|strong=\"H3478\"* drinking; for|strong=\"H5921\"* their|strong=\"H3605\"* brothers had|strong=\"H3478\"* supplied provisions for|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 40, + "text": "Moreover|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H3588\"* were|strong=\"H1961\"* near|strong=\"H5973\"* to|strong=\"H1961\"* them|strong=\"H1961\"*, as|strong=\"H3117\"* far as|strong=\"H3117\"* Issachar, Zebulun, and|strong=\"H3117\"* Naphtali, brought|strong=\"H1961\"* bread on|strong=\"H3117\"* donkeys, on|strong=\"H3117\"* camels, on|strong=\"H3117\"* mules, and|strong=\"H3117\"* on|strong=\"H3117\"* oxen: supplies of|strong=\"H3117\"* flour, cakes of|strong=\"H3117\"* figs, clusters of|strong=\"H3117\"* raisins, wine, oil, cattle, and|strong=\"H3117\"* sheep in|strong=\"H3117\"* abundance; for|strong=\"H3588\"* there|strong=\"H8033\"* was|strong=\"H1961\"* joy in|strong=\"H3117\"* Israel." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* consulted|strong=\"H3289\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, even with|strong=\"H5973\"* every|strong=\"H3605\"* leader|strong=\"H5057\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “If it|strong=\"H5921\"* seems|strong=\"H3605\"* good|strong=\"H2895\"* to|strong=\"H3478\"* you|strong=\"H3605\"*, and|strong=\"H3478\"* if it|strong=\"H5921\"* is|strong=\"H3068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, let|strong=\"H7971\"*’s send|strong=\"H7971\"* word everywhere|strong=\"H3605\"* to|strong=\"H3478\"* our|strong=\"H3068\"* brothers who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* whom the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* Levites|strong=\"H3881\"* are|strong=\"H3478\"* in|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* have|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* gather|strong=\"H6908\"* themselves|strong=\"H6908\"* to|strong=\"H3478\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Also|strong=\"H7586\"*, let|strong=\"H3808\"*’s bring|strong=\"H5437\"* the|strong=\"H3588\"* ark of|strong=\"H3117\"* our|strong=\"H3588\"* God|strong=\"H3808\"* back|strong=\"H5437\"* to|strong=\"H3117\"* us|strong=\"H3588\"* again|strong=\"H5437\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* didn’t seek|strong=\"H1875\"* it|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Saul|strong=\"H7586\"*.”" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* said|strong=\"H1697\"* that|strong=\"H3588\"* they|strong=\"H3588\"* would|strong=\"H5971\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* right|strong=\"H3474\"* in|strong=\"H6213\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H4480\"* David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H6950\"*, from|strong=\"H4480\"* the|strong=\"H3605\"* Shihor|strong=\"H7883\"* River|strong=\"H5704\"* of|strong=\"H4480\"* Egypt|strong=\"H4714\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* entrance of|strong=\"H4480\"* Hamath|strong=\"H2574\"*, to|strong=\"H5704\"* bring|strong=\"H1732\"* God’s ark from|strong=\"H4480\"* Kiriath|strong=\"H7157\"* Jearim." + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* Baalah|strong=\"H1173\"*, that|strong=\"H3605\"* is|strong=\"H3068\"*, to|strong=\"H3478\"* Kiriath|strong=\"H7157\"* Jearim, which|strong=\"H3068\"* belonged|strong=\"H5927\"* to|strong=\"H3478\"* Judah|strong=\"H3063\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* there|strong=\"H8033\"* God|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s ark that|strong=\"H3605\"* sits|strong=\"H3427\"* above the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, that|strong=\"H3605\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H3068\"* the|strong=\"H3605\"* Name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* carried|strong=\"H7392\"* God’s ark on|strong=\"H5921\"* a|strong=\"H3068\"* new|strong=\"H2319\"* cart|strong=\"H5699\"*, and|strong=\"H1004\"* brought|strong=\"H5090\"* it|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1004\"* Abinadab’s house|strong=\"H1004\"*; and|strong=\"H1004\"* Uzza|strong=\"H5798\"* and|strong=\"H1004\"* Ahio drove|strong=\"H5090\"* the|strong=\"H5921\"* cart|strong=\"H5699\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* played|strong=\"H7832\"* before|strong=\"H6440\"* God with|strong=\"H6440\"* all|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H5797\"*, even with|strong=\"H6440\"* songs|strong=\"H7892\"*, with|strong=\"H6440\"* harps|strong=\"H3658\"*, with|strong=\"H6440\"* stringed instruments|strong=\"H7892\"*, with|strong=\"H6440\"* tambourines|strong=\"H8596\"*, with|strong=\"H6440\"* cymbals|strong=\"H4700\"*, and|strong=\"H3478\"* with|strong=\"H6440\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* came to|strong=\"H5704\"* Chidon|strong=\"H3592\"*’s threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, Uzza|strong=\"H5798\"* put|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* to|strong=\"H5704\"* hold the|strong=\"H3588\"* ark, for|strong=\"H3588\"* the|strong=\"H3588\"* oxen|strong=\"H1241\"* stumbled|strong=\"H8058\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* burned|strong=\"H2734\"* against|strong=\"H5921\"* Uzza|strong=\"H5798\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* struck|strong=\"H5221\"* him|strong=\"H6440\"* because|strong=\"H5921\"* he|strong=\"H8033\"* put|strong=\"H4191\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H6440\"* ark; and|strong=\"H3068\"* he|strong=\"H8033\"* died|strong=\"H4191\"* there|strong=\"H8033\"* before|strong=\"H6440\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* was|strong=\"H3068\"* displeased|strong=\"H2734\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* broken|strong=\"H6555\"* out|strong=\"H6555\"* against|strong=\"H2734\"* Uzza|strong=\"H5798\"*. He|strong=\"H1931\"* called|strong=\"H7121\"* that|strong=\"H3588\"* place|strong=\"H4725\"* Perez Uzza|strong=\"H5798\"*, to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* afraid|strong=\"H3372\"* of|strong=\"H3117\"* God that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “How|strong=\"H1963\"* can I|strong=\"H3117\"* bring|strong=\"H1732\"* God’s ark home to|strong=\"H3117\"* me|strong=\"H3372\"*?”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H3808\"* David|strong=\"H1732\"* didn’t move|strong=\"H5493\"* the|strong=\"H5493\"* ark with|strong=\"H1004\"* him|strong=\"H5186\"* into|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3808\"* carried it|strong=\"H5186\"* aside|strong=\"H5493\"* into|strong=\"H5892\"* Obed-Edom|strong=\"H5654\"* the|strong=\"H5493\"* Gittite|strong=\"H1663\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H3068\"*’s ark remained|strong=\"H3427\"* with|strong=\"H5973\"* the|strong=\"H3605\"* family|strong=\"H1004\"* of|strong=\"H1004\"* Obed-Edom|strong=\"H5654\"* in|strong=\"H3427\"* his|strong=\"H3605\"* house|strong=\"H1004\"* three|strong=\"H7969\"* months|strong=\"H2320\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* Obed-Edom|strong=\"H5654\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Hiram|strong=\"H2438\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* David|strong=\"H1732\"* with|strong=\"H1004\"* cedar trees|strong=\"H6086\"*, masons|strong=\"H7023\"*, and|strong=\"H7971\"* carpenters|strong=\"H2796\"*, to|strong=\"H7971\"* build|strong=\"H1129\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* established|strong=\"H3559\"* him|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, for|strong=\"H3588\"* his|strong=\"H5375\"* kingdom|strong=\"H4438\"* was|strong=\"H3068\"* highly|strong=\"H4605\"* exalted|strong=\"H5375\"*, for|strong=\"H3588\"* his|strong=\"H5375\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*’s sake|strong=\"H5668\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* more|strong=\"H5750\"* wives in|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* became|strong=\"H3205\"* the|strong=\"H3947\"* father|strong=\"H3205\"* of|strong=\"H1121\"* more|strong=\"H5750\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 4, + "text": "These are|strong=\"H1961\"* the|strong=\"H3205\"* names|strong=\"H8034\"* of|strong=\"H3205\"* the|strong=\"H3205\"* children|strong=\"H3205\"* whom he|strong=\"H3389\"* had|strong=\"H1961\"* in|strong=\"H8034\"* Jerusalem|strong=\"H3389\"*: Shammua|strong=\"H8051\"*, Shobab|strong=\"H7727\"*, Nathan|strong=\"H5416\"*, Solomon|strong=\"H8010\"*," + }, + { + "verseNum": 5, + "text": "Ibhar|strong=\"H2984\"*, Elishua, Elpelet," + }, + { + "verseNum": 6, + "text": "Nogah|strong=\"H5052\"*, Nepheg|strong=\"H5298\"*, Japhia|strong=\"H3309\"*," + }, + { + "verseNum": 7, + "text": "Elishama, Beeliada|strong=\"H1182\"*, and|strong=\"H1182\"* Eliphelet." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* was|strong=\"H1732\"* anointed|strong=\"H4886\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* seek|strong=\"H1245\"* David|strong=\"H1732\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* it|strong=\"H5921\"*, and|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Now the|strong=\"H6584\"* Philistines|strong=\"H6430\"* had|strong=\"H6430\"* come and|strong=\"H6430\"* made|strong=\"H6584\"* a|strong=\"H3068\"* raid|strong=\"H6584\"* in|strong=\"H6430\"* the|strong=\"H6584\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 10, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, saying, “Shall|strong=\"H3068\"* I|strong=\"H5414\"* go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*? Will|strong=\"H3068\"* you|strong=\"H5414\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3651\"* they|strong=\"H3651\"* came|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Baal Perazim, and|strong=\"H3027\"* David|strong=\"H1732\"* defeated|strong=\"H5221\"* them|strong=\"H5921\"* there|strong=\"H8033\"*. David|strong=\"H1732\"* said|strong=\"H7121\"*, God|strong=\"H3027\"* has|strong=\"H3027\"* broken|strong=\"H6555\"* my|strong=\"H1732\"* enemies|strong=\"H3027\"* by|strong=\"H3027\"* my|strong=\"H1732\"* hand|strong=\"H3027\"*, like|strong=\"H3651\"* waters|strong=\"H4325\"* breaking|strong=\"H5927\"* out|strong=\"H5921\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* called|strong=\"H7121\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3027\"* that|strong=\"H1931\"* place|strong=\"H4725\"* Baal Perazim.+ 14:11 “Baal Perazim” means “The Lord who breaks out”.*" + }, + { + "verseNum": 12, + "text": "They|strong=\"H8033\"* left|strong=\"H5800\"* their|strong=\"H8313\"* gods there|strong=\"H8033\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* gave a|strong=\"H3068\"* command, and|strong=\"H1732\"* they|strong=\"H8033\"* were|strong=\"H1732\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3254\"* Philistines|strong=\"H6430\"* made|strong=\"H6584\"* another|strong=\"H5750\"* raid|strong=\"H6584\"* in|strong=\"H5750\"* the|strong=\"H3254\"* valley|strong=\"H6010\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* inquired|strong=\"H7592\"* again|strong=\"H5750\"* of|strong=\"H5921\"* God|strong=\"H3808\"*; and|strong=\"H1732\"* God|strong=\"H3808\"* said to|strong=\"H5927\"* him|strong=\"H5921\"*, “You|strong=\"H5921\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* go|strong=\"H5927\"* up|strong=\"H5927\"* after|strong=\"H5921\"* them|strong=\"H1992\"*. Turn|strong=\"H5437\"* away|strong=\"H5927\"* from|strong=\"H5921\"* them|strong=\"H1992\"*, and|strong=\"H1732\"* come|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H1992\"* opposite|strong=\"H4136\"* the|strong=\"H5921\"* mulberry trees|strong=\"H1057\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* hear|strong=\"H8085\"* the|strong=\"H6440\"* sound|strong=\"H6963\"* of|strong=\"H7218\"* marching|strong=\"H6807\"* in|strong=\"H8085\"* the|strong=\"H6440\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6440\"* mulberry trees|strong=\"H1057\"*, then|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*; for|strong=\"H3588\"* God has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* you|strong=\"H3588\"* to|strong=\"H3318\"* strike|strong=\"H5221\"* the|strong=\"H6440\"* army|strong=\"H4264\"* of|strong=\"H7218\"* the|strong=\"H6440\"* Philistines|strong=\"H6430\"*.”" + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* did|strong=\"H6213\"* as|strong=\"H5704\"* God commanded|strong=\"H6680\"* him|strong=\"H5221\"*; and|strong=\"H1732\"* they|strong=\"H5704\"* attacked|strong=\"H5221\"* the|strong=\"H5221\"* army|strong=\"H4264\"* of|strong=\"H4264\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"* from|strong=\"H5704\"* Gibeon|strong=\"H1391\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Gezer|strong=\"H1507\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* fame|strong=\"H8034\"* of|strong=\"H3068\"* David|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5921\"* all|strong=\"H3605\"* lands; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3318\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* him|strong=\"H5414\"* on|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* houses|strong=\"H1004\"* in|strong=\"H6213\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1004\"* he|strong=\"H6213\"* prepared|strong=\"H3559\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H6213\"* God’s ark, and|strong=\"H1004\"* pitched|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5375\"* David|strong=\"H1732\"* said, “No|strong=\"H3808\"* one|strong=\"H3808\"* ought to|strong=\"H5704\"* carry|strong=\"H5375\"* God|strong=\"H3068\"*’s ark but|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen them|strong=\"H5375\"* to|strong=\"H5704\"* carry|strong=\"H5375\"* God|strong=\"H3068\"*’s ark, and|strong=\"H3068\"* to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H1732\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* Yahweh|strong=\"H3068\"*’s ark to|strong=\"H3478\"* its|strong=\"H3605\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* it|strong=\"H3559\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* gathered|strong=\"H1732\"* together the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron and|strong=\"H1121\"* the|strong=\"H1732\"* Levites|strong=\"H3881\"*:" + }, + { + "verseNum": 5, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*, Uriel the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8269\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 6, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, Asaiah|strong=\"H6222\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H6222\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 7, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom, Joel|strong=\"H3100\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H3100\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*;" + }, + { + "verseNum": 8, + "text": "of|strong=\"H1121\"* the|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elizaphan, Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8098\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"*;" + }, + { + "verseNum": 9, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*, Eliel the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H1121\"* his|strong=\"H8269\"* brothers|strong=\"H1121\"* eighty|strong=\"H8084\"*;" + }, + { + "verseNum": 10, + "text": "of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*, Amminadab|strong=\"H5992\"* the|strong=\"H1121\"* chief|strong=\"H8269\"*, and|strong=\"H3967\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "David|strong=\"H1732\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Zadok|strong=\"H6659\"* and|strong=\"H3548\"* Abiathar the|strong=\"H7121\"* priests|strong=\"H3548\"*, and|strong=\"H3548\"* for|strong=\"H7121\"* the|strong=\"H7121\"* Levites|strong=\"H3881\"*: for|strong=\"H7121\"* Uriel, Asaiah|strong=\"H6222\"*, Joel|strong=\"H3100\"*, Shemaiah|strong=\"H8098\"*, Eliel, and|strong=\"H3548\"* Amminadab|strong=\"H5992\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H5927\"*, “You|strong=\"H3559\"* are|strong=\"H3478\"* the|strong=\"H3068\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3068\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"*. Sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, both you|strong=\"H3559\"* and|strong=\"H3478\"* your|strong=\"H3068\"* brothers, that|strong=\"H3068\"* you|strong=\"H3559\"* may|strong=\"H3068\"* bring|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, up|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H3068\"* place|strong=\"H7218\"* that|strong=\"H3068\"* I|strong=\"H3559\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* it|strong=\"H3559\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* because|strong=\"H3588\"* you|strong=\"H3588\"* didn’t carry it|strong=\"H3588\"* at|strong=\"H3068\"* first|strong=\"H7223\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* broke|strong=\"H6555\"* out|strong=\"H6555\"* in|strong=\"H3068\"* anger against|strong=\"H6555\"* us|strong=\"H3588\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* didn’t seek|strong=\"H1875\"* him|strong=\"H3588\"* according|strong=\"H4941\"* to|strong=\"H3068\"* the|strong=\"H3588\"* ordinance|strong=\"H4941\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5927\"* the|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* bore|strong=\"H5375\"* God|strong=\"H3068\"*’s ark on|strong=\"H5921\"* their|strong=\"H3068\"* shoulders|strong=\"H3802\"* with|strong=\"H3068\"* its|strong=\"H5921\"* poles|strong=\"H4133\"*, as|strong=\"H1697\"* Moses|strong=\"H4872\"* commanded|strong=\"H6680\"* according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* spoke to|strong=\"H8085\"* the|strong=\"H8085\"* chief|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H8085\"* Levites|strong=\"H3881\"* to|strong=\"H8085\"* appoint|strong=\"H5975\"* their|strong=\"H8085\"* brothers as|strong=\"H3881\"* singers|strong=\"H7891\"* with|strong=\"H1732\"* instruments|strong=\"H3627\"* of|strong=\"H8269\"* music|strong=\"H7892\"*, stringed instruments|strong=\"H3627\"*, harps|strong=\"H3658\"*, and|strong=\"H6963\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8085\"* aloud|strong=\"H7311\"* and|strong=\"H6963\"* lifting|strong=\"H7311\"* up|strong=\"H7311\"* their|strong=\"H8085\"* voices|strong=\"H6963\"* with|strong=\"H1732\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H4480\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* appointed|strong=\"H5975\"* Heman|strong=\"H1968\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joel|strong=\"H3100\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H4480\"* brothers|strong=\"H1121\"*, Asaph the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* their|strong=\"H5975\"* brothers|strong=\"H1121\"*, Ethan the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kushaiah|strong=\"H6984\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H2148\"* with|strong=\"H5973\"* them their|strong=\"H5973\"* brothers of|strong=\"H4932\"* the|strong=\"H1141\"* second|strong=\"H4932\"* rank|strong=\"H4932\"*: Zechariah|strong=\"H2148\"*, Ben|strong=\"H1122\"*, Jaaziel|strong=\"H3268\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Unni|strong=\"H6042\"*, Eliab, Benaiah|strong=\"H1141\"*, Maaseiah|strong=\"H4641\"*, Mattithiah|strong=\"H4993\"*, Eliphelehu, Mikneiah|strong=\"H4737\"*, Obed-Edom|strong=\"H5654\"*, and|strong=\"H2148\"* Jeiel|strong=\"H3273\"*, the|strong=\"H1141\"* doorkeepers|strong=\"H7778\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H8085\"* the|strong=\"H8085\"* singers|strong=\"H7891\"*, Heman|strong=\"H1968\"*, Asaph, and|strong=\"H8085\"* Ethan, were|strong=\"H7891\"* given|strong=\"H8085\"* cymbals|strong=\"H4700\"* of|strong=\"H8085\"* bronze|strong=\"H5178\"* to|strong=\"H8085\"* sound|strong=\"H8085\"* aloud|strong=\"H8085\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H5035\"* Zechariah|strong=\"H2148\"*, Aziel|strong=\"H5815\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Unni|strong=\"H6042\"*, Eliab, Maaseiah|strong=\"H4641\"*, and|strong=\"H5035\"* Benaiah|strong=\"H1141\"*, with|strong=\"H5921\"* stringed instruments set to|strong=\"H5921\"* Alamoth|strong=\"H5961\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3658\"* Mattithiah|strong=\"H4993\"*, Eliphelehu, Mikneiah|strong=\"H4737\"*, Obed-Edom|strong=\"H5654\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H3658\"* Azaziah|strong=\"H5812\"*, with|strong=\"H5921\"* harps|strong=\"H3658\"* tuned to|strong=\"H5921\"* the|strong=\"H5921\"* eight-stringed lyre|strong=\"H3658\"*, to|strong=\"H5921\"* lead|strong=\"H5329\"*." + }, + { + "verseNum": 22, + "text": "Chenaniah|strong=\"H3663\"*, chief|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"*, was|strong=\"H1931\"* over|strong=\"H8269\"* the|strong=\"H3588\"* singing|strong=\"H4853\"*. He|strong=\"H1931\"* taught|strong=\"H3256\"* the|strong=\"H3588\"* singers, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* skillful." + }, + { + "verseNum": 23, + "text": "Berechiah|strong=\"H1296\"* and|strong=\"H1296\"* Elkanah were|strong=\"H7778\"* doorkeepers|strong=\"H7778\"* for the|strong=\"H1296\"* ark." + }, + { + "verseNum": 24, + "text": "Shebaniah|strong=\"H7645\"*, Joshaphat|strong=\"H3146\"*, Nethanel|strong=\"H5417\"*, Amasai|strong=\"H6022\"*, Zechariah|strong=\"H2148\"*, Benaiah|strong=\"H1141\"*, and|strong=\"H3548\"* Eliezer, the|strong=\"H6440\"* priests|strong=\"H3548\"*, blew|strong=\"H2690\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"* before|strong=\"H6440\"* God’s ark; and|strong=\"H3548\"* Obed-Edom|strong=\"H5654\"* and|strong=\"H3548\"* Jehiah|strong=\"H3174\"* were|strong=\"H2690\"* doorkeepers|strong=\"H7778\"* for|strong=\"H6440\"* the|strong=\"H6440\"* ark." + }, + { + "verseNum": 25, + "text": "So|strong=\"H1980\"* David|strong=\"H1732\"*, the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H1980\"* the|strong=\"H3068\"* captains|strong=\"H8269\"* over|strong=\"H8269\"* thousands went|strong=\"H1980\"* to|strong=\"H1980\"* bring|strong=\"H5927\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H1980\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H1961\"* God|strong=\"H3068\"* helped|strong=\"H5826\"* the|strong=\"H5375\"* Levites|strong=\"H3881\"* who|strong=\"H3068\"* bore|strong=\"H5375\"* the|strong=\"H5375\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, they|strong=\"H3068\"* sacrificed|strong=\"H2076\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3068\"* seven|strong=\"H7651\"* rams." + }, + { + "verseNum": 27, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* clothed|strong=\"H3736\"* with|strong=\"H5921\"* a|strong=\"H3068\"* robe|strong=\"H4598\"* of|strong=\"H8269\"* fine linen, as|strong=\"H3605\"* were|strong=\"H3881\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* bore|strong=\"H5375\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* singers|strong=\"H7891\"*, and|strong=\"H1732\"* Chenaniah|strong=\"H3663\"* the|strong=\"H3605\"* choir master|strong=\"H8269\"* with|strong=\"H5921\"* the|strong=\"H3605\"* singers|strong=\"H7891\"*; and|strong=\"H1732\"* David|strong=\"H1732\"* had|strong=\"H1732\"* an|strong=\"H5375\"* ephod of|strong=\"H8269\"* linen on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 28, + "text": "Thus|strong=\"H8085\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* up|strong=\"H5927\"* with|strong=\"H3068\"* shouting|strong=\"H8643\"*, with|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cornet|strong=\"H7782\"*, with|strong=\"H3068\"* trumpets|strong=\"H2689\"*, and|strong=\"H3478\"* with|strong=\"H3068\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8643\"* aloud|strong=\"H6963\"* with|strong=\"H3068\"* stringed instruments and|strong=\"H3478\"* harps|strong=\"H3658\"*." + }, + { + "verseNum": 29, + "text": "As|strong=\"H5704\"* the|strong=\"H7200\"* ark of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* came|strong=\"H1961\"* to|strong=\"H5704\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, Michal|strong=\"H4324\"* the|strong=\"H7200\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Saul|strong=\"H7586\"* looked|strong=\"H7200\"* out|strong=\"H8259\"* at|strong=\"H3068\"* the|strong=\"H7200\"* window|strong=\"H2474\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* king|strong=\"H4428\"* David|strong=\"H1732\"* dancing|strong=\"H7540\"* and|strong=\"H3068\"* playing|strong=\"H7832\"*; and|strong=\"H3068\"* she|strong=\"H3820\"* despised him|strong=\"H7200\"* in|strong=\"H3068\"* her|strong=\"H7200\"* heart|strong=\"H3820\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "They|strong=\"H6440\"* brought|strong=\"H7126\"* in|strong=\"H8432\"* God’s ark, and|strong=\"H1732\"* set|strong=\"H3322\"* it|strong=\"H7126\"* in|strong=\"H8432\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* the|strong=\"H6440\"* tent that|strong=\"H1732\"* David|strong=\"H1732\"* had|strong=\"H1732\"* pitched|strong=\"H5186\"* for|strong=\"H6440\"* it|strong=\"H7126\"*; and|strong=\"H1732\"* they|strong=\"H6440\"* offered|strong=\"H7126\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H1732\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* before|strong=\"H6440\"* God." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3615\"* David|strong=\"H1732\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* offering|strong=\"H5930\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, he|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5704\"* gave to|strong=\"H5704\"* everyone|strong=\"H3605\"* of|strong=\"H3603\"* Israel|strong=\"H3478\"*, both|strong=\"H3605\"* man|strong=\"H3605\"* and|strong=\"H3478\"* woman|strong=\"H2505\"*, to|strong=\"H5704\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*, a|strong=\"H3068\"* portion|strong=\"H2505\"* of|strong=\"H3603\"* meat|strong=\"H3899\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* cake|strong=\"H3603\"* of|strong=\"H3603\"* raisins." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* appointed|strong=\"H5414\"* some|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s ark, and|strong=\"H3478\"* to|strong=\"H3478\"* commemorate, to|strong=\"H3478\"* thank|strong=\"H3034\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "Asaph the|strong=\"H8085\"* chief|strong=\"H7218\"*, and|strong=\"H7218\"* second|strong=\"H4932\"* to|strong=\"H8085\"* him|strong=\"H8085\"* Zechariah|strong=\"H2148\"*, then|strong=\"H8085\"* Jeiel|strong=\"H3273\"*, Shemiramoth|strong=\"H8070\"*, Jehiel|strong=\"H3171\"*, Mattithiah|strong=\"H4993\"*, Eliab, Benaiah|strong=\"H1141\"*, Obed-Edom|strong=\"H5654\"*, and|strong=\"H7218\"* Jeiel|strong=\"H3273\"*, with|strong=\"H3627\"* stringed instruments|strong=\"H3627\"* and|strong=\"H7218\"* with|strong=\"H3627\"* harps|strong=\"H3658\"*; and|strong=\"H7218\"* Asaph with|strong=\"H3627\"* cymbals|strong=\"H4700\"*, sounding|strong=\"H8085\"* aloud|strong=\"H8085\"*;" + }, + { + "verseNum": 6, + "text": "with|strong=\"H1285\"* Benaiah|strong=\"H1141\"* and|strong=\"H3548\"* Jahaziel|strong=\"H3166\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* with|strong=\"H1285\"* trumpets|strong=\"H2689\"* continually|strong=\"H8548\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* of|strong=\"H6440\"* God." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H5414\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* David|strong=\"H1732\"* first|strong=\"H7218\"* ordained|strong=\"H5414\"* giving|strong=\"H5414\"* of|strong=\"H3068\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Asaph and|strong=\"H3068\"* his|strong=\"H5414\"* brothers." + }, + { + "verseNum": 8, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Sing|strong=\"H7891\"* to|strong=\"H2167\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "Glory|strong=\"H1984\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 11, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* his|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 12, + "text": "Remember|strong=\"H2142\"* his|strong=\"H2142\"* marvelous|strong=\"H6381\"* works|strong=\"H6381\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 13, + "text": "you|strong=\"H3478\"* offspring|strong=\"H2233\"*+ 16:13 or, seed* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3478\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Remember|strong=\"H2142\"* his|strong=\"H6680\"* covenant|strong=\"H1285\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H3772\"* covenant which he|strong=\"H3327\"* made|strong=\"H3772\"* with|strong=\"H3772\"* Abraham," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3478\"* confirmed|strong=\"H5975\"* it|strong=\"H5975\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"* for|strong=\"H2706\"* a|strong=\"H3068\"* statute|strong=\"H2706\"*," + }, + { + "verseNum": 18, + "text": "saying, “I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* of|strong=\"H5159\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 19, + "text": "when|strong=\"H1961\"* you|strong=\"H1961\"* were|strong=\"H1961\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H4962\"* in|strong=\"H4962\"* number|strong=\"H4557\"*," + }, + { + "verseNum": 20, + "text": "They|strong=\"H5971\"* went|strong=\"H1980\"* about|strong=\"H1980\"* from|strong=\"H1980\"* nation|strong=\"H1471\"* to|strong=\"H1980\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* allowed no|strong=\"H3808\"* man to|strong=\"H5921\"* do them|strong=\"H5921\"* wrong|strong=\"H6231\"*." + }, + { + "verseNum": 22, + "text": "“Don’t touch|strong=\"H5060\"* my|strong=\"H5060\"* anointed|strong=\"H4899\"* ones|strong=\"H4899\"*!" + }, + { + "verseNum": 23, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 24, + "text": "Declare|strong=\"H5608\"* his|strong=\"H3605\"* glory|strong=\"H3519\"* among|strong=\"H6381\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* idols," + }, + { + "verseNum": 27, + "text": "Honor|strong=\"H1935\"* and|strong=\"H6440\"* majesty|strong=\"H1926\"* are|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 28, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5971\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 29, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H6440\"* glory|strong=\"H3519\"* due|strong=\"H6440\"* to|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 30, + "text": "Tremble|strong=\"H2342\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H1523\"* the|strong=\"H3068\"* heavens|strong=\"H8064\"* be|strong=\"H3068\"* glad|strong=\"H1523\"*," + }, + { + "verseNum": 32, + "text": "Let|strong=\"H7481\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* roar|strong=\"H7481\"*, and|strong=\"H7704\"* its|strong=\"H3605\"* fullness|strong=\"H4393\"*!" + }, + { + "verseNum": 33, + "text": "Then|strong=\"H3588\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H6440\"* forest|strong=\"H3293\"* will|strong=\"H3068\"* sing|strong=\"H7442\"* for|strong=\"H3588\"* joy|strong=\"H7442\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 34, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 35, + "text": "Say, “Save|strong=\"H3467\"* us|strong=\"H5337\"*, God of|strong=\"H8034\"* our|strong=\"H5337\"* salvation|strong=\"H3468\"*!" + }, + { + "verseNum": 36, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 37, + "text": "So|strong=\"H1697\"* he|strong=\"H3117\"* left|strong=\"H5800\"* Asaph and|strong=\"H3068\"* his|strong=\"H3068\"* brothers there|strong=\"H8033\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* before|strong=\"H6440\"* the|strong=\"H6440\"* ark continually|strong=\"H8548\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"*’s work|strong=\"H1697\"* required|strong=\"H3117\"*;" + }, + { + "verseNum": 38, + "text": "and|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H5654\"* their sixty-eight relatives|strong=\"H1121\"*; Obed-Edom|strong=\"H5654\"* also|strong=\"H1121\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* and|strong=\"H1121\"* Hosah|strong=\"H2621\"* to|strong=\"H1121\"* be|strong=\"H1121\"* doorkeepers|strong=\"H7778\"*;" + }, + { + "verseNum": 39, + "text": "and|strong=\"H3068\"* Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* his|strong=\"H3068\"* brothers the|strong=\"H6440\"* priests|strong=\"H3548\"*, before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"* in|strong=\"H3068\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*," + }, + { + "verseNum": 40, + "text": "to|strong=\"H3478\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* continually|strong=\"H8548\"* morning|strong=\"H1242\"* and|strong=\"H3478\"* evening|strong=\"H6153\"*, even|strong=\"H6153\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H3068\"* with|strong=\"H5973\"* them|strong=\"H3588\"* Heman|strong=\"H1968\"* and|strong=\"H3068\"* Jeduthun|strong=\"H3038\"* and|strong=\"H3068\"* the|strong=\"H3588\"* rest|strong=\"H7605\"* who|strong=\"H3068\"* were|strong=\"H3068\"* chosen|strong=\"H1305\"*, who|strong=\"H3068\"* were|strong=\"H3068\"* mentioned by|strong=\"H3068\"* name|strong=\"H8034\"*, to|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 42, + "text": "and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H8085\"* Heman|strong=\"H1968\"* and|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* with|strong=\"H5973\"* trumpets|strong=\"H2689\"* and|strong=\"H1121\"* cymbals|strong=\"H4700\"* for|strong=\"H1121\"* those|strong=\"H8085\"* that|strong=\"H8085\"* should sound|strong=\"H8085\"* aloud|strong=\"H8085\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* instruments|strong=\"H3627\"* for|strong=\"H1121\"* the|strong=\"H8085\"* songs|strong=\"H7892\"* of|strong=\"H1121\"* God, and|strong=\"H1121\"* the|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* to|strong=\"H8085\"* be|strong=\"H1121\"* at|strong=\"H1121\"* the|strong=\"H8085\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 43, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* departed|strong=\"H3212\"*, each|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3212\"* his|strong=\"H3605\"* house|strong=\"H1004\"*; and|strong=\"H1004\"* David|strong=\"H1732\"* returned|strong=\"H5437\"* to|strong=\"H3212\"* bless|strong=\"H1288\"* his|strong=\"H3605\"* house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* David|strong=\"H1732\"* was|strong=\"H3068\"* living|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, David|strong=\"H1732\"* said to|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* cedar house|strong=\"H1004\"*, but|strong=\"H1961\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* is|strong=\"H3068\"* in|strong=\"H3427\"* a|strong=\"H3068\"* tent|strong=\"H3407\"*.”" + }, + { + "verseNum": 2, + "text": "Nathan|strong=\"H5416\"* said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3605\"* in|strong=\"H6213\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*; for|strong=\"H3588\"* God is|strong=\"H3605\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 3, + "text": "That|strong=\"H1931\"* same|strong=\"H1931\"* night|strong=\"H3915\"*, the|strong=\"H1697\"* word|strong=\"H1697\"* of|strong=\"H1697\"* God came|strong=\"H1961\"* to|strong=\"H1961\"* Nathan|strong=\"H5416\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* tell David|strong=\"H1732\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3808\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* build|strong=\"H1129\"* me|strong=\"H5650\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3212\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*;" + }, + { + "verseNum": 5, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* house|strong=\"H1004\"* since|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Israel|strong=\"H3478\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, but|strong=\"H3588\"* have|strong=\"H1961\"* gone|strong=\"H5927\"* from|strong=\"H4480\"* tent to|strong=\"H5704\"* tent, and|strong=\"H3478\"* from|strong=\"H4480\"* one|strong=\"H2088\"* tent to|strong=\"H5704\"* another|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H1980\"* all|strong=\"H3605\"* places|strong=\"H1004\"* in|strong=\"H1980\"* which|strong=\"H1697\"* I|strong=\"H1697\"* have|strong=\"H5971\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, did|strong=\"H4100\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* with|strong=\"H1980\"* any|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* judges|strong=\"H8199\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, whom|strong=\"H5971\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* to|strong=\"H1696\"* be|strong=\"H3808\"* shepherd|strong=\"H7462\"* of|strong=\"H1004\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, ‘Why|strong=\"H4100\"* have|strong=\"H5971\"* you|strong=\"H6680\"* not|strong=\"H3808\"* built|strong=\"H1129\"* me|strong=\"H1696\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* cedar?’”’" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, you|strong=\"H5921\"* shall|strong=\"H3068\"* tell my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* took|strong=\"H3947\"* you|strong=\"H5921\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* pen, from|strong=\"H4480\"* following the|strong=\"H5921\"* sheep|strong=\"H6629\"*, to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1980\"* have|strong=\"H1961\"* been|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6440\"* wherever|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* gone|strong=\"H1980\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* your|strong=\"H3605\"* enemies from|strong=\"H6440\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. I|strong=\"H1980\"* will|strong=\"H1961\"* make|strong=\"H6213\"* you|strong=\"H6440\"* a|strong=\"H3068\"* name|strong=\"H8034\"* like|strong=\"H1961\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H6440\"* the|strong=\"H3605\"* great|strong=\"H1419\"* ones|strong=\"H1419\"* who|strong=\"H3605\"* are|strong=\"H6213\"* in|strong=\"H1980\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 9, + "text": "I|strong=\"H7760\"* will|strong=\"H5971\"* appoint|strong=\"H7760\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H8478\"* my|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* will|strong=\"H5971\"* plant|strong=\"H5193\"* them|strong=\"H7760\"*, that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H5971\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* their|strong=\"H7760\"* own|strong=\"H5971\"* place|strong=\"H4725\"*, and|strong=\"H1121\"* be|strong=\"H3808\"* moved|strong=\"H7264\"* no|strong=\"H3808\"* more|strong=\"H3254\"*. The|strong=\"H7760\"* children|strong=\"H1121\"* of|strong=\"H1121\"* wickedness|strong=\"H5766\"* will|strong=\"H5971\"* not|strong=\"H3808\"* waste|strong=\"H1086\"* them|strong=\"H7760\"* any|strong=\"H5750\"* more|strong=\"H3254\"*, as|strong=\"H5971\"* at|strong=\"H3478\"* the|strong=\"H7760\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3478\"* from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* judges|strong=\"H8199\"* to|strong=\"H3478\"* be|strong=\"H3068\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* subdue|strong=\"H3665\"* all|strong=\"H3605\"* your|strong=\"H3068\"* enemies. Moreover I|strong=\"H3117\"* tell|strong=\"H5046\"* you|strong=\"H6680\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H6680\"* a|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* your|strong=\"H3588\"* days|strong=\"H3117\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"* that|strong=\"H3588\"* you|strong=\"H3588\"* must|strong=\"H1121\"* go|strong=\"H3212\"* to|strong=\"H3212\"* be|strong=\"H1961\"* with|strong=\"H5973\"* your|strong=\"H3588\"* fathers, that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* set|strong=\"H6965\"* up|strong=\"H6965\"* your|strong=\"H3588\"* offspring|strong=\"H2233\"* after|strong=\"H2233\"* you|strong=\"H3588\"*, who|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* of|strong=\"H1121\"* your|strong=\"H3588\"* sons|strong=\"H1121\"*; and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* establish|strong=\"H6965\"* his|strong=\"H3559\"* kingdom|strong=\"H4438\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1931\"* will|strong=\"H1004\"* build|strong=\"H1129\"* me|strong=\"H3559\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* I|strong=\"H5704\"* will|strong=\"H1004\"* establish|strong=\"H3559\"* his|strong=\"H3559\"* throne|strong=\"H3678\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H6440\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*. I|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* take|strong=\"H5493\"* my|strong=\"H1961\"* loving kindness|strong=\"H2617\"* away|strong=\"H5493\"* from|strong=\"H5493\"* him|strong=\"H6440\"*, as|strong=\"H1961\"* I|strong=\"H3808\"* took|strong=\"H5493\"* it|strong=\"H1931\"* from|strong=\"H5493\"* him|strong=\"H6440\"* who|strong=\"H1931\"* was|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"*;" + }, + { + "verseNum": 14, + "text": "but|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H1961\"* settle|strong=\"H5975\"* him|strong=\"H5975\"* in|strong=\"H1004\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1004\"* in|strong=\"H1004\"* my|strong=\"H1961\"* kingdom|strong=\"H4438\"* forever|strong=\"H5769\"*. His|strong=\"H3559\"* throne|strong=\"H3678\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established|strong=\"H3559\"* forever|strong=\"H5769\"*.”’”" + }, + { + "verseNum": 15, + "text": "According to|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H1732\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* vision|strong=\"H2377\"*, so|strong=\"H3651\"* Nathan|strong=\"H5416\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"* went|strong=\"H1732\"* in|strong=\"H3427\"* and|strong=\"H3068\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* said, “Who|strong=\"H4310\"* am|strong=\"H3068\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* what|strong=\"H4310\"* is|strong=\"H3068\"* my|strong=\"H3068\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* this|strong=\"H3588\"* far|strong=\"H5704\"*?" + }, + { + "verseNum": 17, + "text": "This|strong=\"H2063\"* was|strong=\"H3068\"* a|strong=\"H3068\"* small|strong=\"H6994\"* thing|strong=\"H6994\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, O|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H7200\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*’s house|strong=\"H1004\"* for|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H7350\"* while|strong=\"H5921\"* to|strong=\"H1696\"* come|strong=\"H7350\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* respected|strong=\"H5869\"* me|strong=\"H7200\"* according|strong=\"H5921\"* to|strong=\"H1696\"* the|strong=\"H5921\"* standard of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H7200\"* of|strong=\"H1004\"* high|strong=\"H4609\"* degree|strong=\"H4609\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "What|strong=\"H4100\"* can|strong=\"H4100\"* David|strong=\"H1732\"* say|strong=\"H3254\"* yet|strong=\"H5750\"* more|strong=\"H3254\"* to|strong=\"H1732\"* you|strong=\"H3045\"* concerning the|strong=\"H3045\"* honor|strong=\"H3519\"* which|strong=\"H4100\"* is|strong=\"H4100\"* done|strong=\"H3254\"* to|strong=\"H1732\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*? For|strong=\"H5650\"* you|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, for|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*’s sake|strong=\"H5668\"*, and|strong=\"H3068\"* according to|strong=\"H3068\"* your|strong=\"H3068\"* own heart|strong=\"H3820\"*, you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* greatness|strong=\"H1420\"*, to|strong=\"H3068\"* make|strong=\"H6213\"* known|strong=\"H3045\"* all|strong=\"H3605\"* these|strong=\"H2063\"* great|strong=\"H6213\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* like|strong=\"H3644\"* you|strong=\"H3605\"*, neither is|strong=\"H3068\"* there|strong=\"H3605\"* any|strong=\"H3605\"* God|strong=\"H3068\"* besides|strong=\"H2108\"* you|strong=\"H3605\"*, according|strong=\"H3644\"* to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* with|strong=\"H3068\"* our|strong=\"H3068\"* ears." + }, + { + "verseNum": 21, + "text": "What|strong=\"H4310\"* one|strong=\"H4310\"* nation|strong=\"H1471\"* in|strong=\"H1980\"* the|strong=\"H6440\"* earth is|strong=\"H4310\"* like|strong=\"H3478\"* your|strong=\"H7760\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, whom|strong=\"H4310\"* God|strong=\"H4310\"* went|strong=\"H1980\"* to|strong=\"H1980\"* redeem|strong=\"H6299\"* to|strong=\"H1980\"* himself|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, to|strong=\"H1980\"* make|strong=\"H7760\"* you|strong=\"H6440\"* a|strong=\"H3068\"* name|strong=\"H8034\"* by|strong=\"H3478\"* great|strong=\"H1420\"* and|strong=\"H1980\"* awesome|strong=\"H3372\"* things|strong=\"H3372\"*, in|strong=\"H1980\"* driving|strong=\"H1644\"* out|strong=\"H1644\"* nations|strong=\"H1471\"* from|strong=\"H6440\"* before|strong=\"H6440\"* your|strong=\"H7760\"* people|strong=\"H5971\"* whom|strong=\"H4310\"* you|strong=\"H6440\"* redeemed|strong=\"H6299\"* out|strong=\"H1644\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*?" + }, + { + "verseNum": 22, + "text": "For|strong=\"H5704\"* you|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* your|strong=\"H3068\"* own|strong=\"H1961\"* people|strong=\"H5971\"* forever|strong=\"H5769\"*; and|strong=\"H3478\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, became|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, let|strong=\"H6258\"* the|strong=\"H5921\"* word|strong=\"H1697\"* that|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3068\"* concerning|strong=\"H5921\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, be|strong=\"H1697\"* established|strong=\"H6213\"* forever|strong=\"H5769\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* as|strong=\"H5704\"* you|strong=\"H5921\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 24, + "text": "Let your|strong=\"H3068\"* name|strong=\"H8034\"* be|strong=\"H3068\"* established|strong=\"H3559\"* and|strong=\"H3478\"* magnified|strong=\"H1431\"* forever|strong=\"H5769\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, even|strong=\"H5704\"* a|strong=\"H3068\"* God|strong=\"H3068\"* to|strong=\"H5704\"* Israel|strong=\"H3478\"*. The|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* is|strong=\"H3068\"* established|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"*.’" + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, my|strong=\"H5921\"* God, have|strong=\"H5650\"* revealed|strong=\"H1540\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5650\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* house|strong=\"H1004\"*. Therefore|strong=\"H3651\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* has|strong=\"H5650\"* found|strong=\"H4672\"* courage to|strong=\"H5921\"* pray|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H5921\"* are|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* this|strong=\"H2063\"* good|strong=\"H2896\"* thing|strong=\"H2063\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* it|strong=\"H3588\"* has|strong=\"H3068\"* pleased|strong=\"H2974\"* you|strong=\"H3588\"* to|strong=\"H3068\"* bless|strong=\"H1288\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* continue|strong=\"H1961\"* forever|strong=\"H5769\"* before|strong=\"H6440\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* blessed|strong=\"H1288\"*, and|strong=\"H3068\"* it|strong=\"H3588\"* is|strong=\"H3068\"* blessed|strong=\"H1288\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, David|strong=\"H1732\"* defeated|strong=\"H5221\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"* and|strong=\"H3027\"* subdued|strong=\"H3665\"* them|strong=\"H5221\"*, and|strong=\"H3027\"* took|strong=\"H3947\"* Gath|strong=\"H1661\"* and|strong=\"H3027\"* its|strong=\"H1961\"* towns|strong=\"H1323\"* out|strong=\"H3947\"* of|strong=\"H1323\"* the|strong=\"H3947\"* hand|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3947\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1732\"* defeated|strong=\"H5221\"* Moab|strong=\"H4124\"*; and|strong=\"H5650\"* the|strong=\"H5221\"* Moabites|strong=\"H4124\"* became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1961\"* David|strong=\"H1732\"* and|strong=\"H5650\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* defeated|strong=\"H5221\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, toward|strong=\"H3027\"* Hamath|strong=\"H2574\"*, as|strong=\"H2574\"* he|strong=\"H1732\"* went|strong=\"H3212\"* to|strong=\"H3212\"* establish|strong=\"H5324\"* his|strong=\"H1732\"* dominion|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H5221\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 4, + "text": "David|strong=\"H1732\"* took|strong=\"H3920\"* from|strong=\"H4480\"* him|strong=\"H3605\"* one|strong=\"H3605\"* thousand chariots|strong=\"H7393\"*, seven|strong=\"H7651\"* thousand horsemen|strong=\"H6571\"*, and|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand footmen|strong=\"H7273\"*; and|strong=\"H3967\"* David|strong=\"H1732\"* hamstrung all|strong=\"H3605\"* the|strong=\"H3605\"* chariot|strong=\"H7393\"* horses|strong=\"H6571\"*, but|strong=\"H3498\"* reserved|strong=\"H3498\"* of|strong=\"H4480\"* them|strong=\"H4480\"* enough|strong=\"H3605\"* for|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 5, + "text": "When the|strong=\"H5221\"* Syrians of|strong=\"H4428\"* Damascus|strong=\"H1834\"* came|strong=\"H4428\"* to|strong=\"H4428\"* help|strong=\"H5826\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*, David|strong=\"H1732\"* struck|strong=\"H5221\"* twenty-two|strong=\"H6242\"* thousand men|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5221\"* Syrians." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* David|strong=\"H1732\"* put|strong=\"H7760\"* garrisons in|strong=\"H1980\"* Syria of|strong=\"H3068\"* Damascus|strong=\"H1834\"*; and|strong=\"H1980\"* the|strong=\"H3605\"* Syrians became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"* and|strong=\"H1980\"* brought|strong=\"H5375\"* tribute|strong=\"H4503\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* shields|strong=\"H7982\"* of|strong=\"H5650\"* gold|strong=\"H2091\"* that|strong=\"H1732\"* were|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Hadadezer|strong=\"H1909\"*, and|strong=\"H2091\"* brought|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "From|strong=\"H3947\"* Tibhath|strong=\"H2880\"* and|strong=\"H5892\"* from|strong=\"H3947\"* Cun|strong=\"H3560\"*, cities|strong=\"H5892\"* of|strong=\"H5892\"* Hadadezer|strong=\"H1909\"*, David|strong=\"H1732\"* took|strong=\"H3947\"* very|strong=\"H3966\"* much|strong=\"H7227\"* bronze|strong=\"H5178\"*, with|strong=\"H6213\"* which|strong=\"H5892\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* the|strong=\"H3947\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"*, the|strong=\"H3947\"* pillars|strong=\"H5982\"*, and|strong=\"H5892\"* the|strong=\"H3947\"* vessels|strong=\"H3627\"* of|strong=\"H5892\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 9, + "text": "When|strong=\"H3588\"* Tou|strong=\"H8583\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H4428\"* Hadadezer|strong=\"H1909\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Zobah|strong=\"H6678\"*," + }, + { + "verseNum": 10, + "text": "he|strong=\"H3588\"* sent|strong=\"H7971\"* Hadoram|strong=\"H1913\"* his|strong=\"H3605\"* son|strong=\"H1121\"* to|strong=\"H7971\"* King|strong=\"H4428\"* David|strong=\"H1732\"* to|strong=\"H7971\"* greet|strong=\"H7592\"* him|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H7971\"* bless|strong=\"H1288\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* Hadadezer|strong=\"H1909\"* and|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5921\"* (for|strong=\"H3588\"* Hadadezer|strong=\"H1909\"* had|strong=\"H1961\"* wars|strong=\"H4421\"* with|strong=\"H5921\"* Tou|strong=\"H8583\"*); and|strong=\"H1121\"* he|strong=\"H3588\"* had|strong=\"H1961\"* with|strong=\"H5921\"* him|strong=\"H5921\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* vessels|strong=\"H3627\"* of|strong=\"H1121\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 11, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* also|strong=\"H1571\"* dedicated|strong=\"H6942\"* these|strong=\"H3605\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* that|strong=\"H3605\"* he|strong=\"H3068\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* from|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*: from|strong=\"H1121\"* Edom, from|strong=\"H1121\"* Moab|strong=\"H4124\"*, from|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, from|strong=\"H1121\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H1121\"* from|strong=\"H1121\"* Amalek|strong=\"H6002\"*." + }, + { + "verseNum": 12, + "text": "Moreover Abishai the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* struck|strong=\"H5221\"* eighteen|strong=\"H8083\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* Edomites in|strong=\"H1121\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* Salt|strong=\"H4417\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* put|strong=\"H7760\"* garrisons|strong=\"H5333\"* in|strong=\"H1980\"* Edom; and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Edomites became|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H1980\"* David|strong=\"H1732\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7760\"* victory|strong=\"H3467\"* to|strong=\"H1980\"* David|strong=\"H1732\"* wherever|strong=\"H3605\"* he|strong=\"H3068\"* went|strong=\"H1980\"*." + }, + { + "verseNum": 14, + "text": "David|strong=\"H1732\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H6213\"* executed|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* was|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H6635\"*; Jehoshaphat|strong=\"H3092\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahilud was|strong=\"H1121\"* recorder|strong=\"H2142\"*;" + }, + { + "verseNum": 16, + "text": "Zadok|strong=\"H6659\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub and|strong=\"H1121\"* Abimelech the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar were|strong=\"H1121\"* priests|strong=\"H3548\"*; Shavsha|strong=\"H7798\"* was|strong=\"H1121\"* scribe|strong=\"H5608\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* was|strong=\"H1732\"* over|strong=\"H5921\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"* and|strong=\"H1121\"* the|strong=\"H5921\"* Pelethites|strong=\"H6432\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* were|strong=\"H1121\"* chief|strong=\"H7223\"* officials serving the|strong=\"H5921\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H1961\"* this|strong=\"H3651\"*, Nahash|strong=\"H5176\"* the|strong=\"H8478\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H8478\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* died|strong=\"H4191\"*, and|strong=\"H1121\"* his|strong=\"H1961\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H1961\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said, “I|strong=\"H3588\"* will|strong=\"H5650\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* Hanun|strong=\"H2586\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nahash|strong=\"H5176\"*, because|strong=\"H3588\"* his|strong=\"H7971\"* father|strong=\"H1121\"* showed|strong=\"H6213\"* kindness|strong=\"H2617\"* to|strong=\"H7971\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* said to|strong=\"H7971\"* Hanun|strong=\"H2586\"*, “Do|strong=\"H5869\"* you|strong=\"H3588\"* think|strong=\"H5869\"* that|strong=\"H3588\"* David|strong=\"H1732\"* honors|strong=\"H3513\"* your|strong=\"H3588\"* father|strong=\"H1121\"*, in|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H5650\"* sent|strong=\"H7971\"* comforters|strong=\"H5162\"* to|strong=\"H7971\"* you|strong=\"H3588\"*? Haven’t his|strong=\"H7971\"* servants|strong=\"H5650\"* come|strong=\"H2015\"* to|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H7971\"* search|strong=\"H2713\"*, to|strong=\"H7971\"* overthrow|strong=\"H2015\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* spy|strong=\"H7270\"* out|strong=\"H7971\"* the|strong=\"H3588\"* land?”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3947\"* Hanun|strong=\"H2586\"* took|strong=\"H3947\"* David|strong=\"H1732\"*’s servants|strong=\"H5650\"*, shaved|strong=\"H1548\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* their|strong=\"H3947\"* garments|strong=\"H4063\"* in|strong=\"H5650\"* the|strong=\"H3947\"* middle|strong=\"H2677\"* at|strong=\"H1732\"* their|strong=\"H3947\"* buttocks|strong=\"H4667\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* some people|strong=\"H3427\"* went|strong=\"H3212\"* and|strong=\"H7971\"* told|strong=\"H5046\"* David|strong=\"H1732\"* how|strong=\"H3588\"* the|strong=\"H5921\"* men were|strong=\"H1961\"* treated. He|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* meet|strong=\"H7125\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* men were|strong=\"H1961\"* greatly|strong=\"H3966\"* humiliated|strong=\"H3637\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* said, “Stay|strong=\"H3427\"* at|strong=\"H3427\"* Jericho|strong=\"H3405\"* until|strong=\"H5704\"* your|strong=\"H5921\"* beards|strong=\"H2206\"* have|strong=\"H1961\"* grown|strong=\"H6779\"*, and|strong=\"H7971\"* then|strong=\"H1961\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* made|strong=\"H5983\"* themselves odious to|strong=\"H7971\"* David|strong=\"H1732\"*, Hanun|strong=\"H2586\"* and|strong=\"H1121\"* the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* sent|strong=\"H7971\"* one|strong=\"H4480\"* thousand talents|strong=\"H3603\"*+ 19:6 A talent is about 30 kilograms or 66 pounds, so 1000 talents is about 30 metric tons* of|strong=\"H1121\"* silver|strong=\"H3701\"* to|strong=\"H7971\"* hire|strong=\"H7936\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* horsemen|strong=\"H6571\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Mesopotamia, out|strong=\"H7971\"* of|strong=\"H1121\"* Aram-maacah, and|strong=\"H1121\"* out|strong=\"H7971\"* of|strong=\"H1121\"* Zobah|strong=\"H6678\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H7936\"* they|strong=\"H5971\"* hired|strong=\"H7936\"* for|strong=\"H6440\"* themselves|strong=\"H6440\"* thirty-two|strong=\"H7970\"* thousand chariots|strong=\"H7393\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* with|strong=\"H6440\"* his|strong=\"H6440\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* came|strong=\"H5971\"* and|strong=\"H1121\"* encamped|strong=\"H2583\"* near|strong=\"H6440\"* Medeba|strong=\"H4311\"*. The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* gathered themselves|strong=\"H6440\"* together|strong=\"H8147\"* from|strong=\"H6440\"* their|strong=\"H6440\"* cities|strong=\"H5892\"*, and|strong=\"H1121\"* came|strong=\"H5971\"* to|strong=\"H6440\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H8085\"* David|strong=\"H1732\"* heard|strong=\"H8085\"* of|strong=\"H6635\"* it|strong=\"H7971\"*, he|strong=\"H3605\"* sent|strong=\"H7971\"* Joab|strong=\"H3097\"* with|strong=\"H1732\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3318\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* put|strong=\"H3318\"* the|strong=\"H3318\"* battle|strong=\"H4421\"* in|strong=\"H4428\"* array|strong=\"H6186\"* at|strong=\"H4421\"* the|strong=\"H3318\"* gate|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3318\"* city|strong=\"H5892\"*; and|strong=\"H1121\"* the|strong=\"H3318\"* kings|strong=\"H4428\"* who|strong=\"H1121\"* had|strong=\"H4428\"* come|strong=\"H3318\"* were|strong=\"H1121\"* by|strong=\"H3318\"* themselves|strong=\"H6186\"* in|strong=\"H4428\"* the|strong=\"H3318\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* Joab|strong=\"H3097\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* was|strong=\"H1961\"* set|strong=\"H6186\"* against|strong=\"H7125\"* him|strong=\"H6440\"* before|strong=\"H6440\"* and|strong=\"H3478\"* behind, he|strong=\"H3588\"* chose some|strong=\"H3605\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* choice|strong=\"H7200\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* put|strong=\"H6186\"* them|strong=\"H6440\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H3605\"* Syrians." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* he|strong=\"H3027\"* committed|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Abishai his|strong=\"H5414\"* brother; and|strong=\"H1121\"* they|strong=\"H5971\"* put|strong=\"H5414\"* themselves|strong=\"H6186\"* in|strong=\"H1121\"* array|strong=\"H6186\"* against|strong=\"H7125\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H4480\"* said, “If|strong=\"H1961\"* the|strong=\"H4480\"* Syrians are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* me|strong=\"H4480\"*, then|strong=\"H1961\"* you|strong=\"H4480\"* are|strong=\"H1121\"* to|strong=\"H1961\"* help|strong=\"H3467\"* me|strong=\"H4480\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* are|strong=\"H1121\"* too|strong=\"H4480\"* strong|strong=\"H2388\"* for|strong=\"H1121\"* you|strong=\"H4480\"*, then|strong=\"H1961\"* I|strong=\"H1121\"* will|strong=\"H1961\"* help|strong=\"H3467\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H3068\"* courageous|strong=\"H2388\"*, and|strong=\"H3068\"* let’s be|strong=\"H3068\"* strong|strong=\"H2388\"* for|strong=\"H6213\"* our|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* for|strong=\"H6213\"* the|strong=\"H6213\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* that|strong=\"H5971\"* which|strong=\"H3068\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3068\"* him|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5066\"* Joab|strong=\"H3097\"* and|strong=\"H5971\"* the|strong=\"H6440\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H6440\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6440\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Syrians to|strong=\"H6440\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*; and|strong=\"H5971\"* they|strong=\"H5971\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H6440\"* Syrians had|strong=\"H3588\"* fled|strong=\"H5127\"*, they|strong=\"H1992\"* likewise|strong=\"H1571\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* Abishai his|strong=\"H6440\"* brother, and|strong=\"H1121\"* entered into|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H1571\"* Joab|strong=\"H3097\"* came|strong=\"H5983\"* to|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* Syrians saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3318\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* and|strong=\"H3478\"* called out|strong=\"H3318\"* the|strong=\"H6440\"* Syrians who|strong=\"H3478\"* were|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H6440\"* River|strong=\"H5104\"*,+ 19:16 or, the Euphrates River* with|strong=\"H6440\"* Shophach|strong=\"H7780\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"* of|strong=\"H8269\"* Hadadezer|strong=\"H1909\"* leading|strong=\"H8269\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* was|strong=\"H1732\"* told|strong=\"H5046\"* that|strong=\"H3605\"*, so|strong=\"H5674\"* he|strong=\"H3605\"* gathered|strong=\"H1732\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* together|strong=\"H5973\"*, passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H5674\"*, and|strong=\"H3478\"* set|strong=\"H6186\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* them|strong=\"H5674\"*. So|strong=\"H5674\"* when|strong=\"H5674\"* David|strong=\"H1732\"* had|strong=\"H3478\"* put|strong=\"H5674\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* in|strong=\"H3478\"* array|strong=\"H6186\"* against|strong=\"H5973\"* the|strong=\"H3605\"* Syrians, they|strong=\"H3478\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5046\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H6440\"* Syrians fled|strong=\"H5127\"* before|strong=\"H6440\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* killed|strong=\"H2026\"* of|strong=\"H8269\"* the|strong=\"H6440\"* Syrian men|strong=\"H7651\"* seven|strong=\"H7651\"* thousand charioteers|strong=\"H7393\"* and|strong=\"H3478\"* forty thousand footmen|strong=\"H7273\"*, and|strong=\"H3478\"* also|strong=\"H1732\"* killed|strong=\"H2026\"* Shophach|strong=\"H7780\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* army|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* the|strong=\"H6440\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* Hadadezer|strong=\"H1909\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* made|strong=\"H7999\"* peace|strong=\"H7999\"* with|strong=\"H5973\"* David|strong=\"H1732\"* and|strong=\"H1121\"* served|strong=\"H5647\"* him|strong=\"H6440\"*. The|strong=\"H6440\"* Syrians would|strong=\"H3478\"* not|strong=\"H3808\"* help|strong=\"H3467\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3427\"* the|strong=\"H5221\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H5221\"* return|strong=\"H8666\"* of|strong=\"H1121\"* the|strong=\"H5221\"* year|strong=\"H8141\"*, at|strong=\"H3427\"* the|strong=\"H5221\"* time|strong=\"H6256\"* when|strong=\"H1961\"* kings|strong=\"H4428\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, Joab|strong=\"H3097\"* led|strong=\"H5090\"* out|strong=\"H3318\"* the|strong=\"H5221\"* army|strong=\"H6635\"* and|strong=\"H1121\"* wasted|strong=\"H7843\"* the|strong=\"H5221\"* country of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* came|strong=\"H1961\"* and|strong=\"H1121\"* besieged|strong=\"H6696\"* Rabbah|strong=\"H7237\"*. But|strong=\"H1961\"* David|strong=\"H1732\"* stayed|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. Joab|strong=\"H3097\"* struck|strong=\"H5221\"* Rabbah|strong=\"H7237\"*, and|strong=\"H1121\"* overthrew|strong=\"H2040\"* it|strong=\"H5221\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* took|strong=\"H3947\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* their|strong=\"H3947\"* king|strong=\"H4428\"* from|strong=\"H3318\"* off|strong=\"H5921\"* his|strong=\"H3947\"* head|strong=\"H7218\"*, and|strong=\"H4428\"* found|strong=\"H4672\"* it|strong=\"H5921\"* to|strong=\"H3318\"* weigh|strong=\"H4948\"* a|strong=\"H3068\"* talent|strong=\"H3603\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*,+ 20:2 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* and|strong=\"H4428\"* there|strong=\"H1961\"* were|strong=\"H1961\"* precious|strong=\"H3368\"* stones in|strong=\"H5921\"* it|strong=\"H5921\"*. It|strong=\"H5921\"* was|strong=\"H1961\"* set|strong=\"H3318\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s head|strong=\"H7218\"*, and|strong=\"H4428\"* he|strong=\"H1732\"* brought|strong=\"H3318\"* very|strong=\"H3966\"* much|strong=\"H7235\"* plunder|strong=\"H7998\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3651\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H6213\"* it|strong=\"H6213\"*, and|strong=\"H1121\"* had|strong=\"H1732\"* them|strong=\"H7725\"* cut|strong=\"H7787\"* with|strong=\"H6213\"* saws|strong=\"H4050\"*, with|strong=\"H6213\"* iron|strong=\"H1270\"* picks|strong=\"H2757\"*, and|strong=\"H1121\"* with|strong=\"H6213\"* axes|strong=\"H4050\"*. David|strong=\"H1732\"* did|strong=\"H6213\"* so|strong=\"H3651\"* to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Then|strong=\"H3318\"* David|strong=\"H1732\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* this|strong=\"H5975\"*, war|strong=\"H4421\"* arose|strong=\"H5975\"* at|strong=\"H4421\"* Gezer|strong=\"H1507\"* with|strong=\"H5973\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*. Then|strong=\"H1961\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5221\"* Hushathite|strong=\"H2843\"* killed|strong=\"H5221\"* Sippai|strong=\"H5598\"*, of|strong=\"H5221\"* the|strong=\"H5221\"* sons|strong=\"H3211\"* of|strong=\"H5221\"* the|strong=\"H5221\"* giant|strong=\"H7497\"*; and|strong=\"H5975\"* they|strong=\"H5221\"* were|strong=\"H1961\"* subdued|strong=\"H3665\"*." + }, + { + "verseNum": 5, + "text": "Again|strong=\"H5750\"* there|strong=\"H1961\"* was|strong=\"H1961\"* war|strong=\"H4421\"* with|strong=\"H4421\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*; and|strong=\"H1121\"* Elhanan the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jair|strong=\"H3265\"* killed|strong=\"H5221\"* Lahmi|strong=\"H3902\"* the|strong=\"H5221\"* brother of|strong=\"H1121\"* Goliath|strong=\"H1555\"* the|strong=\"H5221\"* Gittite|strong=\"H1663\"*, the|strong=\"H5221\"* staff|strong=\"H6086\"* of|strong=\"H1121\"* whose|strong=\"H1121\"* spear|strong=\"H2595\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* weaver’s beam|strong=\"H4500\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* again|strong=\"H5750\"* war|strong=\"H4421\"* at|strong=\"H4421\"* Gath|strong=\"H1661\"*, where there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* man of|strong=\"H3205\"* great stature|strong=\"H4060\"*, who|strong=\"H1931\"* had|strong=\"H1961\"* twenty-four|strong=\"H6242\"* fingers and|strong=\"H6242\"* toes, six|strong=\"H8337\"* on|strong=\"H1961\"* each hand and|strong=\"H6242\"* six|strong=\"H8337\"* on|strong=\"H1961\"* each foot; and|strong=\"H6242\"* he|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H1961\"* the|strong=\"H3205\"* giant|strong=\"H7497\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H1121\"* he|strong=\"H1732\"* defied|strong=\"H2778\"* Israel|strong=\"H3478\"*, Jonathan|strong=\"H3083\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimea|strong=\"H8092\"*, David|strong=\"H1732\"*’s brother, killed|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 8, + "text": "These|strong=\"H1732\"* were|strong=\"H3027\"* born|strong=\"H3205\"* to|strong=\"H3027\"* the|strong=\"H3205\"* giant|strong=\"H7497\"* in|strong=\"H5650\"* Gath|strong=\"H1661\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* David|strong=\"H1732\"* and|strong=\"H3027\"* by|strong=\"H3027\"* the|strong=\"H3205\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H1732\"* servants|strong=\"H5650\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Satan|strong=\"H7854\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* moved|strong=\"H5496\"* David|strong=\"H1732\"* to|strong=\"H3478\"* take|strong=\"H5975\"* a|strong=\"H3068\"* census of|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Joab|strong=\"H3097\"* and|strong=\"H3478\"* to|strong=\"H5704\"* the|strong=\"H3045\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3045\"* people|strong=\"H5971\"*, “Go|strong=\"H3212\"*, count|strong=\"H5608\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Beersheba even|strong=\"H5704\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*; and|strong=\"H3478\"* bring|strong=\"H3212\"* me|strong=\"H3045\"* word, that|strong=\"H3045\"* I|strong=\"H5704\"* may|strong=\"H5971\"* know|strong=\"H3045\"* how|strong=\"H3045\"* many|strong=\"H5704\"* there|strong=\"H3045\"* are|strong=\"H5971\"*.”" + }, + { + "verseNum": 3, + "text": "Joab|strong=\"H3097\"* said, “May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* make|strong=\"H3254\"* his|strong=\"H3605\"* people|strong=\"H5971\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* times|strong=\"H6471\"* as|strong=\"H1961\"* many|strong=\"H4100\"* as|strong=\"H1961\"* they|strong=\"H1992\"* are|strong=\"H1992\"*. But|strong=\"H3808\"*, my|strong=\"H3605\"* lord|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, aren’t they|strong=\"H1992\"* all|strong=\"H3605\"* my|strong=\"H3605\"* lord|strong=\"H3068\"*’s servants|strong=\"H5650\"*? Why|strong=\"H4100\"* does|strong=\"H4100\"* my|strong=\"H3605\"* lord|strong=\"H3068\"* require|strong=\"H1245\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*? Why|strong=\"H4100\"* will|strong=\"H3068\"* he|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* cause|strong=\"H5971\"* of|strong=\"H4428\"* guilt to|strong=\"H3478\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 4, + "text": "Nevertheless the|strong=\"H3605\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* Joab|strong=\"H3097\"*. Therefore|strong=\"H5921\"* Joab|strong=\"H3097\"* departed|strong=\"H1980\"* and|strong=\"H1980\"* went|strong=\"H1980\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, then|strong=\"H1980\"* came|strong=\"H3318\"* to|strong=\"H1980\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Joab|strong=\"H3097\"* gave|strong=\"H5414\"* the|strong=\"H3605\"* sum|strong=\"H4557\"* of|strong=\"H4557\"* the|strong=\"H3605\"* census|strong=\"H4662\"* of|strong=\"H4557\"* the|strong=\"H3605\"* people|strong=\"H5971\"* to|strong=\"H3478\"* David|strong=\"H1732\"*. All|strong=\"H3605\"* those|strong=\"H3605\"* of|strong=\"H4557\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* one|strong=\"H3605\"* million one|strong=\"H3605\"* hundred|strong=\"H3967\"* thousand men|strong=\"H5971\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*; and|strong=\"H3967\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* were|strong=\"H3478\"* four hundred|strong=\"H3967\"* seventy|strong=\"H7657\"* thousand men|strong=\"H5971\"* who|strong=\"H3605\"* drew|strong=\"H8025\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* didn’t count Levi|strong=\"H3878\"* and|strong=\"H4428\"* Benjamin|strong=\"H1144\"* among|strong=\"H8432\"* them|strong=\"H8432\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* was|strong=\"H1697\"* abominable|strong=\"H8581\"* to|strong=\"H4428\"* Joab|strong=\"H3097\"*." + }, + { + "verseNum": 7, + "text": "God was|strong=\"H3478\"* displeased|strong=\"H7489\"* with|strong=\"H5921\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*; therefore|strong=\"H5921\"* he|strong=\"H5921\"* struck|strong=\"H5221\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "David|strong=\"H1732\"* said|strong=\"H1697\"* to|strong=\"H6213\"* God, “I|strong=\"H3588\"* have|strong=\"H5650\"* sinned|strong=\"H2398\"* greatly|strong=\"H3966\"*, in|strong=\"H6213\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5650\"* done|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*. But|strong=\"H3588\"* now|strong=\"H6258\"* put|strong=\"H6213\"* away|strong=\"H5674\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, the|strong=\"H3588\"* iniquity|strong=\"H5771\"* of|strong=\"H1697\"* your|strong=\"H6213\"* servant|strong=\"H5650\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5650\"* done|strong=\"H6213\"* very|strong=\"H3966\"* foolishly|strong=\"H5528\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Gad|strong=\"H1410\"*, David|strong=\"H1732\"*’s seer|strong=\"H2374\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 10, + "text": "“Go|strong=\"H3212\"* and|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* David|strong=\"H1732\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3541\"* offer|strong=\"H6213\"* you|strong=\"H5921\"* three|strong=\"H7969\"* things|strong=\"H7969\"*. Choose one|strong=\"H6213\"* of|strong=\"H3068\"* them|strong=\"H5921\"*, that|strong=\"H3068\"* I|strong=\"H3541\"* may|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"* to|strong=\"H1696\"* you|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3541\"* Gad|strong=\"H1410\"* came|strong=\"H3068\"* to|strong=\"H3068\"* David|strong=\"H1732\"* and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H1732\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Take|strong=\"H6901\"* your|strong=\"H3068\"* choice:" + }, + { + "verseNum": 12, + "text": "either|strong=\"H1697\"* three|strong=\"H7969\"* years|strong=\"H8141\"* of|strong=\"H3068\"* famine|strong=\"H7458\"*; or|strong=\"H3117\"* three|strong=\"H7969\"* months|strong=\"H2320\"* to|strong=\"H7725\"* be|strong=\"H1697\"* consumed|strong=\"H5595\"* before|strong=\"H6440\"* your|strong=\"H3068\"* foes|strong=\"H6862\"*, while|strong=\"H3117\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* your|strong=\"H3068\"* enemies|strong=\"H6862\"* overtakes|strong=\"H5381\"* you|strong=\"H6440\"*; or|strong=\"H3117\"* else|strong=\"H3605\"* three|strong=\"H7969\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* pestilence|strong=\"H1698\"* in|strong=\"H8141\"* the|strong=\"H3605\"* land|strong=\"H6440\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* destroying|strong=\"H7843\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* borders|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Now|strong=\"H6258\"* therefore|strong=\"H6258\"* consider|strong=\"H7200\"* what|strong=\"H4100\"* answer|strong=\"H7725\"* I|strong=\"H3117\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"* who|strong=\"H3605\"* sent|strong=\"H7971\"* me|strong=\"H6440\"*.’”" + }, + { + "verseNum": 13, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Gad|strong=\"H1410\"*, “I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*. Let|strong=\"H4994\"* me|strong=\"H4994\"* fall|strong=\"H5307\"*, I|strong=\"H3588\"* pray|strong=\"H4994\"*, into|strong=\"H5307\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* mercies|strong=\"H7356\"* are|strong=\"H3027\"* very|strong=\"H3966\"* great|strong=\"H7227\"*. Don’t let|strong=\"H4994\"* me|strong=\"H4994\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* man|strong=\"H5307\"*’s hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5414\"* Yahweh|strong=\"H3068\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* on|strong=\"H5307\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* seventy|strong=\"H7657\"* thousand men|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"*." + }, + { + "verseNum": 15, + "text": "God|strong=\"H3068\"* sent|strong=\"H7971\"* an|strong=\"H7200\"* angel|strong=\"H4397\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*. As|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* about|strong=\"H5921\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"*, Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H3068\"* the|strong=\"H5921\"* disaster|strong=\"H7451\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* the|strong=\"H5921\"* destroying|strong=\"H7843\"* angel|strong=\"H4397\"*, “It|strong=\"H5921\"* is|strong=\"H3068\"* enough|strong=\"H7227\"*. Now|strong=\"H6258\"* withdraw your|strong=\"H3068\"* hand|strong=\"H3027\"*.” Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* was|strong=\"H3068\"* standing|strong=\"H5975\"* by|strong=\"H3027\"* the|strong=\"H5921\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H5921\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 16, + "text": "David|strong=\"H1732\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* standing|strong=\"H5975\"* between|strong=\"H5921\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*, having a|strong=\"H3068\"* drawn|strong=\"H8025\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* God|strong=\"H3068\"*, “Isn’t it|strong=\"H1931\"* I|strong=\"H3808\"* who|strong=\"H1931\"* commanded the|strong=\"H6213\"* people|strong=\"H5971\"* to|strong=\"H3068\"* be|strong=\"H1961\"* counted|strong=\"H4487\"*? It|strong=\"H1931\"* is|strong=\"H3068\"* even|strong=\"H3808\"* I|strong=\"H3808\"* who|strong=\"H1931\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* and|strong=\"H3068\"* done|strong=\"H6213\"* very|strong=\"H6213\"* wickedly|strong=\"H7489\"*; but|strong=\"H3808\"* these|strong=\"H6213\"* sheep|strong=\"H6629\"*, what|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3068\"* done|strong=\"H6213\"*? Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H1961\"* against|strong=\"H2398\"* me|strong=\"H4994\"* and|strong=\"H3068\"* against|strong=\"H2398\"* my|strong=\"H3068\"* father’s house|strong=\"H1004\"*; but|strong=\"H3808\"* not|strong=\"H3808\"* against|strong=\"H2398\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* plagued|strong=\"H4046\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H6965\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* commanded Gad|strong=\"H1410\"* to|strong=\"H3068\"* tell David|strong=\"H1732\"* that|strong=\"H3588\"* David|strong=\"H1732\"* should|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H6965\"* raise|strong=\"H6965\"* an|strong=\"H6965\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H3588\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H3588\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 19, + "text": "David|strong=\"H1732\"* went|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H3068\"* the|strong=\"H3068\"* saying|strong=\"H1697\"* of|strong=\"H3068\"* Gad|strong=\"H1410\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 20, + "text": "Ornan turned|strong=\"H7725\"* back|strong=\"H7725\"* and|strong=\"H1121\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* angel|strong=\"H4397\"*; and|strong=\"H1121\"* his|strong=\"H7725\"* four sons|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H7725\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"*. Now Ornan was|strong=\"H1121\"* threshing|strong=\"H1758\"* wheat|strong=\"H2406\"*." + }, + { + "verseNum": 21, + "text": "As|strong=\"H5704\"* David|strong=\"H1732\"* came|strong=\"H3318\"* to|strong=\"H5704\"* Ornan, Ornan looked|strong=\"H7200\"* and|strong=\"H1732\"* saw|strong=\"H7200\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, and|strong=\"H1732\"* bowed|strong=\"H7812\"* himself|strong=\"H7812\"* to|strong=\"H5704\"* David|strong=\"H1732\"* with|strong=\"H3318\"* his|strong=\"H1732\"* face|strong=\"H7200\"* to|strong=\"H5704\"* the|strong=\"H7200\"* ground." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5414\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* Ornan, “Sell|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3068\"* this|strong=\"H5414\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"*, that|strong=\"H5971\"* I|strong=\"H5414\"* may|strong=\"H3068\"* build|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H5414\"*. You|strong=\"H5414\"* shall|strong=\"H3068\"* sell|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* me|strong=\"H5414\"* for|strong=\"H5921\"* the|strong=\"H5921\"* full|strong=\"H4392\"* price|strong=\"H3701\"*, that|strong=\"H5971\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* may|strong=\"H3068\"* be|strong=\"H3068\"* stopped|strong=\"H6113\"* from|strong=\"H5921\"* afflicting the|strong=\"H5921\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 23, + "text": "Ornan said to|strong=\"H6213\"* David|strong=\"H1732\"*, “Take|strong=\"H3947\"* it|strong=\"H5414\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"*, and|strong=\"H4428\"* let|strong=\"H5414\"* my|strong=\"H5414\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"* do|strong=\"H6213\"* that|strong=\"H7200\"* which|strong=\"H5869\"* is|strong=\"H2896\"* good|strong=\"H2896\"* in|strong=\"H6213\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. Behold|strong=\"H7200\"*, I|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H3605\"* oxen|strong=\"H1241\"* for|strong=\"H6213\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* threshing|strong=\"H4173\"* instruments|strong=\"H4173\"* for|strong=\"H6213\"* wood|strong=\"H6086\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* wheat|strong=\"H2406\"* for|strong=\"H6213\"* the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* all|strong=\"H3605\"*.”" + }, + { + "verseNum": 24, + "text": "King|strong=\"H4428\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* Ornan, “No|strong=\"H3808\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* most|strong=\"H3068\"* certainly|strong=\"H3588\"* buy|strong=\"H7069\"* it|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H3588\"* full|strong=\"H4392\"* price|strong=\"H3701\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H5375\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* yours for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, nor|strong=\"H3808\"* offer|strong=\"H5927\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* that|strong=\"H3588\"* costs|strong=\"H2600\"* me|strong=\"H2600\"* nothing|strong=\"H3808\"*.”" + }, + { + "verseNum": 25, + "text": "So|strong=\"H5414\"* David|strong=\"H1732\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Ornan six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels|strong=\"H8255\"*+ 21:25 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.* of|strong=\"H8255\"* gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H5414\"* the|strong=\"H5414\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 26, + "text": "David|strong=\"H1732\"* built|strong=\"H1129\"* an|strong=\"H1129\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* there|strong=\"H8033\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H8033\"* answered|strong=\"H6030\"* him|strong=\"H7121\"* from|strong=\"H4480\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* by|strong=\"H5921\"* fire on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H7725\"* Yahweh|strong=\"H3068\"* commanded the|strong=\"H3068\"* angel|strong=\"H4397\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* put|strong=\"H7725\"* his|strong=\"H3068\"* sword|strong=\"H2719\"* back|strong=\"H7725\"* into|strong=\"H7725\"* its|strong=\"H7725\"* sheath|strong=\"H5084\"*." + }, + { + "verseNum": 28, + "text": "At|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, when|strong=\"H3588\"* David|strong=\"H1732\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* answered|strong=\"H6030\"* him|strong=\"H7200\"* in|strong=\"H3068\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H3068\"* Ornan the|strong=\"H7200\"* Jebusite|strong=\"H2983\"*, then|strong=\"H6030\"* he|strong=\"H1931\"* sacrificed|strong=\"H2076\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*, which|strong=\"H1931\"* Moses|strong=\"H4872\"* made|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* wilderness|strong=\"H4057\"*, and|strong=\"H4872\"* the|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, were|strong=\"H4057\"* at|strong=\"H3068\"* that|strong=\"H1931\"* time|strong=\"H6256\"* in|strong=\"H3068\"* the|strong=\"H6213\"* high|strong=\"H1116\"* place|strong=\"H1116\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* couldn’t go|strong=\"H3212\"* before|strong=\"H6440\"* it|strong=\"H3588\"* to|strong=\"H3201\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* afraid|strong=\"H1204\"* because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2088\"* David|strong=\"H1732\"* said, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3478\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* altar|strong=\"H4196\"* of|strong=\"H1004\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* for|strong=\"H3068\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"* gave orders to|strong=\"H3478\"* gather|strong=\"H3664\"* together|strong=\"H3664\"* the|strong=\"H1129\"* foreigners|strong=\"H1616\"* who|strong=\"H1616\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H1129\"* land of|strong=\"H1004\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* he|strong=\"H1004\"* set|strong=\"H5975\"* masons|strong=\"H2672\"* to|strong=\"H3478\"* cut|strong=\"H1496\"* dressed stones|strong=\"H1496\"* to|strong=\"H3478\"* build|strong=\"H1129\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"* prepared|strong=\"H3559\"* iron|strong=\"H1270\"* in|strong=\"H1732\"* abundance|strong=\"H7230\"* for|strong=\"H3559\"* the|strong=\"H1732\"* nails|strong=\"H4548\"* for|strong=\"H3559\"* the|strong=\"H1732\"* doors|strong=\"H1817\"* of|strong=\"H8179\"* the|strong=\"H1732\"* gates|strong=\"H8179\"* and|strong=\"H1732\"* for|strong=\"H3559\"* the|strong=\"H1732\"* couplings|strong=\"H4226\"*, and|strong=\"H1732\"* bronze|strong=\"H5178\"* in|strong=\"H1732\"* abundance|strong=\"H7230\"* without|strong=\"H7230\"* weight|strong=\"H4948\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H6086\"* cedar trees|strong=\"H6086\"* without|strong=\"H3588\"* number|strong=\"H4557\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Sidonians|strong=\"H6722\"* and|strong=\"H6086\"* the|strong=\"H3588\"* people of|strong=\"H4557\"* Tyre|strong=\"H6876\"* brought|strong=\"H1732\"* cedar trees|strong=\"H6086\"* in|strong=\"H6086\"* abundance|strong=\"H7230\"* to|strong=\"H1732\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 5, + "text": "David|strong=\"H1732\"* said, “Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"* is|strong=\"H3068\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* that|strong=\"H3605\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H6440\"* Yahweh|strong=\"H3068\"* must|strong=\"H1121\"* be|strong=\"H3068\"* exceedingly|strong=\"H4605\"* magnificent|strong=\"H1431\"*, of|strong=\"H1121\"* fame|strong=\"H8034\"* and|strong=\"H1121\"* of|strong=\"H1121\"* glory|strong=\"H8597\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* countries. I|strong=\"H5288\"* will|strong=\"H3068\"* therefore|strong=\"H1732\"* make|strong=\"H1431\"* preparation|strong=\"H3559\"* for|strong=\"H6440\"* it|strong=\"H8034\"*.” So|strong=\"H1431\"* David|strong=\"H1732\"* prepared|strong=\"H3559\"* abundantly|strong=\"H7230\"* before|strong=\"H6440\"* his|strong=\"H3605\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6680\"* he|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* Solomon|strong=\"H8010\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"* to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H7121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "David|strong=\"H1732\"* said to|strong=\"H3068\"* Solomon|strong=\"H8010\"* his|strong=\"H3068\"* son|strong=\"H1121\"*, “As|strong=\"H1961\"* for|strong=\"H8034\"* me|strong=\"H5973\"*, it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3068\"* my|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* abundantly|strong=\"H7230\"* and|strong=\"H3068\"* have|strong=\"H1961\"* made|strong=\"H6213\"* great|strong=\"H1419\"* wars|strong=\"H4421\"*. You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* shed|strong=\"H8210\"* much|strong=\"H7227\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* born|strong=\"H3205\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, who|strong=\"H3605\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* peace|strong=\"H7965\"*. I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* rest|strong=\"H5117\"* from|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* enemies all|strong=\"H3605\"* around|strong=\"H5439\"*; for|strong=\"H3588\"* his|strong=\"H3605\"* name|strong=\"H8034\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* peace|strong=\"H7965\"* and|strong=\"H1121\"* quietness|strong=\"H8253\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H5704\"* my|strong=\"H5921\"* name|strong=\"H8034\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5921\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H5921\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* I|strong=\"H5704\"* will|strong=\"H1961\"* establish|strong=\"H3559\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* his|strong=\"H5921\"* kingdom|strong=\"H4438\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"*, my|strong=\"H3068\"* son|strong=\"H1121\"*, may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H5921\"* and|strong=\"H1121\"* prosper|strong=\"H6743\"* you|strong=\"H5921\"*, and|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, as|strong=\"H1961\"* he|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* discretion|strong=\"H7922\"* and|strong=\"H3478\"* understanding|strong=\"H7922\"*, and|strong=\"H3478\"* put|strong=\"H5414\"* you|strong=\"H5414\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, so|strong=\"H5414\"* that|strong=\"H3068\"* you|strong=\"H5414\"* may|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6213\"* you|strong=\"H6680\"* will|strong=\"H3068\"* prosper|strong=\"H6743\"*, if you|strong=\"H6680\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* the|strong=\"H5921\"* statutes|strong=\"H2706\"* and|strong=\"H4872\"* the|strong=\"H5921\"* ordinances|strong=\"H4941\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* gave|strong=\"H6680\"* Moses|strong=\"H4872\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"* and|strong=\"H4872\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* and|strong=\"H4872\"* don’t be|strong=\"H3068\"* dismayed|strong=\"H2865\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"*, behold|strong=\"H2009\"*, in|strong=\"H5921\"* my|strong=\"H3068\"* affliction|strong=\"H6040\"* I|strong=\"H3588\"* have|strong=\"H1961\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* one|strong=\"H1961\"* hundred|strong=\"H3967\"* thousand talents|strong=\"H3603\"*+ 22:14 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 100,000 talents is about 3 metric tons* of|strong=\"H1004\"* gold|strong=\"H2091\"*, one|strong=\"H1961\"* million talents|strong=\"H3603\"*+ 22:14 about 30,000 metric tons* of|strong=\"H1004\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* bronze|strong=\"H5178\"* and|strong=\"H3967\"* iron|strong=\"H1270\"* without|strong=\"H1004\"* weight|strong=\"H4948\"*; for|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H3068\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"*. I|strong=\"H3588\"* have|strong=\"H1961\"* also|strong=\"H3068\"* prepared|strong=\"H3559\"* timber|strong=\"H6086\"* and|strong=\"H3967\"* stone; and|strong=\"H3967\"* you|strong=\"H3588\"* may|strong=\"H1961\"* add|strong=\"H3254\"* to|strong=\"H3068\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H3605\"* are|strong=\"H2450\"* also|strong=\"H6213\"* workmen|strong=\"H4399\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*—cutters and|strong=\"H6086\"* workers|strong=\"H4399\"* of|strong=\"H7230\"* stone and|strong=\"H6086\"* timber|strong=\"H6086\"*, and|strong=\"H6086\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H7230\"* men|strong=\"H2450\"* who|strong=\"H3605\"* are|strong=\"H2450\"* skillful|strong=\"H2450\"* in|strong=\"H6213\"* every|strong=\"H3605\"* kind of|strong=\"H7230\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H3068\"* the|strong=\"H6213\"* gold|strong=\"H2091\"*, the|strong=\"H6213\"* silver|strong=\"H3701\"*, the|strong=\"H6213\"* bronze|strong=\"H5178\"*, and|strong=\"H6965\"* the|strong=\"H6213\"* iron|strong=\"H1270\"*, there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H6213\"* number|strong=\"H4557\"*. Arise|strong=\"H6965\"* and|strong=\"H6965\"* be|strong=\"H1961\"* doing|strong=\"H6213\"*, and|strong=\"H6965\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* you|strong=\"H6213\"*.”" + }, + { + "verseNum": 17, + "text": "David|strong=\"H1732\"* also|strong=\"H1732\"* commanded|strong=\"H6680\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* help|strong=\"H5826\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, saying," + }, + { + "verseNum": 18, + "text": "“Isn’t Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*? Hasn’t he|strong=\"H3588\"* given|strong=\"H5414\"* you|strong=\"H3588\"* rest|strong=\"H5117\"* on|strong=\"H3427\"* every|strong=\"H5439\"* side|strong=\"H5439\"*? For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* into|strong=\"H3027\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3068\"* subdued|strong=\"H3533\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H6440\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "Now|strong=\"H6258\"* set|strong=\"H5414\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H6965\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* to|strong=\"H3068\"* follow|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Arise|strong=\"H6965\"* therefore|strong=\"H6258\"*, and|strong=\"H6965\"* build|strong=\"H1129\"* the|strong=\"H5414\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* bring|strong=\"H5414\"* the|strong=\"H5414\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* and|strong=\"H6965\"* the|strong=\"H5414\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"* into|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* that|strong=\"H5315\"* is|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H8034\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* David|strong=\"H1732\"* was|strong=\"H1732\"* old|strong=\"H1121\"* and|strong=\"H1121\"* full|strong=\"H7646\"* of|strong=\"H1121\"* days|strong=\"H3117\"*; and|strong=\"H1121\"* he|strong=\"H3117\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"* king|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* gathered|strong=\"H3478\"* together all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*, with|strong=\"H3548\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1961\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* counted|strong=\"H5608\"* from|strong=\"H1121\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*; and|strong=\"H1121\"* their|strong=\"H1961\"* number|strong=\"H4557\"* by|strong=\"H8141\"* their|strong=\"H1961\"* polls|strong=\"H1538\"*, man|strong=\"H1397\"* by|strong=\"H8141\"* man|strong=\"H1397\"*, was|strong=\"H1961\"* thirty-eight|strong=\"H7970\"* thousand." + }, + { + "verseNum": 4, + "text": "David said, “Of|strong=\"H1004\"* these|strong=\"H1004\"*, twenty-four|strong=\"H6242\"* thousand were|strong=\"H1004\"* to|strong=\"H3068\"* oversee|strong=\"H5329\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, six|strong=\"H8337\"* thousand were|strong=\"H1004\"* officers|strong=\"H7860\"* and|strong=\"H3068\"* judges|strong=\"H8199\"*," + }, + { + "verseNum": 5, + "text": "four thousand were|strong=\"H3627\"* doorkeepers|strong=\"H7778\"*, and|strong=\"H3068\"* four thousand praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H6213\"* instruments|strong=\"H3627\"* which|strong=\"H3068\"* I|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* giving|strong=\"H1984\"* praise|strong=\"H1984\"*.”" + }, + { + "verseNum": 6, + "text": "David|strong=\"H1732\"* divided|strong=\"H2505\"* them|strong=\"H1121\"* into|strong=\"H2505\"* divisions|strong=\"H4256\"* according to|strong=\"H1121\"* the|strong=\"H1732\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: Gershon, Kohath|strong=\"H6955\"*, and|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 7, + "text": "Of the|strong=\"H8096\"* Gershonites|strong=\"H1649\"*: Ladan|strong=\"H3936\"* and|strong=\"H8096\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ladan|strong=\"H3936\"*: Jehiel|strong=\"H3171\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, Zetham|strong=\"H2241\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*: Shelomoth|strong=\"H8013\"*, Haziel|strong=\"H2381\"*, and|strong=\"H1121\"* Haran|strong=\"H2039\"*, three|strong=\"H7969\"*. These were|strong=\"H1121\"* the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ households of|strong=\"H1121\"* Ladan|strong=\"H3936\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*: Jahath|strong=\"H3189\"*, Zina|strong=\"H2126\"*, Jeush|strong=\"H3266\"*, and|strong=\"H1121\"* Beriah|strong=\"H1283\"*. These four were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*." + }, + { + "verseNum": 11, + "text": "Jahath|strong=\"H3189\"* was|strong=\"H1961\"* the|strong=\"H1961\"* chief|strong=\"H7218\"*, and|strong=\"H1121\"* Zizah|strong=\"H2125\"* the|strong=\"H1961\"* second|strong=\"H8145\"*; but|strong=\"H3808\"* Jeush|strong=\"H3266\"* and|strong=\"H1121\"* Beriah|strong=\"H1283\"* didn’t have|strong=\"H1961\"* many|strong=\"H7235\"* sons|strong=\"H1121\"*; therefore|strong=\"H1961\"* they|strong=\"H3808\"* became|strong=\"H1961\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* in|strong=\"H1004\"* one|strong=\"H3808\"* reckoning|strong=\"H6486\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kohath|strong=\"H6955\"*: Amram|strong=\"H6019\"*, Izhar|strong=\"H3324\"*, Hebron|strong=\"H2275\"*, and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*, four." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*: Aaron and|strong=\"H1121\"* Moses|strong=\"H4872\"*; and|strong=\"H1121\"* Aaron was|strong=\"H3068\"* separated that|strong=\"H1931\"* he|strong=\"H1931\"* should|strong=\"H3068\"* sanctify|strong=\"H6942\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* forever|strong=\"H5769\"*, to|strong=\"H5704\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H5704\"* minister|strong=\"H8334\"* to|strong=\"H5704\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* bless|strong=\"H1288\"* in|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H5921\"* as|strong=\"H1121\"* for|strong=\"H5921\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God, his|strong=\"H7121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* named|strong=\"H7121\"* among|strong=\"H5921\"* the|strong=\"H5921\"* tribe|strong=\"H7626\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4872\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*: Gershom|strong=\"H1647\"* and|strong=\"H1121\"* Eliezer." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*: Shebuel|strong=\"H7619\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliezer was|strong=\"H1961\"* Rehabiah|strong=\"H7345\"* the|strong=\"H1961\"* chief|strong=\"H7218\"*; and|strong=\"H1121\"* Eliezer had|strong=\"H1961\"* no|strong=\"H3808\"* other sons|strong=\"H1121\"*, but|strong=\"H3808\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"* were|strong=\"H1961\"* very|strong=\"H4605\"* many|strong=\"H7235\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Izhar|strong=\"H3324\"*: Shelomith|strong=\"H8019\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron|strong=\"H2275\"*: Jeriah|strong=\"H3404\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, Amariah the|strong=\"H1121\"* second|strong=\"H8145\"*, Jahaziel|strong=\"H3166\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Jekameam|strong=\"H3360\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Micah|strong=\"H4318\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*, and|strong=\"H1121\"* Isshiah|strong=\"H3449\"* the|strong=\"H1121\"* second|strong=\"H8145\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mahli|strong=\"H4249\"*: Eleazar and|strong=\"H1121\"* Kish|strong=\"H7027\"*." + }, + { + "verseNum": 22, + "text": "Eleazar died|strong=\"H4191\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*, but|strong=\"H3588\"* daughters|strong=\"H1323\"* only|strong=\"H3588\"*; and|strong=\"H1121\"* their|strong=\"H5375\"* relatives|strong=\"H1121\"*, the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, took|strong=\"H5375\"* them|strong=\"H5375\"* as|strong=\"H1961\"* wives." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mushi|strong=\"H4187\"*: Mahli|strong=\"H4249\"*, Eder|strong=\"H5740\"*, and|strong=\"H1121\"* Jeremoth|strong=\"H3406\"*, three|strong=\"H7969\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H6213\"* were|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* after|strong=\"H1004\"* their|strong=\"H3068\"* fathers’ houses|strong=\"H1004\"*, even|strong=\"H6213\"* the|strong=\"H6213\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6213\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3068\"* were|strong=\"H1121\"* counted|strong=\"H6485\"* individually|strong=\"H1538\"*, in|strong=\"H8141\"* the|strong=\"H6213\"* number|strong=\"H4557\"* of|strong=\"H1121\"* names|strong=\"H8034\"* by|strong=\"H8141\"* their|strong=\"H3068\"* polls|strong=\"H1538\"*, who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* for|strong=\"H6213\"* the|strong=\"H6213\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* David|strong=\"H1732\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* given|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H5704\"* his|strong=\"H3068\"* people|strong=\"H5971\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "Also|strong=\"H1571\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* will|strong=\"H1571\"* no|strong=\"H3605\"* longer need to|strong=\"H5375\"* carry|strong=\"H5375\"* the|strong=\"H3605\"* tabernacle|strong=\"H4908\"* and|strong=\"H3881\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* for|strong=\"H3627\"* its|strong=\"H3605\"* service|strong=\"H5656\"*.”" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* by|strong=\"H8141\"* the|strong=\"H3588\"* last|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* were|strong=\"H1121\"* counted|strong=\"H4557\"*, from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* their|strong=\"H3605\"* duty|strong=\"H5921\"* was|strong=\"H3068\"* to|strong=\"H3068\"* wait|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron for|strong=\"H3588\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*—in|strong=\"H5921\"* the|strong=\"H3605\"* courts|strong=\"H2691\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* purifying|strong=\"H2893\"* of|strong=\"H1121\"* all|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, even|strong=\"H3588\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"H3605\"* the|strong=\"H3605\"* show bread|strong=\"H3899\"* also|strong=\"H3899\"*, and|strong=\"H3899\"* for|strong=\"H3605\"* the|strong=\"H3605\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"* for|strong=\"H3605\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, whether of|strong=\"H3605\"* unleavened|strong=\"H4682\"* wafers|strong=\"H7550\"*, or|strong=\"H3899\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3899\"* is|strong=\"H3605\"* baked in|strong=\"H3899\"* the|strong=\"H3605\"* pan|strong=\"H4227\"*, or|strong=\"H3899\"* of|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3899\"* is|strong=\"H3605\"* soaked, and|strong=\"H3899\"* for|strong=\"H3605\"* all|strong=\"H3605\"* measurements|strong=\"H4060\"* of|strong=\"H3605\"* quantity and|strong=\"H3899\"* size|strong=\"H4060\"*;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* every|strong=\"H1242\"* morning|strong=\"H1242\"* to|strong=\"H3068\"* thank|strong=\"H3034\"* and|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* likewise|strong=\"H3651\"* in|strong=\"H3068\"* the|strong=\"H3068\"* evening|strong=\"H6153\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* all|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* set|strong=\"H5927\"* feasts|strong=\"H4150\"*, in|strong=\"H5921\"* number|strong=\"H4557\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"* concerning|strong=\"H5921\"* them|strong=\"H5921\"*, continually|strong=\"H8548\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H1121\"* that|strong=\"H3068\"* they|strong=\"H3068\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* Tent of|strong=\"H1121\"* Meeting|strong=\"H4150\"*, the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H1121\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron their|strong=\"H3068\"* brothers|strong=\"H1121\"* for|strong=\"H3068\"* the|strong=\"H8104\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron. The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron: Nadab|strong=\"H5070\"*, Abihu, Eleazar, and|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* Nadab|strong=\"H5070\"* and|strong=\"H1121\"* Abihu died|strong=\"H4191\"* before|strong=\"H6440\"* their|strong=\"H6440\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* children|strong=\"H1121\"*; therefore|strong=\"H1961\"* Eleazar and|strong=\"H1121\"* Ithamar served|strong=\"H3547\"* as|strong=\"H3547\"* priests|strong=\"H3547\"*." + }, + { + "verseNum": 3, + "text": "David|strong=\"H1732\"*, with|strong=\"H1732\"* Zadok|strong=\"H6659\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar and|strong=\"H1121\"* Ahimelech of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar, divided|strong=\"H2505\"* them|strong=\"H1121\"* according|strong=\"H4480\"* to|strong=\"H1121\"* their|strong=\"H1732\"* ordering in|strong=\"H1121\"* their|strong=\"H1732\"* service|strong=\"H5656\"*." + }, + { + "verseNum": 4, + "text": "There|strong=\"H4672\"* were|strong=\"H1121\"* more|strong=\"H4480\"* chief|strong=\"H7218\"* men|strong=\"H1121\"* found|strong=\"H4672\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar than|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar; and|strong=\"H1121\"* they were|strong=\"H1121\"* divided|strong=\"H2505\"* like|strong=\"H1004\"* this|strong=\"H1004\"*: of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar there|strong=\"H4672\"* were|strong=\"H1121\"* sixteen|strong=\"H8337\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ houses|strong=\"H1004\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar, according|strong=\"H4480\"* to|strong=\"H1121\"* their|strong=\"H4480\"* fathers’ houses|strong=\"H1004\"*, eight|strong=\"H8083\"*." + }, + { + "verseNum": 5, + "text": "Thus|strong=\"H1961\"* they|strong=\"H3588\"* were|strong=\"H1961\"* divided|strong=\"H2505\"* impartially by|strong=\"H1961\"* drawing lots|strong=\"H1486\"*; for|strong=\"H3588\"* there|strong=\"H1961\"* were|strong=\"H1961\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sanctuary|strong=\"H6944\"* and|strong=\"H1121\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* God, both of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ithamar." + }, + { + "verseNum": 6, + "text": "Shemaiah|strong=\"H8098\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethanel|strong=\"H5417\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, who|strong=\"H3548\"* was|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, wrote|strong=\"H3789\"* them|strong=\"H6440\"* in|strong=\"H1004\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, the|strong=\"H6440\"* princes|strong=\"H8269\"*, Zadok|strong=\"H6659\"* the|strong=\"H6440\"* priest|strong=\"H3548\"*, Ahimelech the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abiathar, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*; one|strong=\"H4480\"* fathers’ house|strong=\"H1004\"* being|strong=\"H1004\"* taken|strong=\"H5608\"* for|strong=\"H6440\"* Eleazar, and|strong=\"H1121\"* one|strong=\"H4480\"* taken|strong=\"H5608\"* for|strong=\"H6440\"* Ithamar." + }, + { + "verseNum": 7, + "text": "Now the|strong=\"H3318\"* first|strong=\"H7223\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Jehoiarib|strong=\"H3080\"*, the|strong=\"H3318\"* second|strong=\"H8145\"* to|strong=\"H3318\"* Jedaiah|strong=\"H3048\"*," + }, + { + "verseNum": 8, + "text": "the|strong=\"H7243\"* third|strong=\"H7992\"* to|strong=\"H7243\"* Harim|strong=\"H2766\"*, the|strong=\"H7243\"* fourth|strong=\"H7243\"* to|strong=\"H7243\"* Seorim|strong=\"H8188\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H4441\"* fifth|strong=\"H2549\"* to|strong=\"H2549\"* Malchijah|strong=\"H4441\"*, the|strong=\"H4441\"* sixth|strong=\"H8345\"* to|strong=\"H2549\"* Mijamin|strong=\"H4326\"*," + }, + { + "verseNum": 10, + "text": "the seventh|strong=\"H7637\"* to|strong=\"H8066\"* Hakkoz|strong=\"H6976\"*, the eighth|strong=\"H8066\"* to|strong=\"H8066\"* Abijah," + }, + { + "verseNum": 11, + "text": "the|strong=\"H3442\"* ninth|strong=\"H8671\"* to|strong=\"H6224\"* Jeshua|strong=\"H3442\"*, the|strong=\"H3442\"* tenth|strong=\"H6224\"* to|strong=\"H6224\"* Shecaniah|strong=\"H7935\"*," + }, + { + "verseNum": 12, + "text": "the|strong=\"H8147\"* eleventh|strong=\"H6249\"* to|strong=\"H6249\"* Eliashib, the|strong=\"H8147\"* twelfth|strong=\"H8147\"* to|strong=\"H6249\"* Jakim|strong=\"H3356\"*," + }, + { + "verseNum": 13, + "text": "the|strong=\"H6240\"* thirteenth|strong=\"H7969\"* to|strong=\"H7969\"* Huppah|strong=\"H2647\"*, the|strong=\"H6240\"* fourteenth|strong=\"H6240\"* to|strong=\"H7969\"* Jeshebeab|strong=\"H3428\"*," + }, + { + "verseNum": 14, + "text": "the|strong=\"H6240\"* fifteenth|strong=\"H2568\"* to|strong=\"H2568\"* Bilgah|strong=\"H1083\"*, the|strong=\"H6240\"* sixteenth|strong=\"H8337\"* to|strong=\"H2568\"* Immer," + }, + { + "verseNum": 15, + "text": "the|strong=\"H6240\"* seventeenth|strong=\"H7651\"* to|strong=\"H7651\"* Hezir|strong=\"H2387\"*, the|strong=\"H6240\"* eighteenth|strong=\"H8083\"* to|strong=\"H7651\"* Happizzez|strong=\"H6483\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H6611\"* nineteenth|strong=\"H8672\"* to|strong=\"H6242\"* Pethahiah|strong=\"H6611\"*, the|strong=\"H6611\"* twentieth|strong=\"H6242\"* to|strong=\"H6242\"* Jehezkel|strong=\"H3168\"*," + }, + { + "verseNum": 17, + "text": "the|strong=\"H8147\"* twenty-first|strong=\"H6242\"* to|strong=\"H6242\"* Jachin|strong=\"H3199\"*, the|strong=\"H8147\"* twenty-second|strong=\"H6242\"* to|strong=\"H6242\"* Gamul|strong=\"H1577\"*," + }, + { + "verseNum": 18, + "text": "the|strong=\"H1806\"* twenty-third|strong=\"H6242\"* to|strong=\"H6242\"* Delaiah|strong=\"H1806\"*, and|strong=\"H6242\"* the|strong=\"H1806\"* twenty-fourth|strong=\"H6242\"* to|strong=\"H6242\"* Maaziah|strong=\"H4590\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H3068\"* was|strong=\"H3068\"* their|strong=\"H3068\"* ordering in|strong=\"H3478\"* their|strong=\"H3068\"* service|strong=\"H5656\"*, to|strong=\"H3478\"* come|strong=\"H3478\"* into|strong=\"H4941\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* according|strong=\"H4941\"* to|strong=\"H3478\"* the|strong=\"H3068\"* ordinance|strong=\"H4941\"* given|strong=\"H6680\"* to|strong=\"H3478\"* them|strong=\"H3027\"* by|strong=\"H3027\"* Aaron their|strong=\"H3068\"* father, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* rest|strong=\"H3498\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Amram|strong=\"H6019\"*, Shubael|strong=\"H7619\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shubael|strong=\"H7619\"*, Jehdeiah|strong=\"H3165\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"*: of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Rehabiah|strong=\"H7345\"*, Isshiah|strong=\"H3449\"* the|strong=\"H1121\"* chief|strong=\"H7218\"*." + }, + { + "verseNum": 22, + "text": "Of|strong=\"H1121\"* the|strong=\"H1121\"* Izharites|strong=\"H3325\"*, Shelomoth|strong=\"H8013\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shelomoth|strong=\"H8013\"*, Jahath|strong=\"H3189\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hebron: Jeriah|strong=\"H3404\"*, Amariah the|strong=\"H1121\"* second|strong=\"H8145\"*, Jahaziel|strong=\"H3166\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Jekameam|strong=\"H3360\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Uzziel|strong=\"H5816\"*: Micah|strong=\"H4318\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, Shamir|strong=\"H8053\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* brother of|strong=\"H1121\"* Micah|strong=\"H4318\"*: Isshiah|strong=\"H3449\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Isshiah|strong=\"H3449\"*, Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*: Mahli|strong=\"H4249\"* and|strong=\"H1121\"* Mushi|strong=\"H4187\"*. The|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jaaziah|strong=\"H3269\"*: Beno|strong=\"H1121\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"* by|strong=\"H4847\"* Jaaziah|strong=\"H3269\"*: Beno|strong=\"H1121\"*, Shoham|strong=\"H7719\"*, Zaccur|strong=\"H2139\"*, and|strong=\"H1121\"* Ibri|strong=\"H5681\"*." + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* Mahli|strong=\"H4249\"*: Eleazar, who|strong=\"H1121\"* had|strong=\"H1961\"* no|strong=\"H3808\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1121\"* Kish|strong=\"H7027\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*: Jerahmeel|strong=\"H3396\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mushi|strong=\"H4187\"*: Mahli|strong=\"H4249\"*, Eder|strong=\"H5740\"*, and|strong=\"H1121\"* Jerimoth|strong=\"H3406\"*. These|strong=\"H3881\"* were|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Levites|strong=\"H3881\"* after|strong=\"H1004\"* their|strong=\"H3881\"* fathers’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "These|strong=\"H1992\"* likewise|strong=\"H1571\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"* even|strong=\"H1571\"* as|strong=\"H1571\"* their|strong=\"H6440\"* brothers|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, Zadok|strong=\"H6659\"*, Ahimelech, and|strong=\"H1121\"* the|strong=\"H6440\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H6440\"* fathers’ households|strong=\"H3881\"* of|strong=\"H1121\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, the|strong=\"H6440\"* fathers’ households|strong=\"H3881\"* of|strong=\"H1121\"* the|strong=\"H6440\"* chief|strong=\"H7218\"* even|strong=\"H1571\"* as|strong=\"H1571\"* those|strong=\"H1992\"* of|strong=\"H1121\"* his|strong=\"H1732\"* younger|strong=\"H6996\"* brother." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"*, David|strong=\"H1732\"* and|strong=\"H1121\"* the|strong=\"H1961\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1961\"* army|strong=\"H6635\"* set apart for|strong=\"H1121\"* the|strong=\"H1961\"* service|strong=\"H5656\"* certain of|strong=\"H1121\"* the|strong=\"H1961\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, of|strong=\"H1121\"* Heman|strong=\"H1968\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, who|strong=\"H1121\"* were|strong=\"H1961\"* to|strong=\"H1961\"* prophesy|strong=\"H5030\"* with|strong=\"H1732\"* harps|strong=\"H3658\"*, with|strong=\"H1732\"* stringed instruments, and|strong=\"H1121\"* with|strong=\"H1732\"* cymbals|strong=\"H4700\"*. The|strong=\"H1961\"* number|strong=\"H4557\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* did|strong=\"H1732\"* the|strong=\"H1961\"* work|strong=\"H4399\"* according to|strong=\"H1961\"* their|strong=\"H1961\"* service|strong=\"H5656\"* was|strong=\"H1961\"*:" + }, + { + "verseNum": 2, + "text": "of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph: Zaccur|strong=\"H2139\"*, Joseph|strong=\"H3130\"*, Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* Asharelah. The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph were|strong=\"H1121\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Asaph, who|strong=\"H1121\"* prophesied|strong=\"H5012\"* at|strong=\"H5921\"* the|strong=\"H5921\"* order|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*: Gedaliah|strong=\"H1436\"*, Zeri|strong=\"H6874\"*, Jeshaiah|strong=\"H3470\"*, Shimei, Hashabiah|strong=\"H2811\"*, and|strong=\"H1121\"* Mattithiah|strong=\"H4993\"*, six|strong=\"H8337\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H1121\"* their|strong=\"H3068\"* father|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, who|strong=\"H3068\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* giving|strong=\"H3034\"* thanks|strong=\"H3034\"* and|strong=\"H1121\"* praising|strong=\"H1984\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H5921\"* harp|strong=\"H3658\"*." + }, + { + "verseNum": 4, + "text": "Of|strong=\"H1121\"* Heman|strong=\"H1968\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"*: Bukkiah|strong=\"H1232\"*, Mattaniah|strong=\"H4983\"*, Uzziel|strong=\"H5816\"*, Shebuel|strong=\"H7619\"*, Jerimoth|strong=\"H3406\"*, Hananiah|strong=\"H2608\"*, Hanani|strong=\"H2607\"*, Eliathah, Giddalti|strong=\"H1437\"*, Romamti-Ezer|strong=\"H7320\"*, Joshbekashah|strong=\"H3436\"*, Mallothi|strong=\"H4413\"*, Hothir|strong=\"H1956\"*, and|strong=\"H1121\"* Mahazioth|strong=\"H4238\"*." + }, + { + "verseNum": 5, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"* in|strong=\"H4428\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* God|strong=\"H5414\"*, to|strong=\"H5414\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* horn|strong=\"H7161\"*. God|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Heman|strong=\"H1968\"* fourteen|strong=\"H6240\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3027\"* under|strong=\"H5921\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3605\"* father for|strong=\"H5921\"* song|strong=\"H7892\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, with|strong=\"H1004\"* cymbals|strong=\"H4700\"*, stringed instruments|strong=\"H7892\"*, and|strong=\"H3068\"* harps|strong=\"H3658\"*, for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*: Asaph, Jeduthun|strong=\"H3038\"*, and|strong=\"H3068\"* Heman|strong=\"H1968\"* being|strong=\"H1004\"* under|strong=\"H5921\"* the|strong=\"H3605\"* order|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* them|strong=\"H1961\"*, with|strong=\"H5973\"* their|strong=\"H3605\"* brothers who|strong=\"H3605\"* were|strong=\"H1961\"* instructed|strong=\"H3925\"* in|strong=\"H3068\"* singing|strong=\"H7892\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* skillful|strong=\"H3925\"*, was|strong=\"H3068\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty-eight|strong=\"H8084\"*." + }, + { + "verseNum": 8, + "text": "They cast|strong=\"H5307\"* lots|strong=\"H1486\"* for|strong=\"H5973\"* their|strong=\"H5307\"* offices|strong=\"H4931\"*, all|strong=\"H1419\"* alike|strong=\"H5973\"*, the|strong=\"H5973\"* small|strong=\"H6996\"* as|strong=\"H5973\"* well|strong=\"H5980\"* as|strong=\"H5973\"* the|strong=\"H5973\"* great|strong=\"H1419\"*, the|strong=\"H5973\"* teacher as|strong=\"H5973\"* well|strong=\"H5980\"* as|strong=\"H5973\"* the|strong=\"H5973\"* student." + }, + { + "verseNum": 9, + "text": "Now the|strong=\"H3318\"* first|strong=\"H7223\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H1121\"* Asaph to|strong=\"H3318\"* Joseph|strong=\"H3130\"*; the|strong=\"H3318\"* second|strong=\"H8145\"* to|strong=\"H3318\"* Gedaliah|strong=\"H1436\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H3318\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* sons|strong=\"H1121\"* were|strong=\"H1121\"* twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 10, + "text": "the|strong=\"H1121\"* third|strong=\"H7992\"* to|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 11, + "text": "the|strong=\"H1121\"* fourth|strong=\"H7243\"* to|strong=\"H1121\"* Izri|strong=\"H3339\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 12, + "text": "the|strong=\"H1121\"* fifth|strong=\"H2549\"* to|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H1121\"* sixth|strong=\"H8345\"* to|strong=\"H1121\"* Bukkiah|strong=\"H1232\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 14, + "text": "the|strong=\"H1121\"* seventh|strong=\"H7637\"* to|strong=\"H1121\"* Jesharelah|strong=\"H3480\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 15, + "text": "the|strong=\"H3470\"* eighth|strong=\"H8066\"* to|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 16, + "text": "the|strong=\"H1121\"* ninth|strong=\"H8671\"* to|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 17, + "text": "the|strong=\"H1121\"* tenth|strong=\"H6224\"* to|strong=\"H1121\"* Shimei|strong=\"H8096\"*, his|strong=\"H8096\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8096\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 18, + "text": "the|strong=\"H1121\"* eleventh|strong=\"H6249\"* to|strong=\"H1121\"* Azarel|strong=\"H5832\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 19, + "text": "the|strong=\"H1121\"* twelfth|strong=\"H8147\"* to|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 20, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* thirteenth|strong=\"H7969\"*, Shubael|strong=\"H7619\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 21, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* fourteenth|strong=\"H6240\"*, Mattithiah|strong=\"H4993\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 22, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* fifteenth|strong=\"H2568\"* to|strong=\"H1121\"* Jeremoth|strong=\"H3406\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 23, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* sixteenth|strong=\"H8337\"* to|strong=\"H1121\"* Hananiah|strong=\"H2608\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 24, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* seventeenth|strong=\"H7651\"* to|strong=\"H1121\"* Joshbekashah|strong=\"H3436\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 25, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* eighteenth|strong=\"H8083\"* to|strong=\"H1121\"* Hanani|strong=\"H2607\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 26, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* nineteenth|strong=\"H8672\"* to|strong=\"H1121\"* Mallothi|strong=\"H4413\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 27, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twentieth|strong=\"H6242\"* to|strong=\"H1121\"* Eliathah, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 28, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-first|strong=\"H6242\"* to|strong=\"H1121\"* Hothir|strong=\"H1956\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 29, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-second|strong=\"H6242\"* to|strong=\"H1121\"* Giddalti|strong=\"H1437\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 30, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-third|strong=\"H6242\"* to|strong=\"H1121\"* Mahazioth|strong=\"H4238\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*;" + }, + { + "verseNum": 31, + "text": "for|strong=\"H1121\"* the|strong=\"H1121\"* twenty-fourth|strong=\"H6242\"* to|strong=\"H1121\"* Romamti-Ezer|strong=\"H7320\"*, his|strong=\"H8147\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, twelve|strong=\"H8147\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H1121\"* the|strong=\"H4480\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H4480\"* doorkeepers|strong=\"H7778\"*: of|strong=\"H1121\"* the|strong=\"H4480\"* Korahites|strong=\"H7145\"*, Meshelemiah|strong=\"H4920\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kore|strong=\"H6981\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph." + }, + { + "verseNum": 2, + "text": "Meshelemiah|strong=\"H4920\"* had|strong=\"H1121\"* sons|strong=\"H1121\"*: Zechariah|strong=\"H2148\"* the|strong=\"H1121\"* firstborn|strong=\"H1060\"*, Jediael|strong=\"H3043\"* the|strong=\"H1121\"* second|strong=\"H8145\"*, Zebadiah|strong=\"H2069\"* the|strong=\"H1121\"* third|strong=\"H7992\"*, Jathniel|strong=\"H3496\"* the|strong=\"H1121\"* fourth|strong=\"H7243\"*," + }, + { + "verseNum": 3, + "text": "Elam|strong=\"H5867\"* the|strong=\"H3076\"* fifth|strong=\"H2549\"*, Jehohanan|strong=\"H3076\"* the|strong=\"H3076\"* sixth|strong=\"H8345\"*, and|strong=\"H5867\"* Eliehoenai the|strong=\"H3076\"* seventh|strong=\"H7637\"*." + }, + { + "verseNum": 4, + "text": "Obed-Edom|strong=\"H5654\"* had|strong=\"H1121\"* sons|strong=\"H1121\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* firstborn|strong=\"H1060\"*, Jehozabad|strong=\"H3075\"* the|strong=\"H8098\"* second|strong=\"H8145\"*, Joah|strong=\"H3098\"* the|strong=\"H8098\"* third|strong=\"H7992\"*, Sacar|strong=\"H7940\"* the|strong=\"H8098\"* fourth|strong=\"H7243\"*, Nethanel|strong=\"H5417\"* the|strong=\"H8098\"* fifth|strong=\"H2549\"*," + }, + { + "verseNum": 5, + "text": "Ammiel|strong=\"H5988\"* the|strong=\"H3588\"* sixth|strong=\"H8345\"*, Issachar|strong=\"H3485\"* the|strong=\"H3588\"* seventh|strong=\"H7637\"*, and|strong=\"H3485\"* Peullethai|strong=\"H6469\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"*; for|strong=\"H3588\"* God blessed|strong=\"H1288\"* him|strong=\"H1288\"*." + }, + { + "verseNum": 6, + "text": "Sons|strong=\"H1121\"* were|strong=\"H1121\"* also|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* Shemaiah|strong=\"H8098\"* his|strong=\"H3588\"* son|strong=\"H1121\"*, who|strong=\"H1121\"* ruled|strong=\"H4474\"* over the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* their|strong=\"H1992\"* father|strong=\"H3205\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1121\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H8098\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*: Othni|strong=\"H6273\"*, Rephael|strong=\"H7501\"*, Obed|strong=\"H5744\"*, and|strong=\"H1121\"* Elzabad, whose|strong=\"H1121\"* relatives|strong=\"H1121\"* were|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, Elihu, and|strong=\"H1121\"* Semachiah|strong=\"H5565\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* were|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* with|strong=\"H3605\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, able|strong=\"H2428\"* men|strong=\"H1121\"* in|strong=\"H1121\"* strength|strong=\"H3581\"* for|strong=\"H1121\"* the|strong=\"H3605\"* service|strong=\"H5656\"*: sixty-two|strong=\"H8346\"* of|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"*." + }, + { + "verseNum": 9, + "text": "Meshelemiah|strong=\"H4920\"* had|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* brothers|strong=\"H1121\"*, eighteen|strong=\"H8083\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 10, + "text": "Also|strong=\"H1121\"* Hosah|strong=\"H2621\"*, of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, had|strong=\"H1961\"* sons|strong=\"H1121\"*: Shimri|strong=\"H8113\"* the|strong=\"H3588\"* chief|strong=\"H7218\"* (for|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*, yet|strong=\"H3588\"* his|strong=\"H7760\"* father|strong=\"H1121\"* made|strong=\"H7760\"* him|strong=\"H7760\"* chief|strong=\"H7218\"*)," + }, + { + "verseNum": 11, + "text": "Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* second|strong=\"H8145\"*, Tebaliah|strong=\"H2882\"* the|strong=\"H3605\"* third|strong=\"H7992\"*, and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Hosah|strong=\"H2621\"* were|strong=\"H1121\"* thirteen|strong=\"H7969\"*." + }, + { + "verseNum": 12, + "text": "Of|strong=\"H1004\"* these|strong=\"H1004\"* were|strong=\"H7218\"* the|strong=\"H3068\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3068\"* doorkeepers|strong=\"H7778\"*, even|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H3068\"* chief|strong=\"H7218\"* men|strong=\"H1397\"*, having offices|strong=\"H4931\"* like|strong=\"H1004\"* their|strong=\"H3068\"* brothers, to|strong=\"H3068\"* minister|strong=\"H8334\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H8179\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*, the|strong=\"H1004\"* small|strong=\"H6996\"* as|strong=\"H1004\"* well as|strong=\"H1004\"* the|strong=\"H1004\"* great|strong=\"H1419\"*, according to|strong=\"H1004\"* their|strong=\"H5307\"* fathers’ houses|strong=\"H1004\"*, for|strong=\"H1004\"* every|strong=\"H8179\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3318\"* lot|strong=\"H1486\"* eastward|strong=\"H4217\"* fell|strong=\"H5307\"* to|strong=\"H3318\"* Shelemiah|strong=\"H8018\"*. Then|strong=\"H3318\"* for|strong=\"H1121\"* Zechariah|strong=\"H2148\"* his|strong=\"H3318\"* son|strong=\"H1121\"*, a|strong=\"H3068\"* wise|strong=\"H7922\"* counselor|strong=\"H3289\"*, they|strong=\"H3289\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*; and|strong=\"H1121\"* his|strong=\"H3318\"* lot|strong=\"H1486\"* came|strong=\"H3318\"* out|strong=\"H3318\"* northward|strong=\"H6828\"*." + }, + { + "verseNum": 15, + "text": "To|strong=\"H1121\"* Obed-Edom|strong=\"H5654\"* southward|strong=\"H5045\"*; and|strong=\"H1121\"* to|strong=\"H1121\"* his|strong=\"H1121\"* sons|strong=\"H1121\"* the|strong=\"H1121\"* storehouse." + }, + { + "verseNum": 16, + "text": "To|strong=\"H5927\"* Shuppim|strong=\"H8206\"* and|strong=\"H5927\"* Hosah|strong=\"H2621\"* westward|strong=\"H4628\"*, by|strong=\"H5973\"* the|strong=\"H5927\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Shallecheth|strong=\"H7996\"*, at|strong=\"H5927\"* the|strong=\"H5927\"* causeway|strong=\"H4546\"* that|strong=\"H8179\"* goes|strong=\"H5927\"* up|strong=\"H5927\"*, watchman opposite watchman." + }, + { + "verseNum": 17, + "text": "Eastward|strong=\"H4217\"* were|strong=\"H3881\"* six|strong=\"H8337\"* Levites|strong=\"H3881\"*, northward|strong=\"H6828\"* four a|strong=\"H3068\"* day|strong=\"H3117\"*, southward|strong=\"H5045\"* four a|strong=\"H3068\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* for|strong=\"H3117\"* the|strong=\"H3117\"* storehouse two|strong=\"H8147\"* and|strong=\"H3117\"* two|strong=\"H8147\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H8147\"* Parbar|strong=\"H6503\"* westward|strong=\"H4628\"*, four at|strong=\"H8147\"* the|strong=\"H8147\"* causeway|strong=\"H4546\"*, and|strong=\"H8147\"* two|strong=\"H8147\"* at|strong=\"H8147\"* Parbar|strong=\"H6503\"*." + }, + { + "verseNum": 19, + "text": "These were|strong=\"H1121\"* the|strong=\"H1121\"* divisions|strong=\"H4256\"* of|strong=\"H1121\"* the|strong=\"H1121\"* doorkeepers|strong=\"H7778\"*; of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Korahites|strong=\"H7145\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*." + }, + { + "verseNum": 20, + "text": "Of|strong=\"H1004\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, Ahijah was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1004\"* God’s house|strong=\"H1004\"* and|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1004\"* the|strong=\"H5921\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ladan|strong=\"H3936\"*, the|strong=\"H1121\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* Gershonites|strong=\"H1649\"* belonging to|strong=\"H1121\"* Ladan|strong=\"H3936\"*, the|strong=\"H1121\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1121\"* fathers’ households belonging to|strong=\"H1121\"* Ladan|strong=\"H3936\"* the|strong=\"H1121\"* Gershonite|strong=\"H1649\"*: Jehieli|strong=\"H3172\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehieli|strong=\"H3172\"*: Zetham|strong=\"H2241\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"* his|strong=\"H3068\"* brother, over|strong=\"H5921\"* the|strong=\"H5921\"* treasures of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "Of the Amramites|strong=\"H6020\"*, of the Izharites|strong=\"H3325\"*, of the Hebronites|strong=\"H2276\"*, of the Uzzielites|strong=\"H5817\"*:" + }, + { + "verseNum": 24, + "text": "Shebuel|strong=\"H7619\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gershom|strong=\"H1647\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, was|strong=\"H4872\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries." + }, + { + "verseNum": 25, + "text": "His|strong=\"H3141\"* brothers|strong=\"H1121\"*: of|strong=\"H1121\"* Eliezer, Rehabiah|strong=\"H7345\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Joram|strong=\"H3141\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Zichri|strong=\"H2147\"* his|strong=\"H3141\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* Shelomoth|strong=\"H8013\"* his|strong=\"H3141\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 26, + "text": "This|strong=\"H1931\"* Shelomoth|strong=\"H8013\"* and|strong=\"H3967\"* his|strong=\"H3605\"* brothers were|strong=\"H1732\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasuries of|strong=\"H4428\"* the|strong=\"H3605\"* dedicated|strong=\"H6942\"* things|strong=\"H6944\"*, which|strong=\"H1931\"* David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H3605\"* fathers’ households, the|strong=\"H3605\"* captains|strong=\"H8269\"* over|strong=\"H5921\"* thousands and|strong=\"H3967\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, had|strong=\"H1732\"* dedicated|strong=\"H6942\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3068\"* dedicated|strong=\"H6942\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* won in|strong=\"H3068\"* battles|strong=\"H4421\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* that|strong=\"H7200\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* seer|strong=\"H7200\"*, Saul|strong=\"H7586\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, Abner the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ner|strong=\"H5369\"*, and|strong=\"H1121\"* Joab|strong=\"H3097\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* had|strong=\"H7586\"* dedicated|strong=\"H6942\"*, whoever|strong=\"H3605\"* had|strong=\"H7586\"* dedicated|strong=\"H6942\"* anything|strong=\"H3605\"*, it|strong=\"H5921\"* was|strong=\"H7586\"* under|strong=\"H5921\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Shelomoth|strong=\"H8019\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 29, + "text": "Of|strong=\"H1121\"* the|strong=\"H5921\"* Izharites|strong=\"H3325\"*, Chenaniah|strong=\"H3663\"* and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* were|strong=\"H3478\"* appointed|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* outward|strong=\"H2435\"* business|strong=\"H4399\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*, for|strong=\"H5921\"* officers|strong=\"H7860\"* and|strong=\"H1121\"* judges|strong=\"H8199\"*." + }, + { + "verseNum": 30, + "text": "Of|strong=\"H1121\"* the|strong=\"H3605\"* Hebronites|strong=\"H2276\"*, Hashabiah|strong=\"H2811\"* and|strong=\"H3967\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, one|strong=\"H3605\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, had|strong=\"H3068\"* the|strong=\"H3605\"* oversight|strong=\"H6486\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* Jordan|strong=\"H3383\"* westward|strong=\"H4628\"*, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* business|strong=\"H4399\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* and|strong=\"H3967\"* for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 31, + "text": "Of|strong=\"H8141\"* the|strong=\"H1875\"* Hebronites|strong=\"H2276\"*, Jerijah|strong=\"H3404\"* was|strong=\"H1732\"* the|strong=\"H1875\"* chief|strong=\"H7218\"* of|strong=\"H8141\"* the|strong=\"H1875\"* Hebronites|strong=\"H2276\"*, according to|strong=\"H1732\"* their|strong=\"H1875\"* generations|strong=\"H8435\"* by|strong=\"H8141\"* fathers’ households. They|strong=\"H8141\"* were|strong=\"H1732\"* sought|strong=\"H1875\"* for|strong=\"H2428\"* in|strong=\"H8141\"* the|strong=\"H1875\"* fortieth year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H1875\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* David|strong=\"H1732\"*, and|strong=\"H1732\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H8141\"* valor|strong=\"H2428\"* were|strong=\"H1732\"* found|strong=\"H4672\"* among|strong=\"H4672\"* them|strong=\"H4672\"* at|strong=\"H1732\"* Jazer|strong=\"H3270\"* of|strong=\"H8141\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 32, + "text": "His|strong=\"H3605\"* relatives|strong=\"H1121\"*, men|strong=\"H1121\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, were|strong=\"H1121\"* two|strong=\"H2677\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, whom King|strong=\"H4428\"* David|strong=\"H1732\"* made|strong=\"H6485\"* overseers|strong=\"H6485\"* over|strong=\"H5921\"* the|strong=\"H3605\"* Reubenites|strong=\"H7206\"*, the|strong=\"H3605\"* Gadites|strong=\"H1425\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Manassites|strong=\"H4520\"*, for|strong=\"H5921\"* every|strong=\"H3605\"* matter|strong=\"H1697\"* pertaining|strong=\"H5921\"* to|strong=\"H5921\"* God and|strong=\"H3967\"* for|strong=\"H5921\"* the|strong=\"H3605\"* affairs|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* after|strong=\"H3318\"* their|strong=\"H3605\"* number|strong=\"H4557\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households and|strong=\"H3967\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* officers|strong=\"H7860\"* who|strong=\"H3605\"* served|strong=\"H8334\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H8141\"* any|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* which|strong=\"H1697\"* came|strong=\"H3318\"* in|strong=\"H8141\"* and|strong=\"H3967\"* went|strong=\"H3318\"* out|strong=\"H3318\"* month|strong=\"H2320\"* by|strong=\"H8141\"* month|strong=\"H2320\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* months|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3605\"* year|strong=\"H8141\"*—of|strong=\"H1121\"* every|strong=\"H3605\"* division|strong=\"H4256\"* were|strong=\"H3478\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 2, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* division|strong=\"H4256\"* for|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Jashobeam|strong=\"H3434\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdiel|strong=\"H2068\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* was|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*, the|strong=\"H3605\"* chief|strong=\"H7218\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* army|strong=\"H6635\"* for|strong=\"H1121\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* division|strong=\"H4256\"* of|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Dodai|strong=\"H1737\"* the|strong=\"H5921\"* Ahohite and|strong=\"H6242\"* his|strong=\"H5921\"* division|strong=\"H4256\"*, and|strong=\"H6242\"* Mikloth|strong=\"H4732\"* the|strong=\"H5921\"* ruler|strong=\"H5057\"*; and|strong=\"H6242\"* in|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* third|strong=\"H7992\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H5921\"* army|strong=\"H6635\"* for|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 6, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* that|strong=\"H1931\"* Benaiah|strong=\"H1141\"* who|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* and|strong=\"H1121\"* over|strong=\"H5921\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"*. Of|strong=\"H1121\"* his|strong=\"H5921\"* division|strong=\"H4256\"* was|strong=\"H1931\"* Ammizabad|strong=\"H5990\"* his|strong=\"H5921\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* fourth|strong=\"H7243\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Asahel|strong=\"H6214\"* the|strong=\"H5921\"* brother of|strong=\"H1121\"* Joab|strong=\"H3097\"*, and|strong=\"H1121\"* Zebadiah|strong=\"H2069\"* his|strong=\"H5921\"* son|strong=\"H1121\"* after|strong=\"H5921\"* him|strong=\"H5921\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* fifth|strong=\"H2549\"* captain|strong=\"H8269\"* for|strong=\"H5921\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Shamhuth|strong=\"H8049\"* the|strong=\"H5921\"* Izrahite|strong=\"H3155\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H8269\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* sixth|strong=\"H8345\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Ira|strong=\"H5896\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ikkesh|strong=\"H6142\"* the|strong=\"H5921\"* Tekoite|strong=\"H8621\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* seventh|strong=\"H7637\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Helez|strong=\"H2503\"* the|strong=\"H5921\"* Pelonite|strong=\"H6397\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* eighth|strong=\"H8066\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Sibbecai|strong=\"H5444\"* the|strong=\"H5921\"* Hushathite|strong=\"H2843\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Zerahites|strong=\"H2227\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* ninth|strong=\"H8671\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Abiezer the|strong=\"H5921\"* Anathothite|strong=\"H6069\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Benjamites|strong=\"H1145\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5921\"* tenth|strong=\"H6224\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"* was|strong=\"H4256\"* Maharai|strong=\"H4121\"* the|strong=\"H5921\"* Netophathite|strong=\"H5200\"*, of|strong=\"H5921\"* the|strong=\"H5921\"* Zerahites|strong=\"H2227\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H5921\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* eleventh|strong=\"H6249\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"* was|strong=\"H1121\"* Benaiah|strong=\"H1141\"* the|strong=\"H5921\"* Pirathonite|strong=\"H6553\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H1121\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* twelfth|strong=\"H8147\"* captain for|strong=\"H5921\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"* was|strong=\"H2320\"* Heldai|strong=\"H2469\"* the|strong=\"H5921\"* Netophathite|strong=\"H5200\"*, of|strong=\"H5921\"* Othniel|strong=\"H6274\"*. In|strong=\"H5921\"* his|strong=\"H5921\"* division|strong=\"H4256\"* were|strong=\"H8147\"* twenty-four|strong=\"H6242\"* thousand." + }, + { + "verseNum": 16, + "text": "Furthermore over|strong=\"H5921\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: of|strong=\"H1121\"* the|strong=\"H5921\"* Reubenites|strong=\"H7206\"*, Eliezer the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"* was|strong=\"H3478\"* the|strong=\"H5921\"* ruler|strong=\"H5057\"*; of|strong=\"H1121\"* the|strong=\"H5921\"* Simeonites|strong=\"H8099\"*, Shephatiah|strong=\"H8203\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"*;" + }, + { + "verseNum": 17, + "text": "of|strong=\"H1121\"* Levi|strong=\"H3881\"*, Hashabiah|strong=\"H2811\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kemuel|strong=\"H7055\"*; of|strong=\"H1121\"* Aaron, Zadok|strong=\"H6659\"*;" + }, + { + "verseNum": 18, + "text": "of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Elihu, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1732\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*; of|strong=\"H1121\"* Issachar|strong=\"H3485\"*, Omri|strong=\"H6018\"* the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Michael|strong=\"H4317\"*;" + }, + { + "verseNum": 19, + "text": "of|strong=\"H1121\"* Zebulun|strong=\"H2074\"*, Ishmaiah|strong=\"H3460\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Obadiah|strong=\"H5662\"*; of|strong=\"H1121\"* Naphtali|strong=\"H5321\"*, Jeremoth|strong=\"H3406\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azriel|strong=\"H5837\"*;" + }, + { + "verseNum": 20, + "text": "of|strong=\"H1121\"* the|strong=\"H2677\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, Hoshea|strong=\"H1954\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaziah|strong=\"H5812\"*; of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, Joel|strong=\"H3100\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*;" + }, + { + "verseNum": 21, + "text": "of|strong=\"H1121\"* the|strong=\"H2677\"* half-tribe|strong=\"H2677\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"* in|strong=\"H1121\"* Gilead|strong=\"H1568\"*, Iddo|strong=\"H3035\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*; of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, Jaasiel|strong=\"H3300\"* the|strong=\"H2677\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abner;" + }, + { + "verseNum": 22, + "text": "of|strong=\"H1121\"* Dan|strong=\"H1835\"*, Azarel|strong=\"H5832\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*. These were|strong=\"H3478\"* the|strong=\"H1121\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1121\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* didn’t take|strong=\"H5375\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H5375\"* from|strong=\"H3478\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* under|strong=\"H4295\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* said he|strong=\"H3588\"* would|strong=\"H3068\"* increase|strong=\"H7235\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* the|strong=\"H3588\"* stars|strong=\"H3556\"* of|strong=\"H1121\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 24, + "text": "Joab|strong=\"H3097\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zeruiah|strong=\"H6870\"* began|strong=\"H2490\"* to|strong=\"H3478\"* take|strong=\"H1961\"* a|strong=\"H3068\"* census, but|strong=\"H3808\"* didn’t finish|strong=\"H3615\"*; and|strong=\"H1121\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* for|strong=\"H5921\"* this|strong=\"H2063\"*. The|strong=\"H5921\"* number|strong=\"H4557\"* wasn’t put|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* account|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"* of|strong=\"H1121\"* King|strong=\"H4428\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 25, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s treasures was|strong=\"H5892\"* Azmaveth|strong=\"H5820\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adiel|strong=\"H5717\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* treasures in|strong=\"H5921\"* the|strong=\"H5921\"* fields|strong=\"H7704\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* villages|strong=\"H3723\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* towers|strong=\"H4026\"* was|strong=\"H5892\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*;" + }, + { + "verseNum": 26, + "text": "Over|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H5921\"* field|strong=\"H7704\"* for|strong=\"H5921\"* tillage|strong=\"H5656\"* of|strong=\"H1121\"* the|strong=\"H5921\"* ground|strong=\"H7704\"* was|strong=\"H1121\"* Ezri|strong=\"H5836\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chelub|strong=\"H3620\"*." + }, + { + "verseNum": 27, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* vineyards|strong=\"H3754\"* was|strong=\"H2067\"* Shimei|strong=\"H8096\"* the|strong=\"H5921\"* Ramathite|strong=\"H7435\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* increase of|strong=\"H5921\"* the|strong=\"H5921\"* vineyards|strong=\"H3754\"* for|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"* cellars was|strong=\"H2067\"* Zabdi|strong=\"H2067\"* the|strong=\"H5921\"* Shiphmite|strong=\"H8225\"*." + }, + { + "verseNum": 28, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* and|strong=\"H8081\"* the|strong=\"H5921\"* sycamore|strong=\"H8256\"* trees|strong=\"H2132\"* that|strong=\"H8081\"* were|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lowland|strong=\"H8219\"* was|strong=\"H8081\"* Baal Hanan the|strong=\"H5921\"* Gederite|strong=\"H1451\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* cellars of|strong=\"H5921\"* oil|strong=\"H8081\"* was|strong=\"H8081\"* Joash|strong=\"H3135\"*." + }, + { + "verseNum": 29, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* herds|strong=\"H1241\"* that|strong=\"H1121\"* fed|strong=\"H7462\"* in|strong=\"H5921\"* Sharon|strong=\"H8289\"* was|strong=\"H1121\"* Shitrai|strong=\"H7861\"* the|strong=\"H5921\"* Sharonite|strong=\"H8290\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* herds|strong=\"H1241\"* that|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valleys|strong=\"H6010\"* was|strong=\"H1121\"* Shaphat|strong=\"H8202\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adlai|strong=\"H5724\"*." + }, + { + "verseNum": 30, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"* was|strong=\"H3459\"* Obil the|strong=\"H5921\"* Ishmaelite|strong=\"H3459\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* donkeys was|strong=\"H3459\"* Jehdeiah|strong=\"H3165\"* the|strong=\"H5921\"* Meronothite|strong=\"H4824\"*. Over|strong=\"H5921\"* the|strong=\"H5921\"* flocks was|strong=\"H3459\"* Jaziz the|strong=\"H5921\"* Hagrite." + }, + { + "verseNum": 31, + "text": "All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1732\"* the|strong=\"H3605\"* rulers|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* property|strong=\"H7399\"* which|strong=\"H8269\"* was|strong=\"H1732\"* King|strong=\"H4428\"* David|strong=\"H1732\"*’s." + }, + { + "verseNum": 32, + "text": "Also|strong=\"H1732\"* Jonathan|strong=\"H3083\"*, David|strong=\"H1732\"*’s uncle|strong=\"H1730\"*, was|strong=\"H1732\"* a|strong=\"H3068\"* counselor|strong=\"H3289\"*, a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* understanding, and|strong=\"H1121\"* a|strong=\"H3068\"* scribe|strong=\"H5608\"*. Jehiel|strong=\"H3171\"* the|strong=\"H5973\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hachmoni|strong=\"H2453\"* was|strong=\"H1732\"* with|strong=\"H5973\"* the|strong=\"H5973\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*." + }, + { + "verseNum": 33, + "text": "Ahithophel was|strong=\"H4428\"* the|strong=\"H2365\"* king|strong=\"H4428\"*’s counselor|strong=\"H3289\"*. Hushai|strong=\"H2365\"* the|strong=\"H2365\"* Archite was|strong=\"H4428\"* the|strong=\"H2365\"* king|strong=\"H4428\"*’s friend|strong=\"H7453\"*." + }, + { + "verseNum": 34, + "text": "After Ahithophel was|strong=\"H4428\"* Jehoiada|strong=\"H3077\"* the|strong=\"H1141\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, and|strong=\"H1121\"* Abiathar. Joab|strong=\"H3097\"* was|strong=\"H4428\"* the|strong=\"H1141\"* captain|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1141\"* king|strong=\"H4428\"*’s army|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* assembled|strong=\"H6950\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* companies|strong=\"H4256\"* who|strong=\"H3605\"* served|strong=\"H8334\"* the|strong=\"H3605\"* king|strong=\"H4428\"* by|strong=\"H3478\"* division|strong=\"H4256\"*, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands, the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* rulers|strong=\"H8269\"* over|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* substance|strong=\"H7399\"* and|strong=\"H3967\"* possessions|strong=\"H7399\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, with|strong=\"H5973\"* the|strong=\"H3605\"* officers|strong=\"H8269\"* and|strong=\"H3967\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* his|strong=\"H3068\"* feet|strong=\"H7272\"* and|strong=\"H6965\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* me|strong=\"H5921\"*, my|strong=\"H8085\"* brothers and|strong=\"H6965\"* my|strong=\"H8085\"* people|strong=\"H5971\"*! As|strong=\"H3824\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, it|strong=\"H5921\"* was|strong=\"H3068\"* in|strong=\"H5921\"* my|strong=\"H8085\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* rest|strong=\"H4496\"* for|strong=\"H5921\"* the|strong=\"H5921\"* ark of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, and|strong=\"H6965\"* for|strong=\"H5921\"* the|strong=\"H5921\"* footstool|strong=\"H1916\"* of|strong=\"H4428\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* had|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* the|strong=\"H5921\"* building|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* God|strong=\"H3808\"* said to|strong=\"H1004\"* me|strong=\"H3808\"*, ‘You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H8210\"* name|strong=\"H8034\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1004\"* a|strong=\"H3068\"* man of|strong=\"H1004\"* war|strong=\"H4421\"* and|strong=\"H1004\"* have|strong=\"H1129\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*.’" + }, + { + "verseNum": 4, + "text": "However|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, chose me|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*. For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* chosen Judah|strong=\"H3063\"* to|strong=\"H3478\"* be|strong=\"H1961\"* prince|strong=\"H5057\"*; and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"*; and|strong=\"H1121\"* among|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* my|strong=\"H3605\"* father|strong=\"H1121\"* he|strong=\"H3588\"* took|strong=\"H1961\"* pleasure|strong=\"H7521\"* in|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H3478\"* make|strong=\"H4427\"* me|strong=\"H5921\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Of|strong=\"H1121\"* all|strong=\"H3605\"* my|strong=\"H5414\"* sons|strong=\"H1121\"* (for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* many|strong=\"H7227\"* sons|strong=\"H1121\"*), he|strong=\"H3588\"* has|strong=\"H3068\"* chosen Solomon|strong=\"H8010\"* my|strong=\"H5414\"* son|strong=\"H1121\"* to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s kingdom|strong=\"H4438\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* said to|strong=\"H1961\"* me|strong=\"H1961\"*, ‘Solomon|strong=\"H8010\"*, your|strong=\"H3588\"* son|strong=\"H1121\"*, shall|strong=\"H1121\"* build|strong=\"H1129\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1121\"* my|strong=\"H1961\"* courts|strong=\"H2691\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* chosen him|strong=\"H1931\"* to|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H1961\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* establish|strong=\"H3559\"* his|strong=\"H3559\"* kingdom|strong=\"H4438\"* forever|strong=\"H5769\"* if he|strong=\"H3117\"* continues to|strong=\"H5704\"* do|strong=\"H6213\"* my|strong=\"H6213\"* commandments|strong=\"H4687\"* and|strong=\"H3117\"* my|strong=\"H6213\"* ordinances|strong=\"H4941\"*, as|strong=\"H5704\"* it|strong=\"H6213\"* is|strong=\"H2088\"* today|strong=\"H3117\"*.’" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* audience of|strong=\"H1121\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, observe|strong=\"H8104\"* and|strong=\"H1121\"* seek|strong=\"H1875\"* out|strong=\"H3423\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3068\"* possess|strong=\"H3423\"* this|strong=\"H6258\"* good|strong=\"H2896\"* land, and|strong=\"H1121\"* leave|strong=\"H4616\"* it|strong=\"H3423\"* for|strong=\"H5704\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H5704\"* your|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H1875\"* you|strong=\"H3605\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"*, Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* serve|strong=\"H5647\"* him|strong=\"H4672\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* with|strong=\"H3068\"* a|strong=\"H3068\"* willing|strong=\"H2655\"* mind|strong=\"H3820\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* searches|strong=\"H1875\"* all|strong=\"H3605\"* hearts|strong=\"H3820\"*, and|strong=\"H1121\"* understands|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* imaginations|strong=\"H4284\"* of|strong=\"H1121\"* the|strong=\"H3605\"* thoughts|strong=\"H4284\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* seek|strong=\"H1875\"* him|strong=\"H4672\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H3588\"*; but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* forsake|strong=\"H5800\"* him|strong=\"H4672\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* you|strong=\"H3588\"* off|strong=\"H2186\"* forever|strong=\"H5703\"*." + }, + { + "verseNum": 10, + "text": "Take|strong=\"H2388\"* heed|strong=\"H7200\"* now|strong=\"H6258\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* the|strong=\"H7200\"* sanctuary|strong=\"H4720\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* David|strong=\"H1732\"* gave|strong=\"H5414\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* his|strong=\"H5414\"* son|strong=\"H1121\"* the|strong=\"H5414\"* plans for|strong=\"H1004\"* the|strong=\"H5414\"* porch of|strong=\"H1121\"* the|strong=\"H5414\"* temple|strong=\"H1004\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* houses|strong=\"H1004\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* treasuries|strong=\"H1597\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* upper|strong=\"H5944\"* rooms|strong=\"H2315\"*, for|strong=\"H1004\"* its|strong=\"H5414\"* inner|strong=\"H6442\"* rooms|strong=\"H2315\"*, for|strong=\"H1004\"* the|strong=\"H5414\"* place|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5414\"* mercy|strong=\"H3727\"* seat|strong=\"H3727\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* the|strong=\"H3605\"* plans of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3605\"* Spirit|strong=\"H7307\"*, for|strong=\"H3068\"* the|strong=\"H3605\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* rooms|strong=\"H3957\"*, for|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* the|strong=\"H3605\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"*;" + }, + { + "verseNum": 13, + "text": "also|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1004\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* service|strong=\"H5656\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*—" + }, + { + "verseNum": 14, + "text": "of|strong=\"H3627\"* gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3627\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* for|strong=\"H3627\"* all|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H3627\"* service|strong=\"H5656\"*, for|strong=\"H3627\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* silver|strong=\"H3701\"* by|strong=\"H2091\"* weight|strong=\"H4948\"*, for|strong=\"H3627\"* all|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H3627\"* service|strong=\"H5656\"*;" + }, + { + "verseNum": 15, + "text": "by|strong=\"H2091\"* weight|strong=\"H4948\"* also for|strong=\"H3701\"* the|strong=\"H5656\"* lamp|strong=\"H5216\"* stands of|strong=\"H2091\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*, of|strong=\"H2091\"* gold|strong=\"H2091\"*, by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every lamp|strong=\"H5216\"* stand and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the|strong=\"H5656\"* lamp|strong=\"H5216\"* stands of|strong=\"H2091\"* silver|strong=\"H3701\"*, by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every lamp|strong=\"H5216\"* stand and|strong=\"H3701\"* for|strong=\"H3701\"* its lamps|strong=\"H5216\"*, according|strong=\"H3701\"* to|strong=\"H3701\"* the|strong=\"H5656\"* use|strong=\"H5656\"* of|strong=\"H2091\"* every lamp|strong=\"H5216\"* stand;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3701\"* the gold|strong=\"H2091\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* the tables|strong=\"H7979\"* of|strong=\"H2091\"* show bread, for|strong=\"H3701\"* every table|strong=\"H7979\"*; and|strong=\"H3701\"* silver|strong=\"H3701\"* for|strong=\"H3701\"* the tables|strong=\"H7979\"* of|strong=\"H2091\"* silver|strong=\"H3701\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H3701\"* the forks|strong=\"H4207\"*, the basins|strong=\"H4219\"*, and|strong=\"H3701\"* the cups|strong=\"H7184\"*, of|strong=\"H4219\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the golden|strong=\"H2091\"* bowls|strong=\"H4219\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every bowl|strong=\"H4219\"*; and|strong=\"H3701\"* for|strong=\"H3701\"* the silver|strong=\"H3701\"* bowls|strong=\"H4219\"* by|strong=\"H2091\"* weight|strong=\"H4948\"* for|strong=\"H3701\"* every bowl|strong=\"H4219\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* incense|strong=\"H7004\"*, refined|strong=\"H2212\"* gold|strong=\"H2091\"* by|strong=\"H5921\"* weight|strong=\"H4948\"*; and|strong=\"H3068\"* gold|strong=\"H2091\"* for|strong=\"H5921\"* the|strong=\"H5921\"* plans for|strong=\"H5921\"* the|strong=\"H5921\"* chariot|strong=\"H4818\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* that|strong=\"H3068\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* and|strong=\"H3068\"* cover|strong=\"H5526\"* the|strong=\"H5921\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*." + }, + { + "verseNum": 19, + "text": "“All|strong=\"H3605\"* this|strong=\"H3068\"*”, David|strong=\"H3027\"* said, “I|strong=\"H5921\"* have|strong=\"H3068\"* been|strong=\"H3605\"* made|strong=\"H4399\"* to|strong=\"H3068\"* understand|strong=\"H7919\"* in|strong=\"H5921\"* writing|strong=\"H3791\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4399\"* of|strong=\"H3068\"* this|strong=\"H3068\"* pattern|strong=\"H8403\"*.”" + }, + { + "verseNum": 20, + "text": "David|strong=\"H1732\"* said to|strong=\"H5704\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “Be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* courageous|strong=\"H2388\"*, and|strong=\"H1121\"* do|strong=\"H6213\"* it|strong=\"H3588\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, nor|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, even|strong=\"H5704\"* my|strong=\"H3605\"* God|strong=\"H3068\"*, is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3615\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* forsake|strong=\"H5800\"* you|strong=\"H3588\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* for|strong=\"H3588\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* is|strong=\"H3068\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 21, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* are|strong=\"H5971\"* the|strong=\"H3605\"* divisions|strong=\"H4256\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* for|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God|strong=\"H2451\"*’s house|strong=\"H1004\"*. Every|strong=\"H3605\"* willing|strong=\"H5081\"* man|strong=\"H5081\"* who|strong=\"H3605\"* has|strong=\"H1697\"* skill|strong=\"H2451\"* for|strong=\"H1004\"* any|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H1004\"* service|strong=\"H5656\"* shall|strong=\"H3548\"* be|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H3605\"* in|strong=\"H1004\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* work|strong=\"H4399\"*. Also|strong=\"H5971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H1697\"* entirely|strong=\"H3605\"* at|strong=\"H1004\"* your|strong=\"H3605\"* command|strong=\"H1697\"*.”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, “Solomon|strong=\"H8010\"* my|strong=\"H3605\"* son|strong=\"H1121\"*, whom|strong=\"H3588\"* alone God|strong=\"H3068\"* has|strong=\"H3068\"* chosen, is|strong=\"H3068\"* yet|strong=\"H3588\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H4399\"* is|strong=\"H3068\"* great|strong=\"H1419\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* palace|strong=\"H1002\"* is|strong=\"H3068\"* not|strong=\"H3808\"* for|strong=\"H3588\"* man|strong=\"H5288\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Now I|strong=\"H3559\"* have|strong=\"H3605\"* prepared|strong=\"H3559\"* with|strong=\"H1004\"* all|strong=\"H3605\"* my|strong=\"H3605\"* might|strong=\"H3581\"* for|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3605\"* God the|strong=\"H3605\"* gold|strong=\"H2091\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* bronze|strong=\"H5178\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"*, iron|strong=\"H1270\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* iron|strong=\"H1270\"*, and|strong=\"H3701\"* wood|strong=\"H6086\"* for|strong=\"H1004\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H1004\"* wood|strong=\"H6086\"*, also onyx|strong=\"H7718\"* stones|strong=\"H7553\"*, stones|strong=\"H7553\"* to|strong=\"H1004\"* be|strong=\"H6086\"* set|strong=\"H3559\"*, stones|strong=\"H7553\"* for|strong=\"H1004\"* inlaid|strong=\"H4394\"* work|strong=\"H7553\"* of|strong=\"H1004\"* various|strong=\"H7553\"* colors|strong=\"H7553\"*, all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1004\"* precious|strong=\"H3368\"* stones|strong=\"H7553\"*, and|strong=\"H3701\"* marble|strong=\"H7893\"* stones|strong=\"H7553\"* in|strong=\"H1004\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H1004\"* addition, because|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H3426\"* set|strong=\"H5414\"* my|strong=\"H5414\"* affection|strong=\"H7521\"* on|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5414\"* God|strong=\"H5414\"*, since|strong=\"H5750\"* I|strong=\"H5414\"* have|strong=\"H3426\"* a|strong=\"H3068\"* treasure|strong=\"H5459\"* of|strong=\"H1004\"* my|strong=\"H5414\"* own of|strong=\"H1004\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5414\"* God|strong=\"H5414\"*, over|strong=\"H5414\"* and|strong=\"H3701\"* above|strong=\"H4605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5414\"* have|strong=\"H3426\"* prepared|strong=\"H3559\"* for|strong=\"H1004\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* house|strong=\"H1004\"*:" + }, + { + "verseNum": 4, + "text": "even|strong=\"H7651\"* three|strong=\"H7969\"* thousand talents|strong=\"H3603\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*,+ 29:4 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 3000 talents is about 90 metric tons* of|strong=\"H1004\"* the|strong=\"H1004\"* gold|strong=\"H2091\"* of|strong=\"H1004\"* Ophir, and|strong=\"H3701\"* seven|strong=\"H7651\"* thousand talents|strong=\"H3603\"*+ 29:4 about 210 metric tons* of|strong=\"H1004\"* refined|strong=\"H2212\"* silver|strong=\"H3701\"*, with|strong=\"H1004\"* which|strong=\"H1004\"* to|strong=\"H1004\"* overlay|strong=\"H2902\"* the|strong=\"H1004\"* walls|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H1004\"* houses|strong=\"H1004\"*;" + }, + { + "verseNum": 5, + "text": "of|strong=\"H3068\"* gold|strong=\"H2091\"* for|strong=\"H3027\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H3068\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* silver|strong=\"H3701\"* for|strong=\"H3027\"* the|strong=\"H3605\"* things|strong=\"H3605\"* of|strong=\"H3068\"* silver|strong=\"H3701\"*, and|strong=\"H3068\"* for|strong=\"H3027\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3068\"* work|strong=\"H4399\"* to|strong=\"H3068\"* be|strong=\"H3027\"* made|strong=\"H4399\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* artisans. Who|strong=\"H4310\"* then|strong=\"H3068\"* offers willingly|strong=\"H5068\"* to|strong=\"H3068\"* consecrate|strong=\"H4390\"* himself|strong=\"H3027\"* today|strong=\"H3117\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3478\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3478\"* fathers’ households, and|strong=\"H3967\"* the|strong=\"H3478\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3478\"* tribes|strong=\"H7626\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3967\"* the|strong=\"H3478\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* thousands and|strong=\"H3967\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"*, with|strong=\"H4428\"* the|strong=\"H3478\"* rulers|strong=\"H8269\"* over|strong=\"H4428\"* the|strong=\"H3478\"* king|strong=\"H4428\"*’s work|strong=\"H4399\"*, offered|strong=\"H5068\"* willingly|strong=\"H5068\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3967\"* they|strong=\"H5414\"* gave|strong=\"H5414\"* for|strong=\"H1004\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"* of|strong=\"H1004\"* gold|strong=\"H2091\"* five|strong=\"H2568\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*+ 29:7 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 5000 talents is about 150 metric tons* and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand|strong=\"H7239\"* darics,+ 29:7 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* of|strong=\"H1004\"* silver|strong=\"H3701\"* ten|strong=\"H6235\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*, of|strong=\"H1004\"* bronze|strong=\"H5178\"* eighteen|strong=\"H8083\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand|strong=\"H7239\"* talents|strong=\"H3603\"*." + }, + { + "verseNum": 8, + "text": "People with|strong=\"H1004\"* whom precious stones were|strong=\"H3027\"* found|strong=\"H4672\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H5921\"* treasure of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* Jehiel|strong=\"H3171\"* the|strong=\"H5921\"* Gershonite|strong=\"H1649\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1571\"* the|strong=\"H5921\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* offered|strong=\"H5068\"* willingly|strong=\"H5068\"*, because|strong=\"H3588\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"* they|strong=\"H3588\"* offered|strong=\"H5068\"* willingly|strong=\"H5068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"* also|strong=\"H1571\"* rejoiced|strong=\"H8055\"* with|strong=\"H3068\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H1732\"* David|strong=\"H1732\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"* before|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*; and|strong=\"H3478\"* David|strong=\"H1732\"* said, “You|strong=\"H3605\"* are|strong=\"H3478\"* blessed|strong=\"H1288\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* our|strong=\"H3068\"* father, forever|strong=\"H5769\"* and|strong=\"H3478\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "Yours, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* the|strong=\"H3605\"* greatness|strong=\"H1420\"*, the|strong=\"H3605\"* power|strong=\"H1369\"*, the|strong=\"H3605\"* glory|strong=\"H8597\"*, the|strong=\"H3605\"* victory|strong=\"H5331\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* majesty|strong=\"H1935\"*! For|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* is|strong=\"H3068\"* yours. Yours is|strong=\"H3068\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* are|strong=\"H8064\"* exalted|strong=\"H4984\"* as|strong=\"H3068\"* head|strong=\"H7218\"* above all|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Both|strong=\"H3605\"* riches|strong=\"H6239\"* and|strong=\"H3027\"* honor|strong=\"H3519\"* come from|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3027\"* you|strong=\"H6440\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"*! In|strong=\"H6440\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H3027\"* power|strong=\"H3027\"* and|strong=\"H3027\"* might|strong=\"H1369\"*! It|strong=\"H6440\"* is|strong=\"H3027\"* in|strong=\"H6440\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* to|strong=\"H6440\"* make|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H3027\"* to|strong=\"H6440\"* give strength|strong=\"H3581\"* to|strong=\"H6440\"* all|strong=\"H3605\"*!" + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, our God, we|strong=\"H3068\"* thank|strong=\"H3034\"* you|strong=\"H3034\"* and|strong=\"H3034\"* praise|strong=\"H1984\"* your|strong=\"H3034\"* glorious|strong=\"H8597\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* who|strong=\"H4310\"* am I|strong=\"H3588\"*, and|strong=\"H3027\"* what|strong=\"H4310\"* is|strong=\"H4310\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H3588\"* be|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H5414\"* offer|strong=\"H5414\"* so|strong=\"H4480\"* willingly|strong=\"H5068\"* as|strong=\"H3588\"* this|strong=\"H2063\"*? For|strong=\"H3588\"* all|strong=\"H3605\"* things|strong=\"H3605\"* come|strong=\"H5971\"* from|strong=\"H4480\"* you|strong=\"H3588\"*, and|strong=\"H3027\"* we|strong=\"H3068\"* have|strong=\"H5971\"* given|strong=\"H5414\"* you|strong=\"H3588\"* of|strong=\"H3027\"* your|strong=\"H3605\"* own|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* strangers|strong=\"H1616\"* before|strong=\"H6440\"* you|strong=\"H3588\"* and|strong=\"H3117\"* foreigners|strong=\"H1616\"*, as|strong=\"H3117\"* all|strong=\"H3605\"* our|strong=\"H3605\"* fathers were|strong=\"H3117\"*. Our|strong=\"H3605\"* days|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth are|strong=\"H3117\"* as|strong=\"H3117\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*, and|strong=\"H3117\"* there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* remaining." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, all|strong=\"H3605\"* this|strong=\"H2088\"* store|strong=\"H1995\"* that|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* to|strong=\"H3068\"* build|strong=\"H1129\"* you|strong=\"H3605\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3027\"* your|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* comes from|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* is|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* own|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* also|strong=\"H5971\"*, my|strong=\"H3605\"* God, that|strong=\"H3588\"* you|strong=\"H3588\"* try the|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H5971\"* have|strong=\"H5971\"* pleasure|strong=\"H7521\"* in|strong=\"H4672\"* uprightness|strong=\"H3476\"*. As|strong=\"H3824\"* for|strong=\"H3588\"* me|strong=\"H7200\"*, in|strong=\"H4672\"* the|strong=\"H3605\"* uprightness|strong=\"H3476\"* of|strong=\"H5971\"* my|strong=\"H3605\"* heart|strong=\"H3824\"* I|strong=\"H3588\"* have|strong=\"H5971\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H3605\"*. Now|strong=\"H6258\"* I|strong=\"H3588\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* with|strong=\"H3045\"* joy|strong=\"H8057\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, who|strong=\"H3605\"* are|strong=\"H5971\"* present|strong=\"H4672\"* here|strong=\"H6311\"*, offer|strong=\"H5068\"* willingly|strong=\"H5068\"* to|strong=\"H3824\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H8104\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Abraham, of|strong=\"H3068\"* Isaac|strong=\"H3327\"*, and|strong=\"H3478\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, our|strong=\"H3068\"* fathers, keep|strong=\"H8104\"* this|strong=\"H2063\"* desire|strong=\"H3824\"* forever|strong=\"H5769\"* in|strong=\"H3478\"* the|strong=\"H8104\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* the|strong=\"H8104\"* heart|strong=\"H3824\"* of|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* prepare|strong=\"H3559\"* their|strong=\"H3068\"* heart|strong=\"H3824\"* for|strong=\"H3068\"* you|strong=\"H8104\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H6213\"* Solomon|strong=\"H8010\"* my|strong=\"H8104\"* son|strong=\"H1121\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*, to|strong=\"H6213\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* commandments|strong=\"H4687\"*, your|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* build|strong=\"H1129\"* the|strong=\"H3605\"* palace|strong=\"H1002\"*, for|strong=\"H6213\"* which|strong=\"H1002\"* I|strong=\"H5414\"* have|strong=\"H1121\"* made|strong=\"H6213\"* provision|strong=\"H3559\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H4428\"* David|strong=\"H1732\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, “Now|strong=\"H4994\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*!”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3117\"* sacrificed|strong=\"H2076\"* sacrifices|strong=\"H2077\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3605\"* next|strong=\"H4283\"* day|strong=\"H3117\"* after|strong=\"H4283\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, even|strong=\"H3068\"* one|strong=\"H3532\"* thousand bulls|strong=\"H6499\"*, one|strong=\"H3532\"* thousand rams, and|strong=\"H3478\"* one|strong=\"H3532\"* thousand lambs|strong=\"H3532\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5930\"* and|strong=\"H3478\"* sacrifices|strong=\"H2077\"* in|strong=\"H3478\"* abundance|strong=\"H7230\"* for|strong=\"H3068\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H1121\"* ate and|strong=\"H1121\"* drank|strong=\"H8354\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* with|strong=\"H3068\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*. They|strong=\"H3117\"* made|strong=\"H4427\"* Solomon|strong=\"H8010\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4427\"* the|strong=\"H6440\"* second|strong=\"H8145\"* time|strong=\"H3117\"*, and|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H6440\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* be|strong=\"H3068\"* prince|strong=\"H5057\"*, and|strong=\"H1121\"* Zadok|strong=\"H6659\"* to|strong=\"H3068\"* be|strong=\"H3068\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H8085\"* Solomon|strong=\"H8010\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* king|strong=\"H4428\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father, and|strong=\"H3478\"* prospered|strong=\"H6743\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* obeyed|strong=\"H8085\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H1121\"* also|strong=\"H1571\"* all|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* King|strong=\"H4428\"* David|strong=\"H1732\"* submitted|strong=\"H5414\"* themselves|strong=\"H5414\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* magnified|strong=\"H1431\"* Solomon|strong=\"H8010\"* exceedingly|strong=\"H4605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* him|strong=\"H5414\"* such|strong=\"H1961\"* royal|strong=\"H4438\"* majesty|strong=\"H1935\"* as|strong=\"H1961\"* had|strong=\"H3068\"* not|strong=\"H3808\"* been|strong=\"H1961\"* on|strong=\"H5921\"* any|strong=\"H3605\"* king|strong=\"H4428\"* before|strong=\"H6440\"* him|strong=\"H5414\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H3478\"* David|strong=\"H1732\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* time|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* forty years|strong=\"H8141\"*; he|strong=\"H3117\"* reigned|strong=\"H4427\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Hebron|strong=\"H2275\"*, and|strong=\"H3478\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* thirty-three|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H3117\"* died|strong=\"H4191\"* at|strong=\"H3117\"* a|strong=\"H3068\"* good|strong=\"H2896\"* old|strong=\"H1121\"* age|strong=\"H3117\"*, full|strong=\"H3117\"* of|strong=\"H1121\"* days|strong=\"H3117\"*, riches|strong=\"H6239\"*, and|strong=\"H1121\"* honor|strong=\"H3519\"*; and|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H8010\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4191\"* his|strong=\"H8010\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H2009\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* David|strong=\"H1732\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, first|strong=\"H7223\"* and|strong=\"H4428\"* last, behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Samuel|strong=\"H8050\"* the|strong=\"H5921\"* seer|strong=\"H2374\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H4428\"* Gad|strong=\"H1410\"* the|strong=\"H5921\"* seer|strong=\"H2374\"*," + }, + { + "verseNum": 30, + "text": "with|strong=\"H5973\"* all|strong=\"H3605\"* his|strong=\"H3605\"* reign|strong=\"H4438\"* and|strong=\"H3478\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* events that|strong=\"H3605\"* involved him|strong=\"H5921\"*, Israel|strong=\"H3478\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H5921\"* the|strong=\"H3605\"* lands." + } + ] + } + ] + }, + { + "name": "2 Chronicles", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Solomon|strong=\"H8010\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* was|strong=\"H3068\"* firmly|strong=\"H2388\"* established|strong=\"H2388\"* in|strong=\"H5921\"* his|strong=\"H3068\"* kingdom|strong=\"H4438\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* his|strong=\"H3068\"* God|strong=\"H3068\"*+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* made|strong=\"H2388\"* him|strong=\"H5921\"* exceedingly|strong=\"H4605\"* great|strong=\"H1431\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* spoke to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* thousands and|strong=\"H3967\"* of|strong=\"H8269\"* hundreds|strong=\"H3967\"*, to|strong=\"H3478\"* the|strong=\"H3605\"* judges|strong=\"H8199\"*, and|strong=\"H3967\"* to|strong=\"H3478\"* every|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H8269\"* the|strong=\"H3605\"* fathers’ households." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* Solomon|strong=\"H8010\"*, and|strong=\"H4872\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3588\"* was|strong=\"H3068\"* at|strong=\"H3068\"* Gibeon|strong=\"H1391\"*; for|strong=\"H3588\"* God|strong=\"H3068\"*’s Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s servant|strong=\"H5650\"* Moses|strong=\"H4872\"* had|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* brought|strong=\"H5927\"* God’s ark up|strong=\"H5927\"* from|strong=\"H5927\"* Kiriath|strong=\"H7157\"* Jearim to|strong=\"H5927\"* the|strong=\"H3588\"* place|strong=\"H3559\"* that|strong=\"H3588\"* David|strong=\"H1732\"* had|strong=\"H1732\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1732\"* pitched|strong=\"H5186\"* a|strong=\"H3068\"* tent for|strong=\"H3588\"* it|strong=\"H3588\"* at|strong=\"H1732\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Moreover the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* that|strong=\"H3068\"* Bezalel|strong=\"H1212\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uri, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, had|strong=\"H3068\"* made|strong=\"H6213\"* was|strong=\"H3068\"* there|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s tabernacle|strong=\"H4908\"*; and|strong=\"H1121\"* Solomon|strong=\"H8010\"* and|strong=\"H1121\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* were|strong=\"H1121\"* seeking|strong=\"H1875\"* counsel there|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Solomon|strong=\"H8010\"* went|strong=\"H5927\"* up|strong=\"H5927\"* there|strong=\"H8033\"* to|strong=\"H3068\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H5921\"* the|strong=\"H6440\"* Tent of|strong=\"H3068\"* Meeting|strong=\"H4150\"*, and|strong=\"H3068\"* offered|strong=\"H5927\"* one|strong=\"H3068\"* thousand burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "That|strong=\"H7200\"* night|strong=\"H3915\"*, God|strong=\"H5414\"* appeared|strong=\"H7200\"* to|strong=\"H5414\"* Solomon|strong=\"H8010\"* and|strong=\"H3915\"* said to|strong=\"H5414\"* him|strong=\"H5414\"*, “Ask|strong=\"H7592\"* for|strong=\"H7592\"* what|strong=\"H4100\"* you|strong=\"H5414\"* want me|strong=\"H5414\"* to|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 8, + "text": "Solomon|strong=\"H8010\"* said to|strong=\"H6213\"* God, “You|strong=\"H6213\"* have|strong=\"H5973\"* shown|strong=\"H6213\"* great|strong=\"H1419\"* loving kindness|strong=\"H2617\"* to|strong=\"H6213\"* David|strong=\"H1732\"* my|strong=\"H1732\"* father, and|strong=\"H1419\"* have|strong=\"H5973\"* made|strong=\"H6213\"* me|strong=\"H6213\"* king|strong=\"H4427\"* in|strong=\"H6213\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, let|strong=\"H6258\"* your|strong=\"H3068\"* promise|strong=\"H1697\"* to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father be|strong=\"H1697\"* established; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H4427\"* me|strong=\"H5921\"* king|strong=\"H4427\"* over|strong=\"H5921\"* a|strong=\"H3068\"* people|strong=\"H5971\"* like|strong=\"H5973\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth|strong=\"H6083\"* in|strong=\"H5921\"* multitude|strong=\"H7227\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* give|strong=\"H5414\"* me|strong=\"H5414\"* wisdom|strong=\"H2451\"* and|strong=\"H1419\"* knowledge|strong=\"H4093\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1419\"* come|strong=\"H3318\"* in|strong=\"H6440\"* before|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* judge|strong=\"H8199\"* this|strong=\"H2088\"* great|strong=\"H1419\"* people|strong=\"H5971\"* of|strong=\"H6440\"* yours|strong=\"H5414\"*?”" + }, + { + "verseNum": 11, + "text": "God|strong=\"H3808\"* said to|strong=\"H1961\"* Solomon|strong=\"H8010\"*, “Because|strong=\"H5921\"* this|strong=\"H2063\"* was|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3824\"*, and|strong=\"H3117\"* you|strong=\"H5921\"* have|strong=\"H1961\"* not|strong=\"H3808\"* asked|strong=\"H7592\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, honor|strong=\"H3519\"*, or|strong=\"H3808\"* the|strong=\"H5921\"* life|strong=\"H5315\"* of|strong=\"H3117\"* those|strong=\"H5921\"* who|strong=\"H5971\"* hate|strong=\"H8130\"* you|strong=\"H5921\"*, nor|strong=\"H3808\"* yet|strong=\"H1571\"* have|strong=\"H1961\"* you|strong=\"H5921\"* asked|strong=\"H7592\"* for|strong=\"H5921\"* long|strong=\"H3117\"* life|strong=\"H5315\"*; but|strong=\"H3808\"* have|strong=\"H1961\"* asked|strong=\"H7592\"* for|strong=\"H5921\"* wisdom|strong=\"H2451\"* and|strong=\"H3117\"* knowledge|strong=\"H4093\"* for|strong=\"H5921\"* yourself|strong=\"H5315\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* may|strong=\"H1961\"* judge|strong=\"H8199\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, over|strong=\"H5921\"* whom|strong=\"H5971\"* I|strong=\"H3117\"* have|strong=\"H1961\"* made|strong=\"H4427\"* you|strong=\"H5921\"* king|strong=\"H4427\"*," + }, + { + "verseNum": 12, + "text": "therefore|strong=\"H3651\"* wisdom|strong=\"H2451\"* and|strong=\"H4428\"* knowledge|strong=\"H4093\"* is|strong=\"H3651\"* granted|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, and|strong=\"H4428\"* honor|strong=\"H3519\"*, such|strong=\"H3651\"* as|strong=\"H1961\"* none|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* have|strong=\"H1961\"* had|strong=\"H1961\"* who|strong=\"H4428\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H4428\"* none|strong=\"H3808\"* after|strong=\"H1961\"* you|strong=\"H5414\"* will|strong=\"H1961\"* have|strong=\"H1961\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5921\"* Solomon|strong=\"H8010\"* came|strong=\"H3478\"* from|strong=\"H6440\"* the|strong=\"H6440\"* high|strong=\"H1116\"* place|strong=\"H1116\"* that|strong=\"H3478\"* was|strong=\"H3478\"* at|strong=\"H5921\"* Gibeon|strong=\"H1391\"*, from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Tent of|strong=\"H6440\"* Meeting|strong=\"H4150\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3478\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Solomon|strong=\"H8010\"* gathered|strong=\"H8010\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* horsemen|strong=\"H6571\"*. He|strong=\"H8147\"* had|strong=\"H1961\"* one|strong=\"H1961\"* thousand four hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"* that|strong=\"H4428\"* he|strong=\"H8147\"* placed|strong=\"H3240\"* in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"* to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* stones in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3701\"* he|strong=\"H5414\"* made|strong=\"H5414\"* cedars to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* common|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3947\"* horses|strong=\"H5483\"* which|strong=\"H5483\"* Solomon|strong=\"H8010\"* had|strong=\"H8010\"* were|strong=\"H4714\"* brought|strong=\"H3947\"* out|strong=\"H4161\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* from|strong=\"H3947\"* Kue. The|strong=\"H3947\"* king|strong=\"H4428\"*’s merchants|strong=\"H5503\"* purchased them|strong=\"H3947\"* from|strong=\"H3947\"* Kue." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3651\"* imported|strong=\"H5927\"* from|strong=\"H3318\"* Egypt|strong=\"H4714\"* then|strong=\"H3318\"* exported|strong=\"H3318\"* a|strong=\"H3068\"* chariot|strong=\"H4818\"* for|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* pieces of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* horse|strong=\"H5483\"* for|strong=\"H3027\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*.+ 1:17 The pieces of silver were probably shekels, so 600 pieces would be about 13.2 pounds or 6 kilograms of silver, and 150 would be about 3.3 pounds or 1.5 kilograms of silver.* They|strong=\"H3651\"* also|strong=\"H3027\"* exported|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Hittite|strong=\"H2850\"* kings|strong=\"H4428\"* and|strong=\"H3967\"* the|strong=\"H3605\"* Syrian+ 1:17 or, Aramean* kings|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5921\"* Solomon|strong=\"H8010\"* decided to|strong=\"H5921\"* build a|strong=\"H3068\"* house for|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name, and|strong=\"H3967\"* a|strong=\"H3068\"* house for|strong=\"H5921\"* his|strong=\"H5921\"* kingdom." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* counted out|strong=\"H7971\"* seventy thousand men|strong=\"H6213\"* to|strong=\"H7971\"* bear|strong=\"H6213\"* burdens, eighty thousand men|strong=\"H6213\"* who|strong=\"H3427\"* were|strong=\"H1732\"* stone cutters in|strong=\"H3427\"* the|strong=\"H6213\"* mountains, and|strong=\"H7971\"* three thousand six hundred to|strong=\"H7971\"* oversee them|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "Solomon sent|strong=\"H3068\"* to|strong=\"H3478\"* Huram the|strong=\"H6440\"* king|strong=\"H5921\"* of|strong=\"H1004\"* Tyre, saying, “As|strong=\"H3068\"* you|strong=\"H6440\"* dealt with|strong=\"H1004\"* David my|strong=\"H3068\"* father, and|strong=\"H3478\"* sent|strong=\"H3068\"* him|strong=\"H6440\"* cedars to|strong=\"H3478\"* build|strong=\"H1129\"* him|strong=\"H6440\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* which|strong=\"H3068\"* to|strong=\"H3478\"* dwell, so|strong=\"H2063\"* deal with|strong=\"H1004\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Behold,+ 2:4 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* am about|strong=\"H3605\"* to|strong=\"H1004\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* the|strong=\"H3605\"* name of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God, to|strong=\"H1004\"* dedicate it|strong=\"H3588\"* to|strong=\"H1004\"* him|strong=\"H3605\"*, to|strong=\"H1004\"* burn before him|strong=\"H3605\"* incense of|strong=\"H1004\"* sweet spices, for|strong=\"H3588\"* the|strong=\"H3605\"* continual show bread, and|strong=\"H1419\"* for|strong=\"H3588\"* the|strong=\"H3605\"* burnt offerings|strong=\"H3588\"* morning and|strong=\"H1419\"* evening, on|strong=\"H1004\"* the|strong=\"H3605\"* Sabbaths, on|strong=\"H1004\"* the|strong=\"H3605\"* new moons, and|strong=\"H1419\"* on|strong=\"H1004\"* the|strong=\"H3605\"* set|strong=\"H1129\"* feasts of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God. This|strong=\"H3588\"* is|strong=\"H3605\"* an|strong=\"H1129\"* ordinance forever|strong=\"H3605\"* to|strong=\"H1004\"* Israel." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H6440\"* house|strong=\"H1004\"* which|strong=\"H4310\"* I|strong=\"H3588\"* am building|strong=\"H1129\"* will|strong=\"H4310\"* be|strong=\"H3808\"* great|strong=\"H6440\"*, for|strong=\"H3588\"* our|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H4310\"* greater than|strong=\"H3808\"* all|strong=\"H6440\"* gods." + }, + { + "verseNum": 6, + "text": "But|strong=\"H6258\"* who|strong=\"H3063\"* is|strong=\"H3701\"* able to|strong=\"H7971\"* build|strong=\"H6213\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house, since|strong=\"H6258\"* heaven and|strong=\"H3063\"* the|strong=\"H6213\"* heaven of|strong=\"H6213\"* heavens can|strong=\"H6213\"*’t contain him|strong=\"H7971\"*? Who|strong=\"H3063\"* am I|strong=\"H6258\"* then|strong=\"H6258\"*, that|strong=\"H3045\"* I|strong=\"H6258\"* should|strong=\"H6213\"* build|strong=\"H6213\"* him|strong=\"H7971\"* a|strong=\"H3068\"* house, except just|strong=\"H6213\"* to|strong=\"H7971\"* burn incense before|strong=\"H5973\"* him|strong=\"H7971\"*?" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H2009\"* therefore|strong=\"H3588\"* send|strong=\"H7971\"* me|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H3045\"* skillful|strong=\"H3045\"* to|strong=\"H7971\"* work in|strong=\"H5650\"* gold, in|strong=\"H5650\"* silver, in|strong=\"H5650\"* bronze, in|strong=\"H5650\"* iron, and|strong=\"H7971\"* in|strong=\"H5650\"* purple, crimson, and|strong=\"H7971\"* blue, and|strong=\"H7971\"* who|strong=\"H5650\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H7971\"* engrave engravings, to|strong=\"H7971\"* be|strong=\"H6086\"* with|strong=\"H5973\"* the|strong=\"H3588\"* skillful|strong=\"H3045\"* men|strong=\"H5650\"* who|strong=\"H5650\"* are|strong=\"H5650\"* with|strong=\"H5973\"* me|strong=\"H7971\"* in|strong=\"H5650\"* Judah and|strong=\"H7971\"* in|strong=\"H5650\"* Jerusalem, whom|strong=\"H3588\"* David|strong=\"H5973\"* my|strong=\"H3045\"* father provided|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "“Send me|strong=\"H3559\"* also|strong=\"H3588\"* cedar trees|strong=\"H6086\"*, cypress trees|strong=\"H6086\"*, and|strong=\"H1419\"* algum trees|strong=\"H6086\"* out|strong=\"H1419\"* of|strong=\"H1004\"* Lebanon, for|strong=\"H3588\"* I|strong=\"H3588\"* know that|strong=\"H3588\"* your|strong=\"H3588\"* servants know how|strong=\"H3588\"* to|strong=\"H1004\"* cut timber|strong=\"H6086\"* in|strong=\"H1004\"* Lebanon. Behold, my|strong=\"H3588\"* servants will|strong=\"H1004\"* be|strong=\"H6086\"* with|strong=\"H1004\"* your|strong=\"H3588\"* servants," + }, + { + "verseNum": 9, + "text": "even to|strong=\"H5414\"* prepare me|strong=\"H5414\"* timber|strong=\"H6086\"* in|strong=\"H5650\"* abundance; for|strong=\"H6086\"* the|strong=\"H5414\"* house which|strong=\"H6086\"* I|strong=\"H5414\"* am about|strong=\"H2009\"* to|strong=\"H5414\"* build will|strong=\"H5650\"* be|strong=\"H5414\"* great and|strong=\"H6242\"* wonderful." + }, + { + "verseNum": 10, + "text": "Behold, I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* to|strong=\"H3068\"* your|strong=\"H3068\"* servants, the|strong=\"H5921\"* cutters who|strong=\"H5971\"* cut timber, twenty thousand cors+ 2:10 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels, so 20,000 cors of wheat would weigh about 545 metric tons* of|strong=\"H4428\"* beaten wheat, twenty thousand baths+ 2:10 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 20,000 baths of barley would weigh about 262 metric tons.* of|strong=\"H4428\"* barley, twenty thousand baths of|strong=\"H4428\"* wine, and|strong=\"H3068\"* twenty thousand baths of|strong=\"H4428\"* oil.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* Huram|strong=\"H2361\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre answered in|strong=\"H3478\"* writing|strong=\"H6213\"*, which|strong=\"H3068\"* he|strong=\"H6213\"* sent|strong=\"H5414\"* to|strong=\"H3478\"* Solomon, “Because|strong=\"H3068\"* Yahweh|strong=\"H3068\"* loves his|strong=\"H5414\"* people|strong=\"H1121\"*, he|strong=\"H6213\"* has|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H4428\"* them|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Huram|strong=\"H2361\"* continued, “Blessed be|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3045\"* God|strong=\"H7971\"* of|strong=\"H3045\"* Israel, who|strong=\"H3045\"* made|strong=\"H3045\"* heaven and|strong=\"H7971\"* earth, who|strong=\"H3045\"* has|strong=\"H3045\"* given to|strong=\"H7971\"* David|strong=\"H7971\"* the|strong=\"H3045\"* king a|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H2450\"*, endowed|strong=\"H3045\"* with|strong=\"H3045\"* discretion and|strong=\"H7971\"* understanding, who|strong=\"H3045\"* would build a|strong=\"H3068\"* house for|strong=\"H7971\"* Yahweh|strong=\"H3068\"* and|strong=\"H7971\"* a|strong=\"H3068\"* house for|strong=\"H7971\"* his|strong=\"H7971\"* kingdom." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H5414\"* I|strong=\"H5414\"* have|strong=\"H3045\"* sent|strong=\"H5414\"* a|strong=\"H3068\"* skillful|strong=\"H2803\"* man|strong=\"H2450\"*, endowed|strong=\"H3045\"* with|strong=\"H5973\"* understanding, Huram-abi,+ 2:13 or, Huram, my father*" + }, + { + "verseNum": 14, + "text": "the|strong=\"H7971\"* son of|strong=\"H5650\"* a|strong=\"H3068\"* woman of|strong=\"H5650\"* the|strong=\"H7971\"* daughters of|strong=\"H5650\"* Dan; and|strong=\"H7971\"* his|strong=\"H7971\"* father was|strong=\"H5650\"* a|strong=\"H3068\"* man of|strong=\"H5650\"* Tyre. He|strong=\"H7971\"* is|strong=\"H5650\"* skillful to|strong=\"H7971\"* work in|strong=\"H5650\"* gold, in|strong=\"H5650\"* silver, in|strong=\"H5650\"* bronze, in|strong=\"H5650\"* iron, in|strong=\"H5650\"* stone, in|strong=\"H5650\"* timber, in|strong=\"H5650\"* purple, in|strong=\"H5650\"* blue, in|strong=\"H5650\"* fine linen, and|strong=\"H7971\"* in|strong=\"H5650\"* crimson, also to|strong=\"H7971\"* engrave any kind of|strong=\"H5650\"* engraving and|strong=\"H7971\"* to|strong=\"H7971\"* devise any device, that|strong=\"H8081\"* there|strong=\"H6258\"* may|strong=\"H3196\"* be|strong=\"H5650\"* a|strong=\"H3068\"* place appointed to|strong=\"H7971\"* him|strong=\"H7971\"* with|strong=\"H7971\"* your|strong=\"H7971\"* skillful men|strong=\"H5650\"*, and|strong=\"H7971\"* with|strong=\"H7971\"* the|strong=\"H7971\"* skillful men|strong=\"H5650\"* of|strong=\"H5650\"* my|strong=\"H7971\"* lord David|strong=\"H7971\"* your|strong=\"H7971\"* father." + }, + { + "verseNum": 15, + "text": "“Now|strong=\"H5921\"* therefore|strong=\"H5921\"*, the|strong=\"H3605\"* wheat, the|strong=\"H3605\"* barley, the|strong=\"H3605\"* oil, and|strong=\"H6086\"* the|strong=\"H3605\"* wine which|strong=\"H6086\"* my|strong=\"H3605\"* lord has|strong=\"H3389\"* spoken of|strong=\"H4480\"*, let him|strong=\"H5921\"* send|strong=\"H5927\"* to|strong=\"H5927\"* his|strong=\"H3605\"* servants;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* we|strong=\"H3068\"* will|strong=\"H3478\"* cut|strong=\"H3478\"* wood out|strong=\"H4672\"* of|strong=\"H3605\"* Lebanon, as|strong=\"H3605\"* much|strong=\"H3605\"* as|strong=\"H3605\"* you|strong=\"H3605\"* need. We|strong=\"H3605\"* will|strong=\"H3478\"* bring|strong=\"H1732\"* it|strong=\"H4672\"* to|strong=\"H3478\"* you|strong=\"H3605\"* in|strong=\"H3478\"* rafts by|strong=\"H3478\"* sea to|strong=\"H3478\"* Joppa; then|strong=\"H1732\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* carry it|strong=\"H4672\"* up|strong=\"H3605\"* to|strong=\"H3478\"* Jerusalem.”" + }, + { + "verseNum": 17, + "text": "Solomon counted all|strong=\"H6213\"* the|strong=\"H6213\"* foreigners who|strong=\"H5971\"* were|strong=\"H5971\"* in|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H2022\"* Israel|strong=\"H5971\"*, after|strong=\"H1992\"* the|strong=\"H6213\"* census with|strong=\"H6213\"* which|strong=\"H1992\"* David his|strong=\"H6213\"* father had|strong=\"H5971\"* counted them|strong=\"H1992\"*; and|strong=\"H3967\"* they|strong=\"H1992\"* found one|strong=\"H6213\"* hundred|strong=\"H3967\"* fifty-three thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 18, + "text": "He set seventy thousand of them to bear burdens, eighty thousand who were stone cutters in the mountains, and three thousand six hundred overseers to assign the people their work." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7200\"* Solomon|strong=\"H8010\"* began|strong=\"H2490\"* to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* on|strong=\"H7200\"* Mount|strong=\"H2022\"* Moriah|strong=\"H4179\"*, where|strong=\"H4725\"* Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, which|strong=\"H3068\"* he|strong=\"H3068\"* prepared|strong=\"H3559\"* in|strong=\"H3068\"* the|strong=\"H7200\"* place|strong=\"H4725\"* that|strong=\"H7200\"* David|strong=\"H1732\"* had|strong=\"H3068\"* appointed|strong=\"H3559\"*, on|strong=\"H7200\"* the|strong=\"H7200\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* of|strong=\"H1004\"* Ornan the|strong=\"H7200\"* Jebusite|strong=\"H2983\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H8141\"* began|strong=\"H2490\"* to|strong=\"H2490\"* build|strong=\"H1129\"* in|strong=\"H8141\"* the|strong=\"H1129\"* second|strong=\"H8145\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H1129\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H1129\"* fourth year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H1129\"* reign|strong=\"H4438\"*." + }, + { + "verseNum": 3, + "text": "Now these|strong=\"H1004\"* are|strong=\"H1004\"* the|strong=\"H1129\"* foundations|strong=\"H3245\"* which|strong=\"H1004\"* Solomon|strong=\"H8010\"* laid|strong=\"H3245\"* for|strong=\"H1004\"* the|strong=\"H1129\"* building|strong=\"H1129\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*: the|strong=\"H1129\"* length by|strong=\"H8010\"* cubits+ 3:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* after|strong=\"H1004\"* the|strong=\"H1129\"* first|strong=\"H7223\"* measure|strong=\"H4060\"* was|strong=\"H1004\"* sixty|strong=\"H8346\"* cubits, and|strong=\"H6242\"* the|strong=\"H1129\"* width|strong=\"H7341\"* twenty|strong=\"H6242\"* cubits." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* porch that|strong=\"H1004\"* was|strong=\"H1004\"* in|strong=\"H5921\"* front|strong=\"H6440\"*, its|strong=\"H5921\"* length|strong=\"H5921\"*, across|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, was|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, and|strong=\"H3967\"* the|strong=\"H6440\"* height|strong=\"H1363\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*; and|strong=\"H3967\"* he|strong=\"H1004\"* overlaid|strong=\"H6823\"* it|strong=\"H5921\"* within|strong=\"H1004\"* with|strong=\"H1004\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1004\"* made|strong=\"H5927\"* the|strong=\"H5921\"* larger|strong=\"H1419\"* room|strong=\"H1004\"* with|strong=\"H1004\"* a|strong=\"H3068\"* ceiling of|strong=\"H1004\"* cypress|strong=\"H1265\"* wood|strong=\"H6086\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* overlaid|strong=\"H2645\"* with|strong=\"H1004\"* fine|strong=\"H2896\"* gold|strong=\"H2091\"*, and|strong=\"H1419\"* ornamented|strong=\"H5927\"* it|strong=\"H5921\"* with|strong=\"H1004\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"* and|strong=\"H1419\"* chains|strong=\"H8333\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1004\"* decorated the|strong=\"H6823\"* house|strong=\"H1004\"* with|strong=\"H1004\"* precious|strong=\"H3368\"* stones for|strong=\"H1004\"* beauty|strong=\"H8597\"*. The|strong=\"H6823\"* gold|strong=\"H2091\"* was|strong=\"H1004\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Parvaim|strong=\"H6516\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1004\"* also|strong=\"H1817\"* overlaid|strong=\"H2645\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, the|strong=\"H5921\"* beams|strong=\"H6982\"*, the|strong=\"H5921\"* thresholds|strong=\"H5592\"*, its|strong=\"H5921\"* walls|strong=\"H7023\"*, and|strong=\"H1004\"* its|strong=\"H5921\"* doors|strong=\"H1817\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*, and|strong=\"H1004\"* engraved|strong=\"H6605\"* cherubim|strong=\"H3742\"* on|strong=\"H5921\"* the|strong=\"H5921\"* walls|strong=\"H7023\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*. Its|strong=\"H5921\"* length|strong=\"H5921\"*, according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, was|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits, and|strong=\"H3967\"* its|strong=\"H5921\"* width|strong=\"H7341\"* twenty|strong=\"H6242\"* cubits; and|strong=\"H3967\"* he|strong=\"H6213\"* overlaid|strong=\"H2645\"* it|strong=\"H5921\"* with|strong=\"H1004\"* fine|strong=\"H2896\"* gold|strong=\"H2091\"*, amounting to|strong=\"H6213\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*.+ 3:8 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 600 talents is about 18 metric tons*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H2645\"* weight|strong=\"H4948\"* of|strong=\"H8255\"* the|strong=\"H2645\"* nails|strong=\"H4548\"* was|strong=\"H4948\"* fifty|strong=\"H2572\"* shekels|strong=\"H8255\"*+ 3:9 A shekel is about 10 grams or about 0.32 Troy ounces, so 50 shekels was about 0.5 kilograms or about 16 Troy ounces.* of|strong=\"H8255\"* gold|strong=\"H2091\"*. He overlaid|strong=\"H2645\"* the|strong=\"H2645\"* upper|strong=\"H5944\"* rooms|strong=\"H5944\"* with|strong=\"H2645\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6213\"* the|strong=\"H6213\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* he|strong=\"H6213\"* made|strong=\"H6213\"* two|strong=\"H8147\"* cherubim|strong=\"H3742\"* by|strong=\"H2091\"* carving, and|strong=\"H1004\"* they|strong=\"H6213\"* overlaid|strong=\"H6823\"* them|strong=\"H6213\"* with|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5060\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* cherubim|strong=\"H3742\"* were|strong=\"H3742\"* twenty|strong=\"H6242\"* cubits|strong=\"H2568\"* long: the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* one|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5060\"* house|strong=\"H1004\"*; and|strong=\"H6242\"* the|strong=\"H5060\"* other|strong=\"H3671\"* wing|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, reaching|strong=\"H5060\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5060\"* house|strong=\"H1004\"*; and|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* wing|strong=\"H3671\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*, joining|strong=\"H1695\"* to|strong=\"H1004\"* the|strong=\"H5060\"* wing|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H5060\"* other|strong=\"H3671\"* cherub|strong=\"H3742\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* these|strong=\"H1992\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* themselves|strong=\"H1992\"* out|strong=\"H6566\"* twenty|strong=\"H6242\"* cubits. They|strong=\"H1992\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H6440\"* feet|strong=\"H7272\"*, and|strong=\"H6242\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* were|strong=\"H1992\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* veil|strong=\"H6532\"* of|strong=\"H5921\"* blue|strong=\"H8504\"*, purple|strong=\"H8504\"*, crimson|strong=\"H3758\"*, and|strong=\"H8504\"* fine|strong=\"H6213\"* linen, and|strong=\"H8504\"* ornamented|strong=\"H5927\"* it|strong=\"H5921\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 15, + "text": "Also|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"* thirty-five|strong=\"H7970\"* cubits|strong=\"H2568\"* high|strong=\"H7218\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* capital|strong=\"H6858\"* that|strong=\"H6213\"* was|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H1004\"* each|strong=\"H8147\"* of|strong=\"H1004\"* them|strong=\"H5921\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* chains|strong=\"H8333\"* in|strong=\"H5921\"* the|strong=\"H5921\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*; and|strong=\"H3967\"* he|strong=\"H6213\"* made|strong=\"H6213\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* chains|strong=\"H8333\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H5921\"* set|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"* before|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"*, one|strong=\"H3225\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H6965\"* the|strong=\"H6440\"* other|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* left|strong=\"H8040\"*; and|strong=\"H6965\"* called|strong=\"H7121\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* that|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* Jachin|strong=\"H3199\"*, and|strong=\"H6965\"* the|strong=\"H6440\"* name|strong=\"H8034\"* of|strong=\"H6440\"* that|strong=\"H7121\"* on|strong=\"H5921\"* the|strong=\"H6440\"* left|strong=\"H8040\"* Boaz|strong=\"H1162\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* an|strong=\"H6213\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* bronze|strong=\"H5178\"*, twenty|strong=\"H6242\"* cubits+ 4:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long, twenty|strong=\"H6242\"* cubits wide|strong=\"H7341\"*, and|strong=\"H6242\"* ten|strong=\"H6235\"* cubits high|strong=\"H6967\"*." + }, + { + "verseNum": 2, + "text": "Also|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* molten|strong=\"H3332\"* sea|strong=\"H3220\"*+ 4:2 or, pool, or, reservoir* of|strong=\"H8193\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"* from|strong=\"H5437\"* brim|strong=\"H8193\"* to|strong=\"H6213\"* brim|strong=\"H8193\"*. It|strong=\"H6213\"* was|strong=\"H6967\"* round|strong=\"H5439\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*, and|strong=\"H7970\"* thirty|strong=\"H7970\"* cubits|strong=\"H2568\"* in|strong=\"H6213\"* circumference|strong=\"H5437\"*." + }, + { + "verseNum": 3, + "text": "Under|strong=\"H8478\"* it|strong=\"H5439\"* was|strong=\"H3220\"* the|strong=\"H8478\"* likeness|strong=\"H1823\"* of|strong=\"H8478\"* oxen|strong=\"H1241\"*, which|strong=\"H1823\"* encircled|strong=\"H5437\"* it|strong=\"H5439\"*, for|strong=\"H8478\"* ten|strong=\"H6235\"* cubits, encircling|strong=\"H5437\"* the|strong=\"H8478\"* sea|strong=\"H3220\"*. The|strong=\"H8478\"* oxen|strong=\"H1241\"* were|strong=\"H1241\"* in|strong=\"H3220\"* two|strong=\"H8147\"* rows|strong=\"H2905\"*, cast|strong=\"H3332\"* when it|strong=\"H5439\"* was|strong=\"H3220\"* cast|strong=\"H3332\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* west|strong=\"H3220\"*, three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* south|strong=\"H5045\"*, and|strong=\"H1004\"* three|strong=\"H7969\"* looking|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H3605\"* east|strong=\"H4217\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* was|strong=\"H1004\"* set|strong=\"H5975\"* on|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* hindquarters were|strong=\"H1241\"* inward|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H2388\"* was|strong=\"H8193\"* a|strong=\"H3068\"* handbreadth|strong=\"H2947\"* thick|strong=\"H5672\"*. Its brim|strong=\"H8193\"* was|strong=\"H8193\"* made|strong=\"H2388\"* like|strong=\"H7799\"* the|strong=\"H2388\"* brim|strong=\"H8193\"* of|strong=\"H4639\"* a|strong=\"H3068\"* cup|strong=\"H3563\"*, like|strong=\"H7799\"* the|strong=\"H2388\"* flower|strong=\"H6525\"* of|strong=\"H4639\"* a|strong=\"H3068\"* lily|strong=\"H7799\"*. It|strong=\"H2388\"* received|strong=\"H2388\"* and|strong=\"H2388\"* held|strong=\"H2388\"* three|strong=\"H7969\"* thousand baths|strong=\"H1324\"*.+ 4:5 A bath is about 5.6 U. S. gallons or 21.1 liters, so 3,000 baths is about 16,800 gallons or 63.3 kiloliters.*" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* ten|strong=\"H6235\"* basins|strong=\"H3595\"*, and|strong=\"H3548\"* put|strong=\"H5414\"* five|strong=\"H2568\"* on|strong=\"H6213\"* the|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3548\"* five|strong=\"H2568\"* on|strong=\"H6213\"* the|strong=\"H5414\"* left|strong=\"H8040\"*, to|strong=\"H6213\"* wash|strong=\"H7364\"* in|strong=\"H6213\"* them|strong=\"H5414\"*. The|strong=\"H5414\"* things|strong=\"H4639\"* that|strong=\"H5414\"* belonged to|strong=\"H6213\"* the|strong=\"H5414\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* were|strong=\"H5414\"* washed|strong=\"H7364\"* in|strong=\"H6213\"* them|strong=\"H5414\"*, but|strong=\"H3225\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* was|strong=\"H5414\"* for|strong=\"H6213\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* to|strong=\"H6213\"* wash|strong=\"H7364\"* in|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* lamp stands of|strong=\"H4941\"* gold|strong=\"H2091\"* according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H5414\"* ordinance|strong=\"H4941\"* concerning them|strong=\"H5414\"*; and|strong=\"H4941\"* he|strong=\"H6213\"* set|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H5414\"* temple|strong=\"H1964\"*, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H4941\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H5414\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* also|strong=\"H6213\"* ten|strong=\"H6235\"* tables|strong=\"H7979\"*, and|strong=\"H3967\"* placed|strong=\"H3240\"* them|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* temple|strong=\"H1964\"*, five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6213\"* right|strong=\"H3225\"* side|strong=\"H3225\"* and|strong=\"H3967\"* five|strong=\"H2568\"* on|strong=\"H2091\"* the|strong=\"H6213\"* left|strong=\"H8040\"*. He|strong=\"H6213\"* made|strong=\"H6213\"* one|strong=\"H6213\"* hundred|strong=\"H3967\"* basins|strong=\"H4219\"* of|strong=\"H4219\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 9, + "text": "Furthermore he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* of|strong=\"H3548\"* the|strong=\"H6213\"* priests|strong=\"H3548\"*, the|strong=\"H6213\"* great|strong=\"H1419\"* court|strong=\"H2691\"*, and|strong=\"H1419\"* doors|strong=\"H1817\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"*, and|strong=\"H1419\"* overlaid|strong=\"H6823\"* their|strong=\"H6213\"* doors|strong=\"H1817\"* with|strong=\"H6213\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5414\"* set|strong=\"H5414\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* on|strong=\"H3220\"* the|strong=\"H5414\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H5045\"* the|strong=\"H5414\"* house eastward|strong=\"H6924\"*, toward|strong=\"H4136\"* the|strong=\"H5414\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 11, + "text": "Huram|strong=\"H2361\"* made|strong=\"H6213\"* the|strong=\"H6213\"* pots|strong=\"H5518\"*, the|strong=\"H6213\"* shovels|strong=\"H3257\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* basins|strong=\"H4219\"*." + }, + { + "verseNum": 12, + "text": "the|strong=\"H5921\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H5921\"* bowls|strong=\"H1543\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* capitals|strong=\"H3805\"* which|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, the|strong=\"H5921\"* two|strong=\"H8147\"* networks|strong=\"H7639\"* to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H7218\"* the|strong=\"H5921\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* the|strong=\"H6440\"* four hundred|strong=\"H3967\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* the|strong=\"H6440\"* two|strong=\"H8147\"* networks|strong=\"H7639\"*—two|strong=\"H8147\"* rows|strong=\"H2905\"* of|strong=\"H6440\"* pomegranates|strong=\"H7416\"* for|strong=\"H5921\"* each|strong=\"H8147\"* network|strong=\"H7639\"*, to|strong=\"H5921\"* cover|strong=\"H3680\"* the|strong=\"H6440\"* two|strong=\"H8147\"* bowls|strong=\"H1543\"* of|strong=\"H6440\"* the|strong=\"H6440\"* capitals|strong=\"H3805\"* that|strong=\"H3805\"* were|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H6440\"* pillars|strong=\"H5982\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H5921\"* basins|strong=\"H3595\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*—" + }, + { + "verseNum": 15, + "text": "one|strong=\"H8147\"* sea|strong=\"H3220\"*, and|strong=\"H1241\"* the|strong=\"H8478\"* twelve|strong=\"H8147\"* oxen|strong=\"H1241\"* under|strong=\"H8478\"* it|strong=\"H8478\"*." + }, + { + "verseNum": 16, + "text": "Huram-abi|strong=\"H2361\"*+ 4:16 “abi” means “his father”* also|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* forks|strong=\"H4207\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"* for|strong=\"H6213\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H4428\"* bright|strong=\"H4838\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3332\"* king|strong=\"H4428\"* cast|strong=\"H3332\"* them in|strong=\"H4428\"* the|strong=\"H3332\"* plain|strong=\"H3603\"* of|strong=\"H4428\"* the|strong=\"H3332\"* Jordan|strong=\"H3383\"*, in|strong=\"H4428\"* the|strong=\"H3332\"* clay|strong=\"H5645\"* ground between Succoth|strong=\"H5523\"* and|strong=\"H4428\"* Zeredah|strong=\"H6868\"*." + }, + { + "verseNum": 18, + "text": "Thus|strong=\"H3808\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* in|strong=\"H6213\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H3605\"* weight|strong=\"H4948\"* of|strong=\"H3627\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* determined." + }, + { + "verseNum": 19, + "text": "Solomon|strong=\"H8010\"* made|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3627\"* in|strong=\"H5921\"* God’s house|strong=\"H1004\"*: the|strong=\"H3605\"* golden|strong=\"H2091\"* altar|strong=\"H4196\"*, the|strong=\"H3605\"* tables|strong=\"H7979\"* with|strong=\"H1004\"* the|strong=\"H3605\"* show|strong=\"H6213\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 20, + "text": "and|strong=\"H4941\"* the|strong=\"H6440\"* lamp|strong=\"H5216\"* stands with|strong=\"H6440\"* their|strong=\"H6440\"* lamps|strong=\"H5216\"* to|strong=\"H6440\"* burn|strong=\"H1197\"* according|strong=\"H4941\"* to|strong=\"H6440\"* the|strong=\"H6440\"* ordinance|strong=\"H4941\"* before|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, of|strong=\"H6440\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H2091\"* the|strong=\"H1931\"* flowers|strong=\"H6525\"*, the|strong=\"H1931\"* lamps|strong=\"H5216\"*, and|strong=\"H2091\"* the|strong=\"H1931\"* tongs|strong=\"H4457\"* of|strong=\"H2091\"* gold|strong=\"H2091\"* that|strong=\"H1931\"* was|strong=\"H1931\"* purest|strong=\"H4357\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H1004\"* the|strong=\"H5462\"* snuffers|strong=\"H4212\"*, the|strong=\"H5462\"* basins|strong=\"H4219\"*, the|strong=\"H5462\"* spoons|strong=\"H3709\"*, and|strong=\"H1004\"* the|strong=\"H5462\"* fire pans|strong=\"H3709\"* of|strong=\"H1004\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. As|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5462\"* entry|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5462\"* house|strong=\"H1004\"*, its inner|strong=\"H6442\"* doors|strong=\"H1817\"* for|strong=\"H1004\"* the|strong=\"H5462\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* and|strong=\"H1004\"* the|strong=\"H5462\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* the|strong=\"H5462\"* main hall|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5462\"* temple|strong=\"H1004\"* were|strong=\"H3709\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Thus all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* did|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* finished|strong=\"H7999\"*. Solomon|strong=\"H8010\"* brought|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* things|strong=\"H6944\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* dedicated|strong=\"H6944\"*, even|strong=\"H6213\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* treasuries of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5927\"* Solomon|strong=\"H8010\"* assembled|strong=\"H6950\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tribes|strong=\"H4294\"*, the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1121\"* the|strong=\"H3605\"* fathers’ households of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* out|strong=\"H3605\"* of|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "So|strong=\"H1931\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* assembled|strong=\"H6950\"* themselves|strong=\"H6950\"* to|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* at|strong=\"H3478\"* the|strong=\"H3605\"* feast|strong=\"H2282\"*, which|strong=\"H1931\"* was|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* took|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H3605\"* ark." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* ark, the|strong=\"H3605\"* Tent of|strong=\"H3627\"* Meeting|strong=\"H4150\"*, and|strong=\"H3548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H3881\"* in|strong=\"H5927\"* the|strong=\"H3605\"* Tent. The|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* brought|strong=\"H5927\"* these|strong=\"H3605\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H5712\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* assembled|strong=\"H3259\"* to|strong=\"H3478\"* him|strong=\"H6440\"* were|strong=\"H3478\"* before|strong=\"H6440\"* the|strong=\"H3605\"* ark, sacrificing|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H3478\"* cattle|strong=\"H1241\"* that|strong=\"H3605\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* counted|strong=\"H5608\"* or|strong=\"H3808\"* numbered|strong=\"H5608\"* for|strong=\"H5921\"* multitude|strong=\"H7230\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* brought|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ark of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"* to|strong=\"H3068\"* its|strong=\"H8478\"* place|strong=\"H4725\"*, into the|strong=\"H3068\"* inner|strong=\"H1687\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, even|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H3068\"* wings|strong=\"H3671\"* of|strong=\"H1004\"* the|strong=\"H3068\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* their|strong=\"H5921\"* wings|strong=\"H3671\"* over|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H5921\"* the|strong=\"H5921\"* ark, and|strong=\"H4725\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* covered|strong=\"H3680\"* the|strong=\"H5921\"* ark and|strong=\"H4725\"* its|strong=\"H5921\"* poles above|strong=\"H4605\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* poles were|strong=\"H1961\"* so|strong=\"H4480\"* long|strong=\"H5704\"* that|strong=\"H7200\"* the|strong=\"H6440\"* ends|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H6440\"* poles were|strong=\"H1961\"* seen|strong=\"H7200\"* from|strong=\"H4480\"* the|strong=\"H6440\"* ark in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H6440\"* inner|strong=\"H1687\"* sanctuary|strong=\"H1687\"*, but|strong=\"H3808\"* they|strong=\"H3117\"* were|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* outside|strong=\"H2351\"*; and|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H2088\"* there|strong=\"H8033\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "There|strong=\"H3068\"* was|strong=\"H3068\"* nothing in|strong=\"H3478\"* the|strong=\"H5414\"* ark except|strong=\"H7535\"* the|strong=\"H5414\"* two|strong=\"H8147\"* tablets|strong=\"H3871\"* which|strong=\"H3068\"* Moses|strong=\"H4872\"* put|strong=\"H5414\"* there|strong=\"H3068\"* at|strong=\"H3478\"* Horeb|strong=\"H2722\"*, when|strong=\"H3318\"* Yahweh|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant with|strong=\"H5973\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, when|strong=\"H3318\"* they|strong=\"H3068\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H1961\"* come|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* (for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* who|strong=\"H3605\"* were|strong=\"H1961\"* present|strong=\"H4672\"* had|strong=\"H1961\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3548\"* didn’t keep|strong=\"H8104\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 12, + "text": "also|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* were|strong=\"H1121\"* the|strong=\"H3605\"* singers|strong=\"H7891\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5975\"*, even Asaph, Heman|strong=\"H1968\"*, Jeduthun|strong=\"H3038\"*, and|strong=\"H3967\"* their|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H3967\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, arrayed|strong=\"H3847\"* in|strong=\"H3847\"* fine linen, with|strong=\"H5973\"* cymbals|strong=\"H4700\"* and|strong=\"H3967\"* stringed instruments and|strong=\"H3967\"* harps|strong=\"H3658\"*, stood|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3605\"* east|strong=\"H4217\"* end|strong=\"H4217\"* of|strong=\"H1121\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* them|strong=\"H5975\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* priests|strong=\"H3548\"* sounding|strong=\"H2690\"* with|strong=\"H5973\"* trumpets|strong=\"H2689\"*);" + }, + { + "verseNum": 13, + "text": "when|strong=\"H3588\"* the|strong=\"H8085\"* trumpeters|strong=\"H2689\"* and|strong=\"H3068\"* singers|strong=\"H7891\"* were|strong=\"H1961\"* as|strong=\"H1961\"* one|strong=\"H2896\"*, to|strong=\"H3068\"* make|strong=\"H8085\"* one|strong=\"H2896\"* sound|strong=\"H6963\"* to|strong=\"H3068\"* be|strong=\"H1961\"* heard|strong=\"H8085\"* in|strong=\"H3068\"* praising|strong=\"H1984\"* and|strong=\"H3068\"* thanking|strong=\"H3034\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* when|strong=\"H3588\"* they|strong=\"H3588\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* their|strong=\"H3068\"* voice|strong=\"H6963\"* with|strong=\"H4390\"* the|strong=\"H8085\"* trumpets|strong=\"H2689\"* and|strong=\"H3068\"* cymbals|strong=\"H4700\"* and|strong=\"H3068\"* instruments|strong=\"H3627\"* of|strong=\"H1004\"* music|strong=\"H7892\"*, and|strong=\"H3068\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "so|strong=\"H3808\"* that|strong=\"H3588\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* stand|strong=\"H5975\"* to|strong=\"H3201\"* minister|strong=\"H8334\"* by|strong=\"H3068\"* reason|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3068\"* Solomon|strong=\"H8010\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* said that|strong=\"H3068\"* he|strong=\"H3068\"* would|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3068\"* thick|strong=\"H6205\"* darkness|strong=\"H6205\"*." + }, + { + "verseNum": 2, + "text": "But I|strong=\"H1004\"* have|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* and|strong=\"H1004\"* home|strong=\"H1004\"*, a|strong=\"H3068\"* place|strong=\"H4349\"* for|strong=\"H3427\"* you|strong=\"H1129\"* to|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* turned|strong=\"H5437\"* his|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* said|strong=\"H1696\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* his|strong=\"H3068\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H3478\"* has|strong=\"H3068\"* with|strong=\"H4390\"* his|strong=\"H3068\"* hands|strong=\"H3027\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 5, + "text": "‘Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* my|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, I|strong=\"H3117\"* chose no|strong=\"H3808\"* city|strong=\"H5892\"* out|strong=\"H3318\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3318\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"*, that|strong=\"H5971\"* my|strong=\"H3605\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* I|strong=\"H3117\"* chose no|strong=\"H3808\"* man|strong=\"H3605\"* to|strong=\"H3318\"* be|strong=\"H1961\"* prince|strong=\"H5057\"* over|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 6, + "text": "but|strong=\"H1961\"* now|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen Jerusalem|strong=\"H3389\"*, that|strong=\"H5971\"* my|strong=\"H1732\"* name|strong=\"H8034\"* might|strong=\"H3478\"* be|strong=\"H1961\"* there|strong=\"H8033\"*; and|strong=\"H3478\"* I|strong=\"H5921\"* have|strong=\"H1961\"* chosen David|strong=\"H1732\"* to|strong=\"H3478\"* be|strong=\"H1961\"* over|strong=\"H5921\"* my|strong=\"H1732\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* it|strong=\"H8034\"* was|strong=\"H3068\"* in|strong=\"H3478\"* the|strong=\"H3068\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father to|strong=\"H3478\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H8034\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, ‘Whereas|strong=\"H3282\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, you|strong=\"H3588\"* did|strong=\"H3068\"* well|strong=\"H2895\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 9, + "text": "nevertheless|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, but|strong=\"H3588\"* your|strong=\"H3588\"* son|strong=\"H1121\"* who|strong=\"H1931\"* will|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* your|strong=\"H3588\"* body, he|strong=\"H1931\"* shall|strong=\"H1121\"* build|strong=\"H1129\"* the|strong=\"H3588\"* house|strong=\"H1004\"* for|strong=\"H3588\"* my|strong=\"H3318\"* name|strong=\"H8034\"*.’" + }, + { + "verseNum": 10, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* performed|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H3068\"* spoke|strong=\"H1696\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3068\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H3427\"* the|strong=\"H5921\"* place|strong=\"H8478\"* of|strong=\"H1004\"* David|strong=\"H1732\"* my|strong=\"H3068\"* father, and|strong=\"H6965\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* promised|strong=\"H1696\"*, and|strong=\"H6965\"* have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H5921\"* house|strong=\"H1004\"* for|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H8033\"* I|strong=\"H7760\"* have|strong=\"H3068\"* set|strong=\"H7760\"* the|strong=\"H3068\"* ark, in|strong=\"H3478\"* which|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*, which|strong=\"H3068\"* he|strong=\"H8033\"* made|strong=\"H3772\"* with|strong=\"H5973\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* in|strong=\"H3478\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"*" + }, + { + "verseNum": 13, + "text": "(for|strong=\"H3588\"* Solomon|strong=\"H8010\"* had|strong=\"H3478\"* made|strong=\"H6213\"* a|strong=\"H3068\"* bronze|strong=\"H5178\"* platform|strong=\"H3595\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"*+ 6:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long|strong=\"H3605\"*, five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*, and|strong=\"H3478\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* high|strong=\"H6967\"*, and|strong=\"H3478\"* had|strong=\"H3478\"* set|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* court|strong=\"H5835\"*; and|strong=\"H3478\"* he|strong=\"H3588\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H3478\"* knelt|strong=\"H1288\"* down|strong=\"H1288\"* on|strong=\"H5921\"* his|strong=\"H3605\"* knees|strong=\"H1290\"* before|strong=\"H5048\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H8432\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H5921\"* heaven|strong=\"H8064\"*)." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1980\"* he|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, there|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* God|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H6440\"* in|strong=\"H1980\"* heaven|strong=\"H8064\"* or|strong=\"H3068\"* on|strong=\"H1980\"* earth|strong=\"H8064\"*—you|strong=\"H6440\"* who|strong=\"H3605\"* keep|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H1980\"* loving kindness|strong=\"H2617\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* with|strong=\"H1980\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 15, + "text": "who|strong=\"H5650\"* have|strong=\"H5650\"* kept|strong=\"H8104\"* with|strong=\"H4390\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father that|strong=\"H3117\"* which|strong=\"H2088\"* you|strong=\"H3117\"* promised|strong=\"H1696\"* him|strong=\"H3027\"*. Yes, you|strong=\"H3117\"* spoke|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* have|strong=\"H5650\"* fulfilled|strong=\"H4390\"* it|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H8104\"* hand|strong=\"H3027\"*, as|strong=\"H3117\"* it|strong=\"H1696\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, keep|strong=\"H8104\"* with|strong=\"H1980\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H8104\"* father|strong=\"H1121\"* that|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* him|strong=\"H6440\"*, saying|strong=\"H1696\"*, ‘There|strong=\"H3427\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1121\"* in|strong=\"H3427\"* my|strong=\"H8104\"* sight|strong=\"H6440\"* to|strong=\"H1696\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H6440\"* throne|strong=\"H3678\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, if|strong=\"H1121\"* only|strong=\"H7535\"* your|strong=\"H3068\"* children|strong=\"H1121\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H1696\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* walk|strong=\"H1980\"* in|strong=\"H3427\"* my|strong=\"H8104\"* law|strong=\"H8451\"* as|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.’" + }, + { + "verseNum": 17, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, let|strong=\"H6258\"* your|strong=\"H3068\"* word|strong=\"H1697\"* be|strong=\"H1697\"* verified, which|strong=\"H3068\"* you|strong=\"H1696\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 18, + "text": "“But|strong=\"H3588\"* will|strong=\"H1004\"* God|strong=\"H3808\"* indeed|strong=\"H3588\"* dwell|strong=\"H3427\"* with|strong=\"H1004\"* men on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*? Behold|strong=\"H2009\"*, heaven|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H5921\"* heaven|strong=\"H8064\"* of|strong=\"H1004\"* heavens|strong=\"H8064\"* can|strong=\"H3808\"*’t contain|strong=\"H3557\"* you|strong=\"H3588\"*; how|strong=\"H3588\"* much|strong=\"H5921\"* less|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H1129\"* built|strong=\"H1129\"*!" + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3068\"* have|strong=\"H3068\"* respect|strong=\"H6437\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* and|strong=\"H3068\"* to|strong=\"H3068\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, Yahweh|strong=\"H3068\"* my|strong=\"H8085\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* cry|strong=\"H7440\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* prays|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"*;" + }, + { + "verseNum": 20, + "text": "that|strong=\"H8085\"* your|strong=\"H7760\"* eyes|strong=\"H5869\"* may|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* toward this|strong=\"H2088\"* house|strong=\"H1004\"* day|strong=\"H3119\"* and|strong=\"H1004\"* night|strong=\"H3915\"*, even|strong=\"H5869\"* toward the|strong=\"H8085\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H7760\"* have|strong=\"H1961\"* said|strong=\"H8085\"* that|strong=\"H8085\"* you|strong=\"H7760\"* would|strong=\"H5650\"* put|strong=\"H7760\"* your|strong=\"H7760\"* name|strong=\"H8034\"*, to|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H1961\"* the|strong=\"H8085\"* prayer|strong=\"H8605\"* which|strong=\"H1004\"* your|strong=\"H7760\"* servant|strong=\"H5650\"* will|strong=\"H1961\"* pray|strong=\"H6419\"* toward this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 21, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* petitions of|strong=\"H3427\"* your|strong=\"H8085\"* servant|strong=\"H5650\"* and|strong=\"H3478\"* of|strong=\"H3427\"* your|strong=\"H8085\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H8085\"* they|strong=\"H5971\"* pray|strong=\"H6419\"* toward|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. Yes, hear|strong=\"H8085\"* from|strong=\"H4480\"* your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4725\"*, even from|strong=\"H4480\"* heaven|strong=\"H8064\"*; and|strong=\"H3478\"* when|strong=\"H8085\"* you|strong=\"H4480\"* hear|strong=\"H8085\"*, forgive|strong=\"H5545\"*." + }, + { + "verseNum": 22, + "text": "“If|strong=\"H2398\"* a|strong=\"H3068\"* man|strong=\"H5375\"* sins|strong=\"H2398\"* against|strong=\"H6440\"* his|strong=\"H5375\"* neighbor|strong=\"H7453\"*, and|strong=\"H1004\"* an|strong=\"H5375\"* oath is|strong=\"H2088\"* laid|strong=\"H5375\"* on|strong=\"H1004\"* him|strong=\"H6440\"* to|strong=\"H6440\"* cause him|strong=\"H6440\"* to|strong=\"H6440\"* swear|strong=\"H5375\"*, and|strong=\"H1004\"* he|strong=\"H1004\"* comes|strong=\"H6440\"* and|strong=\"H1004\"* swears before|strong=\"H6440\"* your|strong=\"H5375\"* altar|strong=\"H4196\"* in|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 23, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, act|strong=\"H6213\"*, and|strong=\"H7725\"* judge|strong=\"H8199\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, bringing|strong=\"H7725\"* retribution to|strong=\"H7725\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* his|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* his|strong=\"H5414\"* own head|strong=\"H7218\"*; and|strong=\"H7725\"* justifying|strong=\"H6663\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*, to|strong=\"H7725\"* give|strong=\"H5414\"* him|strong=\"H5414\"* according|strong=\"H4480\"* to|strong=\"H7725\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H3588\"* your|strong=\"H6440\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* are|strong=\"H5971\"* struck|strong=\"H5062\"* down|strong=\"H5062\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H3478\"* confess|strong=\"H3034\"* your|strong=\"H6440\"* name|strong=\"H8034\"*, and|strong=\"H3478\"* pray|strong=\"H6419\"* and|strong=\"H3478\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* before|strong=\"H6440\"* you|strong=\"H3588\"* in|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 25, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H8085\"* sin|strong=\"H2403\"* of|strong=\"H4480\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H8085\"* land|strong=\"H8064\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* them|strong=\"H5414\"* and|strong=\"H3478\"* to|strong=\"H7725\"* their|strong=\"H5414\"* fathers." + }, + { + "verseNum": 26, + "text": "“When|strong=\"H3588\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* is|strong=\"H2088\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* and|strong=\"H7725\"* there|strong=\"H1961\"* is|strong=\"H2088\"* no|strong=\"H3808\"* rain|strong=\"H4306\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* toward|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* confess|strong=\"H3034\"* your|strong=\"H7725\"* name|strong=\"H8034\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* sin|strong=\"H2403\"* when|strong=\"H3588\"* you|strong=\"H3588\"* afflict|strong=\"H6031\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* in|strong=\"H5921\"* heaven|strong=\"H8064\"*, and|strong=\"H3478\"* forgive|strong=\"H5545\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H1870\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* teach|strong=\"H3384\"* them|strong=\"H5414\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H3588\"* should|strong=\"H3588\"* walk|strong=\"H3212\"*, and|strong=\"H3478\"* send|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* your|strong=\"H5414\"* land|strong=\"H5159\"*, which|strong=\"H5971\"* you|strong=\"H3588\"* have|strong=\"H5971\"* given|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H5414\"* people|strong=\"H5971\"* for|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 28, + "text": "“If|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* famine|strong=\"H7458\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* pestilence|strong=\"H1698\"*, if|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3605\"* blight|strong=\"H7711\"* or|strong=\"H5061\"* mildew|strong=\"H3420\"*, locust|strong=\"H2625\"* or|strong=\"H5061\"* caterpillar|strong=\"H2625\"*; if|strong=\"H3588\"* their|strong=\"H3605\"* enemies besiege|strong=\"H6696\"* them|strong=\"H1961\"* in|strong=\"H7458\"* the|strong=\"H3605\"* land of|strong=\"H8179\"* their|strong=\"H3605\"* cities|strong=\"H8179\"*; whatever|strong=\"H3605\"* plague|strong=\"H5061\"* or|strong=\"H5061\"* whatever|strong=\"H3605\"* sickness|strong=\"H4245\"* there|strong=\"H1961\"* is|strong=\"H3605\"*—" + }, + { + "verseNum": 29, + "text": "whatever|strong=\"H3605\"* prayer|strong=\"H8605\"* and|strong=\"H3478\"* supplication|strong=\"H8467\"* is|strong=\"H2088\"* made|strong=\"H3045\"* by|strong=\"H3478\"* any|strong=\"H3605\"* man|strong=\"H3605\"*, or|strong=\"H1004\"* by|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* will|strong=\"H1961\"* each|strong=\"H3605\"* know|strong=\"H3045\"* his|strong=\"H3605\"* own|strong=\"H1961\"* plague|strong=\"H5061\"* and|strong=\"H3478\"* his|strong=\"H3605\"* own|strong=\"H1961\"* sorrow|strong=\"H4341\"*, and|strong=\"H3478\"* shall|strong=\"H5971\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hands|strong=\"H3709\"* toward|strong=\"H3709\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H5414\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"* your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"* and|strong=\"H1121\"* forgive|strong=\"H5545\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* to|strong=\"H5414\"* every|strong=\"H3605\"* man|strong=\"H1121\"* according|strong=\"H4480\"* to|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, whose|strong=\"H1121\"* heart|strong=\"H3824\"* you|strong=\"H3588\"* know|strong=\"H3045\"* (for|strong=\"H3588\"* you|strong=\"H3588\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*, know|strong=\"H3045\"* the|strong=\"H3605\"* hearts|strong=\"H3824\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*)," + }, + { + "verseNum": 31, + "text": "that|strong=\"H3605\"* they|strong=\"H1992\"* may|strong=\"H5414\"* fear|strong=\"H3372\"* you|strong=\"H5414\"*, to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* your|strong=\"H3605\"* ways|strong=\"H1870\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* they|strong=\"H1992\"* live|strong=\"H2416\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* our|strong=\"H3605\"* fathers." + }, + { + "verseNum": 32, + "text": "“Moreover|strong=\"H1571\"*, concerning|strong=\"H3478\"* the|strong=\"H3027\"* foreigner|strong=\"H5237\"*, who|strong=\"H1931\"* is|strong=\"H2088\"* not|strong=\"H3808\"* of|strong=\"H1004\"* your|strong=\"H5186\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, when|strong=\"H1571\"* he|strong=\"H1931\"* comes from|strong=\"H3478\"* a|strong=\"H3068\"* far|strong=\"H7350\"* country for|strong=\"H3027\"* your|strong=\"H5186\"* great|strong=\"H1419\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"* and|strong=\"H3478\"* your|strong=\"H5186\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"* and|strong=\"H3478\"* your|strong=\"H5186\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, when|strong=\"H1571\"* they|strong=\"H3808\"* come|strong=\"H7350\"* and|strong=\"H3478\"* pray|strong=\"H6419\"* toward|strong=\"H3027\"* this|strong=\"H2088\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 33, + "text": "then|strong=\"H2088\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, even|strong=\"H3588\"* from|strong=\"H4480\"* your|strong=\"H3605\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, and|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* the|strong=\"H3605\"* foreigner|strong=\"H5237\"* calls|strong=\"H7121\"* to|strong=\"H3478\"* you|strong=\"H3588\"* for|strong=\"H3588\"*; that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* may|strong=\"H5971\"* know|strong=\"H3045\"* your|strong=\"H3605\"* name|strong=\"H8034\"* and|strong=\"H3478\"* fear|strong=\"H3372\"* you|strong=\"H3588\"*, as|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H5971\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 34, + "text": "“If|strong=\"H3588\"* your|strong=\"H5921\"* people|strong=\"H5971\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* battle|strong=\"H4421\"* against|strong=\"H5921\"* their|strong=\"H5921\"* enemies, by|strong=\"H5921\"* whatever way|strong=\"H1870\"* you|strong=\"H3588\"* send|strong=\"H7971\"* them|strong=\"H5921\"*, and|strong=\"H7971\"* they|strong=\"H3588\"* pray|strong=\"H6419\"* to|strong=\"H3318\"* you|strong=\"H3588\"* toward|strong=\"H1870\"* this|strong=\"H2063\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H3588\"* have|strong=\"H5971\"* chosen, and|strong=\"H7971\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H5971\"* built|strong=\"H1129\"* for|strong=\"H3588\"* your|strong=\"H5921\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 35, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* supplication|strong=\"H8467\"*, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*." + }, + { + "verseNum": 36, + "text": "“If|strong=\"H3588\"* they|strong=\"H3588\"* sin|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* there|strong=\"H6440\"* is|strong=\"H6440\"* no|strong=\"H3808\"* man|strong=\"H6440\"* who|strong=\"H7350\"* doesn’t sin|strong=\"H2398\"*), and|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H7350\"* angry with|strong=\"H6440\"* them|strong=\"H5414\"* and|strong=\"H6440\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* enemy, so|strong=\"H5414\"* that|strong=\"H3588\"* they|strong=\"H3588\"* carry them|strong=\"H5414\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* to|strong=\"H5414\"* a|strong=\"H3068\"* land|strong=\"H6440\"* far|strong=\"H7350\"* off|strong=\"H7350\"* or|strong=\"H3808\"* near|strong=\"H7138\"*;" + }, + { + "verseNum": 37, + "text": "yet|strong=\"H2398\"* if|strong=\"H2603\"* they|strong=\"H8033\"* come|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* senses in|strong=\"H7725\"* the|strong=\"H7725\"* land where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H3824\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* make|strong=\"H2603\"* supplication|strong=\"H2603\"* to|strong=\"H7725\"* you|strong=\"H7725\"* in|strong=\"H7725\"* the|strong=\"H7725\"* land of|strong=\"H3824\"* their|strong=\"H7725\"* captivity|strong=\"H7633\"*, saying, ‘We|strong=\"H8033\"* have|strong=\"H7617\"* sinned|strong=\"H2398\"*, we|strong=\"H3068\"* have|strong=\"H7617\"* done|strong=\"H2398\"* perversely|strong=\"H5753\"*, and|strong=\"H7725\"* have|strong=\"H7617\"* dealt|strong=\"H2603\"* wickedly|strong=\"H7561\"*;’" + }, + { + "verseNum": 38, + "text": "if they|strong=\"H5315\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H5414\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H7725\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land of|strong=\"H1004\"* their|strong=\"H3605\"* captivity|strong=\"H7633\"*, where|strong=\"H1004\"* they|strong=\"H5315\"* have|strong=\"H5414\"* been|strong=\"H3605\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"*, and|strong=\"H7725\"* pray|strong=\"H6419\"* toward|strong=\"H1870\"* their|strong=\"H3605\"* land which|strong=\"H1004\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers, and|strong=\"H7725\"* the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H1004\"* you|strong=\"H5414\"* have|strong=\"H5414\"* chosen, and|strong=\"H7725\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5414\"* built|strong=\"H1129\"* for|strong=\"H8034\"* your|strong=\"H3605\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 39, + "text": "then|strong=\"H6213\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, even|strong=\"H6213\"* from|strong=\"H4480\"* your|strong=\"H8085\"* dwelling|strong=\"H3427\"* place|strong=\"H4349\"*, their|strong=\"H8085\"* prayer|strong=\"H8605\"* and|strong=\"H8064\"* their|strong=\"H8085\"* petitions, and|strong=\"H8064\"* maintain|strong=\"H6213\"* their|strong=\"H8085\"* cause|strong=\"H4941\"*, and|strong=\"H8064\"* forgive|strong=\"H5545\"* your|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H4480\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 40, + "text": "“Now|strong=\"H6258\"*, my|strong=\"H1961\"* God, let|strong=\"H4994\"*, I|strong=\"H6258\"* beg|strong=\"H4994\"* you|strong=\"H5869\"*, your|strong=\"H1961\"* eyes|strong=\"H5869\"* be|strong=\"H1961\"* open|strong=\"H6605\"*, and|strong=\"H5869\"* let|strong=\"H4994\"* your|strong=\"H1961\"* ears be|strong=\"H1961\"* attentive|strong=\"H7183\"* to|strong=\"H1961\"* the|strong=\"H1961\"* prayer|strong=\"H8605\"* that|strong=\"H2088\"* is|strong=\"H2088\"* made|strong=\"H1961\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 41, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, into|strong=\"H5797\"* your|strong=\"H3068\"* resting|strong=\"H5118\"* place, you|strong=\"H2623\"*, and|strong=\"H6965\"* the|strong=\"H3068\"* ark of|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H5797\"*. Let|strong=\"H8055\"* your|strong=\"H3068\"* priests|strong=\"H3548\"*, Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, be|strong=\"H3068\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* salvation|strong=\"H8668\"*, and|strong=\"H6965\"* let|strong=\"H8055\"* your|strong=\"H3068\"* saints|strong=\"H2623\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* goodness|strong=\"H2896\"*." + }, + { + "verseNum": 42, + "text": "“Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, don’t turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H3068\"* your|strong=\"H3068\"* anointed|strong=\"H4899\"*. Remember|strong=\"H2142\"* your|strong=\"H3068\"* loving kindnesses|strong=\"H2617\"* to|strong=\"H7725\"* David|strong=\"H1732\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3519\"* when|strong=\"H3615\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* praying|strong=\"H6419\"*, fire came|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* consumed|strong=\"H3615\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* the|strong=\"H3068\"* sacrifices|strong=\"H2077\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3588\"* priests|strong=\"H3548\"* could|strong=\"H3201\"* not|strong=\"H3808\"* enter into|strong=\"H3519\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* looked|strong=\"H7200\"* on|strong=\"H5921\"*, when|strong=\"H3588\"* the|strong=\"H3605\"* fire came|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* was|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. They|strong=\"H3588\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* with|strong=\"H1004\"* their|strong=\"H3605\"* faces|strong=\"H5921\"* to|strong=\"H3381\"* the|strong=\"H3605\"* ground on|strong=\"H5921\"* the|strong=\"H3605\"* pavement|strong=\"H7531\"*, worshiped|strong=\"H7812\"*, and|strong=\"H1121\"* gave|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H4428\"* twenty-two|strong=\"H6242\"* thousand head of|strong=\"H4428\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand sheep|strong=\"H6629\"*. So the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* dedicated|strong=\"H2596\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* stood|strong=\"H5975\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3605\"* positions; the|strong=\"H3605\"* Levites|strong=\"H3881\"* also|strong=\"H3068\"* with|strong=\"H3068\"* instruments|strong=\"H3627\"* of|strong=\"H4428\"* music|strong=\"H7892\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, which|strong=\"H3068\"* David|strong=\"H1732\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3068\"* made|strong=\"H6213\"* to|strong=\"H3478\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* David|strong=\"H1732\"* praised|strong=\"H1984\"* by|strong=\"H3027\"* their|strong=\"H3605\"* ministry|strong=\"H3027\"*, saying “For|strong=\"H3588\"* his|strong=\"H3605\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*.” The|strong=\"H3605\"* priests|strong=\"H3548\"* sounded|strong=\"H2690\"* trumpets|strong=\"H2690\"* before|strong=\"H5048\"* them|strong=\"H5921\"*; and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"*." + }, + { + "verseNum": 7, + "text": "Moreover|strong=\"H3588\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H6440\"* court|strong=\"H2691\"* that|strong=\"H3588\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* holy|strong=\"H6942\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* he|strong=\"H3588\"* offered|strong=\"H6213\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H6440\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, because|strong=\"H3588\"* the|strong=\"H6440\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* was|strong=\"H3068\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* receive|strong=\"H3557\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* fat|strong=\"H2459\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* Solomon|strong=\"H8010\"* held|strong=\"H6213\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* at|strong=\"H3478\"* that|strong=\"H3605\"* time|strong=\"H6256\"* for|strong=\"H5704\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, from|strong=\"H3478\"* the|strong=\"H3605\"* entrance of|strong=\"H3117\"* Hamath|strong=\"H2574\"* to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "On|strong=\"H3117\"* the|strong=\"H3588\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"*, they|strong=\"H3588\"* held|strong=\"H6213\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* kept|strong=\"H6213\"* the|strong=\"H3588\"* dedication|strong=\"H2598\"* of|strong=\"H3117\"* the|strong=\"H3588\"* altar|strong=\"H4196\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* the|strong=\"H3588\"* feast|strong=\"H2282\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* twenty-third|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, he|strong=\"H3117\"* sent|strong=\"H7971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* away|strong=\"H7971\"* to|strong=\"H3478\"* their|strong=\"H3068\"* tents, joyful|strong=\"H8056\"* and|strong=\"H3478\"* glad|strong=\"H8056\"* of|strong=\"H3068\"* heart|strong=\"H3820\"* for|strong=\"H5921\"* the|strong=\"H5921\"* goodness|strong=\"H2896\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H6213\"* to|strong=\"H3478\"* David|strong=\"H1732\"*, to|strong=\"H3478\"* Solomon|strong=\"H8010\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "Thus Solomon|strong=\"H8010\"* finished|strong=\"H3615\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* successfully|strong=\"H6743\"* completed|strong=\"H3615\"* all|strong=\"H3605\"* that|strong=\"H3605\"* came|strong=\"H3068\"* into|strong=\"H5921\"* Solomon|strong=\"H8010\"*’s heart|strong=\"H3820\"* to|strong=\"H3068\"* make|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H5921\"* his|strong=\"H3605\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* to|strong=\"H3068\"* Solomon|strong=\"H8010\"* by|strong=\"H3068\"* night|strong=\"H3915\"*, and|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3068\"* him|strong=\"H7200\"*, “I|strong=\"H7200\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* chosen this|strong=\"H2088\"* place|strong=\"H4725\"* for|strong=\"H3068\"* myself for|strong=\"H3068\"* a|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* sacrifice|strong=\"H2077\"*." + }, + { + "verseNum": 13, + "text": "“If|strong=\"H2005\"* I|strong=\"H2005\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* so|strong=\"H7971\"* that|strong=\"H5971\"* there|strong=\"H1961\"* is|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H4306\"*, or|strong=\"H3808\"* if|strong=\"H2005\"* I|strong=\"H2005\"* command|strong=\"H6680\"* the|strong=\"H5921\"* locust|strong=\"H2284\"* to|strong=\"H7971\"* devour the|strong=\"H5921\"* land|strong=\"H8064\"*, or|strong=\"H3808\"* if|strong=\"H2005\"* I|strong=\"H2005\"* send|strong=\"H7971\"* pestilence|strong=\"H1698\"* among|strong=\"H5921\"* my|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 14, + "text": "if my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H8085\"* name|strong=\"H8034\"* will|strong=\"H5971\"* humble|strong=\"H3665\"* themselves|strong=\"H6440\"*, pray|strong=\"H6419\"*, seek|strong=\"H1245\"* my|strong=\"H8085\"* face|strong=\"H6440\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H4480\"* their|strong=\"H6440\"* wicked|strong=\"H7451\"* ways|strong=\"H1870\"*, then|strong=\"H7725\"* I|strong=\"H5921\"* will|strong=\"H5971\"* hear|strong=\"H8085\"* from|strong=\"H4480\"* heaven|strong=\"H8064\"*, will|strong=\"H5971\"* forgive|strong=\"H5545\"* their|strong=\"H6440\"* sin|strong=\"H2403\"*, and|strong=\"H7725\"* will|strong=\"H5971\"* heal|strong=\"H7495\"* their|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* my|strong=\"H1961\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* be|strong=\"H1961\"* open|strong=\"H6605\"* and|strong=\"H5869\"* my|strong=\"H1961\"* ears attentive|strong=\"H7183\"* to|strong=\"H1961\"* prayer|strong=\"H8605\"* that|strong=\"H2088\"* is|strong=\"H2088\"* made|strong=\"H1961\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H5704\"* now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen and|strong=\"H3117\"* made|strong=\"H1961\"* this|strong=\"H2088\"* house|strong=\"H1004\"* holy|strong=\"H6942\"*, that|strong=\"H3605\"* my|strong=\"H3605\"* name|strong=\"H8034\"* may|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* forever|strong=\"H5769\"*; and|strong=\"H3117\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* and|strong=\"H3117\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"* perpetually|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "“As|strong=\"H6213\"* for|strong=\"H6213\"* you|strong=\"H6440\"*, if you|strong=\"H6440\"* will|strong=\"H6213\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* me|strong=\"H6440\"* as|strong=\"H6213\"* David|strong=\"H1732\"* your|strong=\"H3605\"* father walked|strong=\"H1980\"*, and|strong=\"H1980\"* do|strong=\"H6213\"* according|strong=\"H4941\"* to|strong=\"H1980\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* have|strong=\"H3605\"* commanded|strong=\"H6680\"* you|strong=\"H6440\"*, and|strong=\"H1980\"* will|strong=\"H6213\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"* and|strong=\"H1980\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 18, + "text": "then|strong=\"H6965\"* I|strong=\"H3808\"* will|strong=\"H3478\"* establish|strong=\"H6965\"* the|strong=\"H3772\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* your|strong=\"H3808\"* kingdom|strong=\"H4438\"*, according as|strong=\"H6965\"* I|strong=\"H3808\"* covenanted|strong=\"H3772\"* with|strong=\"H1732\"* David|strong=\"H1732\"* your|strong=\"H3808\"* father, saying, ‘There|strong=\"H6965\"* shall|strong=\"H3478\"* not|strong=\"H3808\"* fail|strong=\"H3772\"* you|strong=\"H3808\"* a|strong=\"H3068\"* man to|strong=\"H3478\"* be|strong=\"H3808\"* ruler|strong=\"H4910\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 19, + "text": "But|strong=\"H5800\"* if you|strong=\"H5414\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* and|strong=\"H1980\"* forsake|strong=\"H5800\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* my|strong=\"H5414\"* commandments|strong=\"H4687\"* which|strong=\"H2708\"* I|strong=\"H5414\"* have|strong=\"H5414\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*, and|strong=\"H1980\"* go|strong=\"H1980\"* and|strong=\"H1980\"* serve|strong=\"H5647\"* other gods|strong=\"H1980\"* and|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 20, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H5971\"* pluck|strong=\"H5428\"* them|strong=\"H5414\"* up|strong=\"H5414\"* by|strong=\"H5921\"* the|strong=\"H3605\"* roots|strong=\"H5428\"* out|strong=\"H7993\"* of|strong=\"H1004\"* my|strong=\"H5414\"* land|strong=\"H6440\"* which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5971\"* given|strong=\"H5414\"* them|strong=\"H5414\"*; and|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* I|strong=\"H5414\"* have|strong=\"H5971\"* made|strong=\"H5414\"* holy|strong=\"H6942\"* for|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, I|strong=\"H5414\"* will|strong=\"H5971\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* of|strong=\"H1004\"* my|strong=\"H5414\"* sight|strong=\"H6440\"*, and|strong=\"H1004\"* I|strong=\"H5414\"* will|strong=\"H5971\"* make|strong=\"H5414\"* it|strong=\"H5414\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H1004\"* a|strong=\"H3068\"* byword|strong=\"H8148\"* among|strong=\"H5921\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "This|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* so|strong=\"H6213\"* high|strong=\"H5945\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* and|strong=\"H3068\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2088\"* to|strong=\"H3068\"* this|strong=\"H2088\"* land and|strong=\"H3068\"* to|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*?’" + }, + { + "verseNum": 22, + "text": "They|strong=\"H3651\"* shall|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3651\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers, who|strong=\"H3605\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* took|strong=\"H2388\"* other|strong=\"H3605\"* gods, worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*. Therefore|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H3068\"* brought|strong=\"H3318\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7093\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"*, in|strong=\"H8141\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* built|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* his|strong=\"H3068\"* own|strong=\"H1961\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* built|strong=\"H1129\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* Huram|strong=\"H2361\"* had|strong=\"H3478\"* given|strong=\"H5414\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"*, and|strong=\"H1121\"* caused|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 3, + "text": "Solomon|strong=\"H8010\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Hamath Zobah, and|strong=\"H3212\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* built|strong=\"H1129\"* Tadmor|strong=\"H8412\"* in|strong=\"H5892\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"*, which|strong=\"H5892\"* he|strong=\"H3605\"* built|strong=\"H1129\"* in|strong=\"H5892\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H1817\"* he|strong=\"H5892\"* built|strong=\"H1129\"* Beth Horon the|strong=\"H1129\"* upper|strong=\"H5945\"* and|strong=\"H5892\"* Beth Horon the|strong=\"H1129\"* lower|strong=\"H8481\"*, fortified|strong=\"H1129\"* cities|strong=\"H5892\"* with|strong=\"H5892\"* walls|strong=\"H2346\"*, gates|strong=\"H1817\"*, and|strong=\"H5892\"* bars|strong=\"H1280\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H5892\"* Baalath|strong=\"H1191\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* had|strong=\"H1961\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* for|strong=\"H3389\"* his|strong=\"H3605\"* horsemen|strong=\"H6571\"*, and|strong=\"H5892\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Solomon|strong=\"H8010\"* desired|strong=\"H2836\"* to|strong=\"H1961\"* build|strong=\"H1129\"* for|strong=\"H3389\"* his|strong=\"H3605\"* pleasure|strong=\"H2837\"* in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H5892\"* Lebanon|strong=\"H3844\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* his|strong=\"H3605\"* dominion|strong=\"H4474\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H5971\"* for|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H3478\"* left|strong=\"H3498\"* of|strong=\"H4480\"* the|strong=\"H3605\"* Hittites|strong=\"H2850\"*, the|strong=\"H3605\"* Amorites, the|strong=\"H3605\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3605\"* Hivites|strong=\"H2340\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* Jebusites|strong=\"H2983\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* not|strong=\"H3808\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 8, + "text": "of|strong=\"H1121\"* their|strong=\"H3117\"* children|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H3478\"* left|strong=\"H3498\"* after|strong=\"H4480\"* them|strong=\"H3615\"* in|strong=\"H3478\"* the|strong=\"H4480\"* land, whom the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* didn’t consume|strong=\"H3615\"*—of|strong=\"H1121\"* them|strong=\"H3615\"* Solomon|strong=\"H8010\"* conscripted|strong=\"H5927\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, Solomon|strong=\"H8010\"* made|strong=\"H5414\"* no|strong=\"H3808\"* servants|strong=\"H5650\"* for|strong=\"H3588\"* his|strong=\"H5414\"* work|strong=\"H4399\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, chief|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* captains|strong=\"H8269\"*, and|strong=\"H1121\"* rulers|strong=\"H8269\"* of|strong=\"H1121\"* his|strong=\"H5414\"* chariots|strong=\"H7393\"* and|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* horsemen|strong=\"H6571\"*." + }, + { + "verseNum": 10, + "text": "These|strong=\"H5971\"* were|strong=\"H5971\"* the|strong=\"H8010\"* chief|strong=\"H8269\"* officers|strong=\"H8269\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*, even two-hundred fifty|strong=\"H2572\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* over|strong=\"H4428\"* the|strong=\"H8010\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "Solomon|strong=\"H8010\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Pharaoh|strong=\"H6547\"*’s daughter|strong=\"H1323\"* out|strong=\"H3427\"* of|strong=\"H4428\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* built|strong=\"H1129\"* for|strong=\"H3588\"* her|strong=\"H1129\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* said, “My|strong=\"H3068\"* wife shall|strong=\"H3068\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* places|strong=\"H1004\"* where|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s ark has|strong=\"H3068\"* come|strong=\"H5927\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5927\"* Solomon|strong=\"H8010\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* before|strong=\"H6440\"* the|strong=\"H6440\"* porch," + }, + { + "verseNum": 13, + "text": "even as|strong=\"H1697\"* the|strong=\"H3117\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, offering|strong=\"H5927\"* according to|strong=\"H5927\"* the|strong=\"H3117\"* commandment|strong=\"H4687\"* of|strong=\"H3117\"* Moses|strong=\"H4872\"* on|strong=\"H3117\"* the|strong=\"H3117\"* Sabbaths|strong=\"H7676\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H4872\"* on|strong=\"H3117\"* the|strong=\"H3117\"* set|strong=\"H5927\"* feasts|strong=\"H4150\"*, three|strong=\"H7969\"* times|strong=\"H6471\"* per year|strong=\"H8141\"*, during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"*, during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* weeks|strong=\"H7620\"*, and|strong=\"H4872\"* during|strong=\"H3117\"* the|strong=\"H3117\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"*.+ 8:13 or, feast of tents (Sukkot)*" + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* appointed|strong=\"H5975\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ordinance|strong=\"H4941\"* of|strong=\"H3117\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father, the|strong=\"H5921\"* divisions|strong=\"H4256\"* of|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* to|strong=\"H5921\"* their|strong=\"H5921\"* service|strong=\"H5656\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* to|strong=\"H5921\"* their|strong=\"H5921\"* offices|strong=\"H4931\"*, to|strong=\"H5921\"* praise|strong=\"H1984\"* and|strong=\"H3117\"* to|strong=\"H5921\"* minister|strong=\"H8334\"* before|strong=\"H5048\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, as|strong=\"H1697\"* the|strong=\"H5921\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, the|strong=\"H5921\"* doorkeepers|strong=\"H7778\"* also|strong=\"H1732\"* by|strong=\"H5921\"* their|strong=\"H5921\"* divisions|strong=\"H4256\"* at|strong=\"H5921\"* every|strong=\"H3117\"* gate|strong=\"H8179\"*, for|strong=\"H3588\"* David|strong=\"H1732\"* the|strong=\"H5921\"* man|strong=\"H8179\"* of|strong=\"H3117\"* God had|strong=\"H1732\"* so|strong=\"H3651\"* commanded|strong=\"H4687\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3808\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H4428\"* Levites|strong=\"H3881\"* concerning|strong=\"H5921\"* any|strong=\"H3605\"* matter|strong=\"H1697\"* or|strong=\"H3808\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* treasures." + }, + { + "verseNum": 16, + "text": "Now|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"* was|strong=\"H3068\"* accomplished|strong=\"H3615\"* from|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3605\"* foundation|strong=\"H4143\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* until|strong=\"H5704\"* it|strong=\"H3559\"* was|strong=\"H3068\"* finished|strong=\"H3615\"*. So|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* completed|strong=\"H3615\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Solomon|strong=\"H8010\"* went|strong=\"H1980\"* to|strong=\"H1980\"* Ezion Geber and|strong=\"H1980\"* to|strong=\"H1980\"* Eloth, on|strong=\"H5921\"* the|strong=\"H5921\"* seashore|strong=\"H3220\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Edom." + }, + { + "verseNum": 18, + "text": "Huram|strong=\"H2361\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* ships and|strong=\"H3967\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H8010\"* knowledge|strong=\"H3045\"* of|strong=\"H4428\"* the|strong=\"H3947\"* sea|strong=\"H3220\"* by|strong=\"H3027\"* the|strong=\"H3947\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H7971\"* servants|strong=\"H5650\"*; and|strong=\"H3967\"* they|strong=\"H8033\"* came|strong=\"H5650\"* with|strong=\"H5973\"* the|strong=\"H3947\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* to|strong=\"H7971\"* Ophir, and|strong=\"H3967\"* brought|strong=\"H3947\"* from|strong=\"H3027\"* there|strong=\"H8033\"* four hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* talents|strong=\"H3603\"*+ 8:18 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 450 talents is about 13.5 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3967\"* brought|strong=\"H3947\"* them|strong=\"H7971\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H7230\"* Sheba|strong=\"H7614\"* heard|strong=\"H8085\"* of|strong=\"H7230\"* the|strong=\"H3605\"* fame|strong=\"H8088\"* of|strong=\"H7230\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* came|strong=\"H1961\"* to|strong=\"H1696\"* test|strong=\"H5254\"* Solomon|strong=\"H8010\"* with|strong=\"H5973\"* hard|strong=\"H3515\"* questions|strong=\"H2420\"* at|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H5973\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* caravan, including|strong=\"H3605\"* camels|strong=\"H1581\"* that|strong=\"H3605\"* bore|strong=\"H5375\"* spices|strong=\"H1314\"*, gold|strong=\"H2091\"* in|strong=\"H8085\"* abundance|strong=\"H7230\"*, and|strong=\"H2091\"* precious|strong=\"H3368\"* stones. When|strong=\"H1961\"* she|strong=\"H5973\"* had|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1696\"* Solomon|strong=\"H8010\"*, she|strong=\"H5973\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5973\"* about|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H8085\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 2, + "text": "Solomon|strong=\"H8010\"* answered|strong=\"H5046\"* all|strong=\"H3605\"* her|strong=\"H3605\"* questions|strong=\"H1697\"*. There|strong=\"H3605\"* wasn’t anything|strong=\"H3605\"* hidden|strong=\"H5956\"* from|strong=\"H1697\"* Solomon|strong=\"H8010\"* which|strong=\"H1697\"* he|strong=\"H3605\"* didn’t tell|strong=\"H5046\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* queen|strong=\"H4436\"* of|strong=\"H1004\"* Sheba|strong=\"H7614\"* had|strong=\"H8010\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* wisdom|strong=\"H2451\"* of|strong=\"H1004\"* Solomon|strong=\"H8010\"*, the|strong=\"H7200\"* house|strong=\"H1004\"* that|strong=\"H7200\"* he|strong=\"H1004\"* had|strong=\"H8010\"* built|strong=\"H1129\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H3068\"* food|strong=\"H3978\"* of|strong=\"H1004\"* his|strong=\"H3068\"* table|strong=\"H7979\"*, the|strong=\"H3068\"* seating|strong=\"H4186\"* of|strong=\"H1004\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, the|strong=\"H3068\"* attendance|strong=\"H4612\"* of|strong=\"H1004\"* his|strong=\"H3068\"* ministers|strong=\"H8334\"*, their|strong=\"H3068\"* clothing, his|strong=\"H3068\"* cup bearers and|strong=\"H3068\"* their|strong=\"H3068\"* clothing, and|strong=\"H3068\"* his|strong=\"H3068\"* ascent|strong=\"H5927\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* spirit|strong=\"H7307\"* in|strong=\"H3068\"* her|strong=\"H1961\"*.+ 9:4 or, she was breathless.*" + }, + { + "verseNum": 5, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “It|strong=\"H5921\"* was|strong=\"H1697\"* a|strong=\"H3068\"* true report|strong=\"H1697\"* that|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* my|strong=\"H8085\"* own land of|strong=\"H4428\"* your|strong=\"H5921\"* acts|strong=\"H1697\"* and|strong=\"H4428\"* of|strong=\"H4428\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 6, + "text": "However|strong=\"H8085\"* I|strong=\"H5704\"* didn’t believe their|strong=\"H8085\"* words|strong=\"H1697\"* until|strong=\"H5704\"* I|strong=\"H5704\"* came|strong=\"H1697\"*, and|strong=\"H5869\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* it|strong=\"H5921\"*; and|strong=\"H5869\"* behold|strong=\"H2009\"* half|strong=\"H2677\"* of|strong=\"H1697\"* the|strong=\"H5921\"* greatness|strong=\"H4768\"* of|strong=\"H1697\"* your|strong=\"H5921\"* wisdom|strong=\"H2451\"* wasn’t told|strong=\"H5046\"* me|strong=\"H7200\"*. You|strong=\"H5921\"* exceed|strong=\"H3254\"* the|strong=\"H5921\"* fame|strong=\"H8052\"* that|strong=\"H7200\"* I|strong=\"H5704\"* heard|strong=\"H8085\"*!" + }, + { + "verseNum": 7, + "text": "Happy are|strong=\"H5650\"* your|strong=\"H6440\"* men|strong=\"H5650\"*, and|strong=\"H5650\"* happy are|strong=\"H5650\"* these|strong=\"H8085\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*, who|strong=\"H5650\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* you|strong=\"H6440\"* and|strong=\"H5650\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 8, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* delighted|strong=\"H2654\"* in|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3478\"* set|strong=\"H5414\"* you|strong=\"H5414\"* on|strong=\"H5921\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* to|strong=\"H3478\"* be|strong=\"H1961\"* king|strong=\"H4428\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, because|strong=\"H5921\"* your|strong=\"H3068\"* God|strong=\"H3068\"* loved Israel|strong=\"H3478\"*, to|strong=\"H3478\"* establish|strong=\"H5975\"* them|strong=\"H5414\"* forever|strong=\"H5769\"*. Therefore|strong=\"H5921\"* he|strong=\"H6213\"* made|strong=\"H6213\"* you|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5414\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 9, + "text": "She|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* one|strong=\"H3808\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* twenty|strong=\"H6242\"* talents|strong=\"H3603\"*+ 9:9 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 120 talents is about 3.6 metric tons* of|strong=\"H4428\"* gold|strong=\"H2091\"*, spices|strong=\"H1314\"* in|strong=\"H4428\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*, and|strong=\"H3967\"* precious|strong=\"H3368\"* stones. There|strong=\"H1961\"* was|strong=\"H1961\"* never|strong=\"H3808\"* before|strong=\"H3808\"* such|strong=\"H1931\"* spice|strong=\"H1314\"* as|strong=\"H1961\"* the|strong=\"H5414\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* gave|strong=\"H5414\"* to|strong=\"H1961\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1571\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Huram and|strong=\"H6086\"* the|strong=\"H1571\"* servants|strong=\"H5650\"* of|strong=\"H5650\"* Solomon|strong=\"H8010\"*, who|strong=\"H5650\"* brought|strong=\"H8010\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* Ophir, also|strong=\"H1571\"* brought|strong=\"H8010\"* algum trees|strong=\"H6086\"*+ 9:10 possibly Indian sandalwood, which has nice grain and a pleasant scent and is good for woodworking* and|strong=\"H6086\"* precious|strong=\"H3368\"* stones." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* used|strong=\"H6213\"* algum tree|strong=\"H6086\"* wood|strong=\"H6086\"* to|strong=\"H3068\"* make|strong=\"H6213\"* terraces|strong=\"H4546\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* for|strong=\"H6213\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* harps|strong=\"H3658\"* and|strong=\"H3063\"* stringed instruments for|strong=\"H6213\"* the|strong=\"H6440\"* singers|strong=\"H7891\"*. There|strong=\"H1992\"* were|strong=\"H1992\"* none|strong=\"H3808\"* like|strong=\"H1004\"* these|strong=\"H1992\"* seen|strong=\"H7200\"* before|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* gave|strong=\"H5414\"* to|strong=\"H3212\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* of|strong=\"H4428\"* Sheba|strong=\"H7614\"* all|strong=\"H3605\"* her|strong=\"H3605\"* desire|strong=\"H2656\"*, whatever|strong=\"H3605\"* she|strong=\"H1931\"* asked|strong=\"H7592\"*, more than|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H1931\"* she|strong=\"H1931\"* had|strong=\"H8010\"* brought|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. So|strong=\"H5414\"* she|strong=\"H1931\"* turned|strong=\"H2015\"* and|strong=\"H4428\"* went|strong=\"H3212\"* to|strong=\"H3212\"* her|strong=\"H3605\"* own land, she|strong=\"H1931\"* and|strong=\"H4428\"* her|strong=\"H3605\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H1961\"* the|strong=\"H1961\"* weight|strong=\"H4948\"* of|strong=\"H8141\"* gold|strong=\"H2091\"* that|strong=\"H8141\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Solomon|strong=\"H8010\"* in|strong=\"H8141\"* one|strong=\"H1961\"* year|strong=\"H8141\"* was|strong=\"H1961\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"* talents|strong=\"H3603\"*+ 9:13 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces, so 666 talents is about 20 metric tons* of|strong=\"H8141\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 14, + "text": "in|strong=\"H4428\"* addition to|strong=\"H4428\"* that|strong=\"H3605\"* which|strong=\"H2091\"* the|strong=\"H3605\"* traders|strong=\"H5503\"* and|strong=\"H3701\"* merchants|strong=\"H5503\"* brought|strong=\"H8010\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Arabia|strong=\"H6152\"* and|strong=\"H3701\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* of|strong=\"H4428\"* the|strong=\"H3605\"* country brought|strong=\"H8010\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"* to|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 15, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* two|strong=\"H6213\"* hundred|strong=\"H3967\"* large|strong=\"H6793\"* shields|strong=\"H6793\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*. Six|strong=\"H8337\"* hundred|strong=\"H3967\"* shekels+ 9:15 A shekel is about 10 grams or about 0.32 Troy ounces, so 600 shekels was about 6 kilograms or about 192 Troy ounces.* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H6213\"* large|strong=\"H6793\"* shield|strong=\"H6793\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1004\"* made|strong=\"H5414\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* beaten|strong=\"H7820\"* gold|strong=\"H2091\"*. Three|strong=\"H7969\"* hundred|strong=\"H3967\"* shekels+ 9:16 A shekel is about 10 grams or about 0.32 Troy ounces, so 300 shekels was about 3 kilograms or about 96 Troy ounces.* of|strong=\"H4428\"* gold|strong=\"H2091\"* went|strong=\"H5927\"* to|strong=\"H5927\"* one|strong=\"H3967\"* shield|strong=\"H4043\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"*." + }, + { + "verseNum": 17, + "text": "Moreover the|strong=\"H6213\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* ivory|strong=\"H8127\"*, and|strong=\"H4428\"* overlaid|strong=\"H6823\"* it|strong=\"H6213\"* with|strong=\"H6213\"* pure|strong=\"H2889\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3427\"* were|strong=\"H3027\"* six|strong=\"H8337\"* steps|strong=\"H4609\"* to|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"*, with|strong=\"H5921\"* a|strong=\"H3068\"* footstool|strong=\"H3534\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*, which|strong=\"H2091\"* were|strong=\"H3027\"* fastened to|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"*, and|strong=\"H3027\"* armrests on|strong=\"H5921\"* either|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H3027\"* the|strong=\"H5921\"* place|strong=\"H4725\"* of|strong=\"H3027\"* the|strong=\"H5921\"* seat|strong=\"H3678\"*, and|strong=\"H3027\"* two|strong=\"H8147\"* lions standing|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* armrests." + }, + { + "verseNum": 19, + "text": "Twelve|strong=\"H8147\"* lions stood|strong=\"H5975\"* there|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H8033\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* on|strong=\"H5921\"* the|strong=\"H3605\"* six|strong=\"H8337\"* steps|strong=\"H4609\"*. There|strong=\"H8033\"* was|strong=\"H4467\"* nothing|strong=\"H3808\"* like|strong=\"H3651\"* it|strong=\"H5921\"* made|strong=\"H6213\"* in|strong=\"H5921\"* any|strong=\"H3605\"* other|strong=\"H2088\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*’s drinking|strong=\"H4945\"* vessels|strong=\"H3627\"* were|strong=\"H3117\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H3605\"* House|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Forest|strong=\"H3293\"* of|strong=\"H4428\"* Lebanon|strong=\"H3844\"* were|strong=\"H3117\"* of|strong=\"H4428\"* pure|strong=\"H5462\"* gold|strong=\"H2091\"*. Silver|strong=\"H3701\"* was|strong=\"H3117\"* not|strong=\"H2803\"* considered|strong=\"H2803\"* valuable|strong=\"H3972\"* in|strong=\"H1004\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* had|strong=\"H4428\"* ships that|strong=\"H3588\"* went|strong=\"H1980\"* to|strong=\"H1980\"* Tarshish|strong=\"H8659\"* with|strong=\"H5973\"* Huram|strong=\"H2361\"*’s servants|strong=\"H5650\"*. Once|strong=\"H1980\"* every|strong=\"H1980\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, the|strong=\"H3588\"* ships of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* came|strong=\"H1980\"* bringing|strong=\"H5375\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, ivory|strong=\"H8143\"*, apes|strong=\"H6971\"*, and|strong=\"H1980\"* peacocks|strong=\"H8500\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H1431\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* exceeded|strong=\"H1431\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth in|strong=\"H4428\"* riches|strong=\"H6239\"* and|strong=\"H4428\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth sought|strong=\"H1245\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* his|strong=\"H3605\"* wisdom|strong=\"H2451\"*, which|strong=\"H4428\"* God|strong=\"H5414\"* had|strong=\"H8010\"* put|strong=\"H5414\"* in|strong=\"H4428\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H1992\"* each brought tribute|strong=\"H4503\"*: vessels|strong=\"H3627\"* of|strong=\"H1697\"* silver|strong=\"H3701\"*, vessels|strong=\"H3627\"* of|strong=\"H1697\"* gold|strong=\"H2091\"*, clothing|strong=\"H3627\"*, armor|strong=\"H3627\"*, spices|strong=\"H1314\"*, horses|strong=\"H5483\"*, and|strong=\"H3701\"* mules|strong=\"H6505\"* every|strong=\"H1697\"* year|strong=\"H8141\"*." + }, + { + "verseNum": 25, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* four thousand stalls for|strong=\"H3389\"* horses|strong=\"H5483\"* and|strong=\"H4428\"* chariots|strong=\"H7393\"*, and|strong=\"H4428\"* twelve|strong=\"H8147\"* thousand horsemen|strong=\"H6571\"* that|strong=\"H4428\"* he|strong=\"H8147\"* stationed in|strong=\"H4428\"* the|strong=\"H1961\"* chariot|strong=\"H7393\"* cities|strong=\"H5892\"* and|strong=\"H4428\"* with|strong=\"H5973\"* the|strong=\"H1961\"* king|strong=\"H4428\"* at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H5704\"* ruled|strong=\"H4910\"* over|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* from|strong=\"H4480\"* the|strong=\"H3605\"* River|strong=\"H5104\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* land|strong=\"H1366\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, and|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* made|strong=\"H5414\"* silver|strong=\"H3701\"* as|strong=\"H7230\"* common|strong=\"H7230\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* as|strong=\"H7230\"* stones, and|strong=\"H3701\"* he|strong=\"H5414\"* made|strong=\"H5414\"* cedars to|strong=\"H5414\"* be|strong=\"H5414\"* as|strong=\"H7230\"* abundant|strong=\"H7230\"* as|strong=\"H7230\"* the|strong=\"H5414\"* sycamore|strong=\"H8256\"* trees|strong=\"H8256\"* that|strong=\"H5414\"* are|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H5414\"* lowland|strong=\"H8219\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3605\"* brought|strong=\"H3318\"* horses|strong=\"H5483\"* for|strong=\"H4714\"* Solomon|strong=\"H8010\"* out|strong=\"H3318\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* out|strong=\"H3318\"* of|strong=\"H3605\"* all|strong=\"H3605\"* lands." + }, + { + "verseNum": 29, + "text": "Now|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H1121\"* Nathan|strong=\"H5416\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prophecy|strong=\"H5016\"* of|strong=\"H1121\"* Ahijah the|strong=\"H5921\"* Shilonite|strong=\"H7888\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H2378\"* of|strong=\"H1121\"* Iddo|strong=\"H3260\"* the|strong=\"H5921\"* seer|strong=\"H2374\"* concerning|strong=\"H5921\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*?" + }, + { + "verseNum": 30, + "text": "Solomon|strong=\"H8010\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 31, + "text": "Solomon|strong=\"H8010\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* he|strong=\"H1732\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* father|strong=\"H1121\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Rehoboam|strong=\"H7346\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Rehoboam|strong=\"H7346\"* went|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* come|strong=\"H3212\"* to|strong=\"H3478\"* Shechem|strong=\"H7927\"* to|strong=\"H3478\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H1931\"* (for|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H1961\"* in|strong=\"H4428\"* Egypt|strong=\"H4714\"*, where he|strong=\"H1931\"* had|strong=\"H1961\"* fled|strong=\"H1272\"* from|strong=\"H7725\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*), Jeroboam|strong=\"H3379\"* returned|strong=\"H7725\"* out|strong=\"H6440\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3478\"* sent|strong=\"H7971\"* and|strong=\"H3478\"* called|strong=\"H7121\"* him|strong=\"H7121\"*; and|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H3478\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 4, + "text": "“Your|strong=\"H5414\"* father made|strong=\"H5414\"* our|strong=\"H5414\"* yoke|strong=\"H5923\"* grievous|strong=\"H3515\"*. Now|strong=\"H6258\"* therefore|strong=\"H5921\"* make|strong=\"H5414\"* the|strong=\"H5921\"* grievous|strong=\"H3515\"* service|strong=\"H5656\"* of|strong=\"H5921\"* your|strong=\"H5414\"* father and|strong=\"H5647\"* his|strong=\"H5414\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"* which he|strong=\"H5414\"* put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"*, lighter|strong=\"H7043\"*, and|strong=\"H5647\"* we|strong=\"H3068\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* said to|strong=\"H7725\"* them|strong=\"H7725\"*, “Come|strong=\"H3212\"* again|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"* after|strong=\"H3117\"* three|strong=\"H7969\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* took|strong=\"H1961\"* counsel|strong=\"H3289\"* with|strong=\"H1697\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"*, who|strong=\"H5971\"* had|strong=\"H1961\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Solomon|strong=\"H8010\"* his|strong=\"H7725\"* father while|strong=\"H1961\"* he|strong=\"H8010\"* yet|strong=\"H5975\"* lived|strong=\"H2416\"*, saying|strong=\"H1697\"*, “What|strong=\"H1697\"* counsel|strong=\"H3289\"* do|strong=\"H1697\"* you|strong=\"H6440\"* give|strong=\"H3289\"* me|strong=\"H6440\"* about|strong=\"H1961\"* how to|strong=\"H7725\"* answer|strong=\"H7725\"* these|strong=\"H2088\"* people|strong=\"H5971\"*?”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3605\"*, saying|strong=\"H1697\"*, “If|strong=\"H1961\"* you|strong=\"H3605\"* are|strong=\"H3117\"* kind|strong=\"H2896\"* to|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, please|strong=\"H7521\"* them|strong=\"H1961\"*, and|strong=\"H3117\"* speak|strong=\"H1696\"* good|strong=\"H2896\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1961\"*, then|strong=\"H1961\"* they|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* forever|strong=\"H3605\"*.”" + }, + { + "verseNum": 8, + "text": "But|strong=\"H5800\"* he|strong=\"H6440\"* abandoned|strong=\"H5800\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H6440\"* the|strong=\"H6440\"* old|strong=\"H2205\"* men|strong=\"H2205\"* which|strong=\"H3206\"* they|strong=\"H3289\"* had given|strong=\"H3289\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* took|strong=\"H5975\"* counsel|strong=\"H6098\"* with|strong=\"H6440\"* the|strong=\"H6440\"* young|strong=\"H3206\"* men|strong=\"H2205\"* who|strong=\"H5975\"* had grown|strong=\"H1431\"* up|strong=\"H5975\"* with|strong=\"H6440\"* him|strong=\"H6440\"*, who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, “What|strong=\"H4100\"* counsel|strong=\"H3289\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* may|strong=\"H5971\"* give|strong=\"H5414\"* an|strong=\"H5414\"* answer|strong=\"H7725\"* to|strong=\"H1696\"* these|strong=\"H2088\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* have|strong=\"H5971\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, saying|strong=\"H1697\"*, ‘Make|strong=\"H5414\"* the|strong=\"H5921\"* yoke|strong=\"H5923\"* that|strong=\"H5971\"* your|strong=\"H5414\"* father put|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* lighter|strong=\"H7043\"*’?”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"* who|strong=\"H5971\"* had|strong=\"H5971\"* grown|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H1696\"* him|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"*, saying|strong=\"H1696\"*, “Thus|strong=\"H3541\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* tell|strong=\"H1696\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, saying|strong=\"H1696\"*, ‘Your|strong=\"H5921\"* father made|strong=\"H3513\"* our|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* make|strong=\"H1431\"* it|strong=\"H5921\"* lighter|strong=\"H7043\"* on|strong=\"H5921\"* us|strong=\"H5921\"*;’ thus|strong=\"H3541\"* you|strong=\"H5921\"* shall|strong=\"H5971\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, ‘My|strong=\"H5921\"* little|strong=\"H6995\"* finger|strong=\"H6995\"* is|strong=\"H3206\"* thicker|strong=\"H5666\"* than|strong=\"H5921\"* my|strong=\"H5921\"* father’s waist|strong=\"H4975\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* whereas|strong=\"H6258\"* my|strong=\"H5921\"* father burdened you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* heavy|strong=\"H3515\"* yoke|strong=\"H5923\"*, I|strong=\"H5921\"* will|strong=\"H3254\"* add|strong=\"H3254\"* to|strong=\"H5921\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* whips|strong=\"H7752\"*, but|strong=\"H6258\"* I|strong=\"H5921\"* will|strong=\"H3254\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H5921\"* scorpions|strong=\"H6137\"*.’”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H7725\"* Jeroboam|strong=\"H3379\"* and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* came|strong=\"H5971\"* to|strong=\"H1696\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, as|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* asked|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Come|strong=\"H7725\"* to|strong=\"H1696\"* me|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* third|strong=\"H7992\"* day|strong=\"H3117\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H5800\"* king|strong=\"H4428\"* answered|strong=\"H6030\"* them|strong=\"H6030\"* roughly|strong=\"H7186\"*; and|strong=\"H6030\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* abandoned|strong=\"H5800\"* the|strong=\"H5800\"* counsel|strong=\"H6098\"* of|strong=\"H4428\"* the|strong=\"H5800\"* old|strong=\"H2205\"* men|strong=\"H2205\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6098\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"* after|strong=\"H5921\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H3206\"* men|strong=\"H3206\"*, saying|strong=\"H1696\"*, “My|strong=\"H5921\"* father made|strong=\"H3513\"* your|strong=\"H5921\"* yoke|strong=\"H5923\"* heavy|strong=\"H3513\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* add|strong=\"H3254\"* to|strong=\"H1696\"* it|strong=\"H5921\"*. My|strong=\"H5921\"* father chastised|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* whips|strong=\"H7752\"*, but|strong=\"H1696\"* I|strong=\"H5921\"* will|strong=\"H3206\"* chastise|strong=\"H3256\"* you|strong=\"H5921\"* with|strong=\"H1696\"* scorpions|strong=\"H6137\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4616\"* the|strong=\"H8085\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3068\"* brought|strong=\"H1961\"* about|strong=\"H1961\"* by|strong=\"H3027\"* God|strong=\"H3068\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* might|strong=\"H3068\"* establish|strong=\"H6965\"* his|strong=\"H3068\"* word|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Ahijah the|strong=\"H8085\"* Shilonite|strong=\"H7888\"* to|strong=\"H1696\"* Jeroboam|strong=\"H3379\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* them|strong=\"H1992\"*, the|strong=\"H3605\"* people|strong=\"H5971\"* answered|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “What|strong=\"H4100\"* portion|strong=\"H2506\"* do|strong=\"H4100\"* we|strong=\"H3068\"* have|strong=\"H5971\"* in|strong=\"H3478\"* David|strong=\"H1732\"*? We|strong=\"H3588\"* don’t have|strong=\"H5971\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"* in|strong=\"H3478\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*! Every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H7725\"* your|strong=\"H3605\"* tents, Israel|strong=\"H3478\"*! Now|strong=\"H6258\"* see|strong=\"H7200\"* to|strong=\"H7725\"* your|strong=\"H3605\"* own|strong=\"H5971\"* house|strong=\"H1004\"*, David|strong=\"H1732\"*.” So|strong=\"H3808\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* departed|strong=\"H3212\"* to|strong=\"H7725\"* their|strong=\"H3605\"* tents." + }, + { + "verseNum": 17, + "text": "But|strong=\"H5921\"* as|strong=\"H4427\"* for|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rehoboam|strong=\"H7346\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7971\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* sent|strong=\"H7971\"* Hadoram|strong=\"H1913\"*, who|strong=\"H1121\"* was|strong=\"H3478\"* over|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* subject to|strong=\"H3478\"* forced|strong=\"H4522\"* labor|strong=\"H4522\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* to|strong=\"H3478\"* death|strong=\"H4191\"* with|strong=\"H5921\"* stones. King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* hurried|strong=\"H5127\"* to|strong=\"H3478\"* get|strong=\"H5927\"* himself up|strong=\"H5927\"* to|strong=\"H3478\"* his|strong=\"H7971\"* chariot|strong=\"H4818\"*, to|strong=\"H3478\"* flee|strong=\"H5127\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H2088\"* Israel|strong=\"H3478\"* rebelled|strong=\"H6586\"* against|strong=\"H6586\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H7725\"* Rehoboam|strong=\"H7346\"* had|strong=\"H3478\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H6213\"* assembled|strong=\"H6950\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* Benjamin|strong=\"H1144\"*, one|strong=\"H6213\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand chosen men|strong=\"H6213\"* who|strong=\"H3478\"* were|strong=\"H3478\"* warriors|strong=\"H4421\"*, to|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* Israel|strong=\"H3478\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* the|strong=\"H6213\"* kingdom|strong=\"H4467\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Rehoboam|strong=\"H7346\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3068\"* man of|strong=\"H3068\"* God|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Speak to|strong=\"H3478\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, saying," + }, + { + "verseNum": 4, + "text": "‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H3212\"* up|strong=\"H5927\"*, nor|strong=\"H3808\"* fight|strong=\"H3898\"* against|strong=\"H5973\"* your|strong=\"H3068\"* brothers! Every|strong=\"H3212\"* man|strong=\"H2088\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3068\"* house|strong=\"H1004\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* is|strong=\"H3068\"* of|strong=\"H1004\"* me|strong=\"H7725\"*.”’” So|strong=\"H3541\"* they|strong=\"H3588\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, and|strong=\"H3068\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* going|strong=\"H5927\"* against|strong=\"H5973\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 5, + "text": "Rehoboam|strong=\"H7346\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* for|strong=\"H3427\"* defense|strong=\"H4692\"* in|strong=\"H3427\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* Bethlehem|strong=\"H1035\"*, Etam|strong=\"H5862\"*, Tekoa|strong=\"H8620\"*," + }, + { + "verseNum": 7, + "text": "Beth Zur, Soco|strong=\"H7755\"*, Adullam|strong=\"H5725\"*," + }, + { + "verseNum": 8, + "text": "Gath|strong=\"H1661\"*, Mareshah|strong=\"H4762\"*, Ziph|strong=\"H2128\"*," + }, + { + "verseNum": 9, + "text": "Adoraim, Lachish|strong=\"H3923\"*, Azekah|strong=\"H5825\"*," + }, + { + "verseNum": 10, + "text": "Zorah|strong=\"H6881\"*, Aijalon, and|strong=\"H3063\"* Hebron|strong=\"H2275\"*, which|strong=\"H5892\"* are|strong=\"H5892\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5892\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5414\"* fortified|strong=\"H4694\"* the|strong=\"H5414\"* strongholds and|strong=\"H2388\"* put|strong=\"H5414\"* captains|strong=\"H5057\"* in|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H8081\"* stores of|strong=\"H8081\"* food|strong=\"H3978\"*, oil|strong=\"H8081\"* and|strong=\"H2388\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3605\"* put|strong=\"H2388\"* shields|strong=\"H6793\"* and|strong=\"H3063\"* spears|strong=\"H7420\"* in|strong=\"H5892\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H3063\"* made|strong=\"H2388\"* them|strong=\"H1961\"* exceedingly|strong=\"H3966\"* strong|strong=\"H2388\"*. Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* were|strong=\"H3478\"* in|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* stood|strong=\"H3320\"* with|strong=\"H5921\"* him|strong=\"H5921\"* out|strong=\"H5921\"* of|strong=\"H1366\"* all|strong=\"H3605\"* their|strong=\"H3605\"* territory|strong=\"H1366\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* left|strong=\"H5800\"* their|strong=\"H3068\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* and|strong=\"H1121\"* their|strong=\"H3068\"* possessions, and|strong=\"H1121\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* Jeroboam|strong=\"H3379\"* and|strong=\"H1121\"* his|strong=\"H3068\"* sons|strong=\"H1121\"* cast|strong=\"H3068\"* them|strong=\"H1121\"* off|strong=\"H2186\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3068\"* not|strong=\"H3588\"* execute the|strong=\"H3588\"* priest|strong=\"H3547\"*’s office to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H6213\"* himself|strong=\"H6213\"* appointed|strong=\"H5975\"* priests|strong=\"H3548\"* for|strong=\"H6213\"* the|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, for|strong=\"H6213\"* the|strong=\"H6213\"* male|strong=\"H8163\"* goat|strong=\"H8163\"* and|strong=\"H3548\"* calf|strong=\"H5695\"* idols which|strong=\"H1116\"* he|strong=\"H6213\"* had|strong=\"H3548\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "After|strong=\"H1245\"* them|strong=\"H5414\"*, out|strong=\"H5414\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* set|strong=\"H5414\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"* to|strong=\"H3478\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 17, + "text": "So|strong=\"H1980\"* they|strong=\"H3588\"* strengthened|strong=\"H2388\"* the|strong=\"H3588\"* kingdom|strong=\"H4438\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* made|strong=\"H2388\"* Rehoboam|strong=\"H7346\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* strong|strong=\"H2388\"* for|strong=\"H3588\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* walked|strong=\"H1980\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 18, + "text": "Rehoboam|strong=\"H7346\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife for|strong=\"H1121\"* himself, Mahalath|strong=\"H4258\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jerimoth the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Abihail the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Eliab the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + }, + { + "verseNum": 19, + "text": "She bore|strong=\"H3205\"* him|strong=\"H3205\"* sons|strong=\"H1121\"*: Jeush|strong=\"H3266\"*, Shemariah|strong=\"H8114\"*, and|strong=\"H1121\"* Zaham|strong=\"H2093\"*." + }, + { + "verseNum": 20, + "text": "After her|strong=\"H3947\"*, he|strong=\"H3947\"* took|strong=\"H3947\"* Maacah|strong=\"H4601\"* the|strong=\"H3947\"* granddaughter|strong=\"H1323\"* of|strong=\"H1323\"* Absalom; and|strong=\"H1323\"* she bore|strong=\"H3205\"* him|strong=\"H3205\"* Abijah, Attai|strong=\"H6262\"*, Ziza|strong=\"H2124\"*, and|strong=\"H1323\"* Shelomith|strong=\"H8019\"*." + }, + { + "verseNum": 21, + "text": "Rehoboam|strong=\"H7346\"* loved Maacah|strong=\"H4601\"* the|strong=\"H3605\"* granddaughter|strong=\"H1323\"* of|strong=\"H1121\"* Absalom above all|strong=\"H3605\"* his|strong=\"H3605\"* wives and|strong=\"H1121\"* his|strong=\"H3605\"* concubines|strong=\"H6370\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* took|strong=\"H5375\"* eighteen|strong=\"H8083\"* wives and|strong=\"H1121\"* sixty|strong=\"H8346\"* concubines|strong=\"H6370\"*, and|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H3605\"* father|strong=\"H3205\"* of|strong=\"H1121\"* twenty-eight|strong=\"H6242\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* sixty|strong=\"H8346\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "Rehoboam|strong=\"H7346\"* appointed|strong=\"H5975\"* Abijah the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maacah|strong=\"H4601\"* to|strong=\"H1121\"* be|strong=\"H1121\"* chief|strong=\"H7218\"*, the|strong=\"H3588\"* prince|strong=\"H5057\"* among|strong=\"H7218\"* his|strong=\"H3588\"* brothers|strong=\"H1121\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* intended to|strong=\"H1121\"* make|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H3605\"* dealt wisely, and|strong=\"H1121\"* dispersed|strong=\"H6555\"* some|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* lands of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, to|strong=\"H5414\"* every|strong=\"H3605\"* fortified|strong=\"H4694\"* city|strong=\"H5892\"*. He|strong=\"H3605\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* food|strong=\"H4202\"* in|strong=\"H5892\"* abundance|strong=\"H7230\"*; and|strong=\"H1121\"* he|strong=\"H3605\"* sought|strong=\"H7592\"* many|strong=\"H7230\"* wives for|strong=\"H1121\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H3068\"* Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* established|strong=\"H3559\"* and|strong=\"H3478\"* he|strong=\"H3068\"* was|strong=\"H3068\"* strong|strong=\"H2393\"*, he|strong=\"H3068\"* abandoned|strong=\"H5800\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"*, Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "with|strong=\"H5973\"* twelve hundred|strong=\"H3967\"* chariots|strong=\"H7393\"* and|strong=\"H3967\"* sixty|strong=\"H8346\"* thousand horsemen|strong=\"H6571\"*. The|strong=\"H5973\"* people|strong=\"H5971\"* were|strong=\"H5971\"* without number|strong=\"H4557\"* who|strong=\"H5971\"* came|strong=\"H4714\"* with|strong=\"H5973\"* him|strong=\"H5973\"* out of|strong=\"H4557\"* Egypt|strong=\"H4714\"*: the|strong=\"H5973\"* Lubim|strong=\"H3864\"*, the|strong=\"H5973\"* Sukkiim|strong=\"H5525\"*, and|strong=\"H3967\"* the|strong=\"H5973\"* Ethiopians|strong=\"H3569\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* took|strong=\"H3920\"* the|strong=\"H5704\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* belonged to|strong=\"H5704\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* came|strong=\"H3063\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3541\"* Shemaiah|strong=\"H8098\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3063\"* to|strong=\"H3068\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* were|strong=\"H3063\"* gathered together to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* because|strong=\"H6440\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*, and|strong=\"H3063\"* said to|strong=\"H3068\"* them|strong=\"H6440\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘You|strong=\"H6440\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H6440\"*, therefore|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* also|strong=\"H3068\"* left|strong=\"H5800\"* you|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*.’”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* humbled|strong=\"H3665\"* themselves|strong=\"H3665\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*.”" + }, + { + "verseNum": 7, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* they|strong=\"H1992\"* humbled|strong=\"H3665\"* themselves|strong=\"H1992\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Shemaiah|strong=\"H8098\"*, saying|strong=\"H1697\"*, “They|strong=\"H1992\"* have|strong=\"H1961\"* humbled|strong=\"H3665\"* themselves|strong=\"H1992\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H5414\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* grant|strong=\"H5414\"* them|strong=\"H5414\"* some|strong=\"H4592\"* deliverance|strong=\"H6413\"*, and|strong=\"H3068\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"* won’t be|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5414\"* on|strong=\"H7200\"* Jerusalem|strong=\"H3389\"* by|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Shishak|strong=\"H7895\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H3045\"* servants|strong=\"H5650\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* my|strong=\"H3045\"* service|strong=\"H5656\"*, and|strong=\"H5650\"* the|strong=\"H3588\"* service|strong=\"H5656\"* of|strong=\"H5650\"* the|strong=\"H3588\"* kingdoms|strong=\"H4467\"* of|strong=\"H5650\"* the|strong=\"H3588\"* countries.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* Shishak|strong=\"H7895\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H6213\"* took|strong=\"H3947\"* it|strong=\"H5921\"* all|strong=\"H3605\"* away|strong=\"H3947\"*. He|strong=\"H6213\"* also|strong=\"H3068\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* made|strong=\"H6213\"* shields|strong=\"H4043\"* of|strong=\"H4428\"* bronze|strong=\"H5178\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H4428\"* committed|strong=\"H6213\"* them|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H8104\"*, who|strong=\"H8104\"* kept|strong=\"H8104\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H1961\"* often|strong=\"H1767\"* as|strong=\"H1961\"* the|strong=\"H5375\"* king|strong=\"H4428\"* entered into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, the|strong=\"H5375\"* guard|strong=\"H7323\"* came|strong=\"H1961\"* and|strong=\"H3068\"* bore|strong=\"H5375\"* them|strong=\"H7725\"*, then|strong=\"H1961\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5375\"* guard|strong=\"H7323\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H1961\"* he|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"*, Yahweh|strong=\"H3068\"*’s wrath turned|strong=\"H7725\"* from|strong=\"H4480\"* him|strong=\"H7725\"*, so|strong=\"H4480\"* as|strong=\"H1697\"* not|strong=\"H3808\"* to|strong=\"H7725\"* destroy|strong=\"H7843\"* him|strong=\"H7725\"* altogether|strong=\"H3617\"*. Moreover|strong=\"H1571\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* good|strong=\"H2896\"* things|strong=\"H1697\"* found|strong=\"H1571\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H7760\"* King|strong=\"H4428\"* Rehoboam|strong=\"H7346\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* reigned|strong=\"H4427\"*; for|strong=\"H3588\"* Rehoboam|strong=\"H7346\"* was|strong=\"H3068\"* forty-one years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3588\"* he|strong=\"H3588\"* began|strong=\"H3478\"* to|strong=\"H3478\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* reigned|strong=\"H4427\"* seventeen|strong=\"H7651\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* chosen out|strong=\"H2388\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* put|strong=\"H7760\"* his|strong=\"H3605\"* name|strong=\"H8034\"* there|strong=\"H8033\"*. His|strong=\"H3605\"* mother’s name|strong=\"H8034\"* was|strong=\"H3068\"* Naamah|strong=\"H5279\"* the|strong=\"H3605\"* Ammonitess|strong=\"H5985\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* didn’t set|strong=\"H3559\"* his|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3117\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H3117\"* Rehoboam|strong=\"H7346\"*, first|strong=\"H7223\"* and|strong=\"H3117\"* last, aren’t they|strong=\"H1992\"* written|strong=\"H3789\"* in|strong=\"H3117\"* the|strong=\"H3605\"* histories of|strong=\"H3117\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* and|strong=\"H3117\"* of|strong=\"H3117\"* Iddo|strong=\"H5714\"* the|strong=\"H3605\"* seer|strong=\"H2374\"*, in|strong=\"H3117\"* the|strong=\"H3605\"* genealogies|strong=\"H3187\"*? There|strong=\"H1992\"* were|strong=\"H3117\"* wars|strong=\"H4421\"* between|strong=\"H4421\"* Rehoboam|strong=\"H7346\"* and|strong=\"H3117\"* Jeroboam|strong=\"H3379\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "Rehoboam|strong=\"H7346\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Abijah his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Jeroboam|strong=\"H3379\"*, Abijah began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H4480\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H1961\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Micaiah|strong=\"H4322\"* the|strong=\"H4480\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Uriel of|strong=\"H1323\"* Gibeah|strong=\"H1390\"*. There|strong=\"H1961\"* was|strong=\"H8034\"* war|strong=\"H4421\"* between|strong=\"H4421\"* Abijah and|strong=\"H3389\"* Jeroboam|strong=\"H3379\"*." + }, + { + "verseNum": 3, + "text": "Abijah joined|strong=\"H6186\"* battle|strong=\"H4421\"* with|strong=\"H5973\"* an army|strong=\"H2428\"* of|strong=\"H1368\"* valiant|strong=\"H2428\"* men|strong=\"H1368\"* of|strong=\"H1368\"* war|strong=\"H4421\"*, even four hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1368\"*; and|strong=\"H3967\"* Jeroboam|strong=\"H3379\"* set|strong=\"H6186\"* the|strong=\"H3379\"* battle|strong=\"H4421\"* in|strong=\"H4421\"* array|strong=\"H6186\"* against|strong=\"H5973\"* him|strong=\"H5973\"* with|strong=\"H5973\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1368\"*, who|strong=\"H1368\"* were|strong=\"H2428\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1368\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 4, + "text": "Abijah stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Zemaraim|strong=\"H6787\"*, which|strong=\"H3478\"* is|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H6965\"* said|strong=\"H8085\"*, “Hear|strong=\"H8085\"* me|strong=\"H5921\"*, Jeroboam|strong=\"H3379\"* and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "Ought you|strong=\"H3588\"* not|strong=\"H3808\"* to|strong=\"H3478\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, gave|strong=\"H5414\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* David|strong=\"H1732\"* forever|strong=\"H5769\"*, even|strong=\"H3588\"* to|strong=\"H3478\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3478\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* by|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H1121\"* salt|strong=\"H4417\"*?" + }, + { + "verseNum": 6, + "text": "Yet|strong=\"H5921\"* Jeroboam|strong=\"H3379\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nebat|strong=\"H5028\"*, the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H1121\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* his|strong=\"H1732\"* lord." + }, + { + "verseNum": 7, + "text": "Worthless|strong=\"H1100\"* men|strong=\"H5288\"* were|strong=\"H1961\"* gathered|strong=\"H6908\"* to|strong=\"H1961\"* him|strong=\"H6440\"*, wicked|strong=\"H1100\"* fellows|strong=\"H1121\"* who|strong=\"H1121\"* strengthened|strong=\"H2388\"* themselves|strong=\"H6908\"* against|strong=\"H5921\"* Rehoboam|strong=\"H7346\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, when|strong=\"H1961\"* Rehoboam|strong=\"H7346\"* was|strong=\"H1961\"* young|strong=\"H5288\"* and|strong=\"H1121\"* tender|strong=\"H7390\"* hearted, and|strong=\"H1121\"* could|strong=\"H3824\"* not|strong=\"H3808\"* withstand|strong=\"H2388\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "“Now|strong=\"H6258\"* you|strong=\"H6440\"* intend to|strong=\"H3068\"* withstand|strong=\"H2388\"* the|strong=\"H6440\"* kingdom|strong=\"H4467\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*. You|strong=\"H6440\"* are|strong=\"H1121\"* a|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* golden|strong=\"H2091\"* calves|strong=\"H5695\"* which|strong=\"H3068\"* Jeroboam|strong=\"H3379\"* made|strong=\"H6213\"* you|strong=\"H6440\"* for|strong=\"H6213\"* gods are|strong=\"H1121\"* with|strong=\"H5973\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Haven’t you|strong=\"H3605\"* driven|strong=\"H5080\"* out|strong=\"H5080\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* made|strong=\"H6213\"* priests|strong=\"H3548\"* for|strong=\"H6213\"* yourselves|strong=\"H3027\"* according|strong=\"H3027\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ways of|strong=\"H1121\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* other|strong=\"H3605\"* lands? Whoever|strong=\"H3605\"* comes|strong=\"H1961\"* to|strong=\"H3068\"* consecrate|strong=\"H4390\"* himself|strong=\"H3027\"* with|strong=\"H4390\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* seven|strong=\"H7651\"* rams may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5971\"* no|strong=\"H3808\"* gods." + }, + { + "verseNum": 10, + "text": "“But|strong=\"H3808\"* as|strong=\"H3068\"* for|strong=\"H3068\"* us|strong=\"H5800\"*, Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* him|strong=\"H5800\"*. We have|strong=\"H3068\"* priests|strong=\"H3548\"* serving|strong=\"H8334\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, and|strong=\"H1121\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* in|strong=\"H3068\"* their|strong=\"H3068\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* burn|strong=\"H6999\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* every|strong=\"H1242\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* every|strong=\"H1242\"* evening|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H3068\"* sweet|strong=\"H5561\"* incense|strong=\"H7004\"*. They|strong=\"H3588\"* also|strong=\"H3068\"* set|strong=\"H1197\"* the|strong=\"H5921\"* show bread|strong=\"H3899\"* in|strong=\"H5921\"* order on|strong=\"H5921\"* the|strong=\"H5921\"* pure|strong=\"H2889\"* table|strong=\"H7979\"*, and|strong=\"H3068\"* care|strong=\"H4931\"* for|strong=\"H3588\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* lamp|strong=\"H5216\"* stand with|strong=\"H3068\"* its|strong=\"H5921\"* lamps|strong=\"H5216\"*, to|strong=\"H3068\"* burn|strong=\"H6999\"* every|strong=\"H1242\"* evening|strong=\"H6153\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* instruction of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5921\"* at|strong=\"H5921\"* our|strong=\"H3068\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* his|strong=\"H3068\"* priests|strong=\"H3548\"* with|strong=\"H5973\"* the|strong=\"H5921\"* trumpets|strong=\"H2689\"* of|strong=\"H1121\"* alarm|strong=\"H8643\"* to|strong=\"H3478\"* sound|strong=\"H7321\"* an|strong=\"H3588\"* alarm|strong=\"H8643\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, don’t fight|strong=\"H3898\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* your|strong=\"H3068\"* fathers; for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*.”" + }, + { + "verseNum": 13, + "text": "But|strong=\"H1961\"* Jeroboam|strong=\"H3379\"* caused|strong=\"H1961\"* an|strong=\"H1961\"* ambush|strong=\"H3993\"* to|strong=\"H1961\"* come|strong=\"H1961\"* about|strong=\"H5437\"* behind them|strong=\"H6440\"*; so|strong=\"H1961\"* they|strong=\"H6440\"* were|strong=\"H1961\"* before|strong=\"H6440\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* ambush|strong=\"H3993\"* was|strong=\"H1961\"* behind them|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3068\"* Judah|strong=\"H3063\"* looked|strong=\"H6437\"* back|strong=\"H6437\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* battle|strong=\"H4421\"* was|strong=\"H3068\"* before|strong=\"H6440\"* and|strong=\"H3063\"* behind them|strong=\"H6440\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* sounded|strong=\"H2690\"* with|strong=\"H3068\"* the|strong=\"H6440\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* gave|strong=\"H7321\"* a|strong=\"H3068\"* shout|strong=\"H7321\"*. As|strong=\"H1961\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* shouted|strong=\"H7321\"*, God struck|strong=\"H5062\"* Jeroboam|strong=\"H3379\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* Abijah and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* fled|strong=\"H5127\"* before|strong=\"H6440\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* God|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "Abijah and|strong=\"H3967\"* his|strong=\"H5221\"* people|strong=\"H5971\"* killed|strong=\"H5221\"* them|strong=\"H5221\"* with|strong=\"H5971\"* a|strong=\"H3068\"* great|strong=\"H7227\"* slaughter|strong=\"H4347\"*, so five|strong=\"H2568\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H5971\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 18, + "text": "Thus the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* brought|strong=\"H3478\"* under|strong=\"H5921\"* at|strong=\"H5921\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* prevailed, because|strong=\"H3588\"* they|strong=\"H3588\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3068\"* fathers." + }, + { + "verseNum": 19, + "text": "Abijah pursued|strong=\"H7291\"* Jeroboam|strong=\"H3379\"*, and|strong=\"H5892\"* took|strong=\"H3920\"* cities|strong=\"H5892\"* from|strong=\"H4480\"* him|strong=\"H7291\"*: Bethel|strong=\"H1008\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, Jeshanah|strong=\"H3466\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H5892\"* Ephron|strong=\"H6085\"* with|strong=\"H5892\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*." + }, + { + "verseNum": 20, + "text": "Jeroboam|strong=\"H3379\"* didn’t recover|strong=\"H6113\"* strength|strong=\"H3581\"* again|strong=\"H5750\"* in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Abijah. Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* him|strong=\"H4191\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H2388\"* Abijah grew|strong=\"H1121\"* mighty|strong=\"H2388\"* and|strong=\"H1121\"* took|strong=\"H5375\"* for|strong=\"H1121\"* himself|strong=\"H2388\"* fourteen|strong=\"H6240\"* wives, and|strong=\"H1121\"* became|strong=\"H3205\"* the|strong=\"H5375\"* father|strong=\"H3205\"* of|strong=\"H1121\"* twenty-two|strong=\"H6242\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* sixteen|strong=\"H8337\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H1870\"* rest|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H1870\"* acts|strong=\"H1697\"* of|strong=\"H1697\"* Abijah, his|strong=\"H5714\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* his|strong=\"H5714\"* sayings|strong=\"H1697\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H1870\"* commentary of|strong=\"H1697\"* the|strong=\"H1870\"* prophet|strong=\"H5030\"* Iddo|strong=\"H5714\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H6213\"* Abijah slept with|strong=\"H3068\"* his|strong=\"H3068\"* fathers, and|strong=\"H3068\"* they|strong=\"H3068\"* buried|strong=\"H6213\"* him|strong=\"H6213\"* in|strong=\"H3068\"* David’s city; and|strong=\"H3068\"* Asa his|strong=\"H3068\"* son reigned in|strong=\"H3068\"* his|strong=\"H3068\"* place. In|strong=\"H3068\"* his|strong=\"H3068\"* days, the|strong=\"H6213\"* land was|strong=\"H3068\"* quiet ten years." + }, + { + "verseNum": 2, + "text": "Asa did that|strong=\"H4196\"* which|strong=\"H1116\"* was good and|strong=\"H4196\"* right in|strong=\"H5493\"* Yahweh|strong=\"H3068\"* his|strong=\"H5493\"* God’s eyes," + }, + { + "verseNum": 3, + "text": "for|strong=\"H6213\"* he|strong=\"H6213\"* took|strong=\"H3063\"* away the|strong=\"H6213\"* foreign altars and|strong=\"H3063\"* the|strong=\"H6213\"* high|strong=\"H6213\"* places, broke down the|strong=\"H6213\"* pillars, cut down the|strong=\"H6213\"* Asherah poles," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* to|strong=\"H6440\"* seek Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God of|strong=\"H5892\"* their|strong=\"H3605\"* fathers, and|strong=\"H3063\"* to|strong=\"H6440\"* obey his|strong=\"H3605\"* law and|strong=\"H3063\"* command." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H3068\"* he|strong=\"H3588\"* took|strong=\"H3063\"* away|strong=\"H5973\"* out of|strong=\"H3068\"* all|strong=\"H5973\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* the|strong=\"H3588\"* high|strong=\"H1129\"* places and|strong=\"H3063\"* the|strong=\"H3588\"* sun images; and|strong=\"H3063\"* the|strong=\"H3588\"* kingdom was|strong=\"H3068\"* quiet|strong=\"H8252\"* before|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* fortified|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* land|strong=\"H6440\"* was|strong=\"H3068\"* quiet|strong=\"H5117\"*, and|strong=\"H3063\"* he|strong=\"H3588\"* had|strong=\"H3068\"* no|strong=\"H6440\"* war in|strong=\"H3068\"* those|strong=\"H5437\"* years, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* given|strong=\"H5117\"* him|strong=\"H6440\"* rest|strong=\"H5117\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3605\"* he|strong=\"H3605\"* said to|strong=\"H1961\"* Judah|strong=\"H3063\"*, “Let|strong=\"H1961\"*’s build these|strong=\"H3605\"* cities and|strong=\"H3967\"* make|strong=\"H5375\"* walls around them|strong=\"H5375\"*, with|strong=\"H3605\"* towers|strong=\"H5375\"*, gates, and|strong=\"H3967\"* bars. The|strong=\"H3605\"* land is|strong=\"H3605\"* yet|strong=\"H3605\"* before|strong=\"H1961\"* us|strong=\"H1961\"*, because|strong=\"H3605\"* we|strong=\"H3068\"* have|strong=\"H1961\"* sought Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God. We|strong=\"H3605\"* have|strong=\"H1961\"* sought him|strong=\"H3605\"*, and|strong=\"H3967\"* he|strong=\"H3605\"* has|strong=\"H1961\"* given|strong=\"H5375\"* us|strong=\"H1961\"* rest|strong=\"H1961\"* on|strong=\"H1961\"* every|strong=\"H3605\"* side.” So|strong=\"H1961\"* they|strong=\"H3605\"* built and|strong=\"H3967\"* prospered." + }, + { + "verseNum": 8, + "text": "Asa had|strong=\"H2428\"* an|strong=\"H3318\"* army|strong=\"H2428\"* of|strong=\"H3318\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand out|strong=\"H3318\"* of|strong=\"H3318\"* Judah who bore bucklers and|strong=\"H3967\"* spears, and|strong=\"H3967\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty thousand out|strong=\"H3318\"* of|strong=\"H3318\"* Benjamin who bore shields and|strong=\"H3967\"* drew bows. All|strong=\"H5704\"* these were|strong=\"H2428\"* mighty|strong=\"H7969\"* men|strong=\"H2428\"* of|strong=\"H3318\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 9, + "text": "Zerah the|strong=\"H6440\"* Ethiopian came|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H6440\"* them|strong=\"H6440\"* with|strong=\"H6440\"* an|strong=\"H6440\"* army|strong=\"H4421\"* of|strong=\"H6440\"* a|strong=\"H3068\"* million troops and|strong=\"H6440\"* three hundred chariots, and|strong=\"H6440\"* he|strong=\"H6440\"* came|strong=\"H3318\"* to|strong=\"H3318\"* Mareshah|strong=\"H4762\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H2088\"* Asa went|strong=\"H3068\"* out|strong=\"H5921\"* to|strong=\"H3068\"* meet him|strong=\"H7121\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* set the|strong=\"H5921\"* battle in|strong=\"H5921\"* array in|strong=\"H5921\"* the|strong=\"H5921\"* valley of|strong=\"H3068\"* Zephathah at|strong=\"H5921\"* Mareshah." + }, + { + "verseNum": 11, + "text": "Asa cried to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3063\"* said, “Yahweh|strong=\"H3068\"*, there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6440\"* one|strong=\"H3068\"* besides you|strong=\"H6440\"* to|strong=\"H3068\"* help, between the|strong=\"H6440\"* mighty and|strong=\"H3063\"* him|strong=\"H6440\"* who|strong=\"H3068\"* has|strong=\"H3068\"* no|strong=\"H6440\"* strength. Help us|strong=\"H6440\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; for|strong=\"H6440\"* we|strong=\"H3068\"* rely on|strong=\"H3068\"* you|strong=\"H6440\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* your|strong=\"H3068\"* name are|strong=\"H3068\"* we|strong=\"H3068\"* come|strong=\"H3063\"* against|strong=\"H6440\"* this|strong=\"H6440\"* multitude. Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"* are|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t let man|strong=\"H6440\"* prevail against|strong=\"H6440\"* you|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "So|strong=\"H5375\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5307\"* the|strong=\"H6440\"* Ethiopians|strong=\"H3569\"* before|strong=\"H6440\"* Asa and|strong=\"H3068\"* before|strong=\"H6440\"* Judah; and|strong=\"H3068\"* the|strong=\"H6440\"* Ethiopians|strong=\"H3569\"* fled." + }, + { + "verseNum": 13, + "text": "Asa and|strong=\"H3068\"* the|strong=\"H3605\"* people who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H3068\"* him|strong=\"H5921\"* pursued them|strong=\"H5921\"* to|strong=\"H3068\"* Gerar|strong=\"H1642\"*. So|strong=\"H1961\"* many|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Ethiopians fell|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H3588\"* could not|strong=\"H1961\"* recover themselves|strong=\"H5921\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* destroyed|strong=\"H5221\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* before|strong=\"H5921\"* his|strong=\"H3605\"* army. Judah’s army carried|strong=\"H3068\"* away|strong=\"H3605\"* very|strong=\"H7227\"* much|strong=\"H7227\"* booty." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5221\"* struck|strong=\"H5221\"* all|strong=\"H7725\"* the|strong=\"H5221\"* cities around|strong=\"H7725\"* Gerar, for|strong=\"H3389\"* the|strong=\"H5221\"* fear of|strong=\"H7230\"* Yahweh|strong=\"H3068\"* came|strong=\"H7725\"* on|strong=\"H3389\"* them|strong=\"H7725\"*. They|strong=\"H5221\"* plundered all|strong=\"H7725\"* the|strong=\"H5221\"* cities, for|strong=\"H3389\"* there|strong=\"H7725\"* was|strong=\"H3389\"* much|strong=\"H7230\"* plunder in|strong=\"H7725\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 15, + "text": "They also struck the tents of those who had livestock, and carried away sheep and camels in abundance, then returned to Jerusalem." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H1121\"* God came|strong=\"H1961\"* on|strong=\"H5921\"* Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Oded|strong=\"H5752\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* Asa, and|strong=\"H3063\"* said|strong=\"H8085\"* to|strong=\"H3318\"* him|strong=\"H6440\"*, “Hear|strong=\"H8085\"* me|strong=\"H6440\"*, Asa, and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*! Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"* while|strong=\"H1961\"* you|strong=\"H6440\"* are|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H6440\"*; and|strong=\"H3063\"* if|strong=\"H1961\"* you|strong=\"H6440\"* seek|strong=\"H1875\"* him|strong=\"H6440\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H6440\"*; but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H6440\"* forsake|strong=\"H5800\"* him|strong=\"H6440\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* forsake|strong=\"H5800\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3117\"* for|strong=\"H3117\"* a|strong=\"H3068\"* long|strong=\"H3117\"* time|strong=\"H3117\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* without|strong=\"H3808\"* the|strong=\"H3117\"* true God|strong=\"H3808\"*, without|strong=\"H3808\"* a|strong=\"H3068\"* teaching|strong=\"H8451\"* priest|strong=\"H3548\"*, and|strong=\"H3478\"* without|strong=\"H3808\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H7725\"* when|strong=\"H7725\"* in|strong=\"H5921\"* their|strong=\"H3068\"* distress|strong=\"H6862\"* they|strong=\"H3068\"* turned|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* sought|strong=\"H1245\"* him|strong=\"H5921\"*, he|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* times|strong=\"H7227\"* there|strong=\"H3427\"* was|strong=\"H3605\"* no|strong=\"H3605\"* peace|strong=\"H7965\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, nor|strong=\"H3588\"* to|strong=\"H3318\"* him|strong=\"H5921\"* who|strong=\"H3605\"* came|strong=\"H3318\"* in|strong=\"H3427\"*; but|strong=\"H3588\"* great|strong=\"H7227\"* troubles were|strong=\"H1992\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* lands." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3588\"* were|strong=\"H1471\"* broken|strong=\"H3807\"* in|strong=\"H5892\"* pieces|strong=\"H3807\"*, nation|strong=\"H1471\"* against|strong=\"H1471\"* nation|strong=\"H1471\"*, and|strong=\"H5892\"* city|strong=\"H5892\"* against|strong=\"H1471\"* city|strong=\"H5892\"*; for|strong=\"H3588\"* God troubled|strong=\"H2000\"* them|strong=\"H2000\"* with|strong=\"H5892\"* all|strong=\"H3605\"* adversity|strong=\"H6869\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* be|strong=\"H3426\"* strong|strong=\"H2388\"*! Don’t let|strong=\"H7503\"* your|strong=\"H3588\"* hands|strong=\"H3027\"* be|strong=\"H3426\"* slack|strong=\"H7503\"*, for|strong=\"H3588\"* your|strong=\"H3588\"* work|strong=\"H6468\"* will|strong=\"H3027\"* be|strong=\"H3426\"* rewarded|strong=\"H7939\"*.”" + }, + { + "verseNum": 8, + "text": "When|strong=\"H8085\"* Asa heard|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"* and|strong=\"H3063\"* the|strong=\"H3605\"* prophecy|strong=\"H5016\"* of|strong=\"H3068\"* Oded|strong=\"H5752\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, he|strong=\"H3068\"* took|strong=\"H3920\"* courage|strong=\"H2388\"*, and|strong=\"H3063\"* put|strong=\"H3068\"* away|strong=\"H5674\"* the|strong=\"H3605\"* abominations|strong=\"H8251\"* out|strong=\"H4480\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* taken|strong=\"H3920\"* from|strong=\"H4480\"* the|strong=\"H3605\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim; and|strong=\"H3063\"* he|strong=\"H3068\"* renewed|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* that|strong=\"H3605\"* was|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s porch." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* gathered|strong=\"H6908\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lived|strong=\"H1481\"* with|strong=\"H5973\"* them|strong=\"H5921\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Ephraim, Manasseh|strong=\"H4519\"*, and|strong=\"H3063\"* Simeon|strong=\"H8095\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H5921\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"* when|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "So they|strong=\"H8141\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* at|strong=\"H2320\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H6908\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H6908\"* fifteenth|strong=\"H2568\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Asa’s reign|strong=\"H4438\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3117\"* sacrificed|strong=\"H2076\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, of|strong=\"H3068\"* the|strong=\"H3068\"* plunder|strong=\"H7998\"* which|strong=\"H1931\"* they|strong=\"H3117\"* had|strong=\"H3068\"* brought|strong=\"H3068\"*, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* head of|strong=\"H3068\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* entered into the|strong=\"H3605\"* covenant|strong=\"H1285\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers, with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* soul|strong=\"H5315\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H3478\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* would|strong=\"H3068\"* not|strong=\"H3808\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, should|strong=\"H3068\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H5704\"* death|strong=\"H4191\"*, whether|strong=\"H4480\"* small|strong=\"H6996\"* or|strong=\"H3808\"* great|strong=\"H1419\"*, whether|strong=\"H4480\"* man|strong=\"H4191\"* or|strong=\"H3808\"* woman." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, with|strong=\"H3068\"* shouting|strong=\"H8643\"*, with|strong=\"H3068\"* trumpets|strong=\"H2689\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* cornets|strong=\"H7782\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* Judah|strong=\"H3063\"* rejoiced|strong=\"H8055\"* at|strong=\"H5921\"* the|strong=\"H3605\"* oath|strong=\"H7621\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* sworn|strong=\"H7650\"* with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3063\"* sought|strong=\"H1245\"* him|strong=\"H5921\"* with|strong=\"H3068\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* desire|strong=\"H7522\"*; and|strong=\"H3063\"* he|strong=\"H3588\"* was|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H5921\"* them|strong=\"H5921\"*. Then|strong=\"H3588\"* Yahweh|strong=\"H3068\"* gave|strong=\"H5117\"* them|strong=\"H5921\"* rest|strong=\"H5117\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "Also|strong=\"H1571\"* Maacah|strong=\"H4601\"*, the|strong=\"H6213\"* mother|strong=\"H1377\"* of|strong=\"H4428\"* Asa the|strong=\"H6213\"* king|strong=\"H4428\"*, he|strong=\"H6213\"* removed|strong=\"H5493\"* from|strong=\"H5493\"* being|strong=\"H3772\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*, because she|strong=\"H1571\"* had|strong=\"H4428\"* made|strong=\"H6213\"* an|strong=\"H6213\"* abominable image|strong=\"H4656\"* for|strong=\"H6213\"* an|strong=\"H6213\"* Asherah; so|strong=\"H6213\"* Asa cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* image|strong=\"H4656\"*, ground|strong=\"H1854\"* it|strong=\"H6213\"* into|strong=\"H6213\"* dust|strong=\"H1854\"*, and|strong=\"H4428\"* burned|strong=\"H8313\"* it|strong=\"H6213\"* at|strong=\"H4428\"* the|strong=\"H6213\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H7535\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H3478\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H3605\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*; nevertheless|strong=\"H7535\"* the|strong=\"H3605\"* heart|strong=\"H3824\"* of|strong=\"H3117\"* Asa was|strong=\"H1961\"* perfect|strong=\"H8003\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1004\"* brought the|strong=\"H6942\"* things|strong=\"H6944\"* that|strong=\"H3627\"* his|strong=\"H6942\"* father had|strong=\"H6944\"* dedicated|strong=\"H6942\"* and|strong=\"H3701\"* that|strong=\"H3627\"* he|strong=\"H1004\"* himself|strong=\"H6942\"* had|strong=\"H6944\"* dedicated|strong=\"H6942\"*, silver|strong=\"H3701\"*, gold|strong=\"H2091\"*, and|strong=\"H3701\"* vessels|strong=\"H3627\"* into|strong=\"H3701\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H3808\"* war|strong=\"H4421\"* to|strong=\"H5704\"* the|strong=\"H5704\"* thirty-fifth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Asa’s reign|strong=\"H4438\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* thirty-sixth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Asa’s reign|strong=\"H4438\"*, Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* up|strong=\"H5927\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* built|strong=\"H1129\"* Ramah|strong=\"H7414\"*, that|strong=\"H3478\"* he|strong=\"H5414\"* might|strong=\"H3478\"* not|strong=\"H1115\"* allow|strong=\"H5414\"* anyone to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H1115\"* come|strong=\"H5927\"* in|strong=\"H8141\"* to|strong=\"H3318\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3318\"* Asa brought|strong=\"H3318\"* out|strong=\"H3318\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* gold|strong=\"H2091\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3068\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3318\"* Ben Hadad king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, who|strong=\"H3068\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Damascus|strong=\"H1834\"*, saying," + }, + { + "verseNum": 3, + "text": "“Let|strong=\"H7971\"* there|strong=\"H2009\"* be|strong=\"H3478\"* a|strong=\"H3068\"* treaty|strong=\"H1285\"* between|strong=\"H5921\"* me|strong=\"H7971\"* and|strong=\"H3478\"* you|strong=\"H7971\"*, as|strong=\"H5927\"* there|strong=\"H2009\"* was|strong=\"H3478\"* between|strong=\"H5921\"* my|strong=\"H5921\"* father and|strong=\"H3478\"* your|strong=\"H5921\"* father. Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3478\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* silver|strong=\"H3701\"* and|strong=\"H3478\"* gold|strong=\"H2091\"*. Go|strong=\"H3212\"*, break|strong=\"H6565\"* your|strong=\"H5921\"* treaty|strong=\"H1285\"* with|strong=\"H1285\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* he|strong=\"H5921\"* may|strong=\"H3478\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 4, + "text": "Ben Hadad listened|strong=\"H8085\"* to|strong=\"H3478\"* King|strong=\"H4428\"* Asa, and|strong=\"H3478\"* sent|strong=\"H7971\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H3605\"* armies|strong=\"H2428\"* against|strong=\"H7971\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3478\"* struck|strong=\"H5221\"* Ijon|strong=\"H5859\"*, Dan|strong=\"H1835\"*, Abel Maim, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* storage|strong=\"H4543\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Naphtali|strong=\"H5321\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H1961\"* Baasha|strong=\"H1201\"* heard|strong=\"H8085\"* of|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H1129\"* stopped|strong=\"H2308\"* building|strong=\"H1129\"* Ramah|strong=\"H7414\"*, and|strong=\"H8085\"* let|strong=\"H2308\"* his|strong=\"H8085\"* work|strong=\"H4399\"* cease|strong=\"H7673\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* Asa the|strong=\"H3605\"* king|strong=\"H4428\"* took|strong=\"H3947\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* they|strong=\"H3605\"* carried|strong=\"H5375\"* away|strong=\"H3947\"* the|strong=\"H3605\"* stones and|strong=\"H3063\"* timber|strong=\"H6086\"* of|strong=\"H4428\"* Ramah|strong=\"H7414\"*, with|strong=\"H4428\"* which|strong=\"H6086\"* Baasha|strong=\"H1201\"* had|strong=\"H4428\"* built|strong=\"H1129\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* built|strong=\"H1129\"* Geba|strong=\"H1387\"* and|strong=\"H3063\"* Mizpah|strong=\"H4709\"* with|strong=\"H4428\"* them|strong=\"H3947\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H5921\"* that|strong=\"H7200\"* time|strong=\"H6256\"* Hanani|strong=\"H2607\"* the|strong=\"H5921\"* seer|strong=\"H7200\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H3651\"* to|strong=\"H3068\"* him|strong=\"H5921\"*, “Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H3068\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria, and|strong=\"H3063\"* have|strong=\"H3068\"* not|strong=\"H3808\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, therefore|strong=\"H3651\"* the|strong=\"H5921\"* army|strong=\"H2426\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria has|strong=\"H3068\"* escaped|strong=\"H4422\"* out|strong=\"H7200\"* of|strong=\"H4428\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Weren’t the|strong=\"H5921\"* Ethiopians|strong=\"H3569\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Lubim|strong=\"H3864\"* a|strong=\"H3068\"* huge|strong=\"H7230\"* army|strong=\"H2428\"*, with|strong=\"H3068\"* chariots|strong=\"H7393\"* and|strong=\"H3068\"* exceedingly|strong=\"H3966\"* many|strong=\"H7230\"* horsemen|strong=\"H6571\"*? Yet|strong=\"H3068\"*, because|strong=\"H5921\"* you|strong=\"H5414\"* relied|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* run|strong=\"H5869\"* back|strong=\"H7751\"* and|strong=\"H3068\"* forth|strong=\"H7751\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, to|strong=\"H3068\"* show|strong=\"H2388\"* himself|strong=\"H3824\"* strong|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* behalf|strong=\"H5921\"* of|strong=\"H3068\"* them|strong=\"H5921\"* whose|strong=\"H3605\"* heart|strong=\"H3824\"* is|strong=\"H3068\"* perfect|strong=\"H8003\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*. You|strong=\"H3588\"* have|strong=\"H3426\"* done|strong=\"H5528\"* foolishly|strong=\"H5528\"* in|strong=\"H5921\"* this|strong=\"H2063\"*; for|strong=\"H3588\"* from|strong=\"H5921\"* now|strong=\"H6258\"* on|strong=\"H5921\"* you|strong=\"H3588\"* will|strong=\"H3068\"* have|strong=\"H3426\"* wars|strong=\"H4421\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5414\"* Asa was|strong=\"H1931\"* angry|strong=\"H3707\"* with|strong=\"H5973\"* the|strong=\"H5921\"* seer|strong=\"H7200\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prison|strong=\"H1004\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H5921\"* a|strong=\"H3068\"* rage|strong=\"H2197\"* with|strong=\"H5973\"* him|strong=\"H5414\"* because|strong=\"H3588\"* of|strong=\"H1004\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*. Asa oppressed|strong=\"H7533\"* some|strong=\"H4480\"* of|strong=\"H1004\"* the|strong=\"H5921\"* people|strong=\"H5971\"* at|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H1931\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Asa, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H8141\"* the|strong=\"H3588\"* thirty-ninth|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H3068\"* his|strong=\"H3068\"* reign|strong=\"H4438\"*, Asa was|strong=\"H3068\"* diseased|strong=\"H2456\"* in|strong=\"H8141\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*. His|strong=\"H3068\"* disease|strong=\"H2483\"* was|strong=\"H3068\"* exceedingly|strong=\"H4605\"* great; yet|strong=\"H3588\"* in|strong=\"H8141\"* his|strong=\"H3068\"* disease|strong=\"H2483\"* he|strong=\"H3588\"* didn’t seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3588\"* just|strong=\"H1571\"* the|strong=\"H3588\"* physicians|strong=\"H7495\"*." + }, + { + "verseNum": 13, + "text": "Asa slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H4191\"* fathers, and|strong=\"H8141\"* died|strong=\"H4191\"* in|strong=\"H8141\"* the|strong=\"H5973\"* forty-first year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H4191\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5704\"* buried|strong=\"H6912\"* him|strong=\"H6912\"* in|strong=\"H6912\"* his|strong=\"H1732\"* own tomb|strong=\"H6913\"*, which|strong=\"H5892\"* he|strong=\"H5704\"* had|strong=\"H1732\"* dug|strong=\"H3738\"* out|strong=\"H5704\"* for|strong=\"H5704\"* himself in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, and|strong=\"H1419\"* laid|strong=\"H7901\"* him|strong=\"H6912\"* in|strong=\"H6912\"* the|strong=\"H5704\"* bed|strong=\"H4904\"* which|strong=\"H5892\"* was|strong=\"H1732\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* sweet|strong=\"H1314\"* odors and|strong=\"H1419\"* various kinds|strong=\"H2177\"* of|strong=\"H5892\"* spices|strong=\"H1314\"* prepared|strong=\"H3738\"* by|strong=\"H5892\"* the|strong=\"H5704\"* perfumers’ art|strong=\"H4639\"*; and|strong=\"H1419\"* they|strong=\"H5704\"* made|strong=\"H4639\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* fire|strong=\"H8316\"* for|strong=\"H5704\"* him|strong=\"H6912\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*, and|strong=\"H1121\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* placed|strong=\"H5414\"* forces|strong=\"H2428\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* set|strong=\"H5414\"* garrisons|strong=\"H5333\"* in|strong=\"H5892\"* the|strong=\"H3605\"* land of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5892\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Ephraim, which|strong=\"H5892\"* Asa his|strong=\"H3605\"* father had|strong=\"H3063\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* with|strong=\"H5973\"* Jehoshaphat|strong=\"H3092\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3588\"* first|strong=\"H7223\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* his|strong=\"H3068\"* father David|strong=\"H1732\"*, and|strong=\"H1980\"* didn’t seek|strong=\"H1875\"* the|strong=\"H3588\"* Baals|strong=\"H1168\"*," + }, + { + "verseNum": 4, + "text": "but|strong=\"H3588\"* sought|strong=\"H1875\"* the|strong=\"H3588\"* God|strong=\"H3808\"* of|strong=\"H4639\"* his|strong=\"H3478\"* father, and|strong=\"H1980\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3478\"* commandments|strong=\"H4687\"*, and|strong=\"H1980\"* not|strong=\"H3808\"* in|strong=\"H1980\"* the|strong=\"H3588\"* ways of|strong=\"H4639\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* established|strong=\"H3559\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* in|strong=\"H3068\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*. All|strong=\"H3605\"* Judah|strong=\"H3063\"* brought|strong=\"H5414\"* tribute|strong=\"H4503\"* to|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* had|strong=\"H3068\"* riches|strong=\"H6239\"* and|strong=\"H3063\"* honor|strong=\"H3519\"* in|strong=\"H3068\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "His|strong=\"H3068\"* heart|strong=\"H3820\"* was|strong=\"H3068\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"* in|strong=\"H3068\"* the|strong=\"H3068\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Furthermore|strong=\"H5750\"*, he|strong=\"H3068\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* the|strong=\"H3068\"* Asherah poles out|strong=\"H5493\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H3063\"* in|strong=\"H8141\"* the|strong=\"H7971\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H7971\"* reign|strong=\"H4427\"* he|strong=\"H8141\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* princes|strong=\"H8269\"*, even Ben Hail, Obadiah|strong=\"H5662\"*, Zechariah|strong=\"H2148\"*, Nethanel|strong=\"H5417\"*, and|strong=\"H3063\"* Micaiah|strong=\"H4322\"*, to|strong=\"H7971\"* teach|strong=\"H3925\"* in|strong=\"H8141\"* the|strong=\"H7971\"* cities|strong=\"H5892\"* of|strong=\"H8141\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H3548\"* with|strong=\"H5973\"* them Levites|strong=\"H3881\"*, even Shemaiah|strong=\"H8098\"*, Nethaniah|strong=\"H5418\"*, Zebadiah|strong=\"H2069\"*, Asahel|strong=\"H6214\"*, Shemiramoth|strong=\"H8070\"*, Jehonathan|strong=\"H3083\"*, Adonijah, Tobijah|strong=\"H2900\"*, and|strong=\"H3548\"* Tobadonijah|strong=\"H2899\"*, the|strong=\"H5973\"* Levites|strong=\"H3881\"*; and|strong=\"H3548\"* with|strong=\"H5973\"* them Elishama and|strong=\"H3548\"* Jehoram|strong=\"H3088\"*, the|strong=\"H5973\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3068\"* taught|strong=\"H3925\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"*, having the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* with|strong=\"H5973\"* them|strong=\"H3925\"*. They|strong=\"H3068\"* went|strong=\"H3063\"* about|strong=\"H5437\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* taught|strong=\"H3925\"* among|strong=\"H5973\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* fell|strong=\"H1961\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* lands that|strong=\"H3605\"* were|strong=\"H1961\"* around|strong=\"H5439\"* Judah|strong=\"H3063\"*, so|strong=\"H1961\"* that|strong=\"H3605\"* they|strong=\"H3068\"* made|strong=\"H1961\"* no|strong=\"H3808\"* war|strong=\"H3898\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"*." + }, + { + "verseNum": 11, + "text": "Some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* Philistines|strong=\"H6430\"* brought|strong=\"H6430\"* Jehoshaphat|strong=\"H3092\"* presents|strong=\"H4503\"* and|strong=\"H3967\"* silver|strong=\"H3701\"* for|strong=\"H3701\"* tribute|strong=\"H4503\"*. The|strong=\"H4480\"* Arabians|strong=\"H6163\"* also|strong=\"H1571\"* brought|strong=\"H6430\"* him|strong=\"H4480\"* flocks|strong=\"H6629\"*: seven|strong=\"H7651\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* rams and|strong=\"H3967\"* seven|strong=\"H7651\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* male|strong=\"H8495\"* goats|strong=\"H8495\"*." + }, + { + "verseNum": 12, + "text": "Jehoshaphat|strong=\"H3092\"* grew|strong=\"H1980\"* great|strong=\"H1432\"* exceedingly|strong=\"H4605\"*; and|strong=\"H1980\"* he|strong=\"H5704\"* built|strong=\"H1129\"* fortresses|strong=\"H1003\"* and|strong=\"H1980\"* store|strong=\"H4543\"* cities|strong=\"H5892\"* in|strong=\"H1980\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3389\"* had|strong=\"H1961\"* many|strong=\"H7227\"* works|strong=\"H4399\"* in|strong=\"H5892\"* the|strong=\"H1961\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* men|strong=\"H1368\"* of|strong=\"H5892\"* war|strong=\"H4421\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H5892\"* valor|strong=\"H2428\"*, in|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 14, + "text": "This|strong=\"H1004\"* was|strong=\"H1004\"* the|strong=\"H5973\"* numbering of|strong=\"H1004\"* them according to|strong=\"H1004\"* their|strong=\"H5973\"* fathers’ houses|strong=\"H1004\"*: From|strong=\"H5973\"* Judah|strong=\"H3063\"*, the|strong=\"H5973\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* thousands: Adnah|strong=\"H5734\"* the|strong=\"H5973\"* captain|strong=\"H8269\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5973\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1004\"* valor|strong=\"H2428\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* Jehohanan|strong=\"H3076\"* the|strong=\"H5921\"* captain|strong=\"H8269\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H3068\"* him|strong=\"H5921\"* Amasiah|strong=\"H6007\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*, who|strong=\"H3068\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* himself|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*." + }, + { + "verseNum": 17, + "text": "From|strong=\"H4480\"* Benjamin|strong=\"H1144\"*: Eliada, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H4480\"* valor|strong=\"H2428\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5973\"* two|strong=\"H4480\"* hundred|strong=\"H3967\"* thousand armed|strong=\"H4043\"* with|strong=\"H5973\"* bow|strong=\"H7198\"* and|strong=\"H3967\"* shield|strong=\"H4043\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H3967\"* next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* Jehozabad|strong=\"H3075\"*, and|strong=\"H3967\"* with|strong=\"H5973\"* him|strong=\"H5921\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* thousand ready and|strong=\"H3967\"* prepared|strong=\"H2502\"* for|strong=\"H5921\"* war|strong=\"H6635\"*." + }, + { + "verseNum": 19, + "text": "These|strong=\"H3605\"* were|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* waited|strong=\"H8334\"* on|strong=\"H5892\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, in|strong=\"H4428\"* addition to|strong=\"H5414\"* those|strong=\"H3605\"* whom the|strong=\"H3605\"* king|strong=\"H4428\"* put|strong=\"H5414\"* in|strong=\"H4428\"* the|strong=\"H3605\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Jehoshaphat|strong=\"H3092\"* had|strong=\"H1961\"* riches|strong=\"H6239\"* and|strong=\"H6239\"* honor|strong=\"H3519\"* in|strong=\"H1961\"* abundance|strong=\"H7230\"*; and|strong=\"H6239\"* he allied|strong=\"H2859\"* himself with|strong=\"H2859\"* Ahab." + }, + { + "verseNum": 2, + "text": "After|strong=\"H7093\"* some|strong=\"H7093\"* years|strong=\"H8141\"*, he|strong=\"H8141\"* went|strong=\"H5927\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Ahab to|strong=\"H3381\"* Samaria|strong=\"H8111\"*. Ahab killed|strong=\"H2076\"* sheep|strong=\"H6629\"* and|strong=\"H5971\"* cattle|strong=\"H1241\"* for|strong=\"H5971\"* him|strong=\"H5973\"* in|strong=\"H8141\"* abundance|strong=\"H7230\"*, and|strong=\"H5971\"* for|strong=\"H5971\"* the|strong=\"H5927\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H5971\"* moved|strong=\"H5496\"* him|strong=\"H5973\"* to|strong=\"H3381\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* him|strong=\"H5973\"* to|strong=\"H3381\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 3, + "text": "Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, “Will|strong=\"H4428\"* you|strong=\"H5973\"* go|strong=\"H3212\"* with|strong=\"H5973\"* me|strong=\"H5973\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?”" + }, + { + "verseNum": 4, + "text": "Jehoshaphat|strong=\"H3092\"* said|strong=\"H1697\"* to|strong=\"H3478\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, “Please|strong=\"H4994\"* inquire|strong=\"H1875\"* first|strong=\"H3117\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* gathered|strong=\"H6908\"* the|strong=\"H5414\"* prophets|strong=\"H5030\"* together|strong=\"H6908\"*, four hundred|strong=\"H3967\"* men|strong=\"H3478\"*, and|strong=\"H3967\"* said to|strong=\"H3478\"* them|strong=\"H5414\"*, “Shall|strong=\"H3478\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3478\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* shall|strong=\"H3478\"* I|strong=\"H5414\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* said, “Isn’t there|strong=\"H3068\"* here|strong=\"H6311\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* besides|strong=\"H5750\"*, that|strong=\"H3068\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* him|strong=\"H1875\"*?”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said|strong=\"H3651\"* to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “There|strong=\"H3117\"* is|strong=\"H3068\"* yet|strong=\"H5750\"* one|strong=\"H3605\"* man|strong=\"H1121\"* by|strong=\"H5921\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* may|strong=\"H3068\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* never prophesies|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H8130\"*, but|strong=\"H3588\"* always|strong=\"H3605\"* evil|strong=\"H7451\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* Micaiah|strong=\"H4321\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imla|strong=\"H3229\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H4428\"* the|strong=\"H7121\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* called|strong=\"H7121\"* an|strong=\"H7121\"* officer|strong=\"H5631\"*, and|strong=\"H1121\"* said|strong=\"H7121\"*, “Get Micaiah|strong=\"H4318\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imla|strong=\"H3229\"* quickly|strong=\"H4116\"*.”" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* each|strong=\"H3605\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, arrayed|strong=\"H3847\"* in|strong=\"H3427\"* their|strong=\"H3605\"* robes, and|strong=\"H3063\"* they|strong=\"H5921\"* were|strong=\"H3478\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* an|strong=\"H6440\"* open|strong=\"H6440\"* place|strong=\"H1637\"* at|strong=\"H3427\"* the|strong=\"H3605\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* were|strong=\"H3478\"* prophesying|strong=\"H5012\"* before|strong=\"H6440\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* iron|strong=\"H1270\"* and|strong=\"H1121\"* said, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘With|strong=\"H3068\"* these|strong=\"H6213\"* you|strong=\"H5704\"* shall|strong=\"H3068\"* push|strong=\"H5055\"* the|strong=\"H3541\"* Syrians, until|strong=\"H5704\"* they|strong=\"H3068\"* are|strong=\"H1121\"* consumed|strong=\"H3615\"*.’”" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* prophesied|strong=\"H5012\"* so|strong=\"H3651\"*, saying, “Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*, and|strong=\"H3068\"* prosper|strong=\"H6743\"*; for|strong=\"H3027\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5927\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 12, + "text": "The|strong=\"H7121\"* messenger|strong=\"H4397\"* who|strong=\"H5030\"* went|strong=\"H1980\"* to|strong=\"H1696\"* call|strong=\"H7121\"* Micaiah|strong=\"H4321\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, saying|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, the|strong=\"H7121\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H7121\"* prophets|strong=\"H5030\"* declare|strong=\"H1696\"* good|strong=\"H2896\"* to|strong=\"H1696\"* the|strong=\"H7121\"* king|strong=\"H4428\"* with|strong=\"H1980\"* one|strong=\"H2896\"* mouth|strong=\"H6310\"*. Let|strong=\"H4994\"* your|strong=\"H1961\"* word|strong=\"H1697\"* therefore|strong=\"H1961\"*, please|strong=\"H4994\"* be|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H2896\"* of|strong=\"H4428\"* theirs|strong=\"H1992\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* good|strong=\"H2896\"*.”" + }, + { + "verseNum": 13, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H1696\"* what|strong=\"H1696\"* my|strong=\"H3068\"* God|strong=\"H3068\"* says|strong=\"H1696\"*.”" + }, + { + "verseNum": 14, + "text": "When|strong=\"H5927\"* he|strong=\"H5414\"* had|strong=\"H4428\"* come|strong=\"H5927\"* to|strong=\"H3212\"* the|strong=\"H5414\"* king|strong=\"H4428\"*, the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H3212\"* him|strong=\"H5414\"*, “Micaiah|strong=\"H4318\"*, shall|strong=\"H4428\"* we|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"* to|strong=\"H3212\"* battle|strong=\"H4421\"*, or|strong=\"H3027\"* shall|strong=\"H4428\"* I|strong=\"H5414\"* forbear|strong=\"H2308\"*?”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3068\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H4428\"*, “How|strong=\"H4100\"* many|strong=\"H4100\"* times|strong=\"H6471\"* shall|strong=\"H3068\"* I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"* that|strong=\"H3068\"* you|strong=\"H5704\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* nothing|strong=\"H3808\"* but|strong=\"H7535\"* the|strong=\"H3068\"* truth|strong=\"H3808\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*?”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* said, “I|strong=\"H5921\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* scattered|strong=\"H6327\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* sheep|strong=\"H6629\"* that|strong=\"H7200\"* have|strong=\"H3068\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*. Yahweh|strong=\"H3068\"* said, ‘These|strong=\"H3605\"* have|strong=\"H3068\"* no|strong=\"H3808\"* master. Let|strong=\"H3808\"* them|strong=\"H5921\"* each|strong=\"H3605\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H3605\"* house|strong=\"H1004\"* in|strong=\"H5921\"* peace|strong=\"H7965\"*.’”" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “Didn’t I|strong=\"H3588\"* tell you|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* good|strong=\"H2896\"* concerning|strong=\"H5921\"* me|strong=\"H5921\"*, but|strong=\"H3588\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 18, + "text": "Micaiah said|strong=\"H1697\"*, “Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*: I|strong=\"H5921\"* saw|strong=\"H7200\"* Yahweh|strong=\"H3068\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H3605\"* throne|strong=\"H3678\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* standing|strong=\"H5975\"* on|strong=\"H5921\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3605\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said, ‘Who|strong=\"H4310\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* Ahab king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* fall|strong=\"H5307\"* at|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*?’ One|strong=\"H2088\"* spoke saying in|strong=\"H3478\"* this|strong=\"H2088\"* way|strong=\"H2088\"*, and|strong=\"H3478\"* another|strong=\"H2088\"* saying in|strong=\"H3478\"* that|strong=\"H3068\"* way|strong=\"H2088\"*." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* spirit|strong=\"H7307\"* came|strong=\"H3318\"* out|strong=\"H3318\"*, stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H3318\"*, ‘I|strong=\"H4100\"* will|strong=\"H3068\"* entice|strong=\"H6601\"* him|strong=\"H6440\"*.’" + }, + { + "verseNum": 21, + "text": "“He|strong=\"H3651\"* said|strong=\"H3651\"*, ‘I|strong=\"H3651\"* will|strong=\"H1961\"* go|strong=\"H3318\"*, and|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H6213\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H7307\"* all|strong=\"H3605\"* his|strong=\"H3605\"* prophets|strong=\"H5030\"*.’" + }, + { + "verseNum": 22, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* spirit|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* these|strong=\"H1696\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* evil|strong=\"H7451\"* concerning|strong=\"H5921\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Chenaanah|strong=\"H3668\"* came|strong=\"H5066\"* near|strong=\"H5066\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Micaiah|strong=\"H4321\"* on|strong=\"H5921\"* the|strong=\"H5921\"* cheek|strong=\"H3895\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Which|strong=\"H3068\"* way|strong=\"H1870\"* did|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* go|strong=\"H5674\"* from|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*?”" + }, + { + "verseNum": 24, + "text": "Micaiah|strong=\"H4321\"* said, “Behold|strong=\"H2005\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* see|strong=\"H7200\"* on|strong=\"H3117\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, when|strong=\"H3117\"* you|strong=\"H3117\"* go into|strong=\"H7200\"* an|strong=\"H7200\"* inner|strong=\"H2315\"* room|strong=\"H2315\"* to|strong=\"H3117\"* hide|strong=\"H2244\"* yourself.”" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* said, “Take|strong=\"H3947\"* Micaiah|strong=\"H4321\"*, and|strong=\"H1121\"* carry|strong=\"H3947\"* him|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* Amon the|strong=\"H3947\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* to|strong=\"H7725\"* Joash|strong=\"H3101\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H7725\"* say|strong=\"H7725\"*, ‘The|strong=\"H3541\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, “Put|strong=\"H7760\"* this|strong=\"H2088\"* fellow in|strong=\"H1004\"* the|strong=\"H3541\"* prison|strong=\"H1004\"*, and|strong=\"H7725\"* feed him|strong=\"H7725\"* with|strong=\"H1004\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"* and|strong=\"H7725\"* with|strong=\"H1004\"* water|strong=\"H4325\"* of|strong=\"H4428\"* affliction|strong=\"H3906\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* return|strong=\"H7725\"* in|strong=\"H1004\"* peace|strong=\"H7965\"*.”’”" + }, + { + "verseNum": 27, + "text": "Micaiah|strong=\"H4321\"* said|strong=\"H1696\"*, “If you|strong=\"H3605\"* return|strong=\"H7725\"* at|strong=\"H3068\"* all|strong=\"H3605\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* by|strong=\"H3068\"* me|strong=\"H7725\"*.” He|strong=\"H3068\"* said|strong=\"H1696\"*, “Listen|strong=\"H8085\"*, you|strong=\"H3605\"* people|strong=\"H5971\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3605\"*!”" + }, + { + "verseNum": 28, + "text": "So|strong=\"H5927\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Jehoshaphat|strong=\"H3092\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* Jehoshaphat|strong=\"H3092\"*, “I|strong=\"H3478\"* will|strong=\"H4428\"* disguise|strong=\"H2664\"* myself, and|strong=\"H3478\"* go|strong=\"H4428\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*; but|strong=\"H4428\"* you|strong=\"H3847\"* put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3478\"* robes.” So the|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* disguised|strong=\"H2664\"* himself; and|strong=\"H3478\"* they|strong=\"H3478\"* went|strong=\"H3478\"* into the|strong=\"H3092\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 30, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria had|strong=\"H3478\"* commanded|strong=\"H6680\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* his|strong=\"H6680\"* chariots|strong=\"H7393\"*, saying, “Don’t fight|strong=\"H3898\"* with|strong=\"H3898\"* small|strong=\"H6996\"* nor|strong=\"H3808\"* great|strong=\"H1419\"*, except|strong=\"H3588\"* only|strong=\"H3588\"* with|strong=\"H3898\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 31, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* Jehoshaphat|strong=\"H3092\"*, they|strong=\"H1992\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*!” Therefore|strong=\"H5921\"* they|strong=\"H1992\"* turned|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3478\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. But|strong=\"H1961\"* Jehoshaphat|strong=\"H3092\"* cried|strong=\"H2199\"* out|strong=\"H2199\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* helped|strong=\"H5826\"* him|strong=\"H5921\"*; and|strong=\"H3478\"* God|strong=\"H3068\"* moved|strong=\"H5496\"* them|strong=\"H1992\"* to|strong=\"H3478\"* depart from|strong=\"H4480\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 32, + "text": "When|strong=\"H3588\"* the|strong=\"H7200\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H7200\"* chariots|strong=\"H7393\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, they|strong=\"H3588\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H7725\"* pursuing him|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "A|strong=\"H3068\"* certain man drew|strong=\"H4900\"* his|strong=\"H5221\"* bow|strong=\"H7198\"* at|strong=\"H3478\"* random|strong=\"H8537\"*, and|strong=\"H3478\"* struck|strong=\"H5221\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* between|strong=\"H4480\"* the|strong=\"H3588\"* joints|strong=\"H1694\"* of|strong=\"H4428\"* the|strong=\"H3588\"* armor|strong=\"H8302\"*. Therefore|strong=\"H3588\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3588\"* driver|strong=\"H7395\"* of|strong=\"H4428\"* the|strong=\"H3588\"* chariot|strong=\"H7395\"*, “Turn|strong=\"H2015\"* around|strong=\"H3027\"* and|strong=\"H3478\"* carry|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3588\"* battle|strong=\"H4264\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* severely|strong=\"H2470\"* wounded|strong=\"H5221\"*.”" + }, + { + "verseNum": 34, + "text": "The|strong=\"H3117\"* battle|strong=\"H4421\"* increased|strong=\"H5927\"* that|strong=\"H3117\"* day|strong=\"H3117\"*. However, the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* propped|strong=\"H5975\"* himself|strong=\"H1931\"* up|strong=\"H5927\"* in|strong=\"H3478\"* his|strong=\"H3478\"* chariot|strong=\"H4818\"* against|strong=\"H5927\"* the|strong=\"H3117\"* Syrians until|strong=\"H5704\"* the|strong=\"H3117\"* evening|strong=\"H6153\"*; and|strong=\"H3478\"* at|strong=\"H3478\"* about|strong=\"H1961\"* sunset|strong=\"H8121\"*, he|strong=\"H1931\"* died|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"* in|strong=\"H1004\"* peace|strong=\"H7965\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Jehu|strong=\"H3058\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"* the|strong=\"H6440\"* seer|strong=\"H2374\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* King|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*, “Should|strong=\"H3068\"* you|strong=\"H6440\"* help|strong=\"H5826\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*, and|strong=\"H1121\"* love those|strong=\"H5921\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* Yahweh|strong=\"H3068\"*? Because|strong=\"H5921\"* of|strong=\"H1121\"* this|strong=\"H2063\"*, wrath|strong=\"H7110\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H6440\"* from|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Nevertheless|strong=\"H3588\"* there|strong=\"H4672\"* are|strong=\"H1697\"* good|strong=\"H2896\"* things|strong=\"H1697\"* found|strong=\"H4672\"* in|strong=\"H4672\"* you|strong=\"H3588\"*, in|strong=\"H4672\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H4672\"* put|strong=\"H1197\"* away|strong=\"H1197\"* the|strong=\"H3588\"* Asheroth out|strong=\"H4672\"* of|strong=\"H1697\"* the|strong=\"H3588\"* land, and|strong=\"H1697\"* have|strong=\"H4672\"* set|strong=\"H3559\"* your|strong=\"H3588\"* heart|strong=\"H3824\"* to|strong=\"H1697\"* seek|strong=\"H1875\"* God.”" + }, + { + "verseNum": 4, + "text": "Jehoshaphat|strong=\"H3092\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* again|strong=\"H7725\"* among|strong=\"H3427\"* the|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H7725\"* Beersheba to|strong=\"H5704\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim, and|strong=\"H3068\"* brought|strong=\"H3318\"* them|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* set|strong=\"H5975\"* judges|strong=\"H8199\"* in|strong=\"H5892\"* the|strong=\"H3605\"* land throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, city|strong=\"H5892\"* by|strong=\"H5975\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* the|strong=\"H7200\"* judges|strong=\"H8199\"*, “Consider|strong=\"H7200\"* what|strong=\"H4100\"* you|strong=\"H3588\"* do|strong=\"H6213\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* don’t judge|strong=\"H8199\"* for|strong=\"H3588\"* man|strong=\"H7200\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H7200\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* let|strong=\"H6258\"* the|strong=\"H6440\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3588\"*. Take|strong=\"H8104\"* heed|strong=\"H8104\"* and|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H5921\"*; for|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H3068\"* no|strong=\"H6213\"* iniquity|strong=\"H5766\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, nor|strong=\"H3588\"* respect|strong=\"H4856\"* of|strong=\"H3068\"* persons|strong=\"H6440\"*, nor|strong=\"H3588\"* taking|strong=\"H4727\"* of|strong=\"H3068\"* bribes|strong=\"H7810\"*.”" + }, + { + "verseNum": 8, + "text": "Moreover|strong=\"H1571\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* Jehoshaphat|strong=\"H3092\"* appointed|strong=\"H5975\"* certain Levites|strong=\"H3881\"*, priests|strong=\"H3548\"*, and|strong=\"H3478\"* heads|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* to|strong=\"H7725\"* give|strong=\"H7725\"* judgment|strong=\"H4941\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* for|strong=\"H3068\"* controversies|strong=\"H7379\"*. They|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"*, saying, “You|strong=\"H6680\"* shall|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, faithfully, and|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 10, + "text": "Whenever|strong=\"H3605\"* any|strong=\"H3605\"* controversy|strong=\"H7379\"* comes|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"* from|strong=\"H5921\"* your|strong=\"H3068\"* brothers who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, between|strong=\"H3427\"* blood|strong=\"H1818\"* and|strong=\"H3068\"* blood|strong=\"H1818\"*, between|strong=\"H3427\"* law|strong=\"H8451\"* and|strong=\"H3068\"* commandment|strong=\"H4687\"*, statutes|strong=\"H2706\"* and|strong=\"H3068\"* ordinances|strong=\"H4941\"*, you|strong=\"H3605\"* must|strong=\"H1818\"* warn|strong=\"H2094\"* them|strong=\"H5921\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* guilty toward|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* so|strong=\"H6213\"* wrath|strong=\"H7110\"* come|strong=\"H1961\"* on|strong=\"H5921\"* you|strong=\"H3605\"* and|strong=\"H3068\"* on|strong=\"H5921\"* your|strong=\"H3068\"* brothers. Do|strong=\"H6213\"* this|strong=\"H6213\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* guilty." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, Amariah the|strong=\"H3605\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"* is|strong=\"H3068\"* over|strong=\"H5921\"* you|strong=\"H6440\"* in|strong=\"H5921\"* all|strong=\"H3605\"* matters|strong=\"H1697\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*; and|strong=\"H1121\"* Zebadiah|strong=\"H2069\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*, the|strong=\"H3605\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s matters|strong=\"H1697\"*. Also|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* officers|strong=\"H7860\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Deal|strong=\"H6213\"* courageously|strong=\"H2388\"*, and|strong=\"H1121\"* may|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H3605\"* good|strong=\"H2896\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* this|strong=\"H5973\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H5921\"* some of|strong=\"H1121\"* the|strong=\"H5921\"* Ammonites|strong=\"H5984\"*, came|strong=\"H1961\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"* to|strong=\"H1961\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H2009\"* some|strong=\"H7227\"* came who|strong=\"H1931\"* told|strong=\"H5046\"* Jehoshaphat|strong=\"H3092\"*, saying, “A|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"* is|strong=\"H1931\"* coming|strong=\"H2009\"* against|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* from|strong=\"H5921\"* Syria. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* are|strong=\"H7227\"* in|strong=\"H5921\"* Hazazon Tamar” (that|strong=\"H1931\"* is|strong=\"H1931\"*, En Gedi)." + }, + { + "verseNum": 3, + "text": "Jehoshaphat|strong=\"H3092\"* was|strong=\"H3068\"* alarmed, and|strong=\"H3063\"* set|strong=\"H5414\"* himself|strong=\"H6440\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 4, + "text": "Judah|strong=\"H3063\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* help from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3068\"* came|strong=\"H3068\"* out|strong=\"H1245\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Jehoshaphat|strong=\"H3092\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* new|strong=\"H2319\"* court|strong=\"H2691\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H3068\"* he|strong=\"H1931\"* said, “Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* our|strong=\"H3068\"* fathers, aren’t you|strong=\"H3605\"* God|strong=\"H3068\"* in|strong=\"H3068\"* heaven|strong=\"H8064\"*? Aren’t you|strong=\"H3605\"* ruler|strong=\"H4910\"* over|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*? Power|strong=\"H3027\"* and|strong=\"H3068\"* might|strong=\"H1369\"* are|strong=\"H1471\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, so|strong=\"H3808\"* that|strong=\"H3605\"* no|strong=\"H3808\"* one|strong=\"H3605\"* is|strong=\"H3068\"* able|strong=\"H3027\"* to|strong=\"H3068\"* withstand|strong=\"H3320\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "Didn’t you|strong=\"H5414\"*, our|strong=\"H5414\"* God|strong=\"H5414\"*, drive|strong=\"H3423\"* out|strong=\"H3423\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* land|strong=\"H6440\"* before|strong=\"H6440\"* your|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H6440\"* offspring|strong=\"H2233\"*+ 20:7 or, seed* of|strong=\"H3427\"* Abraham your|strong=\"H5414\"* friend forever|strong=\"H5769\"*?" + }, + { + "verseNum": 8, + "text": "They|strong=\"H8034\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H8034\"*, and|strong=\"H3427\"* have|strong=\"H1129\"* built|strong=\"H1129\"* you|strong=\"H1129\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"* in|strong=\"H3427\"* it|strong=\"H8034\"* for|strong=\"H3427\"* your|strong=\"H1129\"* name|strong=\"H8034\"*, saying," + }, + { + "verseNum": 9, + "text": "‘If|strong=\"H3588\"* evil|strong=\"H7451\"* comes|strong=\"H6440\"* on|strong=\"H5921\"* us|strong=\"H5921\"*—the|strong=\"H6440\"* sword|strong=\"H2719\"*, judgment|strong=\"H8196\"*, pestilence|strong=\"H1698\"*, or|strong=\"H8085\"* famine|strong=\"H7458\"*—we|strong=\"H3068\"* will|strong=\"H2719\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* before|strong=\"H6440\"* you|strong=\"H3588\"* (for|strong=\"H3588\"* your|strong=\"H5921\"* name|strong=\"H8034\"* is|strong=\"H2088\"* in|strong=\"H5921\"* this|strong=\"H2088\"* house|strong=\"H1004\"*), and|strong=\"H1004\"* cry|strong=\"H2199\"* to|strong=\"H5921\"* you|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H5921\"* affliction|strong=\"H6869\"*, and|strong=\"H1004\"* you|strong=\"H3588\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* and|strong=\"H1004\"* save|strong=\"H3467\"*.’" + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, whom|strong=\"H3588\"* you|strong=\"H3588\"* would|strong=\"H3478\"* not|strong=\"H3808\"* let|strong=\"H5414\"* Israel|strong=\"H3478\"* invade when|strong=\"H3588\"* they|strong=\"H3588\"* came|strong=\"H3478\"* out|strong=\"H5414\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* didn’t destroy|strong=\"H8045\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 11, + "text": "behold|strong=\"H2009\"*, how|strong=\"H2009\"* they|strong=\"H1992\"* reward|strong=\"H1580\"* us|strong=\"H5921\"*, to|strong=\"H5921\"* come|strong=\"H3423\"* to|strong=\"H5921\"* cast|strong=\"H3423\"* us|strong=\"H5921\"* out|strong=\"H3423\"* of|strong=\"H5921\"* your|strong=\"H5921\"* possession|strong=\"H3423\"*, which|strong=\"H1992\"* you|strong=\"H5921\"* have|strong=\"H3423\"* given|strong=\"H3423\"* us|strong=\"H5921\"* to|strong=\"H5921\"* inherit|strong=\"H3423\"*." + }, + { + "verseNum": 12, + "text": "Our|strong=\"H5921\"* God|strong=\"H3808\"*, will|strong=\"H5869\"* you|strong=\"H3588\"* not|strong=\"H3808\"* judge|strong=\"H8199\"* them|strong=\"H5921\"*? For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5869\"* no|strong=\"H3808\"* might|strong=\"H3581\"* against|strong=\"H5921\"* this|strong=\"H2088\"* great|strong=\"H7227\"* company|strong=\"H1995\"* that|strong=\"H3588\"* comes|strong=\"H6440\"* against|strong=\"H5921\"* us|strong=\"H5921\"*. We|strong=\"H3588\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* to|strong=\"H5921\"* do|strong=\"H6213\"*, but|strong=\"H3588\"* our|strong=\"H5921\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* Judah|strong=\"H3063\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* wives, and|strong=\"H1121\"* their|strong=\"H3605\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Jahaziel|strong=\"H3166\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeiel|strong=\"H3273\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H5921\"* Levite|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3063\"* he|strong=\"H3588\"* said, “Listen|strong=\"H7181\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* you|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* you|strong=\"H3588\"*, King|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, ‘Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, and|strong=\"H3063\"* don’t be|strong=\"H3808\"* dismayed|strong=\"H2865\"* because|strong=\"H3588\"* of|strong=\"H4428\"* this|strong=\"H2088\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* is|strong=\"H3068\"* not|strong=\"H3808\"* yours, but|strong=\"H3588\"* God|strong=\"H3068\"*’s." + }, + { + "verseNum": 16, + "text": "Tomorrow|strong=\"H4279\"*, go|strong=\"H5927\"* down|strong=\"H3381\"* against|strong=\"H5921\"* them|strong=\"H5921\"*. Behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H6440\"* coming|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H6440\"* ascent|strong=\"H4608\"* of|strong=\"H6440\"* Ziz|strong=\"H6732\"*. You|strong=\"H6440\"* will|strong=\"H5158\"* find|strong=\"H4672\"* them|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H6440\"* end|strong=\"H5490\"* of|strong=\"H6440\"* the|strong=\"H6440\"* valley|strong=\"H5158\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* Jeruel|strong=\"H3385\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* not|strong=\"H3808\"* need to|strong=\"H3318\"* fight|strong=\"H3898\"* this|strong=\"H2063\"* battle|strong=\"H3898\"*. Set|strong=\"H5975\"* yourselves|strong=\"H3320\"*, stand|strong=\"H5975\"* still|strong=\"H5975\"*, and|strong=\"H3063\"* see|strong=\"H7200\"* the|strong=\"H6440\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"*, O|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, nor|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5973\"* them|strong=\"H6440\"* tomorrow|strong=\"H4279\"*, for|strong=\"H6440\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H6440\"*.’”" + }, + { + "verseNum": 18, + "text": "Jehoshaphat|strong=\"H3092\"* bowed|strong=\"H7812\"* his|strong=\"H3605\"* head|strong=\"H6915\"* with|strong=\"H3068\"* his|strong=\"H3605\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, worshiping|strong=\"H7812\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* Levites|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Kohathites|strong=\"H6956\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Korahites|strong=\"H7145\"*, stood|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, with|strong=\"H3068\"* an|strong=\"H6965\"* exceedingly|strong=\"H4605\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3427\"* the|strong=\"H8085\"* morning|strong=\"H1242\"* and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H8085\"* wilderness|strong=\"H4057\"* of|strong=\"H3068\"* Tekoa|strong=\"H8620\"*. As|strong=\"H3068\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, Jehoshaphat|strong=\"H3092\"* stood|strong=\"H5975\"* and|strong=\"H3063\"* said|strong=\"H8085\"*, “Listen|strong=\"H8085\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, Judah|strong=\"H3063\"* and|strong=\"H3063\"* you|strong=\"H3318\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*! Believe in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, so|strong=\"H3318\"* you|strong=\"H3318\"* will|strong=\"H3068\"* be|strong=\"H3068\"* established|strong=\"H5975\"*! Believe his|strong=\"H3068\"* prophets|strong=\"H5030\"*, so|strong=\"H3318\"* you|strong=\"H3318\"* will|strong=\"H3068\"* prosper|strong=\"H6743\"*.”" + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* taken|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H3068\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, he|strong=\"H3588\"* appointed|strong=\"H5975\"* those|strong=\"H3318\"* who|strong=\"H5971\"* were|strong=\"H5971\"* to|strong=\"H3318\"* sing|strong=\"H7891\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* give|strong=\"H3034\"* praise|strong=\"H1984\"* in|strong=\"H3068\"* holy|strong=\"H6944\"* array|strong=\"H1927\"* as|strong=\"H3068\"* they|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H5971\"*, and|strong=\"H3068\"* say, “Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 22, + "text": "When|strong=\"H6256\"* they|strong=\"H3068\"* began|strong=\"H2490\"* to|strong=\"H3068\"* sing|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* praise|strong=\"H8416\"*, Yahweh|strong=\"H3068\"* set|strong=\"H5414\"* ambushers against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H3063\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* were|strong=\"H1121\"* struck|strong=\"H5062\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* and|strong=\"H1121\"* Moab|strong=\"H4124\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* to|strong=\"H5921\"* utterly|strong=\"H2763\"* kill and|strong=\"H1121\"* destroy|strong=\"H8045\"* them|strong=\"H5921\"*. When|strong=\"H3615\"* they|strong=\"H5921\"* had|strong=\"H1121\"* finished|strong=\"H3615\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*, everyone helped|strong=\"H5826\"* to|strong=\"H5921\"* destroy|strong=\"H8045\"* each other|strong=\"H7453\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H5307\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place overlooking|strong=\"H2005\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, they|strong=\"H5921\"* looked|strong=\"H6437\"* at|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"*; and|strong=\"H3063\"* behold|strong=\"H2005\"*, they|strong=\"H5921\"* were|strong=\"H3063\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* fallen|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* earth, and|strong=\"H3063\"* there were|strong=\"H3063\"* none who|strong=\"H3063\"* escaped|strong=\"H6413\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* Jehoshaphat|strong=\"H3092\"* and|strong=\"H3117\"* his|strong=\"H1961\"* people|strong=\"H5971\"* came|strong=\"H1961\"* to|strong=\"H1961\"* take|strong=\"H1961\"* their|strong=\"H3588\"* plunder|strong=\"H7998\"*, they|strong=\"H3588\"* found|strong=\"H4672\"* among|strong=\"H4672\"* them|strong=\"H4672\"* in|strong=\"H3117\"* abundance|strong=\"H7230\"* both|strong=\"H7230\"* riches|strong=\"H7399\"* and|strong=\"H3117\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* with|strong=\"H3117\"* precious|strong=\"H2530\"* jewels|strong=\"H3627\"*, which|strong=\"H1931\"* they|strong=\"H3588\"* stripped|strong=\"H5337\"* off|strong=\"H5337\"* for|strong=\"H3588\"* themselves, more|strong=\"H7227\"* than|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H5337\"* carry|strong=\"H4853\"* away|strong=\"H5337\"*. They|strong=\"H3588\"* took|strong=\"H1961\"* plunder|strong=\"H7998\"* for|strong=\"H3588\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, it|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"* much|strong=\"H7227\"*." + }, + { + "verseNum": 26, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"*, they|strong=\"H3588\"* assembled|strong=\"H6950\"* themselves|strong=\"H7121\"* in|strong=\"H5921\"* Beracah|strong=\"H1294\"*+ 20:26 “Beracah” means “blessing”.* Valley|strong=\"H6010\"*, for|strong=\"H3588\"* there|strong=\"H8033\"* they|strong=\"H3588\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* that|strong=\"H3588\"* place|strong=\"H4725\"* was|strong=\"H3068\"* called|strong=\"H7121\"* “Beracah|strong=\"H1294\"* Valley|strong=\"H6010\"*” to|strong=\"H5704\"* this|strong=\"H3651\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H7725\"* they|strong=\"H3588\"* returned|strong=\"H7725\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H3068\"* Jehoshaphat|strong=\"H3092\"* in|strong=\"H3068\"* front of|strong=\"H3068\"* them|strong=\"H7725\"*, to|strong=\"H7725\"* go|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* with|strong=\"H3068\"* joy|strong=\"H8057\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* rejoice|strong=\"H8055\"* over|strong=\"H7218\"* their|strong=\"H3605\"* enemies|strong=\"H3389\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* stringed instruments, harps|strong=\"H3658\"*, and|strong=\"H3068\"* trumpets|strong=\"H2689\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H3068\"* God|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* countries when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* fought|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H3605\"* enemies of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 30, + "text": "So the|strong=\"H5439\"* realm|strong=\"H4438\"* of|strong=\"H4438\"* Jehoshaphat|strong=\"H3092\"* was|strong=\"H4438\"* quiet|strong=\"H8252\"*, for|strong=\"H8252\"* his|strong=\"H3092\"* God gave|strong=\"H5117\"* him|strong=\"H5117\"* rest|strong=\"H5117\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 31, + "text": "So|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"*. He|strong=\"H2568\"* was|strong=\"H8034\"* thirty-five|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began|strong=\"H3063\"* to|strong=\"H5921\"* reign|strong=\"H4427\"*. He|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H5921\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Azubah|strong=\"H5806\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Shilhi|strong=\"H7977\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H6213\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Asa his|strong=\"H3068\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* it|strong=\"H6213\"*, doing|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 33, + "text": "However the|strong=\"H5493\"* high|strong=\"H1116\"* places|strong=\"H1116\"* were|strong=\"H5971\"* not|strong=\"H3808\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H5971\"* the|strong=\"H5493\"* people|strong=\"H5971\"* had|strong=\"H5971\"* still|strong=\"H5750\"* not|strong=\"H3808\"* set|strong=\"H3559\"* their|strong=\"H3559\"* hearts|strong=\"H3824\"* on|strong=\"H3824\"* the|strong=\"H5493\"* God|strong=\"H3808\"* of|strong=\"H5971\"* their|strong=\"H3559\"* fathers." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* history of|strong=\"H1121\"* Jehu|strong=\"H3058\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hanani|strong=\"H2607\"*, which|strong=\"H1697\"* is|strong=\"H1697\"* included|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 35, + "text": "After this|strong=\"H6213\"*, Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* joined|strong=\"H2266\"* himself|strong=\"H1931\"* with|strong=\"H5973\"* Ahaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. The|strong=\"H6213\"* same|strong=\"H1931\"* did|strong=\"H6213\"* very|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 36, + "text": "He|strong=\"H6213\"* joined|strong=\"H2266\"* himself|strong=\"H6213\"* with|strong=\"H5973\"* him|strong=\"H6213\"* to|strong=\"H3212\"* make|strong=\"H6213\"* ships to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Tarshish|strong=\"H8659\"*. They|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* ships in|strong=\"H6213\"* Ezion Geber." + }, + { + "verseNum": 37, + "text": "Then|strong=\"H3068\"* Eliezer the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Dodavahu|strong=\"H1735\"* of|strong=\"H1121\"* Mareshah|strong=\"H4762\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* Jehoshaphat|strong=\"H3092\"*, saying, “Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H3068\"* joined|strong=\"H2266\"* yourself|strong=\"H5921\"* with|strong=\"H5973\"* Ahaziah, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* destroyed|strong=\"H7665\"* your|strong=\"H3068\"* works|strong=\"H4639\"*.” The|strong=\"H5921\"* ships were|strong=\"H1121\"* wrecked, so|strong=\"H3808\"* that|strong=\"H3068\"* they|strong=\"H3068\"* were|strong=\"H1121\"* not|strong=\"H3808\"* able|strong=\"H6113\"* to|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H3068\"* Tarshish|strong=\"H8659\"*." + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Jehoshaphat|strong=\"H3092\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* was|strong=\"H1732\"* buried|strong=\"H6912\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Jehoram|strong=\"H3088\"* his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* had|strong=\"H3478\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*: Azariah|strong=\"H5838\"*, Jehiel|strong=\"H3171\"*, Zechariah|strong=\"H2148\"*, Azariah|strong=\"H5838\"*, Michael|strong=\"H4317\"*, and|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H3478\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "Their|strong=\"H5414\"* father gave|strong=\"H5414\"* them|strong=\"H5414\"* great|strong=\"H7227\"* gifts|strong=\"H4979\"* of|strong=\"H5892\"* silver|strong=\"H3701\"*, of|strong=\"H5892\"* gold|strong=\"H2091\"*, and|strong=\"H3063\"* of|strong=\"H5892\"* precious|strong=\"H4030\"* things|strong=\"H4030\"*, with|strong=\"H5973\"* fortified|strong=\"H4694\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* Judah|strong=\"H3063\"*; but|strong=\"H3588\"* he|strong=\"H1931\"* gave|strong=\"H5414\"* the|strong=\"H3588\"* kingdom|strong=\"H4467\"* to|strong=\"H5414\"* Jehoram|strong=\"H3088\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3588\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1571\"* when|strong=\"H2026\"* Jehoram|strong=\"H3088\"* had|strong=\"H3478\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* over|strong=\"H5921\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"* of|strong=\"H8269\"* his|strong=\"H3605\"* father, and|strong=\"H6965\"* had|strong=\"H3478\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, he|strong=\"H3605\"* killed|strong=\"H2026\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers with|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H6965\"* also|strong=\"H1571\"* some|strong=\"H3605\"* of|strong=\"H8269\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "Jehoram|strong=\"H3088\"* was|strong=\"H1121\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* Ahab’s daughter|strong=\"H1323\"* as|strong=\"H1961\"* his|strong=\"H3068\"* wife. He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 7, + "text": "However Yahweh|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, because|strong=\"H4616\"* of|strong=\"H1121\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H3605\"* he|strong=\"H3117\"* had|strong=\"H3068\"* made|strong=\"H3772\"* with|strong=\"H1004\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* as|strong=\"H3117\"* he|strong=\"H3117\"* promised|strong=\"H5414\"* to|strong=\"H3068\"* give|strong=\"H5414\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H1121\"* to|strong=\"H3068\"* his|strong=\"H3605\"* children|strong=\"H1121\"* always|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H5921\"* his|strong=\"H5921\"* days|strong=\"H3117\"* Edom revolted|strong=\"H6586\"* from|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* a|strong=\"H3068\"* king|strong=\"H4428\"* over|strong=\"H5921\"* themselves|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1961\"* Jehoram|strong=\"H3088\"* went|strong=\"H5674\"* there|strong=\"H1961\"* with|strong=\"H5973\"* his|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H6965\"* all|strong=\"H3605\"* his|strong=\"H3605\"* chariots|strong=\"H7393\"* with|strong=\"H5973\"* him|strong=\"H5221\"*. He|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* by|strong=\"H5674\"* night|strong=\"H3915\"* and|strong=\"H6965\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* Edomites who|strong=\"H3605\"* surrounded|strong=\"H5437\"* him|strong=\"H5221\"*, along|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H3605\"* chariots|strong=\"H7393\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H2088\"* Edom has|strong=\"H3068\"* been|strong=\"H6586\"* in|strong=\"H3068\"* revolt|strong=\"H6586\"* from|strong=\"H3027\"* under|strong=\"H8478\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. Then|strong=\"H2088\"* Libnah|strong=\"H3841\"* revolted|strong=\"H6586\"* at|strong=\"H3068\"* the|strong=\"H3588\"* same|strong=\"H1931\"* time|strong=\"H6256\"* from|strong=\"H3027\"* under|strong=\"H8478\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers." + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1571\"* he|strong=\"H1931\"* made|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* in|strong=\"H3427\"* the|strong=\"H6213\"* mountains|strong=\"H2022\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* made|strong=\"H6213\"* the|strong=\"H6213\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* play|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"*, and|strong=\"H3063\"* led|strong=\"H5080\"* Judah|strong=\"H3063\"* astray|strong=\"H5080\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* letter|strong=\"H4385\"* came|strong=\"H1980\"* to|strong=\"H1980\"* him|strong=\"H8478\"* from|strong=\"H1980\"* Elijah the|strong=\"H3541\"* prophet|strong=\"H5030\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, ‘Because|strong=\"H8478\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* Jehoshaphat|strong=\"H3092\"* your|strong=\"H3068\"* father, nor|strong=\"H3808\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* Asa king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H1571\"* have|strong=\"H1571\"* walked|strong=\"H3212\"* in|strong=\"H3427\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H4480\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* have|strong=\"H1571\"* made|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H4480\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* play|strong=\"H2181\"* the|strong=\"H4480\"* prostitute|strong=\"H2181\"* like|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"* did|strong=\"H3478\"*, and|strong=\"H3063\"* also|strong=\"H1571\"* have|strong=\"H1571\"* slain|strong=\"H2026\"* your|strong=\"H4480\"* brothers of|strong=\"H4428\"* your|strong=\"H4480\"* father’s house|strong=\"H1004\"*, who|strong=\"H3478\"* were|strong=\"H3478\"* better|strong=\"H2896\"* than|strong=\"H4480\"* yourself," + }, + { + "verseNum": 14, + "text": "behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* your|strong=\"H3068\"* people|strong=\"H5971\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* plague|strong=\"H4046\"*, including|strong=\"H3605\"* your|strong=\"H3068\"* children|strong=\"H1121\"*, your|strong=\"H3068\"* wives, and|strong=\"H1121\"* all|strong=\"H3605\"* your|strong=\"H3068\"* possessions|strong=\"H7399\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3117\"* you|strong=\"H5921\"* will|strong=\"H7227\"* have|strong=\"H3117\"* great|strong=\"H7227\"* sickness|strong=\"H2483\"* with|strong=\"H5921\"* a|strong=\"H3068\"* disease|strong=\"H2483\"* of|strong=\"H3117\"* your|strong=\"H5921\"* bowels|strong=\"H4578\"*, until|strong=\"H5704\"* your|strong=\"H5921\"* bowels|strong=\"H4578\"* fall|strong=\"H4578\"* out|strong=\"H3318\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sickness|strong=\"H2483\"*, day|strong=\"H3117\"* by|strong=\"H5921\"* day|strong=\"H3117\"*.’”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* against|strong=\"H5921\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Arabians|strong=\"H6163\"* who|strong=\"H3068\"* are|strong=\"H3027\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* Ethiopians|strong=\"H3569\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* they|strong=\"H3588\"* came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Judah|strong=\"H3063\"*, broke|strong=\"H1234\"* into|strong=\"H5927\"* it|strong=\"H3588\"*, and|strong=\"H1121\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* all|strong=\"H3605\"* the|strong=\"H3605\"* possessions|strong=\"H7399\"* that|strong=\"H3588\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, including|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H3605\"* wives, so|strong=\"H5927\"* that|strong=\"H3588\"* there|strong=\"H5927\"* was|strong=\"H4428\"* no|strong=\"H3808\"* son|strong=\"H1121\"* left|strong=\"H7604\"* to|strong=\"H5927\"* him|strong=\"H4672\"* except|strong=\"H3588\"* Jehoahaz|strong=\"H3059\"*, the|strong=\"H3605\"* youngest|strong=\"H6996\"* of|strong=\"H1121\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "After all|strong=\"H3605\"* this|strong=\"H2063\"* Yahweh|strong=\"H3068\"* struck|strong=\"H5062\"* him|strong=\"H3605\"* in|strong=\"H3068\"* his|strong=\"H3605\"* bowels|strong=\"H4578\"* with|strong=\"H3068\"* an|strong=\"H3068\"* incurable disease|strong=\"H2483\"*." + }, + { + "verseNum": 19, + "text": "In|strong=\"H6213\"* process|strong=\"H7093\"* of|strong=\"H3117\"* time|strong=\"H6256\"*, at|strong=\"H3117\"* the|strong=\"H6213\"* end|strong=\"H7093\"* of|strong=\"H3117\"* two|strong=\"H8147\"* years|strong=\"H3117\"*, his|strong=\"H1961\"* bowels|strong=\"H4578\"* fell|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3117\"* reason|strong=\"H5973\"* of|strong=\"H3117\"* his|strong=\"H1961\"* sickness|strong=\"H2483\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"* of|strong=\"H3117\"* severe|strong=\"H7451\"* diseases|strong=\"H8463\"*. His|strong=\"H1961\"* people|strong=\"H5971\"* made|strong=\"H6213\"* no|strong=\"H3808\"* burning|strong=\"H8316\"* for|strong=\"H6213\"* him|strong=\"H6213\"*, like|strong=\"H1961\"* the|strong=\"H6213\"* burning|strong=\"H8316\"* of|strong=\"H3117\"* his|strong=\"H1961\"* fathers." + }, + { + "verseNum": 20, + "text": "He|strong=\"H1732\"* was|strong=\"H1961\"* thirty-two|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H1732\"* began|strong=\"H1961\"* to|strong=\"H3212\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H1732\"* reigned|strong=\"H4427\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* eight|strong=\"H8083\"* years|strong=\"H8141\"*. He|strong=\"H1732\"* departed|strong=\"H3212\"* with|strong=\"H3389\"* no|strong=\"H3808\"* one|strong=\"H3808\"*’s regret|strong=\"H2532\"*. They|strong=\"H3808\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H8141\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* in|strong=\"H8141\"* the|strong=\"H1961\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H1961\"* kings|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* made|strong=\"H4427\"* Ahaziah his|strong=\"H3605\"* youngest|strong=\"H6996\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H3427\"* his|strong=\"H3605\"* place|strong=\"H8478\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* band|strong=\"H1416\"* of|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H3605\"* came|strong=\"H3063\"* with|strong=\"H3427\"* the|strong=\"H3605\"* Arabians|strong=\"H6163\"* to|strong=\"H3389\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* had|strong=\"H4428\"* slain|strong=\"H2026\"* all|strong=\"H3605\"* the|strong=\"H3605\"* oldest. So|strong=\"H3588\"* Ahaziah the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* reigned|strong=\"H4427\"*." + }, + { + "verseNum": 2, + "text": "Ahaziah was|strong=\"H8034\"* forty-two|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* one|strong=\"H1121\"* year|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H8147\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Athaliah|strong=\"H6271\"* the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Omri|strong=\"H6018\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* also|strong=\"H1571\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3588\"* ways|strong=\"H1870\"* of|strong=\"H1004\"* Ahab’s house|strong=\"H1004\"*, because|strong=\"H3588\"* his|strong=\"H1961\"* mother was|strong=\"H1961\"* his|strong=\"H1961\"* counselor|strong=\"H3289\"* in|strong=\"H1980\"* acting|strong=\"H1980\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H1961\"* did|strong=\"H6213\"* Ahab’s house|strong=\"H1004\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1961\"* his|strong=\"H3068\"* counselors|strong=\"H3289\"* after|strong=\"H1961\"* the|strong=\"H3588\"* death|strong=\"H4194\"* of|strong=\"H1004\"* his|strong=\"H3068\"* father, to|strong=\"H3068\"* his|strong=\"H3068\"* destruction|strong=\"H4889\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* also|strong=\"H1571\"* followed|strong=\"H1980\"* their|strong=\"H5921\"* counsel|strong=\"H6098\"*, and|strong=\"H1121\"* went|strong=\"H1980\"* with|strong=\"H1980\"* Jehoram|strong=\"H3088\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H1980\"* war|strong=\"H4421\"* against|strong=\"H5921\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria at|strong=\"H5921\"* Ramoth|strong=\"H7433\"* Gilead|strong=\"H1568\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* Syrians|strong=\"H7421\"* wounded|strong=\"H5221\"* Joram|strong=\"H3141\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* be|strong=\"H1121\"* healed|strong=\"H7495\"* in|strong=\"H4428\"* Jezreel|strong=\"H3157\"* of|strong=\"H1121\"* the|strong=\"H7200\"* wounds|strong=\"H4347\"* which|strong=\"H1931\"* they|strong=\"H3588\"* had|strong=\"H4428\"* given|strong=\"H5221\"* him|strong=\"H5221\"* at|strong=\"H4428\"* Ramah|strong=\"H7414\"*, when|strong=\"H3588\"* he|strong=\"H1931\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Hazael|strong=\"H2371\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria. Azariah|strong=\"H5838\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoram|strong=\"H3088\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H7725\"* see|strong=\"H7200\"* Jehoram|strong=\"H3088\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahab in|strong=\"H4428\"* Jezreel|strong=\"H3157\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* sick|strong=\"H2470\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1961\"* the|strong=\"H3068\"* destruction|strong=\"H8395\"* of|strong=\"H1121\"* Ahaziah was|strong=\"H3068\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, in|strong=\"H3068\"* that|strong=\"H3068\"* he|strong=\"H3068\"* went|strong=\"H3318\"* to|strong=\"H3318\"* Joram|strong=\"H3141\"*; for|strong=\"H3068\"* when|strong=\"H1961\"* he|strong=\"H3068\"* had|strong=\"H3068\"* come|strong=\"H1961\"*, he|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H5973\"* Jehoram|strong=\"H3088\"* against|strong=\"H5973\"* Jehu|strong=\"H3058\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nimshi|strong=\"H5250\"*, whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* anointed|strong=\"H4886\"* to|strong=\"H3318\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* Ahab’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Jehu|strong=\"H3058\"* was|strong=\"H1961\"* executing|strong=\"H8199\"* judgment|strong=\"H8199\"* on|strong=\"H1961\"* Ahab’s house|strong=\"H1004\"*, he|strong=\"H1004\"* found|strong=\"H4672\"* the|strong=\"H8199\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H8199\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8199\"* brothers|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah serving|strong=\"H8334\"* Ahaziah, and|strong=\"H1121\"* killed|strong=\"H2026\"* them|strong=\"H4672\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* sought|strong=\"H1245\"* Ahaziah, and|strong=\"H1121\"* they|strong=\"H3588\"* caught|strong=\"H3920\"* him|strong=\"H4191\"* (now|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* hiding|strong=\"H2244\"* in|strong=\"H3068\"* Samaria|strong=\"H8111\"*), and|strong=\"H1121\"* they|strong=\"H3588\"* brought|strong=\"H3068\"* him|strong=\"H4191\"* to|strong=\"H4191\"* Jehu|strong=\"H3058\"* and|strong=\"H1121\"* killed|strong=\"H4191\"* him|strong=\"H4191\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4191\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoshaphat|strong=\"H3092\"*, who|strong=\"H3605\"* sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*.” The|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Ahaziah had|strong=\"H3068\"* no|strong=\"H3605\"* power|strong=\"H3581\"* to|strong=\"H4191\"* hold|strong=\"H1004\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Athaliah|strong=\"H6271\"* the|strong=\"H3605\"* mother of|strong=\"H1121\"* Ahaziah saw|strong=\"H7200\"* that|strong=\"H3588\"* her|strong=\"H3605\"* son|strong=\"H1121\"* was|strong=\"H1004\"* dead|strong=\"H4191\"*, she|strong=\"H3588\"* arose|strong=\"H6965\"* and|strong=\"H1121\"* destroyed|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* royal|strong=\"H4467\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* Jehoshabeath|strong=\"H3090\"*, the|strong=\"H6440\"* king|strong=\"H4428\"*’s daughter|strong=\"H1323\"*, took|strong=\"H3947\"* Joash|strong=\"H3101\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahaziah, and|strong=\"H1121\"* stealthily|strong=\"H1589\"* rescued him|strong=\"H5414\"* from|strong=\"H6440\"* among|strong=\"H8432\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1961\"* slain|strong=\"H4191\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* him|strong=\"H5414\"* and|strong=\"H1121\"* his|strong=\"H5414\"* nurse|strong=\"H3243\"* in|strong=\"H4428\"* the|strong=\"H6440\"* bedroom|strong=\"H2315\"*. So|strong=\"H3947\"* Jehoshabeath|strong=\"H3090\"*, the|strong=\"H6440\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Jehoram|strong=\"H3088\"*, the|strong=\"H6440\"* wife of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* (for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H6440\"* sister of|strong=\"H1121\"* Ahaziah), hid|strong=\"H5641\"* him|strong=\"H5414\"* from|strong=\"H6440\"* Athaliah|strong=\"H6271\"*, so|strong=\"H3947\"* that|strong=\"H3588\"* she|strong=\"H1931\"* didn’t kill|strong=\"H4191\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H1004\"* was|strong=\"H1961\"* with|strong=\"H1004\"* them|strong=\"H5921\"* hidden|strong=\"H2244\"* in|strong=\"H8141\"* God’s house|strong=\"H1004\"* six|strong=\"H8337\"* years|strong=\"H8141\"* while|strong=\"H1961\"* Athaliah|strong=\"H6271\"* reigned|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* land." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3947\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*, Jehoiada|strong=\"H3077\"* strengthened|strong=\"H2388\"* himself|strong=\"H2388\"*, and|strong=\"H3967\"* took|strong=\"H3947\"* the|strong=\"H3947\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*—Azariah|strong=\"H5838\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, Ishmael|strong=\"H3458\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehohanan|strong=\"H3076\"*, Azariah|strong=\"H5838\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Obed|strong=\"H5744\"*, Maaseiah|strong=\"H4641\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"*, and|strong=\"H3967\"* Elishaphat the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"*—into|strong=\"H3947\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* went|strong=\"H3478\"* around|strong=\"H5437\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* gathered|strong=\"H6908\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* out|strong=\"H3605\"* of|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H5892\"* fathers’ households|strong=\"H3881\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* they|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H5921\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*. Jehoiada+ 23:3 Hebrew He* said|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, “Behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"* must|strong=\"H1121\"* reign|strong=\"H4427\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*." + }, + { + "verseNum": 4, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* must do|strong=\"H6213\"*: a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H1697\"* you|strong=\"H6213\"*, who|strong=\"H3548\"* come in|strong=\"H6213\"* on|strong=\"H6213\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*, of|strong=\"H1697\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* of|strong=\"H1697\"* the|strong=\"H6213\"* Levites|strong=\"H3881\"*, shall|strong=\"H3548\"* be|strong=\"H1697\"* gatekeepers|strong=\"H7778\"* of|strong=\"H1697\"* the|strong=\"H6213\"* thresholds|strong=\"H5592\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* at|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H3605\"* foundation|strong=\"H3247\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H3068\"* be|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* courts|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* let no|strong=\"H3605\"* one|strong=\"H3605\"* come|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* except|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* those|strong=\"H1992\"* who|strong=\"H3605\"* minister|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*. They|strong=\"H1992\"* shall|strong=\"H3548\"* come|strong=\"H5971\"* in|strong=\"H3068\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* holy|strong=\"H6944\"*, but|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shall|strong=\"H3548\"* follow|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s instructions|strong=\"H8104\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3318\"* Levites|strong=\"H3881\"* shall|strong=\"H4428\"* surround|strong=\"H5439\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, every|strong=\"H5439\"* man|strong=\"H4191\"* with|strong=\"H1004\"* his|strong=\"H3027\"* weapons|strong=\"H3627\"* in|strong=\"H1004\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*. Whoever|strong=\"H4191\"* comes|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* house|strong=\"H1004\"*, let|strong=\"H1961\"* him|strong=\"H3027\"* be|strong=\"H1961\"* slain|strong=\"H4191\"*. Be|strong=\"H1961\"* with|strong=\"H1004\"* the|strong=\"H3318\"* king|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H1004\"* comes|strong=\"H3318\"* in|strong=\"H1004\"* and|strong=\"H4428\"* when|strong=\"H1961\"* he|strong=\"H1004\"* goes|strong=\"H3318\"* out|strong=\"H3318\"*.”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* did|strong=\"H6213\"* according to|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* commanded|strong=\"H6680\"*. They|strong=\"H3588\"* each|strong=\"H3605\"* took|strong=\"H3947\"* his|strong=\"H3605\"* men|strong=\"H6213\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3881\"* to|strong=\"H3318\"* come|strong=\"H3318\"* in|strong=\"H6213\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, with|strong=\"H5973\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3881\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*, for|strong=\"H3588\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* didn’t dismiss|strong=\"H6362\"* the|strong=\"H3605\"* shift." + }, + { + "verseNum": 9, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H5414\"* priest|strong=\"H3548\"* delivered|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"* the|strong=\"H5414\"* spears|strong=\"H2595\"*, bucklers|strong=\"H4043\"*, and|strong=\"H3967\"* shields|strong=\"H4043\"* that|strong=\"H5414\"* had|strong=\"H1732\"* been king|strong=\"H4428\"* David|strong=\"H1732\"*’s, which|strong=\"H1004\"* were|strong=\"H1732\"* in|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* set|strong=\"H5975\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* with|strong=\"H1004\"* his|strong=\"H3605\"* weapon|strong=\"H7973\"* in|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H3605\"* left|strong=\"H8042\"* side|strong=\"H3802\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, near|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* and|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, around|strong=\"H5439\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3318\"* they|strong=\"H5921\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, put|strong=\"H5414\"* the|strong=\"H5921\"* crown|strong=\"H5145\"* on|strong=\"H5921\"* him|strong=\"H5414\"*, gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* covenant, and|strong=\"H1121\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"*. Jehoiada|strong=\"H3077\"* and|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"* anointed|strong=\"H4886\"* him|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* said|strong=\"H3318\"*, “Long|strong=\"H5921\"* live|strong=\"H2421\"* the|strong=\"H5921\"* king|strong=\"H4428\"*!”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8085\"* Athaliah|strong=\"H6271\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H8085\"* people|strong=\"H5971\"* running|strong=\"H7323\"* and|strong=\"H3068\"* praising|strong=\"H1984\"* the|strong=\"H8085\"* king|strong=\"H4428\"*, she came|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H8085\"* people|strong=\"H5971\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H2009\"* she|strong=\"H5921\"* looked|strong=\"H7200\"*, and|strong=\"H4428\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* by|strong=\"H5921\"* his|strong=\"H3605\"* pillar|strong=\"H5982\"* at|strong=\"H5921\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"*, with|strong=\"H5921\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* and|strong=\"H4428\"* the|strong=\"H3605\"* trumpeters|strong=\"H2689\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"* and|strong=\"H4428\"* blew|strong=\"H8628\"* trumpets|strong=\"H2689\"*. The|strong=\"H3605\"* singers|strong=\"H7891\"* also|strong=\"H4428\"* played musical|strong=\"H7892\"* instruments|strong=\"H3627\"*, and|strong=\"H4428\"* led the|strong=\"H3605\"* singing|strong=\"H7891\"* of|strong=\"H4428\"* praise|strong=\"H1984\"*. Then|strong=\"H2009\"* Athaliah|strong=\"H6271\"* tore|strong=\"H7167\"* her|strong=\"H3605\"* clothes, and|strong=\"H4428\"* said, “Treason|strong=\"H7195\"*! treason|strong=\"H7195\"*!”" + }, + { + "verseNum": 14, + "text": "Jehoiada|strong=\"H3077\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3588\"* captains|strong=\"H8269\"* of|strong=\"H1004\"* hundreds|strong=\"H3967\"* who|strong=\"H3068\"* were|strong=\"H8269\"* set|strong=\"H6485\"* over|strong=\"H8269\"* the|strong=\"H3588\"* army|strong=\"H2428\"*, and|strong=\"H3967\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Bring|strong=\"H3318\"* her|strong=\"H3318\"* out|strong=\"H3318\"* between the|strong=\"H3588\"* ranks|strong=\"H7713\"*; and|strong=\"H3967\"* whoever|strong=\"H4191\"* follows her|strong=\"H3318\"*, let|strong=\"H6485\"* him|strong=\"H3318\"* be|strong=\"H4191\"* slain|strong=\"H4191\"* with|strong=\"H1004\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*.” For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"* said|strong=\"H3318\"*, “Don’t kill|strong=\"H4191\"* her|strong=\"H3318\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H4191\"* they|strong=\"H8033\"* made|strong=\"H7760\"* way for|strong=\"H3027\"* her|strong=\"H7760\"*. She went|strong=\"H4428\"* to|strong=\"H4191\"* the|strong=\"H7760\"* entrance|strong=\"H3996\"* of|strong=\"H4428\"* the|strong=\"H7760\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"* to|strong=\"H4191\"* the|strong=\"H7760\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H4428\"* they|strong=\"H8033\"* killed|strong=\"H4191\"* her|strong=\"H7760\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 16, + "text": "Jehoiada|strong=\"H3077\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* between himself|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H5971\"* to|strong=\"H6440\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"*, broke|strong=\"H7665\"* it|strong=\"H6440\"* down|strong=\"H5422\"*, broke|strong=\"H7665\"* his|strong=\"H3605\"* altars|strong=\"H4196\"* and|strong=\"H1004\"* his|strong=\"H3605\"* images|strong=\"H6754\"* in|strong=\"H1004\"* pieces|strong=\"H7665\"*, and|strong=\"H1004\"* killed|strong=\"H2026\"* Mattan|strong=\"H4977\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H1004\"* Baal|strong=\"H1168\"* before|strong=\"H6440\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 18, + "text": "Jehoiada|strong=\"H3077\"* appointed|strong=\"H7760\"* the|strong=\"H5921\"* officers|strong=\"H6486\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, whom David|strong=\"H1732\"* had|strong=\"H3068\"* distributed|strong=\"H2505\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, to|strong=\"H3068\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* it|strong=\"H7760\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1004\"* Moses|strong=\"H4872\"*, with|strong=\"H1004\"* rejoicing|strong=\"H8057\"* and|strong=\"H4872\"* with|strong=\"H1004\"* singing|strong=\"H7892\"*, as|strong=\"H3068\"* David|strong=\"H1732\"* had|strong=\"H3068\"* ordered." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"* at|strong=\"H5921\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, that|strong=\"H3605\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H3068\"* unclean|strong=\"H2931\"* in|strong=\"H5921\"* anything|strong=\"H3605\"* should|strong=\"H3068\"* enter|strong=\"H5975\"* in|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* took|strong=\"H3947\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* hundreds|strong=\"H3967\"*, the|strong=\"H3605\"* nobles, the|strong=\"H3605\"* governors|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3967\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, and|strong=\"H3967\"* brought|strong=\"H3947\"* the|strong=\"H3605\"* king|strong=\"H4428\"* down|strong=\"H3381\"* from|strong=\"H3381\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. They|strong=\"H3068\"* came|strong=\"H3381\"* through|strong=\"H8432\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* to|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H3967\"* set|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H3605\"* land rejoiced|strong=\"H8055\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* quiet|strong=\"H8252\"*. They|strong=\"H5971\"* had|strong=\"H5971\"* slain|strong=\"H4191\"* Athaliah|strong=\"H6271\"* with|strong=\"H5971\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Joash|strong=\"H3101\"* was|strong=\"H8034\"* seven|strong=\"H7651\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* forty years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3101\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Zibiah|strong=\"H6645\"*, of|strong=\"H1121\"* Beersheba." + }, + { + "verseNum": 2, + "text": "Joash|strong=\"H3101\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 3, + "text": "Jehoiada|strong=\"H3077\"* took|strong=\"H5375\"* for|strong=\"H1121\"* him|strong=\"H3205\"* two|strong=\"H8147\"* wives, and|strong=\"H1121\"* he|strong=\"H8147\"* became|strong=\"H3205\"* the|strong=\"H5375\"* father|strong=\"H3205\"* of|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 4, + "text": "After|strong=\"H1961\"* this|strong=\"H3068\"*, Joash|strong=\"H3101\"* intended to|strong=\"H3068\"* restore|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3605\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* said|strong=\"H1697\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* gather|strong=\"H6908\"* money|strong=\"H3701\"* to|strong=\"H3318\"* repair|strong=\"H2388\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3318\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* year|strong=\"H8141\"* to|strong=\"H3318\"* year|strong=\"H8141\"*. See that|strong=\"H3605\"* you|strong=\"H3605\"* expedite this|strong=\"H1697\"* matter|strong=\"H1697\"*.” However the|strong=\"H3605\"* Levites|strong=\"H3881\"* didn’t do|strong=\"H3318\"* it|strong=\"H3808\"* right|strong=\"H3478\"* away|strong=\"H3318\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* called|strong=\"H7121\"* for|strong=\"H5921\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* chief|strong=\"H7218\"*, and|strong=\"H3063\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Why|strong=\"H4069\"* haven’t you|strong=\"H5921\"* required|strong=\"H1875\"* of|strong=\"H4428\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* to|strong=\"H3478\"* bring|strong=\"H3881\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tax|strong=\"H4864\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* of|strong=\"H4428\"* the|strong=\"H5921\"* assembly|strong=\"H6951\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, out|strong=\"H5921\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* out|strong=\"H5921\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* Tent of|strong=\"H4428\"* the|strong=\"H5921\"* Testimony|strong=\"H5715\"*?”" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Athaliah|strong=\"H6271\"*, that|strong=\"H3588\"* wicked|strong=\"H4849\"* woman|strong=\"H1004\"*, had|strong=\"H3068\"* broken|strong=\"H6555\"* up|strong=\"H6555\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H1121\"* they|strong=\"H3588\"* also|strong=\"H1571\"* gave|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3605\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H6213\"* the|strong=\"H5414\"* king|strong=\"H4428\"* commanded, and|strong=\"H3068\"* they|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* chest, and|strong=\"H3068\"* set|strong=\"H5414\"* it|strong=\"H5414\"* outside|strong=\"H2351\"* at|strong=\"H3068\"* the|strong=\"H5414\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3068\"* made|strong=\"H5414\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* through|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* bring|strong=\"H5414\"* in|strong=\"H5921\"* for|strong=\"H5921\"* Yahweh|strong=\"H3068\"* the|strong=\"H5921\"* tax|strong=\"H4864\"* that|strong=\"H3068\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* servant|strong=\"H5650\"* of|strong=\"H3068\"* God|strong=\"H3068\"* laid|strong=\"H5414\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"*, and|strong=\"H5971\"* brought|strong=\"H3615\"* in|strong=\"H8055\"*, and|strong=\"H5971\"* cast|strong=\"H7993\"* into|strong=\"H7993\"* the|strong=\"H3605\"* chest, until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H5971\"* filled it|strong=\"H7993\"*." + }, + { + "verseNum": 11, + "text": "Whenever|strong=\"H1961\"* the|strong=\"H7200\"* chest was|strong=\"H1961\"* brought|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s officers|strong=\"H6496\"* by|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Levites|strong=\"H3881\"*, and|strong=\"H3701\"* when|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* much|strong=\"H7227\"* money|strong=\"H3701\"*, the|strong=\"H7200\"* king|strong=\"H4428\"*’s scribe|strong=\"H5608\"* and|strong=\"H3701\"* the|strong=\"H7200\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*’s officer|strong=\"H6496\"* came|strong=\"H1961\"* and|strong=\"H3701\"* emptied|strong=\"H6168\"* the|strong=\"H7200\"* chest, and|strong=\"H3701\"* took|strong=\"H5375\"* it|strong=\"H3588\"*, and|strong=\"H3701\"* carried|strong=\"H5375\"* it|strong=\"H3588\"* to|strong=\"H7725\"* its|strong=\"H7725\"* place|strong=\"H4725\"* again|strong=\"H7725\"*. Thus|strong=\"H3541\"* they|strong=\"H3588\"* did|strong=\"H6213\"* day|strong=\"H3117\"* by|strong=\"H3027\"* day|strong=\"H3117\"*, and|strong=\"H3701\"* gathered|strong=\"H6213\"* money|strong=\"H3701\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* those|strong=\"H2388\"* who|strong=\"H3068\"* did|strong=\"H6213\"* the|strong=\"H5414\"* work|strong=\"H4399\"* of|strong=\"H4428\"* the|strong=\"H5414\"* service|strong=\"H5656\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. They|strong=\"H3068\"* hired|strong=\"H7936\"* masons|strong=\"H2672\"* and|strong=\"H3068\"* carpenters|strong=\"H2796\"* to|strong=\"H3068\"* restore|strong=\"H2318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* also|strong=\"H1571\"* those|strong=\"H2388\"* who|strong=\"H3068\"* worked|strong=\"H2388\"* iron|strong=\"H1270\"* and|strong=\"H3068\"* bronze|strong=\"H5178\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H6213\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* worked|strong=\"H6213\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H1004\"* repairing went|strong=\"H5927\"* forward in|strong=\"H5921\"* their|strong=\"H5921\"* hands|strong=\"H3027\"*. They|strong=\"H5921\"* set|strong=\"H5975\"* up|strong=\"H5927\"* God|strong=\"H3027\"*’s house|strong=\"H1004\"* as|strong=\"H6213\"* it|strong=\"H5921\"* was|strong=\"H1004\"* designed, and|strong=\"H3027\"* strengthened it|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H1961\"* they|strong=\"H3117\"* had|strong=\"H3068\"* finished|strong=\"H3615\"*, they|strong=\"H3117\"* brought|strong=\"H5927\"* the|strong=\"H3605\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* money|strong=\"H3701\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* Jehoiada|strong=\"H3077\"*, from|strong=\"H6440\"* which|strong=\"H3068\"* were|strong=\"H1961\"* made|strong=\"H6213\"* vessels|strong=\"H3627\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, even|strong=\"H6213\"* vessels|strong=\"H3627\"* with|strong=\"H1004\"* which|strong=\"H3068\"* to|strong=\"H3068\"* minister|strong=\"H8335\"* and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"*, including|strong=\"H3605\"* spoons|strong=\"H3709\"* and|strong=\"H3068\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* gold|strong=\"H2091\"* and|strong=\"H3068\"* silver|strong=\"H3701\"*. They|strong=\"H3117\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jehoiada|strong=\"H3077\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H4191\"* Jehoiada|strong=\"H3077\"* grew|strong=\"H7646\"* old|strong=\"H1121\"* and|strong=\"H3967\"* was|strong=\"H3117\"* full|strong=\"H7646\"* of|strong=\"H1121\"* days|strong=\"H3117\"*, and|strong=\"H3967\"* he|strong=\"H3117\"* died|strong=\"H4191\"*. He|strong=\"H3117\"* was|strong=\"H3117\"* one|strong=\"H1121\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3117\"* he|strong=\"H3117\"* died|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H6213\"* in|strong=\"H3478\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* among|strong=\"H5973\"* the|strong=\"H3588\"* kings|strong=\"H4428\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3478\"* done|strong=\"H6213\"* good|strong=\"H2896\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* toward|strong=\"H5973\"* God and|strong=\"H3478\"* his|strong=\"H1732\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H8085\"* after the|strong=\"H8085\"* death|strong=\"H4194\"* of|strong=\"H4428\"* Jehoiada|strong=\"H3077\"*, the|strong=\"H8085\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* came|strong=\"H3063\"* and|strong=\"H3063\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* to|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"*. Then|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"* listened|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8085\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3068\"* abandoned|strong=\"H5800\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* their|strong=\"H3068\"* fathers, and|strong=\"H3063\"* served|strong=\"H5647\"* the|strong=\"H5921\"* Asherah poles and|strong=\"H3063\"* the|strong=\"H5921\"* idols|strong=\"H6091\"*, so|strong=\"H1961\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* for|strong=\"H5921\"* this|strong=\"H2063\"* their|strong=\"H3068\"* guiltiness." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* prophets|strong=\"H5030\"* to|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* testified|strong=\"H5749\"* against|strong=\"H5749\"* them|strong=\"H7725\"*; but|strong=\"H3808\"* they|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H3808\"* listen." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H1121\"* God|strong=\"H3068\"* came|strong=\"H3068\"* on|strong=\"H5921\"* Zechariah|strong=\"H2148\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* he|strong=\"H3588\"* stood|strong=\"H5975\"* above|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* said to|strong=\"H3068\"* them|strong=\"H5921\"*, “God|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3588\"* disobey Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, so|strong=\"H3541\"* that|strong=\"H3588\"* you|strong=\"H3588\"* can|strong=\"H4100\"*’t prosper|strong=\"H6743\"*? Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3588\"* has|strong=\"H3068\"* also|strong=\"H3068\"* forsaken|strong=\"H5800\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* stoned|strong=\"H7275\"* him|strong=\"H5921\"* with|strong=\"H1004\"* stones at|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H3808\"* Joash|strong=\"H3101\"* the|strong=\"H7200\"* king|strong=\"H4428\"* didn’t remember|strong=\"H2142\"* the|strong=\"H7200\"* kindness|strong=\"H2617\"* which|strong=\"H3068\"* Jehoiada|strong=\"H3077\"* his|strong=\"H3068\"* father|strong=\"H1121\"* had|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H4191\"* him|strong=\"H6213\"*, but|strong=\"H3808\"* killed|strong=\"H2026\"* his|strong=\"H3068\"* son|strong=\"H1121\"*. When|strong=\"H7200\"* he|strong=\"H6213\"* died|strong=\"H4191\"*, he|strong=\"H6213\"* said, “May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* look|strong=\"H7200\"* at|strong=\"H3068\"* it|strong=\"H6213\"*, and|strong=\"H1121\"* repay it|strong=\"H6213\"*.”" + }, + { + "verseNum": 23, + "text": "At|strong=\"H5921\"* the|strong=\"H3605\"* end|strong=\"H8622\"* of|strong=\"H4428\"* the|strong=\"H3605\"* year|strong=\"H8141\"*, the|strong=\"H3605\"* army|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Syrians came|strong=\"H1961\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. They|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H7971\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* destroyed|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* sent|strong=\"H7971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* plunder|strong=\"H7998\"* to|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* army|strong=\"H2428\"* of|strong=\"H3068\"* the|strong=\"H3588\"* Syrians came|strong=\"H3068\"* with|strong=\"H3068\"* a|strong=\"H3068\"* small|strong=\"H4705\"* company|strong=\"H2428\"* of|strong=\"H3068\"* men|strong=\"H2428\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* delivered|strong=\"H5414\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* army|strong=\"H2428\"* into|strong=\"H6213\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers. So|strong=\"H6213\"* they|strong=\"H3588\"* executed|strong=\"H6213\"* judgment|strong=\"H8201\"* on|strong=\"H3027\"* Joash|strong=\"H3101\"*." + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1732\"* departed|strong=\"H3212\"* from|strong=\"H4480\"* him|strong=\"H5921\"* (for|strong=\"H3588\"* they|strong=\"H3588\"* left|strong=\"H5800\"* him|strong=\"H5921\"* seriously wounded), his|strong=\"H1732\"* own|strong=\"H3548\"* servants|strong=\"H5650\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"* for|strong=\"H3588\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiada|strong=\"H3077\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* killed|strong=\"H2026\"* him|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H1732\"* bed|strong=\"H4296\"*, and|strong=\"H1121\"* he|strong=\"H3588\"* died|strong=\"H4191\"*. They|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H5921\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* didn’t bury|strong=\"H6912\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 26, + "text": "These are|strong=\"H1121\"* those|strong=\"H5921\"* who|strong=\"H1121\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*: Zabad|strong=\"H2066\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimeath|strong=\"H8100\"* the|strong=\"H5921\"* Ammonitess|strong=\"H5985\"* and|strong=\"H1121\"* Jehozabad|strong=\"H3075\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimrith|strong=\"H8116\"* the|strong=\"H5921\"* Moabitess|strong=\"H4125\"*." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H2005\"* concerning|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, the|strong=\"H5921\"* greatness|strong=\"H7230\"* of|strong=\"H1121\"* the|strong=\"H5921\"* burdens|strong=\"H4853\"* laid on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* rebuilding of|strong=\"H1121\"* God’s house|strong=\"H1004\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* commentary of|strong=\"H1121\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"*. Amaziah his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Amaziah was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4427\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jehoaddan|strong=\"H3086\"*, of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, but|strong=\"H7535\"* not|strong=\"H3808\"* with|strong=\"H3068\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"* was|strong=\"H1961\"* established|strong=\"H2388\"* to|strong=\"H1961\"* him|strong=\"H5921\"*, he|strong=\"H5921\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* had|strong=\"H1961\"* killed|strong=\"H2026\"* his|strong=\"H5921\"* father the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* didn’t put|strong=\"H4191\"* their|strong=\"H3068\"* children|strong=\"H1121\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, but|strong=\"H3588\"* did|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H4191\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"*, saying, “The|strong=\"H5921\"* fathers shall|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* children|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* children|strong=\"H1121\"* die|strong=\"H4191\"* for|strong=\"H3588\"* the|strong=\"H5921\"* fathers; but|strong=\"H3588\"* every|strong=\"H3068\"* man|strong=\"H1121\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3068\"* own sin|strong=\"H2399\"*.”" + }, + { + "verseNum": 5, + "text": "Moreover Amaziah gathered|strong=\"H6908\"* Judah|strong=\"H3063\"* together|strong=\"H6908\"* and|strong=\"H3967\"* ordered|strong=\"H6485\"* them|strong=\"H5975\"* according to|strong=\"H3318\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, under|strong=\"H6485\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* thousands and|strong=\"H3967\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* hundreds|strong=\"H3967\"*, even all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3967\"* Benjamin|strong=\"H1144\"*. He|strong=\"H3605\"* counted|strong=\"H6485\"* them|strong=\"H5975\"* from|strong=\"H3318\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H3967\"* upward|strong=\"H4605\"*, and|strong=\"H3967\"* found|strong=\"H4672\"* that|strong=\"H3605\"* there|strong=\"H5975\"* were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* thousand chosen men|strong=\"H1121\"*, able to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H6635\"*, who|strong=\"H3605\"* could handle spear|strong=\"H7420\"* and|strong=\"H3967\"* shield|strong=\"H6793\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3478\"* also|strong=\"H3478\"* hired|strong=\"H7936\"* one|strong=\"H1368\"* hundred|strong=\"H3967\"* thousand mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3603\"* valor|strong=\"H2428\"* out|strong=\"H7936\"* of|strong=\"H3603\"* Israel|strong=\"H3478\"* for|strong=\"H3478\"* one|strong=\"H1368\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 25:6 A talent is about 30 kilograms or 66 pounds* of|strong=\"H3603\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"* came|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H5973\"*, saying, “O|strong=\"H3068\"* king|strong=\"H4428\"*, don’t let the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* go|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* not|strong=\"H3588\"* with|strong=\"H5973\"* Israel|strong=\"H3478\"*, with|strong=\"H5973\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5826\"* go, take|strong=\"H2388\"* action|strong=\"H6213\"*, and|strong=\"H6440\"* be|strong=\"H3426\"* strong|strong=\"H2388\"* for|strong=\"H3588\"* the|strong=\"H6440\"* battle|strong=\"H4421\"*. God will|strong=\"H5826\"* overthrow you|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy; for|strong=\"H3588\"* God has|strong=\"H3588\"* power|strong=\"H3581\"* to|strong=\"H6213\"* help|strong=\"H5826\"*, and|strong=\"H6440\"* to|strong=\"H6213\"* overthrow.”" + }, + { + "verseNum": 9, + "text": "Amaziah said to|strong=\"H3478\"* the|strong=\"H5414\"* man|strong=\"H2088\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, “But|strong=\"H3068\"* what|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* do|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H5414\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 25:9 A talent is about 30 kilograms or 66 pounds* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3426\"* given|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H5414\"* army|strong=\"H1416\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7725\"* Amaziah separated them|strong=\"H7725\"*, the|strong=\"H7725\"* army|strong=\"H1416\"* that|strong=\"H3063\"* had|strong=\"H3063\"* come|strong=\"H3212\"* to|strong=\"H7725\"* him|strong=\"H7725\"* out|strong=\"H3212\"* of|strong=\"H4725\"* Ephraim, to|strong=\"H7725\"* go|strong=\"H3212\"* home|strong=\"H4725\"* again|strong=\"H7725\"*. Therefore their|strong=\"H7725\"* anger was|strong=\"H3063\"* greatly|strong=\"H3966\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* they|strong=\"H3063\"* returned|strong=\"H7725\"* home|strong=\"H4725\"* in|strong=\"H3212\"* fierce|strong=\"H2750\"* anger." + }, + { + "verseNum": 11, + "text": "Amaziah took|strong=\"H2388\"* courage|strong=\"H2388\"*, and|strong=\"H1121\"* led|strong=\"H3212\"* his|strong=\"H5221\"* people|strong=\"H5971\"* out|strong=\"H2388\"* and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5221\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* Salt|strong=\"H4417\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* ten|strong=\"H6235\"* thousand of|strong=\"H1121\"* the|strong=\"H5221\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* carried|strong=\"H7617\"* away|strong=\"H7993\"* ten|strong=\"H6235\"* thousand alive|strong=\"H2416\"*, and|strong=\"H1121\"* brought them|strong=\"H7617\"* to|strong=\"H1121\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rock|strong=\"H5553\"*, and|strong=\"H1121\"* threw|strong=\"H7993\"* them|strong=\"H7617\"* down|strong=\"H7993\"* from|strong=\"H1121\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H3605\"* rock|strong=\"H5553\"*, so that|strong=\"H3605\"* they|strong=\"H3605\"* all|strong=\"H3605\"* were|strong=\"H1121\"* broken|strong=\"H1234\"* in|strong=\"H1121\"* pieces|strong=\"H1234\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1992\"* the|strong=\"H5221\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* army|strong=\"H1416\"* whom|strong=\"H1992\"* Amaziah sent|strong=\"H7725\"* back|strong=\"H7725\"*, that|strong=\"H5892\"* they|strong=\"H1992\"* should|strong=\"H4421\"* not|strong=\"H7725\"* go|strong=\"H3212\"* with|strong=\"H5973\"* him|strong=\"H5221\"* to|strong=\"H5704\"* battle|strong=\"H4421\"*, fell|strong=\"H6584\"* on|strong=\"H3212\"* the|strong=\"H5221\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* from|strong=\"H7725\"* Samaria|strong=\"H8111\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Beth Horon, and|strong=\"H1121\"* struck|strong=\"H5221\"* of|strong=\"H1121\"* them|strong=\"H1992\"* three|strong=\"H7969\"* thousand, and|strong=\"H1121\"* took|strong=\"H7725\"* much|strong=\"H7227\"* plunder." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H1961\"* after|strong=\"H1961\"* Amaziah had|strong=\"H1961\"* come|strong=\"H1961\"* from|strong=\"H6440\"* the|strong=\"H6440\"* slaughter|strong=\"H5221\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Edomites|strong=\"H8165\"*, he|strong=\"H5221\"* brought|strong=\"H1961\"* the|strong=\"H6440\"* gods of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* them|strong=\"H6440\"* up|strong=\"H5975\"* to|strong=\"H1961\"* be|strong=\"H1961\"* his|strong=\"H6440\"* gods, and|strong=\"H1121\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* himself|strong=\"H7812\"* before|strong=\"H6440\"* them|strong=\"H6440\"* and|strong=\"H1121\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"*’s anger burned|strong=\"H2734\"* against|strong=\"H2734\"* Amaziah, and|strong=\"H3068\"* he|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* him|strong=\"H7971\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H5971\"* said to|strong=\"H3068\"* him|strong=\"H7971\"*, “Why|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H7971\"* sought|strong=\"H1875\"* after|strong=\"H1875\"* the|strong=\"H3068\"* gods of|strong=\"H3068\"* the|strong=\"H3068\"* people|strong=\"H5971\"*, which|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* own|strong=\"H5971\"* people|strong=\"H5971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 16, + "text": "As|strong=\"H1961\"* he|strong=\"H3588\"* talked|strong=\"H1696\"* with|strong=\"H6213\"* him|strong=\"H5414\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, “Have|strong=\"H1961\"* we|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H3588\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s counselors|strong=\"H3289\"*? Stop|strong=\"H2308\"*! Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3588\"* be|strong=\"H1961\"* struck|strong=\"H5221\"* down|strong=\"H5221\"*?”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1980\"* Amaziah|strong=\"H3289\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* consulted|strong=\"H3289\"* his|strong=\"H7971\"* advisers|strong=\"H3289\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* to|strong=\"H1980\"* Joash|strong=\"H3101\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehu|strong=\"H3058\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, “Come|strong=\"H1980\"*! Let|strong=\"H7971\"*’s look|strong=\"H7200\"* one|strong=\"H1121\"* another|strong=\"H7200\"* in|strong=\"H1980\"* the|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 18, + "text": "Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying, “The|strong=\"H5414\"* thistle|strong=\"H2336\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* the|strong=\"H5414\"* cedar that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"*, saying, ‘Give|strong=\"H5414\"* your|strong=\"H5414\"* daughter|strong=\"H1323\"* to|strong=\"H3478\"* my|strong=\"H5414\"* son|strong=\"H1121\"* as|strong=\"H3063\"* his|strong=\"H5414\"* wife|strong=\"H2416\"*. Then|strong=\"H7971\"* a|strong=\"H3068\"* wild|strong=\"H7704\"* animal|strong=\"H2416\"* that|strong=\"H3478\"* was|strong=\"H3478\"* in|strong=\"H3478\"* Lebanon|strong=\"H3844\"* passed|strong=\"H5674\"* by|strong=\"H5674\"* and|strong=\"H1121\"* trampled|strong=\"H7429\"* down|strong=\"H7429\"* the|strong=\"H5414\"* thistle|strong=\"H2336\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5973\"* say to|strong=\"H3820\"* yourself|strong=\"H5307\"* that|strong=\"H5307\"* you|strong=\"H5973\"* have|strong=\"H3063\"* struck|strong=\"H5221\"* Edom; and|strong=\"H3063\"* your|strong=\"H5375\"* heart|strong=\"H3820\"* lifts|strong=\"H5375\"* you|strong=\"H5973\"* up|strong=\"H5375\"* to|strong=\"H3820\"* boast|strong=\"H3513\"*. Now|strong=\"H6258\"* stay|strong=\"H3427\"* at|strong=\"H3427\"* home|strong=\"H1004\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H5973\"* meddle|strong=\"H1624\"* with|strong=\"H5973\"* trouble|strong=\"H7451\"*, that|strong=\"H5307\"* you|strong=\"H5973\"* should|strong=\"H4100\"* fall|strong=\"H5307\"*, even you|strong=\"H5973\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* with|strong=\"H5973\"* you|strong=\"H5973\"*?’”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* Amaziah would not|strong=\"H3808\"* listen|strong=\"H8085\"*; for|strong=\"H3588\"* it|strong=\"H5414\"* was|strong=\"H1931\"* of|strong=\"H3027\"* God|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H1931\"* might|strong=\"H4616\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* sought|strong=\"H1875\"* after|strong=\"H3588\"* the|strong=\"H8085\"* gods of|strong=\"H3027\"* Edom." + }, + { + "verseNum": 21, + "text": "So|strong=\"H5927\"* Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H3063\"* he|strong=\"H1931\"* and|strong=\"H3063\"* Amaziah king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* looked|strong=\"H7200\"* one|strong=\"H1931\"* another|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H6440\"* face|strong=\"H6440\"* at|strong=\"H3478\"* Beth Shemesh, which|strong=\"H1931\"* belongs to|strong=\"H3478\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 22, + "text": "Judah|strong=\"H3063\"* was|strong=\"H3478\"* defeated|strong=\"H5062\"* by|strong=\"H3478\"* Israel|strong=\"H3478\"*; so|strong=\"H6440\"* every|strong=\"H5127\"* man|strong=\"H6440\"* fled|strong=\"H5127\"* to|strong=\"H3478\"* his|strong=\"H6440\"* tent." + }, + { + "verseNum": 23, + "text": "Joash|strong=\"H3101\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* took|strong=\"H8610\"* Amaziah king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, at|strong=\"H3478\"* Beth Shemesh and|strong=\"H3967\"* brought|strong=\"H3478\"* him|strong=\"H4428\"* to|strong=\"H5704\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3967\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3478\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Ephraim to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6437\"* gate|strong=\"H8179\"*, four hundred|strong=\"H3967\"* cubits.+ 25:23 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters, so 400 cubits is about 200 yards or 184 meters.*" + }, + { + "verseNum": 24, + "text": "He|strong=\"H3605\"* took|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* that|strong=\"H3605\"* were|strong=\"H1121\"* found|strong=\"H4672\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"* with|strong=\"H5973\"* Obed-Edom|strong=\"H5654\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* treasures of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* hostages|strong=\"H8594\"*, and|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 25, + "text": "Amaziah the|strong=\"H4191\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, lived|strong=\"H2421\"* for|strong=\"H1121\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"* after|strong=\"H8141\"* the|strong=\"H4191\"* death|strong=\"H4191\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoahaz|strong=\"H3059\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Amaziah, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, aren’t they|strong=\"H3808\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6256\"* from|strong=\"H5493\"* the|strong=\"H5921\"* time|strong=\"H6256\"* that|strong=\"H3068\"* Amaziah turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, they|strong=\"H8033\"* made|strong=\"H7194\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* against|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H8033\"* fled|strong=\"H5127\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"*, but|strong=\"H3068\"* they|strong=\"H8033\"* sent|strong=\"H7971\"* after|strong=\"H5921\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Lachish|strong=\"H3923\"* and|strong=\"H3068\"* killed|strong=\"H4191\"* him|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H5921\"* brought|strong=\"H5375\"* him|strong=\"H5921\"* on|strong=\"H5921\"* horses|strong=\"H5483\"* and|strong=\"H3063\"* buried|strong=\"H6912\"* him|strong=\"H5921\"* with|strong=\"H5973\"* his|strong=\"H5375\"* fathers in|strong=\"H5921\"* the|strong=\"H5921\"* City|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* took|strong=\"H3947\"* Uzziah|strong=\"H5818\"*, who|strong=\"H3605\"* was|strong=\"H1931\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1121\"* his|strong=\"H3605\"* father|strong=\"H1121\"* Amaziah." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* Eloth and|strong=\"H3063\"* restored|strong=\"H7725\"* it|strong=\"H1931\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*. After that|strong=\"H1931\"* the|strong=\"H7725\"* king|strong=\"H4428\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H7725\"* fathers." + }, + { + "verseNum": 3, + "text": "Uzziah|strong=\"H5818\"* was|strong=\"H8034\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* fifty-two|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H4480\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jechiliah|strong=\"H3203\"*, of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* his|strong=\"H3605\"* father Amaziah had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3117\"* set himself|strong=\"H3068\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Zechariah|strong=\"H2148\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* understanding in|strong=\"H3068\"* the|strong=\"H7200\"* vision|strong=\"H7200\"* of|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* as|strong=\"H3117\"* long|strong=\"H3117\"* as|strong=\"H3117\"* he|strong=\"H3117\"* sought|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, God|strong=\"H3068\"* made|strong=\"H1961\"* him|strong=\"H7200\"* prosper|strong=\"H6743\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* the|strong=\"H1129\"* Philistines|strong=\"H6430\"*, and|strong=\"H5892\"* broke|strong=\"H6555\"* down|strong=\"H6555\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Gath|strong=\"H1661\"*, the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Jabneh|strong=\"H2996\"*, and|strong=\"H5892\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H5892\"* Ashdod; and|strong=\"H5892\"* he|strong=\"H3318\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H1129\"* country of|strong=\"H5892\"* Ashdod, and|strong=\"H5892\"* among the|strong=\"H1129\"* Philistines|strong=\"H6430\"*." + }, + { + "verseNum": 7, + "text": "God helped|strong=\"H5826\"* him|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, and|strong=\"H6430\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Arabians|strong=\"H6163\"* who|strong=\"H3427\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Gur Baal, and|strong=\"H6430\"* the|strong=\"H5921\"* Meunim|strong=\"H4586\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3588\"* Ammonites|strong=\"H5984\"* gave|strong=\"H5414\"* tribute|strong=\"H4503\"* to|strong=\"H5704\"* Uzziah|strong=\"H5818\"*. His|strong=\"H5414\"* name|strong=\"H8034\"* spread|strong=\"H5414\"* abroad|strong=\"H3212\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* entrance of|strong=\"H8034\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* grew exceedingly|strong=\"H4605\"* strong|strong=\"H2388\"*." + }, + { + "verseNum": 9, + "text": "Moreover Uzziah|strong=\"H5818\"* built|strong=\"H1129\"* towers|strong=\"H4026\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* at|strong=\"H5921\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* gate|strong=\"H8179\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*, and|strong=\"H3389\"* at|strong=\"H5921\"* the|strong=\"H5921\"* turning|strong=\"H4740\"* of|strong=\"H8179\"* the|strong=\"H5921\"* wall, and|strong=\"H3389\"* fortified|strong=\"H2388\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* built|strong=\"H1129\"* towers|strong=\"H4026\"* in|strong=\"H7227\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*, and|strong=\"H2022\"* dug out|strong=\"H2672\"* many|strong=\"H7227\"* cisterns, for|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H1961\"* much|strong=\"H7227\"* livestock|strong=\"H4735\"*, both in|strong=\"H7227\"* the|strong=\"H3588\"* lowlands and|strong=\"H2022\"* in|strong=\"H7227\"* the|strong=\"H3588\"* plains|strong=\"H4334\"*. He|strong=\"H3588\"* had|strong=\"H1961\"* farmers and|strong=\"H2022\"* vineyard keepers in|strong=\"H7227\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"* and|strong=\"H2022\"* in|strong=\"H7227\"* the|strong=\"H3588\"* fruitful fields, for|strong=\"H3588\"* he|strong=\"H3588\"* loved farming." + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Uzziah|strong=\"H5818\"* had|strong=\"H1961\"* an|strong=\"H6213\"* army|strong=\"H2428\"* of|strong=\"H4428\"* fighting|strong=\"H4421\"* men|strong=\"H2428\"* who|strong=\"H4428\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* war|strong=\"H4421\"* by|strong=\"H3027\"* bands|strong=\"H1416\"*, according|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H4428\"* their|strong=\"H5921\"* reckoning|strong=\"H6486\"* made|strong=\"H6213\"* by|strong=\"H3027\"* Jeiel|strong=\"H3273\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* and|strong=\"H4428\"* Maaseiah|strong=\"H4641\"* the|strong=\"H5921\"* officer|strong=\"H7860\"*, under|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Hananiah|strong=\"H2608\"*, one|strong=\"H1961\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s captains|strong=\"H8269\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H7218\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households, even the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H7218\"* valor|strong=\"H2428\"*, was|strong=\"H7218\"* two|strong=\"H3967\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 13, + "text": "Under|strong=\"H5921\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* was|strong=\"H4428\"* an|strong=\"H6213\"* army|strong=\"H2428\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* seven|strong=\"H7651\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"*, who|strong=\"H4428\"* made|strong=\"H6213\"* war|strong=\"H4421\"* with|strong=\"H6213\"* mighty|strong=\"H7969\"* power|strong=\"H3027\"*, to|strong=\"H6213\"* help|strong=\"H5826\"* the|strong=\"H5921\"* king|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H5921\"* enemy." + }, + { + "verseNum": 14, + "text": "Uzziah|strong=\"H5818\"* prepared|strong=\"H3559\"* for|strong=\"H3559\"* them|strong=\"H1992\"*, even for|strong=\"H3559\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"*, shields|strong=\"H4043\"*, spears|strong=\"H7420\"*, helmets|strong=\"H3553\"*, coats of|strong=\"H6635\"* mail|strong=\"H8302\"*, bows|strong=\"H7198\"*, and|strong=\"H4043\"* stones for|strong=\"H3559\"* slinging." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H3588\"* made|strong=\"H6213\"* devices|strong=\"H4284\"*, invented|strong=\"H4284\"* by|strong=\"H5921\"* skillful|strong=\"H2803\"* men|strong=\"H1419\"*, to|strong=\"H5704\"* be|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* towers|strong=\"H4026\"* and|strong=\"H1419\"* on|strong=\"H5921\"* the|strong=\"H5921\"* battlements, with|strong=\"H6213\"* which|strong=\"H3588\"* to|strong=\"H5704\"* shoot|strong=\"H3384\"* arrows|strong=\"H2678\"* and|strong=\"H1419\"* great|strong=\"H1419\"* stones. His|strong=\"H5921\"* name|strong=\"H8034\"* spread|strong=\"H3318\"* far|strong=\"H5704\"* abroad|strong=\"H7350\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H8034\"* marvelously|strong=\"H6381\"* helped|strong=\"H5826\"* until|strong=\"H5704\"* he|strong=\"H3588\"* was|strong=\"H8034\"* strong|strong=\"H2388\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3068\"* when|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H3068\"* strong|strong=\"H2393\"*, his|strong=\"H3068\"* heart|strong=\"H3820\"* was|strong=\"H3068\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"*, so|strong=\"H5921\"* that|strong=\"H3068\"* he|strong=\"H5704\"* did|strong=\"H3068\"* corruptly|strong=\"H7843\"* and|strong=\"H3068\"* he|strong=\"H5704\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, for|strong=\"H5704\"* he|strong=\"H5704\"* went|strong=\"H3068\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* to|strong=\"H5704\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H3068\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 17, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* went|strong=\"H3068\"* in|strong=\"H3068\"* after him|strong=\"H5973\"*, and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5973\"* eighty|strong=\"H8084\"* priests|strong=\"H3548\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* were|strong=\"H1121\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* resisted Uzziah|strong=\"H5818\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* said|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*, “It|strong=\"H5921\"* isn’t for|strong=\"H3588\"* you|strong=\"H3588\"*, Uzziah|strong=\"H5818\"*, to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron, who|strong=\"H3068\"* are|strong=\"H1121\"* consecrated|strong=\"H6942\"* to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* trespassed|strong=\"H4603\"*. It|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* for|strong=\"H3588\"* your|strong=\"H3068\"* honor|strong=\"H3519\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3068\"* Uzziah|strong=\"H5818\"* was|strong=\"H3068\"* angry. He|strong=\"H3068\"* had|strong=\"H3068\"* a|strong=\"H3068\"* censer|strong=\"H4730\"* in|strong=\"H5921\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H7004\"*, and|strong=\"H3068\"* while|strong=\"H5973\"* he|strong=\"H3068\"* was|strong=\"H3068\"* angry with|strong=\"H5973\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* leprosy|strong=\"H6883\"* broke|strong=\"H2224\"* out|strong=\"H5921\"* on|strong=\"H5921\"* his|strong=\"H3068\"* forehead|strong=\"H4696\"* before|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, beside|strong=\"H5921\"* the|strong=\"H6440\"* altar|strong=\"H4196\"* of|strong=\"H1004\"* incense|strong=\"H7004\"*." + }, + { + "verseNum": 20, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3605\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* looked|strong=\"H6437\"* at|strong=\"H3068\"* him|strong=\"H3318\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, he|strong=\"H1931\"* was|strong=\"H3068\"* leprous|strong=\"H6879\"* in|strong=\"H3068\"* his|strong=\"H3605\"* forehead|strong=\"H4696\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* thrust him|strong=\"H3318\"* out|strong=\"H3318\"* quickly|strong=\"H1765\"* from|strong=\"H3318\"* there|strong=\"H8033\"*. Indeed|strong=\"H3588\"*, he|strong=\"H1931\"* himself|strong=\"H1931\"* also|strong=\"H1571\"* hurried|strong=\"H1765\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* struck|strong=\"H5060\"* him|strong=\"H3318\"*." + }, + { + "verseNum": 21, + "text": "Uzziah|strong=\"H5818\"* the|strong=\"H5921\"* king|strong=\"H4428\"* was|strong=\"H3068\"* a|strong=\"H3068\"* leper|strong=\"H6879\"* to|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H3068\"* death|strong=\"H4194\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* separate|strong=\"H2669\"* house|strong=\"H1004\"*, being|strong=\"H1961\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3068\"* cut|strong=\"H1504\"* off|strong=\"H1504\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Jotham|strong=\"H3147\"* his|strong=\"H3068\"* son|strong=\"H1121\"* was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, judging|strong=\"H8199\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 22, + "text": "Now the|strong=\"H1697\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H1697\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, first|strong=\"H7223\"* and|strong=\"H1121\"* last, Isaiah|strong=\"H3470\"* the|strong=\"H1697\"* prophet|strong=\"H5030\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, wrote|strong=\"H3789\"*." + }, + { + "verseNum": 23, + "text": "So|strong=\"H3588\"* Uzziah|strong=\"H5818\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3588\"* fathers; and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* with|strong=\"H5973\"* his|strong=\"H3588\"* fathers in|strong=\"H4428\"* the|strong=\"H3588\"* field|strong=\"H7704\"* of|strong=\"H1121\"* burial|strong=\"H6900\"* which|strong=\"H1931\"* belonged to|strong=\"H1121\"* the|strong=\"H3588\"* kings|strong=\"H4428\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* said, “He|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* leper|strong=\"H6879\"*.” Jotham|strong=\"H3147\"* his|strong=\"H3588\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H4428\"* his|strong=\"H3588\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Jotham|strong=\"H3147\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H3147\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Jerushah|strong=\"H3388\"* the|strong=\"H6659\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H5971\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H5971\"* his|strong=\"H3605\"* father Uzziah|strong=\"H5818\"* had|strong=\"H3068\"* done|strong=\"H6213\"*. However|strong=\"H7535\"* he|strong=\"H6213\"* didn’t enter into|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*. The|strong=\"H3605\"* people|strong=\"H5971\"* still|strong=\"H5750\"* acted|strong=\"H6213\"* corruptly|strong=\"H7843\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* built|strong=\"H1129\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* built|strong=\"H1129\"* much|strong=\"H7230\"* on|strong=\"H3068\"* the|strong=\"H3068\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Ophel|strong=\"H6077\"*." + }, + { + "verseNum": 4, + "text": "Moreover he|strong=\"H3063\"* built|strong=\"H1129\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* the|strong=\"H1129\"* hill|strong=\"H2022\"* country|strong=\"H2022\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H5892\"* the|strong=\"H1129\"* forests|strong=\"H2793\"* he|strong=\"H3063\"* built|strong=\"H1129\"* fortresses|strong=\"H1003\"* and|strong=\"H3063\"* towers|strong=\"H4026\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* also|strong=\"H4428\"* fought|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H3967\"* prevailed|strong=\"H2388\"* against|strong=\"H5921\"* them|strong=\"H5414\"*. The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5921\"* same|strong=\"H1931\"* year|strong=\"H8141\"* one|strong=\"H7992\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"*+ 27:5 A talent is about 30 kilograms or 66 pounds* of|strong=\"H1121\"* silver|strong=\"H3701\"*, ten|strong=\"H6235\"* thousand cors|strong=\"H3734\"*+ 27:5 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels. 10,000 cors of wheat would weigh about 1,640 metric tons.* of|strong=\"H1121\"* wheat|strong=\"H2406\"*, and|strong=\"H3967\"* ten|strong=\"H6235\"* thousand cors|strong=\"H3734\"* of|strong=\"H1121\"* barley|strong=\"H8184\"*.+ 27:5 10,000 cors of barley would weigh about 1,310 metric tons.* The|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* that|strong=\"H1931\"* much|strong=\"H5921\"* to|strong=\"H7725\"* him|strong=\"H5414\"* in|strong=\"H8141\"* the|strong=\"H5921\"* second|strong=\"H8145\"* year|strong=\"H8141\"*, and|strong=\"H3967\"* in|strong=\"H8141\"* the|strong=\"H5921\"* third|strong=\"H7992\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H3588\"* Jotham|strong=\"H3147\"* became|strong=\"H2388\"* mighty|strong=\"H2388\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* ordered|strong=\"H3559\"* his|strong=\"H3068\"* ways|strong=\"H1870\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H2005\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wars|strong=\"H4421\"* and|strong=\"H3063\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H2568\"* was|strong=\"H1961\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1961\"* he|strong=\"H2568\"* began|strong=\"H1961\"* to|strong=\"H1961\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "Jotham|strong=\"H3147\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H1732\"* fathers, and|strong=\"H1121\"* they|strong=\"H5892\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H6912\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*; and|strong=\"H1121\"* Ahaz his|strong=\"H1732\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H6912\"* his|strong=\"H1732\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Ahaz was|strong=\"H3068\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* sixteen|strong=\"H8337\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* didn’t do|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, like|strong=\"H3808\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"H1571\"* he|strong=\"H6213\"* walked|strong=\"H3212\"* in|strong=\"H3478\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* also|strong=\"H1571\"* made|strong=\"H6213\"* molten|strong=\"H4541\"* images|strong=\"H4541\"* for|strong=\"H6213\"* the|strong=\"H6213\"* Baals|strong=\"H1168\"*." + }, + { + "verseNum": 3, + "text": "Moreover he|strong=\"H1931\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H3478\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, and|strong=\"H1121\"* burned|strong=\"H6999\"* his|strong=\"H6440\"* children|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H6440\"* fire, according to|strong=\"H3478\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3423\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* sacrificed|strong=\"H2076\"* and|strong=\"H6086\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H3605\"* hills|strong=\"H1389\"*, and|strong=\"H6086\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H1571\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* God|strong=\"H3068\"* delivered|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Syria. They|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* from|strong=\"H4480\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* multitude|strong=\"H1419\"* of|strong=\"H4428\"* captives|strong=\"H7617\"*, and|strong=\"H3478\"* brought|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3478\"* Damascus|strong=\"H1834\"*. He|strong=\"H3068\"* was|strong=\"H3068\"* also|strong=\"H1571\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* struck|strong=\"H5221\"* him|strong=\"H5414\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* slaughter|strong=\"H4347\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* Pekah|strong=\"H6492\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"* killed|strong=\"H2026\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* thousand in|strong=\"H3068\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H2026\"* valiant|strong=\"H2428\"* men|strong=\"H1121\"*, because|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H3068\"* forsaken|strong=\"H5800\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 7, + "text": "Zichri|strong=\"H2147\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* of|strong=\"H1121\"* Ephraim, killed|strong=\"H2026\"* Maaseiah|strong=\"H4641\"* the|strong=\"H2026\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, Azrikam|strong=\"H5840\"* the|strong=\"H2026\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* the|strong=\"H2026\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* Elkanah who|strong=\"H1121\"* was|strong=\"H4428\"* next|strong=\"H4932\"* to|strong=\"H1121\"* the|strong=\"H2026\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1571\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* captive|strong=\"H7617\"* of|strong=\"H1121\"* their|strong=\"H1992\"* brothers|strong=\"H1121\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* thousand women|strong=\"H1323\"*, sons|strong=\"H1121\"*, and|strong=\"H3967\"* daughters|strong=\"H1323\"*, and|strong=\"H3967\"* also|strong=\"H1571\"* took|strong=\"H7617\"* away|strong=\"H7617\"* much|strong=\"H7227\"* plunder|strong=\"H7998\"* from|strong=\"H3478\"* them|strong=\"H1992\"*, and|strong=\"H3967\"* brought|strong=\"H3478\"* the|strong=\"H1571\"* plunder|strong=\"H7998\"* to|strong=\"H3478\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H3068\"* Oded|strong=\"H5752\"*; and|strong=\"H3063\"* he|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* meet|strong=\"H6440\"* the|strong=\"H6440\"* army|strong=\"H6635\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H5704\"* Samaria|strong=\"H8111\"*, and|strong=\"H3063\"* said|strong=\"H3318\"* to|strong=\"H5704\"* them|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, because|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers, was|strong=\"H3068\"* angry|strong=\"H2534\"* with|strong=\"H3068\"* Judah|strong=\"H3063\"*, he|strong=\"H5704\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H3063\"* you|strong=\"H5414\"* have|strong=\"H1961\"* slain|strong=\"H2026\"* them|strong=\"H5414\"* in|strong=\"H5921\"* a|strong=\"H3068\"* rage|strong=\"H2534\"* which|strong=\"H3068\"* has|strong=\"H3068\"* reached|strong=\"H5060\"* up|strong=\"H5414\"* to|strong=\"H5704\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* you|strong=\"H5973\"* intend to|strong=\"H3068\"* degrade the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3068\"* male|strong=\"H5650\"* and|strong=\"H1121\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"* for|strong=\"H3068\"* yourselves|strong=\"H3068\"*. Aren’t there|strong=\"H6258\"* even|strong=\"H3808\"* with|strong=\"H5973\"* you|strong=\"H5973\"* trespasses of|strong=\"H1121\"* your|strong=\"H3068\"* own|strong=\"H5973\"* against|strong=\"H5973\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*?" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* hear|strong=\"H8085\"* me|strong=\"H7725\"* therefore|strong=\"H5921\"*, and|strong=\"H3068\"* send back|strong=\"H7725\"* the|strong=\"H5921\"* captives|strong=\"H7617\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* taken|strong=\"H7617\"* captive|strong=\"H7617\"* from|strong=\"H7725\"* your|strong=\"H3068\"* brothers, for|strong=\"H3588\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6965\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, Azariah|strong=\"H5838\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Johanan|strong=\"H3076\"*, Berechiah|strong=\"H1296\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemoth|strong=\"H4919\"*, Jehizkiah|strong=\"H3169\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, and|strong=\"H1121\"* Amasa|strong=\"H6021\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hadlai|strong=\"H2311\"*, stood|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* those|strong=\"H4480\"* who|strong=\"H1121\"* came|strong=\"H6635\"* from|strong=\"H4480\"* the|strong=\"H5921\"* war|strong=\"H6635\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “You|strong=\"H3588\"* must|strong=\"H3478\"* not|strong=\"H3808\"* bring|strong=\"H3254\"* in|strong=\"H5921\"* the|strong=\"H5921\"* captives|strong=\"H7633\"* here|strong=\"H2008\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* intend that|strong=\"H3588\"* which|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3254\"* on|strong=\"H5921\"* us|strong=\"H5921\"* a|strong=\"H3068\"* trespass against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3478\"* add|strong=\"H3254\"* to|strong=\"H3478\"* our|strong=\"H3068\"* sins|strong=\"H2403\"* and|strong=\"H3478\"* to|strong=\"H3478\"* our|strong=\"H3068\"* guilt; for|strong=\"H3588\"* our|strong=\"H3068\"* guilt is|strong=\"H3068\"* great|strong=\"H7227\"*, and|strong=\"H3478\"* there|strong=\"H2008\"* is|strong=\"H3068\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H5800\"* the|strong=\"H3605\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* left|strong=\"H5800\"* the|strong=\"H3605\"* captives|strong=\"H7633\"* and|strong=\"H6440\"* the|strong=\"H3605\"* plunder before|strong=\"H6440\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* been|strong=\"H3605\"* mentioned by|strong=\"H6965\"* name|strong=\"H8034\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* took|strong=\"H2388\"* the|strong=\"H3605\"* captives|strong=\"H7633\"*, and|strong=\"H6965\"* with|strong=\"H3847\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"* clothed|strong=\"H3847\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5892\"* naked|strong=\"H4636\"* among|strong=\"H4480\"* them|strong=\"H7725\"*, dressed|strong=\"H3847\"* them|strong=\"H7725\"*, gave|strong=\"H8248\"* them|strong=\"H7725\"* sandals|strong=\"H5274\"*, gave|strong=\"H8248\"* them|strong=\"H7725\"* something|strong=\"H3605\"* to|strong=\"H7725\"* eat and|strong=\"H6965\"* to|strong=\"H7725\"* drink|strong=\"H8248\"*, anointed|strong=\"H5480\"* them|strong=\"H7725\"*, carried|strong=\"H2388\"* all|strong=\"H3605\"* the|strong=\"H3605\"* feeble|strong=\"H3782\"* of|strong=\"H5892\"* them|strong=\"H7725\"* on|strong=\"H3847\"* donkeys|strong=\"H2543\"*, and|strong=\"H6965\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* Jericho|strong=\"H3405\"*, the|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H5892\"* palm|strong=\"H8558\"* trees|strong=\"H8558\"*, to|strong=\"H7725\"* their|strong=\"H3605\"* brothers. Then|strong=\"H6965\"* they|strong=\"H3605\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"* King|strong=\"H4428\"* Ahaz sent|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H7971\"* help|strong=\"H5826\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H7628\"* again|strong=\"H5750\"* the|strong=\"H5221\"* Edomites had|strong=\"H3063\"* come|strong=\"H3063\"* and|strong=\"H3063\"* struck|strong=\"H5221\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* captives|strong=\"H7617\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8033\"* Philistines|strong=\"H6430\"* also|strong=\"H6430\"* had|strong=\"H3063\"* invaded|strong=\"H6584\"* the|strong=\"H8033\"* cities|strong=\"H5892\"* of|strong=\"H1323\"* the|strong=\"H8033\"* lowland|strong=\"H8219\"* and|strong=\"H3063\"* of|strong=\"H1323\"* the|strong=\"H8033\"* South|strong=\"H5045\"* of|strong=\"H1323\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* had|strong=\"H3063\"* taken|strong=\"H3920\"* Beth Shemesh, Aijalon, Gederoth|strong=\"H1450\"*, Soco|strong=\"H7755\"* with|strong=\"H3427\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, Timnah|strong=\"H8553\"* with|strong=\"H3427\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*, and|strong=\"H3063\"* also|strong=\"H6430\"* Gimzo|strong=\"H1579\"* and|strong=\"H3063\"* its|strong=\"H3920\"* villages|strong=\"H1323\"*; and|strong=\"H3063\"* they|strong=\"H8033\"* lived|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3478\"* Judah|strong=\"H3063\"* low|strong=\"H3665\"* because|strong=\"H3588\"* of|strong=\"H4428\"* Ahaz king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* acted|strong=\"H4603\"* without|strong=\"H3588\"* restraint|strong=\"H6544\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* trespassed|strong=\"H4603\"* severely against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Tilgath-pilneser|strong=\"H8407\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H4428\"* to|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H4428\"* gave|strong=\"H2388\"* him|strong=\"H5921\"* trouble, but|strong=\"H3808\"* didn’t strengthen|strong=\"H2388\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* Ahaz took|strong=\"H4428\"* away|strong=\"H5414\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* out|strong=\"H5414\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H3068\"* of|strong=\"H4428\"* the|strong=\"H3588\"* princes|strong=\"H8269\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria; but|strong=\"H3588\"* it|strong=\"H5414\"* didn’t help|strong=\"H5833\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H4428\"* his|strong=\"H3068\"* distress|strong=\"H6887\"*, he|strong=\"H1931\"* trespassed|strong=\"H4603\"* yet|strong=\"H3254\"* more|strong=\"H3254\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, this|strong=\"H1931\"* same|strong=\"H1931\"* King|strong=\"H4428\"* Ahaz." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* sacrificed|strong=\"H2076\"* to|strong=\"H3478\"* the|strong=\"H3605\"* gods of|strong=\"H4428\"* Damascus|strong=\"H1834\"* which|strong=\"H1992\"* had|strong=\"H1961\"* defeated|strong=\"H5221\"* him|strong=\"H5221\"*. He|strong=\"H3588\"* said, “Because|strong=\"H3588\"* the|strong=\"H3605\"* gods of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Syria helped|strong=\"H5826\"* them|strong=\"H1992\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* sacrifice|strong=\"H2076\"* to|strong=\"H3478\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H1961\"* help|strong=\"H5826\"* me|strong=\"H5221\"*.” But|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* the|strong=\"H3605\"* ruin|strong=\"H3782\"* of|strong=\"H4428\"* him|strong=\"H5221\"* and|strong=\"H3478\"* of|strong=\"H4428\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "Ahaz gathered|strong=\"H6213\"* together|strong=\"H5462\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, cut|strong=\"H7112\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* pieces|strong=\"H7112\"*, and|strong=\"H3068\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* he|strong=\"H6213\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* every|strong=\"H3605\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 25, + "text": "In|strong=\"H3068\"* every|strong=\"H3605\"* city|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* he|strong=\"H6213\"* made|strong=\"H6213\"* high|strong=\"H1116\"* places|strong=\"H1116\"* to|strong=\"H3068\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3068\"* other|strong=\"H3605\"* gods, and|strong=\"H3063\"* provoked|strong=\"H3707\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fathers, to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 26, + "text": "Now|strong=\"H2005\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* his|strong=\"H3605\"* acts|strong=\"H1697\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 27, + "text": "Ahaz slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3478\"* fathers, and|strong=\"H1121\"* they|strong=\"H3588\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H3478\"* the|strong=\"H3588\"* city|strong=\"H5892\"*, even|strong=\"H3588\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t bring him|strong=\"H4427\"* into|strong=\"H5892\"* the|strong=\"H3588\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H3588\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3478\"* his|strong=\"H3478\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Hezekiah|strong=\"H2396\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"* when|strong=\"H1121\"* he|strong=\"H2568\"* was|strong=\"H8034\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* twenty-nine|strong=\"H6242\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H2396\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Abijah, the|strong=\"H8034\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* David|strong=\"H1732\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* year|strong=\"H8141\"* of|strong=\"H1004\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, he|strong=\"H1931\"* opened|strong=\"H6605\"* the|strong=\"H3068\"* doors|strong=\"H1817\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* repaired|strong=\"H2388\"* them|strong=\"H2388\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H4217\"* brought|strong=\"H3548\"* in|strong=\"H3881\"* the|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* and|strong=\"H3548\"* gathered them together into|strong=\"H4217\"* the|strong=\"H3548\"* wide place on the|strong=\"H3548\"* east|strong=\"H4217\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* said|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H3318\"*, “Listen|strong=\"H8085\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, you|strong=\"H4480\"* Levites|strong=\"H3881\"*! Now|strong=\"H6258\"* sanctify|strong=\"H6942\"* yourselves|strong=\"H6942\"*, and|strong=\"H3068\"* sanctify|strong=\"H6942\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1004\"* your|strong=\"H3068\"* fathers, and|strong=\"H3068\"* carry|strong=\"H3318\"* the|strong=\"H8085\"* filthiness|strong=\"H5079\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H8085\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* our|strong=\"H3068\"* fathers were|strong=\"H5869\"* unfaithful|strong=\"H4603\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* forsaken|strong=\"H5800\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* turned|strong=\"H5437\"* away|strong=\"H5437\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* habitation|strong=\"H4908\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* turned|strong=\"H5437\"* their|strong=\"H3068\"* backs|strong=\"H6203\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H1571\"* they|strong=\"H3808\"* have|strong=\"H1571\"* shut|strong=\"H5462\"* up|strong=\"H5927\"* the|strong=\"H5927\"* doors|strong=\"H1817\"* of|strong=\"H1817\"* the|strong=\"H5927\"* porch, and|strong=\"H3478\"* put|strong=\"H5927\"* out|strong=\"H3518\"* the|strong=\"H5927\"* lamps|strong=\"H5216\"*, and|strong=\"H3478\"* have|strong=\"H1571\"* not|strong=\"H3808\"* burned|strong=\"H6999\"* incense|strong=\"H7004\"* nor|strong=\"H3808\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* in|strong=\"H3478\"* the|strong=\"H5927\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* to|strong=\"H3478\"* the|strong=\"H5927\"* God|strong=\"H3808\"* of|strong=\"H1817\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* was|strong=\"H3068\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* he|strong=\"H3068\"* has|strong=\"H3068\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H3068\"* be|strong=\"H1961\"* tossed back and|strong=\"H3063\"* forth|strong=\"H5414\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"* and|strong=\"H3063\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*, as|strong=\"H1961\"* you|strong=\"H5414\"* see|strong=\"H7200\"* with|strong=\"H3068\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H5921\"* behold|strong=\"H2009\"*, our|strong=\"H5921\"* fathers have|strong=\"H1121\"* fallen|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* our|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H5921\"* daughters|strong=\"H1323\"* and|strong=\"H1121\"* our|strong=\"H5921\"* wives are|strong=\"H1121\"* in|strong=\"H5921\"* captivity|strong=\"H7628\"* for|strong=\"H5921\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* it|strong=\"H7725\"* is|strong=\"H3068\"* in|strong=\"H3478\"* my|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H7725\"* make|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, that|strong=\"H3068\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H3068\"* sons|strong=\"H1121\"*, don’t be|strong=\"H1961\"* negligent|strong=\"H7952\"* now|strong=\"H6258\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen you|strong=\"H3588\"* to|strong=\"H3068\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H6440\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3068\"* be|strong=\"H1961\"* his|strong=\"H3068\"* ministers|strong=\"H8334\"* and|strong=\"H1121\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6965\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"* arose|strong=\"H6965\"*: Mahath|strong=\"H4287\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amasai|strong=\"H6022\"*, and|strong=\"H1121\"* Joel|strong=\"H3100\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Kohathites|strong=\"H6956\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, Kish|strong=\"H7027\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdi|strong=\"H5660\"*, and|strong=\"H1121\"* Azariah|strong=\"H5838\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehallelel|strong=\"H3094\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Gershonites|strong=\"H1649\"*, Joah|strong=\"H3098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zimmah|strong=\"H2155\"*, and|strong=\"H1121\"* Eden|strong=\"H5731\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joah|strong=\"H3098\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elizaphan, Shimri|strong=\"H8113\"* and|strong=\"H1121\"* Jeuel|strong=\"H3273\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, Zechariah|strong=\"H2148\"* and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Heman|strong=\"H1968\"*, Jehuel and|strong=\"H1121\"* Shimei|strong=\"H8096\"*; and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*, Shemaiah|strong=\"H8098\"* and|strong=\"H1121\"* Uzziel|strong=\"H5816\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H3068\"* gathered their|strong=\"H3068\"* brothers, sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"*, according to|strong=\"H3068\"* the|strong=\"H3068\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, to|strong=\"H3068\"* cleanse|strong=\"H2891\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* went|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3605\"* inner|strong=\"H6441\"* part|strong=\"H6441\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3318\"* cleanse|strong=\"H2891\"* it|strong=\"H4672\"*, and|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* uncleanness|strong=\"H2932\"* that|strong=\"H3605\"* they|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"* into|strong=\"H3318\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* took|strong=\"H3318\"* it|strong=\"H4672\"* from|strong=\"H3318\"* there|strong=\"H4672\"* to|strong=\"H3318\"* carry|strong=\"H3318\"* it|strong=\"H4672\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3117\"* they|strong=\"H3117\"* began|strong=\"H2490\"* on|strong=\"H3117\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* to|strong=\"H3068\"* sanctify|strong=\"H6942\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* eighth|strong=\"H8083\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* month|strong=\"H2320\"* they|strong=\"H3117\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s porch. They|strong=\"H3117\"* sanctified|strong=\"H6942\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* eight|strong=\"H8083\"* days|strong=\"H3117\"*, and|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* sixteenth|strong=\"H8337\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"* they|strong=\"H3117\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H4428\"* they|strong=\"H3068\"* went|strong=\"H3068\"* in|strong=\"H3068\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3605\"* king|strong=\"H4428\"* within|strong=\"H1004\"* the|strong=\"H3605\"* palace|strong=\"H1004\"* and|strong=\"H3068\"* said, “We|strong=\"H3605\"* have|strong=\"H3068\"* cleansed|strong=\"H2891\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, including|strong=\"H3605\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* of|strong=\"H4428\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* with|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* table|strong=\"H7979\"* of|strong=\"H4428\"* show bread with|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 19, + "text": "Moreover, we|strong=\"H3068\"* have|strong=\"H3068\"* prepared|strong=\"H3559\"* and|strong=\"H3068\"* sanctified|strong=\"H6942\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* which|strong=\"H3068\"* King|strong=\"H4428\"* Ahaz threw away|strong=\"H3605\"* in|strong=\"H3068\"* his|strong=\"H3605\"* reign|strong=\"H4438\"* when|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* unfaithful|strong=\"H4604\"*. Behold|strong=\"H2005\"*, they|strong=\"H3068\"* are|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3068\"* king|strong=\"H4428\"* arose|strong=\"H7925\"* early|strong=\"H7925\"*, gathered the|strong=\"H3068\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3068\"* brought|strong=\"H5927\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"*, seven|strong=\"H7651\"* rams, seven|strong=\"H7651\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* seven|strong=\"H7651\"* male|strong=\"H3532\"* goats|strong=\"H5795\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* for|strong=\"H5921\"* the|strong=\"H5921\"* kingdom|strong=\"H4467\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* Judah|strong=\"H3063\"*. He|strong=\"H3068\"* commanded the|strong=\"H5921\"* priests|strong=\"H3548\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron to|strong=\"H3068\"* offer|strong=\"H5927\"* them|strong=\"H5921\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*." + }, + { + "verseNum": 22, + "text": "So they|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* bulls|strong=\"H1241\"*, and|strong=\"H3548\"* the|strong=\"H7819\"* priests|strong=\"H3548\"* received|strong=\"H6901\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* it|strong=\"H7819\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*. They|strong=\"H4196\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* rams and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*. They|strong=\"H4196\"* also|strong=\"H6901\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* lambs|strong=\"H3532\"* and|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood|strong=\"H1818\"* on|strong=\"H4196\"* the|strong=\"H7819\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5921\"* brought|strong=\"H5066\"* near|strong=\"H5066\"* the|strong=\"H6440\"* male|strong=\"H8163\"* goats|strong=\"H8163\"* for|strong=\"H5921\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H6440\"* assembly|strong=\"H6951\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* laid|strong=\"H5564\"* their|strong=\"H5564\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* killed|strong=\"H7819\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* made|strong=\"H3722\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* with|strong=\"H5921\"* their|strong=\"H3605\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, to|strong=\"H3478\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded that|strong=\"H3588\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3478\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"* should|strong=\"H3588\"* be|strong=\"H3478\"* made|strong=\"H3722\"* for|strong=\"H3588\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H3588\"* set|strong=\"H5975\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* cymbals|strong=\"H4700\"*, with|strong=\"H1004\"* stringed instruments, and|strong=\"H3068\"* with|strong=\"H1004\"* harps|strong=\"H3658\"*, according|strong=\"H3027\"* to|strong=\"H3068\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* David|strong=\"H1732\"*, of|strong=\"H4428\"* Gad|strong=\"H1410\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"*, and|strong=\"H3068\"* Nathan|strong=\"H5416\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* was|strong=\"H3068\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* by|strong=\"H3027\"* his|strong=\"H3068\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H5975\"* Levites|strong=\"H3881\"* stood|strong=\"H5975\"* with|strong=\"H3548\"* David|strong=\"H1732\"*’s instruments|strong=\"H3627\"*, and|strong=\"H3548\"* the|strong=\"H5975\"* priests|strong=\"H3548\"* with|strong=\"H3548\"* the|strong=\"H5975\"* trumpets|strong=\"H2689\"*." + }, + { + "verseNum": 27, + "text": "Hezekiah|strong=\"H2396\"* commanded them|strong=\"H5921\"* to|strong=\"H3478\"* offer|strong=\"H5927\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* on|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*. When|strong=\"H6256\"* the|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* began|strong=\"H2490\"*, Yahweh|strong=\"H3068\"*’s song|strong=\"H7892\"* also|strong=\"H3068\"* began|strong=\"H2490\"*, along|strong=\"H5921\"* with|strong=\"H3068\"* the|strong=\"H5921\"* trumpets|strong=\"H2689\"* and|strong=\"H3478\"* instruments|strong=\"H3627\"* of|strong=\"H4428\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 28, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* worshiped|strong=\"H7812\"*, the|strong=\"H3605\"* singers|strong=\"H7891\"* sang|strong=\"H7891\"*, and|strong=\"H5930\"* the|strong=\"H3605\"* trumpeters|strong=\"H2689\"* sounded|strong=\"H2690\"*. All|strong=\"H3605\"* this|strong=\"H3605\"* continued until|strong=\"H5704\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* was|strong=\"H3605\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3615\"* they|strong=\"H3605\"* had|strong=\"H4428\"* finished|strong=\"H3615\"* offering|strong=\"H5927\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4428\"* present|strong=\"H4672\"* with|strong=\"H5927\"* him|strong=\"H4672\"* bowed|strong=\"H7812\"* themselves|strong=\"H7812\"* and|strong=\"H4428\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 30, + "text": "Moreover Hezekiah|strong=\"H2396\"* the|strong=\"H3068\"* king|strong=\"H4428\"* and|strong=\"H3068\"* the|strong=\"H3068\"* princes|strong=\"H8269\"* commanded the|strong=\"H3068\"* Levites|strong=\"H3881\"* to|strong=\"H5704\"* sing|strong=\"H1984\"* praises|strong=\"H1984\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* words|strong=\"H1697\"* of|strong=\"H4428\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* of|strong=\"H4428\"* Asaph the|strong=\"H3068\"* seer|strong=\"H2374\"*. They|strong=\"H3068\"* sang|strong=\"H1984\"* praises|strong=\"H1984\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* bowed|strong=\"H7812\"* their|strong=\"H3068\"* heads|strong=\"H6915\"* and|strong=\"H3068\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H6030\"* Hezekiah|strong=\"H2396\"* answered|strong=\"H6030\"*, “Now|strong=\"H6258\"* you|strong=\"H3605\"* have|strong=\"H3068\"* consecrated|strong=\"H4390\"* yourselves|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. Come|strong=\"H5066\"* near|strong=\"H5066\"* and|strong=\"H3068\"* bring|strong=\"H5066\"* sacrifices|strong=\"H2077\"* and|strong=\"H3068\"* thank|strong=\"H8426\"* offerings|strong=\"H5930\"* into|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” The|strong=\"H3605\"* assembly|strong=\"H6951\"* brought|strong=\"H5066\"* in|strong=\"H3068\"* sacrifices|strong=\"H2077\"* and|strong=\"H3068\"* thank|strong=\"H8426\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* as|strong=\"H3068\"* many as|strong=\"H3068\"* were|strong=\"H3027\"* of|strong=\"H1004\"* a|strong=\"H3068\"* willing|strong=\"H5081\"* heart|strong=\"H3820\"* brought|strong=\"H5066\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* which|strong=\"H3068\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* brought|strong=\"H1961\"* was|strong=\"H3068\"* seventy|strong=\"H7657\"* bulls|strong=\"H1241\"*, one|strong=\"H3532\"* hundred|strong=\"H3967\"* rams, and|strong=\"H3967\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* lambs|strong=\"H3532\"*. All|strong=\"H3605\"* these|strong=\"H3605\"* were|strong=\"H1961\"* for|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H6942\"* consecrated|strong=\"H6942\"* things|strong=\"H7969\"* were|strong=\"H6629\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* head of|strong=\"H6629\"* cattle|strong=\"H1241\"* and|strong=\"H3967\"* three|strong=\"H7969\"* thousand sheep|strong=\"H6629\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* were|strong=\"H1961\"* too|strong=\"H1961\"* few|strong=\"H4592\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* skin|strong=\"H6584\"* all|strong=\"H3605\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*. Therefore|strong=\"H3588\"* their|strong=\"H3605\"* brothers the|strong=\"H3605\"* Levites|strong=\"H3881\"* helped|strong=\"H2388\"* them|strong=\"H3615\"* until|strong=\"H5704\"* the|strong=\"H3605\"* work|strong=\"H4399\"* was|strong=\"H1961\"* ended|strong=\"H1961\"*, and|strong=\"H3548\"* until|strong=\"H5704\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* had|strong=\"H1961\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* more|strong=\"H3808\"* upright|strong=\"H3477\"* in|strong=\"H3477\"* heart|strong=\"H3824\"* to|strong=\"H5704\"* sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"* than|strong=\"H3808\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 35, + "text": "Also|strong=\"H1571\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* were|strong=\"H1004\"* in|strong=\"H3068\"* abundance|strong=\"H7230\"*, with|strong=\"H1004\"* the|strong=\"H3068\"* fat|strong=\"H2459\"* of|strong=\"H1004\"* the|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* with|strong=\"H1004\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"* for|strong=\"H3068\"* every|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*. So|strong=\"H1571\"* the|strong=\"H3068\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* was|strong=\"H3068\"* set|strong=\"H3559\"* in|strong=\"H3068\"* order|strong=\"H3559\"*." + }, + { + "verseNum": 36, + "text": "Hezekiah|strong=\"H2396\"* and|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* of|strong=\"H1697\"* that|strong=\"H3588\"* which|strong=\"H1697\"* God had|strong=\"H1961\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1961\"* done|strong=\"H1961\"* suddenly|strong=\"H6597\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Hezekiah|strong=\"H2396\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* wrote|strong=\"H3789\"* letters also|strong=\"H1571\"* to|strong=\"H3478\"* Ephraim and|strong=\"H3063\"* Manasseh|strong=\"H4519\"*, that|strong=\"H3605\"* they|strong=\"H3068\"* should|strong=\"H3068\"* come|strong=\"H3478\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3478\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* taken|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H6213\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* in|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* in|strong=\"H6213\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* keep|strong=\"H6213\"* it|strong=\"H1931\"* at|strong=\"H6213\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* had|strong=\"H3588\"* not|strong=\"H3808\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* in|strong=\"H6213\"* sufficient number, and|strong=\"H3548\"* the|strong=\"H3588\"* people|strong=\"H5971\"* had|strong=\"H3588\"* not|strong=\"H3808\"* gathered|strong=\"H6213\"* themselves|strong=\"H6942\"* together|strong=\"H5971\"* to|strong=\"H3201\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* right|strong=\"H3474\"* in|strong=\"H4428\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H6213\"* they|strong=\"H3588\"* established|strong=\"H5975\"* a|strong=\"H3068\"* decree|strong=\"H1697\"* to|strong=\"H5704\"* make|strong=\"H6213\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, from|strong=\"H3478\"* Beersheba even|strong=\"H5704\"* to|strong=\"H5704\"* Dan|strong=\"H1835\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3068\"* come|strong=\"H5674\"* to|strong=\"H5704\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* it|strong=\"H3588\"* in|strong=\"H3478\"* great|strong=\"H7230\"* numbers|strong=\"H7230\"* in|strong=\"H3478\"* the|strong=\"H3605\"* way|strong=\"H1697\"* it|strong=\"H3588\"* is|strong=\"H3068\"* written|strong=\"H3789\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H7725\"* the|strong=\"H3605\"* couriers|strong=\"H7323\"* went|strong=\"H3212\"* with|strong=\"H3068\"* the|strong=\"H3605\"* letters from|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H1121\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, according|strong=\"H3027\"* to|strong=\"H7725\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “You|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Abraham, Isaac|strong=\"H3327\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* he|strong=\"H3068\"* may|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* remnant|strong=\"H7604\"* of|strong=\"H1121\"* you|strong=\"H3605\"* that|strong=\"H3605\"* have|strong=\"H3068\"* escaped|strong=\"H6413\"* out|strong=\"H3212\"* of|strong=\"H1121\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Assyria." + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"H1961\"* like|strong=\"H1961\"* your|strong=\"H3068\"* fathers and|strong=\"H3068\"* like|strong=\"H1961\"* your|strong=\"H3068\"* brothers, who|strong=\"H3068\"* trespassed|strong=\"H4603\"* against|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, so|strong=\"H1961\"* that|strong=\"H7200\"* he|strong=\"H3068\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H3068\"* desolation|strong=\"H8047\"*, as|strong=\"H1961\"* you|strong=\"H5414\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* don’t be|strong=\"H3027\"* stiff-necked, as|strong=\"H3068\"* your|strong=\"H3068\"* fathers were|strong=\"H3027\"*, but|strong=\"H6258\"* yield|strong=\"H5414\"* yourselves|strong=\"H3027\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* enter into|strong=\"H7725\"* his|strong=\"H5414\"* sanctuary|strong=\"H4720\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* sanctified|strong=\"H6942\"* forever|strong=\"H5769\"*, and|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3068\"* his|strong=\"H5414\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H4480\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* children|strong=\"H1121\"* will|strong=\"H3068\"* find compassion|strong=\"H7356\"* with|strong=\"H3068\"* those|strong=\"H4480\"* who|strong=\"H3068\"* led|strong=\"H6440\"* them|strong=\"H5921\"* captive|strong=\"H7617\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* come|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2063\"* land|strong=\"H6440\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H1121\"* merciful|strong=\"H7349\"*, and|strong=\"H1121\"* will|strong=\"H3068\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H5493\"* his|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H4480\"* you|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H1961\"* the|strong=\"H5921\"* couriers|strong=\"H7323\"* passed|strong=\"H5674\"* from|strong=\"H5921\"* city|strong=\"H5892\"* to|strong=\"H5704\"* city|strong=\"H5892\"* through|strong=\"H5674\"* the|strong=\"H5921\"* country of|strong=\"H5892\"* Ephraim and|strong=\"H5892\"* Manasseh|strong=\"H4519\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Zebulun|strong=\"H2074\"*, but|strong=\"H1961\"* people ridiculed them|strong=\"H5921\"* and|strong=\"H5892\"* mocked|strong=\"H3932\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Nevertheless some men of|strong=\"H3389\"* Asher, Manasseh|strong=\"H4519\"*, and|strong=\"H3389\"* Zebulun|strong=\"H2074\"* humbled|strong=\"H3665\"* themselves|strong=\"H3665\"* and|strong=\"H3389\"* came to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "Also|strong=\"H1571\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* God|strong=\"H3068\"* came|strong=\"H1961\"* on|strong=\"H3027\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H1961\"* heart|strong=\"H3820\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* the|strong=\"H5414\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H3063\"* of|strong=\"H4428\"* the|strong=\"H5414\"* princes|strong=\"H8269\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "Many|strong=\"H7227\"* people|strong=\"H5971\"* assembled|strong=\"H6951\"* at|strong=\"H2320\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H6951\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* in|strong=\"H6213\"* the|strong=\"H6213\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3605\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* that|strong=\"H3605\"* were|strong=\"H3605\"* in|strong=\"H5493\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H6965\"* they|strong=\"H3605\"* took|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* for|strong=\"H4196\"* incense|strong=\"H6999\"* and|strong=\"H6965\"* threw|strong=\"H7993\"* them|strong=\"H7993\"* into|strong=\"H7993\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3068\"* they|strong=\"H3068\"* killed|strong=\"H7819\"* the|strong=\"H3068\"* Passover|strong=\"H6453\"* on|strong=\"H3068\"* the|strong=\"H3068\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H3068\"* second|strong=\"H8145\"* month|strong=\"H2320\"*. The|strong=\"H3068\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3068\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* ashamed|strong=\"H3637\"*, and|strong=\"H3068\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*, and|strong=\"H3068\"* brought|strong=\"H3548\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H5921\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H3027\"* after|strong=\"H5921\"* their|strong=\"H5921\"* order|strong=\"H4941\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3027\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man of|strong=\"H3027\"* God|strong=\"H3027\"*. The|strong=\"H5921\"* priests|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H3548\"* they|strong=\"H5921\"* received|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* there|strong=\"H3605\"* were|strong=\"H3881\"* many|strong=\"H7227\"* in|strong=\"H5921\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* who|strong=\"H3605\"* had|strong=\"H3068\"* not|strong=\"H3808\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*; therefore|strong=\"H5921\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H3068\"* killing|strong=\"H7821\"* the|strong=\"H3605\"* Passovers|strong=\"H6453\"* for|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* was|strong=\"H3068\"* not|strong=\"H3808\"* clean|strong=\"H2889\"*, to|strong=\"H3068\"* sanctify|strong=\"H6942\"* them|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* multitude|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, even|strong=\"H3588\"* many|strong=\"H7227\"* of|strong=\"H3068\"* Ephraim, Manasseh|strong=\"H4519\"*, Issachar|strong=\"H3485\"*, and|strong=\"H3068\"* Zebulun|strong=\"H2074\"*, had|strong=\"H3068\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* themselves|strong=\"H2896\"*, yet|strong=\"H3588\"* they|strong=\"H3588\"* ate the|strong=\"H5921\"* Passover|strong=\"H6453\"* other than|strong=\"H2896\"* the|strong=\"H5921\"* way|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"*. For|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* had|strong=\"H3068\"* prayed|strong=\"H6419\"* for|strong=\"H3588\"* them|strong=\"H5921\"*, saying, “May|strong=\"H3068\"* the|strong=\"H5921\"* good|strong=\"H2896\"* Yahweh|strong=\"H3068\"* pardon|strong=\"H3722\"* everyone" + }, + { + "verseNum": 19, + "text": "who|strong=\"H3605\"* sets his|strong=\"H3605\"* heart|strong=\"H3824\"* to|strong=\"H3068\"* seek|strong=\"H1875\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3605\"* fathers, even|strong=\"H3808\"* if they|strong=\"H3068\"* aren’t clean|strong=\"H2893\"* according to|strong=\"H3068\"* the|strong=\"H3605\"* purification|strong=\"H2893\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sanctuary|strong=\"H6944\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H3068\"* healed|strong=\"H7495\"* the|strong=\"H8085\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* were|strong=\"H3478\"* present|strong=\"H4672\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H3068\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*. The|strong=\"H6213\"* Levites|strong=\"H3881\"* and|strong=\"H1121\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, singing with|strong=\"H3068\"* loud|strong=\"H1419\"* instruments|strong=\"H3627\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Hezekiah|strong=\"H2396\"* spoke|strong=\"H1696\"* encouragingly|strong=\"H5921\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* had|strong=\"H3068\"* good|strong=\"H2896\"* understanding|strong=\"H3820\"* in|strong=\"H5921\"* the|strong=\"H3605\"* service of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. So|strong=\"H1696\"* they|strong=\"H3117\"* ate throughout|strong=\"H3605\"* the|strong=\"H3605\"* feast|strong=\"H4150\"* for|strong=\"H5921\"* the|strong=\"H3605\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, offering|strong=\"H8002\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* making|strong=\"H3605\"* confession|strong=\"H3034\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* took|strong=\"H6951\"* counsel|strong=\"H3289\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* another seven|strong=\"H7651\"* days|strong=\"H3117\"*, and|strong=\"H3117\"* they|strong=\"H3117\"* kept|strong=\"H6213\"* another seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H6213\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* gave|strong=\"H7311\"* to|strong=\"H4428\"* the|strong=\"H3588\"* assembly|strong=\"H6951\"* for|strong=\"H3588\"* offerings|strong=\"H3588\"* one|strong=\"H3588\"* thousand bulls|strong=\"H6499\"* and|strong=\"H3063\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*; and|strong=\"H3063\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* gave|strong=\"H7311\"* to|strong=\"H4428\"* the|strong=\"H3588\"* assembly|strong=\"H6951\"* a|strong=\"H3068\"* thousand bulls|strong=\"H6499\"* and|strong=\"H3063\"* ten|strong=\"H6235\"* thousand sheep|strong=\"H6629\"*; and|strong=\"H3063\"* a|strong=\"H3068\"* great|strong=\"H7230\"* number|strong=\"H7230\"* of|strong=\"H4428\"* priests|strong=\"H3548\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, with|strong=\"H3427\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* who|strong=\"H3605\"* came|strong=\"H3478\"* out|strong=\"H3605\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* foreigners|strong=\"H1616\"* who|strong=\"H3605\"* came|strong=\"H3478\"* out|strong=\"H3605\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Judah|strong=\"H3063\"*, rejoiced|strong=\"H8055\"*." + }, + { + "verseNum": 26, + "text": "So|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* great|strong=\"H1419\"* joy|strong=\"H8057\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H3117\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* there|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* like|strong=\"H1961\"* this|strong=\"H2063\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H6965\"* the|strong=\"H8085\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* arose|strong=\"H6965\"* and|strong=\"H6965\"* blessed|strong=\"H1288\"* the|strong=\"H8085\"* people|strong=\"H5971\"*. Their|strong=\"H8085\"* voice|strong=\"H6963\"* was|strong=\"H6963\"* heard|strong=\"H8085\"*, and|strong=\"H6965\"* their|strong=\"H8085\"* prayer|strong=\"H8605\"* came|strong=\"H5971\"* up|strong=\"H6965\"* to|strong=\"H8085\"* his|strong=\"H8085\"* holy|strong=\"H6944\"* habitation|strong=\"H4583\"*, even to|strong=\"H8085\"* heaven|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* when|strong=\"H3615\"* all|strong=\"H3605\"* this|strong=\"H2063\"* was|strong=\"H3478\"* finished|strong=\"H3615\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* present|strong=\"H4672\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* broke|strong=\"H7665\"* the|strong=\"H3605\"* pillars|strong=\"H4676\"* in|strong=\"H3478\"* pieces|strong=\"H7665\"*, cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H3605\"* Asherah poles, and|strong=\"H1121\"* broke|strong=\"H7665\"* down|strong=\"H5422\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H1121\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* out|strong=\"H3318\"* of|strong=\"H1121\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, also|strong=\"H3478\"* in|strong=\"H3478\"* Ephraim and|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, until|strong=\"H5704\"* they|strong=\"H5704\"* had|strong=\"H3478\"* destroyed|strong=\"H7665\"* them|strong=\"H7725\"* all|strong=\"H3605\"*. Then|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* returned|strong=\"H7725\"*, every|strong=\"H3605\"* man|strong=\"H1121\"* to|strong=\"H5704\"* his|strong=\"H3605\"* possession, into|strong=\"H7725\"* their|strong=\"H3605\"* own cities|strong=\"H5892\"*." + }, + { + "verseNum": 2, + "text": "Hezekiah|strong=\"H2396\"* appointed|strong=\"H5975\"* the|strong=\"H5921\"* divisions|strong=\"H4256\"* of|strong=\"H3068\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* after|strong=\"H5921\"* their|strong=\"H3068\"* divisions|strong=\"H4256\"*, every|strong=\"H5975\"* man|strong=\"H8179\"* according|strong=\"H5921\"* to|strong=\"H3068\"* his|strong=\"H3068\"* service|strong=\"H5656\"*, both|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, for|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H3068\"* for|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3068\"* minister|strong=\"H8334\"*, to|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* praise|strong=\"H1984\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s camp|strong=\"H4264\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* also|strong=\"H3068\"* appointed|strong=\"H4150\"* the|strong=\"H3068\"* king|strong=\"H4428\"*’s portion|strong=\"H4521\"* of|strong=\"H4428\"* his|strong=\"H3068\"* possessions|strong=\"H7399\"* for|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*: for|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* evening|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* for|strong=\"H3068\"* the|strong=\"H3068\"* Sabbaths|strong=\"H7676\"*, for|strong=\"H3068\"* the|strong=\"H3068\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H3068\"* set|strong=\"H4150\"* feasts|strong=\"H4150\"*, as|strong=\"H3068\"* it|strong=\"H1242\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Moreover he|strong=\"H3068\"* commanded the|strong=\"H5414\"* people|strong=\"H5971\"* who|strong=\"H5971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* give|strong=\"H5414\"* the|strong=\"H5414\"* portion|strong=\"H4521\"* of|strong=\"H3068\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* might|strong=\"H3068\"* give|strong=\"H5414\"* themselves|strong=\"H2388\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1697\"* soon as|strong=\"H1697\"* the|strong=\"H3605\"* commandment|strong=\"H1697\"* went|strong=\"H3478\"* out|strong=\"H6555\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* gave|strong=\"H7235\"* in|strong=\"H3478\"* abundance|strong=\"H7230\"* the|strong=\"H3605\"* first|strong=\"H1121\"* fruits|strong=\"H7225\"* of|strong=\"H1121\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, oil|strong=\"H3323\"*, honey|strong=\"H1706\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*; and|strong=\"H1121\"* they|strong=\"H1697\"* brought|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* all|strong=\"H3605\"* things|strong=\"H1697\"* abundantly|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, also|strong=\"H1571\"* brought|strong=\"H5414\"* in|strong=\"H3427\"* the|strong=\"H5414\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* cattle|strong=\"H1241\"* and|strong=\"H1121\"* sheep|strong=\"H6629\"*, and|strong=\"H1121\"* the|strong=\"H5414\"* tithe|strong=\"H4643\"* of|strong=\"H1121\"* dedicated|strong=\"H6942\"* things|strong=\"H6944\"* which|strong=\"H3068\"* were|strong=\"H3478\"* consecrated|strong=\"H6942\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* laid|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3427\"* heaps|strong=\"H6194\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H2320\"* the|strong=\"H3615\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, they|strong=\"H2320\"* began|strong=\"H2490\"* to|strong=\"H2490\"* lay|strong=\"H3245\"* the|strong=\"H3615\"* foundation|strong=\"H3245\"* of|strong=\"H3615\"* the|strong=\"H3615\"* heaps|strong=\"H6194\"*, and|strong=\"H2320\"* finished|strong=\"H3615\"* them|strong=\"H3615\"* in|strong=\"H2320\"* the|strong=\"H3615\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* and|strong=\"H3478\"* the|strong=\"H7200\"* princes|strong=\"H8269\"* came|strong=\"H3478\"* and|strong=\"H3478\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* heaps|strong=\"H6194\"*, they|strong=\"H3068\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"* and|strong=\"H3478\"* his|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3548\"* Hezekiah|strong=\"H2396\"* questioned|strong=\"H1875\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* about|strong=\"H5921\"* the|strong=\"H5921\"* heaps|strong=\"H6194\"*." + }, + { + "verseNum": 10, + "text": "Azariah|strong=\"H5838\"* the|strong=\"H3588\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Zadok|strong=\"H6659\"*, answered him|strong=\"H1288\"* and|strong=\"H3068\"* said, “Since|strong=\"H3588\"* people|strong=\"H5971\"* began|strong=\"H2490\"* to|strong=\"H5704\"* bring the|strong=\"H3588\"* offerings|strong=\"H8641\"* into|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, we|strong=\"H3068\"* have|strong=\"H3068\"* eaten|strong=\"H2490\"* and|strong=\"H3068\"* had|strong=\"H3068\"* enough|strong=\"H7646\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* plenty|strong=\"H7646\"* left|strong=\"H3498\"* over|strong=\"H3498\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* his|strong=\"H3068\"* people|strong=\"H5971\"*; and|strong=\"H3068\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* left|strong=\"H3498\"* is|strong=\"H3068\"* this|strong=\"H2088\"* great|strong=\"H7230\"* store|strong=\"H1995\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* commanded them|strong=\"H3068\"* to|strong=\"H3068\"* prepare|strong=\"H3559\"* rooms|strong=\"H3957\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* prepared|strong=\"H3559\"* them|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* brought in|strong=\"H5921\"* the|strong=\"H5921\"* offerings|strong=\"H8641\"*, the|strong=\"H5921\"* tithes|strong=\"H4643\"*, and|strong=\"H6944\"* the|strong=\"H5921\"* dedicated|strong=\"H6944\"* things|strong=\"H6944\"* faithfully. Conaniah|strong=\"H3562\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"* was|strong=\"H3881\"* ruler|strong=\"H5057\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H6944\"* Shimei|strong=\"H8096\"* his|strong=\"H5921\"* brother was|strong=\"H3881\"* second|strong=\"H4932\"*." + }, + { + "verseNum": 13, + "text": "Jehiel|strong=\"H3171\"*, Azaziah|strong=\"H5812\"*, Nahath|strong=\"H5184\"*, Asahel|strong=\"H6214\"*, Jerimoth|strong=\"H3406\"*, Jozabad|strong=\"H3107\"*, Eliel, Ismachiah|strong=\"H3253\"*, Mahath|strong=\"H4287\"*, and|strong=\"H4428\"* Benaiah|strong=\"H1141\"* were|strong=\"H3027\"* overseers|strong=\"H6496\"* under|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Conaniah|strong=\"H3562\"* and|strong=\"H4428\"* Shimei|strong=\"H8096\"* his|strong=\"H3027\"* brother, by|strong=\"H3027\"* the|strong=\"H3027\"* appointment|strong=\"H4662\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* the|strong=\"H3027\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Azariah|strong=\"H5838\"* the|strong=\"H3027\"* ruler|strong=\"H5057\"* of|strong=\"H4428\"* God|strong=\"H3027\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Kore|strong=\"H6981\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imnah|strong=\"H3232\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"*, the|strong=\"H5921\"* gatekeeper|strong=\"H7778\"* at|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H4217\"* gate, was|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* free will|strong=\"H3068\"* offerings|strong=\"H5071\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* distribute|strong=\"H5414\"* Yahweh|strong=\"H3068\"*’s offerings|strong=\"H5071\"* and|strong=\"H1121\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 15, + "text": "Under|strong=\"H5921\"* him|strong=\"H5414\"* were|strong=\"H3027\"* Eden|strong=\"H5731\"*, Miniamin|strong=\"H4509\"*, Jeshua|strong=\"H3442\"*, Shemaiah|strong=\"H8098\"*, Amariah, and|strong=\"H1419\"* Shecaniah|strong=\"H7935\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, in|strong=\"H5921\"* their|strong=\"H5414\"* office of|strong=\"H3027\"* trust, to|strong=\"H5921\"* give|strong=\"H5414\"* to|strong=\"H5921\"* their|strong=\"H5414\"* brothers by|strong=\"H3027\"* divisions|strong=\"H4256\"*, to|strong=\"H5921\"* the|strong=\"H5921\"* great|strong=\"H1419\"* as|strong=\"H5892\"* well as|strong=\"H5892\"* to|strong=\"H5921\"* the|strong=\"H5921\"* small|strong=\"H6996\"*;" + }, + { + "verseNum": 16, + "text": "in|strong=\"H8141\"* addition to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H8141\"* genealogy|strong=\"H3187\"* of|strong=\"H1121\"* males|strong=\"H2145\"*, from|strong=\"H1121\"* three|strong=\"H7969\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, even|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* entered into|strong=\"H1697\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, as|strong=\"H1697\"* the|strong=\"H3605\"* duty|strong=\"H1697\"* of|strong=\"H1121\"* every|strong=\"H3605\"* day|strong=\"H3117\"* required|strong=\"H3117\"*, for|strong=\"H3068\"* their|strong=\"H3605\"* service|strong=\"H5656\"* in|strong=\"H8141\"* their|strong=\"H3605\"* offices|strong=\"H4931\"* according to|strong=\"H3068\"* their|strong=\"H3605\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H3548\"* were|strong=\"H1121\"* listed|strong=\"H1004\"* by|strong=\"H8141\"* genealogy|strong=\"H3188\"* of|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"* by|strong=\"H8141\"* their|strong=\"H3548\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* from|strong=\"H1121\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, in|strong=\"H8141\"* their|strong=\"H3548\"* offices|strong=\"H4931\"* by|strong=\"H8141\"* their|strong=\"H3548\"* divisions|strong=\"H4256\"*;" + }, + { + "verseNum": 18, + "text": "and|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed by|strong=\"H3605\"* genealogy|strong=\"H3188\"* of|strong=\"H1121\"* all|strong=\"H3605\"* their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, their|strong=\"H3605\"* wives, their|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H3605\"* daughters|strong=\"H1323\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* congregation|strong=\"H6951\"*; for|strong=\"H3588\"* in|strong=\"H1121\"* their|strong=\"H3605\"* office of|strong=\"H1121\"* trust they|strong=\"H3588\"* sanctified|strong=\"H6942\"* themselves|strong=\"H6942\"* in|strong=\"H1121\"* holiness|strong=\"H6944\"*." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H8034\"* for|strong=\"H8034\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3605\"* priests|strong=\"H3548\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5892\"* the|strong=\"H3605\"* fields|strong=\"H7704\"* of|strong=\"H1121\"* the|strong=\"H3605\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* of|strong=\"H1121\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, in|strong=\"H5892\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, there|strong=\"H3605\"* were|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H1121\"* mentioned by|strong=\"H3187\"* name|strong=\"H8034\"* to|strong=\"H5414\"* give|strong=\"H5414\"* portions|strong=\"H4490\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* males|strong=\"H2145\"* among|strong=\"H8034\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* to|strong=\"H5414\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1121\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"* among|strong=\"H8034\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 20, + "text": "Hezekiah|strong=\"H2396\"* did|strong=\"H6213\"* so|strong=\"H6213\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* he|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* good|strong=\"H2896\"*, right|strong=\"H3477\"*, and|strong=\"H3063\"* faithful|strong=\"H2896\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H6213\"* every|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3605\"* he|strong=\"H6213\"* began|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, and|strong=\"H1004\"* in|strong=\"H6213\"* the|strong=\"H3605\"* commandments|strong=\"H4687\"*, to|strong=\"H6213\"* seek|strong=\"H1875\"* his|strong=\"H3605\"* God, he|strong=\"H6213\"* did|strong=\"H6213\"* it|strong=\"H6213\"* with|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1004\"* prospered|strong=\"H6743\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H4428\"* things|strong=\"H1697\"* and|strong=\"H3063\"* this|strong=\"H1697\"* faithfulness, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria came|strong=\"H1697\"*, entered into|strong=\"H5921\"* Judah|strong=\"H3063\"*, encamped|strong=\"H2583\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, and|strong=\"H3063\"* intended to|strong=\"H5921\"* win|strong=\"H1234\"* them|strong=\"H5921\"* for|strong=\"H5921\"* himself." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Sennacherib|strong=\"H5576\"* had|strong=\"H3588\"* come, and|strong=\"H3389\"* that|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H3389\"* planning to|strong=\"H5921\"* fight|strong=\"H4421\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H5892\"* took|strong=\"H3289\"* counsel|strong=\"H3289\"* with|strong=\"H5973\"* his|strong=\"H5973\"* princes|strong=\"H8269\"* and|strong=\"H5892\"* his|strong=\"H5973\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* to|strong=\"H4325\"* stop|strong=\"H5640\"* the|strong=\"H2351\"* waters|strong=\"H4325\"* of|strong=\"H8269\"* the|strong=\"H2351\"* springs which|strong=\"H5869\"* were|strong=\"H4325\"* outside|strong=\"H2351\"* of|strong=\"H8269\"* the|strong=\"H2351\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* they|strong=\"H3289\"* helped|strong=\"H5826\"* him|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H4428\"* many|strong=\"H7227\"* people|strong=\"H5971\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* and|strong=\"H4428\"* they|strong=\"H4100\"* stopped|strong=\"H5640\"* all|strong=\"H3605\"* the|strong=\"H3605\"* springs|strong=\"H4599\"* and|strong=\"H4428\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* that|strong=\"H5971\"* flowed|strong=\"H7857\"* through|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land, saying, “Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria come|strong=\"H4672\"*, and|strong=\"H4428\"* find|strong=\"H4672\"* abundant|strong=\"H7227\"* water|strong=\"H4325\"*?”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H6213\"* took|strong=\"H2388\"* courage|strong=\"H2388\"*, built|strong=\"H1129\"* up|strong=\"H5927\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* that|strong=\"H3605\"* was|strong=\"H1732\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H5892\"* raised|strong=\"H5927\"* it|strong=\"H5921\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* towers|strong=\"H4026\"*, with|strong=\"H6213\"* the|strong=\"H3605\"* other|strong=\"H3605\"* wall|strong=\"H2346\"* outside|strong=\"H2351\"*, and|strong=\"H5892\"* strengthened|strong=\"H2388\"* Millo|strong=\"H4407\"* in|strong=\"H5921\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, and|strong=\"H5892\"* made|strong=\"H6213\"* weapons|strong=\"H7973\"* and|strong=\"H5892\"* shields|strong=\"H4043\"* in|strong=\"H5921\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* set|strong=\"H5414\"* captains|strong=\"H8269\"* of|strong=\"H8269\"* war|strong=\"H4421\"* over|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, gathered|strong=\"H6908\"* them|strong=\"H5414\"* together|strong=\"H6908\"* to|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H5414\"* at|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8269\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H5971\"* spoke|strong=\"H1696\"* encouragingly|strong=\"H5921\"* to|strong=\"H1696\"* them|strong=\"H5414\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 7, + "text": "“Be|strong=\"H4428\"* strong|strong=\"H2388\"* and|strong=\"H4428\"* courageous|strong=\"H2388\"*. Don’t be|strong=\"H4428\"* afraid|strong=\"H3372\"* or|strong=\"H4428\"* dismayed|strong=\"H2865\"* because|strong=\"H3588\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, nor|strong=\"H3372\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H1995\"* who|strong=\"H3605\"* is|strong=\"H3605\"* with|strong=\"H5973\"* him|strong=\"H6440\"*; for|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* greater|strong=\"H7227\"* one|strong=\"H3605\"* with|strong=\"H5973\"* us|strong=\"H6440\"* than|strong=\"H3588\"* with|strong=\"H5973\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "An|strong=\"H3068\"* arm|strong=\"H2220\"* of|strong=\"H4428\"* flesh|strong=\"H1320\"* is|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5921\"*, but|strong=\"H5971\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* us|strong=\"H5921\"* to|strong=\"H3068\"* help|strong=\"H5826\"* us|strong=\"H5921\"* and|strong=\"H3063\"* to|strong=\"H3068\"* fight|strong=\"H3898\"* our|strong=\"H3068\"* battles|strong=\"H4421\"*.” The|strong=\"H5921\"* people|strong=\"H5971\"* rested|strong=\"H5564\"* themselves|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 9, + "text": "After|strong=\"H5921\"* this|strong=\"H2088\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*, (now|strong=\"H2088\"* he|strong=\"H1931\"* was|strong=\"H1931\"* attacking Lachish|strong=\"H3923\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* forces|strong=\"H4475\"* were|strong=\"H3063\"* with|strong=\"H5973\"* him|strong=\"H5921\"*), to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H7971\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* were|strong=\"H3063\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, saying," + }, + { + "verseNum": 10, + "text": "Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, “In|strong=\"H3427\"* whom do|strong=\"H4100\"* you|strong=\"H5921\"* trust, that|strong=\"H4428\"* you|strong=\"H5921\"* remain|strong=\"H3427\"* under|strong=\"H5921\"* siege|strong=\"H4692\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 11, + "text": "Doesn’t Hezekiah|strong=\"H2396\"* persuade|strong=\"H5496\"* you|strong=\"H5414\"* to|strong=\"H4191\"* give|strong=\"H5414\"* you|strong=\"H5414\"* over|strong=\"H4428\"* to|strong=\"H4191\"* die|strong=\"H4191\"* by|strong=\"H3068\"* famine|strong=\"H7458\"* and|strong=\"H3068\"* by|strong=\"H3068\"* thirst|strong=\"H6772\"*, saying, ‘Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H5414\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria’?" + }, + { + "verseNum": 12, + "text": "Hasn’t the|strong=\"H6440\"* same|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H6440\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* his|strong=\"H6440\"* altars|strong=\"H4196\"*, and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, saying, ‘You|strong=\"H6440\"* shall|strong=\"H3063\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* one|strong=\"H3808\"* altar|strong=\"H4196\"*, and|strong=\"H3063\"* you|strong=\"H6440\"* shall|strong=\"H3063\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* on|strong=\"H5921\"* it|strong=\"H1931\"*’?" + }, + { + "verseNum": 13, + "text": "Don’t you|strong=\"H3605\"* know|strong=\"H3045\"* what|strong=\"H4100\"* I|strong=\"H3045\"* and|strong=\"H3027\"* my|strong=\"H3605\"* fathers have|strong=\"H5971\"* done|strong=\"H6213\"* to|strong=\"H3201\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3605\"* lands? Were|strong=\"H5971\"* the|strong=\"H3605\"* gods of|strong=\"H3027\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3027\"* those|strong=\"H3605\"* lands in|strong=\"H6213\"* any|strong=\"H3605\"* way|strong=\"H3201\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* their|strong=\"H3605\"* land out|strong=\"H6213\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* was|strong=\"H3027\"* there|strong=\"H3605\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3027\"* those|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H4310\"* my|strong=\"H3605\"* fathers utterly|strong=\"H2763\"* destroyed|strong=\"H2763\"* that|strong=\"H3588\"* could|strong=\"H3201\"* deliver|strong=\"H5337\"* his|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* your|strong=\"H3605\"* God|strong=\"H4310\"* should|strong=\"H3588\"* be|strong=\"H3027\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t let|strong=\"H6258\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* persuade|strong=\"H5496\"* you|strong=\"H3588\"* in|strong=\"H3027\"* this|strong=\"H2063\"* way|strong=\"H2063\"*. Don’t believe him|strong=\"H3027\"*, for|strong=\"H3588\"* no|strong=\"H3808\"* god|strong=\"H3808\"* of|strong=\"H3027\"* any|strong=\"H3605\"* nation|strong=\"H1471\"* or|strong=\"H3808\"* kingdom|strong=\"H4467\"* was|strong=\"H4467\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* his|strong=\"H3605\"* people|strong=\"H5971\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H3605\"* fathers. How|strong=\"H3588\"* much|strong=\"H3027\"* less|strong=\"H3588\"* will|strong=\"H1471\"* your|strong=\"H3605\"* God|strong=\"H3808\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* out|strong=\"H5337\"* of|strong=\"H3027\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?”" + }, + { + "verseNum": 16, + "text": "His|strong=\"H3068\"* servants|strong=\"H5650\"* spoke|strong=\"H1696\"* yet|strong=\"H5750\"* more|strong=\"H5750\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H3068\"* against|strong=\"H5921\"* his|strong=\"H3068\"* servant|strong=\"H5650\"* Hezekiah|strong=\"H2396\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3651\"* also|strong=\"H3068\"* wrote|strong=\"H3789\"* letters|strong=\"H5612\"* insulting Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* speaking against|strong=\"H5921\"* him|strong=\"H5921\"*, saying, “As|strong=\"H3651\"* the|strong=\"H5921\"* gods of|strong=\"H3068\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H5921\"* lands, which|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H5921\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* his|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H5921\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 18, + "text": "They|strong=\"H5921\"* called|strong=\"H7121\"* out|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"* to|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* who|strong=\"H5971\"* were|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, to|strong=\"H5921\"* frighten|strong=\"H3372\"* them|strong=\"H5921\"* and|strong=\"H1419\"* to|strong=\"H5921\"* trouble them|strong=\"H5921\"*, that|strong=\"H5971\"* they|strong=\"H5921\"* might|strong=\"H4616\"* take|strong=\"H3920\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H5921\"* spoke|strong=\"H1696\"* of|strong=\"H3027\"* the|strong=\"H5921\"* God|strong=\"H3027\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* as|strong=\"H3389\"* of|strong=\"H3027\"* the|strong=\"H5921\"* gods of|strong=\"H3027\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* earth, which|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H5971\"*’s hands|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "Hezekiah|strong=\"H2396\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, prayed|strong=\"H6419\"* because|strong=\"H5921\"* of|strong=\"H1121\"* this|strong=\"H2063\"*, and|strong=\"H1121\"* cried|strong=\"H2199\"* to|strong=\"H5921\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* an|strong=\"H7971\"* angel|strong=\"H4397\"*, who|strong=\"H3605\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H4428\"* valor|strong=\"H2428\"*, the|strong=\"H3605\"* leaders|strong=\"H8269\"*, and|strong=\"H3068\"* captains|strong=\"H8269\"* in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. So|strong=\"H7971\"* he|strong=\"H8033\"* returned|strong=\"H7725\"* with|strong=\"H1004\"* shame|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"* to|strong=\"H7725\"* his|strong=\"H3605\"* own|strong=\"H4578\"* land|strong=\"H6440\"*. When|strong=\"H7725\"* he|strong=\"H8033\"* had|strong=\"H3068\"* come|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H3605\"* god|strong=\"H3068\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* came|strong=\"H3068\"* out|strong=\"H7971\"* of|strong=\"H4428\"* his|strong=\"H3605\"* own|strong=\"H4578\"* body|strong=\"H4578\"*+ 32:21 i.e., his own sons* killed|strong=\"H2719\"* him|strong=\"H6440\"* there|strong=\"H8033\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Thus Yahweh|strong=\"H3068\"* saved|strong=\"H3467\"* Hezekiah|strong=\"H2396\"* and|strong=\"H3068\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Sennacherib|strong=\"H5576\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria and|strong=\"H3068\"* from|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* all|strong=\"H3605\"* others, and|strong=\"H3068\"* guided|strong=\"H5095\"* them|strong=\"H3027\"* on|strong=\"H3427\"* every|strong=\"H3605\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 23, + "text": "Many|strong=\"H7227\"* brought|strong=\"H5375\"* gifts|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* precious|strong=\"H4030\"* things|strong=\"H3605\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* he|strong=\"H3651\"* was|strong=\"H3068\"* exalted|strong=\"H5375\"* in|strong=\"H3068\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* from|strong=\"H1471\"* then|strong=\"H3651\"* on|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* terminally ill|strong=\"H2470\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* prayed|strong=\"H6419\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*; and|strong=\"H3068\"* he|strong=\"H3117\"* spoke to|strong=\"H5704\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* sign|strong=\"H4159\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Hezekiah|strong=\"H2396\"* didn’t reciprocate appropriate to|strong=\"H7725\"* the|strong=\"H5921\"* benefit|strong=\"H1576\"* done|strong=\"H1961\"* for|strong=\"H3588\"* him|strong=\"H5921\"*, because|strong=\"H3588\"* his|strong=\"H7725\"* heart|strong=\"H3820\"* was|strong=\"H1961\"* lifted|strong=\"H1361\"* up|strong=\"H1361\"*. Therefore|strong=\"H5921\"* there|strong=\"H1961\"* was|strong=\"H1961\"* wrath|strong=\"H7110\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 26, + "text": "However, Hezekiah|strong=\"H2396\"* humbled|strong=\"H3665\"* himself|strong=\"H1931\"* for|strong=\"H5921\"* the|strong=\"H5921\"* pride|strong=\"H1363\"* of|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H3820\"*, both|strong=\"H5921\"* he|strong=\"H1931\"* and|strong=\"H3068\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H3808\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* didn’t come on|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H3427\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*." + }, + { + "verseNum": 27, + "text": "Hezekiah|strong=\"H2396\"* had|strong=\"H1961\"* exceedingly|strong=\"H3966\"* great|strong=\"H3966\"* riches|strong=\"H6239\"* and|strong=\"H3701\"* honor|strong=\"H3519\"*. He|strong=\"H6213\"* provided|strong=\"H6213\"* himself|strong=\"H6213\"* with|strong=\"H6213\"* treasuries for|strong=\"H6213\"* silver|strong=\"H3701\"*, for|strong=\"H6213\"* gold|strong=\"H2091\"*, for|strong=\"H6213\"* precious|strong=\"H3368\"* stones, for|strong=\"H6213\"* spices|strong=\"H1314\"*, for|strong=\"H6213\"* shields|strong=\"H4043\"*, and|strong=\"H3701\"* for|strong=\"H6213\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3627\"* valuable|strong=\"H3368\"* vessels|strong=\"H3627\"*;" + }, + { + "verseNum": 28, + "text": "also storehouses|strong=\"H4543\"* for|strong=\"H3605\"* the|strong=\"H3605\"* increase|strong=\"H8393\"* of|strong=\"H3605\"* grain|strong=\"H1715\"*, new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1715\"* oil|strong=\"H3323\"*; and|strong=\"H1715\"* stalls for|strong=\"H3605\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3605\"* animals, and|strong=\"H1715\"* flocks|strong=\"H5739\"* in|strong=\"H3605\"* folds." + }, + { + "verseNum": 29, + "text": "Moreover|strong=\"H3588\"* he|strong=\"H3588\"* provided|strong=\"H5414\"* for|strong=\"H3588\"* himself|strong=\"H6213\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* possessions|strong=\"H7399\"* of|strong=\"H5892\"* flocks|strong=\"H6629\"* and|strong=\"H5892\"* herds|strong=\"H1241\"* in|strong=\"H6213\"* abundance|strong=\"H7230\"*; for|strong=\"H3588\"* God|strong=\"H5414\"* had|strong=\"H3588\"* given|strong=\"H5414\"* him|strong=\"H5414\"* abundant|strong=\"H7227\"* possessions|strong=\"H7399\"*." + }, + { + "verseNum": 30, + "text": "This|strong=\"H1931\"* same|strong=\"H1931\"* Hezekiah|strong=\"H2396\"* also|strong=\"H1732\"* stopped|strong=\"H5640\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* spring|strong=\"H4161\"* of|strong=\"H5892\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* Gihon|strong=\"H1521\"*, and|strong=\"H5892\"* brought|strong=\"H4161\"* them|strong=\"H5640\"* straight|strong=\"H3474\"* down|strong=\"H4295\"* on|strong=\"H5892\"* the|strong=\"H3605\"* west|strong=\"H4628\"* side|strong=\"H4628\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*. Hezekiah|strong=\"H2396\"* prospered|strong=\"H6743\"* in|strong=\"H5892\"* all|strong=\"H3605\"* his|strong=\"H3605\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 31, + "text": "However, concerning|strong=\"H5921\"* the|strong=\"H3605\"* ambassadors|strong=\"H3887\"* of|strong=\"H8269\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Babylon, who|strong=\"H3605\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H5921\"* to|strong=\"H7971\"* inquire|strong=\"H1875\"* of|strong=\"H8269\"* the|strong=\"H3605\"* wonder|strong=\"H4159\"* that|strong=\"H3045\"* was|strong=\"H1961\"* done|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land, God|strong=\"H7971\"* left|strong=\"H5800\"* him|strong=\"H5921\"* to|strong=\"H7971\"* test|strong=\"H5254\"* him|strong=\"H5921\"*, that|strong=\"H3045\"* he|strong=\"H3651\"* might know|strong=\"H3045\"* all|strong=\"H3605\"* that|strong=\"H3045\"* was|strong=\"H1961\"* in|strong=\"H5921\"* his|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"* and|strong=\"H1121\"* his|strong=\"H5921\"* good|strong=\"H2005\"* deeds|strong=\"H1697\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 33, + "text": "Hezekiah|strong=\"H2396\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H3605\"* fathers, and|strong=\"H1121\"* they|strong=\"H6213\"* buried|strong=\"H6912\"* him|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H3605\"* ascent|strong=\"H4608\"* to|strong=\"H6213\"* the|strong=\"H3605\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*. All|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* honored|strong=\"H3519\"* him|strong=\"H6213\"* at|strong=\"H3427\"* his|strong=\"H3605\"* death|strong=\"H4194\"*. Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H3427\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Manasseh|strong=\"H4519\"* was|strong=\"H1121\"* twelve|strong=\"H8147\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H2568\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H2568\"* reigned|strong=\"H4427\"* fifty-five|strong=\"H2572\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, after the|strong=\"H6440\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* out|strong=\"H3423\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* built|strong=\"H1129\"* again|strong=\"H7725\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* which|strong=\"H1116\"* Hezekiah|strong=\"H2396\"* his|strong=\"H3605\"* father had|strong=\"H6635\"* broken|strong=\"H5422\"* down|strong=\"H5422\"*; and|strong=\"H6965\"* he|strong=\"H6213\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* altars|strong=\"H4196\"* for|strong=\"H6213\"* the|strong=\"H3605\"* Baals|strong=\"H1168\"*, made|strong=\"H6213\"* Asheroth, and|strong=\"H6965\"* worshiped|strong=\"H7812\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4196\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* served|strong=\"H5647\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, of|strong=\"H1004\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said, “My|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* built|strong=\"H1129\"* altars|strong=\"H4196\"* for|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H1004\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* in|strong=\"H3068\"* the|strong=\"H3605\"* two|strong=\"H8147\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1931\"* also|strong=\"H3068\"* made|strong=\"H6213\"* his|strong=\"H3068\"* children|strong=\"H1121\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6213\"* fire in|strong=\"H3068\"* the|strong=\"H6213\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*. He|strong=\"H1931\"* practiced|strong=\"H6213\"* sorcery|strong=\"H3784\"*, divination|strong=\"H5172\"*, and|strong=\"H1121\"* witchcraft|strong=\"H6049\"*, and|strong=\"H1121\"* dealt|strong=\"H6213\"* with|strong=\"H3068\"* those|strong=\"H1121\"* who|strong=\"H1931\"* had|strong=\"H3068\"* familiar spirits and|strong=\"H1121\"* with|strong=\"H3068\"* wizards|strong=\"H3049\"*. He|strong=\"H1931\"* did|strong=\"H6213\"* much|strong=\"H7235\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, to|strong=\"H3068\"* provoke|strong=\"H3707\"* him|strong=\"H6213\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* set|strong=\"H7760\"* the|strong=\"H3605\"* engraved image|strong=\"H6459\"* of|strong=\"H1121\"* the|strong=\"H3605\"* idol|strong=\"H6459\"*, which|strong=\"H1004\"* he|strong=\"H6213\"* had|strong=\"H3478\"* made|strong=\"H6213\"*, in|strong=\"H3478\"* God’s house|strong=\"H1004\"*, of|strong=\"H1121\"* which|strong=\"H1004\"* God said to|strong=\"H3478\"* David|strong=\"H1732\"* and|strong=\"H1121\"* to|strong=\"H3478\"* Solomon|strong=\"H8010\"* his|strong=\"H3605\"* son|strong=\"H1121\"*, “In|strong=\"H3478\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1004\"* I|strong=\"H7760\"* have|strong=\"H1121\"* chosen out|strong=\"H6213\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H7760\"* will|strong=\"H3478\"* put|strong=\"H7760\"* my|strong=\"H3605\"* name|strong=\"H8034\"* forever|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* not|strong=\"H3808\"* any|strong=\"H3605\"* more|strong=\"H3254\"* remove|strong=\"H5493\"* the|strong=\"H3605\"* foot|strong=\"H7272\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* from|strong=\"H5493\"* off|strong=\"H5493\"* the|strong=\"H3605\"* land which|strong=\"H3478\"* I|strong=\"H5921\"* have|strong=\"H3478\"* appointed|strong=\"H5975\"* for|strong=\"H5921\"* your|strong=\"H3605\"* fathers, if only|strong=\"H7535\"* they|strong=\"H3808\"* will|strong=\"H3478\"* observe|strong=\"H8104\"* to|strong=\"H3478\"* do|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3478\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"*, even|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, the|strong=\"H3605\"* statutes|strong=\"H2706\"*, and|strong=\"H4872\"* the|strong=\"H3605\"* ordinances|strong=\"H4941\"* given|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 9, + "text": "Manasseh|strong=\"H4519\"* seduced|strong=\"H8582\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H6213\"* that|strong=\"H3068\"* they|strong=\"H3068\"* did|strong=\"H6213\"* more|strong=\"H4480\"* evil|strong=\"H7451\"* than|strong=\"H4480\"* did|strong=\"H6213\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* whom|strong=\"H6440\"* Yahweh|strong=\"H3068\"* destroyed|strong=\"H8045\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Manasseh|strong=\"H4519\"* and|strong=\"H3068\"* to|strong=\"H1696\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* didn’t listen|strong=\"H7181\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* brought|strong=\"H3212\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, who|strong=\"H3068\"* took|strong=\"H3920\"* Manasseh|strong=\"H4519\"* in|strong=\"H5921\"* chains|strong=\"H5178\"*, bound him|strong=\"H5921\"* with|strong=\"H3068\"* fetters|strong=\"H5178\"*, and|strong=\"H3068\"* carried|strong=\"H3212\"* him|strong=\"H5921\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3068\"* he|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6887\"*, he|strong=\"H3068\"* begged Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"* greatly|strong=\"H3966\"* before|strong=\"H6440\"* the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* prayed|strong=\"H6419\"* to|strong=\"H7725\"* him|strong=\"H7725\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* was|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* him|strong=\"H7725\"*, and|strong=\"H3068\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* supplication|strong=\"H8467\"*, and|strong=\"H3068\"* brought|strong=\"H7725\"* him|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* into|strong=\"H7725\"* his|strong=\"H3068\"* kingdom|strong=\"H4438\"*. Then|strong=\"H7725\"* Manasseh|strong=\"H4519\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H7760\"* after this|strong=\"H3651\"*, he|strong=\"H3651\"* built|strong=\"H1129\"* an|strong=\"H1129\"* outer|strong=\"H2435\"* wall|strong=\"H2346\"* to|strong=\"H1732\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"* on|strong=\"H7760\"* the|strong=\"H3605\"* west|strong=\"H4628\"* side|strong=\"H4628\"* of|strong=\"H8269\"* Gihon|strong=\"H1521\"*, in|strong=\"H5892\"* the|strong=\"H3605\"* valley|strong=\"H5158\"*, even|strong=\"H3651\"* to|strong=\"H1732\"* the|strong=\"H3605\"* entrance|strong=\"H8179\"* at|strong=\"H1732\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*. He|strong=\"H3651\"* encircled|strong=\"H5437\"* Ophel|strong=\"H6077\"* with|strong=\"H5892\"* it|strong=\"H7760\"*, and|strong=\"H3063\"* raised|strong=\"H1361\"* it|strong=\"H7760\"* up|strong=\"H1129\"* to|strong=\"H1732\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H3966\"* height|strong=\"H3966\"*; and|strong=\"H3063\"* he|strong=\"H3651\"* put|strong=\"H7760\"* valiant|strong=\"H2428\"* captains|strong=\"H8269\"* in|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* took|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3605\"* foreign|strong=\"H5236\"* gods and|strong=\"H3068\"* the|strong=\"H3605\"* idol|strong=\"H5566\"* out|strong=\"H2351\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* altars|strong=\"H4196\"* that|strong=\"H3605\"* he|strong=\"H3068\"* had|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H7993\"* out|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* built up|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, and|strong=\"H3063\"* offered|strong=\"H2076\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* and|strong=\"H3063\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3063\"* commanded Judah|strong=\"H3063\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "Nevertheless|strong=\"H7535\"* the|strong=\"H3068\"* people|strong=\"H5971\"* still|strong=\"H5750\"* sacrificed|strong=\"H2076\"* in|strong=\"H3068\"* the|strong=\"H3068\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, but|strong=\"H7535\"* only|strong=\"H7535\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* Manasseh|strong=\"H4519\"*, and|strong=\"H3478\"* his|strong=\"H3068\"* prayer|strong=\"H8605\"* to|strong=\"H1696\"* his|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* seers|strong=\"H2374\"* who|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, behold|strong=\"H2005\"*, they|strong=\"H3068\"* are|strong=\"H3478\"* written among|strong=\"H5921\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 19, + "text": "His|strong=\"H3605\"* prayer|strong=\"H8605\"* also|strong=\"H3789\"*, and|strong=\"H6440\"* how God listened|strong=\"H6279\"* to|strong=\"H5921\"* his|strong=\"H3605\"* request|strong=\"H1697\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* and|strong=\"H6440\"* his|strong=\"H3605\"* trespass|strong=\"H4604\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* places|strong=\"H1116\"* in|strong=\"H5921\"* which|strong=\"H1697\"* he|strong=\"H3605\"* built|strong=\"H1129\"* high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H6440\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H6440\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* before|strong=\"H6440\"* he|strong=\"H3605\"* humbled|strong=\"H3665\"* himself|strong=\"H3665\"*: behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* history of|strong=\"H1697\"* Hozai|strong=\"H2335\"*.+ 33:19 or, the seers*" + }, + { + "verseNum": 20, + "text": "So Manasseh|strong=\"H4519\"* slept|strong=\"H7901\"* with|strong=\"H5973\"* his|strong=\"H8478\"* fathers, and|strong=\"H1121\"* they|strong=\"H8478\"* buried|strong=\"H6912\"* him|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* own|strong=\"H5973\"* house|strong=\"H1004\"*; and|strong=\"H1121\"* Amon his|strong=\"H8478\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H8478\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 21, + "text": "Amon was|strong=\"H1121\"* twenty-two|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H8147\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H8147\"* reigned|strong=\"H4427\"* two|strong=\"H8147\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, as|strong=\"H6213\"* did|strong=\"H6213\"* Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* father; and|strong=\"H3068\"* Amon sacrificed|strong=\"H2076\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* which|strong=\"H3068\"* Manasseh|strong=\"H4519\"* his|strong=\"H3605\"* father had|strong=\"H3068\"* made|strong=\"H6213\"*, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* didn’t humble|strong=\"H3665\"* himself|strong=\"H1931\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* Manasseh|strong=\"H4519\"* his|strong=\"H3068\"* father had|strong=\"H3068\"* humbled|strong=\"H3665\"* himself|strong=\"H1931\"*; but|strong=\"H3588\"* this|strong=\"H1931\"* same|strong=\"H1931\"* Amon trespassed more|strong=\"H7235\"* and|strong=\"H3068\"* more|strong=\"H7235\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H5921\"* servants|strong=\"H5650\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1004\"* put|strong=\"H4191\"* him|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H5921\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H5221\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land killed|strong=\"H5221\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H4428\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* King|strong=\"H4428\"* Amon; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land made|strong=\"H4427\"* Josiah|strong=\"H2977\"* his|strong=\"H3605\"* son|strong=\"H1121\"* king|strong=\"H4428\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* was|strong=\"H1121\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* thirty-one|strong=\"H7970\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* right|strong=\"H3225\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, and|strong=\"H3068\"* walked|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* David|strong=\"H1732\"* his|strong=\"H3068\"* father, and|strong=\"H3068\"* didn’t turn|strong=\"H5493\"* away|strong=\"H5493\"* to|strong=\"H3212\"* the|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* or|strong=\"H3808\"* to|strong=\"H3212\"* the|strong=\"H6213\"* left|strong=\"H8040\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H4480\"* eighth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H1732\"* reign|strong=\"H4427\"*, while|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H1732\"* yet|strong=\"H5750\"* young|strong=\"H5288\"*, he|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H3389\"* seek|strong=\"H1875\"* after|strong=\"H4480\"* the|strong=\"H4480\"* God of|strong=\"H8141\"* David|strong=\"H1732\"* his|strong=\"H1732\"* father; and|strong=\"H3063\"* in|strong=\"H8141\"* the|strong=\"H4480\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* he|strong=\"H1931\"* began|strong=\"H2490\"* to|strong=\"H3389\"* purge|strong=\"H2891\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* from|strong=\"H4480\"* the|strong=\"H4480\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, the|strong=\"H4480\"* Asherah poles, the|strong=\"H4480\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*, and|strong=\"H3063\"* the|strong=\"H4480\"* molten|strong=\"H4541\"* images|strong=\"H6456\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* broke|strong=\"H7665\"* down|strong=\"H5422\"* the|strong=\"H6440\"* altars|strong=\"H4196\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Baals|strong=\"H1168\"* in|strong=\"H5921\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*; and|strong=\"H6440\"* he|strong=\"H5921\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* the|strong=\"H6440\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* that|strong=\"H4196\"* were|strong=\"H5921\"* on|strong=\"H5921\"* high|strong=\"H4605\"* above|strong=\"H4605\"* them|strong=\"H5921\"*. He|strong=\"H5921\"* broke|strong=\"H7665\"* the|strong=\"H6440\"* Asherah poles, the|strong=\"H6440\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* molten|strong=\"H4541\"* images|strong=\"H6456\"* in|strong=\"H5921\"* pieces|strong=\"H7665\"*, made|strong=\"H2076\"* dust|strong=\"H1854\"* of|strong=\"H6440\"* them|strong=\"H5921\"*, and|strong=\"H6440\"* scattered|strong=\"H2236\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* graves|strong=\"H6913\"* of|strong=\"H6440\"* those|strong=\"H5921\"* who|strong=\"H4605\"* had sacrificed|strong=\"H2076\"* to|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3389\"* burned|strong=\"H8313\"* the|strong=\"H5921\"* bones|strong=\"H6106\"* of|strong=\"H4196\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* on|strong=\"H5921\"* their|strong=\"H8313\"* altars|strong=\"H4196\"*, and|strong=\"H3063\"* purged|strong=\"H2891\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* did|strong=\"H2022\"* this|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Manasseh|strong=\"H4519\"*, Ephraim, and|strong=\"H1004\"* Simeon|strong=\"H8095\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* Naphtali|strong=\"H5321\"*, around|strong=\"H5439\"* in|strong=\"H1004\"* their|strong=\"H5439\"* ruins|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* altars|strong=\"H4196\"*, beat|strong=\"H3807\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H3478\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* into|strong=\"H7725\"* powder|strong=\"H1854\"*, and|strong=\"H3478\"* cut|strong=\"H1438\"* down|strong=\"H5422\"* all|strong=\"H3605\"* the|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H4196\"* Israel|strong=\"H3478\"*, then|strong=\"H7725\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H7971\"* in|strong=\"H8141\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*, when|strong=\"H7971\"* he|strong=\"H3068\"* had|strong=\"H3068\"* purged|strong=\"H2891\"* the|strong=\"H3068\"* land and|strong=\"H1121\"* the|strong=\"H3068\"* house|strong=\"H1004\"*, he|strong=\"H3068\"* sent|strong=\"H7971\"* Shaphan|strong=\"H8227\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azaliah, Maaseiah|strong=\"H4641\"* the|strong=\"H3068\"* governor|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joahaz|strong=\"H3099\"* the|strong=\"H3068\"* recorder|strong=\"H2142\"* to|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* Hilkiah|strong=\"H2518\"* the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* and|strong=\"H3063\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* was|strong=\"H3478\"* brought|strong=\"H5414\"* into|strong=\"H3027\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*, which|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, the|strong=\"H3605\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H3605\"* threshold|strong=\"H5592\"*, had|strong=\"H3478\"* gathered|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* Manasseh|strong=\"H4519\"*, Ephraim, of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, of|strong=\"H1004\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* of|strong=\"H1004\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* had|strong=\"H3068\"* the|strong=\"H5921\"* oversight|strong=\"H6485\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* who|strong=\"H3068\"* labored|strong=\"H6213\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H3068\"* mend|strong=\"H2388\"* and|strong=\"H3068\"* repair|strong=\"H2388\"* the|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* carpenters|strong=\"H2796\"* and|strong=\"H3063\"* to|strong=\"H5414\"* the|strong=\"H5414\"* builders|strong=\"H1129\"* to|strong=\"H5414\"* buy|strong=\"H7069\"* cut stone and|strong=\"H3063\"* timber|strong=\"H6086\"* for|strong=\"H1004\"* couplings|strong=\"H4226\"*, and|strong=\"H3063\"* to|strong=\"H5414\"* make|strong=\"H5414\"* beams|strong=\"H7136\"* for|strong=\"H1004\"* the|strong=\"H5414\"* houses|strong=\"H1004\"* which|strong=\"H1004\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* destroyed|strong=\"H7843\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* men|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* faithfully. Their|strong=\"H3605\"* overseers|strong=\"H5329\"* were|strong=\"H1121\"* Jahath|strong=\"H3189\"* and|strong=\"H1121\"* Obadiah|strong=\"H5662\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*; and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* and|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Kohathites|strong=\"H6956\"*, to|strong=\"H6213\"* give|strong=\"H6213\"* direction; and|strong=\"H1121\"* others of|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, who|strong=\"H3605\"* were|strong=\"H1121\"* all|strong=\"H3605\"* skillful with|strong=\"H6213\"* musical|strong=\"H7892\"* instruments|strong=\"H3627\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"H6213\"* they|strong=\"H5921\"* were|strong=\"H3881\"* over|strong=\"H5921\"* the|strong=\"H3605\"* bearers|strong=\"H5449\"* of|strong=\"H5921\"* burdens|strong=\"H5449\"*, and|strong=\"H6213\"* directed all|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* work|strong=\"H4399\"* in|strong=\"H5921\"* every|strong=\"H3605\"* kind|strong=\"H5656\"* of|strong=\"H5921\"* service|strong=\"H5656\"*. Of|strong=\"H5921\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, there|strong=\"H3605\"* were|strong=\"H3881\"* scribes|strong=\"H5608\"*, officials|strong=\"H7860\"*, and|strong=\"H6213\"* gatekeepers|strong=\"H7778\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3318\"* they|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3068\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* brought|strong=\"H3318\"* into|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, Hilkiah|strong=\"H2518\"* the|strong=\"H3068\"* priest|strong=\"H3548\"* found|strong=\"H4672\"* the|strong=\"H3068\"* book|strong=\"H5612\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* given|strong=\"H3027\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 15, + "text": "Hilkiah|strong=\"H2518\"* answered|strong=\"H6030\"* Shaphan|strong=\"H8227\"* the|strong=\"H5414\"* scribe|strong=\"H5608\"*, “I|strong=\"H5414\"* have|strong=\"H3068\"* found|strong=\"H4672\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H1004\"* the|strong=\"H5414\"* law|strong=\"H8451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.” So|strong=\"H5414\"* Hilkiah|strong=\"H2518\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* book|strong=\"H5612\"* to|strong=\"H3068\"* Shaphan|strong=\"H8227\"*." + }, + { + "verseNum": 16, + "text": "Shaphan|strong=\"H8227\"* carried|strong=\"H6213\"* the|strong=\"H3605\"* book|strong=\"H5612\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H7725\"* moreover|strong=\"H5750\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* word|strong=\"H1697\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying|strong=\"H1697\"*, “All|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H1697\"* committed|strong=\"H6213\"* to|strong=\"H7725\"* your|strong=\"H3605\"* servants|strong=\"H5650\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* doing|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* emptied|strong=\"H5413\"* out|strong=\"H4672\"* the|strong=\"H5921\"* money|strong=\"H3701\"* that|strong=\"H3068\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* delivered|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* overseers|strong=\"H6485\"* and|strong=\"H3068\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"*.”" + }, + { + "verseNum": 18, + "text": "Shaphan|strong=\"H8227\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* told|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, saying, “Hilkiah|strong=\"H2518\"* the|strong=\"H6440\"* priest|strong=\"H3548\"* has|strong=\"H4428\"* delivered|strong=\"H5414\"* me|strong=\"H5414\"* a|strong=\"H3068\"* book|strong=\"H5612\"*.” Shaphan|strong=\"H8227\"* read|strong=\"H7121\"* from|strong=\"H6440\"* it|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* law|strong=\"H8451\"*, he|strong=\"H4428\"* tore|strong=\"H7167\"* his|strong=\"H8085\"* clothes." + }, + { + "verseNum": 20, + "text": "The|strong=\"H6680\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Hilkiah|strong=\"H2518\"*, Ahikam the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Abdon|strong=\"H5658\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micah|strong=\"H4318\"*, Shaphan|strong=\"H8227\"* the|strong=\"H6680\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Asaiah|strong=\"H6222\"* the|strong=\"H6680\"* king|strong=\"H4428\"*’s servant|strong=\"H5650\"*, saying," + }, + { + "verseNum": 21, + "text": "“Go|strong=\"H3212\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3478\"* left|strong=\"H7604\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, concerning|strong=\"H5921\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H3068\"* found|strong=\"H4672\"*; for|strong=\"H3588\"* great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* that|strong=\"H3588\"* is|strong=\"H3068\"* poured|strong=\"H5413\"* out|strong=\"H4672\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, because|strong=\"H3588\"* our|strong=\"H3068\"* fathers have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*.”" + }, + { + "verseNum": 22, + "text": "So|strong=\"H2063\"* Hilkiah|strong=\"H2518\"* and|strong=\"H1121\"* those|strong=\"H1121\"* whom the|strong=\"H8104\"* king|strong=\"H4428\"* had|strong=\"H4428\"* commanded|strong=\"H1696\"* went|strong=\"H3212\"* to|strong=\"H1696\"* Huldah|strong=\"H2468\"* the|strong=\"H8104\"* prophetess|strong=\"H5031\"*, the|strong=\"H8104\"* wife|strong=\"H1696\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tokhath|strong=\"H8445\"*, the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasrah|strong=\"H2641\"*, keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* wardrobe (now|strong=\"H3212\"* she|strong=\"H1931\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3427\"* the|strong=\"H8104\"* second|strong=\"H4932\"* quarter), and|strong=\"H1121\"* they|strong=\"H1931\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H1931\"* to|strong=\"H1696\"* that|strong=\"H1931\"* effect." + }, + { + "verseNum": 23, + "text": "She said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Tell the|strong=\"H3541\"* man who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 24, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3063\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* curses that|strong=\"H3605\"* are|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* read|strong=\"H7121\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 25, + "text": "Because|strong=\"H4616\"* they|strong=\"H3808\"* have|strong=\"H3027\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H3027\"* have|strong=\"H3027\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3027\"* other|strong=\"H2088\"* gods, that|strong=\"H3605\"* they|strong=\"H3808\"* might|strong=\"H4616\"* provoke|strong=\"H3707\"* me|strong=\"H5800\"* to|strong=\"H3027\"* anger|strong=\"H3707\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*, therefore|strong=\"H4616\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"* is|strong=\"H2088\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H3027\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3027\"* it|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.’”’" + }, + { + "verseNum": 26, + "text": "But|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, you|strong=\"H7971\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* him|strong=\"H7971\"* this|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “About|strong=\"H1697\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*," + }, + { + "verseNum": 27, + "text": "because|strong=\"H5921\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* was|strong=\"H3068\"* tender|strong=\"H7401\"*, and|strong=\"H3068\"* you|strong=\"H6440\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* God|strong=\"H3068\"* when|strong=\"H8085\"* you|strong=\"H6440\"* heard|strong=\"H8085\"* his|strong=\"H3068\"* words|strong=\"H1697\"* against|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H5921\"* inhabitants|strong=\"H3427\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* humbled|strong=\"H3665\"* yourself|strong=\"H3665\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* torn|strong=\"H7167\"* your|strong=\"H3068\"* clothes and|strong=\"H3068\"* wept|strong=\"H1058\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* you|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H4428\"* gather you|strong=\"H3605\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers, and|strong=\"H7725\"* you|strong=\"H3605\"* will|strong=\"H4428\"* be|strong=\"H3808\"* gathered to|strong=\"H7725\"* your|strong=\"H3605\"* grave|strong=\"H6913\"* in|strong=\"H3427\"* peace|strong=\"H7965\"*. Your|strong=\"H3605\"* eyes|strong=\"H5869\"* won’t see|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H2005\"* will|strong=\"H4428\"* bring|strong=\"H7725\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H7725\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*.”’”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H7971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* gathered together all|strong=\"H3605\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* with|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*—the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H3063\"* small|strong=\"H6996\"*—and|strong=\"H3063\"* he|strong=\"H5704\"* read|strong=\"H7121\"* in|strong=\"H3427\"* their|strong=\"H3605\"* hearing all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* was|strong=\"H3068\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H5977\"* and|strong=\"H3068\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*, his|strong=\"H3605\"* testimonies|strong=\"H5715\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* statutes|strong=\"H2706\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* soul|strong=\"H5315\"*, to|strong=\"H3068\"* perform|strong=\"H6213\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H3605\"* were|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* caused|strong=\"H6213\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1144\"* found|strong=\"H4672\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* Benjamin|strong=\"H1144\"* to|strong=\"H6213\"* stand|strong=\"H5975\"*. The|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* did|strong=\"H6213\"* according to|strong=\"H6213\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3427\"* God, the|strong=\"H3605\"* God of|strong=\"H3427\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 33, + "text": "Josiah|strong=\"H2977\"* took|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* out|strong=\"H4672\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries that|strong=\"H3605\"* belonged to|strong=\"H3478\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* made|strong=\"H5647\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* found|strong=\"H4672\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* serve|strong=\"H5647\"*, even|strong=\"H3808\"* to|strong=\"H3478\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*. All|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* they|strong=\"H3117\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* following Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Josiah|strong=\"H2977\"* kept|strong=\"H6213\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3068\"* killed|strong=\"H7819\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H3068\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H6213\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* their|strong=\"H3068\"* offices|strong=\"H4931\"* and|strong=\"H3068\"* encouraged|strong=\"H2388\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* service|strong=\"H5656\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3068\"* said to|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* taught all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* were|strong=\"H3478\"* holy|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “Put|strong=\"H5414\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* ark in|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* which|strong=\"H3068\"* Solomon|strong=\"H8010\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* built|strong=\"H1129\"*. It|strong=\"H5414\"* will|strong=\"H3068\"* no|strong=\"H3605\"* longer be|strong=\"H3068\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* on|strong=\"H3068\"* your|strong=\"H3068\"* shoulders|strong=\"H3802\"*. Now|strong=\"H6258\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* and|strong=\"H1121\"* his|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Prepare|strong=\"H3559\"* yourselves after|strong=\"H1004\"* your|strong=\"H3559\"* fathers’ houses|strong=\"H1004\"* by|strong=\"H3478\"* your|strong=\"H3559\"* divisions|strong=\"H4256\"*, according to|strong=\"H3478\"* the|strong=\"H3559\"* writing|strong=\"H3791\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* according to|strong=\"H3478\"* the|strong=\"H3559\"* writing|strong=\"H3791\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H1732\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "Stand|strong=\"H5975\"* in|strong=\"H1004\"* the|strong=\"H5975\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* according to|strong=\"H1121\"* the|strong=\"H5975\"* divisions|strong=\"H2515\"* of|strong=\"H1121\"* the|strong=\"H5975\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* your|strong=\"H1121\"* brothers|strong=\"H1121\"* the|strong=\"H5975\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5975\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* let there|strong=\"H5975\"* be|strong=\"H1121\"* for|strong=\"H1004\"* each|strong=\"H5971\"* a|strong=\"H3068\"* portion|strong=\"H6944\"* of|strong=\"H1121\"* a|strong=\"H3068\"* fathers’ house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5975\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 6, + "text": "Kill|strong=\"H7819\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* lamb, sanctify|strong=\"H6942\"* yourselves|strong=\"H3027\"*, and|strong=\"H4872\"* prepare|strong=\"H3559\"* for|strong=\"H6213\"* your|strong=\"H3068\"* brothers, to|strong=\"H3068\"* do|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"*.”" + }, + { + "verseNum": 7, + "text": "Josiah|strong=\"H2977\"* gave|strong=\"H7311\"* to|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* flock|strong=\"H6629\"*, lambs|strong=\"H3532\"* and|strong=\"H1121\"* young|strong=\"H1121\"* goats|strong=\"H5795\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H4672\"* for|strong=\"H1121\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* offerings|strong=\"H6453\"*, to|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5971\"* present|strong=\"H4672\"*, to|strong=\"H1121\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* thirty|strong=\"H7970\"* thousand, and|strong=\"H1121\"* three|strong=\"H7969\"* thousand bulls|strong=\"H1241\"*. These|strong=\"H3605\"* were|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s substance|strong=\"H7399\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H5414\"* princes|strong=\"H8269\"* gave|strong=\"H5414\"* a|strong=\"H3068\"* free will|strong=\"H5971\"* offering|strong=\"H5071\"* to|strong=\"H5414\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, to|strong=\"H5414\"* the|strong=\"H5414\"* priests|strong=\"H3548\"*, and|strong=\"H3967\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Levites|strong=\"H3881\"*. Hilkiah|strong=\"H2518\"*, Zechariah|strong=\"H2148\"*, and|strong=\"H3967\"* Jehiel|strong=\"H3171\"*, the|strong=\"H5414\"* rulers|strong=\"H8269\"* of|strong=\"H1004\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*, gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* priests|strong=\"H3548\"* for|strong=\"H1004\"* the|strong=\"H5414\"* Passover|strong=\"H6453\"* offerings|strong=\"H5071\"* two|strong=\"H1004\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* small livestock, and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* head|strong=\"H8269\"* of|strong=\"H1004\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 9, + "text": "Conaniah|strong=\"H3562\"* also|strong=\"H8269\"*, and|strong=\"H3967\"* Shemaiah|strong=\"H8098\"* and|strong=\"H3967\"* Nethanel|strong=\"H5417\"*, his|strong=\"H7311\"* brothers, and|strong=\"H3967\"* Hashabiah|strong=\"H2811\"*, Jeiel|strong=\"H3273\"*, and|strong=\"H3967\"* Jozabad|strong=\"H3107\"*, the|strong=\"H7311\"* chiefs|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7311\"* Levites|strong=\"H3881\"*, gave|strong=\"H7311\"* to|strong=\"H3881\"* the|strong=\"H7311\"* Levites|strong=\"H3881\"* for|strong=\"H1241\"* the|strong=\"H7311\"* Passover|strong=\"H6453\"* offerings|strong=\"H6453\"* five|strong=\"H2568\"* thousand small livestock and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* head|strong=\"H8269\"* of|strong=\"H8269\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H5975\"* the|strong=\"H5921\"* service|strong=\"H5656\"* was|strong=\"H4428\"* prepared|strong=\"H3559\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* stood|strong=\"H5975\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H5975\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* by|strong=\"H5921\"* their|strong=\"H5921\"* divisions|strong=\"H4256\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3027\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* Passover|strong=\"H6453\"* lambs, and|strong=\"H3027\"* the|strong=\"H7819\"* priests|strong=\"H3548\"* sprinkled|strong=\"H2236\"* the|strong=\"H7819\"* blood which|strong=\"H3548\"* they|strong=\"H3027\"* received from|strong=\"H3027\"* their|strong=\"H6584\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* the|strong=\"H7819\"* Levites|strong=\"H3881\"* skinned|strong=\"H6584\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3651\"* removed|strong=\"H5493\"* the|strong=\"H5414\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, that|strong=\"H5971\"* they|strong=\"H3651\"* might|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* according to|strong=\"H3068\"* the|strong=\"H5414\"* divisions|strong=\"H4653\"* of|strong=\"H1121\"* the|strong=\"H5414\"* fathers’ houses|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, to|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, as|strong=\"H3651\"* it|strong=\"H5414\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"*. They|strong=\"H3651\"* did|strong=\"H5971\"* the|strong=\"H5414\"* same|strong=\"H3651\"* with|strong=\"H1004\"* the|strong=\"H5414\"* cattle|strong=\"H1241\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H7323\"* roasted|strong=\"H1310\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* with|strong=\"H5971\"* fire according|strong=\"H4941\"* to|strong=\"H1121\"* the|strong=\"H3605\"* ordinance|strong=\"H4941\"*. They|strong=\"H7323\"* boiled|strong=\"H1310\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* offerings|strong=\"H6453\"* in|strong=\"H1121\"* pots|strong=\"H5518\"*, in|strong=\"H1121\"* cauldrons, and|strong=\"H1121\"* in|strong=\"H1121\"* pans|strong=\"H6745\"*, and|strong=\"H1121\"* carried|strong=\"H7323\"* them|strong=\"H7323\"* quickly|strong=\"H7323\"* to|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Afterward they|strong=\"H1992\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"*, because|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron were|strong=\"H1121\"* busy with|strong=\"H3548\"* offering|strong=\"H5930\"* the|strong=\"H3588\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* and|strong=\"H1121\"* the|strong=\"H3588\"* fat|strong=\"H2459\"* until|strong=\"H5704\"* night|strong=\"H3915\"*. Therefore|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* the|strong=\"H3588\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* singers|strong=\"H7891\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, were|strong=\"H1121\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H4612\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, Asaph, Heman|strong=\"H1968\"*, and|strong=\"H1121\"* Jeduthun|strong=\"H3038\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s seer|strong=\"H2374\"*; and|strong=\"H1121\"* the|strong=\"H5921\"* gatekeepers|strong=\"H7778\"* were|strong=\"H1121\"* at|strong=\"H5921\"* every|strong=\"H8179\"* gate|strong=\"H8179\"*. They|strong=\"H3588\"* didn’t need to|strong=\"H5921\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* their|strong=\"H5921\"* service|strong=\"H5656\"*, because|strong=\"H3588\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* prepared|strong=\"H3559\"* the|strong=\"H3605\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, to|strong=\"H3068\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"*, according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1931\"* were|strong=\"H3478\"* present|strong=\"H4672\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* at|strong=\"H3478\"* that|strong=\"H3117\"* time|strong=\"H6256\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "There|strong=\"H3427\"* was|strong=\"H3478\"* no|strong=\"H3808\"* Passover|strong=\"H6453\"* like|strong=\"H3644\"* that|strong=\"H3605\"* kept|strong=\"H6213\"* in|strong=\"H3427\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Samuel|strong=\"H8050\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, nor|strong=\"H3808\"* did|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* keep|strong=\"H6213\"* such|strong=\"H3644\"* a|strong=\"H3068\"* Passover|strong=\"H6453\"* as|strong=\"H3117\"* Josiah|strong=\"H2977\"* kept|strong=\"H6213\"*—with|strong=\"H6213\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* were|strong=\"H3478\"* present|strong=\"H4672\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2088\"* Passover|strong=\"H6453\"* was|strong=\"H8141\"* kept|strong=\"H6213\"* in|strong=\"H8141\"* the|strong=\"H6213\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H6213\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 20, + "text": "After|strong=\"H5921\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, when|strong=\"H3318\"* Josiah|strong=\"H2977\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* the|strong=\"H3605\"* temple|strong=\"H1004\"*, Neco|strong=\"H5224\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* went|strong=\"H3318\"* up|strong=\"H5927\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* Carchemish|strong=\"H3751\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Euphrates|strong=\"H6578\"*, and|strong=\"H4428\"* Josiah|strong=\"H2977\"* went|strong=\"H3318\"* out|strong=\"H3318\"* against|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* sent|strong=\"H7971\"* ambassadors|strong=\"H4397\"* to|strong=\"H7971\"* him|strong=\"H5921\"*, saying, “What|strong=\"H4100\"* have|strong=\"H3063\"* I|strong=\"H3588\"* to|strong=\"H7971\"* do|strong=\"H4100\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*? I|strong=\"H3588\"* come|strong=\"H3063\"* not|strong=\"H3808\"* against|strong=\"H5921\"* you|strong=\"H3588\"* today|strong=\"H3117\"*, but|strong=\"H3588\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* with|strong=\"H5973\"* which|strong=\"H1004\"* I|strong=\"H3588\"* have|strong=\"H3063\"* war|strong=\"H4421\"*. God|strong=\"H3808\"* has|strong=\"H4428\"* commanded me|strong=\"H7971\"* to|strong=\"H7971\"* make|strong=\"H3588\"* haste. Beware that|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H4100\"* God|strong=\"H3808\"* who|strong=\"H3063\"* is|strong=\"H4100\"* with|strong=\"H5973\"* me|strong=\"H7971\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "Nevertheless|strong=\"H3588\"* Josiah|strong=\"H2977\"* would|strong=\"H1697\"* not|strong=\"H3808\"* turn|strong=\"H5437\"* his|strong=\"H8085\"* face|strong=\"H6440\"* from|strong=\"H4480\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* disguised|strong=\"H2664\"* himself|strong=\"H6440\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* might fight|strong=\"H3898\"* with|strong=\"H3898\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* didn’t listen|strong=\"H8085\"* to|strong=\"H6440\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Neco|strong=\"H5224\"* from|strong=\"H4480\"* the|strong=\"H6440\"* mouth|strong=\"H6310\"* of|strong=\"H1697\"* God|strong=\"H3808\"*, and|strong=\"H6440\"* came|strong=\"H1697\"* to|strong=\"H6440\"* fight|strong=\"H3898\"* in|strong=\"H8085\"* the|strong=\"H6440\"* valley|strong=\"H1237\"* of|strong=\"H1697\"* Megiddo|strong=\"H4023\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3588\"* archers|strong=\"H3384\"* shot|strong=\"H3384\"* at|strong=\"H4428\"* King|strong=\"H4428\"* Josiah|strong=\"H2977\"*; and|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* his|strong=\"H3588\"* servants|strong=\"H5650\"*, “Take|strong=\"H5674\"* me|strong=\"H5674\"* away|strong=\"H5674\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H2470\"* seriously wounded|strong=\"H2470\"*!”" + }, + { + "verseNum": 24, + "text": "So|strong=\"H4480\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* took|strong=\"H7392\"* him|strong=\"H5921\"* out|strong=\"H4480\"* of|strong=\"H5650\"* the|strong=\"H3605\"* chariot|strong=\"H7393\"*, and|strong=\"H3063\"* put|strong=\"H4191\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* second|strong=\"H4932\"* chariot|strong=\"H7393\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H3063\"*, and|strong=\"H3063\"* brought|strong=\"H3212\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* died|strong=\"H4191\"*, and|strong=\"H3063\"* was|strong=\"H3063\"* buried|strong=\"H6912\"* in|strong=\"H5921\"* the|strong=\"H3605\"* tombs|strong=\"H6913\"* of|strong=\"H5650\"* his|strong=\"H3605\"* fathers. All|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* mourned for|strong=\"H5921\"* Josiah|strong=\"H2977\"*." + }, + { + "verseNum": 25, + "text": "Jeremiah|strong=\"H3414\"* lamented|strong=\"H6969\"* for|strong=\"H5704\"* Josiah|strong=\"H2977\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* singing|strong=\"H7891\"* men|strong=\"H7891\"* and|strong=\"H3478\"* singing|strong=\"H7891\"* women|strong=\"H7891\"* spoke of|strong=\"H3117\"* Josiah|strong=\"H2977\"* in|strong=\"H5921\"* their|strong=\"H3605\"* lamentations|strong=\"H7015\"* to|strong=\"H5704\"* this|strong=\"H5414\"* day|strong=\"H3117\"*; and|strong=\"H3478\"* they|strong=\"H3117\"* made|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H5414\"* ordinance|strong=\"H2706\"* in|strong=\"H5921\"* Israel|strong=\"H3478\"*. Behold|strong=\"H2005\"*, they|strong=\"H3117\"* are|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* lamentations|strong=\"H7015\"*." + }, + { + "verseNum": 26, + "text": "Now the|strong=\"H3068\"* rest|strong=\"H3499\"* of|strong=\"H3068\"* the|strong=\"H3068\"* acts|strong=\"H1697\"* of|strong=\"H3068\"* Josiah|strong=\"H2977\"* and|strong=\"H3068\"* his|strong=\"H3068\"* good|strong=\"H2617\"* deeds|strong=\"H1697\"*, according to|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H3063\"* his|strong=\"H5921\"* acts|strong=\"H1697\"*, first|strong=\"H7223\"* and|strong=\"H3063\"* last, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3947\"* the|strong=\"H3947\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3947\"* land took|strong=\"H3947\"* Jehoahaz|strong=\"H3059\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, and|strong=\"H1121\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4427\"* in|strong=\"H4427\"* his|strong=\"H3947\"* father|strong=\"H1121\"*’s place|strong=\"H8478\"* in|strong=\"H4427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Joahaz|strong=\"H3099\"* was|strong=\"H1121\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*; and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5493\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* removed|strong=\"H5493\"* him|strong=\"H4428\"* from|strong=\"H5493\"* office at|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3967\"* fined|strong=\"H6064\"* the|strong=\"H5493\"* land one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3967\"* a|strong=\"H3068\"* talent|strong=\"H3603\"*+ 36:3 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* made|strong=\"H4427\"* Eliakim his|strong=\"H3947\"* brother king|strong=\"H4428\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* changed|strong=\"H5437\"* his|strong=\"H3947\"* name|strong=\"H8034\"* to|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"*. Neco|strong=\"H5224\"* took|strong=\"H3947\"* Joahaz|strong=\"H3099\"* his|strong=\"H3947\"* brother, and|strong=\"H3063\"* carried|strong=\"H5437\"* him|strong=\"H5921\"* to|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "Jehoiakim|strong=\"H3079\"* was|strong=\"H3068\"* twenty-five|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H6213\"* he|strong=\"H6213\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H6213\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 6, + "text": "Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* bound him|strong=\"H5921\"* in|strong=\"H5921\"* fetters|strong=\"H5178\"* to|strong=\"H3212\"* carry|strong=\"H5927\"* him|strong=\"H5921\"* to|strong=\"H3212\"* Babylon." + }, + { + "verseNum": 7, + "text": "Nebuchadnezzar|strong=\"H5019\"* also|strong=\"H3068\"* carried|strong=\"H3068\"* some of|strong=\"H1004\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* Babylon, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3068\"* his|strong=\"H5414\"* temple|strong=\"H1004\"* at|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H2005\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H1121\"* the|strong=\"H5921\"* acts|strong=\"H1697\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, and|strong=\"H1121\"* his|strong=\"H5921\"* abominations|strong=\"H8441\"* which|strong=\"H1697\"* he|strong=\"H6213\"* did|strong=\"H6213\"*, and|strong=\"H1121\"* that|strong=\"H1697\"* which|strong=\"H1697\"* was|strong=\"H3478\"* found|strong=\"H4672\"* in|strong=\"H5921\"* him|strong=\"H5921\"*, behold|strong=\"H2005\"*, they|strong=\"H5921\"* are|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*; and|strong=\"H1121\"* Jehoiachin|strong=\"H3078\"* his|strong=\"H5921\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H8478\"*." + }, + { + "verseNum": 9, + "text": "Jehoiachin|strong=\"H3078\"* was|strong=\"H3068\"* eight|strong=\"H8083\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H3117\"* he|strong=\"H3117\"* began to|strong=\"H3068\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3117\"* reigned|strong=\"H4427\"* three|strong=\"H7969\"* months|strong=\"H2320\"* and|strong=\"H1121\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H3117\"* did|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*." + }, + { + "verseNum": 10, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* return|strong=\"H8666\"* of|strong=\"H4428\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* sent|strong=\"H7971\"* and|strong=\"H3063\"* brought|strong=\"H3068\"* him|strong=\"H5921\"* to|strong=\"H3068\"* Babylon, with|strong=\"H5973\"* the|strong=\"H5921\"* valuable|strong=\"H2532\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* made|strong=\"H4427\"* Zedekiah|strong=\"H6667\"* his|strong=\"H3068\"* brother king|strong=\"H4428\"* over|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 11, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H1121\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*, and|strong=\"H1121\"* he|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*’s sight|strong=\"H5869\"*. He|strong=\"H6213\"* didn’t humble|strong=\"H3665\"* himself|strong=\"H3665\"* before|strong=\"H6440\"* Jeremiah|strong=\"H3414\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* speaking from|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* also|strong=\"H1571\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*, who|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7185\"* him|strong=\"H7725\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* God|strong=\"H3068\"*; but|strong=\"H1571\"* he|strong=\"H3068\"* stiffened|strong=\"H7185\"* his|strong=\"H3068\"* neck|strong=\"H6203\"*, and|strong=\"H3478\"* hardened|strong=\"H7185\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* against|strong=\"H4775\"* turning|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chiefs|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* people|strong=\"H5971\"* trespassed|strong=\"H4603\"* very|strong=\"H7235\"* greatly|strong=\"H7235\"* after|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* of|strong=\"H1004\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* polluted|strong=\"H2930\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H7235\"* holy|strong=\"H6942\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fathers, sent|strong=\"H7971\"* to|strong=\"H3068\"* them|strong=\"H5921\"* by|strong=\"H3027\"* his|strong=\"H3068\"* messengers|strong=\"H4397\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3068\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* his|strong=\"H3068\"* people|strong=\"H5971\"* and|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3068\"* dwelling|strong=\"H4583\"* place|strong=\"H3027\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H1961\"* they|strong=\"H3068\"* mocked|strong=\"H3931\"* the|strong=\"H3068\"* messengers|strong=\"H4397\"* of|strong=\"H3068\"* God|strong=\"H3068\"*, despised his|strong=\"H3068\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* scoffed|strong=\"H8591\"* at|strong=\"H3068\"* his|strong=\"H3068\"* prophets|strong=\"H5030\"*, until|strong=\"H5704\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"* arose|strong=\"H5927\"* against|strong=\"H5927\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, until|strong=\"H5704\"* there|strong=\"H1961\"* was|strong=\"H3068\"* no|strong=\"H5927\"* remedy|strong=\"H4832\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H3605\"* brought|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* killed|strong=\"H2026\"* their|strong=\"H3605\"* young men|strong=\"H2205\"* with|strong=\"H1004\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* their|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* no|strong=\"H3808\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* young man|strong=\"H2205\"* or|strong=\"H3808\"* virgin|strong=\"H1330\"*, old|strong=\"H2205\"* man|strong=\"H2205\"* or|strong=\"H3808\"* infirm|strong=\"H3486\"*. He|strong=\"H3605\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* all|strong=\"H3605\"* into|strong=\"H5927\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"*, great|strong=\"H1419\"* and|strong=\"H3068\"* small|strong=\"H6996\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3068\"* of|strong=\"H4428\"* his|strong=\"H3605\"* princes|strong=\"H8269\"*, all|strong=\"H3605\"* these|strong=\"H3605\"* he|strong=\"H3068\"* brought|strong=\"H3068\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3605\"* burned|strong=\"H8313\"* God’s house|strong=\"H1004\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, burned|strong=\"H8313\"* all|strong=\"H3605\"* its|strong=\"H3605\"* palaces with|strong=\"H8313\"* fire, and|strong=\"H1004\"* destroyed|strong=\"H7843\"* all|strong=\"H3605\"* of|strong=\"H1004\"* its|strong=\"H3605\"* valuable|strong=\"H4261\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H5704\"* carried|strong=\"H1540\"* those|strong=\"H4480\"* who|strong=\"H1121\"* had|strong=\"H1961\"* escaped|strong=\"H7611\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sword|strong=\"H2719\"* away|strong=\"H1540\"* to|strong=\"H5704\"* Babylon, and|strong=\"H1121\"* they|strong=\"H5704\"* were|strong=\"H1961\"* servants|strong=\"H5650\"* to|strong=\"H5704\"* him|strong=\"H4427\"* and|strong=\"H1121\"* his|strong=\"H1540\"* sons|strong=\"H1121\"* until|strong=\"H5704\"* the|strong=\"H4480\"* reign|strong=\"H4427\"* of|strong=\"H1121\"* the|strong=\"H4480\"* kingdom|strong=\"H4438\"* of|strong=\"H1121\"* Persia|strong=\"H6539\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"H5704\"* fulfill|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H8141\"* Jeremiah|strong=\"H3414\"*’s mouth|strong=\"H6310\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* land had|strong=\"H3068\"* enjoyed|strong=\"H7521\"* its|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*. As|strong=\"H5704\"* long|strong=\"H5704\"* as|strong=\"H5704\"* it|strong=\"H5704\"* lay desolate|strong=\"H8074\"*, it|strong=\"H5704\"* kept|strong=\"H7673\"* Sabbath|strong=\"H7676\"*, to|strong=\"H5704\"* fulfill|strong=\"H4390\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H1571\"* in|strong=\"H8141\"* the|strong=\"H3605\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* by|strong=\"H5674\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H4428\"* Jeremiah|strong=\"H3414\"* might|strong=\"H3068\"* be|strong=\"H1697\"* accomplished|strong=\"H3615\"*, Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, so|strong=\"H1571\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H8141\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H3068\"* put|strong=\"H3068\"* it|strong=\"H3615\"* also|strong=\"H1571\"* in|strong=\"H8141\"* writing|strong=\"H4385\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 23, + "text": "“Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* says|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* heaven|strong=\"H8064\"*, has|strong=\"H3068\"* given|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth|strong=\"H5927\"* to|strong=\"H3068\"* me|strong=\"H5414\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* has|strong=\"H3068\"* commanded me|strong=\"H5414\"* to|strong=\"H3068\"* build|strong=\"H1129\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*. Whoever|strong=\"H3605\"* there|strong=\"H5927\"* is|strong=\"H3068\"* among|strong=\"H5973\"* you|strong=\"H5414\"* of|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"* be|strong=\"H3068\"* with|strong=\"H5973\"* him|strong=\"H5414\"*, and|strong=\"H3063\"* let|strong=\"H5414\"* him|strong=\"H5414\"* go|strong=\"H5927\"* up|strong=\"H5927\"*.’”" + } + ] + } + ] + }, + { + "name": "Ezra", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1571\"* in|strong=\"H8141\"* the|strong=\"H3605\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, that|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* by|strong=\"H5674\"* Jeremiah|strong=\"H3414\"*’s mouth|strong=\"H6310\"* might|strong=\"H3068\"* be|strong=\"H1697\"* accomplished|strong=\"H3615\"*, Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, so|strong=\"H1571\"* that|strong=\"H3605\"* he|strong=\"H3068\"* made|strong=\"H8141\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H3068\"* put|strong=\"H3068\"* it|strong=\"H3615\"* also|strong=\"H1571\"* in|strong=\"H8141\"* writing|strong=\"H4385\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* says|strong=\"H3541\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"*+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H4428\"* heaven|strong=\"H8064\"*, has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*; and|strong=\"H3063\"* he|strong=\"H1931\"* has|strong=\"H3068\"* commanded me|strong=\"H5414\"* to|strong=\"H3068\"* build|strong=\"H1129\"* him|strong=\"H5414\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "Whoever|strong=\"H3605\"* there|strong=\"H1961\"* is|strong=\"H3068\"* among|strong=\"H5973\"* you|strong=\"H3605\"* of|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, may|strong=\"H1961\"* his|strong=\"H3605\"* God|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H5973\"* him|strong=\"H5973\"*, and|strong=\"H3063\"* let|strong=\"H1961\"* him|strong=\"H5973\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* build|strong=\"H1129\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* (he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*), which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "Whoever|strong=\"H3605\"* is|strong=\"H1931\"* left|strong=\"H7604\"*, in|strong=\"H1004\"* any|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* he|strong=\"H1931\"* lives|strong=\"H1481\"*, let|strong=\"H7604\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* place|strong=\"H4725\"* help|strong=\"H5375\"* him|strong=\"H5973\"* with|strong=\"H5973\"* silver|strong=\"H3701\"*, with|strong=\"H5973\"* gold|strong=\"H2091\"*, with|strong=\"H5973\"* goods|strong=\"H7399\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* animals, in|strong=\"H1004\"* addition to|strong=\"H3389\"* the|strong=\"H3605\"* free|strong=\"H5973\"* will|strong=\"H1004\"* offering|strong=\"H5071\"* for|strong=\"H1004\"* God’s house|strong=\"H1004\"* which|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*.’”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, all|strong=\"H3605\"* whose|strong=\"H1144\"* spirit|strong=\"H7307\"* God|strong=\"H3068\"* had|strong=\"H3068\"* stirred|strong=\"H5782\"* to|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, rose|strong=\"H6965\"* up|strong=\"H5927\"* to|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* around|strong=\"H5439\"* them|strong=\"H5921\"* strengthened|strong=\"H2388\"* their|strong=\"H3605\"* hands|strong=\"H3027\"* with|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3027\"* silver|strong=\"H3701\"*, with|strong=\"H5921\"* gold|strong=\"H2091\"*, with|strong=\"H5921\"* goods|strong=\"H7399\"*, with|strong=\"H5921\"* animals, and|strong=\"H3701\"* with|strong=\"H5921\"* precious|strong=\"H4030\"* things|strong=\"H3605\"*, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* was|strong=\"H3027\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H3068\"* Cyrus|strong=\"H3566\"* the|strong=\"H5414\"* king|strong=\"H4428\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* had|strong=\"H3068\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* had|strong=\"H3068\"* put|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* gods;" + }, + { + "verseNum": 8, + "text": "even|strong=\"H5921\"* those|strong=\"H5921\"*, Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3027\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Mithredath|strong=\"H4990\"* the|strong=\"H5921\"* treasurer|strong=\"H1489\"*, and|strong=\"H3063\"* counted|strong=\"H5608\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Sheshbazzar|strong=\"H8339\"* the|strong=\"H5921\"* prince|strong=\"H5387\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 9, + "text": "This is|strong=\"H3701\"* the|strong=\"H4557\"* number|strong=\"H4557\"* of|strong=\"H4557\"* them: thirty|strong=\"H7970\"* platters of|strong=\"H4557\"* gold|strong=\"H2091\"*, one thousand platters of|strong=\"H4557\"* silver|strong=\"H3701\"*, twenty-nine|strong=\"H6242\"* knives|strong=\"H4252\"*," + }, + { + "verseNum": 10, + "text": "thirty|strong=\"H7970\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* gold|strong=\"H2091\"*, four hundred|strong=\"H3967\"* ten|strong=\"H6235\"* silver|strong=\"H3701\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* a|strong=\"H3068\"* second|strong=\"H4932\"* kind, and|strong=\"H3967\"* one|strong=\"H3967\"* thousand other|strong=\"H4932\"* vessels|strong=\"H3627\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* gold|strong=\"H2091\"* and|strong=\"H3967\"* of|strong=\"H3627\"* silver|strong=\"H3701\"* were|strong=\"H3627\"* five|strong=\"H2568\"* thousand four hundred|strong=\"H3967\"*. Sheshbazzar|strong=\"H8339\"* brought|strong=\"H5927\"* all|strong=\"H3605\"* these|strong=\"H3605\"* up|strong=\"H5927\"* when|strong=\"H5927\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* were|strong=\"H3627\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Babylon to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* these|strong=\"H4428\"* are|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7725\"* province|strong=\"H4082\"* who|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* captivity|strong=\"H7628\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* had|strong=\"H4428\"* been|strong=\"H5927\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, whom Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H7725\"* to|strong=\"H7725\"* Babylon, and|strong=\"H1121\"* who|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* Judah|strong=\"H3063\"*, everyone to|strong=\"H7725\"* his|strong=\"H7725\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 2, + "text": "who|strong=\"H5971\"* came|strong=\"H3478\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, Nehemiah|strong=\"H5166\"*, Seraiah|strong=\"H8304\"*, Reelaiah|strong=\"H7480\"*, Mordecai|strong=\"H4782\"*, Bilshan|strong=\"H1114\"*, Mispar|strong=\"H4558\"*, Bigvai, Rehum|strong=\"H7348\"*, and|strong=\"H3478\"* Baanah|strong=\"H1196\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Parosh|strong=\"H6551\"*, two|strong=\"H8147\"* thousand one|strong=\"H1121\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 5, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Arah, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* seventy-five|strong=\"H7657\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3097\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pahathmoab, of|strong=\"H1121\"* the|strong=\"H3097\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"* and|strong=\"H3967\"* Joab|strong=\"H3097\"*, two|strong=\"H8147\"* thousand eight|strong=\"H8083\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Elam|strong=\"H5867\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 8, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zattu|strong=\"H2240\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* forty-five." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zaccai|strong=\"H2140\"*, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* forty-two|strong=\"H8147\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bebai, six|strong=\"H8337\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Azgad|strong=\"H5803\"*, one|strong=\"H1121\"* thousand two|strong=\"H8147\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Adonikam, six|strong=\"H8337\"* hundred|strong=\"H3967\"* sixty-six|strong=\"H8346\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bigvai, two thousand fifty-six." + }, + { + "verseNum": 15, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Adin|strong=\"H5720\"*, four hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ater, of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, ninety-eight|strong=\"H8673\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bezai|strong=\"H1209\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jorah|strong=\"H3139\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twelve|strong=\"H8147\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hashum|strong=\"H2828\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gibbar|strong=\"H1402\"*, ninety-five|strong=\"H8673\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bethlehem|strong=\"H1035\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 22, + "text": "The men of Netophah|strong=\"H5199\"*, fifty-six." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3967\"* men of|strong=\"H3967\"* Anathoth|strong=\"H6068\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Azmaveth|strong=\"H5820\"*, forty-two|strong=\"H8147\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Arim, Chephirah|strong=\"H3716\"*, and|strong=\"H3967\"* Beeroth, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* forty-three." + }, + { + "verseNum": 26, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ramah|strong=\"H7414\"* and|strong=\"H3967\"* Geba|strong=\"H1387\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* twenty-one|strong=\"H6242\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H8147\"* men|strong=\"H8147\"* of|strong=\"H8147\"* Michmas|strong=\"H4363\"*, one|strong=\"H8147\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3967\"* men of|strong=\"H3967\"* Bethel|strong=\"H1008\"* and|strong=\"H3967\"* Ai|strong=\"H5857\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* twenty-three|strong=\"H6242\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nebo|strong=\"H5015\"*, fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Magbish|strong=\"H4019\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* fifty-six." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1121\"* other Elam|strong=\"H5867\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* fifty-four." + }, + { + "verseNum": 32, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lod|strong=\"H3850\"*, Hadid|strong=\"H2307\"*, and|strong=\"H3967\"* Ono, seven|strong=\"H7651\"* hundred|strong=\"H3967\"* twenty-five|strong=\"H6242\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"*, three|strong=\"H7969\"* hundred|strong=\"H3967\"* forty-five." + }, + { + "verseNum": 35, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Senaah|strong=\"H5570\"*, three|strong=\"H7969\"* thousand six|strong=\"H8337\"* hundred|strong=\"H3967\"* thirty|strong=\"H7970\"*." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3548\"* priests|strong=\"H3548\"*: the|strong=\"H3548\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3048\"*, of|strong=\"H1121\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* seventy-three." + }, + { + "verseNum": 37, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Immer, one|strong=\"H1121\"* thousand fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, one|strong=\"H1121\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-seven." + }, + { + "verseNum": 39, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"*, one|strong=\"H1121\"* thousand seventeen|strong=\"H7651\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H1121\"* Levites|strong=\"H3881\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"* and|strong=\"H1121\"* Kadmiel|strong=\"H6934\"*, of|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hodaviah|strong=\"H1938\"*, seventy-four." + }, + { + "verseNum": 41, + "text": "The|strong=\"H1121\"* singers|strong=\"H7891\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*: the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ater, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Talmon|strong=\"H2929\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Akkub|strong=\"H6126\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatita|strong=\"H2410\"*, the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shobai|strong=\"H7630\"*, in|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* thirty-nine." + }, + { + "verseNum": 43, + "text": "The|strong=\"H1121\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ziha|strong=\"H6727\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hasupha|strong=\"H2817\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tabbaoth|strong=\"H2884\"*," + }, + { + "verseNum": 44, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keros|strong=\"H7026\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Siaha|strong=\"H5517\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Padon|strong=\"H6303\"*," + }, + { + "verseNum": 45, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lebanah|strong=\"H3838\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagabah|strong=\"H2286\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Akkub|strong=\"H6126\"*," + }, + { + "verseNum": 46, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagab|strong=\"H2285\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shamlai, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"*," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gahar|strong=\"H1515\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reaiah|strong=\"H7211\"*," + }, + { + "verseNum": 48, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gazzam|strong=\"H1502\"*," + }, + { + "verseNum": 49, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Besai|strong=\"H1153\"*," + }, + { + "verseNum": 50, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Asnah, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Meunim|strong=\"H4586\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nephisim|strong=\"H5304\"*," + }, + { + "verseNum": 51, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bakbuk|strong=\"H1227\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakupha|strong=\"H2709\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harhur|strong=\"H2744\"*," + }, + { + "verseNum": 52, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bazluth|strong=\"H1213\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Mehida|strong=\"H4240\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harsha|strong=\"H2797\"*," + }, + { + "verseNum": 53, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barkos|strong=\"H1302\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sisera|strong=\"H5516\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Temah|strong=\"H8547\"*," + }, + { + "verseNum": 54, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Neziah|strong=\"H5335\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatipha|strong=\"H2412\"*." + }, + { + "verseNum": 55, + "text": "The|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*: the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sotai|strong=\"H5479\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hassophereth|strong=\"H5618\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Peruda|strong=\"H6514\"*," + }, + { + "verseNum": 56, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jaalah|strong=\"H3279\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Darkon|strong=\"H1874\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*," + }, + { + "verseNum": 57, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hattil|strong=\"H2411\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pochereth Hazzebaim, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ami." + }, + { + "verseNum": 58, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*, were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety-two." + }, + { + "verseNum": 59, + "text": "These|strong=\"H1992\"* were|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tel Melah, Tel Harsha, Cherub|strong=\"H3743\"*, Addan, and|strong=\"H3478\"* Immer; but|strong=\"H3808\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* show|strong=\"H5046\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"* and|strong=\"H3478\"* their|strong=\"H1992\"* offspring|strong=\"H2233\"*,+ 2:59 or, seed* whether they|strong=\"H1992\"* were|strong=\"H3478\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 60, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Delaiah|strong=\"H1806\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tobiah|strong=\"H2900\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*, six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty-two|strong=\"H2572\"*." + }, + { + "verseNum": 61, + "text": "Of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*: the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Habaiah|strong=\"H2252\"*, the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"*, who|strong=\"H3548\"* took|strong=\"H3947\"* a|strong=\"H3068\"* wife of|strong=\"H1121\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* Barzillai|strong=\"H1271\"* the|strong=\"H5921\"* Gileadite|strong=\"H1569\"*, and|strong=\"H1121\"* was|strong=\"H8034\"* called|strong=\"H7121\"* after|strong=\"H5921\"* their|strong=\"H3947\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 62, + "text": "These sought|strong=\"H1245\"* their|strong=\"H1245\"* place among|strong=\"H4480\"* those|strong=\"H4480\"* who|strong=\"H4672\"* were|strong=\"H4672\"* registered by|strong=\"H3187\"* genealogy|strong=\"H3187\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* were|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"*; therefore they|strong=\"H3808\"* were|strong=\"H4672\"* deemed disqualified and|strong=\"H4480\"* removed|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 63, + "text": "The|strong=\"H5704\"* governor|strong=\"H8660\"* told them|strong=\"H5975\"* that|strong=\"H3548\"* they|strong=\"H3808\"* should|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H3548\"* the|strong=\"H5704\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5704\"* serve|strong=\"H5975\"* with|strong=\"H3548\"* Urim and|strong=\"H3548\"* with|strong=\"H3548\"* Thummim|strong=\"H8550\"*." + }, + { + "verseNum": 64, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* together|strong=\"H6951\"* was|strong=\"H3605\"* forty-two thousand|strong=\"H7239\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*," + }, + { + "verseNum": 65, + "text": "in|strong=\"H5650\"* addition to|strong=\"H5650\"* their male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* their female servants|strong=\"H5650\"*, of|strong=\"H5650\"* whom there were|strong=\"H5650\"* seven|strong=\"H7651\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"*; and|strong=\"H3967\"* they had|strong=\"H7891\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* singing|strong=\"H7891\"* men|strong=\"H5650\"* and|strong=\"H3967\"* singing|strong=\"H7891\"* women|strong=\"H7891\"*." + }, + { + "verseNum": 66, + "text": "Their|strong=\"H5483\"* horses|strong=\"H5483\"* were|strong=\"H5483\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty-six|strong=\"H7970\"*; their|strong=\"H5483\"* mules|strong=\"H6505\"*, two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-five;" + }, + { + "verseNum": 67, + "text": "their camels|strong=\"H1581\"*, four hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"*; their donkeys|strong=\"H2543\"*, six|strong=\"H8337\"* thousand seven|strong=\"H7651\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"*." + }, + { + "verseNum": 68, + "text": "Some of|strong=\"H1004\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"*, when|strong=\"H3068\"* they|strong=\"H3068\"* came|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, offered|strong=\"H5068\"* willingly|strong=\"H5068\"* for|strong=\"H5921\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* set|strong=\"H5975\"* it|strong=\"H5921\"* up|strong=\"H5975\"* in|strong=\"H5921\"* its|strong=\"H5921\"* place|strong=\"H4349\"*." + }, + { + "verseNum": 69, + "text": "They|strong=\"H5414\"* gave|strong=\"H5414\"* according|strong=\"H3701\"* to|strong=\"H5414\"* their|strong=\"H5414\"* ability|strong=\"H3581\"* into|strong=\"H3701\"* the|strong=\"H5414\"* treasury of|strong=\"H3548\"* the|strong=\"H5414\"* work|strong=\"H4399\"* sixty-one thousand|strong=\"H7239\"* darics of|strong=\"H3548\"* gold|strong=\"H2091\"*,+ 2:69 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* five|strong=\"H2568\"* thousand|strong=\"H7239\"* minas|strong=\"H4488\"*+ 2:69 A mina is about 600 grams or 1.3 U. S. pounds, so 5,000 minas is about 3 metric tons.* of|strong=\"H3548\"* silver|strong=\"H3701\"*, and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* priests|strong=\"H3548\"*’ garments|strong=\"H3801\"*." + }, + { + "verseNum": 70, + "text": "So|strong=\"H4480\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3478\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, with|strong=\"H3427\"* some|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* singers|strong=\"H7891\"*, the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*, lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3427\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1121\"* the|strong=\"H5060\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"* had|strong=\"H3478\"* come|strong=\"H5060\"*, and|strong=\"H1121\"* the|strong=\"H5060\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H5060\"* cities|strong=\"H5892\"*, the|strong=\"H5060\"* people|strong=\"H5971\"* gathered|strong=\"H3478\"* themselves together|strong=\"H5971\"* as|strong=\"H3389\"* one|strong=\"H1121\"* man|strong=\"H1121\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6965\"* Jeshua|strong=\"H3442\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"* stood|strong=\"H6965\"* up|strong=\"H5927\"* with|strong=\"H5921\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"* and|strong=\"H1121\"* his|strong=\"H5921\"* relatives|strong=\"H1121\"*, and|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* of|strong=\"H1121\"* the|strong=\"H5921\"* God of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, as|strong=\"H5927\"* it|strong=\"H5921\"* is|strong=\"H3478\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H1121\"* Moses|strong=\"H4872\"* the|strong=\"H5921\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God." + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* spite|strong=\"H5921\"* of|strong=\"H3068\"* their|strong=\"H3068\"* fear because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5921\"* surrounding lands, they|strong=\"H3588\"* set|strong=\"H3559\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* its|strong=\"H5921\"* base|strong=\"H4350\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, even|strong=\"H6153\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* morning|strong=\"H1242\"* and|strong=\"H3068\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* booths|strong=\"H5521\"*, as|strong=\"H1697\"* it|strong=\"H6213\"* is|strong=\"H3117\"* written|strong=\"H3789\"*, and|strong=\"H3117\"* offered|strong=\"H6213\"* the|strong=\"H6213\"* daily|strong=\"H3117\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* by|strong=\"H3117\"* number|strong=\"H4557\"*, according|strong=\"H4941\"* to|strong=\"H6213\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*, as|strong=\"H1697\"* the|strong=\"H6213\"* duty|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* afterward the|strong=\"H3605\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H3605\"* offerings|strong=\"H5930\"* of|strong=\"H3068\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* set|strong=\"H6942\"* feasts|strong=\"H4150\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* that|strong=\"H3605\"* were|strong=\"H3068\"* consecrated|strong=\"H6942\"*, and|strong=\"H3068\"* of|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "From|strong=\"H5927\"* the|strong=\"H3068\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, they|strong=\"H3117\"* began|strong=\"H2490\"* to|strong=\"H3068\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*; but|strong=\"H3808\"* the|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* was|strong=\"H3068\"* not|strong=\"H3808\"* yet|strong=\"H3068\"* laid|strong=\"H3245\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* money|strong=\"H3701\"* to|strong=\"H5921\"* the|strong=\"H5921\"* masons|strong=\"H2672\"* and|strong=\"H3701\"* to|strong=\"H5921\"* the|strong=\"H5921\"* carpenters|strong=\"H2796\"*. They|strong=\"H5921\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* food|strong=\"H3978\"*, drink|strong=\"H4960\"*, and|strong=\"H3701\"* oil|strong=\"H8081\"* to|strong=\"H5921\"* the|strong=\"H5921\"* people of|strong=\"H4428\"* Sidon and|strong=\"H3701\"* Tyre|strong=\"H6876\"* to|strong=\"H5921\"* bring|strong=\"H5414\"* cedar trees|strong=\"H6086\"* from|strong=\"H4480\"* Lebanon|strong=\"H3844\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, to|strong=\"H5921\"* Joppa|strong=\"H3305\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* grant|strong=\"H5414\"* that|strong=\"H5414\"* they|strong=\"H5921\"* had|strong=\"H4428\"* from|strong=\"H4480\"* Cyrus|strong=\"H3566\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H5921\"* in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* year|strong=\"H8141\"* of|strong=\"H1121\"* their|strong=\"H3605\"* coming to|strong=\"H3068\"* God|strong=\"H3068\"*’s house|strong=\"H1004\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* second|strong=\"H8145\"* month|strong=\"H2320\"*, Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, Jeshua|strong=\"H3442\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* come out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, began|strong=\"H2490\"* the|strong=\"H3605\"* work|strong=\"H4399\"* and|strong=\"H1121\"* appointed|strong=\"H5975\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, from|strong=\"H5921\"* twenty|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* and|strong=\"H1121\"* upward|strong=\"H4605\"*, to|strong=\"H3068\"* have|strong=\"H3068\"* the|strong=\"H3605\"* oversight of|strong=\"H1121\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6213\"* Jeshua|strong=\"H3442\"* stood|strong=\"H5975\"* with|strong=\"H1004\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, Kadmiel|strong=\"H6934\"* and|strong=\"H1121\"* his|strong=\"H5921\"* sons|strong=\"H1121\"*, the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, together|strong=\"H5921\"* to|strong=\"H6213\"* have|strong=\"H1121\"* the|strong=\"H5921\"* oversight of|strong=\"H1121\"* the|strong=\"H5921\"* workmen|strong=\"H4399\"* in|strong=\"H5921\"* God’s house|strong=\"H1004\"*: the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"*, with|strong=\"H1004\"* their|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3068\"* the|strong=\"H5921\"* builders|strong=\"H1129\"* laid|strong=\"H3245\"* the|strong=\"H5921\"* foundation|strong=\"H3245\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, they|strong=\"H3068\"* set|strong=\"H5975\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* in|strong=\"H5921\"* their|strong=\"H3068\"* vestments with|strong=\"H3847\"* trumpets|strong=\"H2689\"*, with|strong=\"H3847\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph with|strong=\"H3847\"* cymbals|strong=\"H4700\"*, to|strong=\"H3478\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* directions|strong=\"H3027\"* of|strong=\"H1121\"* David|strong=\"H1732\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* sang|strong=\"H1984\"* to|strong=\"H3478\"* one|strong=\"H3605\"* another in|strong=\"H5921\"* praising|strong=\"H1984\"* and|strong=\"H3478\"* giving|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, “For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, for|strong=\"H3588\"* his|strong=\"H3605\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"* toward|strong=\"H5921\"* Israel|strong=\"H3478\"*.” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H1004\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shout|strong=\"H7321\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* praised|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* had|strong=\"H3068\"* been|strong=\"H5769\"* laid|strong=\"H3245\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7200\"* many|strong=\"H7227\"* of|strong=\"H1004\"* the|strong=\"H7200\"* priests|strong=\"H3548\"* and|strong=\"H1419\"* Levites|strong=\"H3881\"* and|strong=\"H1419\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* fathers’ households|strong=\"H1004\"*, the|strong=\"H7200\"* old|strong=\"H2205\"* men|strong=\"H2205\"* who|strong=\"H3548\"* had|strong=\"H5869\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* first|strong=\"H7223\"* house|strong=\"H1004\"*, when|strong=\"H7200\"* the|strong=\"H7200\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"* was|strong=\"H1004\"* laid|strong=\"H3245\"* before|strong=\"H5869\"* their|strong=\"H7200\"* eyes|strong=\"H5869\"*, wept|strong=\"H1058\"* with|strong=\"H1004\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*. Many|strong=\"H7227\"* also|strong=\"H2088\"* shouted|strong=\"H8643\"* aloud|strong=\"H7311\"* for|strong=\"H1004\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 13, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* could|strong=\"H5234\"* not|strong=\"H3588\"* discern|strong=\"H5234\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* shout|strong=\"H7321\"* of|strong=\"H6963\"* joy|strong=\"H8057\"* from|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* weeping|strong=\"H1065\"* of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H5971\"*; for|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* shouted|strong=\"H7321\"* with|strong=\"H5971\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* shout|strong=\"H7321\"*, and|strong=\"H1419\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* was|strong=\"H6963\"* heard|strong=\"H8085\"* far|strong=\"H5704\"* away|strong=\"H7350\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H8085\"* adversaries|strong=\"H6862\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Benjamin|strong=\"H1144\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8085\"* captivity|strong=\"H1473\"* were|strong=\"H3478\"* building|strong=\"H1129\"* a|strong=\"H3068\"* temple|strong=\"H1964\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "they|strong=\"H1992\"* came|strong=\"H5927\"* near|strong=\"H5066\"* to|strong=\"H5927\"* Zerubbabel|strong=\"H2216\"*, and|strong=\"H4428\"* to|strong=\"H5927\"* the|strong=\"H3588\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* fathers’ households, and|strong=\"H4428\"* said to|strong=\"H5927\"* them|strong=\"H1992\"*, “Let|strong=\"H3808\"* us|strong=\"H3588\"* build|strong=\"H1129\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* seek|strong=\"H1875\"* your|strong=\"H3588\"* God|strong=\"H3808\"* as|strong=\"H3117\"* you|strong=\"H3588\"* do; and|strong=\"H4428\"* we|strong=\"H3068\"* have|strong=\"H3117\"* been|strong=\"H3808\"* sacrificing|strong=\"H2076\"* to|strong=\"H5927\"* him|strong=\"H5973\"* since|strong=\"H3588\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Esar Haddon king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, who|strong=\"H1992\"* brought|strong=\"H5927\"* us|strong=\"H3588\"* up|strong=\"H5927\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3588\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, and|strong=\"H3478\"* the|strong=\"H3588\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* the|strong=\"H3588\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* fathers’ households|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H6680\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* nothing|strong=\"H3808\"* to|strong=\"H3478\"* do|strong=\"H3068\"* with|strong=\"H1004\"* us|strong=\"H3588\"* in|strong=\"H3478\"* building|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"* to|strong=\"H3478\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; but|strong=\"H3588\"* we|strong=\"H3068\"* ourselves|strong=\"H1129\"* together|strong=\"H3162\"* will|strong=\"H3068\"* build|strong=\"H1129\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, as|strong=\"H3068\"* King|strong=\"H4428\"* Cyrus|strong=\"H3566\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* the|strong=\"H1129\"* people|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H1129\"* land weakened|strong=\"H7503\"* the|strong=\"H1129\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H1129\"* people|strong=\"H5971\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* troubled them|strong=\"H3027\"* in|strong=\"H1129\"* building|strong=\"H1129\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3117\"* hired|strong=\"H7936\"* counselors|strong=\"H3289\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5704\"* frustrate|strong=\"H6565\"* their|strong=\"H3605\"* purpose|strong=\"H6098\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H3605\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Darius|strong=\"H1867\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H3427\"* Ahasuerus, in|strong=\"H3427\"* the|strong=\"H5921\"* beginning|strong=\"H8462\"* of|strong=\"H3427\"* his|strong=\"H5921\"* reign|strong=\"H4438\"*, they|strong=\"H5921\"* wrote|strong=\"H3789\"* an|strong=\"H3427\"* accusation|strong=\"H7855\"* against|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Artaxerxes, Bishlam|strong=\"H1312\"*, Mithredath|strong=\"H4990\"*, Tabeel|strong=\"H2870\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* rest|strong=\"H7605\"* of|strong=\"H4428\"* his|strong=\"H5921\"* companions|strong=\"H3674\"* wrote|strong=\"H3789\"* to|strong=\"H5921\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* of|strong=\"H4428\"* the|strong=\"H5921\"* letter|strong=\"H5406\"* was|strong=\"H3117\"* written|strong=\"H3789\"* in|strong=\"H5921\"* Syrian and|strong=\"H4428\"* delivered in|strong=\"H5921\"* the|strong=\"H5921\"* Syrian language." + }, + { + "verseNum": 8, + "text": "Rehum|strong=\"H7348\"* the|strong=\"H5922\"* chancellor|strong=\"H1169\"* and|strong=\"H4430\"* Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"* wrote|strong=\"H3790\"* a|strong=\"H3068\"* letter against|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* to|strong=\"H5922\"* Artaxerxes the|strong=\"H5922\"* king|strong=\"H4430\"* as follows|strong=\"H3660\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1768\"* Rehum|strong=\"H7348\"* the|strong=\"H1768\"* chancellor|strong=\"H1169\"*, Shimshai|strong=\"H8124\"* the|strong=\"H1768\"* scribe|strong=\"H5613\"*, and|strong=\"H5613\"* the|strong=\"H1768\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* their companions|strong=\"H3675\"*, the|strong=\"H1768\"* Dinaites|strong=\"H1784\"*, and|strong=\"H5613\"* the|strong=\"H1768\"* Apharsathchites, the|strong=\"H1768\"* Tarpelites|strong=\"H2967\"*, the|strong=\"H1768\"* Apharsites, the|strong=\"H1768\"* Archevites, the|strong=\"H1768\"* Babylonians, the|strong=\"H1768\"* Shushanchites, the|strong=\"H1768\"* Dehaites, the|strong=\"H1768\"* Elamites|strong=\"H5962\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H7229\"* the|strong=\"H5675\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* the|strong=\"H5675\"* nations whom|strong=\"H1768\"* the|strong=\"H5675\"* great|strong=\"H7229\"* and|strong=\"H7229\"* noble|strong=\"H3358\"* Osnappar brought over|strong=\"H1541\"* and|strong=\"H7229\"* settled|strong=\"H3488\"* in|strong=\"H3488\"* the|strong=\"H5675\"* city|strong=\"H7149\"* of|strong=\"H1768\"* Samaria|strong=\"H8115\"*, and|strong=\"H7229\"* in|strong=\"H3488\"* the|strong=\"H5675\"* rest|strong=\"H7606\"* of|strong=\"H1768\"* the|strong=\"H5675\"* country beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*, and|strong=\"H7229\"* so|strong=\"H1768\"* forth, wrote." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1836\"* is|strong=\"H1768\"* the|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4430\"* the|strong=\"H5922\"* letter that|strong=\"H1768\"* they|strong=\"H1768\"* sent|strong=\"H7972\"*:" + }, + { + "verseNum": 12, + "text": "Be|strong=\"H1934\"* it|strong=\"H5922\"* known|strong=\"H3046\"* to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"* that|strong=\"H1768\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* who|strong=\"H1768\"* came|strong=\"H5559\"* up|strong=\"H3635\"* from|strong=\"H4481\"* you|strong=\"H1768\"* have|strong=\"H1934\"* come to|strong=\"H5922\"* us|strong=\"H5922\"* to|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*. They|strong=\"H1768\"* are|strong=\"H1768\"* building|strong=\"H1124\"* the|strong=\"H5922\"* rebellious|strong=\"H4779\"* and|strong=\"H4430\"* bad city|strong=\"H7149\"*, and|strong=\"H4430\"* have|strong=\"H1934\"* finished|strong=\"H3635\"* the|strong=\"H5922\"* walls|strong=\"H7792\"* and|strong=\"H4430\"* repaired the|strong=\"H5922\"* foundations." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H1934\"* it|strong=\"H1934\"* known|strong=\"H3046\"* now|strong=\"H3705\"* to|strong=\"H3046\"* the|strong=\"H3046\"* king|strong=\"H4430\"* that|strong=\"H1768\"* if|strong=\"H2006\"* this|strong=\"H1791\"* city|strong=\"H7149\"* is|strong=\"H1768\"* built|strong=\"H1124\"* and|strong=\"H4430\"* the|strong=\"H3046\"* walls|strong=\"H7792\"* finished|strong=\"H3635\"*, they|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* pay|strong=\"H5415\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, or|strong=\"H2006\"* toll|strong=\"H1983\"*, and|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H3046\"* end it|strong=\"H1934\"* will|strong=\"H1768\"* be|strong=\"H1934\"* hurtful|strong=\"H5142\"* to|strong=\"H3046\"* the|strong=\"H3046\"* kings|strong=\"H4430\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3705\"* because|strong=\"H6903\"* we|strong=\"H3068\"* eat the|strong=\"H3606\"* salt|strong=\"H4416\"* of|strong=\"H4430\"* the|strong=\"H3606\"* palace|strong=\"H1965\"* and|strong=\"H4430\"* it|strong=\"H5922\"* is|strong=\"H1768\"* not|strong=\"H3809\"* appropriate for|strong=\"H5922\"* us|strong=\"H5922\"* to|strong=\"H5922\"* see|strong=\"H2370\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s dishonor|strong=\"H6173\"*, therefore|strong=\"H3606\"* we|strong=\"H3068\"* have|strong=\"H1768\"* sent|strong=\"H7972\"* and|strong=\"H4430\"* informed|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"*," + }, + { + "verseNum": 15, + "text": "that|strong=\"H1768\"* search|strong=\"H1240\"* may be|strong=\"H7149\"* made|strong=\"H5648\"* in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H4481\"* the|strong=\"H5922\"* records|strong=\"H1799\"* of|strong=\"H4481\"* your|strong=\"H1768\"* fathers. You|strong=\"H1768\"* will|strong=\"H1768\"* see in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H4481\"* the|strong=\"H5922\"* records|strong=\"H1799\"*, and|strong=\"H4430\"* know|strong=\"H3046\"* that|strong=\"H1768\"* this|strong=\"H1836\"* city|strong=\"H7149\"* is|strong=\"H1768\"* a|strong=\"H3068\"* rebellious|strong=\"H4779\"* city|strong=\"H7149\"*, and|strong=\"H4430\"* hurtful|strong=\"H5142\"* to|strong=\"H5922\"* kings|strong=\"H4430\"* and|strong=\"H4430\"* provinces|strong=\"H4083\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* they|strong=\"H1768\"* have|strong=\"H1768\"* started rebellions within|strong=\"H1459\"* it|strong=\"H5922\"* in|strong=\"H5922\"* the|strong=\"H5922\"* past|strong=\"H5957\"*. That|strong=\"H1768\"* is|strong=\"H1768\"* why this|strong=\"H1836\"* city|strong=\"H7149\"* was|strong=\"H4430\"* destroyed|strong=\"H2718\"*." + }, + { + "verseNum": 16, + "text": "We|strong=\"H1768\"* inform|strong=\"H3046\"* the|strong=\"H5675\"* king|strong=\"H4430\"* that|strong=\"H1768\"* if|strong=\"H2006\"* this|strong=\"H1836\"* city|strong=\"H7149\"* is|strong=\"H1768\"* built|strong=\"H1124\"* and|strong=\"H4430\"* the|strong=\"H5675\"* walls|strong=\"H7792\"* finished|strong=\"H3635\"*, then|strong=\"H6903\"* you|strong=\"H1768\"* will|strong=\"H1768\"* have|strong=\"H1768\"* no|strong=\"H3809\"* possession|strong=\"H2508\"* beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* sent|strong=\"H7972\"* an|strong=\"H4430\"* answer|strong=\"H6600\"* to|strong=\"H5922\"* Rehum|strong=\"H7348\"* the|strong=\"H5922\"* chancellor|strong=\"H1169\"*, and|strong=\"H4430\"* to|strong=\"H5922\"* Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"*, and|strong=\"H4430\"* to|strong=\"H5922\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4430\"* their companions|strong=\"H3675\"* who|strong=\"H1768\"* live|strong=\"H3488\"* in|strong=\"H5922\"* Samaria|strong=\"H8115\"*, and|strong=\"H4430\"* in|strong=\"H5922\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4430\"* the|strong=\"H5922\"* country beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*:" + }, + { + "verseNum": 18, + "text": "The|strong=\"H5922\"* letter|strong=\"H5407\"* which|strong=\"H1768\"* you|strong=\"H1768\"* sent|strong=\"H7972\"* to|strong=\"H5922\"* us|strong=\"H5922\"* has|strong=\"H1768\"* been plainly|strong=\"H6568\"* read|strong=\"H7123\"* before|strong=\"H6925\"* me|strong=\"H5922\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H4481\"* decreed, and|strong=\"H4430\"* search|strong=\"H1240\"* has|strong=\"H1768\"* been made|strong=\"H5648\"*, and|strong=\"H4430\"* it|strong=\"H5922\"* was|strong=\"H4430\"* found|strong=\"H7912\"* that|strong=\"H1768\"* this|strong=\"H1791\"* city|strong=\"H7149\"* has|strong=\"H1768\"* made|strong=\"H5648\"* insurrection|strong=\"H5376\"* against|strong=\"H5922\"* kings|strong=\"H4430\"* in|strong=\"H5922\"* the|strong=\"H5922\"* past|strong=\"H5957\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* rebellion|strong=\"H4776\"* and|strong=\"H4430\"* revolts have|strong=\"H7761\"* been made|strong=\"H5648\"* in|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 20, + "text": "There have|strong=\"H1934\"* also|strong=\"H4430\"* been|strong=\"H1934\"* mighty|strong=\"H8624\"* kings|strong=\"H4430\"* over|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* who have|strong=\"H1934\"* ruled|strong=\"H7990\"* over|strong=\"H5922\"* all|strong=\"H3606\"* the|strong=\"H3606\"* country beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*; and|strong=\"H4430\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, and|strong=\"H4430\"* toll|strong=\"H1983\"* was|strong=\"H1934\"* paid|strong=\"H3052\"* to|strong=\"H5922\"* them|strong=\"H5922\"*." + }, + { + "verseNum": 21, + "text": "Make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* now|strong=\"H3705\"* to|strong=\"H2942\"* cause these|strong=\"H4481\"* men|strong=\"H1400\"* to|strong=\"H2942\"* cease, and|strong=\"H7149\"* that|strong=\"H2942\"* this|strong=\"H1791\"* city|strong=\"H7149\"* not|strong=\"H3809\"* be|strong=\"H3809\"* built|strong=\"H1124\"* until|strong=\"H5705\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* is|strong=\"H7149\"* made|strong=\"H7761\"* by|strong=\"H4481\"* me|strong=\"H4481\"*." + }, + { + "verseNum": 22, + "text": "Be|strong=\"H1934\"* careful that|strong=\"H5922\"* you|strong=\"H5922\"* not be|strong=\"H1934\"* slack doing|strong=\"H5648\"* so. Why|strong=\"H4101\"* should|strong=\"H4101\"* damage|strong=\"H5142\"* grow|strong=\"H7680\"* to|strong=\"H5922\"* the|strong=\"H5922\"* hurt|strong=\"H2257\"* of|strong=\"H4430\"* the|strong=\"H5922\"* kings|strong=\"H4430\"*?" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H1768\"* when|strong=\"H1768\"* the|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4481\"* King|strong=\"H4430\"* Artaxerxes’ letter|strong=\"H5407\"* was|strong=\"H4430\"* read|strong=\"H7123\"* before|strong=\"H6925\"* Rehum|strong=\"H7348\"*, Shimshai|strong=\"H8124\"* the|strong=\"H5922\"* scribe|strong=\"H5613\"*, and|strong=\"H4430\"* their companions|strong=\"H3675\"*, they|strong=\"H1768\"* went|strong=\"H5613\"* in|strong=\"H5922\"* haste to|strong=\"H5922\"* Jerusalem|strong=\"H3390\"* to|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"*, and|strong=\"H4430\"* made|strong=\"H7123\"* them|strong=\"H1994\"* to|strong=\"H5922\"* cease by|strong=\"H6925\"* force of|strong=\"H4481\"* arms|strong=\"H2429\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1768\"* work|strong=\"H5673\"* stopped on|strong=\"H5705\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H5705\"* Jerusalem|strong=\"H3390\"*. It|strong=\"H1934\"* stopped until|strong=\"H5705\"* the|strong=\"H1768\"* second|strong=\"H8648\"* year|strong=\"H8140\"* of|strong=\"H1005\"* the|strong=\"H1768\"* reign|strong=\"H4437\"* of|strong=\"H1005\"* Darius|strong=\"H1868\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Persia|strong=\"H6540\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now the|strong=\"H5922\"* prophets, Haggai|strong=\"H2292\"* the|strong=\"H5922\"* prophet and|strong=\"H2148\"* Zechariah|strong=\"H2148\"* the|strong=\"H5922\"* son|strong=\"H1247\"* of|strong=\"H1247\"* Iddo|strong=\"H5714\"*, prophesied|strong=\"H5013\"* to|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* who|strong=\"H1768\"* were|strong=\"H1768\"* in|strong=\"H5922\"* Judah|strong=\"H3061\"* and|strong=\"H2148\"* Jerusalem|strong=\"H3390\"*. They|strong=\"H1768\"* prophesied|strong=\"H5013\"* to|strong=\"H5922\"* them|strong=\"H5922\"* in|strong=\"H5922\"* the|strong=\"H5922\"* name|strong=\"H8036\"* of|strong=\"H1247\"* the|strong=\"H5922\"* God of|strong=\"H1247\"* Israel|strong=\"H3479\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1768\"* Zerubbabel|strong=\"H2217\"* the|strong=\"H1768\"* son|strong=\"H1247\"* of|strong=\"H1005\"* Shealtiel|strong=\"H7598\"*, and|strong=\"H1005\"* Jeshua|strong=\"H3443\"* the|strong=\"H1768\"* son|strong=\"H1247\"* of|strong=\"H1005\"* Jozadak|strong=\"H3136\"* rose up|strong=\"H6966\"* and|strong=\"H1005\"* began|strong=\"H8271\"* to|strong=\"H5974\"* build|strong=\"H1124\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H6966\"* Jerusalem|strong=\"H3390\"*; and|strong=\"H1005\"* with|strong=\"H5974\"* them|strong=\"H5974\"* were|strong=\"H1768\"* the|strong=\"H1768\"* prophets|strong=\"H5029\"* of|strong=\"H1005\"* God, helping|strong=\"H5583\"* them|strong=\"H5974\"*." + }, + { + "verseNum": 3, + "text": "At the|strong=\"H5922\"* same time|strong=\"H2166\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5922\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, came to|strong=\"H5922\"* them|strong=\"H5922\"*, with|strong=\"H1124\"* Shetharbozenai and|strong=\"H1005\"* their companions|strong=\"H3675\"*, and|strong=\"H1005\"* asked them|strong=\"H5922\"*, “Who|strong=\"H4479\"* gave|strong=\"H7761\"* you|strong=\"H5922\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H5922\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* and|strong=\"H1005\"* to|strong=\"H5922\"* finish|strong=\"H3635\"* this|strong=\"H1836\"* wall?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3660\"* also|strong=\"H3660\"* asked for|strong=\"H1768\"* the|strong=\"H1768\"* names|strong=\"H8036\"* of|strong=\"H1768\"* the|strong=\"H1768\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* making this|strong=\"H1836\"* building|strong=\"H1124\"*." + }, + { + "verseNum": 5, + "text": "But the|strong=\"H5922\"* eye|strong=\"H5870\"* of|strong=\"H5922\"* their God was|strong=\"H1934\"* on|strong=\"H5922\"* the|strong=\"H5922\"* elders|strong=\"H7868\"* of|strong=\"H5922\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"*, and|strong=\"H1934\"* they|strong=\"H3809\"* didn’t make|strong=\"H3809\"* them|strong=\"H1994\"* cease until|strong=\"H5705\"* the|strong=\"H5922\"* matter|strong=\"H2941\"* should come to|strong=\"H5922\"* Darius|strong=\"H1868\"*, and|strong=\"H1934\"* an|strong=\"H5705\"* answer|strong=\"H8421\"* should be|strong=\"H1934\"* returned|strong=\"H8421\"* by|strong=\"H8421\"* letter|strong=\"H5407\"* concerning|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5922\"* copy|strong=\"H6573\"* of|strong=\"H4430\"* the|strong=\"H5922\"* letter that|strong=\"H1768\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5922\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, and|strong=\"H4430\"* Shetharbozenai, and|strong=\"H4430\"* his|strong=\"H5922\"* companions|strong=\"H3675\"* the|strong=\"H5922\"* Apharsachites who|strong=\"H1768\"* were|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H5922\"* River|strong=\"H5103\"*, sent|strong=\"H7972\"* to|strong=\"H5922\"* Darius|strong=\"H1868\"* the|strong=\"H5922\"* king|strong=\"H4430\"* follows." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3606\"* sent|strong=\"H7972\"* a|strong=\"H3068\"* letter|strong=\"H6600\"* to|strong=\"H5922\"* him|strong=\"H5922\"*, in|strong=\"H5922\"* which|strong=\"H1836\"* was|strong=\"H4430\"* written|strong=\"H3790\"*:" + }, + { + "verseNum": 8, + "text": "Be|strong=\"H1934\"* it|strong=\"H1934\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H1768\"* king|strong=\"H4430\"* that|strong=\"H1768\"* we|strong=\"H3068\"* went into the|strong=\"H1768\"* province|strong=\"H4083\"* of|strong=\"H1005\"* Judah|strong=\"H3061\"*, to|strong=\"H3046\"* the|strong=\"H1768\"* house|strong=\"H1005\"* of|strong=\"H1005\"* the|strong=\"H1768\"* great|strong=\"H7229\"* God, which|strong=\"H1768\"* is|strong=\"H1768\"* being built|strong=\"H1124\"* with|strong=\"H1124\"* great|strong=\"H7229\"* stones and|strong=\"H4430\"* timber is|strong=\"H1768\"* laid|strong=\"H7761\"* in|strong=\"H4430\"* the|strong=\"H1768\"* walls|strong=\"H3797\"*. This|strong=\"H1791\"* work|strong=\"H5673\"* goes on with|strong=\"H1124\"* diligence and|strong=\"H4430\"* prospers in|strong=\"H4430\"* their hands|strong=\"H3028\"*." + }, + { + "verseNum": 9, + "text": "Then we|strong=\"H3068\"* asked|strong=\"H7593\"* those elders|strong=\"H7868\"*, and|strong=\"H1005\"* said to|strong=\"H2942\"* them thus|strong=\"H1836\"*, “Who|strong=\"H4479\"* gave|strong=\"H7761\"* you a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"*, and|strong=\"H1005\"* to|strong=\"H2942\"* finish|strong=\"H3635\"* this|strong=\"H1836\"* wall?”" + }, + { + "verseNum": 10, + "text": "We|strong=\"H1768\"* asked|strong=\"H7593\"* them their|strong=\"H7593\"* names|strong=\"H8036\"* also, to|strong=\"H3046\"* inform|strong=\"H3046\"* you|strong=\"H1768\"* that|strong=\"H1768\"* we|strong=\"H3068\"* might write|strong=\"H3790\"* the|strong=\"H1768\"* names|strong=\"H8036\"* of|strong=\"H1768\"* the|strong=\"H1768\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* at their|strong=\"H7593\"* head|strong=\"H7217\"*." + }, + { + "verseNum": 11, + "text": "Thus|strong=\"H1836\"* they|strong=\"H3660\"* returned|strong=\"H8421\"* us|strong=\"H8421\"* answer|strong=\"H6600\"*, saying, “We|strong=\"H1768\"* are|strong=\"H1768\"* the|strong=\"H1768\"* servants|strong=\"H5649\"* of|strong=\"H1005\"* the|strong=\"H1768\"* God of|strong=\"H1005\"* heaven|strong=\"H8065\"* and|strong=\"H4430\"* earth and|strong=\"H4430\"* are|strong=\"H1768\"* building|strong=\"H1124\"* the|strong=\"H1768\"* house|strong=\"H1005\"* that|strong=\"H1768\"* was|strong=\"H1934\"* built|strong=\"H1124\"* these|strong=\"H1836\"* many|strong=\"H7690\"* years|strong=\"H8140\"* ago|strong=\"H6928\"*, which|strong=\"H1768\"* a|strong=\"H3068\"* great|strong=\"H7229\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"* built|strong=\"H1124\"* and|strong=\"H4430\"* finished|strong=\"H3635\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3861\"* after|strong=\"H4481\"* our|strong=\"H4481\"* fathers had|strong=\"H4430\"* provoked|strong=\"H7265\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"* to|strong=\"H1994\"* wrath|strong=\"H7265\"*, he|strong=\"H1768\"* gave|strong=\"H3052\"* them|strong=\"H1994\"* into|strong=\"H1541\"* the|strong=\"H4481\"* hand|strong=\"H3028\"* of|strong=\"H4481\"* Nebuchadnezzar|strong=\"H5020\"* king|strong=\"H4430\"* of|strong=\"H4481\"* Babylon, the|strong=\"H4481\"* Chaldean|strong=\"H3679\"*, who|strong=\"H1768\"* destroyed|strong=\"H5642\"* this|strong=\"H1836\"* house|strong=\"H1005\"* and|strong=\"H4430\"* carried|strong=\"H1541\"* the|strong=\"H4481\"* people|strong=\"H5972\"* away|strong=\"H1541\"* into|strong=\"H1541\"* Babylon." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1297\"* in|strong=\"H4430\"* the|strong=\"H1768\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H1005\"* Cyrus|strong=\"H3567\"* king|strong=\"H4430\"* of|strong=\"H1005\"* Babylon, Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4481\"* gold|strong=\"H1722\"* and|strong=\"H4430\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"*, which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* that|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"* and|strong=\"H4430\"* brought|strong=\"H2987\"* into the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* Babylon, those|strong=\"H1994\"* Cyrus|strong=\"H3567\"* the|strong=\"H4481\"* king|strong=\"H4430\"* also|strong=\"H4430\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* Babylon, and|strong=\"H4430\"* they|strong=\"H1768\"* were|strong=\"H1768\"* delivered|strong=\"H3052\"* to|strong=\"H1994\"* one whose|strong=\"H1768\"* name|strong=\"H8036\"* was|strong=\"H4430\"* Sheshbazzar|strong=\"H8340\"*, whom|strong=\"H1768\"* he|strong=\"H1768\"* had|strong=\"H4430\"* made|strong=\"H7761\"* governor|strong=\"H6347\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1768\"* said to|strong=\"H5922\"* him|strong=\"H5922\"*, ‘Take|strong=\"H5376\"* these|strong=\"H1994\"* vessels|strong=\"H3984\"*, go, put|strong=\"H5182\"* them|strong=\"H1994\"* in|strong=\"H5922\"* the|strong=\"H5922\"* temple|strong=\"H1005\"* that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*, and|strong=\"H1005\"* let God’s house|strong=\"H1005\"* be|strong=\"H1005\"* built|strong=\"H1124\"* in|strong=\"H5922\"* its place|strong=\"H5182\"*.’" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1768\"* the|strong=\"H4481\"* same|strong=\"H1791\"* Sheshbazzar|strong=\"H8340\"* came|strong=\"H1768\"* and|strong=\"H1005\"* laid|strong=\"H3052\"* the|strong=\"H4481\"* foundations of|strong=\"H4481\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H8000\"* Jerusalem|strong=\"H3390\"*. Since|strong=\"H1768\"* that|strong=\"H1768\"* time even|strong=\"H1768\"* until|strong=\"H5705\"* now|strong=\"H3705\"* it|strong=\"H4481\"* has|strong=\"H1768\"* been being built|strong=\"H1124\"*, and|strong=\"H1005\"* yet it|strong=\"H4481\"* is|strong=\"H1768\"* not|strong=\"H3809\"* completed|strong=\"H8000\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H3705\"* therefore|strong=\"H5922\"*, if|strong=\"H2006\"* it|strong=\"H5922\"* seems good|strong=\"H2869\"* to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, let|strong=\"H3705\"* a|strong=\"H3068\"* search|strong=\"H1240\"* be|strong=\"H1005\"* made|strong=\"H7761\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s treasure|strong=\"H1596\"* house|strong=\"H1005\"*, which|strong=\"H1768\"* is|strong=\"H1768\"* there|strong=\"H8536\"* at|strong=\"H8536\"* Babylon, whether|strong=\"H2006\"* it|strong=\"H5922\"* is|strong=\"H1768\"* so|strong=\"H1768\"* that|strong=\"H1768\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* was|strong=\"H4430\"* made|strong=\"H7761\"* by|strong=\"H4481\"* Cyrus|strong=\"H3567\"* the|strong=\"H5922\"* king|strong=\"H4430\"* to|strong=\"H5922\"* build|strong=\"H1124\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H4481\"* God at|strong=\"H8536\"* Jerusalem|strong=\"H3390\"*; and|strong=\"H4430\"* let|strong=\"H3705\"* the|strong=\"H5922\"* king|strong=\"H4430\"* send|strong=\"H7972\"* his|strong=\"H5922\"* pleasure|strong=\"H7470\"* to|strong=\"H5922\"* us|strong=\"H5922\"* concerning|strong=\"H5922\"* this|strong=\"H1836\"* matter|strong=\"H1836\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1768\"* Darius|strong=\"H1868\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* house|strong=\"H1005\"* of|strong=\"H1005\"* the|strong=\"H1768\"* archives|strong=\"H1005\"*, where|strong=\"H1768\"* the|strong=\"H1768\"* treasures|strong=\"H1596\"* were|strong=\"H1768\"* laid|strong=\"H7761\"* up|strong=\"H5182\"* in|strong=\"H4430\"* Babylon, was|strong=\"H4430\"* searched." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* scroll|strong=\"H4040\"* was|strong=\"H1459\"* found|strong=\"H7912\"* at|strong=\"H7912\"* Achmetha, in|strong=\"H7912\"* the|strong=\"H1768\"* palace|strong=\"H1001\"* that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H7912\"* the|strong=\"H1768\"* province|strong=\"H4083\"* of|strong=\"H4083\"* Media|strong=\"H4076\"*, and|strong=\"H4076\"* in|strong=\"H7912\"* it this was|strong=\"H1459\"* written|strong=\"H3790\"* for|strong=\"H1768\"* a|strong=\"H3068\"* record|strong=\"H1799\"*:" + }, + { + "verseNum": 3, + "text": "In|strong=\"H4430\"* the|strong=\"H1768\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H1005\"* Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"*, Cyrus|strong=\"H3567\"* the|strong=\"H1768\"* king|strong=\"H4430\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*: Concerning|strong=\"H2942\"* God’s house|strong=\"H1005\"* at Jerusalem|strong=\"H3390\"*, let the|strong=\"H1768\"* house|strong=\"H1005\"* be|strong=\"H1005\"* built|strong=\"H1124\"*, the|strong=\"H1768\"* place where|strong=\"H1768\"* they|strong=\"H1768\"* offer sacrifices|strong=\"H1685\"*, and|strong=\"H4430\"* let its foundations be|strong=\"H1005\"* strongly laid|strong=\"H7761\"*, with|strong=\"H1124\"* its height|strong=\"H7314\"* sixty|strong=\"H8361\"* cubits+ 6:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H4430\"* its width|strong=\"H6613\"* sixty|strong=\"H8361\"* cubits;" + }, + { + "verseNum": 4, + "text": "with three|strong=\"H8532\"* courses of|strong=\"H4481\"* great|strong=\"H1560\"* stones and|strong=\"H4430\"* a|strong=\"H3068\"* course of|strong=\"H4481\"* new|strong=\"H2323\"* timber. Let the|strong=\"H4481\"* expenses|strong=\"H5313\"* be|strong=\"H1005\"* given|strong=\"H3052\"* out|strong=\"H3052\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s house|strong=\"H1005\"*." + }, + { + "verseNum": 5, + "text": "Also|strong=\"H4481\"* let the|strong=\"H4481\"* gold|strong=\"H1722\"* and|strong=\"H1722\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"*, which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* took|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at Jerusalem|strong=\"H3390\"* and|strong=\"H1722\"* brought|strong=\"H2987\"* to|strong=\"H3390\"* Babylon, be|strong=\"H1005\"* restored|strong=\"H8421\"* and|strong=\"H1722\"* brought|strong=\"H2987\"* again|strong=\"H1946\"* to|strong=\"H3390\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* which|strong=\"H1768\"* is|strong=\"H1768\"* at Jerusalem|strong=\"H3390\"*, everything to|strong=\"H3390\"* its|strong=\"H4481\"* place|strong=\"H5182\"*. You|strong=\"H1768\"* shall put|strong=\"H5182\"* them in|strong=\"H5182\"* God’s house|strong=\"H1005\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H3705\"* therefore|strong=\"H4481\"*, Tattenai|strong=\"H8674\"*, governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, Shetharbozenai, and|strong=\"H1934\"* your|strong=\"H1768\"* companions|strong=\"H3675\"* the|strong=\"H4481\"* Apharsachites, who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, you|strong=\"H1768\"* must stay far|strong=\"H7352\"* from|strong=\"H4481\"* there|strong=\"H8536\"*." + }, + { + "verseNum": 7, + "text": "Leave|strong=\"H7662\"* the|strong=\"H5922\"* work|strong=\"H5673\"* of|strong=\"H1005\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God alone|strong=\"H7662\"*; let the|strong=\"H5922\"* governor|strong=\"H6347\"* of|strong=\"H1005\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* and|strong=\"H1005\"* the|strong=\"H5922\"* elders|strong=\"H7868\"* of|strong=\"H1005\"* the|strong=\"H5922\"* Jews|strong=\"H3062\"* build|strong=\"H1124\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God in|strong=\"H5922\"* its place." + }, + { + "verseNum": 8, + "text": "Moreover I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* regarding what|strong=\"H1768\"* you|strong=\"H1768\"* shall|strong=\"H1934\"* do|strong=\"H5648\"* for|strong=\"H1768\"* these|strong=\"H4481\"* elders|strong=\"H7868\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Jews|strong=\"H3062\"* for|strong=\"H1768\"* the|strong=\"H4481\"* building|strong=\"H1124\"* of|strong=\"H4481\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H4481\"* God: that|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s goods|strong=\"H5232\"*, even|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H4481\"* tribute|strong=\"H4061\"* beyond|strong=\"H5675\"* the|strong=\"H4481\"* River|strong=\"H5103\"*, expenses|strong=\"H5313\"* must be|strong=\"H1934\"* given|strong=\"H3052\"* with|strong=\"H5974\"* all diligence to|strong=\"H2942\"* these|strong=\"H4481\"* men|strong=\"H1400\"*, that|strong=\"H1768\"* they|strong=\"H1768\"* not|strong=\"H3809\"* be|strong=\"H1934\"* hindered." + }, + { + "verseNum": 9, + "text": "That|strong=\"H1768\"* which|strong=\"H1768\"* they|strong=\"H1768\"* have|strong=\"H1934\"* need|strong=\"H2818\"* of|strong=\"H1123\"*, including young|strong=\"H1123\"* bulls|strong=\"H8450\"*, rams|strong=\"H1798\"*, and|strong=\"H8065\"* lambs, for|strong=\"H1768\"* burnt|strong=\"H5928\"* offerings|strong=\"H5928\"* to|strong=\"H3390\"* the|strong=\"H1768\"* God of|strong=\"H1123\"* heaven|strong=\"H8065\"*; also wheat|strong=\"H2591\"*, salt|strong=\"H4416\"*, wine|strong=\"H2562\"*, and|strong=\"H8065\"* oil|strong=\"H4887\"*, according to|strong=\"H3390\"* the|strong=\"H1768\"* word|strong=\"H3983\"* of|strong=\"H1123\"* the|strong=\"H1768\"* priests|strong=\"H3549\"* who|strong=\"H1768\"* are|strong=\"H1768\"* at|strong=\"H1934\"* Jerusalem|strong=\"H3390\"*, let it|strong=\"H1934\"* be|strong=\"H1934\"* given|strong=\"H3052\"* them|strong=\"H3052\"* day|strong=\"H3118\"* by|strong=\"H3549\"* day|strong=\"H3118\"* without|strong=\"H3809\"* fail|strong=\"H7960\"*," + }, + { + "verseNum": 10, + "text": "that|strong=\"H1768\"* they|strong=\"H1768\"* may|strong=\"H2417\"* offer|strong=\"H7127\"* sacrifices|strong=\"H5208\"* of|strong=\"H4430\"* pleasant aroma to|strong=\"H4430\"* the|strong=\"H1768\"* God of|strong=\"H4430\"* heaven|strong=\"H8065\"*, and|strong=\"H4430\"* pray|strong=\"H6739\"* for|strong=\"H1768\"* the|strong=\"H1768\"* life|strong=\"H2417\"* of|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"* and|strong=\"H4430\"* of|strong=\"H4430\"* his|strong=\"H1768\"* sons|strong=\"H1123\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H4481\"* have|strong=\"H7761\"* also|strong=\"H4481\"* made|strong=\"H5648\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* whoever alters this|strong=\"H1836\"* message, let a|strong=\"H3068\"* beam be|strong=\"H1005\"* pulled out|strong=\"H5648\"* from|strong=\"H4481\"* his|strong=\"H5922\"* house|strong=\"H1005\"*, and|strong=\"H1005\"* let him|strong=\"H5922\"* be|strong=\"H1005\"* lifted up|strong=\"H2211\"* and|strong=\"H1005\"* fastened on|strong=\"H5922\"* it|strong=\"H5922\"*; and|strong=\"H1005\"* let his|strong=\"H5922\"* house|strong=\"H1005\"* be|strong=\"H1005\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"* for|strong=\"H5922\"* this|strong=\"H1836\"*." + }, + { + "verseNum": 12, + "text": "May the|strong=\"H3606\"* God who|strong=\"H1768\"* has|strong=\"H1768\"* caused his|strong=\"H7972\"* name|strong=\"H8036\"* to|strong=\"H2942\"* dwell|strong=\"H7932\"* there|strong=\"H8536\"* overthrow|strong=\"H4049\"* all|strong=\"H3606\"* kings|strong=\"H4430\"* and|strong=\"H4430\"* peoples|strong=\"H5972\"* who|strong=\"H1768\"* stretch out|strong=\"H5648\"* their|strong=\"H3606\"* hand|strong=\"H3028\"* to|strong=\"H2942\"* alter|strong=\"H8133\"* this|strong=\"H1791\"*, to|strong=\"H2942\"* destroy|strong=\"H2255\"* this|strong=\"H1791\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H8536\"* Jerusalem|strong=\"H3390\"*. I|strong=\"H1768\"* Darius|strong=\"H1868\"* have|strong=\"H7761\"* made|strong=\"H5648\"* a|strong=\"H3068\"* decree|strong=\"H2942\"*. Let it be|strong=\"H1005\"* done|strong=\"H5648\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6903\"* Tattenai|strong=\"H8674\"*, the|strong=\"H5675\"* governor|strong=\"H6347\"* beyond|strong=\"H5675\"* the|strong=\"H5675\"* River|strong=\"H5103\"*, Shetharbozenai, and|strong=\"H4430\"* their companions|strong=\"H3675\"* did|strong=\"H5648\"* accordingly|strong=\"H3660\"* with|strong=\"H5648\"* all diligence, because|strong=\"H6903\"* Darius|strong=\"H1868\"* the|strong=\"H5675\"* king|strong=\"H4430\"* had|strong=\"H4430\"* sent|strong=\"H7972\"* a|strong=\"H3068\"* decree." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4481\"* elders|strong=\"H7868\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Jews|strong=\"H3062\"* built|strong=\"H1124\"* and|strong=\"H4430\"* prospered|strong=\"H6744\"*, through the|strong=\"H4481\"* prophesying|strong=\"H5017\"* of|strong=\"H4481\"* Haggai|strong=\"H2292\"* the|strong=\"H4481\"* prophet|strong=\"H5029\"* and|strong=\"H4430\"* Zechariah|strong=\"H2148\"* the|strong=\"H4481\"* son|strong=\"H1247\"* of|strong=\"H4481\"* Iddo|strong=\"H5714\"*. They built|strong=\"H1124\"* and|strong=\"H4430\"* finished|strong=\"H3635\"* it|strong=\"H4481\"*, according|strong=\"H4481\"* to|strong=\"H2942\"* the|strong=\"H4481\"* commandment|strong=\"H2941\"* of|strong=\"H4481\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* Israel|strong=\"H3479\"*, and|strong=\"H4430\"* according|strong=\"H4481\"* to|strong=\"H2942\"* the|strong=\"H4481\"* decree|strong=\"H2942\"* of|strong=\"H4481\"* Cyrus|strong=\"H3567\"*, Darius|strong=\"H1868\"*, and|strong=\"H4430\"* Artaxerxes king|strong=\"H4430\"* of|strong=\"H4481\"* Persia|strong=\"H6540\"*." + }, + { + "verseNum": 15, + "text": "This|strong=\"H1836\"* house|strong=\"H1005\"* was|strong=\"H4430\"* finished|strong=\"H3319\"* on|strong=\"H5705\"* the|strong=\"H1768\"* third|strong=\"H8532\"* day|strong=\"H3118\"* of|strong=\"H1005\"* the|strong=\"H1768\"* month|strong=\"H3393\"* Adar, which|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H1768\"* sixth|strong=\"H8353\"* year|strong=\"H8140\"* of|strong=\"H1005\"* the|strong=\"H1768\"* reign|strong=\"H4437\"* of|strong=\"H1005\"* Darius|strong=\"H1868\"* the|strong=\"H1768\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5648\"* children|strong=\"H1123\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"*, the|strong=\"H5648\"* priests|strong=\"H3549\"*, the|strong=\"H5648\"* Levites|strong=\"H3879\"*, and|strong=\"H1005\"* the|strong=\"H5648\"* rest|strong=\"H7606\"* of|strong=\"H1005\"* the|strong=\"H5648\"* children|strong=\"H1123\"* of|strong=\"H1005\"* the|strong=\"H5648\"* captivity|strong=\"H1547\"*, kept|strong=\"H5648\"* the|strong=\"H5648\"* dedication|strong=\"H2597\"* of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God with|strong=\"H5648\"* joy|strong=\"H2305\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3606\"* offered|strong=\"H7127\"* at the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God one|strong=\"H1836\"* hundred|strong=\"H3969\"* bulls|strong=\"H8450\"*, two|strong=\"H8648\"* hundred|strong=\"H3969\"* rams|strong=\"H1798\"*, four hundred|strong=\"H3969\"* lambs; and|strong=\"H1005\"* for|strong=\"H5922\"* a|strong=\"H3068\"* sin|strong=\"H2409\"* offering|strong=\"H7127\"* for|strong=\"H5922\"* all|strong=\"H3606\"* Israel|strong=\"H3479\"*, twelve|strong=\"H8648\"* male|strong=\"H6841\"* goats|strong=\"H5796\"*, according to|strong=\"H5922\"* the|strong=\"H3606\"* number|strong=\"H4510\"* of|strong=\"H1005\"* the|strong=\"H3606\"* tribes|strong=\"H7625\"* of|strong=\"H1005\"* Israel|strong=\"H3479\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1768\"* set|strong=\"H6966\"* the|strong=\"H5922\"* priests|strong=\"H3549\"* in|strong=\"H5922\"* their divisions|strong=\"H6392\"* and|strong=\"H3792\"* the|strong=\"H5922\"* Levites|strong=\"H3879\"* in|strong=\"H5922\"* their courses|strong=\"H4255\"*, for|strong=\"H5922\"* the|strong=\"H5922\"* service|strong=\"H5673\"* of|strong=\"H5922\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* at|strong=\"H6966\"* Jerusalem|strong=\"H3390\"*, as|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* written|strong=\"H3792\"* in|strong=\"H5922\"* the|strong=\"H5922\"* book|strong=\"H5609\"* of|strong=\"H5922\"* Moses|strong=\"H4873\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* captivity|strong=\"H1473\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* Passover|strong=\"H6453\"* on|strong=\"H6213\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H6213\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 20, + "text": "Because|strong=\"H3588\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* had|strong=\"H3588\"* purified|strong=\"H2891\"* themselves|strong=\"H1992\"* together, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1992\"* were|strong=\"H1121\"* pure|strong=\"H2889\"*. They|strong=\"H1992\"* killed|strong=\"H7819\"* the|strong=\"H3605\"* Passover|strong=\"H6453\"* for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, for|strong=\"H3588\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3605\"* had|strong=\"H3068\"* returned|strong=\"H7725\"* out|strong=\"H1875\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* separated themselves to|strong=\"H7725\"* them|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* filthiness|strong=\"H2932\"* of|strong=\"H1121\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land to|strong=\"H7725\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ate," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3478\"* kept|strong=\"H6213\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H4428\"* unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* with|strong=\"H1004\"* joy|strong=\"H8057\"*; because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* made|strong=\"H6213\"* them|strong=\"H5921\"* joyful|strong=\"H8055\"*, and|strong=\"H3478\"* had|strong=\"H3068\"* turned|strong=\"H5437\"* the|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H3478\"* them|strong=\"H5921\"*, to|strong=\"H3478\"* strengthen|strong=\"H2388\"* their|strong=\"H3068\"* hands|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* work|strong=\"H4399\"* of|strong=\"H4428\"* God|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* after these|strong=\"H4428\"* things|strong=\"H1697\"*, in|strong=\"H4428\"* the|strong=\"H1697\"* reign|strong=\"H4438\"* of|strong=\"H1121\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H1121\"* Persia|strong=\"H6539\"*, Ezra|strong=\"H5830\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Seraiah|strong=\"H8304\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub," + }, + { + "verseNum": 3, + "text": "the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"*, the|strong=\"H5838\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*," + }, + { + "verseNum": 4, + "text": "the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zerahiah|strong=\"H2228\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzzi|strong=\"H5813\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bukki|strong=\"H1231\"*," + }, + { + "verseNum": 5, + "text": "the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abishua, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eleazar, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Aaron the|strong=\"H3548\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*—" + }, + { + "verseNum": 6, + "text": "this|strong=\"H1931\"* Ezra|strong=\"H5830\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* Babylon. He|strong=\"H1931\"* was|strong=\"H3068\"* a|strong=\"H3068\"* skilled|strong=\"H4106\"* scribe|strong=\"H5608\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H4428\"* Moses|strong=\"H4872\"*, which|strong=\"H1931\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, had|strong=\"H3068\"* given|strong=\"H5414\"*; and|strong=\"H4872\"* the|strong=\"H3605\"* king|strong=\"H4428\"* granted|strong=\"H5414\"* him|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* request|strong=\"H1246\"*, according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* his|strong=\"H3605\"* God|strong=\"H3068\"*’s hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "Some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, including|strong=\"H4428\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*, the|strong=\"H4480\"* Levites|strong=\"H3881\"*, the|strong=\"H4480\"* singers|strong=\"H7891\"*, the|strong=\"H4480\"* gatekeepers|strong=\"H7778\"*, and|strong=\"H1121\"* the|strong=\"H4480\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H4480\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Artaxerxes the|strong=\"H4480\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* came|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* in|strong=\"H8141\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H8141\"* the|strong=\"H8141\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H8141\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"* he|strong=\"H1931\"* began|strong=\"H3246\"* to|strong=\"H5921\"* go|strong=\"H4609\"* up|strong=\"H5921\"* from|strong=\"H5921\"* Babylon; and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"* he|strong=\"H1931\"* came|strong=\"H7223\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* good|strong=\"H2896\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* his|strong=\"H5921\"* God|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Ezra|strong=\"H5830\"* had|strong=\"H3068\"* set|strong=\"H3559\"* his|strong=\"H3068\"* heart|strong=\"H3824\"* to|strong=\"H3478\"* seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* do|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* teach|strong=\"H3925\"* statutes|strong=\"H2706\"* and|strong=\"H3478\"* ordinances|strong=\"H4941\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H2088\"* this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* copy|strong=\"H6572\"* of|strong=\"H4428\"* the|strong=\"H5921\"* letter|strong=\"H5406\"* that|strong=\"H3068\"* King|strong=\"H4428\"* Artaxerxes gave|strong=\"H5414\"* to|strong=\"H3478\"* Ezra|strong=\"H5830\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, the|strong=\"H5921\"* scribe|strong=\"H5608\"*, even|strong=\"H3068\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* of|strong=\"H4428\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s commandments|strong=\"H4687\"*, and|strong=\"H3478\"* of|strong=\"H4428\"* his|strong=\"H5414\"* statutes|strong=\"H2706\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 12, + "text": "Artaxerxes, king|strong=\"H4430\"* of|strong=\"H4430\"* kings|strong=\"H4430\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* all|strong=\"H3606\"* those|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H3606\"* people|strong=\"H5972\"* of|strong=\"H4481\"* Israel|strong=\"H3479\"* and|strong=\"H4437\"* their|strong=\"H3606\"* priests|strong=\"H3549\"* and|strong=\"H4437\"* the|strong=\"H3606\"* Levites|strong=\"H3879\"* in|strong=\"H4437\"* my|strong=\"H4481\"* realm|strong=\"H4437\"*, who|strong=\"H1768\"* intend of|strong=\"H4481\"* their|strong=\"H3606\"* own free will|strong=\"H1768\"* to|strong=\"H2942\"* go|strong=\"H1946\"* to|strong=\"H2942\"* Jerusalem|strong=\"H3390\"*, go|strong=\"H1946\"* with|strong=\"H5974\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 14, + "text": "Because|strong=\"H6903\"* you|strong=\"H1768\"* are|strong=\"H1768\"* sent|strong=\"H7972\"* by|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H5922\"* seven|strong=\"H7655\"* counselors|strong=\"H3272\"* to|strong=\"H5922\"* inquire|strong=\"H1240\"* concerning|strong=\"H5922\"* Judah|strong=\"H3061\"* and|strong=\"H4430\"* Jerusalem|strong=\"H3390\"*, according|strong=\"H4481\"* to|strong=\"H5922\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* your|strong=\"H5922\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* your|strong=\"H5922\"* hand|strong=\"H3028\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H4430\"* to|strong=\"H4430\"* carry|strong=\"H2987\"* the|strong=\"H1768\"* silver|strong=\"H3702\"* and|strong=\"H4430\"* gold|strong=\"H1722\"*, which|strong=\"H1768\"* the|strong=\"H1768\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H1768\"* counselors|strong=\"H3272\"* have|strong=\"H1768\"* freely|strong=\"H5069\"* offered|strong=\"H5069\"* to|strong=\"H4430\"* the|strong=\"H1768\"* God of|strong=\"H4430\"* Israel|strong=\"H3479\"*, whose|strong=\"H1768\"* habitation|strong=\"H4907\"* is|strong=\"H1768\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"*," + }, + { + "verseNum": 16, + "text": "and|strong=\"H1722\"* all|strong=\"H3606\"* the|strong=\"H3606\"* silver|strong=\"H3702\"* and|strong=\"H1722\"* gold|strong=\"H1722\"* that|strong=\"H1768\"* you|strong=\"H1768\"* will|strong=\"H1768\"* find|strong=\"H7912\"* in|strong=\"H7912\"* all|strong=\"H3606\"* the|strong=\"H3606\"* province|strong=\"H4083\"* of|strong=\"H1005\"* Babylon, with|strong=\"H5974\"* the|strong=\"H3606\"* free will|strong=\"H1768\"* offering|strong=\"H5069\"* of|strong=\"H1005\"* the|strong=\"H3606\"* people|strong=\"H5972\"* and|strong=\"H1722\"* of|strong=\"H1005\"* the|strong=\"H3606\"* priests|strong=\"H3549\"*, offering|strong=\"H5069\"* willingly|strong=\"H5069\"* for|strong=\"H1768\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H1005\"* their|strong=\"H3606\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H7912\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3606\"* you|strong=\"H1768\"* shall|strong=\"H3606\"* with|strong=\"H5922\"* all|strong=\"H3606\"* diligence buy|strong=\"H7066\"* with|strong=\"H5922\"* this|strong=\"H1836\"* money|strong=\"H3702\"* bulls|strong=\"H8450\"*, rams|strong=\"H1798\"*, and|strong=\"H3702\"* lambs with|strong=\"H5922\"* their|strong=\"H3606\"* meal offerings|strong=\"H5261\"* and|strong=\"H3702\"* their|strong=\"H3606\"* drink|strong=\"H5261\"* offerings|strong=\"H5261\"*, and|strong=\"H3702\"* shall|strong=\"H3606\"* offer|strong=\"H7127\"* them|strong=\"H1994\"* on|strong=\"H5922\"* the|strong=\"H3606\"* altar|strong=\"H4056\"* of|strong=\"H1005\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H1005\"* your|strong=\"H1768\"* God which|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H5922\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 18, + "text": "Whatever|strong=\"H4101\"* seems good|strong=\"H3191\"* to|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H1722\"* to|strong=\"H5921\"* your|strong=\"H5921\"* brothers to|strong=\"H5921\"* do|strong=\"H5648\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H7606\"* of|strong=\"H5921\"* the|strong=\"H5921\"* silver|strong=\"H3702\"* and|strong=\"H1722\"* the|strong=\"H5921\"* gold|strong=\"H1722\"*, do|strong=\"H5648\"* that|strong=\"H1768\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* will|strong=\"H4101\"* of|strong=\"H5921\"* your|strong=\"H5921\"* God." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6925\"* vessels|strong=\"H3984\"* that|strong=\"H1768\"* are|strong=\"H1768\"* given|strong=\"H3052\"* to|strong=\"H6925\"* you|strong=\"H1768\"* for|strong=\"H1768\"* the|strong=\"H6925\"* service|strong=\"H6402\"* of|strong=\"H1005\"* the|strong=\"H6925\"* house|strong=\"H1005\"* of|strong=\"H1005\"* your|strong=\"H3052\"* God, deliver|strong=\"H8000\"* before|strong=\"H6925\"* the|strong=\"H6925\"* God of|strong=\"H1005\"* Jerusalem|strong=\"H3390\"*." + }, + { + "verseNum": 20, + "text": "Whatever more|strong=\"H4481\"* will|strong=\"H1768\"* be|strong=\"H1005\"* needed|strong=\"H2819\"* for|strong=\"H1768\"* the|strong=\"H4481\"* house|strong=\"H1005\"* of|strong=\"H4481\"* your|strong=\"H1768\"* God, which|strong=\"H1768\"* you|strong=\"H1768\"* may have|strong=\"H1768\"* occasion|strong=\"H5308\"* to|strong=\"H4481\"* give|strong=\"H5415\"*, give|strong=\"H5415\"* it|strong=\"H4481\"* out of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"*’s treasure|strong=\"H1596\"* house|strong=\"H1005\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H4481\"*, even|strong=\"H1768\"* I|strong=\"H4481\"*, Artaxerxes the|strong=\"H3606\"* king|strong=\"H4430\"*, make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* to|strong=\"H2942\"* all|strong=\"H3606\"* the|strong=\"H3606\"* treasurers|strong=\"H1490\"* who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*, that|strong=\"H1768\"* whatever|strong=\"H3606\"* Ezra|strong=\"H5831\"* the|strong=\"H3606\"* priest|strong=\"H3549\"*, the|strong=\"H3606\"* scribe|strong=\"H5613\"* of|strong=\"H4481\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*, requires of|strong=\"H4481\"* you|strong=\"H1768\"*, it|strong=\"H4481\"* shall|strong=\"H3606\"* be done|strong=\"H5648\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence," + }, + { + "verseNum": 22, + "text": "up to|strong=\"H5705\"* one hundred|strong=\"H3969\"* talents|strong=\"H3604\"*+ 7:22 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H3734\"* silver|strong=\"H3702\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* cors|strong=\"H3734\"*+ 7:22 1 cor is the same as a homer, or about 55.9 U. S. gallons (liquid) or 211 liters or 6 bushels.* of|strong=\"H3734\"* wheat|strong=\"H2591\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* baths|strong=\"H1325\"*+ 7:22 1 bath is one tenth of a cor, or about 5.6 U. S. gallons or 21 liters or 2.4 pecks. 100 baths would be about 2,100 liters.* of|strong=\"H3734\"* wine|strong=\"H2562\"*, and|strong=\"H3702\"* to|strong=\"H5705\"* one hundred|strong=\"H3969\"* baths|strong=\"H1325\"* of|strong=\"H3734\"* oil|strong=\"H4887\"*, and|strong=\"H3702\"* salt|strong=\"H4416\"* without|strong=\"H3809\"* prescribing|strong=\"H3792\"* how much." + }, + { + "verseNum": 23, + "text": "Whatever|strong=\"H4101\"* is|strong=\"H1768\"* commanded|strong=\"H4481\"* by|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*, let it|strong=\"H5922\"* be|strong=\"H1934\"* done|strong=\"H5648\"* exactly for|strong=\"H5922\"* the|strong=\"H3606\"* house|strong=\"H1005\"* of|strong=\"H4481\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"*; for|strong=\"H5922\"* why|strong=\"H4101\"* should|strong=\"H4101\"* there|strong=\"H1768\"* be|strong=\"H1934\"* wrath|strong=\"H7109\"* against|strong=\"H5922\"* the|strong=\"H3606\"* realm|strong=\"H4437\"* of|strong=\"H4481\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H5922\"* sons|strong=\"H1123\"*?" + }, + { + "verseNum": 24, + "text": "Also we|strong=\"H3068\"* inform|strong=\"H3046\"* you|strong=\"H1768\"* that|strong=\"H1768\"* it|strong=\"H5922\"* shall|strong=\"H3606\"* not|strong=\"H3809\"* be|strong=\"H3809\"* lawful|strong=\"H7990\"* to|strong=\"H5922\"* impose|strong=\"H7412\"* tribute|strong=\"H4061\"*, custom|strong=\"H1093\"*, or|strong=\"H3809\"* toll|strong=\"H1983\"* on|strong=\"H5922\"* any|strong=\"H3606\"* of|strong=\"H1005\"* the|strong=\"H3606\"* priests|strong=\"H3549\"*, Levites|strong=\"H3879\"*, singers|strong=\"H2171\"*, gatekeepers, temple|strong=\"H1005\"* servants|strong=\"H6399\"*, or|strong=\"H3809\"* laborers of|strong=\"H1005\"* this|strong=\"H1836\"* house|strong=\"H1005\"* of|strong=\"H1005\"* God." + }, + { + "verseNum": 25, + "text": "You|strong=\"H1768\"*, Ezra|strong=\"H5831\"*, according to|strong=\"H3046\"* the|strong=\"H3606\"* wisdom|strong=\"H2452\"* of|strong=\"H1768\"* your|strong=\"H1768\"* God that|strong=\"H1768\"* is|strong=\"H1768\"* in|strong=\"H1768\"* your|strong=\"H1768\"* hand|strong=\"H3028\"*, appoint|strong=\"H4483\"* magistrates|strong=\"H8200\"* and|strong=\"H2452\"* judges|strong=\"H1782\"* who|strong=\"H1768\"* may judge|strong=\"H1934\"* all|strong=\"H3606\"* the|strong=\"H3606\"* people|strong=\"H5972\"* who|strong=\"H1768\"* are|strong=\"H1768\"* beyond|strong=\"H5675\"* the|strong=\"H3606\"* River|strong=\"H5103\"*, who|strong=\"H1768\"* all|strong=\"H3606\"* know|strong=\"H3046\"* the|strong=\"H3606\"* laws|strong=\"H1882\"* of|strong=\"H1768\"* your|strong=\"H1768\"* God; and|strong=\"H2452\"* teach|strong=\"H3046\"* him who|strong=\"H1768\"* doesn’t know|strong=\"H3046\"* them." + }, + { + "verseNum": 26, + "text": "Whoever will|strong=\"H1768\"* not|strong=\"H3809\"* do|strong=\"H5648\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* your|strong=\"H1768\"* God and|strong=\"H4430\"* the|strong=\"H3606\"* law|strong=\"H1882\"* of|strong=\"H4481\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, let judgment|strong=\"H1780\"* be|strong=\"H1934\"* executed|strong=\"H5648\"* on him|strong=\"H4481\"* with|strong=\"H5648\"* all|strong=\"H3606\"* diligence, whether|strong=\"H2006\"* it|strong=\"H1934\"* is|strong=\"H1768\"* to|strong=\"H4430\"* death|strong=\"H4193\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* banishment|strong=\"H8332\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* confiscation|strong=\"H6065\"* of|strong=\"H4481\"* goods|strong=\"H5232\"*, or|strong=\"H2006\"* to|strong=\"H4430\"* imprisonment." + }, + { + "verseNum": 27, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* our|strong=\"H3068\"* fathers, who|strong=\"H3068\"* has|strong=\"H3068\"* put|strong=\"H5414\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"* as|strong=\"H3068\"* this|strong=\"H2063\"* in|strong=\"H3068\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"*, to|strong=\"H3068\"* beautify|strong=\"H6286\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3478\"* has|strong=\"H3068\"* extended|strong=\"H5186\"* loving kindness|strong=\"H2617\"* to|strong=\"H3478\"* me|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H3478\"* his|strong=\"H3605\"* counselors|strong=\"H3289\"*, and|strong=\"H3478\"* before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s mighty|strong=\"H1368\"* princes|strong=\"H8269\"*. I|strong=\"H5921\"* was|strong=\"H3068\"* strengthened|strong=\"H2388\"* according|strong=\"H5921\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God|strong=\"H3068\"*’s hand|strong=\"H3027\"* on|strong=\"H5921\"* me|strong=\"H6440\"*, and|strong=\"H3478\"* I|strong=\"H5921\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* chief|strong=\"H7218\"* men|strong=\"H1368\"* out|strong=\"H5186\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* go|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H4428\"* these|strong=\"H4428\"* are|strong=\"H4428\"* the|strong=\"H5927\"* heads|strong=\"H7218\"* of|strong=\"H4428\"* their|strong=\"H5973\"* fathers’ households, and|strong=\"H4428\"* this|strong=\"H5927\"* is|strong=\"H4428\"* the|strong=\"H5927\"* genealogy|strong=\"H3187\"* of|strong=\"H4428\"* those|strong=\"H5973\"* who|strong=\"H4428\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* me|strong=\"H5973\"* from|strong=\"H5927\"* Babylon, in|strong=\"H4428\"* the|strong=\"H5927\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H5927\"* king|strong=\"H4428\"*:" + }, + { + "verseNum": 2, + "text": "Of the sons of Phinehas, Gershom." + }, + { + "verseNum": 3, + "text": "Of the sons of Shecaniah, of the sons of Parosh, Zechariah; and with him were listed by genealogy of the males one hundred fifty." + }, + { + "verseNum": 4, + "text": "Of the sons of Pahathmoab, Eliehoenai the son of Zerahiah; and with him two hundred males." + }, + { + "verseNum": 5, + "text": "Of the sons of Shecaniah, the son of Jahaziel; and with him three hundred males." + }, + { + "verseNum": 6, + "text": "Of the sons of Adin, Ebed the son of Jonathan; and with him fifty males." + }, + { + "verseNum": 7, + "text": "Of the sons of Elam, Jeshaiah the son of Athaliah; and with him seventy males." + }, + { + "verseNum": 8, + "text": "Of the sons of Shephatiah, Zebadiah the son of Michael; and with him eighty males." + }, + { + "verseNum": 9, + "text": "Of the sons of Joab, Obadiah the son of Jehiel; and with him two hundred eighteen males." + }, + { + "verseNum": 10, + "text": "Of the sons of Shelomith, the son of Josiphiah; and with him one hundred sixty males." + }, + { + "verseNum": 11, + "text": "Of the sons of Bebai, Zechariah the son of Bebai; and with him twenty-eight males." + }, + { + "verseNum": 12, + "text": "Of the sons of Azgad, Johanan the son of Hakkatan; and with him one hundred ten males." + }, + { + "verseNum": 13, + "text": "Of the sons of Adonikam, who were the last, their names are: Eliphelet, Jeuel, and Shemaiah; and with them sixty males." + }, + { + "verseNum": 14, + "text": "Of the sons of Bigvai, Uthai and Zabbud; and with them seventy males." + }, + { + "verseNum": 15, + "text": "I|strong=\"H3117\"* gathered|strong=\"H6908\"* them|strong=\"H4672\"* together|strong=\"H6908\"* to|strong=\"H3117\"* the|strong=\"H3117\"* river|strong=\"H5104\"* that|strong=\"H5971\"* runs to|strong=\"H3117\"* Ahava; and|strong=\"H1121\"* there|strong=\"H8033\"* we|strong=\"H3068\"* encamped|strong=\"H2583\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. Then|strong=\"H3808\"* I|strong=\"H3117\"* looked around at|strong=\"H2583\"* the|strong=\"H3117\"* people|strong=\"H5971\"* and|strong=\"H1121\"* the|strong=\"H3117\"* priests|strong=\"H3548\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* there|strong=\"H8033\"* were|strong=\"H5971\"* none|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H3117\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H7971\"* I|strong=\"H7971\"* sent|strong=\"H7971\"* for|strong=\"H7971\"* Eliezer, for|strong=\"H7971\"* Ariel, for|strong=\"H7971\"* Shemaiah|strong=\"H8098\"*, for|strong=\"H7971\"* Elnathan, for|strong=\"H7971\"* Jarib|strong=\"H3402\"*, for|strong=\"H7971\"* Elnathan, for|strong=\"H7971\"* Nathan|strong=\"H5416\"*, for|strong=\"H7971\"* Zechariah|strong=\"H2148\"*, and|strong=\"H7971\"* for|strong=\"H7971\"* Meshullam|strong=\"H4918\"*, chief|strong=\"H7218\"* men|strong=\"H7218\"*; also for|strong=\"H7971\"* Joiarib|strong=\"H3114\"* and|strong=\"H7971\"* for|strong=\"H7971\"* Elnathan, who were|strong=\"H7218\"* teachers." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* sent|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* to|strong=\"H1696\"* Iddo the|strong=\"H5921\"* chief|strong=\"H7218\"* at|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Casiphia|strong=\"H3703\"*; and|strong=\"H1004\"* I|strong=\"H5921\"* told|strong=\"H1696\"* them|strong=\"H5921\"* what|strong=\"H1697\"* they|strong=\"H5921\"* should|strong=\"H4725\"* tell|strong=\"H1696\"* Iddo and|strong=\"H1004\"* his|strong=\"H7760\"* brothers the|strong=\"H5921\"* temple|strong=\"H1004\"* servants|strong=\"H5411\"* at|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* Casiphia|strong=\"H3703\"*, that|strong=\"H1697\"* they|strong=\"H5921\"* should|strong=\"H4725\"* bring|strong=\"H3318\"* to|strong=\"H1696\"* us|strong=\"H5921\"* ministers|strong=\"H8334\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5921\"* God." + }, + { + "verseNum": 18, + "text": "According|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* good|strong=\"H2896\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* our|strong=\"H5921\"* God|strong=\"H3027\"* on|strong=\"H5921\"* us|strong=\"H5921\"* they|strong=\"H5921\"* brought|strong=\"H3478\"* us|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H1121\"* of|strong=\"H1121\"* discretion|strong=\"H7922\"*, of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Mahli|strong=\"H4249\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, namely Sherebiah|strong=\"H8274\"*, with|strong=\"H5921\"* his|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H5921\"* brothers|strong=\"H1121\"*, eighteen|strong=\"H8083\"*;" + }, + { + "verseNum": 19, + "text": "and|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, and|strong=\"H1121\"* with|strong=\"H6242\"* him|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"* of|strong=\"H1121\"* the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Merari|strong=\"H4847\"*, his|strong=\"H3470\"* brothers|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H4847\"* sons|strong=\"H1121\"*, twenty|strong=\"H6242\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H3967\"* of|strong=\"H8269\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*, whom David|strong=\"H1732\"* and|strong=\"H3967\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* had|strong=\"H1732\"* given|strong=\"H5414\"* for|strong=\"H8034\"* the|strong=\"H3605\"* service|strong=\"H5656\"* of|strong=\"H8269\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, two|strong=\"H4480\"* hundred|strong=\"H3967\"* twenty|strong=\"H6242\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*. All|strong=\"H3605\"* of|strong=\"H8269\"* them|strong=\"H5414\"* were|strong=\"H3881\"* mentioned by|strong=\"H5344\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7121\"* I|strong=\"H5921\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* there|strong=\"H8033\"* at|strong=\"H5921\"* the|strong=\"H3605\"* river|strong=\"H5104\"* Ahava, that|strong=\"H3605\"* we|strong=\"H3068\"* might|strong=\"H3477\"* humble|strong=\"H6031\"* ourselves|strong=\"H6031\"* before|strong=\"H6440\"* our|strong=\"H3605\"* God, to|strong=\"H5921\"* seek|strong=\"H1245\"* from|strong=\"H4480\"* him|strong=\"H6440\"* a|strong=\"H3068\"* straight|strong=\"H3477\"* way|strong=\"H1870\"* for|strong=\"H5921\"* us|strong=\"H5921\"*, for|strong=\"H5921\"* our|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"*, and|strong=\"H6440\"* for|strong=\"H5921\"* all|strong=\"H3605\"* our|strong=\"H3605\"* possessions|strong=\"H7399\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H4428\"* ashamed to|strong=\"H5921\"* ask|strong=\"H7592\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* a|strong=\"H3068\"* band of|strong=\"H4428\"* soldiers|strong=\"H2428\"* and|strong=\"H4428\"* horsemen|strong=\"H6571\"* to|strong=\"H5921\"* help|strong=\"H5826\"* us|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H3605\"* enemy on|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, because|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H4428\"* spoken to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, saying, “The|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* our|strong=\"H3605\"* God|strong=\"H3027\"* is|strong=\"H3027\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* seek|strong=\"H1245\"* him|strong=\"H5921\"*, for|strong=\"H3588\"* good|strong=\"H2896\"*; but|strong=\"H3588\"* his|strong=\"H3605\"* power|strong=\"H3027\"* and|strong=\"H4428\"* his|strong=\"H3605\"* wrath is|strong=\"H3027\"* against|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* forsake|strong=\"H5800\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 23, + "text": "So|strong=\"H2063\"* we|strong=\"H3068\"* fasted|strong=\"H6684\"* and|strong=\"H6684\"* begged our|strong=\"H5921\"* God for|strong=\"H5921\"* this|strong=\"H2063\"*, and|strong=\"H6684\"* he|strong=\"H5921\"* granted our|strong=\"H5921\"* request|strong=\"H1245\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3548\"* I|strong=\"H8147\"* set apart twelve|strong=\"H8147\"* of|strong=\"H8269\"* the|strong=\"H5973\"* chiefs|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5973\"* priests|strong=\"H3548\"*, even Sherebiah|strong=\"H8274\"*, Hashabiah|strong=\"H2811\"*, and|strong=\"H3548\"* ten|strong=\"H6235\"* of|strong=\"H8269\"* their|strong=\"H8147\"* brothers with|strong=\"H5973\"* them|strong=\"H8147\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"H3478\"* weighed|strong=\"H8254\"* to|strong=\"H3478\"* them|strong=\"H1992\"* the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"*, even the|strong=\"H3605\"* offering|strong=\"H8641\"* for|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* our|strong=\"H3605\"* God, which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, his|strong=\"H3605\"* counselors|strong=\"H3289\"*, his|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* there|strong=\"H1992\"* present|strong=\"H4672\"*, had|strong=\"H3478\"* offered|strong=\"H7311\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* weighed|strong=\"H8254\"* into|strong=\"H5921\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* six|strong=\"H8337\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* silver|strong=\"H3701\"*,+ 8:26 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* silver|strong=\"H3701\"* vessels|strong=\"H3627\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* talents|strong=\"H3603\"* of|strong=\"H3027\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 27, + "text": "twenty|strong=\"H6242\"* bowls|strong=\"H3713\"* of|strong=\"H3627\"* gold|strong=\"H2091\"* weighing one|strong=\"H2896\"* thousand darics,+ 8:27 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* and|strong=\"H6242\"* two|strong=\"H8147\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* fine|strong=\"H2896\"* bright bronze|strong=\"H5178\"*, precious|strong=\"H2532\"* as|strong=\"H2532\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H3068\"* said to|strong=\"H3068\"* them|strong=\"H3068\"*, “You are|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* vessels|strong=\"H3627\"* are|strong=\"H3068\"* holy|strong=\"H6944\"*. The|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* the|strong=\"H3068\"* gold|strong=\"H2091\"* are|strong=\"H3068\"* a|strong=\"H3068\"* free will|strong=\"H3068\"* offering|strong=\"H5071\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 29, + "text": "Watch|strong=\"H8104\"* and|strong=\"H3478\"* keep|strong=\"H8104\"* them|strong=\"H6440\"* until|strong=\"H5704\"* you|strong=\"H6440\"* weigh|strong=\"H8254\"* them|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* chiefs|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* Levites|strong=\"H3881\"*, and|strong=\"H3478\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H1004\"* the|strong=\"H6440\"* fathers’ households|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3478\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 30, + "text": "So the|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3701\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* received|strong=\"H6901\"* the|strong=\"H3548\"* weight|strong=\"H4948\"* of|strong=\"H1004\"* the|strong=\"H3548\"* silver|strong=\"H3701\"*, the|strong=\"H3548\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* the|strong=\"H3548\"* vessels|strong=\"H3627\"*, to|strong=\"H3389\"* bring|strong=\"H3881\"* them to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our God." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H1961\"* we|strong=\"H3068\"* departed|strong=\"H3212\"* from|strong=\"H5265\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Ahava on|strong=\"H5921\"* the|strong=\"H5921\"* twelfth|strong=\"H8147\"* day|strong=\"H2320\"* of|strong=\"H3027\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* Jerusalem|strong=\"H3389\"*. The|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* our|strong=\"H5921\"* God|strong=\"H3027\"* was|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H3027\"* he|strong=\"H8147\"* delivered|strong=\"H5337\"* us|strong=\"H5921\"* from|strong=\"H5265\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* enemy and|strong=\"H3027\"* the|strong=\"H5921\"* bandits by|strong=\"H3027\"* the|strong=\"H5921\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 32, + "text": "We|strong=\"H3117\"* came|strong=\"H7969\"* to|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3117\"* stayed|strong=\"H3427\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* day|strong=\"H3117\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* the|strong=\"H5921\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* were|strong=\"H1121\"* weighed|strong=\"H8254\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our|strong=\"H5921\"* God|strong=\"H3027\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Meremoth|strong=\"H4822\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah the|strong=\"H5921\"* priest|strong=\"H3548\"*; and|strong=\"H1121\"* with|strong=\"H5973\"* him|strong=\"H5921\"* was|strong=\"H3117\"* Eleazar the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Phinehas|strong=\"H6372\"*; and|strong=\"H1121\"* with|strong=\"H5973\"* them|strong=\"H5921\"* were|strong=\"H1121\"* Jozabad|strong=\"H3107\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, and|strong=\"H1121\"* Noadiah|strong=\"H5129\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Binnui|strong=\"H1131\"*, the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 34, + "text": "Everything|strong=\"H3605\"* was|strong=\"H1931\"* counted|strong=\"H4557\"* and|strong=\"H6256\"* weighed|strong=\"H4948\"*; and|strong=\"H6256\"* all|strong=\"H3605\"* the|strong=\"H3605\"* weight|strong=\"H4948\"* was|strong=\"H1931\"* written|strong=\"H3789\"* at|strong=\"H3605\"* that|strong=\"H3605\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"*, who|strong=\"H3605\"* had|strong=\"H3068\"* come|strong=\"H7126\"* out|strong=\"H5921\"* of|strong=\"H1121\"* exile|strong=\"H1473\"*, offered|strong=\"H7126\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: twelve|strong=\"H8147\"* bulls|strong=\"H6499\"* for|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, ninety-six|strong=\"H8337\"* rams, seventy-seven|strong=\"H7657\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* twelve|strong=\"H8147\"* male|strong=\"H3532\"* goats|strong=\"H6842\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*. All|strong=\"H3605\"* this|strong=\"H3068\"* was|strong=\"H3068\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 36, + "text": "They|strong=\"H5971\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commissions|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s local governors|strong=\"H6346\"* and|strong=\"H4428\"* to|strong=\"H5414\"* the|strong=\"H5414\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* River|strong=\"H5104\"*. So|strong=\"H5414\"* they|strong=\"H5971\"* supported|strong=\"H5375\"* the|strong=\"H5414\"* people|strong=\"H5971\"* and|strong=\"H4428\"* God|strong=\"H5414\"*’s house|strong=\"H1004\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3478\"* when|strong=\"H3615\"* these|strong=\"H5971\"* things|strong=\"H8441\"* were|strong=\"H3478\"* done|strong=\"H3615\"*, the|strong=\"H3548\"* princes|strong=\"H8269\"* came|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H3478\"* me|strong=\"H5066\"*, saying, “The|strong=\"H3548\"* people|strong=\"H5971\"* of|strong=\"H8269\"* Israel|strong=\"H3478\"*, the|strong=\"H3548\"* priests|strong=\"H3548\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* have|strong=\"H5971\"* not|strong=\"H3808\"* separated themselves from|strong=\"H3478\"* the|strong=\"H3548\"* peoples|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3548\"* lands, following their|strong=\"H3808\"* abominations|strong=\"H8441\"*, even|strong=\"H3808\"* those of|strong=\"H8269\"* the|strong=\"H3548\"* Canaanites|strong=\"H3669\"*, the|strong=\"H3548\"* Hittites|strong=\"H2850\"*, the|strong=\"H3548\"* Perizzites|strong=\"H6522\"*, the|strong=\"H3548\"* Jebusites|strong=\"H2983\"*, the|strong=\"H3548\"* Ammonites|strong=\"H5984\"*, the|strong=\"H3548\"* Moabites|strong=\"H4125\"*, the|strong=\"H3548\"* Egyptians|strong=\"H4713\"*, and|strong=\"H3478\"* the|strong=\"H3548\"* Amorites." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H1961\"* taken|strong=\"H5375\"* of|strong=\"H1121\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* for|strong=\"H3588\"* themselves|strong=\"H1992\"* and|strong=\"H1121\"* for|strong=\"H3588\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*, so|strong=\"H1961\"* that|strong=\"H3588\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* offspring|strong=\"H2233\"* have|strong=\"H1961\"* mixed themselves|strong=\"H1992\"* with|strong=\"H5971\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3588\"* lands. Yes|strong=\"H3588\"*, the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* princes|strong=\"H8269\"* and|strong=\"H1121\"* rulers|strong=\"H8269\"* has|strong=\"H1961\"* been|strong=\"H1961\"* chief|strong=\"H8269\"* in|strong=\"H1121\"* this|strong=\"H2088\"* trespass|strong=\"H4604\"*.”" + }, + { + "verseNum": 3, + "text": "When|strong=\"H8085\"* I|strong=\"H1697\"* heard|strong=\"H8085\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, I|strong=\"H1697\"* tore|strong=\"H7167\"* my|strong=\"H8085\"* garment and|strong=\"H7218\"* my|strong=\"H8085\"* robe|strong=\"H4598\"*, and|strong=\"H7218\"* pulled|strong=\"H4803\"* the|strong=\"H8085\"* hair|strong=\"H8181\"* out|strong=\"H3427\"* of|strong=\"H1697\"* my|strong=\"H8085\"* head|strong=\"H7218\"* and|strong=\"H7218\"* of|strong=\"H1697\"* my|strong=\"H8085\"* beard|strong=\"H2206\"*, and|strong=\"H7218\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* confounded." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* trembled|strong=\"H2730\"* at|strong=\"H3427\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* God of|strong=\"H1697\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* assembled|strong=\"H3478\"* to|strong=\"H5704\"* me|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H1697\"* the|strong=\"H3605\"* trespass|strong=\"H4604\"* of|strong=\"H1697\"* the|strong=\"H3605\"* exiles|strong=\"H1473\"*; and|strong=\"H3478\"* I|strong=\"H5704\"* sat|strong=\"H3427\"* confounded until|strong=\"H5704\"* the|strong=\"H3605\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 5, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"* I|strong=\"H5921\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H5921\"* my|strong=\"H3068\"* humiliation|strong=\"H8589\"*, even|strong=\"H6153\"* with|strong=\"H3068\"* my|strong=\"H3068\"* garment and|strong=\"H6965\"* my|strong=\"H3068\"* robe|strong=\"H4598\"* torn|strong=\"H7167\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* fell|strong=\"H3766\"* on|strong=\"H5921\"* my|strong=\"H3068\"* knees|strong=\"H1290\"*, and|strong=\"H6965\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 6, + "text": "and|strong=\"H8064\"* I|strong=\"H3588\"* said, “My|strong=\"H7311\"* God|strong=\"H8064\"*, I|strong=\"H3588\"* am ashamed|strong=\"H3637\"* and|strong=\"H8064\"* blush|strong=\"H3637\"* to|strong=\"H5704\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* my|strong=\"H7311\"* face|strong=\"H6440\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, my|strong=\"H7311\"* God|strong=\"H8064\"*, for|strong=\"H3588\"* our|strong=\"H3588\"* iniquities|strong=\"H5771\"* have|strong=\"H5771\"* increased|strong=\"H7235\"* over|strong=\"H4605\"* our|strong=\"H3588\"* head|strong=\"H7218\"*, and|strong=\"H8064\"* our|strong=\"H3588\"* guiltiness has|strong=\"H3588\"* grown|strong=\"H1431\"* up|strong=\"H7311\"* to|strong=\"H5704\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 7, + "text": "Since|strong=\"H3117\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H4428\"* our|strong=\"H5414\"* fathers we|strong=\"H3068\"* have|strong=\"H3027\"* been exceedingly|strong=\"H1419\"* guilty|strong=\"H5771\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*; and|strong=\"H4428\"* for|strong=\"H5704\"* our|strong=\"H5414\"* iniquities|strong=\"H5771\"* we|strong=\"H3068\"*, our|strong=\"H5414\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* our|strong=\"H5414\"* priests|strong=\"H3548\"* have|strong=\"H3027\"* been delivered|strong=\"H5414\"* into|strong=\"H2719\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* lands, to|strong=\"H5704\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, to|strong=\"H5704\"* captivity|strong=\"H7628\"*, to|strong=\"H5704\"* plunder, and|strong=\"H4428\"* to|strong=\"H5704\"* confusion|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"*, as|strong=\"H5704\"* it|strong=\"H5414\"* is|strong=\"H2088\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* for|strong=\"H3068\"* a|strong=\"H3068\"* little|strong=\"H4592\"* moment|strong=\"H7281\"* grace|strong=\"H8467\"* has|strong=\"H3068\"* been|strong=\"H1961\"* shown from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* leave|strong=\"H7604\"* us|strong=\"H5414\"* a|strong=\"H3068\"* remnant|strong=\"H7604\"* to|strong=\"H3068\"* escape|strong=\"H6413\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* stake in|strong=\"H3068\"* his|strong=\"H5414\"* holy|strong=\"H6944\"* place|strong=\"H4725\"*, that|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H1961\"* lighten our|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H3068\"* revive us|strong=\"H5414\"* a|strong=\"H3068\"* little|strong=\"H4592\"* in|strong=\"H3068\"* our|strong=\"H3068\"* bondage|strong=\"H5659\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5650\"* bondservants; yet|strong=\"H3588\"* our|strong=\"H5414\"* God|strong=\"H5414\"* has|strong=\"H4428\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"* us|strong=\"H5414\"* in|strong=\"H5921\"* our|strong=\"H5414\"* bondage|strong=\"H5650\"*, but|strong=\"H3588\"* has|strong=\"H4428\"* extended|strong=\"H5186\"* loving kindness|strong=\"H2617\"* to|strong=\"H5921\"* us|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*, to|strong=\"H5921\"* revive us|strong=\"H5414\"*, to|strong=\"H5921\"* set|strong=\"H5414\"* up|strong=\"H7311\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* our|strong=\"H5414\"* God|strong=\"H5414\"*, and|strong=\"H3063\"* to|strong=\"H5921\"* repair|strong=\"H5975\"* its|strong=\"H5414\"* ruins|strong=\"H2723\"*, and|strong=\"H3063\"* to|strong=\"H5921\"* give|strong=\"H5414\"* us|strong=\"H5414\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"*, our|strong=\"H3588\"* God, what|strong=\"H4100\"* shall|strong=\"H2063\"* we|strong=\"H3068\"* say after|strong=\"H3588\"* this|strong=\"H2063\"*? For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H6258\"* forsaken|strong=\"H5800\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 11, + "text": "which|strong=\"H1931\"* you|strong=\"H6680\"* have|strong=\"H5971\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* your|strong=\"H6680\"* servants|strong=\"H5650\"* the|strong=\"H3423\"* prophets|strong=\"H5030\"*, saying|strong=\"H6310\"*, ‘The|strong=\"H3423\"* land to|strong=\"H3027\"* which|strong=\"H1931\"* you|strong=\"H6680\"* go|strong=\"H5971\"* to|strong=\"H3027\"* possess|strong=\"H3423\"* is|strong=\"H1931\"* an|strong=\"H5971\"* unclean|strong=\"H2932\"* land through|strong=\"H3027\"* the|strong=\"H3423\"* uncleanness|strong=\"H2932\"* of|strong=\"H3027\"* the|strong=\"H3423\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H3423\"* lands, through|strong=\"H3027\"* their|strong=\"H4390\"* abominations|strong=\"H8441\"*, which|strong=\"H1931\"* have|strong=\"H5971\"* filled|strong=\"H4390\"* it|strong=\"H1931\"* from|strong=\"H3027\"* one|strong=\"H1931\"* end|strong=\"H6310\"* to|strong=\"H3027\"* another|strong=\"H6310\"* with|strong=\"H4390\"* their|strong=\"H4390\"* filthiness|strong=\"H2932\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* don’t give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5704\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*. Don’t take|strong=\"H5375\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* to|strong=\"H5704\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, nor|strong=\"H3808\"* seek|strong=\"H1875\"* their|strong=\"H5375\"* peace|strong=\"H7965\"* or|strong=\"H3808\"* their|strong=\"H5375\"* prosperity|strong=\"H7965\"* forever|strong=\"H5769\"*, that|strong=\"H4616\"* you|strong=\"H5414\"* may|strong=\"H1121\"* be|strong=\"H3808\"* strong|strong=\"H2388\"* and|strong=\"H1121\"* eat the|strong=\"H5414\"* good|strong=\"H2896\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land, and|strong=\"H1121\"* leave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5704\"* an|strong=\"H5414\"* inheritance|strong=\"H3423\"* to|strong=\"H5704\"* your|strong=\"H5414\"* children|strong=\"H1121\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 13, + "text": "“After|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* come on|strong=\"H5921\"* us|strong=\"H5414\"* for|strong=\"H3588\"* our|strong=\"H3605\"* evil|strong=\"H7451\"* deeds|strong=\"H4639\"* and|strong=\"H1419\"* for|strong=\"H3588\"* our|strong=\"H3605\"* great|strong=\"H1419\"* guilt|strong=\"H5771\"*, since|strong=\"H3588\"* you|strong=\"H3588\"*, our|strong=\"H3605\"* God|strong=\"H5414\"*, have|strong=\"H5771\"* punished|strong=\"H2820\"* us|strong=\"H5414\"* less|strong=\"H3588\"* than|strong=\"H5921\"* our|strong=\"H3605\"* iniquities|strong=\"H5771\"* deserve, and|strong=\"H1419\"* have|strong=\"H5771\"* given|strong=\"H5414\"* us|strong=\"H5414\"* such|strong=\"H2063\"* a|strong=\"H3068\"* remnant|strong=\"H6413\"*," + }, + { + "verseNum": 14, + "text": "shall|strong=\"H5971\"* we|strong=\"H3068\"* again|strong=\"H7725\"* break|strong=\"H6565\"* your|strong=\"H7725\"* commandments|strong=\"H4687\"*, and|strong=\"H7725\"* join ourselves with|strong=\"H5971\"* the|strong=\"H7725\"* peoples|strong=\"H5971\"* that|strong=\"H5971\"* do|strong=\"H6565\"* these|strong=\"H5971\"* abominations|strong=\"H8441\"*? Wouldn’t you|strong=\"H5704\"* be|strong=\"H3808\"* angry with|strong=\"H5971\"* us|strong=\"H7725\"* until|strong=\"H5704\"* you|strong=\"H5704\"* had|strong=\"H5971\"* consumed|strong=\"H3615\"* us|strong=\"H7725\"*, so|strong=\"H3808\"* that|strong=\"H5971\"* there|strong=\"H7725\"* would|strong=\"H5971\"* be|strong=\"H3808\"* no|strong=\"H3808\"* remnant|strong=\"H7611\"*, nor|strong=\"H3808\"* any|strong=\"H3808\"* to|strong=\"H5704\"* escape|strong=\"H6413\"*?" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, you|strong=\"H3588\"* are|strong=\"H3117\"* righteous|strong=\"H6662\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* left|strong=\"H7604\"* a|strong=\"H3068\"* remnant|strong=\"H7604\"* that|strong=\"H3588\"* has|strong=\"H3068\"* escaped|strong=\"H6413\"*, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H3068\"* today|strong=\"H3117\"*. Behold|strong=\"H2005\"*,+ 9:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* we|strong=\"H3068\"* are|strong=\"H3117\"* before|strong=\"H6440\"* you|strong=\"H3588\"* in|strong=\"H5921\"* our|strong=\"H3068\"* guiltiness; for|strong=\"H3588\"* no|strong=\"H5975\"* one|strong=\"H2088\"* can|strong=\"H5975\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* you|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H3068\"* this|strong=\"H2088\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3588\"* while|strong=\"H3588\"* Ezra|strong=\"H5830\"* prayed|strong=\"H6419\"* and|strong=\"H3478\"* made|strong=\"H7235\"* confession|strong=\"H3034\"*, weeping|strong=\"H1058\"* and|strong=\"H3478\"* casting himself|strong=\"H6440\"* down|strong=\"H5307\"* before|strong=\"H6440\"* God’s house|strong=\"H1004\"*, there|strong=\"H6440\"* was|strong=\"H3478\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3478\"* him|strong=\"H6440\"* out|strong=\"H6440\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"* of|strong=\"H1004\"* men|strong=\"H3206\"* and|strong=\"H3478\"* women and|strong=\"H3478\"* children|strong=\"H3206\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* very|strong=\"H3966\"* bitterly|strong=\"H1058\"*." + }, + { + "verseNum": 2, + "text": "Shecaniah|strong=\"H7935\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehiel|strong=\"H3171\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Elam|strong=\"H5867\"*, answered|strong=\"H6030\"* Ezra|strong=\"H5830\"*, “We|strong=\"H6258\"* have|strong=\"H3426\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* our|strong=\"H5921\"* God, and|strong=\"H1121\"* have|strong=\"H3426\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women of|strong=\"H1121\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land. Yet|strong=\"H6258\"* now|strong=\"H6258\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H4723\"* for|strong=\"H5921\"* Israel|strong=\"H3478\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"* thing|strong=\"H2063\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* let|strong=\"H6258\"*’s make|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* our|strong=\"H3605\"* God to|strong=\"H3318\"* put|strong=\"H6213\"* away|strong=\"H3318\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wives and|strong=\"H6213\"* those|strong=\"H1992\"* who|strong=\"H3605\"* are|strong=\"H1992\"* born|strong=\"H3205\"* of|strong=\"H3205\"* them|strong=\"H1992\"*, according to|strong=\"H3318\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3205\"* my|strong=\"H3605\"* lord and|strong=\"H6213\"* of|strong=\"H3205\"* those|strong=\"H1992\"* who|strong=\"H3605\"* tremble|strong=\"H2730\"* at|strong=\"H6213\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H3205\"* our|strong=\"H3605\"* God. Let|strong=\"H6258\"* it|strong=\"H6213\"* be|strong=\"H1285\"* done|strong=\"H6213\"* according to|strong=\"H3318\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Arise|strong=\"H6965\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* belongs to|strong=\"H6213\"* you|strong=\"H3588\"* and|strong=\"H6965\"* we|strong=\"H3068\"* are|strong=\"H1697\"* with|strong=\"H5973\"* you|strong=\"H3588\"*. Be|strong=\"H1697\"* courageous|strong=\"H2388\"*, and|strong=\"H6965\"* do|strong=\"H6213\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* Ezra|strong=\"H5830\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* made|strong=\"H6213\"* the|strong=\"H3605\"* chiefs|strong=\"H8269\"* of|strong=\"H1697\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* swear|strong=\"H7650\"* that|strong=\"H3605\"* they|strong=\"H6213\"* would|strong=\"H3478\"* do|strong=\"H6213\"* according to|strong=\"H3478\"* this|strong=\"H2088\"* word|strong=\"H1697\"*. So|strong=\"H6213\"* they|strong=\"H6213\"* swore|strong=\"H7650\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6965\"* Ezra|strong=\"H5830\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6440\"* before|strong=\"H6440\"* God|strong=\"H3808\"*’s house|strong=\"H1004\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H6440\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Jehohanan|strong=\"H3076\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib. When|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H3212\"* there|strong=\"H8033\"*, he|strong=\"H3588\"* didn’t eat|strong=\"H3899\"* bread|strong=\"H3899\"* or|strong=\"H3808\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* mourned because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* trespass|strong=\"H4604\"* of|strong=\"H1121\"* the|strong=\"H6440\"* exiles|strong=\"H1473\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* made|strong=\"H5674\"* a|strong=\"H3068\"* proclamation|strong=\"H6963\"* throughout|strong=\"H3605\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* should gather|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H3117\"* that|strong=\"H3605\"* whoever|strong=\"H3605\"* didn’t come within three|strong=\"H7969\"* days|strong=\"H3117\"*, according to|strong=\"H3117\"* the|strong=\"H3605\"* counsel|strong=\"H6098\"* of|strong=\"H3117\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3117\"* the|strong=\"H3605\"* elders|strong=\"H2205\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* possessions|strong=\"H7399\"* should|strong=\"H3117\"* be|strong=\"H3808\"* forfeited|strong=\"H2763\"*, and|strong=\"H3117\"* he|strong=\"H1931\"* himself|strong=\"H1931\"* separated from|strong=\"H3117\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Benjamin|strong=\"H1144\"* gathered|strong=\"H6908\"* themselves|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* within|strong=\"H1004\"* the|strong=\"H3605\"* three|strong=\"H7969\"* days|strong=\"H3117\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* twentieth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1004\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* wide place|strong=\"H1004\"* in|strong=\"H3427\"* front of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, trembling|strong=\"H7460\"* because|strong=\"H5921\"* of|strong=\"H1004\"* this|strong=\"H1931\"* matter|strong=\"H1697\"*, and|strong=\"H3063\"* because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H3605\"* great rain|strong=\"H1653\"*." + }, + { + "verseNum": 10, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H5921\"* priest|strong=\"H3548\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* said to|strong=\"H3478\"* them|strong=\"H5921\"*, “You|strong=\"H5921\"* have|strong=\"H3478\"* trespassed|strong=\"H4603\"*, and|strong=\"H6965\"* have|strong=\"H3478\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women, increasing|strong=\"H3254\"* the|strong=\"H5921\"* guilt of|strong=\"H3427\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* make|strong=\"H6213\"* confession|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers and|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H5414\"* pleasure|strong=\"H7522\"*. Separate yourselves|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H5414\"* land and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5414\"* foreign|strong=\"H5237\"* women.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* answered|strong=\"H6030\"* with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, “We|strong=\"H6213\"* must do|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H3605\"* have|strong=\"H1697\"* said|strong=\"H1697\"* concerning|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H3117\"* many|strong=\"H7227\"*, and|strong=\"H3117\"* it|strong=\"H3588\"* is|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H3117\"* much|strong=\"H7227\"* rain|strong=\"H1653\"*, and|strong=\"H3117\"* we|strong=\"H3068\"* are|strong=\"H3117\"* not|strong=\"H3808\"* able|strong=\"H3581\"* to|strong=\"H6256\"* stand|strong=\"H5975\"* outside|strong=\"H2351\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* a|strong=\"H3068\"* work|strong=\"H4399\"* of|strong=\"H3117\"* one|strong=\"H2088\"* day|strong=\"H3117\"* or|strong=\"H3808\"* two|strong=\"H8147\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H5971\"* greatly|strong=\"H7227\"* transgressed|strong=\"H6586\"* in|strong=\"H3117\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* our|strong=\"H3605\"* princes|strong=\"H8269\"* be|strong=\"H1697\"* appointed|strong=\"H5975\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, and|strong=\"H7725\"* let|strong=\"H4994\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1697\"* in|strong=\"H3427\"* our|strong=\"H3605\"* cities|strong=\"H5892\"* who|strong=\"H3605\"* have|strong=\"H1697\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women|strong=\"H2205\"* come|strong=\"H7725\"* at|strong=\"H3427\"* appointed|strong=\"H5975\"* times|strong=\"H6256\"*, and|strong=\"H7725\"* with|strong=\"H5973\"* them|strong=\"H7725\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* every|strong=\"H3605\"* city|strong=\"H5892\"* and|strong=\"H7725\"* its|strong=\"H3605\"* judges|strong=\"H8199\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* fierce|strong=\"H2740\"* wrath|strong=\"H2740\"* of|strong=\"H1697\"* our|strong=\"H3605\"* God is|strong=\"H2088\"* turned|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H4994\"*, until|strong=\"H5704\"* this|strong=\"H2088\"* matter|strong=\"H1697\"* is|strong=\"H2088\"* resolved.”" + }, + { + "verseNum": 15, + "text": "Only Jonathan|strong=\"H3129\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asahel|strong=\"H6214\"* and|strong=\"H1121\"* Jahzeiah|strong=\"H3167\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tikvah|strong=\"H8616\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* this|strong=\"H2063\"*; and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* and|strong=\"H1121\"* Shabbethai|strong=\"H7678\"* the|strong=\"H5921\"* Levite|strong=\"H3881\"* helped|strong=\"H5826\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"* did|strong=\"H6213\"* so|strong=\"H3651\"*. Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, with|strong=\"H1004\"* certain heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households|strong=\"H1004\"*, after|strong=\"H3117\"* their|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H6213\"* by|strong=\"H3117\"* their|strong=\"H3605\"* names|strong=\"H8034\"*, were|strong=\"H1121\"* set|strong=\"H3427\"* apart; and|strong=\"H1121\"* they|strong=\"H3117\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* first|strong=\"H1121\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"* to|strong=\"H6213\"* examine|strong=\"H1875\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3117\"* finished|strong=\"H3615\"* with|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3427\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women by|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 18, + "text": "Among|strong=\"H3427\"* the|strong=\"H4672\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4672\"* priests|strong=\"H3548\"* there|strong=\"H3427\"* were|strong=\"H1121\"* found|strong=\"H4672\"* who|strong=\"H3548\"* had|strong=\"H3548\"* married|strong=\"H3427\"* foreign|strong=\"H5237\"* women:" + }, + { + "verseNum": 19, + "text": "They gave their hand that they would put away their wives; and being guilty, they offered a ram of the flock for their guilt." + }, + { + "verseNum": 20, + "text": "Of the sons of Immer: Hanani and Zebadiah." + }, + { + "verseNum": 21, + "text": "Of the sons of Harim: Maaseiah, Elijah, Shemaiah, Jehiel, and Uzziah." + }, + { + "verseNum": 22, + "text": "Of the sons of Pashhur: Elioenai, Maaseiah, Ishmael, Nethanel, Jozabad, and Elasah." + }, + { + "verseNum": 23, + "text": "Of the Levites: Jozabad, Shimei, Kelaiah (also called Kelita), Pethahiah, Judah, and Eliezer." + }, + { + "verseNum": 24, + "text": "Of the singers: Eliashib." + }, + { + "verseNum": 25, + "text": "Of Israel: Of the sons of Parosh: Ramiah, Izziah, Malchijah, Mijamin, Eleazar, Malchijah, and Benaiah." + }, + { + "verseNum": 26, + "text": "Of the sons of Elam: Mattaniah, Zechariah, Jehiel, Abdi, Jeremoth, and Elijah." + }, + { + "verseNum": 27, + "text": "Of the sons of Zattu: Elioenai, Eliashib, Mattaniah, Jeremoth, Zabad, and Aziza." + }, + { + "verseNum": 28, + "text": "Of the sons of Bebai: Jehohanan, Hananiah, Zabbai, and Athlai." + }, + { + "verseNum": 29, + "text": "Of the sons of Bani: Meshullam, Malluch, Adaiah, Jashub, Sheal, and Jeremoth." + }, + { + "verseNum": 30, + "text": "Of the sons of Pahathmoab: Adna, Chelal, Benaiah, Maaseiah, Mattaniah, Bezalel, Binnui, and Manasseh." + }, + { + "verseNum": 31, + "text": "Of the sons of Harim: Eliezer, Isshijah, Malchijah, Shemaiah, Shimeon," + }, + { + "verseNum": 32, + "text": "Benjamin, Malluch, and Shemariah." + }, + { + "verseNum": 33, + "text": "Of the sons of Hashum: Mattenai, Mattattah, Zabad, Eliphelet, Jeremai, Manasseh, and Shimei." + }, + { + "verseNum": 34, + "text": "Of the sons of Bani: Maadai, Amram, Uel," + }, + { + "verseNum": 35, + "text": "Benaiah, Bedeiah, Cheluhi," + }, + { + "verseNum": 36, + "text": "Vaniah, Meremoth, Eliashib," + }, + { + "verseNum": 37, + "text": "Mattaniah, Mattenai, Jaasu," + }, + { + "verseNum": 38, + "text": "Bani, Binnui, Shimei," + }, + { + "verseNum": 39, + "text": "Shelemiah, Nathan, Adaiah," + }, + { + "verseNum": 40, + "text": "Machnadebai, Shashai, Sharai," + }, + { + "verseNum": 41, + "text": "Azarel, Shelemiah, Shemariah," + }, + { + "verseNum": 42, + "text": "Shallum, Amariah, and Joseph." + }, + { + "verseNum": 43, + "text": "Of the sons of Nebo: Jeiel, Mattithiah, Zabad, Zebina, Iddo, Joel, and Benaiah." + }, + { + "verseNum": 44, + "text": "All|strong=\"H3605\"* these|strong=\"H1992\"* had|strong=\"H3426\"* taken|strong=\"H5375\"* foreign|strong=\"H5237\"* wives. Some|strong=\"H1992\"* of|strong=\"H1121\"* them|strong=\"H1992\"* had|strong=\"H3426\"* wives by|strong=\"H3605\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* had|strong=\"H3426\"* children|strong=\"H1121\"*." + } + ] + } + ] + }, + { + "name": "Nehemiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hacaliah|strong=\"H2446\"*." + }, + { + "verseNum": 2, + "text": "Hanani|strong=\"H2607\"*, one|strong=\"H4480\"* of|strong=\"H4480\"* my|strong=\"H5921\"* brothers, came|strong=\"H3063\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* certain men out|strong=\"H4480\"* of|strong=\"H4480\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* I|strong=\"H5921\"* asked|strong=\"H7592\"* them|strong=\"H5921\"* about|strong=\"H5921\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* who|strong=\"H1931\"* had|strong=\"H3063\"* escaped|strong=\"H6413\"*, who|strong=\"H1931\"* were|strong=\"H3063\"* left|strong=\"H7604\"* of|strong=\"H4480\"* the|strong=\"H5921\"* captivity|strong=\"H7628\"*, and|strong=\"H3063\"* concerning|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H8033\"* said to|strong=\"H3389\"* me|strong=\"H4480\"*, “The|strong=\"H4480\"* remnant|strong=\"H7604\"* who|strong=\"H7604\"* are|strong=\"H8179\"* left|strong=\"H7604\"* of|strong=\"H8179\"* the|strong=\"H4480\"* captivity|strong=\"H7628\"* there|strong=\"H8033\"* in|strong=\"H7604\"* the|strong=\"H4480\"* province|strong=\"H4082\"* are|strong=\"H8179\"* in|strong=\"H7604\"* great|strong=\"H1419\"* affliction|strong=\"H7451\"* and|strong=\"H1419\"* reproach|strong=\"H2781\"*. The|strong=\"H4480\"* wall|strong=\"H2346\"* of|strong=\"H8179\"* Jerusalem|strong=\"H3389\"* is|strong=\"H7451\"* also|strong=\"H3389\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H1419\"* its|strong=\"H6555\"* gates|strong=\"H8179\"* are|strong=\"H8179\"* burned|strong=\"H3341\"* with|strong=\"H3389\"* fire|strong=\"H3341\"*.”" + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* I|strong=\"H3117\"* heard|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"*, I|strong=\"H3117\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H3117\"* wept|strong=\"H1058\"*, and|strong=\"H3117\"* mourned|strong=\"H1058\"* several days|strong=\"H3117\"*; and|strong=\"H3117\"* I|strong=\"H3117\"* fasted|strong=\"H6684\"* and|strong=\"H3117\"* prayed|strong=\"H6419\"* before|strong=\"H6440\"* the|strong=\"H6440\"* God|strong=\"H8064\"*+ 1:4 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3117\"* heaven|strong=\"H8064\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* said, “I|strong=\"H3068\"* beg you|strong=\"H3372\"*, Yahweh|strong=\"H3068\"*,+ 1:5 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* the|strong=\"H8104\"* God|strong=\"H3068\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, the|strong=\"H8104\"* great|strong=\"H1419\"* and|strong=\"H3068\"* awesome|strong=\"H3372\"* God|strong=\"H3068\"* who|strong=\"H3068\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H3068\"* loving kindness|strong=\"H2617\"* with|strong=\"H3068\"* those who|strong=\"H3068\"* love|strong=\"H2617\"* him|strong=\"H8104\"* and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 6, + "text": "let|strong=\"H4994\"* your|strong=\"H5921\"* ear|strong=\"H8085\"* now|strong=\"H4994\"* be|strong=\"H1961\"* attentive|strong=\"H7183\"* and|strong=\"H1121\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* open|strong=\"H6605\"*, that|strong=\"H3117\"* you|strong=\"H6440\"* may|strong=\"H1961\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H1121\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* which|strong=\"H1004\"* I|strong=\"H3117\"* pray|strong=\"H6419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* at|strong=\"H5921\"* this|strong=\"H6440\"* time|strong=\"H3117\"*, day|strong=\"H3117\"* and|strong=\"H1121\"* night|strong=\"H3915\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*, while|strong=\"H1961\"* I|strong=\"H3117\"* confess|strong=\"H3034\"* the|strong=\"H6440\"* sins|strong=\"H2403\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* which|strong=\"H1004\"* we|strong=\"H3068\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* you|strong=\"H6440\"*. Yes, I|strong=\"H3117\"* and|strong=\"H1121\"* my|strong=\"H8085\"* father|strong=\"H1121\"*’s house|strong=\"H1004\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 7, + "text": "We have|strong=\"H5650\"* dealt very|strong=\"H2254\"* corruptly|strong=\"H2254\"* against|strong=\"H6680\"* you|strong=\"H6680\"*, and|strong=\"H4872\"* have|strong=\"H5650\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* the|strong=\"H8104\"* commandments|strong=\"H4687\"*, nor|strong=\"H3808\"* the|strong=\"H8104\"* statutes|strong=\"H2706\"*, nor|strong=\"H3808\"* the|strong=\"H8104\"* ordinances|strong=\"H4941\"*, which|strong=\"H2706\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H8104\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"*, I|strong=\"H1697\"* beg|strong=\"H4994\"* you|strong=\"H6680\"*, the|strong=\"H6680\"* word|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* your|strong=\"H6680\"* servant|strong=\"H5650\"* Moses|strong=\"H4872\"*, saying|strong=\"H1697\"*, ‘If you|strong=\"H6680\"* trespass|strong=\"H4603\"*, I|strong=\"H1697\"* will|strong=\"H5971\"* scatter|strong=\"H6327\"* you|strong=\"H6680\"* among|strong=\"H5971\"* the|strong=\"H6680\"* peoples|strong=\"H5971\"*;" + }, + { + "verseNum": 9, + "text": "but|strong=\"H1961\"* if|strong=\"H1961\"* you|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H7725\"* do|strong=\"H6213\"* them|strong=\"H7725\"*, though your|strong=\"H8104\"* outcasts|strong=\"H5080\"* were|strong=\"H1961\"* in|strong=\"H6213\"* the|strong=\"H6213\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H8034\"* the|strong=\"H6213\"* heavens|strong=\"H8064\"*, yet I|strong=\"H6213\"* will|strong=\"H1961\"* gather|strong=\"H6908\"* them|strong=\"H7725\"* from|strong=\"H7725\"* there|strong=\"H8033\"*, and|strong=\"H7725\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6213\"* place|strong=\"H4725\"* that|strong=\"H6213\"* I|strong=\"H6213\"* have|strong=\"H1961\"* chosen, to|strong=\"H7725\"* cause|strong=\"H6213\"* my|strong=\"H8104\"* name|strong=\"H8034\"* to|strong=\"H7725\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*.’" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H1419\"* these|strong=\"H1992\"* are|strong=\"H1992\"* your|strong=\"H3027\"* servants|strong=\"H5650\"* and|strong=\"H1419\"* your|strong=\"H3027\"* people|strong=\"H5971\"*, whom|strong=\"H1992\"* you|strong=\"H3027\"* have|strong=\"H5971\"* redeemed|strong=\"H6299\"* by|strong=\"H3027\"* your|strong=\"H3027\"* great|strong=\"H1419\"* power|strong=\"H3027\"* and|strong=\"H1419\"* by|strong=\"H3027\"* your|strong=\"H3027\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "Lord,+ 1:11 The word translated “Lord” is “Adonai.”* I|strong=\"H3117\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, let|strong=\"H4994\"* your|strong=\"H5414\"* ear be|strong=\"H1961\"* attentive|strong=\"H7183\"* now|strong=\"H4994\"* to|strong=\"H1961\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H4428\"* your|strong=\"H5414\"* servant|strong=\"H5650\"*, and|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H4428\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* who|strong=\"H5650\"* delight|strong=\"H2655\"* to|strong=\"H1961\"* fear|strong=\"H3372\"* your|strong=\"H5414\"* name|strong=\"H8034\"*; and|strong=\"H4428\"* please|strong=\"H4994\"* prosper|strong=\"H6743\"* your|strong=\"H5414\"* servant|strong=\"H5650\"* today|strong=\"H3117\"*, and|strong=\"H4428\"* grant|strong=\"H5414\"* him|strong=\"H5414\"* mercy|strong=\"H7356\"* in|strong=\"H4428\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H4428\"* this|strong=\"H2088\"* man|strong=\"H2088\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Nisan|strong=\"H5212\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H6440\"* king|strong=\"H4428\"*, when|strong=\"H1961\"* wine|strong=\"H3196\"* was|strong=\"H1961\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, I|strong=\"H5414\"* picked|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H6440\"* wine|strong=\"H3196\"*, and|strong=\"H6242\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H6440\"* king|strong=\"H4428\"*. Now|strong=\"H1961\"* I|strong=\"H5414\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* sad|strong=\"H7451\"* before|strong=\"H6440\"* in|strong=\"H8141\"* his|strong=\"H5375\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said to|strong=\"H3820\"* me|strong=\"H6440\"*, “Why|strong=\"H4069\"* is|strong=\"H2088\"* your|strong=\"H6440\"* face|strong=\"H6440\"* sad|strong=\"H7451\"*, since|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4428\"* not|strong=\"H2088\"* sick|strong=\"H2470\"*? This|strong=\"H2088\"* is|strong=\"H2088\"* nothing else|strong=\"H3588\"* but|strong=\"H3588\"* sorrow|strong=\"H7451\"* of|strong=\"H4428\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3808\"* said to|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “Let|strong=\"H3808\"* the|strong=\"H6440\"* king|strong=\"H4428\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*! Why|strong=\"H4069\"* shouldn’t my|strong=\"H6440\"* face|strong=\"H6440\"* be|strong=\"H3808\"* sad|strong=\"H7489\"*, when|strong=\"H2421\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, the|strong=\"H6440\"* place|strong=\"H1004\"* of|strong=\"H4428\"* my|strong=\"H6440\"* fathers’ tombs|strong=\"H6913\"*, lies waste|strong=\"H2717\"*, and|strong=\"H4428\"* its|strong=\"H5892\"* gates|strong=\"H8179\"* have|strong=\"H5892\"* been|strong=\"H5769\"* consumed with|strong=\"H1004\"* fire?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2088\"* the|strong=\"H5921\"* king|strong=\"H4428\"* said to|strong=\"H5921\"* me|strong=\"H5921\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H5921\"* request|strong=\"H1245\"*?”" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* said to|strong=\"H7971\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, “If it|strong=\"H5921\"* pleases|strong=\"H2895\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H3063\"* if your|strong=\"H5921\"* servant|strong=\"H5650\"* has|strong=\"H4428\"* found|strong=\"H3190\"* favor|strong=\"H6440\"* in|strong=\"H5921\"* your|strong=\"H5921\"* sight|strong=\"H6440\"*, I|strong=\"H5921\"* ask|strong=\"H4428\"* that|strong=\"H4428\"* you|strong=\"H6440\"* would|strong=\"H5650\"* send|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H7971\"* Judah|strong=\"H3063\"*, to|strong=\"H7971\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H4428\"* my|strong=\"H5921\"* fathers’ tombs|strong=\"H6913\"*, that|strong=\"H4428\"* I|strong=\"H5921\"* may|strong=\"H4428\"* build|strong=\"H1129\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* me|strong=\"H5414\"* (the|strong=\"H6440\"* queen|strong=\"H7694\"* was|strong=\"H1961\"* also|strong=\"H4428\"* sitting|strong=\"H3427\"* by|strong=\"H5414\"* him|strong=\"H5414\"*), “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H1961\"* your|strong=\"H5414\"* journey|strong=\"H4109\"* be|strong=\"H1961\"*? When|strong=\"H1961\"* will|strong=\"H1961\"* you|strong=\"H5414\"* return|strong=\"H7725\"*?”" + }, + { + "verseNum": 7, + "text": "Moreover I|strong=\"H5414\"* said to|strong=\"H5704\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, “If it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* letters be|strong=\"H5414\"* given|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H5921\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, that|strong=\"H5414\"* they|strong=\"H5921\"* may|strong=\"H4428\"* let|strong=\"H5414\"* me|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* until|strong=\"H5704\"* I|strong=\"H5414\"* come|strong=\"H5674\"* to|strong=\"H5704\"* Judah|strong=\"H3063\"*;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H4428\"* a|strong=\"H3068\"* letter to|strong=\"H5921\"* Asaph the|strong=\"H5921\"* keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s forest|strong=\"H6508\"*, that|strong=\"H5414\"* he|strong=\"H1004\"* may|strong=\"H4428\"* give|strong=\"H5414\"* me|strong=\"H5414\"* timber|strong=\"H6086\"* to|strong=\"H5921\"* make|strong=\"H5414\"* beams|strong=\"H7136\"* for|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* the|strong=\"H5921\"* citadel|strong=\"H1002\"* by|strong=\"H3027\"* the|strong=\"H5921\"* temple|strong=\"H1004\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* of|strong=\"H4428\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H4428\"* occupy.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7971\"* I|strong=\"H5414\"* came|strong=\"H4428\"* to|strong=\"H7971\"* the|strong=\"H5414\"* governors|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5414\"* River|strong=\"H5104\"*, and|strong=\"H7971\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s letters. Now|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* had|strong=\"H4428\"* sent|strong=\"H7971\"* captains|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5414\"* army|strong=\"H2428\"* and|strong=\"H7971\"* horsemen|strong=\"H6571\"* with|strong=\"H5973\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H8085\"* Sanballat|strong=\"H5571\"* the|strong=\"H8085\"* Horonite|strong=\"H2772\"* and|strong=\"H1121\"* Tobiah|strong=\"H2900\"* the|strong=\"H8085\"* Ammonite|strong=\"H5984\"* servant|strong=\"H5650\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* it|strong=\"H2896\"*, it|strong=\"H2896\"* grieved|strong=\"H7489\"* them|strong=\"H1992\"* exceedingly|strong=\"H1419\"*, because a|strong=\"H3068\"* man|strong=\"H1121\"* had|strong=\"H3478\"* come|strong=\"H3478\"* to|strong=\"H3478\"* seek|strong=\"H1245\"* the|strong=\"H8085\"* welfare|strong=\"H2896\"* of|strong=\"H1121\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 11, + "text": "So|strong=\"H1961\"* I|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3117\"* was|strong=\"H1961\"* there|strong=\"H8033\"* three|strong=\"H7969\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* arose|strong=\"H6965\"* in|strong=\"H6213\"* the|strong=\"H3588\"* night|strong=\"H3915\"*, I|strong=\"H3588\"* and|strong=\"H6965\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H6213\"* with|strong=\"H5973\"* me|strong=\"H5414\"*. I|strong=\"H3588\"* didn’t tell|strong=\"H5046\"* anyone|strong=\"H3588\"* what|strong=\"H4100\"* my|strong=\"H5414\"* God|strong=\"H5414\"* put|strong=\"H5414\"* into|strong=\"H6213\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* do|strong=\"H6213\"* for|strong=\"H3588\"* Jerusalem|strong=\"H3389\"*. There|strong=\"H6965\"* wasn’t any|strong=\"H6213\"* animal with|strong=\"H5973\"* me|strong=\"H5414\"* except|strong=\"H3588\"* the|strong=\"H3588\"* animal that|strong=\"H3588\"* I|strong=\"H3588\"* rode|strong=\"H7392\"* on|strong=\"H7392\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H6440\"* went|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3318\"* night|strong=\"H3915\"* by|strong=\"H3318\"* the|strong=\"H6440\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* jackal’s well|strong=\"H5869\"*, then|strong=\"H1961\"* to|strong=\"H3318\"* the|strong=\"H6440\"* dung gate|strong=\"H8179\"*; and|strong=\"H5869\"* I|strong=\"H6440\"* inspected|strong=\"H7663\"* the|strong=\"H6440\"* walls|strong=\"H2346\"* of|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, which|strong=\"H5869\"* were|strong=\"H1961\"* broken|strong=\"H6555\"* down|strong=\"H6555\"*, and|strong=\"H5869\"* its|strong=\"H6555\"* gates|strong=\"H8179\"* were|strong=\"H1961\"* consumed with|strong=\"H3389\"* fire." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5674\"* I|strong=\"H8478\"* went|strong=\"H5674\"* on|strong=\"H5674\"* to|strong=\"H4428\"* the|strong=\"H8478\"* spring|strong=\"H5869\"* gate|strong=\"H8179\"* and|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H8478\"* king|strong=\"H4428\"*’s pool|strong=\"H1295\"*, but|strong=\"H4428\"* there|strong=\"H8478\"* was|strong=\"H4428\"* no place|strong=\"H4725\"* for|strong=\"H8478\"* the|strong=\"H8478\"* animal that|strong=\"H4428\"* was|strong=\"H4428\"* under|strong=\"H8478\"* me|strong=\"H5674\"* to|strong=\"H4428\"* pass|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* I|strong=\"H1961\"* went|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H7725\"* the|strong=\"H7725\"* night|strong=\"H3915\"* by|strong=\"H1961\"* the|strong=\"H7725\"* brook|strong=\"H5158\"* and|strong=\"H7725\"* inspected|strong=\"H7663\"* the|strong=\"H7725\"* wall|strong=\"H2346\"*; and|strong=\"H7725\"* I|strong=\"H1961\"* turned|strong=\"H7725\"* back|strong=\"H7725\"*, and|strong=\"H7725\"* entered|strong=\"H5927\"* by|strong=\"H1961\"* the|strong=\"H7725\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*, and|strong=\"H7725\"* so|strong=\"H1961\"* returned|strong=\"H7725\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6213\"* rulers|strong=\"H5461\"* didn’t know|strong=\"H3045\"* where|strong=\"H4100\"* I|strong=\"H5704\"* went|strong=\"H1980\"*, or|strong=\"H3808\"* what|strong=\"H4100\"* I|strong=\"H5704\"* did|strong=\"H6213\"*. I|strong=\"H5704\"* had|strong=\"H3045\"* not|strong=\"H3808\"* as|strong=\"H5704\"* yet|strong=\"H5704\"* told|strong=\"H5046\"* it|strong=\"H6213\"* to|strong=\"H5704\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* priests|strong=\"H3548\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* rulers|strong=\"H5461\"*, nor|strong=\"H3808\"* to|strong=\"H5704\"* the|strong=\"H6213\"* rest|strong=\"H3499\"* who|strong=\"H3548\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* I|strong=\"H7200\"* said to|strong=\"H3212\"* them|strong=\"H7200\"*, “You|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H7200\"* bad|strong=\"H7451\"* situation that|strong=\"H7200\"* we|strong=\"H3068\"* are|strong=\"H8179\"* in|strong=\"H3212\"*, how Jerusalem|strong=\"H3389\"* lies|strong=\"H1961\"* waste|strong=\"H2717\"*, and|strong=\"H3212\"* its|strong=\"H1961\"* gates|strong=\"H8179\"* are|strong=\"H8179\"* burned|strong=\"H3341\"* with|strong=\"H3389\"* fire|strong=\"H3341\"*. Come|strong=\"H1961\"*, let|strong=\"H3808\"*’s build|strong=\"H1129\"* up|strong=\"H1129\"* the|strong=\"H7200\"* wall|strong=\"H2346\"* of|strong=\"H8179\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H7200\"* we|strong=\"H3068\"* won’t be|strong=\"H1961\"* disgraced.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* told|strong=\"H5046\"* them|strong=\"H5921\"* about|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* my|strong=\"H5921\"* God|strong=\"H3027\"* which|strong=\"H1931\"* was|strong=\"H1931\"* good|strong=\"H2896\"* on|strong=\"H5921\"* me|strong=\"H5046\"*, and|strong=\"H6965\"* also|strong=\"H3027\"* about|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s words|strong=\"H1697\"* that|strong=\"H1931\"* he|strong=\"H1931\"* had|strong=\"H4428\"* spoken|strong=\"H1697\"* to|strong=\"H5921\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* Sanballat|strong=\"H5571\"* the|strong=\"H5921\"* Horonite|strong=\"H2772\"*, Tobiah|strong=\"H2900\"* the|strong=\"H5921\"* Ammonite|strong=\"H5984\"* servant|strong=\"H5650\"*, and|strong=\"H4428\"* Geshem|strong=\"H1654\"* the|strong=\"H5921\"* Arabian|strong=\"H6163\"*, heard|strong=\"H8085\"* it|strong=\"H5921\"*, they|strong=\"H5921\"* ridiculed us|strong=\"H5921\"* and|strong=\"H4428\"* despised us|strong=\"H5921\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H5921\"* are|strong=\"H4100\"* doing|strong=\"H6213\"*? Will|strong=\"H4428\"* you|strong=\"H5921\"* rebel|strong=\"H4775\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* I|strong=\"H1697\"* answered|strong=\"H7725\"* them|strong=\"H7725\"*, and|strong=\"H6965\"* said|strong=\"H1697\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, “The|strong=\"H7725\"* God|strong=\"H8064\"* of|strong=\"H1697\"* heaven|strong=\"H8064\"* will|strong=\"H5650\"* prosper|strong=\"H6743\"* us|strong=\"H7725\"*. Therefore|strong=\"H5650\"* we|strong=\"H3068\"*, his|strong=\"H7725\"* servants|strong=\"H5650\"*, will|strong=\"H5650\"* arise|strong=\"H6965\"* and|strong=\"H6965\"* build|strong=\"H1129\"*; but|strong=\"H1931\"* you|strong=\"H7725\"* have|strong=\"H5650\"* no|strong=\"H2506\"* portion|strong=\"H2506\"*, nor|strong=\"H2506\"* right|strong=\"H6666\"*, nor|strong=\"H2506\"* memorial|strong=\"H2146\"* in|strong=\"H7725\"* Jerusalem|strong=\"H3389\"*.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6965\"* Eliashib the|strong=\"H1129\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* with|strong=\"H3548\"* his|strong=\"H6965\"* brothers the|strong=\"H1129\"* priests|strong=\"H3548\"*, and|strong=\"H6965\"* they|strong=\"H1992\"* built|strong=\"H1129\"* the|strong=\"H1129\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* sanctified|strong=\"H6942\"* it|strong=\"H5704\"*, and|strong=\"H6965\"* set|strong=\"H5975\"* up|strong=\"H6965\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*. They|strong=\"H1992\"* sanctified|strong=\"H6942\"* it|strong=\"H5704\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H1129\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hammeah, to|strong=\"H5704\"* the|strong=\"H1129\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hananel|strong=\"H2606\"*." + }, + { + "verseNum": 2, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Jericho|strong=\"H3405\"* built|strong=\"H1129\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* Zaccur|strong=\"H2139\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Imri built|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1129\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hassenaah|strong=\"H5570\"* built|strong=\"H1129\"* the|strong=\"H1129\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* laid|strong=\"H7136\"* its|strong=\"H5975\"* beams|strong=\"H7136\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 4, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Meremoth|strong=\"H4822\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Meshullam|strong=\"H4918\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshezabel|strong=\"H4898\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Zadok|strong=\"H6659\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baana|strong=\"H1195\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 5, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, the|strong=\"H5921\"* Tekoites|strong=\"H8621\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*; but|strong=\"H3808\"* their|strong=\"H5921\"* nobles didn’t put|strong=\"H2388\"* their|strong=\"H5921\"* necks|strong=\"H6677\"* to|strong=\"H5921\"* the|strong=\"H5921\"* Lord’s work|strong=\"H5656\"*." + }, + { + "verseNum": 6, + "text": "Joiada|strong=\"H3111\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"* and|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Besodeiah|strong=\"H1152\"* repaired|strong=\"H2388\"* the|strong=\"H2388\"* old|strong=\"H1121\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* laid|strong=\"H7136\"* its|strong=\"H5975\"* beams|strong=\"H7136\"* and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 7, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Melatiah|strong=\"H4424\"* the|strong=\"H5921\"* Gibeonite|strong=\"H1393\"* and|strong=\"H3027\"* Jadon|strong=\"H3036\"* the|strong=\"H5921\"* Meronothite|strong=\"H4824\"*, the|strong=\"H5921\"* men|strong=\"H2388\"* of|strong=\"H3027\"* Gibeon|strong=\"H1391\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* the|strong=\"H5921\"* residence of|strong=\"H3027\"* the|strong=\"H5921\"* governor|strong=\"H6346\"* beyond|strong=\"H5676\"* the|strong=\"H5921\"* River|strong=\"H5104\"*." + }, + { + "verseNum": 8, + "text": "Next|strong=\"H5921\"* to|strong=\"H5704\"* him|strong=\"H5921\"*, Uzziel|strong=\"H5816\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harhaiah|strong=\"H2736\"*, goldsmiths|strong=\"H6884\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5704\"* him|strong=\"H5921\"*, Hananiah|strong=\"H2608\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* perfumers|strong=\"H7546\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*, and|strong=\"H1121\"* they|strong=\"H5921\"* fortified|strong=\"H2388\"* Jerusalem|strong=\"H3389\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* wide|strong=\"H7342\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 9, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Rephaiah|strong=\"H7509\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hur|strong=\"H2354\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 10, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, Jedaiah|strong=\"H3042\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harumaph|strong=\"H2739\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Hattush|strong=\"H2407\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabneiah|strong=\"H2813\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 11, + "text": "Malchijah|strong=\"H4441\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Harim|strong=\"H2766\"* and|strong=\"H1121\"* Hasshub|strong=\"H2815\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pahathmoab repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion and|strong=\"H1121\"* the|strong=\"H2388\"* tower|strong=\"H4026\"* of|strong=\"H1121\"* the|strong=\"H2388\"* furnaces|strong=\"H8574\"*." + }, + { + "verseNum": 12, + "text": "Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Shallum|strong=\"H7967\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hallohesh|strong=\"H3873\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H1931\"* and|strong=\"H1121\"* his|strong=\"H5921\"* daughters|strong=\"H1323\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 13, + "text": "Hanun|strong=\"H2586\"* and|strong=\"H2388\"* the|strong=\"H1129\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Zanoah|strong=\"H2182\"* repaired|strong=\"H2388\"* the|strong=\"H1129\"* valley|strong=\"H1516\"* gate|strong=\"H8179\"*. They|strong=\"H1992\"* built|strong=\"H1129\"* it|strong=\"H5704\"*, and|strong=\"H2388\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H2388\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*, and|strong=\"H2388\"* one thousand cubits+ 3:13 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* of|strong=\"H3427\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* to|strong=\"H5704\"* the|strong=\"H1129\"* dung gate|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "Malchijah|strong=\"H4441\"* the|strong=\"H1129\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, the|strong=\"H1129\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1129\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Beth Haccherem, repaired|strong=\"H2388\"* the|strong=\"H1129\"* dung gate|strong=\"H8179\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* it|strong=\"H1931\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 15, + "text": "Shallun|strong=\"H7968\"* the|strong=\"H1129\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Colhozeh, the|strong=\"H1129\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H1129\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* the|strong=\"H1129\"* spring|strong=\"H5869\"* gate|strong=\"H8179\"*. He|strong=\"H1931\"* built|strong=\"H1129\"* it|strong=\"H1931\"*, covered|strong=\"H2926\"* it|strong=\"H1931\"*, and|strong=\"H1121\"* set|strong=\"H5975\"* up|strong=\"H5975\"* its|strong=\"H5975\"* doors|strong=\"H1817\"*, its|strong=\"H5975\"* bolts|strong=\"H4514\"*, and|strong=\"H1121\"* its|strong=\"H5975\"* bars|strong=\"H1280\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* repaired|strong=\"H2388\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* of|strong=\"H1121\"* the|strong=\"H1129\"* pool|strong=\"H1295\"* of|strong=\"H1121\"* Shelah|strong=\"H7975\"* by|strong=\"H5975\"* the|strong=\"H1129\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H1129\"* stairs|strong=\"H4609\"* that|strong=\"H1931\"* go|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3381\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "After|strong=\"H1004\"* him|strong=\"H6213\"*, Nehemiah|strong=\"H5166\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azbuk|strong=\"H5802\"*, the|strong=\"H6213\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H6213\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Beth|strong=\"H1004\"* Zur, made|strong=\"H6213\"* repairs|strong=\"H2388\"* to|strong=\"H5704\"* the|strong=\"H6213\"* place|strong=\"H1004\"* opposite|strong=\"H5048\"* the|strong=\"H6213\"* tombs|strong=\"H6913\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H6213\"* pool|strong=\"H1295\"* that|strong=\"H1121\"* was|strong=\"H1732\"* made|strong=\"H6213\"*, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6213\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 17, + "text": "After|strong=\"H5921\"* him|strong=\"H5921\"*, the|strong=\"H5921\"* Levites|strong=\"H3881\"*—Rehum|strong=\"H7348\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*. Next|strong=\"H5921\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, Hashabiah|strong=\"H2811\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H5921\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Keilah|strong=\"H7084\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"* for|strong=\"H5921\"* his|strong=\"H5921\"* district|strong=\"H6418\"*." + }, + { + "verseNum": 18, + "text": "After him|strong=\"H2388\"*, their|strong=\"H2388\"* brothers|strong=\"H1121\"*, Bavvai the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"*, the|strong=\"H2388\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* half|strong=\"H2677\"* the|strong=\"H2388\"* district|strong=\"H6418\"* of|strong=\"H1121\"* Keilah|strong=\"H7084\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 19, + "text": "Next|strong=\"H5921\"* to|strong=\"H5927\"* him|strong=\"H5921\"*, Ezer|strong=\"H5829\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, the|strong=\"H5921\"* ruler|strong=\"H8269\"* of|strong=\"H1121\"* Mizpah|strong=\"H4709\"*, repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion across|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ascent|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5921\"* armory|strong=\"H5402\"* at|strong=\"H5921\"* the|strong=\"H5921\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H5921\"* wall." + }, + { + "verseNum": 20, + "text": "After|strong=\"H4480\"* him|strong=\"H4480\"*, Baruch|strong=\"H1263\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabbai|strong=\"H2079\"* earnestly|strong=\"H2734\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion|strong=\"H4480\"*, from|strong=\"H4480\"* the|strong=\"H4480\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H4480\"* wall to|strong=\"H5704\"* the|strong=\"H4480\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H4480\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib the|strong=\"H4480\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 21, + "text": "After|strong=\"H8145\"* him|strong=\"H5704\"*, Meremoth|strong=\"H4822\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uriah the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hakkoz|strong=\"H6976\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, from|strong=\"H1121\"* the|strong=\"H5704\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H8503\"* of|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Eliashib." + }, + { + "verseNum": 22, + "text": "After him|strong=\"H2388\"*, the|strong=\"H2388\"* priests|strong=\"H3548\"*, the|strong=\"H2388\"* men|strong=\"H2388\"* of|strong=\"H3603\"* the|strong=\"H2388\"* surrounding area made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H1004\"* them|strong=\"H2388\"*, Benjamin|strong=\"H1144\"* and|strong=\"H1121\"* Hasshub|strong=\"H2815\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* their|strong=\"H2388\"* house|strong=\"H1004\"*. After|strong=\"H1004\"* them|strong=\"H2388\"*, Azariah|strong=\"H5838\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ananiah|strong=\"H6055\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* beside his|strong=\"H2388\"* own|strong=\"H2388\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "After|strong=\"H8145\"* him|strong=\"H5704\"*, Binnui|strong=\"H1131\"* the|strong=\"H5704\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Henadad|strong=\"H2582\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, from|strong=\"H1121\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Azariah|strong=\"H5838\"* to|strong=\"H5704\"* the|strong=\"H5704\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H5704\"* wall, and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5704\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 25, + "text": "Palal|strong=\"H6420\"* the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzai made repairs opposite|strong=\"H5048\"* the|strong=\"H3318\"* turning|strong=\"H4740\"* of|strong=\"H1121\"* the|strong=\"H3318\"* wall, and|strong=\"H1121\"* the|strong=\"H3318\"* tower|strong=\"H4026\"* that|strong=\"H4428\"* stands out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* upper|strong=\"H5945\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, which|strong=\"H1004\"* is|strong=\"H4428\"* by|strong=\"H3318\"* the|strong=\"H3318\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3318\"* guard|strong=\"H4307\"*. After|strong=\"H3318\"* him|strong=\"H3318\"* Pedaiah|strong=\"H6305\"* the|strong=\"H3318\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Parosh|strong=\"H6551\"* made repairs." + }, + { + "verseNum": 26, + "text": "(Now|strong=\"H1961\"* the|strong=\"H5704\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ophel|strong=\"H6077\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* place|strong=\"H1961\"* opposite|strong=\"H5048\"* the|strong=\"H5704\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* toward|strong=\"H5704\"* the|strong=\"H5704\"* east|strong=\"H4217\"*, and|strong=\"H3318\"* the|strong=\"H5704\"* tower|strong=\"H4026\"* that|strong=\"H4325\"* stands out|strong=\"H3318\"*.)" + }, + { + "verseNum": 27, + "text": "After|strong=\"H3318\"* him|strong=\"H3318\"* the|strong=\"H5704\"* Tekoites|strong=\"H8621\"* repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion, opposite|strong=\"H5048\"* the|strong=\"H5704\"* great|strong=\"H1419\"* tower|strong=\"H4026\"* that|strong=\"H5704\"* stands|strong=\"H2388\"* out|strong=\"H3318\"*, and|strong=\"H1419\"* to|strong=\"H5704\"* the|strong=\"H5704\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Ophel|strong=\"H6077\"*." + }, + { + "verseNum": 28, + "text": "Above|strong=\"H5921\"* the|strong=\"H5921\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"*, the|strong=\"H5921\"* priests|strong=\"H3548\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*, everyone across|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H5921\"* own|strong=\"H3548\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 29, + "text": "After|strong=\"H1004\"* them|strong=\"H2388\"*, Zadok|strong=\"H6659\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* his|strong=\"H8104\"* own|strong=\"H2388\"* house|strong=\"H1004\"*. After|strong=\"H1004\"* him|strong=\"H5048\"*, Shemaiah|strong=\"H8098\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"*, the|strong=\"H8104\"* keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* east|strong=\"H4217\"* gate|strong=\"H8179\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + }, + { + "verseNum": 30, + "text": "After|strong=\"H8145\"* him|strong=\"H5048\"*, Hananiah|strong=\"H2608\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, and|strong=\"H1121\"* Hanun|strong=\"H2586\"*, the|strong=\"H2388\"* sixth|strong=\"H8345\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zalaph|strong=\"H6764\"*, repaired|strong=\"H2388\"* another|strong=\"H8145\"* portion. After|strong=\"H8145\"* him|strong=\"H5048\"*, Meshullam|strong=\"H4918\"* the|strong=\"H2388\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"* across from|strong=\"H1121\"* his|strong=\"H2388\"* room|strong=\"H5393\"*." + }, + { + "verseNum": 31, + "text": "After|strong=\"H1004\"* him|strong=\"H5048\"*, Malchijah|strong=\"H4441\"*, one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* goldsmiths|strong=\"H6885\"* to|strong=\"H5704\"* the|strong=\"H5704\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H5704\"* temple|strong=\"H1004\"* servants|strong=\"H5411\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5704\"* merchants|strong=\"H7402\"*, made|strong=\"H2388\"* repairs|strong=\"H2388\"* opposite|strong=\"H5048\"* the|strong=\"H5704\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Hammiphkad and|strong=\"H1121\"* to|strong=\"H5704\"* the|strong=\"H5704\"* ascent|strong=\"H5944\"* of|strong=\"H1121\"* the|strong=\"H5704\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 32, + "text": "Between the|strong=\"H2388\"* ascent|strong=\"H5944\"* of|strong=\"H8179\"* the|strong=\"H2388\"* corner|strong=\"H6438\"* and|strong=\"H6629\"* the|strong=\"H2388\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*, the|strong=\"H2388\"* goldsmiths|strong=\"H6884\"* and|strong=\"H6629\"* the|strong=\"H2388\"* merchants|strong=\"H7402\"* made|strong=\"H2388\"* repairs|strong=\"H2388\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* Sanballat|strong=\"H5571\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* we|strong=\"H3068\"* were|strong=\"H1961\"* building the|strong=\"H8085\"* wall|strong=\"H2346\"*, he|strong=\"H3588\"* was|strong=\"H1961\"* angry|strong=\"H2734\"*, and|strong=\"H3389\"* was|strong=\"H1961\"* very|strong=\"H3966\"* indignant, and|strong=\"H3389\"* mocked the|strong=\"H8085\"* Jews." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* spoke before his|strong=\"H3605\"* brothers and|strong=\"H3389\"* the|strong=\"H3605\"* army|strong=\"H3389\"* of|strong=\"H3605\"* Samaria, and|strong=\"H3389\"* said, “What|strong=\"H6213\"* are|strong=\"H6213\"* these|strong=\"H6213\"* feeble Jews doing|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* fortify themselves|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* sacrifice|strong=\"H6213\"*? Will|strong=\"H3389\"* they|strong=\"H6213\"* finish in|strong=\"H6213\"* a|strong=\"H3068\"* day? Will|strong=\"H3389\"* they|strong=\"H6213\"* revive the|strong=\"H3605\"* stones out|strong=\"H6213\"* of|strong=\"H3605\"* the|strong=\"H3605\"* heaps of|strong=\"H3605\"* rubbish, since they|strong=\"H6213\"* are|strong=\"H6213\"* burned?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H5921\"* Tobiah the|strong=\"H6440\"* Ammonite was|strong=\"H6440\"* by|strong=\"H5921\"* him|strong=\"H6440\"*, and|strong=\"H3119\"* he|strong=\"H5921\"* said, “What|strong=\"H5921\"* they|strong=\"H5921\"* are|strong=\"H6440\"* building, if a|strong=\"H3068\"* fox climbed up|strong=\"H5975\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* would break down|strong=\"H6440\"* their|strong=\"H6440\"* stone wall.”" + }, + { + "verseNum": 4, + "text": "“Hear, our God|strong=\"H3808\"*, for|strong=\"H1129\"* we|strong=\"H3068\"* are|strong=\"H3782\"* despised. Turn back their|strong=\"H3808\"* reproach on|strong=\"H7235\"* their|strong=\"H3808\"* own head. Give|strong=\"H7235\"* them|strong=\"H1129\"* up|strong=\"H1129\"* for|strong=\"H1129\"* a|strong=\"H3068\"* plunder in|strong=\"H1129\"* a|strong=\"H3068\"* land of|strong=\"H2346\"* captivity." + }, + { + "verseNum": 5, + "text": "Don’t cover their|strong=\"H7200\"* iniquity. Don’t let|strong=\"H3808\"* their|strong=\"H7200\"* sin be|strong=\"H3808\"* blotted out|strong=\"H7200\"* from|strong=\"H5704\"* before|strong=\"H5704\"* you|strong=\"H5704\"*; for|strong=\"H5704\"* they|strong=\"H3808\"* have|strong=\"H3045\"* insulted the|strong=\"H7200\"* builders.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H1961\"* we|strong=\"H3068\"* built the|strong=\"H3605\"* wall; and|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall was|strong=\"H1961\"* joined together|strong=\"H5921\"* to|strong=\"H7725\"* half its|strong=\"H3605\"* height, for|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H3427\"* had|strong=\"H1961\"* a|strong=\"H3068\"* mind to|strong=\"H7725\"* work." + }, + { + "verseNum": 7, + "text": "But|strong=\"H5971\"* when|strong=\"H5975\"* Sanballat, Tobiah, the|strong=\"H5975\"* Arabians, the|strong=\"H5975\"* Ammonites, and|strong=\"H5971\"* the|strong=\"H5975\"* Ashdodites heard that|strong=\"H5971\"* the|strong=\"H5975\"* repairing of|strong=\"H2346\"* the|strong=\"H5975\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem went|strong=\"H5971\"* forward, and|strong=\"H5971\"* that|strong=\"H5971\"* the|strong=\"H5975\"* breaches began to|strong=\"H5971\"* be|strong=\"H5971\"* filled, they|strong=\"H5971\"* were|strong=\"H5971\"* very angry;" + }, + { + "verseNum": 8, + "text": "and|strong=\"H1121\"* they|strong=\"H5921\"* all|strong=\"H7200\"* conspired together|strong=\"H5921\"* to|strong=\"H5921\"* come|strong=\"H5971\"* and|strong=\"H1121\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem, and|strong=\"H1121\"* to|strong=\"H5921\"* cause|strong=\"H5971\"* confusion among|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* we|strong=\"H3068\"* made|strong=\"H3045\"* our|strong=\"H3605\"* prayer to|strong=\"H7725\"* our|strong=\"H3605\"* God, and|strong=\"H7725\"* set|strong=\"H7725\"* a|strong=\"H3068\"* watch|strong=\"H3045\"* against|strong=\"H8085\"* them|strong=\"H7725\"* day and|strong=\"H7725\"* night because|strong=\"H3588\"* of|strong=\"H2346\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 10, + "text": "Judah|strong=\"H3063\"* said, “The|strong=\"H3605\"* strength|strong=\"H2388\"* of|strong=\"H1004\"* the|strong=\"H3605\"* bearers of|strong=\"H1004\"* burdens is|strong=\"H1931\"* fading and|strong=\"H3063\"* there|strong=\"H1961\"* is|strong=\"H1931\"* much|strong=\"H6213\"* rubble, so|strong=\"H6213\"* that|strong=\"H3605\"* we|strong=\"H3068\"* are|strong=\"H3117\"* not|strong=\"H6213\"* able to|strong=\"H1961\"* build|strong=\"H6213\"* the|strong=\"H3605\"* wall.”" + }, + { + "verseNum": 11, + "text": "Our|strong=\"H6213\"* adversaries said, “They|strong=\"H6213\"* will|strong=\"H3027\"* not|strong=\"H6213\"* know or|strong=\"H3027\"* see, until we|strong=\"H3068\"* come|strong=\"H2346\"* in|strong=\"H6213\"* among them|strong=\"H3027\"* and|strong=\"H3027\"* kill them|strong=\"H3027\"*, and|strong=\"H3027\"* cause|strong=\"H6213\"* the|strong=\"H5375\"* work|strong=\"H4399\"* to|strong=\"H6213\"* cease.”" + }, + { + "verseNum": 12, + "text": "When|strong=\"H8628\"* the|strong=\"H5921\"* Jews who|strong=\"H1129\"* lived by|strong=\"H5921\"* them|strong=\"H5921\"* came, they|strong=\"H5921\"* said to|strong=\"H5921\"* us|strong=\"H5921\"* ten times from|strong=\"H5921\"* all|strong=\"H5921\"* places, “Wherever|strong=\"H5921\"* you|strong=\"H5921\"* turn, they|strong=\"H5921\"* will|strong=\"H2719\"* attack us|strong=\"H5921\"*.”" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* set guards in|strong=\"H5921\"* the|strong=\"H5921\"* lowest parts|strong=\"H6504\"* of|strong=\"H2346\"* the|strong=\"H5921\"* space|strong=\"H7350\"* behind|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* open places. I|strong=\"H5921\"* set the|strong=\"H5921\"* people|strong=\"H5971\"* by|strong=\"H5921\"* family groups with|strong=\"H5921\"* their|strong=\"H5921\"* swords, their|strong=\"H5921\"* spears, and|strong=\"H5971\"* their|strong=\"H5921\"* bows." + }, + { + "verseNum": 14, + "text": "I|strong=\"H8085\"* looked, and|strong=\"H6963\"* rose up|strong=\"H6908\"*, and|strong=\"H6963\"* said|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* nobles, to|strong=\"H8085\"* the|strong=\"H8085\"* rulers, and|strong=\"H6963\"* to|strong=\"H8085\"* the|strong=\"H8085\"* rest of|strong=\"H6963\"* the|strong=\"H8085\"* people|strong=\"H6908\"*, “Don’t be|strong=\"H6963\"* afraid of|strong=\"H6963\"* them|strong=\"H8085\"*! Remember the|strong=\"H8085\"* Lord, who is|strong=\"H4725\"* great and|strong=\"H6963\"* awesome, and|strong=\"H6963\"* fight|strong=\"H3898\"* for|strong=\"H4725\"* your|strong=\"H8085\"* brothers, your|strong=\"H8085\"* sons, your|strong=\"H8085\"* daughters, your|strong=\"H8085\"* wives, and|strong=\"H6963\"* your|strong=\"H8085\"* houses.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H3318\"* our|strong=\"H3318\"* enemies heard that|strong=\"H6213\"* it|strong=\"H6213\"* was|strong=\"H4399\"* known|strong=\"H3318\"* to|strong=\"H5704\"* us|strong=\"H6213\"*, and|strong=\"H2388\"* God had|strong=\"H4399\"* brought|strong=\"H3318\"* their|strong=\"H2388\"* counsel to|strong=\"H5704\"* nothing, all|strong=\"H5704\"* of|strong=\"H3318\"* us|strong=\"H6213\"* returned|strong=\"H5927\"* to|strong=\"H5704\"* the|strong=\"H6213\"* wall, everyone to|strong=\"H5704\"* his|strong=\"H6213\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 16, + "text": "From|strong=\"H3117\"* that|strong=\"H5971\"* time|strong=\"H6256\"* forth|strong=\"H6256\"*, half|strong=\"H8432\"* of|strong=\"H3117\"* my|strong=\"H1961\"* servants|strong=\"H5288\"* did|strong=\"H5971\"* the|strong=\"H8432\"* work|strong=\"H4399\"*, and|strong=\"H3117\"* half|strong=\"H8432\"* of|strong=\"H3117\"* them|strong=\"H8432\"* held|strong=\"H1961\"* the|strong=\"H8432\"* spears, the|strong=\"H8432\"* shields, the|strong=\"H8432\"* bows, and|strong=\"H3117\"* the|strong=\"H8432\"* coats of|strong=\"H3117\"* mail; and|strong=\"H3117\"* the|strong=\"H8432\"* rulers were|strong=\"H1961\"* behind all|strong=\"H3885\"* the|strong=\"H8432\"* house of|strong=\"H3117\"* Judah." + }, + { + "verseNum": 17, + "text": "Those who|strong=\"H5288\"* built the|strong=\"H6584\"* wall, and|strong=\"H5288\"* those who|strong=\"H5288\"* bore burdens loaded themselves; everyone with|strong=\"H4325\"* one of|strong=\"H4325\"* his|strong=\"H6584\"* hands did|strong=\"H5288\"* the|strong=\"H6584\"* work, and|strong=\"H5288\"* with|strong=\"H4325\"* the|strong=\"H6584\"* other held his|strong=\"H6584\"* weapon|strong=\"H7973\"*." + }, + { + "verseNum": 18, + "text": "Among the builders, everyone wore his sword at his side, and so built. He who sounded the trumpet was by me." + }, + { + "verseNum": 19, + "text": "I said to the nobles, and to the rulers and to the rest of the people, “The work is great and widely spread out, and we|strong=\"H3068\"* are separated on the wall, far from one another." + }, + { + "verseNum": 20, + "text": "Wherever you hear the sound of the trumpet, rally there to us. Our God will fight for us.”" + }, + { + "verseNum": 21, + "text": "So we|strong=\"H3068\"* did the work. Half of the people held the spears from the rising of the morning until the stars appeared." + }, + { + "verseNum": 22, + "text": "Likewise at the same time I said to the people, “Let everyone with his servant lodge within Jerusalem, that in the night they may be a|strong=\"H3068\"* guard to us, and may labor in the day.”" + }, + { + "verseNum": 23, + "text": "So neither I, nor my brothers, nor my servants, nor the men of the guard who followed me took off our clothes. Everyone took his weapon to the water." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* there|strong=\"H1961\"* arose|strong=\"H1419\"* a|strong=\"H3068\"* great|strong=\"H1419\"* cry|strong=\"H6818\"* of|strong=\"H5971\"* the|strong=\"H1961\"* people|strong=\"H5971\"* and|strong=\"H1419\"* of|strong=\"H5971\"* their|strong=\"H1961\"* wives against their|strong=\"H1961\"* brothers the|strong=\"H1961\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H1121\"* there|strong=\"H3426\"* were|strong=\"H1121\"* some|strong=\"H7227\"* who|strong=\"H1121\"* said, “We, our|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H3947\"* daughters|strong=\"H1323\"*, are|strong=\"H1121\"* many|strong=\"H7227\"*. Let us|strong=\"H2421\"* get|strong=\"H3947\"* grain|strong=\"H1715\"*, that|strong=\"H1121\"* we|strong=\"H3068\"* may|strong=\"H1121\"* eat and|strong=\"H1121\"* live|strong=\"H2421\"*.”" + }, + { + "verseNum": 3, + "text": "There|strong=\"H3426\"* were|strong=\"H3426\"* also some who|strong=\"H3426\"* said, “We are|strong=\"H3426\"* mortgaging|strong=\"H6148\"* our|strong=\"H3947\"* fields|strong=\"H7704\"*, our|strong=\"H3947\"* vineyards|strong=\"H3754\"*, and|strong=\"H1004\"* our|strong=\"H3947\"* houses|strong=\"H1004\"*. Let us|strong=\"H7704\"* get|strong=\"H3947\"* grain|strong=\"H1715\"*, because of|strong=\"H1004\"* the|strong=\"H3947\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 4, + "text": "There|strong=\"H3426\"* were|strong=\"H3426\"* also|strong=\"H4428\"* some who|strong=\"H4428\"* said, “We have|strong=\"H3426\"* borrowed|strong=\"H3867\"* money|strong=\"H3701\"* for|strong=\"H4428\"* the|strong=\"H3426\"* king|strong=\"H4428\"*’s tribute|strong=\"H4060\"* using our|strong=\"H3426\"* fields|strong=\"H7704\"* and|strong=\"H3701\"* our|strong=\"H3426\"* vineyards|strong=\"H3754\"* as|strong=\"H4428\"* collateral." + }, + { + "verseNum": 5, + "text": "Yet|strong=\"H6258\"* now|strong=\"H6258\"* our|strong=\"H5650\"* flesh|strong=\"H1320\"* is|strong=\"H3426\"* as|strong=\"H1121\"* the|strong=\"H3027\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* our|strong=\"H5650\"* brothers|strong=\"H1121\"*, our|strong=\"H5650\"* children|strong=\"H1121\"* as|strong=\"H1121\"* their|strong=\"H6258\"* children|strong=\"H1121\"*. Behold|strong=\"H2009\"*,+ 5:5 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* we|strong=\"H3068\"* bring|strong=\"H1323\"* our|strong=\"H5650\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* our|strong=\"H5650\"* daughters|strong=\"H1323\"* into|strong=\"H3027\"* bondage|strong=\"H5650\"* to|strong=\"H3027\"* be|strong=\"H3426\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* some|strong=\"H3027\"* of|strong=\"H1121\"* our|strong=\"H5650\"* daughters|strong=\"H1323\"* have|strong=\"H3426\"* been|strong=\"H3426\"* brought|strong=\"H3533\"* into|strong=\"H3027\"* bondage|strong=\"H5650\"*. It|strong=\"H3533\"* is|strong=\"H3426\"* also|strong=\"H3027\"* not|strong=\"H1121\"* in|strong=\"H1320\"* our|strong=\"H5650\"* power|strong=\"H3027\"* to|strong=\"H3027\"* help|strong=\"H1323\"* it|strong=\"H3533\"*, because|strong=\"H3027\"* other men|strong=\"H1121\"* have|strong=\"H3426\"* our|strong=\"H5650\"* fields|strong=\"H7704\"* and|strong=\"H1121\"* our|strong=\"H5650\"* vineyards|strong=\"H3754\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"H1697\"* was|strong=\"H1697\"* very|strong=\"H3966\"* angry|strong=\"H2734\"* when|strong=\"H8085\"* I|strong=\"H1697\"* heard|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H2201\"* and|strong=\"H8085\"* these|strong=\"H8085\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H5414\"* I|strong=\"H5414\"* consulted|strong=\"H4427\"* with|strong=\"H5921\"* myself|strong=\"H3820\"*, and|strong=\"H1419\"* contended|strong=\"H7378\"* with|strong=\"H5921\"* the|strong=\"H5921\"* nobles|strong=\"H2715\"* and|strong=\"H1419\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, and|strong=\"H1419\"* said to|strong=\"H5921\"* them|strong=\"H5414\"*, “You|strong=\"H5414\"* exact|strong=\"H5383\"* usury|strong=\"H4855\"*, everyone of|strong=\"H5921\"* his|strong=\"H5414\"* brother.” I|strong=\"H5414\"* held|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6952\"* against|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H1697\"* them|strong=\"H4672\"*, “We|strong=\"H1697\"*, after|strong=\"H1767\"* our|strong=\"H7069\"* ability|strong=\"H1767\"*, have|strong=\"H1571\"* redeemed|strong=\"H7069\"* our|strong=\"H7069\"* brothers the|strong=\"H1697\"* Jews|strong=\"H3064\"* that|strong=\"H1471\"* were|strong=\"H1697\"* sold|strong=\"H4376\"* to|strong=\"H1697\"* the|strong=\"H1697\"* nations|strong=\"H1471\"*; and|strong=\"H1471\"* would|strong=\"H1697\"* you|strong=\"H3808\"* even|strong=\"H1571\"* sell|strong=\"H4376\"* your|strong=\"H3808\"* brothers, and|strong=\"H1471\"* should they|strong=\"H3808\"* be|strong=\"H3808\"* sold|strong=\"H4376\"* to|strong=\"H1697\"* us|strong=\"H4672\"*?” Then|strong=\"H1571\"* they|strong=\"H3808\"* held their|strong=\"H3808\"* peace|strong=\"H2790\"*, and|strong=\"H1471\"* found|strong=\"H4672\"* not|strong=\"H3808\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1697\"* say|strong=\"H1697\"*." + }, + { + "verseNum": 9, + "text": "Also|strong=\"H6213\"* I|strong=\"H1697\"* said|strong=\"H1697\"*, “The|strong=\"H6213\"* thing|strong=\"H1697\"* that|strong=\"H1471\"* you|strong=\"H6213\"* do|strong=\"H6213\"* is|strong=\"H1697\"* not|strong=\"H3808\"* good|strong=\"H2896\"*. Shouldn’t you|strong=\"H6213\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* the|strong=\"H6213\"* fear|strong=\"H3374\"* of|strong=\"H1697\"* our|strong=\"H6213\"* God|strong=\"H3808\"* because|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6213\"* reproach|strong=\"H2781\"* of|strong=\"H1697\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, our|strong=\"H6213\"* enemies?" + }, + { + "verseNum": 10, + "text": "I|strong=\"H2088\"* likewise|strong=\"H1571\"*, my|strong=\"H5800\"* brothers and|strong=\"H3701\"* my|strong=\"H5800\"* servants|strong=\"H5288\"*, lend|strong=\"H5383\"* them|strong=\"H5800\"* money|strong=\"H3701\"* and|strong=\"H3701\"* grain|strong=\"H1715\"*. Please|strong=\"H4994\"* let|strong=\"H4994\"* us|strong=\"H4994\"* stop this|strong=\"H2088\"* usury|strong=\"H4855\"*." + }, + { + "verseNum": 11, + "text": "Please|strong=\"H4994\"* restore|strong=\"H7725\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, even today|strong=\"H3117\"*, their|strong=\"H7725\"* fields|strong=\"H7704\"*, their|strong=\"H7725\"* vineyards|strong=\"H3754\"*, their|strong=\"H7725\"* olive|strong=\"H2132\"* groves|strong=\"H2132\"*, and|strong=\"H3967\"* their|strong=\"H7725\"* houses|strong=\"H1004\"*, also|strong=\"H3117\"* the|strong=\"H3117\"* hundredth|strong=\"H3967\"* part of|strong=\"H1004\"* the|strong=\"H3117\"* money|strong=\"H3701\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* the|strong=\"H3117\"* grain|strong=\"H1715\"*, the|strong=\"H3117\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3967\"* the|strong=\"H3117\"* oil|strong=\"H3323\"*, that|strong=\"H3117\"* you|strong=\"H3117\"* are|strong=\"H3117\"* charging them|strong=\"H7725\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* they|strong=\"H1992\"* said|strong=\"H1697\"*, “We|strong=\"H6213\"* will|strong=\"H1697\"* restore|strong=\"H7725\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* will|strong=\"H1697\"* require|strong=\"H1245\"* nothing|strong=\"H3808\"* of|strong=\"H1697\"* them|strong=\"H1992\"*. We|strong=\"H6213\"* will|strong=\"H1697\"* do|strong=\"H6213\"* so|strong=\"H3651\"*, even|strong=\"H3651\"* as|strong=\"H1697\"* you|strong=\"H7725\"* say|strong=\"H7725\"*.”" + }, + { + "verseNum": 13, + "text": "Also|strong=\"H1571\"* I|strong=\"H1697\"* shook|strong=\"H5287\"* out|strong=\"H6213\"* my|strong=\"H3605\"* lap|strong=\"H2684\"*, and|strong=\"H6965\"* said|strong=\"H1697\"*, “So|strong=\"H6213\"* may|strong=\"H1961\"* God|strong=\"H3068\"* shake|strong=\"H5287\"* out|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H3605\"* from|strong=\"H6965\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H6965\"* from|strong=\"H6965\"* his|strong=\"H3605\"* labor|strong=\"H3018\"*, that|strong=\"H5971\"* doesn’t perform|strong=\"H6213\"* this|strong=\"H2088\"* promise|strong=\"H1697\"*; even|strong=\"H1571\"* may|strong=\"H1961\"* he|strong=\"H6213\"* be|strong=\"H1961\"* shaken|strong=\"H5287\"* out|strong=\"H6213\"* and|strong=\"H6965\"* emptied|strong=\"H7386\"* like|strong=\"H1961\"* this|strong=\"H2088\"*.”" + }, + { + "verseNum": 14, + "text": "Moreover|strong=\"H1571\"* from|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* appointed|strong=\"H6680\"* to|strong=\"H5704\"* be|strong=\"H1961\"* their|strong=\"H1961\"* governor|strong=\"H6346\"* in|strong=\"H8141\"* the|strong=\"H3117\"* land of|strong=\"H4428\"* Judah|strong=\"H3063\"*, from|strong=\"H3117\"* the|strong=\"H3117\"* twentieth|strong=\"H6242\"* year|strong=\"H8141\"* even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H3117\"* thirty-second|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes the|strong=\"H3117\"* king|strong=\"H4428\"*, that|strong=\"H3117\"* is|strong=\"H3117\"*, twelve|strong=\"H8147\"* years|strong=\"H8141\"*, I|strong=\"H3117\"* and|strong=\"H3063\"* my|strong=\"H1961\"* brothers have|strong=\"H1961\"* not|strong=\"H3808\"* eaten the|strong=\"H3117\"* bread|strong=\"H3899\"* of|strong=\"H4428\"* the|strong=\"H3117\"* governor|strong=\"H6346\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* the|strong=\"H6440\"* former|strong=\"H7223\"* governors|strong=\"H6346\"* who|strong=\"H5971\"* were|strong=\"H5971\"* before|strong=\"H6440\"* me|strong=\"H6440\"* were|strong=\"H5971\"* supported|strong=\"H3651\"* by|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H3701\"* took|strong=\"H3947\"* bread|strong=\"H3899\"* and|strong=\"H3701\"* wine|strong=\"H3196\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, plus forty shekels|strong=\"H8255\"*+ 5:15 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H6440\"* silver|strong=\"H3701\"*; yes|strong=\"H1571\"*, even|strong=\"H1571\"* their|strong=\"H3947\"* servants|strong=\"H5288\"* ruled over|strong=\"H5921\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* I|strong=\"H5921\"* didn’t do|strong=\"H6213\"* so|strong=\"H3651\"*, because|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* fear|strong=\"H3374\"* of|strong=\"H6440\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 16, + "text": "Yes|strong=\"H1571\"*, I|strong=\"H5921\"* also|strong=\"H1571\"* continued|strong=\"H2388\"* in|strong=\"H5921\"* the|strong=\"H3605\"* work|strong=\"H4399\"* of|strong=\"H7704\"* this|strong=\"H2063\"* wall|strong=\"H2346\"*. We|strong=\"H8033\"* didn’t buy|strong=\"H7069\"* any|strong=\"H3605\"* land|strong=\"H7704\"*. All|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5288\"* were|strong=\"H5288\"* gathered|strong=\"H6908\"* there|strong=\"H8033\"* to|strong=\"H5921\"* the|strong=\"H3605\"* work|strong=\"H4399\"*." + }, + { + "verseNum": 17, + "text": "Moreover there|strong=\"H4480\"* were|strong=\"H1471\"* at|strong=\"H5921\"* my|strong=\"H5921\"* table|strong=\"H7979\"*, of|strong=\"H4480\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* and|strong=\"H3967\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, one|strong=\"H4480\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"* men, in|strong=\"H5921\"* addition|strong=\"H5921\"* to|strong=\"H5921\"* those|strong=\"H4480\"* who|strong=\"H1471\"* came to|strong=\"H5921\"* us|strong=\"H5921\"* from|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* were|strong=\"H1471\"* around|strong=\"H5439\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Now|strong=\"H1961\"* that|strong=\"H3588\"* which|strong=\"H5971\"* was|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H3588\"* one|strong=\"H2088\"* day|strong=\"H3117\"* was|strong=\"H1961\"* one|strong=\"H2088\"* ox|strong=\"H7794\"* and|strong=\"H3117\"* six|strong=\"H8337\"* choice|strong=\"H1305\"* sheep|strong=\"H6629\"*. Also|strong=\"H6213\"* fowls|strong=\"H6833\"* were|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, and|strong=\"H3117\"* once|strong=\"H3117\"* in|strong=\"H5921\"* ten|strong=\"H6235\"* days|strong=\"H3117\"* a|strong=\"H3068\"* store|strong=\"H7235\"* of|strong=\"H3117\"* all|strong=\"H3605\"* sorts of|strong=\"H3117\"* wine|strong=\"H3196\"*. Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"*, I|strong=\"H3588\"* didn’t demand|strong=\"H1245\"* the|strong=\"H3605\"* governor|strong=\"H6346\"*’s pay|strong=\"H7235\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* bondage|strong=\"H5656\"* was|strong=\"H1961\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 19, + "text": "Remember|strong=\"H2142\"* me|strong=\"H5921\"*, my|strong=\"H3605\"* God, for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H5971\"* I|strong=\"H5921\"* have|strong=\"H5971\"* done|strong=\"H6213\"* for|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H1961\"* reported|strong=\"H8085\"* to|strong=\"H5704\"* Sanballat|strong=\"H5571\"*, Tobiah|strong=\"H2900\"*, Geshem|strong=\"H1654\"* the|strong=\"H8085\"* Arabian|strong=\"H6163\"*, and|strong=\"H8085\"* to|strong=\"H5704\"* the|strong=\"H8085\"* rest|strong=\"H3499\"* of|strong=\"H8179\"* our|strong=\"H8085\"* enemies that|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H1961\"* built|strong=\"H1129\"* the|strong=\"H8085\"* wall|strong=\"H2346\"*, and|strong=\"H8085\"* that|strong=\"H3588\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* breach|strong=\"H6556\"* left|strong=\"H3498\"* in|strong=\"H8085\"* it|strong=\"H1931\"* (though|strong=\"H3588\"* even|strong=\"H1571\"* to|strong=\"H5704\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H8085\"* doors|strong=\"H1817\"* in|strong=\"H8085\"* the|strong=\"H8085\"* gates|strong=\"H8179\"*)," + }, + { + "verseNum": 2, + "text": "Sanballat|strong=\"H5571\"* and|strong=\"H7971\"* Geshem|strong=\"H1654\"* sent|strong=\"H7971\"* to|strong=\"H3212\"* me|strong=\"H7971\"*, saying, “Come|strong=\"H3212\"*! Let|strong=\"H7971\"*’s meet|strong=\"H3259\"* together|strong=\"H3162\"* in|strong=\"H6213\"* the|strong=\"H6213\"* villages|strong=\"H3715\"* in|strong=\"H6213\"* the|strong=\"H6213\"* plain|strong=\"H1237\"* of|strong=\"H1237\"* Ono.” But|strong=\"H1992\"* they|strong=\"H1992\"* intended|strong=\"H2803\"* to|strong=\"H3212\"* harm|strong=\"H7451\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3381\"* them|strong=\"H5921\"*, saying, “I|strong=\"H5921\"* am doing|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* work|strong=\"H4399\"*, so|strong=\"H6213\"* that|strong=\"H4397\"* I|strong=\"H5921\"* can|strong=\"H3201\"*’t come|strong=\"H3381\"* down|strong=\"H3381\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H5921\"* work|strong=\"H4399\"* cease|strong=\"H7673\"* while|strong=\"H5921\"* I|strong=\"H5921\"* leave|strong=\"H7503\"* it|strong=\"H5921\"* and|strong=\"H7971\"* come|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 4, + "text": "They|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H7725\"* me|strong=\"H7971\"* four times|strong=\"H6471\"* like|strong=\"H1697\"* this|strong=\"H2088\"*; and|strong=\"H7971\"* I|strong=\"H1697\"* answered|strong=\"H7725\"* them|strong=\"H7725\"* the|strong=\"H7725\"* same|strong=\"H2088\"* way|strong=\"H1697\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* Sanballat|strong=\"H5571\"* sent|strong=\"H7971\"* his|strong=\"H7971\"* servant|strong=\"H5288\"* to|strong=\"H7971\"* me|strong=\"H7971\"* the|strong=\"H7971\"* same|strong=\"H2088\"* way|strong=\"H1697\"* the|strong=\"H7971\"* fifth|strong=\"H2549\"* time|strong=\"H6471\"* with|strong=\"H1697\"* an|strong=\"H7971\"* open|strong=\"H6605\"* letter in|strong=\"H1697\"* his|strong=\"H7971\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 6, + "text": "in|strong=\"H5921\"* which|strong=\"H1471\"* was|strong=\"H1697\"* written|strong=\"H3789\"*, “It|strong=\"H5921\"* is|strong=\"H1697\"* reported|strong=\"H8085\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H4428\"* Gashmu|strong=\"H1654\"* says|strong=\"H1697\"* it|strong=\"H5921\"*, that|strong=\"H8085\"* you|strong=\"H5921\"* and|strong=\"H4428\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* intend|strong=\"H2803\"* to|strong=\"H5921\"* rebel|strong=\"H4775\"*. Because|strong=\"H5921\"* of|strong=\"H4428\"* that|strong=\"H8085\"*, you|strong=\"H5921\"* are|strong=\"H1471\"* building|strong=\"H1129\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*. You|strong=\"H5921\"* would|strong=\"H1697\"* be|strong=\"H1697\"* their|strong=\"H8085\"* king|strong=\"H4428\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* these|strong=\"H8085\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* have|strong=\"H1571\"* also|strong=\"H1571\"* appointed|strong=\"H5975\"* prophets|strong=\"H5030\"* to|strong=\"H3212\"* proclaim|strong=\"H7121\"* of|strong=\"H4428\"* you|strong=\"H5921\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H1697\"*, ‘There|strong=\"H5975\"* is|strong=\"H1571\"* a|strong=\"H3068\"* king|strong=\"H4428\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*!’ Now|strong=\"H6258\"* it|strong=\"H7121\"* will|strong=\"H4428\"* be|strong=\"H1697\"* reported|strong=\"H8085\"* to|strong=\"H3212\"* the|strong=\"H5921\"* king|strong=\"H4428\"* according|strong=\"H5921\"* to|strong=\"H3212\"* these|strong=\"H7121\"* words|strong=\"H1697\"*. Come|strong=\"H3212\"* now|strong=\"H6258\"* therefore|strong=\"H5921\"*, and|strong=\"H3063\"* let|strong=\"H6258\"*’s take|strong=\"H5975\"* counsel|strong=\"H3289\"* together|strong=\"H3162\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* him|strong=\"H7971\"*, saying|strong=\"H1697\"*, “There|strong=\"H1961\"* are|strong=\"H1697\"* no|strong=\"H3808\"* such|strong=\"H1697\"* things|strong=\"H1697\"* done|strong=\"H1961\"* as|strong=\"H1697\"* you|strong=\"H3588\"* say|strong=\"H1697\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* imagine them|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H1697\"* your|strong=\"H3588\"* own|strong=\"H1961\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* all|strong=\"H3605\"* would|strong=\"H6213\"* have|strong=\"H3027\"* made|strong=\"H6213\"* us|strong=\"H6213\"* afraid|strong=\"H3372\"*, saying, “Their|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3808\"* weakened|strong=\"H7503\"* from|strong=\"H4480\"* the|strong=\"H3605\"* work|strong=\"H4399\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* not|strong=\"H3808\"* be|strong=\"H3808\"* done|strong=\"H6213\"*.” But|strong=\"H3588\"* now|strong=\"H6258\"*, strengthen|strong=\"H2388\"* my|strong=\"H3605\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* went|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Delaiah|strong=\"H1806\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mehetabel|strong=\"H4105\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* shut|strong=\"H5462\"* in|strong=\"H1004\"* at|strong=\"H1004\"* his|strong=\"H3588\"* home|strong=\"H1004\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* said, “Let us|strong=\"H3588\"* meet|strong=\"H3259\"* together|strong=\"H3259\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"*, within|strong=\"H8432\"* the|strong=\"H3588\"* temple|strong=\"H1004\"*, and|strong=\"H1121\"* let’s shut|strong=\"H5462\"* the|strong=\"H3588\"* doors|strong=\"H1817\"* of|strong=\"H1121\"* the|strong=\"H3588\"* temple|strong=\"H1004\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H1121\"* come to|strong=\"H1121\"* kill|strong=\"H2026\"* you|strong=\"H3588\"*. Yes|strong=\"H3588\"*, in|strong=\"H1004\"* the|strong=\"H3588\"* night|strong=\"H3915\"* they|strong=\"H3588\"* will|strong=\"H1121\"* come to|strong=\"H1121\"* kill|strong=\"H2026\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* said, “Should|strong=\"H4310\"* a|strong=\"H3068\"* man like|strong=\"H3644\"* me|strong=\"H3808\"* flee|strong=\"H1272\"*? Who|strong=\"H4310\"* is|strong=\"H4310\"* there that|strong=\"H3808\"*, being such|strong=\"H3644\"* as|strong=\"H3644\"* I|strong=\"H3808\"*, would|strong=\"H4310\"* go into|strong=\"H1272\"* the|strong=\"H3808\"* temple|strong=\"H1964\"* to|strong=\"H1272\"* save his|strong=\"H3808\"* life|strong=\"H2425\"*? I|strong=\"H3808\"* will|strong=\"H4310\"* not|strong=\"H3808\"* go in|strong=\"H3808\"*.”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* discerned|strong=\"H5234\"*, and|strong=\"H7971\"* behold|strong=\"H2009\"*, God|strong=\"H3808\"* had|strong=\"H3588\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* him|strong=\"H5921\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* pronounced|strong=\"H1696\"* this|strong=\"H1696\"* prophecy|strong=\"H5016\"* against|strong=\"H5921\"* me|strong=\"H7971\"*. Tobiah|strong=\"H2900\"* and|strong=\"H7971\"* Sanballat|strong=\"H5571\"* had|strong=\"H3588\"* hired|strong=\"H7936\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* was|strong=\"H8034\"* hired|strong=\"H7936\"* so|strong=\"H3651\"* that|strong=\"H1931\"* I|strong=\"H3651\"* would|strong=\"H6213\"* be|strong=\"H1961\"* afraid|strong=\"H3372\"*, do|strong=\"H6213\"* so|strong=\"H3651\"*, and|strong=\"H6213\"* sin|strong=\"H2398\"*, and|strong=\"H6213\"* that|strong=\"H1931\"* they|strong=\"H1992\"* might|strong=\"H4616\"* have|strong=\"H1961\"* material for|strong=\"H6213\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* report|strong=\"H8034\"*, that|strong=\"H1931\"* they|strong=\"H1992\"* might|strong=\"H4616\"* reproach|strong=\"H2778\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "“Remember|strong=\"H2142\"*, my|strong=\"H1961\"* God, Tobiah|strong=\"H2900\"* and|strong=\"H3372\"* Sanballat|strong=\"H5571\"* according to|strong=\"H1961\"* these|strong=\"H2142\"* their|strong=\"H2142\"* works|strong=\"H4639\"*, and|strong=\"H3372\"* also|strong=\"H1571\"* the|strong=\"H2142\"* prophetess|strong=\"H5031\"* Noadiah|strong=\"H5129\"* and|strong=\"H3372\"* the|strong=\"H2142\"* rest|strong=\"H3499\"* of|strong=\"H4639\"* the|strong=\"H2142\"* prophets|strong=\"H5030\"* that|strong=\"H5030\"* would|strong=\"H4639\"* have|strong=\"H1961\"* put|strong=\"H2142\"* me|strong=\"H3372\"* in|strong=\"H1961\"* fear|strong=\"H3372\"*.”" + }, + { + "verseNum": 15, + "text": "So the|strong=\"H3117\"* wall|strong=\"H2346\"* was|strong=\"H3117\"* finished|strong=\"H7999\"* in|strong=\"H3117\"* the|strong=\"H3117\"* twenty-fifth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Elul, in|strong=\"H3117\"* fifty-two|strong=\"H2572\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* all|strong=\"H3605\"* our|strong=\"H3605\"* enemies heard|strong=\"H8085\"* of|strong=\"H5869\"* it|strong=\"H3588\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* were|strong=\"H1961\"* around|strong=\"H5439\"* us|strong=\"H6213\"* were|strong=\"H1961\"* afraid, and|strong=\"H5869\"* they|strong=\"H3588\"* lost|strong=\"H5307\"* their|strong=\"H3605\"* confidence|strong=\"H5869\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2063\"* work|strong=\"H4399\"* was|strong=\"H1961\"* done|strong=\"H6213\"* by|strong=\"H1961\"* our|strong=\"H3605\"* God." + }, + { + "verseNum": 17, + "text": "Moreover|strong=\"H1571\"* in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H5921\"* nobles|strong=\"H2715\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* sent|strong=\"H1980\"* many|strong=\"H7235\"* letters to|strong=\"H1980\"* Tobiah|strong=\"H2900\"*, and|strong=\"H1980\"* Tobiah|strong=\"H2900\"*’s letters came|strong=\"H1980\"* to|strong=\"H1980\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* there were|strong=\"H1121\"* many|strong=\"H7227\"* in|strong=\"H7227\"* Judah|strong=\"H3063\"* sworn|strong=\"H7621\"* to|strong=\"H1121\"* him|strong=\"H3947\"* because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H3588\"* son-in-law|strong=\"H2860\"* of|strong=\"H1121\"* Shecaniah|strong=\"H7935\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Arah; and|strong=\"H1121\"* his|strong=\"H3947\"* son|strong=\"H1121\"* Jehohanan|strong=\"H3076\"* had|strong=\"H3063\"* taken|strong=\"H3947\"* the|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"* as|strong=\"H3588\"* wife." + }, + { + "verseNum": 19, + "text": "Also|strong=\"H1571\"* they|strong=\"H1697\"* spoke|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H7971\"* good|strong=\"H2896\"* deeds|strong=\"H1697\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H7971\"* reported|strong=\"H3318\"* my|strong=\"H7971\"* words|strong=\"H1697\"* to|strong=\"H3318\"* him|strong=\"H6440\"*. Tobiah|strong=\"H2900\"* sent|strong=\"H7971\"* letters to|strong=\"H3318\"* put|strong=\"H7971\"* me|strong=\"H6440\"* in|strong=\"H6440\"* fear|strong=\"H3372\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H1129\"* wall|strong=\"H2346\"* was|strong=\"H1961\"* built|strong=\"H1129\"* and|strong=\"H5975\"* I|strong=\"H7891\"* had|strong=\"H1961\"* set|strong=\"H5975\"* up|strong=\"H5975\"* the|strong=\"H1129\"* doors|strong=\"H1817\"*, and|strong=\"H5975\"* the|strong=\"H1129\"* gatekeepers|strong=\"H7778\"* and|strong=\"H5975\"* the|strong=\"H1129\"* singers|strong=\"H7891\"* and|strong=\"H5975\"* the|strong=\"H1129\"* Levites|strong=\"H3881\"* were|strong=\"H1961\"* appointed|strong=\"H5975\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* put|strong=\"H6680\"* my|strong=\"H5921\"* brother Hanani|strong=\"H2607\"*, and|strong=\"H3389\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* governor|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* fortress|strong=\"H1002\"*, in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H8269\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* a|strong=\"H3068\"* faithful man and|strong=\"H3389\"* feared|strong=\"H3372\"* God above|strong=\"H5921\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5704\"* said to|strong=\"H5704\"* them|strong=\"H1992\"*, “Don’t let|strong=\"H3808\"* the|strong=\"H5704\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* be|strong=\"H3808\"* opened|strong=\"H6605\"* until|strong=\"H5704\"* the|strong=\"H5704\"* sun|strong=\"H8121\"* is|strong=\"H1004\"* hot|strong=\"H2527\"*; and|strong=\"H1004\"* while|strong=\"H5704\"* they|strong=\"H1992\"* stand|strong=\"H5975\"* guard|strong=\"H4929\"*, let|strong=\"H3808\"* them|strong=\"H1992\"* shut|strong=\"H1479\"* the|strong=\"H5704\"* doors|strong=\"H1817\"*, and|strong=\"H1004\"* you|strong=\"H5704\"* bar them|strong=\"H1992\"*; and|strong=\"H1004\"* appoint|strong=\"H5975\"* watches|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H5704\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, everyone in|strong=\"H3427\"* his|strong=\"H6605\"* watch|strong=\"H4931\"*, with|strong=\"H1004\"* everyone near|strong=\"H5048\"* his|strong=\"H6605\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1419\"* the|strong=\"H8432\"* city|strong=\"H5892\"* was|strong=\"H5892\"* wide|strong=\"H7342\"* and|strong=\"H1419\"* large|strong=\"H1419\"*; but|strong=\"H5971\"* the|strong=\"H8432\"* people|strong=\"H5971\"* were|strong=\"H5971\"* few|strong=\"H4592\"* therein|strong=\"H8432\"*, and|strong=\"H1419\"* the|strong=\"H8432\"* houses|strong=\"H1004\"* were|strong=\"H5971\"* not|strong=\"H5971\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5414\"* God|strong=\"H5414\"* put|strong=\"H5414\"* into|strong=\"H5927\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5927\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H5414\"* nobles|strong=\"H2715\"*, and|strong=\"H5971\"* the|strong=\"H5414\"* rulers|strong=\"H5461\"*, and|strong=\"H5971\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H5971\"* might|strong=\"H5971\"* be|strong=\"H3820\"* listed|strong=\"H3187\"* by|strong=\"H3187\"* genealogy|strong=\"H3187\"*. I|strong=\"H5414\"* found|strong=\"H4672\"* the|strong=\"H5414\"* book|strong=\"H5612\"* of|strong=\"H5971\"* the|strong=\"H5414\"* genealogy|strong=\"H3187\"* of|strong=\"H5971\"* those who|strong=\"H5971\"* came|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H6908\"* the|strong=\"H5414\"* first|strong=\"H7223\"*, and|strong=\"H5971\"* I|strong=\"H5414\"* found|strong=\"H4672\"* this|strong=\"H5414\"* written|strong=\"H3789\"* in|strong=\"H3789\"* it|strong=\"H5414\"*:" + }, + { + "verseNum": 6, + "text": "These|strong=\"H4428\"* are|strong=\"H1121\"* the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H7725\"* province|strong=\"H4082\"* who|strong=\"H1121\"* went|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H7725\"* of|strong=\"H1121\"* the|strong=\"H7725\"* captivity|strong=\"H7628\"* of|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* had|strong=\"H4428\"* been|strong=\"H5927\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, whom Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H7725\"*, and|strong=\"H1121\"* who|strong=\"H1121\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* to|strong=\"H7725\"* Judah|strong=\"H3063\"*, everyone to|strong=\"H7725\"* his|strong=\"H7725\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "who|strong=\"H5971\"* came|strong=\"H3478\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"*, Jeshua|strong=\"H3442\"*, Nehemiah|strong=\"H5166\"*, Azariah|strong=\"H5838\"*, Raamiah|strong=\"H7485\"*, Nahamani|strong=\"H5167\"*, Mordecai|strong=\"H4782\"*, Bilshan|strong=\"H1114\"*, Mispereth|strong=\"H4559\"*, Bigvai, Nehum|strong=\"H5149\"*, and|strong=\"H3478\"* Baanah|strong=\"H1196\"*." + }, + { + "verseNum": 8, + "text": "The children of Parosh: two thousand one hundred seventy-two." + }, + { + "verseNum": 9, + "text": "The children of Shephatiah: three hundred seventy-two." + }, + { + "verseNum": 10, + "text": "The children of Arah: six hundred fifty-two." + }, + { + "verseNum": 11, + "text": "The children of Pahathmoab, of the children of Jeshua and Joab: two thousand eight hundred eighteen." + }, + { + "verseNum": 12, + "text": "The children of Elam: one thousand two hundred fifty-four." + }, + { + "verseNum": 13, + "text": "The children of Zattu: eight hundred forty-five." + }, + { + "verseNum": 14, + "text": "The children of Zaccai: seven hundred sixty." + }, + { + "verseNum": 15, + "text": "The children of Binnui: six hundred forty-eight." + }, + { + "verseNum": 16, + "text": "The children of Bebai: six hundred twenty-eight." + }, + { + "verseNum": 17, + "text": "The children of Azgad: two thousand three hundred twenty-two." + }, + { + "verseNum": 18, + "text": "The children of Adonikam: six hundred sixty-seven." + }, + { + "verseNum": 19, + "text": "The children of Bigvai: two thousand sixty-seven." + }, + { + "verseNum": 20, + "text": "The children of Adin: six hundred fifty-five." + }, + { + "verseNum": 21, + "text": "The children of Ater: of Hezekiah, ninety-eight." + }, + { + "verseNum": 22, + "text": "The children of Hashum: three hundred twenty-eight." + }, + { + "verseNum": 23, + "text": "The children of Bezai: three hundred twenty-four." + }, + { + "verseNum": 24, + "text": "The children of Hariph: one hundred twelve." + }, + { + "verseNum": 25, + "text": "The children of Gibeon: ninety-five." + }, + { + "verseNum": 26, + "text": "The men of Bethlehem and Netophah: one hundred eighty-eight." + }, + { + "verseNum": 27, + "text": "The men of Anathoth: one hundred twenty-eight." + }, + { + "verseNum": 28, + "text": "The men of Beth Azmaveth: forty-two." + }, + { + "verseNum": 29, + "text": "The men of Kiriath Jearim, Chephirah, and Beeroth: seven hundred forty-three." + }, + { + "verseNum": 30, + "text": "The men of Ramah and Geba: six hundred twenty-one." + }, + { + "verseNum": 31, + "text": "The men of Michmas: one hundred twenty-two." + }, + { + "verseNum": 32, + "text": "The men of Bethel and Ai: one hundred twenty-three." + }, + { + "verseNum": 33, + "text": "The men of the other Nebo: fifty-two." + }, + { + "verseNum": 34, + "text": "The children of the other Elam: one thousand two hundred fifty-four." + }, + { + "verseNum": 35, + "text": "The children of Harim: three hundred twenty." + }, + { + "verseNum": 36, + "text": "The children of Jericho: three hundred forty-five." + }, + { + "verseNum": 37, + "text": "The children of Lod, Hadid, and Ono: seven hundred twenty-one." + }, + { + "verseNum": 38, + "text": "The children of Senaah: three thousand nine hundred thirty." + }, + { + "verseNum": 39, + "text": "The priests: The children of Jedaiah, of the house of Jeshua: nine hundred seventy-three." + }, + { + "verseNum": 40, + "text": "The children of Immer: one thousand fifty-two." + }, + { + "verseNum": 41, + "text": "The children of Pashhur: one thousand two hundred forty-seven." + }, + { + "verseNum": 42, + "text": "The children of Harim: one thousand seventeen." + }, + { + "verseNum": 43, + "text": "The Levites: the children of Jeshua, of Kadmiel, of the children of Hodevah: seventy-four." + }, + { + "verseNum": 44, + "text": "The singers: the children of Asaph: one hundred forty-eight." + }, + { + "verseNum": 45, + "text": "The gatekeepers: the children of Shallum, the children of Ater, the children of Talmon, the children of Akkub, the children of Hatita, the children of Shobai: one hundred thirty-eight." + }, + { + "verseNum": 46, + "text": "The|strong=\"H1121\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*: the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ziha|strong=\"H6727\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hasupha|strong=\"H2817\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Tabbaoth|strong=\"H2884\"*," + }, + { + "verseNum": 47, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Keros|strong=\"H7026\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sia|strong=\"H5517\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Padon|strong=\"H6303\"*," + }, + { + "verseNum": 48, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Lebana|strong=\"H3838\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hagaba|strong=\"H2286\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Salmai," + }, + { + "verseNum": 49, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gahar|strong=\"H1515\"*," + }, + { + "verseNum": 50, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Reaiah|strong=\"H7211\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nekoda|strong=\"H5353\"*," + }, + { + "verseNum": 51, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Gazzam|strong=\"H1502\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Uzza|strong=\"H5798\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Paseah|strong=\"H6454\"*," + }, + { + "verseNum": 52, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Besai|strong=\"H1153\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Meunim|strong=\"H4586\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Nephushesim," + }, + { + "verseNum": 53, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bakbuk|strong=\"H1227\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hakupha|strong=\"H2709\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harhur|strong=\"H2744\"*," + }, + { + "verseNum": 54, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Bazlith|strong=\"H1213\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Mehida|strong=\"H4240\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Harsha|strong=\"H2797\"*," + }, + { + "verseNum": 55, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Barkos|strong=\"H1302\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sisera|strong=\"H5516\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Temah|strong=\"H8547\"*," + }, + { + "verseNum": 56, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Neziah|strong=\"H5335\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hatipha|strong=\"H2412\"*." + }, + { + "verseNum": 57, + "text": "The|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*: the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sotai|strong=\"H5479\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Sophereth|strong=\"H5618\"*, the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perida|strong=\"H6514\"*," + }, + { + "verseNum": 58, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Jaala|strong=\"H3279\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Darkon|strong=\"H1874\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Giddel|strong=\"H1435\"*," + }, + { + "verseNum": 59, + "text": "the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Hattil|strong=\"H2411\"*, the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Pochereth Hazzebaim, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Amon." + }, + { + "verseNum": 60, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"* were|strong=\"H1121\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety-two." + }, + { + "verseNum": 61, + "text": "These|strong=\"H1992\"* were|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* Tel Melah, Tel Harsha, Cherub|strong=\"H3743\"*, Addon, and|strong=\"H3478\"* Immer; but|strong=\"H3808\"* they|strong=\"H1992\"* could|strong=\"H3201\"* not|strong=\"H3808\"* show|strong=\"H5046\"* their|strong=\"H1992\"* fathers’ houses|strong=\"H1004\"*, nor|strong=\"H3808\"* their|strong=\"H1992\"* offspring|strong=\"H2233\"*,+ 7:61 or, seed* whether they|strong=\"H1992\"* were|strong=\"H3478\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 62, + "text": "The children of Delaiah, the children of Tobiah, the children of Nekoda: six hundred forty-two." + }, + { + "verseNum": 63, + "text": "Of the priests: the children of Hobaiah, the children of Hakkoz, the children of Barzillai, who took a wife of the daughters of Barzillai the Gileadite, and was called after their name." + }, + { + "verseNum": 64, + "text": "These searched|strong=\"H1245\"* for|strong=\"H1245\"* their|strong=\"H1245\"* genealogical|strong=\"H3187\"* records, but|strong=\"H3808\"* couldn’t find|strong=\"H4672\"* them|strong=\"H4672\"*. Therefore they|strong=\"H3808\"* were|strong=\"H4672\"* deemed disqualified and|strong=\"H4480\"* removed|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* priesthood|strong=\"H3550\"*." + }, + { + "verseNum": 65, + "text": "The|strong=\"H5704\"* governor|strong=\"H8660\"* told them|strong=\"H5975\"* not|strong=\"H3808\"* to|strong=\"H5704\"* eat of|strong=\"H3548\"* the|strong=\"H5704\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"* until|strong=\"H5704\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5704\"* minister with|strong=\"H3548\"* Urim and|strong=\"H3548\"* Thummim|strong=\"H8550\"*." + }, + { + "verseNum": 66, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* assembly|strong=\"H6951\"* together|strong=\"H6951\"* was|strong=\"H3605\"* forty-two thousand|strong=\"H7239\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* sixty|strong=\"H8346\"*," + }, + { + "verseNum": 67, + "text": "in|strong=\"H5650\"* addition to|strong=\"H5650\"* their male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H3967\"* their female servants|strong=\"H5650\"*, of|strong=\"H5650\"* whom there were|strong=\"H5650\"* seven|strong=\"H7651\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-seven|strong=\"H7970\"*. They had|strong=\"H7891\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* forty-five singing|strong=\"H7891\"* men|strong=\"H5650\"* and|strong=\"H3967\"* singing|strong=\"H7891\"* women|strong=\"H7891\"*." + }, + { + "verseNum": 68, + "text": "Their horses were|strong=\"H1581\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* thirty-six|strong=\"H7970\"*; their mules, two|strong=\"H2543\"* hundred|strong=\"H3967\"* forty-five;" + }, + { + "verseNum": 69, + "text": "their|strong=\"H5414\"* camels, four hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"*; their|strong=\"H5414\"* donkeys, six thousand seven hundred|strong=\"H3967\"* twenty." + }, + { + "verseNum": 70, + "text": "Some from|strong=\"H2091\"* among|strong=\"H7218\"* the|strong=\"H5414\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* fathers’ households gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* work|strong=\"H4399\"*. The|strong=\"H5414\"* governor gave|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* treasury one|strong=\"H3967\"* thousand|strong=\"H7239\"* darics of|strong=\"H7218\"* gold|strong=\"H2091\"*,+ 7:70 a daric was a gold coin issued by a Persian king, weighing about 8.4 grams or about 0.27 troy ounces each.* fifty basins, and|strong=\"H3967\"* five hundred|strong=\"H3967\"* thirty priests’ garments." + }, + { + "verseNum": 71, + "text": "Some|strong=\"H5971\"* of|strong=\"H7611\"* the|strong=\"H5414\"* heads of|strong=\"H7611\"* fathers’ households gave|strong=\"H5414\"* into|strong=\"H3701\"* the|strong=\"H5414\"* treasury of|strong=\"H7611\"* the|strong=\"H5414\"* work|strong=\"H5414\"* twenty|strong=\"H8147\"* thousand|strong=\"H7239\"* darics of|strong=\"H7611\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* two|strong=\"H8147\"* thousand|strong=\"H7239\"* two|strong=\"H8147\"* hundred minas|strong=\"H4488\"*+ 7:71 A mina is about 600 grams or 1.3 U. S. pounds, so 2,200 minas is about 1.3 metric tons.* of|strong=\"H7611\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 72, + "text": "That|strong=\"H5971\"* which|strong=\"H5971\"* the|strong=\"H3605\"* rest of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* gave was|strong=\"H3478\"* twenty thousand darics of|strong=\"H1121\"* gold, plus two|strong=\"H4480\"* thousand minas of|strong=\"H1121\"* silver, and|strong=\"H1121\"* sixty-seven priests|strong=\"H3548\"*’ garments." + }, + { + "verseNum": 73, + "text": "So the priests, the Levites, the gatekeepers, the singers, some of the people, the temple servants, and all Israel lived in their cities." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* gathered|strong=\"H3478\"* themselves|strong=\"H6440\"* together|strong=\"H5971\"* as|strong=\"H3068\"* one|strong=\"H3605\"* man|strong=\"H3605\"* into|strong=\"H4325\"* the|strong=\"H3605\"* wide place|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H3068\"* in|strong=\"H3478\"* front|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* water|strong=\"H4325\"* gate|strong=\"H8179\"*; and|strong=\"H4872\"* they|strong=\"H3068\"* spoke to|strong=\"H3478\"* Ezra|strong=\"H5830\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"* to|strong=\"H3478\"* bring the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* brought|strong=\"H3548\"* the|strong=\"H3605\"* law|strong=\"H8451\"* before|strong=\"H6440\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"*, both|strong=\"H3605\"* men|strong=\"H3605\"* and|strong=\"H3117\"* women, and|strong=\"H3117\"* all|strong=\"H3605\"* who|strong=\"H3605\"* could hear|strong=\"H8085\"* with|strong=\"H6440\"* understanding|strong=\"H8085\"*, on|strong=\"H3117\"* the|strong=\"H3605\"* first|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3117\"* read|strong=\"H7121\"* from|strong=\"H4480\"* it|strong=\"H7121\"* before|strong=\"H6440\"* the|strong=\"H3605\"* wide place|strong=\"H3605\"* that|strong=\"H5971\"* was|strong=\"H3117\"* in|strong=\"H3117\"* front|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* from|strong=\"H4480\"* early morning until|strong=\"H5704\"* midday|strong=\"H4276\"*, in|strong=\"H3117\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3117\"* the|strong=\"H3605\"* men|strong=\"H5971\"* and|strong=\"H3117\"* the|strong=\"H3605\"* women, and|strong=\"H3117\"* of|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* could|strong=\"H5971\"* understand. The|strong=\"H3605\"* ears of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H5971\"* attentive to|strong=\"H5704\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 4, + "text": "Ezra|strong=\"H5830\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* a|strong=\"H3068\"* pulpit|strong=\"H4026\"* of|strong=\"H1697\"* wood|strong=\"H6086\"*, which|strong=\"H1697\"* they|strong=\"H5921\"* had|strong=\"H5830\"* made|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* purpose|strong=\"H1697\"*; and|strong=\"H6086\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* stood|strong=\"H5975\"* Mattithiah|strong=\"H4993\"*, Shema|strong=\"H8087\"*, Anaiah|strong=\"H6043\"*, Uriah, Hilkiah|strong=\"H2518\"*, and|strong=\"H6086\"* Maaseiah|strong=\"H4641\"*, on|strong=\"H5921\"* his|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*; and|strong=\"H6086\"* on|strong=\"H5921\"* his|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, Pedaiah|strong=\"H6305\"*, Mishael|strong=\"H4332\"*, Malchijah|strong=\"H4441\"*, Hashum|strong=\"H2828\"*, Hashbaddanah|strong=\"H2806\"*, Zechariah|strong=\"H2148\"*, and|strong=\"H6086\"* Meshullam|strong=\"H4918\"*." + }, + { + "verseNum": 5, + "text": "Ezra|strong=\"H5830\"* opened|strong=\"H6605\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H5921\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* (for|strong=\"H3588\"* he|strong=\"H3588\"* was|strong=\"H1961\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*), and|strong=\"H5971\"* when|strong=\"H3588\"* he|strong=\"H3588\"* opened|strong=\"H6605\"* it|strong=\"H5921\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* stood|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* Ezra|strong=\"H5830\"* blessed|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* great|strong=\"H1419\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Also|strong=\"H5971\"* Jeshua|strong=\"H3442\"*, Bani|strong=\"H1137\"*, Sherebiah|strong=\"H8274\"*, Jamin|strong=\"H3226\"*, Akkub|strong=\"H6126\"*, Shabbethai|strong=\"H7678\"*, Hodiah|strong=\"H1941\"*, Maaseiah|strong=\"H4641\"*, Kelita|strong=\"H7042\"*, Azariah|strong=\"H5838\"*, Jozabad|strong=\"H3107\"*, Hanan|strong=\"H2605\"*, Pelaiah|strong=\"H6411\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, caused the|strong=\"H5921\"* people|strong=\"H5971\"* to|strong=\"H5921\"* understand the|strong=\"H5921\"* law|strong=\"H8451\"*; and|strong=\"H5971\"* the|strong=\"H5921\"* people|strong=\"H5971\"* stayed in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H5977\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H7760\"* read|strong=\"H7121\"* in|strong=\"H7121\"* the|strong=\"H7760\"* book|strong=\"H5612\"*, in|strong=\"H7121\"* the|strong=\"H7760\"* law|strong=\"H8451\"* of|strong=\"H8451\"* God, distinctly|strong=\"H6567\"*; and|strong=\"H8451\"* they|strong=\"H7760\"* gave|strong=\"H7121\"* the|strong=\"H7760\"* sense|strong=\"H7922\"*, so|strong=\"H7121\"* that|strong=\"H7121\"* they|strong=\"H7760\"* understood the|strong=\"H7760\"* reading|strong=\"H7121\"*." + }, + { + "verseNum": 9, + "text": "Nehemiah|strong=\"H5166\"*, who|strong=\"H3605\"* was|strong=\"H3068\"* the|strong=\"H3605\"* governor|strong=\"H8660\"*, Ezra|strong=\"H5830\"* the|strong=\"H3605\"* priest|strong=\"H3548\"* and|strong=\"H3068\"* scribe|strong=\"H5608\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* who|strong=\"H3605\"* taught the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, “Today|strong=\"H3117\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Don’t mourn|strong=\"H1058\"*, nor|strong=\"H3117\"* weep|strong=\"H1058\"*.” For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* wept|strong=\"H1058\"* when|strong=\"H3588\"* they|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7971\"* he|strong=\"H1931\"* said to|strong=\"H3068\"* them|strong=\"H7971\"*, “Go|strong=\"H3212\"* your|strong=\"H3068\"* way|strong=\"H3212\"*. Eat the|strong=\"H3588\"* fat|strong=\"H4924\"*, drink|strong=\"H8354\"* the|strong=\"H3588\"* sweet|strong=\"H4477\"*, and|strong=\"H3068\"* send|strong=\"H7971\"* portions|strong=\"H4490\"* to|strong=\"H3068\"* him|strong=\"H7971\"* for|strong=\"H3588\"* whom|strong=\"H3588\"* nothing is|strong=\"H3068\"* prepared|strong=\"H3559\"*, for|strong=\"H3588\"* today|strong=\"H3117\"* is|strong=\"H3068\"* holy|strong=\"H6918\"* to|strong=\"H3068\"* our|strong=\"H3068\"* Lord|strong=\"H3068\"*. Don’t be|strong=\"H3068\"* grieved|strong=\"H6087\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* joy|strong=\"H2304\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H4581\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3588\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* calmed|strong=\"H2814\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Hold your|strong=\"H3605\"* peace|strong=\"H2814\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* is|strong=\"H3117\"* holy|strong=\"H6918\"*. Don’t be|strong=\"H3117\"* grieved|strong=\"H6087\"*.”" + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* went|strong=\"H3212\"* their|strong=\"H3605\"* way|strong=\"H3212\"* to|strong=\"H3212\"* eat, to|strong=\"H3212\"* drink|strong=\"H8354\"*, to|strong=\"H3212\"* send|strong=\"H7971\"* portions|strong=\"H4490\"*, and|strong=\"H7971\"* to|strong=\"H3212\"* celebrate|strong=\"H6213\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* understood|strong=\"H3045\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3588\"* were|strong=\"H5971\"* declared|strong=\"H3045\"* to|strong=\"H3212\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 13, + "text": "On|strong=\"H3117\"* the|strong=\"H3605\"* second|strong=\"H8145\"* day|strong=\"H3117\"*, the|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households|strong=\"H3881\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3117\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H5971\"* gathered together|strong=\"H5971\"* to|strong=\"H3117\"* Ezra|strong=\"H5830\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, to|strong=\"H3117\"* study the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H3427\"* the|strong=\"H3068\"* law|strong=\"H8451\"* how Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* by|strong=\"H3027\"* Moses|strong=\"H4872\"* that|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* should|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* booths|strong=\"H5521\"* in|strong=\"H3427\"* the|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H1121\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H6086\"* that|strong=\"H3605\"* they|strong=\"H6213\"* should|strong=\"H6213\"* publish|strong=\"H8085\"* and|strong=\"H6086\"* proclaim|strong=\"H8085\"* in|strong=\"H6213\"* all|strong=\"H3605\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* and|strong=\"H6086\"* in|strong=\"H6213\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H6963\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"*, and|strong=\"H6086\"* get|strong=\"H3318\"* olive|strong=\"H2132\"* branches|strong=\"H5929\"*, branches|strong=\"H5929\"* of|strong=\"H5892\"* wild|strong=\"H6213\"* olive|strong=\"H2132\"*, myrtle|strong=\"H1918\"* branches|strong=\"H5929\"*, palm|strong=\"H8558\"* branches|strong=\"H5929\"*, and|strong=\"H6086\"* branches|strong=\"H5929\"* of|strong=\"H5892\"* thick|strong=\"H5687\"* trees|strong=\"H6086\"*, to|strong=\"H3318\"* make|strong=\"H6213\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 8:15 or, booths* as|strong=\"H6213\"* it|strong=\"H6213\"* is|strong=\"H3605\"* written|strong=\"H3789\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* the|strong=\"H5921\"* people|strong=\"H5971\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H1004\"* brought|strong=\"H3318\"* them|strong=\"H1992\"*, and|strong=\"H1004\"* made|strong=\"H6213\"* themselves|strong=\"H1992\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*,+ 8:16 or, booths* everyone on|strong=\"H5921\"* the|strong=\"H5921\"* roof|strong=\"H1406\"* of|strong=\"H1004\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, in|strong=\"H5921\"* their|strong=\"H1992\"* courts|strong=\"H2691\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5921\"* water|strong=\"H4325\"* gate|strong=\"H8179\"*, and|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wide place|strong=\"H1004\"* of|strong=\"H1004\"* Ephraim’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H1961\"* come|strong=\"H1961\"* back|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H3605\"* captivity|strong=\"H7628\"* made|strong=\"H6213\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*+ 8:17 or, booths* and|strong=\"H1121\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* temporary|strong=\"H5521\"* shelters|strong=\"H5521\"*, for|strong=\"H3588\"* since|strong=\"H3588\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Joshua the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nun|strong=\"H5126\"* to|strong=\"H5704\"* that|strong=\"H3588\"* day|strong=\"H3117\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* had|strong=\"H1961\"* not|strong=\"H3808\"* done|strong=\"H6213\"* so|strong=\"H3651\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* very|strong=\"H3966\"* great|strong=\"H1419\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 18, + "text": "Also|strong=\"H6213\"* day|strong=\"H3117\"* by|strong=\"H3117\"* day|strong=\"H3117\"*, from|strong=\"H4480\"* the|strong=\"H6213\"* first|strong=\"H7223\"* day|strong=\"H3117\"* to|strong=\"H5704\"* the|strong=\"H6213\"* last day|strong=\"H3117\"*, he|strong=\"H3117\"* read|strong=\"H7121\"* in|strong=\"H6213\"* the|strong=\"H6213\"* book|strong=\"H5612\"* of|strong=\"H3117\"* the|strong=\"H6213\"* law|strong=\"H8451\"* of|strong=\"H3117\"* God. They|strong=\"H3117\"* kept|strong=\"H6213\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* was|strong=\"H3117\"* a|strong=\"H3068\"* solemn|strong=\"H6116\"* assembly|strong=\"H6116\"*, according|strong=\"H4941\"* to|strong=\"H5704\"* the|strong=\"H6213\"* ordinance|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1121\"* this|strong=\"H2088\"* month|strong=\"H2320\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* assembled|strong=\"H3478\"* with|strong=\"H5921\"* fasting|strong=\"H6685\"*, with|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H1121\"* dirt on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* separated themselves|strong=\"H5921\"* from|strong=\"H5921\"* all|strong=\"H3605\"* foreigners|strong=\"H1121\"* and|strong=\"H1121\"* stood|strong=\"H5975\"* and|strong=\"H1121\"* confessed|strong=\"H3034\"* their|strong=\"H3605\"* sins|strong=\"H2403\"* and|strong=\"H1121\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H1121\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5921\"* their|strong=\"H3068\"* place|strong=\"H5977\"*, and|strong=\"H6965\"* read|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H5921\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* of|strong=\"H3068\"* the|strong=\"H5921\"* day|strong=\"H3117\"*; and|strong=\"H6965\"* a|strong=\"H3068\"* fourth|strong=\"H7243\"* part|strong=\"H7243\"* they|strong=\"H3117\"* confessed|strong=\"H3034\"* and|strong=\"H6965\"* worshiped|strong=\"H7812\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* Jeshua|strong=\"H3442\"*, Bani|strong=\"H1137\"*, Kadmiel|strong=\"H6934\"*, Shebaniah|strong=\"H7645\"*, Bunni|strong=\"H1138\"*, Sherebiah|strong=\"H8274\"*, Bani|strong=\"H1137\"*, and|strong=\"H6965\"* Chenani|strong=\"H3662\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* stood|strong=\"H6965\"* up|strong=\"H6965\"* on|strong=\"H5921\"* the|strong=\"H5921\"* stairs|strong=\"H4608\"*, and|strong=\"H6965\"* cried|strong=\"H2199\"* with|strong=\"H3068\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, Jeshua|strong=\"H3442\"*, and|strong=\"H6965\"* Kadmiel|strong=\"H6934\"*, Bani|strong=\"H1137\"*, Hashabneiah|strong=\"H2813\"*, Sherebiah|strong=\"H8274\"*, Hodiah|strong=\"H1941\"*, Shebaniah|strong=\"H7645\"*, and|strong=\"H6965\"* Pethahiah|strong=\"H6611\"*, said, “Stand|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* from|strong=\"H4480\"* everlasting|strong=\"H5769\"* to|strong=\"H5704\"* everlasting|strong=\"H5769\"*! Blessed|strong=\"H1288\"* be|strong=\"H3068\"* your|strong=\"H3068\"* glorious|strong=\"H3519\"* name|strong=\"H8034\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7311\"* above|strong=\"H5921\"* all|strong=\"H3605\"* blessing|strong=\"H1293\"* and|strong=\"H6965\"* praise|strong=\"H8416\"*!" + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* are|strong=\"H8064\"* Yahweh|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H3605\"* alone|strong=\"H1931\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"*, the|strong=\"H3605\"* heaven|strong=\"H8064\"* of|strong=\"H3068\"* heavens|strong=\"H8064\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* army|strong=\"H6635\"*, the|strong=\"H3605\"* earth|strong=\"H8064\"* and|strong=\"H3068\"* all|strong=\"H3605\"* things|strong=\"H3605\"* that|strong=\"H3605\"* are|strong=\"H8064\"* on|strong=\"H5921\"* it|strong=\"H1931\"*, the|strong=\"H3605\"* seas|strong=\"H3220\"* and|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H3605\"* preserve|strong=\"H2421\"* them|strong=\"H5921\"* all|strong=\"H3605\"*. The|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* worships|strong=\"H7812\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H7760\"* are|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H1931\"* chose Abram, brought|strong=\"H3318\"* him|strong=\"H7760\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Ur of|strong=\"H3068\"* the|strong=\"H3068\"* Chaldees|strong=\"H3778\"*, gave|strong=\"H7760\"* him|strong=\"H7760\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Abraham," + }, + { + "verseNum": 8, + "text": "found|strong=\"H4672\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* faithful before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* him|strong=\"H5414\"* to|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1697\"* the|strong=\"H6440\"* Canaanite|strong=\"H3669\"*, the|strong=\"H6440\"* Hittite|strong=\"H2850\"*, the|strong=\"H6440\"* Amorite, the|strong=\"H6440\"* Perizzite|strong=\"H6522\"*, the|strong=\"H6440\"* Jebusite|strong=\"H2983\"*, and|strong=\"H6965\"* the|strong=\"H6440\"* Girgashite|strong=\"H1622\"*, to|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* his|strong=\"H5414\"* offspring|strong=\"H2233\"*, and|strong=\"H6965\"* have|strong=\"H4672\"* performed|strong=\"H6965\"* your|strong=\"H5414\"* words|strong=\"H1697\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* affliction|strong=\"H6040\"* of|strong=\"H5921\"* our|strong=\"H7200\"* fathers in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* heard|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H2201\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3117\"* showed|strong=\"H6213\"* signs and|strong=\"H3117\"* wonders|strong=\"H4159\"* against|strong=\"H5921\"* Pharaoh|strong=\"H6547\"*, against|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, and|strong=\"H3117\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* his|strong=\"H3605\"* land, for|strong=\"H3588\"* you|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* dealt|strong=\"H6213\"* proudly|strong=\"H2102\"* against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"* for|strong=\"H3588\"* yourself|strong=\"H6213\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* divided|strong=\"H1234\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* before|strong=\"H6440\"* them|strong=\"H6440\"*, so|strong=\"H3644\"* that|strong=\"H4325\"* they|strong=\"H6440\"* went|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* on|strong=\"H5674\"* the|strong=\"H6440\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* cast|strong=\"H7993\"* their|strong=\"H6440\"* pursuers|strong=\"H7291\"* into|strong=\"H8432\"* the|strong=\"H6440\"* depths|strong=\"H4688\"*, as|strong=\"H3644\"* a|strong=\"H3068\"* stone into|strong=\"H8432\"* the|strong=\"H6440\"* mighty|strong=\"H5794\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 12, + "text": "Moreover, in|strong=\"H3212\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* cloud|strong=\"H6051\"* you|strong=\"H3915\"* led|strong=\"H3212\"* them|strong=\"H1992\"* by|strong=\"H1870\"* day|strong=\"H3119\"*; and|strong=\"H3212\"* in|strong=\"H3212\"* a|strong=\"H3068\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* fire by|strong=\"H1870\"* night|strong=\"H3915\"*, to|strong=\"H3212\"* give them|strong=\"H1992\"* light in|strong=\"H3212\"* the|strong=\"H1870\"* way|strong=\"H1870\"* in|strong=\"H3212\"* which|strong=\"H1992\"* they|strong=\"H1992\"* should go|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "“You|strong=\"H5414\"* also|strong=\"H8064\"* came|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Sinai|strong=\"H5514\"*, and|strong=\"H8064\"* spoke|strong=\"H1696\"* with|strong=\"H5973\"* them|strong=\"H5414\"* from|strong=\"H3381\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* right|strong=\"H3477\"* ordinances|strong=\"H4941\"* and|strong=\"H8064\"* true laws|strong=\"H8451\"*, good|strong=\"H2896\"* statutes|strong=\"H2706\"* and|strong=\"H8064\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H4872\"* made|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3027\"* them|strong=\"H3027\"* your|strong=\"H3045\"* holy|strong=\"H6944\"* Sabbath|strong=\"H7676\"*, and|strong=\"H4872\"* commanded|strong=\"H6680\"* them|strong=\"H3027\"* commandments|strong=\"H4687\"*, statutes|strong=\"H2706\"*, and|strong=\"H4872\"* a|strong=\"H3068\"* law|strong=\"H8451\"*, by|strong=\"H3027\"* Moses|strong=\"H4872\"* your|strong=\"H3045\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H8064\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* bread|strong=\"H3899\"* from|strong=\"H3318\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* for|strong=\"H3027\"* their|strong=\"H5375\"* hunger|strong=\"H7458\"*, and|strong=\"H8064\"* brought|strong=\"H3318\"* water|strong=\"H4325\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H5414\"* rock|strong=\"H5553\"* for|strong=\"H3027\"* them|strong=\"H5414\"* for|strong=\"H3027\"* their|strong=\"H5375\"* thirst|strong=\"H6772\"*, and|strong=\"H8064\"* commanded them|strong=\"H5414\"* that|strong=\"H5414\"* they|strong=\"H5375\"* should|strong=\"H3899\"* go|strong=\"H3318\"* in|strong=\"H3899\"* to|strong=\"H3318\"* possess|strong=\"H3423\"* the|strong=\"H5414\"* land|strong=\"H8064\"* which|strong=\"H4325\"* you|strong=\"H5414\"* had|strong=\"H5414\"* sworn|strong=\"H3027\"* to|strong=\"H3318\"* give|strong=\"H5414\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "“But|strong=\"H3808\"* they|strong=\"H1992\"* and|strong=\"H8085\"* our|strong=\"H8085\"* fathers behaved proudly|strong=\"H2102\"*, hardened|strong=\"H7185\"* their|strong=\"H8085\"* neck|strong=\"H6203\"*, didn’t listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H7725\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* obey|strong=\"H8085\"*. They|strong=\"H3808\"* weren’t mindful|strong=\"H2142\"* of|strong=\"H7218\"* your|strong=\"H5414\"* wonders|strong=\"H6381\"* that|strong=\"H8085\"* you|strong=\"H5414\"* did|strong=\"H6213\"* among|strong=\"H5973\"* them|strong=\"H5414\"*, but|strong=\"H3808\"* hardened|strong=\"H7185\"* their|strong=\"H5414\"* neck|strong=\"H6203\"*, and|strong=\"H7725\"* in|strong=\"H6213\"* their|strong=\"H5414\"* rebellion|strong=\"H4805\"* appointed|strong=\"H5414\"* a|strong=\"H3068\"* captain|strong=\"H7227\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H5414\"* bondage|strong=\"H5659\"*. But|strong=\"H3808\"* you|strong=\"H5414\"* are|strong=\"H7227\"* a|strong=\"H3068\"* God|strong=\"H5414\"* ready|strong=\"H6213\"* to|strong=\"H7725\"* pardon|strong=\"H5547\"*, gracious|strong=\"H2587\"* and|strong=\"H7725\"* merciful|strong=\"H7349\"*, slow to|strong=\"H7725\"* anger, and|strong=\"H7725\"* abundant|strong=\"H7227\"* in|strong=\"H6213\"* loving kindness|strong=\"H2617\"*, and|strong=\"H7725\"* didn’t forsake|strong=\"H5800\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "Yes|strong=\"H3588\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H6213\"* themselves|strong=\"H6213\"* a|strong=\"H3068\"* molded calf|strong=\"H5695\"*, and|strong=\"H1419\"* said, ‘This|strong=\"H2088\"* is|strong=\"H2088\"* your|strong=\"H6213\"* God who|strong=\"H2088\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H6213\"* of|strong=\"H6213\"* Egypt|strong=\"H4714\"*,’ and|strong=\"H1419\"* had|strong=\"H3588\"* committed|strong=\"H6213\"* awful blasphemies|strong=\"H5007\"*," + }, + { + "verseNum": 19, + "text": "yet|strong=\"H3808\"* you|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* didn’t forsake|strong=\"H5800\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. The|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* cloud|strong=\"H6051\"* didn’t depart|strong=\"H5493\"* from|strong=\"H5493\"* over|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, to|strong=\"H3212\"* lead|strong=\"H5148\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*; neither|strong=\"H3808\"* did|strong=\"H3808\"* the|strong=\"H5921\"* pillar|strong=\"H5982\"* of|strong=\"H1870\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*, to|strong=\"H3212\"* show|strong=\"H7356\"* them|strong=\"H5921\"* light, and|strong=\"H3212\"* the|strong=\"H5921\"* way|strong=\"H1870\"* in|strong=\"H5921\"* which|strong=\"H4057\"* they|strong=\"H3808\"* should go|strong=\"H3212\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* gave|strong=\"H5414\"* also your|strong=\"H5414\"* good|strong=\"H2896\"* Spirit|strong=\"H7307\"* to|strong=\"H5414\"* instruct|strong=\"H7919\"* them|strong=\"H5414\"*, and|strong=\"H2896\"* didn’t withhold|strong=\"H4513\"* your|strong=\"H5414\"* manna|strong=\"H4478\"* from|strong=\"H7307\"* their|strong=\"H5414\"* mouth|strong=\"H6310\"*, and|strong=\"H2896\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* water|strong=\"H4325\"* for|strong=\"H4325\"* their|strong=\"H5414\"* thirst|strong=\"H6772\"*." + }, + { + "verseNum": 21, + "text": "“Yes, forty years|strong=\"H8141\"* you|strong=\"H3808\"* sustained|strong=\"H3557\"* them|strong=\"H1086\"* in|strong=\"H8141\"* the|strong=\"H3808\"* wilderness|strong=\"H4057\"*. They|strong=\"H3808\"* lacked|strong=\"H2637\"* nothing|strong=\"H3808\"*. Their|strong=\"H3808\"* clothes|strong=\"H8008\"* didn’t grow old|strong=\"H1086\"*, and|strong=\"H8141\"* their|strong=\"H3808\"* feet|strong=\"H7272\"* didn’t swell|strong=\"H1216\"*." + }, + { + "verseNum": 22, + "text": "Moreover you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* kingdoms|strong=\"H4467\"* and|strong=\"H4428\"* peoples|strong=\"H5971\"*, which|strong=\"H5971\"* you|strong=\"H5414\"* allotted|strong=\"H2505\"* according to|strong=\"H5414\"* their|strong=\"H5414\"* portions. So|strong=\"H5414\"* they|strong=\"H5971\"* possessed|strong=\"H3423\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Sihon|strong=\"H5511\"*, even the|strong=\"H5414\"* land of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Heshbon|strong=\"H2809\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 23, + "text": "You|strong=\"H7235\"* also|strong=\"H1121\"* multiplied|strong=\"H7235\"* their|strong=\"H3423\"* children|strong=\"H1121\"* as|strong=\"H1121\"* the|strong=\"H3423\"* stars|strong=\"H3556\"* of|strong=\"H1121\"* the|strong=\"H3423\"* sky|strong=\"H8064\"*, and|strong=\"H1121\"* brought them|strong=\"H3423\"* into|strong=\"H3423\"* the|strong=\"H3423\"* land|strong=\"H8064\"* concerning which you|strong=\"H7235\"* said to|strong=\"H1121\"* their|strong=\"H3423\"* fathers that|strong=\"H1121\"* they|strong=\"H3423\"* should go in|strong=\"H1121\"* to|strong=\"H1121\"* possess|strong=\"H3423\"* it|strong=\"H3423\"*." + }, + { + "verseNum": 24, + "text": "“So|strong=\"H6213\"* the|strong=\"H6440\"* children|strong=\"H1121\"* went|strong=\"H5971\"* in|strong=\"H3427\"* and|strong=\"H1121\"* possessed|strong=\"H3423\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H1121\"* you|strong=\"H5414\"* subdued|strong=\"H3665\"* before|strong=\"H6440\"* them|strong=\"H5414\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, the|strong=\"H6440\"* Canaanites|strong=\"H3669\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H6213\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*, with|strong=\"H6213\"* their|strong=\"H5414\"* kings|strong=\"H4428\"* and|strong=\"H1121\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* might|strong=\"H1121\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* they|strong=\"H6213\"* pleased|strong=\"H7522\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3920\"* took|strong=\"H3920\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* and|strong=\"H1419\"* a|strong=\"H3068\"* rich|strong=\"H8082\"* land, and|strong=\"H1419\"* possessed|strong=\"H3423\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* all|strong=\"H3605\"* good|strong=\"H2898\"* things|strong=\"H1419\"*, cisterns dug out|strong=\"H3423\"*, vineyards|strong=\"H3754\"*, olive|strong=\"H2132\"* groves|strong=\"H2132\"*, and|strong=\"H1419\"* fruit|strong=\"H3978\"* trees|strong=\"H6086\"* in|strong=\"H1004\"* abundance|strong=\"H7230\"*. So|strong=\"H7230\"* they|strong=\"H3920\"* ate, were|strong=\"H1419\"* filled|strong=\"H7646\"*, became|strong=\"H7646\"* fat|strong=\"H8080\"*, and|strong=\"H1419\"* delighted|strong=\"H5727\"* themselves in|strong=\"H1004\"* your|strong=\"H3605\"* great|strong=\"H1419\"* goodness|strong=\"H2898\"*." + }, + { + "verseNum": 26, + "text": "“Nevertheless they|strong=\"H6213\"* were|strong=\"H5030\"* disobedient|strong=\"H4784\"* and|strong=\"H7725\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* you|strong=\"H7725\"*, cast|strong=\"H7993\"* your|strong=\"H7725\"* law|strong=\"H8451\"* behind their|strong=\"H7725\"* back|strong=\"H7725\"*, killed|strong=\"H2026\"* your|strong=\"H7725\"* prophets|strong=\"H5030\"* that|strong=\"H5030\"* testified|strong=\"H5749\"* against|strong=\"H4784\"* them|strong=\"H7725\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*, and|strong=\"H7725\"* they|strong=\"H6213\"* committed|strong=\"H6213\"* awful blasphemies|strong=\"H5007\"*." + }, + { + "verseNum": 27, + "text": "Therefore you|strong=\"H5414\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H8085\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* adversaries|strong=\"H6862\"*, who|strong=\"H7227\"* distressed|strong=\"H3334\"* them|strong=\"H5414\"*. In|strong=\"H8085\"* the|strong=\"H8085\"* time|strong=\"H6256\"* of|strong=\"H3027\"* their|strong=\"H5414\"* trouble|strong=\"H6869\"*, when|strong=\"H6256\"* they|strong=\"H6256\"* cried|strong=\"H6817\"* to|strong=\"H6256\"* you|strong=\"H5414\"*, you|strong=\"H5414\"* heard|strong=\"H8085\"* from|strong=\"H3027\"* heaven|strong=\"H8064\"*; and|strong=\"H8064\"* according|strong=\"H3027\"* to|strong=\"H6256\"* your|strong=\"H5414\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* saviors who|strong=\"H7227\"* saved|strong=\"H3467\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H8085\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 28, + "text": "But|strong=\"H5800\"* after|strong=\"H6256\"* they|strong=\"H6256\"* had|strong=\"H3027\"* rest|strong=\"H5117\"*, they|strong=\"H6256\"* did|strong=\"H6213\"* evil|strong=\"H7451\"* again|strong=\"H7725\"* before|strong=\"H6440\"* you|strong=\"H6440\"*; therefore|strong=\"H6213\"* you|strong=\"H6440\"* left|strong=\"H5800\"* them|strong=\"H7725\"* in|strong=\"H6213\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H6440\"* enemies|strong=\"H3027\"*, so|strong=\"H6213\"* that|strong=\"H8085\"* they|strong=\"H6256\"* had|strong=\"H3027\"* the|strong=\"H6440\"* dominion|strong=\"H7287\"* over|strong=\"H3027\"* them|strong=\"H7725\"*; yet|strong=\"H6256\"* when|strong=\"H6256\"* they|strong=\"H6256\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* cried|strong=\"H2199\"* to|strong=\"H7725\"* you|strong=\"H6440\"*, you|strong=\"H6440\"* heard|strong=\"H8085\"* from|strong=\"H7725\"* heaven|strong=\"H8064\"*; and|strong=\"H7725\"* many|strong=\"H7227\"* times|strong=\"H6256\"* you|strong=\"H6440\"* delivered|strong=\"H5337\"* them|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* your|strong=\"H6440\"* mercies|strong=\"H7356\"*," + }, + { + "verseNum": 29, + "text": "and|strong=\"H7725\"* testified|strong=\"H5749\"* against|strong=\"H2398\"* them|strong=\"H5414\"*, that|strong=\"H8085\"* you|strong=\"H5414\"* might|strong=\"H4941\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* law|strong=\"H8451\"*. Yet|strong=\"H3808\"* they|strong=\"H1992\"* were|strong=\"H1992\"* arrogant|strong=\"H2102\"*, and|strong=\"H7725\"* didn’t listen|strong=\"H8085\"* to|strong=\"H7725\"* your|strong=\"H5414\"* commandments|strong=\"H4687\"*, but|strong=\"H3808\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* your|strong=\"H5414\"* ordinances|strong=\"H4941\"* (which|strong=\"H1992\"* if|strong=\"H2398\"* a|strong=\"H3068\"* man does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* live|strong=\"H2421\"* in|strong=\"H6213\"* them|strong=\"H5414\"*), turned|strong=\"H7725\"* their|strong=\"H5414\"* backs|strong=\"H6203\"*, stiffened|strong=\"H7185\"* their|strong=\"H5414\"* neck|strong=\"H6203\"*, and|strong=\"H7725\"* would|strong=\"H6213\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 30, + "text": "Yet|strong=\"H3808\"* many|strong=\"H7227\"* years|strong=\"H8141\"* you|strong=\"H5414\"* put|strong=\"H5414\"* up|strong=\"H5414\"* with|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H3027\"* testified|strong=\"H5749\"* against|strong=\"H5921\"* them|strong=\"H5414\"* by|strong=\"H3027\"* your|strong=\"H5414\"* Spirit|strong=\"H7307\"* through|strong=\"H3027\"* your|strong=\"H5414\"* prophets|strong=\"H5030\"*. Yet|strong=\"H3808\"* they|strong=\"H3808\"* would|strong=\"H5971\"* not|strong=\"H3808\"* listen. Therefore|strong=\"H5921\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* of|strong=\"H3027\"* the|strong=\"H5921\"* lands." + }, + { + "verseNum": 31, + "text": "“Nevertheless|strong=\"H3588\"* in|strong=\"H6213\"* your|strong=\"H6213\"* manifold|strong=\"H7227\"* mercies|strong=\"H7356\"* you|strong=\"H3588\"* didn’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H7227\"* end|strong=\"H3617\"* of|strong=\"H6213\"* them|strong=\"H6213\"*, nor|strong=\"H3808\"* forsake|strong=\"H5800\"* them|strong=\"H6213\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H7227\"* a|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H6213\"* merciful|strong=\"H7349\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 32, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, our|strong=\"H3605\"* God, the|strong=\"H3605\"* great|strong=\"H1419\"*, the|strong=\"H3605\"* mighty|strong=\"H1368\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* awesome|strong=\"H3372\"* God, who|strong=\"H3605\"* keeps|strong=\"H8104\"* covenant|strong=\"H1285\"* and|strong=\"H4428\"* loving kindness|strong=\"H2617\"*, don’t let|strong=\"H6258\"* all|strong=\"H3605\"* the|strong=\"H3605\"* travail|strong=\"H8513\"* seem|strong=\"H8513\"* little|strong=\"H4591\"* before|strong=\"H6440\"* you|strong=\"H6440\"* that|strong=\"H5971\"* has|strong=\"H4428\"* come|strong=\"H4672\"* on|strong=\"H3117\"* us|strong=\"H6440\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* kings|strong=\"H4428\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* princes|strong=\"H8269\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* priests|strong=\"H3548\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* prophets|strong=\"H5030\"*, on|strong=\"H3117\"* our|strong=\"H3605\"* fathers, and|strong=\"H4428\"* on|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"*, since|strong=\"H3117\"* the|strong=\"H3605\"* time|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "However|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H6662\"* just|strong=\"H6662\"* in|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3588\"* has|strong=\"H3588\"* come on|strong=\"H5921\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"* dealt|strong=\"H6213\"* truly|strong=\"H3588\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3605\"* done|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 34, + "text": "Also|strong=\"H6213\"* our|strong=\"H6213\"* kings|strong=\"H4428\"*, our|strong=\"H6213\"* princes|strong=\"H8269\"*, our|strong=\"H6213\"* priests|strong=\"H3548\"*, and|strong=\"H4428\"* our|strong=\"H6213\"* fathers have|strong=\"H3548\"* not|strong=\"H3808\"* kept|strong=\"H6213\"* your|strong=\"H6213\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* listened|strong=\"H7181\"* to|strong=\"H6213\"* your|strong=\"H6213\"* commandments|strong=\"H4687\"* and|strong=\"H4428\"* your|strong=\"H6213\"* testimonies|strong=\"H5715\"* with|strong=\"H6213\"* which|strong=\"H3548\"* you|strong=\"H6213\"* testified|strong=\"H5749\"* against|strong=\"H5749\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 35, + "text": "For|strong=\"H6440\"* they|strong=\"H1992\"* have|strong=\"H5414\"* not|strong=\"H3808\"* served|strong=\"H5647\"* you|strong=\"H5414\"* in|strong=\"H7227\"* their|strong=\"H5414\"* kingdom|strong=\"H4438\"*, and|strong=\"H7725\"* in|strong=\"H7227\"* your|strong=\"H5414\"* great|strong=\"H7227\"* goodness|strong=\"H2898\"* that|strong=\"H5414\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"*, and|strong=\"H7725\"* in|strong=\"H7227\"* the|strong=\"H6440\"* large|strong=\"H7342\"* and|strong=\"H7725\"* rich|strong=\"H8082\"* land|strong=\"H6440\"* which|strong=\"H1992\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"*. They|strong=\"H1992\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H5414\"* wicked|strong=\"H7451\"* works|strong=\"H4611\"*." + }, + { + "verseNum": 36, + "text": "“Behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3117\"* servants|strong=\"H5650\"* today|strong=\"H3117\"*, and|strong=\"H3117\"* as|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3117\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* our|strong=\"H5414\"* fathers to|strong=\"H5921\"* eat its|strong=\"H5414\"* fruit|strong=\"H6529\"* and|strong=\"H3117\"* its|strong=\"H5414\"* good|strong=\"H2898\"*, behold|strong=\"H2009\"*, we|strong=\"H3068\"* are|strong=\"H3117\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 37, + "text": "It|strong=\"H5414\"* yields|strong=\"H5414\"* much|strong=\"H7235\"* increase|strong=\"H8393\"* to|strong=\"H5921\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* whom you|strong=\"H5414\"* have|strong=\"H5414\"* set|strong=\"H5414\"* over|strong=\"H5921\"* us|strong=\"H5414\"* because|strong=\"H5921\"* of|strong=\"H4428\"* our|strong=\"H5414\"* sins|strong=\"H2403\"*. Also|strong=\"H4428\"* they|strong=\"H5921\"* have|strong=\"H5414\"* power|strong=\"H4910\"* over|strong=\"H5921\"* our|strong=\"H5414\"* bodies|strong=\"H1472\"* and|strong=\"H4428\"* over|strong=\"H5921\"* our|strong=\"H5414\"* livestock, at|strong=\"H5921\"* their|strong=\"H5414\"* pleasure|strong=\"H7522\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* are|strong=\"H4428\"* in|strong=\"H5921\"* great|strong=\"H1419\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 38, + "text": "Yet for all this, we|strong=\"H3068\"* make a|strong=\"H3068\"* sure covenant, and write it; and our princes, our Levites, and our priests, seal it.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* sealed|strong=\"H2856\"* were|strong=\"H3881\"*: Nehemiah the|strong=\"H3605\"* governor|strong=\"H8269\"*, the|strong=\"H3605\"* son of|strong=\"H8269\"* Hacaliah, and|strong=\"H3548\"* Zedekiah," + }, + { + "verseNum": 2, + "text": "Seraiah, Azariah, Jeremiah," + }, + { + "verseNum": 3, + "text": "Pashhur, Amariah, Malchijah," + }, + { + "verseNum": 4, + "text": "Hattush, Shebaniah, Malluch," + }, + { + "verseNum": 5, + "text": "Harim, Meremoth, Obadiah," + }, + { + "verseNum": 6, + "text": "Daniel, Ginnethon, Baruch," + }, + { + "verseNum": 7, + "text": "Meshullam, Abijah, Mijamin," + }, + { + "verseNum": 8, + "text": "Maaziah, Bilgai, and|strong=\"H4918\"* Shemaiah. These were the|strong=\"H4918\"* priests." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3548\"* Levites: Jeshua the|strong=\"H3548\"* son of|strong=\"H3548\"* Azaniah, Binnui of|strong=\"H3548\"* the|strong=\"H3548\"* sons of|strong=\"H3548\"* Henadad, Kadmiel;" + }, + { + "verseNum": 10, + "text": "and|strong=\"H1121\"* their|strong=\"H3881\"* brothers|strong=\"H1121\"*, Shebaniah, Hodiah, Kelita, Pelaiah, Hanan," + }, + { + "verseNum": 11, + "text": "Mica, Rehob, Hashabiah," + }, + { + "verseNum": 12, + "text": "Zaccur, Sherebiah, Shebaniah," + }, + { + "verseNum": 13, + "text": "Hodiah, Bani, and|strong=\"H8274\"* Beninu." + }, + { + "verseNum": 14, + "text": "The|strong=\"H1137\"* chiefs of the|strong=\"H1137\"* people: Parosh, Pahathmoab, Elam, Zattu, Bani|strong=\"H1137\"*," + }, + { + "verseNum": 15, + "text": "Bunni, Azgad, Bebai," + }, + { + "verseNum": 16, + "text": "Adonijah, Bigvai, Adin," + }, + { + "verseNum": 17, + "text": "Ater, Hezekiah, Azzur," + }, + { + "verseNum": 18, + "text": "Hodiah, Hashum, Bezai," + }, + { + "verseNum": 19, + "text": "Hariph, Anathoth, Nobai," + }, + { + "verseNum": 20, + "text": "Magpiash, Meshullam, Hezir," + }, + { + "verseNum": 21, + "text": "Meshezabel, Zadok, Jaddua," + }, + { + "verseNum": 22, + "text": "Pelatiah, Hanan, Anaiah," + }, + { + "verseNum": 23, + "text": "Hoshea, Hananiah, Hasshub," + }, + { + "verseNum": 24, + "text": "Hallohesh, Pilha, Shobek," + }, + { + "verseNum": 25, + "text": "Rehum, Hashabnah, Maaseiah," + }, + { + "verseNum": 26, + "text": "Ahiah, Hanan, Anan," + }, + { + "verseNum": 27, + "text": "Malluch, Harim, and Baanah." + }, + { + "verseNum": 28, + "text": "The|strong=\"H1196\"* rest of the|strong=\"H1196\"* people, the|strong=\"H1196\"* priests, the|strong=\"H1196\"* Levites, the|strong=\"H1196\"* gatekeepers, the|strong=\"H1196\"* singers, the|strong=\"H1196\"* temple servants, and|strong=\"H2766\"* all those who had separated themselves from the|strong=\"H1196\"* peoples of the|strong=\"H1196\"* lands to the|strong=\"H1196\"* law of God, their wives, their sons, and|strong=\"H2766\"* their daughters—everyone who had knowledge and|strong=\"H2766\"* understanding—" + }, + { + "verseNum": 29, + "text": "joined with|strong=\"H3045\"* their|strong=\"H3605\"* brothers|strong=\"H1121\"*, their|strong=\"H3605\"* nobles, and|strong=\"H1121\"* entered into|strong=\"H1323\"* a|strong=\"H3068\"* curse and|strong=\"H1121\"* into|strong=\"H1323\"* an|strong=\"H5971\"* oath, to|strong=\"H1121\"* walk in|strong=\"H1121\"* God’s law|strong=\"H8451\"*, which|strong=\"H5971\"* was|strong=\"H1121\"* given by|strong=\"H3605\"* Moses the|strong=\"H3605\"* servant of|strong=\"H1121\"* God, and|strong=\"H1121\"* to|strong=\"H1121\"* observe|strong=\"H3045\"* and|strong=\"H1121\"* do|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* commandments of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* Lord, and|strong=\"H1121\"* his|strong=\"H3605\"* ordinances and|strong=\"H1121\"* his|strong=\"H3605\"* statutes;" + }, + { + "verseNum": 30, + "text": "and|strong=\"H4872\"* that|strong=\"H3605\"* we|strong=\"H3068\"* would|strong=\"H3068\"* not|strong=\"H6213\"* give|strong=\"H5414\"* our|strong=\"H3068\"* daughters to|strong=\"H3068\"* the|strong=\"H3605\"* peoples of|strong=\"H3068\"* the|strong=\"H3605\"* land, nor take|strong=\"H2388\"* their|strong=\"H3605\"* daughters for|strong=\"H5921\"* our|strong=\"H3068\"* sons;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H1121\"* if|strong=\"H1121\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5414\"* land bring|strong=\"H3947\"* wares or|strong=\"H3808\"* any|strong=\"H5414\"* grain on|strong=\"H5414\"* the|strong=\"H5414\"* Sabbath day to|strong=\"H5414\"* sell|strong=\"H5414\"*, that|strong=\"H5971\"* we|strong=\"H3068\"* would|strong=\"H5971\"* not|strong=\"H3808\"* buy|strong=\"H3947\"* from|strong=\"H1121\"* them|strong=\"H5414\"* on|strong=\"H5414\"* the|strong=\"H5414\"* Sabbath, or|strong=\"H3808\"* on|strong=\"H5414\"* a|strong=\"H3068\"* holy day; and|strong=\"H1121\"* that|strong=\"H5971\"* we|strong=\"H3068\"* would|strong=\"H5971\"* forego the|strong=\"H5414\"* seventh year|strong=\"H1121\"* crops and|strong=\"H1121\"* the|strong=\"H5414\"* exaction of|strong=\"H1121\"* every|strong=\"H3947\"* debt." + }, + { + "verseNum": 32, + "text": "Also|strong=\"H3027\"* we|strong=\"H3068\"* made|strong=\"H8141\"* ordinances for|strong=\"H3027\"* ourselves, to|strong=\"H3027\"* charge|strong=\"H3027\"* ourselves yearly|strong=\"H3117\"* with|strong=\"H3117\"* the|strong=\"H3605\"* third part|strong=\"H1992\"* of|strong=\"H3117\"* a|strong=\"H3068\"* shekel+ 10:32 A shekel is about 10 grams or about 0.35 ounces.* for|strong=\"H3027\"* the|strong=\"H3605\"* service|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H3605\"* house of|strong=\"H3117\"* our|strong=\"H3605\"* God|strong=\"H3808\"*:" + }, + { + "verseNum": 33, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* show|strong=\"H5414\"* bread, for|strong=\"H5921\"* the|strong=\"H5921\"* continual meal offering, for|strong=\"H5921\"* the|strong=\"H5921\"* continual burnt offering, for|strong=\"H5921\"* the|strong=\"H5921\"* Sabbaths, for|strong=\"H5921\"* the|strong=\"H5921\"* new moons, for|strong=\"H5921\"* the|strong=\"H5921\"* set|strong=\"H5414\"* feasts, for|strong=\"H5921\"* the|strong=\"H5921\"* holy things|strong=\"H4687\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* sin offerings to|strong=\"H5921\"* make|strong=\"H5414\"* atonement for|strong=\"H5921\"* Israel, and|strong=\"H1004\"* for|strong=\"H5921\"* all|strong=\"H5414\"* the|strong=\"H5921\"* work|strong=\"H5656\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5414\"* God|strong=\"H5414\"*." + }, + { + "verseNum": 34, + "text": "We|strong=\"H3605\"*, the|strong=\"H3605\"* priests, the|strong=\"H3605\"* Levites, and|strong=\"H3478\"* the|strong=\"H3605\"* people, cast lots for|strong=\"H5921\"* the|strong=\"H3605\"* wood offering|strong=\"H4503\"*, to|strong=\"H3478\"* bring it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3605\"* God, according|strong=\"H5921\"* to|strong=\"H3478\"* our|strong=\"H3605\"* fathers’ houses|strong=\"H1004\"*, at|strong=\"H5921\"* times|strong=\"H4150\"* appointed|strong=\"H4150\"* year by|strong=\"H5921\"* year, to|strong=\"H3478\"* burn on|strong=\"H5921\"* Yahweh|strong=\"H3068\"* our|strong=\"H3605\"* God’s altar, as|strong=\"H1004\"* it|strong=\"H5921\"* is|strong=\"H3478\"* written in|strong=\"H5921\"* the|strong=\"H3605\"* law;" + }, + { + "verseNum": 35, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* bring|strong=\"H3881\"* the|strong=\"H5921\"* first fruits of|strong=\"H1004\"* our|strong=\"H3068\"* ground and|strong=\"H3068\"* the|strong=\"H5921\"* first fruits of|strong=\"H1004\"* all|strong=\"H5921\"* fruit|strong=\"H6086\"* of|strong=\"H1004\"* all|strong=\"H5921\"* kinds of|strong=\"H1004\"* trees|strong=\"H6086\"*, year|strong=\"H8141\"* by|strong=\"H5921\"* year|strong=\"H8141\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 36, + "text": "also|strong=\"H3068\"* the|strong=\"H3605\"* firstborn of|strong=\"H1004\"* our|strong=\"H3068\"* sons and|strong=\"H3068\"* of|strong=\"H1004\"* our|strong=\"H3068\"* livestock, as|strong=\"H3068\"* it|strong=\"H3068\"* is|strong=\"H3068\"* written in|strong=\"H8141\"* the|strong=\"H3605\"* law, and|strong=\"H3068\"* the|strong=\"H3605\"* firstborn of|strong=\"H1004\"* our|strong=\"H3068\"* herds and|strong=\"H3068\"* of|strong=\"H1004\"* our|strong=\"H3068\"* flocks, to|strong=\"H3068\"* bring to|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* priests who|strong=\"H3605\"* minister in|strong=\"H8141\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3068\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 37, + "text": "and|strong=\"H1121\"* that|strong=\"H3548\"* we|strong=\"H3068\"* should|strong=\"H3548\"* bring the|strong=\"H3548\"* first|strong=\"H1121\"* fruits of|strong=\"H1121\"* our dough, our wave offerings, the|strong=\"H3548\"* fruit of|strong=\"H1121\"* all kinds of|strong=\"H1121\"* trees, and|strong=\"H1121\"* the|strong=\"H3548\"* new wine and|strong=\"H1121\"* the|strong=\"H3548\"* oil, to|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*, to|strong=\"H1121\"* the|strong=\"H3548\"* rooms|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3548\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our God; and|strong=\"H1121\"* the|strong=\"H3548\"* tithes of|strong=\"H1121\"* our ground to|strong=\"H1121\"* the|strong=\"H3548\"* Levites|strong=\"H1121\"*; for|strong=\"H1004\"* they|strong=\"H3789\"*, the|strong=\"H3548\"* Levites|strong=\"H1121\"*, take|strong=\"H1121\"* the|strong=\"H3548\"* tithes in|strong=\"H1004\"* all our farming villages." + }, + { + "verseNum": 38, + "text": "The|strong=\"H3605\"* priest|strong=\"H3548\"*, the|strong=\"H3605\"* descendent of|strong=\"H1004\"* Aaron, shall|strong=\"H3548\"* be|strong=\"H6086\"* with|strong=\"H1004\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* when|strong=\"H5656\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* take|strong=\"H6237\"* tithes|strong=\"H4643\"*. The|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* bring|strong=\"H3881\"* up|strong=\"H3605\"* the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H1004\"* the|strong=\"H3605\"* tithes|strong=\"H4643\"* to|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H3605\"* God, to|strong=\"H1004\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"*, into|strong=\"H5892\"* the|strong=\"H3605\"* treasure house|strong=\"H1004\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H1004\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel and|strong=\"H1121\"* the|strong=\"H5927\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3881\"* shall|strong=\"H3548\"* bring|strong=\"H5927\"* the|strong=\"H5927\"* wave offering|strong=\"H5927\"* of|strong=\"H1121\"* the|strong=\"H5927\"* grain, of|strong=\"H1121\"* the|strong=\"H5927\"* new wine, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5927\"* oil, to|strong=\"H5927\"* the|strong=\"H5927\"* rooms|strong=\"H3957\"* where|strong=\"H1004\"* the|strong=\"H5927\"* vessels of|strong=\"H1121\"* the|strong=\"H5927\"* sanctuary|strong=\"H1004\"* are|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H5927\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* minister, with|strong=\"H5973\"* the|strong=\"H5927\"* gatekeepers and|strong=\"H1121\"* the|strong=\"H5927\"* singers. We will|strong=\"H1961\"* not|strong=\"H1961\"* forsake the|strong=\"H5927\"* house|strong=\"H1004\"* of|strong=\"H1121\"* our|strong=\"H1961\"* God." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4480\"* princes|strong=\"H8269\"* of|strong=\"H3027\"* the|strong=\"H4480\"* people|strong=\"H5971\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. The|strong=\"H4480\"* rest|strong=\"H7605\"* of|strong=\"H3027\"* the|strong=\"H4480\"* people|strong=\"H5971\"* also|strong=\"H3027\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"* to|strong=\"H3027\"* bring|strong=\"H5307\"* one|strong=\"H4480\"* of|strong=\"H3027\"* ten|strong=\"H6235\"* to|strong=\"H3027\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H4480\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*, and|strong=\"H3027\"* nine|strong=\"H8672\"* parts|strong=\"H3027\"* in|strong=\"H3427\"* the|strong=\"H4480\"* other|strong=\"H7605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* people|strong=\"H5971\"* blessed|strong=\"H1288\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H5971\"* who|strong=\"H3605\"* willingly|strong=\"H5068\"* offered|strong=\"H5068\"* themselves to|strong=\"H3389\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H3478\"* these|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5650\"* chiefs|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H5650\"* province|strong=\"H4082\"* who|strong=\"H3548\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*; but|strong=\"H3881\"* in|strong=\"H3427\"* the|strong=\"H5650\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, everyone lived|strong=\"H3427\"* in|strong=\"H3427\"* his|strong=\"H3478\"* possession in|strong=\"H3427\"* their|strong=\"H3427\"* cities|strong=\"H5892\"*—Israel|strong=\"H3478\"*, the|strong=\"H5650\"* priests|strong=\"H3548\"*, the|strong=\"H5650\"* Levites|strong=\"H3881\"*, the|strong=\"H5650\"* temple|strong=\"H5411\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* the|strong=\"H5650\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*’s servants|strong=\"H5650\"*." + }, + { + "verseNum": 4, + "text": "Some of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. Of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*: Athaiah|strong=\"H6265\"* the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shephatiah|strong=\"H8203\"*, the|strong=\"H3427\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahalalel|strong=\"H4111\"*, of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baruch|strong=\"H1263\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Colhozeh, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hazaiah|strong=\"H2382\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Adaiah|strong=\"H5718\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joiarib|strong=\"H3114\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H1263\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1263\"* Shilonite." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Perez|strong=\"H6557\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* were|strong=\"H1121\"* four hundred|strong=\"H3967\"* sixty-eight valiant|strong=\"H2428\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 7, + "text": "These are|strong=\"H1121\"* the|strong=\"H3470\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*: Sallu|strong=\"H5543\"* the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joed|strong=\"H3133\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pedaiah|strong=\"H6305\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kolaiah|strong=\"H6964\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ithiel, the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshaiah|strong=\"H3470\"*." + }, + { + "verseNum": 8, + "text": "After him Gabbai|strong=\"H1373\"* and|strong=\"H3967\"* Sallai|strong=\"H5543\"*, nine|strong=\"H8672\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*." + }, + { + "verseNum": 9, + "text": "Joel|strong=\"H3100\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zichri|strong=\"H2147\"* was|strong=\"H5892\"* their|strong=\"H5921\"* overseer|strong=\"H6496\"*; and|strong=\"H1121\"* Judah|strong=\"H3063\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hassenuah|strong=\"H5574\"* was|strong=\"H5892\"* second|strong=\"H4932\"* over|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 10, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"*: Jedaiah|strong=\"H3048\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joiarib|strong=\"H3114\"*, Jachin|strong=\"H3199\"*," + }, + { + "verseNum": 11, + "text": "Seraiah|strong=\"H8304\"* the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshullam|strong=\"H4918\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meraioth|strong=\"H4812\"*, the|strong=\"H6659\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahitub, the|strong=\"H6659\"* ruler|strong=\"H5057\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3967\"* their|strong=\"H6213\"* brothers|strong=\"H1121\"* who|strong=\"H1121\"* did|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* of|strong=\"H1121\"* the|strong=\"H6213\"* house|strong=\"H1004\"*, eight|strong=\"H8083\"* hundred|strong=\"H3967\"* twenty-two|strong=\"H6242\"*; and|strong=\"H3967\"* Adaiah|strong=\"H5718\"* the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeroham|strong=\"H3395\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pelaliah|strong=\"H6421\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amzi, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zechariah|strong=\"H2148\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, the|strong=\"H6213\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*," + }, + { + "verseNum": 13, + "text": "and|strong=\"H3967\"* his|strong=\"H8147\"* brothers|strong=\"H1121\"*, chiefs|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, two|strong=\"H8147\"* hundred|strong=\"H3967\"* forty-two|strong=\"H8147\"*; and|strong=\"H3967\"* Amashsai|strong=\"H6023\"* the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azarel|strong=\"H5832\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahzai, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshillemoth|strong=\"H4919\"*, the|strong=\"H1121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3967\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*, mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* valor|strong=\"H2428\"*, one|strong=\"H1121\"* hundred|strong=\"H3967\"* twenty-eight|strong=\"H6242\"*; and|strong=\"H3967\"* their|strong=\"H5921\"* overseer|strong=\"H6496\"* was|strong=\"H1121\"* Zabdiel|strong=\"H2068\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Haggedolim." + }, + { + "verseNum": 15, + "text": "Of|strong=\"H1121\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*: Shemaiah|strong=\"H8098\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hasshub|strong=\"H2815\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azrikam|strong=\"H5840\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bunni|strong=\"H1138\"*;" + }, + { + "verseNum": 16, + "text": "and|strong=\"H1004\"* Shabbethai|strong=\"H7678\"* and|strong=\"H1004\"* Jozabad|strong=\"H3107\"*, of|strong=\"H1004\"* the|strong=\"H5921\"* chiefs|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, who|strong=\"H3881\"* had|strong=\"H3881\"* the|strong=\"H5921\"* oversight of|strong=\"H1004\"* the|strong=\"H5921\"* outward|strong=\"H2435\"* business|strong=\"H4399\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*;" + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* Mattaniah|strong=\"H4983\"* the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zabdi|strong=\"H2067\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, who|strong=\"H1121\"* was|strong=\"H1121\"* the|strong=\"H3034\"* chief|strong=\"H7218\"* to|strong=\"H1121\"* begin|strong=\"H8462\"* the|strong=\"H3034\"* thanksgiving|strong=\"H3034\"* in|strong=\"H1121\"* prayer|strong=\"H8605\"*, and|strong=\"H1121\"* Bakbukiah|strong=\"H1229\"*, the|strong=\"H3034\"* second|strong=\"H4932\"* among|strong=\"H7218\"* his|strong=\"H4318\"* brothers|strong=\"H1121\"*; and|strong=\"H1121\"* Abda|strong=\"H5653\"* the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shammua|strong=\"H8051\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Galal|strong=\"H1559\"*, the|strong=\"H3034\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeduthun|strong=\"H3038\"*." + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* in|strong=\"H5892\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* city|strong=\"H5892\"* were|strong=\"H3881\"* two|strong=\"H3967\"* hundred|strong=\"H3967\"* eighty-four." + }, + { + "verseNum": 19, + "text": "Moreover the|strong=\"H8104\"* gatekeepers|strong=\"H7778\"*, Akkub|strong=\"H6126\"*, Talmon|strong=\"H2929\"*, and|strong=\"H3967\"* their|strong=\"H8104\"* brothers, who|strong=\"H8104\"* kept|strong=\"H8104\"* watch|strong=\"H8104\"* at|strong=\"H8147\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*, were|strong=\"H8147\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* seventy-two." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3605\"* residue|strong=\"H7605\"* of|strong=\"H5892\"* Israel|strong=\"H3478\"*, of|strong=\"H5892\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* were|strong=\"H3478\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*, everyone|strong=\"H3605\"* in|strong=\"H3478\"* his|strong=\"H3605\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Ophel|strong=\"H6077\"*; and|strong=\"H3427\"* Ziha|strong=\"H6727\"* and|strong=\"H3427\"* Gishpa|strong=\"H1658\"* were|strong=\"H3427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H5411\"* servants|strong=\"H5411\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H5048\"* overseer|strong=\"H6496\"* also|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5048\"* Levites|strong=\"H3881\"* at|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1004\"* Uzzi|strong=\"H5813\"* the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Bani|strong=\"H1137\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hashabiah|strong=\"H2811\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H5048\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mica|strong=\"H4316\"*, of|strong=\"H1121\"* the|strong=\"H5048\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Asaph, the|strong=\"H5048\"* singers|strong=\"H7891\"* responsible|strong=\"H5048\"* for|strong=\"H1004\"* the|strong=\"H5048\"* service|strong=\"H4399\"* of|strong=\"H1121\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* commandment|strong=\"H4687\"* from|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* concerning|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H4428\"* a|strong=\"H3068\"* settled|strong=\"H5921\"* provision|strong=\"H1697\"* for|strong=\"H3588\"* the|strong=\"H5921\"* singers|strong=\"H7891\"*, as|strong=\"H1697\"* every|strong=\"H3117\"* day|strong=\"H3117\"* required|strong=\"H3117\"*." + }, + { + "verseNum": 24, + "text": "Pethahiah|strong=\"H6611\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Meshezabel|strong=\"H4898\"*, of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zerah|strong=\"H2226\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, was|strong=\"H1697\"* at|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s hand|strong=\"H3027\"* in|strong=\"H4428\"* all|strong=\"H3605\"* matters|strong=\"H1697\"* concerning|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "As|strong=\"H3427\"* for|strong=\"H3427\"* the|strong=\"H3427\"* villages|strong=\"H2691\"* with|strong=\"H3427\"* their|strong=\"H3427\"* fields|strong=\"H7704\"*, some of|strong=\"H1121\"* the|strong=\"H3427\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Kiriath Arba and|strong=\"H1121\"* its towns|strong=\"H1323\"*, in|strong=\"H3427\"* Dibon|strong=\"H1769\"* and|strong=\"H1121\"* its towns|strong=\"H1323\"*, in|strong=\"H3427\"* Jekabzeel|strong=\"H3343\"* and|strong=\"H1121\"* its villages|strong=\"H2691\"*," + }, + { + "verseNum": 26, + "text": "in Jeshua|strong=\"H3442\"*, in Moladah|strong=\"H4137\"*, Beth Pelet," + }, + { + "verseNum": 27, + "text": "in|strong=\"H1323\"* Hazar Shual, in|strong=\"H1323\"* Beersheba and|strong=\"H1323\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 28, + "text": "in|strong=\"H1323\"* Ziklag|strong=\"H6860\"*, in|strong=\"H1323\"* Meconah|strong=\"H4368\"* and|strong=\"H1323\"* in|strong=\"H1323\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 29, + "text": "in En Rimmon, in Zorah|strong=\"H6881\"*, in Jarmuth|strong=\"H3412\"*," + }, + { + "verseNum": 30, + "text": "Zanoah|strong=\"H2182\"*, Adullam|strong=\"H5725\"*, and|strong=\"H7704\"* their|strong=\"H5704\"* villages|strong=\"H2691\"*, Lachish|strong=\"H3923\"* and|strong=\"H7704\"* its|strong=\"H1516\"* fields|strong=\"H7704\"*, and|strong=\"H7704\"* Azekah|strong=\"H5825\"* and|strong=\"H7704\"* its|strong=\"H1516\"* towns|strong=\"H1323\"*. So|strong=\"H5704\"* they|strong=\"H5704\"* encamped|strong=\"H2583\"* from|strong=\"H5704\"* Beersheba to|strong=\"H5704\"* the|strong=\"H5704\"* valley|strong=\"H1516\"* of|strong=\"H1323\"* Hinnom|strong=\"H2011\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"* also|strong=\"H1121\"* lived from|strong=\"H1121\"* Geba|strong=\"H1387\"* onward, at|strong=\"H1121\"* Michmash|strong=\"H4363\"* and|strong=\"H1121\"* Aija|strong=\"H5857\"*, and|strong=\"H1121\"* at|strong=\"H1121\"* Bethel|strong=\"H1008\"* and|strong=\"H1121\"* its towns|strong=\"H1323\"*," + }, + { + "verseNum": 32, + "text": "at Anathoth|strong=\"H6068\"*, Nob|strong=\"H5011\"*, Ananiah|strong=\"H6055\"*," + }, + { + "verseNum": 33, + "text": "Hazor|strong=\"H2674\"*, Ramah|strong=\"H7414\"*, Gittaim|strong=\"H1664\"*," + }, + { + "verseNum": 34, + "text": "Hadid|strong=\"H2307\"*, Zeboim|strong=\"H6650\"*, Neballat|strong=\"H5041\"*," + }, + { + "verseNum": 35, + "text": "Lod|strong=\"H3850\"*, and|strong=\"H1516\"* Ono, the valley|strong=\"H1516\"* of|strong=\"H1516\"* craftsmen|strong=\"H2791\"*." + }, + { + "verseNum": 36, + "text": "Of|strong=\"H4480\"* the|strong=\"H4480\"* Levites|strong=\"H3881\"*, certain divisions|strong=\"H4256\"* in|strong=\"H3063\"* Judah|strong=\"H3063\"* settled in|strong=\"H3063\"* Benjamin|strong=\"H1144\"*’s territory." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Now these|strong=\"H3881\"* are|strong=\"H1121\"* the|strong=\"H5927\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* the|strong=\"H5927\"* Levites|strong=\"H3881\"* who|strong=\"H3548\"* went|strong=\"H5927\"* up|strong=\"H5927\"* with|strong=\"H5973\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H5927\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, and|strong=\"H1121\"* Jeshua|strong=\"H3442\"*: Seraiah|strong=\"H8304\"*, Jeremiah|strong=\"H3414\"*, Ezra|strong=\"H5830\"*," + }, + { + "verseNum": 2, + "text": "Amariah, Malluch|strong=\"H4409\"*, Hattush|strong=\"H2407\"*," + }, + { + "verseNum": 3, + "text": "Shecaniah|strong=\"H7935\"*, Rehum|strong=\"H7348\"*, Meremoth|strong=\"H4822\"*," + }, + { + "verseNum": 4, + "text": "Iddo|strong=\"H5714\"*, Ginnethoi|strong=\"H1599\"*, Abijah," + }, + { + "verseNum": 5, + "text": "Mijamin|strong=\"H4326\"*, Maadiah|strong=\"H4573\"*, Bilgah|strong=\"H1083\"*," + }, + { + "verseNum": 6, + "text": "Shemaiah|strong=\"H8098\"*, Joiarib|strong=\"H3114\"*, Jedaiah|strong=\"H3048\"*," + }, + { + "verseNum": 7, + "text": "Sallu|strong=\"H5543\"*, Amok|strong=\"H5987\"*, Hilkiah|strong=\"H2518\"*, and|strong=\"H3117\"* Jedaiah|strong=\"H3048\"*. These|strong=\"H3117\"* were|strong=\"H3117\"* the|strong=\"H3117\"* chiefs|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3117\"* priests|strong=\"H3548\"* and|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H3117\"* brothers in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Jeshua|strong=\"H3442\"*." + }, + { + "verseNum": 8, + "text": "Moreover the|strong=\"H5921\"* Levites|strong=\"H3881\"* were|strong=\"H3881\"* Jeshua|strong=\"H3442\"*, Binnui|strong=\"H1131\"*, Kadmiel|strong=\"H6934\"*, Sherebiah|strong=\"H8274\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Mattaniah|strong=\"H4983\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* over|strong=\"H5921\"* the|strong=\"H5921\"* thanksgiving|strong=\"H1960\"* songs|strong=\"H1960\"*, he|strong=\"H1931\"* and|strong=\"H3063\"* his|strong=\"H5921\"* brothers." + }, + { + "verseNum": 9, + "text": "Also Bakbukiah|strong=\"H1229\"* and|strong=\"H4931\"* Unno, their|strong=\"H5048\"* brothers, were close to them|strong=\"H5048\"* according to their|strong=\"H5048\"* offices|strong=\"H4931\"*." + }, + { + "verseNum": 10, + "text": "Jeshua|strong=\"H3442\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joiakim|strong=\"H3113\"*, and|strong=\"H3205\"* Joiakim|strong=\"H3113\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Eliashib, and|strong=\"H3205\"* Eliashib became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Joiada|strong=\"H3111\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3205\"* Joiada|strong=\"H3111\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jonathan|strong=\"H3129\"*, and|strong=\"H3205\"* Jonathan|strong=\"H3129\"* became|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* Jaddua|strong=\"H3037\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Joiakim|strong=\"H3113\"* were|strong=\"H1961\"* priests|strong=\"H3548\"*, heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households: of|strong=\"H3117\"* Seraiah|strong=\"H8304\"*, Meraiah|strong=\"H4811\"*; of|strong=\"H3117\"* Jeremiah|strong=\"H3414\"*, Hananiah|strong=\"H2608\"*;" + }, + { + "verseNum": 13, + "text": "of Ezra|strong=\"H5830\"*, Meshullam|strong=\"H4918\"*; of Amariah, Jehohanan|strong=\"H3076\"*;" + }, + { + "verseNum": 14, + "text": "of|strong=\"H3130\"* Malluchi, Jonathan|strong=\"H3129\"*; of|strong=\"H3130\"* Shebaniah|strong=\"H7645\"*, Joseph|strong=\"H3130\"*;" + }, + { + "verseNum": 15, + "text": "of Harim|strong=\"H2766\"*, Adna|strong=\"H5733\"*; of Meraioth|strong=\"H4812\"*, Helkai|strong=\"H2517\"*;" + }, + { + "verseNum": 16, + "text": "of|strong=\"H2148\"* Iddo|strong=\"H5714\"*, Zechariah|strong=\"H2148\"*; of|strong=\"H2148\"* Ginnethon|strong=\"H1599\"*, Meshullam|strong=\"H4918\"*;" + }, + { + "verseNum": 17, + "text": "of Abijah, Zichri|strong=\"H2147\"*; of Miniamin|strong=\"H4509\"*, of Moadiah|strong=\"H4153\"*, Piltai|strong=\"H6408\"*;" + }, + { + "verseNum": 18, + "text": "of|strong=\"H8098\"* Bilgah|strong=\"H1083\"*, Shammua|strong=\"H8051\"*; of|strong=\"H8098\"* Shemaiah|strong=\"H8098\"*, Jehonathan|strong=\"H3083\"*;" + }, + { + "verseNum": 19, + "text": "of Joiarib|strong=\"H3114\"*, Mattenai|strong=\"H4982\"*; of Jedaiah|strong=\"H3048\"*, Uzzi|strong=\"H5813\"*;" + }, + { + "verseNum": 20, + "text": "of Sallai|strong=\"H5543\"*, Kallai|strong=\"H7040\"*; of Amok|strong=\"H5987\"*, Eber|strong=\"H5677\"*;" + }, + { + "verseNum": 21, + "text": "of Hilkiah|strong=\"H2518\"*, Hashabiah|strong=\"H2811\"*; of Jedaiah|strong=\"H3048\"*, Nethanel|strong=\"H5417\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3117\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Eliashib, Joiada|strong=\"H3111\"*, Johanan|strong=\"H3110\"*, and|strong=\"H3117\"* Jaddua|strong=\"H3037\"*, there|strong=\"H3117\"* were|strong=\"H3881\"* recorded|strong=\"H3789\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H3117\"* fathers’ households|strong=\"H3881\"*; also|strong=\"H3117\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H3117\"* Darius|strong=\"H1867\"* the|strong=\"H5921\"* Persian|strong=\"H6542\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, heads|strong=\"H7218\"* of|strong=\"H1121\"* fathers’ households, were|strong=\"H1121\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5921\"* chronicles|strong=\"H1697\"*, even|strong=\"H5704\"* until|strong=\"H5704\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Johanan|strong=\"H3110\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib." + }, + { + "verseNum": 24, + "text": "The|strong=\"H1984\"* chiefs|strong=\"H7218\"* of|strong=\"H1121\"* the|strong=\"H1984\"* Levites|strong=\"H3881\"*: Hashabiah|strong=\"H2811\"*, Sherebiah|strong=\"H8274\"*, and|strong=\"H1121\"* Jeshua|strong=\"H3442\"* the|strong=\"H1984\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kadmiel|strong=\"H6934\"*, with|strong=\"H1732\"* their|strong=\"H5980\"* brothers|strong=\"H1121\"* close|strong=\"H5980\"* to|strong=\"H1121\"* them|strong=\"H1121\"*, to|strong=\"H1121\"* praise|strong=\"H1984\"* and|strong=\"H1121\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* according to|strong=\"H1121\"* the|strong=\"H1984\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"* the|strong=\"H1984\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God, section next to|strong=\"H1121\"* section." + }, + { + "verseNum": 25, + "text": "Mattaniah|strong=\"H4983\"*, Bakbukiah|strong=\"H1229\"*, Obadiah|strong=\"H5662\"*, Meshullam|strong=\"H4918\"*, Talmon|strong=\"H2929\"*, and|strong=\"H8104\"* Akkub|strong=\"H6126\"* were|strong=\"H7778\"* gatekeepers|strong=\"H7778\"* keeping|strong=\"H8104\"* the|strong=\"H8104\"* watch|strong=\"H8104\"* at|strong=\"H7778\"* the|strong=\"H8104\"* storehouses of|strong=\"H8179\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 26, + "text": "These|strong=\"H3117\"* were|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Joiakim|strong=\"H3113\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeshua|strong=\"H3442\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jozadak|strong=\"H3136\"*, and|strong=\"H1121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* the|strong=\"H3117\"* governor|strong=\"H6346\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Ezra|strong=\"H5830\"* the|strong=\"H3117\"* priest|strong=\"H3548\"* and|strong=\"H1121\"* scribe|strong=\"H5608\"*." + }, + { + "verseNum": 27, + "text": "At|strong=\"H6213\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* of|strong=\"H2346\"* the|strong=\"H3605\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem|strong=\"H3389\"*, they|strong=\"H6213\"* sought|strong=\"H1245\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* out|strong=\"H1245\"* of|strong=\"H2346\"* all|strong=\"H3605\"* their|strong=\"H3605\"* places|strong=\"H4725\"*, to|strong=\"H6213\"* bring|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* to|strong=\"H6213\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* dedication|strong=\"H2598\"* with|strong=\"H6213\"* gladness|strong=\"H8057\"*, both|strong=\"H3605\"* with|strong=\"H6213\"* giving thanks|strong=\"H8426\"* and|strong=\"H3389\"* with|strong=\"H6213\"* singing|strong=\"H7892\"*, with|strong=\"H6213\"* cymbals|strong=\"H4700\"*, stringed instruments|strong=\"H7892\"*, and|strong=\"H3389\"* with|strong=\"H6213\"* harps|strong=\"H3658\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H4480\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* singers|strong=\"H7891\"* gathered themselves together, both|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* plain|strong=\"H3603\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* from|strong=\"H4480\"* the|strong=\"H4480\"* villages|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H4480\"* Netophathites|strong=\"H5200\"*;" + }, + { + "verseNum": 29, + "text": "also|strong=\"H3389\"* from|strong=\"H3389\"* Beth|strong=\"H1004\"* Gilgal|strong=\"H1537\"* and|strong=\"H1004\"* out of|strong=\"H1004\"* the|strong=\"H3588\"* fields|strong=\"H7704\"* of|strong=\"H1004\"* Geba|strong=\"H1387\"* and|strong=\"H1004\"* Azmaveth|strong=\"H5820\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* singers|strong=\"H7891\"* had|strong=\"H3588\"* built|strong=\"H1129\"* themselves|strong=\"H1992\"* villages|strong=\"H2691\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3548\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H3548\"* Levites|strong=\"H3881\"* purified|strong=\"H2891\"* themselves|strong=\"H2891\"*; and|strong=\"H3548\"* they|strong=\"H5971\"* purified|strong=\"H2891\"* the|strong=\"H3548\"* people|strong=\"H5971\"*, the|strong=\"H3548\"* gates|strong=\"H8179\"*, and|strong=\"H3548\"* the|strong=\"H3548\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 31, + "text": "Then|strong=\"H5975\"* I|strong=\"H5921\"* brought|strong=\"H5927\"* the|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"* up|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, and|strong=\"H3063\"* appointed|strong=\"H5975\"* two|strong=\"H8147\"* great|strong=\"H1419\"* companies who|strong=\"H3063\"* gave thanks|strong=\"H8426\"* and|strong=\"H3063\"* went|strong=\"H5927\"* in|strong=\"H5921\"* procession. One|strong=\"H8147\"* went|strong=\"H5927\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* dung gate|strong=\"H8179\"*;" + }, + { + "verseNum": 32, + "text": "and|strong=\"H3063\"* after them went|strong=\"H3212\"* Hoshaiah|strong=\"H1955\"*, with|strong=\"H3212\"* half|strong=\"H2677\"* of|strong=\"H8269\"* the|strong=\"H2677\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 33, + "text": "and|strong=\"H4918\"* Azariah|strong=\"H5838\"*, Ezra|strong=\"H5830\"*, and|strong=\"H4918\"* Meshullam|strong=\"H4918\"*," + }, + { + "verseNum": 34, + "text": "Judah|strong=\"H3063\"*, Benjamin|strong=\"H1144\"*, Shemaiah|strong=\"H8098\"*, Jeremiah|strong=\"H3414\"*," + }, + { + "verseNum": 35, + "text": "and|strong=\"H1121\"* some of|strong=\"H1121\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*’ sons|strong=\"H1121\"* with|strong=\"H3548\"* trumpets|strong=\"H2689\"*: Zechariah|strong=\"H2148\"* the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jonathan|strong=\"H3129\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Micaiah|strong=\"H4320\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph;" + }, + { + "verseNum": 36, + "text": "and|strong=\"H3063\"* his|strong=\"H1732\"* brothers, Shemaiah|strong=\"H8098\"*, Azarel|strong=\"H5832\"*, Milalai|strong=\"H4450\"*, Gilalai|strong=\"H1562\"*, Maai|strong=\"H4597\"*, Nethanel|strong=\"H5417\"*, Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Hanani|strong=\"H2607\"*, with|strong=\"H6440\"* the|strong=\"H6440\"* musical|strong=\"H7892\"* instruments|strong=\"H3627\"* of|strong=\"H3627\"* David|strong=\"H1732\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H3627\"* God; and|strong=\"H3063\"* Ezra|strong=\"H5830\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* was|strong=\"H1732\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 37, + "text": "By|strong=\"H5921\"* the|strong=\"H5921\"* spring|strong=\"H5927\"* gate|strong=\"H8179\"*, and|strong=\"H1004\"* straight|strong=\"H5048\"* before|strong=\"H5048\"* them|strong=\"H5921\"*, they|strong=\"H5921\"* went|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5921\"* the|strong=\"H5921\"* stairs|strong=\"H4609\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* ascent|strong=\"H4608\"* of|strong=\"H1004\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, above|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* water|strong=\"H4325\"* gate|strong=\"H8179\"* eastward|strong=\"H4217\"*." + }, + { + "verseNum": 38, + "text": "The|strong=\"H5921\"* other|strong=\"H8145\"* company of|strong=\"H2346\"* those|strong=\"H5921\"* who|strong=\"H5971\"* gave thanks|strong=\"H8426\"* went|strong=\"H1980\"* to|strong=\"H5704\"* meet|strong=\"H1980\"* them|strong=\"H5921\"*, and|strong=\"H1980\"* I|strong=\"H5704\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, with|strong=\"H1980\"* the|strong=\"H5921\"* half|strong=\"H2677\"* of|strong=\"H2346\"* the|strong=\"H5921\"* people|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"* above|strong=\"H5921\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H2346\"* the|strong=\"H5921\"* furnaces|strong=\"H8574\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* wide|strong=\"H7342\"* wall|strong=\"H2346\"*," + }, + { + "verseNum": 39, + "text": "and|strong=\"H6629\"* above|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Ephraim, and|strong=\"H6629\"* by|strong=\"H5921\"* the|strong=\"H5921\"* old|strong=\"H5975\"* gate|strong=\"H8179\"*, and|strong=\"H6629\"* by|strong=\"H5921\"* the|strong=\"H5921\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*, the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hananel|strong=\"H2606\"*, and|strong=\"H6629\"* the|strong=\"H5921\"* tower|strong=\"H4026\"* of|strong=\"H8179\"* Hammeah, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"* gate|strong=\"H8179\"*; and|strong=\"H6629\"* they|strong=\"H5921\"* stood|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* the|strong=\"H5921\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 40, + "text": "So|strong=\"H5975\"* the|strong=\"H5975\"* two|strong=\"H8147\"* companies of|strong=\"H1004\"* those|strong=\"H5973\"* who|strong=\"H5975\"* gave thanks|strong=\"H8426\"* in|strong=\"H1004\"* God’s house|strong=\"H1004\"* stood|strong=\"H5975\"*, and|strong=\"H1004\"* I|strong=\"H1004\"* and|strong=\"H1004\"* the|strong=\"H5975\"* half|strong=\"H2677\"* of|strong=\"H1004\"* the|strong=\"H5975\"* rulers|strong=\"H5461\"* with|strong=\"H5973\"* me|strong=\"H5973\"*;" + }, + { + "verseNum": 41, + "text": "and|strong=\"H3548\"* the|strong=\"H3548\"* priests|strong=\"H3548\"*, Eliakim, Maaseiah|strong=\"H4641\"*, Miniamin|strong=\"H4509\"*, Micaiah|strong=\"H4320\"*, Elioenai, Zechariah|strong=\"H2148\"*, and|strong=\"H3548\"* Hananiah|strong=\"H2608\"*, with|strong=\"H3548\"* trumpets|strong=\"H2689\"*;" + }, + { + "verseNum": 42, + "text": "and|strong=\"H8085\"* Maaseiah|strong=\"H4641\"*, Shemaiah|strong=\"H8098\"*, Eleazar, Uzzi|strong=\"H5813\"*, Jehohanan|strong=\"H3076\"*, Malchijah|strong=\"H4441\"*, Elam|strong=\"H5867\"*, and|strong=\"H8085\"* Ezer|strong=\"H5829\"*. The|strong=\"H8085\"* singers|strong=\"H7891\"* sang|strong=\"H7891\"* loud|strong=\"H8085\"*, with|strong=\"H8085\"* Jezrahiah|strong=\"H3156\"* their|strong=\"H8085\"* overseer|strong=\"H6496\"*." + }, + { + "verseNum": 43, + "text": "They|strong=\"H3588\"* offered|strong=\"H2076\"* great|strong=\"H1419\"* sacrifices|strong=\"H2077\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* rejoiced|strong=\"H8055\"*, for|strong=\"H3588\"* God had|strong=\"H3588\"* made|strong=\"H8055\"* them|strong=\"H8055\"* rejoice|strong=\"H8055\"* with|strong=\"H3389\"* great|strong=\"H1419\"* joy|strong=\"H8057\"*; and|strong=\"H3117\"* the|strong=\"H8085\"* women and|strong=\"H3117\"* the|strong=\"H8085\"* children|strong=\"H3206\"* also|strong=\"H1571\"* rejoiced|strong=\"H8055\"*, so|strong=\"H1571\"* that|strong=\"H3588\"* the|strong=\"H8085\"* joy|strong=\"H8057\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1931\"* heard|strong=\"H8085\"* even|strong=\"H1571\"* far|strong=\"H7350\"* away|strong=\"H7350\"*." + }, + { + "verseNum": 44, + "text": "On|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, men|strong=\"H6485\"* were|strong=\"H3881\"* appointed|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* rooms for|strong=\"H3588\"* the|strong=\"H5921\"* treasures, for|strong=\"H3588\"* the|strong=\"H5921\"* wave offerings|strong=\"H8641\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H5921\"* tithes|strong=\"H4643\"*, to|strong=\"H5921\"* gather|strong=\"H3664\"* into|strong=\"H5921\"* them|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* fields|strong=\"H7704\"* of|strong=\"H3117\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* the|strong=\"H5921\"* portions|strong=\"H4521\"* appointed|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* law|strong=\"H8451\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* Levites|strong=\"H3881\"*; for|strong=\"H3588\"* Judah|strong=\"H3063\"* rejoiced|strong=\"H8057\"* for|strong=\"H3588\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* and|strong=\"H3063\"* for|strong=\"H3588\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* who|strong=\"H1931\"* served|strong=\"H5975\"*." + }, + { + "verseNum": 45, + "text": "They performed|strong=\"H8104\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* their|strong=\"H8104\"* God and|strong=\"H1121\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H8104\"* purification|strong=\"H2893\"*, and|strong=\"H1121\"* so did|strong=\"H1732\"* the|strong=\"H8104\"* singers|strong=\"H7891\"* and|strong=\"H1121\"* the|strong=\"H8104\"* gatekeepers|strong=\"H7778\"*, according to|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* David|strong=\"H1732\"* and|strong=\"H1121\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"* his|strong=\"H8104\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 46, + "text": "For|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* David|strong=\"H1732\"* and|strong=\"H3117\"* Asaph of|strong=\"H3117\"* old|strong=\"H6924\"* there|strong=\"H3117\"* was|strong=\"H1732\"* a|strong=\"H3068\"* chief|strong=\"H7218\"* of|strong=\"H3117\"* the|strong=\"H3588\"* singers|strong=\"H7891\"*, and|strong=\"H3117\"* songs|strong=\"H7892\"* of|strong=\"H3117\"* praise|strong=\"H8416\"* and|strong=\"H3117\"* thanksgiving|strong=\"H3034\"* to|strong=\"H3117\"* God." + }, + { + "verseNum": 47, + "text": "All|strong=\"H3605\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Nehemiah|strong=\"H5166\"* gave|strong=\"H5414\"* the|strong=\"H3605\"* portions|strong=\"H4521\"* of|strong=\"H1121\"* the|strong=\"H3605\"* singers|strong=\"H7891\"* and|strong=\"H1121\"* the|strong=\"H3605\"* gatekeepers|strong=\"H7778\"*, as|strong=\"H1697\"* every|strong=\"H3605\"* day|strong=\"H3117\"* required|strong=\"H3117\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* set|strong=\"H5414\"* apart|strong=\"H6942\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H3478\"* for|strong=\"H3117\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"* set|strong=\"H5414\"* apart|strong=\"H6942\"* that|strong=\"H3605\"* which|strong=\"H1697\"* was|strong=\"H3478\"* for|strong=\"H3117\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Aaron." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* they|strong=\"H3117\"* read|strong=\"H7121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* book|strong=\"H5612\"* of|strong=\"H3117\"* Moses|strong=\"H4872\"* in|strong=\"H3117\"* the|strong=\"H3117\"* hearing of|strong=\"H3117\"* the|strong=\"H3117\"* people|strong=\"H5971\"*; and|strong=\"H4872\"* it|strong=\"H1931\"* was|strong=\"H1931\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H3117\"* it|strong=\"H1931\"* that|strong=\"H5971\"* an|strong=\"H4672\"* Ammonite|strong=\"H5984\"* and|strong=\"H4872\"* a|strong=\"H3068\"* Moabite|strong=\"H4125\"* should|strong=\"H3117\"* not|strong=\"H3808\"* enter into|strong=\"H5704\"* the|strong=\"H3117\"* assembly|strong=\"H6951\"* of|strong=\"H3117\"* God|strong=\"H3808\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 2, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t meet|strong=\"H6923\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* with|strong=\"H5921\"* bread|strong=\"H3899\"* and|strong=\"H1121\"* with|strong=\"H5921\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* hired|strong=\"H7936\"* Balaam|strong=\"H1109\"* against|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3478\"* curse|strong=\"H7045\"* them|strong=\"H5921\"*; however|strong=\"H3588\"*, our|strong=\"H5921\"* God|strong=\"H3808\"* turned|strong=\"H2015\"* the|strong=\"H5921\"* curse|strong=\"H7045\"* into|strong=\"H2015\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H3605\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* law|strong=\"H8451\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* separated all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* multitude|strong=\"H6154\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H2088\"* before|strong=\"H6440\"* this|strong=\"H2088\"*, Eliashib the|strong=\"H6440\"* priest|strong=\"H3548\"*, who|strong=\"H3548\"* was|strong=\"H1004\"* appointed|strong=\"H5414\"* over|strong=\"H5414\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* our|strong=\"H5414\"* God|strong=\"H5414\"*, being|strong=\"H1004\"* allied|strong=\"H7138\"* to|strong=\"H5414\"* Tobiah|strong=\"H2900\"*," + }, + { + "verseNum": 5, + "text": "had|strong=\"H1961\"* prepared|strong=\"H6213\"* for|strong=\"H6213\"* him|strong=\"H5414\"* a|strong=\"H3068\"* great|strong=\"H1419\"* room|strong=\"H3957\"*, where|strong=\"H8033\"* before|strong=\"H6440\"* they|strong=\"H8033\"* laid|strong=\"H5414\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"*, the|strong=\"H6440\"* frankincense|strong=\"H3828\"*, the|strong=\"H6440\"* vessels|strong=\"H3627\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* tithes|strong=\"H4643\"* of|strong=\"H3627\"* the|strong=\"H6440\"* grain|strong=\"H1715\"*, the|strong=\"H6440\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* oil|strong=\"H3323\"*, which|strong=\"H8033\"* were|strong=\"H1961\"* given|strong=\"H5414\"* by|strong=\"H5414\"* commandment|strong=\"H4687\"* to|strong=\"H1961\"* the|strong=\"H6440\"* Levites|strong=\"H3881\"*, the|strong=\"H6440\"* singers|strong=\"H7891\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* gatekeepers|strong=\"H7778\"*; and|strong=\"H1419\"* the|strong=\"H6440\"* wave offerings|strong=\"H4503\"* for|strong=\"H6213\"* the|strong=\"H6440\"* priests|strong=\"H3548\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* in|strong=\"H8141\"* all|strong=\"H3605\"* this|strong=\"H2088\"*, I|strong=\"H3588\"* was|strong=\"H1961\"* not|strong=\"H3808\"* at|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* in|strong=\"H8141\"* the|strong=\"H3605\"* thirty-second|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Artaxerxes king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon I|strong=\"H3588\"* went|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"*; and|strong=\"H4428\"* after|strong=\"H7093\"* some|strong=\"H4480\"* days|strong=\"H3117\"* I|strong=\"H3588\"* asked|strong=\"H7592\"* leave|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H1004\"* I|strong=\"H1004\"* came|strong=\"H7451\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1004\"* understood the|strong=\"H6213\"* evil|strong=\"H7451\"* that|strong=\"H2691\"* Eliashib had|strong=\"H3389\"* done|strong=\"H6213\"* for|strong=\"H6213\"* Tobiah|strong=\"H2900\"*, in|strong=\"H6213\"* preparing|strong=\"H6213\"* him|strong=\"H6213\"* a|strong=\"H3068\"* room|strong=\"H1004\"* in|strong=\"H6213\"* the|strong=\"H6213\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H7993\"* grieved|strong=\"H7489\"* me|strong=\"H4480\"* severely|strong=\"H3966\"*. Therefore I|strong=\"H4480\"* threw|strong=\"H7993\"* all|strong=\"H3605\"* Tobiah|strong=\"H2900\"*’s household|strong=\"H1004\"* stuff|strong=\"H3627\"* out|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3605\"* room|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7725\"* I|strong=\"H1004\"* commanded, and|strong=\"H7725\"* they|strong=\"H8033\"* cleansed|strong=\"H2891\"* the|strong=\"H7725\"* rooms|strong=\"H3957\"*. I|strong=\"H1004\"* brought|strong=\"H7725\"* into|strong=\"H7725\"* them|strong=\"H7725\"* the|strong=\"H7725\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* God’s house|strong=\"H1004\"*, with|strong=\"H1004\"* the|strong=\"H7725\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"* and|strong=\"H7725\"* the|strong=\"H7725\"* frankincense|strong=\"H3828\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* perceived|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* portions|strong=\"H4521\"* of|strong=\"H7704\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* had|strong=\"H3588\"* not|strong=\"H3808\"* been|strong=\"H3808\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, so|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H3588\"* Levites|strong=\"H3881\"* and|strong=\"H7704\"* the|strong=\"H3588\"* singers|strong=\"H7891\"*, who|strong=\"H3881\"* did|strong=\"H6213\"* the|strong=\"H3588\"* work|strong=\"H4399\"*, had|strong=\"H3588\"* each|strong=\"H5414\"* fled|strong=\"H1272\"* to|strong=\"H6213\"* his|strong=\"H5414\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5975\"* I|strong=\"H5921\"* contended|strong=\"H7378\"* with|strong=\"H1004\"* the|strong=\"H5921\"* rulers|strong=\"H5461\"*, and|strong=\"H1004\"* said, “Why|strong=\"H4069\"* is|strong=\"H1004\"* God’s house|strong=\"H1004\"* forsaken|strong=\"H5800\"*?” I|strong=\"H5921\"* gathered|strong=\"H6908\"* them|strong=\"H5921\"* together|strong=\"H6908\"*, and|strong=\"H1004\"* set|strong=\"H5975\"* them|strong=\"H5921\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H1004\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* brought the|strong=\"H3605\"* tithe|strong=\"H4643\"* of|strong=\"H3605\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, the|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, and|strong=\"H3063\"* the|strong=\"H3605\"* oil|strong=\"H3323\"* to|strong=\"H3063\"* the|strong=\"H3605\"* treasuries." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* made|strong=\"H2803\"* treasurers over|strong=\"H5921\"* the|strong=\"H5921\"* treasuries, Shelemiah|strong=\"H8018\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Zadok|strong=\"H6659\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*, Pedaiah|strong=\"H6305\"*: and|strong=\"H1121\"* next|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* was|strong=\"H1121\"* Hanan|strong=\"H2605\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zaccur|strong=\"H2139\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattaniah|strong=\"H4983\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1121\"* counted|strong=\"H2803\"* faithful, and|strong=\"H1121\"* their|strong=\"H5921\"* business was|strong=\"H1121\"* to|strong=\"H5921\"* distribute|strong=\"H2505\"* to|strong=\"H5921\"* their|strong=\"H5921\"* brothers|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "Remember|strong=\"H2142\"* me|strong=\"H5921\"*, my|strong=\"H5921\"* God, concerning|strong=\"H5921\"* this|strong=\"H2063\"*, and|strong=\"H1004\"* don’t wipe|strong=\"H4229\"* out|strong=\"H4229\"* my|strong=\"H5921\"* good|strong=\"H2617\"* deeds|strong=\"H2617\"* that|strong=\"H6213\"* I|strong=\"H5921\"* have|strong=\"H1004\"* done|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H5921\"* God, and|strong=\"H1004\"* for|strong=\"H5921\"* its|strong=\"H5921\"* observances." + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"* saw|strong=\"H7200\"* some|strong=\"H1992\"* men|strong=\"H3605\"* treading|strong=\"H1869\"* wine|strong=\"H3196\"* presses|strong=\"H1660\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* in|strong=\"H5921\"* Judah|strong=\"H3063\"*, bringing in|strong=\"H5921\"* sheaves|strong=\"H6194\"*, and|strong=\"H3063\"* loading|strong=\"H6006\"* donkeys|strong=\"H2543\"* with|strong=\"H5921\"* wine|strong=\"H3196\"*, grapes|strong=\"H6025\"*, figs|strong=\"H8384\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3117\"* burdens|strong=\"H4853\"* which|strong=\"H1992\"* they|strong=\"H1992\"* brought into|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*; and|strong=\"H3063\"* I|strong=\"H3117\"* testified|strong=\"H5749\"* against|strong=\"H5921\"* them|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H5921\"* which|strong=\"H1992\"* they|strong=\"H1992\"* sold|strong=\"H4376\"* food|strong=\"H6718\"*." + }, + { + "verseNum": 16, + "text": "Some|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Tyre|strong=\"H6876\"* also|strong=\"H1121\"* lived|strong=\"H3427\"* there|strong=\"H3427\"*, who|strong=\"H3605\"* brought in|strong=\"H3427\"* fish|strong=\"H1709\"* and|strong=\"H1121\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H1121\"* wares, and|strong=\"H1121\"* sold|strong=\"H4376\"* on|strong=\"H3427\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* to|strong=\"H3389\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H2088\"* I|strong=\"H3117\"* contended|strong=\"H7378\"* with|strong=\"H6213\"* the|strong=\"H6213\"* nobles|strong=\"H2715\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* said|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"*, “What|strong=\"H4100\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"* is|strong=\"H2088\"* this|strong=\"H2088\"* that|strong=\"H3117\"* you|strong=\"H3117\"* do|strong=\"H6213\"*, and|strong=\"H3063\"* profane|strong=\"H2490\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*?" + }, + { + "verseNum": 18, + "text": "Didn’t your|strong=\"H3605\"* fathers do|strong=\"H6213\"* this|strong=\"H2063\"*, and|strong=\"H3478\"* didn’t our|strong=\"H3605\"* God|strong=\"H3808\"* bring|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H3478\"* on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*? Yet|strong=\"H3808\"* you|strong=\"H3605\"* bring|strong=\"H6213\"* more|strong=\"H3808\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* Israel|strong=\"H3478\"* by|strong=\"H5921\"* profaning|strong=\"H2490\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"*.”" + }, + { + "verseNum": 19, + "text": "It|strong=\"H5921\"* came|strong=\"H1961\"* to|strong=\"H5704\"* pass|strong=\"H1961\"* that|strong=\"H3117\"* when|strong=\"H1961\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* began|strong=\"H1961\"* to|strong=\"H5704\"* be|strong=\"H1961\"* dark|strong=\"H6751\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"*, I|strong=\"H3117\"* commanded that|strong=\"H3117\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* should|strong=\"H3117\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*, and|strong=\"H3117\"* commanded that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* opened|strong=\"H6605\"* until|strong=\"H5704\"* after|strong=\"H5921\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"*. I|strong=\"H3117\"* set|strong=\"H5975\"* some|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H5921\"* servants|strong=\"H5288\"* over|strong=\"H5921\"* the|strong=\"H6440\"* gates|strong=\"H8179\"*, so|strong=\"H1961\"* that|strong=\"H3117\"* no|strong=\"H3808\"* burden|strong=\"H4853\"* should|strong=\"H3117\"* be|strong=\"H1961\"* brought|strong=\"H1961\"* in|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "So the|strong=\"H3605\"* merchants|strong=\"H7402\"* and|strong=\"H3389\"* sellers|strong=\"H4376\"* of|strong=\"H3605\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H3605\"* wares camped outside|strong=\"H2351\"* of|strong=\"H3605\"* Jerusalem|strong=\"H3389\"* once|strong=\"H6471\"* or|strong=\"H4376\"* twice|strong=\"H6471\"*." + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7971\"* I|strong=\"H6256\"* testified|strong=\"H5749\"* against|strong=\"H4480\"* them|strong=\"H7971\"*, and|strong=\"H7971\"* said to|strong=\"H7971\"* them|strong=\"H7971\"*, “Why|strong=\"H4069\"* do|strong=\"H8138\"* you|strong=\"H7971\"* stay|strong=\"H3885\"* around|strong=\"H3027\"* the|strong=\"H4480\"* wall|strong=\"H2346\"*? If|strong=\"H1931\"* you|strong=\"H7971\"* do|strong=\"H8138\"* so|strong=\"H4480\"* again|strong=\"H7971\"*, I|strong=\"H6256\"* will|strong=\"H3027\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H3027\"* you|strong=\"H7971\"*.” From|strong=\"H4480\"* that|strong=\"H1931\"* time|strong=\"H6256\"* on|strong=\"H3027\"*, they|strong=\"H3808\"* didn’t come|strong=\"H2346\"* on|strong=\"H3027\"* the|strong=\"H4480\"* Sabbath|strong=\"H7676\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3117\"* commanded|strong=\"H1571\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* purify|strong=\"H2891\"* themselves|strong=\"H6942\"*, and|strong=\"H3117\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H3117\"* come|strong=\"H1961\"* and|strong=\"H3117\"* keep|strong=\"H8104\"* the|strong=\"H5921\"* gates|strong=\"H8179\"*, to|strong=\"H1961\"* sanctify|strong=\"H6942\"* the|strong=\"H5921\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Remember|strong=\"H2142\"* me|strong=\"H5921\"* for|strong=\"H5921\"* this|strong=\"H2063\"* also|strong=\"H1571\"*, my|strong=\"H8104\"* God, and|strong=\"H3117\"* spare|strong=\"H2347\"* me|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* greatness|strong=\"H7230\"* of|strong=\"H3117\"* your|strong=\"H5921\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"* also|strong=\"H1571\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* Jews|strong=\"H3064\"* who|strong=\"H3427\"* had|strong=\"H3064\"* married|strong=\"H3427\"* women|strong=\"H1992\"* of|strong=\"H3117\"* Ashdod, of|strong=\"H3117\"* Ammon|strong=\"H4125\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* Moab|strong=\"H4125\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H1121\"* their|strong=\"H5234\"* children|strong=\"H1121\"* spoke|strong=\"H1696\"* half|strong=\"H2677\"* in|strong=\"H1696\"* the|strong=\"H1696\"* speech|strong=\"H3956\"* of|strong=\"H1121\"* Ashdod, and|strong=\"H1121\"* could|strong=\"H5234\"* not|strong=\"H1696\"* speak|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H1696\"* Jews’ language|strong=\"H3956\"*, but|strong=\"H1696\"* according to|strong=\"H1696\"* the|strong=\"H1696\"* language|strong=\"H3956\"* of|strong=\"H1121\"* each|strong=\"H5971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* contended|strong=\"H7378\"* with|strong=\"H5973\"* them|strong=\"H5414\"*, cursed|strong=\"H7043\"* them|strong=\"H5414\"*, struck|strong=\"H5221\"* certain of|strong=\"H1121\"* them|strong=\"H5414\"*, plucked off|strong=\"H5375\"* their|strong=\"H5375\"* hair|strong=\"H4803\"*, and|strong=\"H1121\"* made|strong=\"H5414\"* them|strong=\"H5414\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* God|strong=\"H5414\"*, “You|strong=\"H5414\"* shall|strong=\"H1121\"* not|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* their|strong=\"H5375\"* sons|strong=\"H1121\"*, nor|strong=\"H1121\"* take|strong=\"H5375\"* their|strong=\"H5375\"* daughters|strong=\"H1323\"* for|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, or|strong=\"H1121\"* for|strong=\"H1121\"* yourselves|strong=\"H5375\"*." + }, + { + "verseNum": 26, + "text": "Didn’t Solomon|strong=\"H8010\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* sin|strong=\"H2398\"* by|strong=\"H5921\"* these|strong=\"H3605\"* things|strong=\"H3605\"*? Yet|strong=\"H1571\"* among|strong=\"H5921\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* king|strong=\"H4428\"* like|strong=\"H3644\"* him|strong=\"H5414\"*, and|strong=\"H3478\"* he|strong=\"H3605\"* was|strong=\"H1961\"* loved by|strong=\"H5921\"* his|strong=\"H3605\"* God|strong=\"H5414\"*, and|strong=\"H3478\"* God|strong=\"H5414\"* made|strong=\"H5414\"* him|strong=\"H5414\"* king|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*. Nevertheless|strong=\"H1571\"* foreign|strong=\"H5237\"* women caused|strong=\"H5414\"* even|strong=\"H1571\"* him|strong=\"H5414\"* to|strong=\"H3478\"* sin|strong=\"H2398\"*." + }, + { + "verseNum": 27, + "text": "Shall|strong=\"H7451\"* we|strong=\"H3068\"* then|strong=\"H6213\"* listen|strong=\"H8085\"* to|strong=\"H6213\"* you|strong=\"H3605\"* to|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*, to|strong=\"H6213\"* trespass|strong=\"H4603\"* against|strong=\"H2063\"* our|strong=\"H3605\"* God in|strong=\"H3427\"* marrying|strong=\"H3427\"* foreign|strong=\"H5237\"* women|strong=\"H7451\"*?”" + }, + { + "verseNum": 28, + "text": "One|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Joiada|strong=\"H3111\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Eliashib the|strong=\"H5921\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, was|strong=\"H1121\"* son-in-law|strong=\"H2860\"* to|strong=\"H5921\"* Sanballat|strong=\"H5571\"* the|strong=\"H5921\"* Horonite|strong=\"H2772\"*; therefore|strong=\"H5921\"* I|strong=\"H5921\"* chased|strong=\"H1272\"* him|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "Remember|strong=\"H2142\"* them|strong=\"H1992\"*, my|strong=\"H5921\"* God, because|strong=\"H5921\"* they|strong=\"H1992\"* have|strong=\"H1992\"* defiled|strong=\"H1352\"* the|strong=\"H5921\"* priesthood|strong=\"H3550\"* and|strong=\"H1285\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H5921\"* the|strong=\"H5921\"* priesthood|strong=\"H3550\"* and|strong=\"H1285\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 30, + "text": "Thus I|strong=\"H3605\"* cleansed|strong=\"H2891\"* them|strong=\"H5975\"* from|strong=\"H3881\"* all|strong=\"H3605\"* foreigners|strong=\"H5236\"* and|strong=\"H3548\"* appointed|strong=\"H5975\"* duties|strong=\"H4931\"* for|strong=\"H5975\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3548\"* for|strong=\"H5975\"* the|strong=\"H3605\"* Levites|strong=\"H3881\"*, everyone|strong=\"H3605\"* in|strong=\"H5975\"* his|strong=\"H3605\"* work|strong=\"H4399\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H2142\"* wood|strong=\"H6086\"* offering|strong=\"H7133\"*, at|strong=\"H2896\"* appointed|strong=\"H2163\"* times|strong=\"H6256\"*, and|strong=\"H6086\"* for|strong=\"H6086\"* the|strong=\"H2142\"* first|strong=\"H1061\"* fruits|strong=\"H1061\"*. Remember|strong=\"H2142\"* me|strong=\"H2142\"*, my|strong=\"H2142\"* God, for|strong=\"H6086\"* good|strong=\"H2896\"*." + } + ] + } + ] + }, + { + "name": "Esther", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Ahasuerus (this|strong=\"H1931\"* is|strong=\"H1931\"* Ahasuerus who|strong=\"H1931\"* reigned|strong=\"H4427\"* from|strong=\"H3117\"* India|strong=\"H1912\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Ethiopia|strong=\"H3568\"*, over|strong=\"H4427\"* one|strong=\"H1931\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"*)," + }, + { + "verseNum": 2, + "text": "in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, when|strong=\"H3117\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus sat|strong=\"H7675\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* his|strong=\"H5921\"* kingdom|strong=\"H4438\"*, which|strong=\"H1992\"* was|strong=\"H3117\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* the|strong=\"H5921\"* palace|strong=\"H1002\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"H8141\"* the|strong=\"H3605\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H8141\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, he|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H5650\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*; the|strong=\"H3605\"* army|strong=\"H2426\"* of|strong=\"H8141\"* Persia|strong=\"H6539\"* and|strong=\"H5650\"* Media|strong=\"H4074\"*, the|strong=\"H3605\"* nobles|strong=\"H6579\"* and|strong=\"H5650\"* princes|strong=\"H8269\"* of|strong=\"H8141\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* being|strong=\"H4427\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3117\"* displayed|strong=\"H7200\"* the|strong=\"H7200\"* riches|strong=\"H6239\"* of|strong=\"H3117\"* his|strong=\"H7200\"* glorious|strong=\"H8597\"* kingdom|strong=\"H4438\"* and|strong=\"H3967\"* the|strong=\"H7200\"* honor|strong=\"H3519\"* of|strong=\"H3117\"* his|strong=\"H7200\"* excellent|strong=\"H8597\"* majesty|strong=\"H1420\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, even one|strong=\"H7200\"* hundred|strong=\"H3967\"* eighty|strong=\"H8084\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3117\"* these|strong=\"H6213\"* days|strong=\"H3117\"* were|strong=\"H5971\"* fulfilled|strong=\"H4390\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* seven|strong=\"H7651\"* day|strong=\"H3117\"* feast|strong=\"H4960\"* for|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* present|strong=\"H4672\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"* the|strong=\"H3605\"* palace|strong=\"H1002\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H4428\"* small|strong=\"H6996\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* garden|strong=\"H1594\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s palace|strong=\"H1002\"*." + }, + { + "verseNum": 6, + "text": "There were|strong=\"H5921\"* hangings of|strong=\"H5982\"* white|strong=\"H2353\"* and|strong=\"H3701\"* blue|strong=\"H8504\"* material, fastened with|strong=\"H5921\"* cords|strong=\"H2256\"* of|strong=\"H5982\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* and|strong=\"H3701\"* purple|strong=\"H8504\"* to|strong=\"H5921\"* silver|strong=\"H3701\"* rings|strong=\"H1550\"* and|strong=\"H3701\"* marble|strong=\"H8336\"* pillars|strong=\"H5982\"*. The|strong=\"H5921\"* couches|strong=\"H4296\"* were|strong=\"H5921\"* of|strong=\"H5982\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, on|strong=\"H5921\"* a|strong=\"H3068\"* pavement|strong=\"H7531\"* of|strong=\"H5982\"* red, white|strong=\"H2353\"*, yellow, and|strong=\"H3701\"* black|strong=\"H5508\"* marble|strong=\"H8336\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3027\"* gave|strong=\"H8248\"* them|strong=\"H3027\"* drinks|strong=\"H8248\"* in|strong=\"H4428\"* golden|strong=\"H2091\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* various kinds|strong=\"H3627\"*, including|strong=\"H4428\"* royal|strong=\"H4438\"* wine|strong=\"H3196\"* in|strong=\"H4428\"* abundance|strong=\"H7227\"*, according|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3027\"* bounty|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3027\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H5921\"* accordance|strong=\"H5921\"* with|strong=\"H1004\"* the|strong=\"H3605\"* law|strong=\"H1881\"*, the|strong=\"H3605\"* drinking|strong=\"H8360\"* was|strong=\"H4428\"* not|strong=\"H6213\"* compulsory; for|strong=\"H3588\"* so|strong=\"H3651\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* instructed|strong=\"H3245\"* all|strong=\"H3605\"* the|strong=\"H3605\"* officials of|strong=\"H4428\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* every|strong=\"H3605\"* man|strong=\"H3605\"*’s pleasure|strong=\"H7522\"*." + }, + { + "verseNum": 9, + "text": "Also|strong=\"H1571\"* Vashti|strong=\"H2060\"* the|strong=\"H6213\"* queen|strong=\"H4436\"* made|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* the|strong=\"H6213\"* women in|strong=\"H6213\"* the|strong=\"H6213\"* royal|strong=\"H4438\"* house|strong=\"H1004\"* which|strong=\"H1004\"* belonged to|strong=\"H6213\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 10, + "text": "On|strong=\"H3117\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* day|strong=\"H3117\"*, when|strong=\"H3117\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* was|strong=\"H3820\"* merry|strong=\"H2896\"* with|strong=\"H6440\"* wine|strong=\"H3196\"*, he|strong=\"H3117\"* commanded Mehuman|strong=\"H4104\"*, Biztha, Harbona|strong=\"H2726\"*, Bigtha, and|strong=\"H4428\"* Abagtha, Zethar|strong=\"H2242\"*, and|strong=\"H4428\"* Carcass, the|strong=\"H6440\"* seven|strong=\"H7651\"* eunuchs|strong=\"H5631\"* who|strong=\"H4428\"* served|strong=\"H8334\"* in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* Ahasuerus the|strong=\"H6440\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 11, + "text": "to|strong=\"H6440\"* bring Vashti|strong=\"H2060\"* the|strong=\"H6440\"* queen|strong=\"H4436\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* wearing the|strong=\"H6440\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"*, to|strong=\"H6440\"* show|strong=\"H7200\"* the|strong=\"H6440\"* people|strong=\"H5971\"* and|strong=\"H4428\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* her|strong=\"H7200\"* beauty|strong=\"H3308\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* was|strong=\"H1931\"* beautiful|strong=\"H2896\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H4428\"* the|strong=\"H1697\"* queen|strong=\"H4436\"* Vashti|strong=\"H2060\"* refused|strong=\"H3985\"* to|strong=\"H3027\"* come|strong=\"H2534\"* at|strong=\"H4428\"* the|strong=\"H1697\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* by|strong=\"H3027\"* the|strong=\"H1697\"* eunuchs|strong=\"H5631\"*. Therefore the|strong=\"H1697\"* king|strong=\"H4428\"* was|strong=\"H1697\"* very|strong=\"H3966\"* angry|strong=\"H7107\"*, and|strong=\"H4428\"* his|strong=\"H3027\"* anger|strong=\"H2534\"* burned|strong=\"H1197\"* in|strong=\"H4428\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3651\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H6256\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*, who|strong=\"H3605\"* knew|strong=\"H3045\"* the|strong=\"H3605\"* times|strong=\"H6256\"* (for|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1697\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s custom|strong=\"H3651\"* to|strong=\"H6256\"* consult those|strong=\"H3605\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* law|strong=\"H1881\"* and|strong=\"H4428\"* judgment|strong=\"H1779\"*;" + }, + { + "verseNum": 14, + "text": "and|strong=\"H4428\"* next|strong=\"H7138\"* to|strong=\"H6440\"* him|strong=\"H6440\"* were|strong=\"H8269\"* Carshena|strong=\"H3771\"*, Shethar|strong=\"H8369\"*, Admatha, Tarshish|strong=\"H8659\"*, Meres|strong=\"H4825\"*, Marsena|strong=\"H4826\"*, and|strong=\"H4428\"* Memucan|strong=\"H4462\"*, the|strong=\"H6440\"* seven|strong=\"H7651\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* and|strong=\"H4428\"* Media|strong=\"H4074\"*, who|strong=\"H3427\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* first|strong=\"H7223\"* in|strong=\"H3427\"* the|strong=\"H6440\"* kingdom|strong=\"H4438\"*)," + }, + { + "verseNum": 15, + "text": "“What|strong=\"H4100\"* shall|strong=\"H4428\"* we|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Queen|strong=\"H4436\"* Vashti|strong=\"H2060\"* according|strong=\"H5921\"* to|strong=\"H6213\"* law|strong=\"H1881\"*, because|strong=\"H5921\"* she|strong=\"H5921\"* has|strong=\"H4428\"* not|strong=\"H3808\"* done|strong=\"H6213\"* the|strong=\"H5921\"* bidding of|strong=\"H4428\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus by|strong=\"H3027\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"*?”" + }, + { + "verseNum": 16, + "text": "Memucan|strong=\"H4462\"* answered before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, “Vashti|strong=\"H2060\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* has|strong=\"H4428\"* not|strong=\"H3808\"* done|strong=\"H3605\"* wrong|strong=\"H5753\"* to|strong=\"H5921\"* just|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, but|strong=\"H3588\"* also|strong=\"H4428\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* this|strong=\"H1697\"* deed|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* will|strong=\"H4428\"* become|strong=\"H3318\"* known|strong=\"H3808\"* to|strong=\"H3318\"* all|strong=\"H3605\"* women, causing them|strong=\"H5921\"* to|strong=\"H3318\"* show contempt for|strong=\"H3588\"* their|strong=\"H3605\"* husbands|strong=\"H1167\"* when|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H1697\"* reported|strong=\"H3318\"*, ‘King|strong=\"H4428\"* Ahasuerus commanded Vashti|strong=\"H2060\"* the|strong=\"H3605\"* queen|strong=\"H4436\"* to|strong=\"H3318\"* be|strong=\"H3808\"* brought|strong=\"H3318\"* in|strong=\"H5921\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* she|strong=\"H3588\"* didn’t come|strong=\"H3318\"*.’" + }, + { + "verseNum": 18, + "text": "Today|strong=\"H3117\"*, the|strong=\"H3605\"* princesses|strong=\"H8282\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* and|strong=\"H4428\"* Media|strong=\"H4074\"* who|strong=\"H3605\"* have|strong=\"H1697\"* heard|strong=\"H8085\"* of|strong=\"H4428\"* the|strong=\"H3605\"* queen|strong=\"H4436\"*’s deed|strong=\"H1697\"* will|strong=\"H4428\"* tell|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s princes|strong=\"H8269\"*. This|strong=\"H2088\"* will|strong=\"H4428\"* cause|strong=\"H1697\"* much|strong=\"H1697\"* contempt and|strong=\"H4428\"* wrath|strong=\"H7110\"*." + }, + { + "verseNum": 19, + "text": "“If it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* a|strong=\"H3068\"* royal|strong=\"H4438\"* commandment|strong=\"H1697\"* go|strong=\"H3318\"* from|strong=\"H4480\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H3808\"* written|strong=\"H3789\"* among|strong=\"H4480\"* the|strong=\"H6440\"* laws|strong=\"H1881\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Persians|strong=\"H6539\"* and|strong=\"H4428\"* the|strong=\"H6440\"* Medes|strong=\"H4074\"*, so|strong=\"H4480\"* that|strong=\"H1697\"* it|strong=\"H5414\"* cannot|strong=\"H3808\"* be|strong=\"H3808\"* altered|strong=\"H5674\"*, that|strong=\"H1697\"* Vashti|strong=\"H2060\"* may|strong=\"H4428\"* never|strong=\"H3808\"* again|strong=\"H6440\"* come|strong=\"H3318\"* before|strong=\"H6440\"* King|strong=\"H4428\"* Ahasuerus; and|strong=\"H4428\"* let|strong=\"H5414\"* the|strong=\"H6440\"* king|strong=\"H4428\"* give|strong=\"H5414\"* her|strong=\"H5414\"* royal|strong=\"H4438\"* estate|strong=\"H4438\"* to|strong=\"H3318\"* another|strong=\"H7468\"* who|strong=\"H4428\"* is|strong=\"H1697\"* better|strong=\"H2896\"* than|strong=\"H4480\"* she|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s decree|strong=\"H6599\"* which|strong=\"H1931\"* he|strong=\"H1931\"* shall|strong=\"H4428\"* make|strong=\"H6213\"* is|strong=\"H1931\"* published|strong=\"H8085\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"* (for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H1931\"* great|strong=\"H1419\"*), all|strong=\"H3605\"* the|strong=\"H3605\"* wives will|strong=\"H4428\"* give|strong=\"H5414\"* their|strong=\"H3605\"* husbands|strong=\"H1167\"* honor|strong=\"H3366\"*, both|strong=\"H3605\"* great|strong=\"H1419\"* and|strong=\"H4428\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 21, + "text": "This|strong=\"H6213\"* advice|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H4428\"* the|strong=\"H6213\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* did|strong=\"H6213\"* according to|strong=\"H6213\"* the|strong=\"H6213\"* word|strong=\"H1697\"* of|strong=\"H4428\"* Memucan|strong=\"H4462\"*:" + }, + { + "verseNum": 22, + "text": "for|strong=\"H7971\"* he|strong=\"H3605\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* into|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*, into|strong=\"H1961\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according to|strong=\"H1696\"* its|strong=\"H3605\"* writing|strong=\"H3791\"*, and|strong=\"H7971\"* to|strong=\"H1696\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H1004\"* their|strong=\"H3605\"* language|strong=\"H3956\"*, that|strong=\"H5971\"* every|strong=\"H3605\"* man|strong=\"H3605\"* should|strong=\"H4428\"* rule|strong=\"H8323\"* his|strong=\"H3605\"* own|strong=\"H1961\"* house|strong=\"H1004\"*, speaking|strong=\"H1696\"* in|strong=\"H1004\"* the|strong=\"H3605\"* language|strong=\"H3956\"* of|strong=\"H4428\"* his|strong=\"H3605\"* own|strong=\"H1961\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H6213\"* things|strong=\"H1697\"*, when|strong=\"H6213\"* the|strong=\"H5921\"* wrath|strong=\"H2534\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus was|strong=\"H1697\"* pacified|strong=\"H7918\"*, he|strong=\"H6213\"* remembered|strong=\"H2142\"* Vashti|strong=\"H2060\"*, and|strong=\"H4428\"* what|strong=\"H1697\"* she|strong=\"H5921\"* had|strong=\"H4428\"* done|strong=\"H6213\"*, and|strong=\"H4428\"* what|strong=\"H1697\"* was|strong=\"H1697\"* decreed|strong=\"H1504\"* against|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H4428\"* the|strong=\"H1245\"* king|strong=\"H4428\"*’s servants|strong=\"H5288\"* who|strong=\"H5288\"* served|strong=\"H8334\"* him|strong=\"H1245\"* said, “Let beautiful|strong=\"H2896\"* young|strong=\"H5288\"* virgins|strong=\"H1330\"* be|strong=\"H4428\"* sought|strong=\"H1245\"* for|strong=\"H4428\"* the|strong=\"H1245\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* appoint|strong=\"H6485\"* officers|strong=\"H5631\"* in|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* his|strong=\"H3605\"* kingdom|strong=\"H4438\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* may|strong=\"H4428\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* all|strong=\"H3605\"* the|strong=\"H3605\"* beautiful|strong=\"H2896\"* young|strong=\"H5291\"* virgins|strong=\"H1330\"* to|strong=\"H5414\"* the|strong=\"H3605\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* women|strong=\"H1330\"*’s house|strong=\"H1004\"*, to|strong=\"H5414\"* the|strong=\"H3605\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H1330\"*. Let|strong=\"H5414\"* cosmetics|strong=\"H8562\"* be|strong=\"H3027\"* given|strong=\"H5414\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H4428\"* let|strong=\"H3651\"* the|strong=\"H6213\"* maiden|strong=\"H5291\"* who|strong=\"H4428\"* pleases|strong=\"H5869\"* the|strong=\"H6213\"* king|strong=\"H4428\"* be|strong=\"H1697\"* queen|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* Vashti|strong=\"H2060\"*.” The|strong=\"H6213\"* thing|strong=\"H1697\"* pleased|strong=\"H3190\"* the|strong=\"H6213\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* he|strong=\"H3651\"* did|strong=\"H6213\"* so|strong=\"H3651\"*." + }, + { + "verseNum": 5, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* certain Jew|strong=\"H3064\"* in|strong=\"H1121\"* the|strong=\"H1961\"* citadel|strong=\"H1002\"* of|strong=\"H1121\"* Susa|strong=\"H7800\"* whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Mordecai|strong=\"H4782\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jair|strong=\"H2971\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shimei|strong=\"H8096\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kish|strong=\"H7027\"*, a|strong=\"H3068\"* Benjamite|strong=\"H1145\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3063\"* had|strong=\"H4428\"* been carried|strong=\"H1540\"* away|strong=\"H1540\"* from|strong=\"H1540\"* Jerusalem|strong=\"H3389\"* with|strong=\"H5973\"* the|strong=\"H5973\"* captives|strong=\"H1473\"* who|strong=\"H3063\"* had|strong=\"H4428\"* been carried|strong=\"H1540\"* away|strong=\"H1540\"* with|strong=\"H5973\"* Jeconiah|strong=\"H3204\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, whom Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H5973\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon had|strong=\"H4428\"* carried|strong=\"H1540\"* away|strong=\"H1540\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* brought|strong=\"H3947\"* up|strong=\"H3947\"* Hadassah|strong=\"H1919\"*, that|strong=\"H3588\"* is|strong=\"H1931\"*, Esther, his|strong=\"H3947\"* uncle|strong=\"H1730\"*’s daughter|strong=\"H1323\"*; for|strong=\"H3588\"* she|strong=\"H1931\"* had|strong=\"H1961\"* neither father nor|strong=\"H8389\"* mother. The|strong=\"H3588\"* maiden|strong=\"H5291\"* was|strong=\"H1961\"* fair|strong=\"H3303\"* and|strong=\"H2896\"* beautiful|strong=\"H3303\"*; and|strong=\"H2896\"* when|strong=\"H3588\"* her|strong=\"H3947\"* father and|strong=\"H2896\"* mother were|strong=\"H1961\"* dead|strong=\"H4194\"*, Mordecai|strong=\"H4782\"* took|strong=\"H3947\"* her|strong=\"H3947\"* for|strong=\"H3588\"* his|strong=\"H3947\"* own|strong=\"H1961\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3947\"*, when|strong=\"H1961\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H8104\"* decree|strong=\"H1881\"* was|strong=\"H1961\"* heard|strong=\"H8085\"*, and|strong=\"H4428\"* when|strong=\"H1961\"* many|strong=\"H7227\"* maidens|strong=\"H5291\"* were|strong=\"H1961\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H1961\"* the|strong=\"H8085\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*, to|strong=\"H1961\"* the|strong=\"H8085\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"*, Esther was|strong=\"H1961\"* taken|strong=\"H3947\"* into|strong=\"H3027\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, to|strong=\"H1961\"* the|strong=\"H8085\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Hegai|strong=\"H1896\"*, keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H8085\"* women|strong=\"H5291\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* maiden|strong=\"H5291\"* pleased|strong=\"H3190\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* she|strong=\"H6440\"* obtained|strong=\"H5375\"* kindness|strong=\"H2617\"* from|strong=\"H6440\"* him|strong=\"H5414\"*. He|strong=\"H1004\"* quickly gave|strong=\"H5414\"* her|strong=\"H5414\"* cosmetics|strong=\"H8562\"* and|strong=\"H4428\"* her|strong=\"H5414\"* portions|strong=\"H4490\"* of|strong=\"H4428\"* food|strong=\"H1004\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* seven|strong=\"H7651\"* choice|strong=\"H2896\"* maidens|strong=\"H5291\"* who|strong=\"H4428\"* were|strong=\"H5869\"* to|strong=\"H5414\"* be|strong=\"H5414\"* given|strong=\"H5414\"* her|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. He|strong=\"H1004\"* moved her|strong=\"H5414\"* and|strong=\"H4428\"* her|strong=\"H5414\"* maidens|strong=\"H5291\"* to|strong=\"H5414\"* the|strong=\"H6440\"* best|strong=\"H2896\"* place|strong=\"H5414\"* in|strong=\"H1004\"* the|strong=\"H6440\"* women|strong=\"H5291\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Esther had|strong=\"H3588\"* not|strong=\"H3808\"* made|strong=\"H5046\"* known|strong=\"H5046\"* her|strong=\"H5046\"* people|strong=\"H5971\"* nor|strong=\"H3808\"* her|strong=\"H5046\"* relatives|strong=\"H4138\"*, because|strong=\"H3588\"* Mordecai|strong=\"H4782\"* had|strong=\"H3588\"* instructed|strong=\"H6680\"* her|strong=\"H5046\"* that|strong=\"H3588\"* she|strong=\"H3588\"* should|strong=\"H3588\"* not|strong=\"H3808\"* make|strong=\"H5046\"* it|strong=\"H5921\"* known|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "Mordecai|strong=\"H4782\"* walked|strong=\"H1980\"* every|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H1980\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* the|strong=\"H3605\"* women’s house|strong=\"H1004\"*, to|strong=\"H1980\"* find|strong=\"H3045\"* out|strong=\"H6213\"* how|strong=\"H4100\"* Esther was|strong=\"H3117\"* doing|strong=\"H6213\"*, and|strong=\"H1980\"* what|strong=\"H4100\"* would|strong=\"H6213\"* become|strong=\"H6213\"* of|strong=\"H1004\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Each|strong=\"H3117\"* young|strong=\"H5291\"* woman|strong=\"H5291\"*’s turn|strong=\"H8447\"* came|strong=\"H1961\"* to|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H4428\"* to|strong=\"H1961\"* King|strong=\"H4428\"* Ahasuerus after|strong=\"H7093\"* her|strong=\"H4390\"* purification|strong=\"H8562\"* for|strong=\"H3588\"* twelve|strong=\"H8147\"* months|strong=\"H2320\"* (for|strong=\"H3588\"* so|strong=\"H3651\"* were|strong=\"H1961\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H4428\"* their|strong=\"H4390\"* purification|strong=\"H8562\"* accomplished|strong=\"H4390\"*, six|strong=\"H8337\"* months|strong=\"H2320\"* with|strong=\"H4390\"* oil|strong=\"H8081\"* of|strong=\"H4428\"* myrrh|strong=\"H4753\"*, and|strong=\"H4428\"* six|strong=\"H8337\"* months|strong=\"H2320\"* with|strong=\"H4390\"* sweet|strong=\"H1314\"* fragrances and|strong=\"H4428\"* with|strong=\"H4390\"* preparations for|strong=\"H3588\"* beautifying women|strong=\"H5291\"*)." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* young|strong=\"H5291\"* woman|strong=\"H5291\"* then|strong=\"H2088\"* came|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"* like|strong=\"H5973\"* this|strong=\"H2088\"*: whatever|strong=\"H3605\"* she|strong=\"H5704\"* desired was|strong=\"H4428\"* given|strong=\"H5414\"* her|strong=\"H3605\"* to|strong=\"H5704\"* go|strong=\"H4428\"* with|strong=\"H5973\"* her|strong=\"H3605\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H5291\"*’s house|strong=\"H1004\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H1004\"* the|strong=\"H3588\"* evening|strong=\"H6153\"* she|strong=\"H1931\"* went|strong=\"H4428\"*, and|strong=\"H7725\"* on|strong=\"H3027\"* the|strong=\"H3588\"* next|strong=\"H3027\"* day|strong=\"H1242\"* she|strong=\"H1931\"* returned|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* second|strong=\"H8145\"* women’s house|strong=\"H1004\"*, to|strong=\"H7725\"* the|strong=\"H3588\"* custody|strong=\"H3027\"* of|strong=\"H4428\"* Shaashgaz|strong=\"H8190\"*, the|strong=\"H3588\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, who|strong=\"H1931\"* kept|strong=\"H8104\"* the|strong=\"H3588\"* concubines|strong=\"H6370\"*. She|strong=\"H1931\"* came|strong=\"H7725\"* in|strong=\"H1004\"* to|strong=\"H7725\"* the|strong=\"H3588\"* king|strong=\"H4428\"* no|strong=\"H3808\"* more|strong=\"H5750\"*, unless|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* delighted|strong=\"H2654\"* in|strong=\"H1004\"* her|strong=\"H7121\"*, and|strong=\"H7725\"* she|strong=\"H1931\"* was|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H3027\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1961\"* when|strong=\"H3588\"* the|strong=\"H3605\"* turn|strong=\"H8447\"* of|strong=\"H4428\"* Esther, the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* Abihail the|strong=\"H3605\"* uncle|strong=\"H1730\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, who|strong=\"H3605\"* had|strong=\"H1961\"* taken|strong=\"H3947\"* her|strong=\"H3605\"* for|strong=\"H3588\"* his|strong=\"H3605\"* daughter|strong=\"H1323\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* go|strong=\"H1961\"* in|strong=\"H4428\"* to|strong=\"H1961\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, she|strong=\"H3588\"* required|strong=\"H1245\"* nothing|strong=\"H3808\"* but|strong=\"H3588\"* what|strong=\"H1697\"* Hegai|strong=\"H1896\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s eunuch|strong=\"H5631\"*, the|strong=\"H3605\"* keeper|strong=\"H8104\"* of|strong=\"H4428\"* the|strong=\"H3605\"* women|strong=\"H1323\"*, advised. Esther obtained|strong=\"H5375\"* favor|strong=\"H2580\"* in|strong=\"H4428\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* looked|strong=\"H7200\"* at|strong=\"H4428\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H3947\"* Esther was|strong=\"H1931\"* taken|strong=\"H3947\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus into|strong=\"H3947\"* his|strong=\"H3947\"* royal|strong=\"H4438\"* house|strong=\"H1004\"* in|strong=\"H8141\"* the|strong=\"H3947\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3947\"* month|strong=\"H2320\"* Tebeth|strong=\"H2887\"*, in|strong=\"H8141\"* the|strong=\"H3947\"* seventh|strong=\"H7651\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3947\"* reign|strong=\"H4438\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* loved Esther more than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women|strong=\"H1330\"*, and|strong=\"H4428\"* she|strong=\"H6440\"* obtained|strong=\"H5375\"* favor|strong=\"H2580\"* and|strong=\"H4428\"* kindness|strong=\"H2617\"* in|strong=\"H4428\"* his|strong=\"H3605\"* sight|strong=\"H6440\"* more than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* virgins|strong=\"H1330\"*; so|strong=\"H5375\"* that|strong=\"H3605\"* he|strong=\"H3605\"* set|strong=\"H7760\"* the|strong=\"H3605\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"* on|strong=\"H7760\"* her|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H4428\"* made|strong=\"H7760\"* her|strong=\"H3605\"* queen|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H4428\"* Vashti|strong=\"H2060\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H5414\"* the|strong=\"H3605\"* king|strong=\"H4428\"* made|strong=\"H6213\"* a|strong=\"H3068\"* great|strong=\"H1419\"* feast|strong=\"H4960\"* for|strong=\"H6213\"* all|strong=\"H3605\"* his|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4428\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, even|strong=\"H6213\"* Esther’s feast|strong=\"H4960\"*; and|strong=\"H4428\"* he|strong=\"H6213\"* proclaimed a|strong=\"H3068\"* holiday|strong=\"H2010\"* in|strong=\"H6213\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, and|strong=\"H4428\"* gave|strong=\"H5414\"* gifts|strong=\"H4864\"* according|strong=\"H3027\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s bounty|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3427\"* the|strong=\"H6908\"* virgins|strong=\"H1330\"* were|strong=\"H4428\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H6908\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, Mordecai|strong=\"H4782\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6908\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 20, + "text": "Esther had|strong=\"H1961\"* not|strong=\"H6213\"* yet|strong=\"H5921\"* made|strong=\"H6213\"* known|strong=\"H5046\"* her|strong=\"H5046\"* relatives|strong=\"H4138\"* nor her|strong=\"H5046\"* people|strong=\"H5971\"*, as|strong=\"H1961\"* Mordecai|strong=\"H4782\"* had|strong=\"H1961\"* commanded|strong=\"H6680\"* her|strong=\"H5046\"*; for|strong=\"H5921\"* Esther obeyed Mordecai|strong=\"H4782\"*, like|strong=\"H1961\"* she|strong=\"H5921\"* did|strong=\"H6213\"* when|strong=\"H1961\"* she|strong=\"H5921\"* was|strong=\"H1961\"* brought|strong=\"H6213\"* up|strong=\"H5921\"* by|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "In|strong=\"H3427\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, while|strong=\"H3117\"* Mordecai|strong=\"H4782\"* was|strong=\"H3117\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8104\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, two|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H8104\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, Bigthan and|strong=\"H7971\"* Teresh|strong=\"H8657\"*, who|strong=\"H3427\"* were|strong=\"H3117\"* doorkeepers|strong=\"H8104\"*, were|strong=\"H3117\"* angry|strong=\"H7107\"*, and|strong=\"H7971\"* sought|strong=\"H1245\"* to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H3117\"* the|strong=\"H8104\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 22, + "text": "This|strong=\"H1697\"* thing|strong=\"H1697\"* became|strong=\"H1697\"* known|strong=\"H3045\"* to|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, who|strong=\"H4428\"* informed|strong=\"H3045\"* Esther the|strong=\"H3045\"* queen|strong=\"H4436\"*; and|strong=\"H4428\"* Esther informed|strong=\"H3045\"* the|strong=\"H3045\"* king|strong=\"H4428\"* in|strong=\"H4428\"* Mordecai|strong=\"H4782\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3117\"* this|strong=\"H1697\"* matter|strong=\"H1697\"* was|strong=\"H1697\"* investigated|strong=\"H1245\"*, and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1697\"* found|strong=\"H4672\"* to|strong=\"H5921\"* be|strong=\"H1697\"* so|strong=\"H1697\"*, they|strong=\"H3117\"* were|strong=\"H3117\"* both|strong=\"H8147\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* a|strong=\"H3068\"* gallows|strong=\"H6086\"*; and|strong=\"H4428\"* it|strong=\"H5921\"* was|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H6440\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H6440\"* chronicles|strong=\"H1697\"* in|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H5921\"* these|strong=\"H7760\"* things|strong=\"H1697\"* King|strong=\"H4428\"* Ahasuerus promoted|strong=\"H1431\"* Haman|strong=\"H2001\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H3605\"* Agagite, and|strong=\"H1121\"* advanced|strong=\"H5375\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* set|strong=\"H7760\"* his|strong=\"H3605\"* seat|strong=\"H3678\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* who|strong=\"H3605\"* were|strong=\"H1121\"* with|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* who|strong=\"H3605\"* were|strong=\"H5650\"* in|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* bowed|strong=\"H7812\"* down|strong=\"H7812\"* and|strong=\"H4428\"* paid|strong=\"H7812\"* homage|strong=\"H7812\"* to|strong=\"H4428\"* Haman|strong=\"H2001\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* so|strong=\"H3651\"* commanded|strong=\"H6680\"* concerning|strong=\"H6680\"* him|strong=\"H6680\"*. But|strong=\"H3588\"* Mordecai|strong=\"H4782\"* didn’t bow|strong=\"H7812\"* down|strong=\"H7812\"* or|strong=\"H3808\"* pay him|strong=\"H6680\"* homage|strong=\"H7812\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H5674\"* the|strong=\"H5674\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* who|strong=\"H5650\"* were|strong=\"H5650\"* in|strong=\"H4428\"* the|strong=\"H5674\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* said to|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, “Why|strong=\"H4069\"* do you|strong=\"H4428\"* disobey the|strong=\"H5674\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"*?”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* it|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* they|strong=\"H1992\"* spoke|strong=\"H1697\"* daily|strong=\"H3117\"* to|strong=\"H1961\"* him|strong=\"H5046\"*, and|strong=\"H3117\"* he|strong=\"H1931\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1992\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* told|strong=\"H5046\"* Haman|strong=\"H2001\"*, to|strong=\"H1961\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* Mordecai|strong=\"H4782\"*’s reason|strong=\"H1697\"* would|strong=\"H1697\"* stand|strong=\"H5975\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H1961\"* told|strong=\"H5046\"* them|strong=\"H1992\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1961\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* Haman|strong=\"H2001\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* Mordecai|strong=\"H4782\"* didn’t bow|strong=\"H7812\"* down|strong=\"H7812\"* nor|strong=\"H3588\"* pay him|strong=\"H7200\"* homage|strong=\"H7812\"*, Haman|strong=\"H2001\"* was|strong=\"H2001\"* full|strong=\"H4390\"* of|strong=\"H4390\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* scorned the|strong=\"H3605\"* thought|strong=\"H5869\"* of|strong=\"H3027\"* laying hands|strong=\"H3027\"* on|strong=\"H3027\"* Mordecai|strong=\"H4782\"* alone, for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H3605\"* known|strong=\"H5046\"* to|strong=\"H7971\"* him|strong=\"H7971\"* Mordecai|strong=\"H4782\"*’s people|strong=\"H5971\"*. Therefore|strong=\"H3588\"* Haman|strong=\"H2001\"* sought|strong=\"H1245\"* to|strong=\"H7971\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H5971\"* throughout|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H3027\"* Ahasuerus, even|strong=\"H3588\"* Mordecai|strong=\"H4782\"*’s people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H8141\"* the|strong=\"H6440\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Nisan|strong=\"H5212\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, they|strong=\"H3117\"* cast|strong=\"H5307\"* Pur|strong=\"H6332\"*, that|strong=\"H3117\"* is|strong=\"H1931\"*, the|strong=\"H6440\"* lot|strong=\"H1486\"*, before|strong=\"H6440\"* Haman|strong=\"H2001\"* from|strong=\"H6440\"* day|strong=\"H3117\"* to|strong=\"H6440\"* day|strong=\"H3117\"*, and|strong=\"H4428\"* from|strong=\"H6440\"* month|strong=\"H2320\"* to|strong=\"H6440\"* month|strong=\"H2320\"*, and|strong=\"H4428\"* chose the|strong=\"H6440\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6440\"* month|strong=\"H2320\"* Adar." + }, + { + "verseNum": 8, + "text": "Haman|strong=\"H2001\"* said to|strong=\"H6213\"* King|strong=\"H4428\"* Ahasuerus, “There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* certain people|strong=\"H5971\"* scattered|strong=\"H6340\"* abroad|strong=\"H6504\"* and|strong=\"H4428\"* dispersed|strong=\"H6504\"* among|strong=\"H5971\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* your|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H4428\"* their|strong=\"H3605\"* laws|strong=\"H1881\"* are|strong=\"H5971\"* different from|strong=\"H5971\"* other|strong=\"H3605\"* people|strong=\"H5971\"*’s. They|strong=\"H6213\"* don’t keep|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s laws|strong=\"H1881\"*. Therefore|strong=\"H5971\"* it|strong=\"H6213\"* is|strong=\"H3426\"* not|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s profit|strong=\"H7737\"* to|strong=\"H6213\"* allow|strong=\"H3240\"* them|strong=\"H6213\"* to|strong=\"H6213\"* remain." + }, + { + "verseNum": 9, + "text": "If it|strong=\"H5921\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let it|strong=\"H5921\"* be|strong=\"H3027\"* written|strong=\"H3789\"* that|strong=\"H4428\"* they|strong=\"H5921\"* be|strong=\"H3027\"* destroyed; and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H4428\"* pay|strong=\"H8254\"* ten|strong=\"H6235\"* thousand talents|strong=\"H3603\"*+ 3:9 A talent is about 30 kilograms or 66 pounds or 965 Troy ounces* of|strong=\"H4428\"* silver|strong=\"H3701\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H4428\"* are|strong=\"H3027\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"*, to|strong=\"H6213\"* bring|strong=\"H6213\"* it|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s treasuries|strong=\"H1595\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* took|strong=\"H5493\"* his|strong=\"H5414\"* ring|strong=\"H2885\"* from|strong=\"H5493\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Haman|strong=\"H2001\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H5921\"* Agagite, the|strong=\"H5921\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* Haman|strong=\"H2001\"*, “The|strong=\"H5414\"* silver|strong=\"H3701\"* is|strong=\"H2896\"* given|strong=\"H5414\"* to|strong=\"H6213\"* you|strong=\"H5414\"*, the|strong=\"H5414\"* people|strong=\"H5971\"* also|strong=\"H6213\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* with|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* it|strong=\"H5414\"* seems|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H6213\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s scribes|strong=\"H5608\"* were|strong=\"H5971\"* called|strong=\"H7121\"* in|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Haman|strong=\"H2001\"* commanded|strong=\"H6680\"* was|strong=\"H8034\"* written|strong=\"H3789\"* to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s local governors|strong=\"H6346\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* who|strong=\"H3605\"* were|strong=\"H5971\"* over|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* every|strong=\"H3605\"* people|strong=\"H5971\"*, to|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according|strong=\"H5921\"* to|strong=\"H5921\"* its|strong=\"H3605\"* writing|strong=\"H3791\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H5921\"* their|strong=\"H3605\"* language|strong=\"H3956\"*. It|strong=\"H7121\"* was|strong=\"H8034\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H4428\"* it|strong=\"H7121\"* was|strong=\"H8034\"* sealed|strong=\"H2856\"* with|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*." + }, + { + "verseNum": 13, + "text": "Letters|strong=\"H5612\"* were|strong=\"H3117\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* couriers|strong=\"H7323\"* into|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*, to|strong=\"H5704\"* destroy|strong=\"H8045\"*, to|strong=\"H5704\"* kill|strong=\"H2026\"*, and|strong=\"H7971\"* to|strong=\"H5704\"* cause to|strong=\"H5704\"* perish, all|strong=\"H3605\"* Jews|strong=\"H3064\"*, both|strong=\"H8147\"* young|strong=\"H5288\"* and|strong=\"H7971\"* old|strong=\"H2205\"*, little|strong=\"H2945\"* children|strong=\"H2945\"* and|strong=\"H7971\"* women|strong=\"H2205\"*, in|strong=\"H4428\"* one|strong=\"H3605\"* day|strong=\"H3117\"*, even|strong=\"H5704\"* on|strong=\"H3117\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar, and|strong=\"H7971\"* to|strong=\"H5704\"* plunder|strong=\"H7998\"* their|strong=\"H3605\"* possessions|strong=\"H7998\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* copy|strong=\"H6572\"* of|strong=\"H3117\"* the|strong=\"H3605\"* letter|strong=\"H3791\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* decree|strong=\"H1881\"* should|strong=\"H3117\"* be|strong=\"H1961\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H3117\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, was|strong=\"H1961\"* published|strong=\"H1540\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3117\"* should|strong=\"H3117\"* be|strong=\"H1961\"* ready|strong=\"H6264\"* against|strong=\"H3605\"* that|strong=\"H5971\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* couriers|strong=\"H7323\"* went|strong=\"H3318\"* out|strong=\"H3318\"* in|strong=\"H3427\"* haste by|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* decree|strong=\"H1881\"* was|strong=\"H1697\"* given|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H3427\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*. The|strong=\"H5414\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* to|strong=\"H3318\"* drink|strong=\"H8354\"*; but|strong=\"H4428\"* the|strong=\"H5414\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* was|strong=\"H1697\"* perplexed." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3847\"* when|strong=\"H3318\"* Mordecai|strong=\"H4782\"* found|strong=\"H3045\"* out|strong=\"H3318\"* all|strong=\"H3605\"* that|strong=\"H3045\"* was|strong=\"H5892\"* done|strong=\"H6213\"*, Mordecai|strong=\"H4782\"* tore|strong=\"H7167\"* his|strong=\"H3605\"* clothes|strong=\"H3847\"* and|strong=\"H1419\"* put|strong=\"H3847\"* on|strong=\"H3847\"* sackcloth|strong=\"H8242\"* with|strong=\"H3847\"* ashes, and|strong=\"H1419\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H1419\"* wailed|strong=\"H2199\"* loudly|strong=\"H1419\"* and|strong=\"H1419\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* came|strong=\"H4428\"* even|strong=\"H5704\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, for|strong=\"H3588\"* no|strong=\"H6440\"* one|strong=\"H3588\"* is|strong=\"H4428\"* allowed inside|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"* clothed|strong=\"H3830\"* with|strong=\"H6440\"* sackcloth|strong=\"H8242\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H4428\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, wherever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H3605\"* decree|strong=\"H1881\"* came|strong=\"H5060\"*, there|strong=\"H3605\"* was|strong=\"H1697\"* great|strong=\"H1419\"* mourning|strong=\"H4553\"* among|strong=\"H7227\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, and|strong=\"H4428\"* fasting|strong=\"H6685\"*, and|strong=\"H4428\"* weeping|strong=\"H1065\"*, and|strong=\"H4428\"* wailing|strong=\"H4553\"*; and|strong=\"H4428\"* many|strong=\"H7227\"* lay|strong=\"H3331\"* in|strong=\"H4428\"* sackcloth|strong=\"H8242\"* and|strong=\"H4428\"* ashes." + }, + { + "verseNum": 4, + "text": "Esther’s maidens|strong=\"H5291\"* and|strong=\"H7971\"* her|strong=\"H7971\"* eunuchs|strong=\"H5631\"* came|strong=\"H3847\"* and|strong=\"H7971\"* told|strong=\"H5046\"* her|strong=\"H7971\"* this|strong=\"H5046\"*, and|strong=\"H7971\"* the|strong=\"H5921\"* queen|strong=\"H4436\"* was|strong=\"H3966\"* exceedingly|strong=\"H3966\"* grieved|strong=\"H2342\"*. She|strong=\"H5921\"* sent|strong=\"H7971\"* clothing|strong=\"H3847\"* to|strong=\"H7971\"* Mordecai|strong=\"H4782\"*, to|strong=\"H7971\"* replace his|strong=\"H7971\"* sackcloth|strong=\"H8242\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* didn’t receive|strong=\"H6901\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* Esther called|strong=\"H7121\"* for|strong=\"H5921\"* Hathach|strong=\"H2047\"*, one|strong=\"H2088\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, whom|strong=\"H6440\"* he|strong=\"H5921\"* had|strong=\"H4428\"* appointed|strong=\"H5975\"* to|strong=\"H5921\"* attend|strong=\"H6440\"* her|strong=\"H5921\"*, and|strong=\"H4428\"* commanded|strong=\"H6680\"* him|strong=\"H6440\"* to|strong=\"H5921\"* go|strong=\"H4428\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"*, to|strong=\"H5921\"* find|strong=\"H3045\"* out|strong=\"H5921\"* what|strong=\"H4100\"* this|strong=\"H2088\"* was|strong=\"H4428\"*, and|strong=\"H4428\"* why|strong=\"H4100\"* it|strong=\"H7121\"* was|strong=\"H4428\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H3318\"* Hathach|strong=\"H2047\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* Mordecai|strong=\"H4782\"*, to|strong=\"H3318\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"* which|strong=\"H5892\"* was|strong=\"H5892\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*." + }, + { + "verseNum": 7, + "text": "Mordecai|strong=\"H4782\"* told|strong=\"H5046\"* him|strong=\"H5921\"* of|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* had|strong=\"H4428\"* happened|strong=\"H7136\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* exact|strong=\"H6575\"* sum|strong=\"H6575\"* of|strong=\"H4428\"* the|strong=\"H3605\"* money|strong=\"H3701\"* that|strong=\"H3605\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* promised to|strong=\"H5921\"* pay|strong=\"H8254\"* to|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s treasuries|strong=\"H1595\"* for|strong=\"H5921\"* the|strong=\"H3605\"* destruction of|strong=\"H4428\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* also|strong=\"H4428\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H6440\"* copy|strong=\"H6572\"* of|strong=\"H4428\"* the|strong=\"H6440\"* writing|strong=\"H3791\"* of|strong=\"H4428\"* the|strong=\"H6440\"* decree|strong=\"H1881\"* that|strong=\"H5971\"* was|strong=\"H4428\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* to|strong=\"H5921\"* destroy|strong=\"H8045\"* them|strong=\"H5414\"*, to|strong=\"H5921\"* show|strong=\"H7200\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Esther, and|strong=\"H4428\"* to|strong=\"H5921\"* declare|strong=\"H5046\"* it|strong=\"H5414\"* to|strong=\"H5921\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* urge her|strong=\"H5414\"* to|strong=\"H5921\"* go|strong=\"H5971\"* in|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"* to|strong=\"H5921\"* make|strong=\"H5414\"* supplication|strong=\"H2603\"* to|strong=\"H5921\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* make|strong=\"H5414\"* request|strong=\"H1245\"* before|strong=\"H6440\"* him|strong=\"H5414\"* for|strong=\"H5921\"* her|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Hathach|strong=\"H2047\"* came|strong=\"H1697\"* and|strong=\"H1697\"* told|strong=\"H5046\"* Esther the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6680\"* Esther spoke to|strong=\"H6680\"* Hathach|strong=\"H2047\"*, and|strong=\"H6680\"* gave|strong=\"H6680\"* him|strong=\"H6680\"* a|strong=\"H3068\"* message to|strong=\"H6680\"* Mordecai|strong=\"H4782\"*:" + }, + { + "verseNum": 11, + "text": "“All|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s servants|strong=\"H5650\"* and|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"* know|strong=\"H3045\"* that|strong=\"H3045\"* whoever|strong=\"H3605\"*, whether|strong=\"H3045\"* man|strong=\"H4191\"* or|strong=\"H3808\"* woman|strong=\"H2088\"*, comes|strong=\"H3117\"* to|strong=\"H4191\"* the|strong=\"H3605\"* king|strong=\"H4428\"* into|strong=\"H3045\"* the|strong=\"H3605\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* without|strong=\"H3808\"* being|strong=\"H5971\"* called|strong=\"H7121\"*, there|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* law|strong=\"H1881\"* for|strong=\"H7121\"* him|strong=\"H7121\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, except|strong=\"H3808\"* those|strong=\"H3605\"* to|strong=\"H4191\"* whom|strong=\"H5971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* might|strong=\"H5971\"* hold out|strong=\"H3447\"* the|strong=\"H3605\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"*, that|strong=\"H3045\"* he|strong=\"H3117\"* may|strong=\"H5971\"* live|strong=\"H2421\"*. I|strong=\"H3117\"* have|strong=\"H5971\"* not|strong=\"H3808\"* been|strong=\"H5971\"* called|strong=\"H7121\"* to|strong=\"H4191\"* come|strong=\"H2421\"* in|strong=\"H4428\"* to|strong=\"H4191\"* the|strong=\"H3605\"* king|strong=\"H4428\"* these|strong=\"H2088\"* thirty|strong=\"H7970\"* days|strong=\"H3117\"*.”" + }, + { + "verseNum": 12, + "text": "They|strong=\"H1697\"* told|strong=\"H5046\"* Esther’s words|strong=\"H1697\"* to|strong=\"H1697\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7725\"* Mordecai|strong=\"H4782\"* asked them|strong=\"H7725\"* to|strong=\"H7725\"* return|strong=\"H7725\"* this|strong=\"H7725\"* answer|strong=\"H7725\"* to|strong=\"H7725\"* Esther: “Don’t think|strong=\"H1819\"* to|strong=\"H7725\"* yourself|strong=\"H5315\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H4428\"* escape|strong=\"H4422\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* any|strong=\"H3605\"* more|strong=\"H7725\"* than|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* remain|strong=\"H5975\"* silent|strong=\"H2790\"* now|strong=\"H3588\"*, then|strong=\"H5975\"* relief|strong=\"H7305\"* and|strong=\"H1004\"* deliverance|strong=\"H2020\"* will|strong=\"H4310\"* come|strong=\"H5060\"* to|strong=\"H6256\"* the|strong=\"H3588\"* Jews|strong=\"H3064\"* from|strong=\"H3064\"* another place|strong=\"H4725\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* and|strong=\"H1004\"* your|strong=\"H3045\"* father’s house|strong=\"H1004\"* will|strong=\"H4310\"* perish. Who|strong=\"H4310\"* knows|strong=\"H3045\"* if|strong=\"H3588\"* you|strong=\"H3588\"* haven’t come|strong=\"H5060\"* to|strong=\"H6256\"* the|strong=\"H3588\"* kingdom|strong=\"H4438\"* for|strong=\"H3588\"* such|strong=\"H2063\"* a|strong=\"H3068\"* time|strong=\"H6256\"* as|strong=\"H3588\"* this|strong=\"H2063\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7725\"* Esther asked them|strong=\"H7725\"* to|strong=\"H7725\"* answer|strong=\"H7725\"* Mordecai|strong=\"H4782\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H3212\"*, gather|strong=\"H3664\"* together|strong=\"H3664\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* are|strong=\"H3117\"* present|strong=\"H4672\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"*, and|strong=\"H4428\"* fast|strong=\"H6684\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H4428\"* neither|strong=\"H3808\"* eat nor|strong=\"H3808\"* drink|strong=\"H8354\"* three|strong=\"H7969\"* days|strong=\"H3117\"*, night|strong=\"H3915\"* or|strong=\"H3808\"* day|strong=\"H3117\"*. I|strong=\"H3117\"* and|strong=\"H4428\"* my|strong=\"H3605\"* maidens|strong=\"H5291\"* will|strong=\"H4428\"* also|strong=\"H1571\"* fast|strong=\"H6684\"* the|strong=\"H3605\"* same|strong=\"H3651\"* way|strong=\"H3212\"*. Then|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H4428\"* go|strong=\"H3212\"* in|strong=\"H5921\"* to|strong=\"H3212\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, which|strong=\"H3064\"* is|strong=\"H3117\"* against|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H1881\"*; and|strong=\"H4428\"* if|strong=\"H3651\"* I|strong=\"H3117\"* perish, I|strong=\"H3117\"* perish.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H6213\"* Mordecai|strong=\"H4782\"* went|strong=\"H5674\"* his|strong=\"H3605\"* way|strong=\"H5674\"*, and|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Esther had|strong=\"H4782\"* commanded|strong=\"H6680\"* him|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* third|strong=\"H7992\"* day|strong=\"H3117\"*, Esther put|strong=\"H3847\"* on|strong=\"H5921\"* her|strong=\"H5921\"* royal|strong=\"H4438\"* clothing|strong=\"H3847\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* in|strong=\"H3427\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, next|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*. The|strong=\"H5921\"* king|strong=\"H4428\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* his|strong=\"H5921\"* royal|strong=\"H4438\"* throne|strong=\"H3678\"* in|strong=\"H3427\"* the|strong=\"H5921\"* royal|strong=\"H4438\"* house|strong=\"H1004\"*, next|strong=\"H5921\"* to|strong=\"H1961\"* the|strong=\"H5921\"* entrance|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H1961\"* the|strong=\"H7200\"* king|strong=\"H4428\"* saw|strong=\"H7200\"* Esther the|strong=\"H7200\"* queen|strong=\"H4436\"* standing|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H7200\"* court|strong=\"H2691\"*, she obtained|strong=\"H5375\"* favor|strong=\"H2580\"* in|strong=\"H4428\"* his|strong=\"H5375\"* sight|strong=\"H5869\"*; and|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* held|strong=\"H4428\"* out|strong=\"H7200\"* to|strong=\"H1961\"* Esther the|strong=\"H7200\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"* that|strong=\"H7200\"* was|strong=\"H1961\"* in|strong=\"H4428\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*. So|strong=\"H1961\"* Esther came|strong=\"H1961\"* near|strong=\"H7126\"* and|strong=\"H4428\"* touched|strong=\"H5060\"* the|strong=\"H7200\"* top|strong=\"H7218\"* of|strong=\"H4428\"* the|strong=\"H7200\"* scepter|strong=\"H8275\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H4100\"* her|strong=\"H5414\"*, “What|strong=\"H4100\"* would|strong=\"H4100\"* you|strong=\"H5414\"* like|strong=\"H5704\"*, queen|strong=\"H4436\"* Esther? What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"*.”" + }, + { + "verseNum": 4, + "text": "Esther said, “If it|strong=\"H5921\"* seems good|strong=\"H2895\"* to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* come today|strong=\"H3117\"* to|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* prepared|strong=\"H6213\"* for|strong=\"H5921\"* him|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Bring|strong=\"H6213\"* Haman|strong=\"H2001\"* quickly|strong=\"H4116\"*, so|strong=\"H6213\"* that|strong=\"H1697\"* it|strong=\"H6213\"* may|strong=\"H4428\"* be|strong=\"H1697\"* done|strong=\"H6213\"* as|strong=\"H1697\"* Esther has|strong=\"H4428\"* said|strong=\"H1697\"*.” So|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* came|strong=\"H1697\"* to|strong=\"H6213\"* the|strong=\"H6213\"* banquet|strong=\"H4960\"* that|strong=\"H1697\"* Esther had|strong=\"H4428\"* prepared|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H5704\"* Esther at|strong=\"H4428\"* the|strong=\"H5414\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? Even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H5414\"* performed|strong=\"H6213\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H6030\"* Esther answered|strong=\"H6030\"* and|strong=\"H6030\"* said|strong=\"H6030\"*, “My|strong=\"H6030\"* petition|strong=\"H7596\"* and|strong=\"H6030\"* my|strong=\"H6030\"* request|strong=\"H1246\"* is this." + }, + { + "verseNum": 8, + "text": "If I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* if it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"* to|strong=\"H6213\"* grant|strong=\"H5414\"* my|strong=\"H5414\"* petition|strong=\"H7596\"* and|strong=\"H4428\"* to|strong=\"H6213\"* perform|strong=\"H6213\"* my|strong=\"H5414\"* request|strong=\"H1246\"*, let|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* come|strong=\"H4279\"* to|strong=\"H6213\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* that|strong=\"H1697\"* I|strong=\"H5414\"* will|strong=\"H4428\"* prepare|strong=\"H6213\"* for|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* do|strong=\"H6213\"* tomorrow|strong=\"H4279\"* as|strong=\"H1697\"* the|strong=\"H5921\"* king|strong=\"H4428\"* has|strong=\"H4428\"* said|strong=\"H1697\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6965\"* Haman|strong=\"H2001\"* went|strong=\"H3318\"* out|strong=\"H3318\"* that|strong=\"H7200\"* day|strong=\"H3117\"* joyful|strong=\"H8056\"* and|strong=\"H6965\"* glad|strong=\"H8056\"* of|strong=\"H4428\"* heart|strong=\"H3820\"*, but|strong=\"H3808\"* when|strong=\"H3117\"* Haman|strong=\"H2001\"* saw|strong=\"H7200\"* Mordecai|strong=\"H4782\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, that|strong=\"H7200\"* he|strong=\"H1931\"* didn’t stand|strong=\"H6965\"* up|strong=\"H6965\"* nor|strong=\"H3808\"* move for|strong=\"H5921\"* him|strong=\"H5921\"*, he|strong=\"H1931\"* was|strong=\"H3820\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wrath|strong=\"H2534\"* against|strong=\"H5921\"* Mordecai|strong=\"H4782\"*." + }, + { + "verseNum": 10, + "text": "Nevertheless Haman|strong=\"H2001\"* restrained himself, and|strong=\"H7971\"* went|strong=\"H1004\"* home|strong=\"H1004\"*. There, he|strong=\"H1004\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* called for|strong=\"H7971\"* his|strong=\"H7971\"* friends and|strong=\"H7971\"* Zeresh|strong=\"H2238\"* his|strong=\"H7971\"* wife." + }, + { + "verseNum": 11, + "text": "Haman|strong=\"H2001\"* recounted|strong=\"H5608\"* to|strong=\"H5921\"* them|strong=\"H1992\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H1121\"* his|strong=\"H3605\"* riches|strong=\"H6239\"*, the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H1121\"* his|strong=\"H3605\"* children|strong=\"H1121\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H3605\"* in|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* promoted|strong=\"H1431\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* how|strong=\"H1431\"* he|strong=\"H3605\"* had|strong=\"H4428\"* advanced|strong=\"H5375\"* him|strong=\"H5921\"* above|strong=\"H5921\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H1121\"* servants|strong=\"H5650\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "Haman|strong=\"H2001\"* also|strong=\"H1571\"* said|strong=\"H7121\"*, “Yes|strong=\"H3588\"*, Esther the|strong=\"H3588\"* queen|strong=\"H4436\"* let|strong=\"H3808\"* no|strong=\"H3808\"* man come|strong=\"H4279\"* in|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"* to|strong=\"H6213\"* the|strong=\"H3588\"* banquet|strong=\"H4960\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H4428\"* prepared|strong=\"H6213\"* but|strong=\"H3588\"* myself|strong=\"H1571\"*; and|strong=\"H4428\"* tomorrow|strong=\"H4279\"* I|strong=\"H3588\"* am also|strong=\"H1571\"* invited|strong=\"H7121\"* by|strong=\"H7121\"* her|strong=\"H7121\"* together|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3588\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2088\"* avails me|strong=\"H7200\"* nothing|strong=\"H3605\"*, so|strong=\"H2088\"* long|strong=\"H3605\"* as|strong=\"H3427\"* I|strong=\"H7200\"* see|strong=\"H7200\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* sitting|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6213\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* friends said|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6440\"*, “Let|strong=\"H8056\"* a|strong=\"H3068\"* gallows|strong=\"H6086\"* be|strong=\"H1697\"* made|strong=\"H6213\"* fifty|strong=\"H2572\"* cubits+ 5:14 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* high|strong=\"H1364\"*, and|strong=\"H4428\"* in|strong=\"H5921\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* speak|strong=\"H1697\"* to|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"* about|strong=\"H5921\"* hanging|strong=\"H8518\"* Mordecai|strong=\"H4782\"* on|strong=\"H5921\"* it|strong=\"H5921\"*. Then|strong=\"H6213\"* go|strong=\"H3190\"* in|strong=\"H5921\"* merrily|strong=\"H8056\"* with|strong=\"H5973\"* the|strong=\"H3605\"* king|strong=\"H4428\"* to|strong=\"H6213\"* the|strong=\"H3605\"* banquet|strong=\"H4960\"*.” This|strong=\"H6213\"* pleased|strong=\"H3190\"* Haman|strong=\"H2001\"*, so|strong=\"H6213\"* he|strong=\"H6213\"* had|strong=\"H4428\"* the|strong=\"H3605\"* gallows|strong=\"H6086\"* made|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H3117\"* night|strong=\"H3915\"*, the|strong=\"H6440\"* king|strong=\"H4428\"* couldn’t sleep|strong=\"H8142\"*. He|strong=\"H1931\"* commanded the|strong=\"H6440\"* book|strong=\"H5612\"* of|strong=\"H4428\"* records|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H6440\"* chronicles|strong=\"H1697\"* to|strong=\"H1961\"* be|strong=\"H1961\"* brought|strong=\"H1961\"*, and|strong=\"H4428\"* they|strong=\"H3117\"* were|strong=\"H1961\"* read|strong=\"H7121\"* to|strong=\"H1961\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5921\"* was|strong=\"H4428\"* found|strong=\"H4672\"* written|strong=\"H3789\"* that|strong=\"H4428\"* Mordecai|strong=\"H4782\"* had|strong=\"H4428\"* told|strong=\"H5046\"* of|strong=\"H4428\"* Bigthana and|strong=\"H7971\"* Teresh|strong=\"H8657\"*, two|strong=\"H8147\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"*, who|strong=\"H8104\"* were|strong=\"H3027\"* doorkeepers|strong=\"H8104\"*, who|strong=\"H8104\"* had|strong=\"H4428\"* tried|strong=\"H1245\"* to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* King|strong=\"H4428\"* Ahasuerus." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “What|strong=\"H4100\"* honor|strong=\"H3366\"* and|strong=\"H4428\"* dignity|strong=\"H1420\"* has|strong=\"H4428\"* been|strong=\"H3808\"* given|strong=\"H6213\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"* for|strong=\"H5921\"* this|strong=\"H2088\"*?”" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* said, “Who|strong=\"H4310\"* is|strong=\"H4310\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"*?” Now|strong=\"H4428\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* come into|strong=\"H5921\"* the|strong=\"H5921\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, to|strong=\"H5921\"* speak to|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* about|strong=\"H5921\"* hanging|strong=\"H8518\"* Mordecai|strong=\"H4782\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* that|strong=\"H4428\"* he|strong=\"H1004\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5975\"* king|strong=\"H4428\"*’s servants|strong=\"H5288\"* said to|strong=\"H4428\"* him|strong=\"H5975\"*, “Behold|strong=\"H2009\"*,+ 6:5 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* Haman|strong=\"H2001\"* stands|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H5975\"* court|strong=\"H2691\"*.”" + }, + { + "verseNum": 6, + "text": "So|strong=\"H6213\"* Haman|strong=\"H2001\"* came|strong=\"H4428\"* in|strong=\"H6213\"*. The|strong=\"H6213\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* shall|strong=\"H4428\"* be|strong=\"H3820\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6213\"* man|strong=\"H3820\"* whom|strong=\"H4310\"* the|strong=\"H6213\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*?”" + }, + { + "verseNum": 7, + "text": "Haman|strong=\"H2001\"* said to|strong=\"H4428\"* the|strong=\"H2001\"* king|strong=\"H4428\"*, “For|strong=\"H4428\"* the|strong=\"H2001\"* man whom the|strong=\"H2001\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H4428\"* honor|strong=\"H3366\"*," + }, + { + "verseNum": 8, + "text": "let|strong=\"H5414\"* royal|strong=\"H4438\"* clothing|strong=\"H3830\"* be|strong=\"H5414\"* brought|strong=\"H5414\"* which|strong=\"H5483\"* the|strong=\"H5921\"* king|strong=\"H4428\"* uses to|strong=\"H5921\"* wear|strong=\"H3847\"*, and|strong=\"H4428\"* the|strong=\"H5921\"* horse|strong=\"H5483\"* that|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* rides|strong=\"H7392\"* on|strong=\"H5921\"*, and|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H4428\"* which|strong=\"H5483\"* a|strong=\"H3068\"* royal|strong=\"H4438\"* crown|strong=\"H3804\"* is|strong=\"H4428\"* set|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H5414\"* the|strong=\"H6440\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H6440\"* horse|strong=\"H5483\"* be|strong=\"H3027\"* delivered|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* one|strong=\"H6213\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s most|strong=\"H4428\"* noble|strong=\"H6579\"* princes|strong=\"H8269\"*, that|strong=\"H5414\"* they|strong=\"H5921\"* may|strong=\"H4428\"* array|strong=\"H3847\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"* with|strong=\"H3847\"* them|strong=\"H5414\"*, and|strong=\"H4428\"* have|strong=\"H3027\"* him|strong=\"H5414\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* horseback|strong=\"H5483\"* through|strong=\"H3027\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"*, and|strong=\"H4428\"* proclaim|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, ‘Thus|strong=\"H3602\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H3027\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*!’”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Haman|strong=\"H2001\"*, “Hurry|strong=\"H4116\"* and|strong=\"H4428\"* take|strong=\"H3947\"* the|strong=\"H3605\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H3605\"* horse|strong=\"H5483\"*, as|strong=\"H1697\"* you|strong=\"H3605\"* have|strong=\"H1697\"* said|strong=\"H1696\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H6213\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"*, who|strong=\"H3605\"* sits|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*. Let|strong=\"H3651\"* nothing|strong=\"H1697\"* fail|strong=\"H5307\"* of|strong=\"H4428\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1697\"* spoken|strong=\"H1696\"*.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H3947\"* Haman|strong=\"H2001\"* took|strong=\"H3947\"* the|strong=\"H6440\"* clothing|strong=\"H3830\"* and|strong=\"H4428\"* the|strong=\"H6440\"* horse|strong=\"H5483\"*, and|strong=\"H4428\"* arrayed|strong=\"H3847\"* Mordecai|strong=\"H4782\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* him|strong=\"H6440\"* ride|strong=\"H7392\"* through|strong=\"H6213\"* the|strong=\"H6440\"* city|strong=\"H5892\"* square|strong=\"H7339\"*, and|strong=\"H4428\"* proclaimed|strong=\"H7121\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, “Thus|strong=\"H3602\"* it|strong=\"H7121\"* shall|strong=\"H4428\"* be|strong=\"H5892\"* done|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H6440\"* man|strong=\"H6440\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* delights|strong=\"H2654\"* to|strong=\"H6213\"* honor|strong=\"H3366\"*!”" + }, + { + "verseNum": 12, + "text": "Mordecai|strong=\"H4782\"* came|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* king|strong=\"H4428\"*’s gate|strong=\"H8179\"*, but|strong=\"H7725\"* Haman|strong=\"H2001\"* hurried|strong=\"H1765\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*, mourning and|strong=\"H7725\"* having|strong=\"H4428\"* his|strong=\"H7725\"* head|strong=\"H7218\"* covered|strong=\"H2645\"*." + }, + { + "verseNum": 13, + "text": "Haman|strong=\"H2001\"* recounted|strong=\"H5608\"* to|strong=\"H3201\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife and|strong=\"H6440\"* all|strong=\"H3605\"* his|strong=\"H3605\"* friends everything|strong=\"H3605\"* that|strong=\"H3588\"* had|strong=\"H3588\"* happened|strong=\"H7136\"* to|strong=\"H3201\"* him|strong=\"H6440\"*. Then|strong=\"H5307\"* his|strong=\"H3605\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* and|strong=\"H6440\"* Zeresh|strong=\"H2238\"* his|strong=\"H3605\"* wife said to|strong=\"H3201\"* him|strong=\"H6440\"*, “If|strong=\"H3588\"* Mordecai|strong=\"H4782\"*, before|strong=\"H6440\"* whom|strong=\"H6440\"* you|strong=\"H3588\"* have|strong=\"H3605\"* begun|strong=\"H2490\"* to|strong=\"H3201\"* fall|strong=\"H5307\"*, is|strong=\"H3605\"* of|strong=\"H6440\"* Jewish|strong=\"H3064\"* descent|strong=\"H2233\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* fall|strong=\"H5307\"* before|strong=\"H6440\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 14, + "text": "While|strong=\"H5750\"* they|strong=\"H6213\"* were|strong=\"H4428\"* yet|strong=\"H5750\"* talking|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H6213\"*, the|strong=\"H6213\"* king|strong=\"H4428\"*’s eunuchs|strong=\"H5631\"* came|strong=\"H5060\"*, and|strong=\"H4428\"* hurried to|strong=\"H1696\"* bring|strong=\"H6213\"* Haman|strong=\"H2001\"* to|strong=\"H1696\"* the|strong=\"H6213\"* banquet|strong=\"H4960\"* that|strong=\"H4428\"* Esther had|strong=\"H4428\"* prepared|strong=\"H6213\"*." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "So the|strong=\"H5973\"* king|strong=\"H4428\"* and|strong=\"H4428\"* Haman|strong=\"H2001\"* came|strong=\"H4428\"* to|strong=\"H4428\"* banquet|strong=\"H8354\"* with|strong=\"H5973\"* Esther the|strong=\"H5973\"* queen|strong=\"H4436\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said again|strong=\"H8145\"* to|strong=\"H5704\"* Esther on|strong=\"H3117\"* the|strong=\"H5414\"* second|strong=\"H8145\"* day|strong=\"H3117\"* at|strong=\"H3117\"* the|strong=\"H5414\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*, “What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*, queen|strong=\"H4436\"* Esther? It|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H1571\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* request|strong=\"H1246\"*? Even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H5414\"* half|strong=\"H2677\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kingdom|strong=\"H4438\"* it|strong=\"H5414\"* shall|strong=\"H4428\"* be|strong=\"H1571\"* performed|strong=\"H6213\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6030\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* answered|strong=\"H6030\"*, “If I|strong=\"H5414\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* your|strong=\"H5414\"* sight|strong=\"H5869\"*, O|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H6030\"* if it|strong=\"H5414\"* pleases|strong=\"H2895\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* my|strong=\"H5414\"* life|strong=\"H5315\"* be|strong=\"H5315\"* given|strong=\"H5414\"* me|strong=\"H5414\"* at|strong=\"H5921\"* my|strong=\"H5414\"* petition|strong=\"H7596\"*, and|strong=\"H6030\"* my|strong=\"H5414\"* people|strong=\"H5971\"* at|strong=\"H5921\"* my|strong=\"H5414\"* request|strong=\"H1246\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5971\"* sold|strong=\"H4376\"*, I|strong=\"H3588\"* and|strong=\"H4428\"* my|strong=\"H3588\"* people|strong=\"H5971\"*, to|strong=\"H4428\"* be|strong=\"H4428\"* destroyed|strong=\"H8045\"*, to|strong=\"H4428\"* be|strong=\"H4428\"* slain|strong=\"H2026\"*, and|strong=\"H4428\"* to|strong=\"H4428\"* perish. But|strong=\"H3588\"* if|strong=\"H3588\"* we|strong=\"H3068\"* had|strong=\"H4428\"* been|strong=\"H5971\"* sold|strong=\"H4376\"* for|strong=\"H3588\"* male|strong=\"H5650\"* and|strong=\"H4428\"* female|strong=\"H8198\"* slaves|strong=\"H5650\"*, I|strong=\"H3588\"* would|strong=\"H5971\"* have|strong=\"H5971\"* held|strong=\"H4428\"* my|strong=\"H3588\"* peace|strong=\"H2790\"*, although|strong=\"H3588\"* the|strong=\"H3588\"* adversary|strong=\"H6862\"* could|strong=\"H5971\"* not|strong=\"H3588\"* have|strong=\"H5971\"* compensated for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s loss.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2088\"* King|strong=\"H4428\"* Ahasuerus said|strong=\"H3651\"* to|strong=\"H6213\"* Esther the|strong=\"H6213\"* queen|strong=\"H4436\"*, “Who|strong=\"H4310\"* is|strong=\"H2088\"* he|strong=\"H1931\"*, and|strong=\"H4428\"* where|strong=\"H2088\"* is|strong=\"H2088\"* he|strong=\"H1931\"* who|strong=\"H4310\"* dared presume|strong=\"H4390\"* in|strong=\"H6213\"* his|strong=\"H6213\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* do|strong=\"H6213\"* so|strong=\"H3651\"*?”" + }, + { + "verseNum": 6, + "text": "Esther said, “An|strong=\"H6440\"* adversary|strong=\"H6862\"* and|strong=\"H4428\"* an|strong=\"H6440\"* enemy|strong=\"H6862\"*, even this|strong=\"H2088\"* wicked|strong=\"H7451\"* Haman|strong=\"H2001\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* arose|strong=\"H6965\"* in|strong=\"H5921\"* his|strong=\"H5921\"* wrath|strong=\"H2534\"* from|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"* and|strong=\"H6965\"* went|strong=\"H4428\"* into|strong=\"H5921\"* the|strong=\"H5921\"* palace|strong=\"H1055\"* garden|strong=\"H1594\"*. Haman|strong=\"H2001\"* stood|strong=\"H5975\"* up|strong=\"H6965\"* to|strong=\"H5921\"* make|strong=\"H7200\"* request|strong=\"H1245\"* for|strong=\"H3588\"* his|strong=\"H5921\"* life|strong=\"H5315\"* to|strong=\"H5921\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H5975\"* was|strong=\"H4428\"* evil|strong=\"H7451\"* determined|strong=\"H3615\"* against|strong=\"H5921\"* him|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* the|strong=\"H6440\"* king|strong=\"H4428\"* returned|strong=\"H7725\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* palace|strong=\"H1004\"* garden|strong=\"H1594\"* into|strong=\"H7725\"* the|strong=\"H6440\"* place|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H6440\"* banquet|strong=\"H4960\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*; and|strong=\"H7725\"* Haman|strong=\"H2001\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* couch|strong=\"H4296\"* where|strong=\"H1004\"* Esther was|strong=\"H1697\"*. Then|strong=\"H3318\"* the|strong=\"H6440\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Will|strong=\"H4428\"* he|strong=\"H1004\"* even|strong=\"H1571\"* assault|strong=\"H3533\"* the|strong=\"H6440\"* queen|strong=\"H4436\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H4428\"* me|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"*?” As|strong=\"H1697\"* the|strong=\"H6440\"* word|strong=\"H1697\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s mouth|strong=\"H6310\"*, they|strong=\"H5921\"* covered|strong=\"H2645\"* Haman|strong=\"H2001\"*’s face|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* Harbonah|strong=\"H2726\"*, one|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1004\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, said|strong=\"H1696\"*, “Behold|strong=\"H2009\"*, the|strong=\"H6440\"* gallows|strong=\"H6086\"* fifty|strong=\"H2572\"* cubits+ 7:9 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* high|strong=\"H1364\"*, which|strong=\"H1004\"* Haman|strong=\"H2001\"* has|strong=\"H4428\"* made|strong=\"H6213\"* for|strong=\"H5921\"* Mordecai|strong=\"H4782\"*, who|strong=\"H4428\"* spoke|strong=\"H1696\"* good|strong=\"H2896\"* for|strong=\"H5921\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, is|strong=\"H1571\"* standing|strong=\"H5975\"* at|strong=\"H5921\"* Haman|strong=\"H2001\"*’s house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H5921\"* they|strong=\"H5921\"* hanged|strong=\"H8518\"* Haman|strong=\"H2001\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* that|strong=\"H4428\"* he|strong=\"H5921\"* had|strong=\"H4428\"* prepared|strong=\"H3559\"* for|strong=\"H5921\"* Mordecai|strong=\"H4782\"*. Then|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* was|strong=\"H4428\"* pacified|strong=\"H7918\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "On|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, King|strong=\"H4428\"* Ahasuerus gave|strong=\"H5414\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*, the|strong=\"H6440\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*, to|strong=\"H5414\"* Esther the|strong=\"H6440\"* queen|strong=\"H4436\"*. Mordecai|strong=\"H4782\"* came|strong=\"H4428\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* Esther had|strong=\"H4428\"* told|strong=\"H5046\"* what|strong=\"H4100\"* he|strong=\"H1931\"* was|strong=\"H1931\"* to|strong=\"H5414\"* her|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* took|strong=\"H5493\"* off|strong=\"H5493\"* his|strong=\"H5414\"* ring|strong=\"H2885\"*, which|strong=\"H1004\"* he|strong=\"H1004\"* had|strong=\"H4428\"* taken|strong=\"H5493\"* from|strong=\"H5493\"* Haman|strong=\"H2001\"*, and|strong=\"H4428\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Mordecai|strong=\"H4782\"*. Esther set|strong=\"H7760\"* Mordecai|strong=\"H4782\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*." + }, + { + "verseNum": 3, + "text": "Esther spoke|strong=\"H1696\"* yet|strong=\"H3254\"* again|strong=\"H3254\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* at|strong=\"H5921\"* his|strong=\"H6440\"* feet|strong=\"H7272\"* and|strong=\"H4428\"* begged|strong=\"H2603\"* him|strong=\"H6440\"* with|strong=\"H1696\"* tears|strong=\"H1058\"* to|strong=\"H1696\"* put|strong=\"H3254\"* away|strong=\"H5674\"* the|strong=\"H6440\"* mischief|strong=\"H7451\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"* the|strong=\"H6440\"* Agagite, and|strong=\"H4428\"* his|strong=\"H6440\"* plan|strong=\"H2803\"* that|strong=\"H4428\"* he|strong=\"H5921\"* had|strong=\"H4428\"* planned|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H6440\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6965\"* the|strong=\"H6440\"* king|strong=\"H4428\"* held|strong=\"H4428\"* out|strong=\"H3447\"* to|strong=\"H6440\"* Esther the|strong=\"H6440\"* golden|strong=\"H2091\"* scepter|strong=\"H8275\"*. So|strong=\"H6965\"* Esther arose|strong=\"H6965\"*, and|strong=\"H6965\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H5921\"* said|strong=\"H1697\"*, “If|strong=\"H1121\"* it|strong=\"H5921\"* pleases|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* if|strong=\"H1121\"* I|strong=\"H5921\"* have|strong=\"H5869\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H5921\"* his|strong=\"H3605\"* sight|strong=\"H5869\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* thing|strong=\"H1697\"* seems|strong=\"H3605\"* right|strong=\"H3787\"* to|strong=\"H7725\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* am pleasing|strong=\"H2896\"* in|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*, let|strong=\"H7725\"* it|strong=\"H5921\"* be|strong=\"H1697\"* written|strong=\"H3789\"* to|strong=\"H7725\"* reverse|strong=\"H7725\"* the|strong=\"H3605\"* letters|strong=\"H5612\"* devised|strong=\"H4284\"* by|strong=\"H5921\"* Haman|strong=\"H2001\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"* the|strong=\"H3605\"* Agagite, which|strong=\"H1697\"* he|strong=\"H3605\"* wrote|strong=\"H3789\"* to|strong=\"H7725\"* destroy|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* how|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* endure|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* would|strong=\"H5971\"* come|strong=\"H4672\"* to|strong=\"H3201\"* my|strong=\"H7200\"* people|strong=\"H5971\"*? How|strong=\"H3588\"* can|strong=\"H3201\"* I|strong=\"H3588\"* endure|strong=\"H3201\"* to|strong=\"H3201\"* see|strong=\"H7200\"* the|strong=\"H7200\"* destruction|strong=\"H7451\"* of|strong=\"H5971\"* my|strong=\"H7200\"* relatives|strong=\"H4138\"*?”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* King|strong=\"H4428\"* Ahasuerus said to|strong=\"H7971\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* and|strong=\"H7971\"* to|strong=\"H7971\"* Mordecai|strong=\"H4782\"* the|strong=\"H5921\"* Jew|strong=\"H3064\"*, “See|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3027\"* given|strong=\"H5414\"* Esther the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Haman|strong=\"H2001\"*, and|strong=\"H7971\"* they|strong=\"H5921\"* have|strong=\"H3027\"* hanged|strong=\"H8518\"* him|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"* because|strong=\"H5921\"* he|strong=\"H1004\"* laid|strong=\"H5414\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"*." + }, + { + "verseNum": 8, + "text": "Write|strong=\"H3789\"* also|strong=\"H8034\"* to|strong=\"H7725\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* as|strong=\"H3588\"* it|strong=\"H5921\"* pleases|strong=\"H5921\"* you|strong=\"H3588\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s name|strong=\"H8034\"*, and|strong=\"H7725\"* seal|strong=\"H2856\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* which|strong=\"H3064\"* is|strong=\"H8034\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s name|strong=\"H8034\"*, and|strong=\"H7725\"* sealed|strong=\"H2856\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*, may|strong=\"H4428\"* not|strong=\"H3588\"* be|strong=\"H8034\"* reversed by|strong=\"H5921\"* any|strong=\"H3588\"* man|strong=\"H2896\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s scribes|strong=\"H5608\"* were|strong=\"H5971\"* called|strong=\"H7121\"* at|strong=\"H2320\"* that|strong=\"H5971\"* time|strong=\"H6256\"*, in|strong=\"H4428\"* the|strong=\"H3605\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Sivan|strong=\"H5510\"*, on|strong=\"H7121\"* the|strong=\"H3605\"* twenty-third|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*; and|strong=\"H3967\"* it|strong=\"H1931\"* was|strong=\"H1931\"* written|strong=\"H3789\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Mordecai|strong=\"H4782\"* commanded|strong=\"H6680\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* the|strong=\"H3605\"* local governors|strong=\"H6346\"*, and|strong=\"H3967\"* the|strong=\"H3605\"* governors|strong=\"H6346\"* and|strong=\"H3967\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* which|strong=\"H1931\"* are|strong=\"H5971\"* from|strong=\"H5704\"* India|strong=\"H1912\"* to|strong=\"H5704\"* Ethiopia|strong=\"H3568\"*, one|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"*, to|strong=\"H5704\"* every|strong=\"H3605\"* province|strong=\"H4082\"* according to|strong=\"H5704\"* its|strong=\"H3605\"* writing|strong=\"H3789\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* every|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H4428\"* their|strong=\"H3605\"* language|strong=\"H3956\"*, and|strong=\"H3967\"* to|strong=\"H5704\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* in|strong=\"H4428\"* their|strong=\"H3605\"* writing|strong=\"H3789\"*, and|strong=\"H3967\"* in|strong=\"H4428\"* their|strong=\"H3605\"* language|strong=\"H3956\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3027\"* wrote|strong=\"H3789\"* in|strong=\"H4428\"* the|strong=\"H7971\"* name|strong=\"H8034\"* of|strong=\"H1121\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H1121\"* sealed|strong=\"H2856\"* it|strong=\"H8034\"* with|strong=\"H3027\"* the|strong=\"H7971\"* king|strong=\"H4428\"*’s ring|strong=\"H2885\"*, and|strong=\"H1121\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* by|strong=\"H3027\"* courier|strong=\"H7323\"* on|strong=\"H7392\"* horseback|strong=\"H5483\"*, riding|strong=\"H7392\"* on|strong=\"H7392\"* royal|strong=\"H4428\"* horses|strong=\"H5483\"* that|strong=\"H4428\"* were|strong=\"H1121\"* bred from|strong=\"H3027\"* swift|strong=\"H7409\"* steeds|strong=\"H7409\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* those|strong=\"H3605\"* letters, the|strong=\"H3605\"* king|strong=\"H4428\"* granted|strong=\"H5414\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H5971\"* in|strong=\"H5921\"* every|strong=\"H3605\"* city|strong=\"H5892\"* to|strong=\"H5921\"* gather|strong=\"H6950\"* themselves|strong=\"H5315\"* together|strong=\"H6950\"* and|strong=\"H4428\"* to|strong=\"H5921\"* defend|strong=\"H5975\"* their|strong=\"H3605\"* lives|strong=\"H5315\"*—to|strong=\"H5921\"* destroy|strong=\"H8045\"*, to|strong=\"H5921\"* kill|strong=\"H2026\"*, and|strong=\"H4428\"* to|strong=\"H5921\"* cause|strong=\"H5414\"* to|strong=\"H5921\"* perish all|strong=\"H3605\"* the|strong=\"H3605\"* power of|strong=\"H4428\"* the|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* province|strong=\"H4082\"* that|strong=\"H5971\"* would|strong=\"H5971\"* assault|strong=\"H6696\"* them|strong=\"H5414\"*, their|strong=\"H3605\"* little|strong=\"H2945\"* ones|strong=\"H2945\"* and|strong=\"H4428\"* women, and|strong=\"H4428\"* to|strong=\"H5921\"* plunder|strong=\"H7998\"* their|strong=\"H3605\"* possessions|strong=\"H7998\"*," + }, + { + "verseNum": 12, + "text": "on|strong=\"H3117\"* one|strong=\"H3605\"* day|strong=\"H3117\"* in|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Ahasuerus, on|strong=\"H3117\"* the|strong=\"H3605\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3605\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar." + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* copy|strong=\"H6572\"* of|strong=\"H3117\"* the|strong=\"H3605\"* letter|strong=\"H3791\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* decree|strong=\"H1881\"* should|strong=\"H3117\"* be|strong=\"H1961\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H3117\"* every|strong=\"H3605\"* province|strong=\"H4082\"*, was|strong=\"H1961\"* published|strong=\"H1540\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H5971\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* should|strong=\"H3117\"* be|strong=\"H1961\"* ready for|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* to|strong=\"H1961\"* avenge|strong=\"H5358\"* themselves|strong=\"H5414\"* on|strong=\"H3117\"* their|strong=\"H3605\"* enemies." + }, + { + "verseNum": 14, + "text": "So|strong=\"H5414\"* the|strong=\"H5414\"* couriers|strong=\"H7323\"* who|strong=\"H4428\"* rode|strong=\"H7392\"* on|strong=\"H7392\"* royal|strong=\"H4428\"* horses|strong=\"H7409\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, hastened|strong=\"H1765\"* and|strong=\"H4428\"* pressed on|strong=\"H7392\"* by|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"*. The|strong=\"H5414\"* decree|strong=\"H1881\"* was|strong=\"H1697\"* given|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H4428\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"*." + }, + { + "verseNum": 15, + "text": "Mordecai|strong=\"H4782\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* in|strong=\"H4428\"* royal|strong=\"H4438\"* clothing|strong=\"H3830\"* of|strong=\"H4428\"* blue|strong=\"H8504\"* and|strong=\"H4428\"* white|strong=\"H2353\"*, and|strong=\"H4428\"* with|strong=\"H6440\"* a|strong=\"H3068\"* great|strong=\"H1419\"* crown|strong=\"H5850\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, and|strong=\"H4428\"* with|strong=\"H6440\"* a|strong=\"H3068\"* robe|strong=\"H3830\"* of|strong=\"H4428\"* fine linen and|strong=\"H4428\"* purple|strong=\"H8504\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* shouted|strong=\"H6670\"* and|strong=\"H4428\"* was|strong=\"H5892\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1961\"* Jews|strong=\"H3064\"* had|strong=\"H1961\"* light, gladness|strong=\"H8057\"*, joy|strong=\"H8057\"*, and|strong=\"H8057\"* honor|strong=\"H3366\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* every|strong=\"H3605\"* province|strong=\"H4082\"* and|strong=\"H4428\"* in|strong=\"H5921\"* every|strong=\"H3605\"* city|strong=\"H5892\"*, wherever|strong=\"H3605\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H3605\"* decree|strong=\"H1881\"* came|strong=\"H5060\"*, the|strong=\"H3605\"* Jews|strong=\"H3064\"* had|strong=\"H4428\"* gladness|strong=\"H8057\"*, joy|strong=\"H8057\"*, a|strong=\"H3068\"* feast|strong=\"H4960\"* and|strong=\"H4428\"* a|strong=\"H3068\"* holiday|strong=\"H2896\"*. Many|strong=\"H7227\"* from|strong=\"H5921\"* among|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H4725\"* became|strong=\"H1697\"* Jews|strong=\"H3064\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H3117\"* in|strong=\"H6213\"* the|strong=\"H6213\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6213\"* month|strong=\"H2320\"* Adar, on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H6213\"* month|strong=\"H2320\"*, when|strong=\"H3117\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s commandment|strong=\"H1697\"* and|strong=\"H4428\"* his|strong=\"H6213\"* decree|strong=\"H1881\"* came|strong=\"H5060\"* near|strong=\"H5060\"* to|strong=\"H6213\"* be|strong=\"H1697\"* put|strong=\"H6213\"* in|strong=\"H6213\"* execution|strong=\"H6213\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H6213\"* enemies|strong=\"H8130\"* of|strong=\"H4428\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* hoped|strong=\"H7663\"* to|strong=\"H6213\"* conquer them|strong=\"H1992\"*, (but|strong=\"H1992\"* it|strong=\"H1931\"* turned|strong=\"H2015\"* out|strong=\"H6213\"* that|strong=\"H3117\"* the|strong=\"H6213\"* opposite|strong=\"H8147\"* happened|strong=\"H1697\"*, that|strong=\"H3117\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* conquered those|strong=\"H1992\"* who|strong=\"H1931\"* hated|strong=\"H8130\"* them|strong=\"H1992\"*)," + }, + { + "verseNum": 2, + "text": "the|strong=\"H3605\"* Jews|strong=\"H3064\"* gathered|strong=\"H6950\"* themselves|strong=\"H6440\"* together|strong=\"H6950\"* in|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus, to|strong=\"H7971\"* lay|strong=\"H7971\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* those|strong=\"H3605\"* who|strong=\"H3605\"* wanted|strong=\"H1245\"* to|strong=\"H7971\"* harm|strong=\"H7451\"* them|strong=\"H5921\"*. No|strong=\"H3808\"* one|strong=\"H3605\"* could|strong=\"H5971\"* withstand|strong=\"H5975\"* them|strong=\"H5921\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* them|strong=\"H5921\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, the|strong=\"H3605\"* local governors|strong=\"H6346\"*, the|strong=\"H3605\"* governors|strong=\"H6346\"*, and|strong=\"H4428\"* those|strong=\"H3605\"* who|strong=\"H3605\"* did|strong=\"H6213\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"* helped|strong=\"H5375\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* fear|strong=\"H6343\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"* had|strong=\"H4428\"* fallen|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Mordecai|strong=\"H4782\"* was|strong=\"H4428\"* great|strong=\"H1419\"* in|strong=\"H1980\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H1980\"* his|strong=\"H3605\"* fame|strong=\"H8089\"* went|strong=\"H1980\"* out|strong=\"H1980\"* throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* man|strong=\"H1419\"* Mordecai|strong=\"H4782\"* grew|strong=\"H1980\"* greater|strong=\"H1419\"* and|strong=\"H1980\"* greater|strong=\"H1419\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* Jews|strong=\"H3064\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* their|strong=\"H3605\"* enemies|strong=\"H8130\"* with|strong=\"H6213\"* the|strong=\"H3605\"* stroke|strong=\"H4347\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* with|strong=\"H6213\"* slaughter|strong=\"H4347\"* and|strong=\"H2719\"* destruction, and|strong=\"H2719\"* did|strong=\"H6213\"* what|strong=\"H6213\"* they|strong=\"H6213\"* wanted to|strong=\"H6213\"* those|strong=\"H3605\"* who|strong=\"H3605\"* hated|strong=\"H8130\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H1002\"* the|strong=\"H2026\"* citadel|strong=\"H1002\"* of|strong=\"H1002\"* Susa|strong=\"H7800\"*, the|strong=\"H2026\"* Jews|strong=\"H3064\"* killed|strong=\"H2026\"* and|strong=\"H3967\"* destroyed|strong=\"H2026\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* men." + }, + { + "verseNum": 7, + "text": "They killed Parshandatha|strong=\"H6577\"*, Dalphon|strong=\"H1813\"*, Aspatha," + }, + { + "verseNum": 8, + "text": "Poratha|strong=\"H6334\"*, Adalia, Aridatha," + }, + { + "verseNum": 9, + "text": "Parmashta|strong=\"H6534\"*, Arisai, Aridai, and Vaizatha|strong=\"H2055\"*," + }, + { + "verseNum": 10, + "text": "the|strong=\"H7971\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Haman|strong=\"H2001\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"*, the|strong=\"H7971\"* Jews|strong=\"H3064\"*’ enemy|strong=\"H6887\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t lay|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* plunder." + }, + { + "verseNum": 11, + "text": "On|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, the|strong=\"H6440\"* number|strong=\"H4557\"* of|strong=\"H4428\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H3117\"* slain|strong=\"H2026\"* in|strong=\"H4428\"* the|strong=\"H6440\"* citadel|strong=\"H1002\"* of|strong=\"H4428\"* Susa|strong=\"H7800\"* was|strong=\"H1931\"* brought|strong=\"H4428\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H6213\"* Esther the|strong=\"H5414\"* queen|strong=\"H4436\"*, “The|strong=\"H5414\"* Jews|strong=\"H3064\"* have|strong=\"H1121\"* slain|strong=\"H2026\"* and|strong=\"H3967\"* destroyed|strong=\"H2026\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* men|strong=\"H1121\"* in|strong=\"H6213\"* the|strong=\"H5414\"* citadel|strong=\"H1002\"* of|strong=\"H1121\"* Susa|strong=\"H7800\"*, including|strong=\"H4428\"* the|strong=\"H5414\"* ten|strong=\"H6235\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Haman|strong=\"H2001\"*; what|strong=\"H4100\"* then|strong=\"H5414\"* have|strong=\"H1121\"* they|strong=\"H4100\"* done|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H5414\"* rest|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H5414\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"*! Now|strong=\"H5414\"* what|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* petition|strong=\"H7596\"*? It|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H5750\"* granted|strong=\"H5414\"* you|strong=\"H5414\"*. What|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H5414\"* further|strong=\"H5750\"* request|strong=\"H1246\"*? It|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H5750\"* done|strong=\"H6213\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1571\"* Esther said, “If|strong=\"H1121\"* it|strong=\"H5414\"* pleases|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*, let|strong=\"H5414\"* it|strong=\"H5414\"* be|strong=\"H1121\"* granted|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* who|strong=\"H1121\"* are|strong=\"H3117\"* in|strong=\"H5921\"* Susa|strong=\"H7800\"* to|strong=\"H6213\"* do|strong=\"H6213\"* tomorrow|strong=\"H4279\"* also|strong=\"H1571\"* according|strong=\"H5921\"* to|strong=\"H6213\"* today|strong=\"H3117\"*’s decree|strong=\"H1881\"*, and|strong=\"H1121\"* let|strong=\"H5414\"* Haman|strong=\"H2001\"*’s ten|strong=\"H6235\"* sons|strong=\"H1121\"* be|strong=\"H1121\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H5921\"* gallows|strong=\"H6086\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H5414\"* king|strong=\"H4428\"* commanded this|strong=\"H3651\"* to|strong=\"H6213\"* be|strong=\"H1121\"* done|strong=\"H6213\"*. A|strong=\"H3068\"* decree|strong=\"H1881\"* was|strong=\"H4428\"* given|strong=\"H5414\"* out|strong=\"H5414\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"*; and|strong=\"H1121\"* they|strong=\"H3651\"* hanged|strong=\"H8518\"* Haman|strong=\"H2001\"*’s ten|strong=\"H6235\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3117\"* Jews|strong=\"H3064\"* who|strong=\"H3808\"* were|strong=\"H3117\"* in|strong=\"H3117\"* Susa|strong=\"H7800\"* gathered|strong=\"H6950\"* themselves|strong=\"H6950\"* together|strong=\"H6950\"* on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* also|strong=\"H1571\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"* Adar, and|strong=\"H3967\"* killed|strong=\"H2026\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* men in|strong=\"H3117\"* Susa|strong=\"H7800\"*; but|strong=\"H3808\"* they|strong=\"H3117\"* didn’t lay|strong=\"H7971\"* their|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3117\"* the|strong=\"H3117\"* plunder." + }, + { + "verseNum": 16, + "text": "The|strong=\"H5921\"* other|strong=\"H7605\"* Jews|strong=\"H3064\"* who|strong=\"H5315\"* were|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s provinces|strong=\"H4082\"* gathered|strong=\"H6950\"* themselves|strong=\"H5315\"* together|strong=\"H6950\"*, defended their|strong=\"H5921\"* lives|strong=\"H5315\"*, had|strong=\"H4428\"* rest|strong=\"H7605\"* from|strong=\"H5921\"* their|strong=\"H5921\"* enemies|strong=\"H8130\"*, and|strong=\"H7971\"* killed|strong=\"H2026\"* seventy-five|strong=\"H7657\"* thousand of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5315\"* hated|strong=\"H8130\"* them|strong=\"H5921\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t lay|strong=\"H7971\"* their|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* plunder." + }, + { + "verseNum": 17, + "text": "This|strong=\"H6213\"* was|strong=\"H3117\"* done|strong=\"H6213\"* on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"* Adar; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H3117\"* month|strong=\"H2320\"* they|strong=\"H3117\"* rested|strong=\"H5117\"* and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3117\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* who|strong=\"H6213\"* were|strong=\"H3117\"* in|strong=\"H6213\"* Susa|strong=\"H7800\"* assembled|strong=\"H6950\"* together|strong=\"H6950\"* on|strong=\"H3117\"* the|strong=\"H6213\"* thirteenth|strong=\"H7969\"* and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fourteenth|strong=\"H6240\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month; and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H6213\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H3117\"* month, they|strong=\"H3117\"* rested|strong=\"H5117\"*, and|strong=\"H3117\"* made|strong=\"H6213\"* it|strong=\"H6213\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Jews|strong=\"H3064\"* of|strong=\"H3117\"* the|strong=\"H5921\"* villages|strong=\"H6519\"*, who|strong=\"H3427\"* live|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* unwalled|strong=\"H6521\"* towns|strong=\"H5892\"*, make|strong=\"H6213\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* month|strong=\"H2320\"* Adar a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* gladness|strong=\"H8057\"* and|strong=\"H3117\"* feasting|strong=\"H4960\"*, a|strong=\"H3068\"* holiday|strong=\"H2896\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* sending|strong=\"H4916\"* presents of|strong=\"H3117\"* food|strong=\"H4490\"* to|strong=\"H6213\"* one|strong=\"H2896\"* another|strong=\"H7453\"*." + }, + { + "verseNum": 20, + "text": "Mordecai|strong=\"H4782\"* wrote|strong=\"H3789\"* these|strong=\"H3789\"* things|strong=\"H1697\"*, and|strong=\"H7971\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1697\"* in|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* provinces|strong=\"H4082\"* of|strong=\"H4428\"* the|strong=\"H3605\"* King|strong=\"H4428\"* Ahasuerus, both|strong=\"H3605\"* near|strong=\"H7138\"* and|strong=\"H7971\"* far|strong=\"H7350\"*," + }, + { + "verseNum": 21, + "text": "to|strong=\"H1961\"* enjoin them|strong=\"H5921\"* that|strong=\"H3605\"* they|strong=\"H3117\"* should|strong=\"H8141\"* keep|strong=\"H6213\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* and|strong=\"H6965\"* fifteenth|strong=\"H2568\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* month|strong=\"H2320\"* Adar yearly|strong=\"H3117\"*," + }, + { + "verseNum": 22, + "text": "as|strong=\"H3117\"* the|strong=\"H6213\"* days|strong=\"H3117\"* in|strong=\"H6213\"* which|strong=\"H1992\"* the|strong=\"H6213\"* Jews|strong=\"H3064\"* had|strong=\"H3064\"* rest|strong=\"H5117\"* from|strong=\"H3117\"* their|strong=\"H1992\"* enemies, and|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"* which|strong=\"H1992\"* was|strong=\"H3117\"* turned|strong=\"H2015\"* to|strong=\"H6213\"* them|strong=\"H1992\"* from|strong=\"H3117\"* sorrow|strong=\"H3015\"* to|strong=\"H6213\"* gladness|strong=\"H8057\"*, and|strong=\"H3117\"* from|strong=\"H3117\"* mourning into|strong=\"H2015\"* a|strong=\"H3068\"* holiday|strong=\"H2896\"*; that|strong=\"H3117\"* they|strong=\"H1992\"* should|strong=\"H3117\"* make|strong=\"H6213\"* them|strong=\"H1992\"* days|strong=\"H3117\"* of|strong=\"H3117\"* feasting|strong=\"H4960\"* and|strong=\"H3117\"* gladness|strong=\"H8057\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* sending|strong=\"H4916\"* presents|strong=\"H4979\"* of|strong=\"H3117\"* food|strong=\"H4490\"* to|strong=\"H6213\"* one|strong=\"H2896\"* another|strong=\"H7453\"*, and|strong=\"H3117\"* gifts|strong=\"H4979\"* to|strong=\"H6213\"* the|strong=\"H6213\"* needy." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* Jews|strong=\"H3064\"* accepted|strong=\"H6901\"* the|strong=\"H6213\"* custom|strong=\"H6901\"* that|strong=\"H3064\"* they|strong=\"H6213\"* had|strong=\"H4782\"* begun|strong=\"H2490\"*, as|strong=\"H6213\"* Mordecai|strong=\"H4782\"* had|strong=\"H4782\"* written|strong=\"H3789\"* to|strong=\"H6213\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 24, + "text": "because|strong=\"H3588\"* Haman|strong=\"H2001\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hammedatha|strong=\"H4099\"*, the|strong=\"H3605\"* Agagite, the|strong=\"H3605\"* enemy|strong=\"H6887\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, had|strong=\"H3588\"* plotted|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* to|strong=\"H5921\"* destroy|strong=\"H2000\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* had|strong=\"H3588\"* cast|strong=\"H5307\"* “Pur|strong=\"H6332\"*”, that|strong=\"H3588\"* is|strong=\"H1931\"* the|strong=\"H3605\"* lot|strong=\"H1486\"*, to|strong=\"H5921\"* consume|strong=\"H2000\"* them|strong=\"H5921\"* and|strong=\"H1121\"* to|strong=\"H5921\"* destroy|strong=\"H2000\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 25, + "text": "but|strong=\"H7725\"* when|strong=\"H7725\"* this|strong=\"H6440\"* became|strong=\"H7725\"* known to|strong=\"H7725\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, he|strong=\"H5921\"* commanded by|strong=\"H5921\"* letters|strong=\"H5612\"* that|strong=\"H4428\"* his|strong=\"H7725\"* wicked|strong=\"H7451\"* plan|strong=\"H2803\"*, which|strong=\"H3064\"* he|strong=\"H5921\"* had|strong=\"H4428\"* planned|strong=\"H2803\"* against|strong=\"H5921\"* the|strong=\"H6440\"* Jews|strong=\"H3064\"*, should|strong=\"H4428\"* return|strong=\"H7725\"* on|strong=\"H5921\"* his|strong=\"H7725\"* own|strong=\"H5973\"* head|strong=\"H7218\"*, and|strong=\"H1121\"* that|strong=\"H4428\"* he|strong=\"H5921\"* and|strong=\"H1121\"* his|strong=\"H7725\"* sons|strong=\"H1121\"* should|strong=\"H4428\"* be|strong=\"H1121\"* hanged|strong=\"H8518\"* on|strong=\"H5921\"* the|strong=\"H6440\"* gallows|strong=\"H6086\"*." + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3117\"* called|strong=\"H7121\"* these|strong=\"H2063\"* days|strong=\"H3117\"* “Purim|strong=\"H6332\"*”,+ 9:26 Purim is the Hebrew plural for pur, which means lot.* from|strong=\"H5921\"* the|strong=\"H3605\"* word|strong=\"H1697\"* “Pur|strong=\"H6332\"*.” Therefore|strong=\"H3651\"* because|strong=\"H5921\"* of|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3117\"* this|strong=\"H2063\"* letter, and|strong=\"H3117\"* of|strong=\"H3117\"* that|strong=\"H7200\"* which|strong=\"H1697\"* they|strong=\"H3117\"* had|strong=\"H4100\"* seen|strong=\"H7200\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"* matter|strong=\"H1697\"*, and|strong=\"H3117\"* that|strong=\"H7200\"* which|strong=\"H1697\"* had|strong=\"H4100\"* come|strong=\"H5060\"* to|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "the|strong=\"H3605\"* Jews|strong=\"H3064\"* established|strong=\"H6965\"* and|strong=\"H6965\"* imposed on|strong=\"H5921\"* themselves|strong=\"H6213\"*, on|strong=\"H5921\"* their|strong=\"H3605\"* descendants|strong=\"H2233\"*, and|strong=\"H6965\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* joined|strong=\"H3867\"* themselves|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, so|strong=\"H6213\"* that|strong=\"H3605\"* it|strong=\"H5921\"* should|strong=\"H8141\"* not|strong=\"H3808\"* fail|strong=\"H5674\"* that|strong=\"H3605\"* they|strong=\"H3117\"* would|strong=\"H6213\"* keep|strong=\"H6213\"* these|strong=\"H6213\"* two|strong=\"H8147\"* days|strong=\"H3117\"* according|strong=\"H5921\"* to|strong=\"H1961\"* what|strong=\"H6213\"* was|strong=\"H1961\"* written and|strong=\"H6965\"* according|strong=\"H5921\"* to|strong=\"H1961\"* its|strong=\"H3605\"* appointed|strong=\"H6213\"* time|strong=\"H3117\"* every|strong=\"H3605\"* year|strong=\"H8141\"*;" + }, + { + "verseNum": 28, + "text": "and|strong=\"H3117\"* that|strong=\"H3605\"* these|strong=\"H6213\"* days|strong=\"H3117\"* should|strong=\"H3117\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* and|strong=\"H3117\"* kept|strong=\"H6213\"* throughout|strong=\"H3605\"* every|strong=\"H3605\"* generation|strong=\"H1755\"*, every|strong=\"H3605\"* family|strong=\"H4940\"*, every|strong=\"H3605\"* province|strong=\"H4082\"*, and|strong=\"H3117\"* every|strong=\"H3605\"* city|strong=\"H5892\"*; and|strong=\"H3117\"* that|strong=\"H3605\"* these|strong=\"H6213\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Purim|strong=\"H6332\"* should|strong=\"H3117\"* not|strong=\"H3808\"* fail|strong=\"H5674\"* from|strong=\"H3117\"* among|strong=\"H8432\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"*, nor|strong=\"H3808\"* their|strong=\"H3605\"* memory|strong=\"H2143\"* perish|strong=\"H5674\"* from|strong=\"H3117\"* their|strong=\"H3605\"* offspring|strong=\"H2233\"*.+ 9:28 or, seed*" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H6965\"* Esther the|strong=\"H3605\"* queen|strong=\"H4436\"*, the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Abihail, and|strong=\"H6965\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* wrote|strong=\"H3789\"* with|strong=\"H3605\"* all|strong=\"H3605\"* authority|strong=\"H8633\"* to|strong=\"H6965\"* confirm|strong=\"H6965\"* this|strong=\"H2063\"* second|strong=\"H8145\"* letter of|strong=\"H1323\"* Purim|strong=\"H6332\"*." + }, + { + "verseNum": 30, + "text": "He|strong=\"H3605\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* in|strong=\"H1697\"* the|strong=\"H3605\"* hundred|strong=\"H3967\"* twenty-seven|strong=\"H6242\"* provinces|strong=\"H4082\"* of|strong=\"H1697\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"* of|strong=\"H1697\"* Ahasuerus with|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* peace|strong=\"H7965\"* and|strong=\"H3967\"* truth," + }, + { + "verseNum": 31, + "text": "to|strong=\"H5921\"* confirm|strong=\"H6965\"* these|strong=\"H6965\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Purim|strong=\"H6332\"* in|strong=\"H5921\"* their|strong=\"H5921\"* appointed|strong=\"H2165\"* times|strong=\"H3117\"*, as|strong=\"H1697\"* Mordecai|strong=\"H4782\"* the|strong=\"H5921\"* Jew|strong=\"H3064\"* and|strong=\"H6965\"* Esther the|strong=\"H5921\"* queen|strong=\"H4436\"* had|strong=\"H4782\"* decreed|strong=\"H6965\"*, and|strong=\"H6965\"* as|strong=\"H1697\"* they|strong=\"H3117\"* had|strong=\"H4782\"* imposed upon|strong=\"H5921\"* themselves|strong=\"H5315\"* and|strong=\"H6965\"* their|strong=\"H5921\"* descendants|strong=\"H2233\"* in|strong=\"H5921\"* the|strong=\"H5921\"* matter|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H5921\"* fastings|strong=\"H6685\"* and|strong=\"H6965\"* their|strong=\"H5921\"* mourning." + }, + { + "verseNum": 32, + "text": "The|strong=\"H6965\"* commandment|strong=\"H1697\"* of|strong=\"H1697\"* Esther confirmed|strong=\"H6965\"* these|strong=\"H3789\"* matters|strong=\"H1697\"* of|strong=\"H1697\"* Purim|strong=\"H6332\"*; and|strong=\"H6965\"* it|strong=\"H3789\"* was|strong=\"H1697\"* written|strong=\"H3789\"* in|strong=\"H3789\"* the|strong=\"H6965\"* book|strong=\"H5612\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "King|strong=\"H4428\"* Ahasuerus laid|strong=\"H7760\"* a|strong=\"H3068\"* tribute|strong=\"H4522\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land and|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H5921\"* islands of|strong=\"H4428\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "Aren’t all|strong=\"H3605\"* the|strong=\"H3605\"* acts|strong=\"H1697\"* of|strong=\"H4428\"* his|strong=\"H3605\"* power|strong=\"H1369\"* and|strong=\"H4428\"* of|strong=\"H4428\"* his|strong=\"H3605\"* might|strong=\"H1369\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* full|strong=\"H3117\"* account|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H3605\"* greatness|strong=\"H1420\"* of|strong=\"H4428\"* Mordecai|strong=\"H4782\"*, to|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* advanced|strong=\"H1431\"* him|strong=\"H5921\"*, written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"* of|strong=\"H4428\"* the|strong=\"H3605\"* chronicles|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Media|strong=\"H4074\"* and|strong=\"H4428\"* Persia|strong=\"H6539\"*?" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Mordecai|strong=\"H4782\"* the|strong=\"H3605\"* Jew|strong=\"H3064\"* was|strong=\"H4428\"* next|strong=\"H4932\"* to|strong=\"H1696\"* King|strong=\"H4428\"* Ahasuerus, and|strong=\"H4428\"* great|strong=\"H1419\"* among|strong=\"H5971\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* and|strong=\"H4428\"* accepted|strong=\"H7521\"* by|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* his|strong=\"H3605\"* brothers, seeking|strong=\"H1875\"* the|strong=\"H3605\"* good|strong=\"H2896\"* of|strong=\"H4428\"* his|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H4428\"* speaking|strong=\"H1696\"* peace|strong=\"H7965\"* to|strong=\"H1696\"* all|strong=\"H3605\"* his|strong=\"H3605\"* descendants|strong=\"H2233\"*." + } + ] + } + ] + }, + { + "name": "Job", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H1961\"* was|strong=\"H8034\"* a|strong=\"H3068\"* man|strong=\"H7451\"* in|strong=\"H3477\"* the|strong=\"H5493\"* land of|strong=\"H8034\"* Uz|strong=\"H5780\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Job. That|strong=\"H1931\"* man|strong=\"H7451\"* was|strong=\"H8034\"* blameless|strong=\"H8535\"* and|strong=\"H8034\"* upright|strong=\"H3477\"*, and|strong=\"H8034\"* one|strong=\"H1931\"* who|strong=\"H1931\"* feared|strong=\"H3373\"* God,+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H8034\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 2, + "text": "There were|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* him|strong=\"H3205\"* seven|strong=\"H7651\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 3, + "text": "His|strong=\"H3605\"* possessions|strong=\"H4735\"* also|strong=\"H1121\"* were|strong=\"H1961\"* seven|strong=\"H7651\"* thousand sheep|strong=\"H6629\"*, three|strong=\"H7969\"* thousand camels|strong=\"H1581\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* yoke|strong=\"H6776\"* of|strong=\"H1121\"* oxen|strong=\"H1241\"*, five|strong=\"H2568\"* hundred|strong=\"H3967\"* female donkeys, and|strong=\"H3967\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* household|strong=\"H5657\"*; so|strong=\"H1961\"* that|strong=\"H3605\"* this|strong=\"H1931\"* man|strong=\"H1121\"* was|strong=\"H1961\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H7121\"* sons|strong=\"H1121\"* went|strong=\"H1980\"* and|strong=\"H1121\"* held|strong=\"H6213\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* in|strong=\"H1980\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* each|strong=\"H3117\"* one|strong=\"H1121\"* on|strong=\"H3117\"* his|strong=\"H7121\"* birthday|strong=\"H3117\"*; and|strong=\"H1121\"* they|strong=\"H3117\"* sent|strong=\"H7971\"* and|strong=\"H1121\"* called|strong=\"H7121\"* for|strong=\"H7121\"* their|strong=\"H7971\"* three|strong=\"H7969\"* sisters to|strong=\"H1980\"* eat and|strong=\"H1121\"* to|strong=\"H1980\"* drink|strong=\"H8354\"* with|strong=\"H5973\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H3588\"* was|strong=\"H1961\"* so|strong=\"H6213\"*, when|strong=\"H3588\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H3605\"* feasting|strong=\"H4960\"* had|strong=\"H1961\"* run their|strong=\"H3605\"* course, that|strong=\"H3588\"* Job sent|strong=\"H7971\"* and|strong=\"H1121\"* sanctified|strong=\"H6942\"* them|strong=\"H7971\"*, and|strong=\"H1121\"* rose|strong=\"H7925\"* up|strong=\"H5927\"* early|strong=\"H7925\"* in|strong=\"H6213\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, and|strong=\"H1121\"* offered|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* according|strong=\"H3602\"* to|strong=\"H7971\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H1121\"* them|strong=\"H7971\"* all|strong=\"H3605\"*. For|strong=\"H3588\"* Job said, “It|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H3588\"* my|strong=\"H3605\"* sons|strong=\"H1121\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H1121\"* renounced God|strong=\"H7971\"* in|strong=\"H6213\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"*.” Job did|strong=\"H6213\"* so|strong=\"H6213\"* continually|strong=\"H3605\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H1961\"* God|strong=\"H3068\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"* to|strong=\"H3068\"* present|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*,+ 1:6 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* Satan|strong=\"H7854\"* also|strong=\"H1571\"* came|strong=\"H1961\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H1980\"* Satan|strong=\"H7854\"*, “Where have|strong=\"H3068\"* you|strong=\"H6030\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Have|strong=\"H3068\"* you|strong=\"H3588\"* considered|strong=\"H7760\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, Job? For|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H7760\"* one|strong=\"H3588\"* like|strong=\"H3644\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* earth, a|strong=\"H3068\"* blameless|strong=\"H8535\"* and|strong=\"H3068\"* an|strong=\"H7760\"* upright|strong=\"H3477\"* man|strong=\"H7451\"*, one|strong=\"H3588\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* Satan|strong=\"H7854\"* answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H6030\"*, “Does|strong=\"H3068\"* Job fear|strong=\"H3372\"* God|strong=\"H3068\"* for|strong=\"H3068\"* nothing|strong=\"H2600\"*?" + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H3605\"* made|strong=\"H4639\"* a|strong=\"H3068\"* hedge|strong=\"H7753\"* around|strong=\"H5439\"* him|strong=\"H3027\"*, and|strong=\"H3027\"* around|strong=\"H5439\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3027\"* around|strong=\"H5439\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3027\"*, on|strong=\"H3027\"* every|strong=\"H3605\"* side|strong=\"H5439\"*? You|strong=\"H3605\"* have|strong=\"H3027\"* blessed|strong=\"H1288\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H1004\"* his|strong=\"H3605\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* his|strong=\"H3605\"* substance|strong=\"H4735\"* is|strong=\"H3027\"* increased|strong=\"H6555\"* in|strong=\"H1004\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* now|strong=\"H4994\"*, and|strong=\"H7971\"* touch|strong=\"H5060\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3027\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* will|strong=\"H3027\"* renounce you|strong=\"H6440\"* to|strong=\"H7971\"* your|strong=\"H3605\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Satan|strong=\"H7854\"*, “Behold|strong=\"H2009\"*,+ 1:12 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3068\"* has|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* power|strong=\"H3027\"*. Only|strong=\"H7535\"* on|strong=\"H3027\"* himself|strong=\"H3027\"* don’t stretch|strong=\"H7971\"* out|strong=\"H3318\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 13, + "text": "It|strong=\"H1961\"* fell|strong=\"H1961\"* on|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* when|strong=\"H1961\"* his|strong=\"H1961\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* his|strong=\"H1961\"* daughters|strong=\"H1323\"* were|strong=\"H1961\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H1004\"* their|strong=\"H1961\"* oldest|strong=\"H1060\"* brother’s house|strong=\"H1004\"*," + }, + { + "verseNum": 14, + "text": "that|strong=\"H4397\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Job, and|strong=\"H3027\"* said|strong=\"H2790\"*, “The|strong=\"H5921\"* oxen|strong=\"H1241\"* were|strong=\"H1961\"* plowing|strong=\"H2790\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* donkeys feeding|strong=\"H7462\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H2719\"* the|strong=\"H3947\"* Sabeans|strong=\"H7614\"* attacked|strong=\"H5221\"*, and|strong=\"H2719\"* took|strong=\"H3947\"* them|strong=\"H5221\"* away|strong=\"H3947\"*. Yes, they|strong=\"H6310\"* have|strong=\"H5288\"* killed|strong=\"H5221\"* the|strong=\"H3947\"* servants|strong=\"H5288\"* with|strong=\"H6310\"* the|strong=\"H3947\"* edge|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* I|strong=\"H5288\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H6310\"* tell|strong=\"H5046\"* you|strong=\"H3947\"*.”" + }, + { + "verseNum": 16, + "text": "While|strong=\"H5750\"* he|strong=\"H4480\"* was|strong=\"H5288\"* still|strong=\"H5750\"* speaking|strong=\"H1696\"*, another|strong=\"H2088\"* also|strong=\"H5750\"* came|strong=\"H5307\"* and|strong=\"H8064\"* said|strong=\"H1696\"*, “The|strong=\"H4480\"* fire of|strong=\"H4480\"* God|strong=\"H8064\"* has|strong=\"H2088\"* fallen|strong=\"H5307\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* has|strong=\"H2088\"* burned|strong=\"H1197\"* up|strong=\"H1197\"* the|strong=\"H4480\"* sheep|strong=\"H6629\"* and|strong=\"H8064\"* the|strong=\"H4480\"* servants|strong=\"H5288\"*, and|strong=\"H8064\"* consumed|strong=\"H1197\"* them|strong=\"H5307\"*, and|strong=\"H8064\"* I|strong=\"H2088\"* alone|strong=\"H4480\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* you|strong=\"H5046\"*.”" + }, + { + "verseNum": 17, + "text": "While|strong=\"H5750\"* he|strong=\"H5921\"* was|strong=\"H5288\"* still|strong=\"H5750\"* speaking|strong=\"H1696\"*, another|strong=\"H2088\"* also|strong=\"H5750\"* came|strong=\"H7969\"* and|strong=\"H7218\"* said|strong=\"H1696\"*, “The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* made|strong=\"H7760\"* three|strong=\"H7969\"* bands|strong=\"H7218\"*, and|strong=\"H7218\"* swept down|strong=\"H5221\"* on|strong=\"H5921\"* the|strong=\"H5921\"* camels|strong=\"H1581\"*, and|strong=\"H7218\"* have|strong=\"H5288\"* taken|strong=\"H3947\"* them|strong=\"H5921\"* away|strong=\"H3947\"*, yes, and|strong=\"H7218\"* killed|strong=\"H5221\"* the|strong=\"H5921\"* servants|strong=\"H5288\"* with|strong=\"H1696\"* the|strong=\"H5921\"* edge|strong=\"H6310\"* of|strong=\"H7218\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*; and|strong=\"H7218\"* I|strong=\"H5921\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H1696\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 18, + "text": "While|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H1004\"* still|strong=\"H5704\"* speaking|strong=\"H1696\"*, there|strong=\"H2088\"* came|strong=\"H1323\"* also|strong=\"H2088\"* another|strong=\"H2088\"*, and|strong=\"H1121\"* said|strong=\"H1696\"*, “Your|strong=\"H5704\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5704\"* daughters|strong=\"H1323\"* were|strong=\"H1121\"* eating and|strong=\"H1121\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H1004\"* their|strong=\"H8354\"* oldest|strong=\"H1060\"* brother’s house|strong=\"H1004\"*," + }, + { + "verseNum": 19, + "text": "and|strong=\"H1419\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* came|strong=\"H5060\"* a|strong=\"H3068\"* great|strong=\"H1419\"* wind|strong=\"H7307\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, and|strong=\"H1419\"* struck|strong=\"H5060\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1419\"* it|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"*, and|strong=\"H1419\"* they|strong=\"H5921\"* are|strong=\"H1004\"* dead|strong=\"H4191\"*. I|strong=\"H2009\"* alone|strong=\"H4422\"* have|strong=\"H5288\"* escaped|strong=\"H4422\"* to|strong=\"H4191\"* tell|strong=\"H5046\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6965\"* Job arose|strong=\"H6965\"*, and|strong=\"H6965\"* tore|strong=\"H7167\"* his|strong=\"H7167\"* robe|strong=\"H4598\"*, and|strong=\"H6965\"* shaved|strong=\"H1494\"* his|strong=\"H7167\"* head|strong=\"H7218\"*, and|strong=\"H6965\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H6965\"* ground, and|strong=\"H6965\"* worshiped|strong=\"H7812\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H8033\"* said|strong=\"H3318\"*, “Naked|strong=\"H6174\"* I|strong=\"H5414\"* came|strong=\"H1961\"* out|strong=\"H3318\"* of|strong=\"H3068\"* my|strong=\"H5414\"* mother’s womb, and|strong=\"H3068\"* naked|strong=\"H6174\"* will|strong=\"H3068\"* I|strong=\"H5414\"* return|strong=\"H7725\"* there|strong=\"H8033\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H5414\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H3947\"* away|strong=\"H7725\"*. Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.”" + }, + { + "verseNum": 22, + "text": "In|strong=\"H5414\"* all|strong=\"H3605\"* this|strong=\"H2063\"*, Job|strong=\"H3808\"* didn’t sin|strong=\"H2398\"*, nor|strong=\"H3808\"* charge|strong=\"H5414\"* God|strong=\"H5414\"* with|strong=\"H3605\"* wrongdoing." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H1961\"* God|strong=\"H3068\"*’s sons|strong=\"H1121\"* came|strong=\"H1961\"* to|strong=\"H3068\"* present|strong=\"H3320\"* themselves|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, Satan|strong=\"H7854\"* came|strong=\"H1961\"* also|strong=\"H1571\"* among|strong=\"H8432\"* them|strong=\"H5921\"* to|strong=\"H3068\"* present|strong=\"H3320\"* himself|strong=\"H3320\"* before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H6030\"* to|strong=\"H1980\"* Satan|strong=\"H7854\"*, “Where|strong=\"H2088\"* have|strong=\"H3068\"* you|strong=\"H6030\"* come|strong=\"H1980\"* from|strong=\"H1980\"*?”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Have|strong=\"H3068\"* you|strong=\"H3588\"* considered|strong=\"H7760\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Job? For|strong=\"H3588\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H7760\"* one|strong=\"H3588\"* like|strong=\"H3644\"* him|strong=\"H7760\"* in|strong=\"H3068\"* the|strong=\"H3588\"* earth, a|strong=\"H3068\"* blameless|strong=\"H8535\"* and|strong=\"H3068\"* an|strong=\"H7760\"* upright|strong=\"H3477\"* man|strong=\"H7451\"*, one|strong=\"H3588\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*. He|strong=\"H3588\"* still|strong=\"H5750\"* maintains his|strong=\"H7760\"* integrity|strong=\"H8538\"*, although|strong=\"H3588\"* you|strong=\"H3588\"* incited|strong=\"H5496\"* me|strong=\"H7760\"* against|strong=\"H2388\"* him|strong=\"H7760\"*, to|strong=\"H3068\"* ruin|strong=\"H7451\"* him|strong=\"H7760\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*.”" + }, + { + "verseNum": 4, + "text": "Satan|strong=\"H7854\"* answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H6030\"*, “Skin|strong=\"H5785\"* for|strong=\"H1157\"* skin|strong=\"H5785\"*. Yes, all|strong=\"H3605\"* that|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H5315\"* has|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* for|strong=\"H1157\"* his|strong=\"H3605\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H6440\"* hand|strong=\"H3027\"* now|strong=\"H4994\"*, and|strong=\"H7971\"* touch|strong=\"H5060\"* his|strong=\"H7971\"* bone|strong=\"H6106\"* and|strong=\"H7971\"* his|strong=\"H7971\"* flesh|strong=\"H1320\"*, and|strong=\"H7971\"* he|strong=\"H3027\"* will|strong=\"H1320\"* renounce you|strong=\"H6440\"* to|strong=\"H7971\"* your|strong=\"H6440\"* face|strong=\"H6440\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Behold|strong=\"H2005\"*, he|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Only spare|strong=\"H8104\"* his|strong=\"H8104\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H3318\"* Satan|strong=\"H7854\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* struck|strong=\"H5221\"* Job|strong=\"H6440\"* with|strong=\"H3068\"* painful sores from|strong=\"H3318\"* the|strong=\"H6440\"* sole|strong=\"H3709\"* of|strong=\"H3068\"* his|strong=\"H3068\"* foot|strong=\"H7272\"* to|strong=\"H5704\"* his|strong=\"H3068\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3947\"* for|strong=\"H3427\"* himself|strong=\"H1931\"* a|strong=\"H3068\"* potsherd|strong=\"H2789\"* to|strong=\"H3427\"* scrape|strong=\"H1623\"* himself|strong=\"H1931\"* with|strong=\"H3427\"*, and|strong=\"H3427\"* he|strong=\"H1931\"* sat|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H3947\"* ashes." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4191\"* his|strong=\"H1288\"* wife said to|strong=\"H4191\"* him|strong=\"H4191\"*, “Do you|strong=\"H1288\"* still|strong=\"H5750\"* maintain|strong=\"H2388\"* your|strong=\"H2388\"* integrity|strong=\"H8538\"*? Renounce God, and|strong=\"H2388\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* he|strong=\"H3605\"* said|strong=\"H1696\"* to|strong=\"H1696\"* her|strong=\"H3605\"*, “You|strong=\"H3605\"* speak|strong=\"H1696\"* as|strong=\"H1571\"* one|strong=\"H3605\"* of|strong=\"H3605\"* the|strong=\"H3605\"* foolish|strong=\"H5036\"* women|strong=\"H5036\"* would|strong=\"H7451\"* speak|strong=\"H1696\"*. What|strong=\"H2896\"*? Shall|strong=\"H3808\"* we|strong=\"H3068\"* receive|strong=\"H6901\"* good|strong=\"H2896\"* at|strong=\"H3808\"* the|strong=\"H3605\"* hand of|strong=\"H3605\"* God|strong=\"H3808\"*, and|strong=\"H2896\"* shall|strong=\"H3808\"* we|strong=\"H3068\"* not|strong=\"H3808\"* receive|strong=\"H6901\"* evil|strong=\"H7451\"*?”" + }, + { + "verseNum": 11, + "text": "Now|strong=\"H8085\"* when|strong=\"H8085\"* Job’s three|strong=\"H7969\"* friends|strong=\"H7453\"* heard|strong=\"H8085\"* of|strong=\"H5921\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* had|strong=\"H7969\"* come on|strong=\"H5921\"* him|strong=\"H5921\"*, they|strong=\"H5921\"* each|strong=\"H3605\"* came|strong=\"H7451\"* from|strong=\"H5921\"* his|strong=\"H3605\"* own place|strong=\"H4725\"*: Eliphaz the|strong=\"H3605\"* Temanite|strong=\"H8489\"*, Bildad|strong=\"H1085\"* the|strong=\"H3605\"* Shuhite|strong=\"H7747\"*, and|strong=\"H8085\"* Zophar|strong=\"H6691\"* the|strong=\"H3605\"* Naamathite|strong=\"H5284\"*; and|strong=\"H8085\"* they|strong=\"H5921\"* made|strong=\"H3259\"* an|strong=\"H3259\"* appointment|strong=\"H3259\"* together|strong=\"H3162\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* sympathize|strong=\"H5110\"* with|strong=\"H5921\"* him|strong=\"H5921\"* and|strong=\"H8085\"* to|strong=\"H5921\"* comfort|strong=\"H5162\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H5375\"* they|strong=\"H3808\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"* from|strong=\"H5921\"* a|strong=\"H3068\"* distance|strong=\"H7350\"*, and|strong=\"H8064\"* didn’t recognize|strong=\"H5234\"* him|strong=\"H5921\"*, they|strong=\"H3808\"* raised|strong=\"H5375\"* their|strong=\"H5375\"* voices|strong=\"H6963\"*, and|strong=\"H8064\"* wept|strong=\"H1058\"*; and|strong=\"H8064\"* they|strong=\"H3808\"* each tore|strong=\"H7167\"* his|strong=\"H5375\"* robe|strong=\"H4598\"*, and|strong=\"H8064\"* sprinkled|strong=\"H2236\"* dust|strong=\"H6083\"* on|strong=\"H5921\"* their|strong=\"H5375\"* heads|strong=\"H7218\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 13, + "text": "So|strong=\"H3966\"* they|strong=\"H3588\"* sat|strong=\"H3427\"* down|strong=\"H3427\"* with|strong=\"H1696\"* him|strong=\"H7200\"* on|strong=\"H3117\"* the|strong=\"H7200\"* ground seven|strong=\"H7651\"* days|strong=\"H3117\"* and|strong=\"H3117\"* seven|strong=\"H7651\"* nights|strong=\"H3915\"*, and|strong=\"H3117\"* no|strong=\"H7200\"* one|strong=\"H3588\"* spoke|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H1696\"* him|strong=\"H7200\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* his|strong=\"H7200\"* grief|strong=\"H3511\"* was|strong=\"H1697\"* very|strong=\"H3966\"* great|strong=\"H1431\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "After|strong=\"H3117\"* this|strong=\"H3651\"* Job opened|strong=\"H6605\"* his|strong=\"H7043\"* mouth|strong=\"H6310\"*, and|strong=\"H3117\"* cursed|strong=\"H7043\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H7043\"* birth." + }, + { + "verseNum": 2, + "text": "Job answered|strong=\"H6030\"*:" + }, + { + "verseNum": 3, + "text": "“Let the|strong=\"H3205\"* day|strong=\"H3117\"* perish in|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H3117\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 4, + "text": "Let|strong=\"H1961\"* that|strong=\"H3117\"* day|strong=\"H3117\"* be|strong=\"H1961\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H1350\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* the|strong=\"H5921\"* shadow|strong=\"H6757\"* of|strong=\"H3117\"* death|strong=\"H6757\"* claim|strong=\"H1350\"* it|strong=\"H5921\"* for|strong=\"H5921\"* their|strong=\"H5921\"* own." + }, + { + "verseNum": 6, + "text": "As|strong=\"H3117\"* for|strong=\"H3117\"* that|strong=\"H3117\"* night|strong=\"H3915\"*, let thick darkness seize|strong=\"H3947\"* on|strong=\"H3117\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, let|strong=\"H1961\"* that|strong=\"H1931\"* night|strong=\"H3915\"* be|strong=\"H1961\"* barren|strong=\"H1565\"*." + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H3117\"* curse|strong=\"H5344\"* it|strong=\"H3117\"* who curse|strong=\"H5344\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H6079\"* the|strong=\"H7200\"* stars|strong=\"H3556\"* of|strong=\"H3556\"* its twilight|strong=\"H5399\"* be|strong=\"H6079\"* dark|strong=\"H2821\"*." + }, + { + "verseNum": 10, + "text": "because|strong=\"H3588\"* it|strong=\"H3588\"* didn’t shut|strong=\"H5462\"* up|strong=\"H5462\"* the|strong=\"H3588\"* doors|strong=\"H1817\"* of|strong=\"H5869\"* my|strong=\"H5641\"* mother’s womb," + }, + { + "verseNum": 11, + "text": "“Why|strong=\"H4100\"* didn’t I|strong=\"H3808\"* die|strong=\"H4191\"* from|strong=\"H3318\"* the|strong=\"H3318\"* womb|strong=\"H7358\"*?" + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* the|strong=\"H3588\"* knees|strong=\"H1290\"* receive|strong=\"H6923\"* me|strong=\"H6923\"*?" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* I|strong=\"H3588\"* should|strong=\"H3588\"* have|strong=\"H6258\"* lain|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H8252\"* been|strong=\"H8252\"* quiet|strong=\"H8252\"*." + }, + { + "verseNum": 14, + "text": "with|strong=\"H5973\"* kings|strong=\"H4428\"* and|strong=\"H4428\"* counselors|strong=\"H3289\"* of|strong=\"H4428\"* the|strong=\"H1129\"* earth," + }, + { + "verseNum": 15, + "text": "or|strong=\"H3701\"* with|strong=\"H5973\"* princes|strong=\"H8269\"* who|strong=\"H1992\"* had|strong=\"H8269\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 16, + "text": "or|strong=\"H3808\"* as|strong=\"H1961\"* a|strong=\"H3068\"* hidden|strong=\"H2934\"* untimely|strong=\"H2934\"* birth|strong=\"H5309\"* I|strong=\"H7200\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*," + }, + { + "verseNum": 17, + "text": "There|strong=\"H8033\"* the|strong=\"H8033\"* wicked|strong=\"H7563\"* cease|strong=\"H2308\"* from|strong=\"H5117\"* troubling|strong=\"H7267\"*." + }, + { + "verseNum": 18, + "text": "There the|strong=\"H8085\"* prisoners are|strong=\"H3808\"* at|strong=\"H3808\"* ease|strong=\"H7599\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5650\"* small|strong=\"H6996\"* and|strong=\"H1419\"* the|strong=\"H5650\"* great|strong=\"H1419\"* are|strong=\"H5650\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 20, + "text": "“Why|strong=\"H4100\"* is|strong=\"H4100\"* light given|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5315\"* is|strong=\"H4100\"* in|strong=\"H5315\"* misery|strong=\"H6001\"*," + }, + { + "verseNum": 21, + "text": "who long|strong=\"H2442\"* for|strong=\"H2442\"* death|strong=\"H4194\"*, but it|strong=\"H4301\"* doesn’t come;" + }, + { + "verseNum": 22, + "text": "who|strong=\"H4672\"* rejoice|strong=\"H8055\"* exceedingly|strong=\"H1524\"*," + }, + { + "verseNum": 23, + "text": "Why is|strong=\"H1870\"* light given to|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H1397\"* whose|strong=\"H1397\"* way|strong=\"H1870\"* is|strong=\"H1870\"* hidden|strong=\"H5641\"*," + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* sighing comes|strong=\"H6440\"* before|strong=\"H6440\"* I|strong=\"H3588\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* which|strong=\"H3588\"* I|strong=\"H3588\"* fear|strong=\"H6343\"* comes on me|strong=\"H3588\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3808\"* am not|strong=\"H3808\"* at|strong=\"H3808\"* ease|strong=\"H7951\"*, neither|strong=\"H3808\"* am I|strong=\"H3808\"* quiet|strong=\"H8252\"*, neither|strong=\"H3808\"* do I|strong=\"H3808\"* have|strong=\"H3808\"* rest|strong=\"H5117\"*;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“If someone|strong=\"H4310\"* ventures|strong=\"H5254\"* to|strong=\"H3201\"* talk|strong=\"H1697\"* with|strong=\"H1697\"* you|strong=\"H4310\"*, will|strong=\"H4310\"* you|strong=\"H4310\"* be|strong=\"H1697\"* grieved|strong=\"H3811\"*?" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3256\"* have|strong=\"H3027\"* instructed|strong=\"H3256\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 4, + "text": "Your|strong=\"H6965\"* words|strong=\"H4405\"* have|strong=\"H4405\"* supported him|strong=\"H3766\"* who was falling|strong=\"H3782\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* it|strong=\"H3588\"* has|strong=\"H3588\"* come|strong=\"H5060\"* to|strong=\"H5704\"* you|strong=\"H3588\"*, and|strong=\"H6258\"* you|strong=\"H3588\"* faint." + }, + { + "verseNum": 6, + "text": "Isn’t your|strong=\"H3808\"* piety your|strong=\"H3808\"* confidence|strong=\"H3690\"*?" + }, + { + "verseNum": 7, + "text": "“Remember|strong=\"H2142\"*, now|strong=\"H4994\"*, who|strong=\"H4310\"* ever|strong=\"H4310\"* perished, being innocent|strong=\"H5355\"*?" + }, + { + "verseNum": 8, + "text": "According to|strong=\"H7200\"* what|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*, those who plow|strong=\"H2790\"* iniquity|strong=\"H5999\"*" + }, + { + "verseNum": 9, + "text": "By|strong=\"H3615\"* the|strong=\"H3615\"* breath|strong=\"H7307\"* of|strong=\"H7307\"* God they perish|strong=\"H3615\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6963\"* roaring|strong=\"H7581\"* of|strong=\"H6963\"* the|strong=\"H6963\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H1121\"* old|strong=\"H1121\"* lion|strong=\"H3833\"* perishes for|strong=\"H1121\"* lack|strong=\"H1097\"* of|strong=\"H1121\"* prey|strong=\"H2964\"*." + }, + { + "verseNum": 12, + "text": "“Now|strong=\"H3947\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* was|strong=\"H1697\"* secretly brought|strong=\"H3947\"* to|strong=\"H1697\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H5921\"* thoughts|strong=\"H5587\"* from|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H2384\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 14, + "text": "fear|strong=\"H6343\"* came|strong=\"H7122\"* on me, and|strong=\"H6106\"* trembling|strong=\"H7460\"*," + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7307\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* passed|strong=\"H2498\"* before|strong=\"H6440\"* my|strong=\"H5921\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3808\"* stood|strong=\"H5975\"* still|strong=\"H5975\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* couldn’t discern|strong=\"H5234\"* its|strong=\"H5975\"* appearance|strong=\"H4758\"*." + }, + { + "verseNum": 17, + "text": "‘Shall|strong=\"H2891\"* mortal man|strong=\"H1397\"* be|strong=\"H1397\"* more|strong=\"H6213\"* just|strong=\"H6663\"* than|strong=\"H6663\"* God?" + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* puts|strong=\"H7760\"* no|strong=\"H3808\"* trust in|strong=\"H5650\"* his|strong=\"H7760\"* servants|strong=\"H5650\"*." + }, + { + "verseNum": 19, + "text": "How much more those who dwell|strong=\"H7931\"* in|strong=\"H1004\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* clay|strong=\"H2563\"*," + }, + { + "verseNum": 20, + "text": "Between morning|strong=\"H1242\"* and|strong=\"H1242\"* evening|strong=\"H6153\"* they|strong=\"H7760\"* are destroyed|strong=\"H3807\"*." + }, + { + "verseNum": 21, + "text": "Isn’t their|strong=\"H3808\"* tent cord|strong=\"H3499\"* plucked|strong=\"H5265\"* up within them|strong=\"H4191\"*?" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Call|strong=\"H7121\"* now|strong=\"H4994\"*; is|strong=\"H3426\"* there|strong=\"H3426\"* any|strong=\"H3426\"* who|strong=\"H4310\"* will|strong=\"H4310\"* answer|strong=\"H6030\"* you|strong=\"H6030\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* resentment kills|strong=\"H4191\"* the|strong=\"H3588\"* foolish man|strong=\"H4191\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* foolish taking|strong=\"H8327\"* root|strong=\"H8327\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H5337\"* children|strong=\"H1121\"* are|strong=\"H1121\"* far|strong=\"H7368\"* from|strong=\"H1121\"* safety|strong=\"H3468\"*." + }, + { + "verseNum": 5, + "text": "whose harvest|strong=\"H7105\"* the|strong=\"H3947\"* hungry|strong=\"H7456\"* eat up|strong=\"H7602\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* affliction doesn’t come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3588\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 7, + "text": "but|strong=\"H3588\"* man|strong=\"H1121\"* is|strong=\"H1121\"* born|strong=\"H3205\"* to|strong=\"H3205\"* trouble|strong=\"H5999\"*," + }, + { + "verseNum": 8, + "text": "“But as|strong=\"H7760\"* for|strong=\"H1875\"* me|strong=\"H7760\"*, I|strong=\"H7760\"* would seek|strong=\"H1875\"* God." + }, + { + "verseNum": 9, + "text": "who|strong=\"H6213\"* does|strong=\"H6213\"* great|strong=\"H1419\"* things|strong=\"H1419\"* that|strong=\"H6213\"* can|strong=\"H6213\"*’t be fathomed," + }, + { + "verseNum": 10, + "text": "who gives|strong=\"H5414\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H6440\"* earth," + }, + { + "verseNum": 11, + "text": "so|strong=\"H7760\"* that|strong=\"H7760\"* he|strong=\"H7760\"* sets|strong=\"H7760\"* up|strong=\"H7760\"* on|strong=\"H7760\"* high|strong=\"H4791\"* those who are|strong=\"H6937\"* low|strong=\"H8217\"*," + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* frustrates|strong=\"H6565\"* the|strong=\"H6213\"* plans|strong=\"H4284\"* of|strong=\"H3027\"* the|strong=\"H6213\"* crafty|strong=\"H6175\"*," + }, + { + "verseNum": 13, + "text": "He takes|strong=\"H3920\"* the|strong=\"H3920\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* their own craftiness|strong=\"H6193\"*;" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3915\"* meet|strong=\"H6298\"* with|strong=\"H2822\"* darkness|strong=\"H2822\"* in|strong=\"H4959\"* the|strong=\"H3915\"* day|strong=\"H3119\"* time|strong=\"H3119\"*," + }, + { + "verseNum": 15, + "text": "But he|strong=\"H3027\"* saves|strong=\"H3467\"* from|strong=\"H3027\"* the|strong=\"H3027\"* sword|strong=\"H2719\"* of|strong=\"H3027\"* their|strong=\"H3027\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"* the|strong=\"H1961\"* poor|strong=\"H1800\"* has|strong=\"H1961\"* hope|strong=\"H8615\"*," + }, + { + "verseNum": 17, + "text": "“Behold|strong=\"H2009\"*, happy is|strong=\"H2009\"* the|strong=\"H2009\"* man whom God corrects|strong=\"H3198\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* wounds|strong=\"H4272\"* and|strong=\"H3027\"* binds|strong=\"H2280\"* up|strong=\"H2280\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* deliver|strong=\"H5337\"* you|strong=\"H3808\"* in|strong=\"H3808\"* six|strong=\"H8337\"* troubles|strong=\"H6869\"*;" + }, + { + "verseNum": 20, + "text": "In|strong=\"H4421\"* famine|strong=\"H7458\"* he|strong=\"H3027\"* will|strong=\"H2719\"* redeem|strong=\"H6299\"* you|strong=\"H3027\"* from|strong=\"H3027\"* death|strong=\"H4194\"*;" + }, + { + "verseNum": 21, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* hidden|strong=\"H2244\"* from|strong=\"H3956\"* the|strong=\"H3588\"* scourge|strong=\"H7752\"* of|strong=\"H3372\"* the|strong=\"H3588\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 22, + "text": "You|strong=\"H3372\"* will|strong=\"H2416\"* laugh|strong=\"H7832\"* at|strong=\"H7832\"* destruction|strong=\"H7701\"* and|strong=\"H3372\"* famine|strong=\"H3720\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H7704\"* be|strong=\"H2416\"* allied|strong=\"H1285\"* with|strong=\"H5973\"* the|strong=\"H3588\"* stones of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3045\"* tent is|strong=\"H2398\"* in|strong=\"H3808\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3588\"* will|strong=\"H7227\"* know|strong=\"H3045\"* also|strong=\"H3588\"* that|strong=\"H3588\"* your|strong=\"H3045\"* offspring|strong=\"H2233\"*+ 5:25 or, seed* will|strong=\"H7227\"* be|strong=\"H3588\"* great|strong=\"H7227\"*," + }, + { + "verseNum": 26, + "text": "You|strong=\"H6256\"* will|strong=\"H6256\"* come|strong=\"H5927\"* to|strong=\"H5927\"* your|strong=\"H5927\"* grave|strong=\"H6913\"* in|strong=\"H6913\"* a|strong=\"H3068\"* full|strong=\"H3624\"* age|strong=\"H3624\"*," + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2009\"*, we|strong=\"H3068\"* have|strong=\"H3045\"* researched it|strong=\"H1931\"*. It|strong=\"H1931\"* is|strong=\"H1931\"* so|strong=\"H3651\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Oh|strong=\"H3863\"* that|strong=\"H3863\"* my|strong=\"H5375\"* anguish were|strong=\"H3708\"* weighed|strong=\"H8254\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* it|strong=\"H5921\"* would|strong=\"H1697\"* be|strong=\"H1697\"* heavier|strong=\"H3513\"* than|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* of|strong=\"H1697\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* arrows|strong=\"H2671\"* of|strong=\"H7307\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* are|strong=\"H2671\"* within|strong=\"H5978\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 5, + "text": "Does the|strong=\"H5921\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* bray|strong=\"H5101\"* when|strong=\"H5921\"* he|strong=\"H5921\"* has grass|strong=\"H1877\"*?" + }, + { + "verseNum": 6, + "text": "Can|strong=\"H3426\"* that|strong=\"H3426\"* which|strong=\"H3426\"* has|strong=\"H3426\"* no|strong=\"H1097\"* flavor|strong=\"H2940\"* be|strong=\"H3426\"* eaten without|strong=\"H1097\"* salt|strong=\"H4417\"*?" + }, + { + "verseNum": 7, + "text": "My|strong=\"H5060\"* soul|strong=\"H5315\"* refuses|strong=\"H3985\"* to|strong=\"H3985\"* touch|strong=\"H5060\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 8, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* I|strong=\"H5414\"* might|strong=\"H7596\"* have|strong=\"H5414\"* my|strong=\"H5414\"* request|strong=\"H7596\"*," + }, + { + "verseNum": 9, + "text": "even that|strong=\"H3027\"* it|strong=\"H1214\"* would|strong=\"H2974\"* please|strong=\"H2974\"* God|strong=\"H3027\"* to|strong=\"H3027\"* crush|strong=\"H1792\"* me|strong=\"H1792\"*;" + }, + { + "verseNum": 10, + "text": "Let|strong=\"H3808\"* it|strong=\"H3588\"* still|strong=\"H5750\"* be|strong=\"H1961\"* my|strong=\"H1961\"* consolation|strong=\"H5165\"*," + }, + { + "verseNum": 11, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H3588\"* strength|strong=\"H3581\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H4100\"* wait|strong=\"H3176\"*?" + }, + { + "verseNum": 12, + "text": "Is|strong=\"H1320\"* my|strong=\"H1320\"* strength|strong=\"H3581\"* the|strong=\"H3581\"* strength|strong=\"H3581\"* of|strong=\"H1320\"* stones?" + }, + { + "verseNum": 13, + "text": "Isn’t it that|strong=\"H4480\"* I|strong=\"H4480\"* have no|strong=\"H4480\"* help|strong=\"H5833\"* in|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 14, + "text": "“To|strong=\"H2617\"* him|strong=\"H5800\"* who|strong=\"H7706\"* is|strong=\"H2617\"* ready to|strong=\"H2617\"* faint, kindness|strong=\"H2617\"* should be|strong=\"H2617\"* shown|strong=\"H5800\"* from his|strong=\"H5800\"* friend|strong=\"H7453\"*;" + }, + { + "verseNum": 15, + "text": "My|strong=\"H5674\"* brothers have dealt deceitfully as|strong=\"H3644\"* a|strong=\"H3068\"* brook|strong=\"H5158\"*," + }, + { + "verseNum": 16, + "text": "which are|strong=\"H6937\"* black|strong=\"H6937\"* by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H4480\"* the|strong=\"H5921\"* ice|strong=\"H7140\"*," + }, + { + "verseNum": 17, + "text": "In|strong=\"H4725\"* the|strong=\"H6256\"* dry season|strong=\"H6256\"*, they|strong=\"H6256\"* vanish|strong=\"H1846\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5927\"* caravans that|strong=\"H5927\"* travel beside them|strong=\"H5927\"* turn away|strong=\"H5927\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5027\"* caravans of|strong=\"H1979\"* Tema|strong=\"H8485\"* looked|strong=\"H5027\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3588\"* were distressed because|strong=\"H3588\"* they|strong=\"H3588\"* were confident." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* are|strong=\"H1961\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 22, + "text": "Did I|strong=\"H3588\"* ever say, ‘Give|strong=\"H3051\"* to|strong=\"H3581\"* me|strong=\"H1157\"*’?" + }, + { + "verseNum": 23, + "text": "or|strong=\"H3027\"*, ‘Deliver|strong=\"H4422\"* me|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* adversary|strong=\"H6862\"*’s hand|strong=\"H3027\"*’?" + }, + { + "verseNum": 24, + "text": "“Teach|strong=\"H3384\"* me|strong=\"H4100\"*, and|strong=\"H2790\"* I|strong=\"H4100\"* will|strong=\"H4100\"* hold my|strong=\"H4100\"* peace|strong=\"H2790\"*." + }, + { + "verseNum": 25, + "text": "How|strong=\"H4100\"* forcible|strong=\"H4834\"* are|strong=\"H4100\"* words of|strong=\"H4480\"* uprightness|strong=\"H3476\"*!" + }, + { + "verseNum": 26, + "text": "Do you|strong=\"H3198\"* intend|strong=\"H2803\"* to|strong=\"H2803\"* reprove|strong=\"H3198\"* words|strong=\"H4405\"*," + }, + { + "verseNum": 27, + "text": "Yes, you|strong=\"H5921\"* would even|strong=\"H5921\"* cast|strong=\"H5307\"* lots for|strong=\"H5921\"* the|strong=\"H5921\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 28, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* be|strong=\"H6440\"* pleased|strong=\"H2974\"* to|strong=\"H5921\"* look|strong=\"H6437\"* at|strong=\"H5921\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 29, + "text": "Please|strong=\"H4994\"* return|strong=\"H7725\"*." + }, + { + "verseNum": 30, + "text": "Is|strong=\"H3426\"* there|strong=\"H3426\"* injustice|strong=\"H5766\"* on|strong=\"H3808\"* my|strong=\"H3808\"* tongue|strong=\"H3956\"*?" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "“Isn’t a|strong=\"H3068\"* man|strong=\"H7916\"* forced|strong=\"H6635\"* to|strong=\"H5921\"* labor|strong=\"H6635\"* on|strong=\"H5921\"* earth?" + }, + { + "verseNum": 2, + "text": "As|strong=\"H5650\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H5650\"* earnestly|strong=\"H5650\"* desires the|strong=\"H5650\"* shadow|strong=\"H6738\"*," + }, + { + "verseNum": 3, + "text": "so|strong=\"H3651\"* I|strong=\"H3651\"* am made to|strong=\"H3915\"* possess|strong=\"H5157\"* months|strong=\"H3391\"* of|strong=\"H5999\"* misery|strong=\"H5999\"*," + }, + { + "verseNum": 4, + "text": "When|strong=\"H4970\"* I|strong=\"H5704\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, I|strong=\"H5704\"* say," + }, + { + "verseNum": 5, + "text": "My|strong=\"H3988\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* worms|strong=\"H7415\"* and|strong=\"H6083\"* clods|strong=\"H1487\"* of|strong=\"H1320\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3615\"* days|strong=\"H3117\"* are|strong=\"H3117\"* swifter|strong=\"H7043\"* than|strong=\"H4480\"* a|strong=\"H3068\"* weaver’s shuttle," + }, + { + "verseNum": 7, + "text": "Oh remember|strong=\"H2142\"* that|strong=\"H3588\"* my|strong=\"H7200\"* life|strong=\"H2416\"* is|strong=\"H2896\"* a|strong=\"H3068\"* breath|strong=\"H7307\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3808\"* eye|strong=\"H5869\"* of|strong=\"H5869\"* him|strong=\"H5869\"* who|strong=\"H7210\"* sees|strong=\"H7210\"* me|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H5869\"* me|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"H3651\"* the|strong=\"H5927\"* cloud|strong=\"H6051\"* is|strong=\"H3651\"* consumed|strong=\"H3615\"* and|strong=\"H3212\"* vanishes|strong=\"H3615\"* away|strong=\"H3212\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H1004\"* will|strong=\"H1004\"* return|strong=\"H7725\"* no|strong=\"H3808\"* more|strong=\"H5750\"* to|strong=\"H7725\"* his|strong=\"H7725\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 11, + "text": "“Therefore|strong=\"H1571\"* I|strong=\"H5315\"* will|strong=\"H1571\"* not|strong=\"H3808\"* keep|strong=\"H2820\"* silent|strong=\"H6310\"*." + }, + { + "verseNum": 12, + "text": "Am I|strong=\"H3588\"* a|strong=\"H3068\"* sea|strong=\"H3220\"*, or|strong=\"H3588\"* a|strong=\"H3068\"* sea|strong=\"H3220\"* monster|strong=\"H8577\"*," + }, + { + "verseNum": 13, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* say, ‘My|strong=\"H5375\"* bed|strong=\"H4904\"* will|strong=\"H6210\"* comfort|strong=\"H5162\"* me|strong=\"H3588\"*." + }, + { + "verseNum": 14, + "text": "then you|strong=\"H2865\"* scare me|strong=\"H2472\"* with dreams|strong=\"H2472\"*" + }, + { + "verseNum": 15, + "text": "so that|strong=\"H5315\"* my|strong=\"H6106\"* soul|strong=\"H5315\"* chooses strangling|strong=\"H4267\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3588\"* loathe|strong=\"H3988\"* my|strong=\"H3588\"* life|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "What|strong=\"H4100\"* is|strong=\"H3820\"* man|strong=\"H3820\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* magnify|strong=\"H1431\"* him|strong=\"H7896\"*," + }, + { + "verseNum": 18, + "text": "that|strong=\"H6485\"* you|strong=\"H6485\"* should visit|strong=\"H6485\"* him|strong=\"H6485\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 19, + "text": "How|strong=\"H4100\"* long|strong=\"H5704\"* will|strong=\"H3808\"* you|strong=\"H5704\"* not|strong=\"H3808\"* look|strong=\"H8159\"* away|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 20, + "text": "If|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, what|strong=\"H4100\"* do|strong=\"H6466\"* I|strong=\"H5921\"* do|strong=\"H6466\"* to|strong=\"H1961\"* you|strong=\"H5921\"*, you|strong=\"H5921\"* watcher|strong=\"H5341\"* of|strong=\"H5921\"* men?" + }, + { + "verseNum": 21, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* not|strong=\"H3808\"* pardon|strong=\"H5375\"* my|strong=\"H5375\"* disobedience, and|strong=\"H5674\"* take|strong=\"H5375\"* away|strong=\"H5375\"* my|strong=\"H5375\"* iniquity|strong=\"H5771\"*?" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H7307\"* you|strong=\"H5704\"* speak|strong=\"H4448\"* these|strong=\"H4448\"* things?" + }, + { + "verseNum": 3, + "text": "Does God pervert|strong=\"H5791\"* justice|strong=\"H4941\"*?" + }, + { + "verseNum": 4, + "text": "If|strong=\"H2398\"* your|strong=\"H7971\"* children|strong=\"H1121\"* have|strong=\"H1121\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* him|strong=\"H7971\"*," + }, + { + "verseNum": 5, + "text": "If|strong=\"H2603\"* you|strong=\"H7836\"* want to|strong=\"H2603\"* seek|strong=\"H7836\"* God diligently|strong=\"H7836\"*," + }, + { + "verseNum": 6, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H5921\"* pure|strong=\"H2134\"* and|strong=\"H6664\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 7, + "text": "Though your|strong=\"H1961\"* beginning|strong=\"H7225\"* was|strong=\"H1961\"* small|strong=\"H4705\"*," + }, + { + "verseNum": 8, + "text": "“Please|strong=\"H4994\"* inquire|strong=\"H7592\"* of|strong=\"H7592\"* past|strong=\"H7223\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 9, + "text": "(For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3117\"* but|strong=\"H3588\"* of|strong=\"H3117\"* yesterday|strong=\"H8543\"*, and|strong=\"H3117\"* know|strong=\"H3045\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 10, + "text": "Shall|strong=\"H3820\"* they|strong=\"H1992\"* not|strong=\"H3808\"* teach|strong=\"H3384\"* you|strong=\"H3808\"*, tell you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "“Can|strong=\"H7685\"* the|strong=\"H3808\"* papyrus|strong=\"H1573\"* grow|strong=\"H7685\"* up|strong=\"H1342\"* without|strong=\"H3808\"* mire|strong=\"H1207\"*?" + }, + { + "verseNum": 12, + "text": "While|strong=\"H5750\"* it|strong=\"H6440\"* is|strong=\"H3605\"* yet|strong=\"H5750\"* in|strong=\"H6440\"* its|strong=\"H3605\"* greenness, not|strong=\"H3808\"* cut|strong=\"H6998\"* down|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "So|strong=\"H3651\"* are the|strong=\"H3605\"* paths of|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* forget|strong=\"H7911\"* God." + }, + { + "verseNum": 14, + "text": "whose confidence|strong=\"H4009\"* will|strong=\"H1004\"* break apart," + }, + { + "verseNum": 15, + "text": "He|strong=\"H1004\"* will|strong=\"H1004\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* his|strong=\"H5921\"* house|strong=\"H1004\"*, but|strong=\"H3808\"* it|strong=\"H5921\"* will|strong=\"H1004\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* green|strong=\"H7373\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H5921\"* roots|strong=\"H8328\"* are|strong=\"H1004\"* wrapped around|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H1530\"* pile|strong=\"H1530\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H7200\"* he|strong=\"H3808\"* is|strong=\"H4725\"* destroyed|strong=\"H1104\"* from|strong=\"H7200\"* his|strong=\"H7200\"* place|strong=\"H4725\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*, this|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1870\"* joy|strong=\"H4885\"* of|strong=\"H1870\"* his|strong=\"H1931\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 20, + "text": "“Behold|strong=\"H2005\"*, God|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* cast|strong=\"H3988\"* away|strong=\"H3988\"* a|strong=\"H3068\"* blameless|strong=\"H8535\"* man|strong=\"H8535\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H5704\"* will|strong=\"H5704\"* still|strong=\"H5704\"* fill|strong=\"H4390\"* your|strong=\"H5704\"* mouth|strong=\"H6310\"* with|strong=\"H4390\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 22, + "text": "Those|strong=\"H8130\"* who|strong=\"H7563\"* hate|strong=\"H8130\"* you|strong=\"H3847\"* will|strong=\"H7563\"* be|strong=\"H7563\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* shame|strong=\"H1322\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Truly|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H4100\"* so|strong=\"H3651\"*," + }, + { + "verseNum": 3, + "text": "If he|strong=\"H4480\"* is|strong=\"H3808\"* pleased|strong=\"H2654\"* to|strong=\"H2654\"* contend|strong=\"H7378\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 4, + "text": "God|strong=\"H4310\"* is|strong=\"H4310\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* heart|strong=\"H3824\"*, and|strong=\"H3824\"* mighty|strong=\"H3581\"* in|strong=\"H2450\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3808\"* removes|strong=\"H6275\"* the|strong=\"H3045\"* mountains|strong=\"H2022\"*, and|strong=\"H2022\"* they|strong=\"H3808\"* don’t know|strong=\"H3045\"* it|strong=\"H3045\"*," + }, + { + "verseNum": 6, + "text": "He shakes|strong=\"H7264\"* the|strong=\"H4725\"* earth out|strong=\"H4725\"* of|strong=\"H5982\"* its place|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* commands the|strong=\"H3808\"* sun|strong=\"H2775\"* and|strong=\"H3808\"* it|strong=\"H3808\"* doesn’t rise|strong=\"H2224\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H5921\"* alone stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* makes|strong=\"H6213\"* the|strong=\"H6213\"* Bear|strong=\"H6213\"*, Orion|strong=\"H3685\"*, and|strong=\"H6213\"* the|strong=\"H6213\"* Pleiades|strong=\"H3598\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* does|strong=\"H6213\"* great|strong=\"H1419\"* things|strong=\"H1419\"* past finding out|strong=\"H6213\"*;" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* goes|strong=\"H5674\"* by|strong=\"H5921\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* I|strong=\"H2005\"* don’t see|strong=\"H7200\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H6213\"* snatches away|strong=\"H7725\"*." + }, + { + "verseNum": 13, + "text": "“God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* withdraw|strong=\"H7725\"* his|strong=\"H7725\"* anger." + }, + { + "verseNum": 14, + "text": "How|strong=\"H3588\"* much|strong=\"H1697\"* less|strong=\"H3588\"* will|strong=\"H1697\"* I|strong=\"H3588\"* answer|strong=\"H6030\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 15, + "text": "Though I|strong=\"H3808\"* were|strong=\"H8199\"* righteous|strong=\"H6663\"*, yet|strong=\"H3808\"* I|strong=\"H3808\"* wouldn’t answer|strong=\"H6030\"* him|strong=\"H6030\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H3588\"* called|strong=\"H7121\"*, and|strong=\"H6030\"* he|strong=\"H3588\"* had|strong=\"H3588\"* answered|strong=\"H6030\"* me|strong=\"H6963\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H6482\"* he|strong=\"H7235\"* breaks me|strong=\"H2600\"* with|strong=\"H7235\"* a|strong=\"H3068\"* storm|strong=\"H8183\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H3588\"* will|strong=\"H7307\"* not|strong=\"H3808\"* allow|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H7725\"* catch my|strong=\"H5414\"* breath|strong=\"H7307\"*," + }, + { + "verseNum": 19, + "text": "If|strong=\"H2009\"* it|strong=\"H4941\"* is|strong=\"H4310\"* a|strong=\"H3068\"* matter of|strong=\"H4941\"* strength|strong=\"H3581\"*, behold|strong=\"H2009\"*, he|strong=\"H4310\"* is|strong=\"H4310\"* mighty|strong=\"H3581\"*!" + }, + { + "verseNum": 20, + "text": "Though I am righteous|strong=\"H6663\"*, my|strong=\"H6310\"* own mouth|strong=\"H6310\"* will|strong=\"H6310\"* condemn|strong=\"H7561\"* me|strong=\"H7561\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3045\"* am blameless|strong=\"H8535\"*." + }, + { + "verseNum": 22, + "text": "“It|strong=\"H1931\"* is|strong=\"H1931\"* all|strong=\"H5921\"* the|strong=\"H5921\"* same|strong=\"H1931\"*." + }, + { + "verseNum": 23, + "text": "If the|strong=\"H4191\"* scourge|strong=\"H7752\"* kills|strong=\"H4191\"* suddenly|strong=\"H6597\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H6440\"* earth is|strong=\"H1931\"* given|strong=\"H5414\"* into|strong=\"H8199\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 25, + "text": "“Now|strong=\"H3117\"* my|strong=\"H7200\"* days|strong=\"H3117\"* are|strong=\"H3117\"* swifter|strong=\"H7043\"* than|strong=\"H4480\"* a|strong=\"H3068\"* runner|strong=\"H7323\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* have|strong=\"H5921\"* passed|strong=\"H2498\"* away|strong=\"H5973\"* as|strong=\"H5973\"* the|strong=\"H5921\"* swift ships," + }, + { + "verseNum": 27, + "text": "If I|strong=\"H6440\"* say, ‘I|strong=\"H6440\"* will|strong=\"H6440\"* forget|strong=\"H7911\"* my|strong=\"H5800\"* complaint|strong=\"H7879\"*," + }, + { + "verseNum": 28, + "text": "I|strong=\"H3588\"* am afraid|strong=\"H3025\"* of|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* sorrows|strong=\"H6094\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H2088\"* will|strong=\"H4100\"* be condemned|strong=\"H7561\"*." + }, + { + "verseNum": 30, + "text": "If I wash|strong=\"H7364\"* myself|strong=\"H7364\"* with|strong=\"H7364\"* snow|strong=\"H7950\"*," + }, + { + "verseNum": 31, + "text": "yet you|strong=\"H8581\"* will|strong=\"H7845\"* plunge|strong=\"H2881\"* me|strong=\"H8581\"* in|strong=\"H8581\"* the|strong=\"H2881\"* ditch|strong=\"H7845\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H4941\"* not|strong=\"H3808\"* a|strong=\"H3068\"* man|strong=\"H6030\"*, as|strong=\"H3644\"* I|strong=\"H3588\"* am, that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* answer|strong=\"H6030\"* him|strong=\"H6030\"*," + }, + { + "verseNum": 33, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3426\"* umpire|strong=\"H3198\"* between|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 34, + "text": "Let him|strong=\"H5921\"* take|strong=\"H5493\"* his|strong=\"H5921\"* rod|strong=\"H7626\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "then|strong=\"H1696\"* I|strong=\"H3588\"* would|strong=\"H5978\"* speak|strong=\"H1696\"*, and|strong=\"H3372\"* not|strong=\"H3808\"* fear|strong=\"H3372\"* him|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "“My|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* weary|strong=\"H5354\"* of|strong=\"H5921\"* my|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H4100\"* tell|strong=\"H3045\"* God, ‘Do|strong=\"H4100\"* not|strong=\"H3045\"* condemn|strong=\"H7561\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Is|strong=\"H2896\"* it|strong=\"H5921\"* good|strong=\"H2896\"* to|strong=\"H5921\"* you|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* oppress|strong=\"H6231\"*," + }, + { + "verseNum": 4, + "text": "Do|strong=\"H5869\"* you|strong=\"H7200\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* flesh|strong=\"H1320\"*?" + }, + { + "verseNum": 5, + "text": "Are|strong=\"H3117\"* your|strong=\"H3117\"* days|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* mortals," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* inquire|strong=\"H1875\"* after|strong=\"H3588\"* my|strong=\"H1245\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 7, + "text": "Although|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H1847\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am not|strong=\"H3808\"* wicked|strong=\"H7561\"*," + }, + { + "verseNum": 8, + "text": "“‘Your|strong=\"H6213\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* framed me|strong=\"H6213\"* and|strong=\"H3027\"* fashioned|strong=\"H6213\"* me|strong=\"H6213\"* altogether|strong=\"H3162\"*," + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* fashioned|strong=\"H6213\"* me|strong=\"H4994\"* as|strong=\"H6213\"* clay|strong=\"H2563\"*." + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H3808\"* poured|strong=\"H5413\"* me|strong=\"H3808\"* out|strong=\"H5413\"* like|strong=\"H3808\"* milk|strong=\"H2461\"*," + }, + { + "verseNum": 11, + "text": "You|strong=\"H3847\"* have clothed|strong=\"H3847\"* me|strong=\"H5526\"* with|strong=\"H3847\"* skin|strong=\"H5785\"* and|strong=\"H1320\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 12, + "text": "You|strong=\"H6213\"* have|strong=\"H8104\"* granted|strong=\"H6213\"* me|strong=\"H5978\"* life|strong=\"H2416\"* and|strong=\"H2617\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* hid|strong=\"H6845\"* these|strong=\"H2063\"* things|strong=\"H5973\"* in|strong=\"H3045\"* your|strong=\"H3045\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 14, + "text": "if|strong=\"H2398\"* I|strong=\"H3808\"* sin|strong=\"H2398\"*, then|strong=\"H3808\"* you|strong=\"H3808\"* mark|strong=\"H8104\"* me|strong=\"H8104\"*." + }, + { + "verseNum": 15, + "text": "If I|strong=\"H3808\"* am wicked|strong=\"H7561\"*, woe to|strong=\"H3808\"* me|strong=\"H3808\"*." + }, + { + "verseNum": 16, + "text": "If|strong=\"H1342\"* my|strong=\"H7725\"* head is|strong=\"H6381\"* held high|strong=\"H6381\"*, you|strong=\"H7725\"* hunt|strong=\"H6679\"* me|strong=\"H7725\"* like|strong=\"H7725\"* a|strong=\"H3068\"* lion|strong=\"H7826\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5973\"* renew|strong=\"H2318\"* your|strong=\"H7235\"* witnesses|strong=\"H5707\"* against|strong=\"H5973\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 18, + "text": "“‘Why|strong=\"H4100\"*, then|strong=\"H3318\"*, have|strong=\"H5869\"* you|strong=\"H3808\"* brought|strong=\"H3318\"* me|strong=\"H7200\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H7200\"* womb|strong=\"H7358\"*?" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* should have|strong=\"H1961\"* been|strong=\"H1961\"* as|strong=\"H1961\"* though I|strong=\"H3808\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*." + }, + { + "verseNum": 20, + "text": "Aren’t my|strong=\"H4480\"* days|strong=\"H3117\"* few|strong=\"H4592\"*?" + }, + { + "verseNum": 21, + "text": "before|strong=\"H2962\"* I|strong=\"H2962\"* go|strong=\"H3212\"* where|strong=\"H3808\"* I|strong=\"H2962\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return|strong=\"H7725\"* from|strong=\"H7725\"*," + }, + { + "verseNum": 22, + "text": "the|strong=\"H3808\"* land dark|strong=\"H6757\"* as|strong=\"H3644\"* midnight," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Zophar|strong=\"H6691\"*, the|strong=\"H6030\"* Naamathite|strong=\"H5284\"*, answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Shouldn’t the|strong=\"H1697\"* multitude|strong=\"H7230\"* of|strong=\"H1697\"* words|strong=\"H1697\"* be|strong=\"H3808\"* answered|strong=\"H6030\"*?" + }, + { + "verseNum": 3, + "text": "Should your|strong=\"H4962\"* boastings make|strong=\"H2790\"* men|strong=\"H4962\"* hold their|strong=\"H4962\"* peace|strong=\"H2790\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"H5869\"* you|strong=\"H5869\"* say, ‘My|strong=\"H1961\"* doctrine|strong=\"H3948\"* is|strong=\"H1961\"* pure|strong=\"H2134\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* oh|strong=\"H4310\"* that|strong=\"H5414\"* God|strong=\"H5414\"* would|strong=\"H4310\"* speak|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* he|strong=\"H3588\"* would show|strong=\"H3045\"* you|strong=\"H3588\"* the|strong=\"H3588\"* secrets|strong=\"H8587\"* of|strong=\"H5771\"* wisdom|strong=\"H2451\"*!" + }, + { + "verseNum": 7, + "text": "“Can you|strong=\"H5704\"* fathom the|strong=\"H5704\"* mystery of|strong=\"H2714\"* God?" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* are|strong=\"H4100\"* high|strong=\"H1363\"* as|strong=\"H1363\"* heaven|strong=\"H8064\"*. What|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H3045\"* do|strong=\"H6466\"*?" + }, + { + "verseNum": 9, + "text": "Its|strong=\"H3220\"* measure|strong=\"H4055\"* is|strong=\"H4480\"* longer than|strong=\"H4480\"* the|strong=\"H4480\"* earth," + }, + { + "verseNum": 10, + "text": "If|strong=\"H2498\"* he|strong=\"H7725\"* passes|strong=\"H2498\"* by|strong=\"H7725\"*, or|strong=\"H4310\"* confines," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* false|strong=\"H7723\"* men|strong=\"H4962\"*." + }, + { + "verseNum": 12, + "text": "An|strong=\"H3205\"* empty-headed man becomes wise|strong=\"H3823\"*" + }, + { + "verseNum": 13, + "text": "“If you|strong=\"H3820\"* set|strong=\"H3559\"* your|strong=\"H3559\"* heart|strong=\"H3820\"* aright|strong=\"H3559\"*," + }, + { + "verseNum": 14, + "text": "If iniquity|strong=\"H5766\"* is|strong=\"H3027\"* in|strong=\"H7931\"* your|strong=\"H3027\"* hand|strong=\"H3027\"*, put|strong=\"H7368\"* it|strong=\"H7368\"* far|strong=\"H7368\"* away|strong=\"H7368\"*." + }, + { + "verseNum": 15, + "text": "Surely|strong=\"H3588\"* then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* face|strong=\"H6440\"* without|strong=\"H3808\"* spot|strong=\"H3971\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H4325\"* forget|strong=\"H7911\"* your|strong=\"H3588\"* misery|strong=\"H5999\"*." + }, + { + "verseNum": 17, + "text": "Life|strong=\"H2465\"* will|strong=\"H1961\"* be|strong=\"H1961\"* clearer|strong=\"H6965\"* than the|strong=\"H6965\"* noonday|strong=\"H6672\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3588\"* will|strong=\"H3426\"* be|strong=\"H3426\"* secure, because|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"*." + }, + { + "verseNum": 19, + "text": "Also you|strong=\"H6440\"* will|strong=\"H7227\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H6440\"* no|strong=\"H6440\"* one|strong=\"H7227\"* will|strong=\"H7227\"* make|strong=\"H2729\"* you|strong=\"H6440\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H7563\"* the|strong=\"H4480\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H4480\"* wicked|strong=\"H7563\"* will|strong=\"H5869\"* fail|strong=\"H3615\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“No doubt, but|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* the|strong=\"H3588\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H1571\"* understanding|strong=\"H3824\"* as|strong=\"H3644\"* well|strong=\"H1571\"* as|strong=\"H3644\"* you|strong=\"H3808\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H7121\"* am|strong=\"H1961\"* like|strong=\"H1961\"* one|strong=\"H6662\"* who|strong=\"H6662\"* is|strong=\"H6662\"* a|strong=\"H3068\"* joke|strong=\"H7814\"* to|strong=\"H1961\"* his|strong=\"H7121\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "In|strong=\"H3559\"* the|strong=\"H3559\"* thought|strong=\"H6248\"* of|strong=\"H7272\"* him|strong=\"H3559\"* who|strong=\"H7600\"* is at ease|strong=\"H7600\"* there is contempt for|strong=\"H3559\"* misfortune." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3027\"* tents of|strong=\"H3027\"* robbers|strong=\"H7703\"* prosper|strong=\"H7951\"*." + }, + { + "verseNum": 7, + "text": "“But ask|strong=\"H7592\"* the|strong=\"H5046\"* animals now|strong=\"H4994\"*, and|strong=\"H8064\"* they will|strong=\"H8064\"* teach|strong=\"H3384\"* you|strong=\"H5046\"*;" + }, + { + "verseNum": 8, + "text": "Or|strong=\"H5608\"* speak|strong=\"H7878\"* to|strong=\"H3220\"* the|strong=\"H5608\"* earth, and|strong=\"H3220\"* it will|strong=\"H3220\"* teach|strong=\"H3384\"* you|strong=\"H3384\"*." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* in|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H2063\"*," + }, + { + "verseNum": 10, + "text": "in|strong=\"H5315\"* whose|strong=\"H3605\"* hand|strong=\"H3027\"* is|strong=\"H5315\"* the|strong=\"H3605\"* life|strong=\"H5315\"* of|strong=\"H3027\"* every|strong=\"H3605\"* living|strong=\"H2416\"* thing|strong=\"H2416\"*," + }, + { + "verseNum": 11, + "text": "Doesn’t the|strong=\"H3808\"* ear try words|strong=\"H4405\"*," + }, + { + "verseNum": 12, + "text": "With|strong=\"H3117\"* aged|strong=\"H3453\"* men|strong=\"H3453\"* is|strong=\"H3117\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 13, + "text": "“With|strong=\"H5973\"* God|strong=\"H2451\"* is|strong=\"H2451\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* might|strong=\"H1369\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* breaks down|strong=\"H2040\"*, and|strong=\"H1129\"* it|strong=\"H5921\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* built|strong=\"H1129\"* again|strong=\"H1129\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H7971\"* withholds the|strong=\"H7971\"* waters|strong=\"H4325\"*, and|strong=\"H7971\"* they dry|strong=\"H3001\"* up|strong=\"H3001\"*." + }, + { + "verseNum": 16, + "text": "With|strong=\"H5973\"* him|strong=\"H5973\"* is|strong=\"H8454\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* wisdom|strong=\"H8454\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H8199\"* leads counselors|strong=\"H3289\"* away|strong=\"H3212\"* stripped|strong=\"H7758\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H4428\"* loosens|strong=\"H6605\"* the|strong=\"H6605\"* bond|strong=\"H4148\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3212\"* leads priests|strong=\"H3548\"* away|strong=\"H3212\"* stripped|strong=\"H7758\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H2205\"* removes the|strong=\"H3947\"* speech|strong=\"H8193\"* of|strong=\"H2205\"* those who|strong=\"H5493\"* are|strong=\"H8193\"* trusted," + }, + { + "verseNum": 21, + "text": "He|strong=\"H5921\"* pours|strong=\"H8210\"* contempt on|strong=\"H5921\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 22, + "text": "He|strong=\"H4480\"* uncovers|strong=\"H1540\"* deep|strong=\"H6013\"* things|strong=\"H1540\"* out|strong=\"H3318\"* of|strong=\"H4480\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 23, + "text": "He increases the|strong=\"H5148\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* he destroys them|strong=\"H5148\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H3808\"* takes|strong=\"H5493\"* away|strong=\"H5493\"* understanding|strong=\"H3820\"* from|strong=\"H5493\"* the|strong=\"H5493\"* chiefs|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5493\"* people|strong=\"H5971\"* of|strong=\"H7218\"* the|strong=\"H5493\"* earth," + }, + { + "verseNum": 25, + "text": "They|strong=\"H3808\"* grope|strong=\"H4959\"* in|strong=\"H3808\"* the|strong=\"H3808\"* dark|strong=\"H2822\"* without|strong=\"H3808\"* light." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2005\"*, my|strong=\"H8085\"* eye|strong=\"H5869\"* has|strong=\"H5869\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* this|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "What|strong=\"H3045\"* you|strong=\"H3045\"* know|strong=\"H3045\"*, I|strong=\"H3045\"* know|strong=\"H3045\"* also|strong=\"H1571\"*." + }, + { + "verseNum": 3, + "text": "“Surely|strong=\"H3198\"* I would|strong=\"H7706\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H3605\"* you|strong=\"H3605\"* are|strong=\"H8267\"* forgers|strong=\"H2950\"* of|strong=\"H3605\"* lies|strong=\"H8267\"*." + }, + { + "verseNum": 5, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* would|strong=\"H4310\"* be|strong=\"H1961\"* completely|strong=\"H2790\"* silent|strong=\"H2790\"*!" + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H8085\"* now|strong=\"H4994\"* my|strong=\"H8085\"* reasoning|strong=\"H8433\"*." + }, + { + "verseNum": 7, + "text": "Will you|strong=\"H1696\"* speak|strong=\"H1696\"* unrighteously|strong=\"H5766\"* for|strong=\"H5766\"* God," + }, + { + "verseNum": 8, + "text": "Will|strong=\"H6440\"* you|strong=\"H6440\"* show|strong=\"H5375\"* partiality|strong=\"H5375\"* to|strong=\"H6440\"* him|strong=\"H6440\"*?" + }, + { + "verseNum": 9, + "text": "Is|strong=\"H2896\"* it|strong=\"H3588\"* good|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H3588\"* search|strong=\"H2713\"* you|strong=\"H3588\"* out|strong=\"H2713\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6440\"* will|strong=\"H6440\"* surely|strong=\"H3198\"* reprove|strong=\"H3198\"* you|strong=\"H6440\"*" + }, + { + "verseNum": 11, + "text": "Won’t his|strong=\"H5921\"* majesty|strong=\"H7613\"* make you|strong=\"H5921\"* afraid|strong=\"H1204\"*" + }, + { + "verseNum": 12, + "text": "Your memorable|strong=\"H2146\"* sayings|strong=\"H2146\"* are|strong=\"H1354\"* proverbs|strong=\"H4911\"* of|strong=\"H2563\"* ashes." + }, + { + "verseNum": 13, + "text": "“Be|strong=\"H4480\"* silent|strong=\"H2790\"*!" + }, + { + "verseNum": 14, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* I|strong=\"H5921\"* take|strong=\"H5375\"* my|strong=\"H7760\"* flesh|strong=\"H1320\"* in|strong=\"H5921\"* my|strong=\"H7760\"* teeth|strong=\"H8127\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* will|strong=\"H3808\"* kill me|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "This|strong=\"H1931\"* also|strong=\"H1571\"* will|strong=\"H1571\"* be|strong=\"H3808\"* my|strong=\"H3588\"* salvation|strong=\"H3444\"*," + }, + { + "verseNum": 17, + "text": "Listen|strong=\"H8085\"* carefully|strong=\"H8085\"* to|strong=\"H8085\"* my|strong=\"H8085\"* speech|strong=\"H4405\"*." + }, + { + "verseNum": 18, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H3588\"* have|strong=\"H3045\"* set|strong=\"H6186\"* my|strong=\"H3045\"* cause|strong=\"H4941\"* in|strong=\"H3045\"* order|strong=\"H6186\"*." + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* is|strong=\"H1931\"* he|strong=\"H1931\"* who|strong=\"H4310\"* will|strong=\"H4310\"* contend|strong=\"H7378\"* with|strong=\"H7378\"* me|strong=\"H5978\"*?" + }, + { + "verseNum": 20, + "text": "“Only don’t do|strong=\"H6213\"* two|strong=\"H8147\"* things|strong=\"H8147\"* to|strong=\"H6213\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 21, + "text": "withdraw|strong=\"H7368\"* your|strong=\"H5921\"* hand|strong=\"H3709\"* far|strong=\"H7368\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 22, + "text": "Then|strong=\"H6030\"* call|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H7121\"* will|strong=\"H7725\"* answer|strong=\"H6030\"*," + }, + { + "verseNum": 23, + "text": "How|strong=\"H4100\"* many|strong=\"H4100\"* are|strong=\"H4100\"* my|strong=\"H3045\"* iniquities|strong=\"H5771\"* and|strong=\"H3045\"* sins|strong=\"H2403\"*?" + }, + { + "verseNum": 24, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H6440\"* hide|strong=\"H5641\"* your|strong=\"H6440\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 25, + "text": "Will|strong=\"H5929\"* you|strong=\"H7291\"* harass a|strong=\"H3068\"* driven|strong=\"H5086\"* leaf|strong=\"H5929\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* write|strong=\"H3789\"* bitter|strong=\"H4846\"* things|strong=\"H4846\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H3605\"* also put|strong=\"H7760\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* in|strong=\"H5921\"* the|strong=\"H3605\"* stocks|strong=\"H5465\"*," + }, + { + "verseNum": 28, + "text": "though|strong=\"H1931\"* I am decaying|strong=\"H1086\"* like|strong=\"H6211\"* a|strong=\"H3068\"* rotten|strong=\"H7538\"* thing|strong=\"H7538\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "“Man|strong=\"H7116\"*, who|strong=\"H3205\"* is|strong=\"H3117\"* born|strong=\"H3205\"* of|strong=\"H3117\"* a|strong=\"H3068\"* woman|strong=\"H3205\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* grows|strong=\"H3318\"* up|strong=\"H5975\"* like|strong=\"H3318\"* a|strong=\"H3068\"* flower|strong=\"H6731\"*, and|strong=\"H5975\"* is|strong=\"H5975\"* cut down|strong=\"H5243\"*." + }, + { + "verseNum": 3, + "text": "Do|strong=\"H5869\"* you|strong=\"H5921\"* open|strong=\"H6491\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* one|strong=\"H2088\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* bring|strong=\"H5414\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* thing|strong=\"H2931\"* out|strong=\"H5414\"* of|strong=\"H3808\"* an|strong=\"H5414\"* unclean|strong=\"H2931\"*?" + }, + { + "verseNum": 5, + "text": "Seeing his|strong=\"H6213\"* days|strong=\"H3117\"* are|strong=\"H3117\"* determined|strong=\"H2782\"*," + }, + { + "verseNum": 6, + "text": "Look|strong=\"H8159\"* away|strong=\"H8159\"* from|strong=\"H5921\"* him|strong=\"H5921\"*, that|strong=\"H3117\"* he|strong=\"H3117\"* may|strong=\"H3117\"* rest|strong=\"H2308\"*," + }, + { + "verseNum": 7, + "text": "“For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"* for|strong=\"H3588\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* if|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3426\"* cut|strong=\"H3772\"* down|strong=\"H3772\"*," + }, + { + "verseNum": 8, + "text": "Though its root|strong=\"H8328\"* grows old|strong=\"H2204\"* in|strong=\"H4191\"* the|strong=\"H4191\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 9, + "text": "yet through|strong=\"H6213\"* the|strong=\"H6213\"* scent|strong=\"H7381\"* of|strong=\"H4325\"* water|strong=\"H4325\"* it|strong=\"H6213\"* will|strong=\"H4325\"* bud|strong=\"H6524\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H4191\"* man|strong=\"H1397\"* dies|strong=\"H4191\"*, and|strong=\"H4191\"* is|strong=\"H1397\"* laid low." + }, + { + "verseNum": 11, + "text": "As|strong=\"H4325\"* the|strong=\"H4480\"* waters|strong=\"H4325\"* fail from|strong=\"H4480\"* the|strong=\"H4480\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 12, + "text": "so|strong=\"H3808\"* man lies|strong=\"H7901\"* down|strong=\"H7901\"* and|strong=\"H6965\"* doesn’t rise|strong=\"H6965\"*." + }, + { + "verseNum": 13, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* would|strong=\"H4310\"* hide|strong=\"H5641\"* me|strong=\"H5414\"* in|strong=\"H7725\"* Sheol|strong=\"H7585\"*,+ 14:13 Sheol is the place of the dead.*" + }, + { + "verseNum": 14, + "text": "If a|strong=\"H3068\"* man|strong=\"H1397\"* dies|strong=\"H4191\"*, will|strong=\"H6635\"* he|strong=\"H3117\"* live|strong=\"H2421\"* again?" + }, + { + "verseNum": 15, + "text": "You|strong=\"H3027\"* would|strong=\"H4639\"* call|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H3027\"* would|strong=\"H4639\"* answer|strong=\"H6030\"* you|strong=\"H3027\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* you|strong=\"H3588\"* count|strong=\"H5608\"* my|strong=\"H8104\"* steps|strong=\"H6806\"*." + }, + { + "verseNum": 17, + "text": "My|strong=\"H5921\"* disobedience is|strong=\"H5771\"* sealed|strong=\"H2856\"* up|strong=\"H2856\"* in|strong=\"H5921\"* a|strong=\"H3068\"* bag|strong=\"H6872\"*." + }, + { + "verseNum": 18, + "text": "“But the|strong=\"H4725\"* mountain|strong=\"H2022\"* falling|strong=\"H5307\"* comes to|strong=\"H4725\"* nothing." + }, + { + "verseNum": 19, + "text": "The|strong=\"H7857\"* waters|strong=\"H4325\"* wear|strong=\"H7833\"* the|strong=\"H7857\"* stones." + }, + { + "verseNum": 20, + "text": "You|strong=\"H6440\"* forever|strong=\"H5331\"* prevail|strong=\"H8630\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H1980\"* he|strong=\"H1980\"* departs|strong=\"H1980\"*." + }, + { + "verseNum": 21, + "text": "His|strong=\"H3045\"* sons|strong=\"H1121\"* come|strong=\"H3045\"* to|strong=\"H1121\"* honor|strong=\"H3513\"*, and|strong=\"H1121\"* he|strong=\"H3808\"* doesn’t know|strong=\"H3045\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H5921\"* his|strong=\"H5921\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* him|strong=\"H5921\"* has|strong=\"H5315\"* pain|strong=\"H3510\"*," + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Should|strong=\"H2450\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* answer|strong=\"H6030\"* with|strong=\"H4390\"* vain|strong=\"H7307\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "Should he|strong=\"H3808\"* reason|strong=\"H1697\"* with|strong=\"H1697\"* unprofitable|strong=\"H5532\"* talk|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "Yes, you|strong=\"H6440\"* do|strong=\"H6565\"* away|strong=\"H1639\"* with|strong=\"H6440\"* fear|strong=\"H3374\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* iniquity|strong=\"H5771\"* teaches your|strong=\"H3588\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3808\"* own mouth|strong=\"H6310\"* condemns|strong=\"H7561\"* you|strong=\"H3808\"*, and|strong=\"H6030\"* not|strong=\"H3808\"* I|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "“Are|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H6440\"* first|strong=\"H7223\"* man|strong=\"H6440\"* who|strong=\"H3205\"* was|strong=\"H3205\"* born|strong=\"H3205\"*?" + }, + { + "verseNum": 8, + "text": "Have|strong=\"H8085\"* you|strong=\"H8085\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* secret|strong=\"H5475\"* counsel|strong=\"H5475\"* of|strong=\"H2451\"* God|strong=\"H2451\"*?" + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3045\"* know|strong=\"H3045\"* that|strong=\"H3045\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"*?" + }, + { + "verseNum": 10, + "text": "With|strong=\"H3117\"* us|strong=\"H3117\"* are|strong=\"H3117\"* both|strong=\"H1571\"* the|strong=\"H3117\"* gray-headed and|strong=\"H3117\"* the|strong=\"H3117\"* very|strong=\"H1571\"* aged|strong=\"H3453\"* men|strong=\"H3453\"*," + }, + { + "verseNum": 11, + "text": "Are|strong=\"H1697\"* the|strong=\"H4480\"* consolations|strong=\"H8575\"* of|strong=\"H1697\"* God too|strong=\"H4480\"* small|strong=\"H4592\"* for|strong=\"H1697\"* you|strong=\"H5973\"*," + }, + { + "verseNum": 12, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* your|strong=\"H3947\"* heart|strong=\"H3820\"* carry|strong=\"H3947\"* you|strong=\"H3947\"* away|strong=\"H3947\"*?" + }, + { + "verseNum": 13, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* turn|strong=\"H7725\"* your|strong=\"H7725\"* spirit|strong=\"H7307\"* against|strong=\"H7307\"* God," + }, + { + "verseNum": 14, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* man, that|strong=\"H3588\"* he|strong=\"H3588\"* should|strong=\"H4100\"* be|strong=\"H3588\"* clean|strong=\"H2135\"*?" + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H3808\"* puts no|strong=\"H3808\"* trust in|strong=\"H3808\"* his|strong=\"H3808\"* holy|strong=\"H6918\"* ones|strong=\"H6918\"*." + }, + { + "verseNum": 16, + "text": "how|strong=\"H3588\"* much less|strong=\"H3588\"* one|strong=\"H3588\"* who|strong=\"H3588\"* is|strong=\"H4325\"* abominable|strong=\"H8581\"* and|strong=\"H4325\"* corrupt," + }, + { + "verseNum": 17, + "text": "“I|strong=\"H2088\"* will|strong=\"H2088\"* show|strong=\"H2331\"* you|strong=\"H2331\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H5608\"*;" + }, + { + "verseNum": 18, + "text": "(which wise|strong=\"H2450\"* men|strong=\"H2450\"* have|strong=\"H3808\"* told|strong=\"H5046\"* by|strong=\"H3808\"* their|strong=\"H3808\"* fathers," + }, + { + "verseNum": 19, + "text": "to|strong=\"H5414\"* whom alone the|strong=\"H5414\"* land was|strong=\"H5414\"* given|strong=\"H5414\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"H3605\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* writhes|strong=\"H2342\"* in|strong=\"H8141\"* pain|strong=\"H2342\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* terrors|strong=\"H6343\"* is|strong=\"H6963\"* in|strong=\"H6963\"* his|strong=\"H7703\"* ears." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1931\"* doesn’t believe that|strong=\"H1931\"* he|strong=\"H1931\"* will|strong=\"H2719\"* return|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H4480\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* wanders|strong=\"H5074\"* abroad|strong=\"H5074\"* for|strong=\"H3588\"* bread|strong=\"H3899\"*, saying, ‘Where|strong=\"H3027\"* is|strong=\"H1931\"* it|strong=\"H1931\"*?’" + }, + { + "verseNum": 24, + "text": "Distress|strong=\"H6862\"* and|strong=\"H4428\"* anguish|strong=\"H4691\"* make him|strong=\"H4428\"* afraid|strong=\"H1204\"*." + }, + { + "verseNum": 25, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H5186\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* God|strong=\"H3027\"*," + }, + { + "verseNum": 26, + "text": "he runs|strong=\"H7323\"* at him with|strong=\"H6677\"* a|strong=\"H3068\"* stiff neck|strong=\"H6677\"*," + }, + { + "verseNum": 27, + "text": "because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* face|strong=\"H6440\"* with|strong=\"H6213\"* his|strong=\"H6440\"* fatness|strong=\"H2459\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H1004\"* has|strong=\"H1004\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* desolate|strong=\"H3582\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* rich|strong=\"H6238\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* his|strong=\"H5186\"* substance|strong=\"H2428\"* continue|strong=\"H6965\"*," + }, + { + "verseNum": 30, + "text": "He|strong=\"H4480\"* will|strong=\"H7307\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* out|strong=\"H4480\"* of|strong=\"H7307\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H1961\"* him|strong=\"H3588\"* not|strong=\"H1961\"* trust in|strong=\"H1961\"* emptiness|strong=\"H7723\"*, deceiving|strong=\"H8582\"* himself," + }, + { + "verseNum": 32, + "text": "It|strong=\"H3117\"* will|strong=\"H3808\"* be|strong=\"H3808\"* accomplished|strong=\"H4390\"* before|strong=\"H3808\"* his|strong=\"H4390\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 33, + "text": "He will|strong=\"H2132\"* shake off|strong=\"H7993\"* his|strong=\"H7993\"* unripe grape|strong=\"H1154\"* as the|strong=\"H7993\"* vine|strong=\"H1612\"*," + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* company|strong=\"H5712\"* of|strong=\"H5712\"* the|strong=\"H3588\"* godless|strong=\"H2611\"* will|strong=\"H2611\"* be|strong=\"H3588\"* barren|strong=\"H1565\"*," + }, + { + "verseNum": 35, + "text": "They|strong=\"H4820\"* conceive|strong=\"H2029\"* mischief|strong=\"H5999\"* and|strong=\"H5999\"* produce iniquity|strong=\"H5999\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“I|strong=\"H8085\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* many|strong=\"H7227\"* such|strong=\"H3605\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "Shall|strong=\"H7307\"* vain|strong=\"H7307\"* words|strong=\"H1697\"* have|strong=\"H1697\"* an|strong=\"H3588\"* end|strong=\"H7093\"*?" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* also|strong=\"H1571\"* could|strong=\"H1571\"* speak|strong=\"H1696\"* as|strong=\"H1571\"* you|strong=\"H5921\"* do|strong=\"H3426\"*." + }, + { + "verseNum": 5, + "text": "but|strong=\"H8193\"* I would strengthen you|strong=\"H6310\"* with|strong=\"H6310\"* my|strong=\"H2820\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 6, + "text": "“Though I|strong=\"H3808\"* speak|strong=\"H1696\"*, my|strong=\"H1696\"* grief|strong=\"H3511\"* is|strong=\"H4100\"* not|strong=\"H3808\"* subsided." + }, + { + "verseNum": 7, + "text": "But|strong=\"H6258\"* now|strong=\"H6258\"*, God, you|strong=\"H3605\"* have|strong=\"H3605\"* surely worn me|strong=\"H8074\"* out|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* have|strong=\"H1961\"* shriveled|strong=\"H7059\"* me|strong=\"H6440\"* up|strong=\"H6965\"*. This|strong=\"H6440\"* is|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* has|strong=\"H5869\"* torn|strong=\"H2963\"* me|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H5921\"* wrath and|strong=\"H5869\"* persecuted me|strong=\"H5921\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5921\"* have|strong=\"H5921\"* gaped|strong=\"H6473\"* on|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H4390\"* their|strong=\"H4390\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 11, + "text": "God|strong=\"H3027\"* delivers me|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ungodly|strong=\"H7563\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H6965\"* was|strong=\"H1961\"* at|strong=\"H1961\"* ease|strong=\"H7961\"*, and|strong=\"H6965\"* he broke|strong=\"H6565\"* me|strong=\"H1961\"* apart." + }, + { + "verseNum": 13, + "text": "His|strong=\"H5921\"* archers|strong=\"H7228\"* surround|strong=\"H5437\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H5921\"* breaks|strong=\"H6555\"* me|strong=\"H6440\"* with|strong=\"H5921\"* breach|strong=\"H6556\"* on|strong=\"H5921\"* breach|strong=\"H6556\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* have|strong=\"H5921\"* sewed|strong=\"H8609\"* sackcloth|strong=\"H8242\"* on|strong=\"H5921\"* my|strong=\"H5921\"* skin|strong=\"H1539\"*," + }, + { + "verseNum": 16, + "text": "My|strong=\"H5921\"* face|strong=\"H6440\"* is|strong=\"H6440\"* red|strong=\"H2560\"* with|strong=\"H5921\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 17, + "text": "although|strong=\"H3808\"* there is|strong=\"H3808\"* no|strong=\"H3808\"* violence|strong=\"H2555\"* in|strong=\"H5921\"* my|strong=\"H5921\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 18, + "text": "“Earth, don’t cover|strong=\"H3680\"* my|strong=\"H1961\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 19, + "text": "Even|strong=\"H1571\"* now|strong=\"H6258\"*, behold|strong=\"H2009\"*, my|strong=\"H6258\"* witness|strong=\"H5707\"* is|strong=\"H1571\"* in|strong=\"H8064\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "My friends|strong=\"H7453\"* scoff at|strong=\"H5869\"* me|strong=\"H5869\"*." + }, + { + "verseNum": 21, + "text": "that|strong=\"H1121\"* he|strong=\"H1121\"* would maintain|strong=\"H3198\"* the|strong=\"H5973\"* right of|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1397\"* with|strong=\"H5973\"* God," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4557\"* years|strong=\"H8141\"* have|strong=\"H3588\"* come|strong=\"H1980\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "“My|strong=\"H3117\"* spirit|strong=\"H7307\"* is|strong=\"H3117\"* consumed." + }, + { + "verseNum": 2, + "text": "Surely|strong=\"H3808\"* there|strong=\"H3885\"* are|strong=\"H5869\"* mockers|strong=\"H2049\"* with|strong=\"H5869\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 3, + "text": "“Now|strong=\"H4994\"* give|strong=\"H7760\"* a|strong=\"H3068\"* pledge. Be|strong=\"H3027\"* collateral|strong=\"H6148\"* for|strong=\"H3027\"* me|strong=\"H4994\"* with|strong=\"H5973\"* yourself|strong=\"H5973\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* hidden|strong=\"H6845\"* their|strong=\"H5921\"* heart|strong=\"H3820\"* from|strong=\"H5921\"* understanding|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* denounces|strong=\"H5046\"* his|strong=\"H5046\"* friends|strong=\"H7453\"* for|strong=\"H1121\"* plunder," + }, + { + "verseNum": 6, + "text": "“But|strong=\"H1961\"* he|strong=\"H5971\"* has|strong=\"H1961\"* made|strong=\"H3322\"* me|strong=\"H6440\"* a|strong=\"H3068\"* byword|strong=\"H4914\"* of|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* eye|strong=\"H5869\"* also|strong=\"H5869\"* is|strong=\"H3605\"* dim|strong=\"H3543\"* by|strong=\"H3605\"* reason of|strong=\"H5869\"* sorrow|strong=\"H3708\"*." + }, + { + "verseNum": 8, + "text": "Upright|strong=\"H3477\"* men will|strong=\"H3477\"* be astonished|strong=\"H8074\"* at|strong=\"H5921\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 9, + "text": "Yet|strong=\"H3254\"* the|strong=\"H1870\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* hold to|strong=\"H3027\"* his|strong=\"H3027\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* as|strong=\"H3605\"* for|strong=\"H3605\"* you|strong=\"H3605\"* all|strong=\"H3605\"*, come|strong=\"H4672\"* back|strong=\"H7725\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5674\"* days|strong=\"H3117\"* are|strong=\"H3117\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3117\"* change|strong=\"H7760\"* the|strong=\"H6440\"* night|strong=\"H3915\"* into|strong=\"H3915\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "If I|strong=\"H1004\"* look|strong=\"H6960\"* for|strong=\"H6960\"* Sheol|strong=\"H7585\"*+ 17:13 Sheol is the place of the dead.* as|strong=\"H1004\"* my|strong=\"H7502\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 14, + "text": "if I|strong=\"H7121\"* have said|strong=\"H7121\"* to|strong=\"H7121\"* corruption|strong=\"H7845\"*, ‘You|strong=\"H7121\"* are|strong=\"H7415\"* my|strong=\"H7121\"* father,’" + }, + { + "verseNum": 15, + "text": "where then is|strong=\"H4310\"* my|strong=\"H7789\"* hope|strong=\"H8615\"*?" + }, + { + "verseNum": 16, + "text": "Shall|strong=\"H6083\"* it|strong=\"H5921\"* go|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H3381\"* the|strong=\"H5921\"* gates of|strong=\"H5921\"* Sheol|strong=\"H7585\"*,+ 17:16 Sheol is the place of the dead.*" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5704\"* hunt|strong=\"H7760\"* for|strong=\"H5704\"* words|strong=\"H4405\"*?" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4069\"* are|strong=\"H5869\"* we|strong=\"H3068\"* counted|strong=\"H2803\"* as|strong=\"H2803\"* animals," + }, + { + "verseNum": 4, + "text": "You|strong=\"H5800\"* who|strong=\"H5315\"* tear|strong=\"H2963\"* yourself|strong=\"H5315\"* in|strong=\"H5315\"* your|strong=\"H5800\"* anger," + }, + { + "verseNum": 5, + "text": "“Yes|strong=\"H1571\"*, the|strong=\"H1571\"* light|strong=\"H5050\"* of|strong=\"H3808\"* the|strong=\"H1571\"* wicked|strong=\"H7563\"* will|strong=\"H1571\"* be|strong=\"H3808\"* put|strong=\"H1846\"* out|strong=\"H1846\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* light|strong=\"H5216\"* will|strong=\"H5216\"* be dark|strong=\"H2821\"* in|strong=\"H5921\"* his|strong=\"H5921\"* tent." + }, + { + "verseNum": 7, + "text": "The|strong=\"H7993\"* steps|strong=\"H6806\"* of|strong=\"H6098\"* his|strong=\"H7993\"* strength will be shortened." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H7971\"* cast|strong=\"H7971\"* into|strong=\"H1980\"* a|strong=\"H3068\"* net|strong=\"H7568\"* by|strong=\"H5921\"* his|strong=\"H7971\"* own feet|strong=\"H7272\"*," + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* snare|strong=\"H6341\"* will take|strong=\"H2388\"* him|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* heel|strong=\"H6119\"*." + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* noose|strong=\"H2256\"* is|strong=\"H2256\"* hidden|strong=\"H2934\"* for|strong=\"H5921\"* him|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ground," + }, + { + "verseNum": 11, + "text": "Terrors|strong=\"H1091\"* will|strong=\"H7272\"* make|strong=\"H7272\"* him|strong=\"H5439\"* afraid|strong=\"H1204\"* on|strong=\"H7272\"* every|strong=\"H5439\"* side|strong=\"H5439\"*," + }, + { + "verseNum": 12, + "text": "His|strong=\"H3559\"* strength will|strong=\"H1961\"* be|strong=\"H1961\"* famished|strong=\"H7457\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4194\"* members of|strong=\"H1060\"* his body|strong=\"H5785\"* will be devoured." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4428\"* will|strong=\"H4428\"* be|strong=\"H4428\"* rooted out|strong=\"H5423\"* of|strong=\"H4428\"* the|strong=\"H5423\"* security|strong=\"H4009\"* of|strong=\"H4428\"* his|strong=\"H4428\"* tent." + }, + { + "verseNum": 15, + "text": "There|strong=\"H1097\"* will dwell|strong=\"H7931\"* in|strong=\"H5921\"* his|strong=\"H5921\"* tent that|strong=\"H1097\"* which is|strong=\"H1614\"* none|strong=\"H1097\"* of|strong=\"H5921\"* his|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "His|strong=\"H8478\"* roots|strong=\"H8328\"* will|strong=\"H8328\"* be|strong=\"H4605\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* beneath|strong=\"H8478\"*." + }, + { + "verseNum": 17, + "text": "His|strong=\"H6440\"* memory|strong=\"H2143\"* will|strong=\"H3808\"* perish from|strong=\"H4480\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 18, + "text": "He|strong=\"H2822\"* will|strong=\"H2822\"* be|strong=\"H2822\"* driven|strong=\"H1920\"* from|strong=\"H1920\"* light into darkness|strong=\"H2822\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* will|strong=\"H5971\"* have|strong=\"H5971\"* neither|strong=\"H3808\"* son|strong=\"H5209\"* nor|strong=\"H3808\"* grandson among|strong=\"H5971\"* his|strong=\"H3808\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "Those|strong=\"H5921\"* who come after|strong=\"H5921\"* will|strong=\"H3117\"* be|strong=\"H3117\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* his|strong=\"H5921\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "Surely|strong=\"H3808\"* such|strong=\"H2088\"* are|strong=\"H3045\"* the|strong=\"H3045\"* dwellings|strong=\"H4908\"* of|strong=\"H4725\"* the|strong=\"H3045\"* unrighteous|strong=\"H5767\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H5315\"* you|strong=\"H5704\"* torment|strong=\"H3013\"* me|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* reproached|strong=\"H3637\"* me|strong=\"H3808\"* ten|strong=\"H6235\"* times|strong=\"H6471\"*." + }, + { + "verseNum": 4, + "text": "If it is true that|strong=\"H3885\"* I have erred|strong=\"H7686\"*," + }, + { + "verseNum": 5, + "text": "If indeed you|strong=\"H5921\"* will magnify|strong=\"H1431\"* yourselves|strong=\"H1431\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "know|strong=\"H3045\"* now|strong=\"H3588\"* that|strong=\"H3588\"* God has|strong=\"H3588\"* subverted me|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* cry|strong=\"H6817\"* out|strong=\"H6817\"* of|strong=\"H4941\"* wrong|strong=\"H2555\"*, but|strong=\"H3808\"* I|strong=\"H2005\"* am|strong=\"H2005\"* not|strong=\"H3808\"* heard|strong=\"H6030\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* has|strong=\"H5674\"* walled|strong=\"H1443\"* up|strong=\"H7760\"* my|strong=\"H7760\"* way|strong=\"H5410\"* so|strong=\"H3808\"* that|strong=\"H3808\"* I|strong=\"H5921\"* can|strong=\"H3808\"*’t pass|strong=\"H5674\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* has|strong=\"H3519\"* stripped|strong=\"H6584\"* me|strong=\"H5921\"* of|strong=\"H7218\"* my|strong=\"H5921\"* glory|strong=\"H3519\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3212\"* has|strong=\"H6086\"* broken|strong=\"H5422\"* me|strong=\"H3212\"* down|strong=\"H5422\"* on|strong=\"H3212\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, and|strong=\"H3212\"* I|strong=\"H3212\"* am gone|strong=\"H3212\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* has|strong=\"H6862\"* also kindled|strong=\"H2734\"* his|strong=\"H5921\"* wrath against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H5921\"* troops|strong=\"H1416\"* come on|strong=\"H5921\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 13, + "text": "“He|strong=\"H4480\"* has|strong=\"H3045\"* put|strong=\"H7368\"* my|strong=\"H5921\"* brothers far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H3045\"* relatives|strong=\"H7138\"* have|strong=\"H3045\"* gone away." + }, + { + "verseNum": 15, + "text": "Those|strong=\"H1961\"* who|strong=\"H2114\"* dwell|strong=\"H1481\"* in|strong=\"H1004\"* my|strong=\"H1961\"* house|strong=\"H1004\"* and|strong=\"H1004\"* my|strong=\"H1961\"* maids consider|strong=\"H2803\"* me|strong=\"H1961\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5650\"* call|strong=\"H7121\"* to|strong=\"H5650\"* my|strong=\"H5650\"* servant|strong=\"H5650\"*, and|strong=\"H6030\"* he|strong=\"H3808\"* gives|strong=\"H7121\"* me|strong=\"H7121\"* no|strong=\"H3808\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 17, + "text": "My breath|strong=\"H7307\"* is|strong=\"H7307\"* offensive|strong=\"H2114\"* to|strong=\"H1121\"* my wife." + }, + { + "verseNum": 18, + "text": "Even|strong=\"H1571\"* young|strong=\"H5759\"* children|strong=\"H5759\"* despise|strong=\"H3988\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* my|strong=\"H3605\"* familiar friends|strong=\"H4962\"* abhor|strong=\"H8581\"* me|strong=\"H8581\"*." + }, + { + "verseNum": 20, + "text": "My|strong=\"H6106\"* bones|strong=\"H6106\"* stick|strong=\"H1692\"* to|strong=\"H1320\"* my|strong=\"H6106\"* skin|strong=\"H5785\"* and|strong=\"H1320\"* to|strong=\"H1320\"* my|strong=\"H6106\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 21, + "text": "“Have|strong=\"H3027\"* pity|strong=\"H2603\"* on|strong=\"H3027\"* me|strong=\"H5060\"*. Have|strong=\"H3027\"* pity|strong=\"H2603\"* on|strong=\"H3027\"* me|strong=\"H5060\"*, you|strong=\"H3588\"* my|strong=\"H3588\"* friends|strong=\"H7453\"*," + }, + { + "verseNum": 22, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* persecute|strong=\"H7291\"* me|strong=\"H7291\"* as|strong=\"H3644\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H4405\"* were|strong=\"H5612\"* now|strong=\"H5414\"* written|strong=\"H3789\"*!" + }, + { + "verseNum": 24, + "text": "That with an iron|strong=\"H1270\"* pen|strong=\"H5842\"* and|strong=\"H1270\"* lead|strong=\"H5777\"*" + }, + { + "verseNum": 25, + "text": "But|strong=\"H1350\"* as|strong=\"H6965\"* for|strong=\"H5921\"* me|strong=\"H5921\"*, I|strong=\"H5921\"* know|strong=\"H3045\"* that|strong=\"H3045\"* my|strong=\"H5921\"* Redeemer|strong=\"H1350\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 26, + "text": "After my|strong=\"H1320\"* skin|strong=\"H5785\"* is|strong=\"H1320\"* destroyed|strong=\"H5362\"*," + }, + { + "verseNum": 27, + "text": "whom|strong=\"H5869\"* I|strong=\"H7200\"*, even|strong=\"H3808\"* I|strong=\"H7200\"*, will|strong=\"H5869\"* see|strong=\"H7200\"* on|strong=\"H7200\"* my|strong=\"H7200\"* side." + }, + { + "verseNum": 28, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say|strong=\"H1697\"*, ‘How|strong=\"H4100\"* we|strong=\"H3068\"* will|strong=\"H1697\"* persecute|strong=\"H7291\"* him|strong=\"H4672\"*!’" + }, + { + "verseNum": 29, + "text": "be|strong=\"H6440\"* afraid|strong=\"H1481\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Zophar|strong=\"H6691\"* the|strong=\"H6030\"* Naamathite|strong=\"H5284\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Therefore|strong=\"H3651\"* my|strong=\"H7725\"* thoughts|strong=\"H5587\"* answer|strong=\"H7725\"* me|strong=\"H7725\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H8085\"* have|strong=\"H6030\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* reproof|strong=\"H4148\"* which|strong=\"H7307\"* puts me|strong=\"H6030\"* to|strong=\"H8085\"* shame|strong=\"H3639\"*." + }, + { + "verseNum": 4, + "text": "Don’t you|strong=\"H5921\"* know|strong=\"H3045\"* this|strong=\"H2063\"* from|strong=\"H4480\"* old|strong=\"H5703\"* time|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H3588\"* the|strong=\"H3588\"* triumphing|strong=\"H7445\"* of|strong=\"H8057\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* short|strong=\"H7138\"*," + }, + { + "verseNum": 6, + "text": "Though his|strong=\"H5927\"* height|strong=\"H7218\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "yet he|strong=\"H7200\"* will perish forever|strong=\"H5331\"* like his|strong=\"H7200\"* own dung|strong=\"H1561\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* fly|strong=\"H5774\"* away|strong=\"H5074\"* as a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H3915\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3254\"* eye|strong=\"H5869\"* which|strong=\"H5869\"* saw|strong=\"H7805\"* him|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H5869\"* him|strong=\"H5869\"* no|strong=\"H3808\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 10, + "text": "His|strong=\"H7725\"* children|strong=\"H1121\"* will|strong=\"H1121\"* seek the|strong=\"H7725\"* favor|strong=\"H7521\"* of|strong=\"H1121\"* the|strong=\"H7725\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 11, + "text": "His|strong=\"H5921\"* bones|strong=\"H6106\"* are|strong=\"H6106\"* full|strong=\"H4390\"* of|strong=\"H4390\"* his|strong=\"H5921\"* youth|strong=\"H5934\"*," + }, + { + "verseNum": 12, + "text": "“Though wickedness|strong=\"H7451\"* is|strong=\"H7451\"* sweet|strong=\"H4985\"* in|strong=\"H6310\"* his|strong=\"H8478\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 13, + "text": "though he|strong=\"H3808\"* spare|strong=\"H2550\"* it|strong=\"H5921\"*, and|strong=\"H5800\"* will|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H5800\"* it|strong=\"H5921\"* go|strong=\"H5800\"*," + }, + { + "verseNum": 14, + "text": "yet his|strong=\"H7130\"* food|strong=\"H3899\"* in|strong=\"H7130\"* his|strong=\"H7130\"* bowels|strong=\"H4578\"* is|strong=\"H4578\"* turned|strong=\"H2015\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3423\"* has swallowed|strong=\"H1104\"* down|strong=\"H1104\"* riches|strong=\"H2428\"*, and|strong=\"H2428\"* he|strong=\"H3423\"* will|strong=\"H2428\"* vomit|strong=\"H6958\"* them|strong=\"H3423\"* up|strong=\"H1104\"* again|strong=\"H6958\"*." + }, + { + "verseNum": 16, + "text": "He will|strong=\"H3956\"* suck|strong=\"H3243\"* cobra|strong=\"H6620\"* venom|strong=\"H7219\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7200\"* will|strong=\"H5158\"* not|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* rivers|strong=\"H5104\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* restore|strong=\"H7725\"* that|strong=\"H3808\"* for|strong=\"H2428\"* which|strong=\"H2428\"* he|strong=\"H3808\"* labored, and|strong=\"H7725\"* will|strong=\"H3808\"* not|strong=\"H3808\"* swallow|strong=\"H1104\"* it|strong=\"H7725\"* down|strong=\"H1104\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* oppressed|strong=\"H7533\"* and|strong=\"H1004\"* forsaken|strong=\"H5800\"* the|strong=\"H3588\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 20, + "text": "“Because|strong=\"H3588\"* he|strong=\"H3588\"* knew|strong=\"H3045\"* no|strong=\"H3808\"* quietness|strong=\"H7961\"* within him|strong=\"H3045\"*," + }, + { + "verseNum": 21, + "text": "There was|strong=\"H3808\"* nothing|strong=\"H3808\"* left|strong=\"H8300\"* that|strong=\"H3651\"* he|strong=\"H3651\"* didn’t devour," + }, + { + "verseNum": 22, + "text": "In|strong=\"H3027\"* the|strong=\"H3605\"* fullness|strong=\"H4390\"* of|strong=\"H3027\"* his|strong=\"H3605\"* sufficiency|strong=\"H5607\"*, distress|strong=\"H3027\"* will|strong=\"H3027\"* overtake him|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* he|strong=\"H5921\"* is|strong=\"H1961\"* about|strong=\"H1961\"* to|strong=\"H7971\"* fill|strong=\"H4390\"* his|strong=\"H7971\"* belly, God|strong=\"H7971\"* will|strong=\"H1961\"* cast|strong=\"H7971\"* the|strong=\"H5921\"* fierceness|strong=\"H2740\"* of|strong=\"H4390\"* his|strong=\"H7971\"* wrath|strong=\"H2740\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 24, + "text": "He will|strong=\"H7198\"* flee|strong=\"H1272\"* from|strong=\"H1272\"* the|strong=\"H1272\"* iron|strong=\"H1270\"* weapon|strong=\"H5402\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5921\"* draws it|strong=\"H5921\"* out|strong=\"H3318\"*, and|strong=\"H1980\"* it|strong=\"H5921\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5921\"* his|strong=\"H5921\"* body|strong=\"H1465\"*." + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* darkness|strong=\"H2822\"* is|strong=\"H3605\"* laid|strong=\"H2934\"* up|strong=\"H6845\"* for|strong=\"H3605\"* his|strong=\"H3605\"* treasures|strong=\"H6845\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H6965\"* heavens|strong=\"H8064\"* will|strong=\"H8064\"* reveal|strong=\"H1540\"* his|strong=\"H1540\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3117\"* increase|strong=\"H2981\"* of|strong=\"H1004\"* his|strong=\"H1540\"* house|strong=\"H1004\"* will|strong=\"H1004\"* depart|strong=\"H1540\"*." + }, + { + "verseNum": 29, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H2088\"* portion|strong=\"H2506\"* of|strong=\"H5159\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* from|strong=\"H2506\"* God," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Listen|strong=\"H8085\"* diligently|strong=\"H8085\"* to|strong=\"H1961\"* my|strong=\"H8085\"* speech|strong=\"H4405\"*." + }, + { + "verseNum": 3, + "text": "Allow me|strong=\"H1696\"*, and|strong=\"H1696\"* I also will speak|strong=\"H1696\"*." + }, + { + "verseNum": 4, + "text": "As for|strong=\"H3808\"* me|strong=\"H3808\"*, is|strong=\"H7307\"* my|strong=\"H3808\"* complaint|strong=\"H7879\"* to|strong=\"H7307\"* man?" + }, + { + "verseNum": 5, + "text": "Look|strong=\"H6437\"* at|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3027\"* be|strong=\"H3027\"* astonished|strong=\"H8074\"*." + }, + { + "verseNum": 6, + "text": "When|strong=\"H2142\"* I|strong=\"H2142\"* remember|strong=\"H2142\"*, I|strong=\"H2142\"* am troubled." + }, + { + "verseNum": 7, + "text": "“Why|strong=\"H4069\"* do the|strong=\"H1571\"* wicked|strong=\"H7563\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H6440\"* child|strong=\"H2233\"* is|strong=\"H6440\"* established|strong=\"H3559\"* with|strong=\"H5973\"* them|strong=\"H6440\"* in|strong=\"H6440\"* their|strong=\"H6440\"* sight|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Their|strong=\"H5921\"* houses|strong=\"H1004\"* are|strong=\"H1004\"* safe|strong=\"H7965\"* from|strong=\"H5921\"* fear|strong=\"H6343\"*," + }, + { + "verseNum": 10, + "text": "Their|strong=\"H3808\"* bulls|strong=\"H7794\"* breed|strong=\"H1602\"* without|strong=\"H3808\"* fail|strong=\"H5674\"*." + }, + { + "verseNum": 11, + "text": "They send|strong=\"H7971\"* out|strong=\"H7971\"* their|strong=\"H7971\"* little|strong=\"H5759\"* ones|strong=\"H3206\"* like|strong=\"H7540\"* a|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5375\"* sing|strong=\"H5375\"* to|strong=\"H5375\"* the|strong=\"H5375\"* tambourine|strong=\"H8596\"* and|strong=\"H6963\"* harp|strong=\"H3658\"*," + }, + { + "verseNum": 13, + "text": "They|strong=\"H3117\"* spend|strong=\"H1086\"* their|strong=\"H3117\"* days|strong=\"H3117\"* in|strong=\"H3117\"* prosperity|strong=\"H2896\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3808\"* tell God|strong=\"H3808\"*, ‘Depart|strong=\"H5493\"* from|strong=\"H4480\"* us|strong=\"H4480\"*," + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"*, that|strong=\"H3588\"* we|strong=\"H3068\"* should|strong=\"H4100\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*?" + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, their|strong=\"H3808\"* prosperity|strong=\"H2898\"* is|strong=\"H3027\"* not|strong=\"H3808\"* in|strong=\"H3027\"* their|strong=\"H3808\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "“How|strong=\"H4100\"* often|strong=\"H4100\"* is|strong=\"H4100\"* it|strong=\"H5921\"* that|strong=\"H7563\"* the|strong=\"H5921\"* lamp|strong=\"H5216\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* is|strong=\"H4100\"* put|strong=\"H1846\"* out|strong=\"H1846\"*," + }, + { + "verseNum": 18, + "text": "How often is|strong=\"H7307\"* it|strong=\"H6440\"* that|strong=\"H1961\"* they|strong=\"H6440\"* are|strong=\"H1961\"* as|strong=\"H1961\"* stubble|strong=\"H8401\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 19, + "text": "You|strong=\"H3045\"* say, ‘God|strong=\"H7999\"* lays up|strong=\"H6845\"* his|strong=\"H3045\"* iniquity for|strong=\"H1121\"* his|strong=\"H3045\"* children|strong=\"H1121\"*.’" + }, + { + "verseNum": 20, + "text": "Let his|strong=\"H7200\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* his|strong=\"H7200\"* destruction|strong=\"H3589\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* does|strong=\"H4100\"* he|strong=\"H3588\"* care|strong=\"H2656\"* for|strong=\"H3588\"* his|strong=\"H3588\"* house|strong=\"H1004\"* after|strong=\"H3588\"* him|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "“Shall|strong=\"H1931\"* any teach|strong=\"H3925\"* God knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 23, + "text": "One|strong=\"H2088\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3605\"* full|strong=\"H3605\"* strength|strong=\"H6106\"*," + }, + { + "verseNum": 24, + "text": "His|strong=\"H4390\"* pails are|strong=\"H6106\"* full|strong=\"H4390\"* of|strong=\"H4390\"* milk|strong=\"H2461\"*." + }, + { + "verseNum": 25, + "text": "Another|strong=\"H2088\"* dies|strong=\"H4191\"* in|strong=\"H4191\"* bitterness|strong=\"H4751\"* of|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* alike|strong=\"H3162\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* know|strong=\"H3045\"* your|strong=\"H5921\"* thoughts|strong=\"H4284\"*," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Where|strong=\"H1004\"* is|strong=\"H7563\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3588\"* prince|strong=\"H5081\"*?" + }, + { + "verseNum": 29, + "text": "Haven’t you|strong=\"H3808\"* asked|strong=\"H7592\"* wayfaring|strong=\"H5674\"* men?" + }, + { + "verseNum": 30, + "text": "that|strong=\"H3588\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* man|strong=\"H7451\"* is|strong=\"H3117\"* reserved|strong=\"H2820\"* to|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* calamity|strong=\"H7451\"*," + }, + { + "verseNum": 31, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* declare|strong=\"H5046\"* his|strong=\"H6440\"* way|strong=\"H1870\"* to|strong=\"H6213\"* his|strong=\"H6440\"* face|strong=\"H6440\"*?" + }, + { + "verseNum": 32, + "text": "Yet|strong=\"H5921\"* he|strong=\"H1931\"* will|strong=\"H1931\"* be|strong=\"H1931\"* borne to|strong=\"H5921\"* the|strong=\"H5921\"* grave|strong=\"H6913\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* clods|strong=\"H7263\"* of|strong=\"H6440\"* the|strong=\"H3605\"* valley|strong=\"H5158\"* will|strong=\"H5158\"* be|strong=\"H6440\"* sweet|strong=\"H4985\"* to|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "So how can you|strong=\"H7604\"* comfort|strong=\"H5162\"* me|strong=\"H5162\"* with nonsense," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Eliphaz the|strong=\"H6030\"* Temanite|strong=\"H8489\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Can|strong=\"H1397\"* a|strong=\"H3068\"* man|strong=\"H1397\"* be|strong=\"H1397\"* profitable|strong=\"H5532\"* to|strong=\"H5921\"* God?" + }, + { + "verseNum": 3, + "text": "Is|strong=\"H1870\"* it|strong=\"H3588\"* any|strong=\"H3588\"* pleasure|strong=\"H2656\"* to|strong=\"H1870\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1870\"* righteous|strong=\"H6663\"*?" + }, + { + "verseNum": 4, + "text": "Is|strong=\"H4941\"* it|strong=\"H4941\"* for|strong=\"H4941\"* your|strong=\"H5973\"* piety|strong=\"H3374\"* that he reproves|strong=\"H3198\"* you|strong=\"H5973\"*," + }, + { + "verseNum": 5, + "text": "Isn’t your|strong=\"H3808\"* wickedness|strong=\"H7451\"* great|strong=\"H7227\"*?" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* taken|strong=\"H2254\"* pledges|strong=\"H2254\"* from your|strong=\"H3588\"* brother for|strong=\"H3588\"* nothing|strong=\"H2600\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"H3808\"* haven’t given|strong=\"H8248\"* water|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H8248\"* weary|strong=\"H5889\"* to|strong=\"H4325\"* drink|strong=\"H8248\"*," + }, + { + "verseNum": 8, + "text": "But as|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* mighty|strong=\"H2220\"* man|strong=\"H5375\"*, he|strong=\"H6440\"* had|strong=\"H3427\"* the|strong=\"H6440\"* earth." + }, + { + "verseNum": 9, + "text": "You|strong=\"H7971\"* have|strong=\"H2220\"* sent|strong=\"H7971\"* widows away|strong=\"H7971\"* empty|strong=\"H7387\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* snares|strong=\"H6341\"* are|strong=\"H6341\"* around|strong=\"H5439\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "or|strong=\"H3808\"* darkness|strong=\"H2822\"*, so|strong=\"H3808\"* that|strong=\"H7200\"* you|strong=\"H3808\"* can|strong=\"H7200\"* not|strong=\"H3808\"* see|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "“Isn’t God|strong=\"H3808\"* in|strong=\"H8064\"* the|strong=\"H7200\"* heights|strong=\"H7311\"* of|strong=\"H7218\"* heaven|strong=\"H8064\"*?" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3045\"* say, ‘What|strong=\"H4100\"* does|strong=\"H4100\"* God know|strong=\"H3045\"*?" + }, + { + "verseNum": 14, + "text": "Thick|strong=\"H5645\"* clouds|strong=\"H5645\"* are|strong=\"H8064\"* a|strong=\"H3068\"* covering|strong=\"H5643\"* to|strong=\"H1980\"* him|strong=\"H7200\"*, so|strong=\"H1980\"* that|strong=\"H7200\"* he|strong=\"H3808\"* doesn’t see|strong=\"H7200\"*." + }, + { + "verseNum": 15, + "text": "Will|strong=\"H4962\"* you|strong=\"H8104\"* keep|strong=\"H8104\"* the|strong=\"H8104\"* old|strong=\"H5769\"* way," + }, + { + "verseNum": 16, + "text": "who|strong=\"H3808\"* were|strong=\"H3247\"* snatched|strong=\"H7059\"* away|strong=\"H3332\"* before|strong=\"H3808\"* their|strong=\"H3808\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H4100\"* said to|strong=\"H4480\"* God, ‘Depart|strong=\"H5493\"* from|strong=\"H4480\"* us|strong=\"H4480\"*!’" + }, + { + "verseNum": 18, + "text": "Yet he|strong=\"H1931\"* filled|strong=\"H4390\"* their|strong=\"H4390\"* houses|strong=\"H1004\"* with|strong=\"H4390\"* good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H7200\"* righteous|strong=\"H6662\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* are|strong=\"H6662\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 20, + "text": "saying, ‘Surely|strong=\"H3808\"* those who|strong=\"H3808\"* rose up against us are|strong=\"H7009\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*." + }, + { + "verseNum": 21, + "text": "“Acquaint|strong=\"H5532\"* yourself|strong=\"H5973\"* with|strong=\"H5973\"* him|strong=\"H5973\"* now|strong=\"H4994\"*, and|strong=\"H2896\"* be|strong=\"H4994\"* at|strong=\"H5973\"* peace|strong=\"H7999\"*." + }, + { + "verseNum": 22, + "text": "Please|strong=\"H4994\"* receive|strong=\"H3947\"* instruction|strong=\"H8451\"* from|strong=\"H3947\"* his|strong=\"H7760\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 23, + "text": "If you|strong=\"H5704\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H7725\"* Almighty|strong=\"H7706\"*, you|strong=\"H5704\"* will|strong=\"H5704\"* be|strong=\"H7725\"* built|strong=\"H1129\"* up|strong=\"H1129\"*," + }, + { + "verseNum": 24, + "text": "Lay|strong=\"H7896\"* your|strong=\"H5921\"* treasure in|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H1961\"* Almighty|strong=\"H7706\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* treasure," + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* then|strong=\"H5375\"* you|strong=\"H3588\"* will|strong=\"H3588\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H6440\"* Almighty|strong=\"H7706\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H7999\"* will|strong=\"H8085\"* make|strong=\"H7999\"* your|strong=\"H8085\"* prayer|strong=\"H6279\"* to|strong=\"H8085\"* him|strong=\"H8085\"*, and|strong=\"H8085\"* he will|strong=\"H8085\"* hear|strong=\"H8085\"* you|strong=\"H7999\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5921\"* will|strong=\"H1870\"* also decree|strong=\"H1504\"* a|strong=\"H3068\"* thing, and|strong=\"H6965\"* it|strong=\"H5921\"* will|strong=\"H1870\"* be|strong=\"H1870\"* established|strong=\"H6965\"* to|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* cast|strong=\"H8213\"* down|strong=\"H8213\"*, you|strong=\"H3588\"* will|strong=\"H5869\"* say, ‘be|strong=\"H5869\"* lifted up|strong=\"H1466\"*.’" + }, + { + "verseNum": 30, + "text": "He|strong=\"H3709\"* will|strong=\"H5355\"* even deliver|strong=\"H4422\"* him|strong=\"H4422\"* who is|strong=\"H3709\"* not innocent|strong=\"H5355\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Even|strong=\"H1571\"* today|strong=\"H3117\"* my|strong=\"H5921\"* complaint|strong=\"H7879\"* is|strong=\"H3117\"* rebellious|strong=\"H4805\"*." + }, + { + "verseNum": 3, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3045\"* I|strong=\"H5414\"* knew|strong=\"H3045\"* where I|strong=\"H5414\"* might find|strong=\"H4672\"* him|strong=\"H5414\"*!" + }, + { + "verseNum": 4, + "text": "I|strong=\"H6440\"* would set|strong=\"H4390\"* my|strong=\"H6440\"* cause|strong=\"H4941\"* in|strong=\"H6440\"* order|strong=\"H6186\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* would|strong=\"H4100\"* know|strong=\"H3045\"* the|strong=\"H3045\"* words|strong=\"H4405\"* which|strong=\"H4100\"* he|strong=\"H4100\"* would|strong=\"H4100\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 6, + "text": "Would|strong=\"H5978\"* he|strong=\"H1931\"* contend|strong=\"H7378\"* with|strong=\"H7378\"* me|strong=\"H5978\"* in|strong=\"H7227\"* the|strong=\"H7760\"* greatness of|strong=\"H7227\"* his|strong=\"H7760\"* power|strong=\"H3581\"*?" + }, + { + "verseNum": 7, + "text": "There|strong=\"H8033\"* the|strong=\"H8199\"* upright|strong=\"H3477\"* might|strong=\"H3477\"* reason|strong=\"H3198\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 8, + "text": "“If|strong=\"H2005\"* I|strong=\"H2005\"* go|strong=\"H1980\"* east|strong=\"H6924\"*, he|strong=\"H3808\"* is|strong=\"H3808\"* not|strong=\"H3808\"* there|strong=\"H6924\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* works|strong=\"H6213\"* to|strong=\"H6213\"* the|strong=\"H7200\"* north|strong=\"H8040\"*, but|strong=\"H3808\"* I|strong=\"H7200\"* can|strong=\"H6213\"*’t see|strong=\"H7200\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* that|strong=\"H3588\"* I|strong=\"H3588\"* take|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H8104\"* foot|strong=\"H7272\"* has|strong=\"H7272\"* held|strong=\"H5186\"* fast to|strong=\"H8104\"* his|strong=\"H8104\"* steps|strong=\"H7272\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* haven’t gone|strong=\"H3808\"* back|strong=\"H4185\"* from|strong=\"H4185\"* the|strong=\"H3808\"* commandment|strong=\"H4687\"* of|strong=\"H6310\"* his|strong=\"H3808\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* stands alone|strong=\"H1931\"*, and|strong=\"H7725\"* who|strong=\"H4310\"* can|strong=\"H4310\"* oppose him|strong=\"H7725\"*?" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* performs|strong=\"H7999\"* that|strong=\"H3588\"* which|strong=\"H2706\"* is|strong=\"H2706\"* appointed|strong=\"H2706\"* for|strong=\"H3588\"* me|strong=\"H5973\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* am terrified|strong=\"H6342\"* at|strong=\"H5921\"* his|strong=\"H6440\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3820\"* God has|strong=\"H3820\"* made my|strong=\"H3820\"* heart|strong=\"H3820\"* faint|strong=\"H7401\"*." + }, + { + "verseNum": 17, + "text": "Because|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H6440\"* not|strong=\"H3808\"* cut|strong=\"H6789\"* off|strong=\"H6789\"* before|strong=\"H6440\"* the|strong=\"H6440\"* darkness|strong=\"H2822\"*," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "“Why|strong=\"H4069\"* aren’t times|strong=\"H6256\"* laid up|strong=\"H6845\"* by|strong=\"H3117\"* the|strong=\"H3117\"* Almighty|strong=\"H7706\"*?" + }, + { + "verseNum": 2, + "text": "There are|strong=\"H7462\"* people who|strong=\"H7462\"* remove|strong=\"H5381\"* the|strong=\"H7462\"* landmarks|strong=\"H1367\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H2254\"* drive|strong=\"H5090\"* away|strong=\"H5090\"* the|strong=\"H5090\"* donkey|strong=\"H2543\"* of|strong=\"H2543\"* the|strong=\"H5090\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3162\"* turn|strong=\"H5186\"* the|strong=\"H1870\"* needy out|strong=\"H5186\"* of|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, as|strong=\"H3318\"* wild|strong=\"H6501\"* donkeys|strong=\"H6501\"* in|strong=\"H3899\"* the|strong=\"H3318\"* desert|strong=\"H6160\"*," + }, + { + "verseNum": 6, + "text": "They cut their|strong=\"H7114\"* food in|strong=\"H7114\"* the|strong=\"H7114\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3830\"* lie|strong=\"H3885\"* all|strong=\"H3885\"* night|strong=\"H3885\"* naked|strong=\"H6174\"* without|strong=\"H1097\"* clothing|strong=\"H3830\"*," + }, + { + "verseNum": 8, + "text": "They are|strong=\"H2022\"* wet|strong=\"H7372\"* with|strong=\"H2022\"* the|strong=\"H2022\"* showers|strong=\"H2230\"* of|strong=\"H2022\"* the|strong=\"H2022\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 9, + "text": "There are|strong=\"H7699\"* those who|strong=\"H6041\"* pluck|strong=\"H1497\"* the|strong=\"H1497\"* fatherless|strong=\"H3490\"* from the|strong=\"H1497\"* breast|strong=\"H7699\"*," + }, + { + "verseNum": 10, + "text": "so|strong=\"H1980\"* that|strong=\"H1097\"* they|strong=\"H5375\"* go|strong=\"H1980\"* around|strong=\"H1980\"* naked|strong=\"H6174\"* without|strong=\"H1097\"* clothing|strong=\"H3830\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H7791\"* make oil|strong=\"H6671\"* within the|strong=\"H1869\"* walls|strong=\"H7791\"* of|strong=\"H1869\"* these men." + }, + { + "verseNum": 12, + "text": "From|strong=\"H5315\"* out|strong=\"H7768\"* of|strong=\"H5892\"* the|strong=\"H7760\"* populous city|strong=\"H5892\"*, men|strong=\"H4962\"* groan|strong=\"H5008\"*." + }, + { + "verseNum": 13, + "text": "“These|strong=\"H1992\"* are|strong=\"H1992\"* of|strong=\"H3427\"* those|strong=\"H1992\"* who|strong=\"H3427\"* rebel|strong=\"H4775\"* against|strong=\"H4775\"* the|strong=\"H1870\"* light." + }, + { + "verseNum": 14, + "text": "The|strong=\"H6965\"* murderer|strong=\"H7523\"* rises|strong=\"H6965\"* with|strong=\"H6041\"* the|strong=\"H6965\"* light." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6440\"* eye|strong=\"H5869\"* also|strong=\"H5869\"* of|strong=\"H6440\"* the|strong=\"H6440\"* adulterer|strong=\"H5003\"* waits|strong=\"H8104\"* for|strong=\"H6440\"* the|strong=\"H6440\"* twilight|strong=\"H5399\"*," + }, + { + "verseNum": 16, + "text": "In|strong=\"H1004\"* the|strong=\"H3045\"* dark|strong=\"H2822\"* they|strong=\"H3808\"* dig|strong=\"H2864\"* through|strong=\"H2864\"* houses|strong=\"H1004\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* is|strong=\"H1242\"* to|strong=\"H1242\"* all|strong=\"H3162\"* of|strong=\"H6757\"* them|strong=\"H3588\"* like|strong=\"H3162\"* thick|strong=\"H6757\"* darkness|strong=\"H6757\"*," + }, + { + "verseNum": 18, + "text": "“They|strong=\"H3808\"* are|strong=\"H1870\"* foam|strong=\"H7031\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 19, + "text": "Drought|strong=\"H6723\"* and|strong=\"H4325\"* heat|strong=\"H2527\"* consume|strong=\"H1497\"* the|strong=\"H1571\"* snow|strong=\"H7950\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H7665\"* womb|strong=\"H7358\"* will|strong=\"H3808\"* forget|strong=\"H7911\"* him|strong=\"H2142\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* devours the|strong=\"H3205\"* barren|strong=\"H6135\"* who|strong=\"H7462\"* don’t bear|strong=\"H3205\"*." + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3808\"* God|strong=\"H3808\"* preserves the|strong=\"H6965\"* mighty|strong=\"H3581\"* by|strong=\"H6965\"* his|strong=\"H6965\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "God|strong=\"H5414\"* gives|strong=\"H5414\"* them|strong=\"H5414\"* security, and|strong=\"H5869\"* they|strong=\"H5921\"* rest|strong=\"H8172\"* in|strong=\"H5921\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3605\"* are|strong=\"H7641\"* exalted|strong=\"H7426\"*; yet|strong=\"H3605\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H4592\"*, and|strong=\"H7218\"* they|strong=\"H3605\"* are|strong=\"H7641\"* gone." + }, + { + "verseNum": 25, + "text": "If|strong=\"H7760\"* it|strong=\"H7760\"* isn’t so|strong=\"H3808\"* now|strong=\"H7760\"*, who|strong=\"H4310\"* will|strong=\"H4310\"* prove|strong=\"H3576\"* me|strong=\"H7760\"* a|strong=\"H3068\"* liar|strong=\"H3576\"*," + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Bildad|strong=\"H1085\"* the|strong=\"H6030\"* Shuhite|strong=\"H7747\"* answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Dominion|strong=\"H4910\"* and|strong=\"H6213\"* fear|strong=\"H6343\"* are|strong=\"H6213\"* with|strong=\"H5973\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Can|strong=\"H4310\"* his|strong=\"H5921\"* armies|strong=\"H3808\"* be|strong=\"H3426\"* counted|strong=\"H4557\"*?" + }, + { + "verseNum": 4, + "text": "How|strong=\"H4100\"* then|strong=\"H4100\"* can|strong=\"H4100\"* man be just|strong=\"H6663\"* with|strong=\"H5973\"* God?" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* moon|strong=\"H3394\"* has|strong=\"H5869\"* no|strong=\"H3808\"* brightness," + }, + { + "verseNum": 6, + "text": "How|strong=\"H3588\"* much less|strong=\"H3588\"* man|strong=\"H1121\"*, who|strong=\"H1121\"* is|strong=\"H1121\"* a|strong=\"H3068\"* worm|strong=\"H7415\"*," + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“How|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H3808\"* helped|strong=\"H5826\"* him|strong=\"H5826\"* who|strong=\"H4100\"* is|strong=\"H4100\"* without|strong=\"H3808\"* power|strong=\"H3581\"*!" + }, + { + "verseNum": 3, + "text": "How|strong=\"H4100\"* have|strong=\"H3045\"* you|strong=\"H3045\"* counseled|strong=\"H3289\"* him|strong=\"H3045\"* who|strong=\"H3045\"* has|strong=\"H4100\"* no|strong=\"H3808\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 4, + "text": "To|strong=\"H3318\"* whom|strong=\"H4310\"* have|strong=\"H4405\"* you|strong=\"H5046\"* uttered|strong=\"H5046\"* words|strong=\"H4405\"*?" + }, + { + "verseNum": 5, + "text": "“The|strong=\"H8478\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* tremble|strong=\"H2342\"*," + }, + { + "verseNum": 6, + "text": "Sheol|strong=\"H7585\"*+ 26:6 Sheol is the place of the dead.* is|strong=\"H6174\"* naked|strong=\"H6174\"* before|strong=\"H5048\"* God," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5921\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5921\"* north|strong=\"H6828\"* over|strong=\"H5921\"* empty|strong=\"H8414\"* space|strong=\"H8414\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H3808\"* binds|strong=\"H6887\"* up|strong=\"H1234\"* the|strong=\"H8478\"* waters|strong=\"H4325\"* in|strong=\"H3808\"* his|strong=\"H8478\"* thick|strong=\"H5645\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* encloses the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* his|strong=\"H6440\"* throne|strong=\"H3678\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5704\"* has|strong=\"H5973\"* described a|strong=\"H3068\"* boundary|strong=\"H2706\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H8064\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* heaven|strong=\"H8064\"* tremble|strong=\"H7322\"*" + }, + { + "verseNum": 12, + "text": "He|strong=\"H8394\"* stirs|strong=\"H7280\"* up|strong=\"H3220\"* the|strong=\"H4272\"* sea|strong=\"H3220\"* with|strong=\"H3220\"* his|strong=\"H3220\"* power|strong=\"H3581\"*," + }, + { + "verseNum": 13, + "text": "By|strong=\"H3027\"* his|strong=\"H3027\"* Spirit|strong=\"H7307\"* the|strong=\"H3027\"* heavens|strong=\"H8064\"* are|strong=\"H3027\"* garnished|strong=\"H8235\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2005\"*, these|strong=\"H8085\"* are|strong=\"H4100\"* but|strong=\"H8085\"* the|strong=\"H8085\"* outskirts of|strong=\"H1697\"* his|strong=\"H8085\"* ways|strong=\"H1870\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Job again|strong=\"H3254\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“As|strong=\"H5315\"* God lives|strong=\"H5315\"*, who|strong=\"H5315\"* has|strong=\"H5315\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H5493\"* right|strong=\"H4941\"*," + }, + { + "verseNum": 3, + "text": "(for|strong=\"H3588\"* the|strong=\"H3605\"* length of|strong=\"H7307\"* my|strong=\"H3605\"* life|strong=\"H5750\"* is|strong=\"H3605\"* still|strong=\"H5750\"* in|strong=\"H5750\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "surely my|strong=\"H1696\"* lips|strong=\"H8193\"* will|strong=\"H3956\"* not|strong=\"H1696\"* speak|strong=\"H1696\"* unrighteousness|strong=\"H5766\"*," + }, + { + "verseNum": 5, + "text": "Far|strong=\"H5704\"* be|strong=\"H3808\"* it|strong=\"H2486\"* from|strong=\"H4480\"* me|strong=\"H4480\"* that|strong=\"H4480\"* I|strong=\"H5704\"* should justify|strong=\"H6663\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* hold|strong=\"H2388\"* fast|strong=\"H2388\"* to|strong=\"H3117\"* my|strong=\"H2388\"* righteousness|strong=\"H6666\"*, and|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* let|strong=\"H7503\"* it|strong=\"H3117\"* go|strong=\"H7503\"*." + }, + { + "verseNum": 7, + "text": "“Let|strong=\"H1961\"* my|strong=\"H6965\"* enemy be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6965\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3588\"* hope|strong=\"H8615\"* of|strong=\"H5315\"* the|strong=\"H3588\"* godless|strong=\"H2611\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H4100\"* cut|strong=\"H1214\"* off|strong=\"H1214\"*," + }, + { + "verseNum": 9, + "text": "Will|strong=\"H8085\"* God hear|strong=\"H8085\"* his|strong=\"H8085\"* cry|strong=\"H6818\"* when|strong=\"H3588\"* trouble|strong=\"H6869\"* comes on|strong=\"H5921\"* him|strong=\"H5921\"*?" + }, + { + "verseNum": 10, + "text": "Will|strong=\"H7121\"* he|strong=\"H3605\"* delight|strong=\"H6026\"* himself|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* Almighty|strong=\"H7706\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H3027\"* teach|strong=\"H3384\"* you|strong=\"H5973\"* about|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* seen|strong=\"H2372\"* it|strong=\"H2088\"* yourselves|strong=\"H3605\"*;" + }, + { + "verseNum": 13, + "text": "“This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3947\"* portion|strong=\"H2506\"* of|strong=\"H5159\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* with|strong=\"H5973\"* God," + }, + { + "verseNum": 14, + "text": "If|strong=\"H1121\"* his|strong=\"H3808\"* children|strong=\"H1121\"* are|strong=\"H1121\"* multiplied|strong=\"H7235\"*, it|strong=\"H3808\"* is|strong=\"H1121\"* for|strong=\"H1121\"* the|strong=\"H3808\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 15, + "text": "Those who|strong=\"H8300\"* remain|strong=\"H8300\"* of|strong=\"H4194\"* him|strong=\"H6912\"* will|strong=\"H3808\"* be|strong=\"H3808\"* buried|strong=\"H6912\"* in|strong=\"H6912\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 16, + "text": "Though he|strong=\"H3701\"* heap|strong=\"H6651\"* up|strong=\"H6651\"* silver|strong=\"H3701\"* as|strong=\"H3701\"* the|strong=\"H3559\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 17, + "text": "he|strong=\"H3701\"* may prepare|strong=\"H3559\"* it|strong=\"H3559\"*, but|strong=\"H6662\"* the|strong=\"H3559\"* just|strong=\"H6662\"* will|strong=\"H6662\"* put|strong=\"H3847\"* it|strong=\"H3559\"* on|strong=\"H3847\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H6213\"* builds|strong=\"H1129\"* his|strong=\"H6213\"* house|strong=\"H1004\"* as|strong=\"H6213\"* the|strong=\"H6213\"* moth|strong=\"H6211\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* lies|strong=\"H7901\"* down|strong=\"H7901\"* rich|strong=\"H6223\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* will|strong=\"H5869\"* not|strong=\"H3808\"* do|strong=\"H5869\"* so|strong=\"H3808\"* again." + }, + { + "verseNum": 20, + "text": "Terrors|strong=\"H1091\"* overtake|strong=\"H5381\"* him|strong=\"H1589\"* like waters|strong=\"H4325\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5375\"* east|strong=\"H6921\"* wind|strong=\"H6921\"* carries|strong=\"H5375\"* him|strong=\"H5375\"* away|strong=\"H5375\"*, and|strong=\"H3212\"* he|strong=\"H8175\"* departs." + }, + { + "verseNum": 22, + "text": "For|strong=\"H5921\"* it|strong=\"H5921\"* hurls at|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3027\"* does|strong=\"H3808\"* not|strong=\"H3808\"* spare|strong=\"H2550\"*," + }, + { + "verseNum": 23, + "text": "Men will|strong=\"H4725\"* clap|strong=\"H5606\"* their|strong=\"H5921\"* hands|strong=\"H3709\"* at|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "“Surely|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* mine|strong=\"H4161\"* for|strong=\"H3588\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 2, + "text": "Iron|strong=\"H1270\"* is|strong=\"H1270\"* taken|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H6083\"* the|strong=\"H3947\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 3, + "text": "Man|strong=\"H3605\"* sets|strong=\"H7760\"* an|strong=\"H7760\"* end|strong=\"H7093\"* to|strong=\"H7093\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H4480\"* breaks|strong=\"H6555\"* open|strong=\"H6555\"* a|strong=\"H3068\"* shaft|strong=\"H5158\"* away|strong=\"H4480\"* from|strong=\"H4480\"* where|strong=\"H4480\"* people|strong=\"H5128\"* live|strong=\"H1481\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H3644\"* for|strong=\"H8478\"* the|strong=\"H4480\"* earth, out|strong=\"H3318\"* of|strong=\"H4480\"* it|strong=\"H2015\"* comes|strong=\"H3318\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 6, + "text": "Sapphires|strong=\"H5601\"* come from|strong=\"H2091\"* its rocks." + }, + { + "verseNum": 7, + "text": "That|strong=\"H3045\"* path|strong=\"H5410\"* no|strong=\"H3808\"* bird|strong=\"H5861\"* of|strong=\"H5869\"* prey|strong=\"H5861\"* knows|strong=\"H3045\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* proud|strong=\"H7830\"* animals have|strong=\"H1121\"* not|strong=\"H3808\"* trodden|strong=\"H1869\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3027\"* puts|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* flinty|strong=\"H2496\"* rock|strong=\"H2496\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3605\"* cuts out|strong=\"H7200\"* channels|strong=\"H2975\"* among|strong=\"H7200\"* the|strong=\"H3605\"* rocks|strong=\"H6697\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3318\"* binds|strong=\"H2280\"* the|strong=\"H3318\"* streams|strong=\"H5104\"* that|strong=\"H3318\"* they|strong=\"H3318\"* don’t trickle." + }, + { + "verseNum": 12, + "text": "“But where|strong=\"H4725\"* will|strong=\"H2088\"* wisdom|strong=\"H2451\"* be|strong=\"H2451\"* found|strong=\"H4672\"*?" + }, + { + "verseNum": 13, + "text": "Man|strong=\"H3045\"* doesn’t know|strong=\"H3045\"* its|strong=\"H3045\"* price|strong=\"H6187\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H3808\"* deep|strong=\"H8415\"* says, ‘It|strong=\"H1931\"* isn’t in|strong=\"H3220\"* me|strong=\"H5978\"*.’" + }, + { + "verseNum": 15, + "text": "It|strong=\"H5414\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* gotten|strong=\"H5414\"* for|strong=\"H8478\"* gold|strong=\"H5458\"*," + }, + { + "verseNum": 16, + "text": "It|strong=\"H3808\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* valued|strong=\"H5541\"* with|strong=\"H5541\"* the|strong=\"H3808\"* gold|strong=\"H3800\"* of|strong=\"H3800\"* Ophir," + }, + { + "verseNum": 17, + "text": "Gold|strong=\"H2091\"* and|strong=\"H2091\"* glass|strong=\"H2137\"* can|strong=\"H3808\"*’t equal|strong=\"H6186\"* it|strong=\"H3808\"*," + }, + { + "verseNum": 18, + "text": "No|strong=\"H3808\"* mention|strong=\"H2142\"* will|strong=\"H3808\"* be|strong=\"H3808\"* made of|strong=\"H2451\"* coral|strong=\"H7215\"* or|strong=\"H3808\"* of|strong=\"H2451\"* crystal|strong=\"H1378\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3808\"* topaz|strong=\"H6357\"* of|strong=\"H3800\"* Ethiopia|strong=\"H3568\"* will|strong=\"H3808\"* not|strong=\"H3808\"* equal|strong=\"H6186\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 20, + "text": "Where|strong=\"H4725\"* then|strong=\"H2088\"* does|strong=\"H2088\"* wisdom|strong=\"H2451\"* come from|strong=\"H4725\"*?" + }, + { + "verseNum": 21, + "text": "Seeing it|strong=\"H5869\"* is|strong=\"H3605\"* hidden|strong=\"H5641\"* from|strong=\"H5869\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* living|strong=\"H2416\"*," + }, + { + "verseNum": 22, + "text": "Destruction and|strong=\"H8085\"* Death|strong=\"H4194\"* say," + }, + { + "verseNum": 23, + "text": "“God understands|strong=\"H3045\"* its|strong=\"H3045\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* looks|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H3605\"* ends|strong=\"H7098\"* of|strong=\"H8478\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 25, + "text": "He|strong=\"H6213\"* establishes|strong=\"H6213\"* the|strong=\"H6213\"* force of|strong=\"H7307\"* the|strong=\"H6213\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 26, + "text": "When|strong=\"H6213\"* he|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* decree|strong=\"H2706\"* for|strong=\"H6213\"* the|strong=\"H6213\"* rain|strong=\"H4306\"*," + }, + { + "verseNum": 27, + "text": "then|strong=\"H1571\"* he|strong=\"H1571\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* declared|strong=\"H5608\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 28, + "text": "To|strong=\"H5493\"* man|strong=\"H7451\"* he|strong=\"H1931\"* said," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Job again|strong=\"H3254\"* took|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* parable|strong=\"H4912\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H3117\"* I|strong=\"H3117\"* were|strong=\"H3117\"* as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H5414\"* months|strong=\"H3391\"* of|strong=\"H3117\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 3, + "text": "when|strong=\"H5921\"* his|strong=\"H5921\"* lamp|strong=\"H5216\"* shone|strong=\"H1984\"* on|strong=\"H5921\"* my|strong=\"H5921\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 4, + "text": "as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* in|strong=\"H5921\"* my|strong=\"H5921\"* prime|strong=\"H2779\"*," + }, + { + "verseNum": 5, + "text": "when|strong=\"H5750\"* the|strong=\"H5439\"* Almighty|strong=\"H7706\"* was|strong=\"H5288\"* yet|strong=\"H5750\"* with|strong=\"H5978\"* me|strong=\"H5978\"*," + }, + { + "verseNum": 6, + "text": "when my|strong=\"H7364\"* steps|strong=\"H1978\"* were|strong=\"H1978\"* washed|strong=\"H7364\"* with|strong=\"H7364\"* butter|strong=\"H2529\"*," + }, + { + "verseNum": 7, + "text": "when|strong=\"H3318\"* I|strong=\"H5921\"* went|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5921\"* city|strong=\"H7176\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* young|strong=\"H5288\"* men|strong=\"H5288\"* saw|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H6965\"* hid|strong=\"H2244\"* themselves|strong=\"H2244\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H7760\"* princes|strong=\"H8269\"* refrained|strong=\"H6113\"* from|strong=\"H6113\"* talking|strong=\"H4405\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* nobles|strong=\"H5057\"* was|strong=\"H6963\"* hushed|strong=\"H2244\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H8085\"* ear|strong=\"H8085\"* heard|strong=\"H8085\"* me|strong=\"H7200\"*, then|strong=\"H8085\"* it|strong=\"H3588\"* blessed me|strong=\"H7200\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H3588\"* I|strong=\"H3588\"* delivered|strong=\"H4422\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* who|strong=\"H6041\"* cried|strong=\"H7768\"*," + }, + { + "verseNum": 13, + "text": "the|strong=\"H5921\"* blessing|strong=\"H1293\"* of|strong=\"H5921\"* him|strong=\"H5921\"* who was|strong=\"H3820\"* ready to|strong=\"H5921\"* perish came on|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 14, + "text": "I put|strong=\"H3847\"* on|strong=\"H3847\"* righteousness|strong=\"H6664\"*, and|strong=\"H4941\"* it|strong=\"H4941\"* clothed|strong=\"H3847\"* me|strong=\"H4941\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5869\"* was|strong=\"H1961\"* eyes|strong=\"H5869\"* to|strong=\"H1961\"* the|strong=\"H1961\"* blind|strong=\"H5787\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3045\"* was|strong=\"H3808\"* a|strong=\"H3068\"* father to|strong=\"H3045\"* the|strong=\"H3045\"* needy." + }, + { + "verseNum": 17, + "text": "I|strong=\"H7665\"* broke|strong=\"H7665\"* the|strong=\"H7665\"* jaws|strong=\"H4973\"* of|strong=\"H8127\"* the|strong=\"H7665\"* unrighteous|strong=\"H5767\"*" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3117\"* I|strong=\"H3117\"* said, ‘I|strong=\"H3117\"* will|strong=\"H3117\"* die|strong=\"H1478\"* in|strong=\"H3117\"* my|strong=\"H7235\"* own|strong=\"H5973\"* house," + }, + { + "verseNum": 19, + "text": "My|strong=\"H6605\"* root|strong=\"H8328\"* is|strong=\"H4325\"* spread|strong=\"H6605\"* out|strong=\"H6605\"* to|strong=\"H4325\"* the|strong=\"H3885\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 20, + "text": "My|strong=\"H3027\"* glory|strong=\"H3519\"* is|strong=\"H3027\"* fresh|strong=\"H2319\"* in|strong=\"H3027\"* me|strong=\"H5978\"*." + }, + { + "verseNum": 21, + "text": "“Men listened|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*, waited|strong=\"H3176\"*," + }, + { + "verseNum": 22, + "text": "After|strong=\"H5921\"* my|strong=\"H5921\"* words|strong=\"H1697\"* they|strong=\"H3808\"* didn’t speak|strong=\"H5197\"* again|strong=\"H8138\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H6310\"* waited|strong=\"H3176\"* for|strong=\"H3176\"* me as|strong=\"H6310\"* for|strong=\"H3176\"* the|strong=\"H6310\"* rain|strong=\"H4306\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H3808\"* smiled|strong=\"H7832\"* on|strong=\"H5307\"* them|strong=\"H6440\"* when|strong=\"H5307\"* they|strong=\"H3808\"* had|strong=\"H3808\"* no|strong=\"H3808\"* confidence." + }, + { + "verseNum": 25, + "text": "I|strong=\"H1870\"* chose out|strong=\"H3427\"* their|strong=\"H1870\"* way|strong=\"H1870\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* as|strong=\"H3427\"* chief|strong=\"H7218\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“But|strong=\"H6258\"* now|strong=\"H6258\"* those|strong=\"H4480\"* who are|strong=\"H3117\"* younger|strong=\"H6810\"* than|strong=\"H4480\"* I|strong=\"H3117\"* have|strong=\"H3117\"* me|strong=\"H5921\"* in|strong=\"H5921\"* derision|strong=\"H7832\"*," + }, + { + "verseNum": 2, + "text": "Of|strong=\"H3027\"* what|strong=\"H4100\"* use is|strong=\"H4100\"* the|strong=\"H5921\"* strength|strong=\"H3581\"* of|strong=\"H3027\"* their|strong=\"H5921\"* hands|strong=\"H3027\"* to|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H7722\"* are gaunt|strong=\"H1565\"* from lack and|strong=\"H6723\"* famine|strong=\"H3720\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* pluck|strong=\"H6998\"* salt herbs|strong=\"H4408\"* by|strong=\"H5921\"* the|strong=\"H5921\"* bushes|strong=\"H7880\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* are|strong=\"H4480\"* driven|strong=\"H1644\"* out|strong=\"H1644\"* from|strong=\"H4480\"* among|strong=\"H4480\"* men." + }, + { + "verseNum": 6, + "text": "so that|strong=\"H5158\"* they live|strong=\"H7931\"* in|strong=\"H7931\"* frightful valleys|strong=\"H5158\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H7880\"* bray|strong=\"H5101\"* among|strong=\"H8478\"* the|strong=\"H8478\"* bushes|strong=\"H7880\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H1571\"* are|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* fools|strong=\"H5036\"*, yes|strong=\"H1571\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* wicked men|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "“Now|strong=\"H6258\"* I|strong=\"H6258\"* have|strong=\"H1961\"* become|strong=\"H1961\"* their|strong=\"H1992\"* song|strong=\"H5058\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* abhor|strong=\"H8581\"* me|strong=\"H6440\"*, they|strong=\"H3808\"* stand|strong=\"H7368\"* aloof|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* untied his|strong=\"H7971\"* cord|strong=\"H3499\"*, and|strong=\"H7971\"* afflicted|strong=\"H6031\"* me|strong=\"H6440\"*;" + }, + { + "verseNum": 12, + "text": "On|strong=\"H5921\"* my|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* rise|strong=\"H6965\"* the|strong=\"H5921\"* rabble." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* mar|strong=\"H5420\"* my|strong=\"H3808\"* path|strong=\"H5410\"*." + }, + { + "verseNum": 14, + "text": "As|strong=\"H8478\"* through a|strong=\"H3068\"* wide|strong=\"H7342\"* breach|strong=\"H6556\"* they|strong=\"H8478\"* come." + }, + { + "verseNum": 15, + "text": "Terrors|strong=\"H1091\"* have|strong=\"H5921\"* turned|strong=\"H2015\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“Now|strong=\"H6258\"* my|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* within|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 17, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"* season|strong=\"H3915\"* my|strong=\"H5921\"* bones|strong=\"H6106\"* are|strong=\"H6106\"* pierced|strong=\"H5365\"* in|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "My|strong=\"H6310\"* garment|strong=\"H3830\"* is|strong=\"H6310\"* disfigured by great|strong=\"H7227\"* force|strong=\"H3581\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3384\"* has cast|strong=\"H3384\"* me into|strong=\"H6083\"* the|strong=\"H3384\"* mire|strong=\"H2563\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3808\"* cry|strong=\"H7768\"* to|strong=\"H6030\"* you|strong=\"H3808\"*, and|strong=\"H6030\"* you|strong=\"H3808\"* do not|strong=\"H3808\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3027\"* have|strong=\"H3027\"* turned|strong=\"H2015\"* to|strong=\"H3027\"* be|strong=\"H3027\"* cruel to|strong=\"H3027\"* me|strong=\"H7852\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5375\"* lift|strong=\"H5375\"* me up|strong=\"H5375\"* to|strong=\"H7307\"* the|strong=\"H5375\"* wind|strong=\"H7307\"*, and|strong=\"H7307\"* drive me with|strong=\"H5375\"* it|strong=\"H5375\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1004\"* bring|strong=\"H7725\"* me|strong=\"H7725\"* to|strong=\"H7725\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 24, + "text": "“However doesn’t one|strong=\"H3808\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* a|strong=\"H3068\"* hand|strong=\"H3027\"* in|strong=\"H3027\"* his|strong=\"H7971\"* fall?" + }, + { + "verseNum": 25, + "text": "Didn’t I|strong=\"H3117\"* weep|strong=\"H1058\"* for|strong=\"H3117\"* him|strong=\"H5315\"* who|strong=\"H5315\"* was|strong=\"H3117\"* in|strong=\"H3117\"* trouble|strong=\"H7186\"*?" + }, + { + "verseNum": 26, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* looked|strong=\"H6960\"* for|strong=\"H3588\"* good|strong=\"H2896\"*, then|strong=\"H3588\"* evil|strong=\"H7451\"* came|strong=\"H7451\"*." + }, + { + "verseNum": 27, + "text": "My|strong=\"H3808\"* heart|strong=\"H4578\"* is|strong=\"H3117\"* troubled, and|strong=\"H3117\"* doesn’t rest|strong=\"H1826\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H3808\"* go|strong=\"H1980\"* mourning|strong=\"H6937\"* without|strong=\"H3808\"* the|strong=\"H6965\"* sun|strong=\"H2535\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H1961\"* am|strong=\"H1961\"* a|strong=\"H3068\"* brother|strong=\"H7453\"* to|strong=\"H1961\"* jackals|strong=\"H8577\"*," + }, + { + "verseNum": 30, + "text": "My|strong=\"H5921\"* skin|strong=\"H5785\"* grows black|strong=\"H7835\"* and|strong=\"H5785\"* peels from|strong=\"H4480\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H1961\"* my|strong=\"H1961\"* harp|strong=\"H3658\"* has|strong=\"H1961\"* turned|strong=\"H1961\"* to|strong=\"H1961\"* mourning," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "“I|strong=\"H5921\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* my|strong=\"H5921\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 2, + "text": "For|strong=\"H2506\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H4100\"* portion|strong=\"H2506\"* from|strong=\"H2506\"* God above|strong=\"H4605\"*," + }, + { + "verseNum": 3, + "text": "Is|strong=\"H3808\"* it|strong=\"H3808\"* not|strong=\"H3808\"* calamity to|strong=\"H3808\"* the|strong=\"H3808\"* unrighteous|strong=\"H5767\"*," + }, + { + "verseNum": 4, + "text": "Doesn’t he|strong=\"H1931\"* see|strong=\"H7200\"* my|strong=\"H3605\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 5, + "text": "“If I|strong=\"H5921\"* have|strong=\"H7272\"* walked|strong=\"H1980\"* with|strong=\"H5973\"* falsehood|strong=\"H7723\"*," + }, + { + "verseNum": 6, + "text": "(let me|strong=\"H3045\"* be weighed|strong=\"H8254\"* in|strong=\"H3045\"* an even|strong=\"H6664\"* balance|strong=\"H3976\"*," + }, + { + "verseNum": 7, + "text": "if my|strong=\"H5186\"* step has|strong=\"H3820\"* turned|strong=\"H5186\"* out|strong=\"H5186\"* of|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "then let me sow|strong=\"H2232\"*, and|strong=\"H2232\"* let another eat." + }, + { + "verseNum": 9, + "text": "“If my|strong=\"H5921\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* been enticed|strong=\"H6601\"* to|strong=\"H5921\"* a|strong=\"H3068\"* woman," + }, + { + "verseNum": 10, + "text": "then let my|strong=\"H5921\"* wife grind|strong=\"H2912\"* for|strong=\"H5921\"* another," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* would be|strong=\"H3588\"* a|strong=\"H3068\"* heinous|strong=\"H2154\"* crime|strong=\"H2154\"*." + }, + { + "verseNum": 12, + "text": "for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fire that|strong=\"H3588\"* consumes to|strong=\"H5704\"* destruction," + }, + { + "verseNum": 13, + "text": "“If I|strong=\"H5650\"* have|strong=\"H5650\"* despised|strong=\"H3988\"* the|strong=\"H5650\"* cause|strong=\"H4941\"* of|strong=\"H5650\"* my|strong=\"H7378\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*" + }, + { + "verseNum": 14, + "text": "what|strong=\"H4100\"* then|strong=\"H6965\"* will|strong=\"H4100\"* I|strong=\"H3588\"* do|strong=\"H6213\"* when|strong=\"H3588\"* God rises|strong=\"H6965\"* up|strong=\"H6965\"*?" + }, + { + "verseNum": 15, + "text": "Didn’t he|strong=\"H6213\"* who|strong=\"H6213\"* made|strong=\"H6213\"* me|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* womb|strong=\"H7358\"* make|strong=\"H6213\"* him|strong=\"H6213\"*?" + }, + { + "verseNum": 16, + "text": "“If I|strong=\"H5869\"* have|strong=\"H5869\"* withheld|strong=\"H4513\"* the|strong=\"H3615\"* poor|strong=\"H1800\"* from|strong=\"H5869\"* their|strong=\"H3615\"* desire|strong=\"H2656\"*," + }, + { + "verseNum": 17, + "text": "or|strong=\"H3808\"* have|strong=\"H3808\"* eaten my|strong=\"H4480\"* morsel|strong=\"H6595\"* alone|strong=\"H4480\"*," + }, + { + "verseNum": 18, + "text": "(no, from my|strong=\"H3588\"* youth|strong=\"H5271\"* he|strong=\"H3588\"* grew|strong=\"H1431\"* up|strong=\"H1431\"* with|strong=\"H3588\"* me|strong=\"H5148\"* as|strong=\"H3588\"* with|strong=\"H3588\"* a|strong=\"H3068\"* father," + }, + { + "verseNum": 19, + "text": "if|strong=\"H7200\"* I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* any|strong=\"H7200\"* perish for|strong=\"H7200\"* want|strong=\"H1097\"* of|strong=\"H1097\"* clothing|strong=\"H3830\"*," + }, + { + "verseNum": 20, + "text": "if|strong=\"H1288\"* his|strong=\"H1288\"* heart hasn’t blessed|strong=\"H1288\"* me|strong=\"H1288\"*," + }, + { + "verseNum": 21, + "text": "if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3027\"* lifted|strong=\"H5130\"* up|strong=\"H7200\"* my|strong=\"H7200\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H5307\"* let my|strong=\"H7665\"* shoulder|strong=\"H3802\"* fall|strong=\"H5307\"* from|strong=\"H5307\"* the|strong=\"H7665\"* shoulder|strong=\"H3802\"* blade|strong=\"H7929\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* calamity from|strong=\"H3808\"* God|strong=\"H3808\"* is|strong=\"H3808\"* a|strong=\"H3068\"* terror|strong=\"H6343\"* to|strong=\"H3201\"* me|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "“If|strong=\"H7760\"* I|strong=\"H7760\"* have made|strong=\"H7760\"* gold|strong=\"H2091\"* my|strong=\"H7760\"* hope|strong=\"H3689\"*," + }, + { + "verseNum": 25, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3027\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* my|strong=\"H3588\"* wealth|strong=\"H2428\"* was|strong=\"H3027\"* great|strong=\"H7227\"*," + }, + { + "verseNum": 26, + "text": "if|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sun when|strong=\"H3588\"* it|strong=\"H3588\"* shined|strong=\"H1984\"*," + }, + { + "verseNum": 27, + "text": "and|strong=\"H3027\"* my|strong=\"H3027\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* been secretly|strong=\"H5643\"* enticed|strong=\"H6601\"*," + }, + { + "verseNum": 28, + "text": "this|strong=\"H1931\"* also|strong=\"H1571\"* would be|strong=\"H1571\"* an|strong=\"H3588\"* iniquity|strong=\"H5771\"* to|strong=\"H5771\"* be|strong=\"H1571\"* punished by|strong=\"H1571\"* the|strong=\"H3588\"* judges," + }, + { + "verseNum": 29, + "text": "“If|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H4672\"* rejoiced|strong=\"H8055\"* at|strong=\"H4672\"* the|strong=\"H3588\"* destruction|strong=\"H6365\"* of|strong=\"H7451\"* him|strong=\"H4672\"* who|strong=\"H4672\"* hated|strong=\"H8130\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 30, + "text": "(I|strong=\"H5414\"* have|strong=\"H5414\"* certainly|strong=\"H3808\"* not|strong=\"H3808\"* allowed|strong=\"H5414\"* my|strong=\"H5414\"* mouth|strong=\"H2441\"* to|strong=\"H5414\"* sin|strong=\"H2398\"*" + }, + { + "verseNum": 31, + "text": "if the|strong=\"H5414\"* men|strong=\"H4962\"* of|strong=\"H1320\"* my|strong=\"H5414\"* tent have|strong=\"H7646\"* not|strong=\"H3808\"* said," + }, + { + "verseNum": 32, + "text": "(the|strong=\"H2351\"* foreigner|strong=\"H1616\"* has not|strong=\"H3808\"* camped in|strong=\"H3885\"* the|strong=\"H2351\"* street|strong=\"H2351\"*," + }, + { + "verseNum": 33, + "text": "if like|strong=\"H6588\"* Adam I|strong=\"H6588\"* have|strong=\"H5771\"* covered|strong=\"H3680\"* my|strong=\"H3680\"* transgressions|strong=\"H6588\"*," + }, + { + "verseNum": 34, + "text": "because|strong=\"H3588\"* I|strong=\"H3588\"* feared|strong=\"H6206\"* the|strong=\"H3588\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*," + }, + { + "verseNum": 35, + "text": "oh|strong=\"H4310\"* that|strong=\"H8085\"* I|strong=\"H2005\"* had|strong=\"H5414\"* one|strong=\"H4310\"* to|strong=\"H5414\"* hear|strong=\"H8085\"* me|strong=\"H5414\"*!" + }, + { + "verseNum": 36, + "text": "Surely|strong=\"H3808\"* I|strong=\"H5921\"* would carry|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* shoulder|strong=\"H7926\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H3644\"* would declare|strong=\"H5046\"* to|strong=\"H5046\"* him|strong=\"H5046\"* the|strong=\"H7126\"* number|strong=\"H4557\"* of|strong=\"H4557\"* my|strong=\"H5046\"* steps|strong=\"H6806\"*." + }, + { + "verseNum": 38, + "text": "If my|strong=\"H5921\"* land cries|strong=\"H2199\"* out|strong=\"H2199\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 39, + "text": "if I|strong=\"H5315\"* have|strong=\"H1167\"* eaten its|strong=\"H1167\"* fruits|strong=\"H3581\"* without|strong=\"H1097\"* money|strong=\"H3701\"*," + }, + { + "verseNum": 40, + "text": "let briers grow|strong=\"H3318\"* instead|strong=\"H8478\"* of|strong=\"H1697\"* wheat|strong=\"H2406\"*," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "So|strong=\"H3588\"* these|strong=\"H1931\"* three|strong=\"H7969\"* men|strong=\"H6662\"* ceased|strong=\"H7673\"* to|strong=\"H5869\"* answer|strong=\"H6030\"* Job, because|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H1931\"* righteous|strong=\"H6662\"* in|strong=\"H5869\"* his|strong=\"H3588\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1121\"* the|strong=\"H5921\"* wrath of|strong=\"H1121\"* Elihu the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barachel|strong=\"H1292\"*, the|strong=\"H5921\"* Buzite, of|strong=\"H1121\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H1121\"* Ram|strong=\"H7410\"*, was|strong=\"H5315\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* Job. His|strong=\"H5921\"* wrath was|strong=\"H5315\"* kindled|strong=\"H2734\"* because|strong=\"H5921\"* he|strong=\"H5921\"* justified|strong=\"H6663\"* himself|strong=\"H5315\"* rather than|strong=\"H5921\"* God." + }, + { + "verseNum": 3, + "text": "Also his|strong=\"H5921\"* wrath was|strong=\"H3808\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* his|strong=\"H5921\"* three|strong=\"H7969\"* friends|strong=\"H7453\"*, because|strong=\"H5921\"* they|strong=\"H3808\"* had|strong=\"H4672\"* found|strong=\"H4672\"* no|strong=\"H3808\"* answer|strong=\"H4617\"*, and|strong=\"H7969\"* yet|strong=\"H3808\"* had|strong=\"H4672\"* condemned|strong=\"H7561\"* Job|strong=\"H3808\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H3117\"* Elihu had|strong=\"H3588\"* waited|strong=\"H2442\"* to|strong=\"H3117\"* speak|strong=\"H1697\"* to|strong=\"H3117\"* Job, because|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3117\"* older|strong=\"H2205\"* than|strong=\"H4480\"* he|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "When|strong=\"H3588\"* Elihu saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H7200\"* was|strong=\"H6310\"* no|strong=\"H7200\"* answer|strong=\"H4617\"* in|strong=\"H6310\"* the|strong=\"H7200\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* these three|strong=\"H7969\"* men, his|strong=\"H7200\"* wrath was|strong=\"H6310\"* kindled|strong=\"H2734\"*." + }, + { + "verseNum": 6, + "text": "Elihu the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Barachel|strong=\"H1292\"* the|strong=\"H5921\"* Buzite answered|strong=\"H6030\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* said|strong=\"H1696\"*, ‘Days|strong=\"H3117\"* should|strong=\"H8141\"* speak|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* there is|strong=\"H1931\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H7307\"* man," + }, + { + "verseNum": 9, + "text": "It|strong=\"H3808\"* is|strong=\"H4941\"* not|strong=\"H3808\"* the|strong=\"H3808\"* great|strong=\"H7227\"* who|strong=\"H7227\"* are|strong=\"H7227\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3651\"* said|strong=\"H8085\"*, ‘Listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*;" + }, + { + "verseNum": 11, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* waited|strong=\"H3176\"* for|strong=\"H5704\"* your|strong=\"H5704\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "Yes|strong=\"H2009\"*, I|strong=\"H5704\"* gave you|strong=\"H5704\"* my|strong=\"H4480\"* full attention," + }, + { + "verseNum": 13, + "text": "Beware|strong=\"H6435\"* lest|strong=\"H6435\"* you|strong=\"H3808\"* say, ‘We|strong=\"H6435\"* have|strong=\"H4672\"* found|strong=\"H4672\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 14, + "text": "for|strong=\"H6186\"* he|strong=\"H3808\"* has not|strong=\"H3808\"* directed|strong=\"H6186\"* his|strong=\"H7725\"* words|strong=\"H4405\"* against|strong=\"H6186\"* me|strong=\"H7725\"*;" + }, + { + "verseNum": 15, + "text": "“They|strong=\"H1992\"* are|strong=\"H1992\"* amazed|strong=\"H2865\"*. They|strong=\"H1992\"* answer|strong=\"H6030\"* no|strong=\"H3808\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 16, + "text": "Shall|strong=\"H3808\"* I|strong=\"H3588\"* wait|strong=\"H3176\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* don’t speak|strong=\"H1696\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H1843\"* also will answer|strong=\"H6030\"* my|strong=\"H6030\"* part|strong=\"H2506\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am full|strong=\"H4390\"* of|strong=\"H7307\"* words|strong=\"H4405\"*." + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H6605\"* breast is|strong=\"H2009\"* as wine|strong=\"H3196\"* which|strong=\"H3196\"* has|strong=\"H2009\"* no|strong=\"H3808\"* vent|strong=\"H6605\"*;" + }, + { + "verseNum": 20, + "text": "I will|strong=\"H8193\"* speak|strong=\"H1696\"*, that|strong=\"H8193\"* I may|strong=\"H8193\"* be|strong=\"H8193\"* refreshed|strong=\"H7304\"*." + }, + { + "verseNum": 21, + "text": "Please|strong=\"H4994\"* don’t let|strong=\"H4994\"* me|strong=\"H6440\"* respect|strong=\"H5375\"* any|strong=\"H5375\"* man|strong=\"H5375\"*’s person|strong=\"H6440\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H6213\"* give|strong=\"H5375\"* flattering titles|strong=\"H3655\"*," + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "“However|strong=\"H8085\"*, Job, please|strong=\"H4994\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* speech|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "See|strong=\"H2009\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* have|strong=\"H1696\"* opened|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 3, + "text": "My|strong=\"H1847\"* words|strong=\"H8193\"* will|strong=\"H3820\"* utter|strong=\"H4448\"* the|strong=\"H1847\"* uprightness|strong=\"H3476\"* of|strong=\"H3820\"* my|strong=\"H1847\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God has|strong=\"H7307\"* made|strong=\"H6213\"* me|strong=\"H6213\"*," + }, + { + "verseNum": 5, + "text": "If you|strong=\"H6440\"* can|strong=\"H3201\"*, answer|strong=\"H7725\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* toward God even|strong=\"H1571\"* as|strong=\"H1571\"* you|strong=\"H1571\"* are|strong=\"H6310\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5921\"* terror will|strong=\"H3808\"* not|strong=\"H3808\"* make|strong=\"H3513\"* you|strong=\"H5921\"* afraid|strong=\"H1204\"*," + }, + { + "verseNum": 8, + "text": "“Surely|strong=\"H8085\"* you|strong=\"H6963\"* have|strong=\"H4405\"* spoken|strong=\"H8085\"* in|strong=\"H8085\"* my|strong=\"H8085\"* hearing|strong=\"H8085\"*," + }, + { + "verseNum": 9, + "text": "‘I|strong=\"H3808\"* am clean|strong=\"H2134\"*, without|strong=\"H3808\"* disobedience." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5921\"* finds|strong=\"H4672\"* occasions|strong=\"H8569\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* puts|strong=\"H7760\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* in|strong=\"H7272\"* the|strong=\"H3605\"* stocks|strong=\"H5465\"*." + }, + { + "verseNum": 12, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H3588\"*. In|strong=\"H3808\"* this|strong=\"H2063\"* you|strong=\"H3588\"* are|strong=\"H3808\"* not|strong=\"H3808\"* just|strong=\"H6663\"*," + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4069\"* do|strong=\"H1697\"* you|strong=\"H3588\"* strive|strong=\"H7378\"* against|strong=\"H7378\"* him|strong=\"H3605\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* God|strong=\"H3808\"* speaks|strong=\"H1696\"* once," + }, + { + "verseNum": 15, + "text": "In|strong=\"H5921\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, in|strong=\"H5921\"* a|strong=\"H3068\"* vision|strong=\"H2384\"* of|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 16, + "text": "then he opens|strong=\"H1540\"* the|strong=\"H1540\"* ears of|strong=\"H1540\"* men," + }, + { + "verseNum": 17, + "text": "that|strong=\"H1397\"* he may withdraw|strong=\"H5493\"* man|strong=\"H1397\"* from|strong=\"H5493\"* his|strong=\"H5493\"* purpose|strong=\"H4639\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H4480\"* keeps|strong=\"H2820\"* back|strong=\"H2820\"* his|strong=\"H4480\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H4480\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 19, + "text": "“He|strong=\"H5921\"* is|strong=\"H4341\"* chastened|strong=\"H3198\"* also with|strong=\"H5921\"* pain|strong=\"H4341\"* on|strong=\"H5921\"* his|strong=\"H5921\"* bed|strong=\"H4904\"*," + }, + { + "verseNum": 20, + "text": "so that|strong=\"H5315\"* his life|strong=\"H5315\"* abhors bread|strong=\"H3899\"*," + }, + { + "verseNum": 21, + "text": "His|strong=\"H7200\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* so|strong=\"H3808\"* consumed|strong=\"H3615\"* away|strong=\"H3615\"* that|strong=\"H7200\"* it|strong=\"H7200\"* can|strong=\"H7200\"*’t be|strong=\"H3808\"* seen|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "Yes, his|strong=\"H7126\"* soul|strong=\"H5315\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H4191\"* the|strong=\"H7126\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 23, + "text": "“If|strong=\"H3426\"* there|strong=\"H3426\"* is|strong=\"H3426\"* beside|strong=\"H5921\"* him|strong=\"H5921\"* an|strong=\"H4480\"* angel|strong=\"H4397\"*," + }, + { + "verseNum": 24, + "text": "then|strong=\"H3381\"* God is|strong=\"H4672\"* gracious|strong=\"H2603\"* to|strong=\"H3381\"* him|strong=\"H4672\"*, and|strong=\"H3381\"* says," + }, + { + "verseNum": 25, + "text": "His|strong=\"H7725\"* flesh|strong=\"H1320\"* will|strong=\"H1320\"* be|strong=\"H3117\"* fresher|strong=\"H7375\"* than a|strong=\"H3068\"* child|strong=\"H5290\"*’s." + }, + { + "verseNum": 26, + "text": "He|strong=\"H6440\"* prays to|strong=\"H7725\"* God, and|strong=\"H7725\"* he|strong=\"H6440\"* is|strong=\"H6440\"* favorable|strong=\"H7521\"* to|strong=\"H7725\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H3808\"* sings before|strong=\"H5921\"* men, and|strong=\"H2398\"* says," + }, + { + "verseNum": 28, + "text": "He|strong=\"H5315\"* has|strong=\"H5315\"* redeemed|strong=\"H6299\"* my|strong=\"H7200\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* going|strong=\"H5674\"* into|strong=\"H2416\"* the|strong=\"H7200\"* pit|strong=\"H7845\"*." + }, + { + "verseNum": 29, + "text": "“Behold|strong=\"H2005\"*, God does|strong=\"H6466\"* all|strong=\"H3605\"* these|strong=\"H3605\"* things|strong=\"H3605\"*," + }, + { + "verseNum": 30, + "text": "to|strong=\"H7725\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* his|strong=\"H7725\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* the|strong=\"H4480\"* pit|strong=\"H7845\"*," + }, + { + "verseNum": 31, + "text": "Mark well|strong=\"H7181\"*, Job, and|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 32, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3426\"* anything|strong=\"H4405\"* to|strong=\"H1696\"* say|strong=\"H1696\"*, answer|strong=\"H7725\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 33, + "text": "If not|strong=\"H8085\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Elihu answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H4405\"*, you|strong=\"H3045\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* ear tries words|strong=\"H4405\"*," + }, + { + "verseNum": 4, + "text": "Let us|strong=\"H3045\"* choose for|strong=\"H4941\"* us|strong=\"H3045\"* that|strong=\"H3045\"* which|strong=\"H4100\"* is|strong=\"H4100\"* right|strong=\"H4941\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Job has|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* am righteous|strong=\"H6663\"*," + }, + { + "verseNum": 6, + "text": "Notwithstanding my|strong=\"H5921\"* right|strong=\"H4941\"* I|strong=\"H5921\"* am considered a|strong=\"H3068\"* liar|strong=\"H3576\"*." + }, + { + "verseNum": 7, + "text": "What|strong=\"H4310\"* man|strong=\"H1397\"* is|strong=\"H4310\"* like|strong=\"H3933\"* Job," + }, + { + "verseNum": 8, + "text": "who goes in|strong=\"H3212\"* company|strong=\"H2274\"* with|strong=\"H5973\"* the|strong=\"H5973\"* workers|strong=\"H6466\"* of|strong=\"H6466\"* iniquity|strong=\"H7562\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* said, ‘It|strong=\"H3588\"* profits|strong=\"H5532\"* a|strong=\"H3068\"* man|strong=\"H1397\"* nothing|strong=\"H3808\"*" + }, + { + "verseNum": 10, + "text": "“Therefore|strong=\"H3651\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H2486\"*, you|strong=\"H3651\"* men of|strong=\"H3824\"* understanding|strong=\"H3824\"*:" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H6467\"* of|strong=\"H6467\"* a|strong=\"H3068\"* man he|strong=\"H3588\"* will|strong=\"H7999\"* give to|strong=\"H3588\"* him|strong=\"H4672\"*," + }, + { + "verseNum": 12, + "text": "Yes surely|strong=\"H3808\"*, God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H7561\"* wickedly|strong=\"H7561\"*," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H4310\"* put|strong=\"H7760\"* him|strong=\"H5921\"* in|strong=\"H5921\"* charge|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* earth?" + }, + { + "verseNum": 14, + "text": "If|strong=\"H7760\"* he|strong=\"H7760\"* set|strong=\"H7760\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* on|strong=\"H7760\"* himself|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "all|strong=\"H3605\"* flesh|strong=\"H1320\"* would|strong=\"H3162\"* perish|strong=\"H1478\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 16, + "text": "“If now|strong=\"H8085\"* you|strong=\"H6963\"* have|strong=\"H4405\"* understanding|strong=\"H8085\"*, hear|strong=\"H8085\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 17, + "text": "Should even one|strong=\"H6662\"* who|strong=\"H6662\"* hates|strong=\"H8130\"* justice|strong=\"H4941\"* govern|strong=\"H2280\"*?" + }, + { + "verseNum": 18, + "text": "who|strong=\"H4428\"* says to|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"*, ‘Vile!’" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* doesn’t respect|strong=\"H5234\"* the|strong=\"H3605\"* persons|strong=\"H6440\"* of|strong=\"H3027\"* princes|strong=\"H8269\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H4191\"* a|strong=\"H3068\"* moment|strong=\"H7281\"* they|strong=\"H3808\"* die|strong=\"H4191\"*, even|strong=\"H3808\"* at|strong=\"H4191\"* midnight|strong=\"H2676\"*." + }, + { + "verseNum": 21, + "text": "“For|strong=\"H3588\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* a|strong=\"H3068\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8033\"* is|strong=\"H8033\"* no|strong=\"H6466\"* darkness|strong=\"H2822\"*, nor thick|strong=\"H6757\"* gloom|strong=\"H6757\"*," + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t need to|strong=\"H1980\"* consider|strong=\"H7760\"* a|strong=\"H3068\"* man further|strong=\"H5750\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H3808\"* breaks|strong=\"H7489\"* mighty|strong=\"H3524\"* men|strong=\"H3524\"* in|strong=\"H5975\"* pieces|strong=\"H7489\"* in|strong=\"H5975\"* ways past finding out|strong=\"H2714\"*," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H3651\"* takes knowledge|strong=\"H5234\"* of|strong=\"H5234\"* their|strong=\"H2015\"* works|strong=\"H4566\"*." + }, + { + "verseNum": 26, + "text": "He|strong=\"H8478\"* strikes|strong=\"H5606\"* them|strong=\"H7200\"* as|strong=\"H8478\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"*" + }, + { + "verseNum": 27, + "text": "because|strong=\"H5921\"* they|strong=\"H3651\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* following|strong=\"H1870\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 28, + "text": "so|strong=\"H8085\"* that|strong=\"H8085\"* they|strong=\"H5921\"* caused the|strong=\"H5921\"* cry|strong=\"H6818\"* of|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H6041\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 29, + "text": "When|strong=\"H5921\"* he|strong=\"H1931\"* gives quietness|strong=\"H8252\"*, who|strong=\"H4310\"* then can|strong=\"H4310\"* condemn|strong=\"H7561\"*?" + }, + { + "verseNum": 30, + "text": "that|strong=\"H5971\"* the|strong=\"H5971\"* godless|strong=\"H2611\"* man|strong=\"H2611\"* may|strong=\"H5971\"* not|strong=\"H5971\"* reign|strong=\"H4427\"*," + }, + { + "verseNum": 31, + "text": "“For|strong=\"H3588\"* has|strong=\"H3588\"* any|strong=\"H5375\"* said to|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 32, + "text": "Teach|strong=\"H3384\"* me|strong=\"H3254\"* that|strong=\"H3808\"* which I|strong=\"H3808\"* don’t see|strong=\"H2372\"*." + }, + { + "verseNum": 33, + "text": "Shall|strong=\"H3808\"* his|strong=\"H3045\"* recompense|strong=\"H7999\"* be|strong=\"H3808\"* as|strong=\"H3588\"* you|strong=\"H3588\"* desire, that|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3808\"* it|strong=\"H3588\"*?" + }, + { + "verseNum": 34, + "text": "Men|strong=\"H2450\"* of|strong=\"H3824\"* understanding|strong=\"H3824\"* will|strong=\"H3824\"* tell|strong=\"H8085\"* me|strong=\"H8085\"*," + }, + { + "verseNum": 35, + "text": "‘Job|strong=\"H3808\"* speaks|strong=\"H1696\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 36, + "text": "I|strong=\"H5704\"* wish that|strong=\"H5704\"* Job were|strong=\"H5921\"* tried to|strong=\"H5704\"* the|strong=\"H5921\"* end|strong=\"H5331\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* adds|strong=\"H3254\"* rebellion|strong=\"H6588\"* to|strong=\"H5921\"* his|strong=\"H5921\"* sin|strong=\"H2403\"*." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Elihu answered|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "“Do you|strong=\"H6664\"* think|strong=\"H2803\"* this|strong=\"H2063\"* to|strong=\"H2803\"* be your right|strong=\"H4941\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* ask, ‘What|strong=\"H4100\"* advantage|strong=\"H5532\"* will|strong=\"H4100\"* it|strong=\"H3588\"* be|strong=\"H3588\"* to|strong=\"H3588\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 4, + "text": "I will|strong=\"H7453\"* answer|strong=\"H7725\"* you|strong=\"H7725\"*," + }, + { + "verseNum": 5, + "text": "Look|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H7200\"* skies|strong=\"H7834\"*, and|strong=\"H8064\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 6, + "text": "If|strong=\"H2398\"* you|strong=\"H6213\"* have sinned|strong=\"H2398\"*, what|strong=\"H4100\"* effect|strong=\"H6213\"* do|strong=\"H6213\"* you|strong=\"H6213\"* have against|strong=\"H2398\"* him|strong=\"H6213\"*?" + }, + { + "verseNum": 7, + "text": "If you|strong=\"H5414\"* are|strong=\"H3027\"* righteous|strong=\"H6663\"*, what|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5414\"* give|strong=\"H5414\"* him|strong=\"H5414\"*?" + }, + { + "verseNum": 8, + "text": "Your|strong=\"H6666\"* wickedness|strong=\"H7562\"* may|strong=\"H1121\"* hurt a|strong=\"H3068\"* man|strong=\"H1121\"* as|strong=\"H3644\"* you|strong=\"H3644\"* are|strong=\"H1121\"*," + }, + { + "verseNum": 9, + "text": "“By|strong=\"H7230\"* reason of|strong=\"H7230\"* the|strong=\"H2220\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* oppressions|strong=\"H6217\"* they|strong=\"H6217\"* cry|strong=\"H2199\"* out|strong=\"H2199\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* says, ‘Where|strong=\"H3808\"* is|strong=\"H6213\"* God|strong=\"H5414\"* my|strong=\"H5414\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 11, + "text": "who teaches us|strong=\"H2449\"* more than the|strong=\"H8064\"* animals of|strong=\"H8064\"* the|strong=\"H8064\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "There|strong=\"H8033\"* they|strong=\"H8033\"* cry|strong=\"H6817\"*, but|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* answers|strong=\"H6030\"*," + }, + { + "verseNum": 13, + "text": "Surely|strong=\"H8085\"* God|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* an|strong=\"H8085\"* empty|strong=\"H7723\"* cry," + }, + { + "verseNum": 14, + "text": "How|strong=\"H3588\"* much less|strong=\"H3588\"* when|strong=\"H3588\"* you|strong=\"H3588\"* say you|strong=\"H3588\"* don’t see|strong=\"H7789\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* not|strong=\"H3808\"* visited|strong=\"H6485\"* in|strong=\"H3808\"* his|strong=\"H3045\"* anger," + }, + { + "verseNum": 16, + "text": "therefore Job opens|strong=\"H6475\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"* with|strong=\"H6310\"* empty talk|strong=\"H6310\"*," + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Elihu also|strong=\"H3254\"* continued|strong=\"H3254\"*, and|strong=\"H3254\"* said," + }, + { + "verseNum": 2, + "text": "“Bear with|strong=\"H3803\"* me|strong=\"H3588\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, and|strong=\"H5750\"* I|strong=\"H3588\"* will|strong=\"H5750\"* show|strong=\"H2331\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* get my|strong=\"H5414\"* knowledge|strong=\"H1843\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* truly|strong=\"H3588\"* my|strong=\"H3588\"* words|strong=\"H4405\"* are|strong=\"H5973\"* not|strong=\"H3808\"* false|strong=\"H8267\"*." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2005\"*, God|strong=\"H3808\"* is|strong=\"H3820\"* mighty|strong=\"H3524\"*, and|strong=\"H3820\"* doesn’t despise|strong=\"H3988\"* anyone|strong=\"H2005\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* doesn’t preserve|strong=\"H2421\"* the|strong=\"H5414\"* life|strong=\"H2421\"* of|strong=\"H4941\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* doesn’t withdraw|strong=\"H1639\"* his|strong=\"H3808\"* eyes|strong=\"H5869\"* from|strong=\"H5869\"* the|strong=\"H3808\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 8, + "text": "If they|strong=\"H3920\"* are|strong=\"H2256\"* bound in|strong=\"H3920\"* fetters|strong=\"H2131\"*," + }, + { + "verseNum": 9, + "text": "then|strong=\"H3588\"* he|strong=\"H3588\"* shows them|strong=\"H1992\"* their|strong=\"H1992\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* also|strong=\"H3588\"* opens|strong=\"H1540\"* their|strong=\"H7725\"* ears to|strong=\"H7725\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 11, + "text": "If they|strong=\"H3117\"* listen|strong=\"H8085\"* and|strong=\"H3117\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*," + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* if they|strong=\"H3808\"* don’t listen|strong=\"H8085\"*, they|strong=\"H3808\"* will|strong=\"H3808\"* perish|strong=\"H1478\"* by|strong=\"H5674\"* the|strong=\"H8085\"* sword|strong=\"H7973\"*;" + }, + { + "verseNum": 13, + "text": "“But|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H3820\"* godless|strong=\"H2611\"* in|strong=\"H3808\"* heart|strong=\"H3820\"* lay|strong=\"H7760\"* up|strong=\"H7760\"* anger." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* youth|strong=\"H5290\"*." + }, + { + "verseNum": 15, + "text": "He delivers|strong=\"H2502\"* the|strong=\"H1540\"* afflicted|strong=\"H6041\"* by|strong=\"H1540\"* their|strong=\"H1540\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 16, + "text": "Yes, he|strong=\"H3808\"* would|strong=\"H6862\"* have|strong=\"H6862\"* allured you|strong=\"H3808\"* out|strong=\"H3808\"* of|strong=\"H4390\"* distress|strong=\"H6862\"*," + }, + { + "verseNum": 17, + "text": "“But|strong=\"H7563\"* you are|strong=\"H7563\"* full|strong=\"H4390\"* of|strong=\"H4390\"* the|strong=\"H4390\"* judgment|strong=\"H4941\"* of|strong=\"H4390\"* the|strong=\"H4390\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 18, + "text": "Don’t let|strong=\"H5186\"* riches entice|strong=\"H5496\"* you|strong=\"H3588\"* to|strong=\"H2534\"* wrath|strong=\"H2534\"*," + }, + { + "verseNum": 19, + "text": "Would|strong=\"H3605\"* your|strong=\"H3605\"* wealth|strong=\"H3808\"* sustain|strong=\"H6186\"* you|strong=\"H3605\"* in|strong=\"H3808\"* distress," + }, + { + "verseNum": 20, + "text": "Don’t desire|strong=\"H7602\"* the|strong=\"H8478\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 21, + "text": "Take|strong=\"H8104\"* heed|strong=\"H8104\"*, don’t regard|strong=\"H6437\"* iniquity;" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2005\"*, God|strong=\"H4310\"* is|strong=\"H4310\"* exalted|strong=\"H7682\"* in|strong=\"H3384\"* his|strong=\"H3384\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* prescribed his|strong=\"H5921\"* way|strong=\"H1870\"* for|strong=\"H5921\"* him|strong=\"H5921\"*?" + }, + { + "verseNum": 24, + "text": "“Remember|strong=\"H2142\"* that|strong=\"H3588\"* you|strong=\"H3588\"* magnify|strong=\"H7679\"* his|strong=\"H2142\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* men|strong=\"H3605\"* have|strong=\"H3605\"* looked|strong=\"H5027\"* on|strong=\"H5027\"* it|strong=\"H3605\"*." + }, + { + "verseNum": 26, + "text": "Behold|strong=\"H2005\"*, God|strong=\"H3808\"* is|strong=\"H8141\"* great|strong=\"H7689\"*, and|strong=\"H8141\"* we|strong=\"H3068\"* don’t know|strong=\"H3045\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* draws|strong=\"H1639\"* up the|strong=\"H3588\"* drops|strong=\"H5198\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 28, + "text": "which|strong=\"H7227\"* the|strong=\"H5921\"* skies|strong=\"H7834\"* pour|strong=\"H5140\"* down|strong=\"H7491\"*" + }, + { + "verseNum": 29, + "text": "Indeed, can anyone understand the spreading|strong=\"H4666\"* of|strong=\"H5521\"* the clouds|strong=\"H5645\"*" + }, + { + "verseNum": 30, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5921\"* spreads|strong=\"H6566\"* his|strong=\"H5921\"* light around|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* by|strong=\"H5414\"* these|strong=\"H5971\"* he|strong=\"H3588\"* judges|strong=\"H1777\"* the|strong=\"H3588\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H5921\"* covers|strong=\"H3680\"* his|strong=\"H5921\"* hands|strong=\"H3709\"* with|strong=\"H5921\"* the|strong=\"H5921\"* lightning," + }, + { + "verseNum": 33, + "text": "Its|strong=\"H5921\"* noise|strong=\"H7452\"* tells|strong=\"H5046\"* about|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "“Yes, at|strong=\"H2729\"* this|strong=\"H2063\"* my|strong=\"H5425\"* heart|strong=\"H3820\"* trembles|strong=\"H2729\"*," + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, oh, hear|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* sends it|strong=\"H5921\"* out|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 4, + "text": "After|strong=\"H3588\"* it|strong=\"H3588\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* roars|strong=\"H7580\"*." + }, + { + "verseNum": 5, + "text": "God|strong=\"H3808\"* thunders|strong=\"H7481\"* marvelously|strong=\"H6381\"* with|strong=\"H6213\"* his|strong=\"H3045\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* says to|strong=\"H3588\"* the|strong=\"H3588\"* snow|strong=\"H7950\"*, ‘Fall|strong=\"H1933\"* on the|strong=\"H3588\"* earth,’" + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* seals|strong=\"H2856\"* up|strong=\"H2856\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* every|strong=\"H3605\"* man|strong=\"H3605\"*," + }, + { + "verseNum": 8, + "text": "Then the|strong=\"H1119\"* animals|strong=\"H2416\"* take cover," + }, + { + "verseNum": 9, + "text": "Out|strong=\"H4480\"* of|strong=\"H4480\"* its|strong=\"H4480\"* room|strong=\"H2315\"* comes the|strong=\"H4480\"* storm|strong=\"H5492\"*," + }, + { + "verseNum": 10, + "text": "By|strong=\"H5414\"* the|strong=\"H5414\"* breath|strong=\"H5397\"* of|strong=\"H4325\"* God|strong=\"H5414\"*, ice|strong=\"H7140\"* is|strong=\"H4325\"* given|strong=\"H5414\"*," + }, + { + "verseNum": 11, + "text": "Yes, he|strong=\"H7377\"* loads|strong=\"H2959\"* the|strong=\"H6327\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"* with|strong=\"H6051\"* moisture|strong=\"H7377\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* is|strong=\"H1931\"* turned|strong=\"H2015\"* around|strong=\"H5921\"* by|strong=\"H5921\"* his|strong=\"H3605\"* guidance|strong=\"H8458\"*," + }, + { + "verseNum": 13, + "text": "whether it|strong=\"H4672\"* is|strong=\"H2617\"* for|strong=\"H2617\"* correction|strong=\"H7626\"*, or for|strong=\"H2617\"* his|strong=\"H4672\"* land," + }, + { + "verseNum": 14, + "text": "“Listen to|strong=\"H5975\"* this|strong=\"H2063\"*, Job." + }, + { + "verseNum": 15, + "text": "Do you|strong=\"H5921\"* know|strong=\"H3045\"* how|strong=\"H3045\"* God controls them|strong=\"H5921\"*," + }, + { + "verseNum": 16, + "text": "Do you|strong=\"H5921\"* know|strong=\"H3045\"* the|strong=\"H5921\"* workings of|strong=\"H5921\"* the|strong=\"H5921\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 17, + "text": "You whose clothing is warm|strong=\"H2525\"*" + }, + { + "verseNum": 18, + "text": "Can you|strong=\"H5973\"*, with|strong=\"H5973\"* him|strong=\"H5973\"*, spread|strong=\"H7554\"* out|strong=\"H3332\"* the|strong=\"H5973\"* sky|strong=\"H7834\"*," + }, + { + "verseNum": 19, + "text": "Teach|strong=\"H3045\"* us|strong=\"H6440\"* what|strong=\"H4100\"* we|strong=\"H3068\"* will|strong=\"H3808\"* tell|strong=\"H3045\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 20, + "text": "Will|strong=\"H3588\"* it|strong=\"H3588\"* be|strong=\"H3588\"* told|strong=\"H1696\"* him|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would speak|strong=\"H1696\"*?" + }, + { + "verseNum": 21, + "text": "Now|strong=\"H6258\"* men don’t see|strong=\"H7200\"* the|strong=\"H7200\"* light which|strong=\"H1931\"* is|strong=\"H1931\"* bright in|strong=\"H7200\"* the|strong=\"H7200\"* skies|strong=\"H7834\"*," + }, + { + "verseNum": 22, + "text": "Out|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* comes golden|strong=\"H2091\"* splendor|strong=\"H1935\"*." + }, + { + "verseNum": 23, + "text": "We|strong=\"H4672\"* can|strong=\"H3808\"*’t reach the|strong=\"H4672\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* men|strong=\"H2450\"* revere|strong=\"H3372\"* him|strong=\"H7200\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5591\"*," + }, + { + "verseNum": 2, + "text": "“Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* darkens|strong=\"H2821\"* counsel|strong=\"H6098\"*" + }, + { + "verseNum": 3, + "text": "Brace yourself|strong=\"H3045\"* like a|strong=\"H3068\"* man|strong=\"H1397\"*," + }, + { + "verseNum": 4, + "text": "“Where were|strong=\"H1961\"* you|strong=\"H3045\"* when|strong=\"H1961\"* I|strong=\"H3045\"* laid|strong=\"H3245\"* the|strong=\"H3045\"* foundations|strong=\"H3245\"* of|strong=\"H3045\"* the|strong=\"H3045\"* earth?" + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* determined|strong=\"H7760\"* its|strong=\"H5921\"* measures|strong=\"H4461\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"*?" + }, + { + "verseNum": 6, + "text": "What|strong=\"H4100\"* were|strong=\"H5921\"* its|strong=\"H5921\"* foundations fastened|strong=\"H2883\"* on|strong=\"H5921\"*?" + }, + { + "verseNum": 7, + "text": "when|strong=\"H1121\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* stars|strong=\"H3556\"* sang|strong=\"H7442\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 8, + "text": "“Or|strong=\"H1817\"* who shut up|strong=\"H3318\"* the|strong=\"H3318\"* sea|strong=\"H3220\"* with|strong=\"H3318\"* doors|strong=\"H1817\"*," + }, + { + "verseNum": 9, + "text": "when|strong=\"H6051\"* I|strong=\"H7760\"* made|strong=\"H7760\"* clouds|strong=\"H6051\"* its|strong=\"H7760\"* garment|strong=\"H3830\"*," + }, + { + "verseNum": 10, + "text": "marked out|strong=\"H5921\"* for|strong=\"H5921\"* it|strong=\"H7760\"* my|strong=\"H7760\"* bound," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3254\"* said, ‘You|strong=\"H5704\"* may|strong=\"H3254\"* come here|strong=\"H6311\"*, but|strong=\"H3808\"* no|strong=\"H3808\"* further|strong=\"H3254\"*." + }, + { + "verseNum": 12, + "text": "“Have|strong=\"H3045\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H3117\"* morning|strong=\"H1242\"* in|strong=\"H3117\"* your|strong=\"H3045\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H4480\"* it might take hold of|strong=\"H4480\"* the|strong=\"H4480\"* ends|strong=\"H3671\"* of|strong=\"H4480\"* the|strong=\"H4480\"* earth," + }, + { + "verseNum": 14, + "text": "It|strong=\"H2015\"* is|strong=\"H3830\"* changed|strong=\"H2015\"* as|strong=\"H3644\"* clay|strong=\"H2563\"* under the|strong=\"H2015\"* seal|strong=\"H2368\"*," + }, + { + "verseNum": 15, + "text": "From|strong=\"H4513\"* the|strong=\"H7665\"* wicked, their|strong=\"H7665\"* light is|strong=\"H2220\"* withheld|strong=\"H4513\"*." + }, + { + "verseNum": 16, + "text": "“Have|strong=\"H8415\"* you|strong=\"H5704\"* entered|strong=\"H5704\"* into|strong=\"H1980\"* the|strong=\"H5704\"* springs|strong=\"H8415\"* of|strong=\"H3220\"* the|strong=\"H5704\"* sea|strong=\"H3220\"*?" + }, + { + "verseNum": 17, + "text": "Have|strong=\"H7200\"* the|strong=\"H7200\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* death|strong=\"H4194\"* been|strong=\"H4194\"* revealed|strong=\"H1540\"* to|strong=\"H7200\"* you|strong=\"H7200\"*?" + }, + { + "verseNum": 18, + "text": "Have|strong=\"H3045\"* you|strong=\"H3605\"* comprehended the|strong=\"H3605\"* earth in|strong=\"H5046\"* its|strong=\"H3605\"* width?" + }, + { + "verseNum": 19, + "text": "“What|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H1870\"* the|strong=\"H1870\"* dwelling|strong=\"H7931\"* of|strong=\"H1870\"* light?" + }, + { + "verseNum": 20, + "text": "that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3947\"* it|strong=\"H3588\"* to|strong=\"H1004\"* its|strong=\"H3588\"* bound|strong=\"H1366\"*," + }, + { + "verseNum": 21, + "text": "Surely|strong=\"H3588\"* you|strong=\"H3588\"* know|strong=\"H3045\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* born|strong=\"H3205\"* then|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "Have|strong=\"H7200\"* you|strong=\"H7200\"* entered the|strong=\"H7200\"* storehouses of|strong=\"H7200\"* the|strong=\"H7200\"* snow|strong=\"H7950\"*," + }, + { + "verseNum": 23, + "text": "which|strong=\"H4421\"* I|strong=\"H3117\"* have|strong=\"H6862\"* reserved|strong=\"H2820\"* against|strong=\"H4421\"* the|strong=\"H3117\"* time|strong=\"H6256\"* of|strong=\"H3117\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 24, + "text": "By|strong=\"H5921\"* what|strong=\"H2088\"* way|strong=\"H1870\"* is|strong=\"H2088\"* the|strong=\"H5921\"* lightning distributed|strong=\"H2505\"*," + }, + { + "verseNum": 25, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* cut a|strong=\"H3068\"* channel|strong=\"H8585\"* for|strong=\"H6963\"* the|strong=\"H1870\"* flood|strong=\"H7858\"* water," + }, + { + "verseNum": 26, + "text": "to|strong=\"H5921\"* cause it|strong=\"H5921\"* to|strong=\"H5921\"* rain|strong=\"H4305\"* on|strong=\"H5921\"* a|strong=\"H3068\"* land where|strong=\"H5921\"* there is|strong=\"H3808\"* no|strong=\"H3808\"* man," + }, + { + "verseNum": 27, + "text": "to|strong=\"H7646\"* satisfy|strong=\"H7646\"* the|strong=\"H7646\"* waste|strong=\"H4875\"* and|strong=\"H7646\"* desolate|strong=\"H7722\"* ground," + }, + { + "verseNum": 28, + "text": "Does|strong=\"H3426\"* the|strong=\"H3205\"* rain|strong=\"H4306\"* have|strong=\"H3426\"* a|strong=\"H3068\"* father|strong=\"H3205\"*?" + }, + { + "verseNum": 29, + "text": "Whose|strong=\"H4310\"* womb did the|strong=\"H3205\"* ice|strong=\"H7140\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3205\"*?" + }, + { + "verseNum": 30, + "text": "The|strong=\"H6440\"* waters|strong=\"H4325\"* become hard|strong=\"H2244\"* like|strong=\"H6440\"* stone," + }, + { + "verseNum": 31, + "text": "“Can you|strong=\"H6605\"* bind|strong=\"H7194\"* the|strong=\"H6605\"* cluster of|strong=\"H4189\"* the|strong=\"H6605\"* Pleiades|strong=\"H3598\"*," + }, + { + "verseNum": 32, + "text": "Can|strong=\"H1121\"* you|strong=\"H5921\"* lead|strong=\"H5148\"* the|strong=\"H5921\"* constellations out|strong=\"H3318\"* in|strong=\"H5921\"* their|strong=\"H5921\"* season|strong=\"H6256\"*?" + }, + { + "verseNum": 33, + "text": "Do you|strong=\"H7760\"* know|strong=\"H3045\"* the|strong=\"H7760\"* laws of|strong=\"H2708\"* the|strong=\"H7760\"* heavens|strong=\"H8064\"*?" + }, + { + "verseNum": 34, + "text": "“Can you|strong=\"H6963\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H7311\"* voice|strong=\"H6963\"* to|strong=\"H4325\"* the|strong=\"H3680\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 35, + "text": "Can you|strong=\"H7971\"* send|strong=\"H7971\"* out|strong=\"H7971\"* lightnings|strong=\"H1300\"*, that|strong=\"H3212\"* they may go|strong=\"H3212\"*?" + }, + { + "verseNum": 36, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* put|strong=\"H5414\"* wisdom|strong=\"H2451\"* in|strong=\"H5414\"* the|strong=\"H5414\"* inward parts|strong=\"H2910\"*?" + }, + { + "verseNum": 37, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* count|strong=\"H5608\"* the|strong=\"H5608\"* clouds|strong=\"H7834\"* by|strong=\"H8064\"* wisdom|strong=\"H2451\"*?" + }, + { + "verseNum": 38, + "text": "when the|strong=\"H3332\"* dust|strong=\"H6083\"* runs into|strong=\"H3332\"* a|strong=\"H3068\"* mass|strong=\"H4165\"*," + }, + { + "verseNum": 39, + "text": "“Can you hunt|strong=\"H6679\"* the|strong=\"H4390\"* prey|strong=\"H2964\"* for|strong=\"H2416\"* the|strong=\"H4390\"* lioness|strong=\"H3833\"*," + }, + { + "verseNum": 40, + "text": "when|strong=\"H3588\"* they|strong=\"H3588\"* crouch|strong=\"H7817\"* in|strong=\"H3427\"* their|strong=\"H3588\"* dens|strong=\"H4585\"*," + }, + { + "verseNum": 41, + "text": "Who|strong=\"H4310\"* provides|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3588\"* raven|strong=\"H6158\"* his|strong=\"H3559\"* prey|strong=\"H6718\"*," + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "“Do|strong=\"H8104\"* you|strong=\"H3045\"* know|strong=\"H3045\"* the|strong=\"H8104\"* time|strong=\"H6256\"* when|strong=\"H6256\"* the|strong=\"H8104\"* mountain|strong=\"H3277\"* goats|strong=\"H3277\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*?" + }, + { + "verseNum": 2, + "text": "Can|strong=\"H3045\"* you|strong=\"H3045\"* count|strong=\"H5608\"* the|strong=\"H3205\"* months|strong=\"H3391\"* that|strong=\"H3045\"* they|strong=\"H6256\"* fulfill|strong=\"H4390\"*?" + }, + { + "verseNum": 3, + "text": "They bow|strong=\"H3766\"* themselves. They bear their|strong=\"H7971\"* young|strong=\"H3206\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H7725\"* young|strong=\"H1121\"* ones|strong=\"H1121\"* become|strong=\"H7725\"* strong|strong=\"H2492\"*." + }, + { + "verseNum": 5, + "text": "“Who|strong=\"H4310\"* has|strong=\"H4310\"* set|strong=\"H7971\"* the|strong=\"H7971\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* free|strong=\"H2670\"*?" + }, + { + "verseNum": 6, + "text": "whose home|strong=\"H1004\"* I|strong=\"H7760\"* have|strong=\"H1004\"* made|strong=\"H7760\"* the|strong=\"H7760\"* wilderness|strong=\"H6160\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* scorns|strong=\"H7832\"* the|strong=\"H8085\"* tumult|strong=\"H1995\"* of|strong=\"H1995\"* the|strong=\"H8085\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* range|strong=\"H3491\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* is|strong=\"H3605\"* his|strong=\"H3605\"* pasture|strong=\"H4829\"*." + }, + { + "verseNum": 9, + "text": "“Will|strong=\"H5647\"* the|strong=\"H5921\"* wild|strong=\"H7214\"* ox|strong=\"H7214\"* be|strong=\"H7214\"* content to|strong=\"H5921\"* serve|strong=\"H5647\"* you|strong=\"H5921\"*?" + }, + { + "verseNum": 10, + "text": "Can you|strong=\"H7214\"* hold the|strong=\"H7194\"* wild|strong=\"H7214\"* ox|strong=\"H7214\"* in|strong=\"H6010\"* the|strong=\"H7194\"* furrow|strong=\"H8525\"* with|strong=\"H7194\"* his harness?" + }, + { + "verseNum": 11, + "text": "Will|strong=\"H7227\"* you|strong=\"H3588\"* trust him|strong=\"H5800\"*, because|strong=\"H3588\"* his|strong=\"H3588\"* strength|strong=\"H3581\"* is|strong=\"H3581\"* great|strong=\"H7227\"*?" + }, + { + "verseNum": 12, + "text": "Will|strong=\"H2233\"* you|strong=\"H3588\"* confide in|strong=\"H7725\"* him|strong=\"H7725\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H2233\"* bring|strong=\"H7725\"* home|strong=\"H7725\"* your|strong=\"H7725\"* seed|strong=\"H2233\"*," + }, + { + "verseNum": 13, + "text": "“The wings|strong=\"H3671\"* of|strong=\"H3671\"* the ostrich|strong=\"H5133\"* wave proudly," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* she|strong=\"H3588\"* leaves|strong=\"H5800\"* her|strong=\"H5921\"* eggs|strong=\"H1000\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H6083\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H7704\"* forgets|strong=\"H7911\"* that|strong=\"H3588\"* the|strong=\"H3588\"* foot|strong=\"H7272\"* may|strong=\"H7272\"* crush|strong=\"H2115\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 16, + "text": "She|strong=\"H3808\"* deals harshly with|strong=\"H1121\"* her|strong=\"H7188\"* young|strong=\"H1121\"* ones|strong=\"H1121\"*, as|strong=\"H1121\"* if|strong=\"H1121\"* they|strong=\"H3808\"* were|strong=\"H1121\"* not|strong=\"H3808\"* hers." + }, + { + "verseNum": 17, + "text": "because|strong=\"H3588\"* God|strong=\"H3808\"* has|strong=\"H3588\"* deprived|strong=\"H5382\"* her|strong=\"H3588\"* of|strong=\"H2451\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H6256\"* she|strong=\"H6256\"* lifts|strong=\"H4754\"* up|strong=\"H4754\"* herself|strong=\"H4754\"* on|strong=\"H7392\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 19, + "text": "“Have|strong=\"H5414\"* you|strong=\"H5414\"* given|strong=\"H5414\"* the|strong=\"H5414\"* horse|strong=\"H5483\"* might|strong=\"H1369\"*?" + }, + { + "verseNum": 20, + "text": "Have you made him to|strong=\"H1935\"* leap|strong=\"H7493\"* as a|strong=\"H3068\"* locust?" + }, + { + "verseNum": 21, + "text": "He|strong=\"H3318\"* paws|strong=\"H2658\"* in|strong=\"H3318\"* the|strong=\"H3318\"* valley|strong=\"H6010\"*, and|strong=\"H3318\"* rejoices|strong=\"H7797\"* in|strong=\"H3318\"* his|strong=\"H3318\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H3808\"* mocks at|strong=\"H7725\"* fear|strong=\"H6343\"*, and|strong=\"H7725\"* is|strong=\"H2719\"* not|strong=\"H3808\"* dismayed|strong=\"H2865\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* quiver rattles|strong=\"H7439\"* against|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H3588\"* eats up the|strong=\"H3588\"* ground with|strong=\"H6963\"* fierceness|strong=\"H7494\"* and|strong=\"H6963\"* rage|strong=\"H7267\"*," + }, + { + "verseNum": 25, + "text": "As|strong=\"H1767\"* often|strong=\"H1767\"* as|strong=\"H1767\"* the|strong=\"H7306\"* trumpet|strong=\"H7782\"* sounds he snorts, ‘Aha|strong=\"H1889\"*!’" + }, + { + "verseNum": 26, + "text": "“Is|strong=\"H3671\"* it|strong=\"H6566\"* by your|strong=\"H6566\"* wisdom that the|strong=\"H6566\"* hawk|strong=\"H5322\"* soars," + }, + { + "verseNum": 27, + "text": "Is|strong=\"H6310\"* it|strong=\"H5921\"* at|strong=\"H5921\"* your|strong=\"H5921\"* command|strong=\"H6310\"* that|strong=\"H3588\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"* mounts|strong=\"H1361\"* up|strong=\"H7311\"*," + }, + { + "verseNum": 28, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* cliff|strong=\"H5553\"* he|strong=\"H5921\"* dwells|strong=\"H7931\"* and|strong=\"H8127\"* makes his|strong=\"H5921\"* home," + }, + { + "verseNum": 29, + "text": "From|strong=\"H7350\"* there|strong=\"H8033\"* he|strong=\"H8033\"* spies|strong=\"H2658\"* out|strong=\"H2658\"* the|strong=\"H8033\"* prey." + }, + { + "verseNum": 30, + "text": "His|strong=\"H1931\"* young ones also|strong=\"H1931\"* suck|strong=\"H5966\"* up|strong=\"H5966\"* blood|strong=\"H1818\"*." + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "Moreover Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job," + }, + { + "verseNum": 2, + "text": "“Shall he who|strong=\"H7706\"* argues contend|strong=\"H7378\"* with|strong=\"H5973\"* the|strong=\"H5973\"* Almighty|strong=\"H7706\"*?" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* of|strong=\"H3027\"* small|strong=\"H7043\"* account. What|strong=\"H4100\"* will|strong=\"H3027\"* I|strong=\"H2005\"* answer|strong=\"H7725\"* you|strong=\"H7725\"*?" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* spoken|strong=\"H1696\"* once|strong=\"H3254\"*, and|strong=\"H6030\"* I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* answer|strong=\"H6030\"*;" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* Job out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5591\"*:" + }, + { + "verseNum": 7, + "text": "“Now|strong=\"H4994\"* brace yourself|strong=\"H3045\"* like a|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 8, + "text": "Will|strong=\"H4616\"* you|strong=\"H6663\"* even annul|strong=\"H6565\"* my|strong=\"H6565\"* judgment|strong=\"H4941\"*?" + }, + { + "verseNum": 9, + "text": "Or|strong=\"H2220\"* do you|strong=\"H3644\"* have|strong=\"H2220\"* an|strong=\"H3644\"* arm|strong=\"H2220\"* like|strong=\"H3644\"* God?" + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H4994\"* deck|strong=\"H5710\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* excellency|strong=\"H1347\"* and|strong=\"H1935\"* dignity|strong=\"H1363\"*." + }, + { + "verseNum": 11, + "text": "Pour|strong=\"H6327\"* out|strong=\"H7200\"* the|strong=\"H3605\"* fury|strong=\"H5678\"* of|strong=\"H3605\"* your|strong=\"H3605\"* anger|strong=\"H5678\"*." + }, + { + "verseNum": 12, + "text": "Look|strong=\"H7200\"* at|strong=\"H7200\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H7563\"* proud|strong=\"H1343\"*, and|strong=\"H7200\"* humble|strong=\"H3665\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 13, + "text": "Hide|strong=\"H2934\"* them|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* dust|strong=\"H6083\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1571\"* I|strong=\"H3588\"* will|strong=\"H1571\"* also|strong=\"H1571\"* admit to|strong=\"H3588\"* you|strong=\"H3588\"*" + }, + { + "verseNum": 15, + "text": "“See|strong=\"H2009\"* now|strong=\"H4994\"* behemoth, which|strong=\"H2682\"* I|strong=\"H2009\"* made|strong=\"H6213\"* as|strong=\"H6213\"* well|strong=\"H5973\"* as|strong=\"H6213\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "Look|strong=\"H2009\"* now|strong=\"H4994\"*, his|strong=\"H2009\"* strength|strong=\"H3581\"* is|strong=\"H2009\"* in|strong=\"H4994\"* his|strong=\"H2009\"* thighs." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2654\"* moves his|strong=\"H2654\"* tail|strong=\"H2180\"* like|strong=\"H3644\"* a|strong=\"H3068\"* cedar." + }, + { + "verseNum": 18, + "text": "His bones|strong=\"H6106\"* are|strong=\"H6106\"* like tubes of|strong=\"H6106\"* bronze|strong=\"H5154\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H6213\"* chief|strong=\"H7225\"* of|strong=\"H1870\"* the|strong=\"H6213\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* God." + }, + { + "verseNum": 20, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* produce food for|strong=\"H3588\"* him|strong=\"H3605\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H8478\"* lies|strong=\"H7901\"* under|strong=\"H8478\"* the|strong=\"H8478\"* lotus|strong=\"H6628\"* trees|strong=\"H6628\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H5437\"* lotuses cover|strong=\"H5526\"* him|strong=\"H5526\"* with|strong=\"H5526\"* their|strong=\"H5437\"* shade." + }, + { + "verseNum": 23, + "text": "Behold|strong=\"H2005\"*, if|strong=\"H3588\"* a|strong=\"H3068\"* river|strong=\"H5104\"* overflows, he|strong=\"H3588\"* doesn’t tremble|strong=\"H2648\"*." + }, + { + "verseNum": 24, + "text": "Shall|strong=\"H5869\"* any|strong=\"H3947\"* take|strong=\"H3947\"* him|strong=\"H3947\"* when he|strong=\"H3947\"* is|strong=\"H5869\"* on|strong=\"H5869\"* the|strong=\"H3947\"* watch|strong=\"H5869\"*," + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "“Can|strong=\"H4758\"* you|strong=\"H1571\"* draw out|strong=\"H2904\"* Leviathan+ 41:1 Leviathan is a name for a crocodile or similar creature.* with|strong=\"H1571\"* a|strong=\"H3068\"* fish hook," + }, + { + "verseNum": 2, + "text": "Can|strong=\"H4310\"* you|strong=\"H3588\"* put a|strong=\"H3068\"* rope into his|strong=\"H6440\"* nose," + }, + { + "verseNum": 3, + "text": "Will|strong=\"H4310\"* he|strong=\"H1931\"* make|strong=\"H7999\"* many petitions to|strong=\"H8064\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 4, + "text": "Will|strong=\"H1697\"* he|strong=\"H3808\"* make|strong=\"H2790\"* a|strong=\"H3068\"* covenant with|strong=\"H1697\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 5, + "text": "Will|strong=\"H4310\"* you|strong=\"H6440\"* play with|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H6440\"* with|strong=\"H6440\"* a|strong=\"H3068\"* bird?" + }, + { + "verseNum": 6, + "text": "Will|strong=\"H4310\"* traders barter for|strong=\"H6440\"* him|strong=\"H6440\"*?" + }, + { + "verseNum": 7, + "text": "Can you fill his|strong=\"H5462\"* skin with barbed irons," + }, + { + "verseNum": 8, + "text": "Lay your|strong=\"H3808\"* hand on|strong=\"H3808\"* him." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H3808\"*, the|strong=\"H3920\"* hope of|strong=\"H3808\"* him|strong=\"H1692\"* is|strong=\"H3808\"* in|strong=\"H3808\"* vain." + }, + { + "verseNum": 10, + "text": "None is|strong=\"H5869\"* so fierce that|strong=\"H5869\"* he dare stir him|strong=\"H5869\"* up." + }, + { + "verseNum": 11, + "text": "Who|strong=\"H1980\"* has|strong=\"H6310\"* first given to|strong=\"H1980\"* me|strong=\"H1980\"*, that|strong=\"H4422\"* I|strong=\"H1980\"* should|strong=\"H1980\"* repay him|strong=\"H4422\"*?" + }, + { + "verseNum": 12, + "text": "“I|strong=\"H3318\"* will|strong=\"H6227\"* not|strong=\"H3318\"* keep silence concerning his|strong=\"H3318\"* limbs," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H5315\"* can strip off|strong=\"H3318\"* his|strong=\"H3318\"* outer garment?" + }, + { + "verseNum": 14, + "text": "Who can open|strong=\"H6440\"* the|strong=\"H6440\"* doors of|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"*?" + }, + { + "verseNum": 15, + "text": "Strong|strong=\"H4651\"* scales are|strong=\"H1077\"* his|strong=\"H5921\"* pride," + }, + { + "verseNum": 16, + "text": "One is|strong=\"H3820\"* so|strong=\"H3644\"* near to|strong=\"H3820\"* another," + }, + { + "verseNum": 17, + "text": "They|strong=\"H7667\"* are joined to|strong=\"H1481\"* one another." + }, + { + "verseNum": 18, + "text": "His|strong=\"H6965\"* sneezing flashes out|strong=\"H6965\"* light." + }, + { + "verseNum": 19, + "text": "Out|strong=\"H2803\"* of|strong=\"H6086\"* his|strong=\"H2803\"* mouth go burning torches." + }, + { + "verseNum": 20, + "text": "Out|strong=\"H3808\"* of|strong=\"H1121\"* his|strong=\"H3808\"* nostrils a|strong=\"H3068\"* smoke goes," + }, + { + "verseNum": 21, + "text": "His|strong=\"H2803\"* breath kindles coals." + }, + { + "verseNum": 22, + "text": "There|strong=\"H8478\"* is|strong=\"H2742\"* strength in|strong=\"H5921\"* his|strong=\"H5921\"* neck." + }, + { + "verseNum": 23, + "text": "The|strong=\"H7760\"* flakes of|strong=\"H3220\"* his|strong=\"H7760\"* flesh are joined together|strong=\"H3220\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H2803\"* heart is|strong=\"H8415\"* as|strong=\"H2803\"* firm as|strong=\"H2803\"* a|strong=\"H3068\"* stone," + }, + { + "verseNum": 25, + "text": "When|strong=\"H6213\"* he|strong=\"H6213\"* raises himself|strong=\"H6213\"* up|strong=\"H5921\"*, the|strong=\"H5921\"* mighty are|strong=\"H6213\"* afraid." + }, + { + "verseNum": 26, + "text": "If|strong=\"H7200\"* one|strong=\"H3605\"* attacks him|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* sword, it|strong=\"H1931\"* can|strong=\"H7200\"*’t prevail;" + }, + { + "verseNum": 27, + "text": "He counts iron as straw," + }, + { + "verseNum": 28, + "text": "The arrow can’t make him flee." + }, + { + "verseNum": 29, + "text": "Clubs are counted as stubble." + }, + { + "verseNum": 30, + "text": "His undersides are like sharp potsherds," + }, + { + "verseNum": 31, + "text": "He makes the deep to boil like a|strong=\"H3068\"* pot." + }, + { + "verseNum": 32, + "text": "He makes a|strong=\"H3068\"* path shine after him." + }, + { + "verseNum": 33, + "text": "On earth there is not his equal," + }, + { + "verseNum": 34, + "text": "He sees everything that is high." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H6030\"* Job answered|strong=\"H6030\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* can|strong=\"H3201\"* do|strong=\"H3201\"* all|strong=\"H3605\"* things|strong=\"H3605\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3045\"* asked, ‘Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* hides|strong=\"H5956\"* counsel|strong=\"H6098\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*?’" + }, + { + "verseNum": 4, + "text": "You|strong=\"H3045\"* said|strong=\"H1696\"*, ‘Listen|strong=\"H8085\"*, now|strong=\"H4994\"*, and|strong=\"H8085\"* I|strong=\"H3045\"* will|strong=\"H8085\"* speak|strong=\"H1696\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H6258\"* had|strong=\"H5869\"* heard|strong=\"H8085\"* of|strong=\"H5869\"* you|strong=\"H7200\"* by|strong=\"H7200\"* the|strong=\"H8085\"* hearing|strong=\"H8085\"* of|strong=\"H5869\"* the|strong=\"H8085\"* ear|strong=\"H8085\"*," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* abhor|strong=\"H3988\"* myself|strong=\"H5162\"*," + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* was|strong=\"H3068\"* so|strong=\"H1961\"*, that|strong=\"H3588\"* after|strong=\"H1961\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* Job|strong=\"H3808\"*, Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Eliphaz the|strong=\"H3588\"* Temanite|strong=\"H8489\"*, “My|strong=\"H3068\"* wrath is|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* against|strong=\"H2734\"* your|strong=\"H3068\"* two|strong=\"H8147\"* friends|strong=\"H7453\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* of|strong=\"H3068\"* me|strong=\"H1696\"* the|strong=\"H3588\"* thing|strong=\"H1697\"* that|strong=\"H3588\"* is|strong=\"H3068\"* right|strong=\"H3559\"*, as|strong=\"H1697\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* has|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, take|strong=\"H3947\"* to|strong=\"H1696\"* yourselves|strong=\"H5921\"* seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3212\"* seven|strong=\"H7651\"* rams, and|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H1696\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"*, and|strong=\"H3212\"* offer|strong=\"H5927\"* up|strong=\"H5927\"* for|strong=\"H3588\"* yourselves|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*; and|strong=\"H3212\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* shall|strong=\"H5650\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* accept|strong=\"H3947\"* him|strong=\"H6440\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* not|strong=\"H3808\"* deal|strong=\"H6213\"* with|strong=\"H5973\"* you|strong=\"H3588\"* according|strong=\"H5921\"* to|strong=\"H1696\"* your|strong=\"H3947\"* folly|strong=\"H5039\"*. For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5650\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* of|strong=\"H6440\"* me|strong=\"H6440\"* the|strong=\"H6440\"* thing|strong=\"H5039\"* that|strong=\"H3588\"* is|strong=\"H5650\"* right|strong=\"H3559\"*, as|strong=\"H6213\"* my|strong=\"H3947\"* servant|strong=\"H5650\"* Job|strong=\"H3808\"* has|strong=\"H5650\"*.”" + }, + { + "verseNum": 9, + "text": "So|strong=\"H6213\"* Eliphaz the|strong=\"H6440\"* Temanite|strong=\"H8489\"* and|strong=\"H3068\"* Bildad|strong=\"H1085\"* the|strong=\"H6440\"* Shuhite|strong=\"H7747\"* and|strong=\"H3068\"* Zophar|strong=\"H6691\"* the|strong=\"H6440\"* Naamathite|strong=\"H5284\"* went|strong=\"H3212\"* and|strong=\"H3068\"* did|strong=\"H6213\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H1696\"* them|strong=\"H6440\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* accepted|strong=\"H5375\"* Job|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* restored|strong=\"H7725\"* Job’s prosperity when|strong=\"H7725\"* he|strong=\"H3068\"* prayed|strong=\"H6419\"* for|strong=\"H1157\"* his|strong=\"H3605\"* friends|strong=\"H7453\"*. Yahweh|strong=\"H3068\"* gave|strong=\"H7725\"* Job twice|strong=\"H4932\"* as|strong=\"H3068\"* much|strong=\"H4932\"* as|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* before." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5414\"* all|strong=\"H3605\"* his|strong=\"H3605\"* brothers, all|strong=\"H3605\"* his|strong=\"H3605\"* sisters, and|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* had|strong=\"H3068\"* been|strong=\"H3605\"* of|strong=\"H1004\"* his|strong=\"H3605\"* acquaintance|strong=\"H3045\"* before|strong=\"H6440\"*, came|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H5414\"* and|strong=\"H3068\"* ate bread|strong=\"H3899\"* with|strong=\"H5973\"* him|strong=\"H5414\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*. They|strong=\"H3068\"* comforted|strong=\"H5162\"* him|strong=\"H5414\"*, and|strong=\"H3068\"* consoled|strong=\"H5110\"* him|strong=\"H5414\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* brought|strong=\"H5414\"* on|strong=\"H5921\"* him|strong=\"H5414\"*. Everyone|strong=\"H3605\"* also|strong=\"H3068\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* a|strong=\"H3068\"* piece|strong=\"H7192\"* of|strong=\"H1004\"* money|strong=\"H7192\"*,+ 42:11 literally, kesitah, a unit of money, probably silver* and|strong=\"H3068\"* everyone|strong=\"H3605\"* a|strong=\"H3068\"* ring|strong=\"H5141\"* of|strong=\"H1004\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 12, + "text": "So|strong=\"H1961\"* Yahweh|strong=\"H3068\"* blessed|strong=\"H1288\"* the|strong=\"H3068\"* latter end of|strong=\"H3068\"* Job more|strong=\"H1961\"* than|strong=\"H3068\"* his|strong=\"H3068\"* beginning|strong=\"H7225\"*. He|strong=\"H3068\"* had|strong=\"H3068\"* fourteen|strong=\"H6240\"* thousand sheep|strong=\"H6629\"*, six|strong=\"H8337\"* thousand camels|strong=\"H1581\"*, one|strong=\"H1961\"* thousand yoke|strong=\"H6776\"* of|strong=\"H3068\"* oxen|strong=\"H1241\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* thousand female donkeys." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1121\"* had|strong=\"H1961\"* also|strong=\"H1121\"* seven|strong=\"H7658\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* three|strong=\"H7969\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H7121\"* called|strong=\"H7121\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* first, Jemimah|strong=\"H3224\"*; and|strong=\"H8034\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* second|strong=\"H8145\"*, Keziah|strong=\"H7103\"*; and|strong=\"H8034\"* the|strong=\"H7121\"* name|strong=\"H8034\"* of|strong=\"H8034\"* the|strong=\"H7121\"* third|strong=\"H7992\"*, Keren Happuch." + }, + { + "verseNum": 15, + "text": "In|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H5159\"* were|strong=\"H1992\"* no|strong=\"H3808\"* women|strong=\"H1323\"* found|strong=\"H4672\"* so|strong=\"H5414\"* beautiful|strong=\"H3303\"* as|strong=\"H3303\"* the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Job|strong=\"H3808\"*. Their|strong=\"H3605\"* father gave|strong=\"H5414\"* them|strong=\"H5414\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"* among|strong=\"H8432\"* their|strong=\"H3605\"* brothers." + }, + { + "verseNum": 16, + "text": "After|strong=\"H7200\"* this|strong=\"H2063\"* Job lived|strong=\"H2421\"* one|strong=\"H2421\"* hundred|strong=\"H3967\"* forty years|strong=\"H8141\"*, and|strong=\"H3967\"* saw|strong=\"H7200\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*, and|strong=\"H3967\"* his|strong=\"H7200\"* sons|strong=\"H1121\"*’ sons|strong=\"H1121\"*, to|strong=\"H1121\"* four generations|strong=\"H1755\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H4191\"* Job died|strong=\"H4191\"*, being old|strong=\"H2205\"* and|strong=\"H3117\"* full|strong=\"H3117\"* of|strong=\"H3117\"* days|strong=\"H3117\"*." + } + ] + } + ] + }, + { + "name": "Psalms", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H1870\"* the|strong=\"H1870\"* man|strong=\"H7563\"* who|strong=\"H3427\"* doesn’t walk|strong=\"H1980\"* in|strong=\"H3427\"* the|strong=\"H1870\"* counsel|strong=\"H6098\"* of|strong=\"H3427\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 2, + "text": "but|strong=\"H3588\"* his|strong=\"H3068\"* delight|strong=\"H2656\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* law|strong=\"H8451\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H3605\"* streams|strong=\"H6388\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3588\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* not|strong=\"H3808\"* so|strong=\"H3651\"*," + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* shall|strong=\"H5712\"* not|strong=\"H3808\"* stand|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* judgment|strong=\"H4941\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* the|strong=\"H4100\"* nations|strong=\"H1471\"* rage|strong=\"H7283\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth take|strong=\"H3320\"* a|strong=\"H3068\"* stand|strong=\"H3320\"*," + }, + { + "verseNum": 3, + "text": "“Let’s break|strong=\"H5423\"* their|strong=\"H7993\"* bonds|strong=\"H4147\"* apart|strong=\"H5423\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H8064\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* heavens|strong=\"H8064\"* will|strong=\"H8064\"* laugh|strong=\"H7832\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1696\"* he|strong=\"H1696\"* will speak|strong=\"H1696\"* to|strong=\"H1696\"* them in|strong=\"H1696\"* his|strong=\"H1696\"* anger|strong=\"H2740\"*," + }, + { + "verseNum": 6, + "text": "“Yet|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H4428\"* set|strong=\"H5258\"* my|strong=\"H5921\"* King|strong=\"H4428\"* on|strong=\"H5921\"* my|strong=\"H5921\"* holy|strong=\"H6944\"* hill|strong=\"H2022\"* of|strong=\"H4428\"* Zion|strong=\"H6726\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* tell|strong=\"H5608\"* of|strong=\"H1121\"* the|strong=\"H3205\"* decree|strong=\"H2706\"*:" + }, + { + "verseNum": 8, + "text": "Ask|strong=\"H7592\"* of|strong=\"H4480\"* me|strong=\"H5414\"*, and|strong=\"H1471\"* I|strong=\"H5414\"* will|strong=\"H1471\"* give|strong=\"H5414\"* the|strong=\"H5414\"* nations|strong=\"H1471\"* for|strong=\"H7592\"* your|strong=\"H5414\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7489\"* shall|strong=\"H7626\"* break|strong=\"H7489\"* them|strong=\"H1270\"* with|strong=\"H3627\"* a|strong=\"H3068\"* rod|strong=\"H7626\"* of|strong=\"H7626\"* iron|strong=\"H1270\"*." + }, + { + "verseNum": 10, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* be|strong=\"H4428\"* wise|strong=\"H7919\"*, you|strong=\"H3256\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* fear|strong=\"H3374\"*," + }, + { + "verseNum": 12, + "text": "Give sincere homage|strong=\"H5401\"* to|strong=\"H1870\"* the|strong=\"H3605\"* Son|strong=\"H1248\"*,+ 2:12 or, Kiss the son* lest|strong=\"H6435\"* he|strong=\"H3588\"* be|strong=\"H1870\"* angry, and|strong=\"H1870\"* you|strong=\"H3588\"* perish on|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*," + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, how my|strong=\"H1732\"* adversaries have|strong=\"H1121\"* increased!" + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* there|strong=\"H3068\"* are|strong=\"H4100\"* who|strong=\"H3068\"* say of|strong=\"H3068\"* my|strong=\"H3068\"* soul," + }, + { + "verseNum": 3, + "text": "But|strong=\"H7227\"* you|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H7227\"* a|strong=\"H3068\"* shield around me|strong=\"H5315\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* cry to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* my|strong=\"H3068\"* voice," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3068\"* laid myself down|strong=\"H7121\"* and|strong=\"H3068\"* slept." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3588\"* be|strong=\"H3068\"* afraid of|strong=\"H3068\"* tens of|strong=\"H3068\"* thousands of|strong=\"H3068\"* people" + }, + { + "verseNum": 7, + "text": "Arise, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 8, + "text": "Salvation|strong=\"H3467\"* belongs to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Answer me when I call, God of|strong=\"H4210\"* my|strong=\"H1732\"* righteousness." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7121\"* sons of|strong=\"H8085\"* men|strong=\"H7121\"*, how|strong=\"H8085\"* long|strong=\"H8085\"* shall|strong=\"H6664\"* my|strong=\"H8085\"* glory be|strong=\"H2603\"* turned into dishonor?" + }, + { + "verseNum": 3, + "text": "But|strong=\"H4100\"* know that|strong=\"H1121\"* Yahweh|strong=\"H3068\"* has|strong=\"H4100\"* set|strong=\"H1245\"* apart for|strong=\"H5704\"* himself|strong=\"H1245\"* him|strong=\"H1245\"* who|strong=\"H1121\"* is|strong=\"H4100\"* godly;" + }, + { + "verseNum": 4, + "text": "Stand in|strong=\"H3068\"* awe, and|strong=\"H3068\"* don’t sin." + }, + { + "verseNum": 5, + "text": "Offer the|strong=\"H5921\"* sacrifices of|strong=\"H5921\"* righteousness." + }, + { + "verseNum": 6, + "text": "Many say, “Who|strong=\"H3068\"* will|strong=\"H3068\"* show us any good?”" + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* have|strong=\"H3068\"* put|strong=\"H3068\"* gladness in|strong=\"H5921\"* my|strong=\"H3068\"* heart," + }, + { + "verseNum": 8, + "text": "In|strong=\"H5414\"* peace I|strong=\"H5414\"* will|strong=\"H3820\"* both lay|strong=\"H5414\"* myself|strong=\"H3820\"* down|strong=\"H5414\"* and|strong=\"H8057\"* sleep," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Give ear to|strong=\"H1732\"* my|strong=\"H1732\"* words, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Listen to|strong=\"H3068\"* the|strong=\"H3068\"* voice of|strong=\"H3068\"* my|strong=\"H3068\"* cry, my|strong=\"H3068\"* King and|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, in|strong=\"H4428\"* the|strong=\"H3588\"* morning you|strong=\"H3588\"* will|strong=\"H4428\"* hear|strong=\"H7181\"* my|strong=\"H3588\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3068\"* you|strong=\"H6963\"* are|strong=\"H3068\"* not|strong=\"H8085\"* a|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* pleasure in|strong=\"H3068\"* wickedness." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* arrogant will|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H1481\"* in|strong=\"H1481\"* your|strong=\"H3588\"* sight." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* will|strong=\"H5869\"* destroy|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* speak lies." + }, + { + "verseNum": 7, + "text": "But|strong=\"H1696\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H1696\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* abundance of|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness I|strong=\"H3068\"* will|strong=\"H3068\"* come into your|strong=\"H3068\"* house." + }, + { + "verseNum": 8, + "text": "Lead me|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H1004\"* your|strong=\"H1004\"* righteousness|strong=\"H2617\"* because|strong=\"H7230\"* of|strong=\"H1004\"* my|strong=\"H7230\"* enemies." + }, + { + "verseNum": 9, + "text": "For|strong=\"H6440\"* there|strong=\"H3068\"* is|strong=\"H3068\"* no|strong=\"H6440\"* faithfulness in|strong=\"H3068\"* their|strong=\"H3068\"* mouth|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Hold them|strong=\"H3588\"* guilty, God." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* let all|strong=\"H7230\"* those|strong=\"H3588\"* who|strong=\"H3588\"* take refuge in|strong=\"H5307\"* you|strong=\"H3588\"* rejoice." + }, + { + "verseNum": 12, + "text": "For|strong=\"H5921\"* you|strong=\"H3605\"* will|strong=\"H8034\"* bless the|strong=\"H3605\"* righteous." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, don’t rebuke me|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* anger," + }, + { + "verseNum": 2, + "text": "Have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H3068\"* me|strong=\"H3256\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3068\"* I|strong=\"H3068\"* am|strong=\"H3068\"* faint." + }, + { + "verseNum": 3, + "text": "My|strong=\"H3068\"* soul is|strong=\"H3068\"* also|strong=\"H3068\"* in|strong=\"H3068\"* great anguish." + }, + { + "verseNum": 4, + "text": "Return, Yahweh|strong=\"H3068\"*. Deliver my|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3068\"* in|strong=\"H3068\"* death|strong=\"H5315\"* there|strong=\"H7725\"* is|strong=\"H3068\"* no memory of|strong=\"H3068\"* you|strong=\"H7725\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* am weary with|strong=\"H7585\"* my|strong=\"H3588\"* groaning." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3605\"* eye wastes away|strong=\"H3605\"* because|strong=\"H3605\"* of|strong=\"H3605\"* grief." + }, + { + "verseNum": 8, + "text": "Depart from|strong=\"H5869\"* me|strong=\"H5869\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* workers of|strong=\"H5869\"* iniquity," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* supplication." + }, + { + "verseNum": 10, + "text": "May|strong=\"H3068\"* all|strong=\"H3947\"* my|strong=\"H8085\"* enemies be|strong=\"H3068\"* ashamed and|strong=\"H3068\"* dismayed." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*, I|strong=\"H5921\"* take refuge in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "lest they|strong=\"H3068\"* tear apart my|strong=\"H3605\"* soul like|strong=\"H3068\"* a|strong=\"H3068\"* lion," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H5337\"* God, if|strong=\"H6435\"* I|strong=\"H5315\"* have|strong=\"H5337\"* done this," + }, + { + "verseNum": 4, + "text": "if|strong=\"H3426\"* I|strong=\"H3068\"* have|strong=\"H3426\"* rewarded evil|strong=\"H6213\"* to|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* was|strong=\"H3068\"* at|strong=\"H3068\"* peace|strong=\"H6213\"* with|strong=\"H3068\"* me|strong=\"H6213\"*" + }, + { + "verseNum": 5, + "text": "let the|strong=\"H7999\"* enemy|strong=\"H6887\"* pursue my|strong=\"H7999\"* soul, and|strong=\"H7451\"* overtake it|strong=\"H7999\"*;" + }, + { + "verseNum": 6, + "text": "Arise, Yahweh|strong=\"H3068\"*, in|strong=\"H7931\"* your|strong=\"H7291\"* anger." + }, + { + "verseNum": 7, + "text": "Let the|strong=\"H5375\"* congregation of|strong=\"H3068\"* the|strong=\"H5375\"* peoples surround you|strong=\"H6680\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* administers judgment to|strong=\"H7725\"* the|strong=\"H5921\"* peoples|strong=\"H3816\"*." + }, + { + "verseNum": 9, + "text": "Oh let the|strong=\"H5921\"* wickedness of|strong=\"H3068\"* the|strong=\"H5921\"* wicked come|strong=\"H5971\"* to|strong=\"H3068\"* an|strong=\"H3068\"* end," + }, + { + "verseNum": 10, + "text": "My|strong=\"H3559\"* shield is|strong=\"H7563\"* with|strong=\"H6662\"* God," + }, + { + "verseNum": 11, + "text": "God is|strong=\"H3820\"* a|strong=\"H3068\"* righteous|strong=\"H3477\"* judge," + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* man|strong=\"H6662\"* doesn’t repent, he|strong=\"H3117\"* will|strong=\"H6662\"* sharpen his|strong=\"H3605\"* sword;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* has|strong=\"H2719\"* also prepared|strong=\"H3559\"* for|strong=\"H3559\"* himself|strong=\"H3808\"* the|strong=\"H7725\"* instruments of|strong=\"H2719\"* death." + }, + { + "verseNum": 14, + "text": "Behold,+ 7:14 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* he|strong=\"H4194\"* travails with|strong=\"H3627\"* iniquity." + }, + { + "verseNum": 15, + "text": "He|strong=\"H2009\"* has|strong=\"H2009\"* dug a|strong=\"H3068\"* hole," + }, + { + "verseNum": 16, + "text": "The|strong=\"H5307\"* trouble he causes shall|strong=\"H7845\"* return to|strong=\"H5307\"* his|strong=\"H6466\"* own head|strong=\"H5307\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H7725\"* give|strong=\"H7725\"* thanks to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* according|strong=\"H5921\"* to|strong=\"H7725\"* his|strong=\"H7725\"* righteousness," + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, our|strong=\"H5921\"* Lord, how majestic is|strong=\"H1732\"* your|strong=\"H5921\"* name in|strong=\"H5921\"* all|strong=\"H5921\"* the|strong=\"H5921\"* earth!" + }, + { + "verseNum": 2, + "text": "From|strong=\"H5921\"* the|strong=\"H3605\"* lips of|strong=\"H3068\"* babes and|strong=\"H3068\"* infants you|strong=\"H5414\"* have|strong=\"H3068\"* established|strong=\"H5414\"* strength," + }, + { + "verseNum": 3, + "text": "When|strong=\"H6310\"* I consider your|strong=\"H7673\"* heavens, the|strong=\"H3245\"* work|strong=\"H3245\"* of|strong=\"H6310\"* your|strong=\"H7673\"* fingers," + }, + { + "verseNum": 4, + "text": "what|strong=\"H4639\"* is|strong=\"H4639\"* man|strong=\"H7200\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* think|strong=\"H7200\"* of|strong=\"H4639\"* him|strong=\"H7200\"*?" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1121\"* made|strong=\"H6485\"* him|strong=\"H6485\"* a|strong=\"H3068\"* little lower than|strong=\"H3588\"* the|strong=\"H3588\"* angels,+ 8:5 Hebrew: Elohim. The word Elohim, used here, usually means “God”, but can also mean “gods”, “princes”, or “angels”. The Septuagint reads “angels” here. See also the quote from the Septuagint in Hebrews 2:7.*" + }, + { + "verseNum": 6, + "text": "You|strong=\"H1926\"* make him|strong=\"H5849\"* ruler over the|strong=\"H3519\"* works of|strong=\"H3519\"* your hands." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* sheep and|strong=\"H3027\"* cattle," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3605\"* birds of|strong=\"H7704\"* the|strong=\"H3605\"* sky, the|strong=\"H3605\"* fish of|strong=\"H7704\"* the|strong=\"H3605\"* sea," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*, our|strong=\"H5674\"* Lord," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I will give thanks to|strong=\"H1732\"* Yahweh|strong=\"H3068\"* with|strong=\"H1732\"* my|strong=\"H1732\"* whole heart." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad and|strong=\"H3068\"* rejoice in|strong=\"H3068\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "When my|strong=\"H8034\"* enemies turn back," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6440\"* you|strong=\"H6440\"* have maintained my|strong=\"H7725\"* just cause|strong=\"H7725\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* rebuked the|strong=\"H3588\"* nations." + }, + { + "verseNum": 6, + "text": "The|strong=\"H8034\"* enemy is|strong=\"H8034\"* overtaken by|strong=\"H8034\"* endless ruin." + }, + { + "verseNum": 7, + "text": "But|strong=\"H1992\"* Yahweh|strong=\"H3068\"* reigns forever|strong=\"H5331\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H4941\"* the|strong=\"H3068\"* world|strong=\"H5769\"* in|strong=\"H3427\"* righteousness." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H1931\"* also|strong=\"H1931\"* be|strong=\"H3816\"* a|strong=\"H3068\"* high tower for|strong=\"H8199\"* the|strong=\"H8199\"* oppressed;" + }, + { + "verseNum": 10, + "text": "Those|strong=\"H1961\"* who|strong=\"H3068\"* know your|strong=\"H3068\"* name will|strong=\"H3068\"* put|strong=\"H3068\"* their|strong=\"H3068\"* trust in|strong=\"H3068\"* you|strong=\"H6256\"*," + }, + { + "verseNum": 11, + "text": "Sing praises|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* dwells in|strong=\"H3068\"* Zion," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3427\"* he|strong=\"H3068\"* who|strong=\"H5971\"* avenges blood remembers them|strong=\"H5046\"*." + }, + { + "verseNum": 13, + "text": "Have|strong=\"H3588\"* mercy on|strong=\"H3808\"* me|strong=\"H7911\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H3068\"* show|strong=\"H7200\"* all|strong=\"H7200\"* of|strong=\"H3068\"* your|strong=\"H3068\"* praise|strong=\"H7311\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* nations have|strong=\"H1323\"* sunk down in|strong=\"H8416\"* the|strong=\"H3605\"* pit that|strong=\"H3605\"* they|strong=\"H3605\"* made|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H1471\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* known." + }, + { + "verseNum": 17, + "text": "The|strong=\"H6213\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H3068\"* back|strong=\"H3045\"* to|strong=\"H3068\"* Sheol,+ 9:17 Sheol is the place of the dead.*" + }, + { + "verseNum": 18, + "text": "For|strong=\"H3605\"* the|strong=\"H3605\"* needy shall|strong=\"H1471\"* not|strong=\"H7725\"* always|strong=\"H3605\"* be|strong=\"H1471\"* forgotten," + }, + { + "verseNum": 19, + "text": "Arise, Yahweh|strong=\"H3068\"*! Don’t let|strong=\"H3808\"* man prevail." + }, + { + "verseNum": 20, + "text": "Put|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* fear|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* stand|strong=\"H5975\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 2, + "text": "In|strong=\"H6041\"* arrogance|strong=\"H1346\"*, the|strong=\"H8610\"* wicked|strong=\"H7563\"* hunt down the|strong=\"H8610\"* weak." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* boasts|strong=\"H1984\"* of|strong=\"H3068\"* his|strong=\"H3068\"* heart|strong=\"H5315\"*’s cravings." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* wicked|strong=\"H7563\"*, in|strong=\"H3605\"* the|strong=\"H3605\"* pride|strong=\"H1363\"* of|strong=\"H3605\"* his|strong=\"H3605\"* face," + }, + { + "verseNum": 5, + "text": "His|strong=\"H3605\"* ways|strong=\"H1870\"* are|strong=\"H1870\"* prosperous at|strong=\"H4941\"* all|strong=\"H3605\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3808\"* says in|strong=\"H3808\"* his|strong=\"H3808\"* heart|strong=\"H3820\"*, “I|strong=\"H3808\"* shall|strong=\"H3820\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shaken|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "His|strong=\"H4390\"* mouth|strong=\"H6310\"* is|strong=\"H6310\"* full|strong=\"H4390\"* of|strong=\"H4390\"* cursing, deceit|strong=\"H4820\"*, and|strong=\"H6310\"* oppression|strong=\"H8496\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H4565\"* lies in|strong=\"H3427\"* wait|strong=\"H3427\"* near the|strong=\"H2026\"* villages|strong=\"H2691\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4565\"* lurks in|strong=\"H6041\"* secret|strong=\"H4565\"* as|strong=\"H4565\"* a|strong=\"H3068\"* lion in|strong=\"H6041\"* his|strong=\"H4900\"* ambush." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5307\"* helpless are|strong=\"H6099\"* crushed|strong=\"H1794\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H6440\"* says in|strong=\"H6440\"* his|strong=\"H6440\"* heart|strong=\"H3820\"*, “God has|strong=\"H3820\"* forgotten|strong=\"H7911\"*." + }, + { + "verseNum": 12, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* person|strong=\"H3820\"* condemn God|strong=\"H3808\"*," + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H5826\"* see|strong=\"H7200\"* trouble|strong=\"H5999\"* and|strong=\"H3027\"* grief|strong=\"H3708\"*." + }, + { + "verseNum": 15, + "text": "Break|strong=\"H7665\"* the|strong=\"H7665\"* arm|strong=\"H2220\"* of|strong=\"H1875\"* the|strong=\"H7665\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* King|strong=\"H4428\"* forever|strong=\"H5769\"* and|strong=\"H3068\"* ever|strong=\"H5769\"*!" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3559\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* desire|strong=\"H8378\"* of|strong=\"H3068\"* the|strong=\"H8085\"* humble|strong=\"H6035\"*." + }, + { + "verseNum": 18, + "text": "to|strong=\"H3254\"* judge|strong=\"H8199\"* the|strong=\"H4480\"* fatherless|strong=\"H3490\"* and|strong=\"H3254\"* the|strong=\"H4480\"* oppressed|strong=\"H1790\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, I|strong=\"H5315\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H5921\"* wicked|strong=\"H7563\"* bend|strong=\"H1869\"* their|strong=\"H5921\"* bows|strong=\"H7198\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H3588\"* the|strong=\"H3588\"* foundations|strong=\"H8356\"* are|strong=\"H4100\"* destroyed|strong=\"H2040\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* examines the|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* he|strong=\"H5921\"* will|strong=\"H7563\"* rain|strong=\"H4305\"* blazing coals;" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Help, Yahweh|strong=\"H3068\"*; for|strong=\"H5921\"* the|strong=\"H5921\"* godly man ceases." + }, + { + "verseNum": 2, + "text": "Everyone lies to|strong=\"H3068\"* his|strong=\"H3068\"* neighbor." + }, + { + "verseNum": 3, + "text": "May|strong=\"H3820\"* Yahweh|strong=\"H3068\"* cut off|strong=\"H7453\"* all flattering|strong=\"H2513\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H3605\"* have|strong=\"H3068\"* said|strong=\"H1696\"*, “With|strong=\"H3068\"* our|strong=\"H3068\"* tongue|strong=\"H3956\"* we|strong=\"H3068\"* will|strong=\"H3068\"* prevail." + }, + { + "verseNum": 5, + "text": "“Because of|strong=\"H8193\"* the|strong=\"H1396\"* oppression of|strong=\"H8193\"* the|strong=\"H1396\"* weak and|strong=\"H8193\"* because of|strong=\"H8193\"* the|strong=\"H1396\"* groaning of|strong=\"H8193\"* the|strong=\"H1396\"* needy," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s words are|strong=\"H3068\"* flawless words," + }, + { + "verseNum": 7, + "text": "You will|strong=\"H3068\"* keep them|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8104\"* wicked walk on|strong=\"H3068\"* every|strong=\"H1755\"* side," + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "How long, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 2, + "text": "How|strong=\"H5704\"* long|strong=\"H5704\"* shall|strong=\"H3068\"* I|strong=\"H5704\"* take counsel in|strong=\"H3068\"* my|strong=\"H3068\"* soul," + }, + { + "verseNum": 3, + "text": "Behold, and|strong=\"H3119\"* answer me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H5921\"* God." + }, + { + "verseNum": 4, + "text": "lest|strong=\"H6435\"* my|strong=\"H3068\"* enemy say, “I|strong=\"H3068\"* have|strong=\"H3068\"* prevailed against|strong=\"H3068\"* him|strong=\"H6030\"*;”" + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* trust in|strong=\"H1523\"* your|strong=\"H3588\"* loving kindness." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6213\"* fool|strong=\"H5036\"* has|strong=\"H3820\"* said in|strong=\"H6213\"* his|strong=\"H1732\"* heart|strong=\"H3820\"*, “There is|strong=\"H3820\"* no|strong=\"H6213\"* God.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* looked|strong=\"H7200\"* down|strong=\"H8259\"* from|strong=\"H5921\"* heaven|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H6213\"* have|strong=\"H1571\"* all|strong=\"H3605\"* gone|strong=\"H5493\"* aside|strong=\"H5493\"*." + }, + { + "verseNum": 4, + "text": "Have|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* workers|strong=\"H6466\"* of|strong=\"H3068\"* iniquity no|strong=\"H3808\"* knowledge|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "There|strong=\"H8033\"* they|strong=\"H3588\"* were|strong=\"H6343\"* in|strong=\"H8033\"* great|strong=\"H6343\"* fear|strong=\"H6343\"*," + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* frustrate the|strong=\"H3588\"* plan|strong=\"H6098\"* of|strong=\"H3068\"* the|strong=\"H3588\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 7, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5971\"* the|strong=\"H5414\"* salvation|strong=\"H3444\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* would|strong=\"H4310\"* come|strong=\"H7725\"* out|strong=\"H5414\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*!" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* shall|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* your|strong=\"H3068\"* sanctuary|strong=\"H6944\"*?" + }, + { + "verseNum": 2, + "text": "He|strong=\"H1980\"* who|strong=\"H6664\"* walks|strong=\"H1980\"* blamelessly|strong=\"H8549\"* and|strong=\"H1980\"* does|strong=\"H6466\"* what|strong=\"H6664\"* is|strong=\"H6664\"* right|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "he|strong=\"H6213\"* who|strong=\"H7138\"* doesn’t slander|strong=\"H7270\"* with|strong=\"H6213\"* his|strong=\"H5375\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 4, + "text": "in|strong=\"H3068\"* whose eyes|strong=\"H5869\"* a|strong=\"H3068\"* vile man is|strong=\"H3068\"* despised|strong=\"H3988\"*," + }, + { + "verseNum": 5, + "text": "he|strong=\"H6213\"* who|strong=\"H6213\"* doesn’t lend|strong=\"H5414\"* out|strong=\"H5414\"* his|strong=\"H5414\"* money|strong=\"H3701\"* for|strong=\"H5921\"* usury|strong=\"H5392\"*," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Preserve|strong=\"H8104\"* me|strong=\"H8104\"*, God, for|strong=\"H3588\"* I|strong=\"H3588\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H1732\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* soul, you|strong=\"H5921\"* have|strong=\"H3068\"* said to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “You|strong=\"H5921\"* are|strong=\"H3068\"* my|strong=\"H3068\"* Lord|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H1992\"* for|strong=\"H3605\"* the|strong=\"H3605\"* saints|strong=\"H6918\"* who|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H2656\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H5375\"* sorrows|strong=\"H6094\"* shall|strong=\"H8193\"* be|strong=\"H8034\"* multiplied|strong=\"H7235\"* who give|strong=\"H7235\"* gifts to|strong=\"H5921\"* another|strong=\"H1818\"* god." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* assigned my|strong=\"H3068\"* portion|strong=\"H2506\"* and|strong=\"H3068\"* my|strong=\"H3068\"* cup|strong=\"H3563\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* lines|strong=\"H2256\"* have|strong=\"H5307\"* fallen|strong=\"H5307\"* to|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* pleasant|strong=\"H5273\"* places." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H3289\"* me|strong=\"H1288\"* counsel|strong=\"H3289\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7737\"* Yahweh|strong=\"H3068\"* always|strong=\"H8548\"* before|strong=\"H5048\"* me|strong=\"H5048\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3651\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* glad|strong=\"H8055\"*, and|strong=\"H3820\"* my|strong=\"H3651\"* tongue rejoices|strong=\"H8055\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5315\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* my|strong=\"H5414\"* soul|strong=\"H5315\"* in|strong=\"H5315\"* Sheol|strong=\"H7585\"*,+ 16:10 Sheol is the place of the dead.*" + }, + { + "verseNum": 11, + "text": "You|strong=\"H6440\"* will|strong=\"H3225\"* show|strong=\"H3045\"* me|strong=\"H6440\"* the|strong=\"H6440\"* path of|strong=\"H6440\"* life|strong=\"H2416\"*." + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H8085\"* righteous|strong=\"H6664\"* plea." + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3318\"* sentence|strong=\"H4941\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6440\"* your|strong=\"H6440\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H6485\"* have|strong=\"H4672\"* proved|strong=\"H6884\"* my|strong=\"H5674\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H1697\"* for|strong=\"H1697\"* the|strong=\"H8104\"* deeds|strong=\"H1697\"* of|strong=\"H1697\"* men, by|strong=\"H8193\"* the|strong=\"H8104\"* word|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H8104\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 5, + "text": "My|strong=\"H8551\"* steps|strong=\"H6471\"* have held|strong=\"H8551\"* fast|strong=\"H8551\"* to|strong=\"H4131\"* your paths|strong=\"H4570\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* called|strong=\"H7121\"* on|strong=\"H7121\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H8085\"* answer|strong=\"H6030\"* me|strong=\"H7121\"*, God." + }, + { + "verseNum": 7, + "text": "Show|strong=\"H6395\"* your|strong=\"H6965\"* marvelous loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 8, + "text": "Keep|strong=\"H8104\"* me|strong=\"H8104\"* as|strong=\"H5869\"* the|strong=\"H8104\"* apple|strong=\"H1323\"* of|strong=\"H1323\"* your|strong=\"H8104\"* eye|strong=\"H5869\"*." + }, + { + "verseNum": 9, + "text": "from|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* who|strong=\"H5315\"* oppress|strong=\"H7703\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H6310\"* close|strong=\"H5462\"* up|strong=\"H5462\"* their|strong=\"H5462\"* callous hearts." + }, + { + "verseNum": 11, + "text": "They|strong=\"H6258\"* have|strong=\"H5869\"* now|strong=\"H6258\"* surrounded|strong=\"H5437\"* us|strong=\"H5869\"* in|strong=\"H5869\"* our|strong=\"H7896\"* steps." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3427\"* is|strong=\"H3427\"* like|strong=\"H1825\"* a|strong=\"H3068\"* lion|strong=\"H3715\"* that|strong=\"H3427\"* is|strong=\"H3427\"* greedy|strong=\"H3700\"* of|strong=\"H3427\"* his|strong=\"H3427\"* prey|strong=\"H2963\"*," + }, + { + "verseNum": 13, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, confront|strong=\"H6923\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "from|strong=\"H3027\"* men|strong=\"H1121\"* by|strong=\"H3027\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H6440\"* shall|strong=\"H6440\"* see|strong=\"H2372\"* your|strong=\"H6440\"* face|strong=\"H6440\"* in|strong=\"H6440\"* righteousness|strong=\"H6664\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3117\"* love you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* strength|strong=\"H3027\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* rock, my|strong=\"H3068\"* fortress, and|strong=\"H3068\"* my|strong=\"H3068\"* deliverer;" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3068\"* call on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* worthy to|strong=\"H3068\"* be|strong=\"H3068\"* praised;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* cords of|strong=\"H3068\"* death surrounded me|strong=\"H7121\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4194\"* cords|strong=\"H2256\"* of|strong=\"H5158\"* Sheol+ 18:5 Sheol is the place of the dead.* were|strong=\"H4194\"* around me." + }, + { + "verseNum": 6, + "text": "In|strong=\"H7585\"* my|strong=\"H5437\"* distress I|strong=\"H4194\"* called on|strong=\"H4194\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Then|strong=\"H8085\"* the|strong=\"H6440\"* earth shook and|strong=\"H3068\"* trembled." + }, + { + "verseNum": 8, + "text": "Smoke went out|strong=\"H7264\"* of|strong=\"H2022\"* his|strong=\"H3588\"* nostrils." + }, + { + "verseNum": 9, + "text": "He|strong=\"H4480\"* bowed the|strong=\"H4480\"* heavens also, and|strong=\"H5927\"* came|strong=\"H5927\"* down." + }, + { + "verseNum": 10, + "text": "He|strong=\"H7272\"* rode on|strong=\"H8478\"* a|strong=\"H3068\"* cherub, and|strong=\"H8064\"* flew." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5921\"* made|strong=\"H7307\"* darkness his|strong=\"H5921\"* hiding place, his|strong=\"H5921\"* pavilion around|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "At|strong=\"H4325\"* the|strong=\"H5439\"* brightness before him|strong=\"H7896\"* his|strong=\"H7896\"* thick|strong=\"H5645\"* clouds|strong=\"H5645\"* passed|strong=\"H4325\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H1259\"* thundered in|strong=\"H5674\"* the|strong=\"H5674\"* sky." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3068\"* sent|strong=\"H5414\"* out|strong=\"H5414\"* his|strong=\"H5414\"* arrows, and|strong=\"H3068\"* scattered them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7971\"* the|strong=\"H7971\"* channels of|strong=\"H2671\"* waters appeared." + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* sent|strong=\"H1540\"* from|strong=\"H1540\"* on|strong=\"H7200\"* high." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* delivered|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7971\"* my|strong=\"H3947\"* strong enemy," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* came|strong=\"H5794\"* on|strong=\"H4480\"* me|strong=\"H8130\"* in|strong=\"H4480\"* the|strong=\"H3588\"* day of|strong=\"H4480\"* my|strong=\"H5337\"* calamity," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3117\"* brought|strong=\"H1961\"* me|strong=\"H1961\"* out also|strong=\"H3068\"* into|strong=\"H1961\"* a|strong=\"H3068\"* large place|strong=\"H1961\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3588\"* rewarded me|strong=\"H3318\"* according to|strong=\"H3318\"* my|strong=\"H3318\"* righteousness." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3027\"* I|strong=\"H3027\"* have|strong=\"H3068\"* kept the|strong=\"H3068\"* ways of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* all|strong=\"H3068\"* his|strong=\"H8104\"* ordinances were|strong=\"H1870\"* before|strong=\"H3808\"* me|strong=\"H8104\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* was|strong=\"H3605\"* also|strong=\"H3588\"* blameless with|strong=\"H4941\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H1961\"* rewarded me|strong=\"H5973\"* according to|strong=\"H1961\"* my|strong=\"H8104\"* righteousness," + }, + { + "verseNum": 25, + "text": "With|strong=\"H3068\"* the|strong=\"H3068\"* merciful you|strong=\"H7725\"* will|strong=\"H3068\"* show yourself merciful." + }, + { + "verseNum": 26, + "text": "With|strong=\"H5973\"* the|strong=\"H5973\"* pure, you|strong=\"H5973\"* will|strong=\"H8549\"* show|strong=\"H8552\"* yourself|strong=\"H2616\"* pure." + }, + { + "verseNum": 27, + "text": "For|strong=\"H5973\"* you|strong=\"H5973\"* will save the|strong=\"H5973\"* afflicted people," + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H5971\"* light my|strong=\"H7311\"* lamp, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* by|strong=\"H3068\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* advance through|strong=\"H3588\"* a|strong=\"H3068\"* troop." + }, + { + "verseNum": 30, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* God, his|strong=\"H3588\"* way is|strong=\"H3588\"* perfect." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3068\"* who|strong=\"H3605\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, except Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 32, + "text": "the|strong=\"H3588\"* God|strong=\"H3068\"* who|strong=\"H4310\"* arms me|strong=\"H1107\"* with|strong=\"H3068\"* strength|strong=\"H6697\"*, and|strong=\"H3068\"* makes|strong=\"H3068\"* my|strong=\"H3068\"* way perfect?" + }, + { + "verseNum": 33, + "text": "He|strong=\"H5414\"* makes|strong=\"H5414\"* my|strong=\"H5414\"* feet like|strong=\"H1870\"* deer’s feet," + }, + { + "verseNum": 34, + "text": "He|strong=\"H5921\"* teaches my|strong=\"H5921\"* hands to|strong=\"H5921\"* war," + }, + { + "verseNum": 35, + "text": "You|strong=\"H3925\"* have|strong=\"H3027\"* also|strong=\"H3027\"* given|strong=\"H3027\"* me|strong=\"H3925\"* the|strong=\"H3027\"* shield of|strong=\"H3027\"* your|strong=\"H3027\"* salvation." + }, + { + "verseNum": 36, + "text": "You|strong=\"H5414\"* have|strong=\"H5414\"* enlarged my|strong=\"H5414\"* steps under|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* pursue my|strong=\"H8478\"* enemies, and|strong=\"H8478\"* overtake them|strong=\"H8478\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5704\"* will|strong=\"H3808\"* strike them|strong=\"H7725\"* through, so|strong=\"H3808\"* that|strong=\"H5704\"* they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H5381\"* to|strong=\"H5704\"* rise." + }, + { + "verseNum": 39, + "text": "For|strong=\"H8478\"* you|strong=\"H3808\"* have|strong=\"H7272\"* armed me|strong=\"H3808\"* with|strong=\"H6965\"* strength to|strong=\"H3201\"* the|strong=\"H8478\"* battle." + }, + { + "verseNum": 40, + "text": "You|strong=\"H8478\"* have|strong=\"H2428\"* also made my|strong=\"H6965\"* enemies|strong=\"H6965\"* turn their|strong=\"H8478\"* backs to|strong=\"H6965\"* me|strong=\"H3766\"*," + }, + { + "verseNum": 41, + "text": "They|strong=\"H5414\"* cried|strong=\"H5414\"*, but there was|strong=\"H5414\"* no|strong=\"H5414\"* one to|strong=\"H5414\"* save;" + }, + { + "verseNum": 42, + "text": "Then|strong=\"H6030\"* I|strong=\"H5921\"* beat them|strong=\"H5921\"* small as|strong=\"H3068\"* the|strong=\"H5921\"* dust before|strong=\"H5921\"* the|strong=\"H5921\"* wind." + }, + { + "verseNum": 43, + "text": "You|strong=\"H6440\"* have|strong=\"H5921\"* delivered me|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* strivings of|strong=\"H6440\"* the|strong=\"H6440\"* people." + }, + { + "verseNum": 44, + "text": "As|strong=\"H5971\"* soon as|strong=\"H5971\"* they|strong=\"H3808\"* hear of|strong=\"H7218\"* me|strong=\"H7760\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* obey|strong=\"H3045\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 45, + "text": "The|strong=\"H8085\"* foreigners|strong=\"H1121\"* shall|strong=\"H1121\"* fade away," + }, + { + "verseNum": 46, + "text": "Yahweh|strong=\"H3068\"* lives! Blessed be|strong=\"H1121\"* my rock." + }, + { + "verseNum": 47, + "text": "even|strong=\"H3068\"* the|strong=\"H3068\"* God|strong=\"H3068\"* who|strong=\"H3068\"* executes vengeance for|strong=\"H3068\"* me|strong=\"H7311\"*," + }, + { + "verseNum": 48, + "text": "He|strong=\"H5414\"* rescues me|strong=\"H5414\"* from|strong=\"H8478\"* my|strong=\"H5414\"* enemies." + }, + { + "verseNum": 49, + "text": "Therefore I|strong=\"H6965\"* will|strong=\"H2555\"* give|strong=\"H7311\"* thanks to|strong=\"H6965\"* you|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*, among|strong=\"H4480\"* the|strong=\"H4480\"* nations," + }, + { + "verseNum": 50, + "text": "He|strong=\"H3651\"* gives great deliverance to|strong=\"H3068\"* his|strong=\"H3068\"* king|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* heavens declare the|strong=\"H1732\"* glory of|strong=\"H4210\"* God." + }, + { + "verseNum": 2, + "text": "Day after day they|strong=\"H3027\"* pour out|strong=\"H3027\"* speech," + }, + { + "verseNum": 3, + "text": "There|strong=\"H3117\"* is|strong=\"H3117\"* no speech nor|strong=\"H3117\"* language" + }, + { + "verseNum": 4, + "text": "Their|strong=\"H8085\"* voice|strong=\"H6963\"* has|strong=\"H1697\"* gone out through|strong=\"H6963\"* all|strong=\"H1697\"* the|strong=\"H8085\"* earth," + }, + { + "verseNum": 5, + "text": "which|strong=\"H3605\"* is|strong=\"H3605\"* as|strong=\"H3318\"* a|strong=\"H3068\"* bridegroom coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3605\"* his|strong=\"H3605\"* room," + }, + { + "verseNum": 6, + "text": "His|strong=\"H3318\"* going|strong=\"H3318\"* out|strong=\"H3318\"* is|strong=\"H1931\"* from|strong=\"H3318\"* the|strong=\"H3318\"* end|strong=\"H3318\"* of|strong=\"H1368\"* the|strong=\"H3318\"* heavens," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s law is|strong=\"H4161\"* perfect, restoring the|strong=\"H5921\"* soul." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s precepts are|strong=\"H3068\"* right|strong=\"H3068\"*, rejoicing the|strong=\"H3068\"* heart|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* fear of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* clean|strong=\"H1249\"*, enduring forever." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3068\"* are|strong=\"H3068\"* more to|strong=\"H3068\"* be|strong=\"H3068\"* desired than|strong=\"H3068\"* gold, yes, than|strong=\"H3068\"* much fine gold," + }, + { + "verseNum": 11, + "text": "Moreover your|strong=\"H2530\"* servant is|strong=\"H2091\"* warned by|strong=\"H2091\"* them." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H5650\"* can|strong=\"H5650\"* discern his|strong=\"H8104\"* errors?" + }, + { + "verseNum": 13, + "text": "Keep back your|strong=\"H5641\"* servant also from|strong=\"H5352\"* presumptuous sins." + }, + { + "verseNum": 14, + "text": "Let the|strong=\"H1571\"* words of|strong=\"H5650\"* my|strong=\"H5650\"* mouth and|strong=\"H5650\"* the|strong=\"H1571\"* meditation of|strong=\"H5650\"* my|strong=\"H5650\"* heart" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "May|strong=\"H1732\"* Yahweh|strong=\"H3068\"* answer you in|strong=\"H1732\"* the|strong=\"H1732\"* day of|strong=\"H4210\"* trouble." + }, + { + "verseNum": 2, + "text": "send you|strong=\"H3117\"* help|strong=\"H6030\"* from|strong=\"H3117\"* the|strong=\"H3068\"* sanctuary," + }, + { + "verseNum": 3, + "text": "remember all|strong=\"H7971\"* your|strong=\"H7971\"* offerings," + }, + { + "verseNum": 4, + "text": "May|strong=\"H2142\"* he|strong=\"H3605\"* grant you|strong=\"H3605\"* your|strong=\"H3605\"* heart’s desire," + }, + { + "verseNum": 5, + "text": "We|strong=\"H3605\"* will|strong=\"H5414\"* triumph in|strong=\"H5414\"* your|strong=\"H3605\"* salvation." + }, + { + "verseNum": 6, + "text": "Now I|strong=\"H3068\"* know that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* saves his|strong=\"H3605\"* anointed." + }, + { + "verseNum": 7, + "text": "Some trust in|strong=\"H3068\"* chariots, and|strong=\"H3068\"* some in|strong=\"H3068\"* horses," + }, + { + "verseNum": 8, + "text": "They|strong=\"H3068\"* are|strong=\"H3068\"* bowed down and|strong=\"H3068\"* fallen," + }, + { + "verseNum": 9, + "text": "Save, Yahweh|strong=\"H3068\"*!" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* king rejoices in|strong=\"H1732\"* your|strong=\"H1732\"* strength, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "You|strong=\"H4100\"* have|strong=\"H3068\"* given|strong=\"H8055\"* him|strong=\"H8055\"* his|strong=\"H3068\"* heart’s desire," + }, + { + "verseNum": 3, + "text": "For|strong=\"H5414\"* you|strong=\"H5414\"* meet him|strong=\"H5414\"* with|strong=\"H3820\"* the|strong=\"H5414\"* blessings of|strong=\"H3820\"* goodness." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* asked life of|strong=\"H7218\"* you|strong=\"H3588\"* and|strong=\"H7218\"* you|strong=\"H3588\"* gave it|strong=\"H3588\"* to|strong=\"H2896\"* him|strong=\"H7896\"*," + }, + { + "verseNum": 5, + "text": "His|strong=\"H5414\"* glory is|strong=\"H3117\"* great in|strong=\"H3117\"* your|strong=\"H5414\"* salvation." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* make|strong=\"H7737\"* him|strong=\"H5921\"* most blessed forever." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* king|strong=\"H6440\"* trusts in|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3068\"* hand will|strong=\"H3068\"* find out all|strong=\"H3068\"* of|strong=\"H4428\"* your|strong=\"H3068\"* enemies." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* will|strong=\"H3027\"* make|strong=\"H3027\"* them|strong=\"H3027\"* as|strong=\"H3605\"* a|strong=\"H3068\"* fiery furnace in|strong=\"H4672\"* the|strong=\"H3605\"* time of|strong=\"H3027\"* your|strong=\"H3605\"* anger." + }, + { + "verseNum": 10, + "text": "You|strong=\"H6440\"* will|strong=\"H3068\"* destroy|strong=\"H1104\"* their|strong=\"H3068\"* descendants from|strong=\"H6440\"* the|strong=\"H6440\"* earth," + }, + { + "verseNum": 11, + "text": "For|strong=\"H1121\"* they intended evil against you|strong=\"H2233\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H7451\"* make|strong=\"H2803\"* them|strong=\"H5921\"* turn|strong=\"H5186\"* their|strong=\"H5921\"* back|strong=\"H5186\"*," + }, + { + "verseNum": 13, + "text": "Be|strong=\"H6440\"* exalted, Yahweh|strong=\"H3068\"*, in|strong=\"H5921\"* your|strong=\"H5921\"* strength," + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* God, my|strong=\"H1732\"* God, why|strong=\"H5921\"* have|strong=\"H1732\"* you|strong=\"H5921\"* forsaken me|strong=\"H5921\"*?" + }, + { + "verseNum": 2, + "text": "My|strong=\"H5800\"* God, I|strong=\"H1697\"* cry in|strong=\"H1697\"* the|strong=\"H1697\"* daytime, but|strong=\"H5800\"* you|strong=\"H4100\"* don’t answer|strong=\"H1697\"*;" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3808\"* you|strong=\"H3808\"* are|strong=\"H3915\"* holy," + }, + { + "verseNum": 4, + "text": "Our|strong=\"H3478\"* fathers trusted in|strong=\"H3427\"* you|strong=\"H8416\"*." + }, + { + "verseNum": 5, + "text": "They cried to you, and were delivered|strong=\"H6403\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* am a|strong=\"H3068\"* worm, and|strong=\"H2199\"* no|strong=\"H3808\"* man;" + }, + { + "verseNum": 7, + "text": "All those who|strong=\"H5971\"* see me|strong=\"H2781\"* mock me|strong=\"H2781\"*." + }, + { + "verseNum": 8, + "text": "“He|strong=\"H3605\"* trusts in|strong=\"H7200\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* brought|strong=\"H3068\"* me|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3588\"* womb." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* was thrown on|strong=\"H5921\"* you|strong=\"H3588\"* from|strong=\"H5921\"* my|strong=\"H5921\"* mother’s womb." + }, + { + "verseNum": 11, + "text": "Don’t be far|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*, for|strong=\"H5921\"* trouble is near|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Many bulls have|strong=\"H3588\"* surrounded me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "They open their|strong=\"H5437\"* mouths wide against me|strong=\"H5437\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* am poured out|strong=\"H5921\"* like|strong=\"H5921\"* water." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3605\"* strength|strong=\"H6106\"* is|strong=\"H3820\"* dried up|strong=\"H8210\"* like|strong=\"H1961\"* a|strong=\"H3068\"* potsherd." + }, + { + "verseNum": 16, + "text": "For|strong=\"H6083\"* dogs have|strong=\"H4194\"* surrounded me|strong=\"H8239\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* can count all|strong=\"H5437\"* of|strong=\"H3027\"* my|strong=\"H3588\"* bones." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1992\"* divide my|strong=\"H3605\"* garments among|strong=\"H7200\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H1992\"* don’t be|strong=\"H3830\"* far|strong=\"H5921\"* off|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Deliver my|strong=\"H3068\"* soul from|strong=\"H3068\"* the|strong=\"H3068\"* sword," + }, + { + "verseNum": 21, + "text": "Save|strong=\"H5337\"* me|strong=\"H5315\"* from|strong=\"H5315\"* the|strong=\"H3027\"* lion’s mouth|strong=\"H5315\"*!" + }, + { + "verseNum": 22, + "text": "I will|strong=\"H6310\"* declare|strong=\"H6030\"* your|strong=\"H3467\"* name to|strong=\"H6310\"* my|strong=\"H3467\"* brothers." + }, + { + "verseNum": 23, + "text": "You|strong=\"H8432\"* who fear Yahweh|strong=\"H3068\"*, praise|strong=\"H1984\"* him|strong=\"H8034\"*!" + }, + { + "verseNum": 24, + "text": "For|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3373\"* despised nor|strong=\"H4480\"* abhorred the|strong=\"H3605\"* affliction of|strong=\"H3068\"* the|strong=\"H3605\"* afflicted," + }, + { + "verseNum": 25, + "text": "My|strong=\"H8085\"* praise|strong=\"H3588\"* of|strong=\"H6440\"* you|strong=\"H3588\"* comes|strong=\"H6440\"* in|strong=\"H8085\"* the|strong=\"H6440\"* great|strong=\"H6440\"* assembly." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3373\"* humble shall|strong=\"H5088\"* eat and|strong=\"H8416\"* be|strong=\"H5088\"* satisfied." + }, + { + "verseNum": 27, + "text": "All|strong=\"H1875\"* the|strong=\"H3068\"* ends of|strong=\"H3068\"* the|strong=\"H3068\"* earth shall|strong=\"H3068\"* remember and|strong=\"H3068\"* turn|strong=\"H3824\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H6440\"* the|strong=\"H3605\"* kingdom|strong=\"H6440\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 29, + "text": "All|strong=\"H3068\"* the|strong=\"H3588\"* rich ones of|strong=\"H3068\"* the|strong=\"H3588\"* earth shall|strong=\"H3068\"* eat and|strong=\"H3068\"* worship." + }, + { + "verseNum": 30, + "text": "Posterity shall|strong=\"H5315\"* serve|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H5608\"* shall|strong=\"H2233\"* come and|strong=\"H5647\"* shall|strong=\"H2233\"* declare|strong=\"H5608\"* his|strong=\"H5647\"* righteousness to|strong=\"H1755\"* a|strong=\"H3068\"* people that|strong=\"H1755\"* shall|strong=\"H2233\"* be|strong=\"H5647\"* born," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* shepherd|strong=\"H7462\"*;" + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* makes me|strong=\"H5921\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H5921\"* green|strong=\"H1877\"* pastures|strong=\"H4999\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H7725\"* restores|strong=\"H7725\"* my|strong=\"H7725\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Even|strong=\"H1571\"* though|strong=\"H3588\"* I|strong=\"H3588\"* walk|strong=\"H3212\"* through|strong=\"H3212\"* the|strong=\"H3588\"* valley|strong=\"H1516\"* of|strong=\"H7626\"* the|strong=\"H3588\"* shadow|strong=\"H6757\"* of|strong=\"H7626\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H6440\"* prepare|strong=\"H6186\"* a|strong=\"H3068\"* table|strong=\"H7979\"* before|strong=\"H6440\"* me|strong=\"H6440\"*" + }, + { + "verseNum": 6, + "text": "Surely goodness|strong=\"H2896\"* and|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* shall|strong=\"H3068\"* follow|strong=\"H7291\"* me|strong=\"H7291\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H1004\"* my|strong=\"H3605\"* life|strong=\"H2416\"*," + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* earth is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s, with|strong=\"H3068\"* its|strong=\"H4393\"* fullness|strong=\"H4393\"*;" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* founded|strong=\"H3245\"* it|strong=\"H1931\"* on|strong=\"H5921\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 3, + "text": "Who|strong=\"H4310\"* may|strong=\"H3068\"* ascend|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hill|strong=\"H2022\"*?" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* who|strong=\"H5315\"* has|strong=\"H5315\"* clean|strong=\"H1249\"* hands|strong=\"H3709\"* and|strong=\"H5315\"* a|strong=\"H3068\"* pure|strong=\"H1249\"* heart|strong=\"H3824\"*;" + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* shall|strong=\"H3068\"* receive|strong=\"H5375\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6440\"* generation|strong=\"H1755\"* of|strong=\"H6440\"* those|strong=\"H2088\"* who|strong=\"H2088\"* seek|strong=\"H1245\"* Him|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* heads|strong=\"H7218\"*, you|strong=\"H5375\"* gates|strong=\"H8179\"*!" + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* the|strong=\"H3068\"* King|strong=\"H4428\"* of|strong=\"H4428\"* glory|strong=\"H3519\"*?" + }, + { + "verseNum": 9, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* heads|strong=\"H7218\"*, you|strong=\"H5375\"* gates|strong=\"H8179\"*;" + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* this|strong=\"H2088\"* King|strong=\"H4428\"* of|strong=\"H4428\"* glory|strong=\"H3519\"*?" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "To|strong=\"H3068\"* you|strong=\"H5375\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H5315\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "My God, I have trusted in you." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"*, no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* waits|strong=\"H6960\"* for|strong=\"H6960\"* you|strong=\"H3605\"* will|strong=\"H1571\"* be|strong=\"H3808\"* shamed." + }, + { + "verseNum": 4, + "text": "Show|strong=\"H3045\"* me|strong=\"H3925\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Guide|strong=\"H1869\"* me|strong=\"H3925\"* in|strong=\"H3117\"* your|strong=\"H3605\"* truth, and|strong=\"H3117\"* teach|strong=\"H3925\"* me|strong=\"H3925\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* your|strong=\"H3068\"* tender mercies|strong=\"H7356\"* and|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 7, + "text": "Don’t remember|strong=\"H2142\"* the|strong=\"H3068\"* sins|strong=\"H2403\"* of|strong=\"H3068\"* my|strong=\"H3068\"* youth|strong=\"H5271\"*, nor my|strong=\"H3068\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 8, + "text": "Good|strong=\"H2896\"* and|strong=\"H3068\"* upright|strong=\"H3477\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "He will|strong=\"H6035\"* guide|strong=\"H1869\"* the|strong=\"H1870\"* humble|strong=\"H6035\"* in|strong=\"H1870\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* paths of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* are|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* truth" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "What|strong=\"H4310\"* man|strong=\"H2088\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H4310\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 13, + "text": "His|strong=\"H3423\"* soul|strong=\"H5315\"* will|strong=\"H5315\"* dwell|strong=\"H3885\"* at|strong=\"H5315\"* ease|strong=\"H2896\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* friendship|strong=\"H5475\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3068\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* ever|strong=\"H8548\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "Turn|strong=\"H6437\"* to|strong=\"H6437\"* me|strong=\"H2603\"*, and|strong=\"H6041\"* have|strong=\"H3588\"* mercy|strong=\"H2603\"* on|strong=\"H6437\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3318\"* troubles|strong=\"H6869\"* of|strong=\"H3318\"* my|strong=\"H3318\"* heart|strong=\"H3824\"* are|strong=\"H6869\"* enlarged|strong=\"H7337\"*." + }, + { + "verseNum": 18, + "text": "Consider|strong=\"H7200\"* my|strong=\"H3605\"* affliction|strong=\"H6040\"* and|strong=\"H7200\"* my|strong=\"H3605\"* travail|strong=\"H5999\"*." + }, + { + "verseNum": 19, + "text": "Consider|strong=\"H7200\"* my|strong=\"H7200\"* enemies|strong=\"H8130\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H2555\"* many|strong=\"H7231\"*." + }, + { + "verseNum": 20, + "text": "Oh keep|strong=\"H8104\"* my|strong=\"H8104\"* soul|strong=\"H5315\"*, and|strong=\"H8104\"* deliver|strong=\"H5337\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 21, + "text": "Let integrity|strong=\"H8537\"* and|strong=\"H8537\"* uprightness|strong=\"H3476\"* preserve|strong=\"H5341\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 22, + "text": "God, redeem|strong=\"H6299\"* Israel|strong=\"H3478\"*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Judge|strong=\"H8199\"* me|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3068\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 2, + "text": "Examine me|strong=\"H3820\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* prove|strong=\"H5254\"* me|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* loving kindness|strong=\"H2617\"* is|strong=\"H2617\"* before|strong=\"H5048\"* my|strong=\"H3588\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* sat|strong=\"H3427\"* with|strong=\"H5973\"* deceitful|strong=\"H7723\"* men|strong=\"H4962\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* hate|strong=\"H8130\"* the|strong=\"H5973\"* assembly|strong=\"H6951\"* of|strong=\"H3427\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* wash|strong=\"H7364\"* my|strong=\"H3068\"* hands|strong=\"H3709\"* in|strong=\"H3068\"* innocence|strong=\"H5356\"*," + }, + { + "verseNum": 7, + "text": "that|strong=\"H3605\"* I|strong=\"H8085\"* may|strong=\"H8085\"* make|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* thanksgiving|strong=\"H8426\"* to|strong=\"H8085\"* be|strong=\"H6963\"* heard|strong=\"H8085\"*" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* love the|strong=\"H3068\"* habitation|strong=\"H4583\"* of|strong=\"H1004\"* your|strong=\"H3068\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 9, + "text": "Don’t gather my|strong=\"H5973\"* soul|strong=\"H5315\"* with|strong=\"H5973\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 10, + "text": "in|strong=\"H3027\"* whose hands|strong=\"H3027\"* is|strong=\"H3027\"* wickedness|strong=\"H2154\"*;" + }, + { + "verseNum": 11, + "text": "But as for|strong=\"H3212\"* me|strong=\"H2603\"*, I|strong=\"H3212\"* will walk|strong=\"H3212\"* in|strong=\"H3212\"* my|strong=\"H6299\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 12, + "text": "My|strong=\"H3068\"* foot|strong=\"H7272\"* stands|strong=\"H5975\"* in|strong=\"H3068\"* an|strong=\"H3068\"* even|strong=\"H3068\"* place|strong=\"H4334\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* light and|strong=\"H3068\"* my|strong=\"H3068\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H5307\"* evildoers|strong=\"H7489\"* came|strong=\"H7126\"* at|strong=\"H5921\"* me|strong=\"H5921\"* to|strong=\"H5921\"* eat up|strong=\"H5921\"* my|strong=\"H5921\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 3, + "text": "Though an|strong=\"H6965\"* army|strong=\"H4264\"* should|strong=\"H4264\"* encamp|strong=\"H2583\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "One|strong=\"H3605\"* thing|strong=\"H2416\"* I|strong=\"H3117\"* have|strong=\"H3068\"* asked|strong=\"H7592\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3068\"* seek|strong=\"H1245\"* after|strong=\"H3117\"*:" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* in|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H7451\"*, he|strong=\"H3588\"* will|strong=\"H3117\"* keep|strong=\"H6845\"* me|strong=\"H7311\"* secretly|strong=\"H5643\"* in|strong=\"H3117\"* his|strong=\"H3588\"* pavilion|strong=\"H5520\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* my|strong=\"H3068\"* head|strong=\"H7218\"* will|strong=\"H3068\"* be|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* above|strong=\"H5921\"* my|strong=\"H3068\"* enemies around|strong=\"H5439\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "Hear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, when|strong=\"H8085\"* I|strong=\"H8085\"* cry|strong=\"H7121\"* with|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3068\"* you|strong=\"H6440\"* said, “Seek|strong=\"H1245\"* my|strong=\"H3068\"* face|strong=\"H6440\"*,”" + }, + { + "verseNum": 9, + "text": "Don’t hide|strong=\"H5641\"* your|strong=\"H5186\"* face|strong=\"H6440\"* from|strong=\"H4480\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* my|strong=\"H3068\"* father and|strong=\"H3068\"* my|strong=\"H3068\"* mother forsake|strong=\"H5800\"* me|strong=\"H5800\"*," + }, + { + "verseNum": 11, + "text": "Teach|strong=\"H3384\"* me|strong=\"H5148\"* your|strong=\"H3068\"* way|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Don’t deliver|strong=\"H5414\"* me|strong=\"H5414\"* over|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3588\"* desire|strong=\"H5315\"* of|strong=\"H5315\"* my|strong=\"H5414\"* adversaries|strong=\"H6862\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* am|strong=\"H3068\"* still confident of|strong=\"H3068\"* this|strong=\"H7200\"*:" + }, + { + "verseNum": 14, + "text": "Wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "To|strong=\"H3381\"* you|strong=\"H5973\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* call|strong=\"H7121\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3027\"* my|strong=\"H8085\"* petitions, when|strong=\"H8085\"* I|strong=\"H8085\"* cry|strong=\"H7768\"* to|strong=\"H3027\"* you|strong=\"H3027\"*," + }, + { + "verseNum": 3, + "text": "Don’t draw|strong=\"H4900\"* me|strong=\"H1696\"* away|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H1696\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 4, + "text": "Give|strong=\"H5414\"* them|strong=\"H5414\"* according|strong=\"H3027\"* to|strong=\"H7725\"* their|strong=\"H5414\"* work|strong=\"H4639\"*, and|strong=\"H7725\"* according|strong=\"H3027\"* to|strong=\"H7725\"* the|strong=\"H5414\"* wickedness|strong=\"H7455\"* of|strong=\"H3027\"* their|strong=\"H5414\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* they|strong=\"H3588\"* don’t respect the|strong=\"H3588\"* works|strong=\"H4639\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* strength|strong=\"H5797\"* and|strong=\"H3068\"* my|strong=\"H3068\"* shield|strong=\"H4043\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* their|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 9, + "text": "Save|strong=\"H3467\"* your|strong=\"H5375\"* people|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3051\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3068\"* mighty|strong=\"H5797\"*," + }, + { + "verseNum": 2, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H3068\"* glory|strong=\"H3519\"* due to|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* is|strong=\"H3068\"* powerful|strong=\"H3581\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* breaks|strong=\"H7665\"* the|strong=\"H3068\"* cedars." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1121\"* makes them|strong=\"H1121\"* also|strong=\"H1121\"* to|strong=\"H1121\"* skip|strong=\"H7540\"* like|strong=\"H3644\"* a|strong=\"H3068\"* calf|strong=\"H5695\"*;" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* strikes with|strong=\"H3068\"* flashes of|strong=\"H3068\"* lightning." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* shakes|strong=\"H2342\"* the|strong=\"H3068\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* makes|strong=\"H3068\"* the|strong=\"H3605\"* deer calve|strong=\"H2342\"*," + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* sat|strong=\"H3427\"* enthroned|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H3068\"* Flood|strong=\"H3999\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5414\"* strength|strong=\"H5797\"* to|strong=\"H3068\"* his|strong=\"H5414\"* people|strong=\"H5971\"*." + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H1004\"* will|strong=\"H1004\"* extol you|strong=\"H1004\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H1004\"* you|strong=\"H1004\"* have|strong=\"H1004\"* raised me|strong=\"H1004\"* up," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, I|strong=\"H3588\"* cried to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, you have|strong=\"H3068\"* brought|strong=\"H3068\"* up my|strong=\"H3068\"* soul from|strong=\"H3068\"* Sheol.+ 30:3 Sheol is the place of the dead.*" + }, + { + "verseNum": 4, + "text": "Sing praise to|strong=\"H3381\"* Yahweh|strong=\"H3068\"*, you|strong=\"H4480\"* saints of|strong=\"H3068\"* his|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3068\"* his|strong=\"H3068\"* anger is|strong=\"H3068\"* but|strong=\"H3068\"* for|strong=\"H3068\"* a|strong=\"H3068\"* moment." + }, + { + "verseNum": 6, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H3588\"*, I|strong=\"H3588\"* said in|strong=\"H3885\"* my|strong=\"H3588\"* prosperity," + }, + { + "verseNum": 7, + "text": "You|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*, when you|strong=\"H5769\"* favored me|strong=\"H5769\"*, made my mountain stand strong;" + }, + { + "verseNum": 8, + "text": "I|strong=\"H6440\"* cried to|strong=\"H3068\"* you|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“What profit is|strong=\"H3068\"* there|strong=\"H3068\"* in|strong=\"H3068\"* my|strong=\"H3068\"* destruction, if|strong=\"H2603\"* I|strong=\"H3068\"* go|strong=\"H3068\"* down|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H3068\"* pit?" + }, + { + "verseNum": 10, + "text": "Hear|strong=\"H5046\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H1818\"* have mercy on|strong=\"H3381\"* me|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1961\"* have|strong=\"H1961\"* turned|strong=\"H1961\"* my|strong=\"H8085\"* mourning into|strong=\"H1961\"* dancing for|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "to|strong=\"H2015\"* the|strong=\"H6605\"* end that my|strong=\"H6605\"* heart may sing praise to|strong=\"H2015\"* you|strong=\"H8057\"*, and|strong=\"H8242\"* not|strong=\"H6605\"* be silent." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H1732\"* you, Yahweh|strong=\"H3068\"*, I take refuge." + }, + { + "verseNum": 2, + "text": "Bow down your|strong=\"H3068\"* ear to|strong=\"H3068\"* me|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H1004\"* you|strong=\"H3467\"* are|strong=\"H1004\"* my|strong=\"H1961\"* rock|strong=\"H6697\"* and|strong=\"H1004\"* my|strong=\"H1961\"* fortress|strong=\"H4581\"*," + }, + { + "verseNum": 4, + "text": "Pluck me|strong=\"H5148\"* out of|strong=\"H8034\"* the|strong=\"H3588\"* net|strong=\"H4686\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* laid secretly for|strong=\"H3588\"* me|strong=\"H5148\"*," + }, + { + "verseNum": 5, + "text": "Into|strong=\"H3318\"* your|strong=\"H3588\"* hand I|strong=\"H3588\"* commend my|strong=\"H3318\"* spirit." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3027\"* hate those who|strong=\"H3068\"* regard lying vanities," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad and|strong=\"H3068\"* rejoice in|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness," + }, + { + "verseNum": 8, + "text": "You|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3045\"* shut me|strong=\"H5315\"* up|strong=\"H7200\"* into|strong=\"H3045\"* the|strong=\"H7200\"* hand of|strong=\"H5315\"* the|strong=\"H7200\"* enemy." + }, + { + "verseNum": 9, + "text": "Have|strong=\"H3027\"* mercy on|strong=\"H3027\"* me|strong=\"H5975\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H3027\"* I|strong=\"H3808\"* am in|strong=\"H5975\"* distress|strong=\"H3027\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* my|strong=\"H3068\"* life|strong=\"H5315\"* is|strong=\"H3068\"* spent with|strong=\"H3068\"* sorrow|strong=\"H3708\"*," + }, + { + "verseNum": 11, + "text": "Because|strong=\"H3588\"* of|strong=\"H8141\"* all|strong=\"H3615\"* my|strong=\"H3615\"* adversaries I|strong=\"H3588\"* have|strong=\"H5771\"* become utterly|strong=\"H3782\"* contemptible to|strong=\"H8141\"* my|strong=\"H3615\"* neighbors," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3045\"* am|strong=\"H1961\"* forgotten from|strong=\"H4480\"* their|strong=\"H3605\"* hearts like|strong=\"H1961\"* a|strong=\"H3068\"* dead man|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H4191\"* I|strong=\"H3820\"* have|strong=\"H1961\"* heard the|strong=\"H1961\"* slander of|strong=\"H3627\"* many, terror on|strong=\"H1961\"* every side," + }, + { + "verseNum": 14, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* trust in|strong=\"H5921\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "My|strong=\"H3068\"* times are|strong=\"H3068\"* in|strong=\"H5921\"* your|strong=\"H3068\"* hand." + }, + { + "verseNum": 16, + "text": "Make|strong=\"H3027\"* your|strong=\"H3027\"* face to|strong=\"H6256\"* shine on|strong=\"H3027\"* your|strong=\"H3027\"* servant." + }, + { + "verseNum": 17, + "text": "Let me|strong=\"H6440\"* not|strong=\"H6440\"* be|strong=\"H5650\"* disappointed, Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H5650\"* called on|strong=\"H5921\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "Let the|strong=\"H3588\"* lying lips be|strong=\"H3068\"* mute," + }, + { + "verseNum": 19, + "text": "Oh how great is|strong=\"H6662\"* your|strong=\"H5921\"* goodness," + }, + { + "verseNum": 20, + "text": "In|strong=\"H7227\"* the|strong=\"H3373\"* shelter|strong=\"H2620\"* of|strong=\"H1121\"* your|strong=\"H4100\"* presence|strong=\"H5048\"* you|strong=\"H4100\"* will|strong=\"H1121\"* hide|strong=\"H6845\"* them|strong=\"H1121\"* from|strong=\"H1121\"* the|strong=\"H3373\"* plotting of|strong=\"H1121\"* man|strong=\"H1121\"*." + }, + { + "verseNum": 21, + "text": "Praise be|strong=\"H6440\"* to|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 22, + "text": "As|strong=\"H3068\"* for|strong=\"H3588\"* me|strong=\"H1288\"*, I|strong=\"H3588\"* said in|strong=\"H3068\"* my|strong=\"H3068\"* haste, “I|strong=\"H3588\"* am|strong=\"H3068\"* cut|strong=\"H2617\"* off from|strong=\"H3068\"* before your|strong=\"H3068\"* eyes.”" + }, + { + "verseNum": 23, + "text": "Oh love Yahweh|strong=\"H3068\"*, all you|strong=\"H5869\"* his|strong=\"H8085\"* saints!" + }, + { + "verseNum": 24, + "text": "Be|strong=\"H3068\"* strong, and|strong=\"H3068\"* let your|strong=\"H3068\"* heart take|strong=\"H6213\"* courage," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H6588\"* he|strong=\"H1732\"* whose disobedience is|strong=\"H6588\"* forgiven|strong=\"H5375\"*," + }, + { + "verseNum": 2, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H3068\"* man|strong=\"H7423\"* to|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* doesn’t impute|strong=\"H2803\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* kept|strong=\"H2790\"* silence|strong=\"H2790\"*, my|strong=\"H3605\"* bones|strong=\"H6106\"* wasted|strong=\"H1086\"* away|strong=\"H3605\"* through|strong=\"H3605\"* my|strong=\"H3605\"* groaning|strong=\"H7581\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* day|strong=\"H3119\"* and|strong=\"H3027\"* night|strong=\"H3915\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* was|strong=\"H3027\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* acknowledged|strong=\"H3045\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* to|strong=\"H3068\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* this|strong=\"H2063\"*, let|strong=\"H3808\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* godly|strong=\"H2623\"* pray|strong=\"H6419\"* to|strong=\"H5921\"* you|strong=\"H3605\"* in|strong=\"H5921\"* a|strong=\"H3068\"* time|strong=\"H6256\"* when|strong=\"H6256\"* you|strong=\"H3605\"* may|strong=\"H4325\"* be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 7, + "text": "You are my|strong=\"H5341\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H5869\"* instruct|strong=\"H3384\"* you|strong=\"H5921\"* and|strong=\"H3212\"* teach|strong=\"H3384\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* which|strong=\"H2098\"* you|strong=\"H5921\"* shall|strong=\"H5869\"* go|strong=\"H3212\"*." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H7126\"* horse|strong=\"H5483\"*, or|strong=\"H5483\"* like|strong=\"H1961\"* the|strong=\"H7126\"* mule|strong=\"H6505\"*, which|strong=\"H5483\"* have|strong=\"H1961\"* no|strong=\"H1077\"* understanding," + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* sorrows|strong=\"H4341\"* come|strong=\"H5437\"* to|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Be|strong=\"H3068\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* rejoice|strong=\"H8055\"*, you|strong=\"H3605\"* righteous|strong=\"H6662\"*!" + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Rejoice|strong=\"H7442\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H8416\"* righteous|strong=\"H6662\"*!" + }, + { + "verseNum": 2, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* lyre|strong=\"H3658\"*." + }, + { + "verseNum": 3, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3190\"* him a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* right|strong=\"H3477\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3068\"* loves righteousness|strong=\"H6666\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "By|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, the|strong=\"H3605\"* heavens|strong=\"H8064\"* were|strong=\"H8064\"* made|strong=\"H6213\"*:" + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* gathers|strong=\"H3664\"* the|strong=\"H5414\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5414\"* sea|strong=\"H3220\"* together|strong=\"H3664\"* as|strong=\"H5414\"* a|strong=\"H3068\"* heap|strong=\"H5067\"*." + }, + { + "verseNum": 8, + "text": "Let all|strong=\"H3605\"* the|strong=\"H3605\"* earth fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* spoke, and|strong=\"H5975\"* it|strong=\"H1931\"* was|strong=\"H1961\"* done|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* brings the|strong=\"H3068\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* to|strong=\"H3068\"* nothing." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* stands|strong=\"H5975\"* fast|strong=\"H5975\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* God|strong=\"H3068\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* from|strong=\"H1121\"* heaven|strong=\"H8064\"*." + }, + { + "verseNum": 14, + "text": "From|strong=\"H3427\"* the|strong=\"H3605\"* place|strong=\"H4349\"* of|strong=\"H3427\"* his|strong=\"H3605\"* habitation|strong=\"H3427\"* he|strong=\"H3605\"* looks|strong=\"H7688\"* out|strong=\"H3605\"* on|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 15, + "text": "he|strong=\"H3605\"* who|strong=\"H3605\"* fashions|strong=\"H3335\"* all|strong=\"H3605\"* of|strong=\"H3820\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"*;" + }, + { + "verseNum": 16, + "text": "There|strong=\"H7230\"* is|strong=\"H4428\"* no|strong=\"H3808\"* king|strong=\"H4428\"* saved|strong=\"H3467\"* by|strong=\"H3808\"* the|strong=\"H3808\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* an|strong=\"H3467\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* horse|strong=\"H5483\"* is|strong=\"H5483\"* a|strong=\"H3068\"* vain|strong=\"H8267\"* thing|strong=\"H8267\"* for|strong=\"H2428\"* safety|strong=\"H8668\"*," + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s eye|strong=\"H5869\"* is|strong=\"H3068\"* on|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H5869\"*," + }, + { + "verseNum": 19, + "text": "to|strong=\"H5315\"* deliver|strong=\"H5337\"* their|strong=\"H5337\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 20, + "text": "Our|strong=\"H3068\"* soul|strong=\"H5315\"* has|strong=\"H3068\"* waited|strong=\"H2442\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* heart|strong=\"H3820\"* rejoices|strong=\"H8055\"* in|strong=\"H8034\"* him|strong=\"H8055\"*," + }, + { + "verseNum": 22, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "+ 34:1 Psalm 34 is an acrostic poem, with each verse starting with a letter of the alphabet (ordered from Alef to Tav).*I|strong=\"H1980\"* will|strong=\"H6440\"* bless Yahweh|strong=\"H3068\"* at|strong=\"H1732\"* all|strong=\"H6440\"* times|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3605\"* soul shall|strong=\"H3068\"* boast|strong=\"H1288\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Oh magnify Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* sought Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* answered me|strong=\"H7311\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* looked|strong=\"H3068\"* to|strong=\"H3068\"* him|strong=\"H3605\"*, and|strong=\"H3068\"* were|strong=\"H3068\"* radiant." + }, + { + "verseNum": 6, + "text": "This|strong=\"H6440\"* poor man|strong=\"H6440\"* cried, and|strong=\"H6440\"* Yahweh|strong=\"H3068\"* heard him|strong=\"H6440\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*’s angel encamps around those|strong=\"H3605\"* who|strong=\"H3605\"* fear him|strong=\"H7121\"*," + }, + { + "verseNum": 8, + "text": "Oh taste and|strong=\"H3068\"* see that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good." + }, + { + "verseNum": 9, + "text": "Oh fear Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* his|strong=\"H3068\"* saints," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* young lions do|strong=\"H3068\"* lack|strong=\"H4270\"*, and|strong=\"H3068\"* suffer hunger," + }, + { + "verseNum": 11, + "text": "Come, you|strong=\"H3605\"* children, listen|strong=\"H3605\"* to|strong=\"H3068\"* me|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H3068\"* is|strong=\"H3068\"* someone who|strong=\"H3068\"* desires life," + }, + { + "verseNum": 13, + "text": "Keep|strong=\"H7200\"* your|strong=\"H7200\"* tongue from|strong=\"H3117\"* evil," + }, + { + "verseNum": 14, + "text": "Depart from|strong=\"H7451\"* evil|strong=\"H7451\"*, and|strong=\"H1696\"* do|strong=\"H8193\"* good." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s eyes are|strong=\"H6213\"* toward|strong=\"H6213\"* the|strong=\"H6213\"* righteous." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s face|strong=\"H5869\"* is|strong=\"H3068\"* against|strong=\"H3068\"* those who|strong=\"H3068\"* do|strong=\"H3068\"* evil," + }, + { + "verseNum": 17, + "text": "The|strong=\"H6440\"* righteous cry, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hears," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near to|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3068\"* a|strong=\"H3068\"* broken heart|strong=\"H8085\"*," + }, + { + "verseNum": 19, + "text": "Many are|strong=\"H3068\"* the|strong=\"H3068\"* afflictions of|strong=\"H3068\"* the|strong=\"H3068\"* righteous," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* protects all|strong=\"H3605\"* of|strong=\"H3068\"* his|strong=\"H3605\"* bones." + }, + { + "verseNum": 21, + "text": "Evil shall|strong=\"H3808\"* kill the|strong=\"H3605\"* wicked." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* redeems the|strong=\"H4191\"* soul of|strong=\"H4191\"* his|strong=\"H8130\"* servants." + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Contend|strong=\"H7378\"*, Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* those who|strong=\"H3068\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* me." + }, + { + "verseNum": 2, + "text": "Take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H4043\"* shield|strong=\"H4043\"* and|strong=\"H6965\"* buckler|strong=\"H4043\"*," + }, + { + "verseNum": 3, + "text": "Brandish the|strong=\"H5462\"* spear|strong=\"H2595\"* and|strong=\"H5315\"* block those|strong=\"H5315\"* who|strong=\"H5315\"* pursue|strong=\"H7291\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Let|strong=\"H5315\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* after|strong=\"H1245\"* my|strong=\"H1245\"* soul|strong=\"H5315\"* be|strong=\"H5315\"* disappointed and|strong=\"H5315\"* brought|strong=\"H3637\"* to|strong=\"H1245\"* dishonor|strong=\"H3637\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H1961\"* them|strong=\"H6440\"* be|strong=\"H1961\"* as|strong=\"H1961\"* chaff|strong=\"H4671\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H1961\"* their|strong=\"H3068\"* way|strong=\"H1870\"* be|strong=\"H1961\"* dark|strong=\"H2822\"* and|strong=\"H3068\"* slippery|strong=\"H2519\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* without|strong=\"H2600\"* cause|strong=\"H2600\"* they|strong=\"H3588\"* have|strong=\"H3588\"* hidden|strong=\"H2934\"* their|strong=\"H3588\"* net|strong=\"H7568\"* in|strong=\"H5315\"* a|strong=\"H3068\"* pit|strong=\"H7845\"* for|strong=\"H3588\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H3808\"* destruction|strong=\"H7722\"* come|strong=\"H5307\"* on|strong=\"H5307\"* him|strong=\"H3045\"* unawares|strong=\"H3045\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3068\"* soul|strong=\"H5315\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* joyful|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* my|strong=\"H3605\"* bones|strong=\"H6106\"* shall|strong=\"H3068\"* say, “Yahweh|strong=\"H3068\"*, who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "Unrighteous|strong=\"H2555\"* witnesses|strong=\"H5707\"* rise|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5315\"* reward|strong=\"H7999\"* me|strong=\"H5315\"* evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"H7725\"* as|strong=\"H5315\"* for|strong=\"H5921\"* me|strong=\"H5315\"*, when|strong=\"H7725\"* they|strong=\"H5921\"* were|strong=\"H5315\"* sick|strong=\"H2470\"*, my|strong=\"H5921\"* clothing|strong=\"H3830\"* was|strong=\"H5315\"* sackcloth|strong=\"H8242\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H1980\"* behaved|strong=\"H1980\"* myself|strong=\"H1980\"* as|strong=\"H1980\"* though it|strong=\"H1980\"* had been|strong=\"H7817\"* my|strong=\"H1980\"* friend|strong=\"H7453\"* or|strong=\"H7453\"* my|strong=\"H1980\"* brother|strong=\"H7453\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H3808\"* in|strong=\"H5921\"* my|strong=\"H5921\"* adversity|strong=\"H6761\"*, they|strong=\"H3808\"* rejoiced|strong=\"H8055\"*, and|strong=\"H3045\"* gathered themselves|strong=\"H3045\"* together|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "Like|strong=\"H5921\"* the|strong=\"H5921\"* profane mockers|strong=\"H3934\"* in|strong=\"H5921\"* feasts|strong=\"H4580\"*," + }, + { + "verseNum": 17, + "text": "Lord, how|strong=\"H4100\"* long|strong=\"H4100\"* will|strong=\"H5315\"* you|strong=\"H7725\"* look|strong=\"H7200\"* on|strong=\"H7200\"*?" + }, + { + "verseNum": 18, + "text": "I|strong=\"H1984\"* will|strong=\"H5971\"* give|strong=\"H3034\"* you|strong=\"H3034\"* thanks|strong=\"H3034\"* in|strong=\"H7227\"* the|strong=\"H1984\"* great|strong=\"H7227\"* assembly|strong=\"H6951\"*." + }, + { + "verseNum": 19, + "text": "Don’t let|strong=\"H8055\"* those|strong=\"H8130\"* who|strong=\"H8130\"* are|strong=\"H5869\"* my|strong=\"H8267\"* enemies|strong=\"H8130\"* wrongfully|strong=\"H8267\"* rejoice|strong=\"H8055\"* over|strong=\"H5869\"* me|strong=\"H8130\"*;" + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* don’t speak|strong=\"H1696\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 21, + "text": "Yes|strong=\"H7200\"*, they|strong=\"H5921\"* opened|strong=\"H7337\"* their|strong=\"H7200\"* mouth|strong=\"H6310\"* wide|strong=\"H7337\"* against|strong=\"H5921\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H4480\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*. Don’t keep|strong=\"H2790\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 23, + "text": "Wake|strong=\"H6974\"* up|strong=\"H5782\"*! Rise up|strong=\"H5782\"* to|strong=\"H4941\"* defend|strong=\"H7379\"* me|strong=\"H7379\"*, my|strong=\"H4941\"* God!" + }, + { + "verseNum": 24, + "text": "Vindicate|strong=\"H8199\"* me|strong=\"H8055\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*, according to|strong=\"H3068\"* your|strong=\"H3068\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 25, + "text": "Don’t let|strong=\"H5315\"* them|strong=\"H1104\"* say in|strong=\"H5315\"* their|strong=\"H1104\"* heart|strong=\"H3820\"*, “Aha|strong=\"H1889\"*! That|strong=\"H5315\"*’s the|strong=\"H1104\"* way we|strong=\"H3068\"* want|strong=\"H5315\"* it|strong=\"H5315\"*!”" + }, + { + "verseNum": 26, + "text": "Let|strong=\"H8056\"* them|strong=\"H5921\"* be|strong=\"H7451\"* disappointed and|strong=\"H1431\"* confounded|strong=\"H2659\"* together|strong=\"H3162\"* who|strong=\"H3639\"* rejoice|strong=\"H8056\"* at|strong=\"H5921\"* my|strong=\"H5921\"* calamity|strong=\"H7451\"*." + }, + { + "verseNum": 27, + "text": "Let|strong=\"H8055\"* those who|strong=\"H3068\"* favor|strong=\"H7965\"* my|strong=\"H3068\"* righteous|strong=\"H6664\"* cause|strong=\"H6664\"* shout|strong=\"H7442\"* for|strong=\"H7442\"* joy|strong=\"H7442\"* and|strong=\"H3068\"* be|strong=\"H3068\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 28, + "text": "My|strong=\"H3605\"* tongue|strong=\"H3956\"* shall|strong=\"H3117\"* talk|strong=\"H1897\"* about|strong=\"H3117\"* your|strong=\"H3605\"* righteousness|strong=\"H6664\"* and|strong=\"H3117\"* about|strong=\"H3117\"* your|strong=\"H3605\"* praise|strong=\"H8416\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation is|strong=\"H3068\"* within my|strong=\"H3068\"* heart about|strong=\"H1732\"* the|strong=\"H3068\"* disobedience of|strong=\"H3068\"* the|strong=\"H3068\"* wicked:" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5869\"* he|strong=\"H7130\"* flatters himself|strong=\"H3820\"* in|strong=\"H7130\"* his|strong=\"H7130\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* words of|strong=\"H5869\"* his|strong=\"H3588\"* mouth are|strong=\"H5869\"* iniquity|strong=\"H5771\"* and|strong=\"H5869\"* deceit." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6310\"* plots iniquity on|strong=\"H1697\"* his|strong=\"H6310\"* bed." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* loving|strong=\"H2896\"* kindness|strong=\"H2896\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H2896\"* in|strong=\"H5921\"* the|strong=\"H5921\"* heavens." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* righteousness|strong=\"H2617\"* is|strong=\"H3068\"* like|strong=\"H5704\"* the|strong=\"H3068\"* mountains of|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "How precious is|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness, God|strong=\"H3068\"*!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H4100\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* abundantly satisfied with|strong=\"H1121\"* the|strong=\"H1121\"* abundance of|strong=\"H1121\"* your|strong=\"H4100\"* house." + }, + { + "verseNum": 9, + "text": "For|strong=\"H1004\"* with|strong=\"H1004\"* you|strong=\"H8248\"* is|strong=\"H1004\"* the|strong=\"H8248\"* spring of|strong=\"H1004\"* life." + }, + { + "verseNum": 10, + "text": "Oh continue your|strong=\"H7200\"* loving kindness to|strong=\"H7200\"* those|strong=\"H5973\"* who|strong=\"H3588\"* know you|strong=\"H3588\"*," + }, + { + "verseNum": 11, + "text": "Don’t let the|strong=\"H3045\"* foot of|strong=\"H3820\"* pride come|strong=\"H3045\"* against me|strong=\"H4900\"*." + }, + { + "verseNum": 12, + "text": "There the|strong=\"H3027\"* workers of|strong=\"H3027\"* iniquity are|strong=\"H7563\"* fallen." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Don’t fret|strong=\"H2734\"* because of|strong=\"H6213\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* shall soon|strong=\"H4120\"* be|strong=\"H3588\"* cut down|strong=\"H5243\"* like the|strong=\"H3588\"* grass|strong=\"H2682\"*," + }, + { + "verseNum": 3, + "text": "Trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "Also|strong=\"H3068\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Commit|strong=\"H6213\"* your|strong=\"H3068\"* way|strong=\"H1870\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "he|strong=\"H3318\"* will|strong=\"H6664\"* make|strong=\"H4941\"* your|strong=\"H3318\"* righteousness|strong=\"H6664\"* shine out|strong=\"H3318\"* like|strong=\"H3318\"* light," + }, + { + "verseNum": 7, + "text": "Rest|strong=\"H1826\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* wait|strong=\"H2342\"* patiently|strong=\"H2342\"* for|strong=\"H6213\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "Cease|strong=\"H7503\"* from|strong=\"H2534\"* anger|strong=\"H2534\"*, and|strong=\"H2534\"* forsake|strong=\"H5800\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* evildoers|strong=\"H7489\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H5921\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H4725\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H5750\"* no|strong=\"H7563\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* humble|strong=\"H6035\"* shall|strong=\"H6035\"* inherit|strong=\"H3423\"* the|strong=\"H5921\"* land," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* wicked|strong=\"H7563\"* plots|strong=\"H2161\"* against|strong=\"H5921\"* the|strong=\"H5921\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* Lord will|strong=\"H3117\"* laugh|strong=\"H7832\"* at|strong=\"H3117\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H1870\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* drawn|strong=\"H6605\"* out|strong=\"H1869\"* the|strong=\"H1870\"* sword|strong=\"H2719\"*, and|strong=\"H6041\"* have|strong=\"H7563\"* bent|strong=\"H1869\"* their|strong=\"H5307\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 15, + "text": "Their|strong=\"H7665\"* sword|strong=\"H2719\"* shall|strong=\"H3820\"* enter into|strong=\"H2719\"* their|strong=\"H7665\"* own heart|strong=\"H3820\"*." + }, + { + "verseNum": 16, + "text": "Better|strong=\"H2896\"* is|strong=\"H7563\"* a|strong=\"H3068\"* little|strong=\"H4592\"* that|strong=\"H2896\"* the|strong=\"H2896\"* righteous|strong=\"H6662\"* has," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H3068\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* broken|strong=\"H7665\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* perfect|strong=\"H8549\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H3808\"* disappointed in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H6256\"* of|strong=\"H3117\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* shall|strong=\"H3068\"* perish|strong=\"H3615\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* borrow|strong=\"H3867\"*, and|strong=\"H6662\"* don’t pay|strong=\"H7999\"* back|strong=\"H7999\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* such as|strong=\"H3588\"* are|strong=\"H3772\"* blessed|strong=\"H1288\"* by|strong=\"H3588\"* him|strong=\"H3772\"* shall|strong=\"H3772\"* inherit|strong=\"H3423\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"*’s steps|strong=\"H4703\"* are|strong=\"H3068\"* established|strong=\"H3559\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Though|strong=\"H3588\"* he|strong=\"H3588\"* stumble, he|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H7200\"* have|strong=\"H1961\"* been|strong=\"H1961\"* young|strong=\"H5288\"*, and|strong=\"H3899\"* now|strong=\"H1961\"* am|strong=\"H1961\"* old|strong=\"H2204\"*," + }, + { + "verseNum": 26, + "text": "All|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* he|strong=\"H3117\"* deals graciously|strong=\"H2603\"*, and|strong=\"H3117\"* lends|strong=\"H3867\"*." + }, + { + "verseNum": 27, + "text": "Depart|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*, and|strong=\"H5769\"* do|strong=\"H6213\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves justice|strong=\"H4941\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* righteous|strong=\"H6662\"* shall|strong=\"H6662\"* inherit|strong=\"H3423\"* the|strong=\"H5921\"* land," + }, + { + "verseNum": 30, + "text": "The|strong=\"H1696\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H1696\"* righteous|strong=\"H6662\"* talks of|strong=\"H6310\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3808\"* law|strong=\"H8451\"* of|strong=\"H8451\"* his|strong=\"H3808\"* God|strong=\"H3808\"* is|strong=\"H3820\"* in|strong=\"H3808\"* his|strong=\"H3808\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 32, + "text": "The|strong=\"H1245\"* wicked|strong=\"H7563\"* watch|strong=\"H6822\"* the|strong=\"H1245\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* leave|strong=\"H5800\"* him|strong=\"H3027\"* in|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 34, + "text": "Wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 35, + "text": "I|strong=\"H7200\"* have|strong=\"H7563\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* in|strong=\"H7200\"* great power|strong=\"H6184\"*," + }, + { + "verseNum": 36, + "text": "But|strong=\"H3808\"* he|strong=\"H3808\"* passed|strong=\"H5674\"* away|strong=\"H5674\"*, and|strong=\"H5674\"* behold|strong=\"H2009\"*, he|strong=\"H3808\"* was|strong=\"H3808\"* not|strong=\"H3808\"*." + }, + { + "verseNum": 37, + "text": "Mark|strong=\"H8104\"* the|strong=\"H7200\"* perfect|strong=\"H8535\"* man|strong=\"H7200\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 38, + "text": "As|strong=\"H3162\"* for|strong=\"H3162\"* transgressors|strong=\"H6586\"*, they|strong=\"H3772\"* shall|strong=\"H7563\"* be|strong=\"H7563\"* destroyed|strong=\"H8045\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 39, + "text": "But|strong=\"H6662\"* the|strong=\"H3068\"* salvation|strong=\"H8668\"* of|strong=\"H3068\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"* is|strong=\"H3068\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 40, + "text": "Yahweh|strong=\"H3068\"* helps|strong=\"H5826\"* them|strong=\"H3588\"* and|strong=\"H3068\"* rescues|strong=\"H5826\"* them|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, don’t rebuke me|strong=\"H2142\"* in|strong=\"H1732\"* your|strong=\"H2142\"* wrath," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3068\"* your|strong=\"H3068\"* arrows have|strong=\"H3068\"* pierced me|strong=\"H3256\"*," + }, + { + "verseNum": 3, + "text": "There is|strong=\"H3027\"* no soundness in|strong=\"H5921\"* my|strong=\"H5921\"* flesh because|strong=\"H3588\"* of|strong=\"H3027\"* your|strong=\"H5921\"* indignation," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6440\"* my|strong=\"H6440\"* iniquities have|strong=\"H7965\"* gone over|strong=\"H6440\"* my|strong=\"H6440\"* head|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H3588\"* wounds are|strong=\"H5771\"* loathsome and|strong=\"H7218\"* corrupt" + }, + { + "verseNum": 6, + "text": "I|strong=\"H6440\"* am in|strong=\"H6440\"* pain and|strong=\"H6440\"* bowed down|strong=\"H6440\"* greatly." + }, + { + "verseNum": 7, + "text": "For|strong=\"H5704\"* my|strong=\"H3605\"* waist is|strong=\"H3117\"* filled with|strong=\"H1980\"* burning|strong=\"H1980\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* am faint and|strong=\"H1320\"* severely bruised." + }, + { + "verseNum": 9, + "text": "Lord, all|strong=\"H5704\"* my|strong=\"H5704\"* desire is|strong=\"H3820\"* before|strong=\"H5704\"* you|strong=\"H5704\"*." + }, + { + "verseNum": 10, + "text": "My|strong=\"H3605\"* heart throbs." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5800\"* lovers and|strong=\"H5869\"* my|strong=\"H5800\"* friends stand|strong=\"H5869\"* aloof from|strong=\"H5869\"* my|strong=\"H5800\"* plague." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5975\"* also who|strong=\"H7350\"* seek after|strong=\"H7453\"* my|strong=\"H5048\"* life lay snares." + }, + { + "verseNum": 13, + "text": "But|strong=\"H1696\"* I|strong=\"H3117\"*, as|strong=\"H3117\"* a|strong=\"H3068\"* deaf man|strong=\"H5315\"*, don’t hear." + }, + { + "verseNum": 14, + "text": "Yes, I|strong=\"H3808\"* am as|strong=\"H6310\"* a|strong=\"H3068\"* man|strong=\"H2795\"* who|strong=\"H3808\"* doesn’t hear|strong=\"H8085\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H1961\"* I|strong=\"H3808\"* hope in|strong=\"H8085\"* you|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H6030\"*, “Don’t let them|strong=\"H6030\"* gloat over|strong=\"H3068\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am ready|strong=\"H4131\"* to|strong=\"H5921\"* fall|strong=\"H4131\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3588\"* declare my|strong=\"H3588\"* iniquity." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* my|strong=\"H5046\"* enemies are|strong=\"H2403\"* vigorous and|strong=\"H2403\"* many." + }, + { + "verseNum": 20, + "text": "They who|strong=\"H2416\"* give|strong=\"H2416\"* evil for|strong=\"H2416\"* good are|strong=\"H8267\"* also adversaries to|strong=\"H2416\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 21, + "text": "Don’t forsake me|strong=\"H7291\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Hurry to|strong=\"H3068\"* help|strong=\"H5800\"* me|strong=\"H4480\"*," + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "I said, “I will watch my|strong=\"H1732\"* ways, so that|strong=\"H1732\"* I don’t sin with|strong=\"H1732\"* my|strong=\"H1732\"* tongue." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5704\"* was|strong=\"H6310\"* mute with|strong=\"H6310\"* silence." + }, + { + "verseNum": 3, + "text": "My heart was|strong=\"H3511\"* hot within me." + }, + { + "verseNum": 4, + "text": "“Yahweh|strong=\"H3068\"*, show me|strong=\"H1696\"* my|strong=\"H1696\"* end," + }, + { + "verseNum": 5, + "text": "Behold, you|strong=\"H3117\"* have|strong=\"H3068\"* made|strong=\"H3045\"* my|strong=\"H3068\"* days|strong=\"H3117\"* hand widths." + }, + { + "verseNum": 6, + "text": "“Surely|strong=\"H5414\"* every|strong=\"H3605\"* man|strong=\"H3605\"* walks like|strong=\"H3117\"* a|strong=\"H3068\"* shadow." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H1980\"*, Lord, what|strong=\"H4310\"* do|strong=\"H4310\"* I|strong=\"H3045\"* wait for|strong=\"H3045\"*?" + }, + { + "verseNum": 8, + "text": "Deliver me|strong=\"H4100\"* from all my|strong=\"H6258\"* transgressions." + }, + { + "verseNum": 9, + "text": "I|strong=\"H7760\"* was|strong=\"H3605\"* mute." + }, + { + "verseNum": 10, + "text": "Remove|strong=\"H6605\"* your|strong=\"H6213\"* scourge away from|strong=\"H6213\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3615\"* you|strong=\"H5921\"* rebuke and|strong=\"H3027\"* correct man for|strong=\"H5921\"* iniquity," + }, + { + "verseNum": 12, + "text": "“Hear my|strong=\"H3605\"* prayer, Yahweh|strong=\"H3068\"*, and|strong=\"H1892\"* give ear to|strong=\"H5921\"* my|strong=\"H3605\"* cry." + }, + { + "verseNum": 13, + "text": "Oh spare me|strong=\"H5973\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* recover strength," + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "I waited patiently for|strong=\"H1732\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H8085\"* up also|strong=\"H3068\"* out|strong=\"H5186\"* of|strong=\"H3068\"* a|strong=\"H3068\"* horrible pit," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* has|strong=\"H7272\"* put|strong=\"H5927\"* a|strong=\"H3068\"* new song in|strong=\"H5921\"* my|strong=\"H5921\"* mouth, even|strong=\"H5921\"* praise to|strong=\"H5927\"* our|strong=\"H5921\"* God." + }, + { + "verseNum": 4, + "text": "Blessed is|strong=\"H3068\"* the|strong=\"H7200\"* man|strong=\"H7200\"* who|strong=\"H3068\"* makes|strong=\"H5414\"* Yahweh|strong=\"H3068\"* his|strong=\"H5414\"* trust," + }, + { + "verseNum": 5, + "text": "Many|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*, are|strong=\"H3068\"* the|strong=\"H3068\"* wonderful works which|strong=\"H3068\"* you|strong=\"H7760\"* have|strong=\"H3068\"* done|strong=\"H7760\"*," + }, + { + "verseNum": 6, + "text": "Sacrifice|strong=\"H6213\"* and|strong=\"H3068\"* offering|strong=\"H3068\"* you|strong=\"H6213\"* didn’t desire." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* said, “Behold|strong=\"H3808\"*, I|strong=\"H3808\"* have|strong=\"H2654\"* come." + }, + { + "verseNum": 8, + "text": "I|strong=\"H2009\"* delight to|strong=\"H5921\"* do your|strong=\"H5921\"* will|strong=\"H5612\"*, my|strong=\"H5921\"* God." + }, + { + "verseNum": 9, + "text": "I|strong=\"H8432\"* have|strong=\"H2654\"* proclaimed glad news of|strong=\"H8432\"* righteousness in|strong=\"H6213\"* the|strong=\"H6213\"* great|strong=\"H6213\"* assembly." + }, + { + "verseNum": 10, + "text": "I|strong=\"H2009\"* have|strong=\"H3068\"* not|strong=\"H3808\"* hidden your|strong=\"H3068\"* righteousness|strong=\"H6664\"* within my|strong=\"H3068\"* heart|strong=\"H8193\"*." + }, + { + "verseNum": 11, + "text": "Don’t withhold your|strong=\"H3808\"* tender mercies|strong=\"H2617\"* from|strong=\"H3820\"* me|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3068\"* innumerable evils have|strong=\"H3068\"* surrounded me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H3808\"* pleased, Yahweh|strong=\"H3068\"*, to|strong=\"H5704\"* deliver me|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "Let them|strong=\"H5337\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* confounded together who|strong=\"H3068\"* seek after my|strong=\"H3068\"* soul to|strong=\"H3068\"* destroy it|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H5315\"* them|strong=\"H3162\"* be|strong=\"H5315\"* desolate by|strong=\"H7451\"* reason of|strong=\"H5315\"* their|strong=\"H1245\"* shame|strong=\"H3637\"* that|strong=\"H5315\"* tell me|strong=\"H5315\"*, “Aha! Aha!”" + }, + { + "verseNum": 16, + "text": "Let all|strong=\"H5921\"* those|strong=\"H5921\"* who seek you|strong=\"H5921\"* rejoice and|strong=\"H8074\"* be glad in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3605\"* I|strong=\"H3068\"* am|strong=\"H3068\"* poor and|strong=\"H3068\"* needy." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H1732\"* he|strong=\"H1732\"* who considers the|strong=\"H1732\"* poor." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* preserve|strong=\"H4422\"* him|strong=\"H4422\"*, and|strong=\"H3068\"* keep him|strong=\"H4422\"* alive." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* sustain him|strong=\"H5414\"* on|strong=\"H3068\"* his|strong=\"H5414\"* sickbed," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* said, “Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*!" + }, + { + "verseNum": 5, + "text": "My|strong=\"H3068\"* enemies speak evil against|strong=\"H2398\"* me|strong=\"H5315\"*:" + }, + { + "verseNum": 6, + "text": "If he|strong=\"H8034\"* comes to|strong=\"H4191\"* see me|strong=\"H4191\"*, he|strong=\"H8034\"* speaks falsehood." + }, + { + "verseNum": 7, + "text": "All|strong=\"H7200\"* who|strong=\"H7723\"* hate me|strong=\"H7200\"* whisper together|strong=\"H6908\"* against|strong=\"H1696\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "“An|strong=\"H2803\"* evil|strong=\"H7451\"* disease”, they|strong=\"H5921\"* say, “has|strong=\"H3605\"* afflicted|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Yes, my|strong=\"H6965\"* own familiar friend, in|strong=\"H7901\"* whom I|strong=\"H1697\"* trusted," + }, + { + "verseNum": 10, + "text": "But|strong=\"H1571\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1571\"* mercy on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3899\"* raise me|strong=\"H5921\"* up|strong=\"H1431\"*," + }, + { + "verseNum": 11, + "text": "By|strong=\"H3068\"* this|strong=\"H3068\"* I|strong=\"H6965\"* know that|strong=\"H3068\"* you|strong=\"H6965\"* delight in|strong=\"H3068\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 12, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, you|strong=\"H3588\"* uphold me|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* integrity," + }, + { + "verseNum": 13, + "text": "Blessed be|strong=\"H5769\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God of|strong=\"H6440\"* Israel," + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "As|strong=\"H1121\"* the|strong=\"H1121\"* deer pants for|strong=\"H1121\"* the|strong=\"H1121\"* water brooks," + }, + { + "verseNum": 2, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* thirsts for|strong=\"H5921\"* God, for|strong=\"H5921\"* the|strong=\"H5921\"* living|strong=\"H5315\"* God." + }, + { + "verseNum": 3, + "text": "My|strong=\"H7200\"* tears have|strong=\"H7200\"* been my|strong=\"H7200\"* food day and|strong=\"H6440\"* night," + }, + { + "verseNum": 4, + "text": "These|strong=\"H3605\"* things|strong=\"H3605\"* I|strong=\"H3117\"* remember, and|strong=\"H3117\"* pour out|strong=\"H3605\"* my|strong=\"H3605\"* soul within me|strong=\"H1961\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H5921\"* are|strong=\"H1004\"* you|strong=\"H3588\"* in|strong=\"H5921\"* despair, my|strong=\"H5921\"* soul|strong=\"H5315\"*?" + }, + { + "verseNum": 6, + "text": "My|strong=\"H5921\"* God, my|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H4100\"* in|strong=\"H5921\"* despair|strong=\"H7817\"* within|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Deep calls to|strong=\"H5921\"* deep at|strong=\"H5921\"* the|strong=\"H5921\"* noise of|strong=\"H2022\"* your|strong=\"H5921\"* waterfalls." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*+ 42:8 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* will|strong=\"H6963\"* command|strong=\"H5921\"* his|strong=\"H3605\"* loving kindness in|strong=\"H5921\"* the|strong=\"H3605\"* daytime." + }, + { + "verseNum": 9, + "text": "I|strong=\"H6680\"* will|strong=\"H3068\"* ask God|strong=\"H3068\"*, my|strong=\"H3068\"* rock, “Why have|strong=\"H3068\"* you|strong=\"H6680\"* forgotten me|strong=\"H5973\"*?" + }, + { + "verseNum": 10, + "text": "As with|strong=\"H3212\"* a|strong=\"H3068\"* sword in|strong=\"H3212\"* my|strong=\"H7911\"* bones, my|strong=\"H7911\"* adversaries reproach me|strong=\"H7911\"*," + }, + { + "verseNum": 11, + "text": "Why are|strong=\"H3117\"* you|strong=\"H3605\"* in|strong=\"H3117\"* despair, my|strong=\"H3605\"* soul?" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Vindicate|strong=\"H8199\"* me|strong=\"H3808\"*, God|strong=\"H3808\"*, and|strong=\"H1471\"* plead|strong=\"H7378\"* my|strong=\"H7378\"* cause|strong=\"H7379\"* against|strong=\"H7378\"* an ungodly|strong=\"H3808\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H4100\"* the|strong=\"H3588\"* God of|strong=\"H4581\"* my|strong=\"H3588\"* strength|strong=\"H4581\"*. Why|strong=\"H4100\"* have|strong=\"H3588\"* you|strong=\"H3588\"* rejected|strong=\"H2186\"* me|strong=\"H3588\"*?" + }, + { + "verseNum": 3, + "text": "Oh, send|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H7971\"* light and|strong=\"H7971\"* your|strong=\"H7971\"* truth." + }, + { + "verseNum": 4, + "text": "Then I will|strong=\"H4196\"* go to|strong=\"H4196\"* the|strong=\"H3034\"* altar|strong=\"H4196\"* of|strong=\"H4196\"* God," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3588\"* in|strong=\"H5921\"* despair|strong=\"H7817\"*, my|strong=\"H5921\"* soul|strong=\"H5315\"*?" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "We have|strong=\"H1121\"* heard with|strong=\"H1121\"* our ears, God;" + }, + { + "verseNum": 2, + "text": "You|strong=\"H3117\"* drove out|strong=\"H6466\"* the|strong=\"H8085\"* nations with|strong=\"H3117\"* your|strong=\"H8085\"* hand," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3027\"* they|strong=\"H3027\"* didn’t get|strong=\"H3027\"* the|strong=\"H3423\"* land in|strong=\"H3027\"* possession|strong=\"H3423\"* by|strong=\"H3027\"* their|strong=\"H3423\"* own|strong=\"H3027\"* sword|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "God|strong=\"H3808\"*, you|strong=\"H3588\"* are|strong=\"H6440\"* my|strong=\"H3588\"* King|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Through you|strong=\"H6680\"*, we|strong=\"H3068\"* will|strong=\"H4428\"* push down|strong=\"H6680\"* our|strong=\"H6680\"* adversaries." + }, + { + "verseNum": 6, + "text": "For|strong=\"H8034\"* I|strong=\"H6862\"* will|strong=\"H8034\"* not|strong=\"H6965\"* trust in|strong=\"H8034\"* my|strong=\"H6965\"* bow," + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3808\"* saved|strong=\"H3467\"* us|strong=\"H3588\"* from|strong=\"H2719\"* our|strong=\"H3588\"* adversaries," + }, + { + "verseNum": 8, + "text": "In|strong=\"H3588\"* God we|strong=\"H3068\"* have|strong=\"H6862\"* made our|strong=\"H3588\"* boast all|strong=\"H3467\"* day long." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3605\"* now|strong=\"H3117\"* you|strong=\"H3605\"* rejected us|strong=\"H3117\"*, and|strong=\"H3117\"* brought us|strong=\"H3117\"* to|strong=\"H3117\"* dishonor," + }, + { + "verseNum": 10, + "text": "You|strong=\"H3808\"* make us|strong=\"H2186\"* turn|strong=\"H2186\"* back|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* adversary." + }, + { + "verseNum": 11, + "text": "You|strong=\"H7725\"* have|strong=\"H6862\"* made|strong=\"H7725\"* us|strong=\"H7725\"* like|strong=\"H7725\"* sheep|strong=\"H4480\"* for|strong=\"H4480\"* food," + }, + { + "verseNum": 12, + "text": "You|strong=\"H5414\"* sell|strong=\"H5414\"* your|strong=\"H5414\"* people|strong=\"H1471\"* for|strong=\"H5414\"* nothing," + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* make|strong=\"H7235\"* us|strong=\"H5971\"* a|strong=\"H3068\"* reproach to|strong=\"H5971\"* our|strong=\"H5971\"* neighbors," + }, + { + "verseNum": 14, + "text": "You|strong=\"H7760\"* make|strong=\"H7760\"* us|strong=\"H5439\"* a|strong=\"H3068\"* byword among|strong=\"H2781\"* the|strong=\"H7760\"* nations," + }, + { + "verseNum": 15, + "text": "All day long my|strong=\"H7760\"* dishonor is|strong=\"H7218\"* before me|strong=\"H7760\"*," + }, + { + "verseNum": 16, + "text": "at|strong=\"H3117\"* the|strong=\"H3605\"* taunt of|strong=\"H3117\"* one|strong=\"H3605\"* who|strong=\"H3605\"* reproaches|strong=\"H3639\"* and|strong=\"H3117\"* verbally abuses," + }, + { + "verseNum": 17, + "text": "All|strong=\"H6440\"* this|strong=\"H6440\"* has come on|strong=\"H6440\"* us|strong=\"H6440\"*," + }, + { + "verseNum": 18, + "text": "Our|strong=\"H3605\"* heart has|strong=\"H3605\"* not|strong=\"H3808\"* turned back," + }, + { + "verseNum": 19, + "text": "though you|strong=\"H3808\"* have|strong=\"H3808\"* crushed us|strong=\"H4480\"* in|strong=\"H3808\"* the|strong=\"H4480\"* haunt of|strong=\"H4480\"* jackals," + }, + { + "verseNum": 20, + "text": "If|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* forgotten the|strong=\"H5921\"* name of|strong=\"H5921\"* our|strong=\"H5921\"* God," + }, + { + "verseNum": 21, + "text": "won’t God search this out|strong=\"H6566\"*?" + }, + { + "verseNum": 22, + "text": "Yes|strong=\"H3588\"*, for|strong=\"H3588\"* your|strong=\"H3045\"* sake we|strong=\"H3068\"* are|strong=\"H3045\"* killed all|strong=\"H3045\"* day long." + }, + { + "verseNum": 23, + "text": "Wake up|strong=\"H5921\"*!" + }, + { + "verseNum": 24, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* hide your|strong=\"H4100\"* face," + }, + { + "verseNum": 25, + "text": "For|strong=\"H6440\"* our|strong=\"H6440\"* soul is|strong=\"H4100\"* bowed down|strong=\"H6440\"* to|strong=\"H6440\"* the|strong=\"H6440\"* dust." + }, + { + "verseNum": 26, + "text": "Rise up to|strong=\"H5315\"* help us|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5921\"* heart overflows with|strong=\"H5921\"* a|strong=\"H3068\"* noble theme." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3820\"* are|strong=\"H1697\"* the|strong=\"H1697\"* most|strong=\"H4428\"* excellent of|strong=\"H4428\"* the|strong=\"H1697\"* sons of|strong=\"H4428\"* men|strong=\"H2896\"*." + }, + { + "verseNum": 3, + "text": "Strap your|strong=\"H5921\"* sword on|strong=\"H5921\"* your|strong=\"H5921\"* thigh, O|strong=\"H3068\"* mighty|strong=\"H1121\"* one|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* your|strong=\"H5921\"* majesty|strong=\"H1926\"* ride on|strong=\"H5921\"* victoriously on|strong=\"H5921\"* behalf|strong=\"H5921\"* of|strong=\"H1368\"* truth, humility, and|strong=\"H2719\"* righteousness." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* arrows are|strong=\"H1697\"* sharp." + }, + { + "verseNum": 6, + "text": "Your|strong=\"H5307\"* throne, God, is|strong=\"H3820\"* forever and|strong=\"H4428\"* ever." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5703\"* have loved righteousness, and|strong=\"H5769\"* hated wickedness." + }, + { + "verseNum": 8, + "text": "All|strong=\"H5921\"* your|strong=\"H5921\"* garments smell like|strong=\"H3651\"* myrrh, aloes, and|strong=\"H8081\"* cassia." + }, + { + "verseNum": 9, + "text": "Kings’ daughters are|strong=\"H8127\"* among|strong=\"H4480\"* your|strong=\"H3605\"* honorable women." + }, + { + "verseNum": 10, + "text": "Listen, daughter|strong=\"H1323\"*, consider, and|strong=\"H4428\"* turn your|strong=\"H4428\"* ear." + }, + { + "verseNum": 11, + "text": "So|strong=\"H7200\"* the|strong=\"H8085\"* king will|strong=\"H5971\"* desire your|strong=\"H5186\"* beauty," + }, + { + "verseNum": 12, + "text": "The|strong=\"H3588\"* daughter of|strong=\"H4428\"* Tyre comes with|strong=\"H4428\"* a|strong=\"H3068\"* gift." + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* princess inside|strong=\"H6440\"* is|strong=\"H6440\"* all|strong=\"H6440\"* glorious." + }, + { + "verseNum": 14, + "text": "She shall|strong=\"H4428\"* be|strong=\"H4428\"* led to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* in|strong=\"H4428\"* embroidered work." + }, + { + "verseNum": 15, + "text": "With|strong=\"H4428\"* gladness and|strong=\"H4428\"* rejoicing they|strong=\"H4428\"* shall|strong=\"H4428\"* be|strong=\"H4428\"* led|strong=\"H2986\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H4428\"* sons will|strong=\"H4428\"* take the|strong=\"H4428\"* place of|strong=\"H4428\"* your|strong=\"H4428\"* fathers." + }, + { + "verseNum": 17, + "text": "I|strong=\"H1121\"* will|strong=\"H1961\"* make|strong=\"H7896\"* your|strong=\"H3605\"* name to|strong=\"H1961\"* be|strong=\"H1961\"* remembered in|strong=\"H1121\"* all|strong=\"H3605\"* generations." + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "God is|strong=\"H1121\"* our|strong=\"H5921\"* refuge and|strong=\"H1121\"* strength," + }, + { + "verseNum": 2, + "text": "Therefore we|strong=\"H3068\"* won’t be afraid, though the|strong=\"H4672\"* earth changes," + }, + { + "verseNum": 3, + "text": "though its|strong=\"H5921\"* waters roar and|strong=\"H2022\"* are|strong=\"H2022\"* troubled," + }, + { + "verseNum": 4, + "text": "There|strong=\"H2022\"* is|strong=\"H4325\"* a|strong=\"H3068\"* river, the|strong=\"H7493\"* streams of|strong=\"H2022\"* which|strong=\"H4325\"* make|strong=\"H1993\"* the|strong=\"H7493\"* city of|strong=\"H2022\"* God glad," + }, + { + "verseNum": 5, + "text": "God is|strong=\"H5892\"* within her. She|strong=\"H5892\"* shall|strong=\"H5892\"* not|strong=\"H5892\"* be|strong=\"H5892\"* moved." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7130\"* nations raged. The|strong=\"H7130\"* kingdoms were|strong=\"H1077\"* moved|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H6963\"* Armies is|strong=\"H6963\"* with|strong=\"H6963\"* us|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "Come|strong=\"H6635\"*, see Yahweh|strong=\"H3068\"*’s works," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3068\"* makes|strong=\"H7760\"* wars cease to|strong=\"H3068\"* the|strong=\"H3068\"* end of|strong=\"H3068\"* the|strong=\"H3068\"* earth." + }, + { + "verseNum": 10, + "text": "“Be|strong=\"H7665\"* still|strong=\"H7673\"*, and|strong=\"H7198\"* know that|strong=\"H4421\"* I|strong=\"H5704\"* am God." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3045\"* Armies is|strong=\"H3588\"* with|strong=\"H3045\"* us|strong=\"H3045\"*." + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Oh clap your|strong=\"H1121\"* hands, all you nations." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3605\"* Yahweh|strong=\"H3068\"* Most High is|strong=\"H3605\"* awesome." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3588\"* subdues nations under|strong=\"H5921\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H7272\"* chooses our|strong=\"H5971\"* inheritance for|strong=\"H8478\"* us|strong=\"H3816\"*," + }, + { + "verseNum": 5, + "text": "God has|strong=\"H5159\"* gone up with|strong=\"H5159\"* a|strong=\"H3068\"* shout," + }, + { + "verseNum": 6, + "text": "Sing praises|strong=\"H3068\"* to|strong=\"H3068\"* God|strong=\"H3068\"*! Sing praises|strong=\"H3068\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H4428\"* God is|strong=\"H4428\"* the|strong=\"H2167\"* King|strong=\"H4428\"* of|strong=\"H4428\"* all the|strong=\"H2167\"* earth." + }, + { + "verseNum": 8, + "text": "God reigns over|strong=\"H4428\"* the|strong=\"H3605\"* nations." + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* princes of|strong=\"H3427\"* the|strong=\"H5921\"* peoples are|strong=\"H1471\"* gathered|strong=\"H1471\"* together|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Great is|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1121\"* greatly to|strong=\"H1121\"* be|strong=\"H1121\"* praised," + }, + { + "verseNum": 2, + "text": "Beautiful in|strong=\"H3068\"* elevation, the|strong=\"H3068\"* joy of|strong=\"H3068\"* the|strong=\"H3068\"* whole earth," + }, + { + "verseNum": 3, + "text": "God has|strong=\"H4428\"* shown himself in|strong=\"H4428\"* her|strong=\"H3605\"* citadels as|strong=\"H3303\"* a|strong=\"H3068\"* refuge." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3045\"*, behold, the|strong=\"H3045\"* kings assembled themselves|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* saw|strong=\"H2009\"* it|strong=\"H3588\"*, then|strong=\"H2009\"* they|strong=\"H3588\"* were|strong=\"H4428\"* amazed." + }, + { + "verseNum": 6, + "text": "Trembling took hold of|strong=\"H7200\"* them|strong=\"H1992\"* there|strong=\"H1992\"*," + }, + { + "verseNum": 7, + "text": "With|strong=\"H8033\"* the|strong=\"H3205\"* east wind, you|strong=\"H3205\"* break the|strong=\"H3205\"* ships of|strong=\"H3205\"* Tarshish." + }, + { + "verseNum": 8, + "text": "As we|strong=\"H3068\"* have heard, so|strong=\"H7307\"* we|strong=\"H3068\"* have seen," + }, + { + "verseNum": 9, + "text": "We|strong=\"H5704\"* have|strong=\"H3068\"* thought about|strong=\"H8085\"* your|strong=\"H3068\"* loving kindness, God|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "As|strong=\"H2617\"* is|strong=\"H2617\"* your|strong=\"H7130\"* name, God," + }, + { + "verseNum": 11, + "text": "Let|strong=\"H3651\"* Mount|strong=\"H4390\"* Zion be|strong=\"H8034\"* glad!" + }, + { + "verseNum": 12, + "text": "Walk about|strong=\"H2022\"* Zion|strong=\"H6726\"*, and|strong=\"H3063\"* go around her|strong=\"H1323\"*." + }, + { + "verseNum": 13, + "text": "Notice her|strong=\"H5608\"* bulwarks." + }, + { + "verseNum": 14, + "text": "For|strong=\"H4616\"* this|strong=\"H4616\"* God is|strong=\"H3820\"* our|strong=\"H7896\"* God forever|strong=\"H1755\"* and|strong=\"H3820\"* ever." + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Hear this|strong=\"H1121\"*, all you peoples." + }, + { + "verseNum": 2, + "text": "both|strong=\"H3605\"* low and|strong=\"H5971\"* high," + }, + { + "verseNum": 3, + "text": "My|strong=\"H1571\"* mouth will|strong=\"H1571\"* speak words of|strong=\"H1121\"* wisdom." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3820\"* will|strong=\"H3820\"* incline my|strong=\"H1696\"* ear to|strong=\"H1696\"* a|strong=\"H3068\"* proverb." + }, + { + "verseNum": 5, + "text": "Why should I fear in|strong=\"H4912\"* the|strong=\"H5186\"* days of|strong=\"H4912\"* evil," + }, + { + "verseNum": 6, + "text": "Those|strong=\"H5437\"* who|strong=\"H4100\"* trust in|strong=\"H3117\"* their|strong=\"H3117\"* wealth," + }, + { + "verseNum": 7, + "text": "none of|strong=\"H7230\"* them|strong=\"H5921\"* can by|strong=\"H5921\"* any means redeem his|strong=\"H5921\"* brother," + }, + { + "verseNum": 8, + "text": "For|strong=\"H5414\"* the|strong=\"H5414\"* redemption|strong=\"H6299\"* of|strong=\"H3808\"* their|strong=\"H5414\"* life is|strong=\"H3808\"* costly," + }, + { + "verseNum": 9, + "text": "that|strong=\"H5315\"* he|strong=\"H5315\"* should live on forever|strong=\"H5769\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H2421\"* he|strong=\"H3808\"* sees|strong=\"H7200\"* that|strong=\"H7200\"* wise men die;" + }, + { + "verseNum": 11, + "text": "Their|strong=\"H7200\"* inward thought is|strong=\"H3684\"* that|strong=\"H3588\"* their|strong=\"H7200\"* houses will|strong=\"H2450\"* endure forever," + }, + { + "verseNum": 12, + "text": "But|strong=\"H5921\"* man, despite|strong=\"H5921\"* his|strong=\"H7121\"* riches, doesn’t endure|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H3885\"* is the|strong=\"H3885\"* destiny of those who are|strong=\"H1077\"* foolish," + }, + { + "verseNum": 14, + "text": "They|strong=\"H6310\"* are|strong=\"H1870\"* appointed as|strong=\"H6310\"* a|strong=\"H3068\"* flock for|strong=\"H2088\"* Sheol.+ 49:14 Sheol is the place of the dead.*" + }, + { + "verseNum": 15, + "text": "But God will|strong=\"H3477\"* redeem my|strong=\"H7462\"* soul from|strong=\"H3477\"* the|strong=\"H7462\"* power of|strong=\"H4194\"* Sheol|strong=\"H7585\"*,+ 49:15 Sheol is the place of the dead.*" + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"H3027\"* afraid when|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* is|strong=\"H5315\"* made|strong=\"H3947\"* rich," + }, + { + "verseNum": 17, + "text": "for|strong=\"H3588\"* when|strong=\"H3588\"* he|strong=\"H3588\"* dies he|strong=\"H3588\"* will|strong=\"H1004\"* carry nothing away." + }, + { + "verseNum": 18, + "text": "Though|strong=\"H3588\"* while|strong=\"H3588\"* he|strong=\"H3588\"* lived he|strong=\"H3588\"* blessed his|strong=\"H3605\"* soul|strong=\"H3519\"*—" + }, + { + "verseNum": 19, + "text": "he|strong=\"H3588\"* shall|strong=\"H5315\"* go|strong=\"H3190\"* to|strong=\"H5315\"* the|strong=\"H3588\"* generation of|strong=\"H5315\"* his|strong=\"H1288\"* fathers." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* man|strong=\"H7200\"* who|strong=\"H3808\"* has|strong=\"H5331\"* riches without|strong=\"H3808\"* understanding," + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* Mighty One|strong=\"H3068\"*, God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, speaks|strong=\"H1696\"*," + }, + { + "verseNum": 2, + "text": "Out of|strong=\"H4359\"* Zion|strong=\"H6726\"*, the|strong=\"H6726\"* perfection|strong=\"H4359\"* of|strong=\"H4359\"* beauty|strong=\"H3308\"*," + }, + { + "verseNum": 3, + "text": "Our|strong=\"H6440\"* God comes|strong=\"H6440\"*, and|strong=\"H6440\"* does|strong=\"H6440\"* not|strong=\"H6440\"* keep|strong=\"H2790\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7121\"* calls|strong=\"H7121\"* to|strong=\"H7121\"* the|strong=\"H7121\"* heavens|strong=\"H8064\"* above|strong=\"H5920\"*," + }, + { + "verseNum": 5, + "text": "“Gather my|strong=\"H5921\"* saints|strong=\"H2623\"* together|strong=\"H5921\"* to|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3588\"* heavens|strong=\"H8064\"* shall|strong=\"H8064\"* declare|strong=\"H5046\"* his|strong=\"H5046\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 7, + "text": "“Hear|strong=\"H8085\"*, my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* I|strong=\"H8085\"* will|strong=\"H5971\"* speak|strong=\"H1696\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* don’t rebuke|strong=\"H3198\"* you|strong=\"H5921\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sacrifices|strong=\"H2077\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3808\"* have|strong=\"H6499\"* no|strong=\"H3808\"* need for|strong=\"H1004\"* a|strong=\"H3068\"* bull|strong=\"H6499\"* from|strong=\"H3947\"* your|strong=\"H3947\"* stall," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H3605\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* is|strong=\"H3605\"* mine," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3045\"* know|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* were|strong=\"H8398\"* hungry|strong=\"H7456\"*, I|strong=\"H3588\"* would not|strong=\"H3808\"* tell you|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "Will|strong=\"H1320\"* I|strong=\"H1320\"* eat the|strong=\"H8354\"* meat|strong=\"H1320\"* of|strong=\"H1818\"* bulls," + }, + { + "verseNum": 14, + "text": "Offer|strong=\"H2076\"* to|strong=\"H2076\"* God|strong=\"H7999\"* the|strong=\"H2076\"* sacrifice|strong=\"H2076\"* of|strong=\"H8426\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 15, + "text": "Call|strong=\"H7121\"* on|strong=\"H3117\"* me|strong=\"H7121\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7563\"* to|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* God says|strong=\"H6310\"*," + }, + { + "verseNum": 17, + "text": "since you|strong=\"H8130\"* hate|strong=\"H8130\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H7200\"* you|strong=\"H5973\"* saw|strong=\"H7200\"* a|strong=\"H3068\"* thief|strong=\"H1590\"*, you|strong=\"H5973\"* consented with|strong=\"H5973\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 19, + "text": "“You|strong=\"H7971\"* give your|strong=\"H7971\"* mouth|strong=\"H6310\"* to|strong=\"H7971\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* sit|strong=\"H3427\"* and|strong=\"H1121\"* speak|strong=\"H1696\"* against|strong=\"H1696\"* your|strong=\"H5414\"* brother." + }, + { + "verseNum": 21, + "text": "You|strong=\"H6213\"* have|strong=\"H1961\"* done|strong=\"H6213\"* these|strong=\"H6213\"* things|strong=\"H1961\"*, and|strong=\"H5869\"* I|strong=\"H3644\"* kept|strong=\"H6213\"* silent|strong=\"H2790\"*." + }, + { + "verseNum": 22, + "text": "“Now|strong=\"H4994\"* consider this|strong=\"H2063\"*, you|strong=\"H6435\"* who|strong=\"H7911\"* forget|strong=\"H7911\"* God," + }, + { + "verseNum": 23, + "text": "Whoever offers|strong=\"H2076\"* the|strong=\"H7200\"* sacrifice|strong=\"H2076\"* of|strong=\"H1870\"* thanksgiving|strong=\"H8426\"* glorifies me|strong=\"H7200\"*," + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "Have|strong=\"H1732\"* mercy on|strong=\"H5329\"* me, God, according to|strong=\"H1732\"* your|strong=\"H1732\"* loving kindness." + }, + { + "verseNum": 2, + "text": "Wash me thoroughly from|strong=\"H5030\"* my iniquity." + }, + { + "verseNum": 3, + "text": "For|strong=\"H2617\"* I|strong=\"H6588\"* know my|strong=\"H4229\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 4, + "text": "Against you|strong=\"H7235\"*, and|strong=\"H2403\"* you|strong=\"H7235\"* only|strong=\"H7235\"*, I|strong=\"H5771\"* have|strong=\"H5771\"* sinned|strong=\"H2403\"*," + }, + { + "verseNum": 5, + "text": "Behold, I|strong=\"H3588\"* was born in|strong=\"H3045\"* iniquity." + }, + { + "verseNum": 6, + "text": "Behold, you|strong=\"H6213\"* desire truth in|strong=\"H6213\"* the|strong=\"H6213\"* inward parts." + }, + { + "verseNum": 7, + "text": "Purify me with|strong=\"H5771\"* hyssop, and|strong=\"H5771\"* I|strong=\"H2005\"* will|strong=\"H5771\"* be|strong=\"H5771\"* clean." + }, + { + "verseNum": 8, + "text": "Let me|strong=\"H3045\"* hear joy and|strong=\"H2451\"* gladness," + }, + { + "verseNum": 9, + "text": "Hide your|strong=\"H3526\"* face from|strong=\"H2891\"* my sins|strong=\"H2398\"*," + }, + { + "verseNum": 10, + "text": "Create in|strong=\"H8085\"* me|strong=\"H8085\"* a|strong=\"H3068\"* clean heart|strong=\"H8085\"*, O|strong=\"H3068\"* God." + }, + { + "verseNum": 11, + "text": "Don’t throw me|strong=\"H6440\"* from|strong=\"H6440\"* your|strong=\"H3605\"* presence|strong=\"H6440\"*," + }, + { + "verseNum": 12, + "text": "Restore|strong=\"H2318\"* to|strong=\"H3820\"* me|strong=\"H3559\"* the|strong=\"H3559\"* joy of|strong=\"H7307\"* your|strong=\"H3559\"* salvation." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3947\"* I|strong=\"H6440\"* will|strong=\"H7307\"* teach transgressors your|strong=\"H3947\"* ways." + }, + { + "verseNum": 14, + "text": "Deliver|strong=\"H7725\"* me|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H7725\"* guilt of|strong=\"H7307\"* bloodshed, O|strong=\"H3068\"* God, the|strong=\"H7725\"* God of|strong=\"H7307\"* my|strong=\"H7725\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 15, + "text": "Lord, open my|strong=\"H7725\"* lips." + }, + { + "verseNum": 16, + "text": "For|strong=\"H7442\"* you|strong=\"H5337\"* don’t delight in|strong=\"H8668\"* sacrifice, or|strong=\"H1818\"* else I|strong=\"H6666\"* would give it|strong=\"H6666\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5046\"* sacrifices of|strong=\"H6310\"* God are|strong=\"H8193\"* a|strong=\"H3068\"* broken spirit." + }, + { + "verseNum": 18, + "text": "Do well in|strong=\"H2654\"* your|strong=\"H5414\"* good pleasure|strong=\"H7521\"* to|strong=\"H5414\"* Zion." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3808\"* you|strong=\"H3808\"* will|strong=\"H3820\"* delight in|strong=\"H7665\"* the|strong=\"H7665\"* sacrifices|strong=\"H2077\"* of|strong=\"H7307\"* righteousness," + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Why do you boast of|strong=\"H4905\"* mischief, mighty man?" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H5046\"* tongue plots destruction," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* love|strong=\"H2617\"* evil|strong=\"H7451\"* more than|strong=\"H3605\"* good|strong=\"H2617\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H6213\"* love all|strong=\"H6213\"* devouring words," + }, + { + "verseNum": 5, + "text": "God will|strong=\"H6664\"* likewise destroy you|strong=\"H1696\"* forever." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* righteous also will|strong=\"H1697\"* see it|strong=\"H3605\"*, and|strong=\"H1697\"* fear," + }, + { + "verseNum": 7, + "text": "“Behold, this|strong=\"H1571\"* is|strong=\"H1571\"* the|strong=\"H1571\"* man|strong=\"H2416\"* who|strong=\"H2416\"* didn’t make God his|strong=\"H5422\"* strength|strong=\"H5331\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7200\"* as|strong=\"H6662\"* for|strong=\"H5921\"* me|strong=\"H7200\"*, I|strong=\"H5921\"* am like|strong=\"H5921\"* a|strong=\"H3068\"* green olive tree in|strong=\"H5921\"* God’s house." + }, + { + "verseNum": 9, + "text": "I|strong=\"H2009\"* will|strong=\"H3808\"* give|strong=\"H7760\"* you|strong=\"H7760\"* thanks forever, because|strong=\"H7230\"* you|strong=\"H7760\"* have|strong=\"H3808\"* done|strong=\"H7760\"* it|strong=\"H7760\"*." + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* fool has|strong=\"H1732\"* said in|strong=\"H5921\"* his|strong=\"H1732\"* heart, “There is|strong=\"H1732\"* no God.”" + }, + { + "verseNum": 2, + "text": "God looks down|strong=\"H7843\"* from|strong=\"H3820\"* heaven on|strong=\"H6213\"* the|strong=\"H6213\"* children of|strong=\"H3820\"* men|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "Every|strong=\"H7200\"* one|strong=\"H1121\"* of|strong=\"H1121\"* them|strong=\"H5921\"* has|strong=\"H3426\"* gone back." + }, + { + "verseNum": 4, + "text": "Have|strong=\"H1571\"* the|strong=\"H3605\"* workers|strong=\"H6213\"* of|strong=\"H3605\"* iniquity no|strong=\"H6213\"* knowledge," + }, + { + "verseNum": 5, + "text": "There|strong=\"H3045\"* they|strong=\"H3808\"* were|strong=\"H5971\"* in|strong=\"H3899\"* great fear, where|strong=\"H3808\"* no|strong=\"H3808\"* fear was|strong=\"H3808\"*," + }, + { + "verseNum": 6, + "text": "Oh that|strong=\"H3588\"* the|strong=\"H3588\"* salvation of|strong=\"H6106\"* Israel would come|strong=\"H1961\"* out|strong=\"H8033\"* of|strong=\"H6106\"* Zion!" + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "Save me, God, by|strong=\"H1732\"* your|strong=\"H1732\"* name." + }, + { + "verseNum": 2, + "text": "Hear my|strong=\"H1732\"* prayer, God|strong=\"H3808\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H8034\"* strangers have|strong=\"H8034\"* risen up against me|strong=\"H3467\"*." + }, + { + "verseNum": 4, + "text": "Behold, God is|strong=\"H6310\"* my|strong=\"H8085\"* helper." + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* will|strong=\"H5315\"* repay the|strong=\"H5921\"* evil to|strong=\"H5921\"* my|strong=\"H7760\"* enemies|strong=\"H6965\"*." + }, + { + "verseNum": 6, + "text": "With|strong=\"H5315\"* a|strong=\"H3068\"* free will|strong=\"H5315\"* offering, I|strong=\"H2009\"* will|strong=\"H5315\"* sacrifice to|strong=\"H5315\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H7451\"* he|strong=\"H7725\"* has|strong=\"H7451\"* delivered me|strong=\"H7725\"* out|strong=\"H7725\"* of|strong=\"H7451\"* all|strong=\"H7725\"* trouble|strong=\"H7451\"*." + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 1, + "text": "Listen to|strong=\"H1732\"* my|strong=\"H1732\"* prayer, God." + }, + { + "verseNum": 2, + "text": "Attend to|strong=\"H8605\"* me, and|strong=\"H8605\"* answer me." + }, + { + "verseNum": 3, + "text": "because of|strong=\"H6030\"* the|strong=\"H6030\"* voice of|strong=\"H6030\"* the|strong=\"H6030\"* enemy," + }, + { + "verseNum": 4, + "text": "My|strong=\"H5921\"* heart is|strong=\"H7563\"* severely pained within|strong=\"H5921\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Fearfulness and|strong=\"H3820\"* trembling have|strong=\"H5307\"* come|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "I said, “Oh that I had wings like a|strong=\"H3068\"* dove!" + }, + { + "verseNum": 7, + "text": "Behold, then|strong=\"H5414\"* I|strong=\"H5414\"* would|strong=\"H4310\"* wander far off|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "“I|strong=\"H2009\"* would hurry to|strong=\"H4057\"* a|strong=\"H3068\"* shelter from|strong=\"H7368\"* the|strong=\"H3885\"* stormy wind and|strong=\"H4057\"* storm.”" + }, + { + "verseNum": 9, + "text": "Confuse them|strong=\"H7307\"*, Lord, and|strong=\"H7307\"* confound their language," + }, + { + "verseNum": 10, + "text": "Day and|strong=\"H5892\"* night they|strong=\"H3588\"* prowl around on|strong=\"H7200\"* its|strong=\"H3588\"* walls." + }, + { + "verseNum": 11, + "text": "Destructive forces are|strong=\"H3915\"* within|strong=\"H7130\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3808\"* it|strong=\"H3808\"* was|strong=\"H3808\"* not|strong=\"H3808\"* an enemy who|strong=\"H3808\"* insulted me|strong=\"H3808\"*," + }, + { + "verseNum": 13, + "text": "But|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3808\"* you|strong=\"H3588\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* like|strong=\"H3808\"* me|strong=\"H8130\"*," + }, + { + "verseNum": 14, + "text": "We took|strong=\"H3045\"* sweet fellowship together." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H1980\"* death come|strong=\"H1980\"* suddenly on|strong=\"H1980\"* them|strong=\"H3162\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H3588\"* for|strong=\"H3588\"* me|strong=\"H5921\"*, I|strong=\"H3588\"* will|strong=\"H7451\"* call on|strong=\"H5921\"* God." + }, + { + "verseNum": 17, + "text": "Evening, morning, and|strong=\"H3068\"* at|strong=\"H3068\"* noon, I|strong=\"H3068\"* will|strong=\"H3068\"* cry|strong=\"H7121\"* out in|strong=\"H3068\"* distress." + }, + { + "verseNum": 18, + "text": "He|strong=\"H1242\"* has redeemed my|strong=\"H8085\"* soul in|strong=\"H8085\"* peace|strong=\"H6963\"* from|strong=\"H8085\"* the|strong=\"H8085\"* battle that|strong=\"H8085\"* was|strong=\"H6963\"* against|strong=\"H8085\"* me|strong=\"H6963\"*," + }, + { + "verseNum": 19, + "text": "God, who|strong=\"H5315\"* is|strong=\"H5315\"* enthroned forever," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* raises his|strong=\"H8085\"* hands against|strong=\"H8085\"* his|strong=\"H8085\"* friends." + }, + { + "verseNum": 21, + "text": "His|strong=\"H7971\"* mouth was|strong=\"H3027\"* smooth as|strong=\"H3027\"* butter," + }, + { + "verseNum": 22, + "text": "Cast your|strong=\"H1697\"* burden on|strong=\"H1697\"* Yahweh|strong=\"H3068\"* and|strong=\"H8081\"* he|strong=\"H1697\"* will|strong=\"H3820\"* sustain you|strong=\"H6310\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* you|strong=\"H5414\"*, God|strong=\"H3068\"*, will|strong=\"H3068\"* bring|strong=\"H5414\"* them|strong=\"H5414\"* down|strong=\"H7993\"* into|strong=\"H5921\"* the|strong=\"H5921\"* pit of|strong=\"H3068\"* destruction." + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"H1732\"* merciful to|strong=\"H5921\"* me|strong=\"H5921\"*, God, for|strong=\"H5921\"* man wants to|strong=\"H5921\"* swallow me|strong=\"H5921\"* up|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3605\"* enemies want to|strong=\"H3117\"* swallow|strong=\"H7602\"* me|strong=\"H2603\"* up|strong=\"H7602\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* am afraid," + }, + { + "verseNum": 4, + "text": "In|strong=\"H3117\"* God, I|strong=\"H3117\"* praise his|strong=\"H3117\"* word." + }, + { + "verseNum": 5, + "text": "All|strong=\"H6213\"* day long|strong=\"H4100\"* they|strong=\"H3808\"* twist my|strong=\"H6213\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3117\"* conspire and|strong=\"H3117\"* lurk," + }, + { + "verseNum": 7, + "text": "Shall|strong=\"H5315\"* they|strong=\"H1992\"* escape by|strong=\"H8104\"* iniquity?" + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* count my|strong=\"H5921\"* wanderings." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H7760\"* my|strong=\"H7760\"* enemies shall|strong=\"H3808\"* turn|strong=\"H7760\"* back in|strong=\"H3808\"* the|strong=\"H7760\"* day that|strong=\"H3808\"* I|strong=\"H7760\"* call." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3117\"* God, I|strong=\"H3588\"* will|strong=\"H3117\"* praise|strong=\"H3588\"* his|strong=\"H7121\"* word." + }, + { + "verseNum": 11, + "text": "I|strong=\"H1697\"* have|strong=\"H3068\"* put|strong=\"H3068\"* my|strong=\"H3068\"* trust in|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Your|strong=\"H6213\"* vows are|strong=\"H4100\"* on|strong=\"H6213\"* me|strong=\"H6213\"*, God|strong=\"H3808\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H5921\"* delivered my|strong=\"H5921\"* soul from|strong=\"H5921\"* death," + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "Be|strong=\"H6440\"* merciful to|strong=\"H6440\"* me|strong=\"H6440\"*, God, be|strong=\"H6440\"* merciful to|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* cry out|strong=\"H5674\"* to|strong=\"H5704\"* God Most High," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* will|strong=\"H7121\"* send from|strong=\"H5921\"* heaven, and|strong=\"H7121\"* save me|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "My|strong=\"H7971\"* soul is|strong=\"H2617\"* among lions." + }, + { + "verseNum": 5, + "text": "Be|strong=\"H1121\"* exalted, God, above the|strong=\"H8432\"* heavens!" + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* have|strong=\"H3605\"* prepared a|strong=\"H3068\"* net for|strong=\"H5921\"* my|strong=\"H3605\"* steps." + }, + { + "verseNum": 7, + "text": "My|strong=\"H8432\"* heart|strong=\"H5315\"* is|strong=\"H5315\"* steadfast|strong=\"H3559\"*, God." + }, + { + "verseNum": 8, + "text": "Wake up, my|strong=\"H3559\"* glory! Wake up, lute and|strong=\"H3820\"* harp!" + }, + { + "verseNum": 9, + "text": "I|strong=\"H5782\"* will|strong=\"H3519\"* give thanks to|strong=\"H3519\"* you, Lord, among the|strong=\"H5782\"* peoples." + }, + { + "verseNum": 10, + "text": "For|strong=\"H5971\"* your|strong=\"H3034\"* great loving kindness reaches to|strong=\"H5971\"* the|strong=\"H3034\"* heavens," + }, + { + "verseNum": 11, + "text": "Be|strong=\"H8064\"* exalted, God|strong=\"H8064\"*, above the|strong=\"H3588\"* heavens|strong=\"H8064\"*." + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "Do you indeed speak righteousness, silent ones?" + }, + { + "verseNum": 2, + "text": "No|strong=\"H1696\"*, in|strong=\"H1696\"* your|strong=\"H8199\"* heart you|strong=\"H1696\"* plot injustice." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3027\"* wicked|strong=\"H5766\"* go astray from|strong=\"H3027\"* the|strong=\"H3027\"* womb." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H7563\"* poison is|strong=\"H7563\"* like|strong=\"H8582\"* the|strong=\"H1696\"* poison of|strong=\"H1696\"* a|strong=\"H3068\"* snake," + }, + { + "verseNum": 5, + "text": "which|strong=\"H1823\"* doesn’t listen to|strong=\"H2534\"* the|strong=\"H3644\"* voice of|strong=\"H2534\"* charmers," + }, + { + "verseNum": 6, + "text": "Break their|strong=\"H8085\"* teeth, God|strong=\"H3808\"*, in|strong=\"H8085\"* their|strong=\"H8085\"* mouth." + }, + { + "verseNum": 7, + "text": "Let them|strong=\"H3068\"* vanish like|strong=\"H3068\"* water that|strong=\"H3068\"* flows away." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H3988\"* them|strong=\"H4135\"* be|strong=\"H4135\"* like|strong=\"H3644\"* a|strong=\"H3068\"* snail which|strong=\"H4325\"* melts and|strong=\"H1980\"* passes|strong=\"H1980\"* away|strong=\"H1980\"*," + }, + { + "verseNum": 9, + "text": "Before|strong=\"H1980\"* your|strong=\"H2372\"* pots can|strong=\"H1980\"* feel the|strong=\"H1980\"* heat of|strong=\"H8121\"* the|strong=\"H1980\"* thorns," + }, + { + "verseNum": 10, + "text": "The|strong=\"H2962\"* righteous shall|strong=\"H2416\"* rejoice when|strong=\"H3644\"* he|strong=\"H2962\"* sees the|strong=\"H2962\"* vengeance." + }, + { + "verseNum": 11, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* men|strong=\"H7563\"* shall|strong=\"H7563\"* say, “Most certainly|strong=\"H3588\"* there is|strong=\"H7563\"* a|strong=\"H3068\"* reward for|strong=\"H3588\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"*." + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "Deliver|strong=\"H7971\"* me|strong=\"H7971\"* from|strong=\"H7971\"* my|strong=\"H8104\"* enemies, my|strong=\"H8104\"* God|strong=\"H7971\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"* from|strong=\"H6965\"* the|strong=\"H6965\"* workers of|strong=\"H6965\"* iniquity." + }, + { + "verseNum": 3, + "text": "For, behold, they lie in|strong=\"H1818\"* wait for my|strong=\"H5337\"* soul." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* done no|strong=\"H3808\"* wrong, yet|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H6588\"* ready to|strong=\"H3068\"* attack|strong=\"H1481\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H7200\"*, Yahweh|strong=\"H3068\"* God of|strong=\"H5771\"* Armies, the|strong=\"H7200\"* God of|strong=\"H5771\"* Israel," + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* return at|strong=\"H3478\"* evening, howling like|strong=\"H3478\"* dogs," + }, + { + "verseNum": 7, + "text": "Behold, they|strong=\"H5892\"* spew with|strong=\"H5892\"* their|strong=\"H7725\"* mouth." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, laugh at them|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "Oh, my|strong=\"H3605\"* Strength, I|strong=\"H3068\"* watch for|strong=\"H3068\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 10, + "text": "My|strong=\"H8104\"* God will|strong=\"H5797\"* go before me|strong=\"H8104\"* with|strong=\"H3588\"* his|strong=\"H8104\"* loving kindness." + }, + { + "verseNum": 11, + "text": "Don’t kill them|strong=\"H7200\"*, or|strong=\"H7200\"* my|strong=\"H7200\"* people|strong=\"H7200\"* may forget." + }, + { + "verseNum": 12, + "text": "For|strong=\"H2428\"* the|strong=\"H7911\"* sin of|strong=\"H5971\"* their|strong=\"H2026\"* mouth, and|strong=\"H5971\"* the|strong=\"H7911\"* words of|strong=\"H5971\"* their|strong=\"H2026\"* lips," + }, + { + "verseNum": 13, + "text": "Consume them|strong=\"H1697\"* in|strong=\"H1697\"* wrath." + }, + { + "verseNum": 14, + "text": "At|strong=\"H3045\"* evening let them|strong=\"H3615\"* return." + }, + { + "verseNum": 15, + "text": "They|strong=\"H5892\"* shall|strong=\"H5892\"* wander up|strong=\"H7725\"* and|strong=\"H7725\"* down|strong=\"H5437\"* for|strong=\"H5892\"* food," + }, + { + "verseNum": 16, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* sing of|strong=\"H7646\"* your|strong=\"H3808\"* strength." + }, + { + "verseNum": 17, + "text": "To|strong=\"H1961\"* you|strong=\"H3588\"*, my|strong=\"H1961\"* strength|strong=\"H5797\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* sing|strong=\"H7891\"* praises." + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "God, you|strong=\"H5921\"* have|strong=\"H5921\"* rejected us|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7725\"* have|strong=\"H8147\"* made|strong=\"H7725\"* the|strong=\"H5221\"* land tremble." + }, + { + "verseNum": 3, + "text": "You|strong=\"H7725\"* have shown your|strong=\"H7725\"* people hard things." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* given a|strong=\"H3068\"* banner to|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3588\"* fear you|strong=\"H3588\"*," + }, + { + "verseNum": 5, + "text": "So|strong=\"H7200\"* that|strong=\"H5971\"* your|strong=\"H7200\"* beloved may|strong=\"H5971\"* be|strong=\"H5971\"* delivered," + }, + { + "verseNum": 6, + "text": "God|strong=\"H5414\"* has|strong=\"H5414\"* spoken from|strong=\"H6440\"* his|strong=\"H5414\"* sanctuary:" + }, + { + "verseNum": 7, + "text": "Gilead is|strong=\"H3225\"* mine, and|strong=\"H6032\"* Manasseh is|strong=\"H3225\"* mine." + }, + { + "verseNum": 8, + "text": "Moab is|strong=\"H1696\"* my|strong=\"H1696\"* wash basin." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H3063\"* will|strong=\"H3063\"* bring me into|strong=\"H3063\"* the|strong=\"H4519\"* strong|strong=\"H4581\"* city?" + }, + { + "verseNum": 10, + "text": "Haven’t you|strong=\"H5921\"*, God, rejected us|strong=\"H5921\"*?" + }, + { + "verseNum": 11, + "text": "Give us help against|strong=\"H5892\"* the|strong=\"H5704\"* adversary," + }, + { + "verseNum": 12, + "text": "Through|strong=\"H3318\"* God|strong=\"H3808\"* we|strong=\"H3068\"* will|strong=\"H6635\"* do|strong=\"H3318\"* valiantly," + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H1732\"* cry, God." + }, + { + "verseNum": 2, + "text": "From|strong=\"H8085\"* the|strong=\"H8085\"* end of|strong=\"H8085\"* the|strong=\"H8085\"* earth, I|strong=\"H8085\"* will|strong=\"H8085\"* call|strong=\"H8085\"* to|strong=\"H8085\"* you|strong=\"H8085\"* when|strong=\"H8085\"* my|strong=\"H8085\"* heart|strong=\"H8085\"* is|strong=\"H8085\"* overwhelmed." + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* you|strong=\"H4480\"* have been a|strong=\"H3068\"* refuge for|strong=\"H7121\"* me|strong=\"H7121\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* dwell in|strong=\"H6440\"* your|strong=\"H6440\"* tent forever." + }, + { + "verseNum": 5, + "text": "For|strong=\"H5643\"* you|strong=\"H5769\"*, God, have heard my vows." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"* will|strong=\"H5414\"* prolong the|strong=\"H8085\"* king’s life." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3117\"* shall|strong=\"H4428\"* be|strong=\"H3117\"* enthroned in|strong=\"H5921\"* God’s presence|strong=\"H5921\"* forever|strong=\"H1755\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3427\"* I|strong=\"H6440\"* will|strong=\"H2617\"* sing praise|strong=\"H5769\"* to|strong=\"H6440\"* your|strong=\"H6440\"* name forever|strong=\"H5769\"*," + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* soul rests in|strong=\"H5921\"* God alone." + }, + { + "verseNum": 2, + "text": "He|strong=\"H4480\"* alone|strong=\"H4480\"* is|strong=\"H5315\"* my|strong=\"H4480\"* rock, my|strong=\"H4480\"* salvation|strong=\"H3444\"*, and|strong=\"H5315\"* my|strong=\"H4480\"* fortress." + }, + { + "verseNum": 3, + "text": "How|strong=\"H3444\"* long|strong=\"H7227\"* will|strong=\"H3808\"* you|strong=\"H3808\"* assault a|strong=\"H3068\"* man?" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* fully|strong=\"H5921\"* intend to|strong=\"H5704\"* throw him|strong=\"H5921\"* down|strong=\"H5186\"* from|strong=\"H5921\"* his|strong=\"H3605\"* lofty place|strong=\"H3605\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H7130\"* soul, wait in|strong=\"H7130\"* silence for|strong=\"H7130\"* God alone," + }, + { + "verseNum": 6, + "text": "He|strong=\"H3588\"* alone|strong=\"H4480\"* is|strong=\"H5315\"* my|strong=\"H3588\"* rock and|strong=\"H5315\"* my|strong=\"H3588\"* salvation, my|strong=\"H3588\"* fortress." + }, + { + "verseNum": 7, + "text": "My|strong=\"H3808\"* salvation|strong=\"H3444\"* and|strong=\"H6697\"* my|strong=\"H3808\"* honor is|strong=\"H1931\"* with|strong=\"H4131\"* God|strong=\"H6697\"*." + }, + { + "verseNum": 8, + "text": "Trust|strong=\"H4268\"* in|strong=\"H5921\"* him|strong=\"H5921\"* at|strong=\"H5921\"* all|strong=\"H5921\"* times, you|strong=\"H5921\"* people." + }, + { + "verseNum": 9, + "text": "Surely men|strong=\"H5971\"* of|strong=\"H6440\"* low degree are|strong=\"H5971\"* just|strong=\"H3605\"* a|strong=\"H3068\"* breath," + }, + { + "verseNum": 10, + "text": "Don’t trust in|strong=\"H1121\"* oppression." + }, + { + "verseNum": 11, + "text": "God has|strong=\"H3820\"* spoken once;" + }, + { + "verseNum": 12, + "text": "Also|strong=\"H5797\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, Lord, belongs loving kindness," + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 1, + "text": "God, you|strong=\"H1961\"* are|strong=\"H1961\"* my|strong=\"H1732\"* God." + }, + { + "verseNum": 2, + "text": "So|strong=\"H1097\"* I|strong=\"H5315\"* have|strong=\"H4325\"* seen you|strong=\"H5315\"* in|strong=\"H1320\"* the|strong=\"H4325\"* sanctuary," + }, + { + "verseNum": 3, + "text": "Because|strong=\"H3651\"* your|strong=\"H7200\"* loving kindness is|strong=\"H3651\"* better than life," + }, + { + "verseNum": 4, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H2617\"* bless you|strong=\"H3588\"* while|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5375\"* soul shall|strong=\"H2416\"* be|strong=\"H8034\"* satisfied as|strong=\"H3651\"* with|strong=\"H3651\"* the|strong=\"H5375\"* richest food." + }, + { + "verseNum": 6, + "text": "when|strong=\"H3644\"* I|strong=\"H5315\"* remember you|strong=\"H3644\"* on|strong=\"H6310\"* my|strong=\"H5315\"* bed," + }, + { + "verseNum": 7, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H5921\"* been|strong=\"H2142\"* my|strong=\"H5921\"* help." + }, + { + "verseNum": 8, + "text": "My|strong=\"H1961\"* soul stays close to|strong=\"H1961\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3225\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek my|strong=\"H8551\"* soul|strong=\"H5315\"* to|strong=\"H5315\"* destroy it|strong=\"H5315\"*" + }, + { + "verseNum": 10, + "text": "They|strong=\"H1992\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* given over to|strong=\"H1245\"* the|strong=\"H1245\"* power of|strong=\"H5315\"* the|strong=\"H1245\"* sword." + }, + { + "verseNum": 11, + "text": "But|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H5921\"* shall|strong=\"H2719\"* rejoice in|strong=\"H5921\"* God|strong=\"H3027\"*." + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H1732\"* voice, God, in|strong=\"H1732\"* my|strong=\"H1732\"* complaint." + }, + { + "verseNum": 2, + "text": "Hide me|strong=\"H6963\"* from|strong=\"H8085\"* the|strong=\"H8085\"* conspiracy of|strong=\"H6963\"* the|strong=\"H8085\"* wicked," + }, + { + "verseNum": 3, + "text": "who|strong=\"H7489\"* sharpen their|strong=\"H5641\"* tongue like a|strong=\"H3068\"* sword," + }, + { + "verseNum": 4, + "text": "to|strong=\"H1697\"* shoot|strong=\"H1869\"* innocent men from|strong=\"H1697\"* ambushes." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* encourage themselves in|strong=\"H3808\"* evil plans." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1697\"* plot|strong=\"H1697\"* injustice, saying|strong=\"H1697\"*, “We|strong=\"H1697\"* have|strong=\"H7200\"* made|strong=\"H2388\"* a|strong=\"H3068\"* perfect plan|strong=\"H1697\"*!”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3820\"* God|strong=\"H2664\"* will|strong=\"H3820\"* shoot at them|strong=\"H7130\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H1961\"* own|strong=\"H1961\"* tongues shall ruin them|strong=\"H1961\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* mankind shall|strong=\"H3956\"* be|strong=\"H3956\"* afraid." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* righteous shall|strong=\"H7919\"* be|strong=\"H3372\"* glad in|strong=\"H7919\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "Praise waits for|strong=\"H1732\"* you, God, in|strong=\"H1732\"* Zion." + }, + { + "verseNum": 2, + "text": "You|strong=\"H6726\"* who hear prayer," + }, + { + "verseNum": 3, + "text": "Sins overwhelmed me|strong=\"H8085\"*," + }, + { + "verseNum": 4, + "text": "Blessed is|strong=\"H1697\"* the|strong=\"H4480\"* one|strong=\"H4480\"* whom you|strong=\"H4480\"* choose and|strong=\"H1697\"* cause|strong=\"H1697\"* to|strong=\"H1697\"* come near," + }, + { + "verseNum": 5, + "text": "By|strong=\"H7126\"* awesome deeds of|strong=\"H1004\"* righteousness, you|strong=\"H7126\"* answer us|strong=\"H7646\"*," + }, + { + "verseNum": 6, + "text": "By|strong=\"H3605\"* your|strong=\"H3605\"* power, you|strong=\"H3605\"* form the|strong=\"H3605\"* mountains," + }, + { + "verseNum": 7, + "text": "You|strong=\"H2022\"* still the|strong=\"H3559\"* roaring of|strong=\"H2022\"* the|strong=\"H3559\"* seas," + }, + { + "verseNum": 8, + "text": "They also who dwell in|strong=\"H3220\"* faraway places are|strong=\"H1530\"* afraid at|strong=\"H3220\"* your|strong=\"H7623\"* wonders." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3372\"* visit the|strong=\"H3372\"* earth, and|strong=\"H1242\"* water it|strong=\"H1242\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* drench its|strong=\"H3588\"* furrows." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1288\"* crown the|strong=\"H1288\"* year with|strong=\"H7301\"* your|strong=\"H1288\"* bounty." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8141\"* wilderness grasslands overflow." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4057\"* pastures|strong=\"H4999\"* are|strong=\"H1524\"* covered with|strong=\"H2296\"* flocks." + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "Make a|strong=\"H3068\"* joyful shout|strong=\"H7321\"* to|strong=\"H7321\"* God, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H2167\"* to|strong=\"H8034\"* the|strong=\"H7760\"* glory|strong=\"H3519\"* of|strong=\"H8034\"* his|strong=\"H7760\"* name|strong=\"H8034\"*!" + }, + { + "verseNum": 3, + "text": "Tell God, “How|strong=\"H4100\"* awesome|strong=\"H3372\"* are|strong=\"H4100\"* your|strong=\"H3372\"* deeds|strong=\"H4639\"*!" + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H8034\"* worship|strong=\"H7812\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 5, + "text": "Come|strong=\"H3212\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* God’s deeds|strong=\"H5949\"*—" + }, + { + "verseNum": 6, + "text": "He|strong=\"H8033\"* turned|strong=\"H2015\"* the|strong=\"H5674\"* sea|strong=\"H3220\"* into|strong=\"H2015\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*." + }, + { + "verseNum": 7, + "text": "He rules|strong=\"H4910\"* by|strong=\"H5869\"* his|strong=\"H7311\"* might|strong=\"H1369\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 8, + "text": "Praise|strong=\"H8416\"* our|strong=\"H1288\"* God, you|strong=\"H1288\"* peoples|strong=\"H5971\"*!" + }, + { + "verseNum": 9, + "text": "who|strong=\"H5315\"* preserves our|strong=\"H5414\"* life|strong=\"H5315\"* among|strong=\"H3808\"* the|strong=\"H5414\"* living|strong=\"H2416\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, God, have|strong=\"H3588\"* tested|strong=\"H6884\"* us|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H7760\"* brought|strong=\"H7760\"* us|strong=\"H7760\"* into|strong=\"H7760\"* prison." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3318\"* allowed men|strong=\"H7218\"* to|strong=\"H3318\"* ride|strong=\"H7392\"* over|strong=\"H7218\"* our|strong=\"H3318\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H1004\"* will|strong=\"H1004\"* come into your|strong=\"H7999\"* temple|strong=\"H1004\"* with|strong=\"H1004\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*." + }, + { + "verseNum": 14, + "text": "which my|strong=\"H1696\"* lips|strong=\"H8193\"* promised|strong=\"H1696\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H6213\"* will|strong=\"H6213\"* offer|strong=\"H5927\"* to|strong=\"H5927\"* you|strong=\"H6213\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* of|strong=\"H6213\"* fat|strong=\"H4220\"* animals," + }, + { + "verseNum": 16, + "text": "Come|strong=\"H3212\"* and|strong=\"H3212\"* hear|strong=\"H8085\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* fear|strong=\"H3373\"* God." + }, + { + "verseNum": 17, + "text": "I|strong=\"H8478\"* cried|strong=\"H7121\"* to|strong=\"H7121\"* him|strong=\"H7121\"* with|strong=\"H6310\"* my|strong=\"H8478\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H7200\"* I|strong=\"H7200\"* cherished sin in|strong=\"H8085\"* my|strong=\"H8085\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 19, + "text": "But|strong=\"H8085\"* most certainly|strong=\"H8085\"*, God has listened|strong=\"H8085\"*." + }, + { + "verseNum": 20, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3808\"* God|strong=\"H3808\"*, who|strong=\"H5493\"* has not|strong=\"H3808\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H5493\"* prayer|strong=\"H8605\"*," + } + ] + }, + { + "chapterNum": 67, + "verses": [ + { + "verseNum": 1, + "text": "May God be|strong=\"H7892\"* merciful to|strong=\"H7892\"* us, bless us," + }, + { + "verseNum": 2, + "text": "That|strong=\"H1288\"* your|strong=\"H6440\"* way|strong=\"H6440\"* may|strong=\"H1288\"* be|strong=\"H1288\"* known on|strong=\"H6440\"* earth," + }, + { + "verseNum": 3, + "text": "let the|strong=\"H3605\"* peoples praise you|strong=\"H3605\"*, God." + }, + { + "verseNum": 4, + "text": "Oh let the|strong=\"H3605\"* nations|strong=\"H5971\"* be|strong=\"H5971\"* glad and|strong=\"H5971\"* sing for|strong=\"H3605\"* joy," + }, + { + "verseNum": 5, + "text": "Let|strong=\"H8055\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* praise|strong=\"H3588\"* you|strong=\"H3588\"*, God." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* earth has|strong=\"H3605\"* yielded its|strong=\"H3605\"* increase." + }, + { + "verseNum": 7, + "text": "God|strong=\"H5414\"* will|strong=\"H5414\"* bless|strong=\"H1288\"* us|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 68, + "verses": [ + { + "verseNum": 1, + "text": "Let God arise!" + }, + { + "verseNum": 2, + "text": "As|strong=\"H6440\"* smoke is|strong=\"H6440\"* driven|strong=\"H5127\"* away|strong=\"H5127\"*," + }, + { + "verseNum": 3, + "text": "But|strong=\"H7563\"* let the|strong=\"H6440\"* righteous be|strong=\"H7563\"* glad." + }, + { + "verseNum": 4, + "text": "Sing to|strong=\"H6440\"* God! Sing praises to|strong=\"H6440\"* his|strong=\"H6440\"* name!" + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* father of|strong=\"H6440\"* the|strong=\"H6440\"* fatherless, and|strong=\"H6440\"* a|strong=\"H3068\"* defender of|strong=\"H6440\"* the|strong=\"H6440\"* widows," + }, + { + "verseNum": 6, + "text": "God sets the|strong=\"H6944\"* lonely in|strong=\"H4583\"* families." + }, + { + "verseNum": 7, + "text": "God, when|strong=\"H3318\"* you|strong=\"H3318\"* went|strong=\"H3318\"* out|strong=\"H3318\"* before|strong=\"H3427\"* your|strong=\"H3318\"* people|strong=\"H3427\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* earth trembled." + }, + { + "verseNum": 9, + "text": "You|strong=\"H6440\"*, God|strong=\"H8064\"*, sent a|strong=\"H3068\"* plentiful rain." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H3559\"* congregation lived therein." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3559\"* Lord announced the|strong=\"H3559\"* word." + }, + { + "verseNum": 12, + "text": "“Kings of|strong=\"H6635\"* armies|strong=\"H6635\"* flee! They|strong=\"H5414\"* flee!”" + }, + { + "verseNum": 13, + "text": "while|strong=\"H1004\"* you|strong=\"H1004\"* sleep among the|strong=\"H2505\"* camp fires," + }, + { + "verseNum": 14, + "text": "When|strong=\"H7901\"* the|strong=\"H7901\"* Almighty scattered kings in|strong=\"H7901\"* her|strong=\"H7901\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H6566\"* mountains of|strong=\"H4428\"* Bashan are|strong=\"H4428\"* majestic mountains." + }, + { + "verseNum": 16, + "text": "Why do you|strong=\"H2022\"* look in|strong=\"H2022\"* envy, you|strong=\"H2022\"* rugged mountains|strong=\"H2022\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* chariots of|strong=\"H3068\"* God|strong=\"H3068\"* are|strong=\"H4100\"* tens of|strong=\"H3068\"* thousands and|strong=\"H3068\"* thousands of|strong=\"H3068\"* thousands." + }, + { + "verseNum": 18, + "text": "You have|strong=\"H6944\"* ascended on|strong=\"H7393\"* high." + }, + { + "verseNum": 19, + "text": "Blessed be the|strong=\"H3947\"* Lord|strong=\"H3050\"*, who daily bears our|strong=\"H3947\"* burdens," + }, + { + "verseNum": 20, + "text": "God is|strong=\"H3117\"* to|strong=\"H3117\"* us|strong=\"H3117\"* a|strong=\"H3068\"* God of|strong=\"H3117\"* deliverance|strong=\"H3444\"*." + }, + { + "verseNum": 21, + "text": "But God|strong=\"H3069\"* will|strong=\"H3069\"* strike through the|strong=\"H3069\"* head of|strong=\"H4194\"* his enemies," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1980\"* Lord said, “I|strong=\"H1980\"* will bring|strong=\"H1980\"* you|strong=\"H1980\"* again from|strong=\"H1980\"* Bashan," + }, + { + "verseNum": 23, + "text": "that|strong=\"H7725\"* you|strong=\"H7725\"* may|strong=\"H7725\"* crush them|strong=\"H7725\"*, dipping your|strong=\"H7725\"* foot in|strong=\"H7725\"* blood," + }, + { + "verseNum": 24, + "text": "They|strong=\"H7272\"* have|strong=\"H7272\"* seen your|strong=\"H4480\"* processions, God," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* singers went|strong=\"H4428\"* before|strong=\"H7200\"*, the|strong=\"H7200\"* minstrels followed after|strong=\"H7200\"*," + }, + { + "verseNum": 26, + "text": "“Bless God in|strong=\"H8432\"* the|strong=\"H8432\"* congregations," + }, + { + "verseNum": 27, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* little Benjamin, their|strong=\"H3068\"* ruler," + }, + { + "verseNum": 28, + "text": "Your|strong=\"H8033\"* God has|strong=\"H3063\"* commanded your|strong=\"H8033\"* strength." + }, + { + "verseNum": 29, + "text": "Because of|strong=\"H6466\"* your|strong=\"H6680\"* temple at|strong=\"H6680\"* Jerusalem," + }, + { + "verseNum": 30, + "text": "Rebuke the|strong=\"H5921\"* wild animal of|strong=\"H4428\"* the|strong=\"H5921\"* reeds," + }, + { + "verseNum": 31, + "text": "Princes shall|strong=\"H5971\"* come|strong=\"H5971\"* out of|strong=\"H5971\"* Egypt." + }, + { + "verseNum": 32, + "text": "Sing to|strong=\"H3027\"* God|strong=\"H3027\"*, you|strong=\"H4480\"* kingdoms of|strong=\"H3027\"* the|strong=\"H4480\"* earth!" + }, + { + "verseNum": 33, + "text": "to|strong=\"H4467\"* him who|strong=\"H7891\"* rides on the|strong=\"H2167\"* heaven of|strong=\"H4467\"* heavens, which are|strong=\"H4467\"* of|strong=\"H4467\"* old;" + }, + { + "verseNum": 34, + "text": "Ascribe|strong=\"H5414\"* strength|strong=\"H5797\"* to|strong=\"H5414\"* God|strong=\"H5414\"*!" + }, + { + "verseNum": 35, + "text": "You|strong=\"H5414\"* are|strong=\"H3478\"* awesome, God|strong=\"H5414\"*, in|strong=\"H5921\"* your|strong=\"H5414\"* sanctuaries." + } + ] + }, + { + "chapterNum": 69, + "verses": [ + { + "verseNum": 1, + "text": "Save me|strong=\"H5921\"*, God," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* sink in|strong=\"H5315\"* deep mire, where there|strong=\"H5704\"* is|strong=\"H5315\"* no foothold." + }, + { + "verseNum": 3, + "text": "I am weary with|strong=\"H4325\"* my crying." + }, + { + "verseNum": 4, + "text": "Those who|strong=\"H7121\"* hate me|strong=\"H7121\"* without a|strong=\"H3068\"* cause|strong=\"H7121\"* are|strong=\"H5869\"* more than the|strong=\"H7121\"* hairs of|strong=\"H5869\"* my|strong=\"H3615\"* head." + }, + { + "verseNum": 5, + "text": "God|strong=\"H3808\"*, you|strong=\"H7725\"* know my|strong=\"H7725\"* foolishness." + }, + { + "verseNum": 6, + "text": "Don’t let|strong=\"H3808\"* those|strong=\"H4480\"* who|strong=\"H3045\"* wait for|strong=\"H3045\"* you|strong=\"H3045\"* be|strong=\"H3808\"* shamed through|strong=\"H4480\"* me|strong=\"H4480\"*, Lord Yahweh|strong=\"H3068\"* of|strong=\"H4480\"* Armies|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "Because for|strong=\"H6960\"* your|strong=\"H1245\"* sake, I|strong=\"H3478\"* have|strong=\"H3478\"* borne reproach|strong=\"H3637\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* become|strong=\"H5375\"* a|strong=\"H3068\"* stranger to|strong=\"H5921\"* my|strong=\"H5921\"* brothers," + }, + { + "verseNum": 9, + "text": "For|strong=\"H1121\"* the|strong=\"H1961\"* zeal of|strong=\"H1121\"* your|strong=\"H1961\"* house consumes me|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* wept and|strong=\"H1004\"* I|strong=\"H3588\"* fasted," + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* I|strong=\"H5315\"* made|strong=\"H1961\"* sackcloth my|strong=\"H1961\"* clothing," + }, + { + "verseNum": 12, + "text": "Those|strong=\"H1992\"* who|strong=\"H1992\"* sit|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H5414\"* gate talk about|strong=\"H1961\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "But as|strong=\"H3427\"* for|strong=\"H3427\"* me, my|strong=\"H8354\"* prayer is|strong=\"H8179\"* to|strong=\"H3427\"* you|strong=\"H3427\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H3427\"* an|strong=\"H3427\"* acceptable time." + }, + { + "verseNum": 14, + "text": "Deliver me|strong=\"H6030\"* out of|strong=\"H3068\"* the|strong=\"H3068\"* mire, and|strong=\"H3068\"* don’t let|strong=\"H6256\"* me|strong=\"H6030\"* sink." + }, + { + "verseNum": 15, + "text": "Don’t let the|strong=\"H5337\"* flood|strong=\"H4325\"* waters|strong=\"H4325\"* overwhelm me|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "Answer me|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* your|strong=\"H5921\"* loving kindness is|strong=\"H6310\"* good." + }, + { + "verseNum": 17, + "text": "Don’t hide your|strong=\"H3068\"* face|strong=\"H6437\"* from|strong=\"H3068\"* your|strong=\"H3068\"* servant," + }, + { + "verseNum": 18, + "text": "Draw near|strong=\"H6440\"* to|strong=\"H6440\"* my|strong=\"H5641\"* soul and|strong=\"H6030\"* redeem it|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5315\"* know my|strong=\"H6299\"* reproach, my|strong=\"H6299\"* shame, and|strong=\"H7126\"* my|strong=\"H6299\"* dishonor." + }, + { + "verseNum": 20, + "text": "Reproach|strong=\"H2781\"* has|strong=\"H3045\"* broken my|strong=\"H3605\"* heart, and|strong=\"H3045\"* I|strong=\"H3045\"* am full|strong=\"H3605\"* of|strong=\"H3605\"* heaviness." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3808\"* also|strong=\"H3820\"* gave me|strong=\"H4672\"* poison for|strong=\"H6960\"* my|strong=\"H4672\"* food." + }, + { + "verseNum": 22, + "text": "Let|strong=\"H5414\"* their|strong=\"H5414\"* table before them|strong=\"H5414\"* become a|strong=\"H3068\"* snare." + }, + { + "verseNum": 23, + "text": "Let|strong=\"H1961\"* their|strong=\"H6440\"* eyes be|strong=\"H1961\"* darkened, so|strong=\"H1961\"* that|strong=\"H1961\"* they|strong=\"H6440\"* can’t see." + }, + { + "verseNum": 24, + "text": "Pour out|strong=\"H7200\"* your|strong=\"H7200\"* indignation on|strong=\"H7200\"* them|strong=\"H7200\"*." + }, + { + "verseNum": 25, + "text": "Let their|strong=\"H5921\"* habitation be|strong=\"H2195\"* desolate." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3427\"* they persecute him|strong=\"H1961\"* whom you|strong=\"H8074\"* have|strong=\"H1961\"* wounded." + }, + { + "verseNum": 27, + "text": "Charge them|strong=\"H5221\"* with|strong=\"H2491\"* crime upon crime." + }, + { + "verseNum": 28, + "text": "Let|strong=\"H5414\"* them|strong=\"H5414\"* be|strong=\"H5414\"* blotted out|strong=\"H5414\"* of|strong=\"H5921\"* the|strong=\"H5921\"* book of|strong=\"H5921\"* life," + }, + { + "verseNum": 29, + "text": "But|strong=\"H6662\"* I am in|strong=\"H3789\"* pain and|strong=\"H6662\"* distress." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3444\"* will|strong=\"H3444\"* praise the|strong=\"H7682\"* name of|strong=\"H3444\"* God with|strong=\"H6041\"* a|strong=\"H3068\"* song," + }, + { + "verseNum": 31, + "text": "It|strong=\"H8034\"* will|strong=\"H8034\"* please Yahweh|strong=\"H3068\"* better than an ox," + }, + { + "verseNum": 32, + "text": "The|strong=\"H3068\"* humble have|strong=\"H3068\"* seen it|strong=\"H3068\"*, and|strong=\"H3068\"* are|strong=\"H3068\"* glad|strong=\"H3190\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H2421\"* Yahweh|strong=\"H3068\"* hears the|strong=\"H7200\"* needy," + }, + { + "verseNum": 34, + "text": "Let|strong=\"H3808\"* heaven and|strong=\"H3068\"* earth praise|strong=\"H3588\"* him|strong=\"H8085\"*;" + }, + { + "verseNum": 35, + "text": "For|strong=\"H3605\"* God|strong=\"H8064\"* will|strong=\"H8064\"* save Zion, and|strong=\"H8064\"* build the|strong=\"H3605\"* cities of|strong=\"H3605\"* Judah." + }, + { + "verseNum": 36, + "text": "The|strong=\"H3588\"* children|strong=\"H1129\"* also|strong=\"H3063\"* of|strong=\"H3427\"* his|strong=\"H3588\"* servants|strong=\"H8033\"* shall|strong=\"H5892\"* inherit|strong=\"H3423\"* it|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 70, + "verses": [ + { + "verseNum": 1, + "text": "Hurry, God, to|strong=\"H1732\"* deliver me|strong=\"H2142\"*." + }, + { + "verseNum": 2, + "text": "Let them|strong=\"H3068\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* confounded who|strong=\"H3068\"* seek my|strong=\"H3068\"* soul." + }, + { + "verseNum": 3, + "text": "Let|strong=\"H5315\"* them be|strong=\"H5315\"* turned|strong=\"H5472\"* because of|strong=\"H5315\"* their|strong=\"H1245\"* shame|strong=\"H3637\"*" + }, + { + "verseNum": 4, + "text": "Let|strong=\"H7725\"* all|strong=\"H5921\"* those|strong=\"H5921\"* who seek you|strong=\"H5921\"* rejoice and|strong=\"H7725\"* be|strong=\"H7725\"* glad in|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3605\"* I|strong=\"H3605\"* am poor and|strong=\"H8055\"* needy." + } + ] + }, + { + "chapterNum": 71, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* you|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"* in|strong=\"H5186\"* your|strong=\"H5186\"* righteousness|strong=\"H6666\"*, and|strong=\"H6666\"* rescue|strong=\"H5337\"* me|strong=\"H5337\"*." + }, + { + "verseNum": 3, + "text": "Be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H3467\"* a|strong=\"H3068\"* rock|strong=\"H6697\"* of|strong=\"H6697\"* refuge to|strong=\"H1961\"* which|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H1961\"* always|strong=\"H8548\"* go|strong=\"H1961\"*." + }, + { + "verseNum": 4, + "text": "Rescue|strong=\"H6403\"* me|strong=\"H3027\"*, my|strong=\"H3027\"* God|strong=\"H3027\"*, from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are my|strong=\"H3588\"* hope|strong=\"H8615\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* have|strong=\"H5921\"* relied|strong=\"H5564\"* on|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* womb|strong=\"H4578\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1961\"* am|strong=\"H1961\"* a|strong=\"H3068\"* marvel|strong=\"H4159\"* to|strong=\"H1961\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 8, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* your|strong=\"H3605\"* praise|strong=\"H8416\"*," + }, + { + "verseNum": 9, + "text": "Don’t reject|strong=\"H5800\"* me|strong=\"H7993\"* in|strong=\"H3615\"* my|strong=\"H3615\"* old|strong=\"H2209\"* age|strong=\"H2209\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* my|strong=\"H8104\"* enemies talk about me|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "saying, “God has|strong=\"H3588\"* forsaken|strong=\"H5800\"* him|strong=\"H7291\"*." + }, + { + "verseNum": 12, + "text": "God, don’t be|strong=\"H4480\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 13, + "text": "Let|strong=\"H5315\"* my|strong=\"H1245\"* accusers|strong=\"H7853\"* be|strong=\"H5315\"* disappointed and|strong=\"H5315\"* consumed|strong=\"H3615\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3605\"* I|strong=\"H5921\"* will|strong=\"H3605\"* always|strong=\"H3605\"* hope|strong=\"H3176\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* will|strong=\"H3808\"* tell|strong=\"H5608\"* about|strong=\"H3045\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H2142\"* will|strong=\"H3069\"* come|strong=\"H2142\"* with|strong=\"H1369\"* the|strong=\"H3069\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"* of|strong=\"H3069\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 17, + "text": "God, you|strong=\"H5704\"* have taught|strong=\"H3925\"* me|strong=\"H5046\"* from|strong=\"H5704\"* my|strong=\"H5046\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 18, + "text": "Yes|strong=\"H1571\"*, even|strong=\"H1571\"* when|strong=\"H5704\"* I|strong=\"H5704\"* am old|strong=\"H2209\"* and|strong=\"H1571\"* gray-haired|strong=\"H7872\"*, God, don’t forsake|strong=\"H5800\"* me|strong=\"H5046\"*," + }, + { + "verseNum": 19, + "text": "God|strong=\"H4310\"*, your|strong=\"H6213\"* righteousness|strong=\"H6666\"* also|strong=\"H6213\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6213\"* heavens|strong=\"H4791\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H7725\"*, who|strong=\"H7227\"* have|strong=\"H7200\"* shown|strong=\"H7200\"* us|strong=\"H7725\"* many|strong=\"H7227\"* and|strong=\"H7725\"* bitter troubles|strong=\"H6869\"*," + }, + { + "verseNum": 21, + "text": "Increase|strong=\"H7235\"* my|strong=\"H7235\"* honor" + }, + { + "verseNum": 22, + "text": "I|strong=\"H1571\"* will|strong=\"H3478\"* also|strong=\"H1571\"* praise|strong=\"H3034\"* you|strong=\"H3034\"* with|strong=\"H3627\"* the|strong=\"H1571\"* harp|strong=\"H3658\"* for|strong=\"H3478\"* your|strong=\"H3034\"* faithfulness, my|strong=\"H3478\"* God." + }, + { + "verseNum": 23, + "text": "My|strong=\"H3588\"* lips|strong=\"H8193\"* shall|strong=\"H5315\"* shout|strong=\"H7442\"* for|strong=\"H3588\"* joy|strong=\"H7442\"*!" + }, + { + "verseNum": 24, + "text": "My|strong=\"H3605\"* tongue|strong=\"H3956\"* will|strong=\"H1571\"* also|strong=\"H1571\"* talk|strong=\"H1897\"* about|strong=\"H3117\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*," + } + ] + }, + { + "chapterNum": 72, + "verses": [ + { + "verseNum": 1, + "text": "God|strong=\"H5414\"*, give|strong=\"H5414\"* the|strong=\"H5414\"* king|strong=\"H4428\"* your|strong=\"H5414\"* justice|strong=\"H4941\"*;" + }, + { + "verseNum": 2, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* judge|strong=\"H1777\"* your|strong=\"H1777\"* people|strong=\"H5971\"* with|strong=\"H5971\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5375\"* mountains|strong=\"H2022\"* shall|strong=\"H5971\"* bring|strong=\"H5375\"* prosperity|strong=\"H7965\"* to|strong=\"H5971\"* the|strong=\"H5375\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* judge|strong=\"H8199\"* the|strong=\"H8199\"* poor|strong=\"H6041\"* of|strong=\"H1121\"* the|strong=\"H8199\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H6440\"* shall|strong=\"H6440\"* fear|strong=\"H3372\"* you|strong=\"H6440\"* while|strong=\"H5973\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* endures|strong=\"H1755\"*;" + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* will|strong=\"H3381\"* come|strong=\"H3381\"* down|strong=\"H3381\"* like|strong=\"H3381\"* rain|strong=\"H4306\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mown|strong=\"H1488\"* grass," + }, + { + "verseNum": 7, + "text": "In|strong=\"H3117\"* his|strong=\"H3117\"* days|strong=\"H3117\"*, the|strong=\"H3117\"* righteous|strong=\"H6662\"* shall|strong=\"H3117\"* flourish|strong=\"H6524\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* shall|strong=\"H3220\"* have|strong=\"H5104\"* dominion|strong=\"H7287\"* also from|strong=\"H5704\"* sea|strong=\"H3220\"* to|strong=\"H5704\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 9, + "text": "Those who dwell in|strong=\"H6440\"* the|strong=\"H6440\"* wilderness|strong=\"H6728\"* shall|strong=\"H6440\"* bow|strong=\"H3766\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7725\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Tarshish|strong=\"H8659\"* and|strong=\"H7725\"* of|strong=\"H4428\"* the|strong=\"H7725\"* islands will|strong=\"H4428\"* bring|strong=\"H7725\"* tribute|strong=\"H4503\"*." + }, + { + "verseNum": 11, + "text": "Yes, all|strong=\"H3605\"* kings|strong=\"H4428\"* shall|strong=\"H1471\"* fall down|strong=\"H7812\"* before him|strong=\"H5647\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5826\"* deliver|strong=\"H5337\"* the|strong=\"H3588\"* needy|strong=\"H6041\"* when|strong=\"H3588\"* he|strong=\"H3588\"* cries|strong=\"H7768\"*;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H5921\"* will|strong=\"H5315\"* have|strong=\"H2347\"* pity|strong=\"H2347\"* on|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* and|strong=\"H5315\"* needy|strong=\"H1800\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1818\"* will|strong=\"H5869\"* redeem|strong=\"H1350\"* their|strong=\"H1350\"* soul|strong=\"H5315\"* from|strong=\"H5315\"* oppression|strong=\"H8496\"* and|strong=\"H5869\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3117\"* will|strong=\"H5414\"* live|strong=\"H2421\"*; and|strong=\"H3117\"* Sheba|strong=\"H7614\"*’s gold|strong=\"H2091\"* will|strong=\"H5414\"* be|strong=\"H3117\"* given|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "Abundance|strong=\"H6451\"* of|strong=\"H5892\"* grain|strong=\"H1250\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* throughout|strong=\"H5892\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 17, + "text": "His|strong=\"H3605\"* name|strong=\"H8034\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 18, + "text": "Praise|strong=\"H1288\"* be|strong=\"H3068\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"* God|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 19, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H5769\"* his|strong=\"H3605\"* glorious|strong=\"H3519\"* name|strong=\"H8034\"* forever|strong=\"H5769\"*!" + }, + { + "verseNum": 20, + "text": "This|strong=\"H1732\"* ends the|strong=\"H1732\"* prayers|strong=\"H8605\"* by|strong=\"H3615\"* David|strong=\"H1732\"*, the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jesse|strong=\"H3448\"*." + } + ] + }, + { + "chapterNum": 73, + "verses": [ + { + "verseNum": 1, + "text": "Surely God+ 73:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* is|strong=\"H2896\"* good|strong=\"H2896\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "But as|strong=\"H7272\"* for|strong=\"H7272\"* me, my|strong=\"H8210\"* feet|strong=\"H7272\"* were|strong=\"H7272\"* almost|strong=\"H4592\"* gone|strong=\"H5186\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was envious|strong=\"H7065\"* of|strong=\"H7965\"* the|strong=\"H7200\"* arrogant|strong=\"H1984\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* there are|strong=\"H4194\"* no struggles in|strong=\"H4194\"* their|strong=\"H3588\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* are|strong=\"H5973\"* free|strong=\"H5973\"* from|strong=\"H5973\"* burdens of|strong=\"H5999\"* men," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* pride|strong=\"H1346\"* is|strong=\"H3651\"* like|strong=\"H3651\"* a|strong=\"H3068\"* chain|strong=\"H6059\"* around their|strong=\"H3651\"* neck." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H3318\"* eyes|strong=\"H5869\"* bulge with|strong=\"H3318\"* fat|strong=\"H2459\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H7451\"* scoff and|strong=\"H1696\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* malice." + }, + { + "verseNum": 9, + "text": "They|strong=\"H6310\"* have|strong=\"H1980\"* set|strong=\"H1980\"* their|strong=\"H8064\"* mouth|strong=\"H6310\"* in|strong=\"H1980\"* the|strong=\"H1980\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* their|strong=\"H7725\"* people|strong=\"H5971\"* return|strong=\"H7725\"* to|strong=\"H7725\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3045\"* say, “How|strong=\"H3045\"* does|strong=\"H3426\"* God know|strong=\"H3045\"*?" + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, these are|strong=\"H7563\"* the|strong=\"H2009\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 13, + "text": "Surely I|strong=\"H2135\"* have cleansed|strong=\"H2135\"* my|strong=\"H7364\"* heart|strong=\"H3824\"* in|strong=\"H7364\"* vain|strong=\"H7385\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3117\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* plagued|strong=\"H5060\"*," + }, + { + "verseNum": 15, + "text": "If|strong=\"H2009\"* I|strong=\"H2009\"* had|strong=\"H1121\"* said, “I|strong=\"H2009\"* will|strong=\"H1121\"* speak|strong=\"H5608\"* thus|strong=\"H3644\"*”," + }, + { + "verseNum": 16, + "text": "When|strong=\"H3045\"* I|strong=\"H3045\"* tried to|strong=\"H2803\"* understand|strong=\"H3045\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 17, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* entered|strong=\"H5704\"* God’s sanctuary|strong=\"H4720\"*," + }, + { + "verseNum": 18, + "text": "Surely|strong=\"H5307\"* you set|strong=\"H7896\"* them|strong=\"H7896\"* in|strong=\"H5307\"* slippery|strong=\"H2513\"* places|strong=\"H2513\"*." + }, + { + "verseNum": 19, + "text": "How they|strong=\"H7281\"* are|strong=\"H1961\"* suddenly|strong=\"H7281\"* destroyed|strong=\"H8552\"*!" + }, + { + "verseNum": 20, + "text": "As a|strong=\"H3068\"* dream|strong=\"H2472\"* when|strong=\"H2472\"* one wakes up|strong=\"H5782\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* soul was|strong=\"H3824\"* grieved|strong=\"H2556\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3045\"* was|strong=\"H1961\"* so|strong=\"H1961\"* senseless|strong=\"H1198\"* and|strong=\"H3045\"* ignorant|strong=\"H3045\"*." + }, + { + "verseNum": 23, + "text": "Nevertheless, I|strong=\"H3027\"* am continually|strong=\"H8548\"* with|strong=\"H5973\"* you|strong=\"H5973\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H3947\"* will|strong=\"H3519\"* guide|strong=\"H5148\"* me|strong=\"H3947\"* with|strong=\"H3947\"* your|strong=\"H3947\"* counsel|strong=\"H6098\"*," + }, + { + "verseNum": 25, + "text": "Whom|strong=\"H4310\"* do|strong=\"H4310\"* I|strong=\"H3808\"* have|strong=\"H2654\"* in|strong=\"H2654\"* heaven|strong=\"H8064\"*?" + }, + { + "verseNum": 26, + "text": "My|strong=\"H3615\"* flesh|strong=\"H7607\"* and|strong=\"H5769\"* my|strong=\"H3615\"* heart|strong=\"H3824\"* fails|strong=\"H3615\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H4480\"* far|strong=\"H4480\"* from|strong=\"H4480\"* you|strong=\"H3588\"* shall|strong=\"H2181\"* perish." + }, + { + "verseNum": 28, + "text": "But|strong=\"H3605\"* it|strong=\"H7896\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3605\"* me|strong=\"H7896\"* to|strong=\"H2896\"* come close|strong=\"H7896\"* to|strong=\"H2896\"* God|strong=\"H3069\"*." + } + ] + }, + { + "chapterNum": 74, + "verses": [ + { + "verseNum": 1, + "text": "God, why|strong=\"H4100\"* have|strong=\"H6629\"* you|strong=\"H4100\"* rejected|strong=\"H2186\"* us|strong=\"H6629\"* forever|strong=\"H5331\"*?" + }, + { + "verseNum": 2, + "text": "Remember|strong=\"H2142\"* your|strong=\"H2142\"* congregation|strong=\"H5712\"*, which|strong=\"H2088\"* you|strong=\"H5159\"* purchased|strong=\"H7069\"* of|strong=\"H7626\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 3, + "text": "Lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H3605\"* feet|strong=\"H6471\"* to|strong=\"H7489\"* the|strong=\"H3605\"* perpetual|strong=\"H5331\"* ruins|strong=\"H4876\"*," + }, + { + "verseNum": 4, + "text": "Your|strong=\"H7760\"* adversaries|strong=\"H6887\"* have|strong=\"H6887\"* roared|strong=\"H7580\"* in|strong=\"H7130\"* the|strong=\"H7760\"* middle|strong=\"H7130\"* of|strong=\"H7130\"* your|strong=\"H7760\"* assembly|strong=\"H4150\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3045\"* behaved like|strong=\"H6086\"* men wielding axes|strong=\"H7134\"*," + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* they|strong=\"H3162\"* break all|strong=\"H3162\"* its|strong=\"H3162\"* carved|strong=\"H6603\"* work|strong=\"H6603\"* down|strong=\"H1986\"* with|strong=\"H1986\"* hatchet|strong=\"H3781\"* and|strong=\"H6258\"* hammers|strong=\"H3597\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H4908\"* have|strong=\"H8034\"* burned|strong=\"H7971\"* your|strong=\"H7971\"* sanctuary|strong=\"H4720\"* to|strong=\"H7971\"* the|strong=\"H7971\"* ground." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3605\"* said in|strong=\"H3162\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*, “We|strong=\"H3605\"* will|strong=\"H3820\"* crush them|strong=\"H8313\"* completely|strong=\"H3605\"*.”" + }, + { + "verseNum": 9, + "text": "We|strong=\"H5704\"* see|strong=\"H7200\"* no|strong=\"H3808\"* miraculous signs." + }, + { + "verseNum": 10, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"*, God, shall|strong=\"H8034\"* the|strong=\"H5704\"* adversary|strong=\"H6862\"* reproach|strong=\"H2778\"*?" + }, + { + "verseNum": 11, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H7725\"* draw|strong=\"H7725\"* back|strong=\"H7725\"* your|strong=\"H7725\"* hand|strong=\"H3027\"*, even your|strong=\"H7725\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 12, + "text": "Yet God is|strong=\"H4428\"* my|strong=\"H7130\"* King|strong=\"H4428\"* of|strong=\"H4428\"* old|strong=\"H6924\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* divided|strong=\"H6565\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* by|strong=\"H5921\"* your|strong=\"H5921\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* broke|strong=\"H7533\"* the|strong=\"H5414\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* Leviathan|strong=\"H3882\"* in|strong=\"H5414\"* pieces." + }, + { + "verseNum": 15, + "text": "You opened up|strong=\"H3001\"* spring|strong=\"H4599\"* and|strong=\"H5158\"* stream|strong=\"H5158\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* yours, the|strong=\"H3117\"* night|strong=\"H3915\"* is|strong=\"H3117\"* also|strong=\"H3117\"* yours." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* have|strong=\"H3605\"* set|strong=\"H5324\"* all|strong=\"H3605\"* the|strong=\"H3605\"* boundaries|strong=\"H1367\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "Remember|strong=\"H2142\"* this|strong=\"H2063\"*, that|strong=\"H5971\"* the|strong=\"H3068\"* enemy has|strong=\"H3068\"* mocked you|strong=\"H5971\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Don’t deliver|strong=\"H5414\"* the|strong=\"H5414\"* soul|strong=\"H5315\"* of|strong=\"H5315\"* your|strong=\"H5414\"* dove to|strong=\"H5414\"* wild beasts|strong=\"H2416\"*." + }, + { + "verseNum": 20, + "text": "Honor your|strong=\"H3588\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 21, + "text": "Don’t let|strong=\"H7725\"* the|strong=\"H7725\"* oppressed|strong=\"H6041\"* return|strong=\"H7725\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 22, + "text": "Arise|strong=\"H6965\"*, God! Plead|strong=\"H7378\"* your|strong=\"H3605\"* own cause|strong=\"H7379\"*." + }, + { + "verseNum": 23, + "text": "Don’t forget|strong=\"H7911\"* the|strong=\"H5927\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H7911\"* adversaries|strong=\"H6887\"*." + } + ] + }, + { + "chapterNum": 75, + "verses": [ + { + "verseNum": 1, + "text": "We give thanks to|strong=\"H7892\"* you, God." + }, + { + "verseNum": 2, + "text": "When I|strong=\"H8034\"* choose the|strong=\"H3034\"* appointed time," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* earth and|strong=\"H3947\"* all|strong=\"H3947\"* its|strong=\"H3588\"* inhabitants quake." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3605\"* said to|strong=\"H3427\"* the|strong=\"H3605\"* arrogant, “Don’t boast!”" + }, + { + "verseNum": 5, + "text": "Don’t lift|strong=\"H7311\"* up|strong=\"H7311\"* your|strong=\"H7311\"* horn|strong=\"H7161\"* on|strong=\"H7161\"* high|strong=\"H7311\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H7311\"* neither from the|strong=\"H1696\"* east, nor from the|strong=\"H1696\"* west," + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H3808\"* the|strong=\"H3588\"* judge." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* in|strong=\"H2088\"* Yahweh|strong=\"H3068\"*’s hand there|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* cup," + }, + { + "verseNum": 9, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* declare this|strong=\"H2088\"* forever|strong=\"H3605\"*:" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5046\"* will|strong=\"H3290\"* cut off all|strong=\"H5769\"* the|strong=\"H5046\"* horns of|strong=\"H5769\"* the|strong=\"H5046\"* wicked," + } + ] + }, + { + "chapterNum": 76, + "verses": [ + { + "verseNum": 1, + "text": "In Judah, God is known." + }, + { + "verseNum": 2, + "text": "His|strong=\"H3045\"* tabernacle is|strong=\"H8034\"* also|strong=\"H8034\"* in|strong=\"H3478\"* Salem." + }, + { + "verseNum": 3, + "text": "There|strong=\"H1961\"* he broke the|strong=\"H1961\"* flaming arrows of|strong=\"H1961\"* the|strong=\"H1961\"* bow," + }, + { + "verseNum": 4, + "text": "Glorious are|strong=\"H4421\"* you|strong=\"H7665\"*, and|strong=\"H2719\"* excellent," + }, + { + "verseNum": 5, + "text": "Valiant men lie plundered," + }, + { + "verseNum": 6, + "text": "At|strong=\"H3808\"* your|strong=\"H3605\"* rebuke, God|strong=\"H3808\"* of|strong=\"H3027\"* Jacob," + }, + { + "verseNum": 7, + "text": "You, even you, are|strong=\"H5483\"* to|strong=\"H3290\"* be|strong=\"H5483\"* feared." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* pronounced judgment from|strong=\"H6440\"* heaven." + }, + { + "verseNum": 9, + "text": "when|strong=\"H8085\"* God|strong=\"H8064\"* arose to|strong=\"H8085\"* judgment|strong=\"H1779\"*," + }, + { + "verseNum": 10, + "text": "Surely|strong=\"H6965\"* the|strong=\"H3605\"* wrath of|strong=\"H3605\"* man|strong=\"H3605\"* praises you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Make|strong=\"H3588\"* vows to|strong=\"H2534\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God, and|strong=\"H3034\"* fulfill them|strong=\"H3588\"*!" + }, + { + "verseNum": 12, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* cut off the|strong=\"H3605\"* spirit of|strong=\"H3068\"* princes." + } + ] + }, + { + "chapterNum": 77, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5921\"* cry goes to|strong=\"H5921\"* God!" + }, + { + "verseNum": 2, + "text": "In|strong=\"H6963\"* the|strong=\"H6963\"* day of|strong=\"H6963\"* my|strong=\"H6963\"* trouble I|strong=\"H6963\"* sought the|strong=\"H6963\"* Lord." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* remember God|strong=\"H3808\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* groan." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7307\"* hold|strong=\"H2142\"* my|strong=\"H2142\"* eyelids open." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* have|strong=\"H5869\"* considered the|strong=\"H1696\"* days of|strong=\"H5869\"* old," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* remember my|strong=\"H2803\"* song in|strong=\"H8141\"* the|strong=\"H3117\"* night." + }, + { + "verseNum": 7, + "text": "“Will|strong=\"H7307\"* the|strong=\"H2142\"* Lord reject us|strong=\"H2142\"* forever?" + }, + { + "verseNum": 8, + "text": "Has his|strong=\"H3808\"* loving kindness vanished forever|strong=\"H5769\"*?" + }, + { + "verseNum": 9, + "text": "Has|strong=\"H5331\"* God forgotten to|strong=\"H1755\"* be|strong=\"H5331\"* gracious?" + }, + { + "verseNum": 10, + "text": "Then I thought, “I will appeal to|strong=\"H7911\"* this:" + }, + { + "verseNum": 11, + "text": "I|strong=\"H8141\"* will|strong=\"H1931\"* remember Yah|strong=\"H3068\"*’s deeds;" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* also|strong=\"H3588\"* meditate on|strong=\"H6924\"* all your|strong=\"H3588\"* work," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3605\"* way|strong=\"H3605\"*, God, is|strong=\"H3605\"* in|strong=\"H3605\"* the|strong=\"H3605\"* sanctuary." + }, + { + "verseNum": 14, + "text": "You|strong=\"H1870\"* are|strong=\"H1870\"* the|strong=\"H1870\"* God|strong=\"H4310\"* who|strong=\"H4310\"* does wonders." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6213\"* have|strong=\"H5971\"* redeemed your|strong=\"H3045\"* people|strong=\"H5971\"* with|strong=\"H6213\"* your|strong=\"H3045\"* arm," + }, + { + "verseNum": 16, + "text": "The|strong=\"H1121\"* waters saw|strong=\"H3290\"* you|strong=\"H5971\"*, God." + }, + { + "verseNum": 17, + "text": "The|strong=\"H7200\"* clouds poured out|strong=\"H7200\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5414\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H5414\"* thunder|strong=\"H6963\"* was|strong=\"H6963\"* in|strong=\"H1980\"* the|strong=\"H5414\"* whirlwind." + }, + { + "verseNum": 19, + "text": "Your way was|strong=\"H6963\"* through|strong=\"H6963\"* the|strong=\"H6963\"* sea," + }, + { + "verseNum": 20, + "text": "You|strong=\"H3045\"* led your|strong=\"H3045\"* people|strong=\"H3808\"* like|strong=\"H1870\"* a|strong=\"H3068\"* flock," + } + ] + }, + { + "chapterNum": 78, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H5186\"* teaching|strong=\"H8451\"*, my|strong=\"H5186\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4480\"* will|strong=\"H6310\"* open|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"* in|strong=\"H6310\"* a|strong=\"H3068\"* parable|strong=\"H4912\"*." + }, + { + "verseNum": 3, + "text": "which|strong=\"H5608\"* we|strong=\"H3068\"* have|strong=\"H3045\"* heard|strong=\"H8085\"* and|strong=\"H8085\"* known|strong=\"H3045\"*," + }, + { + "verseNum": 4, + "text": "We|strong=\"H6213\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hide|strong=\"H3582\"* them|strong=\"H6213\"* from|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H1121\"* he|strong=\"H3478\"* established|strong=\"H6965\"* a|strong=\"H3068\"* covenant in|strong=\"H3478\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "that|strong=\"H3045\"* the|strong=\"H3205\"* generation|strong=\"H1755\"* to|strong=\"H3205\"* come|strong=\"H3205\"* might|strong=\"H4616\"* know|strong=\"H3045\"*, even the|strong=\"H3205\"* children|strong=\"H1121\"* who|strong=\"H1121\"* should|strong=\"H5608\"* be|strong=\"H1121\"* born|strong=\"H3205\"*;" + }, + { + "verseNum": 7, + "text": "that|strong=\"H3808\"* they|strong=\"H3808\"* might set|strong=\"H7760\"* their|strong=\"H7760\"* hope|strong=\"H3689\"* in|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 8, + "text": "and|strong=\"H3820\"* might not|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1961\"* their|strong=\"H3559\"* fathers—" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ephraim, being|strong=\"H1121\"* armed|strong=\"H5401\"* and|strong=\"H1121\"* carrying|strong=\"H7411\"* bows|strong=\"H7198\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H3808\"* didn’t keep|strong=\"H8104\"* God|strong=\"H3808\"*’s covenant|strong=\"H1285\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H7200\"* forgot|strong=\"H7911\"* his|strong=\"H7200\"* doings|strong=\"H5949\"*," + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* marvelous things|strong=\"H6382\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5048\"* of|strong=\"H7704\"* their|strong=\"H6213\"* fathers," + }, + { + "verseNum": 13, + "text": "He|strong=\"H4325\"* split|strong=\"H1234\"* the|strong=\"H5674\"* sea|strong=\"H3220\"*, and|strong=\"H4325\"* caused|strong=\"H5674\"* them|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3605\"* the|strong=\"H3605\"* daytime|strong=\"H3119\"* he|strong=\"H3605\"* also|strong=\"H3915\"* led|strong=\"H5148\"* them|strong=\"H5148\"* with|strong=\"H3605\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H4057\"* split|strong=\"H1234\"* rocks|strong=\"H6697\"* in|strong=\"H7227\"* the|strong=\"H8248\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 16, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* streams|strong=\"H5104\"* also|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3318\"* rock|strong=\"H5553\"*," + }, + { + "verseNum": 17, + "text": "Yet|strong=\"H5750\"* they still|strong=\"H5750\"* went|strong=\"H3254\"* on to|strong=\"H3254\"* sin|strong=\"H2398\"* against|strong=\"H2398\"* him|strong=\"H2398\"*," + }, + { + "verseNum": 18, + "text": "They|strong=\"H5315\"* tempted|strong=\"H5254\"* God in|strong=\"H5315\"* their|strong=\"H7592\"* heart|strong=\"H3824\"*" + }, + { + "verseNum": 19, + "text": "Yes, they|strong=\"H6186\"* spoke|strong=\"H1696\"* against|strong=\"H1696\"* God." + }, + { + "verseNum": 20, + "text": "Behold|strong=\"H2005\"*, he|strong=\"H5414\"* struck|strong=\"H5221\"* the|strong=\"H5414\"* rock|strong=\"H6697\"*, so|strong=\"H5414\"* that|strong=\"H5971\"* waters|strong=\"H4325\"* gushed|strong=\"H4325\"* out|strong=\"H5414\"*," + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3478\"* was|strong=\"H3068\"* angry|strong=\"H5674\"*." + }, + { + "verseNum": 22, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t believe in|strong=\"H3808\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "Yet he|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H6680\"* skies|strong=\"H7834\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 24, + "text": "He|strong=\"H5414\"* rained|strong=\"H4305\"* down|strong=\"H4305\"* manna|strong=\"H4478\"* on|strong=\"H5921\"* them|strong=\"H5414\"* to|strong=\"H5921\"* eat," + }, + { + "verseNum": 25, + "text": "Man ate the|strong=\"H7971\"* bread|strong=\"H3899\"* of|strong=\"H3899\"* angels." + }, + { + "verseNum": 26, + "text": "He|strong=\"H5797\"* caused the|strong=\"H5090\"* east|strong=\"H6921\"* wind|strong=\"H6921\"* to|strong=\"H8064\"* blow|strong=\"H5265\"* in|strong=\"H8064\"* the|strong=\"H5090\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H5921\"* also rained|strong=\"H4305\"* meat|strong=\"H7607\"* on|strong=\"H5921\"* them|strong=\"H5921\"* as|strong=\"H5921\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H7130\"* let them|strong=\"H5439\"* fall|strong=\"H5307\"* in|strong=\"H7130\"* the|strong=\"H5439\"* middle|strong=\"H7130\"* of|strong=\"H4264\"* their|strong=\"H7130\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 29, + "text": "So|strong=\"H3966\"* they|strong=\"H1992\"* ate, and|strong=\"H3966\"* were|strong=\"H1992\"* well|strong=\"H3966\"* filled|strong=\"H7646\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3808\"* didn’t turn from|strong=\"H3808\"* their|strong=\"H3808\"* cravings." + }, + { + "verseNum": 31, + "text": "when|strong=\"H2026\"* the|strong=\"H5927\"* anger of|strong=\"H5927\"* God went|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* them|strong=\"H2026\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3605\"* all|strong=\"H3605\"* this|strong=\"H2063\"* they|strong=\"H3808\"* still|strong=\"H5750\"* sinned|strong=\"H2398\"*," + }, + { + "verseNum": 33, + "text": "Therefore he|strong=\"H3117\"* consumed|strong=\"H3615\"* their|strong=\"H3117\"* days|strong=\"H3117\"* in|strong=\"H8141\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 34, + "text": "When|strong=\"H7725\"* he|strong=\"H7725\"* killed|strong=\"H2026\"* them|strong=\"H7725\"*, then|strong=\"H7725\"* they inquired|strong=\"H1875\"* after|strong=\"H1875\"* him|strong=\"H7725\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3588\"* remembered|strong=\"H2142\"* that|strong=\"H3588\"* God|strong=\"H6697\"* was their|strong=\"H3588\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 36, + "text": "But they|strong=\"H6310\"* flattered him with|strong=\"H6310\"* their|strong=\"H3956\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3559\"* their|strong=\"H3559\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* not|strong=\"H3808\"* right|strong=\"H3559\"* with|strong=\"H5973\"* him|strong=\"H5973\"*," + }, + { + "verseNum": 38, + "text": "But|strong=\"H3808\"* he|strong=\"H1931\"*, being merciful|strong=\"H7349\"*, forgave|strong=\"H3722\"* iniquity|strong=\"H5771\"*, and|strong=\"H7725\"* didn’t destroy|strong=\"H7843\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H3588\"* remembered|strong=\"H2142\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* but|strong=\"H3588\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 40, + "text": "How|strong=\"H4100\"* often|strong=\"H4100\"* they|strong=\"H4100\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* him|strong=\"H6087\"* in|strong=\"H6087\"* the|strong=\"H4100\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 41, + "text": "They|strong=\"H3478\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H3478\"* tempted|strong=\"H5254\"* God," + }, + { + "verseNum": 42, + "text": "They|strong=\"H3117\"* didn’t remember|strong=\"H2142\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 43, + "text": "how he|strong=\"H7760\"* set|strong=\"H7760\"* his|strong=\"H7760\"* signs in|strong=\"H4714\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 44, + "text": "he|strong=\"H1818\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* rivers|strong=\"H2975\"* into|strong=\"H2015\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 45, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* among them|strong=\"H7971\"* swarms|strong=\"H6157\"* of|strong=\"H6157\"* flies|strong=\"H6157\"*, which|strong=\"H6854\"* devoured them|strong=\"H7971\"*;" + }, + { + "verseNum": 46, + "text": "He|strong=\"H5414\"* also gave|strong=\"H5414\"* their|strong=\"H5414\"* increase|strong=\"H2981\"* to|strong=\"H5414\"* the|strong=\"H5414\"* caterpillar|strong=\"H2625\"*," + }, + { + "verseNum": 47, + "text": "He destroyed|strong=\"H2026\"* their|strong=\"H2026\"* vines|strong=\"H1612\"* with|strong=\"H8256\"* hail|strong=\"H1259\"*," + }, + { + "verseNum": 48, + "text": "He also|strong=\"H1259\"* gave|strong=\"H5462\"* over|strong=\"H5462\"* their|strong=\"H5462\"* livestock|strong=\"H4735\"* to|strong=\"H5462\"* the|strong=\"H5462\"* hail|strong=\"H1259\"*," + }, + { + "verseNum": 49, + "text": "He|strong=\"H7971\"* threw on|strong=\"H7971\"* them|strong=\"H7971\"* the|strong=\"H7971\"* fierceness|strong=\"H2740\"* of|strong=\"H4397\"* his|strong=\"H7971\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 50, + "text": "He|strong=\"H3808\"* made|strong=\"H6424\"* a|strong=\"H3068\"* path|strong=\"H5410\"* for|strong=\"H5315\"* his|strong=\"H2820\"* anger." + }, + { + "verseNum": 51, + "text": "and|strong=\"H4714\"* struck|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H4714\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 52, + "text": "But|strong=\"H5971\"* he|strong=\"H5971\"* led|strong=\"H5090\"* out|strong=\"H5265\"* his|strong=\"H5971\"* own|strong=\"H5971\"* people|strong=\"H5971\"* like|strong=\"H4057\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 53, + "text": "He|strong=\"H3808\"* led|strong=\"H5148\"* them|strong=\"H5148\"* safely, so|strong=\"H3808\"* that|strong=\"H3808\"* they|strong=\"H3808\"* weren’t afraid|strong=\"H6342\"*," + }, + { + "verseNum": 54, + "text": "He|strong=\"H2088\"* brought them|strong=\"H2088\"* to|strong=\"H2022\"* the|strong=\"H7069\"* border|strong=\"H1366\"* of|strong=\"H2022\"* his sanctuary|strong=\"H6944\"*," + }, + { + "verseNum": 55, + "text": "He|strong=\"H3478\"* also|strong=\"H3478\"* drove|strong=\"H1644\"* out|strong=\"H1644\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 56, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* tempted|strong=\"H5254\"* and|strong=\"H8104\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* the|strong=\"H8104\"* Most|strong=\"H5945\"* High|strong=\"H5945\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 57, + "text": "but turned|strong=\"H2015\"* back|strong=\"H5472\"*, and|strong=\"H7198\"* dealt treacherously like|strong=\"H2015\"* their|strong=\"H2015\"* fathers." + }, + { + "verseNum": 58, + "text": "For|strong=\"H7065\"* they provoked|strong=\"H3707\"* him|strong=\"H7065\"* to|strong=\"H1116\"* anger|strong=\"H3707\"* with|strong=\"H7065\"* their high|strong=\"H1116\"* places|strong=\"H1116\"*," + }, + { + "verseNum": 59, + "text": "When|strong=\"H8085\"* God heard|strong=\"H8085\"* this|strong=\"H5674\"*, he|strong=\"H3478\"* was|strong=\"H3478\"* angry|strong=\"H5674\"*," + }, + { + "verseNum": 60, + "text": "so that|strong=\"H4908\"* he abandoned|strong=\"H5203\"* the|strong=\"H5203\"* tent of|strong=\"H4908\"* Shiloh|strong=\"H7887\"*," + }, + { + "verseNum": 61, + "text": "and|strong=\"H3027\"* delivered|strong=\"H5414\"* his|strong=\"H5414\"* strength|strong=\"H5797\"* into|strong=\"H3027\"* captivity|strong=\"H7628\"*," + }, + { + "verseNum": 62, + "text": "He|strong=\"H5971\"* also|strong=\"H5971\"* gave|strong=\"H5462\"* his|strong=\"H5674\"* people|strong=\"H5971\"* over|strong=\"H5674\"* to|strong=\"H5674\"* the|strong=\"H5674\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 63, + "text": "Fire devoured their|strong=\"H3808\"* young men." + }, + { + "verseNum": 64, + "text": "Their|strong=\"H5307\"* priests|strong=\"H3548\"* fell|strong=\"H5307\"* by|strong=\"H3808\"* the|strong=\"H3548\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 65, + "text": "Then the Lord awakened|strong=\"H3364\"* as|strong=\"H3364\"* one|strong=\"H1368\"* out|strong=\"H7442\"* of|strong=\"H1368\"* sleep|strong=\"H3463\"*," + }, + { + "verseNum": 66, + "text": "He|strong=\"H5414\"* struck|strong=\"H5221\"* his|strong=\"H5414\"* adversaries|strong=\"H6862\"* backward." + }, + { + "verseNum": 67, + "text": "Moreover he|strong=\"H3808\"* rejected|strong=\"H3988\"* the|strong=\"H3808\"* tent of|strong=\"H7626\"* Joseph|strong=\"H3130\"*," + }, + { + "verseNum": 68, + "text": "But chose the|strong=\"H3063\"* tribe|strong=\"H7626\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 69, + "text": "He|strong=\"H1129\"* built|strong=\"H1129\"* his|strong=\"H1129\"* sanctuary|strong=\"H4720\"* like|strong=\"H3644\"* the|strong=\"H1129\"* heights|strong=\"H7311\"*," + }, + { + "verseNum": 70, + "text": "He|strong=\"H1732\"* also|strong=\"H1732\"* chose David|strong=\"H1732\"* his|strong=\"H3947\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 71, + "text": "from|strong=\"H3478\"* following the|strong=\"H7462\"* ewes|strong=\"H5763\"* that|strong=\"H5971\"* have|strong=\"H5971\"* their|strong=\"H3290\"* young|strong=\"H5763\"*," + }, + { + "verseNum": 72, + "text": "So he|strong=\"H8394\"* was|strong=\"H3824\"* their|strong=\"H7462\"* shepherd|strong=\"H7462\"* according to|strong=\"H3824\"* the|strong=\"H7462\"* integrity|strong=\"H8537\"* of|strong=\"H3709\"* his|strong=\"H7462\"* heart|strong=\"H3824\"*," + } + ] + }, + { + "chapterNum": 79, + "verses": [ + { + "verseNum": 1, + "text": "God, the|strong=\"H7760\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* come into|strong=\"H7760\"* your|strong=\"H7760\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H5414\"* have|strong=\"H5650\"* given|strong=\"H5414\"* the|strong=\"H5414\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* of|strong=\"H5650\"* your|strong=\"H5414\"* servants|strong=\"H5650\"* to|strong=\"H5414\"* be|strong=\"H5414\"* food|strong=\"H3978\"* for|strong=\"H5650\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H5650\"* the|strong=\"H5414\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H3389\"* have|strong=\"H3389\"* shed|strong=\"H8210\"* their|strong=\"H5439\"* blood|strong=\"H1818\"* like|strong=\"H8210\"* water|strong=\"H4325\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 4, + "text": "We have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* our|strong=\"H1961\"* neighbors|strong=\"H7934\"*," + }, + { + "verseNum": 5, + "text": "How|strong=\"H4100\"* long|strong=\"H5704\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 6, + "text": "Pour|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3045\"* don’t know|strong=\"H3045\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* devoured Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "Don’t hold|strong=\"H2142\"* the|strong=\"H3588\"* iniquities|strong=\"H5771\"* of|strong=\"H5771\"* our|strong=\"H3588\"* forefathers|strong=\"H7223\"* against|strong=\"H3966\"* us|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "Help|strong=\"H5826\"* us|strong=\"H5921\"*, God of|strong=\"H1697\"* our|strong=\"H5921\"* salvation|strong=\"H3468\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1697\"* your|strong=\"H5921\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 10, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H3045\"* nations|strong=\"H1471\"* say, “Where|strong=\"H4100\"* is|strong=\"H4100\"* their|strong=\"H3045\"* God?”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"H3498\"* the|strong=\"H6440\"* sighing of|strong=\"H1121\"* the|strong=\"H6440\"* prisoner come before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 12, + "text": "Pay|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H7725\"* our|strong=\"H7725\"* neighbors|strong=\"H7934\"* seven|strong=\"H7659\"* times|strong=\"H7659\"* into|strong=\"H7725\"* their|strong=\"H7725\"* bosom|strong=\"H2436\"*" + }, + { + "verseNum": 13, + "text": "So|strong=\"H5608\"* we|strong=\"H3068\"*, your|strong=\"H3034\"* people|strong=\"H5971\"* and|strong=\"H5971\"* sheep|strong=\"H6629\"* of|strong=\"H5971\"* your|strong=\"H3034\"* pasture|strong=\"H4830\"*," + } + ] + }, + { + "chapterNum": 80, + "verses": [ + { + "verseNum": 1, + "text": "Hear us, Shepherd of|strong=\"H4210\"* Israel," + }, + { + "verseNum": 2, + "text": "Before|strong=\"H3427\"* Ephraim, Benjamin, and|strong=\"H3478\"* Manasseh, stir up|strong=\"H7462\"* your|strong=\"H7462\"* might|strong=\"H3478\"*!" + }, + { + "verseNum": 3, + "text": "Turn us|strong=\"H6440\"* again|strong=\"H3212\"*, God." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* God of|strong=\"H6440\"* Armies," + }, + { + "verseNum": 5, + "text": "You|strong=\"H5704\"* have|strong=\"H3068\"* fed them|strong=\"H5704\"* with|strong=\"H3068\"* the|strong=\"H3068\"* bread of|strong=\"H3068\"* tears," + }, + { + "verseNum": 6, + "text": "You|strong=\"H8248\"* make|strong=\"H8248\"* us|strong=\"H8248\"* a|strong=\"H3068\"* source of|strong=\"H3899\"* contention to|strong=\"H3899\"* our|strong=\"H8248\"* neighbors." + }, + { + "verseNum": 7, + "text": "Turn|strong=\"H7760\"* us|strong=\"H7760\"* again, God of|strong=\"H7760\"* Armies." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* brought|strong=\"H7725\"* a|strong=\"H3068\"* vine out|strong=\"H6440\"* of|strong=\"H6440\"* Egypt." + }, + { + "verseNum": 9, + "text": "You|strong=\"H1471\"* cleared the|strong=\"H1644\"* ground for|strong=\"H4714\"* it|strong=\"H1644\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* mountains were|strong=\"H6440\"* covered|strong=\"H4390\"* with|strong=\"H4390\"* its|strong=\"H4390\"* shadow." + }, + { + "verseNum": 11, + "text": "It|strong=\"H3680\"* sent out its|strong=\"H3680\"* branches|strong=\"H6057\"* to|strong=\"H2022\"* the|strong=\"H3680\"* sea," + }, + { + "verseNum": 12, + "text": "Why have|strong=\"H5104\"* you|strong=\"H7971\"* broken down|strong=\"H7971\"* its|strong=\"H3220\"* walls," + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* boar out|strong=\"H6555\"* of|strong=\"H1870\"* the|strong=\"H3605\"* wood ravages it|strong=\"H5674\"*." + }, + { + "verseNum": 14, + "text": "Turn again, we|strong=\"H3068\"* beg you, God of|strong=\"H7704\"* Armies." + }, + { + "verseNum": 15, + "text": "the|strong=\"H7200\"* stock which|strong=\"H6635\"* your|strong=\"H7200\"* right|strong=\"H5027\"* hand planted," + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"*’s burned with|strong=\"H5921\"* fire." + }, + { + "verseNum": 17, + "text": "Let your|strong=\"H6440\"* hand be|strong=\"H6440\"* on|strong=\"H6440\"* the|strong=\"H6440\"* man|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H6440\"* right hand," + }, + { + "verseNum": 18, + "text": "So|strong=\"H1961\"* we|strong=\"H3068\"* will|strong=\"H1961\"* not|strong=\"H1961\"* turn|strong=\"H1961\"* away from|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Turn|strong=\"H5472\"* us|strong=\"H2421\"* again, Yahweh|strong=\"H3068\"* God|strong=\"H3808\"* of|strong=\"H8034\"* Armies|strong=\"H3808\"*." + } + ] + }, + { + "chapterNum": 81, + "verses": [ + { + "verseNum": 1, + "text": "Sing aloud to|strong=\"H5921\"* God, our|strong=\"H5921\"* strength!" + }, + { + "verseNum": 2, + "text": "Raise|strong=\"H7321\"* a|strong=\"H3068\"* song, and|strong=\"H3290\"* bring here the|strong=\"H7321\"* tambourine," + }, + { + "verseNum": 3, + "text": "Blow the|strong=\"H5414\"* trumpet at|strong=\"H5414\"* the|strong=\"H5414\"* New Moon," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3117\"* it|strong=\"H3117\"* is|strong=\"H3117\"* a|strong=\"H3068\"* statute for|strong=\"H3117\"* Israel," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* appointed|strong=\"H2706\"* it|strong=\"H1931\"* in|strong=\"H3478\"* Joseph for|strong=\"H3588\"* a|strong=\"H3068\"* covenant," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5921\"* removed|strong=\"H3318\"* his|strong=\"H7760\"* shoulder from|strong=\"H3318\"* the|strong=\"H5921\"* burden." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3709\"* called in|strong=\"H5493\"* trouble, and|strong=\"H3709\"* I delivered|strong=\"H5674\"* you|strong=\"H3709\"*." + }, + { + "verseNum": 8, + "text": "“Hear|strong=\"H6030\"*, my|strong=\"H5921\"* people, and|strong=\"H6030\"* I|strong=\"H5921\"* will|strong=\"H4325\"* testify|strong=\"H6030\"* to|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 9, + "text": "There shall|strong=\"H5971\"* be|strong=\"H3478\"* no|strong=\"H3478\"* strange god in|strong=\"H3478\"* you|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, your|strong=\"H1961\"* God|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "But|strong=\"H3068\"* my|strong=\"H3068\"* people didn’t listen to|strong=\"H3068\"* my|strong=\"H3068\"* voice." + }, + { + "verseNum": 12, + "text": "So|strong=\"H3808\"* I|strong=\"H3808\"* let|strong=\"H3808\"* them|strong=\"H8085\"* go|strong=\"H5971\"* after the|strong=\"H8085\"* stubbornness of|strong=\"H6963\"* their|strong=\"H8085\"* hearts," + }, + { + "verseNum": 13, + "text": "Oh that|strong=\"H3820\"* my|strong=\"H7971\"* people|strong=\"H3820\"* would listen to|strong=\"H3212\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H8085\"* would|strong=\"H3478\"* soon subdue their|strong=\"H8085\"* enemies," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* haters of|strong=\"H3027\"* Yahweh|strong=\"H3068\"* would|strong=\"H6862\"* cringe before|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 16, + "text": "But|strong=\"H1961\"* he|strong=\"H3068\"* would|strong=\"H3068\"* have|strong=\"H1961\"* also|strong=\"H3068\"* fed them|strong=\"H8130\"* with|strong=\"H3068\"* the|strong=\"H3068\"* finest of|strong=\"H3068\"* the|strong=\"H3068\"* wheat." + } + ] + }, + { + "chapterNum": 82, + "verses": [ + { + "verseNum": 1, + "text": "God presides in|strong=\"H7130\"* the|strong=\"H8199\"* great assembly|strong=\"H5712\"*." + }, + { + "verseNum": 2, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H7563\"* you|strong=\"H6440\"* judge|strong=\"H8199\"* unjustly|strong=\"H5766\"*," + }, + { + "verseNum": 3, + "text": "“Defend|strong=\"H8199\"* the|strong=\"H8199\"* weak|strong=\"H1800\"*, the|strong=\"H8199\"* poor|strong=\"H6041\"*, and|strong=\"H6041\"* the|strong=\"H8199\"* fatherless|strong=\"H3490\"*." + }, + { + "verseNum": 4, + "text": "Rescue|strong=\"H5337\"* the|strong=\"H3027\"* weak|strong=\"H1800\"* and|strong=\"H3027\"* needy|strong=\"H1800\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3808\"* don’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* do|strong=\"H3605\"* they|strong=\"H3808\"* understand|strong=\"H3045\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H1121\"* said, “You|strong=\"H3605\"* are|strong=\"H1121\"* gods," + }, + { + "verseNum": 7, + "text": "Nevertheless you shall|strong=\"H8269\"* die|strong=\"H4191\"* like|strong=\"H4191\"* men|strong=\"H8269\"*," + }, + { + "verseNum": 8, + "text": "Arise|strong=\"H6965\"*, God, judge|strong=\"H8199\"* the|strong=\"H3605\"* earth," + } + ] + }, + { + "chapterNum": 83, + "verses": [ + { + "verseNum": 1, + "text": "God, don’t keep silent." + }, + { + "verseNum": 2, + "text": "For|strong=\"H8252\"*, behold, your enemies are stirred up." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* conspire with|strong=\"H7218\"* cunning against|strong=\"H8130\"* your|strong=\"H5375\"* people." + }, + { + "verseNum": 4, + "text": "“Come|strong=\"H5971\"*,” they|strong=\"H5921\"* say, “let’s destroy them|strong=\"H5921\"* as|strong=\"H5971\"* a|strong=\"H3068\"* nation|strong=\"H5971\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H8034\"* they|strong=\"H3808\"* have|strong=\"H1471\"* conspired together with|strong=\"H3212\"* one|strong=\"H3808\"* mind|strong=\"H2142\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* tents of|strong=\"H5921\"* Edom and|strong=\"H1285\"* the|strong=\"H5921\"* Ishmaelites;" + }, + { + "verseNum": 7, + "text": "Gebal, Ammon, and|strong=\"H4124\"* Amalek;" + }, + { + "verseNum": 8, + "text": "Assyria also is|strong=\"H3427\"* joined with|strong=\"H5973\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 9, + "text": "Do to|strong=\"H1961\"* them|strong=\"H1961\"* as|strong=\"H1961\"* you|strong=\"H5973\"* did|strong=\"H1571\"* to|strong=\"H1961\"* Midian," + }, + { + "verseNum": 10, + "text": "who|strong=\"H1992\"* perished at|strong=\"H6213\"* Endor," + }, + { + "verseNum": 11, + "text": "Make their|strong=\"H1961\"* nobles like|strong=\"H1961\"* Oreb and|strong=\"H1961\"* Zeeb," + }, + { + "verseNum": 12, + "text": "who|strong=\"H3605\"* said, “Let’s take|strong=\"H7896\"* possession of|strong=\"H3605\"* God’s pasture lands.”" + }, + { + "verseNum": 13, + "text": "My|strong=\"H3423\"* God, make them|strong=\"H3423\"* like tumbleweed," + }, + { + "verseNum": 14, + "text": "As|strong=\"H6440\"* the|strong=\"H6440\"* fire that|strong=\"H7307\"* burns the|strong=\"H6440\"* forest," + }, + { + "verseNum": 15, + "text": "so pursue them|strong=\"H3857\"* with|strong=\"H1197\"* your tempest," + }, + { + "verseNum": 16, + "text": "Fill their|strong=\"H3651\"* faces with|strong=\"H3651\"* confusion," + }, + { + "verseNum": 17, + "text": "Let them|strong=\"H6440\"* be|strong=\"H3068\"* disappointed and|strong=\"H3068\"* dismayed forever." + }, + { + "verseNum": 18, + "text": "that|strong=\"H5704\"* they|strong=\"H5704\"* may know that|strong=\"H5704\"* you|strong=\"H5704\"* alone, whose name is Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 84, + "verses": [ + { + "verseNum": 1, + "text": "How lovely are|strong=\"H1121\"* your|strong=\"H5921\"* dwellings," + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* soul longs, and|strong=\"H3068\"* even|strong=\"H3068\"* faints for|strong=\"H3068\"* the|strong=\"H3068\"* courts of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H3068\"* sparrow has|strong=\"H3068\"* found|strong=\"H1571\"* a|strong=\"H3068\"* home|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Blessed are|strong=\"H3068\"* those who|strong=\"H3068\"* dwell in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Blessed are|strong=\"H1004\"* those|strong=\"H3427\"* whose strength is|strong=\"H1004\"* in|strong=\"H3427\"* you|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "Passing through the|strong=\"H5797\"* valley of|strong=\"H3824\"* Weeping, they|strong=\"H3824\"* make it a|strong=\"H3068\"* place of|strong=\"H3824\"* springs." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1571\"* go|strong=\"H5674\"* from|strong=\"H5674\"* strength to|strong=\"H5674\"* strength." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, God of|strong=\"H2428\"* Armies|strong=\"H2428\"*, hear my|strong=\"H7200\"* prayer." + }, + { + "verseNum": 9, + "text": "Behold, God|strong=\"H3068\"* our|strong=\"H3068\"* shield," + }, + { + "verseNum": 10, + "text": "For|strong=\"H6440\"* a|strong=\"H3068\"* day in|strong=\"H6440\"* your|strong=\"H6440\"* courts is|strong=\"H6440\"* better than|strong=\"H6440\"* a|strong=\"H3068\"* thousand." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* God is|strong=\"H3117\"* a|strong=\"H3068\"* sun and|strong=\"H3117\"* a|strong=\"H3068\"* shield." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H3808\"*," + } + ] + }, + { + "chapterNum": 85, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you have|strong=\"H1121\"* been favorable to|strong=\"H1121\"* your|strong=\"H1121\"* land." + }, + { + "verseNum": 2, + "text": "You|strong=\"H7725\"* have|strong=\"H3068\"* forgiven the|strong=\"H3068\"* iniquity of|strong=\"H3068\"* your|strong=\"H3068\"* people." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* have|strong=\"H5971\"* taken|strong=\"H5375\"* away|strong=\"H5375\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wrath." + }, + { + "verseNum": 4, + "text": "Turn|strong=\"H7725\"* us|strong=\"H7725\"*, God of|strong=\"H3605\"* our|strong=\"H3605\"* salvation," + }, + { + "verseNum": 5, + "text": "Will|strong=\"H7725\"* you|strong=\"H7725\"* be|strong=\"H7725\"* angry|strong=\"H3708\"* with|strong=\"H5973\"* us|strong=\"H7725\"* forever?" + }, + { + "verseNum": 6, + "text": "Won’t you|strong=\"H1755\"* revive us again," + }, + { + "verseNum": 7, + "text": "Show us|strong=\"H7725\"* your|strong=\"H7725\"* loving kindness, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* hear what|strong=\"H7200\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* speak," + }, + { + "verseNum": 9, + "text": "Surely|strong=\"H3588\"* his|strong=\"H3068\"* salvation is|strong=\"H3068\"* near those|strong=\"H8085\"* who|strong=\"H5971\"* fear him|strong=\"H7725\"*," + }, + { + "verseNum": 10, + "text": "Mercy and|strong=\"H3519\"* truth meet together." + }, + { + "verseNum": 11, + "text": "Truth springs out of|strong=\"H2617\"* the|strong=\"H7965\"* earth." + }, + { + "verseNum": 12, + "text": "Yes, Yahweh|strong=\"H3068\"* will|strong=\"H8064\"* give that|strong=\"H8064\"* which is|strong=\"H6664\"* good." + }, + { + "verseNum": 13, + "text": "Righteousness goes before him|strong=\"H5414\"*," + } + ] + }, + { + "chapterNum": 86, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H6030\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* answer|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 2, + "text": "Preserve|strong=\"H8104\"* my|strong=\"H8104\"* soul|strong=\"H5315\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am godly|strong=\"H2623\"*." + }, + { + "verseNum": 3, + "text": "Be|strong=\"H3117\"* merciful|strong=\"H2603\"* to|strong=\"H3117\"* me|strong=\"H7121\"*, Lord," + }, + { + "verseNum": 4, + "text": "Bring|strong=\"H5375\"* joy|strong=\"H8055\"* to|strong=\"H5650\"* the|strong=\"H3588\"* soul|strong=\"H5315\"* of|strong=\"H5650\"* your|strong=\"H5375\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Lord|strong=\"H2617\"*, are|strong=\"H7227\"* good|strong=\"H2896\"*, and|strong=\"H2617\"* ready|strong=\"H2896\"* to|strong=\"H7121\"* forgive|strong=\"H5546\"*," + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H7181\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* prayer|strong=\"H8605\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3117\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H3588\"* trouble|strong=\"H6869\"* I|strong=\"H3588\"* will|strong=\"H3117\"* call|strong=\"H7121\"* on|strong=\"H3117\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 8, + "text": "There is|strong=\"H4639\"* no one like|strong=\"H3644\"* you|strong=\"H3644\"* among the|strong=\"H3644\"* gods, Lord," + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* nations|strong=\"H1471\"* you|strong=\"H6440\"* have|strong=\"H1471\"* made|strong=\"H6213\"* will|strong=\"H1471\"* come and|strong=\"H6440\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, Lord." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H6213\"* great|strong=\"H1419\"*, and|strong=\"H1419\"* do|strong=\"H6213\"* wondrous|strong=\"H6381\"* things|strong=\"H1419\"*." + }, + { + "verseNum": 11, + "text": "Teach|strong=\"H3384\"* me|strong=\"H3372\"* your|strong=\"H3068\"* way|strong=\"H1870\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3605\"* will|strong=\"H3824\"* praise|strong=\"H3034\"* you|strong=\"H3605\"*, Lord my|strong=\"H3605\"* God, with|strong=\"H3513\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* your|strong=\"H5921\"* loving kindness|strong=\"H2617\"* is|strong=\"H2617\"* great|strong=\"H1419\"* toward|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 14, + "text": "God|strong=\"H3808\"*, the|strong=\"H5921\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H7227\"* you, Lord|strong=\"H2617\"*, are|strong=\"H7227\"* a|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H2617\"* gracious|strong=\"H2587\"* God," + }, + { + "verseNum": 16, + "text": "Turn|strong=\"H6437\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* mercy|strong=\"H2603\"* on|strong=\"H5414\"* me|strong=\"H5414\"*!" + }, + { + "verseNum": 17, + "text": "Show|strong=\"H7200\"* me|strong=\"H7200\"* a|strong=\"H3068\"* sign of|strong=\"H3068\"* your|strong=\"H3068\"* goodness|strong=\"H2896\"*," + } + ] + }, + { + "chapterNum": 87, + "verses": [ + { + "verseNum": 1, + "text": "His|strong=\"H7141\"* foundation|strong=\"H3248\"* is|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H1121\"* holy|strong=\"H6944\"* mountains|strong=\"H2042\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* loves the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* more than|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dwellings|strong=\"H4908\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 3, + "text": "Glorious|strong=\"H3513\"* things|strong=\"H3513\"* are|strong=\"H5892\"* spoken|strong=\"H1696\"* about|strong=\"H1696\"* you|strong=\"H1696\"*, city|strong=\"H5892\"* of|strong=\"H5892\"* God. \\+w Selah|strong=\"H5542\"\\+w*.*" + }, + { + "verseNum": 4, + "text": "I|strong=\"H2009\"* will|strong=\"H2088\"* record|strong=\"H2142\"* Rahab|strong=\"H7294\"*+ 87:4 Rahab is a reference to Egypt.* and|strong=\"H8033\"* Babylon among|strong=\"H5973\"* those|strong=\"H2088\"* who|strong=\"H2088\"* acknowledge|strong=\"H3045\"* me|strong=\"H3205\"*." + }, + { + "verseNum": 5, + "text": "Yes, of|strong=\"H3205\"* Zion|strong=\"H6726\"* it|strong=\"H1931\"* will|strong=\"H1931\"* be|strong=\"H6726\"* said, “This|strong=\"H1931\"* one|strong=\"H1931\"* and|strong=\"H6726\"* that|strong=\"H1931\"* one|strong=\"H1931\"* was|strong=\"H1931\"* born|strong=\"H3205\"* in|strong=\"H3559\"* her|strong=\"H3559\"*;”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* count|strong=\"H5608\"*, when|strong=\"H3068\"* he|strong=\"H8033\"* writes|strong=\"H3789\"* up|strong=\"H3205\"* the|strong=\"H3205\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 7, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* sing|strong=\"H7891\"* as|strong=\"H3605\"* well|strong=\"H4599\"* as|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dance say," + } + ] + }, + { + "chapterNum": 88, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God of|strong=\"H1121\"* my|strong=\"H5921\"* salvation," + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3068\"* prayer enter into|strong=\"H3915\"* your|strong=\"H3068\"* presence|strong=\"H5048\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H6440\"* my|strong=\"H5186\"* soul is|strong=\"H6440\"* full of|strong=\"H6440\"* troubles." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* am counted among those|strong=\"H5315\"* who|strong=\"H5315\"* go down|strong=\"H5060\"* into|strong=\"H2416\"* the|strong=\"H3588\"* pit|strong=\"H7585\"*." + }, + { + "verseNum": 5, + "text": "set apart among|strong=\"H5973\"* the|strong=\"H1961\"* dead," + }, + { + "verseNum": 6, + "text": "You|strong=\"H3808\"* have|strong=\"H3027\"* laid|strong=\"H7901\"* me|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H2142\"* lowest pit," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H7896\"* wrath lies heavily on me|strong=\"H7896\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3605\"* have|strong=\"H3605\"* taken my|strong=\"H3605\"* friends from|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H3045\"* eyes are|strong=\"H3045\"* dim from|strong=\"H4480\"* grief." + }, + { + "verseNum": 10, + "text": "Do|strong=\"H3068\"* you|strong=\"H3605\"* show wonders to|strong=\"H3068\"* the|strong=\"H3605\"* dead?" + }, + { + "verseNum": 11, + "text": "Is|strong=\"H6213\"* your|strong=\"H6213\"* loving kindness declared in|strong=\"H6213\"* the|strong=\"H6213\"* grave?" + }, + { + "verseNum": 12, + "text": "Are|strong=\"H6913\"* your|strong=\"H5608\"* wonders made known in|strong=\"H6913\"* the|strong=\"H5608\"* dark?" + }, + { + "verseNum": 13, + "text": "But to|strong=\"H3045\"* you|strong=\"H3045\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H3045\"* have|strong=\"H3045\"* cried." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*, why do|strong=\"H3068\"* you|strong=\"H1242\"* reject my|strong=\"H3068\"* soul?" + }, + { + "verseNum": 15, + "text": "I|strong=\"H5315\"* am|strong=\"H3068\"* afflicted and|strong=\"H3068\"* ready to|strong=\"H3068\"* die from|strong=\"H4480\"* my|strong=\"H3068\"* youth up|strong=\"H4480\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H5375\"* fierce wrath has gone over|strong=\"H5375\"* me." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* came|strong=\"H5674\"* around|strong=\"H5921\"* me|strong=\"H5921\"* like|strong=\"H5921\"* water all|strong=\"H5921\"* day long|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* have|strong=\"H3117\"* put lover and|strong=\"H3117\"* friend far|strong=\"H5921\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 89, + "verses": [ + { + "verseNum": 1, + "text": "I will sing of|strong=\"H4905\"* the loving kindness of|strong=\"H4905\"* Yahweh|strong=\"H3068\"* forever." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3045\"* indeed|strong=\"H3068\"* declare|strong=\"H3045\"*, “Love|strong=\"H2617\"* stands firm forever|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"H3588\"* have|strong=\"H1129\"* made|strong=\"H3559\"* a|strong=\"H3068\"* covenant with|strong=\"H8064\"* my|strong=\"H3588\"* chosen one|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "‘I|strong=\"H5650\"* will|strong=\"H5650\"* establish your|strong=\"H3772\"* offspring forever," + }, + { + "verseNum": 5, + "text": "The|strong=\"H1129\"* heavens will|strong=\"H2233\"* praise|strong=\"H5769\"* your|strong=\"H3559\"* wonders, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3068\"* who|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* skies can be|strong=\"H3068\"* compared to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 7, + "text": "a|strong=\"H3068\"* very awesome God|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* council of|strong=\"H1121\"* the|strong=\"H3588\"* holy ones|strong=\"H1121\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, God of|strong=\"H6918\"* Armies, who|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* mighty|strong=\"H7227\"* one|strong=\"H6918\"*, like|strong=\"H5921\"* you|strong=\"H3605\"*?" + }, + { + "verseNum": 9, + "text": "You|strong=\"H3644\"* rule the|strong=\"H3068\"* pride of|strong=\"H3068\"* the|strong=\"H3068\"* sea." + }, + { + "verseNum": 10, + "text": "You have|strong=\"H4910\"* broken Rahab in|strong=\"H4910\"* pieces, like one of|strong=\"H3220\"* the|strong=\"H7623\"* slain." + }, + { + "verseNum": 11, + "text": "The|strong=\"H6340\"* heavens are|strong=\"H2491\"* yours." + }, + { + "verseNum": 12, + "text": "You have created the|strong=\"H3245\"* north and|strong=\"H8064\"* the|strong=\"H3245\"* south." + }, + { + "verseNum": 13, + "text": "You have|strong=\"H8034\"* a|strong=\"H3068\"* mighty arm." + }, + { + "verseNum": 14, + "text": "Righteousness and|strong=\"H3027\"* justice are|strong=\"H3027\"* the|strong=\"H3027\"* foundation of|strong=\"H3027\"* your|strong=\"H3027\"* throne." + }, + { + "verseNum": 15, + "text": "Blessed are|strong=\"H4941\"* the|strong=\"H6440\"* people who|strong=\"H6664\"* learn to|strong=\"H6440\"* acclaim you|strong=\"H6440\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H1980\"* your|strong=\"H3068\"* name they|strong=\"H3068\"* rejoice all|strong=\"H3045\"* day." + }, + { + "verseNum": 17, + "text": "For|strong=\"H8034\"* you|strong=\"H3605\"* are|strong=\"H3117\"* the|strong=\"H3605\"* glory of|strong=\"H3117\"* their|strong=\"H3605\"* strength." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* shield belongs to|strong=\"H3588\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4428\"* you|strong=\"H3588\"* spoke in|strong=\"H3478\"* vision to|strong=\"H3478\"* your|strong=\"H3068\"* saints|strong=\"H6918\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H5921\"* have|strong=\"H5971\"* found David, my|strong=\"H5921\"* servant." + }, + { + "verseNum": 21, + "text": "with|strong=\"H4886\"* whom my|strong=\"H1732\"* hand|strong=\"H4672\"* shall|strong=\"H5650\"* be|strong=\"H5650\"* established." + }, + { + "verseNum": 22, + "text": "No enemy will|strong=\"H3027\"* tax him|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3808\"* will|strong=\"H1121\"* beat down his|strong=\"H3808\"* adversaries before|strong=\"H3808\"* him|strong=\"H1121\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H5062\"* my|strong=\"H6440\"* faithfulness and|strong=\"H6440\"* my|strong=\"H6440\"* loving kindness will|strong=\"H6862\"* be|strong=\"H6440\"* with|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H7311\"* will|strong=\"H8034\"* set|strong=\"H7311\"* his|strong=\"H7311\"* hand also|strong=\"H8034\"* on|strong=\"H5973\"* the|strong=\"H5973\"* sea," + }, + { + "verseNum": 26, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* call to|strong=\"H3027\"* me|strong=\"H7760\"*, ‘You|strong=\"H7760\"* are|strong=\"H3027\"* my|strong=\"H7760\"* Father," + }, + { + "verseNum": 27, + "text": "I|strong=\"H6697\"* will|strong=\"H1931\"* also|strong=\"H1931\"* appoint him|strong=\"H7121\"* my|strong=\"H7121\"* firstborn," + }, + { + "verseNum": 28, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* keep my|strong=\"H5414\"* loving kindness for|strong=\"H4428\"* him|strong=\"H5414\"* forever more." + }, + { + "verseNum": 29, + "text": "I will|strong=\"H2617\"* also|strong=\"H2617\"* make his|strong=\"H8104\"* offspring endure|strong=\"H5769\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 30, + "text": "If|strong=\"H7760\"* his|strong=\"H7760\"* children|strong=\"H2233\"* forsake my|strong=\"H7760\"* law," + }, + { + "verseNum": 31, + "text": "if|strong=\"H1121\"* they|strong=\"H3808\"* break my|strong=\"H5800\"* statutes," + }, + { + "verseNum": 32, + "text": "then|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* punish their|strong=\"H3808\"* sin with|strong=\"H2708\"* the|strong=\"H8104\"* rod," + }, + { + "verseNum": 33, + "text": "But I|strong=\"H6588\"* will|strong=\"H5771\"* not completely take|strong=\"H6485\"* my|strong=\"H6485\"* loving kindness from|strong=\"H7626\"* him|strong=\"H6485\"*," + }, + { + "verseNum": 34, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* break my|strong=\"H3808\"* covenant," + }, + { + "verseNum": 35, + "text": "Once I|strong=\"H3808\"* have|strong=\"H8193\"* sworn by|strong=\"H3808\"* my|strong=\"H2490\"* holiness," + }, + { + "verseNum": 36, + "text": "His|strong=\"H1732\"* offspring will endure forever," + }, + { + "verseNum": 37, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* established forever|strong=\"H5769\"* like|strong=\"H1961\"* the|strong=\"H1961\"* moon," + }, + { + "verseNum": 38, + "text": "But you|strong=\"H5769\"* have|strong=\"H5707\"* rejected and|strong=\"H5769\"* spurned." + }, + { + "verseNum": 39, + "text": "You|strong=\"H5973\"* have|strong=\"H5973\"* renounced the|strong=\"H5674\"* covenant of|strong=\"H5674\"* your|strong=\"H5674\"* servant." + }, + { + "verseNum": 40, + "text": "You have|strong=\"H5650\"* broken|strong=\"H2490\"* down all his|strong=\"H2490\"* hedges." + }, + { + "verseNum": 41, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* pass by|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H3605\"* rob him|strong=\"H7760\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3605\"* have|strong=\"H1961\"* exalted the|strong=\"H3605\"* right hand of|strong=\"H1870\"* his|strong=\"H3605\"* adversaries." + }, + { + "verseNum": 43, + "text": "Yes, you|strong=\"H3605\"* turn|strong=\"H7311\"* back the|strong=\"H3605\"* edge of|strong=\"H3605\"* his|strong=\"H3605\"* sword," + }, + { + "verseNum": 44, + "text": "You|strong=\"H7725\"* have|strong=\"H3808\"* ended his|strong=\"H7725\"* splendor," + }, + { + "verseNum": 45, + "text": "You|strong=\"H7673\"* have|strong=\"H7673\"* shortened the|strong=\"H7673\"* days of|strong=\"H3678\"* his|strong=\"H4048\"* youth." + }, + { + "verseNum": 46, + "text": "How long|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*?" + }, + { + "verseNum": 47, + "text": "Remember how|strong=\"H4100\"* short my|strong=\"H3068\"* time|strong=\"H5704\"* is|strong=\"H3068\"*," + }, + { + "verseNum": 48, + "text": "What|strong=\"H4100\"* man|strong=\"H1121\"* is|strong=\"H4100\"* he|strong=\"H3605\"* who|strong=\"H3605\"* shall|strong=\"H1121\"* live and|strong=\"H1121\"* not|strong=\"H1121\"* see death," + }, + { + "verseNum": 49, + "text": "Lord, where|strong=\"H3027\"* are|strong=\"H3027\"* your|strong=\"H7200\"* former loving kindnesses," + }, + { + "verseNum": 50, + "text": "Remember, Lord|strong=\"H2617\"*, the|strong=\"H1732\"* reproach|strong=\"H2617\"* of|strong=\"H2617\"* your|strong=\"H1732\"* servants," + }, + { + "verseNum": 51, + "text": "With|strong=\"H5971\"* which|strong=\"H5971\"* your|strong=\"H3605\"* enemies have|strong=\"H5971\"* mocked, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 52, + "text": "Blessed be|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forever more." + } + ] + }, + { + "chapterNum": 90, + "verses": [ + { + "verseNum": 1, + "text": "Lord,+ 90:1 The word translated “Lord” is “Adonai.”* you|strong=\"H1755\"* have|strong=\"H1961\"* been|strong=\"H1961\"* our|strong=\"H1961\"* dwelling|strong=\"H4583\"* place|strong=\"H1961\"* for|strong=\"H1961\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 2, + "text": "Before|strong=\"H2962\"* the|strong=\"H3205\"* mountains|strong=\"H2022\"* were|strong=\"H2022\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H5704\"* turn|strong=\"H7725\"* man|strong=\"H1121\"* to|strong=\"H5704\"* destruction|strong=\"H1793\"*, saying," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* thousand years|strong=\"H8141\"* in|strong=\"H8141\"* your|strong=\"H3588\"* sight|strong=\"H5869\"* are|strong=\"H3117\"* just like|strong=\"H3117\"* yesterday|strong=\"H3117\"* when|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* past|strong=\"H5674\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H1242\"* sweep|strong=\"H2498\"* them|strong=\"H1961\"* away|strong=\"H2498\"* as|strong=\"H1961\"* they|strong=\"H1242\"* sleep|strong=\"H8142\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H6153\"* the|strong=\"H1242\"* morning|strong=\"H1242\"* it|strong=\"H1242\"* sprouts|strong=\"H2498\"* and|strong=\"H1242\"* springs up|strong=\"H3001\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* are consumed|strong=\"H3615\"* in|strong=\"H3615\"* your|strong=\"H3588\"* anger|strong=\"H2534\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H6440\"* have|strong=\"H5771\"* set|strong=\"H7896\"* our|strong=\"H7896\"* iniquities|strong=\"H5771\"* before|strong=\"H6440\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* our|strong=\"H3605\"* days|strong=\"H3117\"* have|strong=\"H3117\"* passed away|strong=\"H6437\"* in|strong=\"H8141\"* your|strong=\"H3605\"* wrath|strong=\"H5678\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* our|strong=\"H3588\"* years|strong=\"H8141\"* are|strong=\"H3117\"* seventy|strong=\"H7657\"*," + }, + { + "verseNum": 11, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H3045\"* power|strong=\"H5797\"* of|strong=\"H3045\"* your|strong=\"H3045\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 12, + "text": "So|strong=\"H3651\"* teach|strong=\"H3045\"* us|strong=\"H3045\"* to|strong=\"H3117\"* count|strong=\"H4487\"* our|strong=\"H3045\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "Relent|strong=\"H5162\"*, Yahweh|strong=\"H3068\"*!+ 90:13 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.*" + }, + { + "verseNum": 14, + "text": "Satisfy|strong=\"H7646\"* us|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3605\"* morning|strong=\"H1242\"* with|strong=\"H7646\"* your|strong=\"H3605\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 15, + "text": "Make|strong=\"H8055\"* us|strong=\"H7200\"* glad|strong=\"H8055\"* for|strong=\"H3117\"* as|strong=\"H3117\"* many|strong=\"H7200\"* days|strong=\"H3117\"* as|strong=\"H3117\"* you|strong=\"H3117\"* have|strong=\"H3117\"* afflicted|strong=\"H6031\"* us|strong=\"H7200\"*," + }, + { + "verseNum": 16, + "text": "Let your|strong=\"H5921\"* work|strong=\"H6467\"* appear|strong=\"H7200\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servants|strong=\"H5650\"*," + }, + { + "verseNum": 17, + "text": "Let|strong=\"H1961\"* the|strong=\"H5921\"* favor|strong=\"H5278\"* of|strong=\"H3027\"* the|strong=\"H5921\"* Lord our|strong=\"H5921\"* God|strong=\"H3027\"* be|strong=\"H1961\"* on|strong=\"H5921\"* us|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 91, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3427\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3885\"* secret|strong=\"H5643\"* place|strong=\"H5643\"* of|strong=\"H3427\"* the|strong=\"H3885\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*" + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* say of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “He|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* refuge|strong=\"H4268\"* and|strong=\"H3068\"* my|strong=\"H3068\"* fortress|strong=\"H4686\"*;" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* will|strong=\"H1931\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* from|strong=\"H5337\"* the|strong=\"H3588\"* snare|strong=\"H6341\"* of|strong=\"H1931\"* the|strong=\"H3588\"* fowler|strong=\"H3353\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H8478\"* will|strong=\"H3671\"* cover|strong=\"H5526\"* you|strong=\"H8478\"* with|strong=\"H5526\"* his|strong=\"H8478\"* feathers." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* the|strong=\"H3372\"* terror|strong=\"H6343\"* by|strong=\"H3915\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 6, + "text": "nor of the|strong=\"H1980\"* pestilence|strong=\"H1698\"* that|strong=\"H1980\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* darkness," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* thousand|strong=\"H7233\"* may|strong=\"H5307\"* fall|strong=\"H5307\"* at|strong=\"H5307\"* your|strong=\"H3808\"* side|strong=\"H6654\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H7200\"* will|strong=\"H5869\"* only|strong=\"H7535\"* look|strong=\"H7200\"* with|strong=\"H5869\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H7760\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* refuge|strong=\"H4268\"*," + }, + { + "verseNum": 10, + "text": "no|strong=\"H3808\"* evil|strong=\"H7451\"* shall|strong=\"H3808\"* happen to|strong=\"H7126\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4397\"* put|strong=\"H6680\"* his|strong=\"H3605\"* angels|strong=\"H4397\"* in|strong=\"H1870\"* charge|strong=\"H6680\"* of|strong=\"H1870\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H5921\"* will|strong=\"H7272\"* bear|strong=\"H5375\"* you|strong=\"H5921\"* up|strong=\"H5375\"* in|strong=\"H5921\"* their|strong=\"H5375\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* will tread|strong=\"H1869\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lion|strong=\"H3715\"* and|strong=\"H7826\"* cobra|strong=\"H6620\"*." + }, + { + "verseNum": 14, + "text": "“Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* set|strong=\"H7682\"* his|strong=\"H3045\"* love|strong=\"H2836\"* on|strong=\"H8034\"* me|strong=\"H7682\"*, therefore|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8034\"* deliver|strong=\"H6403\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H7121\"* will|strong=\"H6869\"* call|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, and|strong=\"H6030\"* I|strong=\"H6869\"* will|strong=\"H6869\"* answer|strong=\"H6030\"* him|strong=\"H7121\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* satisfy|strong=\"H7646\"* him|strong=\"H7200\"* with|strong=\"H7646\"* long|strong=\"H3117\"* life|strong=\"H3117\"*," + } + ] + }, + { + "chapterNum": 92, + "verses": [ + { + "verseNum": 1, + "text": "It|strong=\"H3117\"* is|strong=\"H3117\"* a|strong=\"H3068\"* good thing to|strong=\"H3117\"* give thanks to|strong=\"H3117\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"H3068\"* proclaim your|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2896\"* in|strong=\"H3068\"* the|strong=\"H3068\"* morning," + }, + { + "verseNum": 3, + "text": "with|strong=\"H3915\"* the|strong=\"H5046\"* ten-stringed lute, with|strong=\"H3915\"* the|strong=\"H5046\"* harp," + }, + { + "verseNum": 4, + "text": "For|strong=\"H5921\"* you|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H5921\"* made me|strong=\"H5921\"* glad through|strong=\"H5921\"* your|strong=\"H5921\"* work." + }, + { + "verseNum": 5, + "text": "How|strong=\"H3588\"* great are|strong=\"H3027\"* your|strong=\"H3068\"* works|strong=\"H4639\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* senseless man doesn’t know," + }, + { + "verseNum": 7, + "text": "though the|strong=\"H3045\"* wicked spring up as the|strong=\"H3045\"* grass," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7563\"* you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H7563\"* on|strong=\"H3605\"* high forever|strong=\"H5704\"* more|strong=\"H5704\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3068\"* behold, your|strong=\"H3068\"* enemies, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* exalted my|strong=\"H3605\"* horn like|strong=\"H3068\"* that|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wild ox." + }, + { + "verseNum": 11, + "text": "My|strong=\"H7311\"* eye has also seen my|strong=\"H7311\"* enemies." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* righteous shall|strong=\"H5869\"* flourish like|strong=\"H5921\"* the|strong=\"H5921\"* palm tree." + }, + { + "verseNum": 13, + "text": "They are|strong=\"H6662\"* planted in|strong=\"H6662\"* Yahweh|strong=\"H3068\"*’s house." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* still produce fruit in|strong=\"H3068\"* old age." + }, + { + "verseNum": 15, + "text": "to|strong=\"H1961\"* show|strong=\"H1961\"* that|strong=\"H1961\"* Yahweh|strong=\"H3068\"* is|strong=\"H1961\"* upright." + } + ] + }, + { + "chapterNum": 93, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*!" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3559\"* throne|strong=\"H3678\"* is|strong=\"H3678\"* established|strong=\"H3559\"* from|strong=\"H3678\"* long|strong=\"H5769\"* ago|strong=\"H5769\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5375\"* floods|strong=\"H5104\"* have|strong=\"H3068\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Above|strong=\"H4791\"* the|strong=\"H3068\"* voices|strong=\"H6963\"* of|strong=\"H3068\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3068\"* statutes stand firm." + } + ] + }, + { + "chapterNum": 94, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you God|strong=\"H3068\"* to|strong=\"H3068\"* whom vengeance|strong=\"H5360\"* belongs," + }, + { + "verseNum": 2, + "text": "Rise|strong=\"H5375\"* up|strong=\"H5375\"*, you|strong=\"H5921\"* judge|strong=\"H8199\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, how|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3605\"* pour|strong=\"H5042\"* out|strong=\"H5042\"* arrogant words." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* break|strong=\"H1792\"* your|strong=\"H3068\"* people|strong=\"H5971\"* in|strong=\"H3068\"* pieces|strong=\"H1792\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "They kill|strong=\"H2026\"* the|strong=\"H2026\"* widow and|strong=\"H2026\"* the|strong=\"H2026\"* alien|strong=\"H1616\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* say, “Yah|strong=\"H3068\"* will|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"*," + }, + { + "verseNum": 8, + "text": "Consider|strong=\"H7919\"*, you|strong=\"H5971\"* senseless|strong=\"H1197\"* among|strong=\"H5971\"* the|strong=\"H1197\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* implanted the|strong=\"H8085\"* ear|strong=\"H8085\"*, won’t he|strong=\"H3808\"* hear|strong=\"H8085\"*?" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3808\"* who|strong=\"H1471\"* disciplines|strong=\"H3256\"* the|strong=\"H3808\"* nations|strong=\"H1471\"*, won’t he|strong=\"H3808\"* punish|strong=\"H3256\"*?" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* knows|strong=\"H3045\"* the|strong=\"H3588\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* man|strong=\"H3045\"*," + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H8451\"* the|strong=\"H3050\"* man|strong=\"H1397\"* whom|strong=\"H1397\"* you|strong=\"H3925\"* discipline|strong=\"H3256\"*, Yah|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "that|strong=\"H3117\"* you|strong=\"H3117\"* may|strong=\"H3117\"* give him|strong=\"H5704\"* rest|strong=\"H8252\"* from|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* adversity|strong=\"H7451\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* won’t reject|strong=\"H5800\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* judgment|strong=\"H4941\"* will|strong=\"H3820\"* return|strong=\"H7725\"* to|strong=\"H5704\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 16, + "text": "Who|strong=\"H4310\"* will|strong=\"H4310\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* for|strong=\"H6965\"* me|strong=\"H5973\"* against|strong=\"H5973\"* the|strong=\"H6965\"* wicked|strong=\"H7489\"*?" + }, + { + "verseNum": 17, + "text": "Unless|strong=\"H3884\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* been|strong=\"H4592\"* my|strong=\"H3068\"* help|strong=\"H5833\"*," + }, + { + "verseNum": 18, + "text": "When|strong=\"H3068\"* I|strong=\"H3068\"* said, “My|strong=\"H3068\"* foot|strong=\"H7272\"* is|strong=\"H3068\"* slipping!”" + }, + { + "verseNum": 19, + "text": "In|strong=\"H5315\"* the|strong=\"H7130\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* my|strong=\"H7130\"* thoughts|strong=\"H8312\"* within|strong=\"H7130\"* me|strong=\"H5315\"*," + }, + { + "verseNum": 20, + "text": "Shall|strong=\"H5999\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* wickedness|strong=\"H5999\"* have|strong=\"H1942\"* fellowship|strong=\"H2266\"* with|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 21, + "text": "They|strong=\"H5921\"* gather|strong=\"H1413\"* themselves|strong=\"H5315\"* together|strong=\"H5921\"* against|strong=\"H5921\"* the|strong=\"H5921\"* soul|strong=\"H5315\"* of|strong=\"H5921\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H1961\"* my|strong=\"H3068\"* high tower|strong=\"H4869\"*," + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H7725\"* on|strong=\"H5921\"* them|strong=\"H5921\"* their|strong=\"H3068\"* own iniquity," + } + ] + }, + { + "chapterNum": 95, + "verses": [ + { + "verseNum": 1, + "text": "Oh come|strong=\"H3212\"*, let|strong=\"H3212\"*’s sing|strong=\"H7442\"* to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Let’s come|strong=\"H6923\"* before|strong=\"H6440\"* his|strong=\"H6440\"* presence|strong=\"H6440\"* with|strong=\"H6440\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3027\"* deep places|strong=\"H4278\"* of|strong=\"H3027\"* the|strong=\"H3027\"* earth." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6213\"* sea|strong=\"H3220\"* is|strong=\"H1931\"* his|strong=\"H3027\"*, and|strong=\"H3027\"* he|strong=\"H1931\"* made|strong=\"H6213\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 6, + "text": "Oh come, let’s worship|strong=\"H7812\"* and|strong=\"H3068\"* bow|strong=\"H7812\"* down|strong=\"H7812\"*." + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* our|strong=\"H8085\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Don’t harden|strong=\"H7185\"* your|strong=\"H3117\"* heart|strong=\"H3824\"*, as|strong=\"H3117\"* at|strong=\"H3117\"* Meribah," + }, + { + "verseNum": 9, + "text": "when|strong=\"H7200\"* your|strong=\"H7200\"* fathers tempted|strong=\"H5254\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 10, + "text": "Forty long|strong=\"H8141\"* years|strong=\"H8141\"* I|strong=\"H3045\"* was|strong=\"H3824\"* grieved|strong=\"H6962\"* with|strong=\"H3045\"* that|strong=\"H3045\"* generation|strong=\"H1755\"*," + }, + { + "verseNum": 11, + "text": "Therefore I|strong=\"H7650\"* swore|strong=\"H7650\"* in|strong=\"H7650\"* my|strong=\"H7650\"* wrath," + } + ] + }, + { + "chapterNum": 96, + "verses": [ + { + "verseNum": 1, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 3, + "text": "Declare|strong=\"H5608\"* his|strong=\"H3605\"* glory|strong=\"H3519\"* among|strong=\"H6381\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*!" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* idols," + }, + { + "verseNum": 6, + "text": "Honor|strong=\"H8597\"* and|strong=\"H6440\"* majesty|strong=\"H1926\"* are|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H5971\"* families|strong=\"H4940\"* of|strong=\"H3068\"* nations|strong=\"H5971\"*," + }, + { + "verseNum": 8, + "text": "Ascribe|strong=\"H3051\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* the|strong=\"H5375\"* glory|strong=\"H3519\"* due to|strong=\"H3068\"* his|strong=\"H5375\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 9, + "text": "Worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* holy|strong=\"H6944\"* array|strong=\"H1927\"*." + }, + { + "verseNum": 10, + "text": "Say among|strong=\"H5971\"* the|strong=\"H3068\"* nations|strong=\"H1471\"*, “Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*.”" + }, + { + "verseNum": 11, + "text": "Let|strong=\"H7481\"* the|strong=\"H8055\"* heavens|strong=\"H8064\"* be|strong=\"H8064\"* glad|strong=\"H8055\"*, and|strong=\"H8064\"* let|strong=\"H7481\"* the|strong=\"H8055\"* earth|strong=\"H8064\"* rejoice|strong=\"H8055\"*." + }, + { + "verseNum": 12, + "text": "Let the|strong=\"H3605\"* field|strong=\"H7704\"* and|strong=\"H6086\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3605\"* in|strong=\"H6086\"* it|strong=\"H3605\"* exult|strong=\"H5937\"*!" + }, + { + "verseNum": 13, + "text": "before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* comes|strong=\"H6440\"*," + } + ] + }, + { + "chapterNum": 97, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*!" + }, + { + "verseNum": 2, + "text": "Clouds|strong=\"H6051\"* and|strong=\"H4941\"* darkness|strong=\"H6205\"* are|strong=\"H4941\"* around|strong=\"H5439\"* him|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* goes|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H7200\"* lightning|strong=\"H1300\"* lights up|strong=\"H7200\"* the|strong=\"H7200\"* world|strong=\"H8398\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* mountains|strong=\"H2022\"* melt|strong=\"H4549\"* like|strong=\"H2022\"* wax|strong=\"H1749\"* at|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* heavens|strong=\"H8064\"* declare|strong=\"H5046\"* his|strong=\"H3605\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 7, + "text": "Let all|strong=\"H3605\"* them|strong=\"H5647\"* be|strong=\"H3605\"* shamed who|strong=\"H3605\"* serve|strong=\"H5647\"* engraved images|strong=\"H6459\"*," + }, + { + "verseNum": 8, + "text": "Zion|strong=\"H6726\"* heard|strong=\"H8085\"* and|strong=\"H3063\"* was|strong=\"H3068\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, are|strong=\"H3068\"* most|strong=\"H5945\"* high|strong=\"H5945\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3027\"* who|strong=\"H3068\"* love|strong=\"H2623\"* Yahweh|strong=\"H3068\"*, hate|strong=\"H8130\"* evil|strong=\"H7451\"*!" + }, + { + "verseNum": 11, + "text": "Light is|strong=\"H3820\"* sown|strong=\"H2232\"* for|strong=\"H6662\"* the|strong=\"H2232\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 12, + "text": "Be|strong=\"H3068\"* glad|strong=\"H8055\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, you|strong=\"H3034\"* righteous|strong=\"H6662\"* people!" + } + ] + }, + { + "chapterNum": 98, + "verses": [ + { + "verseNum": 1, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3045\"* known|strong=\"H3045\"* his|strong=\"H3068\"* salvation|strong=\"H3444\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* remembered|strong=\"H2142\"* his|strong=\"H3605\"* loving kindness|strong=\"H2617\"* and|strong=\"H3478\"* his|strong=\"H3605\"* faithfulness|strong=\"H2617\"* toward the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Make a|strong=\"H3068\"* joyful|strong=\"H7442\"* noise|strong=\"H7321\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 5, + "text": "Sing|strong=\"H2167\"* praises|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* the|strong=\"H3068\"* harp|strong=\"H3658\"*," + }, + { + "verseNum": 6, + "text": "With|strong=\"H3068\"* trumpets|strong=\"H2689\"* and|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H6440\"* ram’s horn|strong=\"H7782\"*," + }, + { + "verseNum": 7, + "text": "Let|strong=\"H7481\"* the|strong=\"H3427\"* sea|strong=\"H3220\"* roar|strong=\"H7481\"* with|strong=\"H3427\"* its|strong=\"H3220\"* fullness|strong=\"H4393\"*;" + }, + { + "verseNum": 8, + "text": "Let the|strong=\"H2022\"* rivers|strong=\"H5104\"* clap|strong=\"H4222\"* their|strong=\"H4222\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 9, + "text": "Let them|strong=\"H6440\"* sing before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 99, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* reigns|strong=\"H4427\"*! Let the|strong=\"H3068\"* peoples|strong=\"H5971\"* tremble|strong=\"H7264\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"* in|strong=\"H5921\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Let them|strong=\"H1931\"* praise|strong=\"H3034\"* your|strong=\"H3372\"* great|strong=\"H1419\"* and|strong=\"H1419\"* awesome|strong=\"H3372\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6213\"* King|strong=\"H4428\"*’s strength|strong=\"H5797\"* also|strong=\"H6213\"* loves justice|strong=\"H4941\"*." + }, + { + "verseNum": 5, + "text": "Exalt|strong=\"H7311\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Moses|strong=\"H4872\"* and|strong=\"H4872\"* Aaron were|strong=\"H3068\"* among|strong=\"H8034\"* his|strong=\"H3068\"* priests|strong=\"H3548\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5414\"* in|strong=\"H1696\"* the|strong=\"H5414\"* pillar|strong=\"H5982\"* of|strong=\"H5982\"* cloud|strong=\"H6051\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* answered|strong=\"H6030\"* them|strong=\"H1992\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Exalt|strong=\"H7311\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 100, + "verses": [ + { + "verseNum": 1, + "text": "Shout|strong=\"H7321\"* for|strong=\"H3068\"* joy|strong=\"H7321\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* lands!" + }, + { + "verseNum": 2, + "text": "Serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* gladness|strong=\"H8057\"*." + }, + { + "verseNum": 3, + "text": "Know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, he|strong=\"H1931\"* is|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Enter into his|strong=\"H1288\"* gates|strong=\"H8179\"* with|strong=\"H2691\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + } + ] + }, + { + "chapterNum": 101, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* of|strong=\"H3068\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H1980\"* will|strong=\"H1004\"* be|strong=\"H1004\"* careful to|strong=\"H1980\"* live|strong=\"H1980\"* a|strong=\"H3068\"* blameless|strong=\"H8549\"* life." + }, + { + "verseNum": 3, + "text": "I|strong=\"H1697\"* will|strong=\"H5869\"* set|strong=\"H7896\"* no|strong=\"H3808\"* vile thing|strong=\"H1697\"* before|strong=\"H5048\"* my|strong=\"H6213\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* perverse|strong=\"H6141\"* heart|strong=\"H3824\"* will|strong=\"H3808\"* be|strong=\"H3808\"* far|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3201\"* will|strong=\"H5869\"* silence whoever secretly|strong=\"H5643\"* slanders|strong=\"H3960\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H1870\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* on|strong=\"H1980\"* the|strong=\"H1870\"* faithful of|strong=\"H3427\"* the|strong=\"H1870\"* land," + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* who|strong=\"H3427\"* practices|strong=\"H6213\"* deceit|strong=\"H8267\"* won’t dwell|strong=\"H3427\"* within|strong=\"H7130\"* my|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "Morning|strong=\"H1242\"* by|strong=\"H3068\"* morning|strong=\"H1242\"*, I|strong=\"H3772\"* will|strong=\"H3068\"* destroy|strong=\"H6789\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land," + } + ] + }, + { + "chapterNum": 102, + "verses": [ + { + "verseNum": 1, + "text": "Hear my|strong=\"H3068\"* prayer|strong=\"H8605\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Don’t hide your|strong=\"H3068\"* face from|strong=\"H8085\"* me|strong=\"H8085\"* in|strong=\"H3068\"* the|strong=\"H8085\"* day of|strong=\"H3068\"* my|strong=\"H8085\"* distress." + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* my|strong=\"H5641\"* days|strong=\"H3117\"* consume away|strong=\"H5186\"* like|strong=\"H3117\"* smoke." + }, + { + "verseNum": 4, + "text": "My|strong=\"H3615\"* heart is|strong=\"H3117\"* blighted like|strong=\"H3615\"* grass, and|strong=\"H3117\"* withered," + }, + { + "verseNum": 5, + "text": "By|strong=\"H3588\"* reason of|strong=\"H3820\"* the|strong=\"H3588\"* voice of|strong=\"H3820\"* my|strong=\"H3588\"* groaning," + }, + { + "verseNum": 6, + "text": "I|strong=\"H6963\"* am like a|strong=\"H3068\"* pelican of|strong=\"H6963\"* the|strong=\"H6963\"* wilderness." + }, + { + "verseNum": 7, + "text": "I|strong=\"H1961\"* watch, and|strong=\"H4057\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1819\"* a|strong=\"H3068\"* sparrow that|strong=\"H1961\"* is|strong=\"H1961\"* alone on|strong=\"H1961\"* the|strong=\"H1961\"* housetop." + }, + { + "verseNum": 8, + "text": "My|strong=\"H5921\"* enemies reproach me|strong=\"H5921\"* all|strong=\"H5921\"* day." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H3117\"* eaten ashes like|strong=\"H3117\"* bread," + }, + { + "verseNum": 10, + "text": "because|strong=\"H3588\"* of|strong=\"H3899\"* your|strong=\"H3588\"* indignation and|strong=\"H3899\"* your|strong=\"H3588\"* wrath;" + }, + { + "verseNum": 11, + "text": "My|strong=\"H5375\"* days are|strong=\"H6440\"* like|strong=\"H6440\"* a|strong=\"H3068\"* long|strong=\"H6440\"* shadow." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3117\"* you|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3117\"* remain forever|strong=\"H3117\"*;" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3427\"* will|strong=\"H3068\"* arise and|strong=\"H3068\"* have|strong=\"H3068\"* mercy|strong=\"H3068\"* on|strong=\"H3427\"* Zion," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* servants take|strong=\"H6965\"* pleasure in|strong=\"H6965\"* her|strong=\"H6965\"* stones," + }, + { + "verseNum": 15, + "text": "So|strong=\"H3588\"* the|strong=\"H3588\"* nations will|strong=\"H5650\"* fear Yahweh|strong=\"H3068\"*’s name," + }, + { + "verseNum": 16, + "text": "For|strong=\"H8034\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* built up|strong=\"H4428\"* Zion." + }, + { + "verseNum": 17, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* responded to|strong=\"H3068\"* the|strong=\"H7200\"* prayer of|strong=\"H3068\"* the|strong=\"H7200\"* destitute," + }, + { + "verseNum": 18, + "text": "This|strong=\"H6437\"* will|strong=\"H3808\"* be|strong=\"H3808\"* written for|strong=\"H8605\"* the|strong=\"H3808\"* generation to|strong=\"H6437\"* come." + }, + { + "verseNum": 19, + "text": "for|strong=\"H5971\"* he|strong=\"H5971\"* has|strong=\"H3050\"* looked down|strong=\"H3789\"* from|strong=\"H5971\"* the|strong=\"H1984\"* height of|strong=\"H5971\"* his|strong=\"H5971\"* sanctuary." + }, + { + "verseNum": 20, + "text": "to|strong=\"H3068\"* hear the|strong=\"H3588\"* groans of|strong=\"H3068\"* the|strong=\"H3588\"* prisoner," + }, + { + "verseNum": 21, + "text": "that|strong=\"H8085\"* men|strong=\"H1121\"* may|strong=\"H1121\"* declare|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s name in|strong=\"H8085\"* Zion," + }, + { + "verseNum": 22, + "text": "when|strong=\"H3068\"* the|strong=\"H3068\"* peoples are|strong=\"H3068\"* gathered together," + }, + { + "verseNum": 23, + "text": "He|strong=\"H3068\"* weakened my|strong=\"H3068\"* strength along the|strong=\"H5647\"* course." + }, + { + "verseNum": 24, + "text": "I|strong=\"H3117\"* said, “My|strong=\"H6031\"* God, don’t take me|strong=\"H3117\"* away|strong=\"H1870\"* in|strong=\"H3117\"* the|strong=\"H3117\"* middle of|strong=\"H3117\"* my|strong=\"H6031\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 25, + "text": "Of|strong=\"H3117\"* old|strong=\"H8141\"*, you|strong=\"H3117\"* laid|strong=\"H5927\"* the|strong=\"H3117\"* foundation|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3027\"* will|strong=\"H8064\"* perish, but you|strong=\"H6440\"* will|strong=\"H8064\"* endure|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H1992\"* you|strong=\"H3605\"* are|strong=\"H1992\"* the|strong=\"H3605\"* same|strong=\"H1992\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3808\"* children of|strong=\"H8141\"* your|strong=\"H3808\"* servants will|strong=\"H3808\"* continue." + } + ] + }, + { + "chapterNum": 103, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* soul|strong=\"H5315\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "who|strong=\"H3605\"* forgives all|strong=\"H3605\"* your|strong=\"H3605\"* sins|strong=\"H5771\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H2416\"* redeems|strong=\"H1350\"* your|strong=\"H1350\"* life|strong=\"H2416\"* from|strong=\"H2416\"* destruction|strong=\"H7845\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H2896\"* satisfies|strong=\"H7646\"* your|strong=\"H7646\"* desire with|strong=\"H7646\"* good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* executes|strong=\"H6213\"* righteous|strong=\"H6666\"* acts|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H4872\"* made|strong=\"H3045\"* known|strong=\"H3045\"* his|strong=\"H3045\"* ways|strong=\"H1870\"* to|strong=\"H3478\"* Moses|strong=\"H4872\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* merciful|strong=\"H7349\"* and|strong=\"H3068\"* gracious|strong=\"H2587\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* always|strong=\"H5769\"* accuse|strong=\"H7378\"*;" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* has|strong=\"H6213\"* not|strong=\"H3808\"* dealt|strong=\"H6213\"* with|strong=\"H6213\"* us|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H6213\"* our|strong=\"H5921\"* sins|strong=\"H2399\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* are|strong=\"H8064\"* high|strong=\"H1361\"* above|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 12, + "text": "As|strong=\"H6588\"* far|strong=\"H7368\"* as|strong=\"H6588\"* the|strong=\"H4480\"* east|strong=\"H4217\"* is|strong=\"H6588\"* from|strong=\"H4480\"* the|strong=\"H4480\"* west|strong=\"H4628\"*," + }, + { + "verseNum": 13, + "text": "Like|strong=\"H1121\"* a|strong=\"H3068\"* father|strong=\"H1121\"* has|strong=\"H3068\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* his|strong=\"H3068\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* he|strong=\"H1931\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3045\"* made|strong=\"H3045\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H3117\"* for|strong=\"H3117\"* man, his|strong=\"H3117\"* days|strong=\"H3117\"* are|strong=\"H3117\"* like|strong=\"H3651\"* grass|strong=\"H2682\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* wind|strong=\"H7307\"* passes|strong=\"H5674\"* over|strong=\"H5674\"* it|strong=\"H3588\"*, and|strong=\"H4725\"* it|strong=\"H3588\"* is|strong=\"H7307\"* gone|strong=\"H5674\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s loving kindness|strong=\"H2617\"* is|strong=\"H3068\"* from|strong=\"H5921\"* everlasting|strong=\"H5769\"* to|strong=\"H5704\"* everlasting|strong=\"H5769\"* with|strong=\"H3068\"* those|strong=\"H5921\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "to|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H8104\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* established|strong=\"H3559\"* his|strong=\"H3605\"* throne|strong=\"H3678\"* in|strong=\"H3068\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, you|strong=\"H6213\"* angels|strong=\"H4397\"* of|strong=\"H3068\"* his|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* armies|strong=\"H6635\"* of|strong=\"H3068\"* his|strong=\"H3605\"*," + }, + { + "verseNum": 22, + "text": "Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3068\"* his|strong=\"H3605\"*," + } + ] + }, + { + "chapterNum": 104, + "verses": [ + { + "verseNum": 1, + "text": "Bless|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5186\"* covers|strong=\"H5844\"* himself|strong=\"H5844\"* with|strong=\"H8064\"* light as|strong=\"H8064\"* with|strong=\"H8064\"* a|strong=\"H3068\"* garment|strong=\"H8008\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5921\"* lays|strong=\"H7760\"* the|strong=\"H5921\"* beams|strong=\"H7136\"* of|strong=\"H7307\"* his|strong=\"H7760\"* rooms|strong=\"H5944\"* in|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* makes|strong=\"H6213\"* his|strong=\"H6213\"* messengers|strong=\"H4397\"*+ 104:4 or, angels* winds|strong=\"H7307\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* laid|strong=\"H3245\"* the|strong=\"H5921\"* foundations|strong=\"H3245\"* of|strong=\"H5921\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* covered|strong=\"H3680\"* it|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* deep|strong=\"H8415\"* as|strong=\"H2022\"* with|strong=\"H5921\"* a|strong=\"H3068\"* cloak." + }, + { + "verseNum": 7, + "text": "At|strong=\"H1606\"* your|strong=\"H4480\"* rebuke|strong=\"H1606\"* they|strong=\"H7482\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5927\"* mountains|strong=\"H2022\"* rose|strong=\"H5927\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7725\"* have set|strong=\"H7760\"* a|strong=\"H3068\"* boundary|strong=\"H1366\"* that|strong=\"H7725\"* they|strong=\"H1077\"* may|strong=\"H7725\"* not|strong=\"H1077\"* pass|strong=\"H5674\"* over|strong=\"H5674\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H1980\"* sends|strong=\"H7971\"* springs|strong=\"H4599\"* into|strong=\"H1980\"* the|strong=\"H7971\"* valleys|strong=\"H5158\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3605\"* give|strong=\"H8248\"* drink|strong=\"H8248\"* to|strong=\"H7704\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* birds|strong=\"H5775\"* of|strong=\"H6963\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* nest|strong=\"H7931\"* by|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "He waters|strong=\"H8248\"* the|strong=\"H8248\"* mountains|strong=\"H2022\"* from|strong=\"H2022\"* his|strong=\"H7646\"* rooms|strong=\"H5944\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H4480\"* causes|strong=\"H3318\"* the|strong=\"H4480\"* grass|strong=\"H2682\"* to|strong=\"H3318\"* grow|strong=\"H6779\"* for|strong=\"H3318\"* the|strong=\"H4480\"* livestock," + }, + { + "verseNum": 15, + "text": "wine|strong=\"H3196\"* that|strong=\"H8081\"* makes|strong=\"H8055\"* the|strong=\"H6440\"* heart|strong=\"H3824\"* of|strong=\"H6440\"* man|strong=\"H6440\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s trees|strong=\"H6086\"* are|strong=\"H3068\"* well watered," + }, + { + "verseNum": 17, + "text": "where|strong=\"H8033\"* the|strong=\"H8033\"* birds|strong=\"H6833\"* make|strong=\"H7077\"* their|strong=\"H8033\"* nests|strong=\"H7077\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8227\"* high|strong=\"H1364\"* mountains|strong=\"H2022\"* are|strong=\"H2022\"* for|strong=\"H5553\"* the|strong=\"H8227\"* wild|strong=\"H3277\"* goats|strong=\"H3277\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* appointed|strong=\"H4150\"* the|strong=\"H6213\"* moon|strong=\"H3394\"* for|strong=\"H6213\"* seasons|strong=\"H4150\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* make|strong=\"H7896\"* darkness|strong=\"H2822\"*, and|strong=\"H3915\"* it|strong=\"H1961\"* is|strong=\"H3605\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 21, + "text": "The|strong=\"H1245\"* young|strong=\"H3715\"* lions|strong=\"H3715\"* roar|strong=\"H7580\"* after|strong=\"H1245\"* their|strong=\"H1245\"* prey|strong=\"H2964\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H8121\"* sun|strong=\"H8121\"* rises|strong=\"H2224\"*, and|strong=\"H8121\"* they|strong=\"H2224\"* steal away," + }, + { + "verseNum": 23, + "text": "Man goes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H5704\"* his|strong=\"H3318\"* work|strong=\"H6467\"*," + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, how|strong=\"H4100\"* many|strong=\"H7231\"* are|strong=\"H4100\"* your|strong=\"H3068\"* works|strong=\"H4639\"*!" + }, + { + "verseNum": 25, + "text": "There|strong=\"H8033\"* is|strong=\"H2088\"* the|strong=\"H3027\"* sea|strong=\"H3220\"*, great|strong=\"H1419\"* and|strong=\"H1419\"* wide|strong=\"H7342\"*," + }, + { + "verseNum": 26, + "text": "There|strong=\"H8033\"* the|strong=\"H8033\"* ships go|strong=\"H1980\"*," + }, + { + "verseNum": 27, + "text": "These|strong=\"H3605\"* all|strong=\"H3605\"* wait|strong=\"H7663\"* for|strong=\"H6256\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*; they|strong=\"H1992\"* gather|strong=\"H3950\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H6440\"* hide|strong=\"H5641\"* your|strong=\"H6440\"* face|strong=\"H6440\"*; they|strong=\"H6440\"* are|strong=\"H6440\"* troubled." + }, + { + "verseNum": 30, + "text": "You|strong=\"H6440\"* send|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H6440\"* Spirit|strong=\"H7307\"* and|strong=\"H7971\"* they|strong=\"H6440\"* are|strong=\"H6440\"* created|strong=\"H1254\"*." + }, + { + "verseNum": 31, + "text": "Let|strong=\"H8055\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* endure|strong=\"H1961\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "He looks|strong=\"H5027\"* at|strong=\"H2022\"* the|strong=\"H5060\"* earth, and|strong=\"H2022\"* it|strong=\"H5060\"* trembles|strong=\"H7460\"*." + }, + { + "verseNum": 33, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3068\"* long|strong=\"H5750\"* as|strong=\"H3068\"* I|strong=\"H3068\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 34, + "text": "Let|strong=\"H8055\"* my|strong=\"H3068\"* meditation|strong=\"H7879\"* be|strong=\"H3068\"* sweet|strong=\"H6149\"* to|strong=\"H3068\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 35, + "text": "Let|strong=\"H5315\"* sinners|strong=\"H2400\"* be|strong=\"H5750\"* consumed|strong=\"H8552\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H3068\"* earth." + } + ] + }, + { + "chapterNum": 105, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Call|strong=\"H7121\"* on|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*!" + }, + { + "verseNum": 2, + "text": "Sing|strong=\"H7891\"* to|strong=\"H2167\"* him|strong=\"H3605\"*, sing|strong=\"H7891\"* praises|strong=\"H2167\"* to|strong=\"H2167\"* him|strong=\"H3605\"*!" + }, + { + "verseNum": 3, + "text": "Glory|strong=\"H1984\"* in|strong=\"H3068\"* his|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 4, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* his|strong=\"H3068\"* strength|strong=\"H5797\"*." + }, + { + "verseNum": 5, + "text": "Remember|strong=\"H2142\"* his|strong=\"H2142\"* marvelous|strong=\"H6381\"* works|strong=\"H6381\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*:" + }, + { + "verseNum": 6, + "text": "you|strong=\"H2233\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Abraham, his|strong=\"H3290\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1285\"* has|strong=\"H1697\"* remembered|strong=\"H2142\"* his|strong=\"H6680\"* covenant|strong=\"H1285\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3772\"* covenant which he made|strong=\"H3772\"* with|strong=\"H3772\"* Abraham," + }, + { + "verseNum": 10, + "text": "and|strong=\"H3478\"* confirmed|strong=\"H5975\"* it|strong=\"H5975\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"* for|strong=\"H2706\"* a|strong=\"H3068\"* statute|strong=\"H2706\"*;" + }, + { + "verseNum": 11, + "text": "saying, “To|strong=\"H5414\"* you|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H5159\"* of|strong=\"H5159\"* Canaan|strong=\"H3667\"*," + }, + { + "verseNum": 12, + "text": "when|strong=\"H1961\"* they were|strong=\"H1961\"* but|strong=\"H1961\"* a|strong=\"H3068\"* few|strong=\"H4592\"* men|strong=\"H4962\"* in|strong=\"H4962\"* number|strong=\"H4557\"*," + }, + { + "verseNum": 13, + "text": "They|strong=\"H5971\"* went|strong=\"H1980\"* about|strong=\"H1980\"* from|strong=\"H1980\"* nation|strong=\"H1471\"* to|strong=\"H1980\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3808\"* allowed no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H5921\"* do them|strong=\"H5921\"* wrong|strong=\"H6231\"*." + }, + { + "verseNum": 15, + "text": "“Don’t touch|strong=\"H5060\"* my|strong=\"H5060\"* anointed|strong=\"H4899\"* ones|strong=\"H4899\"*!" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3605\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 17, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* a|strong=\"H3068\"* man|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H5315\"* bruised his|strong=\"H6031\"* feet|strong=\"H7272\"* with|strong=\"H5315\"* shackles|strong=\"H3525\"*." + }, + { + "verseNum": 19, + "text": "until|strong=\"H5704\"* the|strong=\"H3068\"* time|strong=\"H6256\"* that|strong=\"H3068\"* his|strong=\"H3068\"* word|strong=\"H1697\"* happened|strong=\"H1697\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H7971\"* freed him|strong=\"H7971\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3605\"* made|strong=\"H7760\"* him|strong=\"H7760\"* lord of|strong=\"H1004\"* his|strong=\"H3605\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 22, + "text": "to|strong=\"H5315\"* discipline his|strong=\"H2449\"* princes|strong=\"H8269\"* at|strong=\"H5315\"* his|strong=\"H2449\"* pleasure|strong=\"H5315\"*," + }, + { + "verseNum": 23, + "text": "Israel|strong=\"H3478\"* also|strong=\"H3478\"* came|strong=\"H3478\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H5971\"* increased|strong=\"H6105\"* his|strong=\"H5971\"* people|strong=\"H5971\"* greatly|strong=\"H3966\"*," + }, + { + "verseNum": 25, + "text": "He|strong=\"H5971\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* heart|strong=\"H3820\"* to|strong=\"H3820\"* hate|strong=\"H8130\"* his|strong=\"H8130\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "He|strong=\"H7971\"* sent|strong=\"H7971\"* Moses|strong=\"H4872\"*, his|strong=\"H7971\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 27, + "text": "They|strong=\"H1697\"* performed|strong=\"H7760\"* miracles|strong=\"H4159\"* among them|strong=\"H7760\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H3808\"* sent|strong=\"H7971\"* darkness|strong=\"H2822\"*, and|strong=\"H7971\"* made|strong=\"H2821\"* it|strong=\"H7971\"* dark|strong=\"H2822\"*." + }, + { + "verseNum": 29, + "text": "He|strong=\"H1818\"* turned|strong=\"H2015\"* their|strong=\"H2015\"* waters|strong=\"H4325\"* into|strong=\"H2015\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 30, + "text": "Their land swarmed|strong=\"H8317\"* with|strong=\"H4428\"* frogs|strong=\"H6854\"*," + }, + { + "verseNum": 31, + "text": "He|strong=\"H3605\"* spoke, and|strong=\"H3605\"* swarms|strong=\"H6157\"* of|strong=\"H1366\"* flies|strong=\"H6157\"* came|strong=\"H1366\"*," + }, + { + "verseNum": 32, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* hail|strong=\"H1259\"* for|strong=\"H5414\"* rain|strong=\"H1653\"*," + }, + { + "verseNum": 33, + "text": "He|strong=\"H5221\"* struck|strong=\"H5221\"* their|strong=\"H7665\"* vines|strong=\"H1612\"* and|strong=\"H6086\"* also|strong=\"H5221\"* their|strong=\"H7665\"* fig|strong=\"H8384\"* trees|strong=\"H6086\"*," + }, + { + "verseNum": 34, + "text": "He spoke, and|strong=\"H4557\"* the|strong=\"H4557\"* locusts|strong=\"H3218\"* came" + }, + { + "verseNum": 35, + "text": "They|strong=\"H3605\"* ate up|strong=\"H3605\"* every|strong=\"H3605\"* plant|strong=\"H6212\"* in|strong=\"H3605\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 36, + "text": "He|strong=\"H3605\"* struck|strong=\"H5221\"* also|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* firstborn|strong=\"H1060\"* in|strong=\"H1060\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 37, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 38, + "text": "Egypt|strong=\"H4714\"* was|strong=\"H4714\"* glad|strong=\"H8055\"* when|strong=\"H3588\"* they|strong=\"H3588\"* departed|strong=\"H3318\"*," + }, + { + "verseNum": 39, + "text": "He spread|strong=\"H6566\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* for|strong=\"H3915\"* a|strong=\"H3068\"* covering|strong=\"H4539\"*," + }, + { + "verseNum": 40, + "text": "They asked|strong=\"H7592\"*, and|strong=\"H8064\"* he|strong=\"H8064\"* brought quails|strong=\"H7958\"*," + }, + { + "verseNum": 41, + "text": "He|strong=\"H1980\"* opened|strong=\"H6605\"* the|strong=\"H1980\"* rock|strong=\"H6697\"*, and|strong=\"H1980\"* waters|strong=\"H4325\"* gushed|strong=\"H4325\"* out|strong=\"H1980\"*." + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* remembered|strong=\"H2142\"* his|strong=\"H2142\"* holy|strong=\"H6944\"* word|strong=\"H1697\"*," + }, + { + "verseNum": 43, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* his|strong=\"H3318\"* people|strong=\"H5971\"* out|strong=\"H3318\"* with|strong=\"H3318\"* joy|strong=\"H8342\"*," + }, + { + "verseNum": 44, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* the|strong=\"H5414\"* lands of|strong=\"H1471\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 45, + "text": "that|strong=\"H5668\"* they might keep|strong=\"H8104\"* his|strong=\"H8104\"* statutes|strong=\"H2706\"*," + } + ] + }, + { + "chapterNum": 106, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* utter|strong=\"H4448\"* the|strong=\"H3605\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "Blessed are|strong=\"H4941\"* those|strong=\"H3605\"* who|strong=\"H3605\"* keep|strong=\"H8104\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 4, + "text": "Remember|strong=\"H2142\"* me|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, with|strong=\"H3068\"* the|strong=\"H3068\"* favor|strong=\"H7522\"* that|strong=\"H5971\"* you|strong=\"H6485\"* show to|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "that|strong=\"H7200\"* I|strong=\"H7200\"* may|strong=\"H1471\"* see|strong=\"H7200\"* the|strong=\"H7200\"* prosperity|strong=\"H2896\"* of|strong=\"H5159\"* your|strong=\"H7200\"* chosen," + }, + { + "verseNum": 6, + "text": "We have|strong=\"H5973\"* sinned|strong=\"H2398\"* with|strong=\"H5973\"* our|strong=\"H5973\"* fathers." + }, + { + "verseNum": 7, + "text": "Our|strong=\"H5921\"* fathers didn’t understand|strong=\"H7919\"* your|strong=\"H5921\"* wonders|strong=\"H6381\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 8, + "text": "Nevertheless he|strong=\"H3045\"* saved|strong=\"H3467\"* them|strong=\"H4616\"* for|strong=\"H8034\"* his|strong=\"H3045\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3212\"* rebuked|strong=\"H1605\"* the|strong=\"H1605\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* also, and|strong=\"H3212\"* it|strong=\"H3212\"* was|strong=\"H3220\"* dried|strong=\"H2717\"* up|strong=\"H2717\"*;" + }, + { + "verseNum": 10, + "text": "He|strong=\"H3027\"* saved|strong=\"H3467\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H8130\"* hated|strong=\"H8130\"* them|strong=\"H3027\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3680\"* waters|strong=\"H4325\"* covered|strong=\"H3680\"* their|strong=\"H1992\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 12, + "text": "Then they|strong=\"H1697\"* believed his|strong=\"H7891\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* soon|strong=\"H4116\"* forgot|strong=\"H7911\"* his|strong=\"H7911\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 14, + "text": "but gave in to|strong=\"H4057\"* craving in the|strong=\"H5254\"* desert|strong=\"H4057\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* their|strong=\"H5414\"* request|strong=\"H7596\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3068\"* envied|strong=\"H7065\"* Moses|strong=\"H4872\"* also|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* camp|strong=\"H4264\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H5921\"* earth opened|strong=\"H6605\"* and|strong=\"H1885\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* Dathan|strong=\"H1885\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* was|strong=\"H5712\"* kindled|strong=\"H1197\"* in|strong=\"H1197\"* their|strong=\"H7563\"* company|strong=\"H5712\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* calf|strong=\"H5695\"* in|strong=\"H6213\"* Horeb|strong=\"H2722\"*," + }, + { + "verseNum": 20, + "text": "Thus they|strong=\"H4171\"* exchanged|strong=\"H4171\"* their|strong=\"H4171\"* glory|strong=\"H3519\"*" + }, + { + "verseNum": 21, + "text": "They|strong=\"H6213\"* forgot|strong=\"H7911\"* God, their|strong=\"H6213\"* Savior|strong=\"H3467\"*," + }, + { + "verseNum": 22, + "text": "wondrous|strong=\"H6381\"* works|strong=\"H6381\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Ham|strong=\"H2526\"*," + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H4872\"* he|strong=\"H4872\"* said that|strong=\"H7725\"* he|strong=\"H4872\"* would|strong=\"H4872\"* destroy|strong=\"H7843\"* them|strong=\"H7725\"*," + }, + { + "verseNum": 24, + "text": "Yes, they|strong=\"H3808\"* despised|strong=\"H3988\"* the|strong=\"H1697\"* pleasant|strong=\"H2532\"* land." + }, + { + "verseNum": 25, + "text": "but|strong=\"H3808\"* murmured|strong=\"H7279\"* in|strong=\"H3068\"* their|strong=\"H3068\"* tents," + }, + { + "verseNum": 26, + "text": "Therefore he|strong=\"H3027\"* swore|strong=\"H5375\"* to|strong=\"H3027\"* them|strong=\"H1992\"*" + }, + { + "verseNum": 27, + "text": "that|strong=\"H1471\"* he|strong=\"H2233\"* would overthrow|strong=\"H5307\"* their|strong=\"H5307\"* offspring|strong=\"H2233\"* among the|strong=\"H5307\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 28, + "text": "They joined|strong=\"H6775\"* themselves also|strong=\"H4191\"* to|strong=\"H4191\"* Baal|strong=\"H1187\"* Peor|strong=\"H1187\"*," + }, + { + "verseNum": 29, + "text": "Thus they provoked|strong=\"H3707\"* him|strong=\"H3707\"* to|strong=\"H4611\"* anger|strong=\"H3707\"* with|strong=\"H3707\"* their|strong=\"H6555\"* deeds|strong=\"H4611\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H5975\"* Phinehas|strong=\"H6372\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* and|strong=\"H5975\"* executed judgment|strong=\"H6419\"*," + }, + { + "verseNum": 31, + "text": "That|strong=\"H5704\"* was credited|strong=\"H2803\"* to|strong=\"H5704\"* him|strong=\"H2803\"* for|strong=\"H5704\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 32, + "text": "They|strong=\"H5921\"* angered|strong=\"H7107\"* him|strong=\"H5921\"* also|strong=\"H4872\"* at|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Meribah," + }, + { + "verseNum": 33, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H8193\"* rebellious|strong=\"H4784\"* against|strong=\"H4784\"* his|strong=\"H3588\"* spirit|strong=\"H7307\"*," + }, + { + "verseNum": 34, + "text": "They|strong=\"H1992\"* didn’t destroy|strong=\"H8045\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 35, + "text": "but mixed themselves with|strong=\"H4639\"* the|strong=\"H3925\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 36, + "text": "They|strong=\"H1992\"* served|strong=\"H5647\"* their|strong=\"H1992\"* idols|strong=\"H6091\"*," + }, + { + "verseNum": 37, + "text": "Yes, they sacrificed|strong=\"H2076\"* their|strong=\"H2076\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H2076\"* daughters|strong=\"H1323\"* to|strong=\"H1121\"* demons|strong=\"H7700\"*." + }, + { + "verseNum": 38, + "text": "They|strong=\"H3667\"* shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 39, + "text": "Thus they were defiled|strong=\"H2930\"* with|strong=\"H4639\"* their|strong=\"H2930\"* works|strong=\"H4639\"*," + }, + { + "verseNum": 40, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"* burned|strong=\"H2734\"* with|strong=\"H3068\"* anger against|strong=\"H2734\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H3027\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 42, + "text": "Their|strong=\"H8478\"* enemies|strong=\"H3027\"* also|strong=\"H3027\"* oppressed|strong=\"H3905\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 43, + "text": "He rescued|strong=\"H5337\"* them|strong=\"H1992\"* many|strong=\"H7227\"* times|strong=\"H6471\"*," + }, + { + "verseNum": 44, + "text": "Nevertheless he|strong=\"H7200\"* regarded|strong=\"H7200\"* their|strong=\"H8085\"* distress|strong=\"H6862\"*," + }, + { + "verseNum": 45, + "text": "He|strong=\"H1285\"* remembered|strong=\"H2142\"* for|strong=\"H2617\"* them|strong=\"H1992\"* his|strong=\"H2142\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 46, + "text": "He|strong=\"H3605\"* made|strong=\"H5414\"* them|strong=\"H5414\"* also to|strong=\"H5414\"* be|strong=\"H5414\"* pitied|strong=\"H7356\"*" + }, + { + "verseNum": 47, + "text": "Save|strong=\"H3467\"* us|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 48, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + } + ] + }, + { + "chapterNum": 107, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*,+ 107:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Let|strong=\"H1350\"* the|strong=\"H3068\"* redeemed|strong=\"H1350\"* by|strong=\"H3027\"* Yahweh|strong=\"H3068\"* say so|strong=\"H1350\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3220\"* gathered|strong=\"H6908\"* out|strong=\"H6908\"* of|strong=\"H3220\"* the|strong=\"H6908\"* lands," + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* wandered|strong=\"H8582\"* in|strong=\"H5892\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* in|strong=\"H5892\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 5, + "text": "Hungry|strong=\"H7457\"* and|strong=\"H5315\"* thirsty|strong=\"H6771\"*," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cried|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H5892\"* led|strong=\"H3212\"* them|strong=\"H1869\"* also by|strong=\"H1870\"* a|strong=\"H3068\"* straight|strong=\"H3477\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* satisfies|strong=\"H7646\"* the|strong=\"H3588\"* longing|strong=\"H8264\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "Some sat|strong=\"H3427\"* in|strong=\"H3427\"* darkness|strong=\"H2822\"* and|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* shadow|strong=\"H6757\"* of|strong=\"H3427\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 11, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H4784\"* the|strong=\"H3588\"* words of|strong=\"H6098\"* God,+ 107:11 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + }, + { + "verseNum": 12, + "text": "Therefore he|strong=\"H3820\"* brought|strong=\"H3665\"* down|strong=\"H3782\"* their|strong=\"H3665\"* heart|strong=\"H3820\"* with|strong=\"H3820\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cried|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3318\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* darkness|strong=\"H2822\"* and|strong=\"H3318\"* the|strong=\"H3318\"* shadow|strong=\"H6757\"* of|strong=\"H3318\"* death|strong=\"H6757\"*," + }, + { + "verseNum": 15, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* broken|strong=\"H7665\"* the|strong=\"H3588\"* gates|strong=\"H1817\"* of|strong=\"H1817\"* bronze|strong=\"H5178\"*," + }, + { + "verseNum": 17, + "text": "Fools are|strong=\"H6588\"* afflicted|strong=\"H6031\"* because|strong=\"H1870\"* of|strong=\"H1870\"* their|strong=\"H1870\"* disobedience," + }, + { + "verseNum": 18, + "text": "Their|strong=\"H3605\"* soul|strong=\"H5315\"* abhors|strong=\"H8581\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H8179\"* food." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3068\"* they|strong=\"H1992\"* cry|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H7971\"* sends|strong=\"H7971\"* his|strong=\"H7971\"* word|strong=\"H1697\"*, and|strong=\"H7971\"* heals|strong=\"H7495\"* them|strong=\"H7971\"*," + }, + { + "verseNum": 21, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 22, + "text": "Let them|strong=\"H2076\"* offer|strong=\"H2076\"* the|strong=\"H5608\"* sacrifices|strong=\"H2077\"* of|strong=\"H2077\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 23, + "text": "Those|strong=\"H6213\"* who|strong=\"H7227\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H6213\"* sea|strong=\"H3220\"* in|strong=\"H6213\"* ships," + }, + { + "verseNum": 24, + "text": "these|strong=\"H1992\"* see|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s deeds|strong=\"H4639\"*," + }, + { + "verseNum": 25, + "text": "For|strong=\"H5975\"* he|strong=\"H7307\"* commands, and|strong=\"H5975\"* raises the|strong=\"H5975\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H5315\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* the|strong=\"H5927\"* sky|strong=\"H8064\"*; they|strong=\"H5315\"* go|strong=\"H5927\"* down|strong=\"H3381\"* again to|strong=\"H3381\"* the|strong=\"H5927\"* depths|strong=\"H8415\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3605\"* reel|strong=\"H5128\"* back and|strong=\"H2451\"* forth, and|strong=\"H2451\"* stagger|strong=\"H5128\"* like a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"*," + }, + { + "verseNum": 28, + "text": "Then|strong=\"H3318\"* they|strong=\"H1992\"* cry|strong=\"H6817\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* their|strong=\"H3068\"* trouble|strong=\"H6862\"*," + }, + { + "verseNum": 29, + "text": "He makes the|strong=\"H6965\"* storm|strong=\"H5591\"* a|strong=\"H3068\"* calm|strong=\"H1827\"*," + }, + { + "verseNum": 30, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* are glad|strong=\"H8055\"* because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2656\"* calm|strong=\"H8367\"*," + }, + { + "verseNum": 31, + "text": "Let them|strong=\"H1121\"* praise|strong=\"H3034\"* Yahweh|strong=\"H3068\"* for|strong=\"H3068\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 32, + "text": "Let them exalt|strong=\"H7311\"* him|strong=\"H1984\"* also|strong=\"H5971\"* in|strong=\"H5971\"* the|strong=\"H1984\"* assembly|strong=\"H6951\"* of|strong=\"H2205\"* the|strong=\"H1984\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 33, + "text": "He|strong=\"H7760\"* turns rivers|strong=\"H5104\"* into|strong=\"H4161\"* a|strong=\"H3068\"* desert|strong=\"H4057\"*," + }, + { + "verseNum": 34, + "text": "and|strong=\"H3427\"* a|strong=\"H3068\"* fruitful|strong=\"H6529\"* land|strong=\"H4420\"* into a|strong=\"H3068\"* salt|strong=\"H4420\"* waste|strong=\"H4420\"*," + }, + { + "verseNum": 35, + "text": "He|strong=\"H7760\"* turns a|strong=\"H3068\"* desert|strong=\"H4057\"* into|strong=\"H4161\"* a|strong=\"H3068\"* pool|strong=\"H4325\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 36, + "text": "There|strong=\"H8033\"* he|strong=\"H8033\"* makes|strong=\"H3559\"* the|strong=\"H8033\"* hungry|strong=\"H7457\"* live|strong=\"H3427\"*," + }, + { + "verseNum": 37, + "text": "sow|strong=\"H2232\"* fields|strong=\"H7704\"*, plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 38, + "text": "He|strong=\"H3808\"* blesses|strong=\"H1288\"* them|strong=\"H1288\"* also, so|strong=\"H3808\"* that|strong=\"H3808\"* they|strong=\"H3808\"* are|strong=\"H3808\"* multiplied|strong=\"H7235\"* greatly|strong=\"H3966\"*." + }, + { + "verseNum": 39, + "text": "Again, they|strong=\"H7451\"* are|strong=\"H7817\"* diminished|strong=\"H4591\"* and|strong=\"H7451\"* bowed|strong=\"H7817\"* down|strong=\"H7817\"*" + }, + { + "verseNum": 40, + "text": "He|strong=\"H3808\"* pours|strong=\"H8210\"* contempt on|strong=\"H5921\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 41, + "text": "Yet he|strong=\"H7760\"* lifts the|strong=\"H7760\"* needy out|strong=\"H7760\"* of|strong=\"H4940\"* their|strong=\"H7760\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 42, + "text": "The|strong=\"H3605\"* upright|strong=\"H3477\"* will|strong=\"H3477\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* be|strong=\"H6310\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 43, + "text": "Whoever|strong=\"H4310\"* is|strong=\"H3068\"* wise|strong=\"H2450\"* will|strong=\"H3068\"* pay|strong=\"H8104\"* attention|strong=\"H8104\"* to|strong=\"H3068\"* these|strong=\"H8104\"* things." + } + ] + }, + { + "chapterNum": 108, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H1732\"* heart is|strong=\"H1732\"* steadfast, God." + }, + { + "verseNum": 2, + "text": "Wake up, harp and|strong=\"H3820\"* lyre!" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5782\"* will give thanks to|strong=\"H7837\"* you, Yahweh|strong=\"H3068\"*, among the|strong=\"H5782\"* nations." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness is|strong=\"H3068\"* great above the|strong=\"H3068\"* heavens." + }, + { + "verseNum": 5, + "text": "Be|strong=\"H8064\"* exalted, God|strong=\"H8064\"*, above|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"*!" + }, + { + "verseNum": 6, + "text": "That|strong=\"H3605\"* your|strong=\"H3605\"* beloved may|strong=\"H3519\"* be|strong=\"H8064\"* delivered," + }, + { + "verseNum": 7, + "text": "God has|strong=\"H3225\"* spoken from|strong=\"H3467\"* his|strong=\"H3467\"* sanctuary: “In|strong=\"H6030\"* triumph," + }, + { + "verseNum": 8, + "text": "Gilead is|strong=\"H1696\"* mine|strong=\"H1696\"*. Manasseh is|strong=\"H1696\"* mine|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "Moab is|strong=\"H7218\"* my wash pot." + }, + { + "verseNum": 10, + "text": "Who will|strong=\"H4124\"* bring me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* fortified city?" + }, + { + "verseNum": 11, + "text": "Haven’t you|strong=\"H5704\"* rejected us, God|strong=\"H4310\"*?" + }, + { + "verseNum": 12, + "text": "Give us|strong=\"H2186\"* help against the|strong=\"H3318\"* enemy," + }, + { + "verseNum": 13, + "text": "Through God, we|strong=\"H3068\"* will|strong=\"H6862\"* do valiantly," + } + ] + }, + { + "chapterNum": 109, + "verses": [ + { + "verseNum": 1, + "text": "God of|strong=\"H4210\"* my|strong=\"H1732\"* praise|strong=\"H8416\"*, don’t remain|strong=\"H2790\"* silent|strong=\"H2790\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H7563\"* opened|strong=\"H6605\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* and|strong=\"H6310\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* deceit|strong=\"H4820\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H1697\"* have|strong=\"H1697\"* also surrounded|strong=\"H5437\"* me|strong=\"H5437\"* with|strong=\"H3898\"* words|strong=\"H1697\"* of|strong=\"H1697\"* hatred|strong=\"H8135\"*," + }, + { + "verseNum": 4, + "text": "In|strong=\"H8478\"* return|strong=\"H8478\"* for|strong=\"H8478\"* my|strong=\"H8478\"* love, they|strong=\"H8478\"* are|strong=\"H8478\"* my|strong=\"H8478\"* adversaries|strong=\"H7853\"*;" + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* have|strong=\"H7451\"* rewarded|strong=\"H7760\"* me|strong=\"H5921\"* evil|strong=\"H7451\"* for|strong=\"H5921\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "Set|strong=\"H5975\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* over|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H1961\"* he|strong=\"H3318\"* is|strong=\"H7563\"* judged|strong=\"H8199\"*, let|strong=\"H1961\"* him|strong=\"H3318\"* come|strong=\"H1961\"* out|strong=\"H3318\"* guilty|strong=\"H7563\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H1961\"* his|strong=\"H3947\"* days|strong=\"H3117\"* be|strong=\"H1961\"* few|strong=\"H4592\"*." + }, + { + "verseNum": 9, + "text": "Let|strong=\"H1961\"* his|strong=\"H1961\"* children|strong=\"H1121\"* be|strong=\"H1961\"* fatherless|strong=\"H3490\"*," + }, + { + "verseNum": 10, + "text": "Let his|strong=\"H5128\"* children|strong=\"H1121\"* be|strong=\"H1121\"* wandering beggars." + }, + { + "verseNum": 11, + "text": "Let the|strong=\"H3605\"* creditor|strong=\"H5383\"* seize|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3605\"* has|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H1961\"* there|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H1961\"* one|strong=\"H1961\"* to|strong=\"H1961\"* extend|strong=\"H1961\"* kindness|strong=\"H2617\"* to|strong=\"H1961\"* him|strong=\"H2603\"*," + }, + { + "verseNum": 13, + "text": "Let|strong=\"H1961\"* his|strong=\"H1961\"* posterity|strong=\"H1755\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*." + }, + { + "verseNum": 14, + "text": "Let|strong=\"H2142\"* the|strong=\"H3068\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fathers be|strong=\"H3068\"* remembered|strong=\"H2142\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 16, + "text": "because|strong=\"H3282\"* he|strong=\"H6213\"* didn’t remember|strong=\"H2142\"* to|strong=\"H4191\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"*," + }, + { + "verseNum": 17, + "text": "Yes, he|strong=\"H4480\"* loved cursing|strong=\"H7045\"*, and|strong=\"H1293\"* it|strong=\"H3808\"* came to|strong=\"H2654\"* him|strong=\"H4480\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H7130\"* clothed|strong=\"H3847\"* himself|strong=\"H4325\"* also with|strong=\"H3847\"* cursing|strong=\"H7045\"* as|strong=\"H4325\"* with|strong=\"H3847\"* his|strong=\"H7130\"* garment|strong=\"H4055\"*." + }, + { + "verseNum": 19, + "text": "Let|strong=\"H1961\"* it|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* him|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* clothing with|strong=\"H2296\"* which he covers|strong=\"H5844\"* himself|strong=\"H5844\"*," + }, + { + "verseNum": 20, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5921\"* reward|strong=\"H6468\"* of|strong=\"H3068\"* my|strong=\"H3068\"* adversaries|strong=\"H7853\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*,+ 109:21 The word translated “Lord” is “Adonai.”* for|strong=\"H3588\"* your|strong=\"H6213\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* am poor|strong=\"H6041\"* and|strong=\"H6041\"* needy|strong=\"H6041\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H1980\"* fade away|strong=\"H1980\"* like|strong=\"H1980\"* an evening shadow|strong=\"H6738\"*." + }, + { + "verseNum": 24, + "text": "My|strong=\"H1320\"* knees|strong=\"H1290\"* are|strong=\"H1290\"* weak|strong=\"H3782\"* through|strong=\"H3782\"* fasting|strong=\"H6685\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H7200\"* have|strong=\"H1961\"* also|strong=\"H1992\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 26, + "text": "Help|strong=\"H5826\"* me|strong=\"H3467\"*, Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*;" + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* may|strong=\"H1992\"* curse|strong=\"H7043\"*, but|strong=\"H1992\"* you|strong=\"H1288\"* bless|strong=\"H1288\"*." + }, + { + "verseNum": 29, + "text": "Let my adversaries|strong=\"H7853\"* be|strong=\"H7853\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* dishonor|strong=\"H3639\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H3034\"* great|strong=\"H7227\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5315\"* stand|strong=\"H5975\"* at|strong=\"H5975\"* the|strong=\"H3588\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H5315\"* the|strong=\"H3588\"* needy," + } + ] + }, + { + "chapterNum": 110, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"* to|strong=\"H5704\"* my|strong=\"H3068\"* Lord|strong=\"H3068\"*, “Sit|strong=\"H3427\"* at|strong=\"H3427\"* my|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* send|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3068\"* rod|strong=\"H4294\"* of|strong=\"H3068\"* your|strong=\"H3068\"* strength|strong=\"H5797\"* out|strong=\"H7971\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3117\"* people|strong=\"H5971\"* offer themselves willingly|strong=\"H5071\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3117\"* power|strong=\"H2428\"*, in|strong=\"H3117\"* holy|strong=\"H6944\"* array|strong=\"H1926\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* change|strong=\"H5162\"* his|strong=\"H3068\"* mind|strong=\"H5162\"*:" + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3225\"* is|strong=\"H3117\"* at|strong=\"H5921\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5921\"* will|strong=\"H1471\"* judge|strong=\"H1777\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3651\"* will|strong=\"H5158\"* drink|strong=\"H8354\"* of|strong=\"H7218\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* on|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*;" + } + ] + }, + { + "chapterNum": 111, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!+ 111:1 Psalm 111 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).*" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s works|strong=\"H4639\"* are|strong=\"H3068\"* great|strong=\"H1419\"*," + }, + { + "verseNum": 3, + "text": "His|strong=\"H5975\"* work|strong=\"H6467\"* is|strong=\"H6467\"* honor|strong=\"H1935\"* and|strong=\"H5975\"* majesty|strong=\"H1926\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* has|strong=\"H3068\"* caused|strong=\"H6213\"* his|strong=\"H3068\"* wonderful|strong=\"H6381\"* works|strong=\"H6381\"* to|strong=\"H3068\"* be|strong=\"H3068\"* remembered|strong=\"H2143\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5414\"* has|strong=\"H5414\"* given|strong=\"H5414\"* food|strong=\"H2964\"* to|strong=\"H5414\"* those who fear|strong=\"H3373\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* has|strong=\"H1471\"* shown|strong=\"H5046\"* his|strong=\"H5414\"* people|strong=\"H5971\"* the|strong=\"H5414\"* power|strong=\"H3581\"* of|strong=\"H5971\"* his|strong=\"H5414\"* works|strong=\"H4639\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* his|strong=\"H3605\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* truth and|strong=\"H3027\"* justice|strong=\"H4941\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H6213\"* are|strong=\"H6213\"* established|strong=\"H5564\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H7971\"* has|strong=\"H5971\"* sent|strong=\"H7971\"* redemption|strong=\"H6304\"* to|strong=\"H7971\"* his|strong=\"H7971\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* wisdom|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 112, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!+ 112:1 Psalm 112 is an acrostic poem, with each verse after the initial “Praise Yah!” starting with a letter of the alphabet (ordered from Alef to Tav).*" + }, + { + "verseNum": 2, + "text": "His|strong=\"H1288\"* offspring|strong=\"H2233\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mighty|strong=\"H1368\"* in|strong=\"H3477\"* the|strong=\"H1288\"* land." + }, + { + "verseNum": 3, + "text": "Wealth|strong=\"H1952\"* and|strong=\"H1004\"* riches|strong=\"H6239\"* are|strong=\"H1004\"* in|strong=\"H1004\"* his|strong=\"H5975\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "Light dawns in|strong=\"H3477\"* the|strong=\"H3477\"* darkness|strong=\"H2822\"* for|strong=\"H6662\"* the|strong=\"H3477\"* upright|strong=\"H3477\"*," + }, + { + "verseNum": 5, + "text": "It|strong=\"H4941\"* is|strong=\"H1697\"* well|strong=\"H2896\"* with|strong=\"H1697\"* the|strong=\"H1697\"* man|strong=\"H2896\"* who|strong=\"H2896\"* deals graciously|strong=\"H2603\"* and|strong=\"H4941\"* lends|strong=\"H3867\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* never|strong=\"H3808\"* be|strong=\"H1961\"* shaken|strong=\"H4131\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H3068\"* evil|strong=\"H7451\"* news|strong=\"H8052\"*." + }, + { + "verseNum": 8, + "text": "His|strong=\"H7200\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* established|strong=\"H5564\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* has|strong=\"H3519\"* dispersed|strong=\"H6340\"*, he|strong=\"H5414\"* has|strong=\"H3519\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* poor." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* be|strong=\"H7563\"* grieved|strong=\"H3707\"*." + } + ] + }, + { + "chapterNum": 113, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 3, + "text": "From|strong=\"H5704\"* the|strong=\"H3068\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H8121\"* to|strong=\"H5704\"* its|strong=\"H1984\"* going|strong=\"H8121\"* down|strong=\"H3996\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* high|strong=\"H7311\"* above|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* like|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "who stoops down|strong=\"H8213\"* to|strong=\"H7200\"* see|strong=\"H7200\"* in|strong=\"H8064\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* in|strong=\"H8064\"* the|strong=\"H7200\"* earth|strong=\"H8064\"*?" + }, + { + "verseNum": 7, + "text": "He raises|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6965\"* poor|strong=\"H1800\"* out|strong=\"H6965\"* of|strong=\"H6083\"* the|strong=\"H6965\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 8, + "text": "that|strong=\"H5971\"* he|strong=\"H5971\"* may|strong=\"H5971\"* set|strong=\"H3427\"* him|strong=\"H5973\"* with|strong=\"H5973\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1004\"* settles|strong=\"H3427\"* the|strong=\"H1984\"* barren|strong=\"H6135\"* woman|strong=\"H6135\"* in|strong=\"H3427\"* her|strong=\"H1984\"* home|strong=\"H1004\"*" + } + ] + }, + { + "chapterNum": 114, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3318\"* Israel|strong=\"H3478\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 2, + "text": "Judah|strong=\"H3063\"* became|strong=\"H1961\"* his|strong=\"H3478\"* sanctuary|strong=\"H6944\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* sea|strong=\"H3220\"* saw|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H7200\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1121\"* mountains|strong=\"H2022\"* skipped|strong=\"H7540\"* like|strong=\"H7540\"* rams," + }, + { + "verseNum": 5, + "text": "What|strong=\"H4100\"* was|strong=\"H3220\"* it|strong=\"H3588\"*, you|strong=\"H3588\"* sea|strong=\"H3220\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* fled|strong=\"H5127\"*?" + }, + { + "verseNum": 6, + "text": "You|strong=\"H2022\"* mountains|strong=\"H2022\"*, that|strong=\"H1121\"* you|strong=\"H2022\"* skipped|strong=\"H7540\"* like|strong=\"H7540\"* rams?" + }, + { + "verseNum": 7, + "text": "Tremble|strong=\"H2342\"*, you|strong=\"H6440\"* earth, at|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Lord," + }, + { + "verseNum": 8, + "text": "who|strong=\"H6697\"* turned|strong=\"H2015\"* the|strong=\"H2015\"* rock|strong=\"H6697\"* into|strong=\"H2015\"* a|strong=\"H3068\"* pool|strong=\"H4325\"* of|strong=\"H4325\"* water|strong=\"H4325\"*," + } + ] + }, + { + "chapterNum": 115, + "verses": [ + { + "verseNum": 1, + "text": "Not|strong=\"H3808\"* to|strong=\"H3068\"* us|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, not|strong=\"H3808\"* to|strong=\"H3068\"* us|strong=\"H5414\"*," + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* the|strong=\"H4100\"* nations|strong=\"H1471\"* say," + }, + { + "verseNum": 3, + "text": "But|strong=\"H3605\"* our|strong=\"H3605\"* God|strong=\"H8064\"* is|strong=\"H3605\"* in|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3027\"* idols|strong=\"H6091\"* are|strong=\"H3027\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* have|strong=\"H5869\"* mouths|strong=\"H6310\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* don’t speak|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3808\"* have|strong=\"H3808\"* ears, but|strong=\"H3808\"* they|strong=\"H3808\"* don’t hear|strong=\"H8085\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* have|strong=\"H3027\"* hands|strong=\"H3027\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* don’t feel|strong=\"H4184\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* them|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H3644\"* them|strong=\"H6213\"*;" + }, + { + "verseNum": 9, + "text": "Israel|strong=\"H3478\"*, trust in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 10, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Aaron, trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 11, + "text": "You who|strong=\"H1931\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* remembers|strong=\"H2142\"* us|strong=\"H2142\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* us|strong=\"H2142\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* those|strong=\"H5973\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* increase|strong=\"H3254\"* you|strong=\"H5921\"* more|strong=\"H3254\"* and|strong=\"H1121\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 15, + "text": "Blessed|strong=\"H1288\"* are|strong=\"H8064\"* you|strong=\"H6213\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 16, + "text": "The|strong=\"H5414\"* heavens|strong=\"H8064\"* are|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s heavens|strong=\"H8064\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* dead|strong=\"H4191\"* don’t praise|strong=\"H1984\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "but|strong=\"H6258\"* we|strong=\"H3068\"* will|strong=\"H5704\"* bless|strong=\"H1288\"* Yah|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 116, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3588\"* love Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H3588\"* listens|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 2, + "text": "Because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3117\"* turned|strong=\"H5186\"* his|strong=\"H7121\"* ear to|strong=\"H3117\"* me|strong=\"H7121\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H4672\"* cords|strong=\"H2256\"* of|strong=\"H4194\"* death|strong=\"H4194\"* surrounded me|strong=\"H4672\"*," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H7121\"* I|strong=\"H5315\"* called|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*:" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"* and|strong=\"H3068\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* the|strong=\"H8104\"* simple|strong=\"H6612\"*." + }, + { + "verseNum": 7, + "text": "Return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H3068\"* rest|strong=\"H4496\"*, my|strong=\"H3068\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5869\"* delivered|strong=\"H2502\"* my|strong=\"H3588\"* soul|strong=\"H5315\"* from|strong=\"H4480\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H1980\"* will|strong=\"H3068\"* walk|strong=\"H1980\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H1980\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* believed, therefore|strong=\"H3588\"* I|strong=\"H3588\"* said|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3605\"* said in|strong=\"H3605\"* my|strong=\"H3605\"* haste|strong=\"H2648\"*," + }, + { + "verseNum": 12, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* I|strong=\"H5921\"* give|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* for|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* benefits|strong=\"H8408\"* toward|strong=\"H5921\"* me|strong=\"H7725\"*?" + }, + { + "verseNum": 13, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5375\"* the|strong=\"H5375\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* salvation|strong=\"H3444\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3605\"* vows|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "Precious|strong=\"H3368\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"* is|strong=\"H3068\"* the|strong=\"H3068\"* death|strong=\"H4194\"* of|strong=\"H3068\"* his|strong=\"H3068\"* saints|strong=\"H2623\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, truly|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* your|strong=\"H3068\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* offer|strong=\"H2076\"* to|strong=\"H3068\"* you|strong=\"H7121\"* the|strong=\"H3068\"* sacrifice|strong=\"H2077\"* of|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*," + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* my|strong=\"H3605\"* vows|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "in|strong=\"H3068\"* the|strong=\"H8432\"* courts|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + } + ] + }, + { + "chapterNum": 117, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* nations|strong=\"H1471\"*!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* his|strong=\"H3068\"* loving kindness|strong=\"H2617\"* is|strong=\"H3068\"* great|strong=\"H1396\"* toward|strong=\"H5921\"* us|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 118, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Let|strong=\"H4994\"* Israel|strong=\"H3478\"* now|strong=\"H4994\"* say|strong=\"H3478\"*" + }, + { + "verseNum": 3, + "text": "Let|strong=\"H4994\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Aaron now|strong=\"H4994\"* say" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H4994\"* let|strong=\"H4994\"* those|strong=\"H3588\"* who|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"* say" + }, + { + "verseNum": 5, + "text": "Out|strong=\"H4480\"* of|strong=\"H4480\"* my|strong=\"H4480\"* distress|strong=\"H4712\"*, I|strong=\"H4480\"* called|strong=\"H7121\"* on|strong=\"H7121\"* Yah|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H3068\"* my|strong=\"H3068\"* side. I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H7200\"* my|strong=\"H3068\"* side among|strong=\"H7200\"* those|strong=\"H8130\"* who|strong=\"H3068\"* help|strong=\"H5826\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* to|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* better|strong=\"H2896\"* to|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*, yes|strong=\"H3588\"*, they|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3588\"* surrounded|strong=\"H5437\"* me|strong=\"H5437\"* like|strong=\"H5437\"* bees|strong=\"H1682\"*." + }, + { + "verseNum": 13, + "text": "You pushed|strong=\"H1760\"* me|strong=\"H1760\"* back hard, to|strong=\"H3068\"* make me|strong=\"H1760\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 14, + "text": "Yah|strong=\"H3068\"* is|strong=\"H1961\"* my|strong=\"H1961\"* strength|strong=\"H5797\"* and|strong=\"H5797\"* song|strong=\"H2176\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H6213\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* rejoicing|strong=\"H7440\"* and|strong=\"H3068\"* salvation|strong=\"H3444\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6213\"* tents of|strong=\"H3068\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6213\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7426\"*!" + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, but|strong=\"H3588\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 18, + "text": "Yah|strong=\"H3068\"* has|strong=\"H3050\"* punished|strong=\"H3256\"* me|strong=\"H5414\"* severely|strong=\"H3256\"*," + }, + { + "verseNum": 19, + "text": "Open|strong=\"H6605\"* to|strong=\"H8179\"* me the|strong=\"H3050\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 20, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H1961\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* answered|strong=\"H6030\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1129\"* stone which|strong=\"H3988\"* the|strong=\"H1129\"* builders|strong=\"H1129\"* rejected|strong=\"H3988\"*" + }, + { + "verseNum": 23, + "text": "This|strong=\"H2063\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s doing." + }, + { + "verseNum": 24, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 25, + "text": "Save|strong=\"H3467\"* us|strong=\"H4994\"* now|strong=\"H4994\"*, we|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3467\"*, Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 26, + "text": "Blessed|strong=\"H1288\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* comes in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*!" + }, + { + "verseNum": 27, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H5704\"* has|strong=\"H3068\"* given us light." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3034\"* are my|strong=\"H7311\"* God, and|strong=\"H3034\"* I|strong=\"H7311\"* will give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3034\"* you|strong=\"H3034\"*." + }, + { + "verseNum": 29, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + } + ] + }, + { + "chapterNum": 119, + "verses": [ + { + "verseNum": 1, + "text": "Blessed are|strong=\"H3068\"* those|strong=\"H1980\"* whose ways|strong=\"H1870\"* are|strong=\"H3068\"* blameless|strong=\"H8549\"*," + }, + { + "verseNum": 2, + "text": "Blessed are|strong=\"H5713\"* those|strong=\"H3605\"* who|strong=\"H3605\"* keep|strong=\"H5341\"* his|strong=\"H3605\"* statutes," + }, + { + "verseNum": 3, + "text": "Yes, they|strong=\"H3808\"* do|strong=\"H6466\"* nothing|strong=\"H3808\"* wrong|strong=\"H5766\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H6680\"* have|strong=\"H8104\"* commanded|strong=\"H6680\"* your|strong=\"H8104\"* precepts|strong=\"H6490\"*," + }, + { + "verseNum": 5, + "text": "Oh that|strong=\"H1870\"* my|strong=\"H8104\"* ways|strong=\"H1870\"* were|strong=\"H1870\"* steadfast|strong=\"H3559\"*" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* wouldn’t be|strong=\"H3808\"* disappointed," + }, + { + "verseNum": 7, + "text": "I will|strong=\"H3824\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3824\"* you|strong=\"H3034\"* with|strong=\"H4941\"* uprightness|strong=\"H3476\"* of|strong=\"H4941\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H5704\"* will|strong=\"H5704\"* observe|strong=\"H8104\"* your|strong=\"H8104\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 9, + "text": "How|strong=\"H4100\"* can|strong=\"H4100\"* a|strong=\"H3068\"* young|strong=\"H5288\"* man|strong=\"H5288\"* keep|strong=\"H8104\"* his|strong=\"H8104\"* way|strong=\"H1697\"* pure|strong=\"H2135\"*?" + }, + { + "verseNum": 10, + "text": "With|strong=\"H3820\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"* I|strong=\"H3605\"* have|strong=\"H3605\"* sought|strong=\"H1875\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* have|strong=\"H3808\"* hidden|strong=\"H6845\"* your|strong=\"H3808\"* word in|strong=\"H3808\"* my|strong=\"H6845\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 12, + "text": "Blessed|strong=\"H1288\"* are|strong=\"H3068\"* you|strong=\"H1288\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "With|strong=\"H6310\"* my|strong=\"H3605\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* have|strong=\"H3605\"* rejoiced|strong=\"H7797\"* in|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3605\"* testimonies|strong=\"H5715\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H7878\"* will meditate|strong=\"H7878\"* on|strong=\"H5027\"* your precepts|strong=\"H6490\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H1697\"* will|strong=\"H1697\"* delight|strong=\"H8173\"* myself in|strong=\"H1697\"* your|strong=\"H7911\"* statutes|strong=\"H2708\"*." + }, + { + "verseNum": 17, + "text": "Do|strong=\"H8104\"* good|strong=\"H1580\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 18, + "text": "Open|strong=\"H1540\"* my|strong=\"H1540\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H4480\"* am a|strong=\"H3068\"* stranger|strong=\"H1616\"* on|strong=\"H4480\"* the|strong=\"H4480\"* earth." + }, + { + "verseNum": 20, + "text": "My|strong=\"H3605\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* consumed with|strong=\"H5315\"* longing|strong=\"H8375\"* for|strong=\"H4941\"* your|strong=\"H3605\"* ordinances|strong=\"H4941\"* at|strong=\"H5315\"* all|strong=\"H3605\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H7686\"* have|strong=\"H2086\"* rebuked|strong=\"H1605\"* the|strong=\"H1605\"* proud|strong=\"H2086\"* who are|strong=\"H4687\"* cursed," + }, + { + "verseNum": 22, + "text": "Take|strong=\"H1556\"* reproach|strong=\"H2781\"* and|strong=\"H2781\"* contempt|strong=\"H2781\"* away|strong=\"H1556\"* from|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 23, + "text": "Though|strong=\"H1571\"* princes|strong=\"H8269\"* sit|strong=\"H3427\"* and|strong=\"H5650\"* slander me|strong=\"H1696\"*," + }, + { + "verseNum": 24, + "text": "Indeed|strong=\"H1571\"* your|strong=\"H1571\"* statutes are|strong=\"H1571\"* my|strong=\"H1571\"* delight|strong=\"H8191\"*," + }, + { + "verseNum": 25, + "text": "My|strong=\"H2421\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* laid low in|strong=\"H5315\"* the|strong=\"H1697\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H1870\"* declared|strong=\"H5608\"* my|strong=\"H5608\"* ways|strong=\"H1870\"*, and|strong=\"H6030\"* you|strong=\"H3925\"* answered|strong=\"H6030\"* me|strong=\"H6030\"*." + }, + { + "verseNum": 27, + "text": "Let me understand the|strong=\"H1870\"* teaching of|strong=\"H1870\"* your|strong=\"H6381\"* precepts|strong=\"H6490\"*!" + }, + { + "verseNum": 28, + "text": "My|strong=\"H6965\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* weary with|strong=\"H1697\"* sorrow|strong=\"H8424\"*;" + }, + { + "verseNum": 29, + "text": "Keep|strong=\"H5493\"* me|strong=\"H4480\"* from|strong=\"H4480\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* deceit|strong=\"H8267\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H1870\"* have chosen the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* truth." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3068\"* cling|strong=\"H1692\"* to|strong=\"H3068\"* your|strong=\"H3068\"* statutes, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "I|strong=\"H3588\"* run|strong=\"H7323\"* in|strong=\"H1870\"* the|strong=\"H3588\"* path|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 33, + "text": "Teach|strong=\"H3384\"* me, Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* your|strong=\"H3068\"* statutes|strong=\"H2706\"*." + }, + { + "verseNum": 34, + "text": "Give|strong=\"H8104\"* me|strong=\"H8104\"* understanding|strong=\"H3820\"*, and|strong=\"H8104\"* I|strong=\"H3605\"* will|strong=\"H3820\"* keep|strong=\"H8104\"* your|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 35, + "text": "Direct me|strong=\"H5410\"* in|strong=\"H2654\"* the|strong=\"H3588\"* path|strong=\"H5410\"* of|strong=\"H4687\"* your|strong=\"H3588\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 36, + "text": "Turn|strong=\"H5186\"* my|strong=\"H5186\"* heart|strong=\"H3820\"* toward your|strong=\"H5186\"* statutes," + }, + { + "verseNum": 37, + "text": "Turn|strong=\"H5674\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* away|strong=\"H5674\"* from|strong=\"H5869\"* looking|strong=\"H7200\"* at|strong=\"H7200\"* worthless|strong=\"H7723\"* things." + }, + { + "verseNum": 38, + "text": "Fulfill|strong=\"H6965\"* your|strong=\"H6965\"* promise to|strong=\"H6965\"* your|strong=\"H6965\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 39, + "text": "Take|strong=\"H5674\"* away|strong=\"H5674\"* my|strong=\"H3588\"* disgrace|strong=\"H2781\"* that|strong=\"H3588\"* I|strong=\"H3588\"* dread|strong=\"H3025\"*," + }, + { + "verseNum": 40, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* long|strong=\"H8373\"* for|strong=\"H2421\"* your|strong=\"H2009\"* precepts|strong=\"H6490\"*!" + }, + { + "verseNum": 41, + "text": "Let your|strong=\"H3068\"* loving kindness|strong=\"H2617\"* also|strong=\"H3068\"* come to|strong=\"H3068\"* me, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 42, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1697\"* have|strong=\"H1697\"* an|strong=\"H3588\"* answer|strong=\"H6030\"* for|strong=\"H3588\"* him|strong=\"H6030\"* who|strong=\"H3588\"* reproaches|strong=\"H2778\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 43, + "text": "Don’t snatch the|strong=\"H3588\"* word|strong=\"H1697\"* of|strong=\"H1697\"* truth out|strong=\"H5337\"* of|strong=\"H1697\"* my|strong=\"H5337\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 44, + "text": "So I will|strong=\"H8451\"* obey|strong=\"H8104\"* your|strong=\"H8104\"* law|strong=\"H8451\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 45, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* liberty|strong=\"H7342\"*," + }, + { + "verseNum": 46, + "text": "I|strong=\"H3808\"* will|strong=\"H4428\"* also|strong=\"H4428\"* speak|strong=\"H1696\"* of|strong=\"H4428\"* your|strong=\"H3808\"* statutes before|strong=\"H5048\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 47, + "text": "I will delight|strong=\"H8173\"* myself in your commandments|strong=\"H4687\"*," + }, + { + "verseNum": 48, + "text": "I|strong=\"H7878\"* reach out my|strong=\"H5375\"* hands|strong=\"H3709\"* for|strong=\"H2706\"* your|strong=\"H5375\"* commandments|strong=\"H4687\"*, which|strong=\"H2706\"* I|strong=\"H7878\"* love." + }, + { + "verseNum": 49, + "text": "Remember|strong=\"H2142\"* your|strong=\"H5921\"* word|strong=\"H1697\"* to|strong=\"H5921\"* your|strong=\"H5921\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 50, + "text": "This|strong=\"H2063\"* is|strong=\"H3588\"* my|strong=\"H3588\"* comfort|strong=\"H5165\"* in|strong=\"H3588\"* my|strong=\"H3588\"* affliction|strong=\"H6040\"*," + }, + { + "verseNum": 51, + "text": "The|strong=\"H5704\"* arrogant|strong=\"H2086\"* mock|strong=\"H3887\"* me|strong=\"H3808\"* excessively," + }, + { + "verseNum": 52, + "text": "I|strong=\"H2142\"* remember|strong=\"H2142\"* your|strong=\"H3068\"* ordinances|strong=\"H4941\"* of|strong=\"H3068\"* old|strong=\"H5769\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 53, + "text": "Indignation|strong=\"H2152\"* has|strong=\"H2152\"* taken hold on me|strong=\"H5800\"*," + }, + { + "verseNum": 54, + "text": "Your|strong=\"H1961\"* statutes|strong=\"H2706\"* have|strong=\"H1961\"* been|strong=\"H1961\"* my|strong=\"H1961\"* songs|strong=\"H2158\"*" + }, + { + "verseNum": 55, + "text": "I|strong=\"H2142\"* have|strong=\"H3068\"* remembered|strong=\"H2142\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* the|strong=\"H8104\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 56, + "text": "This|strong=\"H2063\"* is|strong=\"H1961\"* my|strong=\"H1961\"* way|strong=\"H2063\"*," + }, + { + "verseNum": 57, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H8104\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 58, + "text": "I|strong=\"H6440\"* sought|strong=\"H2470\"* your|strong=\"H3605\"* favor|strong=\"H6440\"* with|strong=\"H6440\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 59, + "text": "I|strong=\"H1870\"* considered|strong=\"H2803\"* my|strong=\"H7725\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 60, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* hurry|strong=\"H2363\"*, and|strong=\"H8104\"* not|strong=\"H3808\"* delay|strong=\"H4102\"*," + }, + { + "verseNum": 61, + "text": "The|strong=\"H7911\"* ropes|strong=\"H2256\"* of|strong=\"H8451\"* the|strong=\"H7911\"* wicked|strong=\"H7563\"* bind me|strong=\"H7911\"*," + }, + { + "verseNum": 62, + "text": "At|strong=\"H5921\"* midnight|strong=\"H2676\"* I|strong=\"H5921\"* will|strong=\"H6664\"* rise|strong=\"H6965\"* to|strong=\"H5921\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 63, + "text": "I|strong=\"H3605\"* am a|strong=\"H3068\"* friend of|strong=\"H3605\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* fear|strong=\"H3372\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 64, + "text": "The|strong=\"H3068\"* earth is|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 65, + "text": "You|strong=\"H6213\"* have|strong=\"H3068\"* treated|strong=\"H6213\"* your|strong=\"H3068\"* servant|strong=\"H5650\"* well|strong=\"H2896\"*," + }, + { + "verseNum": 66, + "text": "Teach|strong=\"H3925\"* me|strong=\"H3925\"* good|strong=\"H2898\"* judgment|strong=\"H2940\"* and|strong=\"H4687\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 67, + "text": "Before|strong=\"H2962\"* I|strong=\"H2962\"* was afflicted|strong=\"H6031\"*, I|strong=\"H2962\"* went|strong=\"H7683\"* astray|strong=\"H7683\"*;" + }, + { + "verseNum": 68, + "text": "You|strong=\"H3925\"* are|strong=\"H2896\"* good|strong=\"H2896\"*, and|strong=\"H2706\"* do|strong=\"H2895\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 69, + "text": "The|strong=\"H3605\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* smeared a|strong=\"H3068\"* lie|strong=\"H8267\"* upon|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 70, + "text": "Their|strong=\"H8173\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* as|strong=\"H2954\"* callous as|strong=\"H2954\"* the|strong=\"H3820\"* fat|strong=\"H2459\"*," + }, + { + "verseNum": 71, + "text": "It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H3925\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* been afflicted|strong=\"H6031\"*," + }, + { + "verseNum": 72, + "text": "The|strong=\"H2896\"* law|strong=\"H8451\"* of|strong=\"H6310\"* your|strong=\"H3701\"* mouth|strong=\"H6310\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H6310\"* me than|strong=\"H2896\"* thousands of|strong=\"H6310\"* pieces of|strong=\"H6310\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 73, + "text": "Your|strong=\"H6213\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* made|strong=\"H6213\"* me|strong=\"H6213\"* and|strong=\"H3027\"* formed|strong=\"H3559\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 74, + "text": "Those|strong=\"H3588\"* who|strong=\"H3588\"* fear|strong=\"H3373\"* you|strong=\"H3588\"* will|strong=\"H1697\"* see|strong=\"H7200\"* me|strong=\"H7200\"* and|strong=\"H7200\"* be|strong=\"H1697\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 75, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"* are|strong=\"H3068\"* righteous|strong=\"H6664\"*," + }, + { + "verseNum": 76, + "text": "Please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H4994\"* loving kindness|strong=\"H2617\"* be|strong=\"H1961\"* for|strong=\"H5650\"* my|strong=\"H1961\"* comfort|strong=\"H5162\"*," + }, + { + "verseNum": 77, + "text": "Let your|strong=\"H3588\"* tender mercies|strong=\"H7356\"* come|strong=\"H2421\"* to|strong=\"H2421\"* me|strong=\"H2421\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H2421\"* live|strong=\"H2421\"*;" + }, + { + "verseNum": 78, + "text": "Let the|strong=\"H3588\"* proud|strong=\"H2086\"* be|strong=\"H2086\"* disappointed, for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H2086\"* overthrown|strong=\"H5791\"* me|strong=\"H5791\"* wrongfully|strong=\"H8267\"*." + }, + { + "verseNum": 79, + "text": "Let|strong=\"H7725\"* those who|strong=\"H3045\"* fear|strong=\"H3373\"* you|strong=\"H7725\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 80, + "text": "Let|strong=\"H3808\"* my|strong=\"H1961\"* heart|strong=\"H3820\"* be|strong=\"H1961\"* blameless|strong=\"H8549\"* toward your|strong=\"H3808\"* decrees|strong=\"H2706\"*," + }, + { + "verseNum": 81, + "text": "My|strong=\"H3615\"* soul|strong=\"H5315\"* faints|strong=\"H3615\"* for|strong=\"H5315\"* your|strong=\"H3615\"* salvation|strong=\"H8668\"*." + }, + { + "verseNum": 82, + "text": "My|strong=\"H3615\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* for|strong=\"H5869\"* your|strong=\"H3615\"* word." + }, + { + "verseNum": 83, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* wineskin|strong=\"H4997\"* in|strong=\"H3808\"* the|strong=\"H3588\"* smoke|strong=\"H7008\"*." + }, + { + "verseNum": 84, + "text": "How|strong=\"H4100\"* many|strong=\"H4100\"* are|strong=\"H3117\"* the|strong=\"H6213\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H6213\"* servant|strong=\"H5650\"*?" + }, + { + "verseNum": 85, + "text": "The|strong=\"H3808\"* proud|strong=\"H2086\"* have|strong=\"H2086\"* dug|strong=\"H3738\"* pits|strong=\"H7882\"* for|strong=\"H3808\"* me|strong=\"H3808\"*," + }, + { + "verseNum": 86, + "text": "All|strong=\"H3605\"* of|strong=\"H3605\"* your|strong=\"H3605\"* commandments|strong=\"H4687\"* are|strong=\"H4687\"* faithful." + }, + { + "verseNum": 87, + "text": "They|strong=\"H3808\"* had|strong=\"H3808\"* almost|strong=\"H4592\"* wiped me|strong=\"H5800\"* from|strong=\"H3615\"* the|strong=\"H5800\"* earth," + }, + { + "verseNum": 88, + "text": "Preserve|strong=\"H8104\"* my|strong=\"H8104\"* life|strong=\"H2421\"* according|strong=\"H6310\"* to|strong=\"H8104\"* your|strong=\"H8104\"* loving kindness|strong=\"H2617\"*," + }, + { + "verseNum": 89, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* word|strong=\"H1697\"* is|strong=\"H3068\"* settled|strong=\"H5324\"* in|strong=\"H3068\"* heaven|strong=\"H8064\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 90, + "text": "Your|strong=\"H3559\"* faithfulness|strong=\"H3559\"* is|strong=\"H5975\"* to|strong=\"H1755\"* all|strong=\"H1755\"* generations|strong=\"H1755\"*." + }, + { + "verseNum": 91, + "text": "Your|strong=\"H3605\"* laws remain|strong=\"H5975\"* to|strong=\"H3117\"* this|strong=\"H3588\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 92, + "text": "Unless|strong=\"H3884\"* your|strong=\"H3884\"* law|strong=\"H8451\"* had been my delight|strong=\"H8191\"*," + }, + { + "verseNum": 93, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* never|strong=\"H3808\"* forget|strong=\"H7911\"* your|strong=\"H3588\"* precepts|strong=\"H6490\"*," + }, + { + "verseNum": 94, + "text": "I|strong=\"H3588\"* am yours." + }, + { + "verseNum": 95, + "text": "The|strong=\"H7563\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* waited|strong=\"H6960\"* for|strong=\"H6960\"* me, to|strong=\"H7563\"* destroy me." + }, + { + "verseNum": 96, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* limit|strong=\"H7093\"* to|strong=\"H7200\"* all|strong=\"H3605\"* perfection|strong=\"H8502\"*," + }, + { + "verseNum": 97, + "text": "How|strong=\"H4100\"* I|strong=\"H3117\"* love your|strong=\"H3605\"* law|strong=\"H8451\"*!" + }, + { + "verseNum": 98, + "text": "Your|strong=\"H3588\"* commandments|strong=\"H4687\"* make|strong=\"H2449\"* me|strong=\"H3588\"* wiser|strong=\"H2449\"* than|strong=\"H3588\"* my|strong=\"H3588\"* enemies," + }, + { + "verseNum": 99, + "text": "I|strong=\"H3588\"* have|strong=\"H7919\"* more|strong=\"H3588\"* understanding|strong=\"H7919\"* than|strong=\"H3588\"* all|strong=\"H3605\"* my|strong=\"H3605\"* teachers|strong=\"H3925\"*," + }, + { + "verseNum": 100, + "text": "I|strong=\"H3588\"* understand more|strong=\"H3588\"* than|strong=\"H3588\"* the|strong=\"H3588\"* aged|strong=\"H2205\"*," + }, + { + "verseNum": 101, + "text": "I|strong=\"H1697\"* have|strong=\"H1697\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* feet|strong=\"H7272\"* from|strong=\"H7451\"* every|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1697\"*," + }, + { + "verseNum": 102, + "text": "I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H3588\"* ordinances|strong=\"H4941\"*," + }, + { + "verseNum": 103, + "text": "How|strong=\"H4100\"* sweet|strong=\"H4452\"* are|strong=\"H4100\"* your|strong=\"H4100\"* promises to|strong=\"H6310\"* my|strong=\"H4100\"* taste|strong=\"H2441\"*," + }, + { + "verseNum": 104, + "text": "Through|strong=\"H5921\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"*, I|strong=\"H5921\"* get understanding;" + }, + { + "verseNum": 105, + "text": "Your|strong=\"H1697\"* word|strong=\"H1697\"* is|strong=\"H1697\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"* to|strong=\"H1697\"* my|strong=\"H7272\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 106, + "text": "I|strong=\"H6965\"* have|strong=\"H8104\"* sworn|strong=\"H7650\"*, and|strong=\"H6965\"* have|strong=\"H8104\"* confirmed|strong=\"H6965\"* it|strong=\"H8104\"*," + }, + { + "verseNum": 107, + "text": "I|strong=\"H5704\"* am|strong=\"H3068\"* afflicted|strong=\"H6031\"* very|strong=\"H3966\"* much|strong=\"H3966\"*." + }, + { + "verseNum": 108, + "text": "Accept|strong=\"H7521\"*, I|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3925\"*, the|strong=\"H3068\"* willing|strong=\"H5071\"* offerings|strong=\"H5071\"* of|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 109, + "text": "My|strong=\"H7911\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* continually|strong=\"H8548\"* in|strong=\"H5315\"* my|strong=\"H7911\"* hand|strong=\"H3709\"*," + }, + { + "verseNum": 110, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* have|strong=\"H7563\"* laid|strong=\"H5414\"* a|strong=\"H3068\"* snare|strong=\"H6341\"* for|strong=\"H5414\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 111, + "text": "I|strong=\"H3588\"* have|strong=\"H5157\"* taken your|strong=\"H3588\"* testimonies|strong=\"H5715\"* as|strong=\"H3588\"* a|strong=\"H3068\"* heritage|strong=\"H5157\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 112, + "text": "I|strong=\"H6213\"* have set|strong=\"H6213\"* my|strong=\"H6213\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* perform|strong=\"H6213\"* your|strong=\"H5186\"* statutes|strong=\"H2706\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 113, + "text": "I hate|strong=\"H8130\"* double-minded|strong=\"H5588\"* men," + }, + { + "verseNum": 114, + "text": "You|strong=\"H1697\"* are|strong=\"H1697\"* my hiding|strong=\"H5643\"* place|strong=\"H5643\"* and|strong=\"H1697\"* my shield|strong=\"H4043\"*." + }, + { + "verseNum": 115, + "text": "Depart|strong=\"H5493\"* from|strong=\"H4480\"* me|strong=\"H4480\"*, you|strong=\"H4480\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 116, + "text": "Uphold|strong=\"H5564\"* me|strong=\"H2421\"* according to|strong=\"H2421\"* your|strong=\"H2421\"* word, that|strong=\"H2421\"* I may|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 117, + "text": "Hold|strong=\"H5582\"* me|strong=\"H3467\"* up|strong=\"H5582\"*, and|strong=\"H2706\"* I will|strong=\"H3467\"* be|strong=\"H8548\"* safe|strong=\"H3467\"*," + }, + { + "verseNum": 118, + "text": "You|strong=\"H3588\"* reject all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* stray|strong=\"H7686\"* from|strong=\"H3605\"* your|strong=\"H3605\"* statutes|strong=\"H2706\"*," + }, + { + "verseNum": 119, + "text": "You|strong=\"H3605\"* put|strong=\"H7673\"* away|strong=\"H7673\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth like|strong=\"H3651\"* dross|strong=\"H5509\"*." + }, + { + "verseNum": 120, + "text": "My|strong=\"H3372\"* flesh|strong=\"H1320\"* trembles|strong=\"H5568\"* for|strong=\"H4941\"* fear|strong=\"H3372\"* of|strong=\"H4941\"* you|strong=\"H3372\"*." + }, + { + "verseNum": 121, + "text": "I|strong=\"H6213\"* have done|strong=\"H6213\"* what|strong=\"H6213\"* is|strong=\"H4941\"* just|strong=\"H6664\"* and|strong=\"H4941\"* righteous|strong=\"H6664\"*." + }, + { + "verseNum": 122, + "text": "Ensure your|strong=\"H6231\"* servant|strong=\"H5650\"*’s well-being." + }, + { + "verseNum": 123, + "text": "My|strong=\"H3615\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* looking for|strong=\"H5869\"* your|strong=\"H3615\"* salvation|strong=\"H3444\"*," + }, + { + "verseNum": 124, + "text": "Deal|strong=\"H6213\"* with|strong=\"H5973\"* your|strong=\"H6213\"* servant|strong=\"H5650\"* according to|strong=\"H6213\"* your|strong=\"H6213\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 125, + "text": "I|strong=\"H3045\"* am your|strong=\"H3045\"* servant|strong=\"H5650\"*. Give me|strong=\"H5650\"* understanding," + }, + { + "verseNum": 126, + "text": "It|strong=\"H6213\"* is|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H3068\"* act|strong=\"H6213\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 127, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* love your|strong=\"H5921\"* commandments|strong=\"H4687\"* more|strong=\"H3651\"* than|strong=\"H5921\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 128, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* consider all|strong=\"H3605\"* of|strong=\"H5921\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"* to|strong=\"H5921\"* be|strong=\"H8130\"* right|strong=\"H3474\"*." + }, + { + "verseNum": 129, + "text": "Your|strong=\"H5921\"* testimonies|strong=\"H5715\"* are|strong=\"H5715\"* wonderful|strong=\"H6382\"*," + }, + { + "verseNum": 130, + "text": "The|strong=\"H1697\"* entrance|strong=\"H6608\"* of|strong=\"H1697\"* your|strong=\"H1697\"* words|strong=\"H1697\"* gives light." + }, + { + "verseNum": 131, + "text": "I|strong=\"H3588\"* opened|strong=\"H6473\"* my|strong=\"H3588\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* and|strong=\"H6310\"* panted|strong=\"H7602\"*," + }, + { + "verseNum": 132, + "text": "Turn|strong=\"H6437\"* to|strong=\"H8034\"* me|strong=\"H2603\"*, and|strong=\"H4941\"* have|strong=\"H6437\"* mercy|strong=\"H2603\"* on|strong=\"H6437\"* me|strong=\"H2603\"*," + }, + { + "verseNum": 133, + "text": "Establish|strong=\"H3559\"* my|strong=\"H3605\"* footsteps|strong=\"H6471\"* in|strong=\"H3559\"* your|strong=\"H3605\"* word." + }, + { + "verseNum": 134, + "text": "Redeem|strong=\"H6299\"* me|strong=\"H8104\"* from|strong=\"H8104\"* the|strong=\"H8104\"* oppression|strong=\"H6233\"* of|strong=\"H6233\"* man," + }, + { + "verseNum": 135, + "text": "Make your|strong=\"H6440\"* face|strong=\"H6440\"* shine on|strong=\"H6440\"* your|strong=\"H6440\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 136, + "text": "Streams|strong=\"H6388\"* of|strong=\"H5869\"* tears|strong=\"H6388\"* run|strong=\"H3381\"* down|strong=\"H3381\"* my|strong=\"H8104\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 137, + "text": "You are|strong=\"H3068\"* righteous|strong=\"H6662\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 138, + "text": "You|strong=\"H6680\"* have commanded|strong=\"H6680\"* your|strong=\"H6680\"* statutes in|strong=\"H3966\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 139, + "text": "My|strong=\"H3588\"* zeal|strong=\"H7068\"* wears me|strong=\"H7911\"* out," + }, + { + "verseNum": 140, + "text": "Your promises have|strong=\"H5650\"* been thoroughly tested|strong=\"H6884\"*," + }, + { + "verseNum": 141, + "text": "I|strong=\"H3808\"* am small|strong=\"H6810\"* and|strong=\"H6810\"* despised." + }, + { + "verseNum": 142, + "text": "Your|strong=\"H5769\"* righteousness|strong=\"H6666\"* is|strong=\"H6664\"* an everlasting|strong=\"H5769\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 143, + "text": "Trouble|strong=\"H6862\"* and|strong=\"H4687\"* anguish|strong=\"H4689\"* have|strong=\"H4672\"* taken|strong=\"H4672\"* hold|strong=\"H4672\"* of|strong=\"H4687\"* me|strong=\"H4672\"*." + }, + { + "verseNum": 144, + "text": "Your|strong=\"H2421\"* testimonies|strong=\"H5715\"* are|strong=\"H5715\"* righteous|strong=\"H6664\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 145, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* called|strong=\"H7121\"* with|strong=\"H3068\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 146, + "text": "I|strong=\"H7121\"* have|strong=\"H8104\"* called|strong=\"H7121\"* to|strong=\"H8104\"* you|strong=\"H3467\"*. Save|strong=\"H3467\"* me|strong=\"H7121\"*!" + }, + { + "verseNum": 147, + "text": "I|strong=\"H1697\"* rise|strong=\"H6923\"* before|strong=\"H6923\"* dawn|strong=\"H5399\"* and|strong=\"H1697\"* cry|strong=\"H7768\"* for|strong=\"H7768\"* help|strong=\"H7768\"*." + }, + { + "verseNum": 148, + "text": "My|strong=\"H6923\"* eyes|strong=\"H5869\"* stay open|strong=\"H5869\"* through the|strong=\"H5869\"* night watches," + }, + { + "verseNum": 149, + "text": "Hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* according|strong=\"H4941\"* to|strong=\"H3068\"* your|strong=\"H3068\"* loving kindness|strong=\"H2617\"*." + }, + { + "verseNum": 150, + "text": "They draw|strong=\"H7126\"* near|strong=\"H7126\"* who follow|strong=\"H7291\"* after|strong=\"H7291\"* wickedness|strong=\"H2154\"*." + }, + { + "verseNum": 151, + "text": "You|strong=\"H3605\"* are|strong=\"H3068\"* near|strong=\"H7138\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 152, + "text": "Of|strong=\"H3045\"* old|strong=\"H5769\"* I|strong=\"H3588\"* have|strong=\"H3045\"* known|strong=\"H3045\"* from|strong=\"H3045\"* your|strong=\"H3045\"* testimonies|strong=\"H5713\"*," + }, + { + "verseNum": 153, + "text": "Consider|strong=\"H7200\"* my|strong=\"H7200\"* affliction|strong=\"H6040\"*, and|strong=\"H7200\"* deliver|strong=\"H2502\"* me|strong=\"H7200\"*," + }, + { + "verseNum": 154, + "text": "Plead|strong=\"H7378\"* my|strong=\"H7378\"* cause|strong=\"H7379\"*, and|strong=\"H2421\"* redeem|strong=\"H1350\"* me|strong=\"H2421\"*!" + }, + { + "verseNum": 155, + "text": "Salvation|strong=\"H3444\"* is|strong=\"H7563\"* far|strong=\"H7350\"* from|strong=\"H7350\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 156, + "text": "Great|strong=\"H7227\"* are|strong=\"H3068\"* your|strong=\"H3068\"* tender mercies|strong=\"H7356\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 157, + "text": "Many|strong=\"H7227\"* are|strong=\"H7227\"* my|strong=\"H5186\"* persecutors|strong=\"H7291\"* and|strong=\"H7227\"* my|strong=\"H5186\"* adversaries|strong=\"H6862\"*." + }, + { + "verseNum": 158, + "text": "I|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* faithless with|strong=\"H7200\"* loathing," + }, + { + "verseNum": 159, + "text": "Consider|strong=\"H7200\"* how|strong=\"H3588\"* I|strong=\"H3588\"* love|strong=\"H2617\"* your|strong=\"H3068\"* precepts|strong=\"H6490\"*." + }, + { + "verseNum": 160, + "text": "All|strong=\"H3605\"* of|strong=\"H1697\"* your|strong=\"H3605\"* words|strong=\"H1697\"* are|strong=\"H1697\"* truth." + }, + { + "verseNum": 161, + "text": "Princes|strong=\"H8269\"* have|strong=\"H1697\"* persecuted|strong=\"H7291\"* me|strong=\"H7291\"* without|strong=\"H2600\"* a|strong=\"H3068\"* cause|strong=\"H2600\"*," + }, + { + "verseNum": 162, + "text": "I|strong=\"H5921\"* rejoice|strong=\"H7797\"* at|strong=\"H5921\"* your|strong=\"H5921\"* word," + }, + { + "verseNum": 163, + "text": "I hate|strong=\"H8130\"* and|strong=\"H8451\"* abhor|strong=\"H8581\"* falsehood|strong=\"H8267\"*." + }, + { + "verseNum": 164, + "text": "Seven|strong=\"H7651\"* times|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* praise|strong=\"H1984\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 165, + "text": "Those who|strong=\"H7227\"* love your|strong=\"H7965\"* law|strong=\"H8451\"* have|strong=\"H7965\"* great|strong=\"H7227\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 166, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* hoped|strong=\"H7663\"* for|strong=\"H6213\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 167, + "text": "My|strong=\"H8104\"* soul|strong=\"H5315\"* has|strong=\"H5315\"* observed|strong=\"H8104\"* your|strong=\"H8104\"* testimonies|strong=\"H5713\"*." + }, + { + "verseNum": 168, + "text": "I|strong=\"H3588\"* have|strong=\"H3605\"* obeyed|strong=\"H8104\"* your|strong=\"H3605\"* precepts|strong=\"H6490\"* and|strong=\"H1870\"* your|strong=\"H3605\"* testimonies|strong=\"H5713\"*," + }, + { + "verseNum": 169, + "text": "Let my|strong=\"H3068\"* cry|strong=\"H7440\"* come|strong=\"H7126\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 170, + "text": "Let my|strong=\"H5337\"* supplication|strong=\"H8467\"* come before|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 171, + "text": "Let my|strong=\"H3588\"* lips|strong=\"H8193\"* utter|strong=\"H5042\"* praise|strong=\"H8416\"*," + }, + { + "verseNum": 172, + "text": "Let my|strong=\"H3605\"* tongue|strong=\"H3956\"* sing|strong=\"H6030\"* of|strong=\"H3605\"* your|strong=\"H3605\"* word|strong=\"H3956\"*," + }, + { + "verseNum": 173, + "text": "Let|strong=\"H1961\"* your|strong=\"H3588\"* hand|strong=\"H3027\"* be|strong=\"H1961\"* ready to|strong=\"H1961\"* help|strong=\"H5826\"* me|strong=\"H1961\"*," + }, + { + "verseNum": 174, + "text": "I|strong=\"H3068\"* have|strong=\"H3068\"* longed|strong=\"H8373\"* for|strong=\"H3068\"* your|strong=\"H3068\"* salvation|strong=\"H3444\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 175, + "text": "Let|strong=\"H5315\"* my|strong=\"H2421\"* soul|strong=\"H5315\"* live|strong=\"H2421\"*, that|strong=\"H5315\"* I|strong=\"H5315\"* may|strong=\"H5315\"* praise|strong=\"H1984\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 176, + "text": "I|strong=\"H3588\"* have|strong=\"H5650\"* gone|strong=\"H8582\"* astray|strong=\"H8582\"* like|strong=\"H3808\"* a|strong=\"H3068\"* lost sheep|strong=\"H7716\"*." + } + ] + }, + { + "chapterNum": 120, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* my|strong=\"H3068\"* distress|strong=\"H6869\"*, I|strong=\"H6869\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Deliver|strong=\"H5337\"* my|strong=\"H3068\"* soul|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, from|strong=\"H5315\"* lying|strong=\"H8267\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* will|strong=\"H5414\"* be|strong=\"H3254\"* given|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3254\"* what|strong=\"H4100\"* will|strong=\"H5414\"* be|strong=\"H3254\"* done|strong=\"H3254\"* more|strong=\"H3254\"* to|strong=\"H5414\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 4, + "text": "Sharp|strong=\"H8150\"* arrows|strong=\"H2671\"* of|strong=\"H1368\"* the|strong=\"H5973\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 5, + "text": "Woe is|strong=\"H3588\"* me|strong=\"H5973\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H7931\"* in|strong=\"H7931\"* Meshech|strong=\"H4902\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H7931\"* soul|strong=\"H5315\"* has|strong=\"H5315\"* had|strong=\"H5315\"* her|strong=\"H8130\"* dwelling|strong=\"H7931\"* too|strong=\"H7227\"* long|strong=\"H7227\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* am for|strong=\"H3588\"* peace|strong=\"H7965\"*," + } + ] + }, + { + "chapterNum": 121, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5869\"* will|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H5869\"* the|strong=\"H5375\"* hills|strong=\"H2022\"*." + }, + { + "verseNum": 2, + "text": "My|strong=\"H3068\"* help|strong=\"H5828\"* comes|strong=\"H5973\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5414\"* will|strong=\"H5414\"* not|strong=\"H5414\"* allow|strong=\"H5414\"* your|strong=\"H5414\"* foot|strong=\"H7272\"* to|strong=\"H5414\"* be|strong=\"H5414\"* moved|strong=\"H4132\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H3808\"* who|strong=\"H3478\"* keeps|strong=\"H8104\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* your|strong=\"H3068\"* keeper|strong=\"H8104\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5221\"* sun|strong=\"H8121\"* will|strong=\"H3808\"* not|strong=\"H3808\"* harm|strong=\"H5221\"* you|strong=\"H3808\"* by|strong=\"H3808\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* you|strong=\"H3605\"* from|strong=\"H5315\"* all|strong=\"H3605\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* keep|strong=\"H8104\"* your|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* your|strong=\"H3068\"* coming|strong=\"H3318\"* in|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 122, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3068\"* was|strong=\"H3068\"* glad|strong=\"H8055\"* when|strong=\"H3068\"* they|strong=\"H3068\"* said to|strong=\"H3212\"* me|strong=\"H3212\"*," + }, + { + "verseNum": 2, + "text": "Our|strong=\"H1961\"* feet|strong=\"H7272\"* are|strong=\"H8179\"* standing|strong=\"H5975\"* within|strong=\"H3389\"* your|strong=\"H1961\"* gates|strong=\"H8179\"*, Jerusalem|strong=\"H3389\"*!" + }, + { + "verseNum": 3, + "text": "Jerusalem|strong=\"H3389\"* is|strong=\"H5892\"* built|strong=\"H1129\"* as|strong=\"H3389\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* compact|strong=\"H2266\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 4, + "text": "where|strong=\"H8033\"* the|strong=\"H3068\"* tribes|strong=\"H7626\"* go|strong=\"H5927\"* up|strong=\"H5927\"*, even|strong=\"H3068\"* Yah|strong=\"H3068\"*’s tribes|strong=\"H7626\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"* are|strong=\"H1004\"* set|strong=\"H3427\"* thrones|strong=\"H3678\"* for|strong=\"H3588\"* judgment|strong=\"H4941\"*," + }, + { + "verseNum": 6, + "text": "Pray|strong=\"H7592\"* for|strong=\"H3389\"* the|strong=\"H7592\"* peace|strong=\"H7965\"* of|strong=\"H7592\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "Peace|strong=\"H7965\"* be|strong=\"H1961\"* within your|strong=\"H1961\"* walls|strong=\"H2426\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H4616\"* my|strong=\"H1696\"* brothers’ and|strong=\"H7965\"* companions|strong=\"H7453\"*’ sakes," + }, + { + "verseNum": 9, + "text": "For|strong=\"H4616\"* the|strong=\"H3068\"* sake|strong=\"H4616\"* of|strong=\"H1004\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 123, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H5869\"* you|strong=\"H5375\"*," + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, as|strong=\"H5704\"* the|strong=\"H3068\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* servants|strong=\"H5650\"* look|strong=\"H2009\"* to|strong=\"H5704\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* their|strong=\"H3068\"* master," + }, + { + "verseNum": 3, + "text": "Have|strong=\"H3068\"* mercy|strong=\"H2603\"* on|strong=\"H3068\"* us|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* mercy|strong=\"H2603\"* on|strong=\"H3068\"* us|strong=\"H3588\"*," + }, + { + "verseNum": 4, + "text": "Our soul|strong=\"H5315\"* is|strong=\"H5315\"* exceedingly|strong=\"H7227\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* the|strong=\"H7646\"* scoffing|strong=\"H3933\"* of|strong=\"H5315\"* those|strong=\"H7600\"* who|strong=\"H5315\"* are|strong=\"H7227\"* at|strong=\"H5315\"* ease|strong=\"H7600\"*," + } + ] + }, + { + "chapterNum": 124, + "verses": [ + { + "verseNum": 1, + "text": "If|strong=\"H3884\"* it|strong=\"H1961\"* had|strong=\"H3068\"* not|strong=\"H1961\"* been|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H3068\"* our|strong=\"H3068\"* side," + }, + { + "verseNum": 2, + "text": "if|strong=\"H3884\"* it|strong=\"H5921\"* had|strong=\"H3068\"* not|strong=\"H1961\"* been|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* was|strong=\"H3068\"* on|strong=\"H5921\"* our|strong=\"H3068\"* side," + }, + { + "verseNum": 3, + "text": "then they would have swallowed|strong=\"H1104\"* us|strong=\"H1104\"* up|strong=\"H1104\"* alive|strong=\"H2416\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H5674\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* would|strong=\"H5315\"* have|strong=\"H4325\"* overwhelmed|strong=\"H7857\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5674\"* the|strong=\"H5921\"* proud|strong=\"H2121\"* waters|strong=\"H4325\"* would|strong=\"H5315\"* have|strong=\"H4325\"* gone|strong=\"H5674\"* over|strong=\"H5921\"* our|strong=\"H5921\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Our soul|strong=\"H5315\"* has|strong=\"H5315\"* escaped|strong=\"H4422\"* like|strong=\"H5315\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* out|strong=\"H4422\"* of|strong=\"H5315\"* the|strong=\"H7665\"* fowler’s snare|strong=\"H6341\"*." + }, + { + "verseNum": 8, + "text": "Our|strong=\"H3068\"* help|strong=\"H5828\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + } + ] + }, + { + "chapterNum": 125, + "verses": [ + { + "verseNum": 1, + "text": "Those|strong=\"H3427\"* who|strong=\"H3068\"* trust in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* are|strong=\"H3068\"* as|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "As|strong=\"H5704\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"* surround|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* scepter|strong=\"H7626\"* of|strong=\"H3027\"* wickedness|strong=\"H7562\"* won’t remain|strong=\"H5117\"* over|strong=\"H5921\"* the|strong=\"H5921\"* allotment of|strong=\"H3027\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 4, + "text": "Do|strong=\"H3068\"* good|strong=\"H2896\"*, Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* those who|strong=\"H3068\"* are|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 5, + "text": "But|strong=\"H3068\"* as|strong=\"H3068\"* for|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H3068\"* turn|strong=\"H5186\"* away|strong=\"H3212\"* to|strong=\"H3478\"* their|strong=\"H3068\"* crooked|strong=\"H6128\"* ways|strong=\"H6128\"*," + } + ] + }, + { + "chapterNum": 126, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Yahweh|strong=\"H3068\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* those|strong=\"H1961\"* who|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "Then|strong=\"H6213\"* our|strong=\"H3068\"* mouth|strong=\"H6310\"* was|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H5973\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* great|strong=\"H1431\"* things|strong=\"H1431\"* for|strong=\"H6213\"* us|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "Restore|strong=\"H7725\"* our|strong=\"H3068\"* fortunes|strong=\"H7622\"* again|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Those who sow|strong=\"H2232\"* in|strong=\"H2232\"* tears|strong=\"H1832\"* will reap|strong=\"H7114\"* in|strong=\"H2232\"* joy|strong=\"H7440\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H1980\"* who|strong=\"H1980\"* goes|strong=\"H1980\"* out|strong=\"H1980\"* weeping|strong=\"H1058\"*, carrying|strong=\"H5375\"* seed|strong=\"H2233\"* for|strong=\"H1058\"* sowing|strong=\"H2233\"*," + } + ] + }, + { + "chapterNum": 127, + "verses": [ + { + "verseNum": 1, + "text": "Unless|strong=\"H3808\"* Yahweh|strong=\"H3068\"* builds|strong=\"H1129\"* the|strong=\"H8104\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* is|strong=\"H3651\"* vain|strong=\"H7723\"* for|strong=\"H3427\"* you|strong=\"H5414\"* to|strong=\"H5414\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"*," + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, children|strong=\"H1121\"* are|strong=\"H1121\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H3651\"* arrows|strong=\"H2671\"* in|strong=\"H1121\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 5, + "text": "Happy is|strong=\"H1696\"* the|strong=\"H3588\"* man|strong=\"H1397\"* who|strong=\"H1992\"* has|strong=\"H3588\"* his|strong=\"H3588\"* quiver full|strong=\"H4390\"* of|strong=\"H8179\"* them|strong=\"H1992\"*." + } + ] + }, + { + "chapterNum": 128, + "verses": [ + { + "verseNum": 1, + "text": "Blessed is|strong=\"H3068\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H2896\"* eat the|strong=\"H3588\"* labor|strong=\"H3018\"* of|strong=\"H3709\"* your|strong=\"H3588\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H5439\"* wife will|strong=\"H1121\"* be|strong=\"H1121\"* as|strong=\"H1121\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* vine|strong=\"H1612\"* in|strong=\"H1004\"* the|strong=\"H5439\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H1121\"* your|strong=\"H5439\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, this|strong=\"H3651\"* is|strong=\"H3068\"* how|strong=\"H3588\"* the|strong=\"H3588\"* man|strong=\"H1397\"* who|strong=\"H3068\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 5, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H3605\"* out|strong=\"H7200\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 6, + "text": "Yes|strong=\"H7200\"*, may|strong=\"H3478\"* you|strong=\"H5921\"* see|strong=\"H7200\"* your|strong=\"H5921\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*." + } + ] + }, + { + "chapterNum": 129, + "verses": [ + { + "verseNum": 1, + "text": "Many|strong=\"H7227\"* times|strong=\"H7227\"* they|strong=\"H3478\"* have|strong=\"H3478\"* afflicted|strong=\"H6887\"* me|strong=\"H4994\"* from|strong=\"H3478\"* my|strong=\"H3478\"* youth|strong=\"H5271\"* up|strong=\"H6887\"*." + }, + { + "verseNum": 2, + "text": "many|strong=\"H7227\"* times|strong=\"H7227\"* they|strong=\"H3808\"* have|strong=\"H1571\"* afflicted|strong=\"H6887\"* me|strong=\"H3808\"* from|strong=\"H1571\"* my|strong=\"H3808\"* youth|strong=\"H5271\"* up|strong=\"H6887\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* plowers|strong=\"H2790\"* plowed|strong=\"H2790\"* on|strong=\"H5921\"* my|strong=\"H5921\"* back|strong=\"H1354\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 5, + "text": "Let them|strong=\"H8130\"* be|strong=\"H6726\"* disappointed and|strong=\"H6726\"* turned|strong=\"H5472\"* backward," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H1961\"* grass|strong=\"H2682\"* on|strong=\"H1961\"* the|strong=\"H1961\"* housetops|strong=\"H1406\"*," + }, + { + "verseNum": 7, + "text": "with|strong=\"H4390\"* which the|strong=\"H4390\"* reaper|strong=\"H7114\"* doesn’t fill|strong=\"H4390\"* his|strong=\"H4390\"* hand|strong=\"H3709\"*," + }, + { + "verseNum": 8, + "text": "Neither|strong=\"H3808\"* do|strong=\"H3068\"* those who|strong=\"H3068\"* go|strong=\"H5674\"* by|strong=\"H5674\"* say," + } + ] + }, + { + "chapterNum": 130, + "verses": [ + { + "verseNum": 1, + "text": "Out of|strong=\"H3068\"* the|strong=\"H3068\"* depths|strong=\"H4615\"* I|strong=\"H3068\"* have|strong=\"H3068\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H7121\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Lord, hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "If you|strong=\"H8104\"*, Yah|strong=\"H3068\"*, kept|strong=\"H8104\"* a|strong=\"H3068\"* record of|strong=\"H5771\"* sins|strong=\"H5771\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* there is|strong=\"H4616\"* forgiveness|strong=\"H5547\"* with|strong=\"H5973\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H1697\"* wait|strong=\"H3176\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H8104\"* soul|strong=\"H5315\"* longs for|strong=\"H5315\"* the|strong=\"H8104\"* Lord more|strong=\"H5315\"* than watchmen|strong=\"H8104\"* long|strong=\"H5315\"* for|strong=\"H5315\"* the|strong=\"H8104\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 7, + "text": "Israel|strong=\"H3478\"*, hope|strong=\"H3176\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* will|strong=\"H3478\"* redeem|strong=\"H6299\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* all|strong=\"H3605\"* their|strong=\"H3605\"* sins|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 131, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* heart|strong=\"H3820\"* isn’t arrogant, nor|strong=\"H3808\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"* lofty|strong=\"H7311\"*;" + }, + { + "verseNum": 2, + "text": "Surely|strong=\"H3808\"* I|strong=\"H5921\"* have|strong=\"H3808\"* stilled and|strong=\"H5315\"* quieted|strong=\"H1826\"* my|strong=\"H5921\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"*, hope|strong=\"H3176\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 132, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, remember|strong=\"H2142\"* David|strong=\"H1732\"* and|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* affliction|strong=\"H6031\"*," + }, + { + "verseNum": 2, + "text": "how he|strong=\"H3068\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "“Surely|strong=\"H5927\"* I|strong=\"H5921\"* will|strong=\"H1004\"* not|strong=\"H5927\"* come|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* structure of|strong=\"H1004\"* my|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5869\"* not|strong=\"H5414\"* give|strong=\"H5414\"* sleep|strong=\"H8153\"* to|strong=\"H5414\"* my|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* find|strong=\"H4672\"* out|strong=\"H4672\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H5704\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, we|strong=\"H3068\"* heard|strong=\"H8085\"* of|strong=\"H7704\"* it|strong=\"H4672\"* in|strong=\"H8085\"* Ephrathah." + }, + { + "verseNum": 7, + "text": "“We will|strong=\"H7272\"* go|strong=\"H7272\"* into his|strong=\"H7812\"* dwelling|strong=\"H4908\"* place|strong=\"H4908\"*." + }, + { + "verseNum": 8, + "text": "Arise|strong=\"H6965\"*, Yahweh|strong=\"H3068\"*, into|strong=\"H5797\"* your|strong=\"H3068\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*," + }, + { + "verseNum": 9, + "text": "Let your priests|strong=\"H3548\"* be|strong=\"H3548\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H6440\"* your|strong=\"H6440\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H5668\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* to|strong=\"H7725\"* David|strong=\"H1732\"* in|strong=\"H3068\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "If|strong=\"H1121\"* your|strong=\"H8104\"* children|strong=\"H1121\"* will|strong=\"H1571\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* chosen Zion|strong=\"H6726\"*." + }, + { + "verseNum": 14, + "text": "“This|strong=\"H2063\"* is|strong=\"H3588\"* my|strong=\"H3588\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* forever|strong=\"H5703\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H1288\"* will abundantly|strong=\"H1288\"* bless|strong=\"H1288\"* her|strong=\"H7646\"* provision|strong=\"H6718\"*." + }, + { + "verseNum": 16, + "text": "I will|strong=\"H2623\"* also clothe|strong=\"H3847\"* her|strong=\"H3847\"* priests|strong=\"H3548\"* with|strong=\"H3847\"* salvation|strong=\"H3468\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H6779\"* will|strong=\"H5216\"* make|strong=\"H6779\"* the|strong=\"H8033\"* horn|strong=\"H7161\"* of|strong=\"H7161\"* David|strong=\"H1732\"* to|strong=\"H1732\"* bud|strong=\"H6779\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will clothe|strong=\"H3847\"* his|strong=\"H5921\"* enemies with|strong=\"H3847\"* shame|strong=\"H1322\"*," + } + ] + }, + { + "chapterNum": 133, + "verses": [ + { + "verseNum": 1, + "text": "See|strong=\"H2009\"* how|strong=\"H4100\"* good|strong=\"H2896\"* and|strong=\"H1732\"* how|strong=\"H4100\"* pleasant|strong=\"H5273\"* it|strong=\"H2896\"* is|strong=\"H4100\"*" + }, + { + "verseNum": 2, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* like|strong=\"H3381\"* the|strong=\"H5921\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 3, + "text": "like|strong=\"H3381\"* the|strong=\"H5921\"* dew|strong=\"H2919\"* of|strong=\"H3068\"* Hermon|strong=\"H2768\"*," + } + ] + }, + { + "chapterNum": 134, + "verses": [ + { + "verseNum": 1, + "text": "Look|strong=\"H2009\"*! Praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* servants|strong=\"H5650\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* in|strong=\"H3068\"* the|strong=\"H5375\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 3, + "text": "May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H6213\"* from|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 135, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "you|strong=\"H1004\"* who|strong=\"H3068\"* stand|strong=\"H5975\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yah|strong=\"H3068\"* has|strong=\"H3478\"* chosen Jacob|strong=\"H3290\"* for|strong=\"H3588\"* himself," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1419\"*," + }, + { + "verseNum": 6, + "text": "Whatever|strong=\"H3605\"* Yahweh|strong=\"H3068\"* pleased|strong=\"H2654\"*, that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3068\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* causes|strong=\"H3318\"* the|strong=\"H6213\"* clouds|strong=\"H5387\"* to|strong=\"H3318\"* rise|strong=\"H5927\"* from|strong=\"H3318\"* the|strong=\"H6213\"* ends|strong=\"H7097\"* of|strong=\"H7307\"* the|strong=\"H6213\"* earth|strong=\"H5927\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5704\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H3605\"* sent|strong=\"H7971\"* signs and|strong=\"H7971\"* wonders|strong=\"H4159\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H5650\"* you|strong=\"H3605\"*, Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 10, + "text": "He|strong=\"H5221\"* struck|strong=\"H5221\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Amorites," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3478\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* for|strong=\"H3478\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"*," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*, endures|strong=\"H5769\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H1777\"* his|strong=\"H3068\"* people|strong=\"H5971\"*" + }, + { + "verseNum": 15, + "text": "The|strong=\"H3027\"* idols|strong=\"H6091\"* of|strong=\"H3027\"* the|strong=\"H3027\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H1992\"* have|strong=\"H5869\"* mouths|strong=\"H6310\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* can|strong=\"H7200\"*’t speak|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* have|strong=\"H3426\"* ears, but|strong=\"H3808\"* they|strong=\"H1992\"* can|strong=\"H7307\"*’t hear," + }, + { + "verseNum": 18, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* make|strong=\"H6213\"* them|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H3644\"* them|strong=\"H6213\"*," + }, + { + "verseNum": 19, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 20, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"*, praise|strong=\"H1288\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 21, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 136, + "verses": [ + { + "verseNum": 1, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 2, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* God of|strong=\"H2617\"* gods," + }, + { + "verseNum": 3, + "text": "Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* Lord|strong=\"H2617\"* of|strong=\"H2617\"* lords," + }, + { + "verseNum": 4, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* alone|strong=\"H6213\"* does|strong=\"H6213\"* great|strong=\"H1419\"* wonders|strong=\"H6381\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* by|strong=\"H6213\"* understanding|strong=\"H8394\"* made|strong=\"H6213\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 6, + "text": "to|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3588\"* spread|strong=\"H7554\"* out|strong=\"H5921\"* the|strong=\"H5921\"* earth above|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 7, + "text": "to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* made|strong=\"H6213\"* the|strong=\"H3588\"* great|strong=\"H1419\"* lights," + }, + { + "verseNum": 8, + "text": "the|strong=\"H3588\"* sun|strong=\"H8121\"* to|strong=\"H3117\"* rule|strong=\"H4475\"* by|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 9, + "text": "the|strong=\"H3588\"* moon|strong=\"H3394\"* and|strong=\"H5769\"* stars|strong=\"H3556\"* to|strong=\"H2617\"* rule|strong=\"H4475\"* by|strong=\"H3915\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"H4714\"* him|strong=\"H5221\"* who|strong=\"H3588\"* struck|strong=\"H5221\"* down|strong=\"H5221\"* the|strong=\"H3588\"* Egyptian|strong=\"H4714\"* firstborn|strong=\"H1060\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3478\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* Israel|strong=\"H3478\"* from|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H3318\"*," + }, + { + "verseNum": 12, + "text": "with|strong=\"H3027\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* with|strong=\"H3027\"* an|strong=\"H3588\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*," + }, + { + "verseNum": 13, + "text": "to|strong=\"H3220\"* him|strong=\"H3588\"* who|strong=\"H3588\"* divided|strong=\"H1504\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"* apart," + }, + { + "verseNum": 14, + "text": "and|strong=\"H3478\"* made|strong=\"H3478\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"* overthrew|strong=\"H5287\"* Pharaoh|strong=\"H6547\"* and|strong=\"H5769\"* his|strong=\"H3588\"* army|strong=\"H2428\"* in|strong=\"H3220\"* the|strong=\"H3588\"* Red|strong=\"H5488\"* Sea|strong=\"H3220\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"H3212\"* him|strong=\"H3588\"* who|strong=\"H5971\"* led|strong=\"H3212\"* his|strong=\"H3588\"* people|strong=\"H5971\"* through|strong=\"H3212\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 17, + "text": "to|strong=\"H4428\"* him|strong=\"H5221\"* who|strong=\"H4428\"* struck|strong=\"H5221\"* great|strong=\"H1419\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H4428\"* killed|strong=\"H2026\"* mighty kings|strong=\"H4428\"*," + }, + { + "verseNum": 19, + "text": "Sihon|strong=\"H5511\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3588\"* Amorites," + }, + { + "verseNum": 20, + "text": "Og|strong=\"H5747\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Bashan|strong=\"H1316\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H5769\"* gave|strong=\"H5414\"* their|strong=\"H5414\"* land|strong=\"H5159\"* as|strong=\"H3588\"* an|strong=\"H5414\"* inheritance|strong=\"H5159\"*," + }, + { + "verseNum": 22, + "text": "even|strong=\"H3588\"* a|strong=\"H3068\"* heritage|strong=\"H5159\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* his|strong=\"H3478\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H3588\"* remembered|strong=\"H2142\"* us|strong=\"H3588\"* in|strong=\"H2142\"* our|strong=\"H3588\"* low|strong=\"H8216\"* estate|strong=\"H8216\"*," + }, + { + "verseNum": 24, + "text": "and|strong=\"H5769\"* has|strong=\"H3588\"* delivered|strong=\"H6862\"* us|strong=\"H3588\"* from|strong=\"H6862\"* our|strong=\"H3588\"* adversaries|strong=\"H6862\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"H3605\"* gives|strong=\"H5414\"* food|strong=\"H3899\"* to|strong=\"H5414\"* every|strong=\"H3605\"* creature," + }, + { + "verseNum": 26, + "text": "Oh give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H2617\"* the|strong=\"H3588\"* God|strong=\"H8064\"* of|strong=\"H8064\"* heaven|strong=\"H8064\"*," + } + ] + }, + { + "chapterNum": 137, + "verses": [ + { + "verseNum": 1, + "text": "By|strong=\"H5921\"* the|strong=\"H5921\"* rivers|strong=\"H5104\"* of|strong=\"H3427\"* Babylon, there|strong=\"H8033\"* we|strong=\"H3068\"* sat|strong=\"H3427\"* down|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* willows|strong=\"H6155\"* in|strong=\"H5921\"* that|strong=\"H5921\"* land," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* there|strong=\"H8033\"*, those|strong=\"H3588\"* who|strong=\"H3588\"* led|strong=\"H7617\"* us|strong=\"H3588\"* captive|strong=\"H7617\"* asked|strong=\"H7592\"* us|strong=\"H3588\"* for|strong=\"H3588\"* songs|strong=\"H7892\"*." + }, + { + "verseNum": 4, + "text": "How can we|strong=\"H3068\"* sing|strong=\"H7891\"* Yahweh|strong=\"H3068\"*’s song|strong=\"H7892\"* in|strong=\"H5921\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* land?" + }, + { + "verseNum": 5, + "text": "If I forget|strong=\"H7911\"* you, Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 6, + "text": "Let|strong=\"H3808\"* my|strong=\"H5921\"* tongue|strong=\"H3956\"* stick|strong=\"H1692\"* to|strong=\"H5927\"* the|strong=\"H5921\"* roof|strong=\"H2441\"* of|strong=\"H7218\"* my|strong=\"H5921\"* mouth|strong=\"H2441\"* if I|strong=\"H5921\"* don’t remember|strong=\"H2142\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 7, + "text": "Remember|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Edom in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 8, + "text": "Daughter|strong=\"H1323\"* of|strong=\"H1323\"* Babylon, doomed to|strong=\"H1323\"* destruction," + }, + { + "verseNum": 9, + "text": "Happy shall he|strong=\"H5553\"* be," + } + ] + }, + { + "chapterNum": 138, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3605\"* will|strong=\"H3820\"* give|strong=\"H3034\"* you|strong=\"H3605\"* thanks|strong=\"H3034\"* with|strong=\"H1732\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* will|strong=\"H8034\"* bow|strong=\"H7812\"* down|strong=\"H7812\"* toward|strong=\"H5921\"* your|strong=\"H3605\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*," + }, + { + "verseNum": 3, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* called|strong=\"H7121\"*, you|strong=\"H3117\"* answered|strong=\"H6030\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth will|strong=\"H3068\"* give|strong=\"H3034\"* you|strong=\"H3588\"* thanks|strong=\"H3034\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* sing|strong=\"H7891\"* of|strong=\"H3068\"* the|strong=\"H3588\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* high|strong=\"H1364\"*, yet|strong=\"H3588\"* he|strong=\"H3588\"* looks|strong=\"H7200\"* after|strong=\"H3588\"* the|strong=\"H7200\"* lowly|strong=\"H8217\"*;" + }, + { + "verseNum": 7, + "text": "Though I|strong=\"H5921\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* trouble|strong=\"H6869\"*, you|strong=\"H7971\"* will|strong=\"H3027\"* revive|strong=\"H2421\"* me|strong=\"H7971\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* fulfill that|strong=\"H3068\"* which|strong=\"H3068\"* concerns|strong=\"H1157\"* me|strong=\"H1157\"*." + } + ] + }, + { + "chapterNum": 139, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3045\"* have|strong=\"H3068\"* searched|strong=\"H2713\"* me|strong=\"H3045\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H3045\"* know|strong=\"H3045\"* my|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H6965\"* my|strong=\"H3045\"* rising|strong=\"H6965\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3605\"* search out|strong=\"H3605\"* my|strong=\"H3605\"* path|strong=\"H1870\"* and|strong=\"H1870\"* my|strong=\"H3605\"* lying down|strong=\"H1870\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3068\"* not|strong=\"H3045\"* a|strong=\"H3068\"* word|strong=\"H4405\"* on|strong=\"H3068\"* my|strong=\"H3605\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* hem me|strong=\"H5921\"* in|strong=\"H5921\"* behind|strong=\"H6696\"* and|strong=\"H3709\"* before|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "This knowledge|strong=\"H1847\"* is|strong=\"H1847\"* beyond|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 7, + "text": "Where could I|strong=\"H6440\"* go|strong=\"H3212\"* from|strong=\"H6440\"* your|strong=\"H6440\"* Spirit|strong=\"H7307\"*?" + }, + { + "verseNum": 8, + "text": "If|strong=\"H2005\"* I|strong=\"H2005\"* ascend up|strong=\"H5266\"* into|strong=\"H5266\"* heaven|strong=\"H8064\"*, you are|strong=\"H8064\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 9, + "text": "If I|strong=\"H3671\"* take|strong=\"H5375\"* the|strong=\"H5375\"* wings|strong=\"H3671\"* of|strong=\"H3220\"* the|strong=\"H5375\"* dawn|strong=\"H7837\"*," + }, + { + "verseNum": 10, + "text": "even|strong=\"H1571\"* there|strong=\"H8033\"* your|strong=\"H3027\"* hand|strong=\"H3027\"* will|strong=\"H1571\"* lead|strong=\"H5148\"* me|strong=\"H5148\"*," + }, + { + "verseNum": 11, + "text": "If I say, “Surely the|strong=\"H1157\"* darkness|strong=\"H2822\"* will|strong=\"H2822\"* overwhelm|strong=\"H7779\"* me|strong=\"H1157\"*." + }, + { + "verseNum": 12, + "text": "even|strong=\"H1571\"* the|strong=\"H4480\"* darkness|strong=\"H2822\"* doesn’t hide from|strong=\"H4480\"* you|strong=\"H3117\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* formed|strong=\"H7069\"* my|strong=\"H3588\"* inmost|strong=\"H3629\"* being|strong=\"H3629\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H5315\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H5921\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H6213\"* frame|strong=\"H6108\"* wasn’t hidden|strong=\"H3582\"* from|strong=\"H4480\"* you|strong=\"H6213\"*," + }, + { + "verseNum": 16, + "text": "Your|strong=\"H3605\"* eyes|strong=\"H5869\"* saw|strong=\"H7200\"* my|strong=\"H3605\"* body." + }, + { + "verseNum": 17, + "text": "How|strong=\"H4100\"* precious|strong=\"H3365\"* to|strong=\"H7218\"* me|strong=\"H4100\"* are|strong=\"H4100\"* your|strong=\"H4100\"* thoughts|strong=\"H7454\"*, God!" + }, + { + "verseNum": 18, + "text": "If I would count|strong=\"H5608\"* them|strong=\"H5750\"*, they|strong=\"H5608\"* are|strong=\"H5973\"* more|strong=\"H5750\"* in|strong=\"H5750\"* number|strong=\"H5608\"* than|strong=\"H7235\"* the|strong=\"H5973\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 19, + "text": "If only|strong=\"H6991\"* you|strong=\"H4480\"*, God, would|strong=\"H5493\"* kill the|strong=\"H4480\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H5375\"* they|strong=\"H5375\"* speak against you|strong=\"H5375\"* wickedly|strong=\"H4209\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*, don’t I|strong=\"H3808\"* hate|strong=\"H8130\"* those|strong=\"H8130\"* who|strong=\"H3068\"* hate|strong=\"H8130\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 22, + "text": "I|strong=\"H1961\"* hate|strong=\"H8130\"* them|strong=\"H8130\"* with|strong=\"H1961\"* perfect|strong=\"H8503\"* hatred|strong=\"H8135\"*." + }, + { + "verseNum": 23, + "text": "Search|strong=\"H2713\"* me|strong=\"H3824\"*, God, and|strong=\"H3045\"* know|strong=\"H3045\"* my|strong=\"H3045\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 24, + "text": "See|strong=\"H7200\"* if|strong=\"H7200\"* there|strong=\"H5769\"* is|strong=\"H1870\"* any|strong=\"H7200\"* wicked|strong=\"H6090\"* way|strong=\"H1870\"* in|strong=\"H1870\"* me|strong=\"H7200\"*," + } + ] + }, + { + "chapterNum": 140, + "verses": [ + { + "verseNum": 1, + "text": "Deliver me, Yahweh|strong=\"H3068\"*, from evil men." + }, + { + "verseNum": 2, + "text": "those who|strong=\"H3068\"* devise mischief|strong=\"H7451\"* in|strong=\"H3068\"* their|strong=\"H3068\"* hearts." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3117\"* have|strong=\"H3117\"* sharpened their|strong=\"H3605\"* tongues like|strong=\"H2803\"* a|strong=\"H3068\"* serpent." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*, keep me|strong=\"H8478\"* from|strong=\"H8478\"* the|strong=\"H8478\"* hands of|strong=\"H8478\"* the|strong=\"H8478\"* wicked|strong=\"H8478\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8104\"* proud have|strong=\"H3068\"* hidden|strong=\"H5341\"* a|strong=\"H3068\"* snare for|strong=\"H3027\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3027\"* said to|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, “You|strong=\"H3027\"* are|strong=\"H3027\"* my|strong=\"H6566\"* God|strong=\"H3027\"*.”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3068\"* Lord|strong=\"H3068\"*, the|strong=\"H3068\"* strength of|strong=\"H3068\"* my|strong=\"H3068\"* salvation," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*, don’t grant the|strong=\"H3069\"* desires of|strong=\"H3117\"* the|strong=\"H3069\"* wicked." + }, + { + "verseNum": 9, + "text": "As|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H5414\"* head of|strong=\"H3068\"* those who|strong=\"H3068\"* surround me|strong=\"H5414\"*," + }, + { + "verseNum": 10, + "text": "Let burning coals fall on|strong=\"H7218\"* them." + }, + { + "verseNum": 11, + "text": "An|strong=\"H6965\"* evil speaker won’t be|strong=\"H1077\"* established|strong=\"H6965\"* in|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3559\"* know that|strong=\"H7451\"* Yahweh|strong=\"H3068\"* will|strong=\"H3956\"* maintain|strong=\"H3559\"* the|strong=\"H3559\"* cause of|strong=\"H3956\"* the|strong=\"H3559\"* afflicted," + }, + { + "verseNum": 13, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* righteous will|strong=\"H3068\"* give|strong=\"H6213\"* thanks to|strong=\"H3068\"* your|strong=\"H3068\"* name." + } + ] + }, + { + "chapterNum": 141, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3068\"* have|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* you|strong=\"H6963\"*." + }, + { + "verseNum": 2, + "text": "Let my|strong=\"H3559\"* prayer|strong=\"H8605\"* be|strong=\"H6440\"* set|strong=\"H3559\"* before|strong=\"H6440\"* you|strong=\"H6440\"* like|strong=\"H6440\"* incense|strong=\"H7004\"*;" + }, + { + "verseNum": 3, + "text": "Set|strong=\"H7896\"* a|strong=\"H3068\"* watch|strong=\"H5341\"*, Yahweh|strong=\"H3068\"*, before|strong=\"H5921\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 4, + "text": "Don’t incline|strong=\"H5186\"* my|strong=\"H5186\"* heart|strong=\"H3820\"* to|strong=\"H3820\"* any|strong=\"H1697\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "Let the|strong=\"H3588\"* righteous|strong=\"H6662\"* strike|strong=\"H1986\"* me|strong=\"H3588\"*, it|strong=\"H3588\"* is|strong=\"H2617\"* kindness|strong=\"H2617\"*;" + }, + { + "verseNum": 6, + "text": "Their|strong=\"H8085\"* judges|strong=\"H8199\"* are|strong=\"H3027\"* thrown|strong=\"H8058\"* down|strong=\"H8058\"* by|strong=\"H3027\"* the|strong=\"H8085\"* sides|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 7, + "text": "“As|strong=\"H3644\"* when|strong=\"H3644\"* one|strong=\"H6310\"* plows|strong=\"H6398\"* and|strong=\"H6310\"* breaks|strong=\"H1234\"* up|strong=\"H1234\"* the|strong=\"H1234\"* earth," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5869\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Lord|strong=\"H3069\"*." + }, + { + "verseNum": 9, + "text": "Keep|strong=\"H8104\"* me|strong=\"H8104\"* from|strong=\"H3027\"* the|strong=\"H8104\"* snare|strong=\"H4170\"* which they|strong=\"H3027\"* have|strong=\"H3027\"* laid|strong=\"H3369\"* for|strong=\"H3027\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 10, + "text": "Let the|strong=\"H5704\"* wicked|strong=\"H7563\"* fall|strong=\"H5307\"* together|strong=\"H3162\"* into|strong=\"H5307\"* their|strong=\"H5307\"* own nets|strong=\"H4364\"*" + } + ] + }, + { + "chapterNum": 142, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H1961\"* cry with|strong=\"H1732\"* my|strong=\"H1732\"* voice to|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3068\"* pour out|strong=\"H2199\"* my|strong=\"H3068\"* complaint before him|strong=\"H6963\"*." + }, + { + "verseNum": 3, + "text": "When my|strong=\"H8210\"* spirit was|strong=\"H6440\"* overwhelmed within|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "Look on|strong=\"H5921\"* my|strong=\"H5921\"* right|strong=\"H3045\"*, and|strong=\"H1980\"* see|strong=\"H3045\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5315\"* cried to|strong=\"H7200\"* you|strong=\"H4480\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "Listen to|strong=\"H3068\"* my|strong=\"H3068\"* cry|strong=\"H2199\"*," + }, + { + "verseNum": 7, + "text": "Bring my|strong=\"H5337\"* soul out|strong=\"H4480\"* of|strong=\"H4480\"* prison," + } + ] + }, + { + "chapterNum": 143, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* my|strong=\"H8085\"* prayer|strong=\"H8605\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Don’t enter into|strong=\"H4941\"* judgment|strong=\"H4941\"* with|strong=\"H6440\"* your|strong=\"H3605\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* enemy pursues|strong=\"H7291\"* my|strong=\"H3588\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H5921\"* my|strong=\"H5921\"* spirit|strong=\"H7307\"* is|strong=\"H3820\"* overwhelmed|strong=\"H5848\"* within|strong=\"H8432\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3117\"* remember|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H6924\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5315\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H6566\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* you|strong=\"H3027\"*." + }, + { + "verseNum": 7, + "text": "Hurry to|strong=\"H3381\"* answer|strong=\"H6030\"* me|strong=\"H6440\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Cause me|strong=\"H5315\"* to|strong=\"H3212\"* hear|strong=\"H8085\"* your|strong=\"H5375\"* loving kindness|strong=\"H2617\"* in|strong=\"H8085\"* the|strong=\"H8085\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 9, + "text": "Deliver|strong=\"H5337\"* me|strong=\"H5337\"*, Yahweh|strong=\"H3068\"*, from|strong=\"H3068\"* my|strong=\"H3068\"* enemies." + }, + { + "verseNum": 10, + "text": "Teach|strong=\"H3925\"* me|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* your|strong=\"H6213\"* will|strong=\"H7522\"*," + }, + { + "verseNum": 11, + "text": "Revive|strong=\"H2421\"* me|strong=\"H5315\"*, Yahweh|strong=\"H3068\"*, for|strong=\"H8034\"* your|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H5315\"* your|strong=\"H3605\"* loving kindness|strong=\"H2617\"*, cut|strong=\"H2617\"* off|strong=\"H6789\"* my|strong=\"H3605\"* enemies|strong=\"H6887\"*," + } + ] + }, + { + "chapterNum": 144, + "verses": [ + { + "verseNum": 1, + "text": "Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 2, + "text": "my|strong=\"H8478\"* loving kindness|strong=\"H2617\"*, my|strong=\"H8478\"* fortress|strong=\"H4686\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* is|strong=\"H3068\"* man|strong=\"H1121\"*, that|strong=\"H3045\"* you|strong=\"H3045\"* care for|strong=\"H3068\"* him|strong=\"H3045\"*?" + }, + { + "verseNum": 4, + "text": "Man|strong=\"H5674\"* is|strong=\"H3117\"* like|strong=\"H1819\"* a|strong=\"H3068\"* breath|strong=\"H1892\"*." + }, + { + "verseNum": 5, + "text": "Part your|strong=\"H3068\"* heavens|strong=\"H8064\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* come|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 6, + "text": "Throw|strong=\"H7971\"* out|strong=\"H7971\"* lightning|strong=\"H1300\"*, and|strong=\"H7971\"* scatter|strong=\"H6327\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 7, + "text": "Stretch|strong=\"H7971\"* out|strong=\"H7971\"* your|strong=\"H7971\"* hand|strong=\"H3027\"* from|strong=\"H3027\"* above|strong=\"H4791\"*," + }, + { + "verseNum": 8, + "text": "whose mouths|strong=\"H6310\"* speak|strong=\"H1696\"* deceit|strong=\"H8267\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H7891\"* will|strong=\"H7892\"* sing|strong=\"H7891\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"* to|strong=\"H2167\"* you|strong=\"H2167\"*, God." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5414\"* are|strong=\"H5650\"* he|strong=\"H1732\"* who|strong=\"H5650\"* gives|strong=\"H5414\"* salvation|strong=\"H8668\"* to|strong=\"H5414\"* kings|strong=\"H4428\"*," + }, + { + "verseNum": 11, + "text": "Rescue|strong=\"H5337\"* me|strong=\"H1696\"*, and|strong=\"H1121\"* deliver|strong=\"H5337\"* me|strong=\"H1696\"* out|strong=\"H5337\"* of|strong=\"H1121\"* the|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H1121\"* foreigners|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1121\"* our sons|strong=\"H1121\"* will|strong=\"H1121\"* be|strong=\"H1121\"* like|strong=\"H1121\"* well-nurtured plants|strong=\"H5195\"*," + }, + { + "verseNum": 13, + "text": "Our barns are|strong=\"H4392\"* full|strong=\"H4392\"*, filled|strong=\"H4392\"* with|strong=\"H6629\"* all kinds|strong=\"H2177\"* of|strong=\"H4392\"* provision." + }, + { + "verseNum": 14, + "text": "Our|strong=\"H3318\"* oxen will pull|strong=\"H3318\"* heavy loads." + }, + { + "verseNum": 15, + "text": "Happy are|strong=\"H5971\"* the|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H3068\"* such|strong=\"H3602\"* a|strong=\"H3068\"* situation." + } + ] + }, + { + "chapterNum": 145, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H8416\"* will|strong=\"H4428\"* exalt|strong=\"H7311\"* you|strong=\"H1288\"*, my|strong=\"H1732\"* God, the|strong=\"H1288\"* King|strong=\"H4428\"*." + }, + { + "verseNum": 2, + "text": "Every|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3117\"* praise|strong=\"H1984\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 3, + "text": "Great|strong=\"H1419\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* greatly|strong=\"H3966\"* to|strong=\"H3068\"* be|strong=\"H3068\"* praised|strong=\"H1984\"*!" + }, + { + "verseNum": 4, + "text": "One|strong=\"H1755\"* generation|strong=\"H1755\"* will commend your|strong=\"H5046\"* works|strong=\"H4639\"* to|strong=\"H1755\"* another|strong=\"H5046\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H1697\"* will|strong=\"H1697\"* meditate|strong=\"H7878\"* on|strong=\"H1697\"* the|strong=\"H1697\"* glorious|strong=\"H3519\"* majesty|strong=\"H1926\"* of|strong=\"H1697\"* your|strong=\"H1697\"* honor|strong=\"H3519\"*," + }, + { + "verseNum": 6, + "text": "Men will speak|strong=\"H5608\"* of|strong=\"H3372\"* the|strong=\"H3372\"* might|strong=\"H5807\"* of|strong=\"H3372\"* your|strong=\"H3372\"* awesome|strong=\"H3372\"* acts|strong=\"H3372\"*." + }, + { + "verseNum": 7, + "text": "They will|strong=\"H7227\"* utter|strong=\"H5042\"* the|strong=\"H6666\"* memory|strong=\"H2143\"* of|strong=\"H2898\"* your|strong=\"H6666\"* great|strong=\"H7227\"* goodness|strong=\"H2898\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* gracious|strong=\"H2587\"*, merciful|strong=\"H7349\"*," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* to|strong=\"H3068\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* your|strong=\"H3068\"* works|strong=\"H4639\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H1696\"* will|strong=\"H3519\"* speak|strong=\"H1696\"* of|strong=\"H4438\"* the|strong=\"H1696\"* glory|strong=\"H3519\"* of|strong=\"H4438\"* your|strong=\"H1696\"* kingdom|strong=\"H4438\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H1121\"* make|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H1121\"* the|strong=\"H3045\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* his|strong=\"H3045\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"*," + }, + { + "verseNum": 13, + "text": "Your|strong=\"H3605\"* kingdom|strong=\"H4438\"* is|strong=\"H3605\"* an everlasting|strong=\"H5769\"* kingdom|strong=\"H4438\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* upholds all|strong=\"H3605\"* who|strong=\"H3605\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* wait|strong=\"H7663\"* for|strong=\"H6256\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3605\"* open|strong=\"H6605\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"* to|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* him|strong=\"H7121\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H6213\"* will|strong=\"H7522\"* fulfill|strong=\"H6213\"* the|strong=\"H8085\"* desire|strong=\"H7522\"* of|strong=\"H6213\"* those|strong=\"H8085\"* who|strong=\"H6213\"* fear|strong=\"H3373\"* him|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* love him|strong=\"H3605\"*," + }, + { + "verseNum": 21, + "text": "My|strong=\"H3605\"* mouth|strong=\"H6310\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* the|strong=\"H3605\"* praise|strong=\"H8416\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 146, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "While|strong=\"H5750\"* I|strong=\"H3068\"* live|strong=\"H2416\"*, I|strong=\"H3068\"* will|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Don’t put your|strong=\"H1121\"* trust in|strong=\"H1121\"* princes|strong=\"H5081\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H7725\"* spirit|strong=\"H7307\"* departs|strong=\"H3318\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H7725\"* earth." + }, + { + "verseNum": 5, + "text": "Happy is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* for|strong=\"H5921\"* his|strong=\"H3068\"* help|strong=\"H5828\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3605\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H8064\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "who|strong=\"H3068\"* executes|strong=\"H6213\"* justice|strong=\"H4941\"* for|strong=\"H6213\"* the|strong=\"H5414\"* oppressed|strong=\"H6231\"*;" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* opens|strong=\"H6491\"* the|strong=\"H3068\"* eyes of|strong=\"H3068\"* the|strong=\"H3068\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* preserves|strong=\"H8104\"* the|strong=\"H8104\"* foreigners|strong=\"H1616\"*." + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* forever|strong=\"H5769\"*;" + } + ] + }, + { + "chapterNum": 147, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* builds|strong=\"H1129\"* up|strong=\"H1129\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3820\"* heals|strong=\"H7495\"* the|strong=\"H7665\"* broken|strong=\"H7665\"* in|strong=\"H7665\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* counts|strong=\"H4487\"* the|strong=\"H3605\"* number|strong=\"H4557\"* of|strong=\"H8034\"* the|strong=\"H3605\"* stars|strong=\"H3556\"*." + }, + { + "verseNum": 5, + "text": "Great|strong=\"H1419\"* is|strong=\"H3581\"* our Lord, and|strong=\"H1419\"* mighty|strong=\"H1419\"* in|strong=\"H7227\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* upholds the|strong=\"H3068\"* humble|strong=\"H6035\"*." + }, + { + "verseNum": 7, + "text": "Sing|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* thanksgiving|strong=\"H8426\"*." + }, + { + "verseNum": 8, + "text": "who covers|strong=\"H3680\"* the|strong=\"H3680\"* sky|strong=\"H8064\"* with|strong=\"H3680\"* clouds|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* provides|strong=\"H5414\"* food|strong=\"H3899\"* for|strong=\"H7121\"* the|strong=\"H5414\"* livestock," + }, + { + "verseNum": 10, + "text": "He|strong=\"H3808\"* doesn’t delight|strong=\"H2654\"* in|strong=\"H2654\"* the|strong=\"H3808\"* strength|strong=\"H1369\"* of|strong=\"H3808\"* the|strong=\"H3808\"* horse|strong=\"H5483\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* takes|strong=\"H7521\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* those who|strong=\"H3068\"* fear|strong=\"H3373\"* him|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*, Jerusalem|strong=\"H3389\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* strengthened|strong=\"H2388\"* the|strong=\"H3588\"* bars|strong=\"H1280\"* of|strong=\"H1121\"* your|strong=\"H3588\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H7760\"* makes|strong=\"H7760\"* peace|strong=\"H7965\"* in|strong=\"H7760\"* your|strong=\"H7760\"* borders|strong=\"H1366\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5704\"* sends|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* commandment|strong=\"H1697\"* to|strong=\"H5704\"* the|strong=\"H5704\"* earth." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5414\"* gives|strong=\"H5414\"* snow|strong=\"H7950\"* like|strong=\"H7950\"* wool|strong=\"H6785\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H6440\"* hurls down|strong=\"H7993\"* his|strong=\"H6440\"* hail like|strong=\"H7140\"* pebbles." + }, + { + "verseNum": 18, + "text": "He|strong=\"H7971\"* sends|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* word|strong=\"H1697\"*, and|strong=\"H7971\"* melts|strong=\"H4529\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3478\"* shows his|strong=\"H5046\"* word|strong=\"H1697\"* to|strong=\"H3478\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3651\"* has|strong=\"H1471\"* not|strong=\"H3808\"* done|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H6213\"* just|strong=\"H4941\"* any|strong=\"H3605\"* nation|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 148, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1984\"* him|strong=\"H3605\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* angels|strong=\"H4397\"*!" + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* him|strong=\"H3605\"*, sun|strong=\"H8121\"* and|strong=\"H8121\"* moon|strong=\"H3394\"*!" + }, + { + "verseNum": 4, + "text": "Praise|strong=\"H1984\"* him|strong=\"H5921\"*, you|strong=\"H5921\"* heavens|strong=\"H8064\"* of|strong=\"H4325\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 5, + "text": "Let them|strong=\"H6680\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H5414\"* has|strong=\"H5414\"* also established|strong=\"H5975\"* them|strong=\"H5414\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 8, + "text": "lightning and|strong=\"H6213\"* hail|strong=\"H1259\"*, snow|strong=\"H7950\"* and|strong=\"H6213\"* clouds|strong=\"H7008\"*," + }, + { + "verseNum": 9, + "text": "mountains|strong=\"H2022\"* and|strong=\"H6086\"* all|strong=\"H3605\"* hills|strong=\"H1389\"*," + }, + { + "verseNum": 10, + "text": "wild animals|strong=\"H2416\"* and|strong=\"H3605\"* all|strong=\"H3605\"* livestock," + }, + { + "verseNum": 11, + "text": "kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth and|strong=\"H4428\"* all|strong=\"H3605\"* peoples|strong=\"H3816\"*," + }, + { + "verseNum": 12, + "text": "both|strong=\"H1571\"* young|strong=\"H5288\"* men|strong=\"H5288\"* and|strong=\"H5288\"* maidens|strong=\"H1330\"*," + }, + { + "verseNum": 13, + "text": "Let them|strong=\"H5921\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H1121\"* his|strong=\"H3605\"* people|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 149, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Let|strong=\"H8055\"* Israel|strong=\"H3478\"* rejoice|strong=\"H8055\"* in|strong=\"H3478\"* him|strong=\"H6213\"* who|strong=\"H1121\"* made|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "Let them praise|strong=\"H1984\"* his|strong=\"H1984\"* name|strong=\"H8034\"* in|strong=\"H8034\"* the|strong=\"H1984\"* dance|strong=\"H4234\"*!" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* takes|strong=\"H7521\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "Let the|strong=\"H5921\"* saints|strong=\"H2623\"* rejoice|strong=\"H7442\"* in|strong=\"H5921\"* honor|strong=\"H3519\"*." + }, + { + "verseNum": 6, + "text": "May|strong=\"H2719\"* the|strong=\"H3027\"* high|strong=\"H7319\"* praises of|strong=\"H3027\"* God|strong=\"H3027\"* be|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H3027\"* mouths," + }, + { + "verseNum": 7, + "text": "to|strong=\"H6213\"* execute|strong=\"H6213\"* vengeance|strong=\"H5360\"* on|strong=\"H6213\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 8, + "text": "to|strong=\"H4428\"* bind their|strong=\"H3513\"* kings|strong=\"H4428\"* with|strong=\"H4428\"* chains|strong=\"H2131\"*," + }, + { + "verseNum": 9, + "text": "to|strong=\"H6213\"* execute|strong=\"H6213\"* on|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* written|strong=\"H3789\"* judgment|strong=\"H4941\"*." + } + ] + }, + { + "chapterNum": 150, + "verses": [ + { + "verseNum": 1, + "text": "Praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + }, + { + "verseNum": 2, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* for|strong=\"H1369\"* his|strong=\"H1984\"* mighty|strong=\"H1369\"* acts|strong=\"H1369\"*!" + }, + { + "verseNum": 3, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* the|strong=\"H1984\"* sounding of|strong=\"H7782\"* the|strong=\"H1984\"* trumpet|strong=\"H7782\"*!" + }, + { + "verseNum": 4, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* tambourine|strong=\"H8596\"* and|strong=\"H8596\"* dancing|strong=\"H4234\"*!" + }, + { + "verseNum": 5, + "text": "Praise|strong=\"H1984\"* him|strong=\"H1984\"* with|strong=\"H1984\"* loud|strong=\"H8088\"* cymbals|strong=\"H6767\"*!" + }, + { + "verseNum": 6, + "text": "Let everything|strong=\"H3605\"* that|strong=\"H3605\"* has|strong=\"H3050\"* breath|strong=\"H5397\"* praise|strong=\"H1984\"* Yah|strong=\"H3068\"*!" + } + ] + } + ] + }, + { + "name": "Proverbs", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1732\"* proverbs|strong=\"H4912\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*, the|strong=\"H1732\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 2, + "text": "to|strong=\"H3045\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* instruction|strong=\"H4148\"*;" + }, + { + "verseNum": 3, + "text": "to|strong=\"H4941\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"* in|strong=\"H7919\"* wise|strong=\"H7919\"* dealing," + }, + { + "verseNum": 4, + "text": "to|strong=\"H5414\"* give|strong=\"H5414\"* prudence|strong=\"H6195\"* to|strong=\"H5414\"* the|strong=\"H5414\"* simple|strong=\"H6612\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H8085\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* may|strong=\"H3254\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* increase|strong=\"H3254\"* in|strong=\"H8085\"* learning|strong=\"H3948\"*;" + }, + { + "verseNum": 6, + "text": "to|strong=\"H1697\"* understand a|strong=\"H3068\"* proverb|strong=\"H4912\"* and|strong=\"H1697\"* parables|strong=\"H4912\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*+ 1:7 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* is|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 8, + "text": "My|strong=\"H8085\"* son|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*," + }, + { + "verseNum": 9, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1992\"* be|strong=\"H3588\"* a|strong=\"H3068\"* garland|strong=\"H3880\"* to|strong=\"H7218\"* grace|strong=\"H2580\"* your|strong=\"H3588\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 10, + "text": "My son|strong=\"H1121\"*, if|strong=\"H1121\"* sinners|strong=\"H2400\"* entice|strong=\"H6601\"* you," + }, + { + "verseNum": 11, + "text": "If they|strong=\"H2600\"* say, “Come|strong=\"H3212\"* with|strong=\"H3212\"* us." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H3381\"*’s swallow|strong=\"H1104\"* them|strong=\"H3381\"* up|strong=\"H1104\"* alive|strong=\"H2416\"* like|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 1:12 Sheol is the place of the dead.*" + }, + { + "verseNum": 13, + "text": "We|strong=\"H3605\"*’ll find|strong=\"H4672\"* all|strong=\"H3605\"* valuable|strong=\"H3368\"* wealth|strong=\"H1952\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H3605\"* shall cast|strong=\"H5307\"* your|strong=\"H3605\"* lot|strong=\"H1486\"* among|strong=\"H8432\"* us|strong=\"H1961\"*." + }, + { + "verseNum": 15, + "text": "my|strong=\"H1870\"* son|strong=\"H1121\"*, don’t walk|strong=\"H3212\"* on|strong=\"H1870\"* the|strong=\"H1870\"* path|strong=\"H5410\"* with|strong=\"H3212\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* feet|strong=\"H7272\"* run|strong=\"H7323\"* to|strong=\"H7323\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* net|strong=\"H7568\"* is|strong=\"H3605\"* spread|strong=\"H2219\"* in|strong=\"H5869\"* vain|strong=\"H2600\"* in|strong=\"H5869\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* any|strong=\"H3605\"* bird|strong=\"H3671\"*;" + }, + { + "verseNum": 18, + "text": "but|strong=\"H1992\"* these|strong=\"H1992\"* lay|strong=\"H5315\"* in|strong=\"H5315\"* wait for|strong=\"H5315\"* their|strong=\"H1992\"* own|strong=\"H5315\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 19, + "text": "So|strong=\"H3651\"* are|strong=\"H5315\"* the|strong=\"H3605\"* ways of|strong=\"H1167\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H5315\"* greedy|strong=\"H1214\"* for|strong=\"H5315\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 20, + "text": "Wisdom|strong=\"H2454\"* calls|strong=\"H2454\"* aloud|strong=\"H7442\"* in|strong=\"H6963\"* the|strong=\"H5414\"* street|strong=\"H2351\"*." + }, + { + "verseNum": 21, + "text": "She|strong=\"H7121\"* calls|strong=\"H7121\"* at|strong=\"H7218\"* the|strong=\"H7121\"* head|strong=\"H7218\"* of|strong=\"H5892\"* noisy|strong=\"H1993\"* places." + }, + { + "verseNum": 22, + "text": "“How|strong=\"H4970\"* long|strong=\"H5704\"*, you|strong=\"H5704\"* simple|strong=\"H6612\"* ones|strong=\"H6612\"*, will|strong=\"H5704\"* you|strong=\"H5704\"* love simplicity|strong=\"H6612\"*?" + }, + { + "verseNum": 23, + "text": "Turn|strong=\"H7725\"* at|strong=\"H7725\"* my|strong=\"H3045\"* reproof|strong=\"H8433\"*." + }, + { + "verseNum": 24, + "text": "Because|strong=\"H3282\"* I|strong=\"H3282\"* have|strong=\"H3027\"* called|strong=\"H7121\"*, and|strong=\"H3027\"* you|strong=\"H3282\"* have|strong=\"H3027\"* refused|strong=\"H3985\"*;" + }, + { + "verseNum": 25, + "text": "but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3605\"* ignored all|strong=\"H3605\"* my|strong=\"H3605\"* counsel|strong=\"H6098\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1571\"* laugh|strong=\"H7832\"* at|strong=\"H7832\"* your|strong=\"H1571\"* disaster|strong=\"H6343\"*." + }, + { + "verseNum": 27, + "text": "when|strong=\"H5921\"* calamity overtakes you|strong=\"H5921\"* like|strong=\"H5921\"* a|strong=\"H3068\"* storm|strong=\"H5492\"*," + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6030\"* they|strong=\"H3808\"* will|strong=\"H3808\"* call|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 29, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* hated|strong=\"H8130\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 30, + "text": "They|strong=\"H3808\"* wanted none|strong=\"H3808\"* of|strong=\"H3605\"* my|strong=\"H3605\"* counsel|strong=\"H6098\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H4156\"* they|strong=\"H4156\"* will|strong=\"H1870\"* eat of|strong=\"H1870\"* the|strong=\"H1870\"* fruit|strong=\"H6529\"* of|strong=\"H1870\"* their|strong=\"H1870\"* own way|strong=\"H1870\"*," + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* backsliding|strong=\"H4878\"* of|strong=\"H7962\"* the|strong=\"H3588\"* simple|strong=\"H6612\"* will|strong=\"H3684\"* kill|strong=\"H2026\"* them|strong=\"H2026\"*." + }, + { + "verseNum": 33, + "text": "But|strong=\"H8085\"* whoever listens|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"* will|strong=\"H8085\"* dwell|strong=\"H7931\"* securely," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H3947\"* son|strong=\"H1121\"*, if|strong=\"H1121\"* you|strong=\"H3947\"* will|strong=\"H1121\"* receive|strong=\"H3947\"* my|strong=\"H3947\"* words," + }, + { + "verseNum": 2, + "text": "so as to|strong=\"H3820\"* turn|strong=\"H5186\"* your|strong=\"H5186\"* ear to|strong=\"H3820\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 3, + "text": "yes|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* call|strong=\"H7121\"* out|strong=\"H5414\"* for|strong=\"H3588\"* discernment|strong=\"H8394\"*," + }, + { + "verseNum": 4, + "text": "if you|strong=\"H1245\"* seek|strong=\"H1245\"* her as|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 5, + "text": "then|strong=\"H3068\"* you|strong=\"H4672\"* will|strong=\"H3068\"* understand the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1980\"* lays up|strong=\"H6845\"* sound|strong=\"H8454\"* wisdom|strong=\"H8454\"* for the|strong=\"H1980\"* upright|strong=\"H3477\"*." + }, + { + "verseNum": 8, + "text": "that|strong=\"H1870\"* he may guard|strong=\"H8104\"* the|strong=\"H8104\"* paths|strong=\"H1870\"* of|strong=\"H1870\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H6664\"* understand righteousness|strong=\"H6664\"* and|strong=\"H4941\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* will|strong=\"H5315\"* enter into|strong=\"H1847\"* your|strong=\"H3588\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 11, + "text": "Discretion|strong=\"H4209\"* will|strong=\"H8394\"* watch|strong=\"H8104\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "to|strong=\"H1696\"* deliver|strong=\"H5337\"* you|strong=\"H1696\"* from|strong=\"H5337\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 13, + "text": "who forsake|strong=\"H5800\"* the|strong=\"H1870\"* paths|strong=\"H1870\"* of|strong=\"H1870\"* uprightness|strong=\"H3476\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"H6213\"* rejoice|strong=\"H1523\"* to|strong=\"H6213\"* do|strong=\"H6213\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"H6141\"* are|strong=\"H4570\"* crooked|strong=\"H6141\"* in|strong=\"H6141\"* their ways|strong=\"H4570\"*," + }, + { + "verseNum": 16, + "text": "to|strong=\"H2505\"* deliver|strong=\"H5337\"* you|strong=\"H2114\"* from|strong=\"H5337\"* the|strong=\"H5337\"* strange|strong=\"H2114\"* woman|strong=\"H5237\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H7911\"* forsakes|strong=\"H5800\"* the|strong=\"H5800\"* friend of|strong=\"H1285\"* her|strong=\"H7911\"* youth|strong=\"H5271\"*," + }, + { + "verseNum": 18, + "text": "for|strong=\"H3588\"* her|strong=\"H3588\"* house|strong=\"H1004\"* leads down|strong=\"H7743\"* to|strong=\"H1004\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 19, + "text": "None|strong=\"H3808\"* who|strong=\"H3605\"* go|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* return|strong=\"H7725\"* again|strong=\"H7725\"*," + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H4616\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H8104\"* way|strong=\"H1870\"* of|strong=\"H1870\"* good|strong=\"H2896\"* men|strong=\"H6662\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* upright|strong=\"H3477\"* will|strong=\"H3477\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* the|strong=\"H3588\"* land." + }, + { + "verseNum": 22, + "text": "But|strong=\"H7563\"* the|strong=\"H4480\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H7563\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H4480\"* land." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H7911\"* son|strong=\"H1121\"*, don’t forget|strong=\"H7911\"* my|strong=\"H7911\"* teaching|strong=\"H8451\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3117\"* add|strong=\"H3254\"* to|strong=\"H3117\"* you|strong=\"H3588\"* length|strong=\"H8141\"* of|strong=\"H3117\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "Don’t let|strong=\"H5800\"* kindness|strong=\"H2617\"* and|strong=\"H2617\"* truth forsake|strong=\"H5800\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "So|strong=\"H4672\"* you|strong=\"H4672\"* will|strong=\"H5869\"* find|strong=\"H4672\"* favor|strong=\"H2580\"*," + }, + { + "verseNum": 5, + "text": "Trust|strong=\"H8172\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H1870\"* all|strong=\"H3605\"* your|strong=\"H3605\"* ways|strong=\"H1870\"* acknowledge|strong=\"H3045\"* him|strong=\"H1931\"*," + }, + { + "verseNum": 7, + "text": "Don’t be|strong=\"H1961\"* wise|strong=\"H2450\"* in|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H1961\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* health|strong=\"H7500\"* to|strong=\"H1961\"* your|strong=\"H1961\"* body|strong=\"H6106\"*," + }, + { + "verseNum": 9, + "text": "Honor|strong=\"H3513\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* your|strong=\"H3068\"* substance|strong=\"H1952\"*," + }, + { + "verseNum": 10, + "text": "so your|strong=\"H4390\"* barns will|strong=\"H3342\"* be filled|strong=\"H4390\"* with|strong=\"H4390\"* plenty|strong=\"H7647\"*," + }, + { + "verseNum": 11, + "text": "My|strong=\"H3068\"* son|strong=\"H1121\"*, don’t despise|strong=\"H3988\"* Yahweh|strong=\"H3068\"*’s discipline|strong=\"H4148\"*," + }, + { + "verseNum": 12, + "text": "for|strong=\"H3588\"* whom|strong=\"H3588\"* Yahweh|strong=\"H3068\"* loves, he|strong=\"H3588\"* corrects|strong=\"H3198\"*," + }, + { + "verseNum": 13, + "text": "Happy is|strong=\"H2451\"* the|strong=\"H4672\"* man|strong=\"H2451\"* who|strong=\"H4672\"* finds|strong=\"H4672\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* her|strong=\"H5504\"* good|strong=\"H2896\"* profit|strong=\"H5504\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* getting silver|strong=\"H3701\"*," + }, + { + "verseNum": 15, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* more|strong=\"H3808\"* precious|strong=\"H3368\"* than|strong=\"H3808\"* rubies|strong=\"H6443\"*." + }, + { + "verseNum": 16, + "text": "Length|strong=\"H3117\"* of|strong=\"H3117\"* days|strong=\"H3117\"* is|strong=\"H3117\"* in|strong=\"H3117\"* her|strong=\"H3117\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*." + }, + { + "verseNum": 17, + "text": "Her|strong=\"H3605\"* ways|strong=\"H1870\"* are|strong=\"H1870\"* ways|strong=\"H1870\"* of|strong=\"H1870\"* pleasantness|strong=\"H5278\"*." + }, + { + "verseNum": 18, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H6086\"* life|strong=\"H2416\"* to|strong=\"H6086\"* those|strong=\"H1931\"* who|strong=\"H1931\"* lay hold|strong=\"H2388\"* of|strong=\"H6086\"* her|strong=\"H1931\"*." + }, + { + "verseNum": 19, + "text": "By|strong=\"H3068\"* wisdom|strong=\"H2451\"* Yahweh|strong=\"H3068\"* founded|strong=\"H3245\"* the|strong=\"H3068\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "By|strong=\"H7834\"* his|strong=\"H1847\"* knowledge|strong=\"H1847\"*, the|strong=\"H1234\"* depths|strong=\"H8415\"* were|strong=\"H8415\"* broken|strong=\"H1234\"* up|strong=\"H1234\"*," + }, + { + "verseNum": 21, + "text": "My|strong=\"H5341\"* son|strong=\"H1121\"*, let|strong=\"H3868\"* them|strong=\"H1121\"* not|strong=\"H5869\"* depart|strong=\"H3868\"* from|strong=\"H1121\"* your|strong=\"H5341\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "so|strong=\"H1961\"* they|strong=\"H5315\"* will|strong=\"H1961\"* be|strong=\"H1961\"* life|strong=\"H5315\"* to|strong=\"H1961\"* your|strong=\"H1961\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* your|strong=\"H3808\"* way|strong=\"H1870\"* securely." + }, + { + "verseNum": 24, + "text": "When|strong=\"H7901\"* you|strong=\"H3808\"* lie|strong=\"H7901\"* down|strong=\"H7901\"*, you|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H6342\"*." + }, + { + "verseNum": 25, + "text": "Don’t be|strong=\"H7563\"* afraid|strong=\"H3372\"* of|strong=\"H3372\"* sudden|strong=\"H6597\"* fear|strong=\"H3372\"*," + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* confidence|strong=\"H3689\"*," + }, + { + "verseNum": 27, + "text": "Don’t withhold|strong=\"H4513\"* good|strong=\"H2896\"* from|strong=\"H3027\"* those|strong=\"H6213\"* to|strong=\"H1961\"* whom it|strong=\"H6213\"* is|strong=\"H3027\"* due|strong=\"H1167\"*," + }, + { + "verseNum": 28, + "text": "Don’t say|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* neighbor|strong=\"H7453\"*, “Go|strong=\"H3212\"*, and|strong=\"H7725\"* come|strong=\"H3212\"* again|strong=\"H7725\"*;" + }, + { + "verseNum": 29, + "text": "Don’t devise|strong=\"H2790\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* your|strong=\"H5921\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 30, + "text": "Don’t strive|strong=\"H7378\"* with|strong=\"H5973\"* a|strong=\"H3068\"* man|strong=\"H7451\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*," + }, + { + "verseNum": 31, + "text": "Don’t envy|strong=\"H7065\"* the|strong=\"H3605\"* man|strong=\"H3605\"* of|strong=\"H1870\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* perverse|strong=\"H3868\"* is|strong=\"H3068\"* an|strong=\"H3588\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"*’s curse|strong=\"H1288\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 34, + "text": "Surely|strong=\"H5414\"* he|strong=\"H1931\"* mocks the|strong=\"H5414\"* mockers|strong=\"H3887\"*," + }, + { + "verseNum": 35, + "text": "The|strong=\"H7311\"* wise|strong=\"H2450\"* will|strong=\"H2450\"* inherit|strong=\"H5157\"* glory|strong=\"H3519\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"*, sons|strong=\"H1121\"*, to|strong=\"H8085\"* a|strong=\"H3068\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*." + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* I|strong=\"H3588\"* give|strong=\"H5414\"* you|strong=\"H5414\"* sound|strong=\"H2896\"* learning|strong=\"H3948\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1961\"* my|strong=\"H1961\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H1697\"* taught|strong=\"H3384\"* me|strong=\"H8104\"*, and|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H3820\"* me|strong=\"H8104\"*:" + }, + { + "verseNum": 5, + "text": "Get|strong=\"H7069\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 6, + "text": "Don’t forsake|strong=\"H5800\"* her|strong=\"H5800\"*, and|strong=\"H8104\"* she will|strong=\"H5341\"* preserve|strong=\"H5341\"* you|strong=\"H5800\"*." + }, + { + "verseNum": 7, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H3605\"* supreme." + }, + { + "verseNum": 8, + "text": "Esteem|strong=\"H5549\"* her|strong=\"H3513\"*, and|strong=\"H7311\"* she|strong=\"H3588\"* will|strong=\"H3588\"* exalt|strong=\"H7311\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "She will|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* head|strong=\"H7218\"* a|strong=\"H3068\"* garland|strong=\"H3880\"* of|strong=\"H7218\"* grace|strong=\"H2580\"*." + }, + { + "verseNum": 10, + "text": "Listen|strong=\"H8085\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* receive|strong=\"H3947\"* my|strong=\"H8085\"* sayings." + }, + { + "verseNum": 11, + "text": "I|strong=\"H1870\"* have taught|strong=\"H3384\"* you|strong=\"H3384\"* in|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 12, + "text": "When you|strong=\"H3808\"* go|strong=\"H3212\"*, your|strong=\"H3808\"* steps|strong=\"H6806\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* hampered." + }, + { + "verseNum": 13, + "text": "Take|strong=\"H2388\"* firm|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H2416\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 14, + "text": "Don’t enter into the|strong=\"H1870\"* path|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*." + }, + { + "verseNum": 15, + "text": "Avoid|strong=\"H6544\"* it|strong=\"H5921\"*, and|strong=\"H5674\"* don’t pass|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* don’t sleep|strong=\"H8142\"* unless|strong=\"H3588\"* they|strong=\"H3588\"* do|strong=\"H7489\"* evil|strong=\"H7489\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* eat|strong=\"H3898\"* the|strong=\"H3588\"* bread|strong=\"H3899\"* of|strong=\"H3899\"* wickedness|strong=\"H7562\"*" + }, + { + "verseNum": 18, + "text": "But|strong=\"H6662\"* the|strong=\"H3117\"* path of|strong=\"H3117\"* the|strong=\"H3117\"* righteous|strong=\"H6662\"* is|strong=\"H3117\"* like|strong=\"H1980\"* the|strong=\"H3117\"* dawning light|strong=\"H5051\"*" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3045\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3045\"* wicked|strong=\"H7563\"* is|strong=\"H4100\"* like|strong=\"H1870\"* darkness." + }, + { + "verseNum": 20, + "text": "My|strong=\"H5186\"* son|strong=\"H1121\"*, attend|strong=\"H7181\"* to|strong=\"H1121\"* my|strong=\"H5186\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 21, + "text": "Let|strong=\"H3868\"* them|strong=\"H8432\"* not|strong=\"H5869\"* depart|strong=\"H3868\"* from|strong=\"H5869\"* your|strong=\"H8104\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* life|strong=\"H2416\"* to|strong=\"H1320\"* those|strong=\"H1992\"* who|strong=\"H3605\"* find|strong=\"H4672\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 23, + "text": "Keep|strong=\"H5341\"* your|strong=\"H3605\"* heart|strong=\"H3820\"* with|strong=\"H3820\"* all|strong=\"H3605\"* diligence|strong=\"H4929\"*," + }, + { + "verseNum": 24, + "text": "Put|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* yourself a|strong=\"H3068\"* perverse|strong=\"H6143\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H6079\"* your|strong=\"H3474\"* eyes|strong=\"H5869\"* look|strong=\"H5027\"* straight|strong=\"H3474\"* ahead|strong=\"H5048\"*." + }, + { + "verseNum": 26, + "text": "Make|strong=\"H3559\"* the|strong=\"H3605\"* path|strong=\"H1870\"* of|strong=\"H1870\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* level|strong=\"H6424\"*." + }, + { + "verseNum": 27, + "text": "Don’t turn|strong=\"H5493\"* to|strong=\"H5493\"* the|strong=\"H5493\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* nor|strong=\"H7451\"* to|strong=\"H5493\"* the|strong=\"H5493\"* left|strong=\"H8040\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H5186\"* son|strong=\"H1121\"*, pay|strong=\"H7181\"* attention|strong=\"H7181\"* to|strong=\"H1121\"* my|strong=\"H5186\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 2, + "text": "that|strong=\"H8193\"* you|strong=\"H8104\"* may|strong=\"H8193\"* maintain discretion|strong=\"H4209\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* lips|strong=\"H8193\"* of|strong=\"H8193\"* an|strong=\"H3588\"* adulteress|strong=\"H2114\"* drip|strong=\"H5197\"* honey|strong=\"H5317\"*." + }, + { + "verseNum": 4, + "text": "but in|strong=\"H6310\"* the|strong=\"H6310\"* end|strong=\"H6310\"* she is|strong=\"H6310\"* as|strong=\"H4751\"* bitter|strong=\"H4751\"* as|strong=\"H4751\"* wormwood|strong=\"H3939\"*," + }, + { + "verseNum": 5, + "text": "Her|strong=\"H3381\"* feet|strong=\"H7272\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H3808\"* gives no|strong=\"H3808\"* thought|strong=\"H3045\"* to|strong=\"H3045\"* the|strong=\"H3045\"* way|strong=\"H4570\"* of|strong=\"H2416\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8085\"* sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H5493\"*." + }, + { + "verseNum": 8, + "text": "Remove|strong=\"H7368\"* your|strong=\"H5921\"* way|strong=\"H1870\"* far|strong=\"H7368\"* from|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "lest|strong=\"H6435\"* you|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H5414\"* honor|strong=\"H1935\"* to|strong=\"H5414\"* others," + }, + { + "verseNum": 10, + "text": "lest|strong=\"H6435\"* strangers|strong=\"H2114\"* feast on|strong=\"H1004\"* your|strong=\"H7646\"* wealth|strong=\"H3581\"*," + }, + { + "verseNum": 11, + "text": "You|strong=\"H1320\"* will|strong=\"H1320\"* groan|strong=\"H5098\"* at your|strong=\"H3615\"* latter end|strong=\"H3615\"*," + }, + { + "verseNum": 12, + "text": "and|strong=\"H3820\"* say, “How I|strong=\"H3820\"* have|strong=\"H8130\"* hated|strong=\"H8130\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* haven’t obeyed|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* my|strong=\"H8085\"* teachers|strong=\"H3384\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3605\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* brink of|strong=\"H8432\"* utter|strong=\"H3605\"* ruin|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "Drink|strong=\"H8354\"* water|strong=\"H4325\"* out|strong=\"H5140\"* of|strong=\"H4325\"* your|strong=\"H8354\"* own cistern," + }, + { + "verseNum": 16, + "text": "Should your springs|strong=\"H4599\"* overflow|strong=\"H6327\"* in|strong=\"H4325\"* the|strong=\"H2351\"* streets|strong=\"H2351\"*," + }, + { + "verseNum": 17, + "text": "Let|strong=\"H1961\"* them|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1961\"* yourself alone," + }, + { + "verseNum": 18, + "text": "Let|strong=\"H8055\"* your|strong=\"H1961\"* spring|strong=\"H4726\"* be|strong=\"H1961\"* blessed|strong=\"H1288\"*." + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* loving doe|strong=\"H3280\"* and|strong=\"H6256\"* a|strong=\"H3068\"* graceful|strong=\"H2580\"* deer|strong=\"H3280\"*—" + }, + { + "verseNum": 20, + "text": "For|strong=\"H1121\"* why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H4100\"*, my|strong=\"H4100\"* son|strong=\"H1121\"*, be|strong=\"H1121\"* captivated with|strong=\"H1121\"* an adulteress|strong=\"H2114\"*?" + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* man|strong=\"H3605\"* are|strong=\"H5869\"* before|strong=\"H5869\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3920\"* evil|strong=\"H7563\"* deeds of|strong=\"H2403\"* the|strong=\"H3920\"* wicked|strong=\"H7563\"* ensnare him." + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* will|strong=\"H1931\"* die|strong=\"H4191\"* for|strong=\"H4191\"* lack of|strong=\"H7230\"* instruction|strong=\"H4148\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "My son|strong=\"H1121\"*, if|strong=\"H1121\"* you|strong=\"H2114\"* have|strong=\"H1121\"* become|strong=\"H6148\"* collateral|strong=\"H6148\"* for|strong=\"H1121\"* your|strong=\"H8628\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 2, + "text": "you|strong=\"H6310\"* are|strong=\"H6310\"* trapped by|strong=\"H3920\"* the|strong=\"H3920\"* words|strong=\"H6310\"* of|strong=\"H6310\"* your mouth|strong=\"H6310\"*;" + }, + { + "verseNum": 3, + "text": "Do|strong=\"H6213\"* this|strong=\"H2063\"* now|strong=\"H3588\"*, my|strong=\"H5337\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* deliver|strong=\"H5337\"* yourself|strong=\"H5337\"*," + }, + { + "verseNum": 4, + "text": "Give|strong=\"H5414\"* no|strong=\"H5414\"* sleep|strong=\"H8142\"* to|strong=\"H5414\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "Free yourself|strong=\"H5337\"*, like a|strong=\"H3068\"* gazelle|strong=\"H6643\"* from|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hunter," + }, + { + "verseNum": 6, + "text": "Go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H7200\"* ant|strong=\"H5244\"*, you|strong=\"H7200\"* sluggard|strong=\"H6102\"*." + }, + { + "verseNum": 7, + "text": "which having no chief|strong=\"H7101\"*, overseer|strong=\"H7860\"*, or|strong=\"H4910\"* ruler|strong=\"H4910\"*," + }, + { + "verseNum": 8, + "text": "provides|strong=\"H3559\"* her|strong=\"H3559\"* bread|strong=\"H3899\"* in|strong=\"H3899\"* the|strong=\"H3559\"* summer|strong=\"H7019\"*," + }, + { + "verseNum": 9, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* you|strong=\"H5704\"* sleep|strong=\"H8142\"*, sluggard|strong=\"H6102\"*?" + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* little|strong=\"H4592\"* sleep|strong=\"H8142\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* slumber|strong=\"H8572\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H1980\"* your poverty|strong=\"H7389\"* will|strong=\"H7389\"* come|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* robber|strong=\"H1980\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* worthless|strong=\"H1100\"* person|strong=\"H1980\"*, a|strong=\"H3068\"* man of|strong=\"H6310\"* iniquity," + }, + { + "verseNum": 13, + "text": "who winks|strong=\"H7169\"* with|strong=\"H5869\"* his|strong=\"H5869\"* eyes|strong=\"H5869\"*, who signals|strong=\"H4448\"* with|strong=\"H5869\"* his|strong=\"H5869\"* feet|strong=\"H7272\"*," + }, + { + "verseNum": 14, + "text": "in|strong=\"H7971\"* whose|strong=\"H3605\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* perverseness," + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* his|strong=\"H5921\"* calamity will come suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H3068\"* are|strong=\"H3068\"* six|strong=\"H8337\"* things|strong=\"H8441\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hates|strong=\"H8130\"*;" + }, + { + "verseNum": 17, + "text": "arrogant eyes|strong=\"H5869\"*, a|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"*," + }, + { + "verseNum": 18, + "text": "a|strong=\"H3068\"* heart|strong=\"H3820\"* that|strong=\"H7451\"* devises|strong=\"H2790\"* wicked|strong=\"H7451\"* schemes|strong=\"H4284\"*," + }, + { + "verseNum": 19, + "text": "a|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* who|strong=\"H5707\"* utters|strong=\"H6315\"* lies|strong=\"H3577\"*," + }, + { + "verseNum": 20, + "text": "My|strong=\"H5341\"* son|strong=\"H1121\"*, keep|strong=\"H5341\"* your|strong=\"H5341\"* father|strong=\"H1121\"*’s commandment|strong=\"H4687\"*," + }, + { + "verseNum": 21, + "text": "Bind|strong=\"H7194\"* them|strong=\"H5921\"* continually|strong=\"H8548\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 22, + "text": "When|strong=\"H1980\"* you|strong=\"H5921\"* walk|strong=\"H1980\"*, it|strong=\"H1931\"* will|strong=\"H1931\"* lead|strong=\"H5148\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* commandment|strong=\"H4687\"* is|strong=\"H1870\"* a|strong=\"H3068\"* lamp|strong=\"H5216\"*," + }, + { + "verseNum": 24, + "text": "to|strong=\"H8104\"* keep|strong=\"H8104\"* you|strong=\"H8104\"* from|strong=\"H7451\"* the|strong=\"H8104\"* immoral woman|strong=\"H5237\"*," + }, + { + "verseNum": 25, + "text": "Don’t lust|strong=\"H2530\"* after her|strong=\"H3947\"* beauty|strong=\"H3308\"* in|strong=\"H3947\"* your|strong=\"H3947\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* reduces you|strong=\"H3588\"* to|strong=\"H5704\"* a|strong=\"H3068\"* piece|strong=\"H3603\"* of|strong=\"H3603\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 27, + "text": "Can|strong=\"H3808\"* a|strong=\"H3068\"* man scoop|strong=\"H2846\"* fire into his|strong=\"H3808\"* lap|strong=\"H2436\"*," + }, + { + "verseNum": 28, + "text": "Or|strong=\"H3808\"* can|strong=\"H1980\"* one|strong=\"H3808\"* walk|strong=\"H1980\"* on|strong=\"H5921\"* hot|strong=\"H1513\"* coals|strong=\"H1513\"*," + }, + { + "verseNum": 29, + "text": "So|strong=\"H3651\"* is|strong=\"H3651\"* he|strong=\"H3651\"* who|strong=\"H3605\"* goes in|strong=\"H3808\"* to|strong=\"H3808\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*’s wife." + }, + { + "verseNum": 30, + "text": "Men|strong=\"H5315\"* don’t despise a|strong=\"H3068\"* thief|strong=\"H1590\"*" + }, + { + "verseNum": 31, + "text": "but|strong=\"H7999\"* if he|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"*, he|strong=\"H3605\"* shall|strong=\"H1004\"* restore|strong=\"H7999\"* seven|strong=\"H7659\"* times|strong=\"H7659\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* commits|strong=\"H6213\"* adultery|strong=\"H5003\"* with|strong=\"H6213\"* a|strong=\"H3068\"* woman is|strong=\"H1931\"* void|strong=\"H2638\"* of|strong=\"H3820\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 33, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* get|strong=\"H4672\"* wounds|strong=\"H5061\"* and|strong=\"H2781\"* dishonor|strong=\"H7036\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H3588\"* jealousy|strong=\"H7068\"* arouses the|strong=\"H3588\"* fury|strong=\"H2534\"* of|strong=\"H3117\"* the|strong=\"H3588\"* husband." + }, + { + "verseNum": 35, + "text": "He|strong=\"H3588\"* won’t regard|strong=\"H5375\"* any|strong=\"H3605\"* ransom|strong=\"H3724\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "My|strong=\"H8104\"* son|strong=\"H1121\"*, keep|strong=\"H8104\"* my|strong=\"H8104\"* words." + }, + { + "verseNum": 2, + "text": "Keep|strong=\"H8104\"* my|strong=\"H8104\"* commandments|strong=\"H4687\"* and|strong=\"H5869\"* live|strong=\"H2421\"*!" + }, + { + "verseNum": 3, + "text": "Bind|strong=\"H7194\"* them|strong=\"H5921\"* on|strong=\"H5921\"* your|strong=\"H5921\"* fingers." + }, + { + "verseNum": 4, + "text": "Tell wisdom|strong=\"H2451\"*, “You|strong=\"H7121\"* are my|strong=\"H7121\"* sister.”" + }, + { + "verseNum": 5, + "text": "that they may keep|strong=\"H8104\"* you|strong=\"H8104\"* from|strong=\"H8104\"* the|strong=\"H8104\"* strange|strong=\"H2114\"* woman|strong=\"H5237\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* at|strong=\"H1004\"* the|strong=\"H3588\"* window|strong=\"H2474\"* of|strong=\"H1004\"* my|strong=\"H3588\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* among|strong=\"H7200\"* the|strong=\"H7200\"* simple|strong=\"H6612\"* ones|strong=\"H1121\"*." + }, + { + "verseNum": 8, + "text": "passing|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* street|strong=\"H7784\"* near her|strong=\"H1870\"* corner|strong=\"H6438\"*," + }, + { + "verseNum": 9, + "text": "in|strong=\"H3117\"* the|strong=\"H3117\"* twilight|strong=\"H5399\"*, in|strong=\"H3117\"* the|strong=\"H3117\"* evening|strong=\"H6153\"* of|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* a|strong=\"H3068\"* woman met|strong=\"H7125\"* him|strong=\"H7125\"* with|strong=\"H3820\"* the|strong=\"H2181\"* attire|strong=\"H7897\"* of|strong=\"H3820\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 11, + "text": "She|strong=\"H1931\"* is|strong=\"H1931\"* loud|strong=\"H1993\"* and|strong=\"H1004\"* defiant." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H6471\"* she is|strong=\"H3605\"* in|strong=\"H6471\"* the|strong=\"H3605\"* streets|strong=\"H2351\"*, now|strong=\"H6471\"* in|strong=\"H6471\"* the|strong=\"H3605\"* squares|strong=\"H7339\"*," + }, + { + "verseNum": 13, + "text": "So|strong=\"H6440\"* she|strong=\"H6440\"* caught|strong=\"H2388\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* kissed|strong=\"H5401\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 14, + "text": "“Sacrifices|strong=\"H2077\"* of|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* are|strong=\"H3117\"* with|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H4714\"* have|strong=\"H4714\"* spread|strong=\"H7234\"* my|strong=\"H4714\"* couch|strong=\"H6210\"* with|strong=\"H4714\"* carpets of|strong=\"H4714\"* tapestry|strong=\"H4765\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H4904\"* have perfumed|strong=\"H5130\"* my|strong=\"H5130\"* bed|strong=\"H4904\"* with|strong=\"H4904\"* myrrh|strong=\"H4753\"*, aloes, and|strong=\"H4753\"* cinnamon|strong=\"H7076\"*." + }, + { + "verseNum": 18, + "text": "Come|strong=\"H3212\"*, let|strong=\"H3212\"*’s take|strong=\"H3212\"* our|strong=\"H7301\"* fill|strong=\"H7301\"* of|strong=\"H1730\"* loving until|strong=\"H5704\"* the|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* husband isn’t at|strong=\"H1004\"* home|strong=\"H1004\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H3117\"* has|strong=\"H3117\"* taken|strong=\"H3947\"* a|strong=\"H3068\"* bag|strong=\"H6872\"* of|strong=\"H1004\"* money|strong=\"H3701\"* with|strong=\"H1004\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "With|strong=\"H2506\"* persuasive words|strong=\"H8193\"*, she|strong=\"H8193\"* led|strong=\"H5080\"* him|strong=\"H5186\"* astray|strong=\"H5080\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1980\"* followed|strong=\"H1980\"* her|strong=\"H1980\"* immediately|strong=\"H6597\"*," + }, + { + "verseNum": 23, + "text": "Until|strong=\"H5704\"* an|strong=\"H3588\"* arrow|strong=\"H2671\"* strikes through|strong=\"H6398\"* his|strong=\"H3045\"* liver|strong=\"H3516\"*," + }, + { + "verseNum": 24, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H8085\"*." + }, + { + "verseNum": 25, + "text": "Don’t let your|strong=\"H1870\"* heart|strong=\"H3820\"* turn|strong=\"H7847\"* to|strong=\"H3820\"* her|strong=\"H1870\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 26, + "text": "for|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3588\"* thrown down|strong=\"H5307\"* many|strong=\"H7227\"* wounded|strong=\"H2491\"*." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H3381\"* house|strong=\"H1004\"* is|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 7:27 Sheol is the place of the dead. *" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Doesn’t wisdom|strong=\"H2451\"* cry|strong=\"H7121\"* out|strong=\"H5414\"*?" + }, + { + "verseNum": 2, + "text": "On|strong=\"H5921\"* the|strong=\"H5921\"* top|strong=\"H7218\"* of|strong=\"H1004\"* high|strong=\"H4791\"* places|strong=\"H1004\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 3, + "text": "Beside|strong=\"H3027\"* the|strong=\"H3027\"* gates|strong=\"H8179\"*, at|strong=\"H6607\"* the|strong=\"H3027\"* entry|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H3027\"* city|strong=\"H7176\"*," + }, + { + "verseNum": 4, + "text": "“I|strong=\"H1121\"* call|strong=\"H7121\"* to|strong=\"H1121\"* you|strong=\"H6963\"* men|strong=\"H1121\"*!" + }, + { + "verseNum": 5, + "text": "You|strong=\"H3820\"* simple|strong=\"H6612\"*, understand prudence|strong=\"H6195\"*!" + }, + { + "verseNum": 6, + "text": "Hear|strong=\"H8085\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8085\"* speak|strong=\"H1696\"* excellent things|strong=\"H4339\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* mouth|strong=\"H2441\"* speaks|strong=\"H1897\"* truth." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H6310\"* of|strong=\"H6310\"* my|strong=\"H3605\"* mouth|strong=\"H6310\"* are|strong=\"H6310\"* in|strong=\"H6310\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3605\"* are|strong=\"H3477\"* all|strong=\"H3605\"* plain|strong=\"H5228\"* to|strong=\"H4672\"* him|strong=\"H4672\"* who|strong=\"H3605\"* understands," + }, + { + "verseNum": 10, + "text": "Receive|strong=\"H3947\"* my|strong=\"H3947\"* instruction|strong=\"H4148\"* rather than silver|strong=\"H3701\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* rubies|strong=\"H6443\"*." + }, + { + "verseNum": 12, + "text": "“I|strong=\"H4672\"*, wisdom|strong=\"H2451\"*, have|strong=\"H4672\"* made prudence|strong=\"H6195\"* my|strong=\"H4672\"* dwelling|strong=\"H7931\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* to|strong=\"H3068\"* hate|strong=\"H8130\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Counsel|strong=\"H6098\"* and|strong=\"H6098\"* sound|strong=\"H8454\"* knowledge are|strong=\"H1369\"* mine." + }, + { + "verseNum": 15, + "text": "By|strong=\"H4428\"* me|strong=\"H4427\"* kings|strong=\"H4428\"* reign|strong=\"H4427\"*," + }, + { + "verseNum": 16, + "text": "By|strong=\"H3605\"* me|strong=\"H3605\"* princes|strong=\"H8269\"* rule|strong=\"H8323\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H4672\"* love those who|strong=\"H4672\"* love me|strong=\"H4672\"*." + }, + { + "verseNum": 18, + "text": "With me are riches|strong=\"H6239\"*, honor|strong=\"H3519\"*," + }, + { + "verseNum": 19, + "text": "My fruit|strong=\"H6529\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* gold|strong=\"H6337\"*, yes, than|strong=\"H2896\"* fine|strong=\"H6337\"* gold|strong=\"H6337\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H1980\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H8432\"* way|strong=\"H1980\"* of|strong=\"H8432\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 21, + "text": "that|strong=\"H3426\"* I may|strong=\"H3426\"* give|strong=\"H5157\"* wealth|strong=\"H3426\"* to|strong=\"H4390\"* those who|strong=\"H3426\"* love me." + }, + { + "verseNum": 22, + "text": "“Yahweh|strong=\"H3068\"* possessed|strong=\"H7069\"* me|strong=\"H7069\"* in|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H3068\"* his|strong=\"H3068\"* work," + }, + { + "verseNum": 23, + "text": "I was|strong=\"H7218\"* set|strong=\"H5258\"* up|strong=\"H5258\"* from|strong=\"H7218\"* everlasting|strong=\"H5769\"*, from|strong=\"H7218\"* the|strong=\"H7218\"* beginning|strong=\"H7218\"*," + }, + { + "verseNum": 24, + "text": "When there were|strong=\"H4325\"* no depths|strong=\"H8415\"*, I|strong=\"H3513\"* was|strong=\"H4325\"* born|strong=\"H2342\"*," + }, + { + "verseNum": 25, + "text": "Before|strong=\"H6440\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* were|strong=\"H2022\"* settled|strong=\"H2883\"* in|strong=\"H6440\"* place," + }, + { + "verseNum": 26, + "text": "while|strong=\"H5704\"* as|strong=\"H5704\"* yet|strong=\"H5704\"* he|strong=\"H5704\"* had|strong=\"H3808\"* not|strong=\"H3808\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H6083\"*, nor|strong=\"H3808\"* the|strong=\"H6213\"* fields|strong=\"H2351\"*," + }, + { + "verseNum": 27, + "text": "When|strong=\"H5921\"* he|strong=\"H8033\"* established|strong=\"H3559\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*, I|strong=\"H5921\"* was|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 28, + "text": "when he established the|strong=\"H5869\"* clouds|strong=\"H7834\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 29, + "text": "when|strong=\"H5674\"* he|strong=\"H3808\"* gave|strong=\"H7760\"* to|strong=\"H4325\"* the|strong=\"H7760\"* sea|strong=\"H3220\"* its|strong=\"H7760\"* boundary|strong=\"H2706\"*," + }, + { + "verseNum": 30, + "text": "then|strong=\"H1961\"* I|strong=\"H3117\"* was|strong=\"H1961\"* the|strong=\"H3605\"* craftsman by|strong=\"H3117\"* his|strong=\"H3605\"* side." + }, + { + "verseNum": 31, + "text": "rejoicing|strong=\"H7832\"* in|strong=\"H1121\"* his|strong=\"H1121\"* whole world|strong=\"H8398\"*." + }, + { + "verseNum": 32, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, my|strong=\"H8104\"* sons|strong=\"H1121\"*, listen|strong=\"H8085\"* to|strong=\"H8104\"* me|strong=\"H8104\"*," + }, + { + "verseNum": 33, + "text": "Hear|strong=\"H8085\"* instruction|strong=\"H4148\"*, and|strong=\"H8085\"* be wise|strong=\"H2449\"*." + }, + { + "verseNum": 34, + "text": "Blessed is|strong=\"H3117\"* the|strong=\"H5921\"* man who|strong=\"H8104\"* hears|strong=\"H8085\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 35, + "text": "For|strong=\"H3588\"* whoever finds|strong=\"H4672\"* me|strong=\"H4672\"* finds|strong=\"H4672\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 36, + "text": "But|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* sins|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H5315\"* wrongs his|strong=\"H3605\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Wisdom|strong=\"H2454\"* has|strong=\"H1004\"* built|strong=\"H1129\"* her|strong=\"H1129\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "She has prepared|strong=\"H6186\"* her|strong=\"H4537\"* meat." + }, + { + "verseNum": 3, + "text": "She|strong=\"H7121\"* has sent|strong=\"H7971\"* out|strong=\"H7971\"* her|strong=\"H7971\"* maidens|strong=\"H5291\"*." + }, + { + "verseNum": 4, + "text": "“Whoever|strong=\"H4310\"* is|strong=\"H3820\"* simple|strong=\"H6612\"*, let him turn|strong=\"H5493\"* in|strong=\"H5493\"* here|strong=\"H2008\"*!”" + }, + { + "verseNum": 5, + "text": "“Come|strong=\"H3212\"*, eat|strong=\"H3898\"* some of|strong=\"H3899\"* my|strong=\"H8354\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 6, + "text": "Leave|strong=\"H5800\"* your|strong=\"H5800\"* simple|strong=\"H6612\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 7, + "text": "One|strong=\"H7563\"* who|strong=\"H7563\"* corrects|strong=\"H3256\"* a|strong=\"H3068\"* mocker|strong=\"H3887\"* invites insult." + }, + { + "verseNum": 8, + "text": "Don’t reprove|strong=\"H3198\"* a|strong=\"H3068\"* scoffer, lest|strong=\"H6435\"* he hate|strong=\"H8130\"* you|strong=\"H6435\"*." + }, + { + "verseNum": 9, + "text": "Instruct|strong=\"H3045\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* person|strong=\"H3045\"*, and|strong=\"H3045\"* he|strong=\"H5414\"* will|strong=\"H6662\"* be|strong=\"H5750\"* still|strong=\"H5750\"* wiser|strong=\"H2449\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H8462\"* of|strong=\"H3068\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* by|strong=\"H8141\"* me|strong=\"H3254\"* your|strong=\"H3588\"* days|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* multiplied|strong=\"H7235\"*." + }, + { + "verseNum": 12, + "text": "If you|strong=\"H5375\"* are wise|strong=\"H2449\"*, you|strong=\"H5375\"* are wise|strong=\"H2449\"* for|strong=\"H5375\"* yourself|strong=\"H5375\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3045\"* foolish|strong=\"H3687\"* woman is|strong=\"H4100\"* loud|strong=\"H1993\"*," + }, + { + "verseNum": 14, + "text": "She|strong=\"H5921\"* sits|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* her|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 15, + "text": "to|strong=\"H1870\"* call|strong=\"H7121\"* to|strong=\"H1870\"* those who|strong=\"H7121\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*," + }, + { + "verseNum": 16, + "text": "“Whoever|strong=\"H4310\"* is|strong=\"H3820\"* simple|strong=\"H6612\"*, let him turn|strong=\"H5493\"* in|strong=\"H5493\"* here|strong=\"H2008\"*.”" + }, + { + "verseNum": 17, + "text": "“Stolen|strong=\"H1589\"* water|strong=\"H4325\"* is|strong=\"H4325\"* sweet|strong=\"H4985\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* are|strong=\"H3045\"* there|strong=\"H8033\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8010\"* proverbs|strong=\"H4912\"* of|strong=\"H1121\"* Solomon|strong=\"H8010\"*." + }, + { + "verseNum": 2, + "text": "Treasures of|strong=\"H4194\"* wickedness|strong=\"H7562\"* profit|strong=\"H3276\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* allow the|strong=\"H3068\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"* to|strong=\"H3068\"* go|strong=\"H3068\"* hungry|strong=\"H7456\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H6213\"* becomes|strong=\"H3027\"* poor|strong=\"H7326\"* who|strong=\"H6213\"* works|strong=\"H6213\"* with|strong=\"H6213\"* a|strong=\"H3068\"* lazy|strong=\"H7423\"* hand|strong=\"H3027\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* gathers in|strong=\"H1121\"* summer|strong=\"H7019\"* is|strong=\"H1121\"* a|strong=\"H3068\"* wise|strong=\"H7919\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 6, + "text": "Blessings|strong=\"H1293\"* are|strong=\"H7563\"* on|strong=\"H7218\"* the|strong=\"H3680\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H3680\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H8034\"* memory|strong=\"H2143\"* of|strong=\"H8034\"* the|strong=\"H8034\"* righteous|strong=\"H6662\"* is|strong=\"H8034\"* blessed|strong=\"H1293\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3947\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* heart|strong=\"H3820\"* accept|strong=\"H3947\"* commandments|strong=\"H4687\"*," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1980\"* who|strong=\"H3045\"* walks|strong=\"H1980\"* blamelessly walks|strong=\"H1980\"* surely|strong=\"H1980\"*," + }, + { + "verseNum": 10, + "text": "One who winks|strong=\"H7169\"* with|strong=\"H5869\"* the|strong=\"H5414\"* eye|strong=\"H5869\"* causes|strong=\"H5414\"* sorrow|strong=\"H6094\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3680\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3680\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* a|strong=\"H3068\"* spring|strong=\"H4726\"* of|strong=\"H6310\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 12, + "text": "Hatred|strong=\"H8135\"* stirs|strong=\"H5782\"* up|strong=\"H5782\"* strife|strong=\"H4090\"*," + }, + { + "verseNum": 13, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H3820\"* found|strong=\"H4672\"* on|strong=\"H4672\"* the|strong=\"H4672\"* lips|strong=\"H8193\"* of|strong=\"H7626\"* him|strong=\"H4672\"* who|strong=\"H2638\"* has|strong=\"H3820\"* discernment|strong=\"H3820\"*," + }, + { + "verseNum": 14, + "text": "Wise|strong=\"H2450\"* men|strong=\"H2450\"* lay up|strong=\"H6845\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5797\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*’s wealth|strong=\"H1952\"* is|strong=\"H1800\"* his|strong=\"H5797\"* strong|strong=\"H5797\"* city|strong=\"H7151\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7563\"* labor|strong=\"H6468\"* of|strong=\"H2403\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"* leads|strong=\"H2416\"* to|strong=\"H6662\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2416\"* is|strong=\"H8433\"* in|strong=\"H5800\"* the|strong=\"H8104\"* way|strong=\"H8582\"* of|strong=\"H2416\"* life|strong=\"H2416\"* who|strong=\"H8104\"* heeds|strong=\"H8104\"* correction|strong=\"H4148\"*," + }, + { + "verseNum": 18, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* hides hatred|strong=\"H8135\"* has|strong=\"H3318\"* lying|strong=\"H8267\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 19, + "text": "In|strong=\"H1697\"* the|strong=\"H1697\"* multitude|strong=\"H7230\"* of|strong=\"H1697\"* words|strong=\"H1697\"* there|strong=\"H1697\"* is|strong=\"H1697\"* no|strong=\"H3808\"* lack of|strong=\"H1697\"* disobedience," + }, + { + "verseNum": 20, + "text": "The|strong=\"H3820\"* tongue|strong=\"H3956\"* of|strong=\"H3820\"* the|strong=\"H3820\"* righteous|strong=\"H6662\"* is|strong=\"H3820\"* like|strong=\"H3820\"* choice silver|strong=\"H3701\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H4191\"* lips|strong=\"H8193\"* of|strong=\"H3820\"* the|strong=\"H4191\"* righteous|strong=\"H6662\"* feed|strong=\"H7462\"* many|strong=\"H7227\"*," + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"*’s blessing|strong=\"H1293\"* brings wealth|strong=\"H3808\"*," + }, + { + "verseNum": 23, + "text": "It|strong=\"H6213\"* is|strong=\"H2451\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*’s pleasure to|strong=\"H6213\"* do|strong=\"H6213\"* wickedness|strong=\"H2154\"*," + }, + { + "verseNum": 24, + "text": "What|strong=\"H4034\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"* fear|strong=\"H4034\"* will|strong=\"H6662\"* overtake them|strong=\"H5414\"*," + }, + { + "verseNum": 25, + "text": "When|strong=\"H5674\"* the|strong=\"H5674\"* whirlwind|strong=\"H5492\"* passes|strong=\"H5674\"*, the|strong=\"H5674\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* no|strong=\"H7563\"* more|strong=\"H5769\"*;" + }, + { + "verseNum": 26, + "text": "As|strong=\"H3651\"* vinegar|strong=\"H2558\"* to|strong=\"H7971\"* the|strong=\"H7971\"* teeth|strong=\"H8127\"*, and|strong=\"H7971\"* as|strong=\"H3651\"* smoke|strong=\"H6227\"* to|strong=\"H7971\"* the|strong=\"H7971\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* prolongs|strong=\"H3254\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 28, + "text": "The|strong=\"H7563\"* prospect of|strong=\"H8057\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H3068\"* the|strong=\"H3068\"* upright|strong=\"H8537\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3808\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* never|strong=\"H3808\"* be|strong=\"H3808\"* removed|strong=\"H4131\"*," + }, + { + "verseNum": 31, + "text": "The|strong=\"H3772\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3772\"* righteous|strong=\"H6662\"* produces wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 32, + "text": "The|strong=\"H3045\"* lips|strong=\"H8193\"* of|strong=\"H6310\"* the|strong=\"H3045\"* righteous|strong=\"H6662\"* know|strong=\"H3045\"* what|strong=\"H3045\"* is|strong=\"H7563\"* acceptable|strong=\"H7522\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* false|strong=\"H4820\"* balance|strong=\"H3976\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "When pride|strong=\"H2087\"* comes|strong=\"H7036\"*, then comes|strong=\"H7036\"* shame|strong=\"H7036\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5148\"* integrity|strong=\"H8538\"* of|strong=\"H7703\"* the|strong=\"H5148\"* upright|strong=\"H3477\"* shall|strong=\"H3477\"* guide|strong=\"H5148\"* them|strong=\"H5148\"*," + }, + { + "verseNum": 4, + "text": "Riches|strong=\"H1952\"* don’t profit|strong=\"H3276\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* wrath|strong=\"H5678\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H1870\"* righteousness|strong=\"H6666\"* of|strong=\"H1870\"* the|strong=\"H1870\"* blameless|strong=\"H8549\"* will|strong=\"H7563\"* direct|strong=\"H3474\"* his|strong=\"H3474\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3920\"* righteousness|strong=\"H6666\"* of|strong=\"H3477\"* the|strong=\"H3920\"* upright|strong=\"H3477\"* shall|strong=\"H3477\"* deliver|strong=\"H5337\"* them|strong=\"H5337\"*," + }, + { + "verseNum": 7, + "text": "When a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* dies|strong=\"H4194\"*, hope|strong=\"H8615\"* perishes," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* person is|strong=\"H7563\"* delivered|strong=\"H2502\"* out|strong=\"H2502\"* of|strong=\"H8478\"* trouble|strong=\"H6869\"*," + }, + { + "verseNum": 9, + "text": "With|strong=\"H6310\"* his|strong=\"H7843\"* mouth|strong=\"H6310\"* the|strong=\"H7843\"* godless|strong=\"H2611\"* man|strong=\"H6662\"* destroys|strong=\"H7843\"* his|strong=\"H7843\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 10, + "text": "When it goes well|strong=\"H2898\"* with|strong=\"H6662\"* the|strong=\"H7563\"* righteous|strong=\"H6662\"*, the|strong=\"H7563\"* city|strong=\"H7151\"* rejoices|strong=\"H5970\"*." + }, + { + "verseNum": 11, + "text": "By|strong=\"H7563\"* the|strong=\"H7311\"* blessing|strong=\"H1293\"* of|strong=\"H6310\"* the|strong=\"H7311\"* upright|strong=\"H3477\"*, the|strong=\"H7311\"* city|strong=\"H7176\"* is|strong=\"H7563\"* exalted|strong=\"H7311\"*," + }, + { + "verseNum": 12, + "text": "One|strong=\"H7453\"* who|strong=\"H2638\"* despises his|strong=\"H7453\"* neighbor|strong=\"H7453\"* is|strong=\"H3820\"* void|strong=\"H2638\"* of|strong=\"H3820\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 13, + "text": "One|strong=\"H1697\"* who|strong=\"H1980\"* brings gossip betrays a|strong=\"H3068\"* confidence," + }, + { + "verseNum": 14, + "text": "Where there|strong=\"H7230\"* is|strong=\"H5971\"* no wise|strong=\"H8458\"* guidance|strong=\"H8458\"*, the|strong=\"H5307\"* nation|strong=\"H5971\"* falls|strong=\"H5307\"*," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3588\"* who|strong=\"H2114\"* is|strong=\"H7451\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"* will|strong=\"H2114\"* suffer|strong=\"H7489\"* for|strong=\"H3588\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* gracious|strong=\"H2580\"* woman obtains honor|strong=\"H3519\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H1580\"* merciful|strong=\"H2617\"* man|strong=\"H5315\"* does|strong=\"H1580\"* good|strong=\"H1580\"* to|strong=\"H5315\"* his own|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 18, + "text": "Wicked|strong=\"H7563\"* people|strong=\"H7563\"* earn deceitful|strong=\"H8267\"* wages|strong=\"H6468\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3651\"* who|strong=\"H2416\"* is|strong=\"H3651\"* truly righteous|strong=\"H6666\"* gets life|strong=\"H2416\"*." + }, + { + "verseNum": 20, + "text": "Those who|strong=\"H3068\"* are|strong=\"H3068\"* perverse|strong=\"H6141\"* in|strong=\"H3068\"* heart|strong=\"H3820\"* are|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "Most certainly|strong=\"H3808\"*, the|strong=\"H3027\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* will|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*," + }, + { + "verseNum": 22, + "text": "Like a|strong=\"H3068\"* gold|strong=\"H2091\"* ring|strong=\"H5141\"* in|strong=\"H5493\"* a|strong=\"H3068\"* pig|strong=\"H2386\"*’s snout," + }, + { + "verseNum": 23, + "text": "The|strong=\"H2896\"* desire|strong=\"H8378\"* of|strong=\"H2896\"* the|strong=\"H2896\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* only good|strong=\"H2896\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one who|strong=\"H3426\"* scatters|strong=\"H6340\"*, and|strong=\"H3254\"* increases|strong=\"H3254\"* yet|strong=\"H5750\"* more|strong=\"H3254\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H1571\"* liberal|strong=\"H1293\"* soul|strong=\"H5315\"* shall|strong=\"H5315\"* be|strong=\"H5315\"* made|strong=\"H1878\"* fat|strong=\"H1878\"*." + }, + { + "verseNum": 26, + "text": "People|strong=\"H3816\"* curse|strong=\"H5344\"* someone who withholds|strong=\"H4513\"* grain|strong=\"H1250\"*," + }, + { + "verseNum": 27, + "text": "He who|strong=\"H2896\"* diligently|strong=\"H7836\"* seeks|strong=\"H1245\"* good|strong=\"H2896\"* seeks|strong=\"H1245\"* favor|strong=\"H7522\"*," + }, + { + "verseNum": 28, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* trusts in|strong=\"H5307\"* his|strong=\"H1931\"* riches|strong=\"H6239\"* will|strong=\"H6662\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H1004\"* who|strong=\"H5650\"* troubles|strong=\"H5916\"* his|strong=\"H5157\"* own|strong=\"H5157\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* inherit|strong=\"H5157\"* the|strong=\"H5650\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H6086\"* the|strong=\"H3947\"* righteous|strong=\"H6662\"* is|strong=\"H5315\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H6086\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H3588\"* righteous|strong=\"H6662\"* shall|strong=\"H7563\"* be|strong=\"H7563\"* repaid|strong=\"H7999\"* in|strong=\"H6662\"* the|strong=\"H3588\"* earth," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Whoever loves correction|strong=\"H4148\"* loves knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* man|strong=\"H2896\"* shall|strong=\"H3068\"* obtain|strong=\"H6329\"* favor|strong=\"H7522\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* man|strong=\"H6662\"* shall|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"* by|strong=\"H3559\"* wickedness|strong=\"H7562\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* worthy|strong=\"H2428\"* woman is|strong=\"H1167\"* the crown|strong=\"H5850\"* of|strong=\"H1167\"* her husband|strong=\"H1167\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H4941\"* thoughts|strong=\"H4284\"* of|strong=\"H4941\"* the|strong=\"H4941\"* righteous|strong=\"H6662\"* are|strong=\"H7563\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H1697\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* about|strong=\"H1697\"* lying|strong=\"H1697\"* in|strong=\"H3477\"* wait for|strong=\"H1697\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5975\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* overthrown|strong=\"H2015\"*, and|strong=\"H1004\"* are|strong=\"H7563\"* no|strong=\"H5975\"* more|strong=\"H7563\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* man|strong=\"H3820\"* shall|strong=\"H3820\"* be|strong=\"H1961\"* commended|strong=\"H1984\"* according|strong=\"H6310\"* to|strong=\"H1961\"* his|strong=\"H1961\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 9, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* he who|strong=\"H5650\"* is|strong=\"H2896\"* little known, and|strong=\"H3899\"* has|strong=\"H5650\"* a|strong=\"H3068\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* respects the|strong=\"H3045\"* life|strong=\"H5315\"* of|strong=\"H5315\"* his|strong=\"H3045\"* animal," + }, + { + "verseNum": 11, + "text": "He|strong=\"H3820\"* who|strong=\"H2638\"* tills|strong=\"H5647\"* his|strong=\"H5647\"* land shall|strong=\"H3820\"* have|strong=\"H7646\"* plenty|strong=\"H7646\"* of|strong=\"H3820\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5414\"* wicked|strong=\"H7563\"* desires|strong=\"H2530\"* the|strong=\"H5414\"* plunder of|strong=\"H7451\"* evil|strong=\"H7451\"* men|strong=\"H7563\"*," + }, + { + "verseNum": 13, + "text": "An|strong=\"H3318\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* is|strong=\"H6662\"* trapped by|strong=\"H3318\"* sinfulness of|strong=\"H3318\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* man|strong=\"H2896\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* satisfied|strong=\"H7646\"* with|strong=\"H7646\"* good|strong=\"H2896\"* by|strong=\"H3027\"* the|strong=\"H7725\"* fruit|strong=\"H6529\"* of|strong=\"H3027\"* his|strong=\"H7725\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H1870\"* a|strong=\"H3068\"* fool is|strong=\"H1870\"* right|strong=\"H3477\"* in|strong=\"H8085\"* his|strong=\"H8085\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* fool shows his|strong=\"H3045\"* annoyance|strong=\"H7036\"* the|strong=\"H3117\"* same day|strong=\"H3117\"*," + }, + { + "verseNum": 17, + "text": "He who|strong=\"H6664\"* is|strong=\"H6664\"* truthful testifies honestly|strong=\"H6664\"*," + }, + { + "verseNum": 18, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one|strong=\"H3956\"* who|strong=\"H2450\"* speaks|strong=\"H3426\"* rashly like the|strong=\"H3426\"* piercing of|strong=\"H2719\"* a|strong=\"H3068\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 19, + "text": "Truth’s lips|strong=\"H8193\"* will|strong=\"H5704\"* be|strong=\"H8193\"* established|strong=\"H3559\"* forever|strong=\"H5704\"*," + }, + { + "verseNum": 20, + "text": "Deceit|strong=\"H4820\"* is|strong=\"H3820\"* in|strong=\"H8057\"* the|strong=\"H7965\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* those who|strong=\"H7965\"* plot|strong=\"H2790\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 21, + "text": "No|strong=\"H3808\"* mischief|strong=\"H7451\"* shall|strong=\"H7563\"* happen to|strong=\"H3808\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 22, + "text": "Lying|strong=\"H8267\"* lips|strong=\"H8193\"* are|strong=\"H3068\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* keeps his|strong=\"H7121\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* diligent|strong=\"H2742\"* ones shall|strong=\"H3027\"* rule|strong=\"H4910\"*," + }, + { + "verseNum": 25, + "text": "Anxiety|strong=\"H1674\"* in|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2896\"*’s heart|strong=\"H3820\"* weighs|strong=\"H7812\"* it|strong=\"H2896\"* down|strong=\"H7812\"*," + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* person is|strong=\"H1870\"* cautious in|strong=\"H1870\"* friendship," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3808\"* slothful|strong=\"H7423\"* man|strong=\"H7423\"* doesn’t roast|strong=\"H2760\"* his|strong=\"H3808\"* game|strong=\"H6718\"*," + }, + { + "verseNum": 28, + "text": "In|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* righteousness|strong=\"H6666\"* is|strong=\"H1870\"* life|strong=\"H2416\"*;" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H1121\"* listens|strong=\"H8085\"* to|strong=\"H8085\"* his|strong=\"H8085\"* father|strong=\"H1121\"*’s instruction|strong=\"H4148\"*," + }, + { + "verseNum": 2, + "text": "By the|strong=\"H2896\"* fruit|strong=\"H6529\"* of|strong=\"H6310\"* his|strong=\"H6310\"* lips|strong=\"H6310\"*, a|strong=\"H3068\"* man|strong=\"H5315\"* enjoys good|strong=\"H2896\"* things|strong=\"H2896\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1878\"* soul|strong=\"H5315\"* of|strong=\"H5315\"* the|strong=\"H1878\"* sluggard|strong=\"H6102\"* desires, and|strong=\"H5315\"* has|strong=\"H5315\"* nothing," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* hates|strong=\"H8130\"* lies|strong=\"H8267\"*," + }, + { + "verseNum": 6, + "text": "Righteousness|strong=\"H6666\"* guards|strong=\"H5341\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* integrity|strong=\"H8537\"*," + }, + { + "verseNum": 7, + "text": "There|strong=\"H3426\"* are|strong=\"H3426\"* some|strong=\"H7227\"* who|strong=\"H3605\"* pretend to|strong=\"H7227\"* be|strong=\"H3426\"* rich|strong=\"H6238\"*, yet|strong=\"H3605\"* have|strong=\"H3426\"* nothing|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8085\"* ransom|strong=\"H3724\"* of|strong=\"H5315\"* a|strong=\"H3068\"* man|strong=\"H5315\"*’s life|strong=\"H5315\"* is|strong=\"H5315\"* his|strong=\"H8085\"* riches|strong=\"H6239\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H8055\"* light|strong=\"H5216\"* of|strong=\"H5216\"* the|strong=\"H8055\"* righteous|strong=\"H6662\"* shines brightly," + }, + { + "verseNum": 10, + "text": "Pride|strong=\"H2087\"* only|strong=\"H7535\"* breeds quarrels," + }, + { + "verseNum": 11, + "text": "Wealth|strong=\"H1952\"* gained dishonestly dwindles|strong=\"H4591\"* away," + }, + { + "verseNum": 12, + "text": "Hope|strong=\"H8431\"* deferred|strong=\"H4900\"* makes|strong=\"H2470\"* the|strong=\"H2470\"* heart|strong=\"H3820\"* sick|strong=\"H2470\"*," + }, + { + "verseNum": 13, + "text": "Whoever despises instruction|strong=\"H1697\"* will|strong=\"H1697\"* pay|strong=\"H7999\"* for|strong=\"H1697\"* it|strong=\"H1931\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5493\"* teaching|strong=\"H8451\"* of|strong=\"H8451\"* the|strong=\"H5493\"* wise|strong=\"H2450\"* is|strong=\"H8451\"* a|strong=\"H3068\"* spring|strong=\"H4726\"* of|strong=\"H8451\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 15, + "text": "Good|strong=\"H2896\"* understanding|strong=\"H7922\"* wins|strong=\"H5414\"* favor|strong=\"H2580\"*," + }, + { + "verseNum": 16, + "text": "Every|strong=\"H3605\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* acts|strong=\"H6213\"* from|strong=\"H3605\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* messenger|strong=\"H4397\"* falls|strong=\"H5307\"* into|strong=\"H5307\"* trouble|strong=\"H7451\"*," + }, + { + "verseNum": 18, + "text": "Poverty|strong=\"H7389\"* and|strong=\"H8104\"* shame|strong=\"H7036\"* come to|strong=\"H8104\"* him|strong=\"H4148\"* who|strong=\"H8104\"* refuses discipline|strong=\"H4148\"*," + }, + { + "verseNum": 19, + "text": "Longing fulfilled|strong=\"H1961\"* is|strong=\"H5315\"* sweet|strong=\"H6149\"* to|strong=\"H1961\"* the|strong=\"H5493\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 20, + "text": "One who|strong=\"H7462\"* walks|strong=\"H1980\"* with|strong=\"H1980\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* grows wise|strong=\"H2450\"*," + }, + { + "verseNum": 21, + "text": "Misfortune|strong=\"H7451\"* pursues|strong=\"H7291\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* man|strong=\"H6662\"* leaves|strong=\"H5157\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H1121\"* his|strong=\"H5157\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*," + }, + { + "verseNum": 23, + "text": "An|strong=\"H3426\"* abundance|strong=\"H7230\"* of|strong=\"H7230\"* food is|strong=\"H3426\"* in|strong=\"H3808\"* poor|strong=\"H7326\"* people|strong=\"H3808\"*’s fields," + }, + { + "verseNum": 24, + "text": "One|strong=\"H1121\"* who|strong=\"H1121\"* spares the|strong=\"H1121\"* rod|strong=\"H7626\"* hates|strong=\"H8130\"* his|strong=\"H2820\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7563\"* righteous|strong=\"H6662\"* one|strong=\"H6662\"* eats to|strong=\"H5315\"* the|strong=\"H7563\"* satisfying|strong=\"H7648\"* of|strong=\"H5315\"* his|strong=\"H7648\"* soul|strong=\"H5315\"*," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Every wise|strong=\"H2454\"* woman|strong=\"H1004\"* builds|strong=\"H1129\"* her|strong=\"H1129\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H3068\"* uprightness|strong=\"H3476\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H8104\"* fool’s talk|strong=\"H8193\"* brings a|strong=\"H3068\"* rod|strong=\"H2415\"* to|strong=\"H8104\"* his|strong=\"H8104\"* back|strong=\"H1346\"*," + }, + { + "verseNum": 4, + "text": "Where no oxen|strong=\"H7794\"* are|strong=\"H1249\"*, the|strong=\"H3581\"* crib is|strong=\"H3581\"* clean|strong=\"H1249\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* truthful witness|strong=\"H5707\"* will|strong=\"H3808\"* not|strong=\"H3808\"* lie|strong=\"H8267\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* scoffer seeks|strong=\"H1245\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* doesn’t find|strong=\"H1245\"* it|strong=\"H7043\"*," + }, + { + "verseNum": 7, + "text": "Stay away|strong=\"H3212\"* from|strong=\"H3212\"* a|strong=\"H3068\"* foolish|strong=\"H3684\"* man|strong=\"H3045\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1870\"* wisdom|strong=\"H2451\"* of|strong=\"H1870\"* the|strong=\"H1870\"* prudent|strong=\"H6175\"* is|strong=\"H1870\"* to|strong=\"H1870\"* think about|strong=\"H1870\"* his way|strong=\"H1870\"*," + }, + { + "verseNum": 9, + "text": "Fools mock|strong=\"H3887\"* at|strong=\"H3887\"* making atonement for sins," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3045\"* heart|strong=\"H3820\"* knows|strong=\"H3045\"* its|strong=\"H3045\"* own|strong=\"H5315\"* bitterness|strong=\"H4787\"* and|strong=\"H3045\"* joy|strong=\"H8057\"*;" + }, + { + "verseNum": 11, + "text": "The|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* be|strong=\"H7563\"* overthrown|strong=\"H8045\"*," + }, + { + "verseNum": 12, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3426\"* seems right|strong=\"H3477\"* to|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "Even|strong=\"H1571\"* in|strong=\"H1571\"* laughter|strong=\"H7814\"* the|strong=\"H1571\"* heart|strong=\"H3820\"* may|strong=\"H3820\"* be|strong=\"H3820\"* sorrowful|strong=\"H3510\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* unfaithful will|strong=\"H3820\"* be|strong=\"H3820\"* repaid for|strong=\"H5921\"* his|strong=\"H5921\"* own ways|strong=\"H1870\"*;" + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* simple|strong=\"H6612\"* man|strong=\"H6175\"* believes everything|strong=\"H3605\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* fears|strong=\"H3373\"* and|strong=\"H2450\"* shuns evil|strong=\"H7451\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* who|strong=\"H6213\"* is|strong=\"H4209\"* quick to|strong=\"H6213\"* become|strong=\"H6213\"* angry will|strong=\"H6213\"* commit|strong=\"H6213\"* folly," + }, + { + "verseNum": 18, + "text": "The|strong=\"H5157\"* simple|strong=\"H6612\"* inherit|strong=\"H5157\"* folly|strong=\"H6612\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H6440\"* evil|strong=\"H7451\"* bow|strong=\"H7817\"* down|strong=\"H7817\"* before|strong=\"H6440\"* the|strong=\"H6440\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H1571\"* poor|strong=\"H7326\"* person|strong=\"H7227\"* is|strong=\"H1571\"* shunned even|strong=\"H1571\"* by|strong=\"H1571\"* his|strong=\"H8130\"* own neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H2398\"* who|strong=\"H6041\"* despises his|strong=\"H2603\"* neighbor|strong=\"H7453\"* sins|strong=\"H2398\"*," + }, + { + "verseNum": 22, + "text": "Don’t they|strong=\"H3808\"* go|strong=\"H8582\"* astray|strong=\"H8582\"* who|strong=\"H2896\"* plot|strong=\"H2790\"* evil|strong=\"H7451\"*?" + }, + { + "verseNum": 23, + "text": "In|strong=\"H1697\"* all|strong=\"H3605\"* hard work|strong=\"H1697\"* there|strong=\"H1961\"* is|strong=\"H1697\"* profit|strong=\"H4195\"*," + }, + { + "verseNum": 24, + "text": "The crown|strong=\"H5850\"* of|strong=\"H5850\"* the wise|strong=\"H2450\"* is|strong=\"H3684\"* their riches|strong=\"H6239\"*," + }, + { + "verseNum": 25, + "text": "A|strong=\"H3068\"* truthful witness|strong=\"H5707\"* saves|strong=\"H5337\"* souls|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* secure|strong=\"H4009\"* fortress," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* of|strong=\"H3068\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 28, + "text": "In|strong=\"H4428\"* the|strong=\"H5971\"* multitude|strong=\"H7230\"* of|strong=\"H4428\"* people|strong=\"H5971\"* is|strong=\"H4428\"* the|strong=\"H5971\"* king|strong=\"H4428\"*’s glory|strong=\"H1927\"*," + }, + { + "verseNum": 29, + "text": "He|strong=\"H8394\"* who|strong=\"H7227\"* is|strong=\"H7307\"* slow to|strong=\"H7307\"* anger|strong=\"H7307\"* has|strong=\"H7307\"* great|strong=\"H7227\"* understanding|strong=\"H8394\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3820\"* life|strong=\"H2416\"* of|strong=\"H3820\"* the|strong=\"H3820\"* body|strong=\"H1320\"* is|strong=\"H3820\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* at peace," + }, + { + "verseNum": 31, + "text": "He|strong=\"H6213\"* who|strong=\"H6213\"* oppresses|strong=\"H6231\"* the|strong=\"H6213\"* poor|strong=\"H1800\"* shows|strong=\"H6213\"* contempt for|strong=\"H6213\"* his|strong=\"H6213\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 32, + "text": "The|strong=\"H4194\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* brought down|strong=\"H1760\"* in|strong=\"H6662\"* his calamity|strong=\"H7451\"*," + }, + { + "verseNum": 33, + "text": "Wisdom|strong=\"H2451\"* rests|strong=\"H5117\"* in|strong=\"H7130\"* the|strong=\"H3045\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* one who|strong=\"H3045\"* has|strong=\"H3820\"* understanding|strong=\"H3820\"*," + }, + { + "verseNum": 34, + "text": "Righteousness|strong=\"H6666\"* exalts|strong=\"H7311\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 35, + "text": "The|strong=\"H1961\"* king|strong=\"H4428\"*’s favor|strong=\"H7522\"* is|strong=\"H4428\"* toward a|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H5650\"* deals wisely|strong=\"H7919\"*," + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* gentle|strong=\"H7390\"* answer|strong=\"H7725\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* wrath|strong=\"H2534\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3190\"* tongue|strong=\"H3956\"* of|strong=\"H6310\"* the|strong=\"H3190\"* wise|strong=\"H2450\"* commends knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* everywhere|strong=\"H3605\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* gentle tongue|strong=\"H3956\"* is|strong=\"H7307\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* of|strong=\"H7307\"* life|strong=\"H2416\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* fool despises his|strong=\"H8104\"* father’s correction|strong=\"H4148\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* righteous|strong=\"H6662\"* is|strong=\"H7563\"* much|strong=\"H7227\"* treasure|strong=\"H2633\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3651\"* lips|strong=\"H8193\"* of|strong=\"H3820\"* the|strong=\"H3651\"* wise|strong=\"H2450\"* spread|strong=\"H2219\"* knowledge|strong=\"H1847\"*;" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* sacrifice|strong=\"H2077\"* made|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "There|strong=\"H5800\"* is|strong=\"H7451\"* stern discipline|strong=\"H4148\"* for|strong=\"H4191\"* one who|strong=\"H8130\"* forsakes|strong=\"H5800\"* the|strong=\"H5800\"* way." + }, + { + "verseNum": 11, + "text": "Sheol|strong=\"H7585\"*+ 15:11 Sheol is the place of the dead.* and|strong=\"H1121\"* Abaddon are|strong=\"H1121\"* before|strong=\"H5048\"* Yahweh|strong=\"H3068\"*—" + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* scoffer doesn’t love to|strong=\"H3212\"* be|strong=\"H3808\"* reproved|strong=\"H3198\"*;" + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* glad|strong=\"H8056\"* heart|strong=\"H3820\"* makes|strong=\"H3190\"* a|strong=\"H3068\"* cheerful|strong=\"H3190\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H6440\"* one who|strong=\"H7462\"* has|strong=\"H3820\"* understanding|strong=\"H3820\"* seeks|strong=\"H1245\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* afflicted|strong=\"H6041\"* are|strong=\"H3117\"* wretched|strong=\"H7451\"*," + }, + { + "verseNum": 16, + "text": "Better|strong=\"H2896\"* is|strong=\"H3068\"* little|strong=\"H4592\"*, with|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* dinner of|strong=\"H2896\"* herbs|strong=\"H3419\"*, where|strong=\"H8033\"* love is|strong=\"H2896\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* wrathful|strong=\"H2534\"* man stirs|strong=\"H1624\"* up|strong=\"H1624\"* contention|strong=\"H4066\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* sluggard|strong=\"H6102\"* is|strong=\"H1870\"* like|strong=\"H1870\"* a|strong=\"H3068\"* thorn patch," + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* son|strong=\"H1121\"* makes|strong=\"H8055\"* a|strong=\"H3068\"* father|strong=\"H1121\"* glad|strong=\"H8055\"*," + }, + { + "verseNum": 21, + "text": "Folly is|strong=\"H3820\"* joy|strong=\"H8057\"* to|strong=\"H3212\"* one who|strong=\"H2638\"* is|strong=\"H3820\"* void|strong=\"H2638\"* of|strong=\"H3820\"* wisdom|strong=\"H3820\"*," + }, + { + "verseNum": 22, + "text": "Where there|strong=\"H7230\"* is|strong=\"H7230\"* no|strong=\"H6965\"* counsel|strong=\"H3289\"*, plans|strong=\"H4284\"* fail|strong=\"H6565\"*;" + }, + { + "verseNum": 23, + "text": "Joy|strong=\"H8057\"* comes to|strong=\"H6256\"* a|strong=\"H3068\"* man|strong=\"H2896\"* with|strong=\"H1697\"* the|strong=\"H1697\"* reply|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5493\"* path of|strong=\"H4616\"* life|strong=\"H2416\"* leads|strong=\"H2416\"* upward|strong=\"H4605\"* for|strong=\"H4616\"* the|strong=\"H5493\"* wise|strong=\"H7919\"*," + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* uproot the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* proud|strong=\"H1343\"*," + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* detests the|strong=\"H3068\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7451\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H1004\"* who|strong=\"H8130\"* is|strong=\"H1004\"* greedy|strong=\"H1214\"* for|strong=\"H1004\"* gain|strong=\"H1215\"* troubles|strong=\"H5916\"* his|strong=\"H8130\"* own house|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "The|strong=\"H6030\"* heart|strong=\"H3820\"* of|strong=\"H6310\"* the|strong=\"H6030\"* righteous|strong=\"H6662\"* weighs answers|strong=\"H6030\"*," + }, + { + "verseNum": 29, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* far|strong=\"H7350\"* from|strong=\"H8085\"* the|strong=\"H8085\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H5869\"* light|strong=\"H3974\"* of|strong=\"H5869\"* the|strong=\"H5869\"* eyes|strong=\"H5869\"* rejoices|strong=\"H8055\"* the|strong=\"H5869\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H8085\"* ear|strong=\"H8085\"* that|strong=\"H8085\"* listens|strong=\"H8085\"* to|strong=\"H8085\"* reproof|strong=\"H8433\"* lives|strong=\"H2416\"*," + }, + { + "verseNum": 32, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* refuses correction|strong=\"H4148\"* despises|strong=\"H3988\"* his|strong=\"H8085\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* teaches wisdom|strong=\"H2451\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* plans|strong=\"H4633\"* of|strong=\"H3068\"* the|strong=\"H3068\"* heart|strong=\"H3820\"* belong to|strong=\"H3068\"* man|strong=\"H3820\"*," + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3605\"* are|strong=\"H5869\"* clean|strong=\"H2134\"* in|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "Commit|strong=\"H1556\"* your|strong=\"H3068\"* deeds|strong=\"H4639\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6466\"* everything|strong=\"H3605\"* for|strong=\"H3068\"* its|strong=\"H3605\"* own end—" + }, + { + "verseNum": 5, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* proud|strong=\"H1362\"* in|strong=\"H3068\"* heart|strong=\"H3820\"* is|strong=\"H3068\"* an|strong=\"H3068\"* abomination|strong=\"H8441\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 6, + "text": "By|strong=\"H3068\"* mercy|strong=\"H2617\"* and|strong=\"H3068\"* truth iniquity|strong=\"H5771\"* is|strong=\"H3068\"* atoned|strong=\"H3722\"* for|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H3068\"* a|strong=\"H3068\"* man’s ways|strong=\"H1870\"* please|strong=\"H7521\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* little|strong=\"H4592\"* with|strong=\"H4941\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* man|strong=\"H3820\"*’s heart|strong=\"H3820\"* plans|strong=\"H2803\"* his|strong=\"H3068\"* course|strong=\"H1870\"*," + }, + { + "verseNum": 10, + "text": "Inspired judgments|strong=\"H4941\"* are|strong=\"H8193\"* on|strong=\"H5921\"* the|strong=\"H5921\"* lips|strong=\"H8193\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 11, + "text": "Honest|strong=\"H4941\"* balances|strong=\"H3976\"* and|strong=\"H3068\"* scales|strong=\"H3976\"* are|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s;" + }, + { + "verseNum": 12, + "text": "It|strong=\"H3588\"* is|strong=\"H4428\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* for|strong=\"H3588\"* kings|strong=\"H4428\"* to|strong=\"H6213\"* do|strong=\"H6213\"* wrong," + }, + { + "verseNum": 13, + "text": "Righteous|strong=\"H6664\"* lips|strong=\"H8193\"* are|strong=\"H8193\"* the|strong=\"H1696\"* delight|strong=\"H7522\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H4194\"* king|strong=\"H4428\"*’s wrath|strong=\"H2534\"* is|strong=\"H4428\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* of|strong=\"H4428\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 15, + "text": "In|strong=\"H4428\"* the|strong=\"H6440\"* light of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"* is|strong=\"H4428\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 16, + "text": "How|strong=\"H4100\"* much|strong=\"H4100\"* better|strong=\"H2896\"* it|strong=\"H2896\"* is|strong=\"H4100\"* to|strong=\"H2896\"* get|strong=\"H7069\"* wisdom|strong=\"H2451\"* than|strong=\"H2896\"* gold|strong=\"H2742\"*!" + }, + { + "verseNum": 17, + "text": "The|strong=\"H8104\"* highway|strong=\"H4546\"* of|strong=\"H1870\"* the|strong=\"H8104\"* upright|strong=\"H3477\"* is|strong=\"H5315\"* to|strong=\"H8104\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 18, + "text": "Pride|strong=\"H1347\"* goes|strong=\"H6440\"* before|strong=\"H6440\"* destruction|strong=\"H7667\"*," + }, + { + "verseNum": 19, + "text": "It|strong=\"H7307\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H2896\"* be|strong=\"H7307\"* of|strong=\"H7307\"* a|strong=\"H3068\"* lowly|strong=\"H8217\"* spirit|strong=\"H7307\"* with|strong=\"H6041\"* the|strong=\"H2505\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* heeds the|strong=\"H5921\"* Word|strong=\"H1697\"* finds|strong=\"H4672\"* prosperity|strong=\"H2896\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H7121\"* wise|strong=\"H2450\"* in|strong=\"H7121\"* heart|strong=\"H3820\"* shall|strong=\"H3820\"* be|strong=\"H3820\"* called|strong=\"H7121\"* prudent." + }, + { + "verseNum": 22, + "text": "Understanding|strong=\"H7922\"* is|strong=\"H1167\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* of|strong=\"H1167\"* life|strong=\"H2416\"* to|strong=\"H2416\"* one|strong=\"H2416\"* who|strong=\"H1167\"* has|strong=\"H1167\"* it," + }, + { + "verseNum": 23, + "text": "The|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H6310\"* the|strong=\"H5921\"* wise|strong=\"H2450\"* instructs|strong=\"H7919\"* his|strong=\"H5921\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 24, + "text": "Pleasant|strong=\"H5278\"* words are|strong=\"H6106\"* a|strong=\"H3068\"* honeycomb|strong=\"H6688\"*," + }, + { + "verseNum": 25, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* way|strong=\"H1870\"* which|strong=\"H3426\"* seems right|strong=\"H3477\"* to|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H5921\"* appetite|strong=\"H5315\"* of|strong=\"H6310\"* the|strong=\"H5921\"* laboring|strong=\"H6001\"* man|strong=\"H5315\"* labors|strong=\"H6001\"* for|strong=\"H3588\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* worthless|strong=\"H1100\"* man|strong=\"H7451\"* devises mischief|strong=\"H7451\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* perverse|strong=\"H8419\"* man stirs up|strong=\"H7971\"* strife|strong=\"H4066\"*." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* man|strong=\"H2896\"* of|strong=\"H1870\"* violence|strong=\"H2555\"* entices|strong=\"H6601\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 30, + "text": "One who winks|strong=\"H7169\"* his|strong=\"H2803\"* eyes|strong=\"H5869\"* to|strong=\"H2803\"* plot|strong=\"H2803\"* perversities," + }, + { + "verseNum": 31, + "text": "Gray|strong=\"H7872\"* hair|strong=\"H7872\"* is|strong=\"H1870\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H1870\"* glory|strong=\"H8597\"*." + }, + { + "verseNum": 32, + "text": "One|strong=\"H1368\"* who|strong=\"H1368\"* is|strong=\"H2896\"* slow to|strong=\"H5892\"* anger|strong=\"H7307\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3920\"* mighty|strong=\"H1368\"*;" + }, + { + "verseNum": 33, + "text": "The|strong=\"H3605\"* lot|strong=\"H1486\"* is|strong=\"H3068\"* cast|strong=\"H2904\"* into|strong=\"H4941\"* the|strong=\"H3605\"* lap|strong=\"H2436\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* dry|strong=\"H2720\"* morsel|strong=\"H6595\"* with|strong=\"H1004\"* quietness|strong=\"H7962\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* servant|strong=\"H5650\"* who|strong=\"H1121\"* deals wisely|strong=\"H7919\"* will|strong=\"H5650\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* causes shame," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3068\"* refining|strong=\"H4715\"* pot|strong=\"H4715\"* is|strong=\"H3068\"* for|strong=\"H3068\"* silver|strong=\"H3701\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* furnace|strong=\"H3564\"* for|strong=\"H3068\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 4, + "text": "An|strong=\"H5921\"* evildoer|strong=\"H7489\"* heeds wicked|strong=\"H7489\"* lips|strong=\"H8193\"*." + }, + { + "verseNum": 5, + "text": "Whoever mocks|strong=\"H3932\"* the|strong=\"H6213\"* poor|strong=\"H7326\"* reproaches|strong=\"H2778\"* his|strong=\"H6213\"* Maker|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Children|strong=\"H1121\"*’s children|strong=\"H1121\"* are|strong=\"H1121\"* the|strong=\"H1121\"* crown|strong=\"H5850\"* of|strong=\"H1121\"* old|strong=\"H1121\"* men|strong=\"H1121\"*;" + }, + { + "verseNum": 7, + "text": "Excellent|strong=\"H3499\"* speech|strong=\"H8193\"* isn’t fitting|strong=\"H5000\"* for|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H5036\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* bribe|strong=\"H7810\"* is|strong=\"H3605\"* a|strong=\"H3068\"* precious|strong=\"H2580\"* stone in|strong=\"H7919\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* him|strong=\"H3605\"* who|strong=\"H3605\"* gives|strong=\"H7919\"* it|strong=\"H6437\"*;" + }, + { + "verseNum": 9, + "text": "He|strong=\"H1697\"* who covers|strong=\"H3680\"* an|strong=\"H1245\"* offense promotes love;" + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* rebuke|strong=\"H1606\"* enters deeper|strong=\"H5181\"* into one|strong=\"H3967\"* who|strong=\"H5221\"* has understanding" + }, + { + "verseNum": 11, + "text": "An|strong=\"H7971\"* evil|strong=\"H7451\"* man|strong=\"H7451\"* seeks|strong=\"H1245\"* only|strong=\"H1245\"* rebellion|strong=\"H4805\"*;" + }, + { + "verseNum": 12, + "text": "Let a|strong=\"H3068\"* bear|strong=\"H1677\"* robbed|strong=\"H7909\"* of her|strong=\"H7909\"* cubs|strong=\"H7909\"* meet|strong=\"H6298\"* a|strong=\"H3068\"* man|strong=\"H3684\"*," + }, + { + "verseNum": 13, + "text": "Whoever rewards evil|strong=\"H7451\"* for|strong=\"H8478\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H6440\"* beginning|strong=\"H7225\"* of|strong=\"H6440\"* strife|strong=\"H7379\"* is|strong=\"H6440\"* like|strong=\"H6440\"* breaching a|strong=\"H3068\"* dam," + }, + { + "verseNum": 15, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* justifies|strong=\"H6663\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* condemns|strong=\"H7561\"* the|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 16, + "text": "Why|strong=\"H4100\"* is|strong=\"H2088\"* there|strong=\"H2088\"* money in|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* to|strong=\"H3820\"* buy|strong=\"H7069\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* friend|strong=\"H7453\"* loves at|strong=\"H3205\"* all|strong=\"H3605\"* times|strong=\"H6256\"*;" + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* man|strong=\"H6440\"* void|strong=\"H2638\"* of|strong=\"H6440\"* understanding|strong=\"H3820\"* strikes|strong=\"H8628\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 19, + "text": "He who loves disobedience loves strife|strong=\"H4683\"*." + }, + { + "verseNum": 20, + "text": "One|strong=\"H3808\"* who|strong=\"H2896\"* has|strong=\"H3820\"* a|strong=\"H3068\"* perverse|strong=\"H6141\"* heart|strong=\"H3820\"* doesn’t find|strong=\"H4672\"* prosperity|strong=\"H2896\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H3808\"* who|strong=\"H3205\"* becomes the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* grieves." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* cheerful|strong=\"H3190\"* heart|strong=\"H3820\"* makes|strong=\"H3190\"* good|strong=\"H3190\"* medicine|strong=\"H1456\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* receives|strong=\"H3947\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"* in|strong=\"H3947\"* secret," + }, + { + "verseNum": 24, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2451\"* before|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H7097\"* who|strong=\"H3684\"* has|strong=\"H5869\"* understanding|strong=\"H6440\"*," + }, + { + "verseNum": 25, + "text": "A|strong=\"H3068\"* foolish|strong=\"H3684\"* son|strong=\"H1121\"* brings|strong=\"H3205\"* grief|strong=\"H3708\"* to|strong=\"H3205\"* his|strong=\"H3205\"* father|strong=\"H3205\"*," + }, + { + "verseNum": 26, + "text": "Also|strong=\"H1571\"* to|strong=\"H5921\"* punish|strong=\"H6064\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* is|strong=\"H1571\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 27, + "text": "He|strong=\"H8394\"* who|strong=\"H3045\"* spares his|strong=\"H3045\"* words has|strong=\"H7307\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 28, + "text": "Even|strong=\"H1571\"* a|strong=\"H3068\"* fool, when|strong=\"H1571\"* he|strong=\"H2803\"* keeps|strong=\"H2790\"* silent|strong=\"H2790\"*, is|strong=\"H1571\"* counted|strong=\"H2803\"* wise|strong=\"H2450\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* man|strong=\"H3605\"* who|strong=\"H3605\"* isolates himself|strong=\"H6504\"* pursues selfishness," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"* has|strong=\"H3820\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H2654\"* understanding|strong=\"H8394\"*," + }, + { + "verseNum": 3, + "text": "When|strong=\"H1571\"* wickedness comes|strong=\"H5973\"*, contempt|strong=\"H2781\"* also|strong=\"H1571\"* comes|strong=\"H5973\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* man|strong=\"H2451\"*’s mouth|strong=\"H6310\"* are|strong=\"H1697\"* like|strong=\"H1697\"* deep|strong=\"H6013\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 5, + "text": "To|strong=\"H6440\"* be|strong=\"H3808\"* partial|strong=\"H5375\"* to|strong=\"H6440\"* the|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"*’s lips|strong=\"H8193\"* come into strife|strong=\"H7379\"*," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"*’s mouth|strong=\"H6310\"* is|strong=\"H5315\"* his|strong=\"H6310\"* destruction|strong=\"H4288\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* gossip|strong=\"H5372\"* are|strong=\"H1992\"* like|strong=\"H3381\"* dainty|strong=\"H3859\"* morsels|strong=\"H3859\"*:" + }, + { + "verseNum": 9, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H1931\"* slack|strong=\"H7503\"* in|strong=\"H1571\"* his|strong=\"H7843\"* work|strong=\"H4399\"*" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* is|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H5797\"* tower|strong=\"H4026\"*:" + }, + { + "verseNum": 11, + "text": "The|strong=\"H7682\"* rich|strong=\"H6223\"* man|strong=\"H6223\"*’s wealth|strong=\"H1952\"* is his|strong=\"H5797\"* strong|strong=\"H5797\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 12, + "text": "Before|strong=\"H6440\"* destruction|strong=\"H7667\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* of|strong=\"H6440\"* man|strong=\"H6440\"* is|strong=\"H3820\"* proud|strong=\"H1361\"*," + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* answers|strong=\"H7725\"* before|strong=\"H2962\"* he|strong=\"H1931\"* hears|strong=\"H8085\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* man|strong=\"H5375\"*’s spirit|strong=\"H7307\"* will|strong=\"H4310\"* sustain|strong=\"H3557\"* him|strong=\"H5375\"* in|strong=\"H7307\"* sickness|strong=\"H4245\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H1245\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H1245\"* discerning gets|strong=\"H7069\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* man|strong=\"H1419\"*’s gift|strong=\"H4976\"* makes|strong=\"H6440\"* room|strong=\"H7337\"* for|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 17, + "text": "He who|strong=\"H6662\"* pleads|strong=\"H7453\"* his|strong=\"H7453\"* cause|strong=\"H7379\"* first|strong=\"H7223\"* seems|strong=\"H6662\"* right|strong=\"H6662\"*—" + }, + { + "verseNum": 18, + "text": "The|strong=\"H6504\"* lot|strong=\"H1486\"* settles disputes|strong=\"H4079\"*," + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* brother offended|strong=\"H6586\"* is|strong=\"H4066\"* more difficult than a|strong=\"H3068\"* fortified city|strong=\"H7151\"*." + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* man’s stomach is|strong=\"H6310\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* the|strong=\"H7646\"* fruit|strong=\"H6529\"* of|strong=\"H6310\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 21, + "text": "Death|strong=\"H4194\"* and|strong=\"H3027\"* life|strong=\"H2416\"* are|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H3027\"* power|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* tongue|strong=\"H3956\"*;" + }, + { + "verseNum": 22, + "text": "Whoever finds|strong=\"H4672\"* a|strong=\"H3068\"* wife finds|strong=\"H4672\"* a|strong=\"H3068\"* good|strong=\"H2896\"* thing|strong=\"H2896\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H1696\"* poor|strong=\"H7326\"* plead for|strong=\"H6030\"* mercy," + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* man of|strong=\"H7453\"* many companions|strong=\"H7453\"* may|strong=\"H3426\"* be|strong=\"H3426\"* ruined," + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Better|strong=\"H2896\"* is|strong=\"H1931\"* the|strong=\"H1980\"* poor|strong=\"H7326\"* who|strong=\"H1931\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H1980\"* integrity|strong=\"H8537\"*" + }, + { + "verseNum": 2, + "text": "It|strong=\"H3808\"* isn’t good|strong=\"H2896\"* to|strong=\"H5315\"* have|strong=\"H1571\"* zeal without|strong=\"H3808\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* foolishness of|strong=\"H3068\"* man|strong=\"H3820\"* subverts|strong=\"H5557\"* his|strong=\"H3068\"* way|strong=\"H1870\"*;" + }, + { + "verseNum": 4, + "text": "Wealth|strong=\"H1952\"* adds|strong=\"H3254\"* many|strong=\"H7227\"* friends|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*." + }, + { + "verseNum": 6, + "text": "Many|strong=\"H7227\"* will|strong=\"H7227\"* entreat|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* ruler," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* relatives of|strong=\"H4480\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* shun|strong=\"H7368\"* him|strong=\"H8130\"*;" + }, + { + "verseNum": 8, + "text": "He|strong=\"H8394\"* who|strong=\"H5315\"* gets|strong=\"H7069\"* wisdom|strong=\"H3820\"* loves his|strong=\"H8104\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "A|strong=\"H3068\"* false|strong=\"H8267\"* witness|strong=\"H5707\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*." + }, + { + "verseNum": 10, + "text": "Delicate|strong=\"H8588\"* living is|strong=\"H5650\"* not|strong=\"H3808\"* appropriate|strong=\"H5000\"* for|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* discretion|strong=\"H7922\"* of|strong=\"H5921\"* a|strong=\"H3068\"* man|strong=\"H5674\"* makes him|strong=\"H5921\"* slow to|strong=\"H5921\"* anger|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"*’s wrath|strong=\"H2197\"* is|strong=\"H4428\"* like|strong=\"H5921\"* the|strong=\"H5921\"* roaring|strong=\"H5099\"* of|strong=\"H4428\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 13, + "text": "A|strong=\"H3068\"* foolish|strong=\"H3684\"* son|strong=\"H1121\"* is|strong=\"H1121\"* the|strong=\"H1121\"* calamity|strong=\"H1942\"* of|strong=\"H1121\"* his|strong=\"H1121\"* father|strong=\"H1121\"*." + }, + { + "verseNum": 14, + "text": "House|strong=\"H1004\"* and|strong=\"H3068\"* riches|strong=\"H1952\"* are|strong=\"H3068\"* an|strong=\"H3068\"* inheritance|strong=\"H5159\"* from|strong=\"H3068\"* fathers," + }, + { + "verseNum": 15, + "text": "Slothfulness|strong=\"H6103\"* casts|strong=\"H5307\"* into|strong=\"H5307\"* a|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H5315\"* who|strong=\"H5315\"* keeps|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* keeps|strong=\"H8104\"* his|strong=\"H8104\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* pity|strong=\"H2603\"* on|strong=\"H3068\"* the|strong=\"H3068\"* poor|strong=\"H1800\"* lends|strong=\"H3867\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 18, + "text": "Discipline|strong=\"H3256\"* your|strong=\"H5375\"* son|strong=\"H1121\"*, for|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope|strong=\"H8615\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* hot-tempered|strong=\"H2534\"* man|strong=\"H5375\"* must|strong=\"H5375\"* pay the|strong=\"H3588\"* penalty|strong=\"H6066\"*," + }, + { + "verseNum": 20, + "text": "Listen|strong=\"H8085\"* to|strong=\"H8085\"* counsel|strong=\"H6098\"* and|strong=\"H8085\"* receive|strong=\"H6901\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 21, + "text": "There|strong=\"H3068\"* are|strong=\"H3068\"* many|strong=\"H7227\"* plans|strong=\"H4284\"* in|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3820\"*’s heart|strong=\"H3820\"*," + }, + { + "verseNum": 22, + "text": "That|strong=\"H7326\"* which|strong=\"H2617\"* makes a|strong=\"H3068\"* man|strong=\"H7326\"* to|strong=\"H2896\"* be|strong=\"H2896\"* desired|strong=\"H8378\"* is|strong=\"H2617\"* his|strong=\"H2896\"* kindness|strong=\"H2617\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* leads|strong=\"H2416\"* to|strong=\"H3068\"* life|strong=\"H2416\"*, then|strong=\"H3068\"* contentment;" + }, + { + "verseNum": 24, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* buries|strong=\"H2934\"* his|strong=\"H7725\"* hand|strong=\"H3027\"* in|strong=\"H7725\"* the|strong=\"H7725\"* dish|strong=\"H6747\"*;" + }, + { + "verseNum": 25, + "text": "Flog|strong=\"H5221\"* a|strong=\"H3068\"* scoffer, and|strong=\"H1847\"* the|strong=\"H5221\"* simple|strong=\"H6612\"* will|strong=\"H6612\"* learn prudence;" + }, + { + "verseNum": 26, + "text": "He|strong=\"H1121\"* who|strong=\"H1121\"* robs his|strong=\"H1121\"* father|strong=\"H1121\"* and|strong=\"H1121\"* drives|strong=\"H1272\"* away|strong=\"H1272\"* his|strong=\"H1121\"* mother" + }, + { + "verseNum": 27, + "text": "If|strong=\"H1121\"* you|strong=\"H7686\"* stop|strong=\"H2308\"* listening|strong=\"H8085\"* to|strong=\"H8085\"* instruction|strong=\"H4148\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* corrupt witness|strong=\"H5707\"* mocks justice|strong=\"H4941\"*," + }, + { + "verseNum": 29, + "text": "Penalties are|strong=\"H8201\"* prepared|strong=\"H3559\"* for|strong=\"H3559\"* scoffers," + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Wine|strong=\"H3196\"* is|strong=\"H3605\"* a|strong=\"H3068\"* mocker|strong=\"H3887\"* and|strong=\"H3196\"* beer|strong=\"H7941\"* is|strong=\"H3605\"* a|strong=\"H3068\"* brawler|strong=\"H1993\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5674\"* terror of|strong=\"H4428\"* a|strong=\"H3068\"* king|strong=\"H4428\"* is|strong=\"H5315\"* like|strong=\"H5315\"* the|strong=\"H5674\"* roaring|strong=\"H5099\"* of|strong=\"H4428\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H3605\"* is|strong=\"H3605\"* an honor|strong=\"H3519\"* for|strong=\"H3605\"* a|strong=\"H3068\"* man|strong=\"H3605\"* to|strong=\"H3519\"* keep aloof from|strong=\"H7674\"* strife|strong=\"H7379\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3808\"* sluggard|strong=\"H6102\"* will|strong=\"H3808\"* not|strong=\"H3808\"* plow|strong=\"H2790\"* by|strong=\"H3808\"* reason of|strong=\"H7592\"* the|strong=\"H3808\"* winter|strong=\"H2779\"*;" + }, + { + "verseNum": 5, + "text": "Counsel|strong=\"H6098\"* in|strong=\"H3820\"* the|strong=\"H3820\"* heart|strong=\"H3820\"* of|strong=\"H4325\"* man|strong=\"H3820\"* is|strong=\"H3820\"* like|strong=\"H3820\"* deep|strong=\"H6013\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 6, + "text": "Many|strong=\"H7230\"* men|strong=\"H7121\"* claim to|strong=\"H7121\"* be|strong=\"H2617\"* men|strong=\"H7121\"* of|strong=\"H7230\"* unfailing love|strong=\"H2617\"*," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* integrity|strong=\"H8537\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* king|strong=\"H4428\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* judgment|strong=\"H1779\"*" + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* say, “I|strong=\"H3820\"* have|strong=\"H2403\"* made my|strong=\"H2135\"* heart|strong=\"H3820\"* pure|strong=\"H2135\"*." + }, + { + "verseNum": 10, + "text": "Differing weights and|strong=\"H3068\"* differing measures," + }, + { + "verseNum": 11, + "text": "Even|strong=\"H1571\"* a|strong=\"H3068\"* child|strong=\"H5288\"* makes himself|strong=\"H5234\"* known|strong=\"H5234\"* by|strong=\"H1571\"* his|strong=\"H5234\"* doings|strong=\"H4611\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* hearing|strong=\"H8085\"* ear|strong=\"H8085\"*, and|strong=\"H3068\"* the|strong=\"H8085\"* seeing|strong=\"H7200\"* eye|strong=\"H5869\"*," + }, + { + "verseNum": 13, + "text": "Don’t love sleep|strong=\"H8142\"*, lest|strong=\"H6435\"* you|strong=\"H6435\"* come|strong=\"H3423\"* to|strong=\"H5869\"* poverty|strong=\"H3423\"*." + }, + { + "verseNum": 14, + "text": "“It|strong=\"H7069\"*’s no good, it|strong=\"H7069\"*’s no good,” says the|strong=\"H1984\"* buyer|strong=\"H7069\"*;" + }, + { + "verseNum": 15, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* gold|strong=\"H2091\"* and|strong=\"H2091\"* abundance|strong=\"H7230\"* of|strong=\"H3627\"* rubies|strong=\"H6443\"*," + }, + { + "verseNum": 16, + "text": "Take|strong=\"H3947\"* the|strong=\"H3588\"* garment of|strong=\"H3947\"* one|strong=\"H3588\"* who|strong=\"H2114\"* puts|strong=\"H2114\"* up|strong=\"H3947\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*;" + }, + { + "verseNum": 17, + "text": "Fraudulent food|strong=\"H3899\"* is|strong=\"H6310\"* sweet|strong=\"H6156\"* to|strong=\"H6310\"* a|strong=\"H3068\"* man," + }, + { + "verseNum": 18, + "text": "Plans|strong=\"H4284\"* are|strong=\"H4284\"* established|strong=\"H3559\"* by|strong=\"H3559\"* advice|strong=\"H6098\"*;" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* goes|strong=\"H1980\"* about|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* tale-bearer reveals|strong=\"H1540\"* secrets|strong=\"H5475\"*;" + }, + { + "verseNum": 20, + "text": "Whoever curses|strong=\"H7043\"* his|strong=\"H7043\"* father or|strong=\"H2822\"* his|strong=\"H7043\"* mother," + }, + { + "verseNum": 21, + "text": "An|strong=\"H1288\"* inheritance|strong=\"H5159\"* quickly gained at|strong=\"H3808\"* the|strong=\"H1288\"* beginning|strong=\"H7223\"*" + }, + { + "verseNum": 22, + "text": "Don’t say, “I|strong=\"H3068\"* will|strong=\"H3068\"* pay|strong=\"H7999\"* back|strong=\"H7999\"* evil|strong=\"H7451\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* detests differing|strong=\"H2896\"* weights," + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"*’s steps|strong=\"H4703\"* are|strong=\"H4100\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 25, + "text": "It is a|strong=\"H3068\"* snare|strong=\"H4170\"* to|strong=\"H6944\"* a|strong=\"H3068\"* man to|strong=\"H6944\"* make|strong=\"H1239\"* a|strong=\"H3068\"* rash dedication," + }, + { + "verseNum": 26, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* king|strong=\"H4428\"* winnows|strong=\"H2219\"* out|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* spirit|strong=\"H5397\"* of|strong=\"H3068\"* man|strong=\"H3605\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s lamp|strong=\"H5216\"*," + }, + { + "verseNum": 28, + "text": "Love|strong=\"H2617\"* and|strong=\"H4428\"* faithfulness|strong=\"H2617\"* keep|strong=\"H5341\"* the|strong=\"H5341\"* king|strong=\"H4428\"* safe." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3581\"* glory|strong=\"H8597\"* of|strong=\"H2205\"* young men|strong=\"H2205\"* is|strong=\"H3581\"* their strength|strong=\"H3581\"*." + }, + { + "verseNum": 30, + "text": "Wounding|strong=\"H6482\"* blows|strong=\"H4347\"* cleanse|strong=\"H2315\"* away|strong=\"H4838\"* evil|strong=\"H7451\"*," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"*’s heart|strong=\"H3820\"* is|strong=\"H3068\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* like|strong=\"H3820\"* the|strong=\"H3605\"* watercourses." + }, + { + "verseNum": 2, + "text": "Every|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H3605\"* is|strong=\"H3068\"* right|strong=\"H3477\"* in|strong=\"H3068\"* his|strong=\"H3605\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 3, + "text": "To|strong=\"H3068\"* do|strong=\"H6213\"* righteousness|strong=\"H6666\"* and|strong=\"H3068\"* justice|strong=\"H4941\"*" + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* high|strong=\"H7312\"* look|strong=\"H5869\"* and|strong=\"H5869\"* a|strong=\"H3068\"* proud|strong=\"H7342\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* plans|strong=\"H4284\"* of|strong=\"H3605\"* the|strong=\"H3605\"* diligent|strong=\"H2742\"* surely lead to|strong=\"H3605\"* profit|strong=\"H4195\"*;" + }, + { + "verseNum": 6, + "text": "Getting|strong=\"H6467\"* treasures by|strong=\"H6467\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"*" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* violence|strong=\"H7701\"* of|strong=\"H4941\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* drive them|strong=\"H6213\"* away|strong=\"H1641\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H1870\"* guilty|strong=\"H2054\"* is|strong=\"H1870\"* devious," + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3808\"* soul|strong=\"H5315\"* of|strong=\"H5869\"* the|strong=\"H3808\"* wicked|strong=\"H7563\"* desires evil|strong=\"H7451\"*;" + }, + { + "verseNum": 11, + "text": "When|strong=\"H6064\"* the|strong=\"H3947\"* mocker|strong=\"H3887\"* is|strong=\"H1847\"* punished|strong=\"H6064\"*, the|strong=\"H3947\"* simple|strong=\"H6612\"* gains wisdom|strong=\"H7919\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1004\"* Righteous|strong=\"H6662\"* One|strong=\"H6662\"* considers|strong=\"H7919\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 13, + "text": "Whoever stops his|strong=\"H7121\"* ears at|strong=\"H3808\"* the|strong=\"H7121\"* cry|strong=\"H7121\"* of|strong=\"H2201\"* the|strong=\"H7121\"* poor|strong=\"H1800\"*," + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* gift|strong=\"H4976\"* in|strong=\"H4976\"* secret|strong=\"H5643\"* pacifies anger|strong=\"H2534\"*," + }, + { + "verseNum": 15, + "text": "It|strong=\"H6213\"* is|strong=\"H6662\"* joy|strong=\"H8057\"* to|strong=\"H6213\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"* to|strong=\"H6213\"* do|strong=\"H6213\"* justice|strong=\"H4941\"*;" + }, + { + "verseNum": 16, + "text": "The|strong=\"H1870\"* man|strong=\"H7919\"* who|strong=\"H7919\"* wanders|strong=\"H8582\"* out of|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* understanding|strong=\"H7919\"*" + }, + { + "verseNum": 17, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* loves pleasure|strong=\"H8057\"* will|strong=\"H3808\"* be|strong=\"H3808\"* a|strong=\"H3068\"* poor|strong=\"H4270\"* man." + }, + { + "verseNum": 18, + "text": "The|strong=\"H8478\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* a|strong=\"H3068\"* ransom|strong=\"H3724\"* for|strong=\"H8478\"* the|strong=\"H8478\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 19, + "text": "It|strong=\"H2896\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H2896\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* desert|strong=\"H4057\"* land," + }, + { + "verseNum": 20, + "text": "There is|strong=\"H3684\"* precious|strong=\"H2530\"* treasure and|strong=\"H8081\"* oil|strong=\"H8081\"* in|strong=\"H2450\"* the|strong=\"H1104\"* dwelling|strong=\"H5116\"* of|strong=\"H8081\"* the|strong=\"H1104\"* wise|strong=\"H2450\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H2416\"* who|strong=\"H4672\"* follows|strong=\"H7291\"* after|strong=\"H7291\"* righteousness|strong=\"H6666\"* and|strong=\"H2617\"* kindness|strong=\"H2617\"*" + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H1368\"* scales|strong=\"H5927\"* the|strong=\"H5927\"* city|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H5927\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 23, + "text": "Whoever|strong=\"H8104\"* guards|strong=\"H8104\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"* and|strong=\"H6310\"* his|strong=\"H8104\"* tongue|strong=\"H3956\"*" + }, + { + "verseNum": 24, + "text": "The|strong=\"H6213\"* proud|strong=\"H2086\"* and|strong=\"H6213\"* arrogant|strong=\"H2086\"* man—“Scoffer” is|strong=\"H8034\"* his|strong=\"H6213\"* name|strong=\"H8034\"*—" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3588\"* desire|strong=\"H8378\"* of|strong=\"H3027\"* the|strong=\"H3588\"* sluggard|strong=\"H6102\"* kills|strong=\"H4191\"* him|strong=\"H3027\"*," + }, + { + "verseNum": 26, + "text": "There|strong=\"H3117\"* are|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* covet greedily|strong=\"H8378\"* all|strong=\"H3605\"* day|strong=\"H3117\"* long|strong=\"H3117\"*;" + }, + { + "verseNum": 27, + "text": "The|strong=\"H3588\"* sacrifice|strong=\"H2077\"* of|strong=\"H2077\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* is|strong=\"H7563\"* an|strong=\"H3588\"* abomination|strong=\"H8441\"*—" + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* false|strong=\"H3577\"* witness|strong=\"H5707\"* will|strong=\"H8085\"* perish." + }, + { + "verseNum": 29, + "text": "A|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* hardens his|strong=\"H6440\"* face|strong=\"H6440\"*;" + }, + { + "verseNum": 30, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no wisdom|strong=\"H2451\"* nor|strong=\"H8394\"* understanding|strong=\"H8394\"*" + }, + { + "verseNum": 31, + "text": "The|strong=\"H3068\"* horse|strong=\"H5483\"* is|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* battle|strong=\"H4421\"*;" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* name|strong=\"H8034\"* is|strong=\"H8034\"* more|strong=\"H7227\"* desirable than|strong=\"H2896\"* great|strong=\"H7227\"* riches|strong=\"H6239\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* rich|strong=\"H6223\"* and|strong=\"H3068\"* the|strong=\"H3605\"* poor|strong=\"H7326\"* have|strong=\"H3068\"* this|strong=\"H6213\"* in|strong=\"H3068\"* common|strong=\"H6298\"*:" + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* sees|strong=\"H7200\"* danger|strong=\"H7451\"* and|strong=\"H7200\"* hides|strong=\"H5641\"* himself;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* result of|strong=\"H3068\"* humility|strong=\"H6038\"* and|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 5, + "text": "Thorns|strong=\"H6791\"* and|strong=\"H1870\"* snares|strong=\"H6341\"* are|strong=\"H1992\"* in|strong=\"H5315\"* the|strong=\"H8104\"* path|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H8104\"* wicked;" + }, + { + "verseNum": 6, + "text": "Train|strong=\"H2596\"* up|strong=\"H5921\"* a|strong=\"H3068\"* child|strong=\"H5288\"* in|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* he|strong=\"H3588\"* should|strong=\"H3588\"* go|strong=\"H5493\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5650\"* rich|strong=\"H6223\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H5650\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 8, + "text": "He who sows|strong=\"H2232\"* wickedness|strong=\"H5766\"* reaps trouble," + }, + { + "verseNum": 9, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* has|strong=\"H3588\"* a|strong=\"H3068\"* generous|strong=\"H2896\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H1288\"* blessed|strong=\"H1288\"*," + }, + { + "verseNum": 10, + "text": "Drive|strong=\"H1644\"* out|strong=\"H3318\"* the|strong=\"H3318\"* mocker|strong=\"H3887\"*, and|strong=\"H3318\"* strife|strong=\"H4066\"* will|strong=\"H7673\"* go|strong=\"H3318\"* out|strong=\"H3318\"*;" + }, + { + "verseNum": 11, + "text": "He|strong=\"H4428\"* who|strong=\"H4428\"* loves purity|strong=\"H2889\"* of|strong=\"H4428\"* heart|strong=\"H3820\"* and|strong=\"H4428\"* speaks gracefully" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"* watch|strong=\"H5341\"* over|strong=\"H3068\"* knowledge|strong=\"H1847\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H8432\"* sluggard|strong=\"H6102\"* says, “There|strong=\"H8432\"* is|strong=\"H6102\"* a|strong=\"H3068\"* lion outside|strong=\"H2351\"*!" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* an|strong=\"H8033\"* adulteress|strong=\"H2114\"* is|strong=\"H3068\"* a|strong=\"H3068\"* deep|strong=\"H6013\"* pit|strong=\"H7745\"*." + }, + { + "verseNum": 15, + "text": "Folly is|strong=\"H3820\"* bound|strong=\"H7194\"* up|strong=\"H4480\"* in|strong=\"H3820\"* the|strong=\"H4480\"* heart|strong=\"H3820\"* of|strong=\"H7626\"* a|strong=\"H3068\"* child|strong=\"H5288\"*;" + }, + { + "verseNum": 16, + "text": "Whoever|strong=\"H4270\"* oppresses|strong=\"H6231\"* the|strong=\"H5414\"* poor|strong=\"H1800\"* for|strong=\"H5414\"* his|strong=\"H5414\"* own increase|strong=\"H7235\"* and|strong=\"H7235\"* whoever|strong=\"H4270\"* gives|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* rich|strong=\"H6223\"*," + }, + { + "verseNum": 17, + "text": "Turn|strong=\"H5186\"* your|strong=\"H5186\"* ear|strong=\"H8085\"*, and|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3820\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* wise|strong=\"H2450\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H8193\"* a|strong=\"H3068\"* pleasant|strong=\"H5273\"* thing|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* keep|strong=\"H8104\"* them|strong=\"H5921\"* within|strong=\"H5921\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3117\"* teach|strong=\"H3045\"* you|strong=\"H3117\"* today|strong=\"H3117\"*, even|strong=\"H3068\"* you|strong=\"H3117\"*," + }, + { + "verseNum": 20, + "text": "Haven’t I|strong=\"H3808\"* written|strong=\"H3789\"* to|strong=\"H3808\"* you|strong=\"H3808\"* thirty excellent|strong=\"H8032\"* things|strong=\"H3808\"*" + }, + { + "verseNum": 21, + "text": "To|strong=\"H7725\"* teach|strong=\"H3045\"* you|strong=\"H7971\"* truth|strong=\"H7189\"*, reliable words," + }, + { + "verseNum": 22, + "text": "Don’t exploit|strong=\"H1497\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* because|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* poor|strong=\"H6041\"*;" + }, + { + "verseNum": 23, + "text": "for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* plead|strong=\"H7378\"* their|strong=\"H3068\"* case|strong=\"H7379\"*," + }, + { + "verseNum": 24, + "text": "Don’t befriend a|strong=\"H3068\"* hot-tempered|strong=\"H2534\"* man|strong=\"H1167\"*." + }, + { + "verseNum": 25, + "text": "lest|strong=\"H6435\"* you|strong=\"H3947\"* learn his|strong=\"H3947\"* ways" + }, + { + "verseNum": 26, + "text": "Don’t you|strong=\"H3709\"* be|strong=\"H1961\"* one|strong=\"H1961\"* of|strong=\"H3709\"* those|strong=\"H1961\"* who strike|strong=\"H8628\"* hands|strong=\"H3709\"*," + }, + { + "verseNum": 27, + "text": "If you|strong=\"H3947\"* don’t have|strong=\"H3947\"* means to|strong=\"H3947\"* pay|strong=\"H7999\"*," + }, + { + "verseNum": 28, + "text": "Don’t move|strong=\"H5253\"* the|strong=\"H6213\"* ancient|strong=\"H5769\"* boundary|strong=\"H1366\"* stone" + }, + { + "verseNum": 29, + "text": "Do you|strong=\"H6440\"* see|strong=\"H2372\"* a|strong=\"H3068\"* man|strong=\"H6440\"* skilled|strong=\"H4106\"* in|strong=\"H4428\"* his|strong=\"H6440\"* work|strong=\"H4399\"*?" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* sit|strong=\"H3427\"* to|strong=\"H6440\"* eat|strong=\"H3898\"* with|strong=\"H3427\"* a|strong=\"H3068\"* ruler|strong=\"H4910\"*," + }, + { + "verseNum": 2, + "text": "put|strong=\"H7760\"* a|strong=\"H3068\"* knife|strong=\"H7915\"* to|strong=\"H5315\"* your|strong=\"H7760\"* throat|strong=\"H3930\"*" + }, + { + "verseNum": 3, + "text": "Don’t be|strong=\"H3899\"* desirous of|strong=\"H3899\"* his|strong=\"H1931\"* dainties|strong=\"H4303\"*," + }, + { + "verseNum": 4, + "text": "Don’t weary|strong=\"H3021\"* yourself to|strong=\"H2308\"* be rich|strong=\"H6238\"*." + }, + { + "verseNum": 5, + "text": "Why|strong=\"H3588\"* do|strong=\"H6213\"* you|strong=\"H3588\"* set|strong=\"H6213\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"* on|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H5869\"* is|strong=\"H5869\"* not|strong=\"H6213\"*?" + }, + { + "verseNum": 6, + "text": "Don’t eat|strong=\"H3898\"* the|strong=\"H5869\"* food|strong=\"H3899\"* of|strong=\"H5869\"* him|strong=\"H5869\"* who has|strong=\"H5869\"* a|strong=\"H3068\"* stingy eye|strong=\"H5869\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* as|strong=\"H3644\"* he|strong=\"H1931\"* thinks|strong=\"H8176\"* about the|strong=\"H3588\"* cost, so|strong=\"H3651\"* he|strong=\"H1931\"* is|strong=\"H1931\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7843\"* will|strong=\"H1697\"* vomit|strong=\"H6958\"* up|strong=\"H6958\"* the|strong=\"H1697\"* morsel|strong=\"H6595\"* which|strong=\"H1697\"* you|strong=\"H7843\"* have|strong=\"H1697\"* eaten" + }, + { + "verseNum": 9, + "text": "Don’t speak|strong=\"H1696\"* in|strong=\"H1696\"* the|strong=\"H3588\"* ears of|strong=\"H1696\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*," + }, + { + "verseNum": 10, + "text": "Don’t move|strong=\"H5253\"* the|strong=\"H7704\"* ancient|strong=\"H5769\"* boundary|strong=\"H1366\"* stone." + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* Defender is|strong=\"H1931\"* strong|strong=\"H2389\"*." + }, + { + "verseNum": 12, + "text": "Apply your heart|strong=\"H3820\"* to|strong=\"H3820\"* instruction|strong=\"H4148\"*," + }, + { + "verseNum": 13, + "text": "Don’t withhold|strong=\"H4513\"* correction|strong=\"H4148\"* from|strong=\"H4513\"* a|strong=\"H3068\"* child|strong=\"H5288\"*." + }, + { + "verseNum": 14, + "text": "Punish|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H5315\"* the|strong=\"H5221\"* rod|strong=\"H7626\"*," + }, + { + "verseNum": 15, + "text": "My|strong=\"H1571\"* son|strong=\"H1121\"*, if|strong=\"H1121\"* your|strong=\"H1571\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 16, + "text": "Yes, my|strong=\"H1696\"* heart|strong=\"H8193\"* will|strong=\"H8193\"* rejoice|strong=\"H5937\"*" + }, + { + "verseNum": 17, + "text": "Don’t let your|strong=\"H3068\"* heart|strong=\"H3820\"* envy|strong=\"H7065\"* sinners|strong=\"H2400\"*," + }, + { + "verseNum": 18, + "text": "Indeed|strong=\"H3588\"* surely|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* future hope|strong=\"H8615\"*," + }, + { + "verseNum": 19, + "text": "Listen|strong=\"H8085\"*, my|strong=\"H8085\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* be|strong=\"H1121\"* wise|strong=\"H2449\"*," + }, + { + "verseNum": 20, + "text": "Don’t be|strong=\"H1961\"* among ones drinking too|strong=\"H1961\"* much wine|strong=\"H3196\"*," + }, + { + "verseNum": 21, + "text": "for|strong=\"H3588\"* the|strong=\"H3588\"* drunkard|strong=\"H5433\"* and|strong=\"H3423\"* the|strong=\"H3588\"* glutton|strong=\"H2151\"* shall|strong=\"H5124\"* become|strong=\"H3423\"* poor|strong=\"H3423\"*;" + }, + { + "verseNum": 22, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3205\"* your|strong=\"H8085\"* father|strong=\"H3205\"* who|strong=\"H2088\"* gave|strong=\"H3205\"* you|strong=\"H3588\"* life," + }, + { + "verseNum": 23, + "text": "Buy|strong=\"H7069\"* the|strong=\"H7069\"* truth, and|strong=\"H2451\"* don’t sell|strong=\"H4376\"* it|strong=\"H7069\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"* the|strong=\"H3205\"* righteous|strong=\"H6662\"* has|strong=\"H3205\"* great joy|strong=\"H8055\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H8055\"* your|strong=\"H3205\"* father|strong=\"H3205\"* and|strong=\"H8055\"* your|strong=\"H3205\"* mother be glad|strong=\"H8055\"*!" + }, + { + "verseNum": 26, + "text": "My|strong=\"H5414\"* son|strong=\"H1121\"*, give|strong=\"H5414\"* me|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* is|strong=\"H3588\"* a|strong=\"H3068\"* deep|strong=\"H6013\"* pit|strong=\"H7745\"*;" + }, + { + "verseNum": 28, + "text": "Yes, she|strong=\"H1931\"* lies in|strong=\"H3254\"* wait like a|strong=\"H3068\"* robber|strong=\"H2863\"*," + }, + { + "verseNum": 29, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* woe?" + }, + { + "verseNum": 30, + "text": "Those|strong=\"H5921\"* who stay long|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"*;" + }, + { + "verseNum": 31, + "text": "Don’t look|strong=\"H7200\"* at|strong=\"H7200\"* the|strong=\"H7200\"* wine|strong=\"H3196\"* when|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H5869\"* red," + }, + { + "verseNum": 32, + "text": "In the|strong=\"H5391\"* end, it bites|strong=\"H5391\"* like a|strong=\"H3068\"* snake|strong=\"H5175\"*," + }, + { + "verseNum": 33, + "text": "Your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* see|strong=\"H7200\"* strange|strong=\"H2114\"* things|strong=\"H8419\"*," + }, + { + "verseNum": 34, + "text": "Yes, you|strong=\"H3820\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* he|strong=\"H3220\"* who lies|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H7901\"* the|strong=\"H1961\"* middle|strong=\"H3820\"* of|strong=\"H7218\"* the|strong=\"H1961\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 35, + "text": "“They|strong=\"H3045\"* hit|strong=\"H5221\"* me|strong=\"H5221\"*, and|strong=\"H3045\"* I|strong=\"H3045\"* was|strong=\"H5221\"* not|strong=\"H3045\"* hurt!" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Don’t be|strong=\"H1961\"* envious|strong=\"H7065\"* of|strong=\"H7451\"* evil|strong=\"H7451\"* men|strong=\"H7451\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* hearts|strong=\"H3820\"* plot violence|strong=\"H7701\"*" + }, + { + "verseNum": 3, + "text": "Through wisdom|strong=\"H2451\"* a|strong=\"H3068\"* house|strong=\"H1004\"* is|strong=\"H2451\"* built|strong=\"H1129\"*;" + }, + { + "verseNum": 4, + "text": "by|strong=\"H3605\"* knowledge|strong=\"H1847\"* the|strong=\"H3605\"* rooms|strong=\"H2315\"* are|strong=\"H4390\"* filled|strong=\"H4390\"*" + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H1397\"* has|strong=\"H3581\"* great power|strong=\"H3581\"*." + }, + { + "verseNum": 6, + "text": "for|strong=\"H3588\"* by|strong=\"H6213\"* wise|strong=\"H8458\"* guidance|strong=\"H8458\"* you|strong=\"H3588\"* wage|strong=\"H6213\"* your|strong=\"H6213\"* war|strong=\"H4421\"*," + }, + { + "verseNum": 7, + "text": "Wisdom|strong=\"H2454\"* is|strong=\"H6310\"* too|strong=\"H3808\"* high|strong=\"H7311\"* for|strong=\"H3808\"* a|strong=\"H3068\"* fool." + }, + { + "verseNum": 8, + "text": "One who|strong=\"H1167\"* plots|strong=\"H4209\"* to|strong=\"H7121\"* do|strong=\"H7489\"* evil|strong=\"H7489\"*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H8441\"* schemes|strong=\"H2154\"* of|strong=\"H2403\"* folly are|strong=\"H2403\"* sin|strong=\"H2403\"*." + }, + { + "verseNum": 10, + "text": "If you|strong=\"H3117\"* falter in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*," + }, + { + "verseNum": 11, + "text": "Rescue|strong=\"H5337\"* those who are|strong=\"H4194\"* being led away|strong=\"H3947\"* to|strong=\"H3947\"* death|strong=\"H4194\"*!" + }, + { + "verseNum": 12, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say|strong=\"H7725\"*, “Behold|strong=\"H2005\"*, we|strong=\"H3068\"* didn’t know|strong=\"H3045\"* this|strong=\"H2088\"*,”" + }, + { + "verseNum": 13, + "text": "My|strong=\"H5921\"* son|strong=\"H1121\"*, eat honey|strong=\"H1706\"*, for|strong=\"H3588\"* it|strong=\"H5921\"* is|strong=\"H2896\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 14, + "text": "so|strong=\"H3651\"* you|strong=\"H3045\"* shall|strong=\"H5315\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"* to|strong=\"H5315\"* be|strong=\"H3426\"* to|strong=\"H5315\"* your|strong=\"H3045\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 15, + "text": "Don’t lay|strong=\"H7258\"* in|strong=\"H6662\"* wait, wicked|strong=\"H7563\"* man|strong=\"H7563\"*, against the|strong=\"H7703\"* habitation|strong=\"H5116\"* of|strong=\"H5116\"* the|strong=\"H7703\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 16, + "text": "for|strong=\"H3588\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* falls|strong=\"H5307\"* seven|strong=\"H7651\"* times|strong=\"H7651\"* and|strong=\"H6965\"* rises|strong=\"H6965\"* up|strong=\"H6965\"* again|strong=\"H6965\"*," + }, + { + "verseNum": 17, + "text": "Don’t rejoice|strong=\"H8055\"* when|strong=\"H5307\"* your|strong=\"H5307\"* enemy falls|strong=\"H5307\"*." + }, + { + "verseNum": 18, + "text": "lest|strong=\"H6435\"* Yahweh|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5921\"*, and|strong=\"H3068\"* it|strong=\"H5921\"* displease|strong=\"H7489\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 19, + "text": "Don’t fret|strong=\"H2734\"* yourself because of|strong=\"H7065\"* evildoers|strong=\"H7489\"*," + }, + { + "verseNum": 20, + "text": "for|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* reward to|strong=\"H1961\"* the|strong=\"H3588\"* evil|strong=\"H7451\"* man|strong=\"H7563\"*." + }, + { + "verseNum": 21, + "text": "My|strong=\"H3068\"* son|strong=\"H1121\"*, fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* the|strong=\"H3068\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* their|strong=\"H3588\"* calamity|strong=\"H6365\"* will|strong=\"H4310\"* rise|strong=\"H6965\"* suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 23, + "text": "These|strong=\"H6440\"* also|strong=\"H1571\"* are|strong=\"H2450\"* sayings of|strong=\"H6440\"* the|strong=\"H6440\"* wise|strong=\"H2450\"*:" + }, + { + "verseNum": 24, + "text": "He|strong=\"H5971\"* who|strong=\"H5971\"* says to|strong=\"H5971\"* the|strong=\"H5971\"* wicked|strong=\"H7563\"*, “You|strong=\"H5971\"* are|strong=\"H5971\"* righteous|strong=\"H6662\"*,”" + }, + { + "verseNum": 25, + "text": "but|strong=\"H3198\"* it|strong=\"H5921\"* will|strong=\"H1293\"* go well|strong=\"H2896\"* with|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H2896\"* convict the|strong=\"H5921\"* guilty," + }, + { + "verseNum": 26, + "text": "An|strong=\"H7725\"* honest answer|strong=\"H7725\"*" + }, + { + "verseNum": 27, + "text": "Prepare|strong=\"H3559\"* your|strong=\"H3559\"* work|strong=\"H4399\"* outside|strong=\"H2351\"*," + }, + { + "verseNum": 28, + "text": "Don’t be|strong=\"H1961\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* against|strong=\"H7453\"* your|strong=\"H1961\"* neighbor|strong=\"H7453\"* without|strong=\"H2600\"* cause|strong=\"H2600\"*." + }, + { + "verseNum": 29, + "text": "Don’t say|strong=\"H7725\"*, “I|strong=\"H3651\"* will|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* him|strong=\"H6213\"* as|strong=\"H6213\"* he|strong=\"H3651\"* has|strong=\"H6213\"* done|strong=\"H6213\"* to|strong=\"H7725\"* me|strong=\"H7725\"*;" + }, + { + "verseNum": 30, + "text": "I|strong=\"H5921\"* went|strong=\"H5674\"* by|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"* of|strong=\"H7704\"* the|strong=\"H5921\"* sluggard|strong=\"H6102\"*," + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H6440\"* was|strong=\"H3605\"* all|strong=\"H3605\"* grown over|strong=\"H6440\"* with|strong=\"H6440\"* thorns|strong=\"H7063\"*." + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3947\"* I|strong=\"H7200\"* saw|strong=\"H7200\"*, and|strong=\"H7200\"* considered|strong=\"H7200\"* well|strong=\"H3820\"*." + }, + { + "verseNum": 33, + "text": "a|strong=\"H3068\"* little|strong=\"H4592\"* sleep|strong=\"H8142\"*, a|strong=\"H3068\"* little|strong=\"H4592\"* slumber|strong=\"H8572\"*," + }, + { + "verseNum": 34, + "text": "so|strong=\"H1980\"* your poverty|strong=\"H7389\"* will|strong=\"H7389\"* come|strong=\"H1980\"* as|strong=\"H1980\"* a|strong=\"H3068\"* robber|strong=\"H1980\"*" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "These|strong=\"H4428\"* also|strong=\"H1571\"* are|strong=\"H4428\"* proverbs|strong=\"H4912\"* of|strong=\"H4428\"* Solomon|strong=\"H8010\"*, which|strong=\"H3063\"* the|strong=\"H1571\"* men of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* copied|strong=\"H6275\"* out|strong=\"H6275\"*." + }, + { + "verseNum": 2, + "text": "It is|strong=\"H1697\"* the|strong=\"H1697\"* glory|strong=\"H3519\"* of|strong=\"H4428\"* God to|strong=\"H4428\"* conceal|strong=\"H5641\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "As|strong=\"H4428\"* the|strong=\"H3820\"* heavens|strong=\"H8064\"* for|strong=\"H4428\"* height|strong=\"H7312\"*, and|strong=\"H4428\"* the|strong=\"H3820\"* earth|strong=\"H8064\"* for|strong=\"H4428\"* depth|strong=\"H6011\"*," + }, + { + "verseNum": 4, + "text": "Take|strong=\"H3318\"* away|strong=\"H3318\"* the|strong=\"H3318\"* dross|strong=\"H5509\"* from|strong=\"H3318\"* the|strong=\"H3318\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 5, + "text": "Take|strong=\"H1898\"* away|strong=\"H1898\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"* from|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s presence|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "Don’t exalt yourself in|strong=\"H4428\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H2896\"* better|strong=\"H2896\"* that|strong=\"H3588\"* it|strong=\"H3588\"* be|strong=\"H5869\"* said to|strong=\"H5927\"* you|strong=\"H3588\"*, “Come|strong=\"H5927\"* up|strong=\"H5927\"* here|strong=\"H2008\"*,”" + }, + { + "verseNum": 8, + "text": "Don’t be|strong=\"H3318\"* hasty in|strong=\"H6213\"* bringing|strong=\"H3318\"* charges to|strong=\"H3318\"* court|strong=\"H3318\"*." + }, + { + "verseNum": 9, + "text": "Debate|strong=\"H7378\"* your|strong=\"H1540\"* case|strong=\"H7379\"* with|strong=\"H7378\"* your|strong=\"H1540\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 10, + "text": "lest|strong=\"H6435\"* one|strong=\"H3808\"* who|strong=\"H3808\"* hears|strong=\"H8085\"* it|strong=\"H7725\"* put|strong=\"H7725\"* you|strong=\"H7725\"* to|strong=\"H7725\"* shame|strong=\"H2616\"*," + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* word|strong=\"H1697\"* fitly spoken|strong=\"H1696\"*" + }, + { + "verseNum": 12, + "text": "As|strong=\"H5921\"* an|strong=\"H2091\"* earring|strong=\"H5141\"* of|strong=\"H5921\"* gold|strong=\"H2091\"*, and|strong=\"H2091\"* an|strong=\"H2091\"* ornament|strong=\"H2481\"* of|strong=\"H5921\"* fine|strong=\"H3800\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3117\"* the|strong=\"H3117\"* cold|strong=\"H6793\"* of|strong=\"H3117\"* snow|strong=\"H7950\"* in|strong=\"H3117\"* the|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* harvest|strong=\"H7105\"*," + }, + { + "verseNum": 14, + "text": "As|strong=\"H1984\"* clouds|strong=\"H5387\"* and|strong=\"H7307\"* wind|strong=\"H7307\"* without|strong=\"H7307\"* rain|strong=\"H1653\"*," + }, + { + "verseNum": 15, + "text": "By patience a|strong=\"H3068\"* ruler|strong=\"H7101\"* is|strong=\"H3956\"* persuaded|strong=\"H6601\"*." + }, + { + "verseNum": 16, + "text": "Have|strong=\"H7646\"* you|strong=\"H6435\"* found|strong=\"H4672\"* honey|strong=\"H1706\"*?" + }, + { + "verseNum": 17, + "text": "Let your|strong=\"H7646\"* foot|strong=\"H7272\"* be|strong=\"H1004\"* seldom in|strong=\"H1004\"* your|strong=\"H7646\"* neighbor|strong=\"H7453\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 18, + "text": "A|strong=\"H3068\"* man|strong=\"H6030\"* who|strong=\"H5707\"* gives false|strong=\"H8267\"* testimony|strong=\"H5707\"* against|strong=\"H2719\"* his|strong=\"H6030\"* neighbor|strong=\"H7453\"*" + }, + { + "verseNum": 19, + "text": "Confidence|strong=\"H4009\"* in|strong=\"H3117\"* someone unfaithful in|strong=\"H3117\"* time|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"*" + }, + { + "verseNum": 20, + "text": "As|strong=\"H3117\"* one who|strong=\"H7891\"* takes|strong=\"H5710\"* away|strong=\"H5710\"* a|strong=\"H3068\"* garment in|strong=\"H5921\"* cold|strong=\"H7135\"* weather|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "If your|strong=\"H8248\"* enemy|strong=\"H8130\"* is|strong=\"H4325\"* hungry|strong=\"H7457\"*, give|strong=\"H8248\"* him|strong=\"H8130\"* food|strong=\"H3899\"* to|strong=\"H4325\"* eat|strong=\"H3899\"*." + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* heap|strong=\"H2846\"* coals|strong=\"H1513\"* of|strong=\"H3068\"* fire|strong=\"H1513\"* on|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"*," + }, + { + "verseNum": 23, + "text": "The|strong=\"H6440\"* north|strong=\"H6828\"* wind|strong=\"H7307\"* produces rain|strong=\"H1653\"*;" + }, + { + "verseNum": 24, + "text": "It|strong=\"H5921\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H5921\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* corner|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* housetop|strong=\"H1406\"*" + }, + { + "verseNum": 25, + "text": "Like|strong=\"H2896\"* cold|strong=\"H7119\"* water|strong=\"H4325\"* to|strong=\"H5921\"* a|strong=\"H3068\"* thirsty|strong=\"H5889\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "Like|strong=\"H6440\"* a|strong=\"H3068\"* muddied spring|strong=\"H4599\"* and|strong=\"H6440\"* a|strong=\"H3068\"* polluted|strong=\"H7843\"* well|strong=\"H4726\"*," + }, + { + "verseNum": 27, + "text": "It|strong=\"H3808\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"* to|strong=\"H2896\"* eat much|strong=\"H7235\"* honey|strong=\"H1706\"*," + }, + { + "verseNum": 28, + "text": "Like|strong=\"H7307\"* a|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* is|strong=\"H5892\"* broken|strong=\"H6555\"* down|strong=\"H6555\"* and|strong=\"H5892\"* without|strong=\"H7307\"* walls|strong=\"H2346\"*" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "Like|strong=\"H3651\"* snow|strong=\"H7950\"* in|strong=\"H3808\"* summer|strong=\"H7019\"*, and|strong=\"H3519\"* as|strong=\"H3651\"* rain|strong=\"H4306\"* in|strong=\"H3808\"* harvest|strong=\"H7105\"*," + }, + { + "verseNum": 2, + "text": "Like|strong=\"H3651\"* a|strong=\"H3068\"* fluttering sparrow|strong=\"H6833\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* whip|strong=\"H7752\"* is|strong=\"H3684\"* for|strong=\"H5483\"* the|strong=\"H7626\"* horse|strong=\"H5483\"*," + }, + { + "verseNum": 4, + "text": "Don’t answer|strong=\"H6030\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* according to|strong=\"H6030\"* his|strong=\"H6030\"* folly," + }, + { + "verseNum": 5, + "text": "Answer|strong=\"H6030\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* according to|strong=\"H1961\"* his|strong=\"H1961\"* folly," + }, + { + "verseNum": 6, + "text": "One|strong=\"H1697\"* who|strong=\"H8354\"* sends|strong=\"H7971\"* a|strong=\"H3068\"* message|strong=\"H1697\"* by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*" + }, + { + "verseNum": 7, + "text": "Like|strong=\"H1809\"* the|strong=\"H6310\"* legs|strong=\"H7785\"* of|strong=\"H6310\"* the|strong=\"H6310\"* lame|strong=\"H6455\"* that|strong=\"H6310\"* hang|strong=\"H1809\"* loose," + }, + { + "verseNum": 8, + "text": "As|strong=\"H3651\"* one|strong=\"H3651\"* who|strong=\"H3684\"* binds|strong=\"H6887\"* a|strong=\"H3068\"* stone in|strong=\"H5414\"* a|strong=\"H3068\"* sling|strong=\"H4773\"*," + }, + { + "verseNum": 9, + "text": "Like|strong=\"H5927\"* a|strong=\"H3068\"* thorn|strong=\"H2336\"* bush|strong=\"H2336\"* that|strong=\"H3027\"* goes|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5927\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* drunkard|strong=\"H7910\"*," + }, + { + "verseNum": 10, + "text": "As|strong=\"H3605\"* an|strong=\"H5674\"* archer who|strong=\"H3605\"* wounds|strong=\"H2342\"* all|strong=\"H3605\"*," + }, + { + "verseNum": 11, + "text": "As|strong=\"H7725\"* a|strong=\"H3068\"* dog|strong=\"H3611\"* that|strong=\"H7725\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* vomit|strong=\"H6892\"*," + }, + { + "verseNum": 12, + "text": "Do|strong=\"H5869\"* you|strong=\"H7200\"* see|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H2450\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* his|strong=\"H7200\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*?" + }, + { + "verseNum": 13, + "text": "The|strong=\"H1870\"* sluggard|strong=\"H6102\"* says, “There is|strong=\"H1870\"* a|strong=\"H3068\"* lion|strong=\"H7826\"* in|strong=\"H1870\"* the|strong=\"H1870\"* road|strong=\"H1870\"*!" + }, + { + "verseNum": 14, + "text": "As|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H1817\"* turns|strong=\"H5921\"* on|strong=\"H5921\"* its|strong=\"H5921\"* hinges|strong=\"H6735\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* buries|strong=\"H2934\"* his|strong=\"H7725\"* hand|strong=\"H3027\"* in|strong=\"H7725\"* the|strong=\"H7725\"* dish|strong=\"H6747\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H7725\"* sluggard|strong=\"H6102\"* is|strong=\"H5869\"* wiser|strong=\"H2450\"* in|strong=\"H7725\"* his|strong=\"H7725\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*" + }, + { + "verseNum": 17, + "text": "Like|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3808\"* grabs a|strong=\"H3068\"* dog|strong=\"H3611\"*’s ears" + }, + { + "verseNum": 18, + "text": "Like a|strong=\"H3068\"* madman who shoots torches, arrows|strong=\"H2671\"*, and|strong=\"H4194\"* death|strong=\"H4194\"*," + }, + { + "verseNum": 19, + "text": "is|strong=\"H3651\"* the|strong=\"H3651\"* man who|strong=\"H3808\"* deceives|strong=\"H7411\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"* and|strong=\"H7453\"* says, “Am I|strong=\"H3651\"* not|strong=\"H3808\"* joking|strong=\"H7832\"*?”" + }, + { + "verseNum": 20, + "text": "For|strong=\"H6086\"* lack of|strong=\"H6086\"* wood|strong=\"H6086\"* a|strong=\"H3068\"* fire goes|strong=\"H3518\"* out|strong=\"H3518\"*." + }, + { + "verseNum": 21, + "text": "As coals|strong=\"H1513\"* are to|strong=\"H6086\"* hot|strong=\"H1513\"* embers|strong=\"H1513\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* whisperer|strong=\"H5372\"* are|strong=\"H1992\"* as|strong=\"H1697\"* dainty|strong=\"H3859\"* morsels|strong=\"H3859\"*," + }, + { + "verseNum": 23, + "text": "Like|strong=\"H3820\"* silver|strong=\"H3701\"* dross|strong=\"H5509\"* on|strong=\"H5921\"* an|strong=\"H5921\"* earthen|strong=\"H2789\"* vessel|strong=\"H2789\"*" + }, + { + "verseNum": 24, + "text": "A|strong=\"H3068\"* malicious man disguises himself|strong=\"H5234\"* with|strong=\"H8193\"* his|strong=\"H7130\"* lips|strong=\"H8193\"*," + }, + { + "verseNum": 25, + "text": "When|strong=\"H3588\"* his|strong=\"H3588\"* speech is|strong=\"H3820\"* charming, don’t believe him|strong=\"H6963\"*," + }, + { + "verseNum": 26, + "text": "His|strong=\"H1540\"* malice may|strong=\"H6951\"* be|strong=\"H7451\"* concealed by|strong=\"H7451\"* deception," + }, + { + "verseNum": 27, + "text": "Whoever digs|strong=\"H3738\"* a|strong=\"H3068\"* pit|strong=\"H7845\"* shall|strong=\"H7845\"* fall|strong=\"H5307\"* into|strong=\"H7725\"* it|strong=\"H7725\"*." + }, + { + "verseNum": 28, + "text": "A|strong=\"H3068\"* lying|strong=\"H8267\"* tongue|strong=\"H3956\"* hates|strong=\"H8130\"* those|strong=\"H6213\"* it|strong=\"H6213\"* hurts;" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Don’t boast|strong=\"H1984\"* about|strong=\"H3045\"* tomorrow|strong=\"H4279\"*;" + }, + { + "verseNum": 2, + "text": "Let|strong=\"H3808\"* another|strong=\"H6310\"* man|strong=\"H2114\"* praise|strong=\"H1984\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* stone is|strong=\"H3708\"* heavy|strong=\"H3515\"*," + }, + { + "verseNum": 4, + "text": "Wrath|strong=\"H2534\"* is|strong=\"H4310\"* cruel," + }, + { + "verseNum": 5, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* open|strong=\"H1540\"* rebuke|strong=\"H8433\"*" + }, + { + "verseNum": 6, + "text": "The|strong=\"H8130\"* wounds|strong=\"H6482\"* of|strong=\"H8130\"* a|strong=\"H3068\"* friend are faithful," + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* full|strong=\"H7649\"* soul|strong=\"H5315\"* loathes a|strong=\"H3068\"* honeycomb|strong=\"H5317\"*;" + }, + { + "verseNum": 8, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* that|strong=\"H3651\"* wanders|strong=\"H5074\"* from|strong=\"H4480\"* her|strong=\"H3651\"* nest|strong=\"H7064\"*," + }, + { + "verseNum": 9, + "text": "Perfume|strong=\"H7004\"* and|strong=\"H8081\"* incense|strong=\"H7004\"* bring joy|strong=\"H8055\"* to|strong=\"H3820\"* the|strong=\"H8055\"* heart|strong=\"H3820\"*;" + }, + { + "verseNum": 10, + "text": "Don’t forsake|strong=\"H5800\"* your|strong=\"H5800\"* friend|strong=\"H7453\"* and|strong=\"H3117\"* your|strong=\"H5800\"* father’s friend|strong=\"H7453\"*." + }, + { + "verseNum": 11, + "text": "Be|strong=\"H1697\"* wise|strong=\"H2449\"*, my|strong=\"H7725\"* son|strong=\"H1121\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* prudent|strong=\"H6175\"* man|strong=\"H6175\"* sees|strong=\"H7200\"* danger|strong=\"H7451\"* and|strong=\"H7200\"* takes refuge;" + }, + { + "verseNum": 13, + "text": "Take|strong=\"H3947\"* his|strong=\"H3947\"* garment when|strong=\"H3588\"* he|strong=\"H3588\"* puts|strong=\"H2114\"* up|strong=\"H3947\"* collateral|strong=\"H6148\"* for|strong=\"H3588\"* a|strong=\"H3068\"* stranger|strong=\"H2114\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1242\"* who blesses|strong=\"H1288\"* his|strong=\"H1288\"* neighbor|strong=\"H7453\"* with|strong=\"H6963\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* early|strong=\"H7925\"* in|strong=\"H1419\"* the|strong=\"H1288\"* morning|strong=\"H1242\"*," + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* continual|strong=\"H2956\"* dropping|strong=\"H1812\"* on|strong=\"H3117\"* a|strong=\"H3068\"* rainy|strong=\"H5464\"* day|strong=\"H3117\"*" + }, + { + "verseNum": 16, + "text": "restraining her|strong=\"H7121\"* is|strong=\"H7307\"* like|strong=\"H7307\"* restraining the|strong=\"H7121\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 17, + "text": "Iron|strong=\"H1270\"* sharpens|strong=\"H2300\"* iron|strong=\"H1270\"*;" + }, + { + "verseNum": 18, + "text": "Whoever|strong=\"H8104\"* tends|strong=\"H5341\"* the|strong=\"H8104\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* shall|strong=\"H5341\"* eat its|strong=\"H8104\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 19, + "text": "Like|strong=\"H3651\"* water|strong=\"H4325\"* reflects a|strong=\"H3068\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 20, + "text": "Sheol|strong=\"H7585\"*+ 27:20 Sheol is the place of the dead.* and|strong=\"H5869\"* Abaddon are|strong=\"H5869\"* never|strong=\"H3808\"* satisfied|strong=\"H7646\"*;" + }, + { + "verseNum": 21, + "text": "The|strong=\"H6310\"* crucible|strong=\"H4715\"* is|strong=\"H3701\"* for|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 22, + "text": "Though you|strong=\"H5921\"* grind a|strong=\"H3068\"* fool in|strong=\"H5921\"* a|strong=\"H3068\"* mortar|strong=\"H4388\"* with|strong=\"H5921\"* a|strong=\"H3068\"* pestle|strong=\"H5940\"* along|strong=\"H5921\"* with|strong=\"H5921\"* grain|strong=\"H7383\"*," + }, + { + "verseNum": 23, + "text": "Know|strong=\"H3045\"* well|strong=\"H3820\"* the|strong=\"H6440\"* state|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H6440\"* flocks|strong=\"H6629\"*," + }, + { + "verseNum": 24, + "text": "for|strong=\"H3588\"* riches|strong=\"H2633\"* are|strong=\"H5145\"* not|strong=\"H3808\"* forever|strong=\"H5769\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H7200\"* hay|strong=\"H2682\"* is|strong=\"H1877\"* removed|strong=\"H1540\"*, and|strong=\"H7200\"* the|strong=\"H7200\"* new|strong=\"H1877\"* growth|strong=\"H1877\"* appears|strong=\"H7200\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H7704\"* lambs|strong=\"H3532\"* are for|strong=\"H7704\"* your clothing|strong=\"H3830\"*," + }, + { + "verseNum": 27, + "text": "There will|strong=\"H1004\"* be|strong=\"H1004\"* plenty|strong=\"H1767\"* of|strong=\"H1004\"* goats|strong=\"H5795\"*’ milk|strong=\"H2461\"* for|strong=\"H1004\"* your|strong=\"H1004\"* food|strong=\"H3899\"*," + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7291\"* wicked|strong=\"H7563\"* flee|strong=\"H5127\"* when|strong=\"H5127\"* no|strong=\"H7563\"* one|strong=\"H6662\"* pursues|strong=\"H7291\"*;" + }, + { + "verseNum": 2, + "text": "In|strong=\"H7227\"* rebellion|strong=\"H6588\"*, a|strong=\"H3068\"* land has|strong=\"H3045\"* many|strong=\"H7227\"* rulers|strong=\"H8269\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* needy|strong=\"H1800\"* man|strong=\"H1397\"* who|strong=\"H1397\"* oppresses|strong=\"H6231\"* the|strong=\"H6231\"* poor|strong=\"H1800\"*" + }, + { + "verseNum": 4, + "text": "Those who|strong=\"H8104\"* forsake|strong=\"H5800\"* the|strong=\"H8104\"* law|strong=\"H8451\"* praise|strong=\"H1984\"* the|strong=\"H8104\"* wicked|strong=\"H7563\"*;" + }, + { + "verseNum": 5, + "text": "Evil|strong=\"H7451\"* men|strong=\"H7451\"* don’t understand justice|strong=\"H4941\"*;" + }, + { + "verseNum": 6, + "text": "Better|strong=\"H2896\"* is|strong=\"H1931\"* the|strong=\"H1870\"* poor|strong=\"H7326\"* who|strong=\"H1931\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* his|strong=\"H1980\"* integrity|strong=\"H8537\"*" + }, + { + "verseNum": 7, + "text": "Whoever keeps|strong=\"H5341\"* the|strong=\"H5341\"* law|strong=\"H8451\"* is|strong=\"H1121\"* a|strong=\"H3068\"* wise son|strong=\"H1121\"*;" + }, + { + "verseNum": 8, + "text": "He|strong=\"H7235\"* who|strong=\"H1800\"* increases|strong=\"H7235\"* his|strong=\"H7235\"* wealth|strong=\"H1952\"* by|strong=\"H6908\"* excessive interest|strong=\"H5392\"*" + }, + { + "verseNum": 9, + "text": "He|strong=\"H1571\"* who|strong=\"H5493\"* turns|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H8085\"* ear|strong=\"H8085\"* from|strong=\"H5493\"* hearing|strong=\"H8085\"* the|strong=\"H8085\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 10, + "text": "Whoever causes the|strong=\"H1870\"* upright|strong=\"H3477\"* to|strong=\"H1870\"* go|strong=\"H7686\"* astray|strong=\"H7686\"* in|strong=\"H3477\"* an|strong=\"H5157\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5869\"* rich|strong=\"H6223\"* man|strong=\"H2450\"* is|strong=\"H5869\"* wise|strong=\"H2450\"* in|strong=\"H2450\"* his|strong=\"H5869\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 12, + "text": "When|strong=\"H6965\"* the|strong=\"H6965\"* righteous|strong=\"H6662\"* triumph|strong=\"H5970\"*, there|strong=\"H6965\"* is|strong=\"H7563\"* great|strong=\"H7227\"* glory|strong=\"H8597\"*;" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* who|strong=\"H3808\"* conceals|strong=\"H3680\"* his|strong=\"H5800\"* sins|strong=\"H6588\"* doesn’t prosper|strong=\"H6743\"*," + }, + { + "verseNum": 14, + "text": "Blessed is|strong=\"H3820\"* the|strong=\"H5307\"* man|strong=\"H7451\"* who always|strong=\"H8548\"* fears|strong=\"H6342\"*;" + }, + { + "verseNum": 15, + "text": "As|strong=\"H5971\"* a|strong=\"H3068\"* roaring|strong=\"H5098\"* lion or|strong=\"H1800\"* a|strong=\"H3068\"* charging bear|strong=\"H1677\"*," + }, + { + "verseNum": 16, + "text": "A|strong=\"H3068\"* tyrannical ruler|strong=\"H5057\"* lacks|strong=\"H2638\"* judgment." + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* man|strong=\"H5315\"* who|strong=\"H5315\"* is|strong=\"H5315\"* tormented by|strong=\"H5704\"* blood|strong=\"H1818\"* guilt|strong=\"H1818\"* will|strong=\"H5315\"* be|strong=\"H5315\"* a|strong=\"H3068\"* fugitive|strong=\"H5127\"* until|strong=\"H5704\"* death|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "Whoever walks|strong=\"H1980\"* blamelessly|strong=\"H8549\"* is|strong=\"H1870\"* kept safe|strong=\"H3467\"*;" + }, + { + "verseNum": 19, + "text": "One who works|strong=\"H5647\"* his|strong=\"H5647\"* land will|strong=\"H7389\"* have|strong=\"H7646\"* an|strong=\"H7291\"* abundance|strong=\"H7646\"* of|strong=\"H3899\"* food|strong=\"H3899\"*;" + }, + { + "verseNum": 20, + "text": "A|strong=\"H3068\"* faithful man is|strong=\"H3808\"* rich|strong=\"H6238\"* with|strong=\"H1293\"* blessings|strong=\"H1293\"*;" + }, + { + "verseNum": 21, + "text": "To|strong=\"H5921\"* show|strong=\"H5234\"* partiality|strong=\"H5234\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* stingy man|strong=\"H7451\"* hurries after|strong=\"H3588\"* riches|strong=\"H1952\"*," + }, + { + "verseNum": 23, + "text": "One|strong=\"H3956\"* who|strong=\"H4672\"* rebukes|strong=\"H3198\"* a|strong=\"H3068\"* man will|strong=\"H3956\"* afterward find|strong=\"H4672\"* more|strong=\"H4672\"* favor|strong=\"H2580\"*" + }, + { + "verseNum": 24, + "text": "Whoever robs|strong=\"H1497\"* his|strong=\"H7843\"* father or his|strong=\"H7843\"* mother and|strong=\"H7843\"* says, “It|strong=\"H1931\"*’s not wrong,”" + }, + { + "verseNum": 25, + "text": "One|strong=\"H5315\"* who|strong=\"H3068\"* is|strong=\"H3068\"* greedy|strong=\"H5315\"* stirs|strong=\"H1624\"* up|strong=\"H1624\"* strife|strong=\"H4066\"*;" + }, + { + "verseNum": 26, + "text": "One|strong=\"H1931\"* who|strong=\"H1931\"* trusts in|strong=\"H1980\"* himself|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*;" + }, + { + "verseNum": 27, + "text": "One|strong=\"H7227\"* who|strong=\"H7227\"* gives|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* poor|strong=\"H7326\"* has|strong=\"H5869\"* no|strong=\"H5414\"* lack|strong=\"H4270\"*;" + }, + { + "verseNum": 28, + "text": "When|strong=\"H7235\"* the|strong=\"H6965\"* wicked|strong=\"H7563\"* rise|strong=\"H6965\"*, men|strong=\"H7563\"* hide|strong=\"H5641\"* themselves|strong=\"H5641\"*;" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "He who is|strong=\"H8433\"* often rebuked and|strong=\"H7665\"* stiffens his|strong=\"H7665\"* neck|strong=\"H6203\"*" + }, + { + "verseNum": 2, + "text": "When|strong=\"H7235\"* the|strong=\"H8055\"* righteous|strong=\"H6662\"* thrive, the|strong=\"H8055\"* people|strong=\"H5971\"* rejoice|strong=\"H8055\"*;" + }, + { + "verseNum": 3, + "text": "Whoever loves wisdom|strong=\"H2451\"* brings joy|strong=\"H8055\"* to|strong=\"H8055\"* his|strong=\"H7462\"* father;" + }, + { + "verseNum": 4, + "text": "The|strong=\"H5975\"* king|strong=\"H4428\"* by|strong=\"H5975\"* justice|strong=\"H4941\"* makes the|strong=\"H5975\"* land stable," + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* man|strong=\"H1397\"* who|strong=\"H1397\"* flatters|strong=\"H2505\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*" + }, + { + "verseNum": 6, + "text": "An|strong=\"H6588\"* evil|strong=\"H7451\"* man|strong=\"H6662\"* is|strong=\"H6662\"* snared|strong=\"H4170\"* by|strong=\"H7451\"* his|strong=\"H8055\"* sin|strong=\"H6588\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3045\"* righteous|strong=\"H6662\"* care about|strong=\"H3045\"* justice|strong=\"H1779\"* for|strong=\"H3045\"* the|strong=\"H3045\"* poor|strong=\"H1800\"*." + }, + { + "verseNum": 8, + "text": "Mockers stir up|strong=\"H7725\"* a|strong=\"H3068\"* city|strong=\"H7151\"*," + }, + { + "verseNum": 9, + "text": "If a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* goes|strong=\"H8199\"* to|strong=\"H2450\"* court with|strong=\"H8199\"* a|strong=\"H3068\"* foolish man|strong=\"H2450\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H1245\"* bloodthirsty hate|strong=\"H8130\"* a|strong=\"H3068\"* man|strong=\"H5315\"* of|strong=\"H1818\"* integrity|strong=\"H8535\"*;" + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* fool|strong=\"H3684\"* vents all|strong=\"H3605\"* of|strong=\"H7307\"* his|strong=\"H3605\"* anger|strong=\"H7307\"*," + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* ruler|strong=\"H4910\"* listens|strong=\"H7181\"* to|strong=\"H5921\"* lies|strong=\"H8267\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H3068\"* poor|strong=\"H7326\"* man|strong=\"H7326\"* and|strong=\"H3068\"* the|strong=\"H3068\"* oppressor have|strong=\"H3068\"* this|strong=\"H3068\"* in|strong=\"H3068\"* common|strong=\"H6298\"*:" + }, + { + "verseNum": 14, + "text": "The|strong=\"H8199\"* king|strong=\"H4428\"* who|strong=\"H4428\"* fairly judges|strong=\"H8199\"* the|strong=\"H8199\"* poor|strong=\"H1800\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H5414\"* rod|strong=\"H7626\"* of|strong=\"H7626\"* correction|strong=\"H7626\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 16, + "text": "When|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* increase|strong=\"H7235\"*, sin|strong=\"H6588\"* increases|strong=\"H7235\"*;" + }, + { + "verseNum": 17, + "text": "Correct|strong=\"H3256\"* your|strong=\"H5414\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H5414\"* will|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* peace|strong=\"H5117\"*;" + }, + { + "verseNum": 18, + "text": "Where there is|strong=\"H8451\"* no revelation, the|strong=\"H8104\"* people|strong=\"H5971\"* cast off restraint|strong=\"H6544\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* servant|strong=\"H5650\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* corrected|strong=\"H3256\"* by|strong=\"H3808\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 20, + "text": "Do|strong=\"H1697\"* you|strong=\"H4480\"* see|strong=\"H2372\"* a|strong=\"H3068\"* man|strong=\"H3684\"* who|strong=\"H3684\"* is|strong=\"H1697\"* hasty in|strong=\"H1697\"* his|strong=\"H4480\"* words|strong=\"H1697\"*?" + }, + { + "verseNum": 21, + "text": "He who|strong=\"H5650\"* pampers|strong=\"H6445\"* his|strong=\"H1961\"* servant|strong=\"H5650\"* from|strong=\"H1961\"* youth|strong=\"H5290\"*" + }, + { + "verseNum": 22, + "text": "An|strong=\"H1624\"* angry|strong=\"H2534\"* man|strong=\"H1167\"* stirs|strong=\"H1624\"* up|strong=\"H1624\"* strife|strong=\"H4066\"*," + }, + { + "verseNum": 23, + "text": "A|strong=\"H3068\"* man|strong=\"H8213\"*’s pride|strong=\"H1346\"* brings|strong=\"H8213\"* him|strong=\"H8213\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 24, + "text": "Whoever is|strong=\"H5315\"* an|strong=\"H8085\"* accomplice of|strong=\"H5315\"* a|strong=\"H3068\"* thief|strong=\"H1590\"* is|strong=\"H5315\"* an|strong=\"H8085\"* enemy|strong=\"H8130\"* of|strong=\"H5315\"* his|strong=\"H8085\"* own|strong=\"H5315\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 25, + "text": "The|strong=\"H5414\"* fear|strong=\"H2731\"* of|strong=\"H3068\"* man proves to|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* snare|strong=\"H4170\"*," + }, + { + "verseNum": 26, + "text": "Many|strong=\"H7227\"* seek|strong=\"H1245\"* the|strong=\"H6440\"* ruler|strong=\"H4910\"*’s favor|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "A|strong=\"H3068\"* dishonest man|strong=\"H7563\"* detests the|strong=\"H1870\"* righteous|strong=\"H6662\"*," + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5002\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Agur the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jakeh|strong=\"H3348\"*, the|strong=\"H5002\"* revelation:" + }, + { + "verseNum": 2, + "text": "“Surely|strong=\"H3588\"* I|strong=\"H3588\"* am the|strong=\"H3588\"* most ignorant|strong=\"H3808\"* man," + }, + { + "verseNum": 3, + "text": "I|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3808\"* learned|strong=\"H3925\"* wisdom|strong=\"H2451\"*," + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* ascended|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H3381\"* heaven|strong=\"H8064\"*, and|strong=\"H1121\"* descended|strong=\"H3381\"*?" + }, + { + "verseNum": 5, + "text": "“Every|strong=\"H3605\"* word of|strong=\"H3605\"* God is|strong=\"H1931\"* flawless." + }, + { + "verseNum": 6, + "text": "Don’t you|strong=\"H5921\"* add|strong=\"H3254\"* to|strong=\"H5921\"* his|strong=\"H5921\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "“Two|strong=\"H8147\"* things|strong=\"H8147\"* I|strong=\"H2962\"* have|strong=\"H8147\"* asked|strong=\"H7592\"* of|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 8, + "text": "Remove|strong=\"H7368\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H5414\"* falsehood|strong=\"H7723\"* and|strong=\"H3899\"* lies|strong=\"H3577\"*." + }, + { + "verseNum": 9, + "text": "lest|strong=\"H6435\"* I|strong=\"H3068\"* be|strong=\"H3068\"* full|strong=\"H7646\"*, deny|strong=\"H3584\"* you|strong=\"H6435\"*, and|strong=\"H3068\"* say, ‘Who|strong=\"H4310\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’" + }, + { + "verseNum": 10, + "text": "“Don’t slander|strong=\"H3960\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* to|strong=\"H5650\"* his|strong=\"H7043\"* master," + }, + { + "verseNum": 11, + "text": "There is|strong=\"H1288\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* that|strong=\"H3808\"* curses|strong=\"H7043\"* their|strong=\"H3808\"* father," + }, + { + "verseNum": 12, + "text": "There is|strong=\"H5869\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* that|strong=\"H5869\"* is|strong=\"H5869\"* pure|strong=\"H2889\"* in|strong=\"H7364\"* their|strong=\"H7364\"* own|strong=\"H5869\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 13, + "text": "There is|strong=\"H4100\"* a|strong=\"H3068\"* generation|strong=\"H1755\"*, oh how|strong=\"H4100\"* lofty|strong=\"H7311\"* are|strong=\"H5869\"* their|strong=\"H5375\"* eyes|strong=\"H5869\"*!" + }, + { + "verseNum": 14, + "text": "There is|strong=\"H2719\"* a|strong=\"H3068\"* generation|strong=\"H1755\"* whose teeth|strong=\"H8127\"* are|strong=\"H8127\"* like swords|strong=\"H2719\"*," + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3808\"* leech|strong=\"H5936\"* has|strong=\"H5936\"* two|strong=\"H8147\"* daughters|strong=\"H1323\"*:" + }, + { + "verseNum": 16, + "text": "Sheol|strong=\"H7585\"*,+ 30:16 Sheol is the place of the dead.*" + }, + { + "verseNum": 17, + "text": "“The|strong=\"H5869\"* eye|strong=\"H5869\"* that|strong=\"H1121\"* mocks|strong=\"H3932\"* at|strong=\"H5869\"* his|strong=\"H5869\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 18, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* three|strong=\"H7969\"* things|strong=\"H6381\"* which|strong=\"H1992\"* are|strong=\"H1992\"* too|strong=\"H4480\"* amazing|strong=\"H6381\"* for|strong=\"H3045\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* an|strong=\"H5921\"* eagle|strong=\"H5404\"* in|strong=\"H5921\"* the|strong=\"H5921\"* air|strong=\"H8064\"*," + }, + { + "verseNum": 20, + "text": "“So|strong=\"H3651\"* is|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1870\"* an adulterous|strong=\"H5003\"* woman:" + }, + { + "verseNum": 21, + "text": "“For|strong=\"H8478\"* three|strong=\"H7969\"* things|strong=\"H7969\"* the|strong=\"H5375\"* earth trembles|strong=\"H7264\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H5650\"* king|strong=\"H4427\"*," + }, + { + "verseNum": 23, + "text": "for|strong=\"H3588\"* an|strong=\"H3588\"* unloved|strong=\"H8130\"* woman|strong=\"H8130\"* when|strong=\"H3588\"* she|strong=\"H3588\"* is|strong=\"H3588\"* married|strong=\"H1166\"*," + }, + { + "verseNum": 24, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* four things|strong=\"H6996\"* which|strong=\"H1992\"* are|strong=\"H1992\"* little|strong=\"H6996\"* on the|strong=\"H1992\"* earth," + }, + { + "verseNum": 25, + "text": "The|strong=\"H3559\"* ants|strong=\"H5244\"* are|strong=\"H5971\"* not|strong=\"H3808\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "The|strong=\"H7760\"* hyraxes are|strong=\"H5971\"* but|strong=\"H3808\"* a|strong=\"H3068\"* feeble|strong=\"H6099\"* folk|strong=\"H5971\"*," + }, + { + "verseNum": 27, + "text": "The|strong=\"H3605\"* locusts have|strong=\"H3605\"* no|strong=\"H3605\"* king|strong=\"H4428\"*," + }, + { + "verseNum": 28, + "text": "You|strong=\"H3027\"* can catch|strong=\"H8610\"* a|strong=\"H3068\"* lizard|strong=\"H8079\"* with|strong=\"H3027\"* your|strong=\"H3027\"* hands|strong=\"H3027\"*," + }, + { + "verseNum": 29, + "text": "“There|strong=\"H1992\"* are|strong=\"H1992\"* three|strong=\"H7969\"* things|strong=\"H7969\"* which|strong=\"H1992\"* are|strong=\"H1992\"* stately|strong=\"H3190\"* in|strong=\"H3212\"* their|strong=\"H1992\"* march|strong=\"H3212\"*," + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* lion|strong=\"H3918\"*, which|strong=\"H1368\"* is|strong=\"H3605\"* mightiest|strong=\"H1368\"* among|strong=\"H1368\"* animals," + }, + { + "verseNum": 31, + "text": "the|strong=\"H5973\"* greyhound|strong=\"H4975\"*;" + }, + { + "verseNum": 32, + "text": "“If you|strong=\"H3027\"* have|strong=\"H3027\"* done|strong=\"H3027\"* foolishly|strong=\"H5034\"* in|strong=\"H3027\"* lifting up|strong=\"H5375\"* yourself|strong=\"H5375\"*," + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* churning|strong=\"H4330\"* of|strong=\"H1818\"* milk|strong=\"H2461\"* produces|strong=\"H3318\"* butter|strong=\"H2529\"*," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Lemuel|strong=\"H3927\"*—the|strong=\"H1697\"* revelation which|strong=\"H1697\"* his|strong=\"H4428\"* mother taught|strong=\"H3256\"* him|strong=\"H4428\"*:" + }, + { + "verseNum": 2, + "text": "“Oh, my|strong=\"H4100\"* son|strong=\"H1248\"*!" + }, + { + "verseNum": 3, + "text": "Don’t give|strong=\"H5414\"* your|strong=\"H5414\"* strength|strong=\"H2428\"* to|strong=\"H5414\"* women," + }, + { + "verseNum": 4, + "text": "It|strong=\"H8354\"* is|strong=\"H4428\"* not|strong=\"H8354\"* for|strong=\"H4428\"* kings|strong=\"H4428\"*, Lemuel|strong=\"H3927\"*," + }, + { + "verseNum": 5, + "text": "lest|strong=\"H6435\"* they|strong=\"H3605\"* drink|strong=\"H8354\"*, and|strong=\"H1121\"* forget|strong=\"H7911\"* the|strong=\"H3605\"* law|strong=\"H2710\"*," + }, + { + "verseNum": 6, + "text": "Give|strong=\"H5414\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5315\"* is|strong=\"H5315\"* ready to|strong=\"H5414\"* perish," + }, + { + "verseNum": 7, + "text": "Let|strong=\"H3808\"* him|strong=\"H2142\"* drink|strong=\"H8354\"*, and|strong=\"H8354\"* forget|strong=\"H7911\"* his|strong=\"H2142\"* poverty|strong=\"H7389\"*," + }, + { + "verseNum": 8, + "text": "Open|strong=\"H6605\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"* for|strong=\"H1121\"* the|strong=\"H3605\"* mute," + }, + { + "verseNum": 9, + "text": "Open|strong=\"H6605\"* your|strong=\"H6605\"* mouth|strong=\"H6310\"*, judge|strong=\"H8199\"* righteously|strong=\"H6664\"*," + }, + { + "verseNum": 10, + "text": "+ 31:10 Proverbs 31:10-31 form an acrostic, with each verse starting with each letter of the Hebrew alphabet, in order.*Who|strong=\"H4310\"* can|strong=\"H4310\"* find|strong=\"H4672\"* a|strong=\"H3068\"* worthy|strong=\"H2428\"* woman?" + }, + { + "verseNum": 11, + "text": "The|strong=\"H3808\"* heart|strong=\"H3820\"* of|strong=\"H1167\"* her|strong=\"H3820\"* husband|strong=\"H1167\"* trusts in|strong=\"H3808\"* her|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "She|strong=\"H3808\"* does|strong=\"H3808\"* him|strong=\"H3605\"* good|strong=\"H2896\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* harm|strong=\"H7451\"*," + }, + { + "verseNum": 13, + "text": "She|strong=\"H3709\"* seeks|strong=\"H1875\"* wool|strong=\"H6785\"* and|strong=\"H6213\"* flax|strong=\"H6593\"*," + }, + { + "verseNum": 14, + "text": "She is|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* merchant|strong=\"H5503\"* ships." + }, + { + "verseNum": 15, + "text": "She|strong=\"H6965\"* rises|strong=\"H6965\"* also|strong=\"H5750\"* while|strong=\"H5750\"* it|strong=\"H5414\"* is|strong=\"H1004\"* yet|strong=\"H5750\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 16, + "text": "She|strong=\"H3709\"* considers|strong=\"H2161\"* a|strong=\"H3068\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* buys|strong=\"H3947\"* it|strong=\"H3947\"*." + }, + { + "verseNum": 17, + "text": "She arms|strong=\"H2220\"* her|strong=\"H2296\"* waist|strong=\"H4975\"* with|strong=\"H2296\"* strength|strong=\"H5797\"*," + }, + { + "verseNum": 18, + "text": "She|strong=\"H3588\"* perceives that|strong=\"H3588\"* her|strong=\"H5504\"* merchandise|strong=\"H5504\"* is|strong=\"H2896\"* profitable." + }, + { + "verseNum": 19, + "text": "She|strong=\"H3709\"* lays her|strong=\"H7971\"* hands|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* distaff|strong=\"H6418\"*," + }, + { + "verseNum": 20, + "text": "She|strong=\"H3709\"* opens her|strong=\"H7971\"* arms|strong=\"H3027\"* to|strong=\"H7971\"* the|strong=\"H7971\"* poor|strong=\"H6041\"*;" + }, + { + "verseNum": 21, + "text": "She|strong=\"H3588\"* is|strong=\"H3605\"* not|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* the|strong=\"H3605\"* snow|strong=\"H7950\"* for|strong=\"H3588\"* her|strong=\"H3605\"* household|strong=\"H1004\"*," + }, + { + "verseNum": 22, + "text": "She makes|strong=\"H6213\"* for|strong=\"H6213\"* herself carpets of|strong=\"H6213\"* tapestry|strong=\"H4765\"*." + }, + { + "verseNum": 23, + "text": "Her|strong=\"H3045\"* husband|strong=\"H1167\"* is|strong=\"H1167\"* respected in|strong=\"H3427\"* the|strong=\"H3045\"* gates|strong=\"H8179\"*," + }, + { + "verseNum": 24, + "text": "She makes|strong=\"H6213\"* linen|strong=\"H5466\"* garments|strong=\"H5466\"* and|strong=\"H6213\"* sells|strong=\"H4376\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 25, + "text": "Strength|strong=\"H5797\"* and|strong=\"H3117\"* dignity|strong=\"H1926\"* are|strong=\"H3117\"* her|strong=\"H3117\"* clothing|strong=\"H3830\"*." + }, + { + "verseNum": 26, + "text": "She|strong=\"H5921\"* opens|strong=\"H6605\"* her|strong=\"H5921\"* mouth|strong=\"H6310\"* with|strong=\"H5921\"* wisdom|strong=\"H2451\"*." + }, + { + "verseNum": 27, + "text": "She|strong=\"H3808\"* looks|strong=\"H6822\"* well|strong=\"H6822\"* to|strong=\"H1004\"* the|strong=\"H3808\"* ways|strong=\"H1979\"* of|strong=\"H1004\"* her household|strong=\"H1004\"*," + }, + { + "verseNum": 28, + "text": "Her|strong=\"H1984\"* children|strong=\"H1121\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1121\"* call her|strong=\"H1984\"* blessed." + }, + { + "verseNum": 29, + "text": "“Many|strong=\"H7227\"* women|strong=\"H1323\"* do|strong=\"H6213\"* noble things|strong=\"H3605\"*," + }, + { + "verseNum": 30, + "text": "Charm|strong=\"H2580\"* is|strong=\"H3068\"* deceitful|strong=\"H8267\"*, and|strong=\"H3068\"* beauty|strong=\"H3308\"* is|strong=\"H3068\"* vain|strong=\"H1892\"*;" + }, + { + "verseNum": 31, + "text": "Give|strong=\"H5414\"* her|strong=\"H5414\"* of|strong=\"H3027\"* the|strong=\"H5414\"* fruit|strong=\"H6529\"* of|strong=\"H3027\"* her|strong=\"H5414\"* hands|strong=\"H3027\"*!" + } + ] + } + ] + }, + { + "name": "Ecclesiastes", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H1697\"* Preacher|strong=\"H6953\"*, the|strong=\"H1697\"* son|strong=\"H1121\"* of|strong=\"H1121\"* David|strong=\"H1732\"*, king|strong=\"H4428\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 2, + "text": "“Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*,” says the|strong=\"H3605\"* Preacher|strong=\"H6953\"*; “Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*, all|strong=\"H3605\"* is|strong=\"H3605\"* vanity|strong=\"H1892\"*.”" + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* does|strong=\"H4100\"* man|strong=\"H3605\"* gain from|strong=\"H8478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5999\"* which|strong=\"H4100\"* he|strong=\"H3605\"* labors under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*?" + }, + { + "verseNum": 4, + "text": "One|strong=\"H1755\"* generation|strong=\"H1755\"* goes|strong=\"H1980\"*, and|strong=\"H1980\"* another|strong=\"H1755\"* generation|strong=\"H1755\"* comes|strong=\"H1980\"*; but the|strong=\"H5975\"* earth remains|strong=\"H5975\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8033\"* sun|strong=\"H8121\"* also|strong=\"H8121\"* rises|strong=\"H2224\"*, and|strong=\"H8033\"* the|strong=\"H8033\"* sun|strong=\"H8121\"* goes down, and|strong=\"H8033\"* hurries to|strong=\"H8033\"* its place|strong=\"H4725\"* where|strong=\"H8033\"* it|strong=\"H1931\"* rises|strong=\"H2224\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* wind|strong=\"H7307\"* goes|strong=\"H1980\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H1864\"*, and|strong=\"H1980\"* turns|strong=\"H7725\"* around|strong=\"H5439\"* to|strong=\"H1980\"* the|strong=\"H5921\"* north|strong=\"H6828\"*. It|strong=\"H5921\"* turns|strong=\"H7725\"* around|strong=\"H5439\"* continually|strong=\"H1980\"* as|strong=\"H1980\"* it|strong=\"H5921\"* goes|strong=\"H1980\"*, and|strong=\"H1980\"* the|strong=\"H5921\"* wind|strong=\"H7307\"* returns|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* its|strong=\"H5921\"* courses|strong=\"H5439\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* run|strong=\"H1980\"* into|strong=\"H1980\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, yet|strong=\"H3605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* is|strong=\"H3605\"* not|strong=\"H7725\"* full|strong=\"H4392\"*. To|strong=\"H1980\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* flow|strong=\"H1980\"*, there|strong=\"H8033\"* they|strong=\"H1992\"* flow|strong=\"H1980\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "All|strong=\"H3605\"* things|strong=\"H1697\"* are|strong=\"H5869\"* full|strong=\"H4390\"* of|strong=\"H1697\"* weariness beyond|strong=\"H3808\"* uttering. The|strong=\"H3605\"* eye|strong=\"H5869\"* is|strong=\"H1697\"* not|strong=\"H3808\"* satisfied|strong=\"H7646\"* with|strong=\"H4390\"* seeing|strong=\"H7200\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* ear|strong=\"H8085\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* hearing|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "That|strong=\"H3605\"* which|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* is|strong=\"H1931\"* that|strong=\"H3605\"* which|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"*, and|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* done|strong=\"H6213\"* is|strong=\"H1931\"* that|strong=\"H3605\"* which|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* done|strong=\"H6213\"*; and|strong=\"H6213\"* there|strong=\"H1961\"* is|strong=\"H1931\"* no|strong=\"H6213\"* new|strong=\"H2319\"* thing|strong=\"H2319\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 10, + "text": "Is|strong=\"H3426\"* there|strong=\"H3426\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* of|strong=\"H1697\"* which|strong=\"H1931\"* it|strong=\"H1931\"* may|strong=\"H1961\"* be|strong=\"H1961\"* said|strong=\"H1697\"*, “Behold|strong=\"H7200\"*,+ 1:10 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* this|strong=\"H2088\"* is|strong=\"H3426\"* new|strong=\"H2319\"*”? It|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H5769\"* ago|strong=\"H5769\"*, in|strong=\"H6440\"* the|strong=\"H6440\"* ages|strong=\"H5769\"* which|strong=\"H1931\"* were|strong=\"H1961\"* before|strong=\"H6440\"* us|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H1961\"* is|strong=\"H1571\"* no|strong=\"H3808\"* memory of|strong=\"H3808\"* the|strong=\"H1961\"* former|strong=\"H7223\"*; neither|strong=\"H3808\"* shall|strong=\"H3808\"* there|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H1571\"* memory of|strong=\"H3808\"* the|strong=\"H1961\"* latter that|strong=\"H3808\"* are|strong=\"H1992\"* to|strong=\"H1961\"* come|strong=\"H1961\"*, among|strong=\"H5973\"* those|strong=\"H1992\"* that|strong=\"H3808\"* shall|strong=\"H3808\"* come|strong=\"H1961\"* after|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"*, the|strong=\"H5921\"* Preacher|strong=\"H6953\"*, was|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* seek|strong=\"H1875\"* and|strong=\"H1121\"* to|strong=\"H6213\"* search|strong=\"H1875\"* out|strong=\"H5414\"* by|strong=\"H5921\"* wisdom|strong=\"H2451\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1931\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* a|strong=\"H3068\"* heavy|strong=\"H7451\"* burden that|strong=\"H3605\"* God|strong=\"H5414\"*+ 1:13 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* has|strong=\"H3820\"* given|strong=\"H5414\"* to|strong=\"H6213\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* to|strong=\"H6213\"* be|strong=\"H1121\"* afflicted|strong=\"H6031\"* with|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H2009\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H7200\"* are|strong=\"H4639\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*; and|strong=\"H7200\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* is|strong=\"H2009\"* vanity|strong=\"H1892\"* and|strong=\"H7200\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H3808\"* which is|strong=\"H3808\"* crooked|strong=\"H5791\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* made straight|strong=\"H8626\"*; and|strong=\"H3808\"* that|strong=\"H3808\"* which is|strong=\"H3808\"* lacking|strong=\"H2642\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* counted|strong=\"H4487\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H2009\"* said|strong=\"H1696\"* to|strong=\"H1696\"* myself|strong=\"H3820\"*, “Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1961\"* obtained for|strong=\"H5921\"* myself|strong=\"H3820\"* great|strong=\"H1431\"* wisdom|strong=\"H2451\"* above|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. Yes|strong=\"H2009\"*, my|strong=\"H3605\"* heart|strong=\"H3820\"* has|strong=\"H1961\"* had|strong=\"H1961\"* great|strong=\"H1431\"* experience|strong=\"H7200\"* of|strong=\"H6440\"* wisdom|strong=\"H2451\"* and|strong=\"H3389\"* knowledge|strong=\"H1847\"*.”" + }, + { + "verseNum": 17, + "text": "I|strong=\"H5414\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5414\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"*, and|strong=\"H2451\"* to|strong=\"H5414\"* know|strong=\"H3045\"* madness|strong=\"H1947\"* and|strong=\"H2451\"* folly|strong=\"H5531\"*. I|strong=\"H5414\"* perceived|strong=\"H3045\"* that|strong=\"H3045\"* this|strong=\"H2088\"* also|strong=\"H1571\"* was|strong=\"H3820\"* a|strong=\"H3068\"* chasing|strong=\"H7475\"* after|strong=\"H7475\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* in|strong=\"H7227\"* much|strong=\"H7227\"* wisdom|strong=\"H2451\"* is|strong=\"H2451\"* much|strong=\"H7227\"* grief|strong=\"H3708\"*; and|strong=\"H2451\"* he|strong=\"H3588\"* who|strong=\"H7227\"* increases|strong=\"H3254\"* knowledge|strong=\"H1847\"* increases|strong=\"H3254\"* sorrow|strong=\"H4341\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H2009\"* said in|strong=\"H3212\"* my|strong=\"H7200\"* heart|strong=\"H3820\"*, “Come|strong=\"H3212\"* now|strong=\"H4994\"*, I|strong=\"H2009\"* will|strong=\"H1571\"* test|strong=\"H5254\"* you|strong=\"H7200\"* with|strong=\"H3212\"* mirth|strong=\"H8057\"*; therefore|strong=\"H1571\"* enjoy|strong=\"H7200\"* pleasure|strong=\"H8057\"*;” and|strong=\"H3212\"* behold|strong=\"H2009\"*, this|strong=\"H1931\"* also|strong=\"H1571\"* was|strong=\"H3820\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4100\"* said of|strong=\"H6213\"* laughter|strong=\"H7814\"*, “It|strong=\"H6213\"* is|strong=\"H4100\"* foolishness;” and|strong=\"H6213\"* of|strong=\"H6213\"* mirth|strong=\"H8057\"*, “What|strong=\"H4100\"* does|strong=\"H6213\"* it|strong=\"H6213\"* accomplish|strong=\"H6213\"*?”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* searched|strong=\"H8446\"* in|strong=\"H6213\"* my|strong=\"H7200\"* heart|strong=\"H3820\"* how|strong=\"H5704\"* to|strong=\"H5704\"* cheer my|strong=\"H7200\"* flesh|strong=\"H1320\"* with|strong=\"H6213\"* wine|strong=\"H3196\"*, my|strong=\"H7200\"* heart|strong=\"H3820\"* yet|strong=\"H5704\"* guiding|strong=\"H5090\"* me|strong=\"H7200\"* with|strong=\"H6213\"* wisdom|strong=\"H2451\"*, and|strong=\"H1121\"* how|strong=\"H5704\"* to|strong=\"H5704\"* lay|strong=\"H1121\"* hold|strong=\"H6213\"* of|strong=\"H1121\"* folly|strong=\"H5531\"*, until|strong=\"H5704\"* I|strong=\"H3117\"* might|strong=\"H1121\"* see|strong=\"H7200\"* what|strong=\"H2896\"* it|strong=\"H6213\"* was|strong=\"H3820\"* good|strong=\"H2896\"* for|strong=\"H5704\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* that|strong=\"H7200\"* they|strong=\"H3117\"* should|strong=\"H3117\"* do|strong=\"H6213\"* under|strong=\"H8478\"* heaven|strong=\"H8064\"* all|strong=\"H7200\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H7200\"* lives|strong=\"H2416\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H1004\"* made|strong=\"H4639\"* myself great|strong=\"H1431\"* works|strong=\"H4639\"*. I|strong=\"H1004\"* built|strong=\"H1129\"* myself houses|strong=\"H1004\"*. I|strong=\"H1004\"* planted|strong=\"H5193\"* myself vineyards|strong=\"H3754\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3605\"* made|strong=\"H6213\"* myself gardens|strong=\"H1593\"* and|strong=\"H6086\"* parks|strong=\"H6508\"*, and|strong=\"H6086\"* I|strong=\"H3605\"* planted|strong=\"H5193\"* trees|strong=\"H6086\"* in|strong=\"H6213\"* them|strong=\"H6213\"* of|strong=\"H6086\"* all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H6086\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H6779\"* made|strong=\"H6213\"* myself pools|strong=\"H1295\"* of|strong=\"H4325\"* water|strong=\"H4325\"*, to|strong=\"H6213\"* water|strong=\"H4325\"* the|strong=\"H6213\"* forest|strong=\"H3293\"* where|strong=\"H1992\"* trees|strong=\"H6086\"* were|strong=\"H4325\"* grown|strong=\"H6779\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5650\"* bought|strong=\"H7069\"* male|strong=\"H5650\"* servants|strong=\"H5650\"* and|strong=\"H1121\"* female|strong=\"H8198\"* servants|strong=\"H5650\"*, and|strong=\"H1121\"* had|strong=\"H1961\"* servants|strong=\"H5650\"* born|strong=\"H1121\"* in|strong=\"H1004\"* my|strong=\"H3605\"* house|strong=\"H1004\"*. I|strong=\"H5650\"* also|strong=\"H1571\"* had|strong=\"H1961\"* great|strong=\"H7235\"* possessions|strong=\"H4735\"* of|strong=\"H1121\"* herds|strong=\"H1241\"* and|strong=\"H1121\"* flocks|strong=\"H6629\"*, above|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H1571\"* also|strong=\"H1571\"* gathered|strong=\"H3664\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* gold|strong=\"H2091\"* for|strong=\"H6213\"* myself|strong=\"H1571\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* treasure|strong=\"H5459\"* of|strong=\"H1121\"* kings|strong=\"H4428\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6213\"* provinces|strong=\"H4082\"*. I|strong=\"H1571\"* got myself|strong=\"H1571\"* male|strong=\"H7891\"* and|strong=\"H1121\"* female singers|strong=\"H7891\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* delights|strong=\"H8588\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*: musical instruments|strong=\"H7705\"* of|strong=\"H1121\"* all|strong=\"H6213\"* sorts." + }, + { + "verseNum": 9, + "text": "So|strong=\"H1961\"* I|strong=\"H6440\"* was|strong=\"H1961\"* great|strong=\"H1431\"*, and|strong=\"H3389\"* increased|strong=\"H3254\"* more|strong=\"H3254\"* than|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*. My|strong=\"H3605\"* wisdom|strong=\"H2451\"* also|strong=\"H3254\"* remained|strong=\"H5975\"* with|strong=\"H3389\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H3605\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* desired|strong=\"H7592\"*, I|strong=\"H3588\"* didn’t keep|strong=\"H4513\"* from|strong=\"H5869\"* them|strong=\"H1992\"*. I|strong=\"H3588\"* didn’t withhold|strong=\"H4513\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* from|strong=\"H5869\"* any|strong=\"H3605\"* joy|strong=\"H8057\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* rejoiced|strong=\"H8055\"* because|strong=\"H3588\"* of|strong=\"H5869\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"*, and|strong=\"H5869\"* this|strong=\"H2088\"* was|strong=\"H1961\"* my|strong=\"H3605\"* portion|strong=\"H2506\"* from|strong=\"H5869\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* looked|strong=\"H6437\"* at|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* works|strong=\"H4639\"* that|strong=\"H3605\"* my|strong=\"H3605\"* hands|strong=\"H3027\"* had|strong=\"H3027\"* worked|strong=\"H6213\"*, and|strong=\"H3027\"* at|strong=\"H6213\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* that|strong=\"H3605\"* I|strong=\"H2009\"* had|strong=\"H3027\"* labored|strong=\"H5998\"* to|strong=\"H6213\"* do|strong=\"H6213\"*; and|strong=\"H3027\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* was|strong=\"H7307\"* vanity|strong=\"H1892\"* and|strong=\"H3027\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*, and|strong=\"H3027\"* there|strong=\"H2009\"* was|strong=\"H7307\"* no|strong=\"H6213\"* profit|strong=\"H3504\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* turned|strong=\"H6437\"* myself to|strong=\"H6213\"* consider|strong=\"H7200\"* wisdom|strong=\"H2451\"*, madness|strong=\"H1947\"*, and|strong=\"H4428\"* folly|strong=\"H5531\"*; for|strong=\"H3588\"* what|strong=\"H4100\"* can|strong=\"H4100\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s successor do|strong=\"H6213\"*? Just|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H4100\"* has|strong=\"H4428\"* been|strong=\"H3528\"* done|strong=\"H6213\"* long|strong=\"H4100\"* ago." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* that|strong=\"H7200\"* wisdom|strong=\"H2451\"* excels|strong=\"H3504\"* folly|strong=\"H5531\"*, as|strong=\"H5531\"* far|strong=\"H4480\"* as|strong=\"H5531\"* light excels|strong=\"H3504\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s eyes|strong=\"H5869\"* are|strong=\"H5869\"* in|strong=\"H1980\"* his|strong=\"H3605\"* head|strong=\"H7218\"*, and|strong=\"H1980\"* the|strong=\"H3605\"* fool|strong=\"H3684\"* walks|strong=\"H1980\"* in|strong=\"H1980\"* darkness|strong=\"H2822\"*—and|strong=\"H1980\"* yet|strong=\"H1571\"* I|strong=\"H3045\"* perceived|strong=\"H3045\"* that|strong=\"H3045\"* one|strong=\"H3605\"* event|strong=\"H4745\"* happens|strong=\"H7136\"* to|strong=\"H1980\"* them|strong=\"H7136\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1696\"* I|strong=\"H2088\"* said|strong=\"H1696\"* in|strong=\"H1696\"* my|strong=\"H1696\"* heart|strong=\"H3820\"*, “As|strong=\"H1571\"* it|strong=\"H1696\"* happens|strong=\"H7136\"* to|strong=\"H1696\"* the|strong=\"H1696\"* fool|strong=\"H3684\"*, so|strong=\"H1571\"* will|strong=\"H1571\"* it|strong=\"H1696\"* happen|strong=\"H7136\"* even|strong=\"H1571\"* to|strong=\"H1696\"* me|strong=\"H1696\"*; and|strong=\"H1892\"* why|strong=\"H4100\"* was|strong=\"H3820\"* I|strong=\"H2088\"* then|strong=\"H1696\"* more|strong=\"H3148\"* wise|strong=\"H2449\"*?” Then|strong=\"H1696\"* I|strong=\"H2088\"* said|strong=\"H1696\"* in|strong=\"H1696\"* my|strong=\"H1696\"* heart|strong=\"H3820\"* that|strong=\"H2088\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* of|strong=\"H3117\"* the|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*, even|strong=\"H3588\"* as|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* fool|strong=\"H3684\"*, there|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3605\"* memory forever|strong=\"H5769\"*, since|strong=\"H3588\"* in|strong=\"H4191\"* the|strong=\"H3605\"* days|strong=\"H3117\"* to|strong=\"H4191\"* come all|strong=\"H3605\"* will|strong=\"H3117\"* have|strong=\"H3117\"* been|strong=\"H5769\"* long|strong=\"H3117\"* forgotten|strong=\"H7911\"*. Indeed|strong=\"H3588\"*, the|strong=\"H3605\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* must|strong=\"H4191\"* die|strong=\"H4191\"* just|strong=\"H3605\"* like|strong=\"H5973\"* the|strong=\"H3605\"* fool|strong=\"H3684\"*!" + }, + { + "verseNum": 17, + "text": "So|strong=\"H6213\"* I|strong=\"H3588\"* hated|strong=\"H8130\"* life|strong=\"H2416\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3588\"* is|strong=\"H3605\"* worked|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* was|strong=\"H7307\"* grievous|strong=\"H7451\"* to|strong=\"H6213\"* me|strong=\"H8130\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* is|strong=\"H3605\"* vanity|strong=\"H1892\"* and|strong=\"H6213\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H5921\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H8478\"* hated|strong=\"H8130\"* all|strong=\"H3605\"* my|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5999\"* which|strong=\"H3605\"* I|strong=\"H8478\"* labored|strong=\"H6001\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, because|strong=\"H8478\"* I|strong=\"H8478\"* must leave|strong=\"H3240\"* it|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* comes|strong=\"H1961\"* after|strong=\"H1961\"* me|strong=\"H8130\"*." + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* he|strong=\"H3605\"* will|strong=\"H4310\"* be|strong=\"H1961\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* or|strong=\"H1571\"* a|strong=\"H3068\"* fool|strong=\"H5530\"*? Yet|strong=\"H1571\"* he|strong=\"H3605\"* will|strong=\"H4310\"* have|strong=\"H1961\"* rule|strong=\"H7980\"* over|strong=\"H7980\"* all|strong=\"H3605\"* of|strong=\"H8478\"* my|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H2450\"* which|strong=\"H4310\"* I|strong=\"H3045\"* have|strong=\"H1961\"* labored|strong=\"H5998\"*, and|strong=\"H3045\"* in|strong=\"H2450\"* which|strong=\"H4310\"* I|strong=\"H3045\"* have|strong=\"H1961\"* shown|strong=\"H3045\"* myself|strong=\"H3045\"* wise|strong=\"H2450\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* began to|strong=\"H5921\"* cause|strong=\"H2976\"* my|strong=\"H3605\"* heart|strong=\"H3820\"* to|strong=\"H5921\"* despair|strong=\"H2976\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H5921\"* which|strong=\"H5998\"* I|strong=\"H5921\"* had|strong=\"H8121\"* labored|strong=\"H5998\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* man|strong=\"H7451\"* whose labor|strong=\"H5999\"* is|strong=\"H3426\"* with|strong=\"H1571\"* wisdom|strong=\"H2451\"*, with|strong=\"H1571\"* knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* with|strong=\"H1571\"* skillfulness; yet|strong=\"H3588\"* he|strong=\"H3588\"* shall|strong=\"H3808\"* leave|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H3588\"* his|strong=\"H5414\"* portion|strong=\"H2506\"* to|strong=\"H5414\"* a|strong=\"H3068\"* man|strong=\"H7451\"* who|strong=\"H7227\"* has|strong=\"H3588\"* not|strong=\"H3808\"* labored|strong=\"H5998\"* for|strong=\"H3588\"* it|strong=\"H5414\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"* and|strong=\"H2451\"* a|strong=\"H3068\"* great|strong=\"H7227\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* does|strong=\"H4100\"* a|strong=\"H3068\"* man|strong=\"H3605\"* have|strong=\"H3605\"* of|strong=\"H3820\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"* and|strong=\"H5999\"* of|strong=\"H3820\"* the|strong=\"H3605\"* striving|strong=\"H7475\"* of|strong=\"H3820\"* his|strong=\"H3605\"* heart|strong=\"H3820\"*, in|strong=\"H8478\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors|strong=\"H6001\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*?" + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* sorrows|strong=\"H4341\"*, and|strong=\"H3117\"* his|strong=\"H3605\"* travail|strong=\"H6045\"* is|strong=\"H2088\"* grief|strong=\"H3708\"*; yes|strong=\"H3588\"*, even|strong=\"H1571\"* in|strong=\"H3117\"* the|strong=\"H3605\"* night|strong=\"H3915\"* his|strong=\"H3605\"* heart|strong=\"H3820\"* takes no|strong=\"H3808\"* rest|strong=\"H7901\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 24, + "text": "There|strong=\"H7200\"* is|strong=\"H1931\"* nothing better|strong=\"H2896\"* for|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5315\"* than|strong=\"H2896\"* that|strong=\"H3588\"* he|strong=\"H1931\"* should|strong=\"H3588\"* eat and|strong=\"H3027\"* drink|strong=\"H8354\"*, and|strong=\"H3027\"* make|strong=\"H7200\"* his|strong=\"H7200\"* soul|strong=\"H5315\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"* in|strong=\"H5315\"* his|strong=\"H7200\"* labor|strong=\"H5999\"*. This|strong=\"H1931\"* also|strong=\"H1571\"* I|strong=\"H3588\"* saw|strong=\"H7200\"*, that|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* from|strong=\"H5315\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* eat, or|strong=\"H4480\"* who|strong=\"H4310\"* can|strong=\"H4310\"* have|strong=\"H3588\"* enjoyment|strong=\"H2363\"*, more|strong=\"H4480\"* than|strong=\"H4480\"* I|strong=\"H3588\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H6440\"* man|strong=\"H2896\"* who|strong=\"H2896\"* pleases|strong=\"H2896\"* him|strong=\"H5414\"*, God|strong=\"H5414\"* gives|strong=\"H5414\"* wisdom|strong=\"H2451\"*, knowledge|strong=\"H1847\"*, and|strong=\"H2451\"* joy|strong=\"H8057\"*; but|strong=\"H3588\"* to|strong=\"H5414\"* the|strong=\"H6440\"* sinner|strong=\"H2398\"* he|strong=\"H3588\"* gives|strong=\"H5414\"* travail|strong=\"H6045\"*, to|strong=\"H5414\"* gather|strong=\"H3664\"* and|strong=\"H2451\"* to|strong=\"H5414\"* heap|strong=\"H5414\"* up|strong=\"H5414\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H1571\"* give|strong=\"H5414\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H2896\"* pleases|strong=\"H2896\"* God|strong=\"H5414\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H2451\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H8478\"* everything|strong=\"H3605\"* there|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* season|strong=\"H6256\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* time|strong=\"H6256\"* for|strong=\"H8478\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"* under|strong=\"H8478\"* heaven|strong=\"H8064\"*:" + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H4191\"* be|strong=\"H4191\"* born|strong=\"H3205\"*," + }, + { + "verseNum": 3, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* kill|strong=\"H2026\"*," + }, + { + "verseNum": 4, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* weep|strong=\"H1058\"*," + }, + { + "verseNum": 5, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* stones," + }, + { + "verseNum": 6, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* seek|strong=\"H1245\"*," + }, + { + "verseNum": 7, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H1696\"* tear|strong=\"H7167\"*," + }, + { + "verseNum": 8, + "text": "a|strong=\"H3068\"* time|strong=\"H6256\"* to|strong=\"H6256\"* love," + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* profit|strong=\"H3504\"* has|strong=\"H4100\"* he|strong=\"H1931\"* who|strong=\"H1931\"* works|strong=\"H6213\"* in|strong=\"H6213\"* that|strong=\"H1931\"* in|strong=\"H6213\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors|strong=\"H6001\"*?" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* burden which God|strong=\"H5414\"* has|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H7200\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* to|strong=\"H5414\"* be|strong=\"H1121\"* afflicted|strong=\"H6031\"* with|strong=\"H6031\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5704\"* has|strong=\"H3820\"* made|strong=\"H6213\"* everything|strong=\"H3605\"* beautiful|strong=\"H3303\"* in|strong=\"H6213\"* its|strong=\"H3605\"* time|strong=\"H6256\"*. He|strong=\"H5704\"* has|strong=\"H3820\"* also|strong=\"H1571\"* set|strong=\"H5414\"* eternity|strong=\"H5769\"* in|strong=\"H6213\"* their|strong=\"H3605\"* hearts|strong=\"H3820\"*, yet|strong=\"H1571\"* so|strong=\"H6213\"* that|strong=\"H3605\"* man|strong=\"H3605\"* can|strong=\"H6213\"*’t find|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3605\"* God|strong=\"H5414\"* has|strong=\"H3820\"* done|strong=\"H6213\"* from|strong=\"H5704\"* the|strong=\"H3605\"* beginning|strong=\"H7218\"* even|strong=\"H1571\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end|strong=\"H5490\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H3045\"* is|strong=\"H2896\"* nothing better|strong=\"H2896\"* for|strong=\"H3588\"* them|strong=\"H6213\"* than|strong=\"H2896\"* to|strong=\"H6213\"* rejoice|strong=\"H8055\"*, and|strong=\"H6213\"* to|strong=\"H6213\"* do|strong=\"H6213\"* good|strong=\"H2896\"* as|strong=\"H6213\"* long as|strong=\"H6213\"* they|strong=\"H3588\"* live|strong=\"H2416\"*." + }, + { + "verseNum": 13, + "text": "Also|strong=\"H1571\"* that|strong=\"H7200\"* every|strong=\"H3605\"* man|strong=\"H2896\"* should eat and|strong=\"H7200\"* drink|strong=\"H8354\"*, and|strong=\"H7200\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"* in|strong=\"H7200\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, is|strong=\"H1931\"* the|strong=\"H3605\"* gift|strong=\"H4991\"* of|strong=\"H3605\"* God." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* whatever|strong=\"H3605\"* God does|strong=\"H6213\"*, it|strong=\"H1931\"* shall|strong=\"H1931\"* be|strong=\"H1961\"* forever|strong=\"H5769\"*. Nothing|strong=\"H3605\"* can|strong=\"H3254\"* be|strong=\"H1961\"* added|strong=\"H3254\"* to|strong=\"H1961\"* it|strong=\"H1931\"*, nor|strong=\"H3372\"* anything|strong=\"H3605\"* taken|strong=\"H1639\"* from|strong=\"H4480\"* it|strong=\"H1931\"*; and|strong=\"H5769\"* God has|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H1931\"*, that|strong=\"H3588\"* men|strong=\"H6213\"* should|strong=\"H3588\"* fear|strong=\"H3372\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H4100\"* ago, and|strong=\"H1961\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* to|strong=\"H1961\"* be|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* long|strong=\"H4100\"* ago. God seeks|strong=\"H1245\"* again|strong=\"H1961\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* passed|strong=\"H7291\"* away." + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H5750\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*, in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H8478\"* justice|strong=\"H4941\"*, that|strong=\"H7200\"* wickedness|strong=\"H7562\"* was|strong=\"H4725\"* there|strong=\"H8033\"*; and|strong=\"H4941\"* in|strong=\"H4725\"* the|strong=\"H7200\"* place|strong=\"H4725\"* of|strong=\"H8478\"* righteousness|strong=\"H6664\"*, that|strong=\"H7200\"* wickedness|strong=\"H7562\"* was|strong=\"H4725\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* said in|strong=\"H5921\"* my|strong=\"H3605\"* heart|strong=\"H3820\"*, “God will|strong=\"H6662\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* and|strong=\"H8033\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3820\"* a|strong=\"H3068\"* time|strong=\"H6256\"* there|strong=\"H8033\"* for|strong=\"H3588\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"* and|strong=\"H8033\"* for|strong=\"H3588\"* every|strong=\"H3605\"* work|strong=\"H4639\"*.”" + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* said in|strong=\"H5921\"* my|strong=\"H7200\"* heart|strong=\"H3820\"*, “As|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, God tests them|strong=\"H1992\"*, so|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H1992\"* may|strong=\"H1121\"* see|strong=\"H7200\"* that|strong=\"H7200\"* they|strong=\"H1992\"* themselves|strong=\"H1992\"* are|strong=\"H1992\"* like|strong=\"H3820\"* animals." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H2088\"* happens to|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* happens to|strong=\"H1121\"* animals. Even|strong=\"H3588\"* one|strong=\"H2088\"* thing|strong=\"H2088\"* happens to|strong=\"H1121\"* them|strong=\"H1121\"*. As|strong=\"H3651\"* the|strong=\"H3605\"* one|strong=\"H2088\"* dies|strong=\"H4194\"*, so|strong=\"H3651\"* the|strong=\"H3605\"* other|strong=\"H2088\"* dies|strong=\"H4194\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* have|strong=\"H1121\"* all|strong=\"H3605\"* one|strong=\"H2088\"* breath|strong=\"H7307\"*; and|strong=\"H1121\"* man|strong=\"H1121\"* has|strong=\"H3588\"* no|strong=\"H4480\"* advantage|strong=\"H4195\"* over|strong=\"H4480\"* the|strong=\"H3605\"* animals, for|strong=\"H3588\"* all|strong=\"H3605\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* go|strong=\"H1980\"* to|strong=\"H1980\"* one|strong=\"H3605\"* place|strong=\"H4725\"*. All|strong=\"H3605\"* are|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3605\"* dust|strong=\"H6083\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* turn|strong=\"H7725\"* to|strong=\"H1980\"* dust|strong=\"H6083\"* again|strong=\"H7725\"*." + }, + { + "verseNum": 21, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H3045\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, whether|strong=\"H3045\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* upward|strong=\"H4605\"*, and|strong=\"H1121\"* the|strong=\"H3045\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* the|strong=\"H3045\"* animal, whether|strong=\"H3045\"* it|strong=\"H1931\"* goes|strong=\"H5927\"* downward|strong=\"H4295\"* to|strong=\"H3381\"* the|strong=\"H3045\"* earth|strong=\"H5927\"*?”" + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H1961\"* is|strong=\"H1931\"* nothing|strong=\"H4100\"* better|strong=\"H2896\"* than|strong=\"H2896\"* that|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2896\"* should|strong=\"H4100\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* his|strong=\"H7200\"* works|strong=\"H4639\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* his|strong=\"H7200\"* portion|strong=\"H2506\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* bring|strong=\"H1961\"* him|strong=\"H7200\"* to|strong=\"H1961\"* see|strong=\"H7200\"* what|strong=\"H4100\"* will|strong=\"H4310\"* be|strong=\"H1961\"* after|strong=\"H1961\"* him|strong=\"H7200\"*?" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* oppressions|strong=\"H6217\"* that|strong=\"H7200\"* are|strong=\"H3027\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*: and|strong=\"H7725\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* tears|strong=\"H1832\"* of|strong=\"H3027\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3027\"* oppressed|strong=\"H6231\"*, and|strong=\"H7725\"* they|strong=\"H6213\"* had|strong=\"H3027\"* no|strong=\"H6213\"* comforter|strong=\"H5162\"*; and|strong=\"H7725\"* on|strong=\"H7200\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H3605\"* oppressors|strong=\"H6231\"* there|strong=\"H2009\"* was|strong=\"H3027\"* power|strong=\"H3027\"*; but|strong=\"H7200\"* they|strong=\"H6213\"* had|strong=\"H3027\"* no|strong=\"H6213\"* comforter|strong=\"H5162\"*." + }, + { + "verseNum": 2, + "text": "Therefore I|strong=\"H4480\"* praised|strong=\"H7623\"* the|strong=\"H4480\"* dead|strong=\"H4191\"* who|strong=\"H1992\"* have|strong=\"H1992\"* been|strong=\"H3528\"* long dead|strong=\"H4191\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* who|strong=\"H1992\"* are|strong=\"H1992\"* yet|strong=\"H5728\"* alive|strong=\"H2416\"*." + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H7200\"*, better|strong=\"H2896\"* than|strong=\"H2896\"* them|strong=\"H6213\"* both|strong=\"H8147\"* is|strong=\"H2896\"* him|strong=\"H6213\"* who|strong=\"H2896\"* has|strong=\"H1961\"* not|strong=\"H3808\"* yet|strong=\"H3808\"* been|strong=\"H1961\"*, who|strong=\"H2896\"* has|strong=\"H1961\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* evil|strong=\"H7451\"* work|strong=\"H4639\"* that|strong=\"H7200\"* is|strong=\"H2896\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2088\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* and|strong=\"H7200\"* achievement that|strong=\"H3588\"* is|strong=\"H2088\"* the|strong=\"H3605\"* envy|strong=\"H7068\"* of|strong=\"H7307\"* a|strong=\"H3068\"* man|strong=\"H3605\"*’s neighbor|strong=\"H7453\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H7200\"* a|strong=\"H3068\"* striving|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3027\"* fool|strong=\"H3684\"* folds|strong=\"H2263\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* together|strong=\"H2263\"* and|strong=\"H3027\"* ruins himself|strong=\"H3027\"*." + }, + { + "verseNum": 6, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* handful|strong=\"H4393\"*, with|strong=\"H2896\"* quietness|strong=\"H5183\"*, than|strong=\"H2896\"* two handfuls|strong=\"H4393\"* with|strong=\"H2896\"* labor|strong=\"H5999\"* and|strong=\"H2896\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H7725\"* I|strong=\"H7200\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* vanity|strong=\"H1892\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* one|strong=\"H2088\"* who|strong=\"H4310\"* is|strong=\"H3426\"* alone|strong=\"H1931\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* has|strong=\"H4310\"* neither|strong=\"H3808\"* son|strong=\"H1121\"* nor|strong=\"H3808\"* brother. There|strong=\"H3426\"* is|strong=\"H3426\"* no|strong=\"H3808\"* end|strong=\"H7093\"* to|strong=\"H1121\"* all|strong=\"H3605\"* of|strong=\"H1121\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, neither|strong=\"H3808\"* are|strong=\"H1121\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"* satisfied|strong=\"H7646\"* with|strong=\"H7646\"* wealth|strong=\"H6239\"*. “For|strong=\"H1121\"* whom|strong=\"H4310\"* then|strong=\"H2088\"* do|strong=\"H5869\"* I|strong=\"H5315\"* labor|strong=\"H5999\"* and|strong=\"H1121\"* deprive my|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* enjoyment|strong=\"H2896\"*?” This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"*. Yes|strong=\"H1571\"*, it|strong=\"H1931\"* is|strong=\"H3426\"* a|strong=\"H3068\"* miserable|strong=\"H7451\"* business|strong=\"H6045\"*." + }, + { + "verseNum": 9, + "text": "Two|strong=\"H8147\"* are|strong=\"H1992\"* better|strong=\"H2896\"* than|strong=\"H4480\"* one|strong=\"H4480\"*, because|strong=\"H4480\"* they|strong=\"H1992\"* have|strong=\"H3426\"* a|strong=\"H3068\"* good|strong=\"H2896\"* reward|strong=\"H7939\"* for|strong=\"H5999\"* their|strong=\"H1992\"* labor|strong=\"H5999\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* they|strong=\"H3588\"* fall|strong=\"H5307\"*, the|strong=\"H3588\"* one|strong=\"H3588\"* will|strong=\"H5307\"* lift|strong=\"H6965\"* up|strong=\"H6965\"* his|strong=\"H6965\"* fellow|strong=\"H2270\"*; but|strong=\"H3588\"* woe to|strong=\"H6965\"* him|strong=\"H3588\"* who|strong=\"H3588\"* is|strong=\"H3588\"* alone when|strong=\"H3588\"* he|strong=\"H3588\"* falls|strong=\"H5307\"*, and|strong=\"H6965\"* doesn’t have|strong=\"H3588\"* another|strong=\"H8145\"* to|strong=\"H6965\"* lift|strong=\"H6965\"* him|strong=\"H3588\"* up|strong=\"H6965\"*." + }, + { + "verseNum": 11, + "text": "Again|strong=\"H1571\"*, if two|strong=\"H8147\"* lie|strong=\"H7901\"* together|strong=\"H1571\"*, then|strong=\"H1571\"* they|strong=\"H1571\"* have|strong=\"H1571\"* warmth; but|strong=\"H1571\"* how can|strong=\"H8147\"* one|strong=\"H1571\"* keep|strong=\"H2552\"* warm|strong=\"H2552\"* alone?" + }, + { + "verseNum": 12, + "text": "If a|strong=\"H3068\"* man prevails against|strong=\"H5048\"* one|strong=\"H3808\"* who|strong=\"H5975\"* is|strong=\"H5975\"* alone, two|strong=\"H8147\"* shall|strong=\"H3808\"* withstand|strong=\"H5975\"* him|strong=\"H5975\"*; and|strong=\"H5975\"* a|strong=\"H3068\"* threefold|strong=\"H8027\"* cord|strong=\"H2339\"* is|strong=\"H5975\"* not|strong=\"H3808\"* quickly|strong=\"H4120\"* broken|strong=\"H5423\"*." + }, + { + "verseNum": 13, + "text": "Better|strong=\"H2896\"* is|strong=\"H2896\"* a|strong=\"H3068\"* poor|strong=\"H4542\"* and|strong=\"H4428\"* wise|strong=\"H2450\"* youth|strong=\"H3206\"* than|strong=\"H2896\"* an|strong=\"H4428\"* old|strong=\"H2205\"* and|strong=\"H4428\"* foolish|strong=\"H3684\"* king|strong=\"H4428\"* who|strong=\"H4428\"* doesn’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H4428\"* receive|strong=\"H2094\"* admonition any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H1004\"* prison|strong=\"H1004\"* he|strong=\"H3588\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* be|strong=\"H1571\"* king|strong=\"H4427\"*; yes|strong=\"H3588\"*, even|strong=\"H1571\"* in|strong=\"H1004\"* his|strong=\"H3588\"* kingdom|strong=\"H4438\"* he|strong=\"H3588\"* was|strong=\"H1004\"* born|strong=\"H3205\"* poor|strong=\"H7326\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* who|strong=\"H3605\"* walk|strong=\"H1980\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H7200\"* they|strong=\"H3605\"* were|strong=\"H7200\"* with|strong=\"H5973\"* the|strong=\"H3605\"* youth|strong=\"H3206\"*, the|strong=\"H3605\"* other|strong=\"H8145\"*, who|strong=\"H3605\"* succeeded|strong=\"H8478\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* end|strong=\"H7093\"* of|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, even|strong=\"H1571\"* of|strong=\"H6440\"* all|strong=\"H3605\"* them|strong=\"H6440\"* over|strong=\"H6440\"* whom|strong=\"H6440\"* he|strong=\"H3588\"* was|strong=\"H1961\"*—yet|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* come|strong=\"H1961\"* after|strong=\"H7093\"* shall|strong=\"H5971\"* not|strong=\"H3808\"* rejoice|strong=\"H8055\"* in|strong=\"H6440\"* him|strong=\"H6440\"*. Surely|strong=\"H3588\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H5971\"* a|strong=\"H3068\"* chasing|strong=\"H7475\"* after|strong=\"H7093\"* wind|strong=\"H7307\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Guard your|strong=\"H5921\"* steps when|strong=\"H3588\"* you|strong=\"H3588\"* go|strong=\"H3318\"* to|strong=\"H3318\"* God|strong=\"H8064\"*’s house; for|strong=\"H3588\"* to|strong=\"H3318\"* draw|strong=\"H3318\"* near|strong=\"H6440\"* to|strong=\"H3318\"* listen is|strong=\"H3820\"* better|strong=\"H5921\"* than|strong=\"H5921\"* to|strong=\"H3318\"* give|strong=\"H1961\"* the|strong=\"H6440\"* sacrifice of|strong=\"H1697\"* fools, for|strong=\"H3588\"* they|strong=\"H3588\"* don’t know that|strong=\"H3588\"* they|strong=\"H3588\"* do|strong=\"H3318\"* evil." + }, + { + "verseNum": 2, + "text": "Don’t be|strong=\"H1697\"* rash with|strong=\"H1697\"* your|strong=\"H3588\"* mouth, and|strong=\"H6963\"* don’t let your|strong=\"H3588\"* heart be|strong=\"H1697\"* hasty to|strong=\"H1697\"* utter anything|strong=\"H1697\"* before God; for|strong=\"H3588\"* God is|strong=\"H1697\"* in|strong=\"H1697\"* heaven, and|strong=\"H6963\"* you|strong=\"H3588\"* on|strong=\"H1697\"* earth. Therefore|strong=\"H3588\"* let your|strong=\"H3588\"* words|strong=\"H1697\"* be|strong=\"H1697\"* few." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* a|strong=\"H3068\"* dream comes with|strong=\"H7999\"* a|strong=\"H3068\"* multitude of|strong=\"H5088\"* cares, so|strong=\"H3588\"* a|strong=\"H3068\"* fool|strong=\"H3684\"*’s speech with|strong=\"H7999\"* a|strong=\"H3068\"* multitude of|strong=\"H5088\"* words." + }, + { + "verseNum": 4, + "text": "When you|strong=\"H3808\"* vow|strong=\"H5087\"* a|strong=\"H3068\"* vow|strong=\"H5087\"* to|strong=\"H2896\"* God|strong=\"H3808\"*, don’t defer to|strong=\"H2896\"* pay|strong=\"H7999\"* it|strong=\"H3808\"*; for|strong=\"H3808\"* he|strong=\"H3808\"* has no|strong=\"H3808\"* pleasure|strong=\"H2896\"* in|strong=\"H3808\"* fools. Pay|strong=\"H7999\"* that|strong=\"H3808\"* which you|strong=\"H3808\"* vow|strong=\"H5087\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H5414\"* is|strong=\"H1931\"* better|strong=\"H3027\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* not|strong=\"H5414\"* vow|strong=\"H3027\"*, than|strong=\"H5921\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H4100\"* vow|strong=\"H3027\"* and|strong=\"H3027\"* not|strong=\"H5414\"* pay|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Don’t allow your|strong=\"H3588\"* mouth to|strong=\"H1697\"* lead you|strong=\"H3588\"* into|strong=\"H1697\"* sin. Don’t protest before the|strong=\"H3588\"* messenger that|strong=\"H3588\"* this|strong=\"H1697\"* was|strong=\"H1697\"* a|strong=\"H3068\"* mistake. Why|strong=\"H1697\"* should|strong=\"H3588\"* God be|strong=\"H1697\"* angry at|strong=\"H2472\"* your|strong=\"H3588\"* voice, and|strong=\"H1697\"* destroy the|strong=\"H3588\"* work|strong=\"H1697\"* of|strong=\"H1697\"* your|strong=\"H3588\"* hands?" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* multitude of|strong=\"H5921\"* dreams there|strong=\"H2656\"* are|strong=\"H4941\"* vanities, as|strong=\"H3588\"* well as|strong=\"H3588\"* in|strong=\"H5921\"* many|strong=\"H7200\"* words; but|strong=\"H3588\"* you|strong=\"H3588\"* must fear God." + }, + { + "verseNum": 8, + "text": "If|strong=\"H1931\"* you|strong=\"H3605\"* see the|strong=\"H3605\"* oppression of|strong=\"H4428\"* the|strong=\"H3605\"* poor, and|strong=\"H4428\"* the|strong=\"H3605\"* violent taking away|strong=\"H3605\"* of|strong=\"H4428\"* justice and|strong=\"H4428\"* righteousness in|strong=\"H4428\"* a|strong=\"H3068\"* district, don’t marvel at|strong=\"H4428\"* the|strong=\"H3605\"* matter, for|strong=\"H4428\"* one|strong=\"H3605\"* official is|strong=\"H1931\"* eyed by|strong=\"H3605\"* a|strong=\"H3068\"* higher one|strong=\"H3605\"*, and|strong=\"H4428\"* there|strong=\"H3605\"* are|strong=\"H4428\"* officials over|strong=\"H4428\"* them|strong=\"H5647\"*." + }, + { + "verseNum": 9, + "text": "Moreover|strong=\"H1571\"* the|strong=\"H1571\"* profit of|strong=\"H1995\"* the|strong=\"H1571\"* earth is|strong=\"H2088\"* for|strong=\"H3701\"* all|strong=\"H1571\"*. The|strong=\"H1571\"* king profits from|strong=\"H1571\"* the|strong=\"H1571\"* field." + }, + { + "verseNum": 10, + "text": "He|strong=\"H3588\"* who|strong=\"H2896\"* loves silver shall|strong=\"H5869\"* not|strong=\"H3588\"* be|strong=\"H5869\"* satisfied with|strong=\"H5869\"* silver, nor|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H2896\"* loves abundance|strong=\"H7235\"*, with|strong=\"H5869\"* increase|strong=\"H7235\"*. This|strong=\"H3588\"* also|strong=\"H5869\"* is|strong=\"H4100\"* vanity." + }, + { + "verseNum": 11, + "text": "When|strong=\"H7235\"* goods increase|strong=\"H7235\"*, those|strong=\"H3240\"* who eat them|strong=\"H5647\"* are|strong=\"H6223\"* increased|strong=\"H7235\"*; and|strong=\"H5647\"* what advantage is there to|strong=\"H7235\"* its|strong=\"H7235\"* owner, except to|strong=\"H7235\"* feast on|strong=\"H7235\"* them|strong=\"H5647\"* with|strong=\"H5647\"* his|strong=\"H5647\"* eyes?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* sleep|strong=\"H7200\"* of|strong=\"H1167\"* a|strong=\"H3068\"* laboring man|strong=\"H1167\"* is|strong=\"H3426\"* sweet, whether|strong=\"H7200\"* he|strong=\"H3426\"* eats little or|strong=\"H7200\"* much; but|strong=\"H7200\"* the|strong=\"H7200\"* abundance of|strong=\"H1167\"* the|strong=\"H7200\"* rich|strong=\"H6239\"* will|strong=\"H8121\"* not|strong=\"H7200\"* allow him|strong=\"H7200\"* to|strong=\"H8104\"* sleep|strong=\"H7200\"*." + }, + { + "verseNum": 13, + "text": "There is|strong=\"H1931\"* a|strong=\"H3068\"* grievous|strong=\"H7451\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* I|strong=\"H1121\"* have|strong=\"H1121\"* seen under|strong=\"H3027\"* the|strong=\"H3205\"* sun: wealth|strong=\"H6239\"* kept by|strong=\"H3027\"* its owner to|strong=\"H3027\"* his|strong=\"H3027\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Those|strong=\"H3318\"* riches perish by|strong=\"H3027\"* misfortune, and|strong=\"H7725\"* if he|strong=\"H3027\"* has|strong=\"H3027\"* fathered a|strong=\"H3068\"* son, there|strong=\"H7725\"* is|strong=\"H3027\"* nothing|strong=\"H3808\"* in|strong=\"H3212\"* his|strong=\"H5375\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1571\"* he|strong=\"H3651\"* came|strong=\"H3212\"* out|strong=\"H3212\"* of|strong=\"H7307\"* his|strong=\"H3605\"* mother’s womb, naked shall|strong=\"H7451\"* he|strong=\"H3651\"* go|strong=\"H3212\"* again|strong=\"H3212\"* as|strong=\"H1571\"* he|strong=\"H3651\"* came|strong=\"H3212\"*, and|strong=\"H3212\"* shall|strong=\"H7451\"* take|strong=\"H3212\"* nothing|strong=\"H3605\"* for|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5998\"*, which|strong=\"H4100\"* he|strong=\"H3651\"* may|strong=\"H1571\"* carry|strong=\"H3212\"* away|strong=\"H3212\"* in|strong=\"H3212\"* his|strong=\"H3605\"* hand." + }, + { + "verseNum": 16, + "text": "This|strong=\"H3117\"* also|strong=\"H1571\"* is|strong=\"H3117\"* a|strong=\"H3068\"* grievous|strong=\"H3708\"* evil, that|strong=\"H3605\"* in|strong=\"H3117\"* all|strong=\"H3605\"* points as|strong=\"H3117\"* he|strong=\"H3117\"* came, so|strong=\"H1571\"* shall|strong=\"H3117\"* he|strong=\"H3117\"* go. And|strong=\"H3117\"* what|strong=\"H1571\"* profit does|strong=\"H1571\"* he|strong=\"H3117\"* have|strong=\"H1571\"* who|strong=\"H3605\"* labors for|strong=\"H3117\"* the|strong=\"H3605\"* wind?" + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* days|strong=\"H3117\"* he|strong=\"H1931\"* also|strong=\"H3117\"* eats in|strong=\"H3117\"* darkness, he|strong=\"H1931\"* is|strong=\"H1931\"* frustrated, and|strong=\"H3117\"* has|strong=\"H3117\"* sickness and|strong=\"H3117\"* wrath." + }, + { + "verseNum": 18, + "text": "Behold, that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H5414\"* have|strong=\"H1571\"* seen to|strong=\"H5414\"* be|strong=\"H1571\"* good and|strong=\"H6239\"* proper is|strong=\"H1931\"* for|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H5414\"* eat and|strong=\"H6239\"* to|strong=\"H5414\"* drink, and|strong=\"H6239\"* to|strong=\"H5414\"* enjoy good in|strong=\"H8055\"* all|strong=\"H3605\"* his|strong=\"H3605\"* labor|strong=\"H5999\"*, in|strong=\"H8055\"* which|strong=\"H1931\"* he|strong=\"H1931\"* labors under|strong=\"H4480\"* the|strong=\"H3605\"* sun, all|strong=\"H3605\"* the|strong=\"H3605\"* days of|strong=\"H4480\"* his|strong=\"H3605\"* life|strong=\"H3605\"* which|strong=\"H1931\"* God|strong=\"H5414\"* has|strong=\"H1571\"* given|strong=\"H5414\"* him|strong=\"H5414\"*; for|strong=\"H3605\"* this|strong=\"H1931\"* is|strong=\"H1931\"* his|strong=\"H3605\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 19, + "text": "Every|strong=\"H3117\"* man|strong=\"H2416\"* also|strong=\"H3117\"* to|strong=\"H3820\"* whom|strong=\"H3588\"* God|strong=\"H3808\"* has|strong=\"H3820\"* given riches and|strong=\"H3117\"* wealth|strong=\"H3808\"*, and|strong=\"H3117\"* has|strong=\"H3820\"* given him|strong=\"H7235\"* power to|strong=\"H3820\"* eat of|strong=\"H3117\"* it|strong=\"H3588\"*, and|strong=\"H3117\"* to|strong=\"H3820\"* take|strong=\"H2142\"* his|strong=\"H2142\"* portion, and|strong=\"H3117\"* to|strong=\"H3820\"* rejoice|strong=\"H8057\"* in|strong=\"H3117\"* his|strong=\"H2142\"* labor—this|strong=\"H3588\"* is|strong=\"H3820\"* the|strong=\"H3588\"* gift of|strong=\"H3117\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 20, + "text": "For he shall not often reflect on the days of his life, because God occupies him with the joy of his heart." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* an|strong=\"H7200\"* evil|strong=\"H7451\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H5921\"* sun|strong=\"H8121\"*, and|strong=\"H7200\"* it|strong=\"H1931\"* is|strong=\"H3426\"* heavy|strong=\"H7451\"* on|strong=\"H5921\"* men|strong=\"H7451\"*:" + }, + { + "verseNum": 2, + "text": "a|strong=\"H3068\"* man|strong=\"H5315\"* to|strong=\"H5414\"* whom|strong=\"H3588\"* God|strong=\"H5414\"* gives|strong=\"H5414\"* riches|strong=\"H6239\"*, wealth|strong=\"H6239\"*, and|strong=\"H6239\"* honor|strong=\"H3519\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* he|strong=\"H1931\"* lacks|strong=\"H2638\"* nothing|strong=\"H3808\"* for|strong=\"H3588\"* his|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H4480\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H1931\"* desires, yet|strong=\"H3588\"* God|strong=\"H5414\"* gives|strong=\"H5414\"* him|strong=\"H5414\"* no|strong=\"H3808\"* power|strong=\"H7980\"* to|strong=\"H5414\"* eat of|strong=\"H4480\"* it|strong=\"H5414\"*, but|strong=\"H3588\"* an|strong=\"H5414\"* alien|strong=\"H5237\"* eats it|strong=\"H5414\"*. This|strong=\"H2088\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*, and|strong=\"H6239\"* it|strong=\"H5414\"* is|strong=\"H2088\"* an|strong=\"H5414\"* evil|strong=\"H7451\"* disease|strong=\"H2483\"*." + }, + { + "verseNum": 3, + "text": "If|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H5315\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* children|strong=\"H3205\"*, and|strong=\"H3967\"* lives|strong=\"H5315\"* many|strong=\"H7227\"* years|strong=\"H8141\"*, so|strong=\"H4480\"* that|strong=\"H3117\"* the|strong=\"H3205\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H1961\"* years|strong=\"H8141\"* are|strong=\"H3117\"* many|strong=\"H7227\"*, but|strong=\"H3808\"* his|strong=\"H1961\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* not|strong=\"H3808\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* good|strong=\"H2896\"*, and|strong=\"H3967\"* moreover|strong=\"H1571\"* he|strong=\"H3117\"* has|strong=\"H1961\"* no|strong=\"H3808\"* burial|strong=\"H6900\"*, I|strong=\"H3117\"* say that|strong=\"H3117\"* a|strong=\"H3068\"* stillborn|strong=\"H5309\"* child|strong=\"H3205\"* is|strong=\"H5315\"* better|strong=\"H2896\"* than|strong=\"H4480\"* he|strong=\"H3117\"*;" + }, + { + "verseNum": 4, + "text": "for|strong=\"H3588\"* it|strong=\"H3588\"* comes in|strong=\"H3212\"* vanity|strong=\"H1892\"*, and|strong=\"H3212\"* departs in|strong=\"H3212\"* darkness|strong=\"H2822\"*, and|strong=\"H3212\"* its|strong=\"H3588\"* name|strong=\"H8034\"* is|strong=\"H8034\"* covered|strong=\"H3680\"* with|strong=\"H3212\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 5, + "text": "Moreover|strong=\"H1571\"* it|strong=\"H7200\"* has|strong=\"H1571\"* not|strong=\"H3808\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* sun|strong=\"H8121\"* nor|strong=\"H3808\"* known|strong=\"H3045\"* it|strong=\"H7200\"*. This|strong=\"H2088\"* has|strong=\"H1571\"* rest|strong=\"H5183\"* rather|strong=\"H3808\"* than|strong=\"H3808\"* the|strong=\"H7200\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "Yes|strong=\"H7200\"*, though he|strong=\"H3605\"* live|strong=\"H2421\"* a|strong=\"H3068\"* thousand years|strong=\"H8141\"* twice|strong=\"H6471\"* told, and|strong=\"H1980\"* yet|strong=\"H3808\"* fails to|strong=\"H1980\"* enjoy|strong=\"H7200\"* good|strong=\"H2896\"*, don’t all|strong=\"H3605\"* go|strong=\"H1980\"* to|strong=\"H1980\"* one|strong=\"H3605\"* place|strong=\"H4725\"*?" + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H5999\"* of|strong=\"H4390\"* man|strong=\"H5315\"* is|strong=\"H5315\"* for|strong=\"H3605\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H6310\"* yet|strong=\"H1571\"* the|strong=\"H3605\"* appetite|strong=\"H5315\"* is|strong=\"H5315\"* not|strong=\"H3808\"* filled|strong=\"H4390\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* what|strong=\"H4100\"* advantage|strong=\"H3148\"* has|strong=\"H4100\"* the|strong=\"H3588\"* wise|strong=\"H2450\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* fool|strong=\"H3684\"*? What|strong=\"H4100\"* has|strong=\"H4100\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* man|strong=\"H2450\"*, that|strong=\"H3588\"* knows|strong=\"H3045\"* how|strong=\"H4100\"* to|strong=\"H1980\"* walk|strong=\"H1980\"* before|strong=\"H4480\"* the|strong=\"H3588\"* living|strong=\"H2416\"*?" + }, + { + "verseNum": 9, + "text": "Better|strong=\"H2896\"* is|strong=\"H2088\"* the|strong=\"H1571\"* sight|strong=\"H5869\"* of|strong=\"H7307\"* the|strong=\"H1571\"* eyes|strong=\"H5869\"* than|strong=\"H2896\"* the|strong=\"H1571\"* wandering|strong=\"H1980\"* of|strong=\"H7307\"* the|strong=\"H1571\"* desire|strong=\"H5315\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"* and|strong=\"H1980\"* a|strong=\"H3068\"* chasing|strong=\"H7469\"* after|strong=\"H7469\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H4100\"* has|strong=\"H1961\"* been|strong=\"H1961\"*, its|strong=\"H3045\"* name|strong=\"H8034\"* was|strong=\"H8034\"* given|strong=\"H7121\"* long|strong=\"H4100\"* ago; and|strong=\"H3045\"* it|strong=\"H1931\"* is|strong=\"H1931\"* known|strong=\"H3045\"* what|strong=\"H4100\"* man|strong=\"H3045\"* is|strong=\"H1931\"*; neither|strong=\"H3808\"* can|strong=\"H3201\"* he|strong=\"H1931\"* contend|strong=\"H1777\"* with|strong=\"H5973\"* him|strong=\"H7121\"* who|strong=\"H1931\"* is|strong=\"H1931\"* mightier than|strong=\"H4480\"* he|strong=\"H1931\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* are|strong=\"H4100\"* many|strong=\"H7235\"* words|strong=\"H1697\"* that|strong=\"H3588\"* create vanity|strong=\"H1892\"*. What|strong=\"H4100\"* does|strong=\"H4100\"* that|strong=\"H3588\"* profit|strong=\"H3148\"* man?" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* knows|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H4310\"* good|strong=\"H2896\"* for|strong=\"H3588\"* man|strong=\"H2896\"* in|strong=\"H6213\"* life|strong=\"H2416\"*, all|strong=\"H3045\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3045\"* vain|strong=\"H1892\"* life|strong=\"H2416\"* which|strong=\"H4310\"* he|strong=\"H3588\"* spends like|strong=\"H1961\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*? For|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* tell|strong=\"H5046\"* a|strong=\"H3068\"* man|strong=\"H2896\"* what|strong=\"H4100\"* will|strong=\"H4310\"* be|strong=\"H1961\"* after|strong=\"H1961\"* him|strong=\"H5046\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*?" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* good|strong=\"H2896\"* name|strong=\"H8034\"* is|strong=\"H3117\"* better|strong=\"H2896\"* than|strong=\"H2896\"* fine|strong=\"H2896\"* perfume; and|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* of|strong=\"H3117\"* death|strong=\"H4194\"* better|strong=\"H2896\"* than|strong=\"H2896\"* the|strong=\"H3205\"* day|strong=\"H3117\"* of|strong=\"H3117\"* one|strong=\"H2896\"*’s birth|strong=\"H3205\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* is|strong=\"H1931\"* better|strong=\"H2896\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning than|strong=\"H2896\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* feasting|strong=\"H4960\"*; for|strong=\"H1004\"* that|strong=\"H3605\"* is|strong=\"H1931\"* the|strong=\"H3605\"* end|strong=\"H5490\"* of|strong=\"H1004\"* all|strong=\"H3605\"* men|strong=\"H3605\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* living|strong=\"H2416\"* should take|strong=\"H5414\"* this|strong=\"H1931\"* to|strong=\"H3212\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "Sorrow|strong=\"H3708\"* is|strong=\"H3820\"* better|strong=\"H2896\"* than|strong=\"H2896\"* laughter|strong=\"H7814\"*; for|strong=\"H3588\"* by|strong=\"H6440\"* the|strong=\"H6440\"* sadness|strong=\"H7455\"* of|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* the|strong=\"H6440\"* heart|strong=\"H3820\"* is|strong=\"H3820\"* made|strong=\"H3190\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H1004\"* heart|strong=\"H3820\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wise|strong=\"H2450\"* is|strong=\"H3820\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning; but|strong=\"H3820\"* the|strong=\"H1004\"* heart|strong=\"H3820\"* of|strong=\"H1004\"* fools|strong=\"H3684\"* is|strong=\"H3820\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mirth|strong=\"H8057\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H2896\"* is|strong=\"H2896\"* better|strong=\"H2896\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* rebuke|strong=\"H1606\"* of|strong=\"H7892\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* than|strong=\"H2896\"* for|strong=\"H2896\"* a|strong=\"H3068\"* man|strong=\"H2450\"* to|strong=\"H8085\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* song|strong=\"H7892\"* of|strong=\"H7892\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* as|strong=\"H1571\"* the|strong=\"H3588\"* crackling|strong=\"H6963\"* of|strong=\"H6963\"* thorns|strong=\"H5518\"* under|strong=\"H8478\"* a|strong=\"H3068\"* pot|strong=\"H5518\"*, so|strong=\"H3651\"* is|strong=\"H2088\"* the|strong=\"H3588\"* laughter|strong=\"H7814\"* of|strong=\"H6963\"* the|strong=\"H3588\"* fool|strong=\"H3684\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 7, + "text": "Surely|strong=\"H3588\"* extortion|strong=\"H6233\"* makes|strong=\"H1984\"* the|strong=\"H3588\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* foolish|strong=\"H1984\"*; and|strong=\"H3820\"* a|strong=\"H3068\"* bribe|strong=\"H4979\"* destroys the|strong=\"H3588\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "Better|strong=\"H2896\"* is|strong=\"H1697\"* the|strong=\"H1697\"* end of|strong=\"H1697\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* than|strong=\"H2896\"* its beginning|strong=\"H7225\"*." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H7307\"* hasty in|strong=\"H5117\"* your|strong=\"H3588\"* spirit|strong=\"H7307\"* to|strong=\"H7307\"* be|strong=\"H7307\"* angry|strong=\"H3707\"*, for|strong=\"H3588\"* anger|strong=\"H3707\"* rests|strong=\"H5117\"* in|strong=\"H5117\"* the|strong=\"H3588\"* bosom|strong=\"H2436\"* of|strong=\"H7307\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 10, + "text": "Don’t say, “Why|strong=\"H4100\"* were|strong=\"H1961\"* the|strong=\"H5921\"* former|strong=\"H7223\"* days|strong=\"H3117\"* better|strong=\"H2896\"* than|strong=\"H2896\"* these|strong=\"H2088\"*?” For|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H4100\"* not|strong=\"H3808\"* ask|strong=\"H7592\"* wisely|strong=\"H2451\"* about|strong=\"H1961\"* this|strong=\"H2088\"*." + }, + { + "verseNum": 11, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2896\"* as|strong=\"H5159\"* good|strong=\"H2896\"* as|strong=\"H5159\"* an|strong=\"H7200\"* inheritance|strong=\"H5159\"*. Yes|strong=\"H7200\"*, it|strong=\"H7200\"* is|strong=\"H2896\"* more|strong=\"H3148\"* excellent for|strong=\"H2896\"* those|strong=\"H5973\"* who|strong=\"H2896\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* wisdom|strong=\"H2451\"* is|strong=\"H3701\"* a|strong=\"H3068\"* defense, even|strong=\"H3588\"* as|strong=\"H3588\"* money|strong=\"H3701\"* is|strong=\"H3701\"* a|strong=\"H3068\"* defense; but|strong=\"H3588\"* the|strong=\"H3588\"* excellency|strong=\"H3504\"* of|strong=\"H1167\"* knowledge|strong=\"H1847\"* is|strong=\"H3701\"* that|strong=\"H3588\"* wisdom|strong=\"H2451\"* preserves|strong=\"H2421\"* the|strong=\"H3588\"* life|strong=\"H2421\"* of|strong=\"H1167\"* him|strong=\"H3588\"* who|strong=\"H3588\"* has|strong=\"H3588\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 13, + "text": "Consider|strong=\"H7200\"* the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H4639\"* God|strong=\"H4310\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* make|strong=\"H7200\"* that|strong=\"H3588\"* straight|strong=\"H8626\"* which|strong=\"H4310\"* he|strong=\"H3588\"* has|strong=\"H4310\"* made|strong=\"H4639\"* crooked|strong=\"H5791\"*?" + }, + { + "verseNum": 14, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* prosperity|strong=\"H2896\"* be|strong=\"H1961\"* joyful|strong=\"H2896\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* adversity|strong=\"H7451\"* consider|strong=\"H7200\"*; yes|strong=\"H1571\"*, God|strong=\"H3808\"* has|strong=\"H1961\"* made|strong=\"H6213\"* the|strong=\"H5921\"* one|strong=\"H2088\"* side|strong=\"H2088\"* by|strong=\"H5921\"* side|strong=\"H2088\"* with|strong=\"H6213\"* the|strong=\"H5921\"* other|strong=\"H2088\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* end|strong=\"H1700\"* that|strong=\"H7200\"* man|strong=\"H7451\"* should|strong=\"H3117\"* not|strong=\"H3808\"* find|strong=\"H4672\"* out|strong=\"H4672\"* anything|strong=\"H3972\"* after|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* this|strong=\"H7200\"* I|strong=\"H3117\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* in|strong=\"H3117\"* my|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*: there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H7563\"* who|strong=\"H3605\"* perishes in|strong=\"H3117\"* his|strong=\"H3605\"* righteousness|strong=\"H6664\"*, and|strong=\"H3117\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* who|strong=\"H3605\"* lives long|strong=\"H3117\"* in|strong=\"H3117\"* his|strong=\"H3605\"* evildoing." + }, + { + "verseNum": 16, + "text": "Don’t be|strong=\"H1961\"* overly|strong=\"H3148\"* righteous|strong=\"H6662\"*, neither make|strong=\"H8074\"* yourself overly|strong=\"H3148\"* wise|strong=\"H2449\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H4100\"* destroy|strong=\"H8074\"* yourself?" + }, + { + "verseNum": 17, + "text": "Don’t be|strong=\"H1961\"* too|strong=\"H1961\"* wicked|strong=\"H7561\"*, neither|strong=\"H3808\"* be|strong=\"H1961\"* foolish|strong=\"H5530\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3808\"* die|strong=\"H4191\"* before|strong=\"H3808\"* your|strong=\"H7235\"* time|strong=\"H6256\"*?" + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* is|strong=\"H2088\"* good|strong=\"H2896\"* that|strong=\"H3588\"* you|strong=\"H3588\"* should|strong=\"H3588\"* take|strong=\"H3318\"* hold of|strong=\"H3027\"* this|strong=\"H2088\"*. Yes|strong=\"H3588\"*, also|strong=\"H1571\"* don’t withdraw|strong=\"H3240\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* from|strong=\"H3318\"* that|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3605\"* fears|strong=\"H3373\"* God|strong=\"H3027\"* will|strong=\"H1571\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3027\"* them|strong=\"H3027\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H5892\"* a|strong=\"H3068\"* strength to|strong=\"H1961\"* the|strong=\"H1961\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* more|strong=\"H2450\"* than|strong=\"H2451\"* ten|strong=\"H6235\"* rulers|strong=\"H7989\"* who|strong=\"H2450\"* are|strong=\"H5892\"* in|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 20, + "text": "Surely|strong=\"H3588\"* there is|strong=\"H2896\"* not|strong=\"H3808\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* on|strong=\"H6213\"* earth who|strong=\"H2896\"* does|strong=\"H6213\"* good|strong=\"H2896\"* and|strong=\"H6213\"* doesn’t sin|strong=\"H2398\"*." + }, + { + "verseNum": 21, + "text": "Also|strong=\"H1571\"* don’t take|strong=\"H5414\"* heed|strong=\"H8085\"* to|strong=\"H1696\"* all|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* are|strong=\"H1697\"* spoken|strong=\"H1696\"*, lest you|strong=\"H5414\"* hear|strong=\"H8085\"* your|strong=\"H3605\"* servant|strong=\"H5650\"* curse|strong=\"H7043\"* you|strong=\"H5414\"*;" + }, + { + "verseNum": 22, + "text": "for|strong=\"H3588\"* often your|strong=\"H3045\"* own heart|strong=\"H3820\"* knows|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* yourself|strong=\"H3820\"* have|strong=\"H3045\"* likewise|strong=\"H1571\"* cursed|strong=\"H7043\"* others|strong=\"H7227\"*." + }, + { + "verseNum": 23, + "text": "All|strong=\"H3605\"* this|strong=\"H1931\"* I|strong=\"H7350\"* have|strong=\"H3605\"* proved|strong=\"H5254\"* in|strong=\"H4480\"* wisdom|strong=\"H2451\"*. I|strong=\"H7350\"* said, “I|strong=\"H7350\"* will|strong=\"H1931\"* be|strong=\"H2451\"* wise|strong=\"H2449\"*;” but|strong=\"H1931\"* it|strong=\"H1931\"* was|strong=\"H1931\"* far|strong=\"H7350\"* from|strong=\"H4480\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 24, + "text": "That|strong=\"H1961\"* which|strong=\"H4310\"* is|strong=\"H4310\"*, is|strong=\"H4310\"* far|strong=\"H7350\"* off|strong=\"H7350\"* and|strong=\"H1961\"* exceedingly|strong=\"H6013\"* deep|strong=\"H6013\"*. Who|strong=\"H4310\"* can|strong=\"H4310\"* find|strong=\"H4672\"* it|strong=\"H1961\"* out|strong=\"H4672\"*?" + }, + { + "verseNum": 25, + "text": "I|strong=\"H3045\"* turned|strong=\"H5437\"* around|strong=\"H5437\"*, and|strong=\"H2451\"* my|strong=\"H3045\"* heart|strong=\"H3820\"* sought|strong=\"H1245\"* to|strong=\"H3820\"* know|strong=\"H3045\"* and|strong=\"H2451\"* to|strong=\"H3820\"* search|strong=\"H1245\"* out|strong=\"H8446\"*, and|strong=\"H2451\"* to|strong=\"H3820\"* seek|strong=\"H1245\"* wisdom|strong=\"H2451\"* and|strong=\"H2451\"* the|strong=\"H3045\"* scheme of|strong=\"H3820\"* things, and|strong=\"H2451\"* to|strong=\"H3820\"* know|strong=\"H3045\"* that|strong=\"H3045\"* wickedness|strong=\"H7562\"* is|strong=\"H3820\"* stupidity, and|strong=\"H2451\"* that|strong=\"H3045\"* foolishness|strong=\"H5531\"* is|strong=\"H3820\"* madness|strong=\"H1947\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H6440\"* find|strong=\"H4672\"* more|strong=\"H4480\"* bitter|strong=\"H4751\"* than|strong=\"H4480\"* death|strong=\"H4194\"* the|strong=\"H6440\"* woman whose heart|strong=\"H3820\"* is|strong=\"H1931\"* snares|strong=\"H4685\"* and|strong=\"H3027\"* traps, whose hands|strong=\"H3027\"* are|strong=\"H3027\"* chains. Whoever pleases|strong=\"H2896\"* God|strong=\"H3027\"* shall|strong=\"H3820\"* escape|strong=\"H4422\"* from|strong=\"H4480\"* her|strong=\"H4672\"*; but|strong=\"H1931\"* the|strong=\"H6440\"* sinner|strong=\"H2398\"* will|strong=\"H3820\"* be|strong=\"H3027\"* ensnared by|strong=\"H3027\"* her|strong=\"H4672\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H4672\"* found|strong=\"H4672\"* this|strong=\"H2088\"*,” says the|strong=\"H7200\"* Preacher|strong=\"H6953\"*, “to|strong=\"H7200\"* one|strong=\"H2088\"* another|strong=\"H2088\"*, to|strong=\"H7200\"* find|strong=\"H4672\"* an|strong=\"H7200\"* explanation|strong=\"H2808\"*" + }, + { + "verseNum": 28, + "text": "which|strong=\"H5315\"* my|strong=\"H3605\"* soul|strong=\"H5315\"* still|strong=\"H5750\"* seeks|strong=\"H1245\"*, but|strong=\"H3808\"* I|strong=\"H5315\"* have|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"*. I|strong=\"H5315\"* have|strong=\"H4672\"* found|strong=\"H4672\"* one|strong=\"H3605\"* man|strong=\"H5315\"* among|strong=\"H4672\"* a|strong=\"H3068\"* thousand, but|strong=\"H3808\"* I|strong=\"H5315\"* have|strong=\"H4672\"* not|strong=\"H3808\"* found|strong=\"H4672\"* a|strong=\"H3068\"* woman among|strong=\"H4672\"* all|strong=\"H3605\"* those|strong=\"H3605\"*." + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H7200\"* have|strong=\"H4672\"* only|strong=\"H1245\"* found|strong=\"H4672\"* this|strong=\"H2088\"*: that|strong=\"H7200\"* God made|strong=\"H6213\"* mankind upright|strong=\"H3477\"*; but|strong=\"H7200\"* they|strong=\"H1992\"* search|strong=\"H1245\"* for|strong=\"H6213\"* many|strong=\"H7227\"* inventions|strong=\"H2810\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H1697\"* the|strong=\"H6440\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*? And|strong=\"H2451\"* who|strong=\"H4310\"* knows|strong=\"H3045\"* the|strong=\"H6440\"* interpretation|strong=\"H6592\"* of|strong=\"H1697\"* a|strong=\"H3068\"* thing|strong=\"H1697\"*? A|strong=\"H3068\"* man|strong=\"H2450\"*’s wisdom|strong=\"H2451\"* makes|strong=\"H6440\"* his|strong=\"H6440\"* face|strong=\"H6440\"* shine, and|strong=\"H2451\"* the|strong=\"H6440\"* hardness of|strong=\"H1697\"* his|strong=\"H6440\"* face|strong=\"H6440\"* is|strong=\"H4310\"* changed|strong=\"H8132\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* say|strong=\"H6310\"*, “Keep|strong=\"H8104\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s command|strong=\"H6310\"*!” because|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* oath|strong=\"H7621\"* to|strong=\"H5921\"* God." + }, + { + "verseNum": 3, + "text": "Don’t be|strong=\"H1697\"* hasty to|strong=\"H3212\"* go|strong=\"H3212\"* out|strong=\"H6213\"* of|strong=\"H1697\"* his|strong=\"H3605\"* presence|strong=\"H6440\"*. Don’t persist|strong=\"H5975\"* in|strong=\"H6213\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* thing|strong=\"H1697\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H6213\"* whatever|strong=\"H3605\"* pleases|strong=\"H2654\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "for|strong=\"H6213\"* the|strong=\"H6213\"* king|strong=\"H4428\"*’s word|strong=\"H1697\"* is|strong=\"H4310\"* supreme. Who|strong=\"H4310\"* can|strong=\"H4310\"* say|strong=\"H1697\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H6213\"* doing|strong=\"H6213\"*?”" + }, + { + "verseNum": 5, + "text": "Whoever|strong=\"H8104\"* keeps|strong=\"H8104\"* the|strong=\"H8104\"* commandment|strong=\"H4687\"* shall|strong=\"H3820\"* not|strong=\"H3808\"* come|strong=\"H4941\"* to|strong=\"H6256\"* harm|strong=\"H7451\"*, and|strong=\"H4941\"* his|strong=\"H8104\"* wise|strong=\"H2450\"* heart|strong=\"H3820\"* will|strong=\"H3820\"* know|strong=\"H3045\"* the|strong=\"H8104\"* time|strong=\"H6256\"* and|strong=\"H4941\"* procedure|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* time|strong=\"H6256\"* and|strong=\"H4941\"* procedure|strong=\"H4941\"* for|strong=\"H3588\"* every|strong=\"H3605\"* purpose|strong=\"H2656\"*, although|strong=\"H3588\"* the|strong=\"H3605\"* misery|strong=\"H7451\"* of|strong=\"H5921\"* man|strong=\"H7451\"* is|strong=\"H3426\"* heavy|strong=\"H7451\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* doesn’t know|strong=\"H3045\"* that|strong=\"H3588\"* which|strong=\"H4310\"* will|strong=\"H4310\"* be|strong=\"H1961\"*; for|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* tell|strong=\"H5046\"* him|strong=\"H5046\"* how|strong=\"H4100\"* it|strong=\"H3588\"* will|strong=\"H4310\"* be|strong=\"H1961\"*?" + }, + { + "verseNum": 8, + "text": "There|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3808\"* man|strong=\"H1167\"* who|strong=\"H4421\"* has|strong=\"H3117\"* power|strong=\"H7983\"* over the|strong=\"H3117\"* spirit|strong=\"H7307\"* to|strong=\"H3117\"* contain the|strong=\"H3117\"* spirit|strong=\"H7307\"*; neither|strong=\"H3808\"* does|strong=\"H3808\"* he|strong=\"H3117\"* have|strong=\"H3117\"* power|strong=\"H7983\"* over the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* death|strong=\"H4194\"*. There|strong=\"H3117\"* is|strong=\"H3117\"* no|strong=\"H3808\"* discharge|strong=\"H4917\"* in|strong=\"H3117\"* war|strong=\"H4421\"*; neither|strong=\"H3808\"* shall|strong=\"H3117\"* wickedness|strong=\"H7562\"* deliver|strong=\"H4422\"* those who|strong=\"H4421\"* practice|strong=\"H1167\"* it|strong=\"H3117\"*." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* this|strong=\"H2088\"* I|strong=\"H5414\"* have|strong=\"H7200\"* seen|strong=\"H7200\"*, and|strong=\"H7200\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* mind|strong=\"H3820\"* to|strong=\"H6213\"* every|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H7200\"* is|strong=\"H2088\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*. There|strong=\"H2088\"* is|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* in|strong=\"H6213\"* which|strong=\"H7451\"* one|strong=\"H2088\"* man|strong=\"H7451\"* has|strong=\"H3820\"* power|strong=\"H7980\"* over|strong=\"H5414\"* another|strong=\"H2088\"* to|strong=\"H6213\"* his|strong=\"H3605\"* hurt|strong=\"H7451\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H3651\"* I|strong=\"H3651\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* buried|strong=\"H6912\"*. Indeed|strong=\"H1571\"* they|strong=\"H3651\"* came|strong=\"H1980\"* also|strong=\"H1571\"* from|strong=\"H1980\"* holiness. They|strong=\"H3651\"* went|strong=\"H1980\"* and|strong=\"H1980\"* were|strong=\"H1571\"* forgotten|strong=\"H7911\"* in|strong=\"H1980\"* the|strong=\"H7200\"* city|strong=\"H5892\"* where|strong=\"H4725\"* they|strong=\"H3651\"* did|strong=\"H6213\"* this|strong=\"H2088\"*. This|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H2088\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 11, + "text": "Because|strong=\"H5921\"* sentence|strong=\"H6599\"* against|strong=\"H5921\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* work|strong=\"H4639\"* is|strong=\"H3820\"* not|strong=\"H6213\"* executed|strong=\"H6213\"* speedily|strong=\"H4120\"*, therefore|strong=\"H3651\"* the|strong=\"H5921\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* is|strong=\"H3820\"* fully|strong=\"H4390\"* set|strong=\"H4390\"* in|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H6213\"* do|strong=\"H6213\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 12, + "text": "Though|strong=\"H3588\"* a|strong=\"H3068\"* sinner|strong=\"H2398\"* commits|strong=\"H6213\"* crimes|strong=\"H7451\"* a|strong=\"H3068\"* hundred|strong=\"H3967\"* times|strong=\"H6440\"*, and|strong=\"H3967\"* lives|strong=\"H1961\"* long|strong=\"H6440\"*, yet|strong=\"H3588\"* surely|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* better|strong=\"H2896\"* with|strong=\"H6213\"* those|strong=\"H6213\"* who|strong=\"H2896\"* fear|strong=\"H3372\"* God, who|strong=\"H2896\"* are|strong=\"H1571\"* reverent before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H3808\"* it|strong=\"H6440\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* well|strong=\"H2896\"* with|strong=\"H6440\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*, neither|strong=\"H3808\"* shall|strong=\"H3117\"* he|strong=\"H3117\"* lengthen days|strong=\"H3117\"* like|strong=\"H1961\"* a|strong=\"H3068\"* shadow|strong=\"H6738\"*, because|strong=\"H6440\"* he|strong=\"H3117\"* doesn’t fear|strong=\"H3373\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* a|strong=\"H3068\"* vanity|strong=\"H1892\"* which|strong=\"H2088\"* is|strong=\"H3426\"* done|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth, that|strong=\"H2088\"* there|strong=\"H3426\"* are|strong=\"H7563\"* righteous|strong=\"H6662\"* men|strong=\"H7563\"* to|strong=\"H6213\"* whom it|strong=\"H5921\"* happens|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*. Again|strong=\"H1571\"*, there|strong=\"H3426\"* are|strong=\"H7563\"* wicked|strong=\"H7563\"* men|strong=\"H7563\"* to|strong=\"H6213\"* whom it|strong=\"H5921\"* happens|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* work|strong=\"H4639\"* of|strong=\"H5921\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*. I|strong=\"H5921\"* said that|strong=\"H2088\"* this|strong=\"H2088\"* also|strong=\"H1571\"* is|strong=\"H3426\"* vanity|strong=\"H1892\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5414\"* I|strong=\"H3588\"* commended|strong=\"H7623\"* mirth|strong=\"H8057\"*, because|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H2896\"* has|strong=\"H3117\"* no|strong=\"H5414\"* better|strong=\"H2896\"* thing|strong=\"H2416\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"* than|strong=\"H2896\"* to|strong=\"H5414\"* eat, to|strong=\"H5414\"* drink|strong=\"H8354\"*, and|strong=\"H3117\"* to|strong=\"H5414\"* be|strong=\"H3117\"* joyful|strong=\"H8055\"*: for|strong=\"H3588\"* that|strong=\"H3588\"* will|strong=\"H5414\"* accompany him|strong=\"H5414\"* in|strong=\"H3117\"* his|strong=\"H5414\"* labor|strong=\"H5999\"* all|strong=\"H5414\"* the|strong=\"H3588\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H5414\"* life|strong=\"H2416\"* which|strong=\"H1931\"* God|strong=\"H5414\"* has|strong=\"H3117\"* given|strong=\"H5414\"* him|strong=\"H5414\"* under|strong=\"H8478\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* applied|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H6213\"* know|strong=\"H3045\"* wisdom|strong=\"H2451\"*, and|strong=\"H3117\"* to|strong=\"H6213\"* see|strong=\"H7200\"* the|strong=\"H5921\"* business|strong=\"H6045\"* that|strong=\"H3588\"* is|strong=\"H3820\"* done|strong=\"H6213\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth (even|strong=\"H1571\"* though|strong=\"H3588\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* no|strong=\"H6213\"* sleep|strong=\"H8142\"* day|strong=\"H3117\"* or|strong=\"H1571\"* night|strong=\"H3915\"*)," + }, + { + "verseNum": 17, + "text": "then|strong=\"H1571\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H8478\"* God|strong=\"H3808\"*, that|strong=\"H3588\"* man|strong=\"H2450\"* can|strong=\"H3201\"*’t find|strong=\"H4672\"* out|strong=\"H4672\"* the|strong=\"H3605\"* work|strong=\"H4639\"* that|strong=\"H3588\"* is|strong=\"H1571\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, because|strong=\"H3588\"* however|strong=\"H4672\"* much|strong=\"H6213\"* a|strong=\"H3068\"* man|strong=\"H2450\"* labors|strong=\"H4639\"* to|strong=\"H3201\"* seek|strong=\"H1245\"* it|strong=\"H3588\"* out|strong=\"H4672\"*, yet|strong=\"H3588\"* he|strong=\"H3588\"* won’t find|strong=\"H4672\"* it|strong=\"H3588\"*. Yes|strong=\"H3588\"* even|strong=\"H1571\"* though|strong=\"H3588\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* thinks he|strong=\"H3588\"* can|strong=\"H3201\"* comprehend|strong=\"H3045\"* it|strong=\"H3588\"*, he|strong=\"H3588\"* won’t be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* find|strong=\"H4672\"* it|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2088\"* I|strong=\"H3588\"* laid|strong=\"H5414\"* to|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"*, even|strong=\"H1571\"* to|strong=\"H5414\"* explore all|strong=\"H3605\"* this|strong=\"H2088\"*: that|strong=\"H3588\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, and|strong=\"H3027\"* their|strong=\"H3605\"* works|strong=\"H5652\"*, are|strong=\"H3027\"* in|strong=\"H6440\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* God|strong=\"H5414\"*; whether|strong=\"H3045\"* it|strong=\"H5414\"* is|strong=\"H2088\"* love or|strong=\"H1571\"* hatred|strong=\"H8135\"*, man|strong=\"H2450\"* doesn’t know|strong=\"H3045\"* it|strong=\"H5414\"*; all|strong=\"H3605\"* is|strong=\"H2088\"* before|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 2, + "text": "All|strong=\"H3605\"* things|strong=\"H3605\"* come alike to|strong=\"H7650\"* all|strong=\"H3605\"*. There|strong=\"H3605\"* is|strong=\"H2896\"* one|strong=\"H3605\"* event|strong=\"H4745\"* to|strong=\"H7650\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* and|strong=\"H2896\"* to|strong=\"H7650\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"*; to|strong=\"H7650\"* the|strong=\"H3605\"* good|strong=\"H2896\"*, to|strong=\"H7650\"* the|strong=\"H3605\"* clean|strong=\"H2889\"*, to|strong=\"H7650\"* the|strong=\"H3605\"* unclean|strong=\"H2931\"*, to|strong=\"H7650\"* him|strong=\"H3605\"* who|strong=\"H3605\"* sacrifices|strong=\"H2076\"*, and|strong=\"H2896\"* to|strong=\"H7650\"* him|strong=\"H3605\"* who|strong=\"H3605\"* doesn’t sacrifice|strong=\"H2076\"*. As|strong=\"H3605\"* is|strong=\"H2896\"* the|strong=\"H3605\"* good|strong=\"H2896\"*, so|strong=\"H7650\"* is|strong=\"H2896\"* the|strong=\"H3605\"* sinner|strong=\"H2398\"*; he|strong=\"H3605\"* who|strong=\"H3605\"* takes|strong=\"H7650\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*, as|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* fears|strong=\"H3372\"* an|strong=\"H7650\"* oath|strong=\"H7621\"*." + }, + { + "verseNum": 3, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* an|strong=\"H6213\"* evil|strong=\"H7451\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H2088\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, that|strong=\"H3588\"* there|strong=\"H2088\"* is|strong=\"H2088\"* one|strong=\"H2088\"* event|strong=\"H4745\"* to|strong=\"H4191\"* all|strong=\"H3605\"*. Yes|strong=\"H3588\"* also|strong=\"H1571\"*, the|strong=\"H3605\"* heart|strong=\"H3820\"* of|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* is|strong=\"H2088\"* full|strong=\"H4390\"* of|strong=\"H1121\"* evil|strong=\"H7451\"*, and|strong=\"H1121\"* madness|strong=\"H1947\"* is|strong=\"H2088\"* in|strong=\"H6213\"* their|strong=\"H3605\"* heart|strong=\"H3820\"* while|strong=\"H3588\"* they|strong=\"H3588\"* live|strong=\"H2416\"*, and|strong=\"H1121\"* after|strong=\"H3588\"* that|strong=\"H3588\"* they|strong=\"H3588\"* go|strong=\"H8121\"* to|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* to|strong=\"H4191\"* him|strong=\"H4191\"* who|strong=\"H4310\"* is|strong=\"H3426\"* joined with|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"* there|strong=\"H3426\"* is|strong=\"H3426\"* hope; for|strong=\"H3588\"* a|strong=\"H3068\"* living|strong=\"H2416\"* dog|strong=\"H3611\"* is|strong=\"H3426\"* better|strong=\"H2896\"* than|strong=\"H4480\"* a|strong=\"H3068\"* dead|strong=\"H4191\"* lion." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* living|strong=\"H2416\"* know|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H5750\"* die|strong=\"H4191\"*, but|strong=\"H3588\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* don’t know|strong=\"H3045\"* anything|strong=\"H3972\"*, neither do they|strong=\"H3588\"* have|strong=\"H3045\"* any|strong=\"H5750\"* more|strong=\"H5750\"* a|strong=\"H3068\"* reward|strong=\"H7939\"*; for|strong=\"H3588\"* their|strong=\"H3588\"* memory|strong=\"H2143\"* is|strong=\"H2143\"* forgotten|strong=\"H7911\"*." + }, + { + "verseNum": 6, + "text": "Also|strong=\"H1571\"* their|strong=\"H3605\"* love, their|strong=\"H3605\"* hatred|strong=\"H8135\"*, and|strong=\"H5769\"* their|strong=\"H3605\"* envy|strong=\"H7068\"* has|strong=\"H1571\"* perished long|strong=\"H5769\"* ago|strong=\"H5769\"*; neither|strong=\"H1571\"* do|strong=\"H6213\"* they|strong=\"H1992\"* any|strong=\"H3605\"* longer|strong=\"H5750\"* have|strong=\"H1571\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* forever|strong=\"H5769\"* in|strong=\"H6213\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H1571\"* done|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 7, + "text": "Go|strong=\"H3212\"* your|strong=\"H3588\"* way|strong=\"H3212\"*—eat|strong=\"H3899\"* your|strong=\"H3588\"* bread|strong=\"H3899\"* with|strong=\"H3212\"* joy|strong=\"H8057\"*, and|strong=\"H3212\"* drink|strong=\"H8354\"* your|strong=\"H3588\"* wine|strong=\"H3196\"* with|strong=\"H3212\"* a|strong=\"H3068\"* merry|strong=\"H2896\"* heart|strong=\"H3820\"*; for|strong=\"H3588\"* God has|strong=\"H3820\"* already|strong=\"H3528\"* accepted|strong=\"H7521\"* your|strong=\"H3588\"* works|strong=\"H4639\"*." + }, + { + "verseNum": 8, + "text": "Let|strong=\"H6256\"* your|strong=\"H3605\"* garments be|strong=\"H1961\"* always|strong=\"H3605\"* white|strong=\"H3836\"*, and|strong=\"H7218\"* don’t let|strong=\"H6256\"* your|strong=\"H3605\"* head|strong=\"H7218\"* lack|strong=\"H2637\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 9, + "text": "Live|strong=\"H2416\"* joyfully|strong=\"H7200\"* with|strong=\"H5973\"* the|strong=\"H3605\"* wife|strong=\"H2416\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* love all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* life|strong=\"H2416\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3117\"* given|strong=\"H5414\"* you|strong=\"H3588\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* vanity|strong=\"H1892\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* is|strong=\"H1931\"* your|strong=\"H3605\"* portion|strong=\"H2506\"* in|strong=\"H3117\"* life|strong=\"H2416\"*, and|strong=\"H3117\"* in|strong=\"H3117\"* your|strong=\"H3605\"* labor|strong=\"H5999\"* in|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H3588\"* labor|strong=\"H5999\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*." + }, + { + "verseNum": 10, + "text": "Whatever|strong=\"H3605\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* finds|strong=\"H4672\"* to|strong=\"H1980\"* do|strong=\"H6213\"*, do|strong=\"H6213\"* it|strong=\"H3588\"* with|strong=\"H1980\"* your|strong=\"H3605\"* might|strong=\"H3581\"*; for|strong=\"H3588\"* there|strong=\"H8033\"* is|strong=\"H3027\"* no|strong=\"H6213\"* work|strong=\"H4639\"*, nor|strong=\"H2451\"* plan, nor|strong=\"H2451\"* knowledge|strong=\"H1847\"*, nor|strong=\"H2451\"* wisdom|strong=\"H2451\"*, in|strong=\"H1980\"* Sheol|strong=\"H7585\"*,+ 9:10 Sheol is the place of the dead.* where|strong=\"H8033\"* you|strong=\"H3588\"* are|strong=\"H3027\"* going|strong=\"H1980\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* returned|strong=\"H7725\"* and|strong=\"H7725\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* that|strong=\"H3588\"* the|strong=\"H3605\"* race|strong=\"H4793\"* is|strong=\"H1571\"* not|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H3605\"* swift|strong=\"H7031\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* battle|strong=\"H4421\"* to|strong=\"H7725\"* the|strong=\"H3605\"* strong|strong=\"H1368\"*, neither|strong=\"H3808\"* yet|strong=\"H3588\"* bread|strong=\"H3899\"* to|strong=\"H7725\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, nor|strong=\"H3808\"* yet|strong=\"H3588\"* riches|strong=\"H6239\"* to|strong=\"H7725\"* men|strong=\"H1368\"* of|strong=\"H1368\"* understanding, nor|strong=\"H3808\"* yet|strong=\"H3588\"* favor|strong=\"H2580\"* to|strong=\"H7725\"* men|strong=\"H1368\"* of|strong=\"H1368\"* skill|strong=\"H3045\"*; but|strong=\"H3588\"* time|strong=\"H6256\"* and|strong=\"H7725\"* chance|strong=\"H6294\"* happen|strong=\"H7136\"* to|strong=\"H7725\"* them|strong=\"H7725\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* man|strong=\"H1121\"* also|strong=\"H1571\"* doesn’t know|strong=\"H3045\"* his|strong=\"H5921\"* time|strong=\"H6256\"*. As|strong=\"H1571\"* the|strong=\"H5921\"* fish|strong=\"H1709\"* that|strong=\"H3588\"* are|strong=\"H1992\"* taken in|strong=\"H5921\"* an|strong=\"H3588\"* evil|strong=\"H7451\"* net|strong=\"H4685\"*, and|strong=\"H1121\"* as|strong=\"H1571\"* the|strong=\"H5921\"* birds|strong=\"H6833\"* that|strong=\"H3588\"* are|strong=\"H1992\"* caught in|strong=\"H5921\"* the|strong=\"H5921\"* snare|strong=\"H6341\"*, even|strong=\"H1571\"* so|strong=\"H3808\"* are|strong=\"H1992\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* snared|strong=\"H3369\"* in|strong=\"H5921\"* an|strong=\"H3588\"* evil|strong=\"H7451\"* time|strong=\"H6256\"*, when|strong=\"H3588\"* it|strong=\"H5921\"* falls|strong=\"H5307\"* suddenly|strong=\"H6597\"* on|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* have|strong=\"H1571\"* also|strong=\"H1571\"* seen|strong=\"H7200\"* wisdom|strong=\"H2451\"* under|strong=\"H8478\"* the|strong=\"H7200\"* sun|strong=\"H8121\"* in|strong=\"H1419\"* this|strong=\"H1931\"* way, and|strong=\"H1419\"* it|strong=\"H1931\"* seemed|strong=\"H7200\"* great|strong=\"H1419\"* to|strong=\"H7200\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 14, + "text": "There was|strong=\"H5892\"* a|strong=\"H3068\"* little|strong=\"H4592\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* few|strong=\"H4592\"* men|strong=\"H1419\"* within|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* king|strong=\"H4428\"* came|strong=\"H4428\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, besieged|strong=\"H1129\"* it|strong=\"H5921\"*, and|strong=\"H4428\"* built|strong=\"H1129\"* great|strong=\"H1419\"* bulwarks|strong=\"H4685\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Now a|strong=\"H3068\"* poor|strong=\"H4542\"* wise|strong=\"H2450\"* man|strong=\"H2450\"* was|strong=\"H1931\"* found|strong=\"H4672\"* in|strong=\"H5892\"* it|strong=\"H1931\"*, and|strong=\"H5892\"* he|strong=\"H1931\"* by|strong=\"H5892\"* his|strong=\"H2142\"* wisdom|strong=\"H2451\"* delivered|strong=\"H4422\"* the|strong=\"H2142\"* city|strong=\"H5892\"*; yet|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H2450\"* remembered|strong=\"H2142\"* that|strong=\"H1931\"* same|strong=\"H1931\"* poor|strong=\"H4542\"* man|strong=\"H2450\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H8085\"* I|strong=\"H1697\"* said|strong=\"H1697\"*, “Wisdom|strong=\"H2451\"* is|strong=\"H1697\"* better|strong=\"H2896\"* than|strong=\"H2896\"* strength|strong=\"H1369\"*.” Nevertheless the|strong=\"H8085\"* poor|strong=\"H4542\"* man|strong=\"H2896\"*’s wisdom|strong=\"H2451\"* is|strong=\"H1697\"* despised, and|strong=\"H2451\"* his|strong=\"H8085\"* words|strong=\"H1697\"* are|strong=\"H1697\"* not|strong=\"H8085\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* wise|strong=\"H2450\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* quiet|strong=\"H5183\"* are|strong=\"H1697\"* better|strong=\"H5183\"* than|strong=\"H2450\"* the|strong=\"H8085\"* cry|strong=\"H2201\"* of|strong=\"H1697\"* him|strong=\"H8085\"* who|strong=\"H2450\"* rules|strong=\"H4910\"* among|strong=\"H4910\"* fools|strong=\"H3684\"*." + }, + { + "verseNum": 18, + "text": "Wisdom|strong=\"H2451\"* is|strong=\"H2896\"* better|strong=\"H2896\"* than|strong=\"H2896\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H7128\"*; but one|strong=\"H2896\"* sinner|strong=\"H2398\"* destroys much|strong=\"H7235\"* good|strong=\"H2896\"*." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Dead|strong=\"H4194\"* flies|strong=\"H2070\"* cause the|strong=\"H4194\"* oil|strong=\"H8081\"* of|strong=\"H4194\"* the|strong=\"H4194\"* perfumer|strong=\"H7543\"* to|strong=\"H3519\"* produce an evil odor;" + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s heart|strong=\"H3820\"* is|strong=\"H3820\"* at his right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 3, + "text": "Yes|strong=\"H1571\"* also|strong=\"H1571\"* when|strong=\"H1980\"* the|strong=\"H3605\"* fool|strong=\"H5530\"* walks|strong=\"H1980\"* by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"*, his|strong=\"H3605\"* understanding|strong=\"H3820\"* fails him|strong=\"H1931\"*, and|strong=\"H1980\"* he|strong=\"H1931\"* says to|strong=\"H1980\"* everyone|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* fool|strong=\"H5530\"*." + }, + { + "verseNum": 4, + "text": "If|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* ruler|strong=\"H4910\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, don’t leave|strong=\"H3240\"* your|strong=\"H5921\"* place|strong=\"H4725\"*; for|strong=\"H3588\"* gentleness lays great|strong=\"H1419\"* offenses|strong=\"H2399\"* to|strong=\"H5927\"* rest." + }, + { + "verseNum": 5, + "text": "There|strong=\"H3426\"* is|strong=\"H3426\"* an|strong=\"H7200\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* I|strong=\"H7200\"* have|strong=\"H3426\"* seen|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H6440\"* sun|strong=\"H8121\"*, the|strong=\"H6440\"* sort of|strong=\"H6440\"* error|strong=\"H7684\"* which|strong=\"H7451\"* proceeds|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* ruler|strong=\"H7989\"*." + }, + { + "verseNum": 6, + "text": "Folly|strong=\"H5529\"* is|strong=\"H5529\"* set|strong=\"H5414\"* in|strong=\"H3427\"* great|strong=\"H7227\"* dignity|strong=\"H4791\"*, and|strong=\"H3427\"* the|strong=\"H5414\"* rich|strong=\"H6223\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* low|strong=\"H8216\"* place|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* have|strong=\"H5650\"* seen|strong=\"H7200\"* servants|strong=\"H5650\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, and|strong=\"H1980\"* princes|strong=\"H8269\"* walking|strong=\"H1980\"* like|strong=\"H1980\"* servants|strong=\"H5650\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 8, + "text": "He who digs|strong=\"H2658\"* a|strong=\"H3068\"* pit|strong=\"H1475\"* may|strong=\"H5175\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* it|strong=\"H2658\"*; and|strong=\"H5307\"* whoever breaks|strong=\"H6555\"* through|strong=\"H6555\"* a|strong=\"H3068\"* wall|strong=\"H1447\"* may|strong=\"H5175\"* be bitten|strong=\"H5391\"* by|strong=\"H5307\"* a|strong=\"H3068\"* snake|strong=\"H5175\"*." + }, + { + "verseNum": 9, + "text": "Whoever carves out|strong=\"H5265\"* stones may be|strong=\"H6086\"* injured by|strong=\"H6086\"* them. Whoever splits|strong=\"H1234\"* wood|strong=\"H6086\"* may be|strong=\"H6086\"* endangered|strong=\"H5533\"* by|strong=\"H6086\"* it." + }, + { + "verseNum": 10, + "text": "If|strong=\"H7043\"* the|strong=\"H6440\"* ax is|strong=\"H1931\"* blunt|strong=\"H6949\"*, and|strong=\"H2451\"* one|strong=\"H3808\"* doesn’t sharpen|strong=\"H7043\"* the|strong=\"H6440\"* edge|strong=\"H6949\"*, then|strong=\"H3808\"* he|strong=\"H1931\"* must|strong=\"H3808\"* use|strong=\"H1931\"* more|strong=\"H3808\"* strength|strong=\"H2428\"*; but|strong=\"H3808\"* skill|strong=\"H2451\"* brings success|strong=\"H3787\"*." + }, + { + "verseNum": 11, + "text": "If the|strong=\"H3808\"* snake|strong=\"H5175\"* bites|strong=\"H5391\"* before|strong=\"H3808\"* it|strong=\"H3808\"* is|strong=\"H3956\"* charmed|strong=\"H3908\"*, then|strong=\"H3808\"* is|strong=\"H3956\"* there no|strong=\"H3808\"* profit|strong=\"H3504\"* for|strong=\"H3808\"* the|strong=\"H3808\"* charmer|strong=\"H1167\"*’s tongue|strong=\"H3956\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* wise|strong=\"H2450\"* man|strong=\"H2450\"*’s mouth|strong=\"H6310\"* are|strong=\"H1697\"* gracious|strong=\"H2580\"*; but|strong=\"H1104\"* a|strong=\"H3068\"* fool|strong=\"H3684\"* is|strong=\"H1697\"* swallowed|strong=\"H1104\"* by|strong=\"H8193\"* his|strong=\"H6310\"* own lips|strong=\"H8193\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H1697\"* beginning|strong=\"H8462\"* of|strong=\"H1697\"* the|strong=\"H1697\"* words|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6310\"* mouth|strong=\"H6310\"* is|strong=\"H1697\"* foolishness|strong=\"H5531\"*; and|strong=\"H1697\"* the|strong=\"H1697\"* end|strong=\"H6310\"* of|strong=\"H1697\"* his|strong=\"H6310\"* talk|strong=\"H1697\"* is|strong=\"H1697\"* mischievous|strong=\"H7451\"* madness|strong=\"H1948\"*." + }, + { + "verseNum": 14, + "text": "A|strong=\"H3068\"* fool|strong=\"H5530\"* also|strong=\"H3045\"* multiplies|strong=\"H7235\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H3045\"* labor|strong=\"H5999\"* of|strong=\"H5892\"* fools|strong=\"H3684\"* wearies|strong=\"H3021\"* every|strong=\"H3212\"* one|strong=\"H3808\"* of|strong=\"H5892\"* them|strong=\"H3045\"*; for|strong=\"H5892\"* he|strong=\"H3808\"* doesn’t know|strong=\"H3045\"* how|strong=\"H3045\"* to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3045\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 16, + "text": "Woe to|strong=\"H4428\"* you|strong=\"H1242\"*, land, when your|strong=\"H4428\"* king|strong=\"H4428\"* is|strong=\"H4428\"* a|strong=\"H3068\"* child|strong=\"H5288\"*," + }, + { + "verseNum": 17, + "text": "Happy are|strong=\"H1121\"* you|strong=\"H3808\"*, land, when|strong=\"H6256\"* your|strong=\"H3808\"* king|strong=\"H4428\"* is|strong=\"H4428\"* the|strong=\"H3808\"* son|strong=\"H1121\"* of|strong=\"H1121\"* nobles|strong=\"H2715\"*," + }, + { + "verseNum": 18, + "text": "By|strong=\"H3027\"* slothfulness|strong=\"H6103\"* the|strong=\"H3027\"* roof sinks in|strong=\"H1004\"*;" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* feast|strong=\"H3899\"* is|strong=\"H3701\"* made|strong=\"H6213\"* for|strong=\"H6213\"* laughter|strong=\"H7814\"*," + }, + { + "verseNum": 20, + "text": "Don’t curse|strong=\"H7043\"* the|strong=\"H3588\"* king|strong=\"H4428\"*, no, not|strong=\"H3588\"* in|strong=\"H4428\"* your|strong=\"H3588\"* thoughts|strong=\"H1697\"*;" + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Cast|strong=\"H7971\"* your|strong=\"H5921\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*;" + }, + { + "verseNum": 2, + "text": "Give|strong=\"H5414\"* a|strong=\"H3068\"* portion|strong=\"H2506\"* to|strong=\"H1961\"* seven|strong=\"H7651\"*, yes|strong=\"H3588\"*, even|strong=\"H1571\"* to|strong=\"H1961\"* eight|strong=\"H8083\"*;" + }, + { + "verseNum": 3, + "text": "If the|strong=\"H5921\"* clouds|strong=\"H5645\"* are|strong=\"H8033\"* full|strong=\"H4390\"* of|strong=\"H4390\"* rain|strong=\"H1653\"*, they|strong=\"H8033\"* empty|strong=\"H7324\"* themselves|strong=\"H4390\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth;" + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* who|strong=\"H8104\"* observes|strong=\"H8104\"* the|strong=\"H7200\"* wind|strong=\"H7307\"* won’t sow|strong=\"H2232\"*;" + }, + { + "verseNum": 5, + "text": "As|strong=\"H6213\"* you|strong=\"H3605\"* don’t know|strong=\"H3045\"* what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3605\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H3027\"* the|strong=\"H3588\"* morning|strong=\"H1242\"* sow|strong=\"H2232\"* your|strong=\"H3045\"* seed|strong=\"H2233\"*," + }, + { + "verseNum": 7, + "text": "Truly the|strong=\"H7200\"* light is|strong=\"H2896\"* sweet|strong=\"H4966\"*," + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H3605\"* lives|strong=\"H2421\"* many|strong=\"H7235\"* years|strong=\"H8141\"*, let|strong=\"H8055\"* him|strong=\"H3605\"* rejoice|strong=\"H8055\"* in|strong=\"H8141\"* them|strong=\"H8055\"* all|strong=\"H3605\"*;" + }, + { + "verseNum": 9, + "text": "Rejoice|strong=\"H8055\"*, young|strong=\"H3117\"* man|strong=\"H3605\"*, in|strong=\"H5921\"* your|strong=\"H3605\"* youth|strong=\"H3208\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* remove|strong=\"H5493\"* sorrow|strong=\"H3708\"* from|strong=\"H5493\"* your|strong=\"H3588\"* heart|strong=\"H3820\"*," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Remember|strong=\"H2142\"* also|strong=\"H3117\"* your|strong=\"H2142\"* Creator|strong=\"H1254\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2142\"* youth," + }, + { + "verseNum": 2, + "text": "Before|strong=\"H5704\"* the|strong=\"H7725\"* sun|strong=\"H8121\"*, the|strong=\"H7725\"* light, the|strong=\"H7725\"* moon|strong=\"H3394\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* stars|strong=\"H3556\"* are|strong=\"H5645\"* darkened|strong=\"H2821\"*," + }, + { + "verseNum": 3, + "text": "in|strong=\"H1004\"* the|strong=\"H7200\"* day|strong=\"H3117\"* when|strong=\"H3588\"* the|strong=\"H7200\"* keepers|strong=\"H8104\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* tremble|strong=\"H2111\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H6965\"* the|strong=\"H3605\"* doors|strong=\"H1817\"* shall|strong=\"H1323\"* be|strong=\"H6963\"* shut|strong=\"H5462\"* in|strong=\"H6963\"* the|strong=\"H3605\"* street|strong=\"H7784\"*;" + }, + { + "verseNum": 5, + "text": "yes|strong=\"H3588\"*, they|strong=\"H3588\"* shall|strong=\"H1004\"* be|strong=\"H5769\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* heights," + }, + { + "verseNum": 6, + "text": "before|strong=\"H5921\"* the|strong=\"H5921\"* silver|strong=\"H3701\"* cord|strong=\"H2256\"* is|strong=\"H3701\"* severed," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7725\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* returns|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5921\"* earth|strong=\"H6083\"* as|strong=\"H1961\"* it|strong=\"H5414\"* was|strong=\"H1961\"*," + }, + { + "verseNum": 8, + "text": "“Vanity|strong=\"H1892\"* of|strong=\"H3605\"* vanities|strong=\"H1892\"*,” says the|strong=\"H3605\"* Preacher|strong=\"H6953\"*." + }, + { + "verseNum": 9, + "text": "Further|strong=\"H5750\"*, because the|strong=\"H1961\"* Preacher|strong=\"H6953\"* was|strong=\"H1961\"* wise|strong=\"H2450\"*, he|strong=\"H5971\"* still|strong=\"H5750\"* taught|strong=\"H3925\"* the|strong=\"H1961\"* people|strong=\"H5971\"* knowledge|strong=\"H1847\"*. Yes, he|strong=\"H5971\"* pondered|strong=\"H2713\"*, sought out|strong=\"H2713\"*, and|strong=\"H5971\"* set in|strong=\"H3925\"* order|strong=\"H8626\"* many|strong=\"H7235\"* proverbs|strong=\"H4912\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1697\"* Preacher|strong=\"H6953\"* sought|strong=\"H1245\"* to|strong=\"H1245\"* find|strong=\"H4672\"* out|strong=\"H4672\"* acceptable|strong=\"H2656\"* words|strong=\"H1697\"*, and|strong=\"H1697\"* that|strong=\"H1697\"* which|strong=\"H1697\"* was|strong=\"H1697\"* written|strong=\"H3789\"* blamelessly, words|strong=\"H1697\"* of|strong=\"H1697\"* truth." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5414\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5414\"* wise|strong=\"H2450\"* are|strong=\"H1697\"* like|strong=\"H1697\"* goads|strong=\"H1861\"*; and|strong=\"H1697\"* like|strong=\"H1697\"* nails|strong=\"H4930\"* well fastened|strong=\"H5414\"* are|strong=\"H1697\"* words|strong=\"H1697\"* from|strong=\"H1697\"* the|strong=\"H5414\"* masters|strong=\"H1167\"* of|strong=\"H1697\"* assemblies, which|strong=\"H1697\"* are|strong=\"H1697\"* given|strong=\"H5414\"* from|strong=\"H1697\"* one|strong=\"H1697\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 12, + "text": "Furthermore, my|strong=\"H6213\"* son|strong=\"H1121\"*, be|strong=\"H1121\"* admonished|strong=\"H2094\"*: of|strong=\"H1121\"* making|strong=\"H6213\"* many|strong=\"H7235\"* books|strong=\"H5612\"* there|strong=\"H1992\"* is|strong=\"H1320\"* no|strong=\"H6213\"* end|strong=\"H7093\"*; and|strong=\"H1121\"* much|strong=\"H7235\"* study|strong=\"H3854\"* is|strong=\"H1320\"* a|strong=\"H3068\"* weariness|strong=\"H3024\"* of|strong=\"H1121\"* the|strong=\"H6213\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* end|strong=\"H5490\"* of|strong=\"H1697\"* the|strong=\"H3605\"* matter|strong=\"H1697\"*. All|strong=\"H3605\"* has|strong=\"H3588\"* been|strong=\"H3605\"* heard|strong=\"H8085\"*. Fear|strong=\"H3372\"* God and|strong=\"H8085\"* keep|strong=\"H8104\"* his|strong=\"H3605\"* commandments|strong=\"H4687\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* duty|strong=\"H1697\"* of|strong=\"H1697\"* man|strong=\"H3605\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* God will|strong=\"H7451\"* bring|strong=\"H7451\"* every|strong=\"H3605\"* work|strong=\"H4639\"* into|strong=\"H5921\"* judgment|strong=\"H4941\"*, with|strong=\"H5921\"* every|strong=\"H3605\"* hidden|strong=\"H5956\"* thing|strong=\"H2896\"*, whether it|strong=\"H5921\"* is|strong=\"H2896\"* good|strong=\"H2896\"*, or|strong=\"H2896\"* whether it|strong=\"H5921\"* is|strong=\"H2896\"* evil|strong=\"H7451\"*." + } + ] + } + ] + }, + { + "name": "Song of Solomon", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H8010\"* Song|strong=\"H7892\"* of|strong=\"H7892\"* songs|strong=\"H7892\"*, which is|strong=\"H8010\"* Solomon|strong=\"H8010\"*’s." + }, + { + "verseNum": 2, + "text": "Let him|strong=\"H2896\"* kiss|strong=\"H5401\"* me|strong=\"H3588\"* with|strong=\"H6310\"* the|strong=\"H3588\"* kisses|strong=\"H5390\"* of|strong=\"H6310\"* his|strong=\"H3588\"* mouth|strong=\"H6310\"*;" + }, + { + "verseNum": 3, + "text": "Your|strong=\"H5921\"* oils|strong=\"H8081\"* have|strong=\"H5921\"* a|strong=\"H3068\"* pleasing|strong=\"H2896\"* fragrance|strong=\"H7381\"*." + }, + { + "verseNum": 4, + "text": "Take|strong=\"H2142\"* me|strong=\"H4900\"* away|strong=\"H4900\"* with|strong=\"H4428\"* you|strong=\"H8055\"*." + }, + { + "verseNum": 5, + "text": "I am dark, but|strong=\"H7838\"* lovely|strong=\"H5000\"*," + }, + { + "verseNum": 6, + "text": "Don’t stare|strong=\"H7200\"* at|strong=\"H7200\"* me|strong=\"H7200\"* because I|strong=\"H7760\"* am dark|strong=\"H7840\"*," + }, + { + "verseNum": 7, + "text": "Tell|strong=\"H5046\"* me|strong=\"H5315\"*, you|strong=\"H5921\"* whom my|strong=\"H5921\"* soul|strong=\"H5315\"* loves," + }, + { + "verseNum": 8, + "text": "If you|strong=\"H5921\"* don’t know|strong=\"H3045\"*, most beautiful|strong=\"H3303\"* among|strong=\"H5921\"* women," + }, + { + "verseNum": 9, + "text": "I|strong=\"H7393\"* have compared|strong=\"H1819\"* you, my love|strong=\"H7474\"*," + }, + { + "verseNum": 10, + "text": "Your|strong=\"H4998\"* cheeks|strong=\"H3895\"* are|strong=\"H3895\"* beautiful|strong=\"H4998\"* with|strong=\"H6677\"* earrings," + }, + { + "verseNum": 11, + "text": "We|strong=\"H6213\"* will|strong=\"H6213\"* make|strong=\"H6213\"* you|strong=\"H6213\"* earrings of|strong=\"H6213\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 12, + "text": "While|strong=\"H5704\"* the|strong=\"H5414\"* king|strong=\"H4428\"* sat at|strong=\"H4428\"* his|strong=\"H5414\"* table|strong=\"H4524\"*," + }, + { + "verseNum": 13, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* to|strong=\"H7699\"* me a|strong=\"H3068\"* sachet of|strong=\"H6872\"* myrrh|strong=\"H4753\"*," + }, + { + "verseNum": 14, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* to|strong=\"H3724\"* me a|strong=\"H3068\"* cluster of|strong=\"H3754\"* henna|strong=\"H3724\"* blossoms|strong=\"H1730\"*" + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* you|strong=\"H5869\"* are|strong=\"H5869\"* beautiful|strong=\"H3303\"*, my love|strong=\"H7474\"*." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, you are beautiful|strong=\"H3303\"*, my beloved|strong=\"H1730\"*, yes|strong=\"H2005\"*, pleasant|strong=\"H5273\"*;" + }, + { + "verseNum": 17, + "text": "The|strong=\"H1004\"* beams|strong=\"H6982\"* of|strong=\"H1004\"* our house|strong=\"H1004\"* are|strong=\"H1004\"* cedars." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I am a|strong=\"H3068\"* rose|strong=\"H2261\"* of|strong=\"H6010\"* Sharon|strong=\"H8289\"*," + }, + { + "verseNum": 2, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* lily|strong=\"H7799\"* among|strong=\"H7799\"* thorns|strong=\"H2336\"*," + }, + { + "verseNum": 3, + "text": "As|strong=\"H3651\"* the|strong=\"H3651\"* apple|strong=\"H8598\"* tree|strong=\"H6086\"* among|strong=\"H3427\"* the|strong=\"H3651\"* trees|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H3651\"* wood|strong=\"H6086\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H1004\"* brought me|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H5921\"* banquet|strong=\"H3196\"* hall|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Strengthen me|strong=\"H5564\"* with|strong=\"H2470\"* raisins," + }, + { + "verseNum": 6, + "text": "His|strong=\"H8478\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* is|strong=\"H7218\"* under|strong=\"H8478\"* my|strong=\"H8478\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H2022\"* my|strong=\"H5921\"* beloved|strong=\"H1730\"*!" + }, + { + "verseNum": 9, + "text": "My|strong=\"H4480\"* beloved|strong=\"H1730\"* is|strong=\"H2088\"* like|strong=\"H1819\"* a|strong=\"H3068\"* roe|strong=\"H6643\"* or|strong=\"H4480\"* a|strong=\"H3068\"* young|strong=\"H6082\"* deer." + }, + { + "verseNum": 10, + "text": "My|strong=\"H6965\"* beloved|strong=\"H1730\"* spoke|strong=\"H6030\"*, and|strong=\"H6965\"* said|strong=\"H6030\"* to|strong=\"H3212\"* me|strong=\"H6030\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*, the|strong=\"H3588\"* winter|strong=\"H5638\"* is|strong=\"H2009\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* flowers|strong=\"H5339\"* appear|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H8085\"* earth." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5414\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* ripens her|strong=\"H5414\"* green figs|strong=\"H8384\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H8085\"* dove|strong=\"H3123\"* in|strong=\"H8085\"* the|strong=\"H8085\"* clefts|strong=\"H2288\"* of|strong=\"H6963\"* the|strong=\"H8085\"* rock|strong=\"H5553\"*," + }, + { + "verseNum": 15, + "text": "Catch for|strong=\"H3754\"* us the|strong=\"H2254\"* foxes|strong=\"H7776\"*," + }, + { + "verseNum": 16, + "text": "My|strong=\"H7462\"* beloved|strong=\"H1730\"* is|strong=\"H1730\"* mine, and|strong=\"H7462\"* I am his|strong=\"H7462\"*." + }, + { + "verseNum": 17, + "text": "Until|strong=\"H5704\"* the|strong=\"H5921\"* day|strong=\"H3117\"* is|strong=\"H3117\"* cool|strong=\"H6315\"*, and|strong=\"H3117\"* the|strong=\"H5921\"* shadows|strong=\"H6752\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*," + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "By|strong=\"H5921\"* night|strong=\"H3915\"* on|strong=\"H5921\"* my|strong=\"H5921\"* bed|strong=\"H4904\"*," + }, + { + "verseNum": 2, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* get|strong=\"H6965\"* up|strong=\"H6965\"* now|strong=\"H4994\"*, and|strong=\"H6965\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H6965\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 3, + "text": "The|strong=\"H7200\"* watchmen|strong=\"H8104\"* who|strong=\"H5315\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H7200\"* city|strong=\"H5892\"* found|strong=\"H4672\"* me|strong=\"H5315\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5704\"* had|strong=\"H4672\"* scarcely|strong=\"H4592\"* passed|strong=\"H5674\"* from|strong=\"H5315\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 6, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* this|strong=\"H2063\"* who|strong=\"H4310\"* comes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* like|strong=\"H4057\"* pillars|strong=\"H8490\"* of|strong=\"H4057\"* smoke|strong=\"H6227\"*," + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H5439\"* is|strong=\"H3478\"* Solomon|strong=\"H8010\"*’s carriage!" + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* all|strong=\"H3605\"* handle the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* are|strong=\"H4421\"* expert|strong=\"H3925\"* in|strong=\"H5921\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 9, + "text": "King|strong=\"H4428\"* Solomon|strong=\"H8010\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* carriage" + }, + { + "verseNum": 10, + "text": "He|strong=\"H6213\"* made|strong=\"H6213\"* its|strong=\"H6213\"* pillars|strong=\"H5982\"* of|strong=\"H1323\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3318\"* out|strong=\"H3318\"*, you|strong=\"H3117\"* daughters|strong=\"H1323\"* of|strong=\"H4428\"* Zion|strong=\"H6726\"*, and|strong=\"H4428\"* see|strong=\"H7200\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H5869\"* are|strong=\"H5869\"* beautiful|strong=\"H3303\"*, my|strong=\"H1157\"* love|strong=\"H7474\"*." + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3605\"* teeth|strong=\"H8127\"* are|strong=\"H8127\"* like|strong=\"H5927\"* a|strong=\"H3068\"* newly shorn|strong=\"H7094\"* flock|strong=\"H5739\"*," + }, + { + "verseNum": 3, + "text": "Your|strong=\"H1157\"* lips|strong=\"H8193\"* are|strong=\"H8193\"* like|strong=\"H4057\"* scarlet|strong=\"H8144\"* thread|strong=\"H2339\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H3605\"* neck|strong=\"H6677\"* is|strong=\"H3605\"* like|strong=\"H5921\"* David|strong=\"H1732\"*’s tower|strong=\"H4026\"* built|strong=\"H1129\"* for|strong=\"H5921\"* an|strong=\"H1129\"* armory," + }, + { + "verseNum": 5, + "text": "Your|strong=\"H7462\"* two|strong=\"H8147\"* breasts|strong=\"H7699\"* are|strong=\"H7699\"* like|strong=\"H7799\"* two|strong=\"H8147\"* fawns|strong=\"H6082\"*" + }, + { + "verseNum": 6, + "text": "Until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* cool|strong=\"H6315\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* shadows|strong=\"H6752\"* flee|strong=\"H5127\"* away|strong=\"H3212\"*," + }, + { + "verseNum": 7, + "text": "You|strong=\"H3605\"* are all|strong=\"H3605\"* beautiful|strong=\"H3303\"*, my|strong=\"H3605\"* love|strong=\"H7474\"*." + }, + { + "verseNum": 8, + "text": "Come with|strong=\"H7218\"* me|strong=\"H7789\"* from|strong=\"H7218\"* Lebanon|strong=\"H3844\"*, my|strong=\"H7789\"* bride|strong=\"H3618\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H5869\"* have|strong=\"H5869\"* ravished my heart|strong=\"H3823\"*, my sister, my bride|strong=\"H3618\"*." + }, + { + "verseNum": 10, + "text": "How|strong=\"H4100\"* beautiful|strong=\"H3302\"* is|strong=\"H4100\"* your|strong=\"H3605\"* love|strong=\"H1730\"*, my|strong=\"H3605\"* sister, my|strong=\"H3605\"* bride|strong=\"H3618\"*!" + }, + { + "verseNum": 11, + "text": "Your|strong=\"H8478\"* lips|strong=\"H8193\"*, my|strong=\"H8478\"* bride|strong=\"H3618\"*, drip|strong=\"H5197\"* like|strong=\"H7381\"* the|strong=\"H8478\"* honeycomb|strong=\"H5317\"*." + }, + { + "verseNum": 12, + "text": "My sister, my bride|strong=\"H3618\"*, is a|strong=\"H3068\"* locked|strong=\"H5274\"* up|strong=\"H2856\"* garden|strong=\"H1588\"*;" + }, + { + "verseNum": 13, + "text": "Your|strong=\"H5973\"* shoots|strong=\"H7973\"* are|strong=\"H5973\"* an orchard|strong=\"H6508\"* of|strong=\"H6529\"* pomegranates|strong=\"H7416\"*, with|strong=\"H5973\"* precious|strong=\"H4022\"* fruits|strong=\"H6529\"*," + }, + { + "verseNum": 14, + "text": "spikenard|strong=\"H5373\"* and|strong=\"H6086\"* saffron|strong=\"H3750\"*," + }, + { + "verseNum": 15, + "text": "a|strong=\"H3068\"* fountain|strong=\"H4599\"* of|strong=\"H4325\"* gardens|strong=\"H1588\"*," + }, + { + "verseNum": 16, + "text": "Awake|strong=\"H5782\"*, north|strong=\"H6828\"* wind|strong=\"H8486\"*, and|strong=\"H6828\"* come, you south|strong=\"H8486\"*!" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "I have|strong=\"H5973\"* come into my|strong=\"H5973\"* garden|strong=\"H1588\"*, my|strong=\"H5973\"* sister, my|strong=\"H5973\"* bride|strong=\"H3618\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H6963\"* was|strong=\"H3820\"* asleep|strong=\"H3462\"*, but|strong=\"H3820\"* my|strong=\"H6605\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* awake|strong=\"H5782\"*." + }, + { + "verseNum": 3, + "text": "I have|strong=\"H7272\"* taken|strong=\"H6584\"* off|strong=\"H6584\"* my|strong=\"H7364\"* robe|strong=\"H3801\"*. Indeed, must I put|strong=\"H3847\"* it on|strong=\"H3847\"*?" + }, + { + "verseNum": 4, + "text": "My|strong=\"H5921\"* beloved|strong=\"H1730\"* thrust|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* in|strong=\"H5921\"* through|strong=\"H3027\"* the|strong=\"H5921\"* latch opening|strong=\"H2356\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H5921\"* open|strong=\"H6605\"* for|strong=\"H5921\"* my|strong=\"H5921\"* beloved|strong=\"H1730\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5315\"* opened|strong=\"H6605\"* to|strong=\"H1696\"* my|strong=\"H1245\"* beloved|strong=\"H1730\"*;" + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* watchmen|strong=\"H8104\"* who|strong=\"H8104\"* go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H5921\"* city|strong=\"H5892\"* found|strong=\"H4672\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H4100\"* adjure|strong=\"H7650\"* you|strong=\"H5046\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 9, + "text": "How|strong=\"H4100\"* is|strong=\"H4100\"* your|strong=\"H4100\"* beloved|strong=\"H1730\"* better than|strong=\"H1730\"* another beloved|strong=\"H1730\"*," + }, + { + "verseNum": 10, + "text": "My beloved|strong=\"H1730\"* is|strong=\"H1730\"* white|strong=\"H6703\"* and|strong=\"H6703\"* ruddy." + }, + { + "verseNum": 11, + "text": "His|strong=\"H6158\"* head|strong=\"H7218\"* is|strong=\"H7218\"* like|strong=\"H7218\"* the|strong=\"H7218\"* purest gold|strong=\"H3800\"*." + }, + { + "verseNum": 12, + "text": "His|strong=\"H5921\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* like|strong=\"H5921\"* doves|strong=\"H3123\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* water|strong=\"H4325\"* brooks," + }, + { + "verseNum": 13, + "text": "His|strong=\"H5674\"* cheeks|strong=\"H3895\"* are|strong=\"H8193\"* like|strong=\"H7799\"* a|strong=\"H3068\"* bed|strong=\"H6170\"* of|strong=\"H4026\"* spices|strong=\"H1314\"* with|strong=\"H5674\"* towers|strong=\"H4026\"* of|strong=\"H4026\"* perfumes." + }, + { + "verseNum": 14, + "text": "His|strong=\"H3027\"* hands|strong=\"H3027\"* are|strong=\"H3027\"* like|strong=\"H4390\"* rings|strong=\"H1550\"* of|strong=\"H3027\"* gold|strong=\"H2091\"* set|strong=\"H4390\"* with|strong=\"H4390\"* beryl|strong=\"H8658\"*." + }, + { + "verseNum": 15, + "text": "His|strong=\"H5921\"* legs|strong=\"H7785\"* are|strong=\"H7785\"* like|strong=\"H4758\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* marble|strong=\"H8336\"* set|strong=\"H3245\"* on|strong=\"H5921\"* sockets of|strong=\"H5982\"* fine|strong=\"H8336\"* gold|strong=\"H6337\"*." + }, + { + "verseNum": 16, + "text": "His|strong=\"H3605\"* mouth|strong=\"H2441\"* is|strong=\"H2088\"* sweetness|strong=\"H4477\"*;" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Where has|strong=\"H5973\"* your|strong=\"H1245\"* beloved|strong=\"H1730\"* gone|strong=\"H1980\"*, you|strong=\"H5973\"* fairest|strong=\"H3303\"* among|strong=\"H5973\"* women?" + }, + { + "verseNum": 2, + "text": "My|strong=\"H7462\"* beloved|strong=\"H1730\"* has|strong=\"H1730\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* his|strong=\"H3381\"* garden|strong=\"H1588\"*," + }, + { + "verseNum": 3, + "text": "I am my|strong=\"H7462\"* beloved|strong=\"H1730\"*’s, and|strong=\"H7462\"* my|strong=\"H7462\"* beloved|strong=\"H1730\"* is|strong=\"H1730\"* mine." + }, + { + "verseNum": 4, + "text": "You are beautiful|strong=\"H3303\"*, my love|strong=\"H7474\"*, as|strong=\"H3389\"* Tirzah|strong=\"H8656\"*," + }, + { + "verseNum": 5, + "text": "Turn|strong=\"H5437\"* away|strong=\"H5437\"* your|strong=\"H4480\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* me|strong=\"H4480\"*," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3605\"* teeth|strong=\"H8127\"* are|strong=\"H8127\"* like|strong=\"H5927\"* a|strong=\"H3068\"* flock|strong=\"H5739\"* of|strong=\"H4480\"* ewes|strong=\"H7353\"*," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1157\"* temples|strong=\"H7541\"* are like a|strong=\"H3068\"* piece|strong=\"H6400\"* of|strong=\"H7416\"* a|strong=\"H3068\"* pomegranate|strong=\"H7416\"* behind|strong=\"H1157\"* your|strong=\"H1157\"* veil|strong=\"H6777\"*." + }, + { + "verseNum": 8, + "text": "There|strong=\"H1992\"* are|strong=\"H1992\"* sixty|strong=\"H8346\"* queens|strong=\"H4436\"*, eighty|strong=\"H8084\"* concubines|strong=\"H6370\"*," + }, + { + "verseNum": 9, + "text": "My|strong=\"H7200\"* dove|strong=\"H3123\"*, my|strong=\"H7200\"* perfect|strong=\"H8535\"* one|strong=\"H1931\"*, is|strong=\"H1931\"* unique." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* she|strong=\"H2063\"* who|strong=\"H4310\"* looks|strong=\"H8259\"* out|strong=\"H8259\"* as|strong=\"H3644\"* the|strong=\"H3644\"* morning|strong=\"H7837\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H7200\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H7200\"* nut tree|strong=\"H7416\"* grove," + }, + { + "verseNum": 12, + "text": "Without|strong=\"H3808\"* realizing it|strong=\"H7760\"*," + }, + { + "verseNum": 13, + "text": "Return, return, Shulammite!" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "How|strong=\"H4100\"* beautiful are|strong=\"H4100\"* your|strong=\"H7725\"* feet in|strong=\"H7725\"* sandals, prince’s daughter!" + }, + { + "verseNum": 2, + "text": "Your|strong=\"H3027\"* body|strong=\"H3409\"* is|strong=\"H4100\"* like|strong=\"H3644\"* a|strong=\"H3068\"* round|strong=\"H4639\"* goblet," + }, + { + "verseNum": 3, + "text": "Your two breasts are like|strong=\"H7799\"* two fawns," + }, + { + "verseNum": 4, + "text": "Your neck is like|strong=\"H7699\"* an ivory tower." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H5921\"* head|strong=\"H6440\"* on|strong=\"H5921\"* you|strong=\"H6440\"* is|strong=\"H5869\"* like|strong=\"H5921\"* Carmel." + }, + { + "verseNum": 6, + "text": "How beautiful and|strong=\"H4428\"* how pleasant you|strong=\"H5921\"* are|strong=\"H4428\"*," + }, + { + "verseNum": 7, + "text": "This|strong=\"H4100\"*, your|strong=\"H4100\"* stature, is|strong=\"H4100\"* like a|strong=\"H3068\"* palm tree," + }, + { + "verseNum": 8, + "text": "I|strong=\"H1819\"* said, “I|strong=\"H1819\"* will climb up into the|strong=\"H1819\"* palm|strong=\"H8558\"* tree|strong=\"H8558\"*." + }, + { + "verseNum": 9, + "text": "Your|strong=\"H1961\"* mouth is|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5927\"* best wine," + }, + { + "verseNum": 10, + "text": "I|strong=\"H1980\"* am|strong=\"H1980\"* my|strong=\"H1980\"* beloved|strong=\"H1730\"*’s." + }, + { + "verseNum": 11, + "text": "Come, my|strong=\"H5921\"* beloved|strong=\"H1730\"*! Let’s go out|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* field." + }, + { + "verseNum": 12, + "text": "Let|strong=\"H3212\"*’s go|strong=\"H3212\"* early up|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3318\"* vineyards." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7200\"* mandrakes produce|strong=\"H5414\"* fragrance." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Oh|strong=\"H4310\"* that|strong=\"H5414\"* you|strong=\"H5414\"* were|strong=\"H7699\"* like|strong=\"H3808\"* my|strong=\"H5414\"* brother," + }, + { + "verseNum": 2, + "text": "I|strong=\"H1004\"* would lead|strong=\"H5090\"* you|strong=\"H3925\"*, bringing you|strong=\"H3925\"* into the|strong=\"H8248\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3925\"* mother," + }, + { + "verseNum": 3, + "text": "His|strong=\"H8478\"* left|strong=\"H8040\"* hand|strong=\"H3225\"* would be|strong=\"H8040\"* under|strong=\"H8478\"* my|strong=\"H8478\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5704\"* adjure|strong=\"H7650\"* you|strong=\"H5704\"*, daughters|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 5, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* this|strong=\"H2063\"* who|strong=\"H4310\"* comes|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H4480\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "Set|strong=\"H7760\"* me|strong=\"H5921\"* as|strong=\"H3588\"* a|strong=\"H3068\"* seal|strong=\"H2368\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 7, + "text": "Many|strong=\"H7227\"* waters|strong=\"H4325\"* can|strong=\"H3201\"*’t quench|strong=\"H3518\"* love," + }, + { + "verseNum": 8, + "text": "We|strong=\"H3117\"* have|strong=\"H3117\"* a|strong=\"H3068\"* little|strong=\"H6996\"* sister." + }, + { + "verseNum": 9, + "text": "If|strong=\"H1931\"* she|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* wall|strong=\"H2346\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H4672\"* am|strong=\"H1961\"* a|strong=\"H3068\"* wall|strong=\"H2346\"*, and|strong=\"H5869\"* my|strong=\"H1961\"* breasts|strong=\"H7699\"* like|strong=\"H1961\"* towers|strong=\"H4026\"*," + }, + { + "verseNum": 11, + "text": "Solomon|strong=\"H8010\"* had|strong=\"H1961\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"* at|strong=\"H1961\"* Baal Hamon." + }, + { + "verseNum": 12, + "text": "My|strong=\"H8010\"* own|strong=\"H6440\"* vineyard|strong=\"H3754\"* is|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H6963\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* gardens|strong=\"H1588\"*, with|strong=\"H3427\"* friends in|strong=\"H3427\"* attendance," + }, + { + "verseNum": 14, + "text": "Come away|strong=\"H1272\"*, my|strong=\"H5921\"* beloved|strong=\"H1730\"*!" + } + ] + } + ] + }, + { + "name": "Isaiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H1121\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, which|strong=\"H3063\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, heavens|strong=\"H8064\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H3045\"* ox|strong=\"H7794\"* knows|strong=\"H3045\"* his|strong=\"H3045\"* owner|strong=\"H1167\"*," + }, + { + "verseNum": 4, + "text": "Ah|strong=\"H1945\"* sinful|strong=\"H2398\"* nation|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* you|strong=\"H3605\"* be|strong=\"H5750\"* beaten|strong=\"H5221\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 6, + "text": "From|strong=\"H5704\"* the|strong=\"H5704\"* sole|strong=\"H3709\"* of|strong=\"H7218\"* the|strong=\"H5704\"* foot|strong=\"H7272\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* head|strong=\"H7218\"* there|strong=\"H5704\"* is|strong=\"H7218\"* no|strong=\"H3808\"* soundness|strong=\"H4974\"* in|strong=\"H3808\"* it|strong=\"H5704\"*," + }, + { + "verseNum": 7, + "text": "Your|strong=\"H8313\"* country is|strong=\"H5892\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5341\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"* is|strong=\"H5892\"* left|strong=\"H3498\"* like|strong=\"H1323\"* a|strong=\"H3068\"* shelter|strong=\"H5521\"* in|strong=\"H5892\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*," + }, + { + "verseNum": 9, + "text": "Unless|strong=\"H3884\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* had|strong=\"H3068\"* left|strong=\"H3498\"* to|strong=\"H3068\"* us|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H4592\"* small|strong=\"H4592\"* remnant|strong=\"H3498\"*," + }, + { + "verseNum": 10, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H5971\"* rulers|strong=\"H7101\"* of|strong=\"H3068\"* Sodom|strong=\"H5467\"*!" + }, + { + "verseNum": 11, + "text": "“What|strong=\"H4100\"* are|strong=\"H4100\"* the|strong=\"H3068\"* multitude|strong=\"H7230\"* of|strong=\"H3068\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* to|strong=\"H3068\"* me|strong=\"H3808\"*?”, says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* come to|strong=\"H6440\"* appear|strong=\"H7200\"* before|strong=\"H6440\"* me|strong=\"H6440\"*," + }, + { + "verseNum": 13, + "text": "Bring|strong=\"H3254\"* no|strong=\"H3808\"* more|strong=\"H3254\"* vain|strong=\"H7723\"* offerings|strong=\"H4503\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* hates|strong=\"H8130\"* your|strong=\"H5921\"* New|strong=\"H2320\"* Moons|strong=\"H2320\"* and|strong=\"H5315\"* your|strong=\"H5921\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*." + }, + { + "verseNum": 15, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* spread|strong=\"H6566\"* out|strong=\"H4480\"* your|strong=\"H8085\"* hands|strong=\"H3027\"*, I|strong=\"H3588\"* will|strong=\"H1571\"* hide|strong=\"H5956\"* my|strong=\"H8085\"* eyes|strong=\"H5869\"* from|strong=\"H4480\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "Wash|strong=\"H7364\"* yourselves|strong=\"H5869\"*. Make|strong=\"H2135\"* yourself clean|strong=\"H2135\"*." + }, + { + "verseNum": 17, + "text": "Learn|strong=\"H3925\"* to|strong=\"H3925\"* do|strong=\"H3190\"* well|strong=\"H3190\"*." + }, + { + "verseNum": 18, + "text": "“Come|strong=\"H1961\"* now|strong=\"H4994\"*, and|strong=\"H3068\"* let|strong=\"H4994\"*’s reason|strong=\"H3198\"* together|strong=\"H3198\"*,” says Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 19, + "text": "If you|strong=\"H2898\"* are willing and|strong=\"H8085\"* obedient|strong=\"H8085\"*," + }, + { + "verseNum": 20, + "text": "but|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* refuse|strong=\"H3985\"* and|strong=\"H3068\"* rebel|strong=\"H4784\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* devoured with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*;" + }, + { + "verseNum": 21, + "text": "How the|strong=\"H1961\"* faithful city|strong=\"H7151\"* has|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*!" + }, + { + "verseNum": 22, + "text": "Your|strong=\"H1961\"* silver|strong=\"H3701\"* has|strong=\"H1961\"* become|strong=\"H1961\"* dross|strong=\"H5509\"*," + }, + { + "verseNum": 23, + "text": "Your|strong=\"H3605\"* princes|strong=\"H8269\"* are|strong=\"H8199\"* rebellious|strong=\"H5637\"* and|strong=\"H8269\"* companions|strong=\"H2270\"* of|strong=\"H8269\"* thieves|strong=\"H1590\"*." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"*,+ 1:24 The word translated “Lord” is “Adonai.” * Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* turn|strong=\"H7725\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3651\"* will|strong=\"H5892\"* restore|strong=\"H7725\"* your|strong=\"H7725\"* judges|strong=\"H8199\"* as|strong=\"H3651\"* at|strong=\"H7725\"* the|strong=\"H7725\"* first|strong=\"H7223\"*," + }, + { + "verseNum": 27, + "text": "Zion|strong=\"H6726\"* shall|strong=\"H4941\"* be|strong=\"H7725\"* redeemed|strong=\"H6299\"* with|strong=\"H7725\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 28, + "text": "But|strong=\"H5800\"* the|strong=\"H3068\"* destruction|strong=\"H7667\"* of|strong=\"H3068\"* transgressors|strong=\"H6586\"* and|strong=\"H3068\"* sinners|strong=\"H2400\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* shall be|strong=\"H3588\"* ashamed|strong=\"H2659\"* of|strong=\"H1593\"* the|strong=\"H3588\"* oaks which|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* desired|strong=\"H2530\"*," + }, + { + "verseNum": 30, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H4325\"* be|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* oak whose leaf|strong=\"H5929\"* fades|strong=\"H5034\"*," + }, + { + "verseNum": 31, + "text": "The|strong=\"H1961\"* strong|strong=\"H2634\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* tinder|strong=\"H5296\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1697\"* is|strong=\"H1697\"* what|strong=\"H1697\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5375\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H3605\"* latter days|strong=\"H3117\"*, that|strong=\"H3605\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* established|strong=\"H3559\"* on|strong=\"H3117\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 3, + "text": "Many|strong=\"H7227\"* peoples|strong=\"H5971\"* shall|strong=\"H3068\"* go|strong=\"H1980\"* and|strong=\"H1980\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "He|strong=\"H3808\"* will|strong=\"H1471\"* judge|strong=\"H8199\"* between|strong=\"H4421\"* the|strong=\"H5375\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 5, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, come|strong=\"H3212\"*, and|strong=\"H3068\"* let|strong=\"H3212\"*’s walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3068\"* light of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* forsaken|strong=\"H5203\"* your|strong=\"H3588\"* people|strong=\"H5971\"*, the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 7, + "text": "Their|strong=\"H4390\"* land is|strong=\"H3701\"* full|strong=\"H4390\"* of|strong=\"H4390\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H4390\"* land also|strong=\"H6213\"* is|strong=\"H3027\"* full|strong=\"H4390\"* of|strong=\"H3027\"* idols." + }, + { + "verseNum": 9, + "text": "Man|strong=\"H5375\"* is brought|strong=\"H5375\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 10, + "text": "Enter into|strong=\"H6083\"* the|strong=\"H6440\"* rock|strong=\"H6697\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H3068\"* lofty|strong=\"H1365\"* looks|strong=\"H5869\"* of|strong=\"H3068\"* man|strong=\"H8213\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H5869\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* there|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* for|strong=\"H3588\"* all|strong=\"H3605\"* that|strong=\"H3588\"* is|strong=\"H3068\"* proud|strong=\"H1343\"* and|strong=\"H3068\"* arrogant," + }, + { + "verseNum": 13, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cedars of|strong=\"H5921\"* Lebanon|strong=\"H3844\"*, that|strong=\"H3605\"* are high|strong=\"H7311\"* and|strong=\"H7311\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*," + }, + { + "verseNum": 14, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* high|strong=\"H7311\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 15, + "text": "for|strong=\"H5921\"* every|strong=\"H3605\"* lofty|strong=\"H1364\"* tower|strong=\"H4026\"*," + }, + { + "verseNum": 16, + "text": "for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ships|strong=\"H7914\"* of|strong=\"H5921\"* Tarshish|strong=\"H8659\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* loftiness|strong=\"H7312\"* of|strong=\"H3068\"* man|strong=\"H8213\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* bowed|strong=\"H7817\"* down|strong=\"H7817\"*," + }, + { + "verseNum": 18, + "text": "The|strong=\"H2498\"* idols shall utterly|strong=\"H3632\"* pass|strong=\"H2498\"* away|strong=\"H2498\"*." + }, + { + "verseNum": 19, + "text": "Men shall|strong=\"H3068\"* go|strong=\"H6965\"* into|strong=\"H6083\"* the|strong=\"H6440\"* caves|strong=\"H4631\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H6213\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, men|strong=\"H6213\"* shall|strong=\"H3117\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* their|strong=\"H6213\"* idols of|strong=\"H3117\"* silver|strong=\"H3701\"*" + }, + { + "verseNum": 21, + "text": "to|strong=\"H3068\"* go|strong=\"H6965\"* into the|strong=\"H6440\"* caverns|strong=\"H5366\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"*," + }, + { + "verseNum": 22, + "text": "Stop|strong=\"H2308\"* trusting|strong=\"H4480\"* in|strong=\"H4480\"* man, whose breath|strong=\"H5397\"* is|strong=\"H1931\"* in|strong=\"H4480\"* his|strong=\"H3588\"* nostrils;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*,+ 3:1 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* the|strong=\"H3605\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, takes|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"* supply|strong=\"H4937\"* and|strong=\"H3063\"* support|strong=\"H4937\"*," + }, + { + "verseNum": 2, + "text": "the|strong=\"H8199\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H8269\"* fifty|strong=\"H2572\"*," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* boys|strong=\"H5288\"* to|strong=\"H5414\"* be|strong=\"H5414\"* their|strong=\"H5414\"* princes|strong=\"H8269\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H5971\"* people|strong=\"H5971\"* will|strong=\"H5971\"* be|strong=\"H5971\"* oppressed|strong=\"H5065\"*," + }, + { + "verseNum": 6, + "text": "Indeed|strong=\"H3588\"* a|strong=\"H3068\"* man shall|strong=\"H1004\"* take|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H1004\"* his|strong=\"H3027\"* brother in|strong=\"H1980\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3027\"* father, saying," + }, + { + "verseNum": 7, + "text": "In|strong=\"H1004\"* that|strong=\"H5971\"* day|strong=\"H3117\"* he|strong=\"H1931\"* will|strong=\"H1961\"* cry out|strong=\"H7760\"*, saying, “I|strong=\"H3117\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* a|strong=\"H3068\"* healer|strong=\"H2280\"*;" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Jerusalem|strong=\"H3389\"* is|strong=\"H3068\"* ruined|strong=\"H3782\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* is|strong=\"H3068\"* fallen|strong=\"H5307\"*;" + }, + { + "verseNum": 9, + "text": "The|strong=\"H6440\"* look|strong=\"H6440\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* testify|strong=\"H6030\"* against|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 10, + "text": "Tell the|strong=\"H3588\"* righteous|strong=\"H6662\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H6662\"* be|strong=\"H6662\"* well|strong=\"H2896\"* with|strong=\"H6662\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 11, + "text": "Woe to|strong=\"H6213\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*!" + }, + { + "verseNum": 12, + "text": "As|strong=\"H5971\"* for|strong=\"H5971\"* my|strong=\"H8582\"* people|strong=\"H5971\"*, children|strong=\"H5953\"* are|strong=\"H5971\"* their|strong=\"H1870\"* oppressors|strong=\"H5065\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* stands|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H3068\"* contend|strong=\"H7378\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* enter into|strong=\"H4941\"* judgment|strong=\"H4941\"* with|strong=\"H5973\"* the|strong=\"H3068\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* his|strong=\"H3068\"* people|strong=\"H5971\"*" + }, + { + "verseNum": 15, + "text": "What do you|strong=\"H6440\"* mean that|strong=\"H5971\"* you|strong=\"H6440\"* crush|strong=\"H1792\"* my|strong=\"H6440\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said, “Because|strong=\"H3588\"* the|strong=\"H3588\"* daughters|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* are|strong=\"H5869\"* arrogant," + }, + { + "verseNum": 17, + "text": "therefore|strong=\"H3068\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"* brings sores on|strong=\"H3068\"* the|strong=\"H3068\"* crown|strong=\"H6936\"* of|strong=\"H3068\"* the|strong=\"H3068\"* head|strong=\"H6936\"* of|strong=\"H3068\"* the|strong=\"H3068\"* women|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 18, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* Lord will|strong=\"H1931\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H3117\"* beauty|strong=\"H8597\"* of|strong=\"H3117\"* their|strong=\"H3117\"* anklets|strong=\"H5914\"*, the|strong=\"H3117\"* headbands|strong=\"H7636\"*, the|strong=\"H3117\"* crescent|strong=\"H7720\"* necklaces," + }, + { + "verseNum": 19, + "text": "the earrings|strong=\"H5188\"*, the bracelets|strong=\"H8285\"*, the veils|strong=\"H7479\"*," + }, + { + "verseNum": 20, + "text": "the|strong=\"H1004\"* headdresses|strong=\"H6287\"*, the|strong=\"H1004\"* ankle|strong=\"H6807\"* chains|strong=\"H6807\"*, the|strong=\"H1004\"* sashes|strong=\"H7196\"*, the|strong=\"H1004\"* perfume|strong=\"H1004\"* containers, the|strong=\"H1004\"* charms," + }, + { + "verseNum": 21, + "text": "the signet|strong=\"H2885\"* rings|strong=\"H2885\"*, the nose rings|strong=\"H2885\"*," + }, + { + "verseNum": 22, + "text": "the fine robes|strong=\"H4254\"*, the capes, the cloaks|strong=\"H4304\"*, the purses|strong=\"H2754\"*," + }, + { + "verseNum": 23, + "text": "the hand|strong=\"H1549\"* mirrors|strong=\"H1549\"*, the fine linen|strong=\"H5466\"* garments|strong=\"H5466\"*, the tiaras, and|strong=\"H5466\"* the shawls." + }, + { + "verseNum": 24, + "text": "It|strong=\"H1961\"* shall|strong=\"H8478\"* happen|strong=\"H1961\"* that|strong=\"H1961\"* instead|strong=\"H8478\"* of|strong=\"H8478\"* sweet|strong=\"H1314\"* spices|strong=\"H1314\"*, there|strong=\"H1961\"* shall|strong=\"H8478\"* be|strong=\"H1961\"* rottenness|strong=\"H4716\"*;" + }, + { + "verseNum": 25, + "text": "Your|strong=\"H5307\"* men|strong=\"H4962\"* shall|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5307\"* the|strong=\"H5307\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 26, + "text": "Her gates|strong=\"H6607\"* shall|strong=\"H3427\"* lament and|strong=\"H3427\"* mourn." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Seven|strong=\"H7651\"* women shall|strong=\"H3117\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3117\"* one|strong=\"H1931\"* man in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, saying, “We|strong=\"H3117\"* will|strong=\"H1931\"* eat|strong=\"H3899\"* our|strong=\"H5921\"* own|strong=\"H2388\"* bread|strong=\"H3899\"*, and|strong=\"H3117\"* wear|strong=\"H3847\"* our|strong=\"H5921\"* own|strong=\"H2388\"* clothing|strong=\"H8071\"*. Just let us|strong=\"H5921\"* be|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*. Take|strong=\"H2388\"* away our|strong=\"H5921\"* reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 2, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s branch|strong=\"H6780\"* will|strong=\"H3068\"* be|strong=\"H1961\"* beautiful|strong=\"H8597\"* and|strong=\"H3478\"* glorious|strong=\"H8597\"*, and|strong=\"H3478\"* the|strong=\"H3068\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H1347\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3068\"* beauty|strong=\"H8597\"* and|strong=\"H3478\"* glory|strong=\"H3519\"* of|strong=\"H3068\"* the|strong=\"H3068\"* survivors|strong=\"H6413\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* left|strong=\"H7604\"* in|strong=\"H3789\"* Zion|strong=\"H6726\"* and|strong=\"H3389\"* he|strong=\"H3605\"* who|strong=\"H3605\"* remains|strong=\"H7604\"* in|strong=\"H3789\"* Jerusalem|strong=\"H3389\"* shall|strong=\"H2416\"* be|strong=\"H1961\"* called holy|strong=\"H6918\"*, even everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* written|strong=\"H3789\"* among the|strong=\"H3605\"* living|strong=\"H2416\"* in|strong=\"H3789\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 4, + "text": "when the|strong=\"H7130\"* Lord shall|strong=\"H1323\"* have|strong=\"H1323\"* washed|strong=\"H7364\"* away|strong=\"H1197\"* the|strong=\"H7130\"* filth|strong=\"H6675\"* of|strong=\"H1323\"* the|strong=\"H7130\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*, and|strong=\"H4941\"* shall|strong=\"H1323\"* have|strong=\"H1323\"* purged|strong=\"H1740\"* the|strong=\"H7130\"* blood|strong=\"H1818\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"* from|strong=\"H7307\"* within|strong=\"H7130\"* it|strong=\"H7130\"*, by|strong=\"H3389\"* the|strong=\"H7130\"* spirit|strong=\"H7307\"* of|strong=\"H1323\"* justice|strong=\"H4941\"* and|strong=\"H4941\"* by|strong=\"H3389\"* the|strong=\"H7130\"* spirit|strong=\"H7307\"* of|strong=\"H1323\"* burning|strong=\"H1197\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* create|strong=\"H1254\"* over|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* habitation|strong=\"H4349\"* of|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H3068\"* over|strong=\"H5921\"* her|strong=\"H3605\"* assemblies|strong=\"H4744\"*, a|strong=\"H3068\"* cloud|strong=\"H6051\"* and|strong=\"H3068\"* smoke|strong=\"H6227\"* by|strong=\"H5921\"* day|strong=\"H3119\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* shining|strong=\"H5051\"* of|strong=\"H3068\"* a|strong=\"H3068\"* flaming|strong=\"H3852\"* fire by|strong=\"H5921\"* night|strong=\"H3915\"*, for|strong=\"H3588\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* will|strong=\"H3068\"* be|strong=\"H3068\"* a|strong=\"H3068\"* canopy|strong=\"H2646\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* pavilion|strong=\"H5521\"* for|strong=\"H1961\"* a|strong=\"H3068\"* shade|strong=\"H6738\"* in|strong=\"H1961\"* the|strong=\"H1961\"* daytime|strong=\"H3119\"* from|strong=\"H1961\"* the|strong=\"H1961\"* heat|strong=\"H2721\"*, and|strong=\"H3119\"* for|strong=\"H1961\"* a|strong=\"H3068\"* refuge|strong=\"H4268\"* and|strong=\"H3119\"* for|strong=\"H1961\"* a|strong=\"H3068\"* shelter|strong=\"H4268\"* from|strong=\"H1961\"* storm|strong=\"H2230\"* and|strong=\"H3119\"* from|strong=\"H1961\"* rain|strong=\"H4306\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Let|strong=\"H4994\"* me|strong=\"H4994\"* sing|strong=\"H7891\"* for|strong=\"H1121\"* my|strong=\"H1961\"* well beloved|strong=\"H1730\"* a|strong=\"H3068\"* song|strong=\"H7892\"* of|strong=\"H1121\"* my|strong=\"H1961\"* beloved|strong=\"H1730\"* about|strong=\"H1961\"* his|strong=\"H1961\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* dug|strong=\"H5823\"* it|strong=\"H6213\"* up|strong=\"H1129\"*," + }, + { + "verseNum": 3, + "text": "“Now|strong=\"H6258\"*, inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* men of|strong=\"H3427\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 4, + "text": "What|strong=\"H4100\"* could|strong=\"H4100\"* have|strong=\"H3808\"* been|strong=\"H3808\"* done|strong=\"H6213\"* more|strong=\"H5750\"* to|strong=\"H6213\"* my|strong=\"H6213\"* vineyard|strong=\"H3754\"*, that|strong=\"H6213\"* I|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* done|strong=\"H6213\"* in|strong=\"H6213\"* it|strong=\"H6213\"*?" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H1961\"* tell|strong=\"H3045\"* you|strong=\"H6213\"* what|strong=\"H3045\"* I|strong=\"H6258\"* will|strong=\"H1961\"* do|strong=\"H6213\"* to|strong=\"H1961\"* my|strong=\"H3045\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* lay|strong=\"H7896\"* it|strong=\"H5921\"* a|strong=\"H3068\"* wasteland." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* vineyard|strong=\"H3754\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 8, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5704\"* those|strong=\"H1945\"* who|strong=\"H3427\"* join|strong=\"H7126\"* house|strong=\"H1004\"* to|strong=\"H5704\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 9, + "text": "In|strong=\"H3427\"* my|strong=\"H3068\"* ears, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says: “Surely|strong=\"H1961\"* many|strong=\"H7227\"* houses|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8047\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* ten|strong=\"H6235\"* acres|strong=\"H6776\"*+ 5:10 literally, ten yokes, or the amount of land that ten yokes of oxen can plow in one day, which is about 10 acres or 4 hectares.* of|strong=\"H2233\"* vineyard|strong=\"H3754\"* shall|strong=\"H2233\"* yield|strong=\"H6213\"* one|strong=\"H6213\"* bath|strong=\"H1324\"*,+ 5:10 1 bath is about 22 liters or 5.8 U. S. gallons*" + }, + { + "verseNum": 11, + "text": "Woe|strong=\"H1945\"* to|strong=\"H1242\"* those|strong=\"H1945\"* who|strong=\"H1945\"* rise|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3196\"* the|strong=\"H7291\"* morning|strong=\"H1242\"*, that|strong=\"H3196\"* they|strong=\"H1242\"* may|strong=\"H3196\"* follow|strong=\"H7291\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H7200\"* harp|strong=\"H3658\"*, lyre|strong=\"H3658\"*, tambourine|strong=\"H8596\"*, and|strong=\"H3068\"* flute|strong=\"H2485\"*, with|strong=\"H3068\"* wine|strong=\"H3196\"*, are|strong=\"H3027\"* at|strong=\"H3068\"* their|strong=\"H3068\"* feasts|strong=\"H4960\"*;" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3651\"* people|strong=\"H5971\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* for|strong=\"H3651\"* lack|strong=\"H1097\"* of|strong=\"H5971\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Sheol|strong=\"H7585\"*+ 5:14 Sheol is the place of the dead.* has|strong=\"H5315\"* enlarged|strong=\"H7337\"* its|strong=\"H7337\"* desire|strong=\"H5315\"*," + }, + { + "verseNum": 15, + "text": "So man|strong=\"H8213\"* is|strong=\"H5869\"* brought|strong=\"H5869\"* low|strong=\"H8213\"*," + }, + { + "verseNum": 16, + "text": "but|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* exalted|strong=\"H1361\"* in|strong=\"H3068\"* justice|strong=\"H4941\"*," + }, + { + "verseNum": 17, + "text": "Then the|strong=\"H7462\"* lambs|strong=\"H3532\"* will|strong=\"H2723\"* graze|strong=\"H7462\"* as|strong=\"H3532\"* in|strong=\"H1481\"* their|strong=\"H7462\"* pasture|strong=\"H7462\"*," + }, + { + "verseNum": 18, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5771\"* those|strong=\"H1945\"* who|strong=\"H1945\"* draw|strong=\"H4900\"* iniquity|strong=\"H5771\"* with|strong=\"H5771\"* cords|strong=\"H5688\"* of|strong=\"H2403\"* falsehood|strong=\"H7723\"*," + }, + { + "verseNum": 19, + "text": "who|strong=\"H3478\"* say|strong=\"H3478\"*, “Let him|strong=\"H7200\"* make|strong=\"H3045\"* haste|strong=\"H4116\"*, let him|strong=\"H7200\"* hasten|strong=\"H2363\"* his|strong=\"H7200\"* work|strong=\"H4639\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H3478\"* see|strong=\"H7200\"* it|strong=\"H7126\"*;" + }, + { + "verseNum": 20, + "text": "Woe|strong=\"H1945\"* to|strong=\"H2896\"* those|strong=\"H1945\"* who|strong=\"H2896\"* call evil|strong=\"H7451\"* good|strong=\"H2896\"*, and|strong=\"H2896\"* good|strong=\"H2896\"* evil|strong=\"H7451\"*;" + }, + { + "verseNum": 21, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6440\"* those|strong=\"H1945\"* who|strong=\"H2450\"* are|strong=\"H5869\"* wise|strong=\"H2450\"* in|strong=\"H6440\"* their|strong=\"H6440\"* own|strong=\"H6440\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 22, + "text": "Woe|strong=\"H1945\"* to|strong=\"H2428\"* those|strong=\"H1945\"* who|strong=\"H1368\"* are|strong=\"H1368\"* mighty|strong=\"H1368\"* to|strong=\"H2428\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H6662\"* acquit|strong=\"H6663\"* the|strong=\"H4480\"* guilty|strong=\"H7563\"* for|strong=\"H4480\"* a|strong=\"H3068\"* bribe|strong=\"H7810\"*," + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* as|strong=\"H1961\"* the|strong=\"H3588\"* tongue|strong=\"H3956\"* of|strong=\"H3068\"* fire devours the|strong=\"H3588\"* stubble|strong=\"H7179\"*," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*’s anger burns|strong=\"H2734\"* against|strong=\"H5921\"* his|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 26, + "text": "He|strong=\"H2009\"* will|strong=\"H1471\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* to|strong=\"H1471\"* the|strong=\"H5375\"* nations|strong=\"H1471\"* from|strong=\"H1471\"* far|strong=\"H7350\"* away|strong=\"H5375\"*," + }, + { + "verseNum": 27, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* shall|strong=\"H3808\"* be|strong=\"H3808\"* weary|strong=\"H5889\"* nor|strong=\"H3808\"* stumble|strong=\"H3782\"* among|strong=\"H3808\"* them|strong=\"H5423\"*;" + }, + { + "verseNum": 28, + "text": "whose|strong=\"H3605\"* arrows|strong=\"H2671\"* are|strong=\"H5483\"* sharp|strong=\"H8150\"*," + }, + { + "verseNum": 29, + "text": "Their|strong=\"H5337\"* roaring|strong=\"H7580\"* will be like|strong=\"H7580\"* a|strong=\"H3068\"* lioness|strong=\"H3833\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H3117\"* will|strong=\"H1931\"* roar|strong=\"H5098\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* like|strong=\"H5921\"* the|strong=\"H5921\"* roaring|strong=\"H5098\"* of|strong=\"H3117\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H5921\"* year|strong=\"H8141\"* that|strong=\"H7200\"* King|strong=\"H4428\"* Uzziah|strong=\"H5818\"* died|strong=\"H4194\"*, I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* Lord sitting|strong=\"H3427\"* on|strong=\"H5921\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*, high|strong=\"H7311\"* and|strong=\"H4428\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*; and|strong=\"H4428\"* his|strong=\"H5375\"* train|strong=\"H7757\"* filled|strong=\"H4390\"* the|strong=\"H5921\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 2, + "text": "Above|strong=\"H4605\"* him|strong=\"H6440\"* stood|strong=\"H5975\"* the|strong=\"H6440\"* seraphim|strong=\"H8314\"*. Each|strong=\"H8147\"* one|strong=\"H3671\"* had six|strong=\"H8337\"* wings|strong=\"H3671\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* face|strong=\"H6440\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* covered|strong=\"H3680\"* his|strong=\"H6440\"* feet|strong=\"H7272\"*. With|strong=\"H6440\"* two|strong=\"H8147\"* he|strong=\"H8147\"* flew|strong=\"H5774\"*." + }, + { + "verseNum": 3, + "text": "One|strong=\"H6918\"* called|strong=\"H7121\"* to|strong=\"H3068\"* another|strong=\"H2088\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H7121\"* foundations of|strong=\"H1004\"* the|strong=\"H7121\"* thresholds|strong=\"H5592\"* shook|strong=\"H5128\"* at|strong=\"H1004\"* the|strong=\"H7121\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* him|strong=\"H7121\"* who|strong=\"H7121\"* called|strong=\"H7121\"*, and|strong=\"H1004\"* the|strong=\"H7121\"* house|strong=\"H1004\"* was|strong=\"H1004\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* smoke|strong=\"H6227\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H4428\"* I|strong=\"H3588\"* said, “Woe is|strong=\"H3068\"* me|strong=\"H7200\"*! For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* undone|strong=\"H1820\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H7200\"* of|strong=\"H4428\"* unclean|strong=\"H2931\"* lips|strong=\"H8193\"* and|strong=\"H3068\"* I|strong=\"H3588\"* live|strong=\"H3427\"* among|strong=\"H8432\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H4428\"* unclean|strong=\"H2931\"* lips|strong=\"H8193\"*, for|strong=\"H3588\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*!”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* one|strong=\"H4480\"* of|strong=\"H3027\"* the|strong=\"H5921\"* seraphim|strong=\"H8314\"* flew|strong=\"H5774\"* to|strong=\"H5921\"* me|strong=\"H5921\"*, having a|strong=\"H3068\"* live coal|strong=\"H7531\"* in|strong=\"H5921\"* his|strong=\"H3947\"* hand|strong=\"H3027\"*, which|strong=\"H4196\"* he|strong=\"H3027\"* had|strong=\"H3027\"* taken|strong=\"H3947\"* with|strong=\"H5921\"* the|strong=\"H5921\"* tongs|strong=\"H4457\"* from|strong=\"H4480\"* off|strong=\"H5921\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5921\"* touched|strong=\"H5060\"* my|strong=\"H5921\"* mouth|strong=\"H6310\"* with|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6310\"* said|strong=\"H6310\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2088\"* has|strong=\"H2009\"* touched|strong=\"H5060\"* your|strong=\"H5921\"* lips|strong=\"H8193\"*; and|strong=\"H6310\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* is|strong=\"H2088\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H6310\"* your|strong=\"H5921\"* sin|strong=\"H2403\"* forgiven|strong=\"H3722\"*.”" + }, + { + "verseNum": 8, + "text": "I|strong=\"H2005\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* Lord’s voice|strong=\"H6963\"*, saying|strong=\"H6963\"*, “Whom|strong=\"H4310\"* shall|strong=\"H4310\"* I|strong=\"H2005\"* send|strong=\"H7971\"*, and|strong=\"H7971\"* who|strong=\"H4310\"* will|strong=\"H4310\"* go|strong=\"H3212\"* for|strong=\"H7971\"* us|strong=\"H8085\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H5971\"* said|strong=\"H8085\"*, “Go|strong=\"H3212\"*, and|strong=\"H3212\"* tell|strong=\"H3045\"* this|strong=\"H2088\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "Make|strong=\"H8085\"* the|strong=\"H8085\"* heart|strong=\"H3820\"* of|strong=\"H5869\"* this|strong=\"H2088\"* people|strong=\"H5971\"* fat|strong=\"H8080\"*." + }, + { + "verseNum": 11, + "text": "Then I|strong=\"H5704\"* said, “Lord, how|strong=\"H4970\"* long|strong=\"H5704\"*?”" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* removed|strong=\"H7368\"* men|strong=\"H7227\"* far|strong=\"H7368\"* away|strong=\"H7368\"*," + }, + { + "verseNum": 13, + "text": "If|strong=\"H1961\"* there|strong=\"H1961\"* is|strong=\"H1961\"* a|strong=\"H3068\"* tenth|strong=\"H6224\"* left|strong=\"H7725\"* in|strong=\"H7725\"* it|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Ahaz the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jotham|strong=\"H3147\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, Rezin|strong=\"H7526\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Syria and|strong=\"H1121\"* Pekah|strong=\"H6492\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* war|strong=\"H4421\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, but|strong=\"H3808\"* could|strong=\"H3201\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "David|strong=\"H1732\"*’s house|strong=\"H1004\"* was|strong=\"H1732\"* told|strong=\"H5046\"*, “Syria is|strong=\"H7307\"* allied with|strong=\"H1004\"* Ephraim.” His|strong=\"H1732\"* heart|strong=\"H3824\"* trembled|strong=\"H5128\"*, and|strong=\"H1004\"* the|strong=\"H6440\"* heart|strong=\"H3824\"* of|strong=\"H1004\"* his|strong=\"H1732\"* people|strong=\"H5971\"*, as|strong=\"H3824\"* the|strong=\"H6440\"* trees|strong=\"H6086\"* of|strong=\"H1004\"* the|strong=\"H6440\"* forest|strong=\"H3293\"* tremble|strong=\"H5128\"* with|strong=\"H1004\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Isaiah|strong=\"H3470\"*, “Go|strong=\"H3318\"* out|strong=\"H3318\"* now|strong=\"H4994\"* to|strong=\"H3318\"* meet|strong=\"H7125\"* Ahaz, you|strong=\"H4994\"*, and|strong=\"H1121\"* Shearjashub your|strong=\"H3068\"* son|strong=\"H1121\"*, at|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H1121\"* the|strong=\"H3068\"* conduit|strong=\"H8585\"* of|strong=\"H1121\"* the|strong=\"H3068\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* highway|strong=\"H4546\"* of|strong=\"H1121\"* the|strong=\"H3068\"* fuller’s field|strong=\"H7704\"*." + }, + { + "verseNum": 4, + "text": "Tell him|strong=\"H8104\"*, ‘Be|strong=\"H1121\"* careful|strong=\"H8104\"*, and|strong=\"H1121\"* keep|strong=\"H8104\"* calm|strong=\"H8252\"*. Don’t be|strong=\"H1121\"* afraid|strong=\"H3372\"*, neither let your|strong=\"H8104\"* heart|strong=\"H3824\"* be|strong=\"H1121\"* faint|strong=\"H7401\"* because|strong=\"H3372\"* of|strong=\"H1121\"* these|strong=\"H8147\"* two|strong=\"H8147\"* tails|strong=\"H2180\"* of|strong=\"H1121\"* smoking|strong=\"H6226\"* torches, for|strong=\"H1121\"* the|strong=\"H8104\"* fierce|strong=\"H2750\"* anger|strong=\"H3824\"* of|strong=\"H1121\"* Rezin|strong=\"H7526\"* and|strong=\"H1121\"* Syria, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*." + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* Syria, Ephraim, and|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Remaliah|strong=\"H7425\"*, have|strong=\"H1121\"* plotted|strong=\"H7451\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H3588\"*, saying," + }, + { + "verseNum": 6, + "text": "“Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5927\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* tear|strong=\"H1234\"* it|strong=\"H8432\"* apart, and|strong=\"H1121\"* let’s divide|strong=\"H1234\"* it|strong=\"H8432\"* among|strong=\"H8432\"* ourselves, and|strong=\"H1121\"* set|strong=\"H4427\"* up|strong=\"H5927\"* a|strong=\"H3068\"* king|strong=\"H4428\"* within|strong=\"H8432\"* it|strong=\"H8432\"*, even the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tabeel|strong=\"H2870\"*.”" + }, + { + "verseNum": 7, + "text": "This|strong=\"H3541\"* is|strong=\"H1961\"* what|strong=\"H3541\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “It|strong=\"H1961\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* it|strong=\"H1961\"* happen|strong=\"H1961\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H8141\"* Syria is|strong=\"H7218\"* Damascus|strong=\"H1834\"*, and|strong=\"H5971\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H8141\"* Damascus|strong=\"H1834\"* is|strong=\"H7218\"* Rezin|strong=\"H7526\"*. Within|strong=\"H1157\"* sixty-five|strong=\"H8346\"* years|strong=\"H8141\"* Ephraim shall|strong=\"H5971\"* be|strong=\"H5971\"* broken|strong=\"H2844\"* in|strong=\"H8141\"* pieces, so|strong=\"H3588\"* that|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H5971\"* not|strong=\"H3588\"* be|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Ephraim is|strong=\"H1121\"* Samaria|strong=\"H8111\"*, and|strong=\"H1121\"* the|strong=\"H3588\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Samaria|strong=\"H8111\"* is|strong=\"H1121\"* Remaliah|strong=\"H7425\"*’s son|strong=\"H1121\"*. If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1121\"* not|strong=\"H3808\"* believe, surely|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3808\"*.’”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* again|strong=\"H3254\"* to|strong=\"H1696\"* Ahaz, saying|strong=\"H1696\"*," + }, + { + "verseNum": 11, + "text": "“Ask|strong=\"H7592\"* a|strong=\"H3068\"* sign of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*; ask|strong=\"H7592\"* it|strong=\"H3068\"* either|strong=\"H5973\"* in|strong=\"H3068\"* the|strong=\"H3068\"* depth|strong=\"H6009\"*, or|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* height|strong=\"H1361\"* above|strong=\"H4605\"*.”" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* Ahaz said, “I|strong=\"H3808\"* won’t ask|strong=\"H7592\"*. I|strong=\"H3808\"* won’t tempt|strong=\"H5254\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3588\"* said|strong=\"H8085\"*, “Listen|strong=\"H8085\"* now|strong=\"H4994\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"*. Is|strong=\"H1571\"* it|strong=\"H3588\"* not|strong=\"H3588\"* enough|strong=\"H4592\"* for|strong=\"H3588\"* you|strong=\"H3588\"* to|strong=\"H8085\"* try|strong=\"H3811\"* the|strong=\"H8085\"* patience|strong=\"H3811\"* of|strong=\"H1004\"* men, that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1571\"* try|strong=\"H3811\"* the|strong=\"H8085\"* patience|strong=\"H3811\"* of|strong=\"H1004\"* my|strong=\"H8085\"* God also|strong=\"H1571\"*?" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord himself|strong=\"H1931\"* will|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* sign. Behold|strong=\"H2009\"*, the|strong=\"H5414\"* virgin|strong=\"H5959\"* will|strong=\"H1121\"* conceive|strong=\"H2030\"*, and|strong=\"H1121\"* bear|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* his|strong=\"H5414\"* name|strong=\"H8034\"* Immanuel|strong=\"H6005\"*.+ 7:14 “Immanuel” means “God with us”.*" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3045\"* shall|strong=\"H7451\"* eat butter|strong=\"H2529\"* and|strong=\"H3045\"* honey|strong=\"H1706\"* when|strong=\"H3045\"* he|strong=\"H3045\"* knows|strong=\"H3045\"* to|strong=\"H3045\"* refuse|strong=\"H3988\"* the|strong=\"H3045\"* evil|strong=\"H7451\"* and|strong=\"H3045\"* choose the|strong=\"H3045\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* child|strong=\"H5288\"* knows|strong=\"H3045\"* to|strong=\"H6440\"* refuse|strong=\"H3988\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* and|strong=\"H4428\"* choose the|strong=\"H6440\"* good|strong=\"H2896\"*, the|strong=\"H6440\"* land|strong=\"H6440\"* whose|strong=\"H3045\"* two|strong=\"H8147\"* kings|strong=\"H4428\"* you|strong=\"H3588\"* abhor|strong=\"H3988\"* shall|strong=\"H4428\"* be|strong=\"H4428\"* forsaken|strong=\"H5800\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* bring on|strong=\"H5921\"* you|strong=\"H5921\"*, on|strong=\"H5921\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* your|strong=\"H3068\"* father’s house|strong=\"H1004\"* days|strong=\"H3117\"* that|strong=\"H5971\"* have|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5971\"*, from|strong=\"H5493\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H5971\"* Ephraim departed|strong=\"H5493\"* from|strong=\"H5493\"* Judah|strong=\"H3063\"*, even|strong=\"H3808\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria." + }, + { + "verseNum": 18, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* whistle|strong=\"H8319\"* for|strong=\"H4714\"* the|strong=\"H3068\"* fly|strong=\"H2070\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rivers|strong=\"H2975\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* for|strong=\"H4714\"* the|strong=\"H3068\"* bee|strong=\"H1682\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Assyria." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3605\"* shall|strong=\"H5158\"* come, and|strong=\"H5158\"* shall|strong=\"H5158\"* all|strong=\"H3605\"* rest|strong=\"H5117\"* in|strong=\"H5117\"* the|strong=\"H3605\"* desolate|strong=\"H1327\"* valleys|strong=\"H5158\"*, in|strong=\"H5117\"* the|strong=\"H3605\"* clefts|strong=\"H5357\"* of|strong=\"H5158\"* the|strong=\"H3605\"* rocks|strong=\"H5553\"*, on|strong=\"H5117\"* all|strong=\"H3605\"* thorn|strong=\"H5285\"* hedges, and|strong=\"H5158\"* on|strong=\"H5117\"* all|strong=\"H3605\"* pastures." + }, + { + "verseNum": 20, + "text": "In|strong=\"H4428\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* Lord will|strong=\"H4428\"* shave|strong=\"H1548\"* with|strong=\"H3117\"* a|strong=\"H3068\"* razor|strong=\"H8593\"* that|strong=\"H3117\"* is|strong=\"H1931\"* hired|strong=\"H7917\"* in|strong=\"H4428\"* the|strong=\"H3117\"* parts beyond|strong=\"H5676\"* the|strong=\"H3117\"* River|strong=\"H5104\"*, even|strong=\"H1571\"* with|strong=\"H3117\"* the|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, the|strong=\"H3117\"* head|strong=\"H7218\"* and|strong=\"H4428\"* the|strong=\"H3117\"* hair|strong=\"H8181\"* of|strong=\"H4428\"* the|strong=\"H3117\"* feet|strong=\"H7272\"*; and|strong=\"H4428\"* it|strong=\"H1931\"* shall|strong=\"H4428\"* also|strong=\"H1571\"* consume|strong=\"H5595\"* the|strong=\"H3117\"* beard|strong=\"H2206\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* shall|strong=\"H3117\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* man shall|strong=\"H3117\"* keep|strong=\"H2421\"* alive|strong=\"H2421\"* a|strong=\"H3068\"* young|strong=\"H1241\"* cow|strong=\"H5697\"*, and|strong=\"H3117\"* two|strong=\"H8147\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 22, + "text": "It|strong=\"H3588\"* shall|strong=\"H6213\"* happen|strong=\"H1961\"*, that|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H7230\"* the|strong=\"H3605\"* abundance|strong=\"H7230\"* of|strong=\"H7230\"* milk|strong=\"H2461\"* which|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H6213\"* give|strong=\"H6213\"* he|strong=\"H3588\"* shall|strong=\"H6213\"* eat butter|strong=\"H2529\"*, for|strong=\"H3588\"* everyone|strong=\"H3605\"* will|strong=\"H1961\"* eat butter|strong=\"H2529\"* and|strong=\"H2461\"* honey|strong=\"H1706\"* that|strong=\"H3588\"* is|strong=\"H3605\"* left|strong=\"H3498\"* within|strong=\"H7130\"* the|strong=\"H3605\"* land|strong=\"H7130\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* every|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* there|strong=\"H8033\"* were|strong=\"H1961\"* a|strong=\"H3068\"* thousand vines|strong=\"H1612\"* worth a|strong=\"H3068\"* thousand silver|strong=\"H3701\"* shekels|strong=\"H3701\"*,+ 7:23 A shekel is about 10 grams or about 0.35 ounces, so 1000 shekels is about 10 kilograms or 22 pounds.* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* briers|strong=\"H8068\"* and|strong=\"H3701\"* thorns|strong=\"H7898\"*." + }, + { + "verseNum": 24, + "text": "People will|strong=\"H1961\"* go|strong=\"H1961\"* there|strong=\"H8033\"* with|strong=\"H3605\"* arrows|strong=\"H2678\"* and|strong=\"H8033\"* with|strong=\"H3605\"* bow|strong=\"H7198\"*, because|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* briers|strong=\"H8068\"* and|strong=\"H8033\"* thorns|strong=\"H7898\"*." + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* hills|strong=\"H2022\"* that|strong=\"H3605\"* were|strong=\"H1961\"* cultivated|strong=\"H5737\"* with|strong=\"H3605\"* the|strong=\"H3605\"* hoe|strong=\"H4576\"*, you|strong=\"H3605\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H1961\"* there|strong=\"H8033\"* for|strong=\"H3605\"* fear|strong=\"H3374\"* of|strong=\"H2022\"* briers|strong=\"H8068\"* and|strong=\"H8033\"* thorns|strong=\"H7898\"*; but|strong=\"H3808\"* it|strong=\"H8033\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* for|strong=\"H3605\"* the|strong=\"H3605\"* sending|strong=\"H4916\"* out|strong=\"H3605\"* of|strong=\"H2022\"* oxen|strong=\"H7794\"*, and|strong=\"H8033\"* for|strong=\"H3605\"* sheep|strong=\"H7716\"* to|strong=\"H1961\"* tread|strong=\"H4823\"* on|strong=\"H1961\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Take|strong=\"H3947\"* a|strong=\"H3068\"* large|strong=\"H1419\"* tablet|strong=\"H1549\"*, and|strong=\"H3068\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H1419\"*’s pen|strong=\"H2747\"*, ‘For|strong=\"H5921\"* Maher Shalal Hash Baz’;+ 8:1 “Maher Shalal Hash Baz” means “quick to the plunder, swift to the prey”.*" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* I|strong=\"H1121\"* will|strong=\"H1121\"* take|strong=\"H1121\"* for|strong=\"H1121\"* myself faithful witnesses|strong=\"H5707\"* to|strong=\"H1121\"* testify|strong=\"H5749\"*: Uriah the|strong=\"H3548\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* Zechariah|strong=\"H2148\"* the|strong=\"H3548\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeberechiah|strong=\"H3000\"*.”" + }, + { + "verseNum": 3, + "text": "I|strong=\"H1121\"* went|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3205\"* prophetess|strong=\"H5031\"*, and|strong=\"H1121\"* she|strong=\"H7121\"* conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*. Then|strong=\"H7126\"* Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3068\"* me|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* ‘Maher Shalal Hash Baz.’" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* child|strong=\"H5288\"* knows|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H6440\"* say, ‘My|strong=\"H3045\"* father’ and|strong=\"H4428\"* ‘My|strong=\"H3045\"* mother,’ the|strong=\"H6440\"* riches|strong=\"H2428\"* of|strong=\"H4428\"* Damascus|strong=\"H1834\"* and|strong=\"H4428\"* the|strong=\"H6440\"* plunder|strong=\"H7998\"* of|strong=\"H4428\"* Samaria|strong=\"H8111\"* will|strong=\"H4428\"* be|strong=\"H4428\"* carried|strong=\"H5375\"* away|strong=\"H5375\"* by|strong=\"H7121\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* yet|strong=\"H5750\"* again|strong=\"H5750\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 6, + "text": "“Because|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3588\"* refused|strong=\"H3988\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* of|strong=\"H1121\"* Shiloah|strong=\"H7975\"* that|strong=\"H3588\"* go|strong=\"H1980\"* softly, and|strong=\"H1121\"* rejoice|strong=\"H4885\"* in|strong=\"H1980\"* Rezin|strong=\"H7526\"* and|strong=\"H1121\"* Remaliah|strong=\"H7425\"*’s son|strong=\"H1121\"*;" + }, + { + "verseNum": 7, + "text": "now|strong=\"H2009\"* therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H3605\"* Lord brings|strong=\"H5927\"* upon|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H3605\"* mighty|strong=\"H6099\"* flood|strong=\"H5104\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* the|strong=\"H3605\"* River|strong=\"H5104\"*: the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria and|strong=\"H1980\"* all|strong=\"H3605\"* his|strong=\"H3605\"* glory|strong=\"H3519\"*. It|strong=\"H5921\"* will|strong=\"H4428\"* come|strong=\"H1980\"* up|strong=\"H5927\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* channels, and|strong=\"H1980\"* go|strong=\"H1980\"* over|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* banks|strong=\"H1415\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H4393\"* will|strong=\"H1961\"* sweep|strong=\"H2498\"* onward into|strong=\"H1961\"* Judah|strong=\"H3063\"*. It|strong=\"H4393\"* will|strong=\"H1961\"* overflow|strong=\"H7857\"* and|strong=\"H3063\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. It|strong=\"H4393\"* will|strong=\"H1961\"* reach|strong=\"H5060\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* neck|strong=\"H6677\"*. The|strong=\"H5704\"* stretching out|strong=\"H5674\"* of|strong=\"H7341\"* its|strong=\"H1961\"* wings|strong=\"H3671\"* will|strong=\"H1961\"* fill|strong=\"H4393\"* the|strong=\"H5704\"* width|strong=\"H7341\"* of|strong=\"H7341\"* your|strong=\"H1961\"* land, O|strong=\"H3068\"* Immanuel|strong=\"H6005\"*." + }, + { + "verseNum": 9, + "text": "Make an|strong=\"H5971\"* uproar, you|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* be|strong=\"H5971\"* broken|strong=\"H2865\"* in|strong=\"H5971\"* pieces|strong=\"H2865\"*! Listen|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* from|strong=\"H5971\"* far|strong=\"H4801\"* countries|strong=\"H4801\"*: dress for|strong=\"H3605\"* battle, and|strong=\"H5971\"* be|strong=\"H5971\"* shattered|strong=\"H2865\"*! Dress for|strong=\"H3605\"* battle, and|strong=\"H5971\"* be|strong=\"H5971\"* shattered|strong=\"H2865\"*!" + }, + { + "verseNum": 10, + "text": "Take|strong=\"H5779\"* counsel|strong=\"H6098\"* together|strong=\"H5973\"*, and|strong=\"H6965\"* it|strong=\"H3588\"* will|strong=\"H1697\"* be|strong=\"H3808\"* brought|strong=\"H6565\"* to|strong=\"H1696\"* nothing|strong=\"H3808\"*; speak|strong=\"H1696\"* the|strong=\"H3588\"* word|strong=\"H1697\"*, and|strong=\"H6965\"* it|strong=\"H3588\"* will|strong=\"H1697\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*, for|strong=\"H3588\"* God|strong=\"H3808\"* is|strong=\"H1697\"* with|strong=\"H5973\"* us|strong=\"H3588\"*.”" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke this|strong=\"H2088\"* to|strong=\"H3068\"* me|strong=\"H3256\"* with|strong=\"H3068\"* a|strong=\"H3068\"* strong|strong=\"H2393\"* hand|strong=\"H3027\"*, and|strong=\"H3068\"* instructed|strong=\"H3256\"* me|strong=\"H3256\"* not|strong=\"H2088\"* to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 12, + "text": "“Don’t call a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* all|strong=\"H3605\"* that|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* call a|strong=\"H3068\"* conspiracy|strong=\"H7195\"*. Don’t fear|strong=\"H3372\"* their|strong=\"H3605\"* threats or|strong=\"H3808\"* be|strong=\"H3808\"* terrorized." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* who|strong=\"H1931\"* you|strong=\"H4172\"* must respect|strong=\"H4172\"* as|strong=\"H3068\"* holy|strong=\"H6942\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H1931\"* you|strong=\"H4172\"* must fear|strong=\"H4172\"*. He|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* one|strong=\"H1931\"* you|strong=\"H4172\"* must dread|strong=\"H6206\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"*, but|strong=\"H1961\"* for|strong=\"H3427\"* both|strong=\"H8147\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* stone and|strong=\"H3478\"* a|strong=\"H3068\"* rock|strong=\"H6697\"* that|strong=\"H3478\"* makes|strong=\"H3427\"* them|strong=\"H8147\"* fall|strong=\"H1961\"*. For|strong=\"H3427\"* the|strong=\"H1961\"* people|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* and|strong=\"H3478\"* a|strong=\"H3068\"* snare|strong=\"H4170\"*." + }, + { + "verseNum": 15, + "text": "Many|strong=\"H7227\"* will|strong=\"H7227\"* stumble|strong=\"H3782\"* over|strong=\"H5307\"* it|strong=\"H3920\"*, fall|strong=\"H5307\"*, be|strong=\"H7665\"* broken|strong=\"H7665\"*, be|strong=\"H7665\"* snared|strong=\"H3369\"*, and|strong=\"H5307\"* be|strong=\"H7665\"* captured|strong=\"H3920\"*.”" + }, + { + "verseNum": 16, + "text": "Wrap up|strong=\"H2856\"* the|strong=\"H2856\"* covenant. Seal|strong=\"H2856\"* the|strong=\"H2856\"* law|strong=\"H8451\"* among|strong=\"H8451\"* my|strong=\"H6887\"* disciples|strong=\"H3928\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H6440\"* will|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* hides|strong=\"H5641\"* his|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3068\"* I|strong=\"H6440\"* will|strong=\"H3068\"* look|strong=\"H6960\"* for|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* and|strong=\"H3478\"* the|strong=\"H5414\"* children|strong=\"H3206\"* whom Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* me|strong=\"H5414\"* are|strong=\"H3478\"* for|strong=\"H3068\"* signs and|strong=\"H3478\"* for|strong=\"H3068\"* wonders|strong=\"H4159\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* dwells|strong=\"H7931\"* in|strong=\"H3478\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* tell|strong=\"H1897\"* you|strong=\"H3588\"*, “Consult|strong=\"H1875\"* with|strong=\"H5971\"* those|strong=\"H3588\"* who|strong=\"H5971\"* have|strong=\"H5971\"* familiar spirits and|strong=\"H5971\"* with|strong=\"H5971\"* the|strong=\"H3588\"* wizards|strong=\"H3049\"*, who|strong=\"H5971\"* chirp and|strong=\"H5971\"* who|strong=\"H5971\"* mutter|strong=\"H1897\"*,” shouldn’t a|strong=\"H3068\"* people|strong=\"H5971\"* consult|strong=\"H1875\"* with|strong=\"H5971\"* their|strong=\"H3588\"* God|strong=\"H3808\"*? Should|strong=\"H3588\"* they|strong=\"H3588\"* consult|strong=\"H1875\"* the|strong=\"H3588\"* dead|strong=\"H4191\"* on|strong=\"H4191\"* behalf|strong=\"H1157\"* of|strong=\"H5971\"* the|strong=\"H3588\"* living|strong=\"H2416\"*?" + }, + { + "verseNum": 20, + "text": "Turn to|strong=\"H1697\"* the|strong=\"H1697\"* law|strong=\"H8451\"* and|strong=\"H1697\"* to|strong=\"H1697\"* the|strong=\"H1697\"* covenant! If they|strong=\"H3808\"* don’t speak|strong=\"H1697\"* according to|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, surely|strong=\"H3808\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no|strong=\"H3808\"* morning|strong=\"H7837\"* for|strong=\"H3808\"* them|strong=\"H1697\"*." + }, + { + "verseNum": 21, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3588\"*, very|strong=\"H4605\"* distressed and|strong=\"H4428\"* hungry|strong=\"H7457\"*. It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H4428\"* hungry|strong=\"H7457\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* worry, and|strong=\"H4428\"* curse|strong=\"H7043\"* their|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* their|strong=\"H3588\"* God. They|strong=\"H3588\"* will|strong=\"H1961\"* turn|strong=\"H6437\"* their|strong=\"H3588\"* faces|strong=\"H6437\"* upward|strong=\"H4605\"*," + }, + { + "verseNum": 22, + "text": "then|strong=\"H2009\"* look|strong=\"H2009\"* to|strong=\"H5080\"* the|strong=\"H2009\"* earth and|strong=\"H6869\"* see|strong=\"H2009\"* distress|strong=\"H6869\"*, darkness|strong=\"H2825\"*, and|strong=\"H6869\"* the|strong=\"H2009\"* gloom|strong=\"H4588\"* of|strong=\"H5080\"* anguish|strong=\"H6869\"*. They|strong=\"H5080\"* will|strong=\"H6869\"* be driven|strong=\"H5080\"* into|strong=\"H5080\"* thick darkness|strong=\"H2825\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H7200\"* there|strong=\"H3427\"* shall|strong=\"H5971\"* be|strong=\"H5971\"* no|strong=\"H7200\"* more|strong=\"H1419\"* gloom|strong=\"H6757\"* for|strong=\"H5921\"* her|strong=\"H5921\"* who|strong=\"H5971\"* was|strong=\"H3427\"* in|strong=\"H3427\"* anguish. In|strong=\"H3427\"* the|strong=\"H5921\"* former time|strong=\"H5921\"*, he|strong=\"H5921\"* brought|strong=\"H1980\"* into|strong=\"H1980\"* contempt the|strong=\"H5921\"* land of|strong=\"H3427\"* Zebulun and|strong=\"H1980\"* the|strong=\"H5921\"* land of|strong=\"H3427\"* Naphtali; but|strong=\"H7200\"* in|strong=\"H3427\"* the|strong=\"H5921\"* latter time|strong=\"H5921\"* he|strong=\"H5921\"* has|strong=\"H5971\"* made|strong=\"H1980\"* it|strong=\"H5921\"* glorious, by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1980\"* of|strong=\"H3427\"* the|strong=\"H5921\"* sea, beyond|strong=\"H5921\"* the|strong=\"H5921\"* Jordan, Galilee of|strong=\"H3427\"* the|strong=\"H5921\"* nations|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people|strong=\"H1471\"* who|strong=\"H1471\"* walked in|strong=\"H6440\"* darkness have|strong=\"H1471\"* seen a|strong=\"H3068\"* great|strong=\"H1431\"* light." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* have|strong=\"H3117\"* multiplied the|strong=\"H3588\"* nation." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* yoke of|strong=\"H1818\"* his|strong=\"H3605\"* burden, and|strong=\"H1818\"* the|strong=\"H3605\"* staff of|strong=\"H1818\"* his|strong=\"H3605\"* shoulder, the|strong=\"H3605\"* rod of|strong=\"H1818\"* his|strong=\"H3605\"* oppressor, you|strong=\"H3588\"* have|strong=\"H1961\"* broken as|strong=\"H1961\"* in|strong=\"H1556\"* the|strong=\"H3605\"* day of|strong=\"H1818\"* Midian." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* all|strong=\"H5414\"* the|strong=\"H5921\"* armor of|strong=\"H1121\"* the|strong=\"H5921\"* armed man|strong=\"H1368\"* in|strong=\"H5921\"* the|strong=\"H5921\"* noisy battle, and|strong=\"H1121\"* the|strong=\"H5921\"* garments rolled in|strong=\"H5921\"* blood, will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3588\"* burning, fuel for|strong=\"H3588\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5704\"* a|strong=\"H3068\"* child is|strong=\"H3068\"* born to|strong=\"H5704\"* us|strong=\"H5921\"*. A|strong=\"H3068\"* son is|strong=\"H3068\"* given|strong=\"H6213\"* to|strong=\"H5704\"* us|strong=\"H5921\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* government|strong=\"H4951\"* will|strong=\"H3068\"* be|strong=\"H3068\"* on|strong=\"H5921\"* his|strong=\"H3068\"* shoulders. His|strong=\"H3068\"* name will|strong=\"H3068\"* be|strong=\"H3068\"* called Wonderful Counselor, Mighty God|strong=\"H3068\"*, Everlasting|strong=\"H5769\"* Father, Prince of|strong=\"H3068\"* Peace|strong=\"H7965\"*." + }, + { + "verseNum": 7, + "text": "Of|strong=\"H1697\"* the|strong=\"H7971\"* increase of|strong=\"H1697\"* his|strong=\"H7971\"* government and|strong=\"H3478\"* of|strong=\"H1697\"* peace there|strong=\"H1697\"* shall|strong=\"H3478\"* be|strong=\"H1697\"* no|strong=\"H7971\"* end, on|strong=\"H5307\"* David|strong=\"H7971\"*’s throne, and|strong=\"H3478\"* on|strong=\"H5307\"* his|strong=\"H7971\"* kingdom, to|strong=\"H3478\"* establish it|strong=\"H7971\"*, and|strong=\"H3478\"* to|strong=\"H3478\"* uphold it|strong=\"H7971\"* with|strong=\"H1697\"* justice and|strong=\"H3478\"* with|strong=\"H1697\"* righteousness from|strong=\"H3478\"* that|strong=\"H1697\"* time|strong=\"H3478\"* on|strong=\"H5307\"*, even forever. The|strong=\"H7971\"* zeal of|strong=\"H1697\"* Yahweh|strong=\"H3068\"* of|strong=\"H1697\"* Armies will|strong=\"H3478\"* perform this|strong=\"H1697\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* Lord sent a|strong=\"H3068\"* word into|strong=\"H3045\"* Jacob," + }, + { + "verseNum": 9, + "text": "All the|strong=\"H1129\"* people will|strong=\"H5307\"* know," + }, + { + "verseNum": 10, + "text": "“The|strong=\"H5921\"* bricks have|strong=\"H3068\"* fallen," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H2063\"* Yahweh|strong=\"H3068\"* will|strong=\"H3478\"* set|strong=\"H3478\"* up|strong=\"H3605\"* on|strong=\"H3027\"* high|strong=\"H5186\"* against|strong=\"H3027\"* him|strong=\"H3027\"* the|strong=\"H3605\"* adversaries of|strong=\"H3027\"* Rezin," + }, + { + "verseNum": 12, + "text": "The|strong=\"H5221\"* Syrians in|strong=\"H3068\"* front," + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H3068\"* the|strong=\"H3068\"* people have|strong=\"H3068\"* not turned|strong=\"H3478\"* to|strong=\"H3478\"* him|strong=\"H3772\"* who|strong=\"H3068\"* struck them|strong=\"H3117\"*," + }, + { + "verseNum": 14, + "text": "Therefore Yahweh|strong=\"H3068\"* will|strong=\"H1931\"* cut off|strong=\"H5375\"* from|strong=\"H6440\"* Israel head|strong=\"H7218\"* and|strong=\"H7218\"* tail|strong=\"H2180\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H1961\"* elder and|strong=\"H5971\"* the|strong=\"H1961\"* honorable man|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1961\"* head," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* those|strong=\"H3605\"* who|strong=\"H3605\"* lead this|strong=\"H2063\"* people|strong=\"H3808\"* lead them|strong=\"H5921\"* astray;" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3588\"* the|strong=\"H3588\"* Lord will|strong=\"H3293\"* not|strong=\"H3588\"* rejoice over their|strong=\"H3588\"* young men," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3068\"* wickedness burns like|strong=\"H1961\"* a|strong=\"H3068\"* fire." + }, + { + "verseNum": 19, + "text": "Through|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H5921\"* Armies|strong=\"H2220\"*’ wrath, the|strong=\"H5921\"* land is|strong=\"H1320\"* burned up|strong=\"H5921\"*;" + }, + { + "verseNum": 20, + "text": "One|strong=\"H3605\"* will|strong=\"H3063\"* devour on|strong=\"H5921\"* the|strong=\"H3605\"* right hand|strong=\"H3027\"*, and|strong=\"H3063\"* be|strong=\"H3808\"* hungry;" + }, + { + "verseNum": 21, + "text": "Manasseh eating Ephraim and Ephraim eating Manasseh, and they together will be against Judah." + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3789\"* those|strong=\"H1945\"* who|strong=\"H1945\"* decree|strong=\"H2710\"* unrighteous decrees|strong=\"H2711\"*, and|strong=\"H5999\"* to|strong=\"H3789\"* the|strong=\"H3789\"* writers who|strong=\"H1945\"* write|strong=\"H3789\"* oppressive decrees|strong=\"H2711\"*" + }, + { + "verseNum": 2, + "text": "to|strong=\"H1961\"* deprive|strong=\"H5186\"* the|strong=\"H1961\"* needy|strong=\"H6041\"* of|strong=\"H5971\"* justice|strong=\"H4941\"*, and|strong=\"H4941\"* to|strong=\"H1961\"* rob|strong=\"H1497\"* the|strong=\"H1961\"* poor|strong=\"H6041\"* among|strong=\"H5971\"* my|strong=\"H1961\"* people|strong=\"H5971\"* of|strong=\"H5971\"* their|strong=\"H5186\"* rights|strong=\"H1779\"*, that|strong=\"H5971\"* widows|strong=\"H5971\"* may|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5186\"* plunder|strong=\"H7998\"*, and|strong=\"H4941\"* that|strong=\"H5971\"* they|strong=\"H5971\"* may|strong=\"H1961\"* make|strong=\"H4941\"* the|strong=\"H1961\"* fatherless|strong=\"H3490\"* their|strong=\"H5186\"* prey|strong=\"H7998\"*!" + }, + { + "verseNum": 3, + "text": "What|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H5921\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* visitation|strong=\"H6486\"*, and|strong=\"H3117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* desolation|strong=\"H7722\"* which|strong=\"H4310\"* will|strong=\"H4310\"* come from|strong=\"H5921\"* afar|strong=\"H4801\"*? To|strong=\"H6213\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* you|strong=\"H5921\"* flee|strong=\"H5127\"* for|strong=\"H5921\"* help|strong=\"H5833\"*? Where|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H5921\"* leave|strong=\"H5800\"* your|strong=\"H5921\"* wealth|strong=\"H3519\"*?" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* will|strong=\"H3027\"* only|strong=\"H3605\"* bow|strong=\"H3766\"* down|strong=\"H5307\"* under|strong=\"H8478\"* the|strong=\"H3605\"* prisoners," + }, + { + "verseNum": 5, + "text": "Alas|strong=\"H1945\"* Assyrian, the|strong=\"H3027\"* rod|strong=\"H7626\"* of|strong=\"H3027\"* my|strong=\"H3027\"* anger|strong=\"H2195\"*, the|strong=\"H3027\"* staff|strong=\"H4294\"* in|strong=\"H3027\"* whose hand|strong=\"H3027\"* is|strong=\"H1931\"* my|strong=\"H3027\"* indignation|strong=\"H2195\"*!" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* send|strong=\"H7971\"* him|strong=\"H5921\"* against|strong=\"H5921\"* a|strong=\"H3068\"* profane nation|strong=\"H1471\"*, and|strong=\"H7971\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* anger|strong=\"H5678\"* me|strong=\"H7971\"* I|strong=\"H5921\"* will|strong=\"H1471\"* give|strong=\"H7760\"* him|strong=\"H5921\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H7971\"* take|strong=\"H7760\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"* and|strong=\"H7971\"* to|strong=\"H7971\"* take|strong=\"H7760\"* the|strong=\"H5921\"* prey|strong=\"H7998\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* tread|strong=\"H4823\"* them|strong=\"H5921\"* down|strong=\"H4823\"* like|strong=\"H5921\"* the|strong=\"H5921\"* mire|strong=\"H2563\"* of|strong=\"H5971\"* the|strong=\"H5921\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 7, + "text": "However|strong=\"H3588\"*, he|strong=\"H1931\"* doesn’t mean so|strong=\"H3651\"*, neither|strong=\"H3808\"* does|strong=\"H3808\"* his|strong=\"H3588\"* heart|strong=\"H3824\"* think|strong=\"H2803\"* so|strong=\"H3651\"*; but|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H4592\"* his|strong=\"H3588\"* heart|strong=\"H3824\"* to|strong=\"H3824\"* destroy|strong=\"H8045\"*, and|strong=\"H1471\"* to|strong=\"H3824\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* not|strong=\"H3808\"* a|strong=\"H3068\"* few|strong=\"H4592\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* says, “Aren’t all|strong=\"H3162\"* of|strong=\"H4428\"* my|strong=\"H3588\"* princes|strong=\"H8269\"* kings|strong=\"H4428\"*?" + }, + { + "verseNum": 9, + "text": "Isn’t Calno|strong=\"H3641\"* like|strong=\"H3808\"* Carchemish|strong=\"H3751\"*? Isn’t Hamath|strong=\"H2574\"* like|strong=\"H3808\"* Arpad? Isn’t Samaria|strong=\"H8111\"* like|strong=\"H3808\"* Damascus|strong=\"H1834\"*?”" + }, + { + "verseNum": 10, + "text": "As|strong=\"H3389\"* my|strong=\"H3027\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* found|strong=\"H4672\"* the|strong=\"H3027\"* kingdoms|strong=\"H4467\"* of|strong=\"H3027\"* the|strong=\"H3027\"* idols|strong=\"H6456\"*, whose engraved|strong=\"H6456\"* images|strong=\"H6456\"* exceeded those of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3027\"* of|strong=\"H3027\"* Samaria|strong=\"H8111\"*," + }, + { + "verseNum": 11, + "text": "shall|strong=\"H3808\"* I|strong=\"H3651\"* not|strong=\"H3808\"*, as|strong=\"H6213\"* I|strong=\"H3651\"* have|strong=\"H3389\"* done|strong=\"H6213\"* to|strong=\"H6213\"* Samaria|strong=\"H8111\"* and|strong=\"H3389\"* her|strong=\"H6213\"* idols|strong=\"H6091\"*, so|strong=\"H3651\"* do|strong=\"H6213\"* to|strong=\"H6213\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3389\"* her|strong=\"H6213\"* idols|strong=\"H6091\"*?" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H5921\"* it|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H3605\"* Lord has|strong=\"H1961\"* performed|strong=\"H1214\"* his|strong=\"H3605\"* whole|strong=\"H3605\"* work|strong=\"H4639\"* on|strong=\"H5921\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H4428\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* punish|strong=\"H6485\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H4428\"* the|strong=\"H3605\"* willful proud|strong=\"H5869\"* heart|strong=\"H3824\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* the|strong=\"H3605\"* insolence of|strong=\"H4428\"* his|strong=\"H3605\"* arrogant|strong=\"H7312\"* looks|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* said, “By|strong=\"H3027\"* the|strong=\"H3588\"* strength|strong=\"H3581\"* of|strong=\"H3027\"* my|strong=\"H6213\"* hand|strong=\"H3027\"* I|strong=\"H3588\"* have|strong=\"H5971\"* done|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3027\"* by|strong=\"H3027\"* my|strong=\"H6213\"* wisdom|strong=\"H2451\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5971\"* understanding. I|strong=\"H3588\"* have|strong=\"H5971\"* removed|strong=\"H5493\"* the|strong=\"H3588\"* boundaries|strong=\"H1367\"* of|strong=\"H3027\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, and|strong=\"H3027\"* have|strong=\"H5971\"* robbed|strong=\"H8154\"* their|strong=\"H3588\"* treasures|strong=\"H6264\"*. Like|strong=\"H3381\"* a|strong=\"H3068\"* valiant man|strong=\"H2451\"* I|strong=\"H3588\"* have|strong=\"H5971\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* their|strong=\"H3588\"* rulers|strong=\"H3427\"*." + }, + { + "verseNum": 14, + "text": "My|strong=\"H3605\"* hand|strong=\"H3027\"* has|strong=\"H1961\"* found|strong=\"H4672\"* the|strong=\"H3605\"* riches|strong=\"H2428\"* of|strong=\"H3027\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* like|strong=\"H1961\"* a|strong=\"H3068\"* nest|strong=\"H7064\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* one|strong=\"H3605\"* gathers eggs|strong=\"H1000\"* that|strong=\"H5971\"* are|strong=\"H5971\"* abandoned|strong=\"H5800\"*, I|strong=\"H3808\"* have|strong=\"H1961\"* gathered all|strong=\"H3605\"* the|strong=\"H3605\"* earth. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3605\"* who|strong=\"H3605\"* moved|strong=\"H5074\"* their|strong=\"H3605\"* wing|strong=\"H3671\"*, or|strong=\"H3808\"* that|strong=\"H5971\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*, or|strong=\"H3808\"* chirped|strong=\"H6850\"*.”" + }, + { + "verseNum": 15, + "text": "Should|strong=\"H7626\"* an|strong=\"H7311\"* ax brag|strong=\"H6286\"* against|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3808\"* chops|strong=\"H2672\"* with|strong=\"H5921\"* it|strong=\"H5921\"*? Should|strong=\"H7626\"* a|strong=\"H3068\"* saw|strong=\"H4883\"* exalt|strong=\"H7311\"* itself|strong=\"H6286\"* above|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3808\"* saws with|strong=\"H5921\"* it|strong=\"H5921\"*? As|strong=\"H2672\"* if a|strong=\"H3068\"* rod|strong=\"H7626\"* should|strong=\"H7626\"* lift|strong=\"H7311\"* those|strong=\"H5921\"* who|strong=\"H3808\"* lift|strong=\"H7311\"* it|strong=\"H5921\"* up|strong=\"H7311\"*, or|strong=\"H3808\"* as|strong=\"H2672\"* if a|strong=\"H3068\"* staff|strong=\"H4294\"* should|strong=\"H7626\"* lift|strong=\"H7311\"* up|strong=\"H7311\"* someone who|strong=\"H3808\"* is|strong=\"H7626\"* not|strong=\"H3808\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, will|strong=\"H3068\"* send|strong=\"H7971\"* among|strong=\"H8478\"* his|strong=\"H3068\"* fat|strong=\"H4924\"* ones|strong=\"H4924\"* leanness|strong=\"H7332\"*; and|strong=\"H3068\"* under|strong=\"H8478\"* his|strong=\"H3068\"* glory|strong=\"H3519\"* a|strong=\"H3068\"* burning|strong=\"H3344\"* will|strong=\"H3068\"* be|strong=\"H3068\"* kindled|strong=\"H3344\"* like|strong=\"H3651\"* the|strong=\"H3068\"* burning|strong=\"H3344\"* of|strong=\"H3068\"* fire|strong=\"H3350\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3117\"* light|strong=\"H1197\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3117\"* a|strong=\"H3068\"* fire, and|strong=\"H3478\"* his|strong=\"H3478\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* for|strong=\"H3117\"* a|strong=\"H3068\"* flame|strong=\"H3852\"*; and|strong=\"H3478\"* it|strong=\"H1961\"* will|strong=\"H1961\"* burn|strong=\"H1197\"* and|strong=\"H3478\"* devour his|strong=\"H3478\"* thorns|strong=\"H7898\"* and|strong=\"H3478\"* his|strong=\"H3478\"* briers|strong=\"H8068\"* in|strong=\"H3478\"* one|strong=\"H6918\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H5704\"* will|strong=\"H1961\"* consume|strong=\"H3615\"* the|strong=\"H5704\"* glory|strong=\"H3519\"* of|strong=\"H3615\"* his|strong=\"H1961\"* forest|strong=\"H3293\"* and|strong=\"H5315\"* of|strong=\"H3615\"* his|strong=\"H1961\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*, both soul|strong=\"H5315\"* and|strong=\"H5315\"* body|strong=\"H1320\"*. It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H5704\"* when|strong=\"H1961\"* a|strong=\"H3068\"* standard bearer faints|strong=\"H3615\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H1961\"* remnant|strong=\"H7605\"* of|strong=\"H4557\"* the|strong=\"H1961\"* trees|strong=\"H6086\"* of|strong=\"H4557\"* his|strong=\"H1961\"* forest|strong=\"H3293\"* shall|strong=\"H5288\"* be|strong=\"H1961\"* few|strong=\"H4557\"*, so|strong=\"H1961\"* that|strong=\"H5288\"* a|strong=\"H3068\"* child|strong=\"H5288\"* could|strong=\"H5288\"* write|strong=\"H3789\"* their|strong=\"H1961\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H5921\"* remnant|strong=\"H7605\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* those|strong=\"H5921\"* who|strong=\"H1931\"* have|strong=\"H1961\"* escaped|strong=\"H6413\"* from|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H3254\"* again|strong=\"H5750\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H1931\"* struck|strong=\"H5221\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* shall|strong=\"H3068\"* lean|strong=\"H8172\"* on|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* remnant|strong=\"H7605\"* will|strong=\"H3290\"* return|strong=\"H7725\"*, even the|strong=\"H7725\"* remnant|strong=\"H7605\"* of|strong=\"H1368\"* Jacob|strong=\"H3290\"*, to|strong=\"H7725\"* the|strong=\"H7725\"* mighty|strong=\"H1368\"* God." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* your|strong=\"H7725\"* people|strong=\"H5971\"*, Israel|strong=\"H3478\"*, are|strong=\"H5971\"* like|strong=\"H1961\"* the|strong=\"H3588\"* sand|strong=\"H2344\"* of|strong=\"H5971\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, only|strong=\"H3588\"* a|strong=\"H3068\"* remnant|strong=\"H7605\"* of|strong=\"H5971\"* them|strong=\"H7725\"* will|strong=\"H1961\"* return|strong=\"H7725\"*. A|strong=\"H3068\"* destruction|strong=\"H3631\"* is|strong=\"H3478\"* determined|strong=\"H2782\"*, overflowing|strong=\"H7857\"* with|strong=\"H5971\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H6635\"* Armies|strong=\"H6635\"*, will|strong=\"H6635\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3605\"* end|strong=\"H3617\"*, and|strong=\"H6213\"* that|strong=\"H3588\"* determined|strong=\"H2782\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies|strong=\"H6635\"*, says|strong=\"H3541\"*, “My|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"*, don’t be|strong=\"H1870\"* afraid|strong=\"H3372\"* of|strong=\"H3427\"* the|strong=\"H5921\"* Assyrian, though he|strong=\"H3651\"* strike|strong=\"H5221\"* you|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* rod|strong=\"H7626\"*, and|strong=\"H5971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* his|strong=\"H5375\"* staff|strong=\"H4294\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, as|strong=\"H3651\"* Egypt|strong=\"H4714\"* did|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* very|strong=\"H4213\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H5750\"* the|strong=\"H5921\"* indignation|strong=\"H2195\"* against|strong=\"H5921\"* you|strong=\"H3588\"* will|strong=\"H5750\"* be|strong=\"H5750\"* accomplished|strong=\"H3615\"*, and|strong=\"H5750\"* my|strong=\"H5921\"* anger|strong=\"H2195\"* will|strong=\"H5750\"* be|strong=\"H5750\"* directed to|strong=\"H5921\"* his|strong=\"H5921\"* destruction|strong=\"H8399\"*.”" + }, + { + "verseNum": 26, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* stir|strong=\"H5782\"* up|strong=\"H5375\"* a|strong=\"H3068\"* scourge|strong=\"H7752\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, as|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* slaughter|strong=\"H4347\"* of|strong=\"H3068\"* Midian|strong=\"H4080\"* at|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* of|strong=\"H3068\"* Oreb|strong=\"H6159\"*. His|strong=\"H5375\"* rod|strong=\"H4294\"* will|strong=\"H3068\"* be|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* lift|strong=\"H5375\"* it|strong=\"H5921\"* up|strong=\"H5375\"* like|strong=\"H1870\"* he|strong=\"H3068\"* did|strong=\"H3068\"* against|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 27, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* his|strong=\"H6440\"* burden|strong=\"H5448\"* will|strong=\"H1961\"* depart|strong=\"H5493\"* from|strong=\"H5493\"* off|strong=\"H5493\"* your|strong=\"H5921\"* shoulder|strong=\"H7926\"*, and|strong=\"H3117\"* his|strong=\"H6440\"* yoke|strong=\"H5923\"* from|strong=\"H5493\"* off|strong=\"H5493\"* your|strong=\"H5921\"* neck|strong=\"H6677\"*, and|strong=\"H3117\"* the|strong=\"H6440\"* yoke|strong=\"H5923\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* destroyed|strong=\"H2254\"* because|strong=\"H5921\"* of|strong=\"H3117\"* the|strong=\"H6440\"* anointing|strong=\"H8081\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 28, + "text": "He|strong=\"H5921\"* has|strong=\"H5674\"* come|strong=\"H5674\"* to|strong=\"H5921\"* Aiath|strong=\"H5857\"*. He|strong=\"H5921\"* has|strong=\"H5674\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* Migron|strong=\"H4051\"*. At|strong=\"H5921\"* Michmash|strong=\"H4363\"* he|strong=\"H5921\"* stores his|strong=\"H5921\"* baggage|strong=\"H3627\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H7586\"* have gone|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* pass|strong=\"H5674\"*. They|strong=\"H7586\"* have taken|strong=\"H5674\"* up|strong=\"H1387\"* their lodging|strong=\"H4411\"* at|strong=\"H7586\"* Geba|strong=\"H1387\"*. Ramah|strong=\"H7414\"* trembles|strong=\"H2729\"*. Gibeah|strong=\"H1390\"* of|strong=\"H1390\"* Saul|strong=\"H7586\"* has|strong=\"H7586\"* fled|strong=\"H5127\"*." + }, + { + "verseNum": 30, + "text": "Cry|strong=\"H6670\"* aloud|strong=\"H6670\"* with|strong=\"H6041\"* your|strong=\"H7181\"* voice|strong=\"H6963\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Gallim|strong=\"H1554\"*! Listen|strong=\"H7181\"*, Laishah|strong=\"H3919\"*! You|strong=\"H6963\"* poor|strong=\"H6041\"* Anathoth|strong=\"H6068\"*!" + }, + { + "verseNum": 31, + "text": "Madmenah|strong=\"H4088\"* is|strong=\"H3427\"* a|strong=\"H3068\"* fugitive|strong=\"H5074\"*. The|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Gebim|strong=\"H1374\"* flee|strong=\"H5074\"* for|strong=\"H3427\"* safety|strong=\"H5756\"*." + }, + { + "verseNum": 32, + "text": "This|strong=\"H3027\"* very day|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H1004\"* halt|strong=\"H5975\"* at|strong=\"H1004\"* Nob|strong=\"H5011\"*. He|strong=\"H3117\"* shakes|strong=\"H5130\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* at|strong=\"H1004\"* the|strong=\"H3117\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H1004\"* Zion, the|strong=\"H3117\"* hill|strong=\"H2022\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 33, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, will|strong=\"H3068\"* lop|strong=\"H5586\"* the|strong=\"H3068\"* boughs|strong=\"H6288\"* with|strong=\"H3068\"* terror|strong=\"H4637\"*. The|strong=\"H3068\"* tall|strong=\"H7311\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H1438\"* down|strong=\"H1438\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* lofty|strong=\"H7311\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H3068\"* low|strong=\"H8213\"*." + }, + { + "verseNum": 34, + "text": "He will|strong=\"H3844\"* cut|strong=\"H5362\"* down|strong=\"H5307\"* the|strong=\"H5307\"* thickets|strong=\"H5442\"* of|strong=\"H3293\"* the|strong=\"H5307\"* forest|strong=\"H3293\"* with|strong=\"H3844\"* iron|strong=\"H1270\"*, and|strong=\"H5307\"* Lebanon|strong=\"H3844\"* will|strong=\"H3844\"* fall|strong=\"H5307\"* by|strong=\"H5307\"* the|strong=\"H5307\"* Mighty One." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* shoot|strong=\"H2415\"* will|strong=\"H8328\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* stock|strong=\"H1503\"* of|strong=\"H3318\"* Jesse|strong=\"H3448\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* will|strong=\"H3068\"* rest|strong=\"H5117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*:" + }, + { + "verseNum": 3, + "text": "His|strong=\"H3068\"* delight will|strong=\"H3068\"* be|strong=\"H3808\"* in|strong=\"H3068\"* the|strong=\"H3068\"* fear|strong=\"H3374\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "but|strong=\"H7563\"* he|strong=\"H5221\"* will|strong=\"H7563\"* judge|strong=\"H8199\"* the|strong=\"H5221\"* poor|strong=\"H1800\"* with|strong=\"H3198\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 5, + "text": "Righteousness|strong=\"H6664\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H1961\"* belt around his|strong=\"H1961\"* waist|strong=\"H4975\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H5973\"* wolf|strong=\"H2061\"* will|strong=\"H5288\"* live|strong=\"H1481\"* with|strong=\"H5973\"* the|strong=\"H5973\"* lamb|strong=\"H3532\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H7462\"* cow|strong=\"H6510\"* and|strong=\"H1241\"* the|strong=\"H7462\"* bear|strong=\"H1677\"* will|strong=\"H3206\"* graze|strong=\"H7462\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* nursing|strong=\"H3243\"* child|strong=\"H3243\"* will|strong=\"H3027\"* play|strong=\"H8173\"* near|strong=\"H5921\"* a|strong=\"H3068\"* cobra|strong=\"H6620\"*’s hole|strong=\"H2352\"*," + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hurt|strong=\"H7489\"* nor|strong=\"H3808\"* destroy|strong=\"H7843\"* in|strong=\"H3068\"* all|strong=\"H3605\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*;" + }, + { + "verseNum": 10, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* the|strong=\"H3117\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* seek|strong=\"H1875\"* the|strong=\"H3117\"* root|strong=\"H8328\"* of|strong=\"H3117\"* Jesse|strong=\"H3448\"*, who|strong=\"H1931\"* stands|strong=\"H5975\"* as|strong=\"H3117\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* of|strong=\"H3117\"* the|strong=\"H3117\"* peoples|strong=\"H5971\"*; and|strong=\"H3117\"* his|strong=\"H1961\"* resting|strong=\"H4496\"* place|strong=\"H4496\"* will|strong=\"H1961\"* be|strong=\"H1961\"* glorious|strong=\"H3519\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* the|strong=\"H3117\"* Lord will|strong=\"H1961\"* set|strong=\"H3254\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* again|strong=\"H3254\"* the|strong=\"H3117\"* second|strong=\"H8145\"* time|strong=\"H3117\"* to|strong=\"H1961\"* recover|strong=\"H7069\"* the|strong=\"H3117\"* remnant|strong=\"H7605\"* that|strong=\"H5971\"* is|strong=\"H1931\"* left|strong=\"H7604\"* of|strong=\"H3117\"* his|strong=\"H3027\"* people|strong=\"H5971\"* from|strong=\"H3027\"* Assyria, from|strong=\"H3027\"* Egypt|strong=\"H4714\"*, from|strong=\"H3027\"* Pathros|strong=\"H6624\"*, from|strong=\"H3027\"* Cush|strong=\"H3568\"*, from|strong=\"H3027\"* Elam|strong=\"H5867\"*, from|strong=\"H3027\"* Shinar|strong=\"H8152\"*, from|strong=\"H3027\"* Hamath|strong=\"H2574\"*, and|strong=\"H3117\"* from|strong=\"H3027\"* the|strong=\"H3117\"* islands of|strong=\"H3117\"* the|strong=\"H3117\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3478\"* will|strong=\"H1471\"* set|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* for|strong=\"H3478\"* the|strong=\"H5375\"* nations|strong=\"H1471\"*, and|strong=\"H3063\"* will|strong=\"H1471\"* assemble|strong=\"H6908\"* the|strong=\"H5375\"* outcasts|strong=\"H1760\"* of|strong=\"H3671\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* gather|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H5375\"* dispersed|strong=\"H5310\"* of|strong=\"H3671\"* Judah|strong=\"H3063\"* from|strong=\"H3478\"* the|strong=\"H5375\"* four corners|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H5375\"* earth." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5493\"* envy|strong=\"H7065\"* also|strong=\"H3063\"* of|strong=\"H3808\"* Ephraim will|strong=\"H3063\"* depart|strong=\"H5493\"*, and|strong=\"H3063\"* those who|strong=\"H3063\"* persecute Judah|strong=\"H3063\"* will|strong=\"H3063\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*. Ephraim won’t envy|strong=\"H7065\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* Judah|strong=\"H3063\"* won’t persecute Ephraim." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3027\"* will|strong=\"H1121\"* fly|strong=\"H5774\"* down|strong=\"H5774\"* on|strong=\"H3027\"* the|strong=\"H3027\"* shoulders|strong=\"H3802\"* of|strong=\"H1121\"* the|strong=\"H3027\"* Philistines|strong=\"H6430\"* on|strong=\"H3027\"* the|strong=\"H3027\"* west|strong=\"H3220\"*. Together|strong=\"H3162\"* they|strong=\"H3027\"* will|strong=\"H1121\"* plunder the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3027\"* east|strong=\"H6924\"*. They|strong=\"H3027\"* will|strong=\"H1121\"* extend their|strong=\"H4916\"* power|strong=\"H3027\"* over|strong=\"H3027\"* Edom and|strong=\"H1121\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* will|strong=\"H1121\"* obey|strong=\"H4928\"* them|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* the|strong=\"H5921\"* tongue|strong=\"H3956\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Egyptian|strong=\"H4714\"* sea|strong=\"H3220\"*; and|strong=\"H3068\"* with|strong=\"H3068\"* his|strong=\"H3068\"* scorching|strong=\"H5868\"* wind|strong=\"H7307\"* he|strong=\"H3068\"* will|strong=\"H3068\"* wave|strong=\"H5130\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* River|strong=\"H5104\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* split it|strong=\"H5921\"* into|strong=\"H5921\"* seven|strong=\"H7651\"* streams|strong=\"H5158\"*, and|strong=\"H3068\"* cause men|strong=\"H7651\"* to|strong=\"H3068\"* march|strong=\"H1869\"* over|strong=\"H5921\"* in|strong=\"H5921\"* sandals|strong=\"H5275\"*." + }, + { + "verseNum": 16, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* highway|strong=\"H4546\"* for|strong=\"H4714\"* the|strong=\"H3117\"* remnant|strong=\"H7605\"* that|strong=\"H5971\"* is|strong=\"H3117\"* left|strong=\"H7604\"* of|strong=\"H3117\"* his|strong=\"H3478\"* people|strong=\"H5971\"* from|strong=\"H5927\"* Assyria, like|strong=\"H1961\"* there|strong=\"H1961\"* was|strong=\"H1961\"* for|strong=\"H4714\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* came|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H7604\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3068\"* say|strong=\"H7725\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H7725\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* were|strong=\"H3117\"* angry with|strong=\"H3068\"* me|strong=\"H7725\"*, your|strong=\"H3068\"* anger has|strong=\"H3068\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* and|strong=\"H3068\"* you|strong=\"H3588\"* comfort|strong=\"H5162\"* me|strong=\"H7725\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, God|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* salvation|strong=\"H3444\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* trust, and|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"*; for|strong=\"H3588\"* Yah|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* my|strong=\"H3068\"* strength|strong=\"H5797\"* and|strong=\"H3068\"* song|strong=\"H2176\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* become|strong=\"H1961\"* my|strong=\"H3068\"* salvation|strong=\"H3444\"*.”" + }, + { + "verseNum": 3, + "text": "Therefore with|strong=\"H4325\"* joy|strong=\"H8342\"* you|strong=\"H4325\"* will|strong=\"H4325\"* draw|strong=\"H7579\"* water|strong=\"H4325\"* out|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3444\"* wells|strong=\"H4599\"* of|strong=\"H4325\"* salvation|strong=\"H3444\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3068\"* say, “Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! Call|strong=\"H7121\"* on|strong=\"H3117\"* his|strong=\"H3068\"* name|strong=\"H8034\"*! Declare|strong=\"H3045\"* his|strong=\"H3068\"* doings|strong=\"H5949\"* among|strong=\"H8034\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*! Proclaim|strong=\"H7121\"* that|strong=\"H3588\"* his|strong=\"H3068\"* name|strong=\"H8034\"* is|strong=\"H3068\"* exalted|strong=\"H7682\"*!" + }, + { + "verseNum": 5, + "text": "Sing|strong=\"H2167\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* done|strong=\"H6213\"* excellent|strong=\"H6213\"* things|strong=\"H3605\"*! Let this|strong=\"H2063\"* be|strong=\"H3068\"* known|strong=\"H3045\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth!" + }, + { + "verseNum": 6, + "text": "Cry|strong=\"H6670\"* aloud|strong=\"H7442\"* and|strong=\"H3478\"* shout|strong=\"H7442\"*, you|strong=\"H3588\"* inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Zion|strong=\"H6726\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* is|strong=\"H3478\"* great|strong=\"H1419\"* among|strong=\"H7130\"* you|strong=\"H3588\"*!”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3470\"* burden|strong=\"H4853\"* of|strong=\"H1121\"* Babylon, which|strong=\"H4853\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz saw|strong=\"H2372\"*." + }, + { + "verseNum": 2, + "text": "Set|strong=\"H7311\"* up|strong=\"H5375\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* mountain|strong=\"H2022\"*! Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* to|strong=\"H5921\"* them|strong=\"H5921\"*! Wave|strong=\"H5130\"* your|strong=\"H5921\"* hand|strong=\"H3027\"*, that|strong=\"H2022\"* they|strong=\"H5921\"* may go into|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H5921\"* nobles|strong=\"H5081\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H6680\"* have|strong=\"H1571\"* commanded|strong=\"H6680\"* my|strong=\"H6942\"* consecrated|strong=\"H6942\"* ones|strong=\"H1368\"*; yes|strong=\"H1571\"*, I|strong=\"H6680\"* have|strong=\"H1571\"* called|strong=\"H7121\"* my|strong=\"H6942\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* for|strong=\"H7121\"* my|strong=\"H6942\"* anger, even|strong=\"H1571\"* my|strong=\"H6942\"* proudly|strong=\"H1346\"* exulting|strong=\"H5947\"* ones|strong=\"H1368\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"*, as|strong=\"H3068\"* of|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H7227\"* people|strong=\"H5971\"*; the|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* an|strong=\"H3068\"* uproar|strong=\"H7588\"* of|strong=\"H3068\"* the|strong=\"H3068\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* gathered|strong=\"H1471\"* together|strong=\"H5971\"*! Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* mustering|strong=\"H6485\"* the|strong=\"H3068\"* army|strong=\"H6635\"* for|strong=\"H3068\"* the|strong=\"H3068\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* come from|strong=\"H3068\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country, from|strong=\"H3068\"* the|strong=\"H3605\"* uttermost|strong=\"H7097\"* part|strong=\"H7097\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, even|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* weapons|strong=\"H3627\"* of|strong=\"H3068\"* his|strong=\"H3605\"* indignation|strong=\"H2195\"*, to|strong=\"H3068\"* destroy|strong=\"H2254\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "Wail|strong=\"H3213\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s day|strong=\"H3117\"* is|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*! It|strong=\"H3588\"* will|strong=\"H3068\"* come as|strong=\"H3117\"* destruction|strong=\"H7701\"* from|strong=\"H3117\"* the|strong=\"H3588\"* Almighty|strong=\"H7706\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* all|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* feeble|strong=\"H7503\"*, and|strong=\"H3027\"* everyone|strong=\"H3605\"*’s heart|strong=\"H3824\"* will|strong=\"H3027\"* melt|strong=\"H4549\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* dismayed. Pangs|strong=\"H2256\"* and|strong=\"H6440\"* sorrows|strong=\"H2256\"* will|strong=\"H7453\"* seize them|strong=\"H6440\"*. They|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* in|strong=\"H6440\"* pain|strong=\"H2342\"* like|strong=\"H6440\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H6440\"* labor|strong=\"H3205\"*. They|strong=\"H6440\"* will|strong=\"H7453\"* look|strong=\"H2342\"* in|strong=\"H6440\"* amazement one|strong=\"H7453\"* at|strong=\"H6440\"* another|strong=\"H7453\"*. Their|strong=\"H6440\"* faces|strong=\"H6440\"* will|strong=\"H7453\"* be|strong=\"H6440\"* faces|strong=\"H6440\"* of|strong=\"H3205\"* flame|strong=\"H3851\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H3117\"*, cruel, with|strong=\"H3068\"* wrath|strong=\"H5678\"* and|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H5678\"*; to|strong=\"H3068\"* make|strong=\"H7760\"* the|strong=\"H3068\"* land a|strong=\"H3068\"* desolation|strong=\"H8047\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H8045\"* its|strong=\"H7760\"* sinners|strong=\"H2400\"* out|strong=\"H4480\"* of|strong=\"H3068\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* stars|strong=\"H3556\"* of|strong=\"H3318\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* its|strong=\"H3588\"* constellations|strong=\"H3685\"* will|strong=\"H8064\"* not|strong=\"H3808\"* give|strong=\"H3394\"* their|strong=\"H3588\"* light|strong=\"H5050\"*. The|strong=\"H3588\"* sun|strong=\"H8121\"* will|strong=\"H8064\"* be|strong=\"H3808\"* darkened|strong=\"H2821\"* in|strong=\"H8064\"* its|strong=\"H3588\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H8064\"* the|strong=\"H3588\"* moon|strong=\"H3394\"* will|strong=\"H8064\"* not|strong=\"H3808\"* cause|strong=\"H3318\"* its|strong=\"H3588\"* light|strong=\"H5050\"* to|strong=\"H3318\"* shine|strong=\"H5050\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5921\"* will|strong=\"H7563\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* world|strong=\"H8398\"* for|strong=\"H5921\"* their|strong=\"H5921\"* evil|strong=\"H7451\"*, and|strong=\"H5771\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* for|strong=\"H5921\"* their|strong=\"H5921\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H7563\"* cause the|strong=\"H5921\"* arrogance|strong=\"H1346\"* of|strong=\"H5921\"* the|strong=\"H5921\"* proud|strong=\"H2086\"* to|strong=\"H5921\"* cease|strong=\"H7673\"*, and|strong=\"H5771\"* will|strong=\"H7563\"* humble|strong=\"H8213\"* the|strong=\"H5921\"* arrogance|strong=\"H1346\"* of|strong=\"H5921\"* the|strong=\"H5921\"* terrible|strong=\"H6184\"*." + }, + { + "verseNum": 12, + "text": "I will make|strong=\"H3365\"* people more rare than fine|strong=\"H6337\"* gold|strong=\"H3800\"*, even a|strong=\"H3068\"* person than the pure|strong=\"H6337\"* gold|strong=\"H3800\"* of|strong=\"H3800\"* Ophir." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make the|strong=\"H5921\"* heavens|strong=\"H8064\"* tremble|strong=\"H7264\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* will|strong=\"H3068\"* be|strong=\"H3068\"* shaken|strong=\"H7493\"* out|strong=\"H5921\"* of|strong=\"H3068\"* its|strong=\"H5921\"* place|strong=\"H4725\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*’ wrath|strong=\"H5678\"*, and|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* his|strong=\"H3068\"* fierce|strong=\"H2740\"* anger|strong=\"H5678\"*." + }, + { + "verseNum": 14, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5971\"* like|strong=\"H1961\"* a|strong=\"H3068\"* hunted|strong=\"H5080\"* gazelle|strong=\"H6643\"* and|strong=\"H5971\"* like|strong=\"H1961\"* sheep|strong=\"H6629\"* that|strong=\"H5971\"* no|strong=\"H1961\"* one|strong=\"H1961\"* gathers|strong=\"H6908\"*, they|strong=\"H5971\"* will|strong=\"H1961\"* each|strong=\"H5971\"* turn|strong=\"H6437\"* to|strong=\"H1961\"* their|strong=\"H1961\"* own|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* will|strong=\"H1961\"* each|strong=\"H5971\"* flee|strong=\"H5127\"* to|strong=\"H1961\"* their|strong=\"H1961\"* own|strong=\"H1961\"* land." + }, + { + "verseNum": 15, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* found|strong=\"H4672\"* will|strong=\"H2719\"* be|strong=\"H2719\"* thrust|strong=\"H1856\"* through|strong=\"H1856\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3605\"* captured|strong=\"H5595\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H8155\"* infants|strong=\"H5768\"* also|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* dashed|strong=\"H7376\"* in|strong=\"H1004\"* pieces|strong=\"H7376\"* before|strong=\"H5869\"* their|strong=\"H8155\"* eyes|strong=\"H5869\"*. Their|strong=\"H8155\"* houses|strong=\"H1004\"* will|strong=\"H5869\"* be|strong=\"H5869\"* ransacked, and|strong=\"H1004\"* their|strong=\"H8155\"* wives raped|strong=\"H7693\"*." + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3808\"* stir|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H5921\"* Medes|strong=\"H4074\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, who|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* value|strong=\"H2803\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* as|strong=\"H2803\"* for|strong=\"H5921\"* gold|strong=\"H2091\"*, they|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5921\"* bows|strong=\"H7198\"* will|strong=\"H5869\"* dash|strong=\"H7376\"* the|strong=\"H5921\"* young|strong=\"H5288\"* men|strong=\"H5288\"* in|strong=\"H5921\"* pieces|strong=\"H7376\"*; and|strong=\"H1121\"* they|strong=\"H3808\"* shall|strong=\"H1121\"* have|strong=\"H7355\"* no|strong=\"H3808\"* pity|strong=\"H2347\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* the|strong=\"H5921\"* womb. Their|strong=\"H5921\"* eyes|strong=\"H5869\"* will|strong=\"H5869\"* not|strong=\"H3808\"* spare|strong=\"H2347\"* children|strong=\"H1121\"*." + }, + { + "verseNum": 19, + "text": "Babylon, the|strong=\"H1961\"* glory|strong=\"H8597\"* of|strong=\"H4467\"* kingdoms|strong=\"H4467\"*, the|strong=\"H1961\"* beauty|strong=\"H8597\"* of|strong=\"H4467\"* the|strong=\"H1961\"* Chaldeans|strong=\"H3778\"*’ pride|strong=\"H1347\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* God overthrew|strong=\"H4114\"* Sodom|strong=\"H5467\"* and|strong=\"H5467\"* Gomorrah|strong=\"H6017\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H8033\"* will|strong=\"H3808\"* never|strong=\"H3808\"* be|strong=\"H3808\"* inhabited|strong=\"H3427\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* it|strong=\"H8033\"* be|strong=\"H3808\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* from|strong=\"H5704\"* generation|strong=\"H1755\"* to|strong=\"H5704\"* generation|strong=\"H1755\"*. The|strong=\"H5704\"* Arabian|strong=\"H6163\"* will|strong=\"H3808\"* not|strong=\"H3808\"* pitch|strong=\"H6163\"* a|strong=\"H3068\"* tent there|strong=\"H8033\"*, neither|strong=\"H3808\"* will|strong=\"H3808\"* shepherds|strong=\"H7462\"* make|strong=\"H3427\"* their|strong=\"H3808\"* flocks lie|strong=\"H7257\"* down|strong=\"H3427\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 21, + "text": "But wild animals of|strong=\"H1004\"* the|strong=\"H4390\"* desert|strong=\"H6728\"* will|strong=\"H1004\"* lie|strong=\"H7257\"* there|strong=\"H8033\"*, and|strong=\"H1004\"* their|strong=\"H4390\"* houses|strong=\"H1004\"* will|strong=\"H1004\"* be|strong=\"H1004\"* full|strong=\"H4390\"* of|strong=\"H1004\"* jackals. Ostriches|strong=\"H3284\"* will|strong=\"H1004\"* dwell|strong=\"H7931\"* there|strong=\"H8033\"*, and|strong=\"H1004\"* wild goats|strong=\"H8163\"* will|strong=\"H1004\"* frolic|strong=\"H7540\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 22, + "text": "Hyenas will|strong=\"H3808\"* cry|strong=\"H6030\"* in|strong=\"H3117\"* their|strong=\"H3117\"* fortresses, and|strong=\"H6030\"* jackals|strong=\"H8577\"* in|strong=\"H3117\"* the|strong=\"H3117\"* pleasant|strong=\"H6027\"* palaces|strong=\"H1964\"*. Her|strong=\"H3117\"* time|strong=\"H6256\"* is|strong=\"H3117\"* near|strong=\"H7138\"* to|strong=\"H6256\"* come, and|strong=\"H6030\"* her|strong=\"H3117\"* days|strong=\"H3117\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* prolonged|strong=\"H4900\"*." + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* choose Israel|strong=\"H3478\"*, and|strong=\"H3478\"* set|strong=\"H3240\"* them|strong=\"H5921\"* in|strong=\"H5921\"* their|strong=\"H3068\"* own land. The|strong=\"H5921\"* foreigner|strong=\"H1616\"* will|strong=\"H3068\"* join|strong=\"H3867\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3068\"* unite with|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* peoples|strong=\"H5971\"* will|strong=\"H3068\"* take|strong=\"H3947\"* them|strong=\"H5921\"*, and|strong=\"H3478\"* bring|strong=\"H3947\"* them|strong=\"H5921\"* to|strong=\"H3478\"* their|strong=\"H3068\"* place|strong=\"H4725\"*. The|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* possess|strong=\"H5157\"* them|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s land|strong=\"H4725\"* for|strong=\"H5921\"* servants|strong=\"H5650\"* and|strong=\"H3478\"* for|strong=\"H5921\"* handmaids|strong=\"H8198\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3947\"* as|strong=\"H1961\"* captives|strong=\"H7617\"* those|strong=\"H5921\"* whose|strong=\"H5650\"* captives|strong=\"H7617\"* they|strong=\"H3068\"* were|strong=\"H3478\"*; and|strong=\"H3478\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* rule|strong=\"H7287\"* over|strong=\"H5921\"* their|strong=\"H3068\"* oppressors|strong=\"H5065\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H5117\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H5647\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H5117\"* you|strong=\"H3117\"* rest|strong=\"H5117\"* from|strong=\"H4480\"* your|strong=\"H3068\"* sorrow|strong=\"H6090\"*, from|strong=\"H4480\"* your|strong=\"H3068\"* trouble|strong=\"H7267\"*, and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5647\"* hard|strong=\"H7186\"* service|strong=\"H5656\"* in|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H3117\"* were|strong=\"H1961\"* made|strong=\"H1961\"* to|strong=\"H3068\"* serve|strong=\"H5647\"*," + }, + { + "verseNum": 4, + "text": "that|strong=\"H4428\"* you|strong=\"H5921\"* will|strong=\"H4428\"* take|strong=\"H5375\"* up|strong=\"H5375\"* this|strong=\"H2088\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* say, “How the|strong=\"H5921\"* oppressor|strong=\"H5065\"* has|strong=\"H4428\"* ceased|strong=\"H7673\"*! The|strong=\"H5921\"* golden city|strong=\"H4062\"* has|strong=\"H4428\"* ceased|strong=\"H7673\"*!”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3068\"* staff|strong=\"H4294\"* of|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*, the|strong=\"H3068\"* scepter|strong=\"H7626\"* of|strong=\"H3068\"* the|strong=\"H3068\"* rulers|strong=\"H4910\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H5971\"* struck|strong=\"H5221\"* the|strong=\"H5221\"* peoples|strong=\"H5971\"* in|strong=\"H5971\"* wrath|strong=\"H5678\"* with|strong=\"H5971\"* a|strong=\"H3068\"* continual|strong=\"H1115\"* stroke|strong=\"H4347\"*, who|strong=\"H5971\"* ruled|strong=\"H7287\"* the|strong=\"H5221\"* nations|strong=\"H1471\"* in|strong=\"H5971\"* anger|strong=\"H5678\"*, with|strong=\"H5971\"* a|strong=\"H3068\"* persecution|strong=\"H4783\"* that|strong=\"H5971\"* no|strong=\"H1115\"* one|strong=\"H1097\"* restrained|strong=\"H2820\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* earth is|strong=\"H3605\"* at|strong=\"H3605\"* rest|strong=\"H5117\"*, and|strong=\"H8252\"* is|strong=\"H3605\"* quiet|strong=\"H8252\"*. They|strong=\"H3605\"* break|strong=\"H6476\"* out|strong=\"H3605\"* in|strong=\"H5117\"* song." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H5921\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"* rejoice|strong=\"H8055\"* with|strong=\"H5921\"* you|strong=\"H5921\"*, with|strong=\"H5921\"* the|strong=\"H5921\"* cedars of|strong=\"H5921\"* Lebanon|strong=\"H3844\"*, saying, “Since|strong=\"H1571\"* you|strong=\"H5921\"* are|strong=\"H1571\"* humbled, no|strong=\"H3808\"* lumberjack has|strong=\"H1571\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* us|strong=\"H5921\"*.”" + }, + { + "verseNum": 9, + "text": "Sheol|strong=\"H7585\"*+ 14:9 Sheol is the place of the dead.* from|strong=\"H6965\"* beneath|strong=\"H8478\"* has|strong=\"H4428\"* moved|strong=\"H7264\"* for|strong=\"H8478\"* you|strong=\"H3605\"* to|strong=\"H4428\"* meet|strong=\"H7125\"* you|strong=\"H3605\"* at|strong=\"H4428\"* your|strong=\"H3605\"* coming|strong=\"H7125\"*. It|strong=\"H6965\"* stirs|strong=\"H5782\"* up|strong=\"H6965\"* the|strong=\"H3605\"* departed|strong=\"H7496\"* spirits|strong=\"H7496\"* for|strong=\"H8478\"* you|strong=\"H3605\"*, even all|strong=\"H3605\"* the|strong=\"H3605\"* rulers of|strong=\"H4428\"* the|strong=\"H3605\"* earth. It|strong=\"H6965\"* has|strong=\"H4428\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* from|strong=\"H6965\"* their|strong=\"H3605\"* thrones|strong=\"H3678\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3605\"* all|strong=\"H3605\"* will|strong=\"H1571\"* answer|strong=\"H6030\"* and|strong=\"H6030\"* ask you|strong=\"H3605\"*, “Have|strong=\"H1571\"* you|strong=\"H3605\"* also|strong=\"H1571\"* become|strong=\"H2470\"* as|strong=\"H3644\"* weak|strong=\"H2470\"* as|strong=\"H3644\"* we|strong=\"H3068\"* are|strong=\"H1571\"*? Have|strong=\"H1571\"* you|strong=\"H3605\"* become|strong=\"H2470\"* like|strong=\"H3644\"* us|strong=\"H4911\"*?”" + }, + { + "verseNum": 11, + "text": "Your|strong=\"H3381\"* pomp|strong=\"H1347\"* is|strong=\"H7415\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 14:11 Sheol is the place of the dead. * with|strong=\"H3381\"* the|strong=\"H8478\"* sound of|strong=\"H8478\"* your|strong=\"H3381\"* stringed instruments. Maggots|strong=\"H7415\"* are|strong=\"H7585\"* spread|strong=\"H3331\"* out|strong=\"H3331\"* under|strong=\"H8478\"* you|strong=\"H3381\"*, and|strong=\"H3381\"* worms|strong=\"H8438\"* cover|strong=\"H4374\"* you|strong=\"H3381\"*." + }, + { + "verseNum": 12, + "text": "How you|strong=\"H5921\"* have|strong=\"H1121\"* fallen|strong=\"H5307\"* from|strong=\"H5921\"* heaven|strong=\"H8064\"*, shining one|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* dawn|strong=\"H7837\"*! How you|strong=\"H5921\"* are|strong=\"H1121\"* cut|strong=\"H1438\"* down|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H5921\"* ground, who|strong=\"H1121\"* laid the|strong=\"H5921\"* nations|strong=\"H1471\"* low|strong=\"H1121\"*!" + }, + { + "verseNum": 13, + "text": "You|strong=\"H2022\"* said in|strong=\"H3427\"* your|strong=\"H7311\"* heart|strong=\"H3824\"*, “I|strong=\"H7311\"* will|strong=\"H8064\"* ascend|strong=\"H5927\"* into|strong=\"H5927\"* heaven|strong=\"H8064\"*! I|strong=\"H7311\"* will|strong=\"H8064\"* exalt|strong=\"H7311\"* my|strong=\"H7311\"* throne|strong=\"H3678\"* above|strong=\"H4605\"* the|strong=\"H5927\"* stars|strong=\"H3556\"* of|strong=\"H3427\"* God|strong=\"H8064\"*! I|strong=\"H7311\"* will|strong=\"H8064\"* sit|strong=\"H3427\"* on|strong=\"H3427\"* the|strong=\"H5927\"* mountain|strong=\"H2022\"* of|strong=\"H3427\"* assembly|strong=\"H4150\"*, in|strong=\"H3427\"* the|strong=\"H5927\"* far|strong=\"H5927\"* north|strong=\"H6828\"*!" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will ascend|strong=\"H5927\"* above|strong=\"H5921\"* the|strong=\"H5921\"* heights|strong=\"H1116\"* of|strong=\"H5921\"* the|strong=\"H5921\"* clouds|strong=\"H5645\"*! I|strong=\"H5921\"* will make|strong=\"H1819\"* myself|strong=\"H1819\"* like|strong=\"H1819\"* the|strong=\"H5921\"* Most|strong=\"H5945\"* High|strong=\"H1116\"*!”" + }, + { + "verseNum": 15, + "text": "Yet you|strong=\"H3381\"* shall be brought|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 14:15 Sheol is the place of the dead.* to|strong=\"H3381\"* the|strong=\"H3381\"* depths of|strong=\"H3411\"* the|strong=\"H3381\"* pit|strong=\"H7585\"*." + }, + { + "verseNum": 16, + "text": "Those|strong=\"H2088\"* who|strong=\"H2088\"* see|strong=\"H7200\"* you|strong=\"H7200\"* will|strong=\"H2088\"* stare|strong=\"H7200\"* at|strong=\"H7200\"* you|strong=\"H7200\"*. They|strong=\"H7200\"* will|strong=\"H2088\"* ponder you|strong=\"H7200\"*, saying, “Is|strong=\"H2088\"* this|strong=\"H2088\"* the|strong=\"H7200\"* man|strong=\"H2088\"* who|strong=\"H2088\"* made the|strong=\"H7200\"* earth to|strong=\"H7200\"* tremble|strong=\"H7264\"*, who|strong=\"H2088\"* shook|strong=\"H7493\"* kingdoms|strong=\"H4467\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H3808\"* made|strong=\"H7760\"* the|strong=\"H7760\"* world|strong=\"H8398\"* like|strong=\"H1004\"* a|strong=\"H3068\"* wilderness|strong=\"H4057\"*, and|strong=\"H1004\"* overthrew|strong=\"H2040\"* its|strong=\"H7760\"* cities|strong=\"H5892\"*, who|strong=\"H3808\"* didn’t release|strong=\"H6605\"* his|strong=\"H7760\"* prisoners to|strong=\"H1004\"* their|strong=\"H7760\"* home|strong=\"H1004\"*?”" + }, + { + "verseNum": 18, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* sleep|strong=\"H7901\"* in|strong=\"H1004\"* glory|strong=\"H3519\"*, everyone|strong=\"H3605\"* in|strong=\"H1004\"* his|strong=\"H3605\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "But you|strong=\"H3381\"* are|strong=\"H6913\"* cast|strong=\"H7993\"* away|strong=\"H7993\"* from|strong=\"H3381\"* your|strong=\"H2026\"* tomb|strong=\"H6913\"* like|strong=\"H3381\"* an|strong=\"H8581\"* abominable|strong=\"H8581\"* branch|strong=\"H5342\"*, clothed|strong=\"H3830\"* with|strong=\"H3381\"* the|strong=\"H2026\"* slain|strong=\"H2026\"* who are|strong=\"H6913\"* thrust|strong=\"H3381\"* through|strong=\"H2944\"* with|strong=\"H3381\"* the|strong=\"H2026\"* sword|strong=\"H2719\"*, who go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H2026\"* stones of|strong=\"H2719\"* the|strong=\"H2026\"* pit; like|strong=\"H3381\"* a|strong=\"H3068\"* dead|strong=\"H6297\"* body trodden under foot." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* join them|strong=\"H7121\"* in|strong=\"H7121\"* burial|strong=\"H6900\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* destroyed|strong=\"H7843\"* your|strong=\"H3588\"* land. You|strong=\"H3588\"* have|strong=\"H5971\"* killed|strong=\"H2026\"* your|strong=\"H3588\"* people|strong=\"H5971\"*. The|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H2233\"* evildoers|strong=\"H7489\"* will|strong=\"H5971\"* not|strong=\"H3808\"* be|strong=\"H3808\"* named|strong=\"H7121\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 21, + "text": "Prepare|strong=\"H3559\"* for|strong=\"H6440\"* slaughter|strong=\"H4293\"* of|strong=\"H1121\"* his|strong=\"H6440\"* children|strong=\"H1121\"* because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* their|strong=\"H6440\"* fathers, that|strong=\"H5892\"* they|strong=\"H1077\"* not|strong=\"H1077\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H1121\"* possess|strong=\"H3423\"* the|strong=\"H6440\"* earth, and|strong=\"H1121\"* fill|strong=\"H4390\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* world|strong=\"H8398\"* with|strong=\"H4390\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 22, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H6965\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Babylon name|strong=\"H8034\"* and|strong=\"H6965\"* remnant|strong=\"H7605\"*, and|strong=\"H6965\"* son|strong=\"H5209\"* and|strong=\"H6965\"* son|strong=\"H5209\"*’s son|strong=\"H5209\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 23, + "text": "“I|strong=\"H7760\"* will|strong=\"H3068\"* also|strong=\"H3068\"* make|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* possession|strong=\"H4180\"* for|strong=\"H3068\"* the|strong=\"H5002\"* porcupine, and|strong=\"H3068\"* pools of|strong=\"H3068\"* water|strong=\"H4325\"*. I|strong=\"H7760\"* will|strong=\"H3068\"* sweep|strong=\"H2894\"* it|strong=\"H7760\"* with|strong=\"H3068\"* the|strong=\"H5002\"* broom|strong=\"H4292\"* of|strong=\"H3068\"* destruction|strong=\"H8045\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"*, saying, “Surely|strong=\"H6965\"*, as|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* thought|strong=\"H1819\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* it|strong=\"H1931\"* happen|strong=\"H1961\"*; and|strong=\"H6965\"* as|strong=\"H1961\"* I|strong=\"H3651\"* have|strong=\"H1961\"* purposed|strong=\"H3289\"*, so|strong=\"H3651\"* shall|strong=\"H3068\"* it|strong=\"H1931\"* stand|strong=\"H6965\"*:" + }, + { + "verseNum": 25, + "text": "that|strong=\"H2022\"* I|strong=\"H5921\"* will|strong=\"H2022\"* break|strong=\"H7665\"* the|strong=\"H5921\"* Assyrian in|strong=\"H5921\"* my|strong=\"H5921\"* land, and|strong=\"H2022\"* tread him|strong=\"H5921\"* under|strong=\"H5921\"* foot on|strong=\"H5921\"* my|strong=\"H5921\"* mountains|strong=\"H2022\"*. Then his|strong=\"H5921\"* yoke|strong=\"H5923\"* will|strong=\"H2022\"* leave|strong=\"H5493\"* them|strong=\"H5921\"*, and|strong=\"H2022\"* his|strong=\"H5921\"* burden|strong=\"H5448\"* leave|strong=\"H5493\"* their|strong=\"H5921\"* shoulders|strong=\"H7926\"*." + }, + { + "verseNum": 26, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* plan|strong=\"H6098\"* that|strong=\"H3605\"* is|strong=\"H3027\"* determined|strong=\"H3289\"* for|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth. This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* that|strong=\"H3605\"* is|strong=\"H3027\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* planned|strong=\"H3289\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* can|strong=\"H4310\"* stop it|strong=\"H3588\"*? His|strong=\"H3068\"* hand|strong=\"H3027\"* is|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* can|strong=\"H4310\"* turn|strong=\"H7725\"* it|strong=\"H3588\"* back|strong=\"H7725\"*?”" + }, + { + "verseNum": 28, + "text": "This|strong=\"H2088\"* burden|strong=\"H4853\"* was|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H1961\"* year|strong=\"H8141\"* that|strong=\"H4428\"* King|strong=\"H4428\"* Ahaz died|strong=\"H4194\"*." + }, + { + "verseNum": 29, + "text": "Don’t rejoice|strong=\"H8055\"*, O|strong=\"H3068\"* Philistia|strong=\"H6429\"*, all|strong=\"H3605\"* of|strong=\"H7626\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* the|strong=\"H3605\"* rod|strong=\"H7626\"* that|strong=\"H3588\"* struck|strong=\"H5221\"* you|strong=\"H3588\"* is|strong=\"H3605\"* broken|strong=\"H7665\"*; for|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H7626\"* the|strong=\"H3605\"* serpent|strong=\"H5175\"*’s root|strong=\"H8328\"* an|strong=\"H5221\"* adder|strong=\"H8314\"* will|strong=\"H8328\"* emerge|strong=\"H3318\"*, and|strong=\"H3318\"* his|strong=\"H3605\"* fruit|strong=\"H6529\"* will|strong=\"H8328\"* be|strong=\"H3318\"* a|strong=\"H3068\"* fiery|strong=\"H8314\"* flying|strong=\"H5774\"* serpent|strong=\"H5175\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H4191\"* firstborn|strong=\"H1060\"* of|strong=\"H1060\"* the|strong=\"H4191\"* poor|strong=\"H1800\"* will|strong=\"H8328\"* eat|strong=\"H7462\"*, and|strong=\"H4191\"* the|strong=\"H4191\"* needy|strong=\"H1800\"* will|strong=\"H8328\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H4191\"* safety; and|strong=\"H4191\"* I will|strong=\"H8328\"* kill|strong=\"H2026\"* your|strong=\"H2026\"* root|strong=\"H8328\"* with|strong=\"H4191\"* famine|strong=\"H7458\"*, and|strong=\"H4191\"* your|strong=\"H2026\"* remnant|strong=\"H7611\"* will|strong=\"H8328\"* be|strong=\"H4191\"* killed|strong=\"H2026\"*." + }, + { + "verseNum": 31, + "text": "Howl|strong=\"H3213\"*, gate|strong=\"H8179\"*! Cry|strong=\"H2199\"*, city|strong=\"H5892\"*! You|strong=\"H3588\"* are|strong=\"H5892\"* melted|strong=\"H4127\"* away|strong=\"H4127\"*, Philistia|strong=\"H6429\"*, all|strong=\"H3605\"* of|strong=\"H5892\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* smoke|strong=\"H6227\"* comes out|strong=\"H2199\"* of|strong=\"H5892\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H5892\"* there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H3605\"* straggler in|strong=\"H5892\"* his|strong=\"H3605\"* ranks|strong=\"H4151\"*." + }, + { + "verseNum": 32, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* they|strong=\"H3588\"* answer|strong=\"H6030\"* the|strong=\"H3588\"* messengers|strong=\"H4397\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nation|strong=\"H1471\"*? That|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* founded|strong=\"H3245\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* her|strong=\"H3588\"* the|strong=\"H3588\"* afflicted|strong=\"H6041\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"* will|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* burden|strong=\"H4853\"* of|strong=\"H4853\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H5921\"* have|strong=\"H3605\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Bayith, and|strong=\"H7218\"* to|strong=\"H5927\"* Dibon|strong=\"H1769\"*, to|strong=\"H5927\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"*, to|strong=\"H5927\"* weep|strong=\"H1065\"*. Moab|strong=\"H4124\"* wails|strong=\"H3213\"* over|strong=\"H5921\"* Nebo|strong=\"H5015\"* and|strong=\"H7218\"* over|strong=\"H5921\"* Medeba|strong=\"H4311\"*. Baldness|strong=\"H7144\"* is|strong=\"H3605\"* on|strong=\"H5921\"* all|strong=\"H3605\"* of|strong=\"H7218\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*. Every|strong=\"H3605\"* beard|strong=\"H2206\"* is|strong=\"H3605\"* cut|strong=\"H1639\"* off|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* their|strong=\"H3605\"* streets|strong=\"H2351\"*, they|strong=\"H5921\"* clothe themselves|strong=\"H5921\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*. In|strong=\"H5921\"* their|strong=\"H3605\"* streets|strong=\"H2351\"* and|strong=\"H3381\"* on|strong=\"H5921\"* their|strong=\"H3605\"* housetops|strong=\"H1406\"*, everyone|strong=\"H3605\"* wails|strong=\"H3213\"*, weeping|strong=\"H1065\"* abundantly|strong=\"H3381\"*." + }, + { + "verseNum": 4, + "text": "Heshbon|strong=\"H2809\"* cries|strong=\"H2199\"* out|strong=\"H2199\"* with|strong=\"H5921\"* Elealeh. Their|strong=\"H8085\"* voice|strong=\"H6963\"* is|strong=\"H5315\"* heard|strong=\"H8085\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jahaz|strong=\"H3096\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* armed|strong=\"H2502\"* men|strong=\"H2502\"* of|strong=\"H6963\"* Moab|strong=\"H4124\"* cry|strong=\"H2199\"* aloud|strong=\"H2199\"*. Their|strong=\"H8085\"* souls|strong=\"H5315\"* tremble within|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "My|strong=\"H5927\"* heart|strong=\"H3820\"* cries|strong=\"H2199\"* out|strong=\"H2199\"* for|strong=\"H3588\"* Moab|strong=\"H4124\"*! Her|strong=\"H1870\"* nobles flee to|strong=\"H5704\"* Zoar|strong=\"H6820\"*, to|strong=\"H5704\"* Eglath Shelishiyah; for|strong=\"H3588\"* they|strong=\"H3588\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H1870\"* the|strong=\"H3588\"* ascent|strong=\"H4608\"* of|strong=\"H1870\"* Luhith|strong=\"H3872\"* with|strong=\"H5927\"* weeping|strong=\"H1065\"*; for|strong=\"H3588\"* on|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"* to|strong=\"H5704\"* Horonaim|strong=\"H2773\"*, they|strong=\"H3588\"* raise|strong=\"H5782\"* up|strong=\"H5927\"* a|strong=\"H3068\"* cry|strong=\"H2199\"* of|strong=\"H1870\"* destruction|strong=\"H7667\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Nimrim|strong=\"H5249\"* will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H4923\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* grass|strong=\"H2682\"* has|strong=\"H1961\"* withered|strong=\"H3001\"* away|strong=\"H3615\"*, the|strong=\"H3588\"* tender|strong=\"H1877\"* grass|strong=\"H2682\"* fails|strong=\"H3615\"*, there|strong=\"H1961\"* is|strong=\"H1961\"* no|strong=\"H3808\"* green|strong=\"H3418\"* thing|strong=\"H3418\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H6213\"* carry|strong=\"H5375\"* away|strong=\"H5375\"* the|strong=\"H5921\"* abundance|strong=\"H3502\"* they|strong=\"H3651\"* have|strong=\"H5375\"* gotten|strong=\"H6213\"*, and|strong=\"H6213\"* that|strong=\"H3651\"* which|strong=\"H5158\"* they|strong=\"H3651\"* have|strong=\"H5375\"* stored|strong=\"H6486\"* up|strong=\"H5375\"*, over|strong=\"H5921\"* the|strong=\"H5921\"* brook|strong=\"H5158\"* of|strong=\"H5921\"* the|strong=\"H5921\"* willows|strong=\"H6155\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* has|strong=\"H3588\"* gone|strong=\"H5362\"* around|strong=\"H5362\"* the|strong=\"H3588\"* borders|strong=\"H1366\"* of|strong=\"H1366\"* Moab|strong=\"H4124\"*, its|strong=\"H3588\"* wailing|strong=\"H3215\"* to|strong=\"H5704\"* Eglaim, and|strong=\"H4124\"* its|strong=\"H3588\"* wailing|strong=\"H3215\"* to|strong=\"H5704\"* Beer Elim." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Dimon|strong=\"H1775\"* are|strong=\"H4325\"* full|strong=\"H4390\"* of|strong=\"H4325\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H4325\"* bring|strong=\"H7896\"* yet|strong=\"H3588\"* more|strong=\"H3254\"* on|strong=\"H5921\"* Dimon|strong=\"H1775\"*, a|strong=\"H3068\"* lion on|strong=\"H5921\"* those|strong=\"H5921\"* of|strong=\"H4325\"* Moab|strong=\"H4124\"* who|strong=\"H6413\"* escape|strong=\"H6413\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H4325\"* the|strong=\"H5921\"* land." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Send|strong=\"H7971\"* the|strong=\"H7971\"* lambs|strong=\"H3733\"* for|strong=\"H7971\"* the|strong=\"H7971\"* ruler|strong=\"H4910\"* of|strong=\"H1323\"* the|strong=\"H7971\"* land from|strong=\"H7971\"* Selah|strong=\"H5554\"* to|strong=\"H7971\"* the|strong=\"H7971\"* wilderness|strong=\"H4057\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* mountain|strong=\"H2022\"* of|strong=\"H1323\"* the|strong=\"H7971\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H7971\"* it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H1961\"* as|strong=\"H1961\"* wandering|strong=\"H5074\"* birds|strong=\"H5775\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* scattered|strong=\"H7971\"* nest|strong=\"H7064\"*, so|strong=\"H7971\"* will|strong=\"H1961\"* the|strong=\"H7971\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Moab|strong=\"H4124\"* be|strong=\"H1961\"* at|strong=\"H1961\"* the|strong=\"H7971\"* fords|strong=\"H4569\"* of|strong=\"H1323\"* the|strong=\"H7971\"* Arnon." + }, + { + "verseNum": 3, + "text": "Give|strong=\"H6213\"* counsel|strong=\"H6098\"*! Execute|strong=\"H6213\"* justice! Make|strong=\"H6213\"* your|strong=\"H6213\"* shade|strong=\"H6738\"* like|strong=\"H6213\"* the|strong=\"H6213\"* night|strong=\"H3915\"* in|strong=\"H6213\"* the|strong=\"H6213\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H6213\"* noonday|strong=\"H6672\"*! Hide|strong=\"H5641\"* the|strong=\"H6213\"* outcasts|strong=\"H5080\"*! Don’t betray|strong=\"H1540\"* the|strong=\"H6213\"* fugitive|strong=\"H5074\"*!" + }, + { + "verseNum": 4, + "text": "Let my|strong=\"H3615\"* outcasts|strong=\"H5080\"* dwell|strong=\"H1481\"* with|strong=\"H6440\"* you|strong=\"H3588\"*! As|strong=\"H3588\"* for|strong=\"H3588\"* Moab|strong=\"H4124\"*, be|strong=\"H1933\"* a|strong=\"H3068\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"* for|strong=\"H3588\"* him|strong=\"H6440\"* from|strong=\"H4480\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* destroyer|strong=\"H7703\"*. For|strong=\"H3588\"* the|strong=\"H6440\"* extortionist is|strong=\"H4124\"* brought|strong=\"H3615\"* to|strong=\"H6440\"* nothing. Destruction|strong=\"H7701\"* ceases. The|strong=\"H6440\"* oppressors|strong=\"H7429\"* are|strong=\"H6440\"* consumed|strong=\"H3615\"* out|strong=\"H4480\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "A|strong=\"H3068\"* throne|strong=\"H3678\"* will|strong=\"H2617\"* be|strong=\"H1732\"* established|strong=\"H3559\"* in|strong=\"H3427\"* loving kindness|strong=\"H2617\"*. One will|strong=\"H2617\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H3427\"* truth, in|strong=\"H3427\"* the|strong=\"H5921\"* tent of|strong=\"H3427\"* David|strong=\"H1732\"*, judging|strong=\"H8199\"*, seeking|strong=\"H1875\"* justice|strong=\"H4941\"*, and|strong=\"H4941\"* swift to|strong=\"H5921\"* do righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H8085\"* have|strong=\"H3808\"* heard|strong=\"H8085\"* of|strong=\"H1347\"* the|strong=\"H8085\"* pride|strong=\"H1347\"* of|strong=\"H1347\"* Moab|strong=\"H4124\"*, that|strong=\"H8085\"* he|strong=\"H3651\"* is|strong=\"H3651\"* very|strong=\"H3966\"* proud|strong=\"H1346\"*; even|strong=\"H3651\"* of|strong=\"H1347\"* his|strong=\"H8085\"* arrogance|strong=\"H1346\"*, his|strong=\"H8085\"* pride|strong=\"H1347\"*, and|strong=\"H8085\"* his|strong=\"H8085\"* wrath|strong=\"H5678\"*. His|strong=\"H8085\"* boastings are|strong=\"H3808\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* Moab|strong=\"H4124\"* will|strong=\"H4124\"* wail|strong=\"H3213\"* for|strong=\"H3605\"* Moab|strong=\"H4124\"*. Everyone|strong=\"H3605\"* will|strong=\"H4124\"* wail|strong=\"H3213\"*. You|strong=\"H3605\"* will|strong=\"H4124\"* mourn|strong=\"H1897\"* for|strong=\"H3605\"* the|strong=\"H3605\"* raisin cakes of|strong=\"H3605\"* Kir Hareseth, utterly stricken|strong=\"H5218\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fields|strong=\"H7709\"* of|strong=\"H4057\"* Heshbon|strong=\"H2809\"* languish with|strong=\"H3220\"* the|strong=\"H3588\"* vine|strong=\"H1612\"* of|strong=\"H4057\"* Sibmah|strong=\"H7643\"*. The|strong=\"H3588\"* lords|strong=\"H1167\"* of|strong=\"H4057\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* broken|strong=\"H5674\"* down|strong=\"H1986\"* its|strong=\"H3220\"* choice|strong=\"H8291\"* branches|strong=\"H7976\"*, which|strong=\"H1471\"* reached|strong=\"H5060\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Jazer|strong=\"H3270\"*, which|strong=\"H1471\"* wandered|strong=\"H8582\"* into|strong=\"H3220\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*. Its|strong=\"H3220\"* shoots were|strong=\"H1471\"* spread|strong=\"H5203\"* abroad|strong=\"H5203\"*. They|strong=\"H3588\"* passed|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5307\"* weep|strong=\"H1058\"* with|strong=\"H5921\"* the|strong=\"H5921\"* weeping|strong=\"H1065\"* of|strong=\"H5921\"* Jazer|strong=\"H3270\"* for|strong=\"H3588\"* the|strong=\"H5921\"* vine|strong=\"H1612\"* of|strong=\"H5921\"* Sibmah|strong=\"H7643\"*. I|strong=\"H3588\"* will|strong=\"H5307\"* water|strong=\"H7301\"* you|strong=\"H3588\"* with|strong=\"H5921\"* my|strong=\"H5921\"* tears|strong=\"H1832\"*, Heshbon|strong=\"H2809\"*, and|strong=\"H5307\"* Elealeh: for|strong=\"H3588\"* on|strong=\"H5921\"* your|strong=\"H5921\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"* and|strong=\"H5307\"* on|strong=\"H5921\"* your|strong=\"H5921\"* harvest|strong=\"H7105\"* the|strong=\"H5921\"* battle shout|strong=\"H1959\"* has|strong=\"H3588\"* fallen|strong=\"H5307\"*." + }, + { + "verseNum": 10, + "text": "Gladness|strong=\"H8057\"* is|strong=\"H3808\"* taken away|strong=\"H4480\"*, and|strong=\"H8057\"* joy|strong=\"H8057\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*; and|strong=\"H8057\"* in|strong=\"H3808\"* the|strong=\"H4480\"* vineyards|strong=\"H3754\"* there|strong=\"H4480\"* will|strong=\"H3808\"* be|strong=\"H3808\"* no|strong=\"H3808\"* singing|strong=\"H7442\"*, neither|strong=\"H3808\"* joyful|strong=\"H7442\"* noise|strong=\"H7321\"*. Nobody|strong=\"H3808\"* will|strong=\"H3808\"* tread|strong=\"H1869\"* out|strong=\"H4480\"* wine|strong=\"H3196\"* in|strong=\"H3808\"* the|strong=\"H4480\"* presses|strong=\"H3342\"*. I|strong=\"H3808\"* have|strong=\"H3808\"* made|strong=\"H7673\"* the|strong=\"H4480\"* shouting|strong=\"H1959\"* stop|strong=\"H7673\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H5921\"* heart|strong=\"H4578\"* sounds like|strong=\"H3651\"* a|strong=\"H3068\"* harp|strong=\"H3658\"* for|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H3658\"* my|strong=\"H5921\"* inward|strong=\"H7130\"* parts|strong=\"H7130\"* for|strong=\"H5921\"* Kir Heres." + }, + { + "verseNum": 12, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* Moab|strong=\"H4124\"* presents|strong=\"H7200\"* himself|strong=\"H3808\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* wearies|strong=\"H3811\"* himself|strong=\"H3808\"* on|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1116\"* place|strong=\"H1116\"*, and|strong=\"H7200\"* comes|strong=\"H1961\"* to|strong=\"H3201\"* his|strong=\"H5921\"* sanctuary|strong=\"H4720\"* to|strong=\"H3201\"* pray|strong=\"H6419\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"*." + }, + { + "verseNum": 13, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Moab|strong=\"H4124\"* in|strong=\"H3068\"* time past." + }, + { + "verseNum": 14, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*, “Within three|strong=\"H7969\"* years|strong=\"H8141\"*, as|strong=\"H3068\"* a|strong=\"H3068\"* worker|strong=\"H7916\"* bound by|strong=\"H8141\"* contract would|strong=\"H3068\"* count|strong=\"H8141\"* them|strong=\"H3068\"*, the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* shall|strong=\"H3068\"* be|strong=\"H3808\"* brought|strong=\"H3068\"* into|strong=\"H3519\"* contempt, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*; and|strong=\"H3068\"* the|strong=\"H3605\"* remnant|strong=\"H7605\"* will|strong=\"H3068\"* be|strong=\"H3808\"* very|strong=\"H4213\"* small|strong=\"H4592\"* and|strong=\"H3068\"* feeble|strong=\"H3808\"*.”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5493\"* burden|strong=\"H4853\"* of|strong=\"H5892\"* Damascus|strong=\"H1834\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5800\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Aroer|strong=\"H6177\"* are|strong=\"H5892\"* forsaken|strong=\"H5800\"*. They|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5892\"* flocks|strong=\"H5739\"*, which|strong=\"H5892\"* shall|strong=\"H5892\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H5892\"* no|strong=\"H1961\"* one|strong=\"H1961\"* shall|strong=\"H5892\"* make|strong=\"H2729\"* them|strong=\"H1961\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5002\"* fortress|strong=\"H4013\"* shall|strong=\"H3068\"* cease|strong=\"H7673\"* from|strong=\"H3478\"* Ephraim, and|strong=\"H1121\"* the|strong=\"H5002\"* kingdom|strong=\"H4467\"* from|strong=\"H3478\"* Damascus|strong=\"H1834\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* remnant|strong=\"H7605\"* of|strong=\"H1121\"* Syria. They|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H5002\"* glory|strong=\"H3519\"* of|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "“It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3117\"* glory|strong=\"H3519\"* of|strong=\"H3117\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* be|strong=\"H1961\"* made|strong=\"H1961\"* thin|strong=\"H1809\"*, and|strong=\"H3117\"* the|strong=\"H3117\"* fatness|strong=\"H4924\"* of|strong=\"H3117\"* his|strong=\"H1961\"* flesh|strong=\"H1320\"* will|strong=\"H1961\"* become|strong=\"H1961\"* lean|strong=\"H7329\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* the|strong=\"H1961\"* harvester gathers the|strong=\"H1961\"* wheat, and|strong=\"H1961\"* his|strong=\"H1961\"* arm|strong=\"H2220\"* reaps the|strong=\"H1961\"* grain|strong=\"H7054\"*. Yes, it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* one|strong=\"H1961\"* gleans|strong=\"H7114\"* grain|strong=\"H7054\"* in|strong=\"H1961\"* the|strong=\"H1961\"* valley|strong=\"H6010\"* of|strong=\"H6010\"* Rephaim|strong=\"H7497\"*." + }, + { + "verseNum": 6, + "text": "Yet|strong=\"H3068\"* gleanings|strong=\"H5955\"* will|strong=\"H3068\"* be|strong=\"H3068\"* left|strong=\"H7604\"* there|strong=\"H3068\"*, like|strong=\"H3478\"* the|strong=\"H5002\"* shaking|strong=\"H5363\"* of|strong=\"H3068\"* an|strong=\"H3068\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, two|strong=\"H8147\"* or|strong=\"H7218\"* three|strong=\"H7969\"* olives|strong=\"H2132\"* in|strong=\"H3478\"* the|strong=\"H5002\"* top|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5002\"* uppermost bough, four|strong=\"H7969\"* or|strong=\"H7218\"* five|strong=\"H2568\"* in|strong=\"H3478\"* the|strong=\"H5002\"* outermost branches|strong=\"H5585\"* of|strong=\"H3068\"* a|strong=\"H3068\"* fruitful|strong=\"H6509\"* tree|strong=\"H2132\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H5921\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, people|strong=\"H1931\"* will|strong=\"H3478\"* look|strong=\"H7200\"* to|strong=\"H3478\"* their|strong=\"H7200\"* Maker|strong=\"H6213\"*, and|strong=\"H3478\"* their|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H3478\"* have|strong=\"H5869\"* respect|strong=\"H7200\"* for|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3808\"* will|strong=\"H3027\"* not|strong=\"H3808\"* look|strong=\"H7200\"* to|strong=\"H6213\"* the|strong=\"H7200\"* altars|strong=\"H4196\"*, the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H3027\"* their|strong=\"H7200\"* hands|strong=\"H3027\"*; neither|strong=\"H3808\"* shall|strong=\"H3027\"* they|strong=\"H3808\"* respect|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H4196\"* their|strong=\"H7200\"* fingers have|strong=\"H3027\"* made|strong=\"H6213\"*, either|strong=\"H3808\"* the|strong=\"H7200\"* Asherah poles or|strong=\"H3808\"* the|strong=\"H7200\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, their|strong=\"H6440\"* strong|strong=\"H4581\"* cities|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* forsaken|strong=\"H5800\"* places in|strong=\"H3478\"* the|strong=\"H6440\"* woods and|strong=\"H1121\"* on|strong=\"H3117\"* the|strong=\"H6440\"* mountain top, which|strong=\"H1931\"* were|strong=\"H3478\"* forsaken|strong=\"H5800\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; and|strong=\"H1121\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* forgotten|strong=\"H7911\"* the|strong=\"H5921\"* God|strong=\"H6697\"* of|strong=\"H5921\"* your|strong=\"H5921\"* salvation|strong=\"H3468\"*, and|strong=\"H6697\"* have|strong=\"H3588\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H5921\"* rock|strong=\"H6697\"* of|strong=\"H5921\"* your|strong=\"H5921\"* strength|strong=\"H4581\"*. Therefore|strong=\"H3651\"* you|strong=\"H3588\"* plant|strong=\"H5193\"* pleasant|strong=\"H5282\"* plants|strong=\"H5194\"*, and|strong=\"H6697\"* set|strong=\"H2232\"* out|strong=\"H5921\"* foreign|strong=\"H2114\"* seedlings." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2470\"* planting|strong=\"H2233\"*, you|strong=\"H3117\"* hedge it|strong=\"H1242\"* in|strong=\"H3117\"*. In|strong=\"H3117\"* the|strong=\"H3117\"* morning|strong=\"H1242\"*, you|strong=\"H3117\"* make|strong=\"H2470\"* your|strong=\"H2470\"* seed|strong=\"H2233\"* blossom|strong=\"H6524\"*, but|strong=\"H3117\"* the|strong=\"H3117\"* harvest|strong=\"H7105\"* flees away|strong=\"H5067\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* grief|strong=\"H2470\"* and|strong=\"H3117\"* of|strong=\"H3117\"* desperate sorrow|strong=\"H3511\"*." + }, + { + "verseNum": 12, + "text": "Ah|strong=\"H1945\"*, the|strong=\"H5971\"* uproar|strong=\"H1993\"* of|strong=\"H4325\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* roar|strong=\"H1993\"* like|strong=\"H1993\"* the|strong=\"H5971\"* roaring|strong=\"H7588\"* of|strong=\"H4325\"* the|strong=\"H5971\"* seas|strong=\"H3220\"*; and|strong=\"H5971\"* the|strong=\"H5971\"* rushing|strong=\"H7588\"* of|strong=\"H4325\"* nations|strong=\"H5971\"* that|strong=\"H5971\"* rush|strong=\"H7582\"* like|strong=\"H1993\"* the|strong=\"H5971\"* rushing|strong=\"H7588\"* of|strong=\"H4325\"* mighty|strong=\"H3524\"* waters|strong=\"H4325\"*!" + }, + { + "verseNum": 13, + "text": "The|strong=\"H6440\"* nations|strong=\"H3816\"* will|strong=\"H7307\"* rush|strong=\"H7582\"* like|strong=\"H7307\"* the|strong=\"H6440\"* rushing|strong=\"H7588\"* of|strong=\"H2022\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, but|strong=\"H4325\"* he|strong=\"H6440\"* will|strong=\"H7307\"* rebuke|strong=\"H1605\"* them|strong=\"H6440\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* will|strong=\"H7307\"* flee|strong=\"H5127\"* far|strong=\"H4801\"* off|strong=\"H4801\"*, and|strong=\"H6440\"* will|strong=\"H7307\"* be|strong=\"H3816\"* chased|strong=\"H7291\"* like|strong=\"H7307\"* the|strong=\"H6440\"* chaff|strong=\"H4671\"* of|strong=\"H2022\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wind|strong=\"H7307\"*, and|strong=\"H6440\"* like|strong=\"H7307\"* the|strong=\"H6440\"* whirling|strong=\"H1534\"* dust|strong=\"H1534\"* before|strong=\"H6440\"* the|strong=\"H6440\"* storm|strong=\"H5492\"*." + }, + { + "verseNum": 14, + "text": "At|strong=\"H6153\"* evening|strong=\"H6153\"*, behold|strong=\"H2009\"*, terror|strong=\"H1091\"*! Before|strong=\"H2962\"* the|strong=\"H2009\"* morning|strong=\"H1242\"*, they|strong=\"H2962\"* are|strong=\"H1091\"* no|strong=\"H2962\"* more. This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H2009\"* portion|strong=\"H2506\"* of|strong=\"H6256\"* those|strong=\"H2088\"* who|strong=\"H2088\"* plunder|strong=\"H8154\"* us, and|strong=\"H1242\"* the|strong=\"H2009\"* lot|strong=\"H1486\"* of|strong=\"H6256\"* those|strong=\"H2088\"* who|strong=\"H2088\"* rob|strong=\"H8154\"* us." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Ah|strong=\"H1945\"*, the|strong=\"H5676\"* land|strong=\"H5676\"* of|strong=\"H5104\"* the|strong=\"H5676\"* rustling of|strong=\"H5104\"* wings|strong=\"H3671\"*, which is|strong=\"H5104\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* rivers|strong=\"H5104\"* of|strong=\"H5104\"* Ethiopia|strong=\"H3568\"*;" + }, + { + "verseNum": 2, + "text": "that|strong=\"H5971\"* sends|strong=\"H7971\"* ambassadors|strong=\"H4397\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, even|strong=\"H5921\"* in|strong=\"H5921\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* papyrus|strong=\"H1573\"* on|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"*, saying, “Go|strong=\"H3212\"*, you|strong=\"H6440\"* swift|strong=\"H7031\"* messengers|strong=\"H4397\"*, to|strong=\"H3212\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* tall|strong=\"H4900\"* and|strong=\"H7971\"* smooth, to|strong=\"H3212\"* a|strong=\"H3068\"* people|strong=\"H5971\"* awesome|strong=\"H3372\"* from|strong=\"H4480\"* their|strong=\"H6440\"* beginning onward|strong=\"H1973\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* measures out|strong=\"H7971\"* and|strong=\"H7971\"* treads down|strong=\"H7971\"*, whose|strong=\"H1471\"* land|strong=\"H6440\"* the|strong=\"H6440\"* rivers|strong=\"H5104\"* divide!”" + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3605\"* world|strong=\"H8398\"*, and|strong=\"H8085\"* you|strong=\"H3605\"* dwellers|strong=\"H7931\"* on|strong=\"H7200\"* the|strong=\"H3605\"* earth, when|strong=\"H7200\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* is|strong=\"H3605\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* on|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, look|strong=\"H7200\"*! When|strong=\"H7200\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* is|strong=\"H3605\"* blown|strong=\"H8628\"*, listen|strong=\"H8085\"*!" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* still|strong=\"H8252\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* see|strong=\"H5027\"* in|strong=\"H5921\"* my|strong=\"H3068\"* dwelling|strong=\"H4349\"* place|strong=\"H4349\"*, like|strong=\"H3541\"* clear|strong=\"H6703\"* heat|strong=\"H2527\"* in|strong=\"H5921\"* sunshine, like|strong=\"H3541\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"* of|strong=\"H3068\"* dew|strong=\"H2919\"* in|strong=\"H5921\"* the|strong=\"H5921\"* heat|strong=\"H2527\"* of|strong=\"H3068\"* harvest|strong=\"H7105\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* the|strong=\"H6440\"* harvest|strong=\"H7105\"*, when|strong=\"H3588\"* the|strong=\"H6440\"* blossom|strong=\"H6525\"* is|strong=\"H1961\"* over|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* flower|strong=\"H6525\"* becomes|strong=\"H1961\"* a|strong=\"H3068\"* ripening|strong=\"H1580\"* grape|strong=\"H1155\"*, he|strong=\"H3588\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* sprigs|strong=\"H2150\"* with|strong=\"H6440\"* pruning|strong=\"H4211\"* hooks|strong=\"H4211\"*, and|strong=\"H6440\"* he|strong=\"H3588\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* and|strong=\"H6440\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* spreading|strong=\"H5189\"* branches|strong=\"H5189\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H5921\"* will|strong=\"H2022\"* be|strong=\"H2022\"* left|strong=\"H5800\"* together|strong=\"H3162\"* for|strong=\"H5921\"* the|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H5861\"* of|strong=\"H2022\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H2022\"* for|strong=\"H5921\"* the|strong=\"H3605\"* animals of|strong=\"H2022\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H5861\"* will|strong=\"H2022\"* eat them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* summer|strong=\"H6972\"*, and|strong=\"H2022\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals of|strong=\"H2022\"* the|strong=\"H3605\"* earth will|strong=\"H2022\"* eat them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H3605\"* winter|strong=\"H2778\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H3068\"* that|strong=\"H5971\"* time|strong=\"H6256\"*, a|strong=\"H3068\"* present|strong=\"H7862\"* will|strong=\"H3068\"* be|strong=\"H3068\"* brought|strong=\"H2986\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* from|strong=\"H4480\"* a|strong=\"H3068\"* people|strong=\"H5971\"* tall|strong=\"H4900\"* and|strong=\"H3068\"* smooth, even|strong=\"H3068\"* from|strong=\"H4480\"* a|strong=\"H3068\"* people|strong=\"H5971\"* awesome|strong=\"H3372\"* from|strong=\"H4480\"* their|strong=\"H3068\"* beginning onward|strong=\"H1973\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* measures out|strong=\"H4480\"* and|strong=\"H3068\"* treads down|strong=\"H4001\"*, whose|strong=\"H1471\"* land|strong=\"H4725\"* the|strong=\"H3068\"* rivers|strong=\"H5104\"* divide, to|strong=\"H3068\"* the|strong=\"H3068\"* place|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* burden|strong=\"H4853\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* stir up|strong=\"H5526\"* the|strong=\"H5526\"* Egyptians|strong=\"H4714\"* against|strong=\"H3898\"* the|strong=\"H5526\"* Egyptians|strong=\"H4714\"*, and|strong=\"H5892\"* they|strong=\"H5892\"* will|strong=\"H4714\"* fight|strong=\"H3898\"* everyone against|strong=\"H3898\"* his|strong=\"H5526\"* brother|strong=\"H7453\"*, and|strong=\"H5892\"* everyone against|strong=\"H3898\"* his|strong=\"H5526\"* neighbor|strong=\"H7453\"*; city|strong=\"H5892\"* against|strong=\"H3898\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* kingdom|strong=\"H4467\"* against|strong=\"H3898\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H1875\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H1875\"* Egyptians|strong=\"H4714\"* will|strong=\"H4714\"* fail|strong=\"H1238\"* within|strong=\"H7130\"* them|strong=\"H7307\"*. I|strong=\"H4714\"* will|strong=\"H4714\"* destroy|strong=\"H1104\"* their|strong=\"H7130\"* counsel|strong=\"H6098\"*. They|strong=\"H7130\"* will|strong=\"H4714\"* seek|strong=\"H1875\"* the|strong=\"H1875\"* idols, the|strong=\"H1875\"* charmers, those who|strong=\"H3049\"* have|strong=\"H4714\"* familiar spirits|strong=\"H7307\"*, and|strong=\"H4714\"* the|strong=\"H1875\"* wizards|strong=\"H3049\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H4714\"* will|strong=\"H3068\"* give|strong=\"H7186\"* over|strong=\"H3027\"* the|strong=\"H5002\"* Egyptians|strong=\"H4714\"* into|strong=\"H4714\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* a|strong=\"H3068\"* cruel|strong=\"H7186\"* lord|strong=\"H3068\"*. A|strong=\"H3068\"* fierce|strong=\"H5794\"* king|strong=\"H4428\"* will|strong=\"H3068\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* them|strong=\"H3027\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3001\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* fail|strong=\"H5405\"* from|strong=\"H4325\"* the|strong=\"H3001\"* sea|strong=\"H3220\"*, and|strong=\"H4325\"* the|strong=\"H3001\"* river|strong=\"H5104\"* will|strong=\"H4325\"* be|strong=\"H3220\"* wasted|strong=\"H2717\"* and|strong=\"H4325\"* become|strong=\"H2717\"* dry|strong=\"H3001\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2717\"* rivers|strong=\"H5104\"* will|strong=\"H2975\"* become|strong=\"H2717\"* foul. The|strong=\"H2717\"* streams|strong=\"H5104\"* of|strong=\"H5104\"* Egypt|strong=\"H4693\"* will|strong=\"H2975\"* be diminished and|strong=\"H7070\"* dried|strong=\"H2717\"* up|strong=\"H2717\"*. The|strong=\"H2717\"* reeds|strong=\"H7070\"* and|strong=\"H7070\"* flags|strong=\"H5488\"* will|strong=\"H2975\"* wither|strong=\"H2717\"* away|strong=\"H2186\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* meadows by|strong=\"H5921\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* brink of|strong=\"H6310\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, and|strong=\"H6310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* sown|strong=\"H4218\"* fields|strong=\"H4218\"* of|strong=\"H6310\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"*, will|strong=\"H2975\"* become|strong=\"H3001\"* dry|strong=\"H3001\"*, be|strong=\"H6310\"* driven|strong=\"H5086\"* away|strong=\"H5086\"*, and|strong=\"H6310\"* be|strong=\"H6310\"* no|strong=\"H3605\"* more|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* fishermen will|strong=\"H4325\"* lament, and|strong=\"H6440\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* fish in|strong=\"H5921\"* the|strong=\"H3605\"* Nile|strong=\"H2975\"* will|strong=\"H4325\"* mourn|strong=\"H5921\"*, and|strong=\"H6440\"* those|strong=\"H3605\"* who|strong=\"H3605\"* spread|strong=\"H6566\"* nets|strong=\"H4365\"* on|strong=\"H5921\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* languish." + }, + { + "verseNum": 9, + "text": "Moreover those who work|strong=\"H5647\"* in|strong=\"H5647\"* combed|strong=\"H8305\"* flax|strong=\"H6593\"*, and|strong=\"H5647\"* those who weave white cloth, will|strong=\"H5647\"* be|strong=\"H5647\"* confounded." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* pillars|strong=\"H8356\"* will|strong=\"H1961\"* be|strong=\"H1961\"* broken|strong=\"H1792\"* in|strong=\"H6213\"* pieces|strong=\"H1792\"*. All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* work|strong=\"H6213\"* for|strong=\"H6213\"* hire will|strong=\"H1961\"* be|strong=\"H1961\"* grieved in|strong=\"H6213\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1197\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Zoan|strong=\"H6814\"* are|strong=\"H1121\"* utterly|strong=\"H1197\"* foolish. The|strong=\"H1197\"* counsel|strong=\"H6098\"* of|strong=\"H1121\"* the|strong=\"H1197\"* wisest|strong=\"H2450\"* counselors of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* has|strong=\"H4428\"* become|strong=\"H1197\"* stupid|strong=\"H1197\"*. How do you|strong=\"H4428\"* say to|strong=\"H1121\"* Pharaoh|strong=\"H6547\"*, “I|strong=\"H1121\"* am the|strong=\"H1197\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1197\"* wise|strong=\"H2450\"*, the|strong=\"H1197\"* son|strong=\"H1121\"* of|strong=\"H1121\"* ancient|strong=\"H6924\"* kings|strong=\"H4428\"*”?" + }, + { + "verseNum": 12, + "text": "Where|strong=\"H4100\"* then|strong=\"H3045\"* are|strong=\"H4100\"* your|strong=\"H3068\"* wise|strong=\"H2450\"* men|strong=\"H2450\"*? Let|strong=\"H4994\"* them|strong=\"H5921\"* tell|strong=\"H5046\"* you|strong=\"H5921\"* now|strong=\"H4994\"*; and|strong=\"H3068\"* let|strong=\"H4994\"* them|strong=\"H5921\"* know|strong=\"H3045\"* what|strong=\"H4100\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* purposed|strong=\"H3289\"* concerning|strong=\"H5921\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H7626\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Zoan|strong=\"H6814\"* have|strong=\"H8269\"* become|strong=\"H2973\"* fools|strong=\"H2973\"*. The|strong=\"H7626\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Memphis|strong=\"H5297\"* are|strong=\"H4714\"* deceived|strong=\"H5377\"*. They have|strong=\"H8269\"* caused Egypt|strong=\"H4714\"* to|strong=\"H4714\"* go|strong=\"H8582\"* astray|strong=\"H8582\"*, those who|strong=\"H8269\"* are|strong=\"H4714\"* the|strong=\"H7626\"* cornerstone|strong=\"H6438\"* of|strong=\"H8269\"* her|strong=\"H8269\"* tribes|strong=\"H7626\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* mixed|strong=\"H4537\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* perverseness in|strong=\"H3068\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H3068\"* her|strong=\"H3605\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* have|strong=\"H3068\"* caused Egypt|strong=\"H4714\"* to|strong=\"H3068\"* go|strong=\"H8582\"* astray|strong=\"H8582\"* in|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* its|strong=\"H3605\"* works|strong=\"H4639\"*, like|strong=\"H7307\"* a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"* staggers|strong=\"H8582\"* in|strong=\"H3068\"* his|strong=\"H3605\"* vomit|strong=\"H6892\"*." + }, + { + "verseNum": 15, + "text": "Neither|strong=\"H3808\"* shall|strong=\"H4714\"* there|strong=\"H1961\"* be|strong=\"H1961\"* any|strong=\"H6213\"* work|strong=\"H4639\"* for|strong=\"H6213\"* Egypt|strong=\"H4714\"*, which head|strong=\"H7218\"* or|strong=\"H3808\"* tail|strong=\"H2180\"*, palm|strong=\"H3712\"* branch|strong=\"H3712\"* or|strong=\"H3808\"* rush, may|strong=\"H1961\"* do|strong=\"H6213\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H6440\"* Egyptians|strong=\"H4714\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* women. They|strong=\"H3117\"* will|strong=\"H3068\"* tremble|strong=\"H2729\"* and|strong=\"H3068\"* fear|strong=\"H6342\"* because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H6440\"* shaking|strong=\"H8573\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*’s hand|strong=\"H3027\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* shakes|strong=\"H5130\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* terror|strong=\"H2283\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*. Everyone|strong=\"H3605\"* to|strong=\"H3068\"* whom|strong=\"H6440\"* mention|strong=\"H2142\"* is|strong=\"H3068\"* made|strong=\"H1961\"* of|strong=\"H3068\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* afraid|strong=\"H6342\"*, because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* plans|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* determines against|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* five|strong=\"H2568\"* cities|strong=\"H5892\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* that|strong=\"H3117\"* speak|strong=\"H1696\"* the|strong=\"H3068\"* language|strong=\"H8193\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*, and|strong=\"H3068\"* swear|strong=\"H7650\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. One|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* called “The|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H3068\"* destruction|strong=\"H2041\"*.”" + }, + { + "verseNum": 19, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* altar|strong=\"H4196\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H8432\"* land|strong=\"H1366\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* pillar|strong=\"H4676\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* at|strong=\"H3068\"* its|strong=\"H1961\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign and|strong=\"H3068\"* for|strong=\"H3588\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* cry|strong=\"H6817\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* oppressors|strong=\"H3905\"*, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* them|strong=\"H7971\"* a|strong=\"H3068\"* savior|strong=\"H3467\"* and|strong=\"H3068\"* a|strong=\"H3068\"* defender, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* known|strong=\"H3045\"* to|strong=\"H3068\"* Egypt|strong=\"H4714\"*, and|strong=\"H3068\"* the|strong=\"H5647\"* Egyptians|strong=\"H4714\"* will|strong=\"H3068\"* know|strong=\"H3045\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* that|strong=\"H3045\"* day|strong=\"H3117\"*. Yes, they|strong=\"H3117\"* will|strong=\"H3068\"* worship|strong=\"H5647\"* with|strong=\"H3068\"* sacrifice|strong=\"H2077\"* and|strong=\"H3068\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* vow|strong=\"H5088\"* a|strong=\"H3068\"* vow|strong=\"H5088\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* perform|strong=\"H5647\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* Egypt|strong=\"H4714\"*, striking|strong=\"H5062\"* and|strong=\"H3068\"* healing|strong=\"H7495\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H5704\"* will|strong=\"H3068\"* be|strong=\"H3068\"* entreated|strong=\"H6279\"* by|strong=\"H3068\"* them|strong=\"H7725\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* them|strong=\"H7725\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* highway|strong=\"H4546\"* out of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H1961\"* Assyria, and|strong=\"H3117\"* the|strong=\"H5647\"* Assyrian shall|strong=\"H3117\"* come|strong=\"H1961\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, and|strong=\"H3117\"* the|strong=\"H5647\"* Egyptian|strong=\"H4714\"* into|strong=\"H4714\"* Assyria; and|strong=\"H3117\"* the|strong=\"H5647\"* Egyptians|strong=\"H4714\"* will|strong=\"H1961\"* worship|strong=\"H5647\"* with|strong=\"H3117\"* the|strong=\"H5647\"* Assyrians." + }, + { + "verseNum": 24, + "text": "In|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Israel|strong=\"H3478\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H3117\"* third|strong=\"H7992\"* with|strong=\"H3117\"* Egypt|strong=\"H4714\"* and|strong=\"H3478\"* with|strong=\"H3117\"* Assyria, a|strong=\"H3068\"* blessing|strong=\"H1293\"* within|strong=\"H7130\"* the|strong=\"H3117\"* earth;" + }, + { + "verseNum": 25, + "text": "because|strong=\"H3027\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* blessed|strong=\"H1288\"* them|strong=\"H3027\"*, saying, “Blessed|strong=\"H1288\"* be|strong=\"H3027\"* Egypt|strong=\"H4714\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, Assyria the|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H3068\"* my|strong=\"H3068\"* hands|strong=\"H3027\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* my|strong=\"H3068\"* inheritance|strong=\"H5159\"*.”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7971\"* year|strong=\"H8141\"* that|strong=\"H4428\"* Tartan|strong=\"H8661\"* came|strong=\"H4428\"* to|strong=\"H7971\"* Ashdod, when|strong=\"H7971\"* Sargon|strong=\"H5623\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* he|strong=\"H8141\"* fought|strong=\"H3898\"* against|strong=\"H3898\"* Ashdod and|strong=\"H7971\"* took|strong=\"H3920\"* it|strong=\"H7971\"*;" + }, + { + "verseNum": 2, + "text": "at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, saying|strong=\"H1696\"*, “Go|strong=\"H1980\"*, and|strong=\"H1121\"* loosen|strong=\"H6605\"* the|strong=\"H5921\"* sackcloth|strong=\"H8242\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, and|strong=\"H1121\"* take|strong=\"H1980\"* your|strong=\"H3068\"* sandals|strong=\"H5275\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* feet|strong=\"H7272\"*.” He|strong=\"H1931\"* did|strong=\"H6213\"* so|strong=\"H3651\"*, walking|strong=\"H1980\"* naked|strong=\"H6174\"* and|strong=\"H1121\"* barefoot|strong=\"H3182\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* said, “As|strong=\"H3068\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* Isaiah|strong=\"H3470\"* has|strong=\"H3068\"* walked|strong=\"H1980\"* naked|strong=\"H6174\"* and|strong=\"H1980\"* barefoot|strong=\"H3182\"* three|strong=\"H7969\"* years|strong=\"H8141\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* and|strong=\"H1980\"* a|strong=\"H3068\"* wonder|strong=\"H4159\"* concerning|strong=\"H5921\"* Egypt|strong=\"H4714\"* and|strong=\"H1980\"* concerning|strong=\"H5921\"* Ethiopia|strong=\"H3568\"*," + }, + { + "verseNum": 4, + "text": "so|strong=\"H3651\"* the|strong=\"H3651\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria will|strong=\"H4428\"* lead|strong=\"H5090\"* away|strong=\"H5090\"* the|strong=\"H3651\"* captives|strong=\"H7628\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* and|strong=\"H4428\"* the|strong=\"H3651\"* exiles|strong=\"H1546\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, young|strong=\"H5288\"* and|strong=\"H4428\"* old|strong=\"H2205\"*, naked|strong=\"H6174\"* and|strong=\"H4428\"* barefoot|strong=\"H3182\"*, and|strong=\"H4428\"* with|strong=\"H4714\"* buttocks|strong=\"H8357\"* uncovered|strong=\"H2834\"*, to|strong=\"H4714\"* the|strong=\"H3651\"* shame|strong=\"H6172\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 5, + "text": "They will|strong=\"H4714\"* be|strong=\"H4480\"* dismayed|strong=\"H2865\"* and|strong=\"H4714\"* confounded, because|strong=\"H4480\"* of|strong=\"H4480\"* Ethiopia|strong=\"H3568\"* their|strong=\"H4480\"* expectation|strong=\"H4007\"*, and|strong=\"H4714\"* of|strong=\"H4480\"* Egypt|strong=\"H4714\"* their|strong=\"H4480\"* glory|strong=\"H8597\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* this|strong=\"H2088\"* coast land|strong=\"H6440\"* will|strong=\"H4428\"* say in|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, ‘Behold|strong=\"H2009\"*, this|strong=\"H2088\"* is|strong=\"H2088\"* our|strong=\"H5337\"* expectation|strong=\"H4007\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* fled|strong=\"H5127\"* for|strong=\"H6440\"* help|strong=\"H5833\"* to|strong=\"H6440\"* be|strong=\"H3117\"* delivered|strong=\"H5337\"* from|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. And|strong=\"H4428\"* we|strong=\"H3068\"*, how|strong=\"H2009\"* will|strong=\"H4428\"* we|strong=\"H3068\"* escape|strong=\"H4422\"*?’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3372\"* burden|strong=\"H4853\"* of|strong=\"H4057\"* the|strong=\"H3372\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* the|strong=\"H3372\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* grievous|strong=\"H7186\"* vision|strong=\"H2380\"* is|strong=\"H3605\"* declared|strong=\"H5046\"* to|strong=\"H5927\"* me|strong=\"H5046\"*. The|strong=\"H3605\"* treacherous man|strong=\"H3605\"* deals treacherously, and|strong=\"H5927\"* the|strong=\"H3605\"* destroyer|strong=\"H7703\"* destroys|strong=\"H7703\"*. Go|strong=\"H5927\"* up|strong=\"H5927\"*, Elam|strong=\"H5867\"*; attack|strong=\"H5927\"*! I|strong=\"H3605\"* have|strong=\"H3605\"* stopped|strong=\"H7673\"* all|strong=\"H3605\"* of|strong=\"H3605\"* Media|strong=\"H4074\"*’s sighing." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H8085\"* thighs are|strong=\"H4390\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* anguish|strong=\"H2479\"*. Pains|strong=\"H6735\"* have|strong=\"H7200\"* seized me|strong=\"H7200\"*, like|strong=\"H3651\"* the|strong=\"H5921\"* pains|strong=\"H6735\"* of|strong=\"H3205\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H5921\"* labor|strong=\"H3205\"*. I|strong=\"H5921\"* am in|strong=\"H5921\"* so|strong=\"H3651\"* much|strong=\"H5921\"* pain|strong=\"H2479\"* that|strong=\"H7200\"* I|strong=\"H5921\"* can|strong=\"H7200\"*’t hear|strong=\"H8085\"*. I|strong=\"H5921\"* am so|strong=\"H3651\"* dismayed that|strong=\"H7200\"* I|strong=\"H5921\"* can|strong=\"H7200\"*’t see|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"H7760\"* heart|strong=\"H3824\"* flutters. Horror|strong=\"H6427\"* has|strong=\"H6427\"* frightened|strong=\"H1204\"* me|strong=\"H7760\"*. The|strong=\"H7760\"* twilight|strong=\"H5399\"* that|strong=\"H5399\"* I|strong=\"H7760\"* desired|strong=\"H2837\"* has|strong=\"H6427\"* been turned|strong=\"H7760\"* into|strong=\"H7760\"* trembling|strong=\"H2731\"* for|strong=\"H8582\"* me|strong=\"H7760\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H4043\"* prepare|strong=\"H6186\"* the|strong=\"H6965\"* table|strong=\"H7979\"*. They|strong=\"H4043\"* set|strong=\"H6965\"* the|strong=\"H6965\"* watch. They|strong=\"H4043\"* eat. They|strong=\"H4043\"* drink|strong=\"H8354\"*. Rise|strong=\"H6965\"* up|strong=\"H6965\"*, you|strong=\"H4886\"* princes|strong=\"H8269\"*, oil|strong=\"H4886\"* the|strong=\"H6965\"* shield|strong=\"H4043\"*!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H7200\"* Lord said to|strong=\"H3212\"* me|strong=\"H7200\"*, “Go|strong=\"H3212\"*, set|strong=\"H5975\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"*. Let|strong=\"H5046\"* him|strong=\"H5046\"* declare|strong=\"H5046\"* what|strong=\"H3541\"* he|strong=\"H3588\"* sees|strong=\"H7200\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H7200\"* he|strong=\"H7200\"* sees|strong=\"H7200\"* a|strong=\"H3068\"* troop, horsemen|strong=\"H6571\"* in|strong=\"H7227\"* pairs|strong=\"H6776\"*, a|strong=\"H3068\"* troop of|strong=\"H7393\"* donkeys|strong=\"H2543\"*, a|strong=\"H3068\"* troop of|strong=\"H7393\"* camels|strong=\"H1581\"*, he|strong=\"H7200\"* shall|strong=\"H7227\"* listen|strong=\"H7181\"* diligently|strong=\"H7182\"* with|strong=\"H7200\"* great|strong=\"H7227\"* attentiveness.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3605\"* cried|strong=\"H7121\"* like|strong=\"H5921\"* a|strong=\"H3068\"* lion: “Lord, I|strong=\"H5921\"* stand|strong=\"H5975\"* continually|strong=\"H8548\"* on|strong=\"H5921\"* the|strong=\"H3605\"* watchtower|strong=\"H4707\"* in|strong=\"H5921\"* the|strong=\"H3605\"* daytime|strong=\"H3119\"*, and|strong=\"H3119\"* every|strong=\"H3605\"* night|strong=\"H3915\"* I|strong=\"H5921\"* stay|strong=\"H5975\"* at|strong=\"H5921\"* my|strong=\"H3605\"* post|strong=\"H4931\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, here|strong=\"H2009\"* comes a|strong=\"H3068\"* troop of|strong=\"H3605\"* men|strong=\"H3605\"*, horsemen|strong=\"H6571\"* in|strong=\"H7665\"* pairs|strong=\"H6776\"*.” He|strong=\"H3605\"* answered|strong=\"H6030\"*, “Fallen|strong=\"H5307\"*, fallen|strong=\"H5307\"* is|strong=\"H2088\"* Babylon; and|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3605\"* her|strong=\"H3605\"* gods are|strong=\"H7393\"* broken|strong=\"H7665\"* to|strong=\"H6030\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5046\"* are|strong=\"H1121\"* my|strong=\"H8085\"* threshing|strong=\"H1637\"*, and|strong=\"H1121\"* the|strong=\"H8085\"* grain of|strong=\"H1121\"* my|strong=\"H8085\"* floor|strong=\"H1637\"*!” That|strong=\"H8085\"* which|strong=\"H3068\"* I|strong=\"H8085\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* from|strong=\"H3478\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, I|strong=\"H8085\"* have|strong=\"H3068\"* declared|strong=\"H5046\"* to|strong=\"H3478\"* you|strong=\"H5046\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H8104\"* burden|strong=\"H4853\"* of|strong=\"H4853\"* Dumah|strong=\"H1746\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8104\"* watchman|strong=\"H8104\"* said, “The|strong=\"H8104\"* morning|strong=\"H1242\"* comes, and|strong=\"H7725\"* also|strong=\"H1571\"* the|strong=\"H8104\"* night|strong=\"H3915\"*. If you|strong=\"H7725\"* will|strong=\"H1571\"* inquire|strong=\"H1158\"*, inquire|strong=\"H1158\"*. Come|strong=\"H7725\"* back|strong=\"H7725\"* again|strong=\"H7725\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3885\"* burden|strong=\"H4853\"* on|strong=\"H4853\"* Arabia|strong=\"H6152\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5074\"* brought water|strong=\"H4325\"* to|strong=\"H4325\"* him|strong=\"H7125\"* who|strong=\"H3427\"* was|strong=\"H4325\"* thirsty|strong=\"H6771\"*. The|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3427\"* land of|strong=\"H3427\"* Tema|strong=\"H8485\"* met|strong=\"H7125\"* the|strong=\"H3427\"* fugitives|strong=\"H5074\"* with|strong=\"H3427\"* their|strong=\"H3427\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* fled|strong=\"H5074\"* away|strong=\"H5074\"* from|strong=\"H6440\"* the|strong=\"H6440\"* swords|strong=\"H2719\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* drawn|strong=\"H5203\"* sword|strong=\"H2719\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* bent|strong=\"H1869\"* bow|strong=\"H7198\"*, and|strong=\"H6440\"* from|strong=\"H6440\"* the|strong=\"H6440\"* heat of|strong=\"H6440\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord said to|strong=\"H8141\"* me|strong=\"H3588\"*, “Within|strong=\"H5750\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* worker|strong=\"H7916\"* bound by|strong=\"H8141\"* contract would|strong=\"H7916\"* count|strong=\"H8141\"* it|strong=\"H3588\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H8141\"* Kedar|strong=\"H6938\"* will|strong=\"H5750\"* fail|strong=\"H3615\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H1121\"* the|strong=\"H3588\"* residue|strong=\"H7605\"* of|strong=\"H1121\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H1121\"* the|strong=\"H3588\"* archers|strong=\"H7198\"*, the|strong=\"H3588\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Kedar|strong=\"H6938\"*, will|strong=\"H3068\"* be|strong=\"H3068\"* few|strong=\"H4557\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* burden|strong=\"H4853\"* of|strong=\"H1516\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* vision|strong=\"H2384\"*." + }, + { + "verseNum": 2, + "text": "You|strong=\"H3808\"* that|strong=\"H5892\"* are|strong=\"H5892\"* full|strong=\"H4395\"* of|strong=\"H5892\"* shouting, a|strong=\"H3068\"* tumultuous|strong=\"H1993\"* city|strong=\"H5892\"*, a|strong=\"H3068\"* joyous|strong=\"H5947\"* town|strong=\"H7151\"*, your|strong=\"H3808\"* slain|strong=\"H2491\"* are|strong=\"H5892\"* not|strong=\"H3808\"* slain|strong=\"H2491\"* with|strong=\"H5892\"* the|strong=\"H4191\"* sword|strong=\"H2719\"*, neither|strong=\"H3808\"* are|strong=\"H5892\"* they|strong=\"H3808\"* dead|strong=\"H4191\"* in|strong=\"H4191\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* rulers|strong=\"H7101\"* fled|strong=\"H1272\"* away|strong=\"H1272\"* together|strong=\"H3162\"*. They|strong=\"H3605\"* were|strong=\"H4672\"* bound by|strong=\"H3605\"* the|strong=\"H3605\"* archers|strong=\"H7198\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H4672\"* found|strong=\"H4672\"* by|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H4672\"* bound together|strong=\"H3162\"*. They|strong=\"H3605\"* fled|strong=\"H1272\"* far|strong=\"H7350\"* away|strong=\"H1272\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* said|strong=\"H3651\"*, “Look|strong=\"H8159\"* away|strong=\"H4480\"* from|strong=\"H4480\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* weep|strong=\"H1065\"* bitterly|strong=\"H4843\"*. Don’t labor to|strong=\"H5921\"* comfort|strong=\"H5162\"* me|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* destruction|strong=\"H7701\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* confusion|strong=\"H4103\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* treading down|strong=\"H4001\"*, and|strong=\"H3117\"* of|strong=\"H3117\"* perplexity|strong=\"H3998\"* from|strong=\"H3117\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*, in|strong=\"H3117\"* the|strong=\"H3588\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* vision|strong=\"H2384\"*, a|strong=\"H3068\"* breaking|strong=\"H6979\"* down|strong=\"H4001\"* of|strong=\"H3117\"* the|strong=\"H3588\"* walls|strong=\"H7023\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* crying|strong=\"H7771\"* to|strong=\"H3117\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"*.”" + }, + { + "verseNum": 6, + "text": "Elam|strong=\"H5867\"* carried|strong=\"H5375\"* his|strong=\"H5375\"* quiver, with|strong=\"H5375\"* chariots|strong=\"H7393\"* of|strong=\"H7393\"* men|strong=\"H6168\"* and|strong=\"H7393\"* horsemen|strong=\"H6571\"*; and|strong=\"H7393\"* Kir|strong=\"H7024\"* uncovered|strong=\"H6168\"* the|strong=\"H5375\"* shield|strong=\"H4043\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1961\"* choicest|strong=\"H4005\"* valleys|strong=\"H6010\"* were|strong=\"H1961\"* full|strong=\"H4390\"* of|strong=\"H8179\"* chariots|strong=\"H7393\"*, and|strong=\"H7393\"* the|strong=\"H4390\"* horsemen|strong=\"H6571\"* set|strong=\"H7896\"* themselves|strong=\"H4390\"* in|strong=\"H1961\"* array|strong=\"H7896\"* at|strong=\"H1961\"* the|strong=\"H4390\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* took|strong=\"H3063\"* away|strong=\"H1540\"* the|strong=\"H3117\"* covering|strong=\"H4539\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* you|strong=\"H3117\"* looked|strong=\"H5027\"* in|strong=\"H1004\"* that|strong=\"H3117\"* day|strong=\"H3117\"* to|strong=\"H3117\"* the|strong=\"H3117\"* armor in|strong=\"H1004\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3117\"* forest|strong=\"H3293\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* breaches|strong=\"H1233\"* of|strong=\"H5892\"* David|strong=\"H1732\"*’s city|strong=\"H5892\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H4325\"* many|strong=\"H7235\"*; and|strong=\"H5892\"* you|strong=\"H3588\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* the|strong=\"H7200\"* waters|strong=\"H4325\"* of|strong=\"H5892\"* the|strong=\"H7200\"* lower|strong=\"H8481\"* pool|strong=\"H1295\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H5422\"* counted|strong=\"H5608\"* the|strong=\"H5422\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1004\"* you|strong=\"H5422\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H5422\"* houses|strong=\"H1004\"* to|strong=\"H3389\"* fortify|strong=\"H1219\"* the|strong=\"H5422\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* a|strong=\"H3068\"* reservoir|strong=\"H4724\"* between the|strong=\"H7200\"* two|strong=\"H6213\"* walls|strong=\"H2346\"* for|strong=\"H6213\"* the|strong=\"H7200\"* water|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H7200\"* old|strong=\"H3465\"* pool|strong=\"H1295\"*. But|strong=\"H3808\"* you|strong=\"H6213\"* didn’t look|strong=\"H7200\"* to|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H7350\"* had|strong=\"H4325\"* done|strong=\"H6213\"* this|strong=\"H6213\"*, neither|strong=\"H3808\"* did|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H7200\"* respect|strong=\"H7200\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H7350\"* planned|strong=\"H3335\"* it|strong=\"H6213\"* long|strong=\"H7350\"* ago|strong=\"H7350\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, the|strong=\"H3069\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*, called|strong=\"H7121\"* to|strong=\"H3117\"* weeping|strong=\"H1065\"*, to|strong=\"H3117\"* mourning|strong=\"H4553\"*, to|strong=\"H3117\"* baldness|strong=\"H7144\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* dressing in|strong=\"H3117\"* sackcloth|strong=\"H8242\"*;" + }, + { + "verseNum": 13, + "text": "and|strong=\"H6629\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* is|strong=\"H2009\"* joy|strong=\"H8057\"* and|strong=\"H6629\"* gladness|strong=\"H8057\"*, killing|strong=\"H2026\"* cattle|strong=\"H1241\"* and|strong=\"H6629\"* killing|strong=\"H2026\"* sheep|strong=\"H6629\"*, eating meat|strong=\"H1320\"* and|strong=\"H6629\"* drinking|strong=\"H8354\"* wine|strong=\"H3196\"*: “Let’s eat and|strong=\"H6629\"* drink|strong=\"H8354\"*, for|strong=\"H3588\"* tomorrow|strong=\"H4279\"* we|strong=\"H3068\"* will|strong=\"H1320\"* die|strong=\"H4191\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* revealed|strong=\"H1540\"* himself|strong=\"H1540\"* in|strong=\"H3068\"* my|strong=\"H3068\"* ears, “Surely|strong=\"H4191\"* this|strong=\"H2088\"* iniquity|strong=\"H5771\"* will|strong=\"H3068\"* not|strong=\"H2088\"* be|strong=\"H4191\"* forgiven|strong=\"H3722\"* you|strong=\"H5704\"* until|strong=\"H5704\"* you|strong=\"H5704\"* die|strong=\"H4191\"*,” says the|strong=\"H3069\"* Lord|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Go|strong=\"H3212\"*, get|strong=\"H3212\"* yourself|strong=\"H5921\"* to|strong=\"H3212\"* this|strong=\"H2088\"* treasurer|strong=\"H5532\"*, even|strong=\"H5921\"* to|strong=\"H3212\"* Shebna|strong=\"H7644\"*, who|strong=\"H2088\"* is|strong=\"H2088\"* over|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* say," + }, + { + "verseNum": 16, + "text": "‘What|strong=\"H4100\"* are|strong=\"H4100\"* you|strong=\"H3588\"* doing here|strong=\"H6311\"*? Who|strong=\"H4310\"* has|strong=\"H4310\"* you|strong=\"H3588\"* here|strong=\"H6311\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* dug out|strong=\"H2672\"* a|strong=\"H3068\"* tomb|strong=\"H6913\"* here|strong=\"H6311\"*?’ Cutting himself out|strong=\"H2672\"* a|strong=\"H3068\"* tomb|strong=\"H6913\"* on|strong=\"H6913\"* high|strong=\"H4791\"*, chiseling a|strong=\"H3068\"* habitation|strong=\"H4908\"* for|strong=\"H3588\"* himself in|strong=\"H6913\"* the|strong=\"H3588\"* rock|strong=\"H5553\"*!”" + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* overcome you|strong=\"H2904\"* and|strong=\"H3068\"* hurl|strong=\"H2904\"* you|strong=\"H2904\"* away|strong=\"H2904\"* violently. Yes|strong=\"H2009\"*, he|strong=\"H3068\"* will|strong=\"H3068\"* grasp|strong=\"H5844\"* you|strong=\"H2904\"* firmly|strong=\"H5844\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H8033\"* will|strong=\"H1004\"* surely|strong=\"H4191\"* wind you|strong=\"H3027\"* around|strong=\"H3027\"* and|strong=\"H3027\"* around|strong=\"H3027\"*, and|strong=\"H3027\"* throw you|strong=\"H3027\"* like|strong=\"H1004\"* a|strong=\"H3068\"* ball|strong=\"H1754\"* into|strong=\"H3027\"* a|strong=\"H3068\"* large|strong=\"H7342\"* country. There|strong=\"H8033\"* you|strong=\"H3027\"* will|strong=\"H1004\"* die|strong=\"H4191\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* the|strong=\"H3027\"* chariots|strong=\"H4818\"* of|strong=\"H1004\"* your|strong=\"H3027\"* glory|strong=\"H3519\"* will|strong=\"H1004\"* be|strong=\"H4191\"*, you|strong=\"H3027\"* disgrace|strong=\"H7036\"* of|strong=\"H1004\"* your|strong=\"H3027\"* lord’s house|strong=\"H1004\"*." + }, + { + "verseNum": 19, + "text": "I will thrust|strong=\"H1920\"* you|strong=\"H2040\"* from|strong=\"H1920\"* your|strong=\"H2040\"* office|strong=\"H4612\"*. You|strong=\"H2040\"* will be pulled down|strong=\"H2040\"* from|strong=\"H1920\"* your|strong=\"H2040\"* station|strong=\"H4612\"*." + }, + { + "verseNum": 20, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* call|strong=\"H7121\"* my|strong=\"H1961\"* servant|strong=\"H5650\"* Eliakim the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*," + }, + { + "verseNum": 21, + "text": "and|strong=\"H3063\"* I|strong=\"H5414\"* will|strong=\"H1961\"* clothe|strong=\"H3847\"* him|strong=\"H5414\"* with|strong=\"H3847\"* your|strong=\"H5414\"* robe|strong=\"H3801\"*, and|strong=\"H3063\"* strengthen|strong=\"H2388\"* him|strong=\"H5414\"* with|strong=\"H3847\"* your|strong=\"H5414\"* belt. I|strong=\"H5414\"* will|strong=\"H1961\"* commit|strong=\"H5414\"* your|strong=\"H5414\"* government|strong=\"H4475\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*; and|strong=\"H3063\"* he|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* father to|strong=\"H1961\"* the|strong=\"H5414\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* to|strong=\"H1961\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5414\"* will|strong=\"H1004\"* lay|strong=\"H5414\"* the|strong=\"H5921\"* key|strong=\"H4668\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* on|strong=\"H5921\"* his|strong=\"H5414\"* shoulder|strong=\"H7926\"*. He|strong=\"H1004\"* will|strong=\"H1004\"* open|strong=\"H6605\"*, and|strong=\"H1004\"* no|strong=\"H5414\"* one|strong=\"H1004\"* will|strong=\"H1004\"* shut|strong=\"H5462\"*. He|strong=\"H1004\"* will|strong=\"H1004\"* shut|strong=\"H5462\"*, and|strong=\"H1004\"* no|strong=\"H5414\"* one|strong=\"H1004\"* will|strong=\"H1004\"* open|strong=\"H6605\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H1004\"* will|strong=\"H1961\"* fasten|strong=\"H8628\"* him|strong=\"H8628\"* like|strong=\"H1961\"* a|strong=\"H3068\"* nail|strong=\"H3489\"* in|strong=\"H1004\"* a|strong=\"H3068\"* sure place|strong=\"H4725\"*. He|strong=\"H1004\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H1004\"* a|strong=\"H3068\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* glory|strong=\"H3519\"* to|strong=\"H1961\"* his|strong=\"H1961\"* father’s house|strong=\"H1004\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* will|strong=\"H1004\"* hang|strong=\"H8518\"* on|strong=\"H5921\"* him|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* his|strong=\"H3605\"* father’s house|strong=\"H1004\"*, the|strong=\"H3605\"* offspring|strong=\"H6631\"* and|strong=\"H1004\"* the|strong=\"H3605\"* issue|strong=\"H6849\"*, every|strong=\"H3605\"* small|strong=\"H6996\"* vessel|strong=\"H3627\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* cups even|strong=\"H5704\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* pitchers|strong=\"H5035\"*." + }, + { + "verseNum": 25, + "text": "“In|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “the|strong=\"H5002\"* nail|strong=\"H3489\"* that|strong=\"H3588\"* was|strong=\"H3068\"* fastened|strong=\"H8628\"* in|strong=\"H5921\"* a|strong=\"H3068\"* sure place|strong=\"H4725\"* will|strong=\"H3068\"* give|strong=\"H1696\"* way|strong=\"H4185\"*. It|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H5307\"* and|strong=\"H3068\"* fall|strong=\"H5307\"*. The|strong=\"H5002\"* burden|strong=\"H4853\"* that|strong=\"H3588\"* was|strong=\"H3068\"* on|strong=\"H5921\"* it|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H1931\"*.”" + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3588\"* burden|strong=\"H4853\"* of|strong=\"H1004\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 2, + "text": "Be|strong=\"H3220\"* still|strong=\"H3427\"*, you|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5674\"* coast, you|strong=\"H3427\"* whom the|strong=\"H5674\"* merchants|strong=\"H5503\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"* that|strong=\"H3220\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* the|strong=\"H5674\"* sea|strong=\"H3220\"* have|strong=\"H1826\"* replenished|strong=\"H4390\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H1961\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*, the|strong=\"H1961\"* seed|strong=\"H2233\"* of|strong=\"H4325\"* the|strong=\"H1961\"* Shihor|strong=\"H7883\"*, the|strong=\"H1961\"* harvest|strong=\"H7105\"* of|strong=\"H4325\"* the|strong=\"H1961\"* Nile|strong=\"H2975\"*, was|strong=\"H1961\"* her|strong=\"H1961\"* revenue|strong=\"H8393\"*. She was|strong=\"H1961\"* the|strong=\"H1961\"* market of|strong=\"H4325\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 4, + "text": "Be|strong=\"H3808\"* ashamed, Sidon|strong=\"H6721\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* sea|strong=\"H3220\"* has|strong=\"H3588\"* spoken|strong=\"H1431\"*, the|strong=\"H3588\"* stronghold|strong=\"H4581\"* of|strong=\"H3205\"* the|strong=\"H3588\"* sea|strong=\"H3220\"*, saying, “I|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* travailed|strong=\"H2342\"*, nor|strong=\"H3808\"* given|strong=\"H3205\"* birth|strong=\"H3205\"*, neither|strong=\"H3808\"* have|strong=\"H3588\"* I|strong=\"H3588\"* nourished|strong=\"H1431\"* young|strong=\"H1431\"* men|strong=\"H3220\"*, nor|strong=\"H3808\"* brought|strong=\"H3205\"* up|strong=\"H7311\"* virgins|strong=\"H1330\"*.”" + }, + { + "verseNum": 5, + "text": "When the|strong=\"H2342\"* report|strong=\"H8088\"* comes to|strong=\"H4714\"* Egypt|strong=\"H4714\"*, they will|strong=\"H4714\"* be in|strong=\"H2342\"* anguish|strong=\"H2342\"* at|strong=\"H2342\"* the|strong=\"H2342\"* report|strong=\"H8088\"* of|strong=\"H8088\"* Tyre|strong=\"H6865\"*." + }, + { + "verseNum": 6, + "text": "Pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H5674\"* Tarshish|strong=\"H8659\"*! Wail|strong=\"H3213\"*, you|strong=\"H3427\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5674\"* coast!" + }, + { + "verseNum": 7, + "text": "Is|strong=\"H3117\"* this|strong=\"H2063\"* your|strong=\"H3117\"* joyous|strong=\"H5947\"* city|strong=\"H6927\"*, whose antiquity|strong=\"H6927\"* is|strong=\"H3117\"* of|strong=\"H3117\"* ancient|strong=\"H6924\"* days|strong=\"H3117\"*, whose feet|strong=\"H7272\"* carried|strong=\"H2986\"* her|strong=\"H2063\"* far|strong=\"H7350\"* away|strong=\"H7350\"* to|strong=\"H3117\"* travel?" + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* planned|strong=\"H3289\"* this|strong=\"H2063\"* against|strong=\"H5921\"* Tyre|strong=\"H6865\"*, the|strong=\"H5921\"* giver of|strong=\"H8269\"* crowns|strong=\"H5849\"*, whose|strong=\"H4310\"* merchants|strong=\"H5503\"* are|strong=\"H4310\"* princes|strong=\"H8269\"*, whose|strong=\"H4310\"* traders|strong=\"H5503\"* are|strong=\"H4310\"* the|strong=\"H5921\"* honorable|strong=\"H3513\"* of|strong=\"H8269\"* the|strong=\"H5921\"* earth?" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* planned|strong=\"H3289\"* it|strong=\"H7043\"*, to|strong=\"H3068\"* stain|strong=\"H2490\"* the|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* all|strong=\"H3605\"* glory|strong=\"H6643\"*, to|strong=\"H3068\"* bring into|strong=\"H6635\"* contempt|strong=\"H7043\"* all|strong=\"H3605\"* the|strong=\"H3605\"* honorable|strong=\"H3513\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "Pass|strong=\"H5674\"* through|strong=\"H5674\"* your|strong=\"H5674\"* land like|strong=\"H1323\"* the|strong=\"H5674\"* Nile|strong=\"H2975\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Tarshish|strong=\"H8659\"*. There|strong=\"H2975\"* is|strong=\"H1323\"* no restraint|strong=\"H4206\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* shaken the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* ordered|strong=\"H6680\"* the|strong=\"H5921\"* destruction|strong=\"H8045\"* of|strong=\"H3068\"* Canaan|strong=\"H3667\"*’s strongholds|strong=\"H4581\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H8033\"* said, “You|strong=\"H5117\"* shall|strong=\"H1323\"* rejoice|strong=\"H5937\"* no|strong=\"H3808\"* more|strong=\"H3254\"*, you|strong=\"H5117\"* oppressed|strong=\"H6231\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Sidon|strong=\"H6721\"*. Arise|strong=\"H6965\"*, pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H6965\"* Kittim|strong=\"H3794\"*. Even|strong=\"H1571\"* there|strong=\"H8033\"* you|strong=\"H5117\"* will|strong=\"H1571\"* have|strong=\"H1571\"* no|strong=\"H3808\"* rest|strong=\"H5117\"*.”" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H7760\"* land of|strong=\"H5971\"* the|strong=\"H7760\"* Chaldeans|strong=\"H3778\"*. This|strong=\"H2088\"* people|strong=\"H5971\"* didn’t exist. The|strong=\"H7760\"* Assyrians founded|strong=\"H3245\"* it|strong=\"H7760\"* for|strong=\"H5971\"* those|strong=\"H2088\"* who|strong=\"H5971\"* dwell in|strong=\"H5971\"* the|strong=\"H7760\"* wilderness|strong=\"H6728\"*. They|strong=\"H3808\"* set|strong=\"H7760\"* up|strong=\"H6965\"* their|strong=\"H7760\"* towers. They|strong=\"H3808\"* overthrew its|strong=\"H7760\"* palaces. They|strong=\"H3808\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* ruin|strong=\"H4654\"*." + }, + { + "verseNum": 14, + "text": "Howl|strong=\"H3213\"*, you|strong=\"H3588\"* ships of|strong=\"H4581\"* Tarshish|strong=\"H8659\"*, for|strong=\"H3588\"* your|strong=\"H3588\"* stronghold|strong=\"H4581\"* is|strong=\"H7703\"* laid waste|strong=\"H7703\"*!" + }, + { + "verseNum": 15, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"* in|strong=\"H8141\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Tyre|strong=\"H6865\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forgotten|strong=\"H7911\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, according to|strong=\"H1961\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H4428\"* one|strong=\"H1931\"* king|strong=\"H4428\"*. After|strong=\"H7093\"* the|strong=\"H3117\"* end|strong=\"H7093\"* of|strong=\"H4428\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* Tyre|strong=\"H6865\"* like|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3117\"* song|strong=\"H7892\"* of|strong=\"H4428\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"*." + }, + { + "verseNum": 16, + "text": "Take|strong=\"H3947\"* a|strong=\"H3068\"* harp|strong=\"H3658\"*; go|strong=\"H5437\"* about|strong=\"H5437\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, you|strong=\"H3947\"* prostitute|strong=\"H2181\"* that|strong=\"H4616\"* has|strong=\"H3947\"* been|strong=\"H2142\"* forgotten|strong=\"H7911\"*. Make|strong=\"H2142\"* sweet|strong=\"H3190\"* melody|strong=\"H5059\"*. Sing|strong=\"H7892\"* many|strong=\"H7235\"* songs|strong=\"H7892\"*, that|strong=\"H4616\"* you|strong=\"H3947\"* may|strong=\"H2142\"* be|strong=\"H5892\"* remembered|strong=\"H2142\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* after|strong=\"H7093\"* the|strong=\"H3605\"* end|strong=\"H7093\"* of|strong=\"H3068\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* Tyre|strong=\"H6865\"*. She|strong=\"H5921\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* her|strong=\"H3605\"* wages, and|strong=\"H3068\"* will|strong=\"H3068\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* world on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "Her|strong=\"H1961\"* merchandise|strong=\"H5504\"* and|strong=\"H3068\"* her|strong=\"H1961\"* wages will|strong=\"H3068\"* be|strong=\"H1961\"* holiness|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* treasured nor|strong=\"H3808\"* laid|strong=\"H6440\"* up|strong=\"H3427\"*; for|strong=\"H3588\"* her|strong=\"H1961\"* merchandise|strong=\"H5504\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* eat sufficiently|strong=\"H7654\"*, and|strong=\"H3068\"* for|strong=\"H3588\"* durable|strong=\"H6266\"* clothing|strong=\"H4374\"*." + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* makes|strong=\"H6440\"* the|strong=\"H6440\"* earth empty|strong=\"H1238\"*, makes|strong=\"H6440\"* it|strong=\"H6440\"* waste|strong=\"H1110\"*, turns it|strong=\"H6440\"* upside down|strong=\"H3427\"*, and|strong=\"H3068\"* scatters|strong=\"H6327\"* its|strong=\"H6327\"* inhabitants|strong=\"H3427\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* people|strong=\"H5971\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* priest|strong=\"H3548\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* servant|strong=\"H5650\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* his|strong=\"H1961\"* master; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* maid|strong=\"H8198\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* her|strong=\"H1961\"* mistress|strong=\"H1404\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* buyer|strong=\"H7069\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* seller|strong=\"H4376\"*; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* creditor|strong=\"H5383\"*, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* debtor; as|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* taker of|strong=\"H5650\"* interest, so|strong=\"H1961\"* with|strong=\"H5971\"* the|strong=\"H1961\"* giver of|strong=\"H5650\"* interest." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* earth will|strong=\"H3068\"* be|strong=\"H1697\"* utterly|strong=\"H1238\"* emptied|strong=\"H1238\"* and|strong=\"H3068\"* utterly|strong=\"H1238\"* laid|strong=\"H1238\"* waste|strong=\"H1238\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5971\"* earth mourns and|strong=\"H5971\"* fades|strong=\"H5034\"* away|strong=\"H5034\"*. The|strong=\"H5971\"* world|strong=\"H8398\"* languishes and|strong=\"H5971\"* fades|strong=\"H5034\"* away|strong=\"H5034\"*. The|strong=\"H5971\"* lofty|strong=\"H4791\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H5971\"* earth languish." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3588\"* earth also|strong=\"H3588\"* is|strong=\"H8451\"* polluted|strong=\"H2610\"* under|strong=\"H8478\"* its|strong=\"H8478\"* inhabitants|strong=\"H3427\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3588\"* transgressed|strong=\"H5674\"* the|strong=\"H3588\"* laws|strong=\"H8451\"*, violated|strong=\"H5674\"* the|strong=\"H3588\"* statutes|strong=\"H2706\"*, and|strong=\"H5769\"* broken|strong=\"H6565\"* the|strong=\"H3588\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* curse has devoured the|strong=\"H5921\"* earth, and|strong=\"H3427\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* are found guilty. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H5921\"* earth are burned|strong=\"H2787\"*, and|strong=\"H3427\"* few|strong=\"H4213\"* men are left|strong=\"H7604\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"* mourns. The|strong=\"H3605\"* vine|strong=\"H1612\"* languishes. All|strong=\"H3605\"* the|strong=\"H3605\"* merry-hearted|strong=\"H8056\"* sigh." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7673\"* mirth|strong=\"H4885\"* of|strong=\"H7588\"* tambourines|strong=\"H8596\"* ceases|strong=\"H7673\"*. The|strong=\"H7673\"* sound of|strong=\"H7588\"* those who rejoice|strong=\"H5947\"* ends|strong=\"H7673\"*. The|strong=\"H7673\"* joy|strong=\"H4885\"* of|strong=\"H7588\"* the|strong=\"H7673\"* harp|strong=\"H3658\"* ceases|strong=\"H7673\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* with|strong=\"H4843\"* a|strong=\"H3068\"* song|strong=\"H7892\"*. Strong|strong=\"H7941\"* drink|strong=\"H8354\"* will|strong=\"H3808\"* be|strong=\"H3808\"* bitter|strong=\"H4843\"* to|strong=\"H3808\"* those who|strong=\"H8354\"* drink|strong=\"H8354\"* it|strong=\"H3808\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* confused city|strong=\"H7151\"* is|strong=\"H3605\"* broken|strong=\"H7665\"* down|strong=\"H7665\"*. Every|strong=\"H3605\"* house|strong=\"H1004\"* is|strong=\"H3605\"* shut|strong=\"H5462\"* up|strong=\"H5462\"*, that|strong=\"H3605\"* no|strong=\"H3605\"* man|strong=\"H3605\"* may|strong=\"H1004\"* come in|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H3605\"* is|strong=\"H3605\"* a|strong=\"H3068\"* crying|strong=\"H6682\"* in|strong=\"H5921\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* because|strong=\"H5921\"* of|strong=\"H5921\"* the|strong=\"H3605\"* wine|strong=\"H3196\"*. All|strong=\"H3605\"* joy|strong=\"H8057\"* is|strong=\"H3605\"* darkened|strong=\"H6150\"*. The|strong=\"H3605\"* mirth|strong=\"H8057\"* of|strong=\"H5921\"* the|strong=\"H3605\"* land is|strong=\"H3605\"* gone|strong=\"H1540\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5892\"* city|strong=\"H5892\"* is|strong=\"H5892\"* left|strong=\"H7604\"* in|strong=\"H5892\"* desolation|strong=\"H8047\"*, and|strong=\"H5892\"* the|strong=\"H5892\"* gate|strong=\"H8179\"* is|strong=\"H5892\"* struck with|strong=\"H5892\"* destruction|strong=\"H7591\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H3541\"* within|strong=\"H7130\"* the|strong=\"H3588\"* earth among|strong=\"H8432\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"*, as|strong=\"H1961\"* the|strong=\"H3588\"* shaking|strong=\"H5363\"* of|strong=\"H8432\"* an|strong=\"H1961\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*, as|strong=\"H1961\"* the|strong=\"H3588\"* gleanings|strong=\"H5955\"* when|strong=\"H3588\"* the|strong=\"H3588\"* vintage|strong=\"H1210\"* is|strong=\"H1961\"* done|strong=\"H1961\"*." + }, + { + "verseNum": 14, + "text": "These|strong=\"H1992\"* shall|strong=\"H3068\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*. They|strong=\"H1992\"* will|strong=\"H3068\"* shout|strong=\"H7442\"* for|strong=\"H7442\"* the|strong=\"H5375\"* majesty|strong=\"H1347\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. They|strong=\"H1992\"* cry|strong=\"H6670\"* aloud|strong=\"H7442\"* from|strong=\"H3068\"* the|strong=\"H5375\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* glorify|strong=\"H3513\"* Yahweh|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H5921\"*, even|strong=\"H3651\"* the|strong=\"H5921\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* islands of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*!" + }, + { + "verseNum": 16, + "text": "From|strong=\"H8085\"* the|strong=\"H8085\"* uttermost part|strong=\"H3671\"* of|strong=\"H3671\"* the|strong=\"H8085\"* earth have|strong=\"H8085\"* we|strong=\"H3068\"* heard|strong=\"H8085\"* songs|strong=\"H2158\"*. Glory|strong=\"H6643\"* to|strong=\"H8085\"* the|strong=\"H8085\"* righteous|strong=\"H6662\"*!" + }, + { + "verseNum": 17, + "text": "Fear|strong=\"H6343\"*, the|strong=\"H5921\"* pit|strong=\"H6354\"*, and|strong=\"H3427\"* the|strong=\"H5921\"* snare|strong=\"H6341\"* are|strong=\"H6341\"* on|strong=\"H5921\"* you|strong=\"H5921\"* who|strong=\"H3427\"* inhabit|strong=\"H3427\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 18, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* flees|strong=\"H5127\"* from|strong=\"H5927\"* the|strong=\"H3588\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3588\"* fear|strong=\"H6343\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* into|strong=\"H5927\"* the|strong=\"H3588\"* pit|strong=\"H6354\"*; and|strong=\"H6963\"* he|strong=\"H3588\"* who|strong=\"H3588\"* comes|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5307\"* of|strong=\"H6963\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* the|strong=\"H3588\"* pit|strong=\"H6354\"* will|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H3920\"* in|strong=\"H8432\"* the|strong=\"H3588\"* snare|strong=\"H6341\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* windows on|strong=\"H5307\"* high|strong=\"H4791\"* are|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H6963\"* the|strong=\"H3588\"* foundations|strong=\"H4146\"* of|strong=\"H6963\"* the|strong=\"H3588\"* earth|strong=\"H5927\"* tremble|strong=\"H7493\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6565\"* earth is utterly|strong=\"H7489\"* broken|strong=\"H6565\"*. The|strong=\"H6565\"* earth is torn apart. The|strong=\"H6565\"* earth is shaken|strong=\"H4131\"* violently|strong=\"H4131\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* earth will|strong=\"H3808\"* stagger|strong=\"H5128\"* like|strong=\"H3808\"* a|strong=\"H3068\"* drunken|strong=\"H7910\"* man|strong=\"H7910\"*, and|strong=\"H6965\"* will|strong=\"H3808\"* sway back and|strong=\"H6965\"* forth like|strong=\"H3808\"* a|strong=\"H3068\"* hammock. Its|strong=\"H5921\"* disobedience will|strong=\"H3808\"* be|strong=\"H3808\"* heavy|strong=\"H3513\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H6965\"* it|strong=\"H5921\"* will|strong=\"H3808\"* fall|strong=\"H5307\"* and|strong=\"H6965\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* again|strong=\"H3254\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H5921\"* high|strong=\"H4791\"* ones|strong=\"H4791\"* on|strong=\"H5921\"* high|strong=\"H4791\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth on|strong=\"H5921\"* the|strong=\"H5921\"* earth." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* gathered|strong=\"H6485\"* together|strong=\"H5921\"*, as|strong=\"H3117\"* prisoners are|strong=\"H3117\"* gathered|strong=\"H6485\"* in|strong=\"H5921\"* the|strong=\"H5921\"* pit, and|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* shut|strong=\"H5462\"* up|strong=\"H5462\"* in|strong=\"H5921\"* the|strong=\"H5921\"* prison|strong=\"H4525\"*; and|strong=\"H3117\"* after|strong=\"H5921\"* many|strong=\"H7230\"* days|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H3117\"* be|strong=\"H3117\"* visited|strong=\"H6485\"*." + }, + { + "verseNum": 23, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* moon|strong=\"H3842\"* will|strong=\"H3068\"* be|strong=\"H3068\"* confounded|strong=\"H2659\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H2535\"* ashamed|strong=\"H2659\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* reign|strong=\"H4427\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* and|strong=\"H3068\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3068\"* glory|strong=\"H3519\"* will|strong=\"H3068\"* be|strong=\"H3068\"* before|strong=\"H5048\"* his|strong=\"H3068\"* elders|strong=\"H2205\"*." + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* exalt|strong=\"H7311\"* you|strong=\"H3588\"*! I|strong=\"H3588\"* will|strong=\"H3068\"* praise|strong=\"H3034\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* wonderful|strong=\"H6382\"* things|strong=\"H6382\"*, things|strong=\"H6382\"* planned long|strong=\"H7350\"* ago|strong=\"H7350\"*, in|strong=\"H3068\"* complete faithfulness and|strong=\"H3068\"* truth." + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1129\"* made|strong=\"H7760\"* a|strong=\"H3068\"* city|strong=\"H5892\"* into|strong=\"H5892\"* a|strong=\"H3068\"* heap|strong=\"H1530\"*, a|strong=\"H3068\"* fortified|strong=\"H1219\"* city|strong=\"H5892\"* into|strong=\"H5892\"* a|strong=\"H3068\"* ruin|strong=\"H4654\"*, a|strong=\"H3068\"* palace of|strong=\"H5892\"* strangers|strong=\"H2114\"* to|strong=\"H5892\"* be|strong=\"H3808\"* no|strong=\"H3808\"* city|strong=\"H5892\"*. It|strong=\"H7760\"* will|strong=\"H5892\"* never|strong=\"H3808\"* be|strong=\"H3808\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* strong|strong=\"H5794\"* people|strong=\"H5971\"* will|strong=\"H1471\"* glorify|strong=\"H3513\"* you|strong=\"H5921\"*. A|strong=\"H3068\"* city|strong=\"H7151\"* of|strong=\"H5971\"* awesome|strong=\"H3372\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* fear|strong=\"H3372\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H1961\"* the|strong=\"H3588\"* poor|strong=\"H1800\"*, a|strong=\"H3068\"* stronghold|strong=\"H4581\"* to|strong=\"H1961\"* the|strong=\"H3588\"* needy|strong=\"H1800\"* in|strong=\"H1961\"* his|strong=\"H1961\"* distress|strong=\"H6862\"*, a|strong=\"H3068\"* refuge|strong=\"H4268\"* from|strong=\"H7307\"* the|strong=\"H3588\"* storm|strong=\"H2230\"*, a|strong=\"H3068\"* shade|strong=\"H6738\"* from|strong=\"H7307\"* the|strong=\"H3588\"* heat|strong=\"H2721\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* blast|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* dreaded ones|strong=\"H6184\"* is|strong=\"H7307\"* like|strong=\"H1961\"* a|strong=\"H3068\"* storm|strong=\"H2230\"* against|strong=\"H7307\"* the|strong=\"H3588\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H5645\"* the|strong=\"H6030\"* heat|strong=\"H2721\"* in|strong=\"H6030\"* a|strong=\"H3068\"* dry|strong=\"H2721\"* place|strong=\"H6724\"* you|strong=\"H2114\"* will|strong=\"H2114\"* bring down|strong=\"H3665\"* the|strong=\"H6030\"* noise|strong=\"H7588\"* of|strong=\"H7588\"* strangers|strong=\"H2114\"*; as|strong=\"H5645\"* the|strong=\"H6030\"* heat|strong=\"H2721\"* by|strong=\"H6030\"* the|strong=\"H6030\"* shade|strong=\"H6738\"* of|strong=\"H7588\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"*, the|strong=\"H6030\"* song|strong=\"H2158\"* of|strong=\"H7588\"* the|strong=\"H6030\"* dreaded ones|strong=\"H6184\"* will|strong=\"H2114\"* be|strong=\"H2114\"* brought|strong=\"H3665\"* low|strong=\"H3665\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H3068\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* make|strong=\"H6213\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"* a|strong=\"H3068\"* feast|strong=\"H4960\"* of|strong=\"H3068\"* choice|strong=\"H8081\"* meat,+ 25:6 literally, fat things* a|strong=\"H3068\"* feast|strong=\"H4960\"* of|strong=\"H3068\"* choice|strong=\"H8081\"* wines, of|strong=\"H3068\"* choice|strong=\"H8081\"* meat full|strong=\"H3605\"* of|strong=\"H3068\"* marrow|strong=\"H4229\"*, of|strong=\"H3068\"* well|strong=\"H8105\"* refined|strong=\"H2212\"* choice|strong=\"H8081\"* wines." + }, + { + "verseNum": 7, + "text": "He|strong=\"H3605\"* will|strong=\"H1471\"* destroy|strong=\"H1104\"* in|strong=\"H5921\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* covering|strong=\"H4541\"* that|strong=\"H5971\"* covers all|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* the|strong=\"H3605\"* veil|strong=\"H4541\"* that|strong=\"H5971\"* is|strong=\"H2088\"* spread|strong=\"H5259\"* over|strong=\"H5921\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* death|strong=\"H4194\"* forever|strong=\"H5331\"*! The|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* wipe|strong=\"H4229\"* away|strong=\"H5493\"* tears|strong=\"H1832\"* from|strong=\"H5493\"* off|strong=\"H5493\"* all|strong=\"H3605\"* faces|strong=\"H6440\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H5493\"* the|strong=\"H3605\"* reproach|strong=\"H2781\"* of|strong=\"H3068\"* his|strong=\"H3605\"* people|strong=\"H5971\"* away|strong=\"H5493\"* from|strong=\"H5493\"* off|strong=\"H5493\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* said in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, “Behold|strong=\"H2009\"*, this|strong=\"H2088\"* is|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*! We|strong=\"H3117\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H1931\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* save|strong=\"H3467\"* us|strong=\"H3117\"*! This|strong=\"H2088\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*! We|strong=\"H3117\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H1931\"*. We|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glad|strong=\"H8055\"* and|strong=\"H3068\"* rejoice|strong=\"H8055\"* in|strong=\"H3068\"* his|strong=\"H3068\"* salvation|strong=\"H3444\"*!”" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* will|strong=\"H3068\"* rest|strong=\"H5117\"* in|strong=\"H3068\"* this|strong=\"H2088\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3027\"* hands|strong=\"H3027\"* in|strong=\"H7130\"* the|strong=\"H3027\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* it|strong=\"H6566\"*, like|strong=\"H5973\"* one|strong=\"H3027\"* who swims spreads|strong=\"H6566\"* out|strong=\"H6566\"* hands|strong=\"H3027\"* to|strong=\"H3027\"* swim|strong=\"H7811\"*, but|strong=\"H1346\"* his|strong=\"H3027\"* pride|strong=\"H1346\"* will|strong=\"H3027\"* be|strong=\"H3027\"* humbled|strong=\"H8213\"* together|strong=\"H5973\"* with|strong=\"H5973\"* the|strong=\"H3027\"* craft of|strong=\"H3027\"* his|strong=\"H3027\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H5704\"* has|strong=\"H4869\"* brought|strong=\"H5060\"* the|strong=\"H5704\"* high fortress|strong=\"H4013\"* of|strong=\"H2346\"* your|strong=\"H5704\"* walls|strong=\"H2346\"* down|strong=\"H7817\"*, laid|strong=\"H5060\"* low|strong=\"H8213\"*, and|strong=\"H6083\"* brought|strong=\"H5060\"* to|strong=\"H5704\"* the|strong=\"H5704\"* ground|strong=\"H6083\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* dust|strong=\"H6083\"*." + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, this|strong=\"H2088\"* song|strong=\"H7892\"* will|strong=\"H5892\"* be|strong=\"H3117\"* sung|strong=\"H7891\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 2, + "text": "Open|strong=\"H6605\"* the|strong=\"H8104\"* gates|strong=\"H8179\"*, that|strong=\"H1471\"* the|strong=\"H8104\"* righteous|strong=\"H6662\"* nation|strong=\"H1471\"* may|strong=\"H1471\"* enter:" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* will|strong=\"H3588\"* keep|strong=\"H5341\"* whoever’s mind|strong=\"H3336\"* is|strong=\"H3588\"* steadfast|strong=\"H5564\"* in|strong=\"H7965\"* perfect|strong=\"H7965\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 4, + "text": "Trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* forever|strong=\"H5769\"*;" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* brought|strong=\"H5060\"* down|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* on|strong=\"H3427\"* high|strong=\"H4791\"*, the|strong=\"H3588\"* lofty|strong=\"H4791\"* city|strong=\"H7151\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7429\"* foot|strong=\"H7272\"* shall|strong=\"H7272\"* tread|strong=\"H7429\"* it|strong=\"H7429\"* down|strong=\"H7429\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H6424\"* way|strong=\"H4570\"* of|strong=\"H4570\"* the|strong=\"H6424\"* just|strong=\"H6662\"* is|strong=\"H6662\"* uprightness|strong=\"H4339\"*." + }, + { + "verseNum": 8, + "text": "Yes, in|strong=\"H3068\"* the|strong=\"H3068\"* way|strong=\"H4941\"* of|strong=\"H3068\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"*, Yahweh|strong=\"H3068\"*, we|strong=\"H3068\"* have|strong=\"H3068\"* waited|strong=\"H6960\"* for|strong=\"H8034\"* you|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "With|strong=\"H3427\"* my|strong=\"H3588\"* soul|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3588\"* desired you|strong=\"H3588\"* in|strong=\"H3427\"* the|strong=\"H3588\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 10, + "text": "Let favor|strong=\"H2603\"* be|strong=\"H3068\"* shown|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* hand|strong=\"H3027\"* is|strong=\"H3068\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"*, yet|strong=\"H3068\"* they|strong=\"H3068\"* don’t see|strong=\"H2372\"*;" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* ordain|strong=\"H8239\"* peace|strong=\"H7965\"* for|strong=\"H3588\"* us|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, other lords besides|strong=\"H2108\"* you|strong=\"H2142\"* have|strong=\"H3068\"* had|strong=\"H3068\"* dominion|strong=\"H1166\"* over|strong=\"H3068\"* us|strong=\"H2142\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* dead|strong=\"H4191\"* shall|strong=\"H2143\"* not|strong=\"H1077\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* increased|strong=\"H3254\"* the|strong=\"H3605\"* nation|strong=\"H1471\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, in|strong=\"H3068\"* trouble|strong=\"H6862\"* they|strong=\"H3068\"* have|strong=\"H3068\"* visited|strong=\"H6485\"* you|strong=\"H6485\"*." + }, + { + "verseNum": 17, + "text": "Just as|strong=\"H1961\"* a|strong=\"H3068\"* woman|strong=\"H2030\"* with|strong=\"H3068\"* child|strong=\"H2030\"*, who|strong=\"H3068\"* draws|strong=\"H7126\"* near|strong=\"H7126\"* the|strong=\"H6440\"* time|strong=\"H6440\"* of|strong=\"H3068\"* her|strong=\"H3205\"* delivery|strong=\"H3205\"*," + }, + { + "verseNum": 18, + "text": "We|strong=\"H6213\"* have|strong=\"H3205\"* been|strong=\"H3644\"* with|strong=\"H6213\"* child|strong=\"H3205\"*." + }, + { + "verseNum": 19, + "text": "Your|strong=\"H3588\"* dead|strong=\"H4191\"* shall|strong=\"H5038\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 20, + "text": "Come|strong=\"H3212\"*, my|strong=\"H5674\"* people|strong=\"H5971\"*, enter|strong=\"H5674\"* into|strong=\"H3212\"* your|strong=\"H5674\"* rooms|strong=\"H2315\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"* to|strong=\"H3318\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5921\"* earth for|strong=\"H3588\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* his|strong=\"H3068\"* hard|strong=\"H7186\"* and|strong=\"H3068\"* great|strong=\"H1419\"* and|strong=\"H3068\"* strong|strong=\"H2389\"* sword|strong=\"H2719\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* leviathan|strong=\"H3882\"*, the|strong=\"H5921\"* fleeing|strong=\"H1281\"* serpent|strong=\"H5175\"*, and|strong=\"H3068\"* leviathan|strong=\"H3882\"*, the|strong=\"H5921\"* twisted|strong=\"H6129\"* serpent|strong=\"H5175\"*; and|strong=\"H3068\"* he|strong=\"H1931\"* will|strong=\"H3068\"* kill|strong=\"H2026\"* the|strong=\"H5921\"* dragon|strong=\"H8577\"* that|strong=\"H3117\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, sing|strong=\"H6030\"* to|strong=\"H3117\"* her|strong=\"H1931\"*, “A|strong=\"H3068\"* pleasant|strong=\"H2531\"* vineyard|strong=\"H3754\"*!" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, am|strong=\"H3068\"* its|strong=\"H5921\"* keeper|strong=\"H5341\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* water|strong=\"H8248\"* it|strong=\"H5921\"* every|strong=\"H3117\"* moment|strong=\"H7281\"*. Lest|strong=\"H6435\"* anyone damage|strong=\"H6485\"* it|strong=\"H5921\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* keep|strong=\"H5341\"* it|strong=\"H5921\"* night|strong=\"H3915\"* and|strong=\"H3068\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "Wrath|strong=\"H2534\"* is|strong=\"H4310\"* not|strong=\"H5414\"* in|strong=\"H4421\"* me|strong=\"H5414\"*, but if I|strong=\"H5414\"* should|strong=\"H4310\"* find|strong=\"H5414\"* briers|strong=\"H8068\"* and|strong=\"H4421\"* thorns|strong=\"H7898\"*, I|strong=\"H5414\"* would|strong=\"H4310\"* do|strong=\"H4310\"* battle|strong=\"H4421\"*! I|strong=\"H5414\"* would|strong=\"H4310\"* march on|strong=\"H5414\"* them|strong=\"H5414\"* and|strong=\"H4421\"* I|strong=\"H5414\"* would|strong=\"H4310\"* burn|strong=\"H6702\"* them|strong=\"H5414\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 5, + "text": "Or|strong=\"H6213\"* else let him|strong=\"H6213\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H6213\"* my|strong=\"H6213\"* strength|strong=\"H4581\"*, that|strong=\"H6213\"* he|strong=\"H6213\"* may|strong=\"H6213\"* make|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H6213\"* me|strong=\"H6213\"*. Let him|strong=\"H6213\"* make|strong=\"H6213\"* peace|strong=\"H7965\"* with|strong=\"H6213\"* me|strong=\"H6213\"*.”" + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* days to|strong=\"H3478\"* come|strong=\"H3478\"*, Jacob|strong=\"H3290\"* will|strong=\"H3478\"* take|strong=\"H8327\"* root|strong=\"H8327\"*. Israel|strong=\"H3478\"* will|strong=\"H3478\"* blossom|strong=\"H6524\"* and|strong=\"H3478\"* bud|strong=\"H6524\"*. They|strong=\"H6440\"* will|strong=\"H3478\"* fill|strong=\"H4390\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* world|strong=\"H8398\"* with|strong=\"H4390\"* fruit|strong=\"H8570\"*." + }, + { + "verseNum": 7, + "text": "Has he|strong=\"H5221\"* struck|strong=\"H5221\"* them|strong=\"H5221\"* as|strong=\"H5221\"* he|strong=\"H5221\"* struck|strong=\"H5221\"* those who|strong=\"H5221\"* struck|strong=\"H5221\"* them|strong=\"H5221\"*? Or are|strong=\"H4347\"* they|strong=\"H5221\"* killed|strong=\"H2026\"* like|strong=\"H2026\"* those who|strong=\"H5221\"* killed|strong=\"H2026\"* them|strong=\"H5221\"* were killed|strong=\"H2026\"*?" + }, + { + "verseNum": 8, + "text": "In|strong=\"H3117\"* measure|strong=\"H5432\"*, when|strong=\"H3117\"* you|strong=\"H7971\"* send|strong=\"H7971\"* them|strong=\"H7971\"* away|strong=\"H7971\"*, you|strong=\"H7971\"* contend|strong=\"H7378\"* with|strong=\"H3117\"* them|strong=\"H7971\"*. He|strong=\"H3117\"* has|strong=\"H3117\"* removed them|strong=\"H7971\"* with|strong=\"H3117\"* his|strong=\"H7971\"* rough|strong=\"H7186\"* blast|strong=\"H7307\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* east|strong=\"H6921\"* wind|strong=\"H7307\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* by|strong=\"H6965\"* this|strong=\"H2088\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H4196\"* Jacob|strong=\"H3290\"* will|strong=\"H3808\"* be|strong=\"H3808\"* forgiven|strong=\"H3722\"*, and|strong=\"H6965\"* this|strong=\"H2088\"* is|strong=\"H2088\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H4196\"* taking|strong=\"H7760\"* away|strong=\"H5493\"* his|strong=\"H3605\"* sin|strong=\"H2403\"*: that|strong=\"H3605\"* he|strong=\"H3651\"* makes|strong=\"H7760\"* all|strong=\"H3605\"* the|strong=\"H3605\"* stones of|strong=\"H4196\"* the|strong=\"H3605\"* altar|strong=\"H4196\"* as|strong=\"H3651\"* chalk|strong=\"H1615\"* stones that|strong=\"H3605\"* are|strong=\"H2403\"* beaten in|strong=\"H5493\"* pieces|strong=\"H5310\"*, so|strong=\"H3651\"* that|strong=\"H3605\"* the|strong=\"H3605\"* Asherah poles and|strong=\"H6965\"* the|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* shall|strong=\"H3808\"* rise|strong=\"H6965\"* no|strong=\"H3808\"* more|strong=\"H3651\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fortified|strong=\"H1219\"* city|strong=\"H5892\"* is|strong=\"H5892\"* solitary, a|strong=\"H3068\"* habitation|strong=\"H5116\"* deserted|strong=\"H5800\"* and|strong=\"H7971\"* forsaken|strong=\"H5800\"*, like|strong=\"H4057\"* the|strong=\"H3588\"* wilderness|strong=\"H4057\"*. The|strong=\"H3588\"* calf|strong=\"H5695\"* will|strong=\"H5892\"* feed|strong=\"H7462\"* there|strong=\"H8033\"*, and|strong=\"H7971\"* there|strong=\"H8033\"* he|strong=\"H3588\"* will|strong=\"H5892\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H7971\"* consume|strong=\"H3615\"* its|strong=\"H3588\"* branches|strong=\"H5585\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* its|strong=\"H5921\"* boughs|strong=\"H7105\"* are|strong=\"H5971\"* withered|strong=\"H3001\"*, they|strong=\"H3588\"* will|strong=\"H5971\"* be|strong=\"H3808\"* broken|strong=\"H7665\"* off|strong=\"H5921\"*. The|strong=\"H5921\"* women will|strong=\"H5971\"* come|strong=\"H5971\"* and|strong=\"H5971\"* set|strong=\"H6213\"* them|strong=\"H5921\"* on|strong=\"H5921\"* fire, for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H5971\"* no|strong=\"H3808\"* understanding. Therefore|strong=\"H3651\"* he|strong=\"H1931\"* who|strong=\"H1931\"* made|strong=\"H6213\"* them|strong=\"H5921\"* will|strong=\"H5971\"* not|strong=\"H3808\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H5971\"* he|strong=\"H1931\"* who|strong=\"H1931\"* formed|strong=\"H3335\"* them|strong=\"H5921\"* will|strong=\"H5971\"* show|strong=\"H6213\"* them|strong=\"H5921\"* no|strong=\"H3808\"* favor|strong=\"H2603\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* thresh from|strong=\"H3478\"* the|strong=\"H3068\"* flowing|strong=\"H5158\"* stream|strong=\"H5158\"* of|strong=\"H1121\"* the|strong=\"H3068\"* Euphrates|strong=\"H5104\"* to|strong=\"H5704\"* the|strong=\"H3068\"* brook|strong=\"H5158\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*; and|strong=\"H1121\"* you|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* gathered|strong=\"H3950\"* one|strong=\"H1931\"* by|strong=\"H3117\"* one|strong=\"H1931\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H1419\"* trumpet|strong=\"H7782\"* will|strong=\"H3068\"* be|strong=\"H1961\"* blown|strong=\"H8628\"*; and|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1961\"* ready to|strong=\"H3068\"* perish in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Assyria, and|strong=\"H3068\"* those|strong=\"H1931\"* who|strong=\"H1931\"* were|strong=\"H1961\"* outcasts|strong=\"H5080\"* in|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, shall|strong=\"H3068\"* come|strong=\"H1961\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* the|strong=\"H5921\"* crown|strong=\"H5850\"* of|strong=\"H7218\"* pride|strong=\"H1348\"* of|strong=\"H7218\"* the|strong=\"H5921\"* drunkards|strong=\"H7910\"* of|strong=\"H7218\"* Ephraim, and|strong=\"H7218\"* to|strong=\"H5921\"* the|strong=\"H5921\"* fading|strong=\"H5034\"* flower|strong=\"H6731\"* of|strong=\"H7218\"* his|strong=\"H5921\"* glorious|strong=\"H8597\"* beauty|strong=\"H8597\"*, which|strong=\"H3196\"* is|strong=\"H7218\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* fertile|strong=\"H8081\"* valley|strong=\"H1516\"* of|strong=\"H7218\"* those|strong=\"H1945\"* who|strong=\"H1945\"* are overcome|strong=\"H1986\"* with|strong=\"H5921\"* wine|strong=\"H3196\"*!" + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3027\"* Lord has|strong=\"H3027\"* one|strong=\"H3027\"* who|strong=\"H2389\"* is|strong=\"H3027\"* mighty|strong=\"H2389\"* and|strong=\"H3027\"* strong|strong=\"H2389\"*. Like a|strong=\"H3068\"* storm|strong=\"H2230\"* of|strong=\"H3027\"* hail|strong=\"H1259\"*, a|strong=\"H3068\"* destroying|strong=\"H6986\"* storm|strong=\"H2230\"*, and|strong=\"H3027\"* like a|strong=\"H3068\"* storm|strong=\"H2230\"* of|strong=\"H3027\"* mighty|strong=\"H2389\"* waters|strong=\"H4325\"* overflowing|strong=\"H7857\"*, he|strong=\"H3027\"* will|strong=\"H3027\"* cast|strong=\"H4325\"* them|strong=\"H3027\"* down|strong=\"H3240\"* to|strong=\"H3027\"* the|strong=\"H3027\"* earth with|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H7429\"* crown|strong=\"H5850\"* of|strong=\"H5850\"* pride|strong=\"H1348\"* of|strong=\"H5850\"* the|strong=\"H7429\"* drunkards|strong=\"H7910\"* of|strong=\"H5850\"* Ephraim will|strong=\"H7272\"* be trodden|strong=\"H7429\"* under|strong=\"H7429\"* foot|strong=\"H7272\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H5921\"* fading|strong=\"H5034\"* flower|strong=\"H6733\"* of|strong=\"H7218\"* his|strong=\"H5921\"* glorious|strong=\"H8597\"* beauty|strong=\"H8597\"*, which is|strong=\"H1961\"* on|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* fertile|strong=\"H8081\"* valley|strong=\"H1516\"*, shall|strong=\"H7218\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H5921\"* first-ripe fig before|strong=\"H2962\"* the|strong=\"H5921\"* summer|strong=\"H7019\"*, which someone picks and|strong=\"H7218\"* eats as|strong=\"H1961\"* soon|strong=\"H5750\"* as|strong=\"H1961\"* he|strong=\"H5921\"* sees|strong=\"H7200\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 5, + "text": "In|strong=\"H3068\"* that|strong=\"H5971\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H3068\"* glory|strong=\"H8597\"* and|strong=\"H3068\"* a|strong=\"H3068\"* diadem|strong=\"H6843\"* of|strong=\"H3068\"* beauty|strong=\"H8597\"* to|strong=\"H3068\"* the|strong=\"H3068\"* residue|strong=\"H7605\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H7725\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3427\"* justice|strong=\"H4941\"* to|strong=\"H7725\"* him|strong=\"H5921\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* in|strong=\"H3427\"* judgment|strong=\"H4941\"*, and|strong=\"H7725\"* strength|strong=\"H1369\"* to|strong=\"H7725\"* those|strong=\"H5921\"* who|strong=\"H3427\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* at|strong=\"H3427\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1571\"* also|strong=\"H1571\"* reel|strong=\"H7686\"* with|strong=\"H3548\"* wine|strong=\"H3196\"*, and|strong=\"H3548\"* stagger|strong=\"H8582\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. The|strong=\"H4480\"* priest|strong=\"H3548\"* and|strong=\"H3548\"* the|strong=\"H4480\"* prophet|strong=\"H5030\"* reel|strong=\"H7686\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. They|strong=\"H1571\"* are|strong=\"H5030\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* by|strong=\"H1571\"* wine|strong=\"H3196\"*. They|strong=\"H1571\"* stagger|strong=\"H8582\"* with|strong=\"H3548\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*. They|strong=\"H1571\"* err|strong=\"H8582\"* in|strong=\"H1571\"* vision|strong=\"H7203\"*. They|strong=\"H1571\"* stumble|strong=\"H6328\"* in|strong=\"H1571\"* judgment|strong=\"H6417\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* all|strong=\"H3605\"* tables|strong=\"H7979\"* are|strong=\"H7979\"* completely|strong=\"H3605\"* full|strong=\"H4390\"* of|strong=\"H4390\"* filthy|strong=\"H6675\"* vomit|strong=\"H6892\"* and|strong=\"H4725\"* filthiness|strong=\"H6675\"*." + }, + { + "verseNum": 9, + "text": "Whom|strong=\"H4310\"* will|strong=\"H4310\"* he|strong=\"H4310\"* teach|strong=\"H3384\"* knowledge|strong=\"H1844\"*? To|strong=\"H7699\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* he|strong=\"H4310\"* explain the|strong=\"H3384\"* message|strong=\"H8052\"*? Those who|strong=\"H4310\"* are|strong=\"H4310\"* weaned|strong=\"H1580\"* from|strong=\"H1580\"* the|strong=\"H3384\"* milk|strong=\"H2461\"*, and|strong=\"H2461\"* drawn|strong=\"H6267\"* from|strong=\"H1580\"* the|strong=\"H3384\"* breasts|strong=\"H7699\"*?" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H8033\"* precept|strong=\"H6673\"* on|strong=\"H6957\"* precept|strong=\"H6673\"*, precept|strong=\"H6673\"* on|strong=\"H6957\"* precept|strong=\"H6673\"*; line|strong=\"H6957\"* on|strong=\"H6957\"* line|strong=\"H6957\"*, line|strong=\"H6957\"* on|strong=\"H6957\"* line|strong=\"H6957\"*; here|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, there|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H5971\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* this|strong=\"H2088\"* nation|strong=\"H5971\"* with|strong=\"H1696\"* stammering|strong=\"H3934\"* lips|strong=\"H8193\"* and|strong=\"H5971\"* in|strong=\"H1696\"* another|strong=\"H2088\"* language|strong=\"H3956\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H8085\"* whom he|strong=\"H3808\"* said|strong=\"H8085\"*, “This|strong=\"H2063\"* is|strong=\"H8085\"* the|strong=\"H8085\"* resting|strong=\"H4496\"* place|strong=\"H4496\"*. Give|strong=\"H5117\"* rest|strong=\"H5117\"* to|strong=\"H8085\"* the|strong=\"H8085\"* weary|strong=\"H5889\"*,” and|strong=\"H8085\"* “This|strong=\"H2063\"* is|strong=\"H8085\"* the|strong=\"H8085\"* refreshing|strong=\"H4774\"*;” yet|strong=\"H3808\"* they|strong=\"H3808\"* would not|strong=\"H3808\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3212\"* them|strong=\"H1992\"* precept|strong=\"H6673\"* on|strong=\"H3068\"* precept|strong=\"H6673\"*, precept|strong=\"H6673\"* on|strong=\"H3068\"* precept|strong=\"H6673\"*; line|strong=\"H6957\"* on|strong=\"H3068\"* line|strong=\"H6957\"*, line|strong=\"H6957\"* on|strong=\"H3068\"* line|strong=\"H6957\"*; here|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*, there|strong=\"H8033\"* a|strong=\"H3068\"* little|strong=\"H2191\"*; that|strong=\"H3068\"* they|strong=\"H1992\"* may|strong=\"H1961\"* go|strong=\"H3212\"*, fall|strong=\"H3782\"* backward, be|strong=\"H1961\"* broken|strong=\"H7665\"*, be|strong=\"H1961\"* snared|strong=\"H3369\"*, and|strong=\"H3068\"* be|strong=\"H1961\"* taken|strong=\"H3920\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3651\"* scoffers, that|strong=\"H5971\"* rule|strong=\"H4910\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 15, + "text": "“Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* said, ‘We|strong=\"H3588\"* have|strong=\"H3588\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H5973\"* death|strong=\"H4194\"*, and|strong=\"H6213\"* we|strong=\"H3068\"* are|strong=\"H6213\"* in|strong=\"H6213\"* agreement|strong=\"H1285\"* with|strong=\"H5973\"* Sheol|strong=\"H7585\"*.+ 28:15 Sheol is the place of the dead.* When|strong=\"H3588\"* the|strong=\"H3588\"* overflowing|strong=\"H7857\"* scourge passes|strong=\"H5674\"* through|strong=\"H5674\"*, it|strong=\"H7760\"* won’t come|strong=\"H5674\"* to|strong=\"H6213\"* us|strong=\"H6213\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* made|strong=\"H6213\"* lies|strong=\"H3577\"* our|strong=\"H3588\"* refuge|strong=\"H4268\"*, and|strong=\"H6213\"* we|strong=\"H3068\"* have|strong=\"H3588\"* hidden|strong=\"H5641\"* ourselves under|strong=\"H6213\"* falsehood|strong=\"H8267\"*.’”" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* lay|strong=\"H3245\"* in|strong=\"H3808\"* Zion|strong=\"H6726\"* for|strong=\"H3651\"* a|strong=\"H3068\"* foundation|strong=\"H3245\"* a|strong=\"H3068\"* stone, a|strong=\"H3068\"* tried stone, a|strong=\"H3068\"* precious|strong=\"H3368\"* cornerstone|strong=\"H6438\"* of|strong=\"H3069\"* a|strong=\"H3068\"* sure|strong=\"H3245\"* foundation|strong=\"H3245\"*. He|strong=\"H3651\"* who|strong=\"H3808\"* believes shall|strong=\"H3808\"* not|strong=\"H3808\"* act hastily." + }, + { + "verseNum": 17, + "text": "I|strong=\"H7760\"* will|strong=\"H4325\"* make|strong=\"H7760\"* justice|strong=\"H4941\"* the|strong=\"H7760\"* measuring|strong=\"H6957\"* line|strong=\"H6957\"*, and|strong=\"H4941\"* righteousness|strong=\"H6666\"* the|strong=\"H7760\"* plumb line|strong=\"H6957\"*. The|strong=\"H7760\"* hail|strong=\"H1259\"* will|strong=\"H4325\"* sweep|strong=\"H3261\"* away|strong=\"H7857\"* the|strong=\"H7760\"* refuge|strong=\"H4268\"* of|strong=\"H4325\"* lies|strong=\"H3577\"*, and|strong=\"H4941\"* the|strong=\"H7760\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* overflow|strong=\"H7857\"* the|strong=\"H7760\"* hiding|strong=\"H5643\"* place|strong=\"H7760\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H3588\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* death|strong=\"H4194\"* shall|strong=\"H3808\"* be|strong=\"H1961\"* annulled, and|strong=\"H6965\"* your|strong=\"H3588\"* agreement|strong=\"H1285\"* with|strong=\"H1285\"* Sheol|strong=\"H7585\"*+ 28:18 Sheol is the place of the dead.* shall|strong=\"H3808\"* not|strong=\"H3808\"* stand|strong=\"H6965\"*. When|strong=\"H3588\"* the|strong=\"H3588\"* overflowing|strong=\"H7857\"* scourge|strong=\"H7752\"* passes|strong=\"H5674\"* through|strong=\"H5674\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* trampled|strong=\"H4823\"* down|strong=\"H4823\"* by|strong=\"H5674\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "As|strong=\"H3117\"* often|strong=\"H1767\"* as|strong=\"H3117\"* it|strong=\"H3588\"* passes|strong=\"H5674\"* through|strong=\"H5674\"*, it|strong=\"H3588\"* will|strong=\"H1961\"* seize|strong=\"H3947\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* morning|strong=\"H1242\"* by|strong=\"H5674\"* morning|strong=\"H1242\"* it|strong=\"H3588\"* will|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*, by|strong=\"H5674\"* day|strong=\"H3117\"* and|strong=\"H3117\"* by|strong=\"H5674\"* night|strong=\"H3915\"*; and|strong=\"H3117\"* it|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* nothing|strong=\"H1767\"* but|strong=\"H3588\"* terror|strong=\"H2113\"* to|strong=\"H1961\"* understand the|strong=\"H3588\"* message|strong=\"H8052\"*.”" + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* bed|strong=\"H4702\"* is|strong=\"H4702\"* too short|strong=\"H7114\"* to|strong=\"H3588\"* stretch|strong=\"H8311\"* out on|strong=\"H6887\"*, and|strong=\"H4541\"* the|strong=\"H3588\"* blanket|strong=\"H4541\"* is|strong=\"H4702\"* too narrow to|strong=\"H3588\"* wrap|strong=\"H3664\"* oneself in|strong=\"H3588\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H6213\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Perazim|strong=\"H6559\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* angry as|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H3588\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* Gibeon|strong=\"H1391\"*; that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* do|strong=\"H6213\"* his|strong=\"H3068\"* work|strong=\"H4639\"*, his|strong=\"H3068\"* unusual|strong=\"H2114\"* work|strong=\"H4639\"*, and|strong=\"H6965\"* bring|strong=\"H6213\"* to|strong=\"H3068\"* pass|strong=\"H6213\"* his|strong=\"H3068\"* act|strong=\"H6213\"*, his|strong=\"H3068\"* extraordinary|strong=\"H5237\"* act|strong=\"H6213\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* don’t be|strong=\"H3069\"* scoffers, lest|strong=\"H6435\"* your|strong=\"H3605\"* bonds|strong=\"H4147\"* be|strong=\"H3069\"* made|strong=\"H2388\"* strong|strong=\"H2388\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* decree of|strong=\"H6635\"* destruction|strong=\"H3617\"* from|strong=\"H5921\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H6635\"* Armies|strong=\"H6635\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth." + }, + { + "verseNum": 23, + "text": "Give|strong=\"H7181\"* ear|strong=\"H8085\"*, and|strong=\"H6963\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*! Listen|strong=\"H8085\"*, and|strong=\"H6963\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* speech!" + }, + { + "verseNum": 24, + "text": "Does he|strong=\"H3117\"* who|strong=\"H3605\"* plows to|strong=\"H3117\"* sow|strong=\"H2232\"* plow|strong=\"H2790\"* continually|strong=\"H3605\"*? Does he|strong=\"H3117\"* keep|strong=\"H2790\"* turning the|strong=\"H3605\"* soil and|strong=\"H3117\"* breaking the|strong=\"H3605\"* clods|strong=\"H7702\"*?" + }, + { + "verseNum": 25, + "text": "When he|strong=\"H3808\"* has leveled its|strong=\"H7760\"* surface|strong=\"H6440\"*, doesn’t he|strong=\"H3808\"* plant|strong=\"H7760\"* the|strong=\"H6440\"* dill|strong=\"H7100\"*, and|strong=\"H6440\"* scatter|strong=\"H6327\"* the|strong=\"H6440\"* cumin seed, and|strong=\"H6440\"* put|strong=\"H7760\"* in|strong=\"H6440\"* the|strong=\"H6440\"* wheat|strong=\"H2406\"* in|strong=\"H6440\"* rows|strong=\"H7795\"*, the|strong=\"H6440\"* barley|strong=\"H8184\"* in|strong=\"H6440\"* the|strong=\"H6440\"* appointed|strong=\"H7760\"* place|strong=\"H7760\"*, and|strong=\"H6440\"* the|strong=\"H6440\"* spelt|strong=\"H3698\"* in|strong=\"H6440\"* its|strong=\"H7760\"* place|strong=\"H7760\"*?" + }, + { + "verseNum": 26, + "text": "For|strong=\"H4941\"* his|strong=\"H3256\"* God instructs|strong=\"H3256\"* him|strong=\"H3384\"* in|strong=\"H4941\"* right|strong=\"H4941\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* teaches|strong=\"H3384\"* him|strong=\"H3384\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* dill|strong=\"H7100\"* isn’t threshed|strong=\"H1758\"* with|strong=\"H5921\"* a|strong=\"H3068\"* sharp|strong=\"H2742\"* instrument|strong=\"H2742\"*, neither|strong=\"H3808\"* is|strong=\"H7626\"* a|strong=\"H3068\"* cart|strong=\"H5699\"* wheel turned|strong=\"H5437\"* over|strong=\"H5921\"* the|strong=\"H5921\"* cumin; but|strong=\"H3588\"* the|strong=\"H5921\"* dill|strong=\"H7100\"* is|strong=\"H7626\"* beaten|strong=\"H2251\"* out|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* stick, and|strong=\"H5437\"* the|strong=\"H5921\"* cumin with|strong=\"H5921\"* a|strong=\"H3068\"* rod|strong=\"H7626\"*." + }, + { + "verseNum": 28, + "text": "Bread|strong=\"H3899\"* flour must|strong=\"H3808\"* be|strong=\"H3808\"* ground|strong=\"H1854\"*; so|strong=\"H3808\"* he|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* always|strong=\"H5331\"* be|strong=\"H3808\"* threshing|strong=\"H1758\"* it|strong=\"H3588\"*. Although|strong=\"H3588\"* he|strong=\"H3588\"* drives the|strong=\"H3588\"* wheel|strong=\"H1536\"* of|strong=\"H3899\"* his|strong=\"H3588\"* threshing|strong=\"H1758\"* cart|strong=\"H5699\"* over it|strong=\"H3588\"*, his|strong=\"H3588\"* horses|strong=\"H6571\"* don’t grind it|strong=\"H3588\"*." + }, + { + "verseNum": 29, + "text": "This|strong=\"H2063\"* also|strong=\"H1571\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* is|strong=\"H3068\"* wonderful|strong=\"H6381\"* in|strong=\"H3068\"* counsel|strong=\"H6098\"*, and|strong=\"H3068\"* excellent|strong=\"H1431\"* in|strong=\"H3068\"* wisdom|strong=\"H8454\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* Ariel! Ariel, the|strong=\"H5921\"* city|strong=\"H7151\"* where|strong=\"H5921\"* David|strong=\"H1732\"* encamped|strong=\"H2583\"*! Add|strong=\"H5595\"* year|strong=\"H8141\"* to|strong=\"H5921\"* year|strong=\"H8141\"*; let the|strong=\"H5921\"* feasts|strong=\"H2282\"* come around|strong=\"H5921\"*;" + }, + { + "verseNum": 2, + "text": "then|strong=\"H1961\"* I|strong=\"H1961\"* will|strong=\"H1961\"* distress|strong=\"H6693\"* Ariel, and|strong=\"H1961\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mourning|strong=\"H8386\"* and|strong=\"H1961\"* lamentation. She shall be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* altar hearth.+ 29:2 or, Ariel*" + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* will encamp|strong=\"H2583\"* against|strong=\"H5921\"* you|strong=\"H5921\"* all|strong=\"H5921\"* around|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H6965\"* will lay|strong=\"H6696\"* siege|strong=\"H6696\"* against|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5921\"* posted|strong=\"H6965\"* troops. I|strong=\"H5921\"* will raise|strong=\"H6965\"* siege|strong=\"H6696\"* works|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H1696\"* will|strong=\"H1961\"* be|strong=\"H1961\"* brought|strong=\"H1961\"* down|strong=\"H7817\"*, and|strong=\"H6963\"* will|strong=\"H1961\"* speak|strong=\"H1696\"* out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* ground|strong=\"H6083\"*. Your|strong=\"H1961\"* speech|strong=\"H1696\"* will|strong=\"H1961\"* mumble out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* dust|strong=\"H6083\"*. Your|strong=\"H1961\"* voice|strong=\"H6963\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* of|strong=\"H6963\"* one|strong=\"H1961\"* who has|strong=\"H1961\"* a|strong=\"H3068\"* familiar spirit, out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* ground|strong=\"H6083\"*, and|strong=\"H6963\"* your|strong=\"H1961\"* speech|strong=\"H1696\"* will|strong=\"H1961\"* whisper|strong=\"H6850\"* out|strong=\"H1696\"* of|strong=\"H6963\"* the|strong=\"H1961\"* dust|strong=\"H6083\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1961\"* the|strong=\"H5674\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* your|strong=\"H1961\"* foes will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* fine|strong=\"H1851\"* dust|strong=\"H1851\"*, and|strong=\"H5674\"* the|strong=\"H5674\"* multitude|strong=\"H1995\"* of|strong=\"H1995\"* the|strong=\"H5674\"* ruthless|strong=\"H6184\"* ones|strong=\"H6184\"* like|strong=\"H1961\"* chaff|strong=\"H4671\"* that|strong=\"H1961\"* blows|strong=\"H5674\"* away|strong=\"H5674\"*. Yes, it|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* an|strong=\"H1961\"* instant|strong=\"H6621\"*, suddenly|strong=\"H6597\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H5973\"* will|strong=\"H3068\"* be|strong=\"H3068\"* visited|strong=\"H6485\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* with|strong=\"H5973\"* thunder|strong=\"H6963\"*, with|strong=\"H5973\"* earthquake|strong=\"H7494\"*, with|strong=\"H5973\"* great|strong=\"H1419\"* noise|strong=\"H6963\"*, with|strong=\"H5973\"* whirlwind|strong=\"H5591\"* and|strong=\"H3068\"* storm|strong=\"H5591\"*, and|strong=\"H3068\"* with|strong=\"H5973\"* the|strong=\"H3068\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* Ariel, even|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* her|strong=\"H3605\"* and|strong=\"H3915\"* her|strong=\"H3605\"* stronghold|strong=\"H4685\"*, and|strong=\"H3915\"* who|strong=\"H3605\"* distress|strong=\"H6693\"* her|strong=\"H3605\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, a|strong=\"H3068\"* vision|strong=\"H2377\"* of|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* when|strong=\"H1961\"* a|strong=\"H3068\"* hungry|strong=\"H7457\"* man|strong=\"H5315\"* dreams|strong=\"H2492\"*, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* eats; but|strong=\"H1961\"* he|strong=\"H3651\"* awakes, and|strong=\"H1471\"* his|strong=\"H3605\"* hunger|strong=\"H5315\"* isn’t satisfied|strong=\"H7386\"*; or|strong=\"H1471\"* like|strong=\"H1961\"* when|strong=\"H1961\"* a|strong=\"H3068\"* thirsty|strong=\"H6771\"* man|strong=\"H5315\"* dreams|strong=\"H2492\"*, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* drinks|strong=\"H8354\"*; but|strong=\"H1961\"* he|strong=\"H3651\"* awakes, and|strong=\"H1471\"* behold|strong=\"H2009\"*, he|strong=\"H3651\"* is|strong=\"H5315\"* faint|strong=\"H5889\"*, and|strong=\"H1471\"* he|strong=\"H3651\"* is|strong=\"H5315\"* still|strong=\"H1471\"* thirsty|strong=\"H6771\"*. The|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H2022\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* fight|strong=\"H6633\"* against|strong=\"H5921\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* that|strong=\"H3605\"*." + }, + { + "verseNum": 9, + "text": "Pause and|strong=\"H3196\"* wonder|strong=\"H8539\"*! Blind|strong=\"H8173\"* yourselves and|strong=\"H3196\"* be|strong=\"H3808\"* blind|strong=\"H8173\"*! They|strong=\"H3808\"* are|strong=\"H3808\"* drunken|strong=\"H7937\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H7937\"* wine|strong=\"H3196\"*; they|strong=\"H3808\"* stagger|strong=\"H5128\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H7937\"* strong|strong=\"H7941\"* drink|strong=\"H7941\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* on|strong=\"H5921\"* you|strong=\"H3588\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* deep|strong=\"H8639\"* sleep|strong=\"H8639\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* closed|strong=\"H3680\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, the|strong=\"H5921\"* prophets|strong=\"H5030\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* has|strong=\"H3068\"* covered|strong=\"H3680\"* your|strong=\"H3068\"* heads|strong=\"H7218\"*, the|strong=\"H5921\"* seers|strong=\"H2374\"*." + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* vision|strong=\"H2380\"* has|strong=\"H1961\"* become|strong=\"H1961\"* to|strong=\"H3201\"* you|strong=\"H3588\"* like|strong=\"H1961\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* a|strong=\"H3068\"* book|strong=\"H5612\"* that|strong=\"H3588\"* is|strong=\"H2088\"* sealed|strong=\"H2856\"*, which|strong=\"H1931\"* men|strong=\"H3605\"* deliver|strong=\"H5414\"* to|strong=\"H3201\"* one|strong=\"H2088\"* who|strong=\"H3605\"* is|strong=\"H2088\"* educated, saying|strong=\"H1697\"*, “Read|strong=\"H7121\"* this|strong=\"H2088\"*, please|strong=\"H4994\"*;” and|strong=\"H1697\"* he|strong=\"H1931\"* says|strong=\"H1697\"*, “I|strong=\"H3588\"* can|strong=\"H3201\"*’t, for|strong=\"H3588\"* it|strong=\"H5414\"* is|strong=\"H2088\"* sealed|strong=\"H2856\"*;”" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3045\"* the|strong=\"H5921\"* book|strong=\"H5612\"* is|strong=\"H2088\"* delivered|strong=\"H5414\"* to|strong=\"H5921\"* one|strong=\"H2088\"* who|strong=\"H2088\"* is|strong=\"H2088\"* not|strong=\"H3808\"* educated, saying, “Read|strong=\"H7121\"* this|strong=\"H2088\"*, please|strong=\"H4994\"*;” and|strong=\"H3045\"* he|strong=\"H5414\"* says, “I|strong=\"H5414\"* can|strong=\"H3045\"*’t read|strong=\"H7121\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* Lord said|strong=\"H6310\"*, “Because|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* draws near|strong=\"H5066\"* with|strong=\"H5971\"* their|strong=\"H3588\"* mouth|strong=\"H6310\"* and|strong=\"H5971\"* honors|strong=\"H3513\"* me|strong=\"H4480\"* with|strong=\"H5971\"* their|strong=\"H3588\"* lips|strong=\"H8193\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* removed|strong=\"H7368\"* their|strong=\"H3588\"* heart|strong=\"H3820\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*, and|strong=\"H5971\"* their|strong=\"H3588\"* fear|strong=\"H3373\"* of|strong=\"H6310\"* me|strong=\"H4480\"* is|strong=\"H2088\"* a|strong=\"H3068\"* commandment|strong=\"H4687\"* of|strong=\"H6310\"* men|strong=\"H5971\"* which|strong=\"H5971\"* has|strong=\"H1961\"* been|strong=\"H1961\"* taught|strong=\"H3925\"*;" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5971\"* proceed|strong=\"H3254\"* to|strong=\"H5971\"* do|strong=\"H3254\"* a|strong=\"H3068\"* marvelous|strong=\"H6381\"* work|strong=\"H6381\"* among|strong=\"H6381\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, even|strong=\"H3651\"* a|strong=\"H3068\"* marvelous|strong=\"H6381\"* work|strong=\"H6381\"* and|strong=\"H5971\"* a|strong=\"H3068\"* wonder|strong=\"H6382\"*; and|strong=\"H5971\"* the|strong=\"H3651\"* wisdom|strong=\"H2451\"* of|strong=\"H5971\"* their|strong=\"H3651\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* will|strong=\"H5971\"* perish, and|strong=\"H5971\"* the|strong=\"H3651\"* understanding of|strong=\"H5971\"* their|strong=\"H3651\"* prudent men|strong=\"H2450\"* will|strong=\"H5971\"* be|strong=\"H3254\"* hidden|strong=\"H5641\"*.”" + }, + { + "verseNum": 15, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3068\"* those|strong=\"H1945\"* who|strong=\"H4310\"* deeply|strong=\"H6009\"* hide|strong=\"H5641\"* their|strong=\"H3068\"* counsel|strong=\"H6098\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* whose|strong=\"H4310\"* deeds|strong=\"H4639\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H7200\"* dark|strong=\"H4285\"*, and|strong=\"H3068\"* who|strong=\"H4310\"* say, “Who|strong=\"H4310\"* sees|strong=\"H7200\"* us|strong=\"H3045\"*?” and|strong=\"H3068\"* “Who|strong=\"H4310\"* knows|strong=\"H3045\"* us|strong=\"H3045\"*?”" + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* turn things|strong=\"H4639\"* upside down|strong=\"H2017\"*! Should|strong=\"H3588\"* the|strong=\"H3588\"* potter|strong=\"H3335\"* be|strong=\"H3808\"* thought|strong=\"H2803\"* to|strong=\"H6213\"* be|strong=\"H3808\"* like|strong=\"H2803\"* clay|strong=\"H2563\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* made|strong=\"H6213\"* should|strong=\"H3588\"* say about|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H3588\"* made|strong=\"H6213\"* it|strong=\"H3588\"*, “He|strong=\"H3588\"* didn’t make|strong=\"H6213\"* me|strong=\"H6213\"*;” or|strong=\"H3808\"* the|strong=\"H3588\"* thing|strong=\"H3588\"* formed|strong=\"H3335\"* say of|strong=\"H4639\"* him|strong=\"H6213\"* who|strong=\"H3588\"* formed|strong=\"H3335\"* it|strong=\"H3588\"*, “He|strong=\"H3588\"* has|strong=\"H3588\"* no|strong=\"H3808\"* understanding”?" + }, + { + "verseNum": 17, + "text": "Isn’t it|strong=\"H7725\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* very|strong=\"H4213\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H7725\"* Lebanon|strong=\"H3844\"* will|strong=\"H3808\"* be|strong=\"H3808\"* turned|strong=\"H7725\"* into|strong=\"H7725\"* a|strong=\"H3068\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*, and|strong=\"H7725\"* the|strong=\"H7725\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"* will|strong=\"H3808\"* be|strong=\"H3808\"* regarded|strong=\"H2803\"* as|strong=\"H2803\"* a|strong=\"H3068\"* forest|strong=\"H3293\"*?" + }, + { + "verseNum": 18, + "text": "In|strong=\"H8085\"* that|strong=\"H7200\"* day|strong=\"H3117\"*, the|strong=\"H8085\"* deaf|strong=\"H2795\"* will|strong=\"H5869\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3117\"* the|strong=\"H8085\"* book|strong=\"H5612\"*, and|strong=\"H3117\"* the|strong=\"H8085\"* eyes|strong=\"H5869\"* of|strong=\"H3117\"* the|strong=\"H8085\"* blind|strong=\"H5787\"* will|strong=\"H5869\"* see|strong=\"H7200\"* out|strong=\"H7200\"* of|strong=\"H3117\"* obscurity|strong=\"H2822\"* and|strong=\"H3117\"* out|strong=\"H7200\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* humble|strong=\"H6035\"* also|strong=\"H3068\"* will|strong=\"H3068\"* increase|strong=\"H3254\"* their|strong=\"H3068\"* joy|strong=\"H8057\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* the|strong=\"H3068\"* poor|strong=\"H6035\"* among|strong=\"H3478\"* men|strong=\"H3478\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* in|strong=\"H3478\"* the|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* ruthless|strong=\"H6184\"* is|strong=\"H3605\"* brought|strong=\"H3615\"* to|strong=\"H3588\"* nothing|strong=\"H3605\"*, and|strong=\"H3605\"* the|strong=\"H3605\"* scoffer ceases, and|strong=\"H3605\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3772\"* alert to|strong=\"H3588\"* do|strong=\"H3605\"* evil are|strong=\"H3772\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*—" + }, + { + "verseNum": 21, + "text": "who|strong=\"H6662\"* cause|strong=\"H1697\"* a|strong=\"H3068\"* person|strong=\"H3198\"* to|strong=\"H1697\"* be|strong=\"H1697\"* indicted|strong=\"H2398\"* by|strong=\"H2398\"* a|strong=\"H3068\"* word|strong=\"H1697\"*, and|strong=\"H1697\"* lay a|strong=\"H3068\"* snare|strong=\"H6983\"* for|strong=\"H1697\"* one|strong=\"H6662\"* who|strong=\"H6662\"* reproves|strong=\"H3198\"* in|strong=\"H1697\"* the|strong=\"H1697\"* gate|strong=\"H8179\"*, and|strong=\"H1697\"* who|strong=\"H6662\"* deprive|strong=\"H5186\"* the|strong=\"H1697\"* innocent|strong=\"H6662\"* of|strong=\"H1697\"* justice with|strong=\"H1697\"* false testimony|strong=\"H1697\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* redeemed|strong=\"H6299\"* Abraham, says|strong=\"H3541\"* concerning|strong=\"H3068\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*: “Jacob|strong=\"H3290\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H3808\"* be|strong=\"H3808\"* ashamed, neither|strong=\"H3808\"* shall|strong=\"H3068\"* his|strong=\"H3068\"* face|strong=\"H6440\"* grow pale|strong=\"H2357\"*." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* he|strong=\"H3588\"* sees|strong=\"H7200\"* his|strong=\"H7200\"* children|strong=\"H3206\"*, the|strong=\"H7200\"* work|strong=\"H4639\"* of|strong=\"H3027\"* my|strong=\"H7200\"* hands|strong=\"H3027\"*, in|strong=\"H3478\"* the|strong=\"H7200\"* middle|strong=\"H7130\"* of|strong=\"H3027\"* him|strong=\"H3027\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* sanctify|strong=\"H6942\"* my|strong=\"H7200\"* name|strong=\"H8034\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* sanctify|strong=\"H6942\"* the|strong=\"H7200\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3027\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* stand|strong=\"H6206\"* in|strong=\"H3478\"* awe|strong=\"H6206\"* of|strong=\"H3027\"* the|strong=\"H7200\"* God|strong=\"H3027\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3045\"* also|strong=\"H3045\"* who|strong=\"H3045\"* err|strong=\"H8582\"* in|strong=\"H3925\"* spirit|strong=\"H7307\"* will|strong=\"H7307\"* come|strong=\"H3045\"* to|strong=\"H3045\"* understanding, and|strong=\"H3045\"* those who|strong=\"H3045\"* grumble will|strong=\"H7307\"* receive instruction|strong=\"H3948\"*.”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5002\"* rebellious|strong=\"H5637\"* children|strong=\"H1121\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* take|strong=\"H6213\"* counsel|strong=\"H6098\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* from|strong=\"H4480\"* me|strong=\"H5921\"*; and|strong=\"H1121\"* who|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* alliance|strong=\"H4541\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H3068\"* my|strong=\"H3068\"* Spirit|strong=\"H7307\"*, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H3068\"* add|strong=\"H5595\"* sin|strong=\"H2403\"* to|strong=\"H3068\"* sin|strong=\"H2403\"*;" + }, + { + "verseNum": 2, + "text": "who|strong=\"H6547\"* set|strong=\"H1980\"* out|strong=\"H1980\"* to|strong=\"H1980\"* go|strong=\"H1980\"* down|strong=\"H3381\"* into|strong=\"H1980\"* Egypt|strong=\"H4714\"* without|strong=\"H3808\"* asking|strong=\"H7592\"* for|strong=\"H4714\"* my|strong=\"H3381\"* advice|strong=\"H6310\"*, to|strong=\"H1980\"* strengthen|strong=\"H5810\"* themselves in|strong=\"H1980\"* the|strong=\"H1980\"* strength|strong=\"H4581\"* of|strong=\"H6310\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H1980\"* the|strong=\"H1980\"* shadow|strong=\"H6738\"* of|strong=\"H6310\"* Egypt|strong=\"H4714\"*!" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1961\"* the|strong=\"H1961\"* strength|strong=\"H4581\"* of|strong=\"H4581\"* Pharaoh|strong=\"H6547\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H1961\"* shame|strong=\"H1322\"*, and|strong=\"H4714\"* the|strong=\"H1961\"* refuge|strong=\"H4581\"* in|strong=\"H1961\"* the|strong=\"H1961\"* shadow|strong=\"H6738\"* of|strong=\"H4581\"* Egypt|strong=\"H4714\"* your|strong=\"H1961\"* confusion|strong=\"H1322\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* their|strong=\"H3588\"* princes|strong=\"H8269\"* are|strong=\"H8269\"* at|strong=\"H1961\"* Zoan|strong=\"H6814\"*, and|strong=\"H8269\"* their|strong=\"H3588\"* ambassadors|strong=\"H4397\"* have|strong=\"H1961\"* come|strong=\"H1961\"* to|strong=\"H1961\"* Hanes|strong=\"H2609\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* shall|strong=\"H5971\"* all|strong=\"H3605\"* be|strong=\"H3808\"* ashamed|strong=\"H1322\"* because|strong=\"H3588\"* of|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"* that|strong=\"H3588\"* can|strong=\"H3808\"*’t profit|strong=\"H3276\"* them|strong=\"H5921\"*, that|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* a|strong=\"H3068\"* help|strong=\"H5828\"* nor|strong=\"H3808\"* profit|strong=\"H3276\"*, but|strong=\"H3588\"* a|strong=\"H3068\"* shame|strong=\"H1322\"*, and|strong=\"H5971\"* also|strong=\"H1571\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*.”" + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* burden|strong=\"H4853\"* of|strong=\"H5971\"* the|strong=\"H5921\"* animals of|strong=\"H5971\"* the|strong=\"H5921\"* South|strong=\"H5045\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H7121\"* Egypt|strong=\"H4714\"* helps|strong=\"H5826\"* in|strong=\"H7121\"* vain|strong=\"H1892\"*, and|strong=\"H4714\"* to|strong=\"H4714\"* no purpose|strong=\"H7385\"*; therefore|strong=\"H3651\"* I|strong=\"H3651\"* have|strong=\"H4714\"* called|strong=\"H7121\"* her|strong=\"H7121\"* Rahab|strong=\"H7293\"* who|strong=\"H1992\"* sits still|strong=\"H7674\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* go|strong=\"H1961\"*, write|strong=\"H3789\"* it|strong=\"H5921\"* before|strong=\"H5921\"* them|strong=\"H5921\"* on|strong=\"H5921\"* a|strong=\"H3068\"* tablet|strong=\"H3871\"*, and|strong=\"H3117\"* inscribe|strong=\"H2710\"* it|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, that|strong=\"H3117\"* it|strong=\"H5921\"* may|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H5921\"* time|strong=\"H3117\"* to|strong=\"H5704\"* come|strong=\"H1961\"* forever|strong=\"H5769\"* and|strong=\"H3117\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* people|strong=\"H5971\"*, lying|strong=\"H3586\"* children|strong=\"H1121\"*, children|strong=\"H1121\"* who|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"*;" + }, + { + "verseNum": 10, + "text": "who|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H7200\"* seers|strong=\"H2374\"*, “Don’t see|strong=\"H7200\"*!” and|strong=\"H7200\"* the|strong=\"H7200\"* prophets|strong=\"H2374\"*, “Don’t prophesy|strong=\"H2372\"* to|strong=\"H1696\"* us|strong=\"H7200\"* right|strong=\"H5229\"* things|strong=\"H5229\"*. Tell|strong=\"H1696\"* us|strong=\"H7200\"* pleasant|strong=\"H2513\"* things|strong=\"H5229\"*. Prophesy|strong=\"H2372\"* deceits|strong=\"H4123\"*." + }, + { + "verseNum": 11, + "text": "Get|strong=\"H5493\"* out|strong=\"H5186\"* of|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H1870\"*. Turn|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H6440\"* path|strong=\"H1870\"*. Cause the|strong=\"H6440\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* before|strong=\"H6440\"* us|strong=\"H6440\"*.”" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Because|strong=\"H5921\"* you|strong=\"H5921\"* despise|strong=\"H3988\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, and|strong=\"H3478\"* trust|strong=\"H8172\"* in|strong=\"H5921\"* oppression|strong=\"H6233\"* and|strong=\"H3478\"* perverseness|strong=\"H3868\"*, and|strong=\"H3478\"* rely|strong=\"H8172\"* on|strong=\"H5921\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 13, + "text": "therefore|strong=\"H3651\"* this|strong=\"H2088\"* iniquity|strong=\"H5771\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* to|strong=\"H1961\"* you|strong=\"H3651\"* like|strong=\"H1961\"* a|strong=\"H3068\"* breach|strong=\"H6556\"* ready to|strong=\"H1961\"* fall|strong=\"H5307\"*, swelling out|strong=\"H5307\"* in|strong=\"H5307\"* a|strong=\"H3068\"* high|strong=\"H7682\"* wall|strong=\"H2346\"*, whose breaking|strong=\"H7667\"* comes|strong=\"H1961\"* suddenly|strong=\"H6597\"* in|strong=\"H5307\"* an|strong=\"H1961\"* instant|strong=\"H6621\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* break|strong=\"H7665\"* it|strong=\"H3808\"* as|strong=\"H4325\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s vessel|strong=\"H2789\"* is|strong=\"H4325\"* broken|strong=\"H7665\"*, breaking|strong=\"H7667\"* it|strong=\"H3808\"* in|strong=\"H4672\"* pieces|strong=\"H7665\"* without|strong=\"H3808\"* sparing|strong=\"H2550\"*, so|strong=\"H3808\"* that|strong=\"H4325\"* there|strong=\"H4672\"* won’t be|strong=\"H3808\"* found|strong=\"H4672\"* among|strong=\"H4672\"* the|strong=\"H7665\"* broken|strong=\"H7665\"* pieces|strong=\"H7665\"* a|strong=\"H3068\"* piece good enough|strong=\"H4672\"* to|strong=\"H4325\"* take|strong=\"H2846\"* fire from|strong=\"H4325\"* the|strong=\"H7665\"* hearth|strong=\"H3344\"*, or|strong=\"H3808\"* to|strong=\"H4325\"* dip up|strong=\"H2834\"* water|strong=\"H4325\"* out|strong=\"H4672\"* of|strong=\"H4325\"* the|strong=\"H7665\"* cistern|strong=\"H1360\"*.”" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* thus|strong=\"H3541\"* said the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6918\"* Israel|strong=\"H3478\"*, “You|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* saved|strong=\"H3467\"* in|strong=\"H3478\"* returning|strong=\"H7729\"* and|strong=\"H3478\"* rest|strong=\"H8252\"*. Your|strong=\"H3588\"* strength|strong=\"H1369\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H3478\"* quietness|strong=\"H8252\"* and|strong=\"H3478\"* in|strong=\"H3478\"* confidence.” You|strong=\"H3588\"* refused|strong=\"H3808\"*," + }, + { + "verseNum": 16, + "text": "but|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H3651\"*, “No|strong=\"H3808\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3808\"* flee|strong=\"H5127\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*;” therefore|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3808\"* flee|strong=\"H5127\"*; and|strong=\"H5483\"*, “We|strong=\"H3588\"* will|strong=\"H3808\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* the|strong=\"H5921\"* swift|strong=\"H7031\"*;” therefore|strong=\"H3651\"* those|strong=\"H5921\"* who|strong=\"H3588\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* swift|strong=\"H7031\"*." + }, + { + "verseNum": 17, + "text": "One thousand will|strong=\"H2022\"* flee|strong=\"H5127\"* at|strong=\"H5921\"* the|strong=\"H6440\"* threat|strong=\"H1606\"* of|strong=\"H2022\"* one. At|strong=\"H5921\"* the|strong=\"H6440\"* threat|strong=\"H1606\"* of|strong=\"H2022\"* five|strong=\"H2568\"*, you|strong=\"H6440\"* will|strong=\"H2022\"* flee|strong=\"H5127\"* until|strong=\"H5704\"* you|strong=\"H6440\"* are|strong=\"H2022\"* left|strong=\"H3498\"* like|strong=\"H1389\"* a|strong=\"H3068\"* beacon|strong=\"H8650\"* on|strong=\"H5921\"* the|strong=\"H6440\"* top|strong=\"H7218\"* of|strong=\"H2022\"* a|strong=\"H3068\"* mountain|strong=\"H2022\"*, and|strong=\"H7218\"* like|strong=\"H1389\"* a|strong=\"H3068\"* banner|strong=\"H5251\"* on|strong=\"H5921\"* a|strong=\"H3068\"* hill|strong=\"H2022\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* wait|strong=\"H2442\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* you|strong=\"H3588\"*; and|strong=\"H3068\"* therefore|strong=\"H3651\"* he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* exalted|strong=\"H7311\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H3068\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* a|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*. Blessed are|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* wait|strong=\"H2442\"* for|strong=\"H3588\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* the|strong=\"H8085\"* people|strong=\"H5971\"* will|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*. You|strong=\"H3588\"* will|strong=\"H5971\"* weep|strong=\"H1058\"* no|strong=\"H3808\"* more|strong=\"H3808\"*. He|strong=\"H3588\"* will|strong=\"H5971\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* gracious|strong=\"H2603\"* to|strong=\"H3389\"* you|strong=\"H3588\"* at|strong=\"H3427\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3427\"* your|strong=\"H8085\"* cry|strong=\"H2201\"*. When|strong=\"H3588\"* he|strong=\"H3588\"* hears|strong=\"H8085\"* you|strong=\"H3588\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* answer|strong=\"H6030\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 20, + "text": "Though the|strong=\"H7200\"* Lord may|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H7200\"* bread|strong=\"H3899\"* of|strong=\"H5869\"* adversity|strong=\"H6862\"* and|strong=\"H3899\"* the|strong=\"H7200\"* water|strong=\"H4325\"* of|strong=\"H5869\"* affliction|strong=\"H3906\"*, yet|strong=\"H5750\"* your|strong=\"H5414\"* teachers|strong=\"H3384\"* won’t be|strong=\"H1961\"* hidden any|strong=\"H5750\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H1961\"* see|strong=\"H7200\"* your|strong=\"H5414\"* teachers|strong=\"H3384\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3212\"* when|strong=\"H3588\"* you|strong=\"H3588\"* turn to|strong=\"H3212\"* the|strong=\"H8085\"* right hand, and|strong=\"H3212\"* when|strong=\"H3588\"* you|strong=\"H3588\"* turn to|strong=\"H3212\"* the|strong=\"H8085\"* left|strong=\"H8041\"*, your|strong=\"H8085\"* ears will|strong=\"H1697\"* hear|strong=\"H8085\"* a|strong=\"H3068\"* voice behind you|strong=\"H3588\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H8085\"* way|strong=\"H1870\"*. Walk|strong=\"H3212\"* in|strong=\"H8085\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 22, + "text": "You|strong=\"H3644\"* shall|strong=\"H3701\"* defile|strong=\"H2930\"* the|strong=\"H3318\"* overlaying|strong=\"H6826\"* of|strong=\"H3318\"* your|strong=\"H3318\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3318\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* the|strong=\"H3318\"* plating|strong=\"H6826\"* of|strong=\"H3318\"* your|strong=\"H3318\"* molten|strong=\"H4541\"* images|strong=\"H6456\"* of|strong=\"H3318\"* gold|strong=\"H2091\"*. You|strong=\"H3644\"* shall|strong=\"H3701\"* cast them|strong=\"H3318\"* away|strong=\"H3318\"* as|strong=\"H3644\"* an|strong=\"H3318\"* unclean|strong=\"H2930\"* thing|strong=\"H1739\"*. You|strong=\"H3644\"* shall|strong=\"H3701\"* tell it|strong=\"H2930\"*, “Go|strong=\"H3318\"* away|strong=\"H3318\"*!”" + }, + { + "verseNum": 23, + "text": "He|strong=\"H1931\"* will|strong=\"H1961\"* give|strong=\"H5414\"* the|strong=\"H5414\"* rain|strong=\"H4306\"* for|strong=\"H3117\"* your|strong=\"H5414\"* seed|strong=\"H2233\"*, with|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H5414\"* will|strong=\"H1961\"* sow|strong=\"H2232\"* the|strong=\"H5414\"* ground; and|strong=\"H3117\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* the|strong=\"H5414\"* increase|strong=\"H8393\"* of|strong=\"H3117\"* the|strong=\"H5414\"* ground will|strong=\"H1961\"* be|strong=\"H1961\"* rich|strong=\"H8082\"* and|strong=\"H3117\"* plentiful. In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, your|strong=\"H5414\"* livestock|strong=\"H4735\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* in|strong=\"H3117\"* large|strong=\"H7337\"* pastures|strong=\"H3733\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5647\"* oxen likewise and|strong=\"H5647\"* the|strong=\"H5647\"* young|strong=\"H5895\"* donkeys|strong=\"H5895\"* that|strong=\"H5895\"* till|strong=\"H5647\"* the|strong=\"H5647\"* ground will|strong=\"H5647\"* eat savory feed|strong=\"H1098\"*, which|strong=\"H5895\"* has been|strong=\"H5647\"* winnowed|strong=\"H2219\"* with|strong=\"H5647\"* the|strong=\"H5647\"* shovel|strong=\"H7371\"* and|strong=\"H5647\"* with|strong=\"H5647\"* the|strong=\"H5647\"* fork|strong=\"H4214\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* brooks and|strong=\"H3117\"* streams|strong=\"H6388\"* of|strong=\"H3117\"* water|strong=\"H4325\"* on|strong=\"H5921\"* every|strong=\"H3605\"* lofty|strong=\"H1364\"* mountain|strong=\"H2022\"* and|strong=\"H3117\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* hill|strong=\"H2022\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3605\"* great|strong=\"H7227\"* slaughter|strong=\"H2027\"*, when|strong=\"H1961\"* the|strong=\"H3605\"* towers|strong=\"H4026\"* fall|strong=\"H5307\"*." + }, + { + "verseNum": 26, + "text": "Moreover|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* moon|strong=\"H3842\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H2535\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* the|strong=\"H3068\"* sun|strong=\"H2535\"* will|strong=\"H3068\"* be|strong=\"H1961\"* seven|strong=\"H7651\"* times|strong=\"H3117\"* brighter, like|strong=\"H1961\"* the|strong=\"H3068\"* light of|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* binds|strong=\"H2280\"* up|strong=\"H2280\"* the|strong=\"H3068\"* fracture|strong=\"H7667\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* heals|strong=\"H7495\"* the|strong=\"H3068\"* wound|strong=\"H4347\"* they|strong=\"H3117\"* were|strong=\"H1961\"* struck with|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* comes|strong=\"H4390\"* from|strong=\"H3068\"* far|strong=\"H4801\"* away|strong=\"H1197\"*, burning|strong=\"H1197\"* with|strong=\"H4390\"* his|strong=\"H3068\"* anger|strong=\"H2195\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* thick rising smoke|strong=\"H4858\"*. His|strong=\"H3068\"* lips|strong=\"H8193\"* are|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* indignation|strong=\"H2195\"*. His|strong=\"H3068\"* tongue|strong=\"H3956\"* is|strong=\"H3068\"* as|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire." + }, + { + "verseNum": 28, + "text": "His|strong=\"H5921\"* breath|strong=\"H7307\"* is|strong=\"H7307\"* as|strong=\"H5704\"* an|strong=\"H5130\"* overflowing|strong=\"H7857\"* stream|strong=\"H5158\"* that|strong=\"H5971\"* reaches|strong=\"H5704\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* neck|strong=\"H6677\"*, to|strong=\"H5704\"* sift|strong=\"H5130\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sieve|strong=\"H5299\"* of|strong=\"H7307\"* destruction. A|strong=\"H3068\"* bridle|strong=\"H7448\"* that|strong=\"H5971\"* leads|strong=\"H8582\"* to|strong=\"H5704\"* ruin|strong=\"H8582\"* will|strong=\"H1471\"* be|strong=\"H1471\"* in|strong=\"H5921\"* the|strong=\"H5921\"* jaws|strong=\"H3895\"* of|strong=\"H7307\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3915\"* will|strong=\"H3068\"* have|strong=\"H1961\"* a|strong=\"H3068\"* song|strong=\"H7892\"*, as|strong=\"H1961\"* in|strong=\"H1980\"* the|strong=\"H3068\"* night|strong=\"H3915\"* when|strong=\"H1961\"* a|strong=\"H3068\"* holy|strong=\"H6942\"* feast|strong=\"H2282\"* is|strong=\"H3068\"* kept|strong=\"H6942\"*, and|strong=\"H1980\"* gladness|strong=\"H8057\"* of|strong=\"H3068\"* heart|strong=\"H3824\"*, as|strong=\"H1961\"* when|strong=\"H1961\"* one|strong=\"H1961\"* goes|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* flute|strong=\"H2485\"* to|strong=\"H1980\"* come|strong=\"H1980\"* to|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s mountain|strong=\"H2022\"*, to|strong=\"H1980\"* Israel|strong=\"H3478\"*’s Rock|strong=\"H6697\"*." + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cause his|strong=\"H3068\"* glorious|strong=\"H1935\"* voice|strong=\"H6963\"* to|strong=\"H3068\"* be|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* show|strong=\"H7200\"* the|strong=\"H8085\"* descent of|strong=\"H3068\"* his|strong=\"H3068\"* arm|strong=\"H2220\"*, with|strong=\"H3068\"* the|strong=\"H8085\"* indignation|strong=\"H2197\"* of|strong=\"H3068\"* his|strong=\"H3068\"* anger and|strong=\"H3068\"* the|strong=\"H8085\"* flame|strong=\"H3851\"* of|strong=\"H3068\"* a|strong=\"H3068\"* devouring fire, with|strong=\"H3068\"* a|strong=\"H3068\"* blast, storm|strong=\"H2230\"*, and|strong=\"H3068\"* hailstones|strong=\"H1259\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* through|strong=\"H6963\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* the|strong=\"H3588\"* Assyrian will|strong=\"H3068\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3068\"* his|strong=\"H3068\"* rod|strong=\"H7626\"*." + }, + { + "verseNum": 32, + "text": "Every|strong=\"H3605\"* stroke of|strong=\"H3068\"* the|strong=\"H3605\"* rod|strong=\"H4294\"* of|strong=\"H3068\"* punishment|strong=\"H4145\"*, which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* lay|strong=\"H5117\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, will|strong=\"H3068\"* be|strong=\"H1961\"* with|strong=\"H3068\"* the|strong=\"H3605\"* sound of|strong=\"H3068\"* tambourines|strong=\"H8596\"* and|strong=\"H3068\"* harps|strong=\"H3658\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* them|strong=\"H5921\"* in|strong=\"H5921\"* battles|strong=\"H4421\"*, brandishing|strong=\"H8573\"* weapons|strong=\"H4421\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* his|strong=\"H3068\"* burning|strong=\"H1197\"* place|strong=\"H3559\"* has|strong=\"H3068\"* long|strong=\"H7235\"* been|strong=\"H5397\"* ready|strong=\"H3559\"*. Yes|strong=\"H3588\"*, it|strong=\"H1931\"* is|strong=\"H3068\"* prepared|strong=\"H3559\"* for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*. He|strong=\"H1931\"* has|strong=\"H3068\"* made|strong=\"H3559\"* its|strong=\"H3588\"* pyre|strong=\"H4071\"* deep|strong=\"H6009\"* and|strong=\"H3068\"* large|strong=\"H7337\"* with|strong=\"H3068\"* fire and|strong=\"H3068\"* much|strong=\"H7235\"* wood|strong=\"H6086\"*. Yahweh|strong=\"H3068\"*’s breath|strong=\"H5397\"*, like|strong=\"H1197\"* a|strong=\"H3068\"* stream|strong=\"H5158\"* of|strong=\"H4428\"* sulfur|strong=\"H1614\"*, kindles it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3381\"* those|strong=\"H1945\"* who|strong=\"H3068\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Egypt|strong=\"H4714\"* for|strong=\"H3588\"* help|strong=\"H5833\"*," + }, + { + "verseNum": 2, + "text": "Yet|strong=\"H1571\"* he|strong=\"H1931\"* also|strong=\"H1571\"* is|strong=\"H1931\"* wise|strong=\"H2450\"*, and|strong=\"H6965\"* will|strong=\"H1571\"* bring|strong=\"H7451\"* disaster|strong=\"H7451\"*," + }, + { + "verseNum": 3, + "text": "Now|strong=\"H4714\"* the|strong=\"H3605\"* Egyptians|strong=\"H4714\"* are|strong=\"H3027\"* men|strong=\"H3605\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* God|strong=\"H3068\"*;" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3381\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "As|strong=\"H3651\"* birds|strong=\"H6833\"* hovering, so|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* protect|strong=\"H1598\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "Return|strong=\"H7725\"* to|strong=\"H7725\"* him|strong=\"H7725\"* from|strong=\"H7725\"* whom you|strong=\"H7725\"* have|strong=\"H1121\"* deeply|strong=\"H6009\"* revolted|strong=\"H5627\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* in|strong=\"H6213\"* that|strong=\"H3588\"* day|strong=\"H3117\"* everyone shall|strong=\"H3117\"* cast|strong=\"H3988\"* away|strong=\"H3988\"* his|strong=\"H3027\"* idols of|strong=\"H3117\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* his|strong=\"H3027\"* idols of|strong=\"H3117\"* gold|strong=\"H2091\"*—sin|strong=\"H2399\"* which|strong=\"H1931\"* your|strong=\"H6213\"* own|strong=\"H3027\"* hands|strong=\"H3027\"* have|strong=\"H3027\"* made|strong=\"H6213\"* for|strong=\"H3588\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H6440\"* Assyrian will|strong=\"H1961\"* fall|strong=\"H5307\"* by|strong=\"H1961\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, not|strong=\"H3808\"* of|strong=\"H6440\"* man|strong=\"H5307\"*;" + }, + { + "verseNum": 9, + "text": "His|strong=\"H3068\"* rock|strong=\"H5553\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* away|strong=\"H5674\"* by|strong=\"H5674\"* reason of|strong=\"H3068\"* terror|strong=\"H4032\"*," + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, a|strong=\"H3068\"* king|strong=\"H4428\"* shall|strong=\"H4428\"* reign|strong=\"H4427\"* in|strong=\"H4428\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* man shall|strong=\"H4325\"* be|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* hiding|strong=\"H5643\"* place|strong=\"H5643\"* from|strong=\"H7307\"* the|strong=\"H1961\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H8085\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* those|strong=\"H8085\"* who|strong=\"H3808\"* see|strong=\"H7200\"* will|strong=\"H5869\"* not|strong=\"H3808\"* be|strong=\"H3808\"* dim|strong=\"H8159\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H3045\"* heart|strong=\"H3824\"* of|strong=\"H3824\"* the|strong=\"H3045\"* rash|strong=\"H4116\"* will|strong=\"H3824\"* understand|strong=\"H3045\"* knowledge|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H7121\"* fool|strong=\"H5036\"* will|strong=\"H3808\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H3808\"* called|strong=\"H7121\"* noble|strong=\"H5081\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* fool|strong=\"H5036\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* folly|strong=\"H5039\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H1696\"* ways of|strong=\"H3627\"* the|strong=\"H1696\"* scoundrel are|strong=\"H4941\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* the|strong=\"H5921\"* noble|strong=\"H5081\"* devises|strong=\"H3289\"* noble|strong=\"H5081\"* things|strong=\"H5081\"*," + }, + { + "verseNum": 9, + "text": "Rise|strong=\"H6965\"* up|strong=\"H6965\"*, you|strong=\"H6965\"* women|strong=\"H1323\"* who|strong=\"H7600\"* are|strong=\"H1323\"* at|strong=\"H6965\"* ease|strong=\"H7600\"*! Hear|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* days|strong=\"H3117\"* beyond|strong=\"H5921\"* a|strong=\"H3068\"* year|strong=\"H8141\"* you|strong=\"H3588\"* will|strong=\"H3117\"* be|strong=\"H3117\"* troubled|strong=\"H7264\"*, you|strong=\"H3588\"* careless women;" + }, + { + "verseNum": 11, + "text": "Tremble|strong=\"H7264\"*, you|strong=\"H5921\"* women who|strong=\"H7600\"* are at|strong=\"H5921\"* ease|strong=\"H7600\"*!" + }, + { + "verseNum": 12, + "text": "Beat|strong=\"H5594\"* your|strong=\"H5921\"* breasts|strong=\"H7699\"* for|strong=\"H5921\"* the|strong=\"H5921\"* pleasant|strong=\"H2531\"* fields|strong=\"H7704\"*," + }, + { + "verseNum": 13, + "text": "Thorns|strong=\"H6975\"* and|strong=\"H1004\"* briers|strong=\"H8068\"* will|strong=\"H5971\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H3605\"* people|strong=\"H5971\"*’s land;" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* palace will|strong=\"H1961\"* be|strong=\"H1961\"* forsaken|strong=\"H5800\"*." + }, + { + "verseNum": 15, + "text": "until|strong=\"H5704\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* is|strong=\"H7307\"* poured|strong=\"H6168\"* on|strong=\"H5921\"* us|strong=\"H5921\"* from|strong=\"H5921\"* on|strong=\"H5921\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 16, + "text": "Then justice|strong=\"H4941\"* will|strong=\"H6666\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3427\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 17, + "text": "The|strong=\"H5704\"* work|strong=\"H4639\"* of|strong=\"H4639\"* righteousness|strong=\"H6666\"* will|strong=\"H1961\"* be|strong=\"H1961\"* peace|strong=\"H7965\"*," + }, + { + "verseNum": 18, + "text": "My|strong=\"H5971\"* people|strong=\"H5971\"* will|strong=\"H5971\"* live|strong=\"H3427\"* in|strong=\"H3427\"* a|strong=\"H3068\"* peaceful|strong=\"H7965\"* habitation|strong=\"H5116\"*," + }, + { + "verseNum": 19, + "text": "though hail|strong=\"H1258\"* flattens the|strong=\"H3381\"* forest|strong=\"H3293\"*," + }, + { + "verseNum": 20, + "text": "Blessed are|strong=\"H4325\"* you|strong=\"H3605\"* who|strong=\"H3605\"* sow|strong=\"H2232\"* beside|strong=\"H5921\"* all|strong=\"H3605\"* waters|strong=\"H4325\"*," + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3808\"* you|strong=\"H3808\"* who|strong=\"H3808\"* destroy|strong=\"H7703\"*, but|strong=\"H3808\"* you|strong=\"H3808\"* weren’t destroyed|strong=\"H7703\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*, be|strong=\"H1961\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* us|strong=\"H1961\"*. We have|strong=\"H1961\"* waited|strong=\"H6960\"* for|strong=\"H3068\"* you|strong=\"H6256\"*." + }, + { + "verseNum": 3, + "text": "At|strong=\"H5971\"* the|strong=\"H5971\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5971\"* thunder|strong=\"H6963\"*, the|strong=\"H5971\"* peoples|strong=\"H5971\"* have|strong=\"H5971\"* fled|strong=\"H5074\"*." + }, + { + "verseNum": 4, + "text": "Your plunder|strong=\"H7998\"* will be gathered as|strong=\"H7998\"* the caterpillar|strong=\"H2625\"* gathers." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* exalted|strong=\"H7682\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* dwells|strong=\"H7931\"* on|strong=\"H3068\"* high|strong=\"H4791\"*." + }, + { + "verseNum": 6, + "text": "There|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* stability in|strong=\"H3068\"* your|strong=\"H3068\"* times|strong=\"H6256\"*, abundance of|strong=\"H3068\"* salvation|strong=\"H3444\"*, wisdom|strong=\"H2451\"*, and|strong=\"H3068\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, their valiant ones cry|strong=\"H6817\"* outside|strong=\"H2351\"*;" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5674\"* highways|strong=\"H4546\"* are|strong=\"H5892\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H1961\"* land mourns and|strong=\"H3844\"* languishes." + }, + { + "verseNum": 10, + "text": "“Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H3068\"* arise|strong=\"H6965\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3205\"* will|strong=\"H7307\"* conceive|strong=\"H2029\"* chaff|strong=\"H7179\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* burning of|strong=\"H5971\"* lime|strong=\"H7875\"*," + }, + { + "verseNum": 13, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H6213\"* who|strong=\"H7350\"* are|strong=\"H7350\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, what|strong=\"H3045\"* I|strong=\"H3045\"* have|strong=\"H3045\"* done|strong=\"H6213\"*;" + }, + { + "verseNum": 14, + "text": "The|strong=\"H6726\"* sinners|strong=\"H2400\"* in|strong=\"H1481\"* Zion|strong=\"H6726\"* are|strong=\"H6726\"* afraid|strong=\"H6342\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1980\"* who|strong=\"H1980\"* walks|strong=\"H1980\"* righteously|strong=\"H6666\"*" + }, + { + "verseNum": 16, + "text": "he|strong=\"H1931\"* will|strong=\"H5414\"* dwell|strong=\"H7931\"* on|strong=\"H7931\"* high|strong=\"H4791\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H7200\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* the|strong=\"H7200\"* king|strong=\"H4428\"* in|strong=\"H4428\"* his|strong=\"H7200\"* beauty|strong=\"H3308\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5608\"* heart|strong=\"H3820\"* will|strong=\"H3820\"* meditate|strong=\"H1897\"* on|strong=\"H1897\"* the|strong=\"H5608\"* terror." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* will|strong=\"H5971\"* no|strong=\"H3808\"* longer|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H8085\"* fierce|strong=\"H3267\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "Look|strong=\"H7200\"* at|strong=\"H7200\"* Zion|strong=\"H6726\"*, the|strong=\"H3605\"* city|strong=\"H7151\"* of|strong=\"H5869\"* our|strong=\"H3605\"* appointed|strong=\"H4150\"* festivals|strong=\"H4150\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* there|strong=\"H8033\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3808\"* with|strong=\"H3068\"* us|strong=\"H3588\"* in|strong=\"H3068\"* majesty," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* our|strong=\"H3068\"* judge|strong=\"H8199\"*." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H2388\"* rigging is|strong=\"H3653\"* untied." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5375\"* inhabitant|strong=\"H3427\"* won’t say, “I|strong=\"H5971\"* am|strong=\"H2470\"* sick|strong=\"H2470\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Come|strong=\"H7126\"* near|strong=\"H7126\"*, you|strong=\"H3605\"* nations|strong=\"H1471\"*, to|strong=\"H8085\"* hear|strong=\"H8085\"*!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* enraged against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H7993\"* slain|strong=\"H2491\"* will|strong=\"H2022\"* also be|strong=\"H2022\"* cast|strong=\"H7993\"* out|strong=\"H7993\"*," + }, + { + "verseNum": 4, + "text": "All|strong=\"H3605\"* of|strong=\"H6635\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6635\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* will|strong=\"H8064\"* be|strong=\"H8064\"* dissolved|strong=\"H4743\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* my|strong=\"H5921\"* sword|strong=\"H2719\"* has|strong=\"H3588\"* drunk|strong=\"H7301\"* its|strong=\"H5921\"* fill|strong=\"H7301\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s sword|strong=\"H2719\"* is|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5973\"* wild|strong=\"H7214\"* oxen|strong=\"H6499\"* will|strong=\"H1818\"* come|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H5973\"* them|strong=\"H3381\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* vengeance|strong=\"H5359\"*," + }, + { + "verseNum": 9, + "text": "Its|strong=\"H1961\"* streams|strong=\"H5158\"* will|strong=\"H1961\"* be|strong=\"H1961\"* turned|strong=\"H2015\"* into|strong=\"H2015\"* pitch|strong=\"H2203\"*," + }, + { + "verseNum": 10, + "text": "It|strong=\"H5927\"* won’t be|strong=\"H3808\"* quenched|strong=\"H3518\"* night|strong=\"H3915\"* or|strong=\"H3808\"* day|strong=\"H3119\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H5921\"* the|strong=\"H5921\"* pelican|strong=\"H6893\"* and|strong=\"H8414\"* the|strong=\"H5921\"* porcupine will|strong=\"H7090\"* possess|strong=\"H3423\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H8033\"* shall|strong=\"H8269\"* call|strong=\"H7121\"* its|strong=\"H3605\"* nobles|strong=\"H2715\"* to|strong=\"H1961\"* the|strong=\"H3605\"* kingdom|strong=\"H4410\"*, but|strong=\"H1961\"* none|strong=\"H3605\"* shall|strong=\"H8269\"* be|strong=\"H1961\"* there|strong=\"H8033\"*;" + }, + { + "verseNum": 13, + "text": "Thorns|strong=\"H2336\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5927\"* its|strong=\"H5927\"* palaces," + }, + { + "verseNum": 14, + "text": "The|strong=\"H5921\"* wild animals of|strong=\"H5921\"* the|strong=\"H5921\"* desert|strong=\"H6728\"* will|strong=\"H7453\"* meet|strong=\"H6298\"* with|strong=\"H5921\"* the|strong=\"H5921\"* wolves," + }, + { + "verseNum": 15, + "text": "The|strong=\"H8033\"* arrow snake|strong=\"H7091\"* will|strong=\"H8033\"* make|strong=\"H1234\"* her nest|strong=\"H7077\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 16, + "text": "Search|strong=\"H1875\"* in|strong=\"H5921\"* the|strong=\"H5921\"* book|strong=\"H5612\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* read|strong=\"H7121\"*:" + }, + { + "verseNum": 17, + "text": "He|strong=\"H1931\"* has|strong=\"H3027\"* cast|strong=\"H5307\"* the|strong=\"H5704\"* lot|strong=\"H1486\"* for|strong=\"H5704\"* them|strong=\"H1992\"*," + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4057\"* wilderness|strong=\"H4057\"* and|strong=\"H4057\"* the|strong=\"H4057\"* dry|strong=\"H6723\"* land|strong=\"H6723\"* will|strong=\"H6160\"* be glad|strong=\"H1523\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H5414\"* will|strong=\"H3068\"* blossom|strong=\"H6524\"* abundantly|strong=\"H6524\"*," + }, + { + "verseNum": 3, + "text": "Strengthen|strong=\"H2388\"* the|strong=\"H2388\"* weak|strong=\"H7504\"* hands|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "Tell those|strong=\"H1931\"* who|strong=\"H1931\"* have|strong=\"H3372\"* a|strong=\"H3068\"* fearful|strong=\"H3372\"* heart|strong=\"H3820\"*, “Be|strong=\"H3820\"* strong|strong=\"H2388\"*!" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6491\"* the|strong=\"H6605\"* eyes|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6605\"* blind|strong=\"H5787\"* will|strong=\"H5869\"* be|strong=\"H5869\"* opened|strong=\"H6605\"*," + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3588\"* the|strong=\"H3588\"* lame|strong=\"H6455\"* man|strong=\"H6455\"* will|strong=\"H4325\"* leap|strong=\"H1801\"* like|strong=\"H4057\"* a|strong=\"H3068\"* deer," + }, + { + "verseNum": 7, + "text": "The|strong=\"H1961\"* burning sand will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* pool|strong=\"H4325\"*," + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* highway|strong=\"H1870\"* will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"*, a|strong=\"H3068\"* road|strong=\"H1870\"*," + }, + { + "verseNum": 9, + "text": "No|strong=\"H3808\"* lion will|strong=\"H1961\"* be|strong=\"H1961\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s ransomed|strong=\"H6299\"* ones will|strong=\"H3068\"* return|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria attacked|strong=\"H5927\"* all|strong=\"H3605\"* of|strong=\"H4428\"* the|strong=\"H3605\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* captured|strong=\"H8610\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria sent|strong=\"H7971\"* Rabshakeh|strong=\"H7262\"* from|strong=\"H7971\"* Lachish|strong=\"H3923\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* with|strong=\"H3389\"* a|strong=\"H3068\"* large|strong=\"H3515\"* army|strong=\"H2426\"*. He|strong=\"H3389\"* stood|strong=\"H5975\"* by|strong=\"H5975\"* the|strong=\"H7971\"* aqueduct from|strong=\"H7971\"* the|strong=\"H7971\"* upper|strong=\"H5945\"* pool|strong=\"H1295\"* in|strong=\"H4428\"* the|strong=\"H7971\"* fuller’s field|strong=\"H7704\"* highway|strong=\"H4546\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"* came|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "Rabshakeh|strong=\"H7262\"* said to|strong=\"H4428\"* them|strong=\"H2088\"*, “Now|strong=\"H4994\"* tell|strong=\"H4994\"* Hezekiah|strong=\"H2396\"*, ‘The|strong=\"H3541\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, says|strong=\"H3541\"*, “What|strong=\"H4100\"* confidence is|strong=\"H2088\"* this|strong=\"H2088\"* in|strong=\"H4428\"* which|strong=\"H4100\"* you|strong=\"H4100\"* trust?" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* say|strong=\"H1697\"* that|strong=\"H3588\"* your|strong=\"H5921\"* counsel|strong=\"H6098\"* and|strong=\"H1697\"* strength|strong=\"H1369\"* for|strong=\"H3588\"* the|strong=\"H5921\"* war|strong=\"H4421\"* are|strong=\"H1697\"* only|strong=\"H3588\"* vain|strong=\"H8193\"* words|strong=\"H1697\"*. Now|strong=\"H6258\"* in|strong=\"H5921\"* whom|strong=\"H4310\"* do|strong=\"H1697\"* you|strong=\"H3588\"* trust, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1697\"* rebelled|strong=\"H4775\"* against|strong=\"H5921\"* me|strong=\"H5921\"*?" + }, + { + "verseNum": 6, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* trust in|strong=\"H5921\"* the|strong=\"H3605\"* staff|strong=\"H4938\"* of|strong=\"H4428\"* this|strong=\"H2088\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*, even|strong=\"H3651\"* in|strong=\"H5921\"* Egypt|strong=\"H4714\"*, which|strong=\"H2088\"* if|strong=\"H2009\"* a|strong=\"H3068\"* man|strong=\"H3605\"* leans|strong=\"H5564\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, it|strong=\"H5921\"* will|strong=\"H4428\"* go|strong=\"H4428\"* into|strong=\"H5921\"* his|strong=\"H3605\"* hand|strong=\"H3709\"* and|strong=\"H4428\"* pierce|strong=\"H5344\"* it|strong=\"H5921\"*. So|strong=\"H3651\"* is|strong=\"H2088\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H5921\"* all|strong=\"H3605\"* who|strong=\"H3605\"* trust in|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* tell me|strong=\"H6440\"*, ‘We|strong=\"H3588\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*,’ isn’t that|strong=\"H3588\"* he|strong=\"H1931\"* whose high|strong=\"H1116\"* places|strong=\"H1116\"* and|strong=\"H3063\"* whose altars|strong=\"H4196\"* Hezekiah|strong=\"H2396\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"*, and|strong=\"H3063\"* has|strong=\"H3068\"* said to|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, ‘You|strong=\"H3588\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* this|strong=\"H2088\"* altar|strong=\"H4196\"*’?”" + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, please|strong=\"H4994\"* make|strong=\"H5414\"* a|strong=\"H3068\"* pledge to|strong=\"H3201\"* my|strong=\"H5414\"* master|strong=\"H5414\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* you|strong=\"H5414\"* two thousand horses|strong=\"H5483\"*, if you|strong=\"H5414\"* are|strong=\"H5483\"* able|strong=\"H3201\"* on|strong=\"H5921\"* your|strong=\"H5414\"* part|strong=\"H5921\"* to|strong=\"H3201\"* set|strong=\"H5414\"* riders|strong=\"H7392\"* on|strong=\"H5921\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "How then|strong=\"H7725\"* can|strong=\"H5650\"* you|strong=\"H6440\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* one|strong=\"H6996\"* captain|strong=\"H6346\"* of|strong=\"H6440\"* the|strong=\"H6440\"* least|strong=\"H6996\"* of|strong=\"H6440\"* my|strong=\"H5921\"* master’s servants|strong=\"H5650\"*, and|strong=\"H7725\"* put|strong=\"H7725\"* your|strong=\"H5921\"* trust in|strong=\"H5921\"* Egypt|strong=\"H4714\"* for|strong=\"H5921\"* chariots|strong=\"H7393\"* and|strong=\"H7725\"* for|strong=\"H5921\"* horsemen|strong=\"H6571\"*?" + }, + { + "verseNum": 10, + "text": "Have|strong=\"H3068\"* I|strong=\"H5921\"* come|strong=\"H5927\"* up|strong=\"H5927\"* now|strong=\"H6258\"* without|strong=\"H1107\"* Yahweh|strong=\"H3068\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land to|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*? Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land, and|strong=\"H3068\"* destroy|strong=\"H7843\"* it|strong=\"H5921\"*.”’”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1696\"* Eliakim, Shebna|strong=\"H7644\"* and|strong=\"H5971\"* Joah|strong=\"H3098\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Rabshakeh|strong=\"H7262\"*, “Please|strong=\"H4994\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* servants|strong=\"H5650\"* in|strong=\"H5921\"* Aramaic, for|strong=\"H3588\"* we|strong=\"H3068\"* understand|strong=\"H8085\"* it|strong=\"H5921\"*. Don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H4994\"* in|strong=\"H5921\"* the|strong=\"H5921\"* Jews’ language|strong=\"H3066\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hearing|strong=\"H8085\"* of|strong=\"H5650\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*.”" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3808\"* Rabshakeh|strong=\"H7262\"* said|strong=\"H1696\"*, “Has|strong=\"H1697\"* my|strong=\"H5921\"* master|strong=\"H3427\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* only to|strong=\"H1696\"* your|strong=\"H5921\"* master|strong=\"H3427\"* and|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H7971\"*, to|strong=\"H1696\"* speak|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, and|strong=\"H7971\"* not|strong=\"H3808\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men who|strong=\"H3427\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H2346\"*, who|strong=\"H3427\"* will|strong=\"H1697\"* eat their|strong=\"H5921\"* own|strong=\"H5973\"* dung|strong=\"H2716\"* and|strong=\"H7971\"* drink|strong=\"H8354\"* their|strong=\"H5921\"* own|strong=\"H5973\"* urine|strong=\"H7890\"* with|strong=\"H5973\"* you|strong=\"H7971\"*?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5975\"* Rabshakeh|strong=\"H7262\"* stood|strong=\"H5975\"*, and|strong=\"H4428\"* called|strong=\"H7121\"* out|strong=\"H1419\"* with|strong=\"H1697\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"* in|strong=\"H4428\"* the|strong=\"H8085\"* Jews’ language|strong=\"H3066\"*, and|strong=\"H4428\"* said|strong=\"H1697\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* great|strong=\"H1419\"* king|strong=\"H4428\"*, the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria!" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* says|strong=\"H3541\"*, ‘Don’t let|strong=\"H3808\"* Hezekiah|strong=\"H2396\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H4428\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Don’t let|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* make|strong=\"H5414\"* you|strong=\"H5414\"* trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* deliver|strong=\"H5337\"* us|strong=\"H5414\"*. This|strong=\"H2063\"* city|strong=\"H5892\"* won’t be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”’" + }, + { + "verseNum": 16, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria says|strong=\"H3541\"*, ‘Make|strong=\"H6213\"* your|strong=\"H8085\"* peace|strong=\"H1293\"* with|strong=\"H6213\"* me|strong=\"H6213\"*, and|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6213\"*; and|strong=\"H4428\"* each|strong=\"H3541\"* of|strong=\"H4428\"* you|strong=\"H3588\"* eat from|strong=\"H3318\"* his|strong=\"H8085\"* vine|strong=\"H1612\"*, and|strong=\"H4428\"* each|strong=\"H3541\"* one|strong=\"H6213\"* from|strong=\"H3318\"* his|strong=\"H8085\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*, and|strong=\"H4428\"* each|strong=\"H3541\"* one|strong=\"H6213\"* of|strong=\"H4428\"* you|strong=\"H3588\"* drink|strong=\"H8354\"* the|strong=\"H8085\"* waters|strong=\"H4325\"* of|strong=\"H4428\"* his|strong=\"H8085\"* own cistern;" + }, + { + "verseNum": 17, + "text": "until|strong=\"H5704\"* I|strong=\"H5704\"* come and|strong=\"H3899\"* take|strong=\"H3947\"* you|strong=\"H5704\"* away|strong=\"H3947\"* to|strong=\"H5704\"* a|strong=\"H3068\"* land like|strong=\"H5704\"* your|strong=\"H3947\"* own land, a|strong=\"H3068\"* land of|strong=\"H3899\"* grain|strong=\"H1715\"* and|strong=\"H3899\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, a|strong=\"H3068\"* land of|strong=\"H3899\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* vineyards|strong=\"H3754\"*." + }, + { + "verseNum": 18, + "text": "Beware|strong=\"H6435\"* lest|strong=\"H6435\"* Hezekiah|strong=\"H2396\"* persuade|strong=\"H5496\"* you|strong=\"H6435\"*, saying, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* us|strong=\"H6435\"*.” Have|strong=\"H3068\"* any of|strong=\"H4428\"* the|strong=\"H3068\"* gods of|strong=\"H4428\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* their|strong=\"H3068\"* lands from|strong=\"H3027\"* the|strong=\"H3068\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria?" + }, + { + "verseNum": 19, + "text": "Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Hamath|strong=\"H2574\"* and|strong=\"H3027\"* Arpad? Where|strong=\"H3027\"* are|strong=\"H3027\"* the|strong=\"H3588\"* gods of|strong=\"H3027\"* Sepharvaim|strong=\"H5617\"*? Have|strong=\"H3027\"* they|strong=\"H3588\"* delivered|strong=\"H5337\"* Samaria|strong=\"H8111\"* from|strong=\"H3027\"* my|strong=\"H5337\"* hand|strong=\"H3027\"*?" + }, + { + "verseNum": 20, + "text": "Who|strong=\"H4310\"* are|strong=\"H3027\"* they|strong=\"H3588\"* among|strong=\"H4310\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* these|strong=\"H3605\"* countries that|strong=\"H3588\"* have|strong=\"H3068\"* delivered|strong=\"H5337\"* their|strong=\"H3605\"* country out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* should|strong=\"H3068\"* deliver|strong=\"H5337\"* Jerusalem|strong=\"H3389\"* out|strong=\"H5337\"* of|strong=\"H3068\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*?’”" + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* remained|strong=\"H2790\"* silent|strong=\"H2790\"*, and|strong=\"H6030\"* said|strong=\"H1697\"* nothing|strong=\"H3808\"* in|strong=\"H4428\"* reply|strong=\"H6030\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s commandment|strong=\"H4687\"* was|strong=\"H1931\"*, “Don’t answer|strong=\"H6030\"* him|strong=\"H1931\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H1121\"* Eliakim the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, who|strong=\"H1121\"* was|strong=\"H1697\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* Joah|strong=\"H3098\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Asaph the|strong=\"H5921\"* recorder|strong=\"H2142\"*, came|strong=\"H1697\"* to|strong=\"H5921\"* Hezekiah|strong=\"H2396\"* with|strong=\"H1004\"* their|strong=\"H5921\"* clothes torn|strong=\"H7167\"*, and|strong=\"H1121\"* told|strong=\"H5046\"* him|strong=\"H5921\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Rabshakeh|strong=\"H7262\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* heard|strong=\"H8085\"* it|strong=\"H1961\"*, he|strong=\"H3068\"* tore|strong=\"H7167\"* his|strong=\"H3068\"* clothes, covered|strong=\"H3680\"* himself|strong=\"H3068\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, and|strong=\"H3068\"* went|strong=\"H3068\"* into|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H1004\"* sent|strong=\"H7971\"* Eliakim, who|strong=\"H3548\"* was|strong=\"H1004\"* over|strong=\"H5921\"* the|strong=\"H5921\"* household|strong=\"H1004\"*, and|strong=\"H1121\"* Shebna|strong=\"H7644\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, covered|strong=\"H3680\"* with|strong=\"H1004\"* sackcloth|strong=\"H8242\"*, to|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz." + }, + { + "verseNum": 3, + "text": "They|strong=\"H3588\"* said to|strong=\"H5704\"* him|strong=\"H3205\"*, “Hezekiah|strong=\"H2396\"* says|strong=\"H3541\"*, ‘Today|strong=\"H3117\"* is|strong=\"H2088\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rebuke|strong=\"H8433\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* rejection|strong=\"H5007\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* have|strong=\"H1121\"* come|strong=\"H3205\"* to|strong=\"H5704\"* the|strong=\"H3588\"* birth|strong=\"H3205\"*, and|strong=\"H1121\"* there|strong=\"H2088\"* is|strong=\"H2088\"* no strength|strong=\"H3581\"* to|strong=\"H5704\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H5375\"* may|strong=\"H3068\"* be|strong=\"H1697\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* Rabshakeh|strong=\"H7262\"*, whom the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria his|strong=\"H5375\"* master has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H8085\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* rebuke|strong=\"H3198\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* heard|strong=\"H8085\"*. Therefore|strong=\"H7971\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"* for|strong=\"H1157\"* the|strong=\"H8085\"* remnant|strong=\"H7611\"* that|strong=\"H8085\"* is|strong=\"H3068\"* left|strong=\"H4672\"*.’”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H5650\"* the|strong=\"H5650\"* servants|strong=\"H5650\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* came|strong=\"H5650\"* to|strong=\"H4428\"* Isaiah|strong=\"H3470\"*." + }, + { + "verseNum": 6, + "text": "Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H6440\"*, “Tell|strong=\"H8085\"* your|strong=\"H3068\"* master, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* words|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H6440\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* the|strong=\"H6440\"* servants|strong=\"H5288\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* blasphemed|strong=\"H1442\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* put|strong=\"H5414\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* in|strong=\"H8085\"* him|strong=\"H5414\"* and|strong=\"H7725\"* he|strong=\"H5414\"* will|strong=\"H2719\"* hear|strong=\"H8085\"* news|strong=\"H8052\"*, and|strong=\"H7725\"* will|strong=\"H2719\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H5414\"* own land. I|strong=\"H2005\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H7725\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* in|strong=\"H8085\"* his|strong=\"H5414\"* own land.”’”" + }, + { + "verseNum": 8, + "text": "So|strong=\"H7725\"* Rabshakeh|strong=\"H7262\"* returned|strong=\"H7725\"*, and|strong=\"H7725\"* found|strong=\"H4672\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria warring|strong=\"H3898\"* against|strong=\"H5921\"* Libnah|strong=\"H3841\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* departed|strong=\"H5265\"* from|strong=\"H5265\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* heard|strong=\"H8085\"* news concerning|strong=\"H5921\"* Tirhakah|strong=\"H8640\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Ethiopia|strong=\"H3568\"*, “He|strong=\"H5921\"* has|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* you|strong=\"H7971\"*.” When|strong=\"H8085\"* he|strong=\"H5921\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*, he|strong=\"H5921\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H3318\"* Hezekiah|strong=\"H2396\"*, saying," + }, + { + "verseNum": 10, + "text": "“Thus|strong=\"H3541\"* you|strong=\"H5414\"* shall|strong=\"H4428\"* speak to|strong=\"H5414\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, ‘Don’t let|strong=\"H5414\"* your|strong=\"H5414\"* God|strong=\"H5414\"* in|strong=\"H4428\"* whom you|strong=\"H5414\"* trust deceive|strong=\"H5377\"* you|strong=\"H5414\"*, saying, “Jerusalem|strong=\"H3389\"* won’t be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria.”" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H3605\"* heard|strong=\"H8085\"* what|strong=\"H6213\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3605\"* done|strong=\"H6213\"* to|strong=\"H6213\"* all|strong=\"H3605\"* lands, by|strong=\"H3605\"* destroying|strong=\"H2763\"* them|strong=\"H6213\"* utterly|strong=\"H2763\"*. Shall|strong=\"H4428\"* you|strong=\"H3605\"* be|strong=\"H4428\"* delivered|strong=\"H5337\"*?" + }, + { + "verseNum": 12, + "text": "Have|strong=\"H1121\"* the|strong=\"H7843\"* gods of|strong=\"H1121\"* the|strong=\"H7843\"* nations|strong=\"H1471\"* delivered|strong=\"H5337\"* them|strong=\"H7843\"*, which|strong=\"H1471\"* my|strong=\"H5337\"* fathers have|strong=\"H1121\"* destroyed|strong=\"H7843\"*, Gozan|strong=\"H1470\"*, Haran|strong=\"H2771\"*, Rezeph|strong=\"H7530\"*, and|strong=\"H1121\"* the|strong=\"H7843\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Eden|strong=\"H5729\"* who|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Telassar|strong=\"H8515\"*?" + }, + { + "verseNum": 13, + "text": "Where is|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Hamath|strong=\"H2574\"*, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Arpad, and|strong=\"H4428\"* the|strong=\"H5892\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5892\"* city|strong=\"H5892\"* of|strong=\"H4428\"* Sepharvaim|strong=\"H5617\"*, of|strong=\"H4428\"* Hena|strong=\"H2012\"*, and|strong=\"H4428\"* Ivvah|strong=\"H5755\"*?’”" + }, + { + "verseNum": 14, + "text": "Hezekiah|strong=\"H2396\"* received|strong=\"H3947\"* the|strong=\"H6440\"* letter|strong=\"H5612\"* from|strong=\"H6440\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* the|strong=\"H6440\"* messengers|strong=\"H4397\"* and|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*. Then|strong=\"H3947\"* Hezekiah|strong=\"H2396\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* spread|strong=\"H6566\"* it|strong=\"H7121\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Hezekiah|strong=\"H2396\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 16, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* is|strong=\"H3068\"* enthroned|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H3605\"* cherubim|strong=\"H3742\"*, you|strong=\"H3605\"* are|strong=\"H3478\"* the|strong=\"H3605\"* God|strong=\"H3068\"*, even|strong=\"H6213\"* you|strong=\"H3605\"* alone|strong=\"H1931\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*. You|strong=\"H3605\"* have|strong=\"H3068\"* made|strong=\"H6213\"* heaven|strong=\"H8064\"* and|strong=\"H3478\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 17, + "text": "Turn|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*. Open|strong=\"H6491\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* behold|strong=\"H7200\"*. Hear|strong=\"H8085\"* all|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Sennacherib|strong=\"H5576\"*, who|strong=\"H3605\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* defy|strong=\"H2778\"* the|strong=\"H3605\"* living|strong=\"H2416\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "Truly, Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Assyria have|strong=\"H3068\"* destroyed|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries and|strong=\"H3068\"* their|strong=\"H3605\"* land," + }, + { + "verseNum": 19, + "text": "and|strong=\"H3027\"* have|strong=\"H3027\"* cast|strong=\"H5414\"* their|strong=\"H5414\"* gods into|strong=\"H3027\"* the|strong=\"H3588\"* fire; for|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H1992\"* no|strong=\"H3808\"* gods, but|strong=\"H3588\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H3027\"* men|strong=\"H1992\"*’s hands|strong=\"H3027\"*, wood|strong=\"H6086\"* and|strong=\"H3027\"* stone; therefore|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3027\"* destroyed them|strong=\"H5414\"*." + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, save|strong=\"H3467\"* us|strong=\"H3045\"* from|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, that|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3027\"* Yahweh|strong=\"H3068\"*, even|strong=\"H3588\"* you|strong=\"H3588\"* only|strong=\"H3588\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H7971\"* Isaiah|strong=\"H3470\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz sent|strong=\"H7971\"* to|strong=\"H3478\"* Hezekiah|strong=\"H2396\"*, saying, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Because|strong=\"H3068\"* you|strong=\"H7971\"* have|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3478\"* me|strong=\"H7971\"* against|strong=\"H3068\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Assyria," + }, + { + "verseNum": 22, + "text": "this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* him|strong=\"H5921\"*: The|strong=\"H5921\"* virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"* has|strong=\"H3068\"* despised you|strong=\"H5921\"* and|strong=\"H3068\"* ridiculed you|strong=\"H5921\"*. The|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* has|strong=\"H3068\"* shaken|strong=\"H5128\"* her|strong=\"H5921\"* head|strong=\"H7218\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "Whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* defied|strong=\"H2778\"* and|strong=\"H3478\"* blasphemed|strong=\"H1442\"*? Against|strong=\"H5921\"* whom|strong=\"H4310\"* have|strong=\"H5869\"* you|strong=\"H5921\"* exalted|strong=\"H7311\"* your|strong=\"H5921\"* voice|strong=\"H6963\"* and|strong=\"H3478\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* high|strong=\"H4791\"*? Against|strong=\"H5921\"* the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H6963\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 24, + "text": "By|strong=\"H3027\"* your|strong=\"H3772\"* servants|strong=\"H5650\"*, you|strong=\"H3027\"* have|strong=\"H5650\"* defied|strong=\"H2778\"* the|strong=\"H5927\"* Lord, and|strong=\"H3027\"* have|strong=\"H5650\"* said, “With|strong=\"H3027\"* the|strong=\"H5927\"* multitude|strong=\"H7230\"* of|strong=\"H3027\"* my|strong=\"H5927\"* chariots|strong=\"H7393\"* I|strong=\"H5650\"* have|strong=\"H5650\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* height|strong=\"H6967\"* of|strong=\"H3027\"* the|strong=\"H5927\"* mountains|strong=\"H2022\"*, to|strong=\"H5927\"* the|strong=\"H5927\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3027\"* Lebanon|strong=\"H3844\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* its|strong=\"H5927\"* tall|strong=\"H6967\"* cedars and|strong=\"H3027\"* its|strong=\"H5927\"* choice|strong=\"H4005\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"*. I|strong=\"H5650\"* will|strong=\"H5650\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* its|strong=\"H5927\"* farthest|strong=\"H7093\"* height|strong=\"H6967\"*, the|strong=\"H5927\"* forest|strong=\"H3293\"* of|strong=\"H3027\"* its|strong=\"H5927\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H6471\"* have|strong=\"H3605\"* dug|strong=\"H6979\"* and|strong=\"H8354\"* drunk|strong=\"H8354\"* water|strong=\"H4325\"*, and|strong=\"H8354\"* with|strong=\"H4325\"* the|strong=\"H3605\"* sole|strong=\"H3709\"* of|strong=\"H4325\"* my|strong=\"H3605\"* feet|strong=\"H6471\"* I|strong=\"H6471\"* will|strong=\"H4325\"* dry|strong=\"H2717\"* up|strong=\"H2717\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H2975\"* of|strong=\"H4325\"* Egypt|strong=\"H4693\"*.”" + }, + { + "verseNum": 26, + "text": "“‘Have|strong=\"H1961\"* you|strong=\"H3117\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* how|strong=\"H8085\"* I|strong=\"H3117\"* have|strong=\"H1961\"* done|strong=\"H6213\"* it|strong=\"H6213\"* long|strong=\"H3117\"* ago|strong=\"H7350\"*, and|strong=\"H3117\"* formed|strong=\"H3335\"* it|strong=\"H6213\"* in|strong=\"H6213\"* ancient|strong=\"H6924\"* times|strong=\"H3117\"*? Now|strong=\"H6258\"* I|strong=\"H3117\"* have|strong=\"H1961\"* brought|strong=\"H6213\"* it|strong=\"H6213\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, that|strong=\"H3117\"* it|strong=\"H6213\"* should|strong=\"H3117\"* be|strong=\"H1961\"* yours to|strong=\"H1961\"* destroy|strong=\"H6213\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"*, turning them|strong=\"H6213\"* into|strong=\"H6213\"* ruinous|strong=\"H5327\"* heaps|strong=\"H1530\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H1961\"* their|strong=\"H6440\"* inhabitants|strong=\"H3427\"* had|strong=\"H1961\"* little power|strong=\"H3027\"*. They|strong=\"H6440\"* were|strong=\"H1961\"* dismayed|strong=\"H2865\"* and|strong=\"H3027\"* confounded. They|strong=\"H6440\"* were|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* of|strong=\"H3027\"* the|strong=\"H6440\"* field|strong=\"H7704\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H6440\"* green|strong=\"H3419\"* herb|strong=\"H6212\"*, like|strong=\"H1961\"* the|strong=\"H6440\"* grass|strong=\"H2682\"* on|strong=\"H3427\"* the|strong=\"H6440\"* housetops|strong=\"H1406\"*, and|strong=\"H3027\"* like|strong=\"H1961\"* a|strong=\"H3068\"* field|strong=\"H7704\"* before|strong=\"H6440\"* its|strong=\"H1961\"* crop has|strong=\"H1961\"* grown|strong=\"H7054\"*." + }, + { + "verseNum": 28, + "text": "But I|strong=\"H3045\"* know|strong=\"H3045\"* your|strong=\"H3045\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"*, your|strong=\"H3045\"* going|strong=\"H3318\"* out|strong=\"H3318\"*, your|strong=\"H3045\"* coming|strong=\"H3318\"* in|strong=\"H3427\"*, and|strong=\"H3318\"* your|strong=\"H3045\"* raging|strong=\"H7264\"* against|strong=\"H3427\"* me|strong=\"H3318\"*." + }, + { + "verseNum": 29, + "text": "Because|strong=\"H3282\"* of|strong=\"H1870\"* your|strong=\"H7760\"* raging|strong=\"H7264\"* against|strong=\"H5927\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* because|strong=\"H3282\"* your|strong=\"H7760\"* arrogance|strong=\"H7600\"* has|strong=\"H7600\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H7725\"* my|strong=\"H7760\"* ears, therefore I|strong=\"H7760\"* will|strong=\"H7725\"* put|strong=\"H7760\"* my|strong=\"H7760\"* hook|strong=\"H2397\"* in|strong=\"H7725\"* your|strong=\"H7760\"* nose and|strong=\"H7725\"* my|strong=\"H7760\"* bridle|strong=\"H4964\"* in|strong=\"H7725\"* your|strong=\"H7760\"* lips|strong=\"H8193\"*, and|strong=\"H7725\"* I|strong=\"H7760\"* will|strong=\"H7725\"* turn|strong=\"H7725\"* you|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* by|strong=\"H1870\"* which you|strong=\"H7725\"* came|strong=\"H5927\"*." + }, + { + "verseNum": 30, + "text": "“‘This|strong=\"H2088\"* shall|strong=\"H2088\"* be|strong=\"H8141\"* the|strong=\"H8141\"* sign to|strong=\"H8141\"* you|strong=\"H8141\"*: You|strong=\"H8141\"* will|strong=\"H3754\"* eat this|strong=\"H2088\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* grows|strong=\"H5599\"* of|strong=\"H8141\"* itself|strong=\"H2088\"*, and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* second|strong=\"H8145\"* year|strong=\"H8141\"* that|strong=\"H8141\"* which|strong=\"H2088\"* springs from|strong=\"H2232\"* it|strong=\"H2088\"*; and|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H8141\"* third|strong=\"H7992\"* year|strong=\"H8141\"* sow|strong=\"H2232\"* and|strong=\"H8141\"* reap|strong=\"H7114\"* and|strong=\"H8141\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, and|strong=\"H8141\"* eat their|strong=\"H7114\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H6213\"* remnant|strong=\"H7604\"* that|strong=\"H3063\"* is|strong=\"H1004\"* escaped|strong=\"H6413\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* again|strong=\"H3254\"* take|strong=\"H6213\"* root|strong=\"H8328\"* downward|strong=\"H4295\"*, and|strong=\"H3063\"* bear|strong=\"H6213\"* fruit|strong=\"H6529\"* upward|strong=\"H4605\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* out|strong=\"H3318\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H3068\"* survivors|strong=\"H6413\"* will|strong=\"H3068\"* escape|strong=\"H6413\"* from|strong=\"H3318\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*. The|strong=\"H3588\"* zeal|strong=\"H7068\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* this|strong=\"H2063\"*.’" + }, + { + "verseNum": 33, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, ‘He|strong=\"H8033\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H6923\"* to|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, nor|strong=\"H3808\"* shoot|strong=\"H3384\"* an|strong=\"H8033\"* arrow|strong=\"H2671\"* there|strong=\"H8033\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* he|strong=\"H8033\"* come|strong=\"H6923\"* before|strong=\"H5921\"* it|strong=\"H5921\"* with|strong=\"H3068\"* shield|strong=\"H4043\"*, nor|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 34, + "text": "He|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* the|strong=\"H5002\"* way|strong=\"H1870\"* that|strong=\"H3068\"* he|strong=\"H3068\"* came|strong=\"H3068\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* won’t come|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 35, + "text": "‘For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H5650\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H5921\"* save|strong=\"H3467\"* it|strong=\"H5921\"*, for|strong=\"H5921\"* my|strong=\"H1732\"* own sake|strong=\"H4616\"*, and|strong=\"H5892\"* for|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*’s sake|strong=\"H4616\"*.’”" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* went|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3967\"* struck|strong=\"H5221\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* and|strong=\"H3967\"* eighty-five|strong=\"H8084\"* thousand men|strong=\"H3605\"* in|strong=\"H3068\"* the|strong=\"H3605\"* camp|strong=\"H4264\"* of|strong=\"H3068\"* the|strong=\"H3605\"* Assyrians. When|strong=\"H3318\"* men|strong=\"H3605\"* arose|strong=\"H7925\"* early|strong=\"H7925\"* in|strong=\"H3068\"* the|strong=\"H3605\"* morning|strong=\"H1242\"*, behold|strong=\"H2009\"*, these|strong=\"H3605\"* were|strong=\"H2009\"* all|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"*." + }, + { + "verseNum": 37, + "text": "So|strong=\"H7725\"* Sennacherib|strong=\"H5576\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria departed|strong=\"H3212\"*, went|strong=\"H3212\"* away|strong=\"H7725\"*, returned|strong=\"H7725\"* to|strong=\"H7725\"* Nineveh|strong=\"H5210\"*, and|strong=\"H7725\"* stayed|strong=\"H3427\"* there|strong=\"H3427\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H1961\"* worshiping|strong=\"H7812\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Nisroch|strong=\"H5268\"* his|strong=\"H5221\"* god, Adrammelech and|strong=\"H1121\"* Sharezer|strong=\"H8272\"* his|strong=\"H5221\"* sons|strong=\"H1121\"* struck|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H1004\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*; and|strong=\"H1121\"* they|strong=\"H1992\"* escaped|strong=\"H4422\"* into|strong=\"H2719\"* the|strong=\"H5221\"* land of|strong=\"H1121\"* Ararat. Esar Haddon his|strong=\"H5221\"* son|strong=\"H1121\"* reigned|strong=\"H4427\"* in|strong=\"H1004\"* his|strong=\"H5221\"* place|strong=\"H8478\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Hezekiah|strong=\"H2396\"* was|strong=\"H3068\"* sick|strong=\"H2470\"* and|strong=\"H1121\"* near|strong=\"H3808\"* death|strong=\"H4191\"*. Isaiah|strong=\"H3470\"* the|strong=\"H3588\"* prophet|strong=\"H5030\"*, the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amoz, came|strong=\"H3068\"* to|strong=\"H4191\"* him|strong=\"H6680\"*, and|strong=\"H1121\"* said to|strong=\"H4191\"* him|strong=\"H6680\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Set|strong=\"H6680\"* your|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H3068\"* order|strong=\"H6680\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, and|strong=\"H1121\"* not|strong=\"H3808\"* live|strong=\"H2421\"*.’”" + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3068\"* Hezekiah|strong=\"H2396\"* turned|strong=\"H5437\"* his|strong=\"H3068\"* face|strong=\"H6440\"* to|strong=\"H3068\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* and|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H1980\"* said, “Remember|strong=\"H2142\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, I|strong=\"H1980\"* beg|strong=\"H4994\"* you|strong=\"H6440\"*, how|strong=\"H4994\"* I|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* truth and|strong=\"H1980\"* with|strong=\"H1980\"* a|strong=\"H3068\"* perfect|strong=\"H8003\"* heart|strong=\"H3820\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3068\"* which|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H1980\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*.” Then|strong=\"H1980\"* Hezekiah|strong=\"H2396\"* wept|strong=\"H1058\"* bitterly|strong=\"H1419\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Isaiah|strong=\"H3470\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* tell|strong=\"H8085\"* Hezekiah|strong=\"H2396\"*, ‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* David|strong=\"H1732\"* your|strong=\"H3068\"* father, says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* your|strong=\"H3068\"* prayer|strong=\"H8605\"*. I|strong=\"H3117\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* your|strong=\"H3068\"* tears|strong=\"H1832\"*. Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* add|strong=\"H3254\"* fifteen|strong=\"H2568\"* years|strong=\"H8141\"* to|strong=\"H1980\"* your|strong=\"H3068\"* life|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will|strong=\"H4428\"* deliver|strong=\"H5337\"* you|strong=\"H5921\"* and|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* out|strong=\"H5921\"* of|strong=\"H4428\"* the|strong=\"H5921\"* hand|strong=\"H3709\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria, and|strong=\"H4428\"* I|strong=\"H5921\"* will|strong=\"H4428\"* defend|strong=\"H1598\"* this|strong=\"H2063\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "This|strong=\"H2088\"* shall|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H6213\"* sign to|strong=\"H1696\"* you|strong=\"H6213\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* that|strong=\"H3068\"* he|strong=\"H6213\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H8121\"* cause|strong=\"H7725\"* the|strong=\"H7725\"* shadow|strong=\"H6738\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial, which has|strong=\"H8121\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial of|strong=\"H6738\"* Ahaz with|strong=\"H3381\"* the|strong=\"H7725\"* sun|strong=\"H8121\"*, to|strong=\"H7725\"* return|strong=\"H7725\"* backward ten|strong=\"H6235\"* steps|strong=\"H4609\"*.”’” So|strong=\"H7725\"* the|strong=\"H7725\"* sun|strong=\"H8121\"* returned|strong=\"H7725\"* ten|strong=\"H6235\"* steps|strong=\"H4609\"* on|strong=\"H3381\"* the|strong=\"H7725\"* sundial on|strong=\"H3381\"* which it|strong=\"H7725\"* had|strong=\"H8121\"* gone|strong=\"H3381\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H2421\"* writing|strong=\"H4385\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, when|strong=\"H2421\"* he|strong=\"H2483\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*, and|strong=\"H3063\"* had|strong=\"H4428\"* recovered|strong=\"H2421\"* of|strong=\"H4428\"* his|strong=\"H2396\"* sickness|strong=\"H2483\"*:" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* said, “In|strong=\"H8141\"* the|strong=\"H3117\"* middle|strong=\"H1824\"* of|strong=\"H3117\"* my|strong=\"H3117\"* life|strong=\"H3117\"* I|strong=\"H3117\"* go|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H3117\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Sheol|strong=\"H7585\"*.+ 38:10 Sheol is the place of the dead.*" + }, + { + "verseNum": 11, + "text": "I|strong=\"H7200\"* said, “I|strong=\"H7200\"* won’t see|strong=\"H7200\"* Yah|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "My|strong=\"H4480\"* dwelling|strong=\"H1755\"* is|strong=\"H3117\"* removed|strong=\"H5265\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3117\"* waited patiently until|strong=\"H5704\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3651\"* chattered like|strong=\"H3651\"* a|strong=\"H3068\"* swallow|strong=\"H5693\"* or|strong=\"H5483\"* a|strong=\"H3068\"* crane|strong=\"H5483\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* will|strong=\"H5315\"* I|strong=\"H5921\"* say|strong=\"H1696\"*?" + }, + { + "verseNum": 16, + "text": "Lord, men|strong=\"H3605\"* live|strong=\"H2421\"* by|strong=\"H5921\"* these|strong=\"H3605\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 17, + "text": "Behold|strong=\"H2009\"*, for|strong=\"H3588\"* peace|strong=\"H7965\"* I|strong=\"H3588\"* had|strong=\"H3588\"* great|strong=\"H4751\"* anguish," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Sheol|strong=\"H7585\"*+ 38:18 Sheol is the place of the dead.* can|strong=\"H4194\"*’t praise|strong=\"H1984\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3117\"* living|strong=\"H2416\"*, the|strong=\"H3117\"* living|strong=\"H2416\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* praise|strong=\"H3034\"* you|strong=\"H3117\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* do today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Now|strong=\"H5921\"* Isaiah|strong=\"H3470\"* had|strong=\"H3470\"* said, “Let them|strong=\"H5921\"* take|strong=\"H5375\"* a|strong=\"H3068\"* cake|strong=\"H1690\"* of|strong=\"H5921\"* figs|strong=\"H8384\"*, and|strong=\"H2421\"* lay it|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* poultice on|strong=\"H5921\"* the|strong=\"H5921\"* boil|strong=\"H7822\"*, and|strong=\"H2421\"* he|strong=\"H5921\"* shall|strong=\"H2421\"* recover|strong=\"H2421\"*.”" + }, + { + "verseNum": 22, + "text": "Hezekiah|strong=\"H2396\"* also|strong=\"H3068\"* had|strong=\"H3068\"* said, “What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3588\"* sign that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*?”" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "At|strong=\"H4428\"* that|strong=\"H3588\"* time|strong=\"H6256\"*, Merodach-baladan|strong=\"H4757\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Baladan|strong=\"H1081\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, sent|strong=\"H7971\"* letters|strong=\"H5612\"* and|strong=\"H1121\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H7971\"* Hezekiah|strong=\"H2396\"*, for|strong=\"H3588\"* he|strong=\"H1931\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H4428\"* been|strong=\"H2470\"* sick|strong=\"H2470\"*, and|strong=\"H1121\"* had|strong=\"H4428\"* recovered|strong=\"H2388\"*." + }, + { + "verseNum": 2, + "text": "Hezekiah|strong=\"H2396\"* was|strong=\"H1961\"* pleased|strong=\"H2896\"* with|strong=\"H1004\"* them|strong=\"H5921\"*, and|strong=\"H3701\"* showed|strong=\"H7200\"* them|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* precious|strong=\"H2896\"* things|strong=\"H1697\"*, the|strong=\"H3605\"* silver|strong=\"H3701\"*, the|strong=\"H3605\"* gold|strong=\"H2091\"*, the|strong=\"H3605\"* spices|strong=\"H1314\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* precious|strong=\"H2896\"* oil|strong=\"H8081\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* his|strong=\"H3605\"* armor|strong=\"H3627\"*, and|strong=\"H3701\"* all|strong=\"H3605\"* that|strong=\"H7200\"* was|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* his|strong=\"H3605\"* treasures. There|strong=\"H1961\"* was|strong=\"H1961\"* nothing|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3605\"* house|strong=\"H1004\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*, that|strong=\"H7200\"* Hezekiah|strong=\"H2396\"* didn’t show|strong=\"H7200\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H4428\"* Isaiah|strong=\"H3470\"* the|strong=\"H3470\"* prophet|strong=\"H5030\"* came|strong=\"H4428\"* to|strong=\"H4428\"* King|strong=\"H4428\"* Hezekiah|strong=\"H2396\"*, and|strong=\"H4428\"* asked|strong=\"H4100\"* him|strong=\"H4428\"*, “What|strong=\"H4100\"* did|strong=\"H4100\"* these|strong=\"H4428\"* men say? From|strong=\"H7350\"* where|strong=\"H4100\"* did|strong=\"H4100\"* they|strong=\"H4100\"* come|strong=\"H7350\"* to|strong=\"H4428\"* you|strong=\"H4100\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* he|strong=\"H3605\"* asked|strong=\"H4100\"*, “What|strong=\"H4100\"* have|strong=\"H1961\"* they|strong=\"H3808\"* seen|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H3605\"* house|strong=\"H1004\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H8085\"* Isaiah|strong=\"H3470\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Hezekiah|strong=\"H2396\"*, “Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*:" + }, + { + "verseNum": 6, + "text": "‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* coming|strong=\"H2009\"* when|strong=\"H3117\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H3068\"* in|strong=\"H3068\"* your|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H3068\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* stored up|strong=\"H5375\"* until|strong=\"H5704\"* today|strong=\"H3117\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* to|strong=\"H5704\"* Babylon. Nothing|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H3808\"* left|strong=\"H3498\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "‘They|strong=\"H3947\"* will|strong=\"H1961\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* who|strong=\"H1121\"* will|strong=\"H1961\"* issue|strong=\"H3318\"* from|strong=\"H4480\"* you|strong=\"H3947\"*, whom you|strong=\"H3947\"* shall|strong=\"H1121\"* father|strong=\"H3205\"*, and|strong=\"H1121\"* they|strong=\"H3947\"* will|strong=\"H1961\"* be|strong=\"H1961\"* eunuchs|strong=\"H5631\"* in|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon’s palace|strong=\"H1964\"*.’”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Hezekiah|strong=\"H2396\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Isaiah|strong=\"H3470\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* is|strong=\"H3068\"* good|strong=\"H2896\"*.” He|strong=\"H3588\"* said|strong=\"H1696\"* moreover|strong=\"H1961\"*, “For|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* peace|strong=\"H7965\"* and|strong=\"H3068\"* truth in|strong=\"H3068\"* my|strong=\"H3068\"* days|strong=\"H3117\"*.”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "“Comfort|strong=\"H5162\"*, comfort|strong=\"H5162\"* my|strong=\"H5971\"* people|strong=\"H5971\"*,” says your|strong=\"H5971\"* God." + }, + { + "verseNum": 2, + "text": "“Speak|strong=\"H1696\"* comfortably|strong=\"H3820\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* call|strong=\"H7121\"* out|strong=\"H3947\"* to|strong=\"H1696\"* her|strong=\"H3605\"* that|strong=\"H3588\"* her|strong=\"H3605\"* warfare|strong=\"H6635\"* is|strong=\"H3068\"* accomplished|strong=\"H4390\"*, that|strong=\"H3588\"* her|strong=\"H3605\"* iniquity|strong=\"H5771\"* is|strong=\"H3068\"* pardoned|strong=\"H7521\"*, that|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* received|strong=\"H3947\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* double|strong=\"H3718\"* for|strong=\"H3588\"* all|strong=\"H3605\"* her|strong=\"H3605\"* sins|strong=\"H2403\"*.”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* one|strong=\"H3068\"* who|strong=\"H3068\"* calls|strong=\"H7121\"* out|strong=\"H6437\"*," + }, + { + "verseNum": 4, + "text": "Every|strong=\"H3605\"* valley|strong=\"H1516\"* shall|strong=\"H2022\"* be|strong=\"H1961\"* exalted|strong=\"H5375\"*," + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* revealed|strong=\"H1540\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* one|strong=\"H3605\"* saying|strong=\"H6963\"*, “Cry|strong=\"H7121\"* out|strong=\"H4100\"*!”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* grass|strong=\"H2682\"* withers|strong=\"H3001\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H6965\"* grass|strong=\"H2682\"* withers|strong=\"H3001\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* who|strong=\"H3063\"* tell good|strong=\"H1319\"* news|strong=\"H1319\"* to|strong=\"H5927\"* Zion|strong=\"H6726\"*, go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H3069\"* come as|strong=\"H6440\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* one," + }, + { + "verseNum": 11, + "text": "He|strong=\"H5763\"* will|strong=\"H5739\"* feed|strong=\"H7462\"* his|strong=\"H5375\"* flock|strong=\"H5739\"* like|strong=\"H2220\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 12, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* waters|strong=\"H4325\"* in|strong=\"H8064\"* the|strong=\"H4058\"* hollow|strong=\"H8168\"* of|strong=\"H2022\"* his|strong=\"H3557\"* hand|strong=\"H8168\"*," + }, + { + "verseNum": 13, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* directed|strong=\"H8505\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*," + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* did he|strong=\"H8394\"* take|strong=\"H3045\"* counsel|strong=\"H3289\"* with|strong=\"H3045\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H2803\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* like|strong=\"H2803\"* a|strong=\"H3068\"* drop|strong=\"H4752\"* in|strong=\"H1471\"* a|strong=\"H3068\"* bucket|strong=\"H1805\"*," + }, + { + "verseNum": 16, + "text": "Lebanon|strong=\"H3844\"* is|strong=\"H3844\"* not sufficient|strong=\"H1767\"* to|strong=\"H1767\"* burn|strong=\"H1197\"*," + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* are|strong=\"H1471\"* like|strong=\"H2803\"* nothing|strong=\"H8414\"* before|strong=\"H5048\"* him|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "To|strong=\"H1819\"* whom|strong=\"H4310\"* then|strong=\"H4100\"* will|strong=\"H4310\"* you|strong=\"H4100\"* liken|strong=\"H1819\"* God|strong=\"H4310\"*?" + }, + { + "verseNum": 19, + "text": "A|strong=\"H3068\"* workman|strong=\"H2796\"* has|strong=\"H2091\"* cast|strong=\"H5258\"* an|strong=\"H2091\"* image|strong=\"H6459\"*," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* who|strong=\"H2450\"* is|strong=\"H2450\"* too|strong=\"H3808\"* impoverished|strong=\"H5533\"* for|strong=\"H6086\"* such|strong=\"H3808\"* an|strong=\"H1245\"* offering|strong=\"H8641\"* chooses a|strong=\"H3068\"* tree|strong=\"H6086\"* that|strong=\"H6086\"* will|strong=\"H3808\"* not|strong=\"H3808\"* rot|strong=\"H7537\"*." + }, + { + "verseNum": 21, + "text": "Haven’t you|strong=\"H3045\"* known|strong=\"H3045\"*?" + }, + { + "verseNum": 22, + "text": "It|strong=\"H5921\"* is|strong=\"H3427\"* he|strong=\"H5921\"* who|strong=\"H3427\"* sits|strong=\"H3427\"* above|strong=\"H5921\"* the|strong=\"H5921\"* circle|strong=\"H2329\"* of|strong=\"H3427\"* the|strong=\"H5921\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 23, + "text": "who|strong=\"H6213\"* brings|strong=\"H5414\"* princes|strong=\"H7336\"* to|strong=\"H6213\"* nothing|strong=\"H8414\"*," + }, + { + "verseNum": 24, + "text": "They|strong=\"H1077\"* are|strong=\"H1571\"* planted|strong=\"H5193\"* scarcely|strong=\"H1077\"*." + }, + { + "verseNum": 25, + "text": "“To|strong=\"H1819\"* whom|strong=\"H4310\"* then will|strong=\"H4310\"* you|strong=\"H4310\"* liken|strong=\"H1819\"* me|strong=\"H7737\"*?" + }, + { + "verseNum": 26, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* on|strong=\"H7200\"* high|strong=\"H4791\"*," + }, + { + "verseNum": 27, + "text": "Why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* say|strong=\"H1696\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 28, + "text": "Haven’t you|strong=\"H3045\"* known|strong=\"H3045\"*?" + }, + { + "verseNum": 29, + "text": "He|strong=\"H5414\"* gives|strong=\"H5414\"* power|strong=\"H3581\"* to|strong=\"H5414\"* the|strong=\"H5414\"* weak." + }, + { + "verseNum": 30, + "text": "Even the|strong=\"H5288\"* youths|strong=\"H5288\"* faint|strong=\"H3286\"* and|strong=\"H5288\"* get|strong=\"H3021\"* weary|strong=\"H3021\"*," + }, + { + "verseNum": 31, + "text": "but|strong=\"H3808\"* those who|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* renew|strong=\"H2498\"* their|strong=\"H3068\"* strength|strong=\"H3581\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "“Keep|strong=\"H2790\"* silent|strong=\"H2790\"* before me|strong=\"H1696\"*, islands," + }, + { + "verseNum": 2, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* raised|strong=\"H5782\"* up|strong=\"H5782\"* one|strong=\"H4310\"* from|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H4217\"*?" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* pursues|strong=\"H7291\"* them|strong=\"H5674\"*" + }, + { + "verseNum": 4, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* worked|strong=\"H6213\"* and|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H1931\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H7200\"* islands have|strong=\"H7200\"* seen|strong=\"H7200\"*, and|strong=\"H7200\"* fear|strong=\"H3372\"*." + }, + { + "verseNum": 6, + "text": "Everyone helps|strong=\"H5826\"* his|strong=\"H2388\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 7, + "text": "So|strong=\"H3808\"* the|strong=\"H2388\"* carpenter|strong=\"H2796\"* encourages|strong=\"H2388\"* the|strong=\"H2388\"* goldsmith|strong=\"H6884\"*." + }, + { + "verseNum": 8, + "text": "“But|strong=\"H3290\"* you|strong=\"H2233\"*, Israel|strong=\"H3478\"*, my|strong=\"H3290\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 9, + "text": "you|strong=\"H3808\"* whom|strong=\"H7121\"* I|strong=\"H5650\"* have|strong=\"H5650\"* taken|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H5650\"* from|strong=\"H5650\"* the|strong=\"H7121\"* ends|strong=\"H7098\"* of|strong=\"H5650\"* the|strong=\"H7121\"* earth," + }, + { + "verseNum": 10, + "text": "Don’t you|strong=\"H3588\"* be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am with|strong=\"H5973\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1961\"* incensed|strong=\"H2734\"* against|strong=\"H2734\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* disappointed and|strong=\"H7379\"* confounded|strong=\"H3637\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3808\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* them|strong=\"H4672\"*, and|strong=\"H4421\"* won’t find|strong=\"H4672\"* them|strong=\"H4672\"*," + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, will|strong=\"H3068\"* hold|strong=\"H2388\"* your|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 14, + "text": "Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, you|strong=\"H3372\"* worm|strong=\"H8438\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H1167\"* made|strong=\"H7760\"* you|strong=\"H7760\"* into|strong=\"H7760\"* a|strong=\"H3068\"* new|strong=\"H2319\"* sharp|strong=\"H2742\"* threshing|strong=\"H1758\"* instrument|strong=\"H2742\"* with|strong=\"H2022\"* teeth|strong=\"H6374\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5375\"* will|strong=\"H3068\"* winnow|strong=\"H2219\"* them|strong=\"H5375\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3068\"* poor|strong=\"H6041\"* and|strong=\"H3478\"* needy|strong=\"H6041\"* seek|strong=\"H1245\"* water|strong=\"H4325\"*, and|strong=\"H3478\"* there|strong=\"H3068\"* is|strong=\"H3068\"* none|strong=\"H3808\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will|strong=\"H4325\"* open|strong=\"H6605\"* rivers|strong=\"H5104\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* cedar, acacia|strong=\"H7848\"*, myrtle|strong=\"H1918\"*, and|strong=\"H6086\"* oil|strong=\"H8081\"* trees|strong=\"H6086\"* in|strong=\"H6086\"* the|strong=\"H5414\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 20, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* see|strong=\"H7200\"*, know|strong=\"H3045\"*, consider|strong=\"H7200\"*, and|strong=\"H3478\"* understand|strong=\"H3045\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 21, + "text": "Produce|strong=\"H7126\"* your|strong=\"H3068\"* cause|strong=\"H7379\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“Let|strong=\"H7760\"* them|strong=\"H7760\"* announce|strong=\"H5046\"* and|strong=\"H8085\"* declare|strong=\"H5046\"* to|strong=\"H3820\"* us|strong=\"H5046\"* what|strong=\"H4100\"* will|strong=\"H3820\"* happen|strong=\"H7136\"*!" + }, + { + "verseNum": 23, + "text": "Declare|strong=\"H5046\"* the|strong=\"H7200\"* things that|strong=\"H3588\"* are|strong=\"H3045\"* to|strong=\"H7200\"* come|strong=\"H3045\"* hereafter," + }, + { + "verseNum": 24, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6467\"* are nothing," + }, + { + "verseNum": 25, + "text": "“I|strong=\"H3644\"* have|strong=\"H7429\"* raised|strong=\"H5782\"* up|strong=\"H5782\"* one|strong=\"H8034\"* from|strong=\"H8034\"* the|strong=\"H7121\"* north|strong=\"H6828\"*, and|strong=\"H6828\"* he|strong=\"H7121\"* has|strong=\"H8121\"* come," + }, + { + "verseNum": 26, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* declared|strong=\"H5046\"* it|strong=\"H3045\"* from|strong=\"H6440\"* the|strong=\"H6440\"* beginning|strong=\"H7218\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4310\"* know|strong=\"H3045\"*?" + }, + { + "verseNum": 27, + "text": "I|strong=\"H2005\"* am|strong=\"H2005\"* the|strong=\"H5414\"* first|strong=\"H7223\"* to|strong=\"H5414\"* say to|strong=\"H5414\"* Zion|strong=\"H6726\"*, ‘Behold|strong=\"H2009\"*, look|strong=\"H2009\"* at|strong=\"H5414\"* them|strong=\"H5414\"*;’" + }, + { + "verseNum": 28, + "text": "When|strong=\"H7200\"* I|strong=\"H1697\"* look|strong=\"H7200\"*, there|strong=\"H7725\"* is|strong=\"H1697\"* no|strong=\"H7200\"* man|strong=\"H7200\"*," + }, + { + "verseNum": 29, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* of|strong=\"H7307\"* their|strong=\"H3605\"* deeds|strong=\"H4639\"* are|strong=\"H5262\"* vanity|strong=\"H8414\"* and|strong=\"H7307\"* nothing|strong=\"H8414\"*." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2005\"*, my|strong=\"H5414\"* servant|strong=\"H5650\"*, whom I|strong=\"H2005\"* uphold|strong=\"H8551\"*," + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* will|strong=\"H3808\"* not|strong=\"H3808\"* shout|strong=\"H6963\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H3808\"* won’t break|strong=\"H7665\"* a|strong=\"H3068\"* bruised|strong=\"H7533\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5704\"* will|strong=\"H3808\"* not|strong=\"H3808\"* fail|strong=\"H3543\"* nor|strong=\"H3808\"* be|strong=\"H3808\"* discouraged|strong=\"H7533\"*," + }, + { + "verseNum": 5, + "text": "God|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* called|strong=\"H7121\"* you|strong=\"H5414\"* in|strong=\"H3068\"* righteousness|strong=\"H6664\"*." + }, + { + "verseNum": 7, + "text": "to|strong=\"H3318\"* open|strong=\"H6491\"* the|strong=\"H3318\"* blind|strong=\"H5787\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 8, + "text": "“I|strong=\"H5414\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H8085\"* former|strong=\"H7223\"* things|strong=\"H7223\"* have|strong=\"H7223\"* happened" + }, + { + "verseNum": 10, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3381\"* Yahweh|strong=\"H3068\"* a|strong=\"H3068\"* new|strong=\"H2319\"* song|strong=\"H7892\"*," + }, + { + "verseNum": 11, + "text": "Let the|strong=\"H5375\"* wilderness|strong=\"H4057\"* and|strong=\"H5892\"* its|strong=\"H5375\"* cities|strong=\"H5892\"* raise|strong=\"H5375\"* their|strong=\"H5375\"* voices," + }, + { + "verseNum": 12, + "text": "Let|strong=\"H7760\"* them|strong=\"H7760\"* give|strong=\"H7760\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* like|strong=\"H3318\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*." + }, + { + "verseNum": 14, + "text": "“I have|strong=\"H3205\"* been|strong=\"H5769\"* silent|strong=\"H2790\"* a|strong=\"H3068\"* long|strong=\"H5769\"* time|strong=\"H5769\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H7760\"* will|strong=\"H2022\"* destroy|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H2022\"* hills|strong=\"H1389\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* will|strong=\"H1697\"* bring|strong=\"H6213\"* the|strong=\"H6440\"* blind|strong=\"H5787\"* by|strong=\"H1870\"* a|strong=\"H3068\"* way|strong=\"H1870\"* that|strong=\"H3045\"* they|strong=\"H3808\"* don’t know|strong=\"H3045\"*." + }, + { + "verseNum": 17, + "text": "“Those who trust in|strong=\"H5472\"* engraved images|strong=\"H4541\"*," + }, + { + "verseNum": 18, + "text": "“Hear|strong=\"H8085\"*, you|strong=\"H7200\"* deaf|strong=\"H2795\"*," + }, + { + "verseNum": 19, + "text": "Who|strong=\"H4310\"* is|strong=\"H3068\"* blind|strong=\"H5787\"*, but|strong=\"H3588\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*?" + }, + { + "verseNum": 20, + "text": "You|strong=\"H3808\"* see|strong=\"H7200\"* many|strong=\"H7227\"* things|strong=\"H7227\"*, but|strong=\"H3808\"* don’t observe|strong=\"H8104\"*." + }, + { + "verseNum": 21, + "text": "It|strong=\"H3068\"* pleased|strong=\"H2654\"* Yahweh|strong=\"H3068\"*, for|strong=\"H4616\"* his|strong=\"H3068\"* righteousness|strong=\"H6664\"*’ sake|strong=\"H4616\"*, to|strong=\"H3068\"* magnify|strong=\"H1431\"* the|strong=\"H3068\"* law|strong=\"H8451\"*" + }, + { + "verseNum": 22, + "text": "But|strong=\"H1961\"* this|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* robbed|strong=\"H8154\"* and|strong=\"H7725\"* plundered|strong=\"H8154\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 23, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* there|strong=\"H2063\"* among|strong=\"H4310\"* you|strong=\"H8085\"* who|strong=\"H4310\"* will|strong=\"H4310\"* give|strong=\"H7181\"* ear|strong=\"H8085\"* to|strong=\"H8085\"* this|strong=\"H2063\"*?" + }, + { + "verseNum": 24, + "text": "Who|strong=\"H4310\"* gave|strong=\"H5414\"* Jacob|strong=\"H3290\"* as|strong=\"H3068\"* plunder," + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H5921\"* he|strong=\"H3808\"* poured|strong=\"H8210\"* the|strong=\"H5921\"* fierceness|strong=\"H5807\"* of|strong=\"H5921\"* his|strong=\"H7760\"* anger|strong=\"H2534\"* on|strong=\"H5921\"* him|strong=\"H5921\"*," + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H3588\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* created|strong=\"H1254\"* you|strong=\"H3588\"*, Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3588\"* waters|strong=\"H4325\"*, I|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* with|strong=\"H3212\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Since you|strong=\"H5414\"* have|strong=\"H5869\"* been precious|strong=\"H3365\"* and|strong=\"H5869\"* honored|strong=\"H3513\"* in|strong=\"H5315\"* my|strong=\"H5414\"* sight|strong=\"H5869\"*," + }, + { + "verseNum": 5, + "text": "Don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am with|strong=\"H2233\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* tell the|strong=\"H5414\"* north|strong=\"H6828\"*, ‘Give|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"*!’" + }, + { + "verseNum": 7, + "text": "everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H7121\"* my|strong=\"H3605\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 8, + "text": "Bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* blind|strong=\"H5787\"* people|strong=\"H5971\"* who|strong=\"H5971\"* have|strong=\"H3426\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* be|strong=\"H1471\"* gathered|strong=\"H6908\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 10, + "text": "“You|strong=\"H3588\"* are|strong=\"H3068\"* my|strong=\"H3068\"* witnesses|strong=\"H5707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3068\"* myself am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H8085\"* have|strong=\"H3068\"* declared|strong=\"H5046\"*, I|strong=\"H8085\"* have|strong=\"H3068\"* saved|strong=\"H3467\"*, and|strong=\"H3068\"* I|strong=\"H8085\"* have|strong=\"H3068\"* shown|strong=\"H5046\"*," + }, + { + "verseNum": 13, + "text": "Yes|strong=\"H1571\"*, since|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* was|strong=\"H1931\"*, I|strong=\"H3117\"* am he|strong=\"H1931\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Redeemer|strong=\"H1350\"*, the|strong=\"H3605\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “For|strong=\"H7971\"* your|strong=\"H3068\"* sake|strong=\"H4616\"*, I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3381\"* Babylon, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3068\"* bring|strong=\"H3381\"* all|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H7971\"* down|strong=\"H3381\"* as|strong=\"H3068\"* fugitives|strong=\"H1281\"*, even|strong=\"H3068\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* ships of|strong=\"H3068\"* their|strong=\"H3605\"* rejoicing|strong=\"H7440\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H3478\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*, the|strong=\"H3068\"* Creator|strong=\"H1254\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, your|strong=\"H3068\"* King|strong=\"H4428\"*.”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* makes|strong=\"H5414\"* a|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* the|strong=\"H5414\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 17, + "text": "who brings|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H3318\"* chariot|strong=\"H7393\"* and|strong=\"H6965\"* horse|strong=\"H5483\"*," + }, + { + "verseNum": 18, + "text": "“Don’t remember|strong=\"H2142\"* the|strong=\"H2142\"* former|strong=\"H7223\"* things|strong=\"H7223\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3808\"* do|strong=\"H6213\"* a|strong=\"H3068\"* new|strong=\"H2319\"* thing|strong=\"H2319\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* animals|strong=\"H2416\"* of|strong=\"H1323\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, the|strong=\"H3588\"* jackals|strong=\"H8577\"* and|strong=\"H5971\"* the|strong=\"H3588\"* ostriches|strong=\"H3284\"*, shall|strong=\"H5971\"* honor|strong=\"H3513\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 21, + "text": "the|strong=\"H5608\"* people|strong=\"H5971\"* which|strong=\"H2098\"* I|strong=\"H2098\"* formed|strong=\"H3335\"* for|strong=\"H5971\"* myself," + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3478\"* not|strong=\"H3808\"* called|strong=\"H7121\"* on|strong=\"H7121\"* me|strong=\"H7121\"*, Jacob|strong=\"H3290\"*;" + }, + { + "verseNum": 23, + "text": "You|strong=\"H3808\"* have|strong=\"H3808\"* not|strong=\"H3808\"* brought me|strong=\"H3808\"* any|strong=\"H3808\"* of|strong=\"H2077\"* your|strong=\"H3513\"* sheep|strong=\"H7716\"* for|strong=\"H3808\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*," + }, + { + "verseNum": 24, + "text": "You|strong=\"H3808\"* have|strong=\"H5771\"* bought|strong=\"H7069\"* me|strong=\"H3808\"* no|strong=\"H3808\"* sweet|strong=\"H7070\"* cane|strong=\"H7070\"* with|strong=\"H5647\"* money|strong=\"H3701\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H3808\"*, even|strong=\"H3808\"* I|strong=\"H3808\"*, am he|strong=\"H1931\"* who|strong=\"H1931\"* blots out|strong=\"H4229\"* your|strong=\"H2142\"* transgressions|strong=\"H6588\"* for|strong=\"H4616\"* my|strong=\"H2142\"* own sake|strong=\"H4616\"*;" + }, + { + "verseNum": 26, + "text": "Put|strong=\"H2142\"* me|strong=\"H8199\"* in|strong=\"H3162\"* remembrance|strong=\"H2142\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H6586\"* first|strong=\"H7223\"* father sinned|strong=\"H2398\"*," + }, + { + "verseNum": 28, + "text": "Therefore I|strong=\"H5414\"* will|strong=\"H3478\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5414\"* sanctuary|strong=\"H6944\"*;" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Yet|strong=\"H6258\"* listen|strong=\"H8085\"* now|strong=\"H6258\"*, Jacob|strong=\"H3290\"* my|strong=\"H8085\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 2, + "text": "This|strong=\"H6213\"* is|strong=\"H3068\"* what|strong=\"H6213\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* made|strong=\"H6213\"* you|strong=\"H6213\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7307\"* pour|strong=\"H3332\"* water|strong=\"H4325\"* on|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H3588\"* is|strong=\"H7307\"* thirsty|strong=\"H6771\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H4325\"* they|strong=\"H5921\"* will|strong=\"H4325\"* spring|strong=\"H6779\"* up|strong=\"H6779\"* among|strong=\"H5921\"* the|strong=\"H5921\"* grass|strong=\"H2682\"*," + }, + { + "verseNum": 5, + "text": "One|strong=\"H2088\"* will|strong=\"H3068\"* say|strong=\"H3478\"*, ‘I|strong=\"H2088\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s.’" + }, + { + "verseNum": 6, + "text": "This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* is|strong=\"H4310\"* like|strong=\"H3644\"* me|strong=\"H5046\"*?" + }, + { + "verseNum": 8, + "text": "Don’t fear|strong=\"H6342\"*," + }, + { + "verseNum": 9, + "text": "Everyone|strong=\"H3605\"* who|strong=\"H3605\"* makes|strong=\"H7200\"* a|strong=\"H3068\"* carved|strong=\"H6459\"* image|strong=\"H6459\"* is|strong=\"H3605\"* vain|strong=\"H8414\"*." + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* fashioned|strong=\"H3335\"* a|strong=\"H3068\"* god|strong=\"H4310\"*," + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* fellows|strong=\"H2270\"* will|strong=\"H3162\"* be|strong=\"H3162\"* disappointed;" + }, + { + "verseNum": 12, + "text": "The|strong=\"H1571\"* blacksmith|strong=\"H2796\"* takes an|strong=\"H1571\"* ax," + }, + { + "verseNum": 13, + "text": "The|strong=\"H6213\"* carpenter|strong=\"H2796\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* a|strong=\"H3068\"* line|strong=\"H6957\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H3947\"* cuts|strong=\"H3772\"* down|strong=\"H3772\"* cedars for|strong=\"H6086\"* himself|strong=\"H1431\"*," + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1961\"* it|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H6213\"* a|strong=\"H3068\"* man to|strong=\"H1961\"* burn|strong=\"H1197\"*;" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5921\"* burns|strong=\"H8313\"* part|strong=\"H2677\"* of|strong=\"H5921\"* it|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3588\"* rest|strong=\"H7611\"* of|strong=\"H7611\"* it|strong=\"H3588\"* he|strong=\"H3588\"* makes|strong=\"H6213\"* into|strong=\"H6213\"* a|strong=\"H3068\"* god," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* don’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* do|strong=\"H5869\"* they|strong=\"H3588\"* consider|strong=\"H7200\"*," + }, + { + "verseNum": 19, + "text": "No|strong=\"H3808\"* one|strong=\"H3808\"* thinks," + }, + { + "verseNum": 20, + "text": "He|strong=\"H3808\"* feeds|strong=\"H7462\"* on|strong=\"H7462\"* ashes." + }, + { + "verseNum": 21, + "text": "Remember|strong=\"H2142\"* these|strong=\"H2142\"* things|strong=\"H3808\"*, Jacob|strong=\"H3290\"* and|strong=\"H3478\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 22, + "text": "I|strong=\"H3588\"* have|strong=\"H2403\"* blotted|strong=\"H4229\"* out|strong=\"H4229\"*, as|strong=\"H3588\"* a|strong=\"H3068\"* thick|strong=\"H5645\"* cloud|strong=\"H6051\"*, your|strong=\"H7725\"* transgressions|strong=\"H6588\"*," + }, + { + "verseNum": 23, + "text": "Sing|strong=\"H7442\"*, you|strong=\"H3588\"* heavens|strong=\"H8064\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* it|strong=\"H3588\"*!" + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* Redeemer|strong=\"H1350\"*," + }, + { + "verseNum": 25, + "text": "who|strong=\"H2450\"* frustrates|strong=\"H6565\"* the|strong=\"H7725\"* signs of|strong=\"H1847\"* the|strong=\"H7725\"* liars," + }, + { + "verseNum": 26, + "text": "who|strong=\"H5650\"* confirms|strong=\"H6965\"* the|strong=\"H1129\"* word|strong=\"H1697\"* of|strong=\"H1697\"* his|strong=\"H6965\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 27, + "text": "who says to|strong=\"H5104\"* the|strong=\"H3001\"* deep|strong=\"H6683\"*, ‘Be dry|strong=\"H3001\"*,’" + }, + { + "verseNum": 28, + "text": "who|strong=\"H3605\"* says of|strong=\"H3605\"* Cyrus|strong=\"H3566\"*, ‘He|strong=\"H3605\"* is|strong=\"H3605\"* my|strong=\"H3605\"* shepherd|strong=\"H7473\"*, and|strong=\"H3389\"* shall|strong=\"H3389\"* perform|strong=\"H7999\"* all|strong=\"H3605\"* my|strong=\"H3605\"* pleasure|strong=\"H2656\"*,’" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* his|strong=\"H3068\"* anointed|strong=\"H4899\"*, to|strong=\"H3068\"* Cyrus|strong=\"H3566\"*, whose|strong=\"H1471\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* I|strong=\"H3541\"* have|strong=\"H3068\"* held|strong=\"H2388\"* to|strong=\"H3068\"* subdue|strong=\"H7286\"* nations|strong=\"H1471\"* before|strong=\"H6440\"* him|strong=\"H6440\"* and|strong=\"H3068\"* strip kings|strong=\"H4428\"* of|strong=\"H4428\"* their|strong=\"H3068\"* armor, to|strong=\"H3068\"* open|strong=\"H6605\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H6440\"* will|strong=\"H6440\"* go|strong=\"H3212\"* before|strong=\"H6440\"* you|strong=\"H6440\"*" + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* the|strong=\"H3588\"* treasures|strong=\"H4301\"* of|strong=\"H3068\"* darkness|strong=\"H2822\"*" + }, + { + "verseNum": 4, + "text": "For|strong=\"H7121\"* Jacob|strong=\"H3290\"* my|strong=\"H3045\"* servant|strong=\"H5650\"*’s sake|strong=\"H4616\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* there|strong=\"H3045\"* is|strong=\"H3068\"* no|strong=\"H3808\"* one|strong=\"H3808\"* else|strong=\"H5750\"*." + }, + { + "verseNum": 6, + "text": "that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* from|strong=\"H3068\"* the|strong=\"H3588\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3588\"* sun|strong=\"H8121\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H3068\"* form|strong=\"H3335\"* the|strong=\"H3605\"* light" + }, + { + "verseNum": 8, + "text": "Rain|strong=\"H7491\"*, you|strong=\"H6509\"* heavens|strong=\"H8064\"*, from|strong=\"H3068\"* above|strong=\"H4605\"*," + }, + { + "verseNum": 9, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6213\"* him|strong=\"H3027\"* who|strong=\"H4100\"* strives with|strong=\"H6213\"* his|strong=\"H3027\"* Maker|strong=\"H6213\"*—" + }, + { + "verseNum": 10, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3205\"* him|strong=\"H3205\"* who|strong=\"H4100\"* says to|strong=\"H3205\"* a|strong=\"H3068\"* father|strong=\"H3205\"*, ‘What|strong=\"H4100\"* have|strong=\"H3205\"* you|strong=\"H4100\"* become|strong=\"H3205\"* the|strong=\"H3205\"* father|strong=\"H3205\"* of|strong=\"H3205\"*?’" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*" + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"* have|strong=\"H3027\"* made|strong=\"H6213\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* created|strong=\"H1254\"* man|strong=\"H3605\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* have|strong=\"H3068\"* raised|strong=\"H5782\"* him|strong=\"H7971\"* up|strong=\"H5782\"* in|strong=\"H3068\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “The|strong=\"H5921\"* labor|strong=\"H3018\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 15, + "text": "Most certainly you|strong=\"H3467\"* are|strong=\"H3478\"* a|strong=\"H3068\"* God who|strong=\"H3478\"* has|strong=\"H3478\"* hidden|strong=\"H5641\"* yourself|strong=\"H5641\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3605\"* will|strong=\"H1571\"* be|strong=\"H1571\"* disappointed," + }, + { + "verseNum": 17, + "text": "Israel|strong=\"H3478\"* will|strong=\"H3068\"* be|strong=\"H3808\"* saved|strong=\"H3467\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* an|strong=\"H3068\"* everlasting|strong=\"H5769\"* salvation|strong=\"H8668\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* who|strong=\"H1931\"* created|strong=\"H1254\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* secret|strong=\"H5643\"*," + }, + { + "verseNum": 20, + "text": "“Assemble|strong=\"H6908\"* yourselves|strong=\"H5375\"* and|strong=\"H6086\"* come|strong=\"H5066\"*." + }, + { + "verseNum": 21, + "text": "Declare|strong=\"H5046\"* and|strong=\"H3068\"* present|strong=\"H5066\"* it|strong=\"H2063\"*." + }, + { + "verseNum": 22, + "text": "“Look|strong=\"H6437\"* to|strong=\"H6437\"* me|strong=\"H3467\"*, and|strong=\"H6437\"* be|strong=\"H5750\"* saved|strong=\"H3467\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* ends of|strong=\"H3605\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* have|strong=\"H1697\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* say of|strong=\"H3068\"* me|strong=\"H3605\"*," + }, + { + "verseNum": 25, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* be|strong=\"H3068\"* justified|strong=\"H6663\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Bel|strong=\"H1078\"* bows down|strong=\"H3766\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3808\"* stoop|strong=\"H7164\"* and|strong=\"H1980\"* they|strong=\"H3808\"* bow|strong=\"H3766\"* down|strong=\"H3766\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 3, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H4480\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 4, + "text": "Even|strong=\"H5704\"* to|strong=\"H5704\"* old|strong=\"H2209\"* age|strong=\"H7872\"* I|strong=\"H5704\"* am he|strong=\"H1931\"*," + }, + { + "verseNum": 5, + "text": "“To|strong=\"H1819\"* whom|strong=\"H4310\"* will|strong=\"H4310\"* you|strong=\"H4310\"* compare|strong=\"H1819\"* me|strong=\"H7737\"*, and|strong=\"H7737\"* consider my|strong=\"H7737\"* equal|strong=\"H7737\"*," + }, + { + "verseNum": 6, + "text": "Some pour out|strong=\"H6213\"* gold|strong=\"H2091\"* from|strong=\"H2091\"* the|strong=\"H6213\"* bag|strong=\"H3599\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* bear|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* their|strong=\"H5375\"* shoulder|strong=\"H3802\"*." + }, + { + "verseNum": 8, + "text": "“Remember|strong=\"H2142\"* this|strong=\"H2063\"*, and|strong=\"H7725\"* show yourselves|strong=\"H5921\"* men." + }, + { + "verseNum": 9, + "text": "Remember|strong=\"H2142\"* the|strong=\"H3588\"* former|strong=\"H7223\"* things|strong=\"H7223\"* of|strong=\"H7223\"* old|strong=\"H5769\"*;" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3808\"* declare|strong=\"H5046\"* the|strong=\"H3605\"* end|strong=\"H6924\"* from|strong=\"H6965\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H6213\"* call|strong=\"H7121\"* a|strong=\"H3068\"* ravenous|strong=\"H5861\"* bird|strong=\"H5861\"* from|strong=\"H4217\"* the|strong=\"H6213\"* east|strong=\"H4217\"*," + }, + { + "verseNum": 12, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3820\"* me|strong=\"H3820\"*, you|strong=\"H3820\"* stubborn-hearted," + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* bring|strong=\"H7126\"* my|strong=\"H5414\"* righteousness|strong=\"H6666\"* near|strong=\"H7126\"*." + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "“Come|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H3381\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* dust|strong=\"H6083\"*, virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Babylon." + }, + { + "verseNum": 2, + "text": "Take|strong=\"H3947\"* the|strong=\"H3947\"* millstones|strong=\"H7347\"* and|strong=\"H3947\"* grind|strong=\"H2912\"* flour|strong=\"H7058\"*." + }, + { + "verseNum": 3, + "text": "Your|strong=\"H3947\"* nakedness|strong=\"H6172\"* will|strong=\"H1571\"* be|strong=\"H3808\"* uncovered|strong=\"H1540\"*." + }, + { + "verseNum": 4, + "text": "Our|strong=\"H3068\"* Redeemer|strong=\"H1350\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*," + }, + { + "verseNum": 5, + "text": "“Sit|strong=\"H3427\"* in|strong=\"H3427\"* silence, and|strong=\"H3427\"* go|strong=\"H3254\"* into|strong=\"H1323\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* was|strong=\"H3027\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* my|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* said, ‘I|strong=\"H5704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* princess forever|strong=\"H5769\"*,’" + }, + { + "verseNum": 8, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3045\"* who|strong=\"H3427\"* are|strong=\"H3824\"* given|strong=\"H8085\"* to|strong=\"H8085\"* pleasures|strong=\"H5719\"*," + }, + { + "verseNum": 9, + "text": "But|strong=\"H3117\"* these|strong=\"H8147\"* two|strong=\"H8147\"* things|strong=\"H8147\"* will|strong=\"H3117\"* come to|strong=\"H5921\"* you|strong=\"H5921\"* in|strong=\"H5921\"* a|strong=\"H3068\"* moment|strong=\"H7281\"* in|strong=\"H5921\"* one|strong=\"H8147\"* day|strong=\"H3117\"*:" + }, + { + "verseNum": 10, + "text": "For|strong=\"H7451\"* you|strong=\"H7725\"* have|strong=\"H7200\"* trusted in|strong=\"H7725\"* your|strong=\"H7200\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* disaster|strong=\"H7451\"* will|strong=\"H3808\"* come|strong=\"H5307\"* on|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "“Stand|strong=\"H5975\"* now|strong=\"H4994\"* with|strong=\"H5975\"* your|strong=\"H4994\"* enchantments|strong=\"H2267\"*" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* are|strong=\"H8064\"* wearied|strong=\"H3811\"* in|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H5921\"* counsels|strong=\"H6098\"*." + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H3808\"* are|strong=\"H3027\"* like|strong=\"H1961\"* stubble|strong=\"H7179\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H5676\"* things|strong=\"H1961\"* that|strong=\"H3651\"* you|strong=\"H3651\"* labored|strong=\"H3021\"* in|strong=\"H3021\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* this|strong=\"H3651\"*:" + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "“Hear|strong=\"H8085\"* this|strong=\"H2063\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 2, + "text": "for|strong=\"H3588\"* they|strong=\"H3588\"* call|strong=\"H7121\"* themselves|strong=\"H7121\"* citizens of|strong=\"H3068\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H8085\"* have|strong=\"H7223\"* declared|strong=\"H5046\"* the|strong=\"H8085\"* former|strong=\"H7223\"* things|strong=\"H7223\"* from|strong=\"H3318\"* of|strong=\"H6310\"* old|strong=\"H7223\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3588\"* I|strong=\"H3588\"* knew|strong=\"H1847\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H7186\"* obstinate|strong=\"H7186\"*," + }, + { + "verseNum": 5, + "text": "therefore|strong=\"H6213\"* I|strong=\"H2962\"* have|strong=\"H5262\"* declared|strong=\"H5046\"* it|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6680\"* from|strong=\"H8085\"* of|strong=\"H6213\"* old;" + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* have|strong=\"H3045\"* heard|strong=\"H8085\"* it|strong=\"H3045\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3117\"* are|strong=\"H3117\"* created|strong=\"H1254\"* now|strong=\"H6258\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* from|strong=\"H6440\"* of|strong=\"H3117\"* old|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, you|strong=\"H3588\"* didn’t hear|strong=\"H8085\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H8034\"* my|strong=\"H3772\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, I|strong=\"H3772\"* will|strong=\"H8034\"* defer my|strong=\"H3772\"* anger," + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H2009\"* have|strong=\"H3808\"* refined|strong=\"H6884\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* my|strong=\"H5414\"* own sake|strong=\"H4616\"*," + }, + { + "verseNum": 12, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H7121\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 13, + "text": "Yes, my|strong=\"H3027\"* hand|strong=\"H3027\"* has|strong=\"H3027\"* laid|strong=\"H3245\"* the|strong=\"H7121\"* foundation|strong=\"H3245\"* of|strong=\"H3027\"* the|strong=\"H7121\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 14, + "text": "“Assemble|strong=\"H6908\"* yourselves|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* hear|strong=\"H8085\"*!" + }, + { + "verseNum": 15, + "text": "I|strong=\"H1870\"*, even I|strong=\"H1870\"*, have|strong=\"H1696\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "“Come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H1696\"* me|strong=\"H7971\"* and|strong=\"H7971\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*:" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 18, + "text": "Oh|strong=\"H3863\"* that|strong=\"H3863\"* you|strong=\"H1961\"* had|strong=\"H1961\"* listened|strong=\"H7181\"* to|strong=\"H1961\"* my|strong=\"H1961\"* commandments|strong=\"H4687\"*!" + }, + { + "verseNum": 19, + "text": "Your|strong=\"H6440\"* offspring|strong=\"H2233\"* also|strong=\"H8034\"* would|strong=\"H8034\"* have|strong=\"H1961\"* been|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6440\"* sand|strong=\"H2344\"*" + }, + { + "verseNum": 20, + "text": "Leave|strong=\"H3318\"* Babylon!" + }, + { + "verseNum": 21, + "text": "They|strong=\"H3808\"* didn’t thirst|strong=\"H6770\"* when he|strong=\"H3808\"* led|strong=\"H3212\"* them through|strong=\"H1234\"* the|strong=\"H3808\"* deserts|strong=\"H2723\"*." + }, + { + "verseNum": 22, + "text": "“There|strong=\"H7965\"* is|strong=\"H3068\"* no|strong=\"H7563\"* peace|strong=\"H7965\"*”, says Yahweh|strong=\"H3068\"*, “for|strong=\"H3068\"* the|strong=\"H3068\"* wicked|strong=\"H7563\"*.”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"*, islands, to|strong=\"H3068\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3027\"* has|strong=\"H3027\"* made|strong=\"H7760\"* my|strong=\"H7760\"* mouth|strong=\"H6310\"* like|strong=\"H6738\"* a|strong=\"H3068\"* sharp|strong=\"H2299\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3478\"* said to|strong=\"H3478\"* me|strong=\"H5650\"*, “You|strong=\"H3478\"* are|strong=\"H3478\"* my|strong=\"H5650\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3068\"* I|strong=\"H3068\"* said, “I|strong=\"H3068\"* have|strong=\"H3068\"* labored|strong=\"H3021\"* in|strong=\"H3068\"* vain|strong=\"H1892\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, he|strong=\"H3068\"* who|strong=\"H3068\"* formed|strong=\"H3335\"* me|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3068\"* womb to|strong=\"H7725\"* be|strong=\"H1961\"* his|strong=\"H3068\"* servant|strong=\"H5650\"*," + }, + { + "verseNum": 6, + "text": "Indeed|strong=\"H7725\"*, he|strong=\"H5704\"* says, “It|strong=\"H5414\"* is|strong=\"H3478\"* too|strong=\"H1961\"* light|strong=\"H7043\"* a|strong=\"H3068\"* thing|strong=\"H7043\"* that|strong=\"H1471\"* you|strong=\"H5414\"* should|strong=\"H3478\"* be|strong=\"H1961\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* to|strong=\"H5704\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5414\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H7200\"* Redeemer|strong=\"H1350\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, and|strong=\"H6965\"* his|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H3117\"* have|strong=\"H3068\"* answered|strong=\"H6030\"* you|strong=\"H5414\"* in|strong=\"H3068\"* an|strong=\"H5414\"* acceptable|strong=\"H7522\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 9, + "text": "saying to|strong=\"H3318\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1870\"* bound, ‘Come|strong=\"H3318\"* out|strong=\"H3318\"*!’;" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* hunger|strong=\"H7456\"* nor|strong=\"H3808\"* thirst|strong=\"H6770\"*;" + }, + { + "verseNum": 11, + "text": "I|strong=\"H7760\"* will|strong=\"H2022\"* make|strong=\"H7760\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"* a|strong=\"H3068\"* road|strong=\"H1870\"*," + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, these shall|strong=\"H6828\"* come|strong=\"H7350\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*," + }, + { + "verseNum": 13, + "text": "Sing|strong=\"H7442\"*, heavens|strong=\"H8064\"*, and|strong=\"H3068\"* be|strong=\"H3068\"* joyful|strong=\"H7440\"*, earth|strong=\"H8064\"*!" + }, + { + "verseNum": 14, + "text": "But|strong=\"H5800\"* Zion|strong=\"H6726\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H7911\"*," + }, + { + "verseNum": 15, + "text": "“Can|strong=\"H3808\"* a|strong=\"H3068\"* woman forget|strong=\"H7911\"* her|strong=\"H7911\"* nursing|strong=\"H5764\"* child|strong=\"H1121\"*," + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H5921\"* engraved you|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palms|strong=\"H3709\"* of|strong=\"H2346\"* my|strong=\"H5921\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H4480\"* children|strong=\"H1121\"* hurry|strong=\"H4116\"*." + }, + { + "verseNum": 18, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H3068\"* see|strong=\"H7200\"*:" + }, + { + "verseNum": 19, + "text": "“For|strong=\"H3588\"*, as|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H3588\"* waste|strong=\"H2723\"* and|strong=\"H3427\"* your|strong=\"H3588\"* desolate|strong=\"H8074\"* places|strong=\"H2723\"*," + }, + { + "verseNum": 20, + "text": "The|strong=\"H5066\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H5066\"* bereavement will|strong=\"H1121\"* say in|strong=\"H3427\"* your|strong=\"H5066\"* ears," + }, + { + "verseNum": 21, + "text": "Then you|strong=\"H3205\"* will|strong=\"H4310\"* say in|strong=\"H7604\"* your|strong=\"H5493\"* heart|strong=\"H3824\"*, ‘Who|strong=\"H4310\"* has|strong=\"H4310\"* conceived these|strong=\"H1992\"* for|strong=\"H3205\"* me|strong=\"H3205\"*, since|strong=\"H2005\"* I|strong=\"H2005\"* have|strong=\"H7604\"* been|strong=\"H7921\"* bereaved|strong=\"H7921\"* of|strong=\"H3205\"* my|strong=\"H5493\"* children|strong=\"H7921\"*" + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H1471\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* to|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 23, + "text": "Kings|strong=\"H4428\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* your|strong=\"H3068\"* foster fathers," + }, + { + "verseNum": 24, + "text": "Shall|strong=\"H6662\"* the|strong=\"H3947\"* plunder|strong=\"H4455\"* be|strong=\"H6662\"* taken|strong=\"H3947\"* from|strong=\"H3947\"* the|strong=\"H3947\"* mighty|strong=\"H1368\"*," + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Even|strong=\"H1571\"* the|strong=\"H3588\"* captives|strong=\"H7628\"* of|strong=\"H1121\"* the|strong=\"H3588\"* mighty|strong=\"H1368\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H3947\"* away|strong=\"H3947\"*," + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* feed those|strong=\"H3605\"* who|strong=\"H3605\"* oppress|strong=\"H3238\"* you|strong=\"H3588\"* with|strong=\"H3068\"* their|strong=\"H3605\"* own flesh|strong=\"H1320\"*;" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Where|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H3541\"* bill|strong=\"H5612\"* of|strong=\"H3068\"* your|strong=\"H3068\"* mother’s divorce|strong=\"H7971\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* put|strong=\"H7971\"* her|strong=\"H7971\"* away|strong=\"H7971\"*?" + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4069\"*, when|strong=\"H7114\"* I|strong=\"H2005\"* came|strong=\"H4325\"*, was|strong=\"H3027\"* there no|strong=\"H7760\"* one|strong=\"H3027\"*?" + }, + { + "verseNum": 3, + "text": "I|strong=\"H7760\"* clothe|strong=\"H3847\"* the|strong=\"H7760\"* heavens|strong=\"H8064\"* with|strong=\"H3847\"* blackness|strong=\"H6940\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has|strong=\"H1697\"* given|strong=\"H5414\"* me|strong=\"H5414\"* the|strong=\"H8085\"* tongue|strong=\"H3956\"* of|strong=\"H1697\"* those|strong=\"H8085\"* who|strong=\"H3045\"* are|strong=\"H1697\"* taught|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has opened|strong=\"H6605\"* my|strong=\"H6605\"* ear." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* my|strong=\"H5414\"* back|strong=\"H1460\"* to|strong=\"H5414\"* those who|strong=\"H5221\"* beat|strong=\"H5221\"* me|strong=\"H5414\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H3808\"* help|strong=\"H5826\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H4310\"* who|strong=\"H4310\"* justifies|strong=\"H6663\"* me|strong=\"H5975\"* is|strong=\"H4310\"* near|strong=\"H5066\"*." + }, + { + "verseNum": 9, + "text": "Behold|strong=\"H2005\"*, the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H4310\"* help|strong=\"H5826\"* me|strong=\"H7561\"*!" + }, + { + "verseNum": 10, + "text": "Who|strong=\"H4310\"* among|strong=\"H8034\"* you|strong=\"H6963\"* fears|strong=\"H3373\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* kindle|strong=\"H1197\"* a|strong=\"H3068\"* fire," + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H7291\"*, you|strong=\"H7291\"* who|strong=\"H3068\"* follow|strong=\"H7291\"* after|strong=\"H7291\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 2, + "text": "Look|strong=\"H5027\"* to|strong=\"H7121\"* Abraham your|strong=\"H3588\"* father," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* comforted|strong=\"H5162\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 4, + "text": "“Listen|strong=\"H7181\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, my|strong=\"H3318\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 5, + "text": "My|strong=\"H3318\"* righteousness|strong=\"H6664\"* is|strong=\"H6664\"* near|strong=\"H7138\"*." + }, + { + "verseNum": 6, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H4191\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*," + }, + { + "verseNum": 7, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3820\"* me|strong=\"H3372\"*, you|strong=\"H3045\"* who|strong=\"H5971\"* know|strong=\"H3045\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* moth|strong=\"H6211\"* will|strong=\"H1961\"* eat them|strong=\"H1961\"* up|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* garment," + }, + { + "verseNum": 9, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*, put|strong=\"H3847\"* on|strong=\"H3117\"* strength|strong=\"H5797\"*, arm|strong=\"H2220\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 10, + "text": "Isn’t it|strong=\"H7760\"* you|strong=\"H7760\"* who|strong=\"H1931\"* dried|strong=\"H2717\"* up|strong=\"H7760\"* the|strong=\"H7760\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 11, + "text": "Those|strong=\"H5921\"* ransomed|strong=\"H6299\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"*," + }, + { + "verseNum": 12, + "text": "“I|strong=\"H5414\"*, even I|strong=\"H5414\"*, am|strong=\"H5162\"* he|strong=\"H1931\"* who|strong=\"H4310\"* comforts|strong=\"H5162\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "Have|strong=\"H3068\"* you|strong=\"H6440\"* forgotten|strong=\"H7911\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* Maker|strong=\"H6213\"*," + }, + { + "verseNum": 14, + "text": "The|strong=\"H4191\"* captive exile|strong=\"H6808\"* will|strong=\"H3808\"* speedily|strong=\"H4116\"* be|strong=\"H4191\"* freed." + }, + { + "verseNum": 15, + "text": "For|strong=\"H8034\"* I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* stirs|strong=\"H7280\"* up|strong=\"H3220\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*" + }, + { + "verseNum": 16, + "text": "I|strong=\"H7760\"* have|strong=\"H5971\"* put|strong=\"H7760\"* my|strong=\"H7760\"* words|strong=\"H1697\"* in|strong=\"H1697\"* your|strong=\"H7760\"* mouth|strong=\"H6310\"*" + }, + { + "verseNum": 17, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*!" + }, + { + "verseNum": 18, + "text": "There|strong=\"H3605\"* is|strong=\"H3027\"* no|strong=\"H3605\"* one|strong=\"H3605\"* to|strong=\"H3027\"* guide|strong=\"H5095\"* her|strong=\"H3605\"* among all|strong=\"H3605\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* to|strong=\"H3027\"* whom she has|strong=\"H3027\"* given|strong=\"H3205\"* birth|strong=\"H3205\"*;" + }, + { + "verseNum": 19, + "text": "These|strong=\"H2007\"* two|strong=\"H8147\"* things|strong=\"H8147\"* have|strong=\"H5162\"* happened|strong=\"H7122\"* to|strong=\"H2719\"* you|strong=\"H4310\"*—" + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3068\"* sons|strong=\"H1121\"* have|strong=\"H3068\"* fainted|strong=\"H5968\"*." + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* now|strong=\"H4994\"* hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3808\"* afflicted|strong=\"H6041\"*," + }, + { + "verseNum": 22, + "text": "Your|strong=\"H3068\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 23, + "text": "I|strong=\"H7760\"* will|strong=\"H5315\"* put|strong=\"H7760\"* it|strong=\"H7760\"* into|strong=\"H3027\"* the|strong=\"H7760\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H5315\"* who|strong=\"H5315\"* afflict|strong=\"H3013\"* you|strong=\"H7760\"*," + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Awake|strong=\"H5782\"*, awake|strong=\"H5782\"*! Put|strong=\"H3847\"* on|strong=\"H3847\"* your|strong=\"H3588\"* strength|strong=\"H5797\"*, Zion|strong=\"H6726\"*." + }, + { + "verseNum": 2, + "text": "Shake|strong=\"H5287\"* yourself|strong=\"H5287\"* from|strong=\"H6965\"* the|strong=\"H6965\"* dust|strong=\"H6083\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H3588\"* were|strong=\"H3068\"* sold|strong=\"H4376\"* for|strong=\"H3588\"* nothing|strong=\"H3808\"*;" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* I|strong=\"H3588\"* do|strong=\"H3068\"* here|strong=\"H6311\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H3045\"* people|strong=\"H5971\"* shall|strong=\"H5971\"* know|strong=\"H3045\"* my|strong=\"H3045\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "How|strong=\"H4100\"* beautiful|strong=\"H2896\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* are|strong=\"H4100\"* the|strong=\"H5921\"* feet|strong=\"H7272\"* of|strong=\"H2022\"* him|strong=\"H5921\"* who|strong=\"H2896\"* brings|strong=\"H1319\"* good|strong=\"H2896\"* news|strong=\"H1319\"*," + }, + { + "verseNum": 8, + "text": "Your|strong=\"H3068\"* watchmen|strong=\"H6822\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 9, + "text": "Break|strong=\"H6476\"* out|strong=\"H7442\"* into|strong=\"H6476\"* joy|strong=\"H7442\"*!" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H3068\"* his|strong=\"H3605\"* holy|strong=\"H6944\"* arm|strong=\"H2220\"* bare|strong=\"H2834\"* in|strong=\"H3068\"* the|strong=\"H3605\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 11, + "text": "Depart|strong=\"H5493\"*! Depart|strong=\"H5493\"*! Go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H5493\"* there|strong=\"H8033\"*! Touch|strong=\"H5060\"* no|strong=\"H5375\"* unclean|strong=\"H2931\"* thing|strong=\"H3627\"*!" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H1980\"* out|strong=\"H3318\"* in|strong=\"H1980\"* haste|strong=\"H2649\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5375\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* deal|strong=\"H3966\"* wisely|strong=\"H7919\"*." + }, + { + "verseNum": 14, + "text": "Just as|strong=\"H3651\"* many|strong=\"H7227\"* were|strong=\"H1121\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H5921\"*—" + }, + { + "verseNum": 15, + "text": "so|strong=\"H3651\"* he|strong=\"H3588\"* will|strong=\"H1471\"* cleanse+ 52:15 or, sprinkle* many|strong=\"H7227\"* nations|strong=\"H1471\"*." + } + ] + }, + { + "chapterNum": 53, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* has|strong=\"H3068\"* believed our|strong=\"H3068\"* message|strong=\"H8052\"*?" + }, + { + "verseNum": 2, + "text": "For|strong=\"H6440\"* he|strong=\"H3808\"* grew|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* him|strong=\"H6440\"* as|strong=\"H5927\"* a|strong=\"H3068\"* tender|strong=\"H3126\"* plant|strong=\"H3126\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H4480\"* was|strong=\"H2483\"* despised" + }, + { + "verseNum": 4, + "text": "Surely|strong=\"H5221\"* he|strong=\"H1931\"* has|strong=\"H1931\"* borne|strong=\"H5375\"* our|strong=\"H5375\"* sickness|strong=\"H2483\"*" + }, + { + "verseNum": 5, + "text": "But|strong=\"H1931\"* he|strong=\"H1931\"* was|strong=\"H1931\"* pierced|strong=\"H2490\"* for|strong=\"H5921\"* our|strong=\"H5921\"* transgressions|strong=\"H6588\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* we|strong=\"H3068\"* like|strong=\"H1870\"* sheep|strong=\"H6629\"* have|strong=\"H3068\"* gone|strong=\"H8582\"* astray|strong=\"H8582\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1931\"* was|strong=\"H1931\"* oppressed|strong=\"H5065\"*," + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* was|strong=\"H5971\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* by|strong=\"H5971\"* oppression|strong=\"H6115\"* and|strong=\"H4941\"* judgment|strong=\"H4941\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* made|strong=\"H6213\"* his|strong=\"H5414\"* grave|strong=\"H6913\"* with|strong=\"H6213\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H3068\"* it|strong=\"H7760\"* pleased|strong=\"H2654\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* bruise|strong=\"H1792\"* him|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "After|strong=\"H7200\"* the|strong=\"H7200\"* suffering of|strong=\"H5650\"* his|strong=\"H7200\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H5315\"* give|strong=\"H5375\"* him|strong=\"H1931\"* a|strong=\"H3068\"* portion|strong=\"H2505\"* with|strong=\"H5315\"* the|strong=\"H5375\"* great|strong=\"H7227\"*." + } + ] + }, + { + "chapterNum": 54, + "verses": [ + { + "verseNum": 1, + "text": "“Sing|strong=\"H7442\"*, barren|strong=\"H6135\"*, you|strong=\"H3588\"* who|strong=\"H3068\"* didn’t give|strong=\"H3205\"* birth|strong=\"H3205\"*!" + }, + { + "verseNum": 2, + "text": "“Enlarge|strong=\"H7337\"* the|strong=\"H2388\"* place|strong=\"H4725\"* of|strong=\"H4725\"* your|strong=\"H5186\"* tent|strong=\"H3489\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1471\"* spread|strong=\"H6555\"* out|strong=\"H3423\"* on|strong=\"H3427\"* the|strong=\"H3588\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H5892\"* on|strong=\"H3427\"* the|strong=\"H3588\"* left|strong=\"H8040\"*;" + }, + { + "verseNum": 4, + "text": "“Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* your|strong=\"H3068\"* Maker|strong=\"H6213\"* is|strong=\"H3068\"* your|strong=\"H3068\"* husband|strong=\"H1166\"*; Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* his|strong=\"H3605\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* called|strong=\"H7121\"* you|strong=\"H3588\"* as|strong=\"H3068\"* a|strong=\"H3068\"* wife forsaken|strong=\"H5800\"* and|strong=\"H3068\"* grieved|strong=\"H6087\"* in|strong=\"H3068\"* spirit|strong=\"H7307\"*," + }, + { + "verseNum": 7, + "text": "“For|strong=\"H6908\"* a|strong=\"H3068\"* small|strong=\"H6996\"* moment|strong=\"H7281\"* I|strong=\"H7281\"* have|strong=\"H5800\"* forsaken|strong=\"H5800\"* you|strong=\"H5800\"*," + }, + { + "verseNum": 8, + "text": "In|strong=\"H3068\"* overflowing wrath|strong=\"H7110\"* I|strong=\"H7110\"* hid|strong=\"H5641\"* my|strong=\"H3068\"* face|strong=\"H6440\"* from|strong=\"H4480\"* you|strong=\"H6440\"* for|strong=\"H6440\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*," + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3651\"* like|strong=\"H3651\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Noah|strong=\"H5146\"* to|strong=\"H5921\"* me|strong=\"H5921\"*;" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* mountains|strong=\"H2022\"* may|strong=\"H3068\"* depart|strong=\"H4185\"*," + }, + { + "verseNum": 11, + "text": "“You|strong=\"H3808\"* afflicted|strong=\"H6041\"*, tossed with|strong=\"H6041\"* storms, and|strong=\"H6041\"* not|strong=\"H3808\"* comforted|strong=\"H5162\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H7760\"* will|strong=\"H8121\"* make|strong=\"H7760\"* your|strong=\"H3605\"* pinnacles of|strong=\"H1366\"* rubies|strong=\"H3539\"*," + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* your|strong=\"H3068\"* children|strong=\"H1121\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taught|strong=\"H3928\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* will|strong=\"H3808\"* be|strong=\"H3808\"* established|strong=\"H3559\"* in|strong=\"H3808\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, they|strong=\"H5921\"* may|strong=\"H4310\"* gather|strong=\"H1481\"* together|strong=\"H1481\"*, but|strong=\"H5921\"* not|strong=\"H5307\"* by|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have created|strong=\"H1254\"* the|strong=\"H3318\"* blacksmith|strong=\"H2796\"* who|strong=\"H2796\"* fans the|strong=\"H3318\"* coals|strong=\"H6352\"* into|strong=\"H3318\"* flame," + }, + { + "verseNum": 17, + "text": "No|strong=\"H3808\"* weapon|strong=\"H3627\"* that|strong=\"H3605\"* is|strong=\"H3068\"* formed|strong=\"H3335\"* against|strong=\"H5921\"* you|strong=\"H3605\"* will|strong=\"H3068\"* prevail;" + } + ] + }, + { + "chapterNum": 55, + "verses": [ + { + "verseNum": 1, + "text": "“Hey|strong=\"H1945\"*! Come|strong=\"H3212\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* thirsts|strong=\"H6771\"*, to|strong=\"H3212\"* the|strong=\"H3605\"* waters|strong=\"H4325\"*!" + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* spend|strong=\"H8254\"* money|strong=\"H3701\"* for|strong=\"H5315\"* that|strong=\"H8085\"* which|strong=\"H4100\"* is|strong=\"H4100\"* not|strong=\"H3808\"* bread|strong=\"H3899\"*," + }, + { + "verseNum": 3, + "text": "Turn|strong=\"H5186\"* your|strong=\"H5186\"* ear|strong=\"H8085\"*, and|strong=\"H3212\"* come|strong=\"H3212\"* to|strong=\"H3212\"* me|strong=\"H5315\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H5414\"* given|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H5414\"* a|strong=\"H3068\"* witness|strong=\"H5707\"* to|strong=\"H5414\"* the|strong=\"H5414\"* peoples|strong=\"H3816\"*," + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* call|strong=\"H7121\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t know|strong=\"H3045\"*;" + }, + { + "verseNum": 6, + "text": "Seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"* while|strong=\"H1961\"* he|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 7, + "text": "Let|strong=\"H5800\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* forsake|strong=\"H5800\"* his|strong=\"H3068\"* way|strong=\"H1870\"*," + }, + { + "verseNum": 8, + "text": "“For|strong=\"H3588\"* my|strong=\"H3068\"* thoughts|strong=\"H4284\"* are|strong=\"H3068\"* not|strong=\"H3808\"* your|strong=\"H3068\"* thoughts|strong=\"H4284\"*," + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* as|strong=\"H3651\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"* are|strong=\"H8064\"* higher|strong=\"H1361\"* than|strong=\"H3588\"* the|strong=\"H3588\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* the|strong=\"H3588\"* rain|strong=\"H1653\"* comes|strong=\"H3381\"* down|strong=\"H3381\"* and|strong=\"H7725\"* the|strong=\"H3588\"* snow|strong=\"H7950\"* from|strong=\"H4480\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 11, + "text": "so|strong=\"H3651\"* is|strong=\"H1697\"* my|strong=\"H7971\"* word|strong=\"H1697\"* that|strong=\"H3588\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* my|strong=\"H7971\"* mouth|strong=\"H6310\"*:" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H7704\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H6440\"* joy|strong=\"H8057\"*," + }, + { + "verseNum": 13, + "text": "Instead|strong=\"H8478\"* of|strong=\"H3068\"* the|strong=\"H3068\"* thorn|strong=\"H5285\"* the|strong=\"H3068\"* cypress|strong=\"H1265\"* tree|strong=\"H1265\"* will|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"*;" + } + ] + }, + { + "chapterNum": 56, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "Blessed is|strong=\"H3027\"* the|strong=\"H3605\"* man|strong=\"H1121\"* who|strong=\"H3605\"* does|strong=\"H6213\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 3, + "text": "Let no foreigner|strong=\"H1121\"* who|strong=\"H5971\"* has|strong=\"H3068\"* joined|strong=\"H3867\"* himself|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* speak, saying," + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “To|strong=\"H3068\"* the|strong=\"H3588\"* eunuchs|strong=\"H5631\"* who|strong=\"H3068\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H1004\"* my|strong=\"H5414\"* house|strong=\"H1004\"* and|strong=\"H1121\"* within|strong=\"H1004\"* my|strong=\"H5414\"* walls|strong=\"H2346\"* a|strong=\"H3068\"* memorial|strong=\"H3027\"* and|strong=\"H1121\"* a|strong=\"H3068\"* name|strong=\"H8034\"* better|strong=\"H2896\"* than|strong=\"H2896\"* of|strong=\"H1121\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* of|strong=\"H1121\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 6, + "text": "Also|strong=\"H3068\"* the|strong=\"H3605\"* foreigners|strong=\"H1121\"* who|strong=\"H3605\"* join|strong=\"H3867\"* themselves|strong=\"H2388\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H5971\"* bring|strong=\"H7121\"* these|strong=\"H7121\"* to|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3478\"* gathers|strong=\"H6908\"* the|strong=\"H5002\"* outcasts|strong=\"H1760\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*," + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 10, + "text": "His|strong=\"H3605\"* watchmen|strong=\"H6822\"* are|strong=\"H3045\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 11, + "text": "Yes, the|strong=\"H3605\"* dogs|strong=\"H3611\"* are|strong=\"H1992\"* greedy|strong=\"H5315\"*." + }, + { + "verseNum": 12, + "text": "“Come|strong=\"H1961\"*,” they|strong=\"H3117\"* say, “I|strong=\"H3117\"* will|strong=\"H1961\"* get|strong=\"H3947\"* wine|strong=\"H3196\"*," + } + ] + }, + { + "chapterNum": 57, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* righteous|strong=\"H6662\"* perish," + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* enters into|strong=\"H1980\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 3, + "text": "“But|strong=\"H7126\"* draw|strong=\"H7126\"* near|strong=\"H7126\"* here|strong=\"H2008\"*, you|strong=\"H7126\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* a|strong=\"H3068\"* sorceress|strong=\"H6049\"*," + }, + { + "verseNum": 4, + "text": "Whom|strong=\"H4310\"* do|strong=\"H8267\"* you|strong=\"H5921\"* mock?" + }, + { + "verseNum": 5, + "text": "you|strong=\"H3605\"* who|strong=\"H3605\"* inflame|strong=\"H2552\"* yourselves|strong=\"H3605\"* among|strong=\"H8478\"* the|strong=\"H3605\"* oaks," + }, + { + "verseNum": 6, + "text": "Among|strong=\"H5921\"* the|strong=\"H5921\"* smooth|strong=\"H2511\"* stones of|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H5158\"* is|strong=\"H1571\"* your|strong=\"H5921\"* portion|strong=\"H2506\"*." + }, + { + "verseNum": 7, + "text": "On|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H8033\"* lofty|strong=\"H1364\"* mountain|strong=\"H2022\"* you|strong=\"H5921\"* have|strong=\"H1571\"* set|strong=\"H7760\"* your|strong=\"H5921\"* bed|strong=\"H4904\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H3588\"* have|strong=\"H3027\"* set|strong=\"H7760\"* up|strong=\"H5927\"* your|strong=\"H7760\"* memorial|strong=\"H2146\"* behind the|strong=\"H3588\"* doors|strong=\"H1817\"* and|strong=\"H3027\"* the|strong=\"H3588\"* posts|strong=\"H4201\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H7971\"* went|strong=\"H4428\"* to|strong=\"H5704\"* the|strong=\"H5704\"* king|strong=\"H4428\"* with|strong=\"H4428\"* oil|strong=\"H8081\"*," + }, + { + "verseNum": 10, + "text": "You|strong=\"H5921\"* were|strong=\"H3027\"* wearied|strong=\"H3021\"* with|strong=\"H5921\"* the|strong=\"H5921\"* length|strong=\"H5921\"* of|strong=\"H3027\"* your|strong=\"H5921\"* ways|strong=\"H1870\"*;" + }, + { + "verseNum": 11, + "text": "“Whom|strong=\"H4310\"* have|strong=\"H3588\"* you|strong=\"H3588\"* dreaded and|strong=\"H5769\"* feared|strong=\"H3372\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* declare|strong=\"H5046\"* your|strong=\"H3808\"* righteousness|strong=\"H6666\"*;" + }, + { + "verseNum": 13, + "text": "When|strong=\"H5375\"* you|strong=\"H3605\"* cry|strong=\"H2199\"*," + }, + { + "verseNum": 14, + "text": "He|strong=\"H5971\"* will|strong=\"H5971\"* say, “Build|strong=\"H5549\"* up|strong=\"H7311\"*, build|strong=\"H5549\"* up|strong=\"H7311\"*, prepare|strong=\"H6437\"* the|strong=\"H1870\"* way|strong=\"H1870\"*!" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* high|strong=\"H4791\"* and|strong=\"H3820\"* lofty|strong=\"H7311\"* One|strong=\"H6918\"* who|strong=\"H3588\"* inhabits eternity|strong=\"H5703\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H7307\"* not|strong=\"H3808\"* contend|strong=\"H7378\"* forever|strong=\"H5769\"*, neither|strong=\"H3808\"* will|strong=\"H7307\"* I|strong=\"H3588\"* always|strong=\"H5769\"* be|strong=\"H3808\"* angry|strong=\"H7107\"*;" + }, + { + "verseNum": 17, + "text": "I|strong=\"H3212\"* was|strong=\"H3820\"* angry|strong=\"H7107\"* because|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H5221\"* iniquity|strong=\"H5771\"* of|strong=\"H1870\"* his|strong=\"H5221\"* covetousness|strong=\"H1215\"* and|strong=\"H3212\"* struck|strong=\"H5221\"* him|strong=\"H5221\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H7200\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* his|strong=\"H7200\"* ways|strong=\"H1870\"*, and|strong=\"H1870\"* will|strong=\"H7999\"* heal|strong=\"H7495\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H7350\"* create|strong=\"H1254\"* the|strong=\"H3068\"* fruit|strong=\"H5108\"* of|strong=\"H3068\"* the|strong=\"H3068\"* lips|strong=\"H8193\"*:" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* are|strong=\"H7563\"* like|strong=\"H3808\"* the|strong=\"H3588\"* troubled|strong=\"H1644\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 21, + "text": "“There|strong=\"H7965\"* is|strong=\"H7563\"* no|strong=\"H7563\"* peace|strong=\"H7965\"*”, says my God," + } + ] + }, + { + "chapterNum": 58, + "verses": [ + { + "verseNum": 1, + "text": "“Cry|strong=\"H7121\"* aloud|strong=\"H7311\"*! Don’t spare|strong=\"H2820\"*!" + }, + { + "verseNum": 2, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3117\"* seek|strong=\"H1875\"* me|strong=\"H6213\"* daily|strong=\"H3117\"*," + }, + { + "verseNum": 3, + "text": "‘Why|strong=\"H4100\"* have|strong=\"H3045\"* we|strong=\"H3068\"* fasted|strong=\"H6684\"*,’ they|strong=\"H3117\"* say, ‘and|strong=\"H3117\"* you|strong=\"H3605\"* don’t see|strong=\"H7200\"*?" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H3117\"* fast|strong=\"H6684\"* for|strong=\"H3117\"* strife|strong=\"H7379\"* and|strong=\"H3117\"* contention|strong=\"H7379\"*," + }, + { + "verseNum": 5, + "text": "Is|strong=\"H3068\"* this|strong=\"H2088\"* the|strong=\"H3068\"* fast|strong=\"H6685\"* that|strong=\"H3117\"* I|strong=\"H3117\"* have|strong=\"H1961\"* chosen?" + }, + { + "verseNum": 6, + "text": "“Isn’t this|strong=\"H2088\"* the|strong=\"H3605\"* fast|strong=\"H6685\"* that|strong=\"H3605\"* I|strong=\"H2088\"* have|strong=\"H3605\"* chosen:" + }, + { + "verseNum": 7, + "text": "Isn’t it|strong=\"H3588\"* to|strong=\"H1004\"* distribute your|strong=\"H7200\"* bread|strong=\"H3899\"* to|strong=\"H1004\"* the|strong=\"H7200\"* hungry|strong=\"H7457\"*," + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1980\"* your|strong=\"H3068\"* light|strong=\"H7837\"* will|strong=\"H3068\"* break|strong=\"H1234\"* out|strong=\"H1980\"* as|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H7837\"*," + }, + { + "verseNum": 9, + "text": "Then|strong=\"H6030\"* you|strong=\"H7971\"* will|strong=\"H3068\"* call|strong=\"H7121\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"*." + }, + { + "verseNum": 10, + "text": "and|strong=\"H5315\"* if you|strong=\"H5315\"* pour out|strong=\"H6329\"* your|strong=\"H6031\"* soul|strong=\"H5315\"* to|strong=\"H5315\"* the|strong=\"H7646\"* hungry|strong=\"H7457\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* guide|strong=\"H5148\"* you|strong=\"H3808\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 12, + "text": "Those|strong=\"H4480\"* who|strong=\"H3427\"* will|strong=\"H7725\"* be|strong=\"H5769\"* of|strong=\"H3427\"* you|strong=\"H7725\"* will|strong=\"H7725\"* build|strong=\"H1129\"* the|strong=\"H4480\"* old|strong=\"H5769\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*." + }, + { + "verseNum": 13, + "text": "“If you|strong=\"H3117\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* your|strong=\"H3068\"* foot|strong=\"H7272\"* from|strong=\"H7725\"* the|strong=\"H6213\"* Sabbath|strong=\"H7676\"*," + }, + { + "verseNum": 14, + "text": "then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* delight|strong=\"H6026\"* yourself|strong=\"H5921\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 59, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2005\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* is|strong=\"H3068\"* not|strong=\"H3808\"* shortened|strong=\"H7114\"*, that|strong=\"H8085\"* it|strong=\"H3808\"* can|strong=\"H3808\"*’t save|strong=\"H3467\"*;" + }, + { + "verseNum": 2, + "text": "But|strong=\"H3588\"* your|strong=\"H6440\"* iniquities|strong=\"H5771\"* have|strong=\"H1961\"* separated you|strong=\"H3588\"* and|strong=\"H6440\"* your|strong=\"H6440\"* God," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* your|strong=\"H3588\"* hands|strong=\"H3709\"* are|strong=\"H8193\"* defiled|strong=\"H1351\"* with|strong=\"H1696\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 4, + "text": "No|strong=\"H1696\"* one sues|strong=\"H7121\"* in|strong=\"H5921\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 5, + "text": "They hatch|strong=\"H1234\"* adders|strong=\"H6848\"*’ eggs|strong=\"H1000\"*" + }, + { + "verseNum": 6, + "text": "Their|strong=\"H1961\"* webs|strong=\"H6980\"* won’t become|strong=\"H1961\"* garments." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H8210\"* feet|strong=\"H7272\"* run|strong=\"H7323\"* to|strong=\"H7323\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 8, + "text": "They|strong=\"H1992\"* don’t know|strong=\"H3045\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H1870\"* peace|strong=\"H7965\"*;" + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"* justice|strong=\"H4941\"* is|strong=\"H2009\"* far|strong=\"H7368\"* from|strong=\"H4480\"* us|strong=\"H5921\"*," + }, + { + "verseNum": 10, + "text": "We|strong=\"H4191\"* grope|strong=\"H1659\"* for|strong=\"H4191\"* the|strong=\"H4191\"* wall|strong=\"H7023\"* like|strong=\"H4191\"* the|strong=\"H4191\"* blind|strong=\"H5787\"*." + }, + { + "verseNum": 11, + "text": "We|strong=\"H3605\"* all|strong=\"H3605\"* roar|strong=\"H1993\"* like|strong=\"H1993\"* bears|strong=\"H1677\"*" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* our|strong=\"H3588\"* transgressions|strong=\"H6588\"* are|strong=\"H6588\"* multiplied|strong=\"H7235\"* before|strong=\"H5048\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 13, + "text": "transgressing|strong=\"H6586\"* and|strong=\"H3068\"* denying|strong=\"H3584\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "Justice|strong=\"H4941\"* is|strong=\"H4941\"* turned away|strong=\"H5253\"* backward," + }, + { + "verseNum": 15, + "text": "Yes|strong=\"H3588\"*, truth is|strong=\"H3068\"* lacking|strong=\"H5737\"*;" + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* there|strong=\"H7200\"* was|strong=\"H1931\"* no|strong=\"H7200\"* man|strong=\"H7200\"*," + }, + { + "verseNum": 17, + "text": "He|strong=\"H3444\"* put|strong=\"H3847\"* on|strong=\"H3847\"* righteousness|strong=\"H6666\"* as a|strong=\"H3068\"* breastplate|strong=\"H8302\"*," + }, + { + "verseNum": 18, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* deeds|strong=\"H1578\"*," + }, + { + "verseNum": 19, + "text": "So|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"* from|strong=\"H5127\"* the|strong=\"H3588\"* west|strong=\"H4628\"*," + }, + { + "verseNum": 20, + "text": "“A|strong=\"H3068\"* Redeemer|strong=\"H1350\"* will|strong=\"H3068\"* come|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 21, + "text": "“As|strong=\"H5704\"* for|strong=\"H5704\"* me|strong=\"H5921\"*, this|strong=\"H2063\"* is|strong=\"H3068\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* them|strong=\"H5921\"*,” says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*. “My|strong=\"H3068\"* Spirit|strong=\"H7307\"* who|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3068\"* my|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H5704\"* have|strong=\"H3068\"* put|strong=\"H7760\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* depart|strong=\"H4185\"* out|strong=\"H5921\"* of|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*, nor|strong=\"H3808\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*, nor|strong=\"H3808\"* out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"*’s offspring|strong=\"H2233\"*,” says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, “from|strong=\"H5921\"* now|strong=\"H6258\"* on|strong=\"H5921\"* and|strong=\"H3068\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 60, + "verses": [ + { + "verseNum": 1, + "text": "“Arise|strong=\"H6965\"*, shine|strong=\"H2224\"*; for|strong=\"H3588\"* your|strong=\"H3068\"* light has|strong=\"H3068\"* come|strong=\"H6965\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*, darkness|strong=\"H2822\"* will|strong=\"H3068\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* earth," + }, + { + "verseNum": 3, + "text": "Nations|strong=\"H1471\"* will|strong=\"H1471\"* come|strong=\"H1980\"* to|strong=\"H1980\"* your|strong=\"H4428\"* light|strong=\"H5051\"*," + }, + { + "verseNum": 4, + "text": "“Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, and|strong=\"H1121\"* see|strong=\"H7200\"*:" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* see|strong=\"H7200\"* and|strong=\"H1471\"* be|strong=\"H1471\"* radiant|strong=\"H5102\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* multitude|strong=\"H8229\"* of|strong=\"H3068\"* camels|strong=\"H1581\"* will|strong=\"H3068\"* cover|strong=\"H3680\"* you|strong=\"H3605\"*," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* flocks|strong=\"H6629\"* of|strong=\"H1004\"* Kedar|strong=\"H6938\"* will|strong=\"H7522\"* be|strong=\"H1004\"* gathered|strong=\"H6908\"* together|strong=\"H6908\"* to|strong=\"H5927\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 8, + "text": "“Who|strong=\"H4310\"* are|strong=\"H4310\"* these who|strong=\"H4310\"* fly|strong=\"H5774\"* as|strong=\"H5645\"* a|strong=\"H3068\"* cloud|strong=\"H5645\"*," + }, + { + "verseNum": 9, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* islands will|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3588\"* me|strong=\"H3588\"*," + }, + { + "verseNum": 10, + "text": "“Foreigners|strong=\"H1121\"* will|strong=\"H4428\"* build|strong=\"H1129\"* up|strong=\"H1129\"* your|strong=\"H3588\"* walls|strong=\"H2346\"*," + }, + { + "verseNum": 11, + "text": "Your|strong=\"H3808\"* gates|strong=\"H8179\"* also|strong=\"H4428\"* shall|strong=\"H1471\"* be|strong=\"H3808\"* open|strong=\"H6605\"* continually|strong=\"H8548\"*; they|strong=\"H3808\"* shall|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* day|strong=\"H3119\"* nor|strong=\"H3808\"* night|strong=\"H3915\"*, that|strong=\"H1471\"* men|strong=\"H2428\"* may|strong=\"H1471\"* bring to|strong=\"H4428\"* you|strong=\"H3808\"* the|strong=\"H5462\"* wealth|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5462\"* nations|strong=\"H1471\"*, and|strong=\"H4428\"* their|strong=\"H5462\"* kings|strong=\"H4428\"* led|strong=\"H5090\"* captive." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* nation|strong=\"H1471\"* and|strong=\"H1471\"* kingdom|strong=\"H4467\"* that|strong=\"H3588\"* will|strong=\"H1471\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* you|strong=\"H3588\"* shall|strong=\"H1471\"* perish; yes|strong=\"H3588\"*, those|strong=\"H3588\"* nations|strong=\"H1471\"* shall|strong=\"H1471\"* be|strong=\"H3808\"* utterly|strong=\"H2717\"* wasted|strong=\"H2717\"*." + }, + { + "verseNum": 13, + "text": "“The|strong=\"H4725\"* glory|strong=\"H3519\"* of|strong=\"H4725\"* Lebanon|strong=\"H3844\"* shall|strong=\"H7272\"* come to|strong=\"H4725\"* you|strong=\"H3513\"*, the|strong=\"H4725\"* cypress|strong=\"H1265\"* tree|strong=\"H1265\"*, the|strong=\"H4725\"* pine|strong=\"H8410\"*, and|strong=\"H4725\"* the|strong=\"H4725\"* box|strong=\"H8410\"* tree|strong=\"H1265\"* together|strong=\"H3162\"*, to|strong=\"H4725\"* beautify|strong=\"H6286\"* the|strong=\"H4725\"* place|strong=\"H4725\"* of|strong=\"H4725\"* my|strong=\"H6286\"* sanctuary|strong=\"H4720\"*; and|strong=\"H4725\"* I|strong=\"H3513\"* will|strong=\"H7272\"* make|strong=\"H3513\"* the|strong=\"H4725\"* place|strong=\"H4725\"* of|strong=\"H4725\"* my|strong=\"H6286\"* feet|strong=\"H7272\"* glorious|strong=\"H3513\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* those|strong=\"H3605\"* who|strong=\"H3605\"* afflicted|strong=\"H6031\"* you|strong=\"H3605\"* will|strong=\"H3068\"* come|strong=\"H1980\"* bowing|strong=\"H7812\"* to|strong=\"H1980\"* you|strong=\"H3605\"*;" + }, + { + "verseNum": 15, + "text": "“Whereas|strong=\"H8478\"* you|strong=\"H7760\"* have|strong=\"H1961\"* been|strong=\"H1961\"* forsaken|strong=\"H5800\"* and|strong=\"H5769\"* hated|strong=\"H8130\"*," + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H3068\"* drink the|strong=\"H3588\"* milk|strong=\"H2461\"* of|strong=\"H4428\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H8478\"* bronze|strong=\"H5178\"* I|strong=\"H7760\"* will|strong=\"H6666\"* bring|strong=\"H7760\"* gold|strong=\"H2091\"*;" + }, + { + "verseNum": 18, + "text": "Violence|strong=\"H2555\"* shall|strong=\"H1366\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* heard|strong=\"H8085\"* in|strong=\"H8085\"* your|strong=\"H8085\"* land|strong=\"H1366\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3068\"* sun|strong=\"H8121\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* your|strong=\"H3068\"* light|strong=\"H5051\"* by|strong=\"H3068\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 20, + "text": "Your|strong=\"H3068\"* sun|strong=\"H8121\"* will|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H1961\"* down|strong=\"H3588\"* any|strong=\"H5750\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3605\"* your|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* all|strong=\"H3605\"* be|strong=\"H3027\"* righteous|strong=\"H6662\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H3068\"* little|strong=\"H6996\"* one|strong=\"H6996\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* thousand," + } + ] + }, + { + "chapterNum": 61, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* is|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H7971\"*," + }, + { + "verseNum": 2, + "text": "to|strong=\"H3068\"* proclaim|strong=\"H7121\"* the|strong=\"H3605\"* year|strong=\"H8141\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s favor|strong=\"H7522\"*" + }, + { + "verseNum": 3, + "text": "to|strong=\"H3068\"* provide|strong=\"H5414\"* for|strong=\"H7121\"* those who|strong=\"H3068\"* mourn in|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H5892\"* will|strong=\"H5892\"* rebuild|strong=\"H1129\"* the|strong=\"H1129\"* old|strong=\"H5769\"* ruins|strong=\"H2723\"*." + }, + { + "verseNum": 5, + "text": "Strangers|strong=\"H2114\"* will|strong=\"H1121\"* stand|strong=\"H5975\"* and|strong=\"H1121\"* feed|strong=\"H7462\"* your|strong=\"H7462\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3068\"* you|strong=\"H7121\"* will|strong=\"H3068\"* be|strong=\"H3068\"* called|strong=\"H7121\"* Yahweh|strong=\"H3068\"*’s priests|strong=\"H3548\"*." + }, + { + "verseNum": 7, + "text": "Instead|strong=\"H8478\"* of|strong=\"H8478\"* your|strong=\"H1961\"* shame|strong=\"H1322\"* you|strong=\"H3651\"* will|strong=\"H1961\"* have|strong=\"H1961\"* double|strong=\"H4932\"*." + }, + { + "verseNum": 8, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, love justice|strong=\"H4941\"*." + }, + { + "verseNum": 9, + "text": "Their|strong=\"H3605\"* offspring|strong=\"H2233\"* will|strong=\"H3068\"* be|strong=\"H3068\"* known|strong=\"H3045\"* among|strong=\"H8432\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* greatly|strong=\"H7797\"* rejoice|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H3651\"* the|strong=\"H3605\"* earth produces|strong=\"H3318\"* its|strong=\"H3605\"* bud|strong=\"H6780\"*," + } + ] + }, + { + "chapterNum": 62, + "verses": [ + { + "verseNum": 1, + "text": "For|strong=\"H5704\"* Zion|strong=\"H6726\"*’s sake|strong=\"H4616\"* I|strong=\"H5704\"* will|strong=\"H3389\"* not|strong=\"H3808\"* hold my|strong=\"H3318\"* peace|strong=\"H2814\"*," + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* see|strong=\"H7200\"* your|strong=\"H3068\"* righteousness|strong=\"H6664\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3027\"* will|strong=\"H3068\"* also|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* crown|strong=\"H5850\"* of|strong=\"H3068\"* beauty|strong=\"H8597\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* called|strong=\"H7121\"* Forsaken|strong=\"H5800\"* any|strong=\"H5750\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* as|strong=\"H3588\"* a|strong=\"H3068\"* young|strong=\"H1121\"* man|strong=\"H1121\"* marries|strong=\"H1166\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* set|strong=\"H6485\"* watchmen|strong=\"H8104\"* on|strong=\"H5921\"* your|strong=\"H3068\"* walls|strong=\"H2346\"*, Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "and|strong=\"H3389\"* give|strong=\"H5414\"* him|strong=\"H5414\"* no|strong=\"H5414\"* rest|strong=\"H1824\"* until|strong=\"H5704\"* he|strong=\"H5704\"* establishes|strong=\"H3559\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* his|strong=\"H5414\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H3588\"* those|strong=\"H3588\"* who|strong=\"H3068\"* have|strong=\"H3068\"* harvested it|strong=\"H3588\"* will|strong=\"H3068\"* eat it|strong=\"H3588\"*, and|strong=\"H3068\"* praise|strong=\"H1984\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Go|strong=\"H5674\"* through|strong=\"H5674\"*, go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* gates|strong=\"H8179\"*!" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* proclaimed|strong=\"H8085\"* to|strong=\"H3068\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth:" + }, + { + "verseNum": 12, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H1992\"* “The|strong=\"H3068\"* Holy|strong=\"H6944\"* People|strong=\"H5971\"*," + } + ] + }, + { + "chapterNum": 63, + "verses": [ + { + "verseNum": 1, + "text": "Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* comes|strong=\"H7227\"* from|strong=\"H3581\"* Edom," + }, + { + "verseNum": 2, + "text": "Why|strong=\"H4069\"* is|strong=\"H3830\"* your clothing|strong=\"H3830\"* red," + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* have|strong=\"H5971\"* trodden|strong=\"H1869\"* the|strong=\"H3605\"* wine|strong=\"H6333\"* press|strong=\"H6333\"* alone." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3117\"* vengeance|strong=\"H5359\"* was|strong=\"H3820\"* in|strong=\"H8141\"* my|strong=\"H3588\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 5, + "text": "I looked|strong=\"H5027\"*, and|strong=\"H8074\"* there was|strong=\"H1931\"* no one|strong=\"H1931\"* to|strong=\"H2534\"* help|strong=\"H5826\"*;" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5971\"* trod down|strong=\"H3381\"* the|strong=\"H3381\"* peoples|strong=\"H5971\"* in|strong=\"H5971\"* my|strong=\"H3381\"* anger|strong=\"H2534\"*" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* tell|strong=\"H3605\"* of|strong=\"H1004\"* the|strong=\"H3605\"* loving kindnesses|strong=\"H2617\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 8, + "text": "For|strong=\"H1121\"* he|strong=\"H3808\"* said, “Surely|strong=\"H1961\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* my|strong=\"H1961\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 9, + "text": "In|strong=\"H3117\"* all|strong=\"H3605\"* their|strong=\"H3605\"* affliction|strong=\"H6869\"* he|strong=\"H1931\"* was|strong=\"H1931\"* afflicted|strong=\"H6862\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H1992\"* they|strong=\"H1992\"* rebelled|strong=\"H4784\"*" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4872\"* he|strong=\"H3117\"* remembered|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "Who|strong=\"H6213\"* caused|strong=\"H6213\"* his|strong=\"H6440\"* glorious|strong=\"H8597\"* arm|strong=\"H2220\"* to|strong=\"H3212\"* be|strong=\"H5769\"* at|strong=\"H6213\"* Moses|strong=\"H4872\"*’ right|strong=\"H3225\"* hand|strong=\"H3225\"*?" + }, + { + "verseNum": 13, + "text": "Who|strong=\"H3808\"* led|strong=\"H3212\"* them through|strong=\"H3212\"* the|strong=\"H3808\"* depths|strong=\"H8415\"*," + }, + { + "verseNum": 14, + "text": "As|strong=\"H6213\"* the|strong=\"H6213\"* livestock that|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H6213\"* valley|strong=\"H1237\"*," + }, + { + "verseNum": 15, + "text": "Look|strong=\"H7200\"* down|strong=\"H5027\"* from|strong=\"H5027\"* heaven|strong=\"H8064\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* our|strong=\"H3068\"* Father," + }, + { + "verseNum": 17, + "text": "O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, why|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H7725\"* make|strong=\"H7725\"* us|strong=\"H7725\"* wander|strong=\"H8582\"* from|strong=\"H7725\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5971\"* holy|strong=\"H6944\"* people|strong=\"H5971\"* possessed|strong=\"H3423\"* it|strong=\"H3423\"* but|strong=\"H5971\"* a|strong=\"H3068\"* little|strong=\"H4705\"* while|strong=\"H4705\"*." + }, + { + "verseNum": 19, + "text": "We|strong=\"H8034\"* have|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* those|strong=\"H5921\"* over|strong=\"H5921\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* never|strong=\"H3808\"* ruled|strong=\"H4910\"*," + } + ] + }, + { + "chapterNum": 64, + "verses": [ + { + "verseNum": 1, + "text": "Oh that|strong=\"H3045\"* you|strong=\"H6440\"* would|strong=\"H6862\"* tear the|strong=\"H6440\"* heavens," + }, + { + "verseNum": 2, + "text": "as|strong=\"H6213\"* when|strong=\"H6213\"* fire kindles the|strong=\"H6440\"* brushwood," + }, + { + "verseNum": 3, + "text": "When|strong=\"H7200\"* you|strong=\"H6213\"* did|strong=\"H6213\"* awesome things|strong=\"H3808\"* which|strong=\"H5869\"* we|strong=\"H3068\"* didn’t look|strong=\"H7200\"* for|strong=\"H6213\"*," + }, + { + "verseNum": 4, + "text": "For|strong=\"H6213\"* from|strong=\"H2398\"* of|strong=\"H1870\"* old|strong=\"H5769\"* men|strong=\"H6213\"* have not|strong=\"H6213\"* heard," + }, + { + "verseNum": 5, + "text": "You|strong=\"H3605\"* meet him|strong=\"H3605\"* who|strong=\"H3605\"* rejoices and|strong=\"H6666\"* does righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3027\"* all|strong=\"H4480\"* become|strong=\"H7121\"* like|strong=\"H6440\"* one|strong=\"H4480\"* who|strong=\"H3588\"* is|strong=\"H8034\"* unclean," + }, + { + "verseNum": 7, + "text": "There|strong=\"H3605\"* is|strong=\"H3068\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* calls on|strong=\"H3027\"* your|strong=\"H3068\"* name," + }, + { + "verseNum": 8, + "text": "But|strong=\"H5971\"* now|strong=\"H4994\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H3605\"* are|strong=\"H5971\"* our|strong=\"H3068\"* Father." + }, + { + "verseNum": 9, + "text": "Don’t be|strong=\"H1961\"* furious, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H3605\"* holy|strong=\"H6944\"* cities have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* wilderness." + }, + { + "verseNum": 11, + "text": "Our|strong=\"H3068\"* holy and|strong=\"H3068\"* our|strong=\"H3068\"* beautiful house where|strong=\"H5921\"* our|strong=\"H3068\"* fathers praised you|strong=\"H5921\"*" + }, + { + "verseNum": 12, + "text": "Will you hold yourself back for these things, Yahweh|strong=\"H3068\"*?" + } + ] + }, + { + "chapterNum": 65, + "verses": [ + { + "verseNum": 1, + "text": "“I|strong=\"H2005\"* am|strong=\"H2005\"* inquired|strong=\"H7592\"* of|strong=\"H8034\"* by|strong=\"H7121\"* those who|strong=\"H4672\"* didn’t ask|strong=\"H7592\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H3117\"* have|strong=\"H5971\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* my|strong=\"H3605\"* hands|strong=\"H3027\"* all|strong=\"H3605\"* day|strong=\"H3117\"* to|strong=\"H1980\"* a|strong=\"H3068\"* rebellious|strong=\"H5637\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 3, + "text": "a|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"* continually|strong=\"H8548\"*," + }, + { + "verseNum": 4, + "text": "who|strong=\"H3427\"* sit|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H3885\"* graves|strong=\"H6913\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H3605\"* say, ‘Stay by|strong=\"H3117\"* yourself," + }, + { + "verseNum": 6, + "text": "“Behold|strong=\"H2009\"*, it|strong=\"H5921\"* is|strong=\"H2009\"* written|strong=\"H3789\"* before|strong=\"H6440\"* me|strong=\"H6440\"*:" + }, + { + "verseNum": 7, + "text": "your|strong=\"H3068\"* own iniquities|strong=\"H5771\"* and|strong=\"H3068\"* the|strong=\"H5921\"* iniquities|strong=\"H5771\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers together|strong=\"H3162\"*”, says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H5650\"* will|strong=\"H5650\"* bring|strong=\"H3318\"* offspring|strong=\"H2233\"* out|strong=\"H3318\"* of|strong=\"H2022\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 10, + "text": "Sharon|strong=\"H8289\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fold|strong=\"H5116\"* of|strong=\"H6010\"* flocks|strong=\"H6629\"*," + }, + { + "verseNum": 11, + "text": "“But|strong=\"H5800\"* you|strong=\"H5800\"* who|strong=\"H3068\"* forsake|strong=\"H5800\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3282\"* will|strong=\"H5869\"* destine|strong=\"H4487\"* you|strong=\"H3605\"* to|strong=\"H1696\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 14, + "text": "Behold|strong=\"H2009\"*, my|strong=\"H5650\"* servants|strong=\"H5650\"* will|strong=\"H5650\"* sing|strong=\"H7442\"* for|strong=\"H7442\"* joy|strong=\"H7442\"* of|strong=\"H7307\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "You|strong=\"H7121\"* will|strong=\"H5650\"* leave|strong=\"H3240\"* your|strong=\"H7121\"* name|strong=\"H8034\"* for|strong=\"H7121\"* a|strong=\"H3068\"* curse|strong=\"H7621\"* to|strong=\"H4191\"* my|strong=\"H5650\"* chosen," + }, + { + "verseNum": 16, + "text": "so|strong=\"H3588\"* that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* blesses|strong=\"H1288\"* himself in|strong=\"H5869\"* the|strong=\"H3588\"* earth will|strong=\"H5869\"* bless|strong=\"H1288\"* himself in|strong=\"H5869\"* the|strong=\"H3588\"* God of|strong=\"H5869\"* truth;" + }, + { + "verseNum": 17, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* create|strong=\"H1254\"* new|strong=\"H2319\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* a|strong=\"H3068\"* new|strong=\"H2319\"* earth|strong=\"H5927\"*;" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3588\"* be|strong=\"H3389\"* glad|strong=\"H1523\"* and|strong=\"H5971\"* rejoice|strong=\"H1523\"* forever|strong=\"H5704\"* in|strong=\"H5971\"* that|strong=\"H3588\"* which|strong=\"H5971\"* I|strong=\"H3588\"* create|strong=\"H1254\"*;" + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* will|strong=\"H5971\"* rejoice|strong=\"H1523\"* in|strong=\"H8085\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 20, + "text": "“No|strong=\"H3808\"* more|strong=\"H5750\"* will|strong=\"H1961\"* there|strong=\"H8033\"* be|strong=\"H1961\"* an|strong=\"H1961\"* infant|strong=\"H5764\"* who|strong=\"H1121\"* only|strong=\"H3588\"* lives|strong=\"H1961\"* a|strong=\"H3068\"* few days|strong=\"H3117\"*," + }, + { + "verseNum": 21, + "text": "They will|strong=\"H1004\"* build|strong=\"H1129\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* inhabit|strong=\"H3427\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* build|strong=\"H1129\"* and|strong=\"H3117\"* another|strong=\"H3808\"* inhabit|strong=\"H3427\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* not|strong=\"H3808\"* labor|strong=\"H3205\"* in|strong=\"H3068\"* vain|strong=\"H7385\"*" + }, + { + "verseNum": 24, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H8085\"* before|strong=\"H2962\"* they|strong=\"H1992\"* call|strong=\"H7121\"*, I|strong=\"H2962\"* will|strong=\"H1961\"* answer|strong=\"H6030\"*;" + }, + { + "verseNum": 25, + "text": "The|strong=\"H3605\"* wolf|strong=\"H2061\"* and|strong=\"H3068\"* the|strong=\"H3605\"* lamb|strong=\"H2924\"* will|strong=\"H3068\"* feed|strong=\"H7462\"* together." + } + ] + }, + { + "chapterNum": 66, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* has|strong=\"H3068\"* made|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* things|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "He|strong=\"H5221\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* an|strong=\"H5221\"* ox|strong=\"H7794\"* is|strong=\"H5315\"* as|strong=\"H1571\"* he|strong=\"H5221\"* who|strong=\"H5315\"* kills|strong=\"H5221\"* a|strong=\"H3068\"* man|strong=\"H5315\"*;" + }, + { + "verseNum": 4, + "text": "I|strong=\"H3282\"* also|strong=\"H1571\"* will|strong=\"H1571\"* choose their|strong=\"H8085\"* delusions|strong=\"H8586\"*," + }, + { + "verseNum": 5, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* tumult|strong=\"H7588\"* from|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "“Before|strong=\"H2962\"* she|strong=\"H2962\"* travailed|strong=\"H2342\"*, she|strong=\"H2962\"* gave|strong=\"H3205\"* birth|strong=\"H3205\"*." + }, + { + "verseNum": 8, + "text": "Who|strong=\"H4310\"* has|strong=\"H4310\"* heard|strong=\"H8085\"* of|strong=\"H1121\"* such|strong=\"H2063\"* a|strong=\"H3068\"* thing|strong=\"H2063\"*?" + }, + { + "verseNum": 9, + "text": "Shall|strong=\"H3068\"* I|strong=\"H3808\"* bring|strong=\"H3205\"* to|strong=\"H3068\"* the|strong=\"H3205\"* birth|strong=\"H3205\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* cause to|strong=\"H3068\"* be|strong=\"H3808\"* delivered|strong=\"H3205\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“Rejoice|strong=\"H8055\"* with|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3389\"* be|strong=\"H3389\"* glad|strong=\"H8055\"* for|strong=\"H5921\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* love|strong=\"H4885\"* her|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "that|strong=\"H4616\"* you may|strong=\"H3519\"* nurse|strong=\"H3243\"* and|strong=\"H3519\"* be|strong=\"H3519\"* satisfied|strong=\"H7646\"* at the|strong=\"H7646\"* comforting|strong=\"H8575\"* breasts|strong=\"H7699\"*;" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* extend|strong=\"H5186\"* peace|strong=\"H7965\"* to|strong=\"H3068\"* her|strong=\"H5375\"* like|strong=\"H3541\"* a|strong=\"H3068\"* river|strong=\"H5104\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3651\"* one|strong=\"H3651\"* whom his|strong=\"H5162\"* mother comforts|strong=\"H5162\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3045\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H7200\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3820\"* shall|strong=\"H3068\"* rejoice|strong=\"H7797\"*," + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H7725\"* with|strong=\"H3068\"* fire," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* execute|strong=\"H8199\"* judgment|strong=\"H8199\"* by|strong=\"H3068\"* fire and|strong=\"H3068\"* by|strong=\"H3068\"* his|strong=\"H3605\"* sword|strong=\"H2719\"* on|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*;" + }, + { + "verseNum": 17, + "text": "“Those who|strong=\"H3068\"* sanctify|strong=\"H6942\"* themselves|strong=\"H6942\"* and|strong=\"H3068\"* purify|strong=\"H2891\"* themselves|strong=\"H6942\"* to|strong=\"H3068\"* go|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H5002\"* gardens|strong=\"H1593\"*, following one|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5002\"* middle|strong=\"H8432\"*, eating pig|strong=\"H2386\"*’s meat|strong=\"H1320\"*, abominable|strong=\"H8263\"* things|strong=\"H8263\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* mouse|strong=\"H5909\"*, they|strong=\"H3068\"* shall|strong=\"H3068\"* come|strong=\"H5486\"* to|strong=\"H3068\"* an|strong=\"H3068\"* end|strong=\"H5486\"* together|strong=\"H3162\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“For|strong=\"H3605\"* I|strong=\"H7200\"* know their|strong=\"H3605\"* works|strong=\"H4639\"* and|strong=\"H1471\"* their|strong=\"H3605\"* thoughts|strong=\"H4284\"*. The|strong=\"H3605\"* time comes that|strong=\"H7200\"* I|strong=\"H7200\"* will|strong=\"H1471\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H1471\"* languages|strong=\"H3956\"*, and|strong=\"H1471\"* they|strong=\"H3605\"* will|strong=\"H1471\"* come, and|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* my|strong=\"H3605\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 19, + "text": "“I|strong=\"H7760\"* will|strong=\"H1471\"* set|strong=\"H7760\"* a|strong=\"H3068\"* sign among|strong=\"H7200\"* them|strong=\"H1992\"*, and|strong=\"H7971\"* I|strong=\"H7760\"* will|strong=\"H1471\"* send|strong=\"H7971\"* those|strong=\"H1992\"* who|strong=\"H1992\"* escape|strong=\"H6412\"* of|strong=\"H7198\"* them|strong=\"H1992\"* to|strong=\"H7971\"* the|strong=\"H8085\"* nations|strong=\"H1471\"*, to|strong=\"H7971\"* Tarshish|strong=\"H8659\"*, Pul|strong=\"H6322\"*, and|strong=\"H7971\"* Lud|strong=\"H3865\"*, who|strong=\"H1992\"* draw|strong=\"H4900\"* the|strong=\"H8085\"* bow|strong=\"H7198\"*, to|strong=\"H7971\"* Tubal|strong=\"H8422\"* and|strong=\"H7971\"* Javan|strong=\"H3120\"*, to|strong=\"H7971\"* far-away islands, who|strong=\"H1992\"* have|strong=\"H1471\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* fame|strong=\"H8088\"*, nor|strong=\"H3808\"* have|strong=\"H1471\"* seen|strong=\"H7200\"* my|strong=\"H8085\"* glory|strong=\"H3519\"*; and|strong=\"H7971\"* they|strong=\"H1992\"* shall|strong=\"H1471\"* declare|strong=\"H5046\"* my|strong=\"H8085\"* glory|strong=\"H3519\"* among|strong=\"H7200\"* the|strong=\"H8085\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* shall|strong=\"H3068\"* bring all|strong=\"H3605\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"* out|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* for|strong=\"H5921\"* an|strong=\"H3068\"* offering|strong=\"H4503\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*, on|strong=\"H5921\"* horses|strong=\"H5483\"*, in|strong=\"H5921\"* chariots|strong=\"H7393\"*, in|strong=\"H5921\"* litters|strong=\"H6632\"*, on|strong=\"H5921\"* mules|strong=\"H6505\"*, and|strong=\"H1121\"* on|strong=\"H5921\"* camels|strong=\"H3753\"*, to|strong=\"H3478\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* Jerusalem|strong=\"H3389\"*, says Yahweh|strong=\"H3068\"*, as|strong=\"H3068\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* bring their|strong=\"H3605\"* offering|strong=\"H4503\"* in|strong=\"H5921\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* vessel|strong=\"H3627\"* into|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "Of|strong=\"H3068\"* them|strong=\"H1992\"* I|strong=\"H1571\"* will|strong=\"H3068\"* also|strong=\"H1571\"* select|strong=\"H3947\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* Levites|strong=\"H3881\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "“For|strong=\"H3588\"* as|strong=\"H6213\"* the|strong=\"H6440\"* new|strong=\"H2319\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H6440\"* new|strong=\"H2319\"* earth|strong=\"H8064\"*, which|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H6213\"*, shall|strong=\"H3068\"* remain|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “so|strong=\"H3651\"* your|strong=\"H3068\"* offspring|strong=\"H2233\"* and|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"* shall|strong=\"H3068\"* remain|strong=\"H5975\"*." + }, + { + "verseNum": 23, + "text": "It|strong=\"H6440\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* from|strong=\"H6440\"* one|strong=\"H3605\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* to|strong=\"H3068\"* another|strong=\"H7676\"*, and|strong=\"H3068\"* from|strong=\"H6440\"* one|strong=\"H3605\"* Sabbath|strong=\"H7676\"* to|strong=\"H3068\"* another|strong=\"H7676\"*, all|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "“They|strong=\"H3588\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H4191\"* the|strong=\"H3605\"* dead|strong=\"H4191\"* bodies|strong=\"H6297\"* of|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H1961\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* me|strong=\"H7200\"*; for|strong=\"H3588\"* their|strong=\"H3605\"* worm|strong=\"H8438\"* will|strong=\"H1961\"* not|strong=\"H3808\"* die|strong=\"H4191\"*, nor|strong=\"H3808\"* will|strong=\"H1961\"* their|strong=\"H3605\"* fire be|strong=\"H1961\"* quenched|strong=\"H3518\"*, and|strong=\"H7200\"* they|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* loathsome to|strong=\"H3318\"* all|strong=\"H3605\"* mankind|strong=\"H1320\"*.”" + } + ] + } + ] + }, + { + "name": "Jeremiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H4480\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, one|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* were|strong=\"H1121\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"* in|strong=\"H1121\"* the|strong=\"H4480\"* land of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* him|strong=\"H4427\"* in|strong=\"H8141\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H3068\"* reign|strong=\"H4427\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* also|strong=\"H4428\"* in|strong=\"H8141\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3117\"* end|strong=\"H8552\"* of|strong=\"H1121\"* the|strong=\"H3117\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"*, the|strong=\"H3117\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, to|strong=\"H5704\"* the|strong=\"H3117\"* carrying away|strong=\"H1540\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* captive|strong=\"H1540\"* in|strong=\"H8141\"* the|strong=\"H3117\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Before|strong=\"H2962\"* I|strong=\"H5414\"* formed|strong=\"H3335\"* you|strong=\"H5414\"* in|strong=\"H5414\"* the|strong=\"H5414\"* womb|strong=\"H7358\"*, I|strong=\"H5414\"* knew|strong=\"H3045\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* I|strong=\"H3588\"* said|strong=\"H1696\"*, “Ah, Lord|strong=\"H3069\"*+ 1:6 The word translated “Lord” is “Adonai.” * Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*,+ 1:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H1696\"* speak|strong=\"H1696\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am a|strong=\"H3068\"* child|strong=\"H5288\"*.”" + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “Don’t say|strong=\"H1696\"*, ‘I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* child|strong=\"H5288\"*;’ for|strong=\"H3588\"* you|strong=\"H3588\"* must go|strong=\"H3212\"* to|strong=\"H1696\"* whomever|strong=\"H3605\"* I|strong=\"H3588\"* send|strong=\"H7971\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* must say|strong=\"H1696\"* whatever|strong=\"H3605\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 8, + "text": "Don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"* because|strong=\"H3588\"* of|strong=\"H3068\"* them|strong=\"H6440\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* rescue|strong=\"H5337\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H2009\"* Yahweh|strong=\"H3068\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H5414\"* hand|strong=\"H3027\"* and|strong=\"H3068\"* touched|strong=\"H5060\"* my|strong=\"H5414\"* mouth|strong=\"H6310\"*. Then|strong=\"H2009\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H3068\"* put|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H5921\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H7200\"*, I|strong=\"H3117\"* have|strong=\"H1471\"* today|strong=\"H3117\"* set|strong=\"H6485\"* you|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* and|strong=\"H3117\"* over|strong=\"H5921\"* the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*, to|strong=\"H5921\"* uproot|strong=\"H5428\"* and|strong=\"H3117\"* to|strong=\"H5921\"* tear|strong=\"H2040\"* down|strong=\"H5422\"*, to|strong=\"H5921\"* destroy|strong=\"H5422\"* and|strong=\"H3117\"* to|strong=\"H5921\"* overthrow|strong=\"H2040\"*, to|strong=\"H5921\"* build|strong=\"H1129\"* and|strong=\"H3117\"* to|strong=\"H5921\"* plant|strong=\"H5193\"*.”" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, saying|strong=\"H1697\"*, “Jeremiah|strong=\"H3414\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H4100\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6213\"* Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, “You|strong=\"H3588\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* well|strong=\"H3190\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* my|strong=\"H3068\"* word|strong=\"H1697\"* to|strong=\"H3068\"* perform|strong=\"H6213\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H6440\"* the|strong=\"H6440\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*, “What|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H6440\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Out|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, evil|strong=\"H7451\"* will|strong=\"H3068\"* break|strong=\"H6605\"* out|strong=\"H5921\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* north|strong=\"H6828\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* utter|strong=\"H1696\"* my|strong=\"H3605\"* judgments|strong=\"H4941\"* against|strong=\"H5921\"* them|strong=\"H5921\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"*," + }, + { + "verseNum": 17, + "text": "“You|strong=\"H6440\"* therefore put|strong=\"H6680\"* your|strong=\"H3605\"* belt on|strong=\"H1696\"* your|strong=\"H3605\"* waist|strong=\"H4975\"*, arise|strong=\"H6965\"*, and|strong=\"H6965\"* say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H6680\"* command|strong=\"H6680\"* you|strong=\"H6440\"*. Don’t be|strong=\"H6440\"* dismayed|strong=\"H2865\"* at|strong=\"H6440\"* them|strong=\"H6440\"*, lest|strong=\"H6435\"* I|strong=\"H6680\"* dismay|strong=\"H2865\"* you|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H5921\"* behold|strong=\"H2009\"*, I|strong=\"H3117\"* have|strong=\"H5971\"* made|strong=\"H5414\"* you|strong=\"H5414\"* today|strong=\"H3117\"* a|strong=\"H3068\"* fortified|strong=\"H4013\"* city|strong=\"H5892\"*, an|strong=\"H5414\"* iron|strong=\"H1270\"* pillar|strong=\"H5982\"*, and|strong=\"H3063\"* bronze|strong=\"H5178\"* walls|strong=\"H2346\"* against|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land—against|strong=\"H5921\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, against|strong=\"H5921\"* its|strong=\"H3605\"* princes|strong=\"H8269\"*, against|strong=\"H5921\"* its|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* against|strong=\"H5921\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3588\"*, but|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prevail|strong=\"H3201\"* against|strong=\"H3898\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3201\"* rescue|strong=\"H5337\"* you|strong=\"H3588\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Go|strong=\"H1980\"* and|strong=\"H1980\"* proclaim|strong=\"H7121\"* in|strong=\"H1980\"* the|strong=\"H3541\"* ears of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* was|strong=\"H3068\"* holiness|strong=\"H6944\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 4, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 6, + "text": "They|strong=\"H8033\"* didn’t say, ‘Where|strong=\"H8033\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* brought|strong=\"H5927\"* us|strong=\"H5674\"* up|strong=\"H5927\"* out|strong=\"H3212\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land|strong=\"H6723\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 7, + "text": "I|strong=\"H7760\"* brought|strong=\"H7760\"* you|strong=\"H7760\"* into|strong=\"H7760\"* a|strong=\"H3068\"* plentiful|strong=\"H3759\"* land|strong=\"H5159\"*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3068\"* priests|strong=\"H3548\"* didn’t say, ‘Where|strong=\"H3808\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’" + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* pass|strong=\"H5674\"* over|strong=\"H5674\"* to|strong=\"H7971\"* the|strong=\"H7200\"* islands of|strong=\"H7200\"* Kittim|strong=\"H3794\"*, and|strong=\"H7971\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 11, + "text": "Has|strong=\"H1471\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* changed|strong=\"H4171\"* its|strong=\"H3808\"* gods," + }, + { + "verseNum": 12, + "text": "“Be|strong=\"H3068\"* astonished|strong=\"H8074\"*, you|strong=\"H5921\"* heavens|strong=\"H8064\"*, at|strong=\"H5921\"* this|strong=\"H2063\"*" + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3588\"* my|strong=\"H6213\"* people|strong=\"H5971\"* have|strong=\"H5971\"* committed|strong=\"H6213\"* two|strong=\"H8147\"* evils|strong=\"H7451\"*:" + }, + { + "verseNum": 14, + "text": "Is|strong=\"H1931\"* Israel|strong=\"H3478\"* a|strong=\"H3068\"* slave|strong=\"H5650\"*?" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* young|strong=\"H3715\"* lions|strong=\"H3715\"* have|strong=\"H5414\"* roared|strong=\"H7580\"* at|strong=\"H3427\"* him|strong=\"H5414\"* and|strong=\"H6963\"* raised|strong=\"H5414\"* their|strong=\"H5414\"* voices|strong=\"H6963\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H1571\"* children|strong=\"H1121\"* also|strong=\"H1571\"* of|strong=\"H1121\"* Memphis|strong=\"H5297\"* and|strong=\"H1121\"* Tahpanhes|strong=\"H8471\"* have|strong=\"H1121\"* broken|strong=\"H7462\"* the|strong=\"H1571\"* crown|strong=\"H6936\"* of|strong=\"H1121\"* your|strong=\"H1571\"* head|strong=\"H6936\"*." + }, + { + "verseNum": 17, + "text": "“Haven’t you|strong=\"H6213\"* brought|strong=\"H3212\"* this|strong=\"H2063\"* on|strong=\"H1870\"* yourself|strong=\"H6213\"*," + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* what|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* gain by|strong=\"H1870\"* going to|strong=\"H4714\"* Egypt|strong=\"H4714\"*, to|strong=\"H4714\"* drink|strong=\"H8354\"* the|strong=\"H1870\"* waters|strong=\"H4325\"* of|strong=\"H1870\"* the|strong=\"H1870\"* Shihor|strong=\"H7883\"*?" + }, + { + "verseNum": 19, + "text": "“Your|strong=\"H3068\"* own wickedness|strong=\"H7451\"* will|strong=\"H3068\"* correct|strong=\"H3256\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "“For|strong=\"H3588\"* long|strong=\"H5769\"* ago|strong=\"H5769\"* I|strong=\"H3588\"* broke|strong=\"H7665\"* off|strong=\"H5921\"* your|strong=\"H3605\"* yoke|strong=\"H5923\"*," + }, + { + "verseNum": 21, + "text": "Yet|strong=\"H3605\"* I|strong=\"H3605\"* had|strong=\"H2015\"* planted|strong=\"H5193\"* you|strong=\"H3605\"* a|strong=\"H3068\"* noble vine|strong=\"H1612\"*," + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* wash|strong=\"H3526\"* yourself with|strong=\"H6440\"* lye|strong=\"H5427\"*," + }, + { + "verseNum": 23, + "text": "“How|strong=\"H4100\"* can|strong=\"H4100\"* you|strong=\"H6213\"* say, ‘I|strong=\"H3045\"* am|strong=\"H1980\"* not|strong=\"H3808\"* defiled|strong=\"H2930\"*." + }, + { + "verseNum": 24, + "text": "a|strong=\"H3068\"* wild|strong=\"H6501\"* donkey|strong=\"H6501\"* used|strong=\"H3928\"* to|strong=\"H7725\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*, that|strong=\"H3605\"* sniffs|strong=\"H7602\"* the|strong=\"H3605\"* wind|strong=\"H7307\"* in|strong=\"H5315\"* her|strong=\"H3605\"* craving." + }, + { + "verseNum": 25, + "text": "“Keep|strong=\"H4513\"* your|strong=\"H3588\"* feet|strong=\"H7272\"* from|strong=\"H7272\"* being bare," + }, + { + "verseNum": 26, + "text": "As|strong=\"H3651\"* the|strong=\"H3588\"* thief|strong=\"H1590\"* is|strong=\"H3651\"* ashamed|strong=\"H1322\"* when|strong=\"H3588\"* he|strong=\"H3588\"* is|strong=\"H3651\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 27, + "text": "who|strong=\"H3588\"* tell wood|strong=\"H6086\"*, ‘You|strong=\"H3588\"* are|strong=\"H6440\"* my|strong=\"H6965\"* father|strong=\"H3205\"*,’" + }, + { + "verseNum": 28, + "text": "“But|strong=\"H3588\"* where are|strong=\"H5892\"* your|strong=\"H6213\"* gods that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* made|strong=\"H6213\"* for|strong=\"H3588\"* yourselves?" + }, + { + "verseNum": 29, + "text": "“Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3605\"* contend|strong=\"H7378\"* with|strong=\"H3068\"* me|strong=\"H3605\"*?" + }, + { + "verseNum": 30, + "text": "“I|strong=\"H3808\"* have|strong=\"H1121\"* struck|strong=\"H5221\"* your|strong=\"H3947\"* children|strong=\"H1121\"* in|strong=\"H1121\"* vain|strong=\"H7723\"*." + }, + { + "verseNum": 31, + "text": "Generation|strong=\"H1755\"*, consider|strong=\"H7200\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 32, + "text": "“Can a|strong=\"H3068\"* virgin|strong=\"H1330\"* forget|strong=\"H7911\"* her|strong=\"H7911\"* ornaments|strong=\"H5716\"*," + }, + { + "verseNum": 33, + "text": "How|strong=\"H4100\"* well|strong=\"H3190\"* you|strong=\"H4100\"* prepare|strong=\"H3190\"* your|strong=\"H1245\"* way|strong=\"H1870\"* to|strong=\"H1870\"* seek|strong=\"H1245\"* love!" + }, + { + "verseNum": 34, + "text": "Also|strong=\"H1571\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H5921\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H5921\"* the|strong=\"H3605\"* innocent|strong=\"H5355\"* poor is|strong=\"H5315\"* found|strong=\"H4672\"* in|strong=\"H5921\"* your|strong=\"H3605\"* skirts|strong=\"H3671\"*." + }, + { + "verseNum": 35, + "text": "“Yet|strong=\"H3588\"* you|strong=\"H3588\"* said, ‘I|strong=\"H3588\"* am|strong=\"H2005\"* innocent|strong=\"H5352\"*." + }, + { + "verseNum": 36, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* go about|strong=\"H1870\"* so|strong=\"H1571\"* much|strong=\"H3966\"* to|strong=\"H4714\"* change|strong=\"H8138\"* your|strong=\"H1571\"* ways|strong=\"H1870\"*?" + }, + { + "verseNum": 37, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H1571\"* leave|strong=\"H3318\"* that|strong=\"H3588\"* place|strong=\"H3027\"* with|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* on|strong=\"H5921\"* your|strong=\"H3068\"* head|strong=\"H7218\"*;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“They|strong=\"H3068\"* say|strong=\"H7725\"*, ‘If|strong=\"H2005\"* a|strong=\"H3068\"* man puts|strong=\"H7971\"* away|strong=\"H7971\"* his|strong=\"H3068\"* wife, and|strong=\"H1980\"* she|strong=\"H1931\"* goes|strong=\"H1980\"* from|strong=\"H7725\"* him|strong=\"H7971\"*, and|strong=\"H1980\"* becomes|strong=\"H1961\"* another|strong=\"H7453\"* man’s, should|strong=\"H3068\"* he|strong=\"H1931\"* return|strong=\"H7725\"* to|strong=\"H1980\"* her|strong=\"H7971\"* again|strong=\"H7725\"*?’ Wouldn’t that|strong=\"H1931\"* land be|strong=\"H1961\"* greatly|strong=\"H7227\"* polluted|strong=\"H2610\"*? But|strong=\"H3808\"* you|strong=\"H7971\"* have|strong=\"H1961\"* played|strong=\"H2181\"* the|strong=\"H5002\"* prostitute|strong=\"H2181\"* with|strong=\"H1980\"* many|strong=\"H7227\"* lovers|strong=\"H7453\"*; yet|strong=\"H5750\"* return|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H1980\"* me|strong=\"H7971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "“Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* to|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* heights|strong=\"H8205\"*, and|strong=\"H5869\"* see|strong=\"H7200\"*! Where|strong=\"H5921\"* have|strong=\"H5869\"* you|strong=\"H5921\"* not|strong=\"H3808\"* been|strong=\"H3808\"* lain with|strong=\"H5921\"*? You|strong=\"H5921\"* have|strong=\"H5869\"* sat|strong=\"H3427\"* waiting for|strong=\"H5921\"* them|strong=\"H5921\"* by|strong=\"H5921\"* the|strong=\"H5921\"* road|strong=\"H1870\"*, as|strong=\"H3427\"* an|strong=\"H5375\"* Arabian|strong=\"H6163\"* in|strong=\"H3427\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. You|strong=\"H5921\"* have|strong=\"H5869\"* polluted|strong=\"H2610\"* the|strong=\"H5921\"* land with|strong=\"H5921\"* your|strong=\"H5921\"* prostitution|strong=\"H2184\"* and|strong=\"H5869\"* with|strong=\"H5921\"* your|strong=\"H5921\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H1961\"* the|strong=\"H1961\"* showers|strong=\"H7241\"* have|strong=\"H1961\"* been|strong=\"H1961\"* withheld|strong=\"H4513\"* and|strong=\"H3985\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* no|strong=\"H3808\"* latter|strong=\"H4456\"* rain|strong=\"H4456\"*; yet|strong=\"H3808\"* you|strong=\"H3808\"* have|strong=\"H1961\"* had|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*’s forehead|strong=\"H4696\"* and|strong=\"H3985\"* you|strong=\"H3808\"* refused|strong=\"H3985\"* to|strong=\"H1961\"* be|strong=\"H1961\"* ashamed|strong=\"H3637\"*." + }, + { + "verseNum": 4, + "text": "Will|strong=\"H3808\"* you|strong=\"H3808\"* not|strong=\"H3808\"* from|strong=\"H3808\"* this|strong=\"H6258\"* time|strong=\"H6258\"* cry|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H7121\"*, ‘My|strong=\"H6258\"* Father, you|strong=\"H3808\"* are|strong=\"H3808\"* the|strong=\"H7121\"* guide of|strong=\"H7121\"* my|strong=\"H6258\"* youth|strong=\"H5271\"*!’?" + }, + { + "verseNum": 5, + "text": "“‘Will|strong=\"H6213\"* he|strong=\"H6213\"* retain his|strong=\"H8104\"* anger forever|strong=\"H5769\"*? Will|strong=\"H6213\"* he|strong=\"H6213\"* keep|strong=\"H8104\"* it|strong=\"H6213\"* to|strong=\"H1696\"* the|strong=\"H6213\"* end|strong=\"H5331\"*?’ Behold|strong=\"H2009\"*, you|strong=\"H6213\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* and|strong=\"H5769\"* have|strong=\"H1696\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* things|strong=\"H7451\"*, and|strong=\"H5769\"* have|strong=\"H1696\"* had|strong=\"H3201\"* your|strong=\"H8104\"* way|strong=\"H3201\"*.”" + }, + { + "verseNum": 6, + "text": "Moreover, Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Josiah|strong=\"H2977\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Have|strong=\"H3068\"* you|strong=\"H3605\"* seen|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H1931\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* done|strong=\"H6213\"*? She|strong=\"H1931\"* has|strong=\"H3068\"* gone|strong=\"H1980\"* up|strong=\"H7200\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"* and|strong=\"H1980\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H1980\"* has|strong=\"H3068\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* said after|strong=\"H7200\"* she|strong=\"H3808\"* had|strong=\"H3063\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, ‘She|strong=\"H3808\"* will|strong=\"H3063\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*;’ but|strong=\"H3808\"* she|strong=\"H3808\"* didn’t return|strong=\"H7725\"*, and|strong=\"H3063\"* her|strong=\"H3605\"* treacherous sister Judah|strong=\"H3063\"* saw|strong=\"H7200\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* saw|strong=\"H7200\"* when|strong=\"H3588\"*, for|strong=\"H3588\"* this|strong=\"H1931\"* very|strong=\"H1571\"* cause|strong=\"H5414\"*, that|strong=\"H3588\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* committed|strong=\"H5414\"* adultery|strong=\"H5003\"*, I|strong=\"H3588\"* had|strong=\"H3478\"* put|strong=\"H5414\"* her|strong=\"H3605\"* away|strong=\"H7971\"* and|strong=\"H3063\"* given|strong=\"H5414\"* her|strong=\"H3605\"* a|strong=\"H3068\"* certificate|strong=\"H5612\"* of|strong=\"H5921\"* divorce|strong=\"H7971\"*, yet|strong=\"H3588\"* treacherous Judah|strong=\"H3063\"*, her|strong=\"H3605\"* sister, had|strong=\"H3478\"* no|strong=\"H3808\"* fear|strong=\"H3372\"*, but|strong=\"H3588\"* she|strong=\"H1931\"* also|strong=\"H1571\"* went|strong=\"H3212\"* and|strong=\"H3063\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"*." + }, + { + "verseNum": 9, + "text": "Because she took|strong=\"H1961\"* her|strong=\"H1961\"* prostitution|strong=\"H2184\"* lightly, the|strong=\"H1961\"* land was|strong=\"H1961\"* polluted|strong=\"H2610\"*, and|strong=\"H6086\"* she committed|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H6086\"* stones and|strong=\"H6086\"* with|strong=\"H6086\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H3588\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2063\"* her|strong=\"H3605\"* treacherous sister, Judah|strong=\"H3063\"*, has|strong=\"H3068\"* not|strong=\"H3808\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"* with|strong=\"H3068\"* her|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*, but|strong=\"H3588\"* only|strong=\"H3588\"* in|strong=\"H3068\"* pretense,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H5315\"*, “Backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* shown herself|strong=\"H5315\"* more|strong=\"H5315\"* righteous|strong=\"H6663\"* than|strong=\"H3068\"* treacherous Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "Go|strong=\"H1980\"*, and|strong=\"H1980\"* proclaim|strong=\"H7121\"* these|strong=\"H7121\"* words|strong=\"H1697\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"*, and|strong=\"H1980\"* say|strong=\"H7725\"*, ‘Return|strong=\"H7725\"*, you|strong=\"H3588\"* backsliding|strong=\"H4878\"* Israel|strong=\"H3478\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* look|strong=\"H3068\"* in|strong=\"H1980\"* anger|strong=\"H6440\"* on|strong=\"H1980\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* merciful|strong=\"H2623\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* keep|strong=\"H5201\"* anger|strong=\"H6440\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "Only|strong=\"H3588\"* acknowledge|strong=\"H3045\"* your|strong=\"H3068\"* iniquity|strong=\"H5771\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* scattered|strong=\"H6340\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* to|strong=\"H3068\"* the|strong=\"H3605\"* strangers|strong=\"H2114\"* under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*,’” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Return|strong=\"H7725\"*, backsliding|strong=\"H7726\"* children|strong=\"H1121\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* husband|strong=\"H1166\"* to|strong=\"H7725\"* you|strong=\"H3588\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* one|strong=\"H1121\"* of|strong=\"H1121\"* you|strong=\"H3588\"* from|strong=\"H7725\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* two|strong=\"H8147\"* from|strong=\"H7725\"* a|strong=\"H3068\"* family|strong=\"H4940\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* shepherds|strong=\"H7462\"* according to|strong=\"H5414\"* my|strong=\"H5414\"* heart|strong=\"H3820\"*, who|strong=\"H7462\"* will|strong=\"H3820\"* feed|strong=\"H7462\"* you|strong=\"H5414\"* with|strong=\"H3820\"* knowledge|strong=\"H1844\"* and|strong=\"H3820\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* come|strong=\"H5927\"* to|strong=\"H3068\"* pass|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3117\"* multiplied|strong=\"H7235\"* and|strong=\"H3068\"* increased|strong=\"H7235\"* in|strong=\"H5921\"* the|strong=\"H5002\"* land in|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* say, ‘the|strong=\"H5002\"* ark of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s covenant|strong=\"H1285\"*!’ It|strong=\"H5921\"* will|strong=\"H3068\"* not|strong=\"H3808\"* come|strong=\"H5927\"* to|strong=\"H3068\"* mind|strong=\"H3820\"*. They|strong=\"H1992\"* won’t remember|strong=\"H2142\"* it|strong=\"H5921\"*. They|strong=\"H1992\"* won’t miss|strong=\"H6485\"* it|strong=\"H5921\"*, nor|strong=\"H3808\"* will|strong=\"H3068\"* another|strong=\"H5750\"* be|strong=\"H1961\"* made|strong=\"H6213\"*." + }, + { + "verseNum": 17, + "text": "At|strong=\"H3068\"* that|strong=\"H3605\"* time|strong=\"H6256\"* they|strong=\"H3068\"* will|strong=\"H3068\"* call|strong=\"H7121\"* Jerusalem|strong=\"H3389\"* ‘Yahweh|strong=\"H3068\"*’s Throne|strong=\"H3678\"*;’ and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* be|strong=\"H3808\"* gathered|strong=\"H6960\"* to|strong=\"H3068\"* it|strong=\"H1931\"*, to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* walk|strong=\"H3212\"* after|strong=\"H6256\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H3068\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 18, + "text": "In|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H3478\"* walk|strong=\"H3212\"* with|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* they|strong=\"H1992\"* will|strong=\"H3478\"* come|strong=\"H3212\"* together|strong=\"H3162\"* out|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* the|strong=\"H5921\"* north|strong=\"H6828\"* to|strong=\"H3478\"* the|strong=\"H5921\"* land that|strong=\"H3117\"* I|strong=\"H3117\"* gave|strong=\"H5157\"* for|strong=\"H5921\"* an|strong=\"H5157\"* inheritance|strong=\"H5157\"* to|strong=\"H3478\"* your|strong=\"H5921\"* fathers." + }, + { + "verseNum": 19, + "text": "“But|strong=\"H3808\"* I|strong=\"H5414\"* said|strong=\"H7121\"*, ‘How I|strong=\"H5414\"* desire|strong=\"H2532\"* to|strong=\"H7725\"* put|strong=\"H5414\"* you|strong=\"H5414\"* among|strong=\"H3808\"* the|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* pleasant|strong=\"H2532\"* land|strong=\"H5159\"*, a|strong=\"H3068\"* goodly|strong=\"H2532\"* heritage|strong=\"H5159\"* of|strong=\"H1121\"* the|strong=\"H5414\"* armies|strong=\"H6635\"* of|strong=\"H1121\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*!’ and|strong=\"H1121\"* I|strong=\"H5414\"* said|strong=\"H7121\"*, ‘You|strong=\"H5414\"* shall|strong=\"H1121\"* call|strong=\"H7121\"* me|strong=\"H5414\"* “My|strong=\"H5414\"* Father|strong=\"H1121\"*”, and|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* following me|strong=\"H5414\"*.’" + }, + { + "verseNum": 20, + "text": "“Surely|strong=\"H3651\"* as|strong=\"H3651\"* a|strong=\"H3068\"* wife treacherously departs from|strong=\"H3478\"* her|strong=\"H3651\"* husband|strong=\"H7453\"*, so|strong=\"H3651\"* you|strong=\"H3651\"* have|strong=\"H3068\"* dealt treacherously with|strong=\"H1004\"* me|strong=\"H1004\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* is|strong=\"H3068\"* heard|strong=\"H8085\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*, the|strong=\"H5921\"* weeping|strong=\"H1065\"* and|strong=\"H1121\"* the|strong=\"H5921\"* petitions of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*; because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* perverted|strong=\"H5753\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, they|strong=\"H3588\"* have|strong=\"H3068\"* forgotten|strong=\"H7911\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Return|strong=\"H7725\"*, you|strong=\"H3588\"* backsliding|strong=\"H4878\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* will|strong=\"H3068\"* heal|strong=\"H7495\"* your|strong=\"H3068\"* backsliding|strong=\"H4878\"*." + }, + { + "verseNum": 23, + "text": "Truly help|strong=\"H8668\"* from|strong=\"H3478\"* the|strong=\"H3068\"* hills|strong=\"H1389\"*, the|strong=\"H3068\"* tumult|strong=\"H1995\"* on|strong=\"H3068\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"*, is|strong=\"H3068\"* in|strong=\"H3478\"* vain|strong=\"H8267\"*. Truly the|strong=\"H3068\"* salvation|strong=\"H8668\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* is|strong=\"H3068\"* in|strong=\"H3478\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H5271\"* the|strong=\"H1121\"* shameful|strong=\"H1322\"* thing|strong=\"H1322\"* has|strong=\"H1121\"* devoured the|strong=\"H1121\"* labor|strong=\"H3018\"* of|strong=\"H1121\"* our fathers from|strong=\"H1121\"* our youth|strong=\"H5271\"*, their flocks|strong=\"H6629\"* and|strong=\"H1121\"* their herds|strong=\"H1241\"*, their sons|strong=\"H1121\"* and|strong=\"H1121\"* their daughters|strong=\"H1323\"*." + }, + { + "verseNum": 25, + "text": "Let|strong=\"H3808\"* us|strong=\"H3588\"* lie|strong=\"H7901\"* down|strong=\"H7901\"* in|strong=\"H3068\"* our|strong=\"H3068\"* shame|strong=\"H1322\"*, and|strong=\"H3068\"* let|strong=\"H3808\"* our|strong=\"H3068\"* confusion|strong=\"H1322\"* cover|strong=\"H3680\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, we|strong=\"H3068\"* and|strong=\"H3068\"* our|strong=\"H3068\"* fathers, from|strong=\"H8085\"* our|strong=\"H3068\"* youth|strong=\"H5271\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*. We|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“If you|strong=\"H6440\"* will|strong=\"H3068\"* return|strong=\"H7725\"*, Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “if you|strong=\"H6440\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H6440\"*, and|strong=\"H3478\"* if you|strong=\"H6440\"* will|strong=\"H3068\"* put|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* abominations|strong=\"H8251\"* out|strong=\"H6440\"* of|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*; then|strong=\"H7725\"* you|strong=\"H6440\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* removed|strong=\"H5493\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* you|strong=\"H1288\"* will|strong=\"H3068\"* swear|strong=\"H7650\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*,’ in|strong=\"H3068\"* truth, in|strong=\"H3068\"* justice|strong=\"H4941\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* righteousness|strong=\"H6666\"*. The|strong=\"H3068\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* bless|strong=\"H1288\"* themselves in|strong=\"H3068\"* him|strong=\"H1288\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* glory|strong=\"H1984\"* in|strong=\"H3068\"* him|strong=\"H1288\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* the|strong=\"H3588\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, “Break|strong=\"H5214\"* up|strong=\"H5214\"* your|strong=\"H3068\"* fallow|strong=\"H5215\"* ground|strong=\"H5215\"*, and|strong=\"H3063\"* don’t sow|strong=\"H2232\"* among thorns|strong=\"H6975\"*." + }, + { + "verseNum": 4, + "text": "Circumcise|strong=\"H4135\"* yourselves|strong=\"H3068\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H6440\"* foreskins|strong=\"H6190\"* of|strong=\"H3068\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*, you|strong=\"H6440\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*; lest|strong=\"H6435\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* go|strong=\"H3318\"* out|strong=\"H3318\"* like|strong=\"H3318\"* fire, and|strong=\"H3063\"* burn|strong=\"H1197\"* so|strong=\"H6435\"* that|strong=\"H3068\"* no|strong=\"H6435\"* one|strong=\"H3068\"* can quench|strong=\"H3518\"* it|strong=\"H6440\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 5, + "text": "Declare|strong=\"H5046\"* in|strong=\"H8085\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* publish|strong=\"H8085\"* in|strong=\"H8085\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* say, ‘Blow|strong=\"H8628\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* in|strong=\"H8085\"* the|strong=\"H8085\"* land!’ Cry|strong=\"H7121\"* aloud|strong=\"H4390\"* and|strong=\"H3063\"* say, ‘Assemble yourselves|strong=\"H4390\"*! Let|strong=\"H5046\"*’s go into|strong=\"H3063\"* the|strong=\"H8085\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*!’" + }, + { + "verseNum": 6, + "text": "Set|strong=\"H5975\"* up|strong=\"H5375\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* toward|strong=\"H5251\"* Zion|strong=\"H6726\"*. Flee|strong=\"H5756\"* for|strong=\"H3588\"* safety|strong=\"H5756\"*! Don’t wait|strong=\"H5975\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6828\"* bring|strong=\"H5375\"* evil|strong=\"H7451\"* from|strong=\"H7451\"* the|strong=\"H3588\"* north|strong=\"H6828\"*, and|strong=\"H1419\"* a|strong=\"H3068\"* great|strong=\"H1419\"* destruction|strong=\"H7667\"*.”" + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* lion has|strong=\"H3318\"* gone|strong=\"H3318\"* up|strong=\"H5927\"* from|strong=\"H5265\"* his|strong=\"H7760\"* thicket|strong=\"H5441\"*, and|strong=\"H5892\"* a|strong=\"H3068\"* destroyer|strong=\"H7843\"* of|strong=\"H3427\"* nations|strong=\"H1471\"*. He|strong=\"H3318\"* is|strong=\"H5892\"* on|strong=\"H3427\"* his|strong=\"H7760\"* way|strong=\"H5265\"*. He|strong=\"H3318\"* has|strong=\"H3318\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H5265\"* his|strong=\"H7760\"* place|strong=\"H4725\"*, to|strong=\"H3318\"* make|strong=\"H7760\"* your|strong=\"H7760\"* land|strong=\"H4725\"* desolate|strong=\"H8047\"*, that|strong=\"H1471\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* be|strong=\"H1471\"* laid|strong=\"H7760\"* waste|strong=\"H8047\"*, without|strong=\"H3427\"* inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"*, clothe yourself|strong=\"H5921\"* with|strong=\"H3068\"* sackcloth|strong=\"H8242\"*, lament|strong=\"H5594\"* and|strong=\"H3068\"* wail|strong=\"H3213\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* hasn’t turned|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 9, + "text": "“It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* at|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* will|strong=\"H3068\"* perish, along with|strong=\"H3068\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H4428\"* the|strong=\"H5002\"* princes|strong=\"H8269\"*. The|strong=\"H5002\"* priests|strong=\"H3548\"* will|strong=\"H3068\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* will|strong=\"H3068\"* wonder|strong=\"H8539\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* I|strong=\"H5704\"* said, “Ah, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Surely|strong=\"H1961\"* you|strong=\"H5704\"* have|strong=\"H1961\"* greatly|strong=\"H5377\"* deceived|strong=\"H5377\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H5971\"* Jerusalem|strong=\"H3389\"*, saying, ‘You|strong=\"H5704\"* will|strong=\"H1961\"* have|strong=\"H1961\"* peace|strong=\"H7965\"*;’ whereas the|strong=\"H3069\"* sword|strong=\"H2719\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3069\"* heart|strong=\"H5315\"*.”" + }, + { + "verseNum": 11, + "text": "At|strong=\"H3808\"* that|strong=\"H5971\"* time|strong=\"H6256\"* it|strong=\"H1931\"* will|strong=\"H5971\"* be|strong=\"H3808\"* said to|strong=\"H6256\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H5971\"* to|strong=\"H6256\"* Jerusalem|strong=\"H3389\"*, “A|strong=\"H3068\"* hot wind|strong=\"H7307\"* blows from|strong=\"H7307\"* the|strong=\"H1870\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"* in|strong=\"H1870\"* the|strong=\"H1870\"* wilderness|strong=\"H4057\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H2088\"* people|strong=\"H5971\"*, not|strong=\"H3808\"* to|strong=\"H6256\"* winnow|strong=\"H2219\"*, nor|strong=\"H3808\"* to|strong=\"H6256\"* cleanse|strong=\"H1305\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* full|strong=\"H4392\"* wind|strong=\"H7307\"* from|strong=\"H7307\"* these|strong=\"H1696\"* will|strong=\"H1571\"* come|strong=\"H4941\"* for|strong=\"H4941\"* me|strong=\"H1696\"*. Now|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H1571\"* also|strong=\"H1571\"* utter|strong=\"H1696\"* judgments|strong=\"H4941\"* against|strong=\"H1696\"* them|strong=\"H7307\"*.”" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H7703\"* come|strong=\"H5927\"* up|strong=\"H5927\"* as|strong=\"H5927\"* clouds|strong=\"H6051\"*, and|strong=\"H5483\"* his|strong=\"H3588\"* chariots|strong=\"H4818\"* will|strong=\"H7703\"* be|strong=\"H3588\"* as|strong=\"H5927\"* the|strong=\"H3588\"* whirlwind|strong=\"H5492\"*. His|strong=\"H3588\"* horses|strong=\"H5483\"* are|strong=\"H5483\"* swifter|strong=\"H7043\"* than|strong=\"H3588\"* eagles|strong=\"H5404\"*. Woe to|strong=\"H5927\"* us|strong=\"H3588\"*! For|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5483\"* ruined|strong=\"H7703\"*." + }, + { + "verseNum": 14, + "text": "Jerusalem|strong=\"H3389\"*, wash|strong=\"H3526\"* your|strong=\"H5704\"* heart|strong=\"H3820\"* from|strong=\"H5704\"* wickedness|strong=\"H7451\"*, that|strong=\"H4616\"* you|strong=\"H5704\"* may|strong=\"H3820\"* be|strong=\"H3820\"* saved|strong=\"H3467\"*. How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3820\"* your|strong=\"H5704\"* evil|strong=\"H7451\"* thoughts|strong=\"H4284\"* lodge|strong=\"H3885\"* within|strong=\"H7130\"* you|strong=\"H5704\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* declares|strong=\"H5046\"* from|strong=\"H8085\"* Dan|strong=\"H1835\"*, and|strong=\"H6963\"* publishes evil from|strong=\"H8085\"* the|strong=\"H8085\"* hills|strong=\"H2022\"* of|strong=\"H2022\"* Ephraim:" + }, + { + "verseNum": 16, + "text": "“Tell|strong=\"H8085\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, behold|strong=\"H2009\"*, publish|strong=\"H8085\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, ‘Watchers|strong=\"H5341\"* come|strong=\"H3063\"* from|strong=\"H5921\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country, and|strong=\"H3063\"* raise|strong=\"H5414\"* their|strong=\"H5414\"* voice|strong=\"H6963\"* against|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 17, + "text": "As|strong=\"H1961\"* keepers|strong=\"H8104\"* of|strong=\"H3068\"* a|strong=\"H3068\"* field|strong=\"H7704\"*, they|strong=\"H3588\"* are|strong=\"H3068\"* against|strong=\"H5921\"* her|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, because|strong=\"H3588\"* she|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* rebellious|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"*,’” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“Your|strong=\"H6213\"* way|strong=\"H1870\"* and|strong=\"H1870\"* your|strong=\"H6213\"* doings|strong=\"H4611\"* have|strong=\"H3588\"* brought|strong=\"H6213\"* these|strong=\"H2063\"* things|strong=\"H7451\"* to|strong=\"H5704\"* you|strong=\"H3588\"*. This|strong=\"H2063\"* is|strong=\"H3820\"* your|strong=\"H6213\"* wickedness|strong=\"H7451\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3820\"* bitter|strong=\"H4751\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* reaches|strong=\"H5704\"* to|strong=\"H5704\"* your|strong=\"H6213\"* heart|strong=\"H3820\"*.”" + }, + { + "verseNum": 19, + "text": "My|strong=\"H8085\"* anguish|strong=\"H2342\"*, my|strong=\"H8085\"* anguish|strong=\"H2342\"*! I|strong=\"H3588\"* am pained|strong=\"H2342\"* at|strong=\"H4421\"* my|strong=\"H8085\"* very|strong=\"H7023\"* heart|strong=\"H3820\"*! My|strong=\"H8085\"* heart|strong=\"H3820\"* trembles within|strong=\"H4578\"* me|strong=\"H5315\"*. I|strong=\"H3588\"* can|strong=\"H3808\"*’t hold my|strong=\"H8085\"* peace|strong=\"H2790\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* heard|strong=\"H8085\"*, O|strong=\"H3068\"* my|strong=\"H8085\"* soul|strong=\"H5315\"*, the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, the|strong=\"H8085\"* alarm|strong=\"H8643\"* of|strong=\"H6963\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 20, + "text": "Destruction|strong=\"H7667\"* on|strong=\"H5921\"* destruction|strong=\"H7667\"* is|strong=\"H3605\"* decreed, for|strong=\"H3588\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land is|strong=\"H3605\"* laid waste|strong=\"H7703\"*. Suddenly|strong=\"H6597\"* my|strong=\"H3605\"* tents are|strong=\"H7703\"* destroyed|strong=\"H7703\"*, and|strong=\"H7121\"* my|strong=\"H3605\"* curtains|strong=\"H3407\"* gone in|strong=\"H5921\"* a|strong=\"H3068\"* moment|strong=\"H7281\"*." + }, + { + "verseNum": 21, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H5704\"* I|strong=\"H5704\"* see|strong=\"H7200\"* the|strong=\"H8085\"* standard|strong=\"H5251\"* and|strong=\"H6963\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*?" + }, + { + "verseNum": 22, + "text": "“For|strong=\"H3588\"* my|strong=\"H3045\"* people|strong=\"H5971\"* are|strong=\"H1992\"* foolish|strong=\"H5530\"*. They|strong=\"H1992\"* don’t know|strong=\"H3045\"* me|strong=\"H3808\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* foolish|strong=\"H5530\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* have|strong=\"H5971\"* no|strong=\"H3808\"* understanding. They|strong=\"H1992\"* are|strong=\"H1992\"* skillful|strong=\"H2450\"* in|strong=\"H1121\"* doing|strong=\"H3190\"* evil|strong=\"H7489\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* how|strong=\"H3588\"* to|strong=\"H1121\"* do|strong=\"H3190\"* good|strong=\"H3190\"*.”" + }, + { + "verseNum": 23, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* earth|strong=\"H8064\"* and|strong=\"H8064\"*, behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H8064\"* waste|strong=\"H8414\"* and|strong=\"H8064\"* void, and|strong=\"H8064\"* the|strong=\"H7200\"* heavens|strong=\"H8064\"*, and|strong=\"H8064\"* they|strong=\"H7200\"* had|strong=\"H8064\"* no|strong=\"H7200\"* light." + }, + { + "verseNum": 24, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, they|strong=\"H3605\"* trembled|strong=\"H7493\"*, and|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* hills|strong=\"H1389\"* moved|strong=\"H7493\"* back and|strong=\"H7200\"* forth." + }, + { + "verseNum": 25, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H3605\"* no|strong=\"H3605\"* man|strong=\"H3605\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3605\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* had|strong=\"H8064\"* fled|strong=\"H5074\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"* was|strong=\"H3068\"* a|strong=\"H3068\"* wilderness|strong=\"H4057\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* were|strong=\"H5892\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* at|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, before|strong=\"H6440\"* his|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H6440\"*." + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “The|strong=\"H3605\"* whole|strong=\"H3605\"* land will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*; yet|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3605\"* end|strong=\"H3617\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3588\"* this|strong=\"H2063\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* mourn|strong=\"H6937\"*, and|strong=\"H7725\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* above|strong=\"H4605\"* be|strong=\"H3808\"* black|strong=\"H6937\"*, because|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*. I|strong=\"H3588\"* have|strong=\"H1696\"* planned|strong=\"H2161\"* it|strong=\"H5921\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* have|strong=\"H1696\"* not|strong=\"H3808\"* repented|strong=\"H5162\"*, neither|strong=\"H3808\"* will|strong=\"H8064\"* I|strong=\"H3588\"* turn|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 29, + "text": "Every|strong=\"H3605\"* city|strong=\"H5892\"* flees|strong=\"H1272\"* for|strong=\"H3427\"* the|strong=\"H3605\"* noise|strong=\"H6963\"* of|strong=\"H3427\"* the|strong=\"H3605\"* horsemen|strong=\"H6571\"* and|strong=\"H6963\"* archers|strong=\"H7198\"*. They|strong=\"H2004\"* go|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H3605\"* thickets|strong=\"H5645\"* and|strong=\"H6963\"* climb|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3427\"* the|strong=\"H3605\"* rocks|strong=\"H3710\"*. Every|strong=\"H3605\"* city|strong=\"H5892\"* is|strong=\"H3605\"* forsaken|strong=\"H5800\"*, and|strong=\"H6963\"* not|strong=\"H5927\"* a|strong=\"H3068\"* man|strong=\"H3605\"* dwells|strong=\"H3427\"* therein|strong=\"H2004\"*." + }, + { + "verseNum": 30, + "text": "You|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5869\"* made|strong=\"H6213\"* desolate|strong=\"H7703\"*, what|strong=\"H4100\"* will|strong=\"H5869\"* you|strong=\"H3588\"* do|strong=\"H6213\"*? Though|strong=\"H3588\"* you|strong=\"H3588\"* clothe|strong=\"H3847\"* yourself|strong=\"H5315\"* with|strong=\"H3847\"* scarlet|strong=\"H8144\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* deck|strong=\"H5710\"* yourself|strong=\"H5315\"* with|strong=\"H3847\"* ornaments|strong=\"H5716\"* of|strong=\"H5869\"* gold|strong=\"H2091\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* enlarge|strong=\"H7167\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"* with|strong=\"H3847\"* makeup, you|strong=\"H3588\"* make|strong=\"H6213\"* yourself|strong=\"H5315\"* beautiful|strong=\"H3302\"* in|strong=\"H6213\"* vain|strong=\"H7723\"*. Your|strong=\"H6213\"* lovers|strong=\"H5689\"* despise|strong=\"H3988\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* seek|strong=\"H1245\"* your|strong=\"H6213\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1323\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* as|strong=\"H5315\"* of|strong=\"H1323\"* a|strong=\"H3068\"* woman|strong=\"H1323\"* in|strong=\"H8085\"* travail|strong=\"H2470\"*, the|strong=\"H8085\"* anguish|strong=\"H6869\"* as|strong=\"H5315\"* of|strong=\"H1323\"* her|strong=\"H6566\"* who|strong=\"H5315\"* gives birth|strong=\"H1069\"* to|strong=\"H8085\"* her|strong=\"H6566\"* first|strong=\"H1323\"* child|strong=\"H1069\"*, the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H1323\"* the|strong=\"H8085\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*, who|strong=\"H5315\"* gasps for|strong=\"H3588\"* breath|strong=\"H5315\"*, who|strong=\"H5315\"* spreads|strong=\"H6566\"* her|strong=\"H6566\"* hands|strong=\"H3709\"*, saying|strong=\"H6963\"*, “Woe is|strong=\"H5315\"* me|strong=\"H4994\"* now|strong=\"H4994\"*! For|strong=\"H3588\"* my|strong=\"H8085\"* soul|strong=\"H5315\"* faints before|strong=\"H5888\"* the|strong=\"H8085\"* murderers|strong=\"H2026\"*.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Run|strong=\"H4941\"* back|strong=\"H3045\"* and|strong=\"H4941\"* forth|strong=\"H6213\"* through|strong=\"H7751\"* the|strong=\"H7200\"* streets|strong=\"H2351\"* of|strong=\"H2351\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4941\"* see|strong=\"H7200\"* now|strong=\"H4994\"*, and|strong=\"H4941\"* know|strong=\"H3045\"*, and|strong=\"H4941\"* seek|strong=\"H1245\"* in|strong=\"H6213\"* its|strong=\"H6213\"* wide places|strong=\"H7339\"*, if|strong=\"H7200\"* you|strong=\"H6213\"* can|strong=\"H6213\"* find|strong=\"H4672\"* a|strong=\"H3068\"* man|strong=\"H3045\"*, if|strong=\"H7200\"* there|strong=\"H3426\"* is|strong=\"H3426\"* anyone|strong=\"H7200\"* who|strong=\"H4672\"* does|strong=\"H6213\"* justly|strong=\"H4941\"*, who|strong=\"H4672\"* seeks|strong=\"H1245\"* truth, then|strong=\"H6213\"* I|strong=\"H3045\"* will|strong=\"H3389\"* pardon|strong=\"H5545\"* her|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "Though they|strong=\"H3651\"* say, ‘As|strong=\"H3651\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*,’ surely|strong=\"H3651\"* they|strong=\"H3651\"* swear|strong=\"H7650\"* falsely|strong=\"H8267\"*.”" + }, + { + "verseNum": 3, + "text": "O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, don’t your|strong=\"H3068\"* eyes|strong=\"H5869\"* look|strong=\"H5869\"* on|strong=\"H3068\"* truth|strong=\"H3808\"*? You|strong=\"H6440\"* have|strong=\"H3068\"* stricken|strong=\"H5221\"* them|strong=\"H7725\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* were|strong=\"H5869\"* not|strong=\"H3808\"* grieved|strong=\"H2342\"*. You|strong=\"H6440\"* have|strong=\"H3068\"* consumed|strong=\"H3615\"* them|strong=\"H7725\"*, but|strong=\"H3808\"* they|strong=\"H3068\"* have|strong=\"H3068\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* receive|strong=\"H3947\"* correction|strong=\"H4148\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H2388\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* harder|strong=\"H2388\"* than|strong=\"H3808\"* a|strong=\"H3068\"* rock|strong=\"H5553\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* refused|strong=\"H3985\"* to|strong=\"H7725\"* return|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3588\"* I|strong=\"H3588\"* said, “Surely|strong=\"H3588\"* these|strong=\"H1992\"* are|strong=\"H1992\"* poor|strong=\"H1800\"*. They|strong=\"H1992\"* are|strong=\"H1992\"* foolish|strong=\"H2973\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* Yahweh|strong=\"H3068\"*’s way|strong=\"H1870\"*, nor|strong=\"H3808\"* the|strong=\"H3588\"* law|strong=\"H4941\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H3588\"* great|strong=\"H1419\"* men|strong=\"H1419\"* and|strong=\"H3068\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* know|strong=\"H3045\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* law|strong=\"H4941\"* of|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*.” But|strong=\"H3588\"* these|strong=\"H1992\"* with|strong=\"H3068\"* one|strong=\"H3588\"* accord|strong=\"H3162\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3588\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* burst|strong=\"H5423\"* the|strong=\"H3588\"* bonds|strong=\"H4147\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* lion out|strong=\"H3318\"* of|strong=\"H5892\"* the|strong=\"H3605\"* forest|strong=\"H3293\"* will|strong=\"H5892\"* kill|strong=\"H5221\"* them|strong=\"H5921\"*. A|strong=\"H3068\"* wolf|strong=\"H2061\"* of|strong=\"H5892\"* the|strong=\"H3605\"* evenings|strong=\"H6160\"* will|strong=\"H5892\"* destroy|strong=\"H7703\"* them|strong=\"H5921\"*. A|strong=\"H3068\"* leopard|strong=\"H5246\"* will|strong=\"H5892\"* watch|strong=\"H8245\"* against|strong=\"H5921\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* there|strong=\"H3605\"* will|strong=\"H5892\"* be|strong=\"H5892\"* torn|strong=\"H2963\"* in|strong=\"H5921\"* pieces|strong=\"H2963\"*, because|strong=\"H3588\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"* are|strong=\"H6588\"* many|strong=\"H7231\"* and|strong=\"H5892\"* their|strong=\"H3605\"* backsliding|strong=\"H4878\"* has|strong=\"H3588\"* increased|strong=\"H6105\"*." + }, + { + "verseNum": 7, + "text": "“How can|strong=\"H3808\"* I|strong=\"H3808\"* pardon|strong=\"H5545\"* you|strong=\"H3808\"*? Your|strong=\"H3808\"* children|strong=\"H1121\"* have|strong=\"H1121\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H1121\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* what|strong=\"H2063\"* are|strong=\"H1121\"* no|strong=\"H3808\"* gods. When|strong=\"H1121\"* I|strong=\"H3808\"* had|strong=\"H1121\"* fed|strong=\"H7646\"* them|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H5800\"* full|strong=\"H7646\"*, they|strong=\"H3808\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"*, and|strong=\"H1121\"* assembled themselves in|strong=\"H1004\"* troops|strong=\"H1413\"* at|strong=\"H1004\"* the|strong=\"H5800\"* prostitutes|strong=\"H2181\"*’ houses|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "They were|strong=\"H1961\"* as|strong=\"H1961\"* fed|strong=\"H2109\"* horses|strong=\"H5483\"* roaming at|strong=\"H1961\"* large. Everyone neighed|strong=\"H6670\"* after|strong=\"H1961\"* his|strong=\"H1961\"* neighbor|strong=\"H7453\"*’s wife." + }, + { + "verseNum": 9, + "text": "Shouldn’t I|strong=\"H5921\"* punish|strong=\"H6485\"* them|strong=\"H5921\"* for|strong=\"H5921\"* these|strong=\"H2088\"* things|strong=\"H3808\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Shouldn’t my|strong=\"H3068\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* avenged|strong=\"H5358\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* as|strong=\"H5315\"* this|strong=\"H2088\"*?" + }, + { + "verseNum": 10, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3068\"* her|strong=\"H5493\"* walls|strong=\"H8284\"*, and|strong=\"H3068\"* destroy|strong=\"H7843\"*, but|strong=\"H3588\"* don’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"*. Take|strong=\"H5493\"* away|strong=\"H5493\"* her|strong=\"H5493\"* branches|strong=\"H5189\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* not|strong=\"H3808\"* Yahweh|strong=\"H3068\"*’s." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* have|strong=\"H3068\"* dealt very treacherously against|strong=\"H3068\"* me|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* denied|strong=\"H3584\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said, “It|strong=\"H1931\"* is|strong=\"H3068\"* not|strong=\"H3808\"* he|strong=\"H1931\"*. Evil|strong=\"H7451\"* won’t come on|strong=\"H5921\"* us|strong=\"H5921\"*. We|strong=\"H7200\"* won’t see|strong=\"H7200\"* sword|strong=\"H2719\"* or|strong=\"H3808\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3541\"* prophets|strong=\"H5030\"* will|strong=\"H1961\"* become|strong=\"H1961\"* wind|strong=\"H7307\"*, and|strong=\"H6213\"* the|strong=\"H3541\"* word|strong=\"H1699\"* is|strong=\"H7307\"* not|strong=\"H6213\"* in|strong=\"H6213\"* them|strong=\"H6213\"*. Thus|strong=\"H3541\"* it|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Because|strong=\"H3282\"* you|strong=\"H5414\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* my|strong=\"H5414\"* words|strong=\"H1697\"* in|strong=\"H3068\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* fire, and|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* wood|strong=\"H6086\"*, and|strong=\"H3068\"* it|strong=\"H5414\"* will|strong=\"H3068\"* devour them|strong=\"H5414\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H3045\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* on|strong=\"H5921\"* you|strong=\"H5921\"* from|strong=\"H5921\"* far|strong=\"H4801\"* away|strong=\"H4801\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* mighty nation|strong=\"H1471\"*. It|strong=\"H1931\"* is|strong=\"H3068\"* an|strong=\"H3068\"* ancient|strong=\"H5769\"* nation|strong=\"H1471\"*, a|strong=\"H3068\"* nation|strong=\"H1471\"* whose|strong=\"H1471\"* language|strong=\"H3956\"* you|strong=\"H5921\"* don’t know|strong=\"H3045\"* and|strong=\"H3478\"* don’t understand|strong=\"H3045\"* what|strong=\"H4100\"* they|strong=\"H3068\"* say|strong=\"H1696\"*." + }, + { + "verseNum": 16, + "text": "Their|strong=\"H3605\"* quiver is|strong=\"H3605\"* an|strong=\"H6605\"* open|strong=\"H6605\"* tomb|strong=\"H6913\"*. They|strong=\"H3605\"* are|strong=\"H1368\"* all|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* harvest|strong=\"H7105\"* and|strong=\"H1121\"* your|strong=\"H6629\"* bread|strong=\"H3899\"*, which|strong=\"H5892\"* your|strong=\"H6629\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H6629\"* daughters|strong=\"H1323\"* should|strong=\"H1323\"* eat|strong=\"H3899\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* flocks|strong=\"H6629\"* and|strong=\"H1121\"* your|strong=\"H6629\"* herds|strong=\"H1241\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* eat|strong=\"H3899\"* up|strong=\"H1121\"* your|strong=\"H6629\"* vines|strong=\"H1612\"* and|strong=\"H1121\"* your|strong=\"H6629\"* fig|strong=\"H8384\"* trees|strong=\"H8384\"*. They|strong=\"H2007\"* will|strong=\"H2719\"* beat down|strong=\"H7567\"* your|strong=\"H6629\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"* in|strong=\"H5892\"* which|strong=\"H5892\"* you|strong=\"H2007\"* trust with|strong=\"H3899\"* the|strong=\"H1121\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 18, + "text": "“But|strong=\"H3808\"* even|strong=\"H1571\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H3808\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3117\"* end|strong=\"H3617\"* of|strong=\"H3068\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 19, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"* to|strong=\"H3068\"* us|strong=\"H6213\"*?’ Then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* say to|strong=\"H3068\"* them|strong=\"H6213\"*, ‘Just|strong=\"H3605\"* as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* forsaken|strong=\"H5800\"* me|strong=\"H6213\"* and|strong=\"H3068\"* served|strong=\"H5647\"* foreign|strong=\"H5236\"* gods in|strong=\"H3068\"* your|strong=\"H3068\"* land, so|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* strangers|strong=\"H2114\"* in|strong=\"H3068\"* a|strong=\"H3068\"* land that|strong=\"H3588\"* is|strong=\"H3068\"* not|strong=\"H3808\"* yours.’" + }, + { + "verseNum": 20, + "text": "“Declare|strong=\"H5046\"* this|strong=\"H2063\"* in|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3063\"* publish|strong=\"H8085\"* it|strong=\"H2063\"* in|strong=\"H1004\"* Judah|strong=\"H3063\"*, saying," + }, + { + "verseNum": 21, + "text": "‘Hear|strong=\"H8085\"* this|strong=\"H2063\"* now|strong=\"H4994\"*, foolish|strong=\"H5530\"* people|strong=\"H5971\"* without|strong=\"H3808\"* understanding|strong=\"H3820\"*, who|strong=\"H5971\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"*, and|strong=\"H5971\"* don’t see|strong=\"H7200\"*, who|strong=\"H5971\"* have|strong=\"H5869\"* ears, and|strong=\"H5971\"* don’t hear|strong=\"H8085\"*:" + }, + { + "verseNum": 22, + "text": "Don’t you|strong=\"H6440\"* fear|strong=\"H3372\"* me|strong=\"H6440\"*?’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘Won’t you|strong=\"H6440\"* tremble|strong=\"H2342\"* at|strong=\"H3068\"* my|strong=\"H3068\"* presence|strong=\"H6440\"*, who|strong=\"H3068\"* have|strong=\"H3068\"* placed|strong=\"H7760\"* the|strong=\"H6440\"* sand|strong=\"H2344\"* for|strong=\"H6440\"* the|strong=\"H6440\"* bound|strong=\"H1366\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"* by|strong=\"H5674\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* decree|strong=\"H2706\"*, that|strong=\"H3068\"* it|strong=\"H7760\"* can|strong=\"H3201\"*’t pass|strong=\"H5674\"* it|strong=\"H7760\"*? Though its|strong=\"H7760\"* waves|strong=\"H1530\"* toss|strong=\"H1607\"* themselves|strong=\"H7760\"*, yet|strong=\"H3068\"* they|strong=\"H3068\"* can|strong=\"H3201\"*’t prevail|strong=\"H3201\"*. Though they|strong=\"H3068\"* roar|strong=\"H1993\"*, they|strong=\"H3068\"* still|strong=\"H3201\"* can|strong=\"H3201\"*’t pass|strong=\"H5674\"* over|strong=\"H5674\"* it|strong=\"H7760\"*.’" + }, + { + "verseNum": 23, + "text": "“But|strong=\"H1961\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H1961\"* a|strong=\"H3068\"* revolting|strong=\"H5637\"* and|strong=\"H3212\"* a|strong=\"H3068\"* rebellious|strong=\"H4784\"* heart|strong=\"H3820\"*. They|strong=\"H5971\"* have|strong=\"H1961\"* revolted|strong=\"H5493\"* and|strong=\"H3212\"* gone|strong=\"H3212\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H3068\"* don’t say in|strong=\"H3068\"* their|strong=\"H3068\"* heart|strong=\"H3824\"*, ‘Let|strong=\"H4994\"*’s now|strong=\"H4994\"* fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, who|strong=\"H3068\"* gives|strong=\"H5414\"* rain|strong=\"H1653\"*, both the|strong=\"H5414\"* former|strong=\"H3138\"* and|strong=\"H3068\"* the|strong=\"H5414\"* latter|strong=\"H4456\"*, in|strong=\"H3068\"* its|strong=\"H5414\"* season|strong=\"H6256\"*, who|strong=\"H3068\"* preserves|strong=\"H8104\"* to|strong=\"H3068\"* us|strong=\"H5414\"* the|strong=\"H5414\"* appointed|strong=\"H5414\"* weeks|strong=\"H7620\"* of|strong=\"H3068\"* the|strong=\"H5414\"* harvest|strong=\"H7105\"*.’" + }, + { + "verseNum": 25, + "text": "“Your|strong=\"H5186\"* iniquities|strong=\"H5771\"* have|strong=\"H5771\"* turned|strong=\"H5186\"* away|strong=\"H5186\"* these|strong=\"H5186\"* things|strong=\"H2896\"*, and|strong=\"H2896\"* your|strong=\"H5186\"* sins|strong=\"H2403\"* have|strong=\"H5771\"* withheld|strong=\"H4513\"* good|strong=\"H2896\"* from|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 26, + "text": "For|strong=\"H3588\"* wicked|strong=\"H7563\"* men|strong=\"H5971\"* are|strong=\"H5971\"* found|strong=\"H4672\"* among|strong=\"H4672\"* my|strong=\"H3588\"* people|strong=\"H5971\"*. They|strong=\"H3588\"* watch|strong=\"H7789\"*, as|strong=\"H3588\"* fowlers|strong=\"H3353\"* lie|strong=\"H7789\"* in|strong=\"H4672\"* wait|strong=\"H7789\"*. They|strong=\"H3588\"* set|strong=\"H5324\"* a|strong=\"H3068\"* trap|strong=\"H4889\"*. They|strong=\"H3588\"* catch|strong=\"H3920\"* men|strong=\"H5971\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* cage|strong=\"H3619\"* is|strong=\"H3651\"* full|strong=\"H4392\"* of|strong=\"H1004\"* birds|strong=\"H5775\"*, so|strong=\"H3651\"* are|strong=\"H1004\"* their|strong=\"H5921\"* houses|strong=\"H1004\"* full|strong=\"H4392\"* of|strong=\"H1004\"* deceit|strong=\"H4820\"*. Therefore|strong=\"H3651\"* they|strong=\"H3651\"* have|strong=\"H1004\"* become|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H1004\"* grew|strong=\"H1431\"* rich|strong=\"H6238\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* have|strong=\"H1571\"* grown|strong=\"H8080\"* fat|strong=\"H8080\"*. They|strong=\"H3808\"* shine|strong=\"H6245\"*; yes|strong=\"H1571\"*, they|strong=\"H3808\"* excel|strong=\"H5674\"* in|strong=\"H1697\"* deeds|strong=\"H1697\"* of|strong=\"H1697\"* wickedness|strong=\"H7451\"*. They|strong=\"H3808\"* don’t plead|strong=\"H8199\"* the|strong=\"H5674\"* cause|strong=\"H4941\"*, the|strong=\"H5674\"* cause|strong=\"H4941\"* of|strong=\"H1697\"* the|strong=\"H5674\"* fatherless|strong=\"H3490\"*, that|strong=\"H1697\"* they|strong=\"H3808\"* may|strong=\"H1571\"* prosper|strong=\"H6743\"*; and|strong=\"H4941\"* they|strong=\"H3808\"* don’t defend|strong=\"H8199\"* the|strong=\"H5674\"* rights|strong=\"H1779\"* of|strong=\"H1697\"* the|strong=\"H5674\"* needy." + }, + { + "verseNum": 29, + "text": "“Shouldn’t I|strong=\"H5921\"* punish|strong=\"H6485\"* for|strong=\"H5921\"* these|strong=\"H2088\"* things|strong=\"H3808\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Shouldn’t my|strong=\"H3068\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* avenged|strong=\"H5358\"* on|strong=\"H5921\"* such|strong=\"H2088\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* as|strong=\"H5315\"* this|strong=\"H2088\"*?" + }, + { + "verseNum": 30, + "text": "“An|strong=\"H1961\"* astonishing and|strong=\"H8047\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* in|strong=\"H1961\"* the|strong=\"H1961\"* land." + }, + { + "verseNum": 31, + "text": "The|strong=\"H5921\"* prophets|strong=\"H5030\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"*, and|strong=\"H3027\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* rule|strong=\"H7287\"* by|strong=\"H3027\"* their|strong=\"H5921\"* own|strong=\"H3548\"* authority|strong=\"H3027\"*; and|strong=\"H3027\"* my|strong=\"H5921\"* people|strong=\"H5971\"* love to|strong=\"H6213\"* have|strong=\"H5971\"* it|strong=\"H5921\"* so|strong=\"H3651\"*. What|strong=\"H4100\"* will|strong=\"H5971\"* you|strong=\"H5921\"* do|strong=\"H6213\"* in|strong=\"H5921\"* the|strong=\"H5921\"* end|strong=\"H4100\"* of|strong=\"H3027\"* it|strong=\"H5921\"*?" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“Flee|strong=\"H5756\"* for|strong=\"H3588\"* safety|strong=\"H5756\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*, out|strong=\"H8259\"* of|strong=\"H1121\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*! Blow|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* in|strong=\"H5921\"* Tekoa|strong=\"H8620\"* and|strong=\"H1121\"* raise|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* signal|strong=\"H4864\"* on|strong=\"H5921\"* Beth Haccherem, for|strong=\"H3588\"* evil|strong=\"H7451\"* looks|strong=\"H8259\"* out|strong=\"H8259\"* from|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* destruction|strong=\"H7667\"*." + }, + { + "verseNum": 2, + "text": "I will|strong=\"H1323\"* cut|strong=\"H1820\"* off|strong=\"H1820\"* the|strong=\"H6726\"* beautiful and|strong=\"H1323\"* delicate|strong=\"H6026\"* one, the|strong=\"H6726\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 3, + "text": "Shepherds|strong=\"H7462\"* with|strong=\"H5921\"* their|strong=\"H5921\"* flocks|strong=\"H5739\"* will|strong=\"H3027\"* come to|strong=\"H5921\"* her|strong=\"H5921\"*. They|strong=\"H5921\"* will|strong=\"H3027\"* pitch|strong=\"H8628\"* their|strong=\"H5921\"* tents against|strong=\"H5921\"* her|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. They|strong=\"H5921\"* will|strong=\"H3027\"* feed|strong=\"H7462\"* everyone in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3027\"*.”" + }, + { + "verseNum": 4, + "text": "“Prepare|strong=\"H6942\"* war|strong=\"H4421\"* against|strong=\"H5921\"* her|strong=\"H5921\"*! Arise|strong=\"H6965\"*! Let|strong=\"H5186\"*’s go|strong=\"H5927\"* up|strong=\"H5927\"* at|strong=\"H5921\"* noon|strong=\"H6672\"*. Woe to|strong=\"H5927\"* us|strong=\"H5921\"*! For|strong=\"H3588\"* the|strong=\"H5921\"* day|strong=\"H3117\"* declines|strong=\"H6437\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* shadows|strong=\"H6752\"* of|strong=\"H3117\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* are|strong=\"H3117\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"*." + }, + { + "verseNum": 5, + "text": "Arise|strong=\"H6965\"*! Let’s go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H6965\"* night|strong=\"H3915\"*, and|strong=\"H6965\"* let’s destroy|strong=\"H7843\"* her|strong=\"H7843\"* palaces.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* said, “Cut|strong=\"H3772\"* down|strong=\"H3772\"* trees|strong=\"H6097\"*, and|strong=\"H3068\"* cast|strong=\"H8210\"* up|strong=\"H5921\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*. This|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"* to|strong=\"H3068\"* be|strong=\"H3068\"* visited|strong=\"H6485\"*. She|strong=\"H1931\"* is|strong=\"H3068\"* filled with|strong=\"H3068\"* oppression|strong=\"H6233\"* within|strong=\"H7130\"* herself|strong=\"H1931\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H3651\"* a|strong=\"H3068\"* well|strong=\"H3651\"* produces its|strong=\"H5921\"* waters|strong=\"H4325\"*, so|strong=\"H3651\"* she|strong=\"H5921\"* produces her|strong=\"H5921\"* wickedness|strong=\"H7451\"*. Violence|strong=\"H2555\"* and|strong=\"H6440\"* destruction|strong=\"H7701\"* is|strong=\"H3651\"* heard|strong=\"H8085\"* in|strong=\"H5921\"* her|strong=\"H5921\"*. Sickness|strong=\"H2483\"* and|strong=\"H6440\"* wounds|strong=\"H4347\"* are|strong=\"H4325\"* continually|strong=\"H8548\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Be|strong=\"H3808\"* instructed|strong=\"H3256\"*, Jerusalem|strong=\"H3389\"*, lest|strong=\"H6435\"* my|strong=\"H7760\"* soul|strong=\"H5315\"* be|strong=\"H3808\"* alienated|strong=\"H3363\"* from|strong=\"H4480\"* you|strong=\"H7760\"*, lest|strong=\"H6435\"* I|strong=\"H7760\"* make|strong=\"H7760\"* you|strong=\"H7760\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, an|strong=\"H7760\"* uninhabited|strong=\"H8077\"* land.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “They|strong=\"H3068\"* will|strong=\"H3068\"* thoroughly|strong=\"H5953\"* glean|strong=\"H5953\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* like|strong=\"H3478\"* a|strong=\"H3068\"* vine|strong=\"H1612\"*. Turn|strong=\"H7725\"* again|strong=\"H7725\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* as|strong=\"H3068\"* a|strong=\"H3068\"* grape gatherer|strong=\"H1219\"* into|strong=\"H7725\"* the|strong=\"H5921\"* baskets|strong=\"H5552\"*.”" + }, + { + "verseNum": 10, + "text": "To|strong=\"H1696\"* whom|strong=\"H4310\"* should|strong=\"H3068\"* I|strong=\"H2009\"* speak|strong=\"H1696\"* and|strong=\"H3068\"* testify|strong=\"H5749\"*, that|strong=\"H8085\"* they|strong=\"H3068\"* may|strong=\"H1961\"* hear|strong=\"H8085\"*? Behold|strong=\"H2009\"*, their|strong=\"H3068\"* ear|strong=\"H8085\"* is|strong=\"H3068\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* can|strong=\"H4310\"*’t listen|strong=\"H8085\"*. Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* has|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1696\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* delight|strong=\"H2654\"* in|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H3588\"* am|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H2534\"*. I|strong=\"H3588\"* am|strong=\"H3068\"* weary|strong=\"H3811\"* with|strong=\"H5973\"* holding|strong=\"H3557\"* it|strong=\"H5921\"* in|strong=\"H5921\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H3068\"* houses|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H3027\"* turned|strong=\"H5437\"* to|strong=\"H3068\"* others," + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3588\"* from|strong=\"H5704\"* their|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H3605\"* greatest|strong=\"H1419\"*, everyone|strong=\"H3605\"* is|strong=\"H3605\"* given|strong=\"H1214\"* to|strong=\"H5704\"* covetousness|strong=\"H1215\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H5921\"* have|strong=\"H5971\"* healed|strong=\"H7495\"* also|strong=\"H5971\"* the|strong=\"H5921\"* hurt|strong=\"H7667\"* of|strong=\"H5971\"* my|strong=\"H5921\"* people|strong=\"H5971\"* superficially|strong=\"H7043\"*," + }, + { + "verseNum": 15, + "text": "Were|strong=\"H6485\"* they|strong=\"H3588\"* ashamed|strong=\"H3637\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"*?" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* see|strong=\"H7200\"*, and|strong=\"H3068\"* ask|strong=\"H7592\"* for|strong=\"H5921\"* the|strong=\"H5921\"* old|strong=\"H5769\"* paths|strong=\"H5410\"*, ‘Where|strong=\"H5921\"* is|strong=\"H3068\"* the|strong=\"H5921\"* good|strong=\"H2896\"* way|strong=\"H1870\"*?’ and|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H5921\"* will|strong=\"H3068\"* find|strong=\"H4672\"* rest|strong=\"H4771\"* for|strong=\"H5921\"* your|strong=\"H3068\"* souls|strong=\"H5315\"*. But|strong=\"H3808\"* they|strong=\"H3068\"* said, ‘We|strong=\"H5315\"* will|strong=\"H3068\"* not|strong=\"H3808\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* it|strong=\"H5921\"*.’" + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* set|strong=\"H6965\"* watchmen|strong=\"H6822\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, saying|strong=\"H6963\"*, ‘Listen|strong=\"H7181\"* to|strong=\"H5921\"* the|strong=\"H5921\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"*!’ But|strong=\"H3808\"* they|strong=\"H3808\"* said, ‘We will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H7181\"*!’" + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"*, you|strong=\"H3045\"* nations|strong=\"H1471\"*, and|strong=\"H8085\"* know|strong=\"H3045\"*, congregation|strong=\"H5712\"*, what|strong=\"H3045\"* is|strong=\"H3651\"* among them|strong=\"H8085\"*." + }, + { + "verseNum": 19, + "text": "Hear|strong=\"H8085\"*, earth! Behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H5971\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, even|strong=\"H3588\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H1697\"* their|strong=\"H8085\"* thoughts|strong=\"H4284\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H5921\"* my|strong=\"H8085\"* words|strong=\"H1697\"*; and|strong=\"H5971\"* as|strong=\"H1697\"* for|strong=\"H3588\"* my|strong=\"H8085\"* law|strong=\"H8451\"*, they|strong=\"H3588\"* have|strong=\"H5971\"* rejected|strong=\"H3988\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 20, + "text": "To|strong=\"H2896\"* what|strong=\"H4100\"* purpose|strong=\"H2088\"* does|strong=\"H4100\"* frankincense|strong=\"H3828\"* from|strong=\"H2896\"* Sheba|strong=\"H7614\"* come to|strong=\"H2896\"* me|strong=\"H3808\"*, and|strong=\"H5930\"* the|strong=\"H3808\"* sweet|strong=\"H6149\"* cane|strong=\"H7070\"* from|strong=\"H2896\"* a|strong=\"H3068\"* far|strong=\"H4801\"* country? Your|strong=\"H3808\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* are|strong=\"H4100\"* not|strong=\"H3808\"* acceptable|strong=\"H7522\"*, and|strong=\"H5930\"* your|strong=\"H3808\"* sacrifices|strong=\"H2077\"* are|strong=\"H4100\"* not|strong=\"H3808\"* pleasing|strong=\"H2896\"* to|strong=\"H2896\"* me|strong=\"H3808\"*.”" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* stumbling|strong=\"H4383\"* blocks|strong=\"H4383\"* before|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. The|strong=\"H5414\"* fathers and|strong=\"H1121\"* the|strong=\"H5414\"* sons|strong=\"H1121\"* together|strong=\"H3162\"* will|strong=\"H3068\"* stumble|strong=\"H3782\"* against|strong=\"H3068\"* them|strong=\"H5414\"*. The|strong=\"H5414\"* neighbor|strong=\"H7453\"* and|strong=\"H1121\"* his|strong=\"H5414\"* friend|strong=\"H7453\"* will|strong=\"H3068\"* perish.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* comes from|strong=\"H1471\"* the|strong=\"H3541\"* north|strong=\"H6828\"* country. A|strong=\"H3068\"* great|strong=\"H1419\"* nation|strong=\"H1471\"* will|strong=\"H3068\"* be|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* from|strong=\"H1471\"* the|strong=\"H3541\"* uttermost parts|strong=\"H3411\"* of|strong=\"H3068\"* the|strong=\"H3541\"* earth." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H1323\"* bow|strong=\"H7198\"* and|strong=\"H6963\"* spear|strong=\"H3591\"*. They|strong=\"H3808\"* are|strong=\"H6726\"* cruel, and|strong=\"H6963\"* have|strong=\"H7355\"* no|strong=\"H3808\"* mercy|strong=\"H7355\"*. Their|strong=\"H5921\"* voice|strong=\"H6963\"* roars|strong=\"H1993\"* like|strong=\"H1993\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, and|strong=\"H6963\"* they|strong=\"H3808\"* ride|strong=\"H7392\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, everyone set|strong=\"H6186\"* in|strong=\"H5921\"* array|strong=\"H6186\"*, as|strong=\"H1323\"* a|strong=\"H3068\"* man to|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"*, against|strong=\"H5921\"* you|strong=\"H5921\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*.”" + }, + { + "verseNum": 24, + "text": "We|strong=\"H8085\"* have|strong=\"H3027\"* heard|strong=\"H8085\"* its report|strong=\"H8089\"*. Our|strong=\"H8085\"* hands|strong=\"H3027\"* become|strong=\"H3205\"* feeble|strong=\"H7503\"*. Anguish|strong=\"H6869\"* has|strong=\"H3027\"* taken|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3027\"* us|strong=\"H8085\"*, and|strong=\"H3027\"* pains as|strong=\"H2388\"* of|strong=\"H3027\"* a|strong=\"H3068\"* woman|strong=\"H3205\"* in|strong=\"H8085\"* labor|strong=\"H3205\"*." + }, + { + "verseNum": 25, + "text": "Don’t go|strong=\"H3212\"* out|strong=\"H3318\"* into|strong=\"H3212\"* the|strong=\"H3588\"* field|strong=\"H7704\"* or|strong=\"H7704\"* walk|strong=\"H3212\"* by|strong=\"H1870\"* the|strong=\"H3588\"* way|strong=\"H1870\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* sword|strong=\"H2719\"* of|strong=\"H1870\"* the|strong=\"H3588\"* enemy and|strong=\"H3212\"* terror|strong=\"H4032\"* are|strong=\"H1870\"* on|strong=\"H1870\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 26, + "text": "Daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, clothe yourself|strong=\"H6213\"* with|strong=\"H6213\"* sackcloth|strong=\"H8242\"*, and|strong=\"H5971\"* wallow|strong=\"H6428\"* in|strong=\"H5921\"* ashes! Mourn|strong=\"H5921\"*, as|strong=\"H6213\"* for|strong=\"H3588\"* an|strong=\"H6213\"* only|strong=\"H3173\"* son|strong=\"H3173\"*, most|strong=\"H8563\"* bitter|strong=\"H8563\"* lamentation|strong=\"H4553\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* destroyer|strong=\"H7703\"* will|strong=\"H5971\"* suddenly|strong=\"H6597\"* come|strong=\"H5971\"* on|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "“I|strong=\"H5414\"* have|strong=\"H5971\"* made|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* tester|strong=\"H4013\"* of|strong=\"H1870\"* metals and|strong=\"H5971\"* a|strong=\"H3068\"* fortress|strong=\"H4013\"* among|strong=\"H5971\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, that|strong=\"H3045\"* you|strong=\"H5414\"* may|strong=\"H5971\"* know|strong=\"H3045\"* and|strong=\"H5971\"* try their|strong=\"H5414\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* all|strong=\"H3605\"* grievous|strong=\"H5493\"* rebels|strong=\"H5637\"*, going|strong=\"H1980\"* around|strong=\"H1980\"* to|strong=\"H1980\"* slander. They|strong=\"H1992\"* are|strong=\"H1992\"* bronze|strong=\"H5178\"* and|strong=\"H1980\"* iron|strong=\"H1270\"*. All|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H1992\"* deal corruptly|strong=\"H7843\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3808\"* bellows|strong=\"H4647\"* blow|strong=\"H2787\"* fiercely|strong=\"H2787\"*. The|strong=\"H3808\"* lead|strong=\"H5777\"* is|strong=\"H7451\"* consumed in|strong=\"H3808\"* the|strong=\"H3808\"* fire. In|strong=\"H3808\"* vain|strong=\"H7723\"* they|strong=\"H3808\"* go on|strong=\"H7451\"* refining|strong=\"H6884\"*, for|strong=\"H7451\"* the|strong=\"H3808\"* wicked|strong=\"H7451\"* are|strong=\"H4647\"* not|strong=\"H3808\"* plucked away|strong=\"H5423\"*." + }, + { + "verseNum": 30, + "text": "Men|strong=\"H7121\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H7121\"* rejected|strong=\"H3988\"* silver|strong=\"H3701\"*, because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* them|strong=\"H7121\"*.”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Stand|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* proclaim|strong=\"H7121\"* this|strong=\"H2088\"* word|strong=\"H1697\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* say|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* enter|strong=\"H5975\"* in|strong=\"H3068\"* at|strong=\"H3068\"* these|strong=\"H2088\"* gates|strong=\"H8179\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3478\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3068\"* cause you|strong=\"H3190\"* to|strong=\"H3478\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "Don’t trust in|strong=\"H3068\"* lying|strong=\"H8267\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, are|strong=\"H1992\"* these|strong=\"H1992\"*.’" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* thoroughly|strong=\"H3190\"* amend|strong=\"H3190\"* your|strong=\"H6213\"* ways|strong=\"H1870\"* and|strong=\"H4941\"* your|strong=\"H6213\"* doings|strong=\"H4611\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* thoroughly|strong=\"H3190\"* execute|strong=\"H6213\"* justice|strong=\"H4941\"* between|strong=\"H4941\"* a|strong=\"H3068\"* man and|strong=\"H4941\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*;" + }, + { + "verseNum": 6, + "text": "if you|strong=\"H3808\"* don’t oppress|strong=\"H6231\"* the|strong=\"H3808\"* foreigner|strong=\"H1616\"*, the|strong=\"H3808\"* fatherless|strong=\"H3490\"*, and|strong=\"H3212\"* the|strong=\"H3808\"* widow, and|strong=\"H3212\"* don’t shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* in|strong=\"H3212\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3212\"* don’t walk|strong=\"H3212\"* after other|strong=\"H2088\"* gods to|strong=\"H3212\"* your|strong=\"H3808\"* own hurt|strong=\"H7451\"*," + }, + { + "verseNum": 7, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H5414\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5704\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, in|strong=\"H7931\"* the|strong=\"H5414\"* land|strong=\"H4725\"* that|strong=\"H5414\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5704\"* your|strong=\"H5414\"* fathers, from|strong=\"H4480\"* of|strong=\"H4480\"* old|strong=\"H5769\"* even|strong=\"H5704\"* forever|strong=\"H5769\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, you|strong=\"H5921\"* trust in|strong=\"H5921\"* lying|strong=\"H8267\"* words|strong=\"H1697\"* that|strong=\"H1697\"* can’t profit|strong=\"H3276\"*." + }, + { + "verseNum": 9, + "text": "Will|strong=\"H3808\"* you|strong=\"H3045\"* steal|strong=\"H1589\"*, murder|strong=\"H7523\"*, commit|strong=\"H5003\"* adultery|strong=\"H5003\"*, swear|strong=\"H7650\"* falsely|strong=\"H8267\"*, burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1980\"* Baal|strong=\"H1168\"*, and|strong=\"H1980\"* walk|strong=\"H1980\"* after|strong=\"H1980\"* other gods|strong=\"H1980\"* that|strong=\"H3045\"* you|strong=\"H3045\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*," + }, + { + "verseNum": 10, + "text": "then|strong=\"H2088\"* come and|strong=\"H1004\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H1004\"* is|strong=\"H2088\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*, and|strong=\"H1004\"* say, ‘We|strong=\"H6213\"* are|strong=\"H1004\"* delivered|strong=\"H5337\"*,’ that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H6213\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H2088\"* abominations|strong=\"H8441\"*?" + }, + { + "verseNum": 11, + "text": "Has|strong=\"H3068\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, become|strong=\"H1961\"* a|strong=\"H3068\"* den|strong=\"H4631\"* of|strong=\"H1004\"* robbers|strong=\"H6530\"* in|strong=\"H5921\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*? Behold|strong=\"H2009\"*, I|strong=\"H2009\"* myself|strong=\"H1571\"* have|strong=\"H1961\"* seen|strong=\"H7200\"* it|strong=\"H7121\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3588\"* go|strong=\"H3212\"* now|strong=\"H4994\"* to|strong=\"H3478\"* my|strong=\"H7200\"* place|strong=\"H4725\"* which|strong=\"H5971\"* was|strong=\"H8034\"* in|strong=\"H3478\"* Shiloh|strong=\"H7887\"*, where|strong=\"H8033\"* I|strong=\"H3588\"* caused|strong=\"H6213\"* my|strong=\"H7200\"* name|strong=\"H8034\"* to|strong=\"H3478\"* dwell|strong=\"H7931\"* at|strong=\"H3478\"* the|strong=\"H6440\"* first|strong=\"H7223\"*, and|strong=\"H3478\"* see|strong=\"H7200\"* what|strong=\"H7451\"* I|strong=\"H3588\"* did|strong=\"H6213\"* to|strong=\"H3478\"* it|strong=\"H3588\"* for|strong=\"H3588\"* the|strong=\"H6440\"* wickedness|strong=\"H7451\"* of|strong=\"H6440\"* my|strong=\"H7200\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"*, because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H3068\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H1696\"* works|strong=\"H4639\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H6258\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* speaking|strong=\"H1696\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* didn’t hear|strong=\"H8085\"*; and|strong=\"H3068\"* I|strong=\"H6258\"* called|strong=\"H7121\"* you|strong=\"H3605\"*, but|strong=\"H3808\"* you|strong=\"H3605\"* didn’t answer|strong=\"H6030\"*;" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H1004\"* do|strong=\"H6213\"* to|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5414\"* name|strong=\"H8034\"*, in|strong=\"H5921\"* which|strong=\"H1004\"* you|strong=\"H5414\"* trust, and|strong=\"H1004\"* to|strong=\"H5921\"* the|strong=\"H5921\"* place|strong=\"H4725\"* which|strong=\"H1004\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H1004\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers, as|strong=\"H6213\"* I|strong=\"H5414\"* did|strong=\"H6213\"* to|strong=\"H5921\"* Shiloh|strong=\"H7887\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H2233\"* cast|strong=\"H7993\"* you|strong=\"H6440\"* out|strong=\"H7993\"* of|strong=\"H6440\"* my|strong=\"H3605\"* sight|strong=\"H6440\"*, as|strong=\"H6440\"* I|strong=\"H5921\"* have|strong=\"H3605\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* all|strong=\"H3605\"* your|strong=\"H3605\"* brothers, even|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* offspring|strong=\"H2233\"*+ 7:15 or, seed* of|strong=\"H6440\"* Ephraim." + }, + { + "verseNum": 16, + "text": "“Therefore|strong=\"H3588\"* don’t pray|strong=\"H6419\"* for|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Don’t lift|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* cry|strong=\"H7440\"* or|strong=\"H8085\"* prayer|strong=\"H8605\"* for|strong=\"H3588\"* them|strong=\"H5375\"* or|strong=\"H8085\"* make|strong=\"H8085\"* intercession|strong=\"H6293\"* to|strong=\"H8085\"* me|strong=\"H1157\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H2088\"* hear|strong=\"H8085\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Don’t you|strong=\"H6213\"* see|strong=\"H7200\"* what|strong=\"H4100\"* they|strong=\"H1992\"* do|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H7200\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H7200\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 18, + "text": "The|strong=\"H6213\"* children|strong=\"H1121\"* gather|strong=\"H3950\"* wood|strong=\"H6086\"*, and|strong=\"H1121\"* the|strong=\"H6213\"* fathers kindle|strong=\"H1197\"* the|strong=\"H6213\"* fire, and|strong=\"H1121\"* the|strong=\"H6213\"* women knead|strong=\"H3888\"* the|strong=\"H6213\"* dough|strong=\"H1217\"*, to|strong=\"H6213\"* make|strong=\"H6213\"* cakes|strong=\"H3561\"* to|strong=\"H6213\"* the|strong=\"H6213\"* queen|strong=\"H4446\"* of|strong=\"H1121\"* the|strong=\"H6213\"* sky|strong=\"H8064\"*, and|strong=\"H1121\"* to|strong=\"H6213\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* other gods, that|strong=\"H4616\"* they|strong=\"H6213\"* may|strong=\"H6213\"* provoke|strong=\"H3707\"* me|strong=\"H6213\"* to|strong=\"H6213\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 19, + "text": "Do|strong=\"H3068\"* they|strong=\"H1992\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3068\"* anger|strong=\"H3707\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Don’t they|strong=\"H1992\"* provoke|strong=\"H3707\"* themselves|strong=\"H1992\"*, to|strong=\"H3068\"* the|strong=\"H6440\"* confusion|strong=\"H1322\"* of|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H6440\"* faces|strong=\"H6440\"*?”" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H6086\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* will|strong=\"H3808\"* be|strong=\"H3808\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, on|strong=\"H5921\"* man|strong=\"H2088\"*, on|strong=\"H5921\"* animal, on|strong=\"H5921\"* the|strong=\"H5921\"* trees|strong=\"H6086\"* of|strong=\"H7704\"* the|strong=\"H5921\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fruit|strong=\"H6529\"* of|strong=\"H7704\"* the|strong=\"H5921\"* ground|strong=\"H7704\"*; and|strong=\"H6086\"* it|strong=\"H5921\"* will|strong=\"H3808\"* burn|strong=\"H1197\"* and|strong=\"H6086\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Add|strong=\"H5595\"* your|strong=\"H3068\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H3478\"* your|strong=\"H3068\"* sacrifices|strong=\"H2077\"* and|strong=\"H3478\"* eat meat|strong=\"H1320\"*." + }, + { + "verseNum": 22, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* didn’t speak|strong=\"H1696\"* to|strong=\"H1696\"* your|strong=\"H5921\"* fathers or|strong=\"H3808\"* command|strong=\"H6680\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H3318\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* concerning|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* or|strong=\"H3808\"* sacrifices|strong=\"H2077\"*;" + }, + { + "verseNum": 23, + "text": "but|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* I|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, saying|strong=\"H1697\"*, ‘Listen|strong=\"H8085\"* to|strong=\"H1980\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, and|strong=\"H1980\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* God|strong=\"H3190\"*, and|strong=\"H1980\"* you|strong=\"H3588\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8085\"* people|strong=\"H5971\"*. Walk|strong=\"H1980\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* way|strong=\"H1870\"* that|strong=\"H3588\"* I|strong=\"H3588\"* command|strong=\"H6680\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* well|strong=\"H3190\"* with|strong=\"H1980\"* you|strong=\"H3588\"*.’" + }, + { + "verseNum": 24, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* or|strong=\"H3808\"* turn|strong=\"H5186\"* their|strong=\"H6440\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* walked|strong=\"H3212\"* in|strong=\"H8085\"* their|strong=\"H6440\"* own|strong=\"H1961\"* counsels|strong=\"H4156\"* and|strong=\"H3212\"* in|strong=\"H8085\"* the|strong=\"H6440\"* stubbornness|strong=\"H8307\"* of|strong=\"H6440\"* their|strong=\"H6440\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*, and|strong=\"H3212\"* went|strong=\"H3212\"* backward, and|strong=\"H3212\"* not|strong=\"H3808\"* forward|strong=\"H6440\"*." + }, + { + "verseNum": 25, + "text": "Since|strong=\"H4480\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* your|strong=\"H3605\"* fathers came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* have|strong=\"H5030\"* sent|strong=\"H7971\"* to|strong=\"H5704\"* you|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, daily|strong=\"H3117\"* rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*." + }, + { + "verseNum": 26, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H3808\"* or|strong=\"H3808\"* incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* made|strong=\"H7185\"* their|strong=\"H8085\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*. They|strong=\"H3808\"* did|strong=\"H3808\"* worse|strong=\"H7489\"* than|strong=\"H3808\"* their|strong=\"H8085\"* fathers." + }, + { + "verseNum": 27, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3808\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1697\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* you|strong=\"H3605\"*. You|strong=\"H3605\"* shall|strong=\"H3808\"* also|strong=\"H8085\"* call|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H7121\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1697\"* not|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3947\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H3947\"*, ‘This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H8085\"* nation|strong=\"H1471\"* that|strong=\"H8085\"* has|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, nor|strong=\"H3808\"* received|strong=\"H3947\"* instruction|strong=\"H4148\"*. Truth|strong=\"H3808\"* has|strong=\"H3068\"* perished, and|strong=\"H3068\"* is|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* their|strong=\"H3068\"* mouth|strong=\"H6310\"*.’" + }, + { + "verseNum": 29, + "text": "Cut|strong=\"H1494\"* off|strong=\"H5921\"* your|strong=\"H3068\"* hair|strong=\"H5145\"*, and|strong=\"H3068\"* throw|strong=\"H7993\"* it|strong=\"H5921\"* away|strong=\"H5375\"*, and|strong=\"H3068\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H5375\"* heights|strong=\"H8205\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* rejected|strong=\"H3988\"* and|strong=\"H3068\"* forsaken|strong=\"H5203\"* the|strong=\"H5921\"* generation|strong=\"H1755\"* of|strong=\"H3068\"* his|strong=\"H5375\"* wrath|strong=\"H5678\"*." + }, + { + "verseNum": 30, + "text": "“For|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H3068\"* is|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H5869\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “They|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7760\"* their|strong=\"H3068\"* abominations|strong=\"H8251\"* in|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, to|strong=\"H3068\"* defile|strong=\"H2930\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 31, + "text": "They|strong=\"H3808\"* have|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Topheth|strong=\"H8612\"*, which|strong=\"H1116\"* is|strong=\"H3820\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H5927\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"*, nor|strong=\"H3808\"* did|strong=\"H3808\"* it|strong=\"H5921\"* come|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 32, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5750\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* called ‘Topheth|strong=\"H8612\"*’ or|strong=\"H3808\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*’, but|strong=\"H3588\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* Slaughter|strong=\"H2028\"*’; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* bury|strong=\"H6912\"* in|strong=\"H3068\"* Topheth|strong=\"H8612\"* until|strong=\"H3588\"* there|strong=\"H2009\"* is|strong=\"H3068\"* no|strong=\"H3808\"* place|strong=\"H4725\"* to|strong=\"H3068\"* bury|strong=\"H6912\"*." + }, + { + "verseNum": 33, + "text": "The|strong=\"H1961\"* dead|strong=\"H5038\"* bodies|strong=\"H5038\"* of|strong=\"H5971\"* this|strong=\"H2088\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H5971\"* the|strong=\"H1961\"* birds|strong=\"H5775\"* of|strong=\"H5971\"* the|strong=\"H1961\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* for|strong=\"H5971\"* the|strong=\"H1961\"* animals|strong=\"H1961\"* of|strong=\"H5971\"* the|strong=\"H1961\"* earth|strong=\"H8064\"*. No|strong=\"H1961\"* one|strong=\"H2088\"* will|strong=\"H1961\"* frighten|strong=\"H2729\"* them|strong=\"H1961\"* away|strong=\"H2729\"*." + }, + { + "verseNum": 34, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* will|strong=\"H1961\"* cause|strong=\"H1961\"* to|strong=\"H1961\"* cease|strong=\"H7673\"* from|strong=\"H1961\"* the|strong=\"H3588\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* from|strong=\"H1961\"* the|strong=\"H3588\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* mirth|strong=\"H8057\"* and|strong=\"H3063\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3063\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* land will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H3427\"* that|strong=\"H1931\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* his|strong=\"H3068\"* princes|strong=\"H8269\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* priests|strong=\"H3548\"*, the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* the|strong=\"H5002\"* bones|strong=\"H6106\"* of|strong=\"H4428\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, out|strong=\"H3318\"* of|strong=\"H4428\"* their|strong=\"H3068\"* graves|strong=\"H6913\"*." + }, + { + "verseNum": 2, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* spread|strong=\"H7849\"* them|strong=\"H5921\"* before|strong=\"H6440\"* the|strong=\"H3605\"* sun|strong=\"H8121\"*, the|strong=\"H3605\"* moon|strong=\"H3394\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H6440\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* loved, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* served|strong=\"H5647\"*, after|strong=\"H5921\"* which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* walked|strong=\"H1980\"*, which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* sought|strong=\"H1875\"*, and|strong=\"H1980\"* which|strong=\"H6635\"* they|strong=\"H3808\"* have|strong=\"H1961\"* worshiped|strong=\"H7812\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* gathered or|strong=\"H3808\"* be|strong=\"H1961\"* buried|strong=\"H6912\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* earth|strong=\"H8121\"*." + }, + { + "verseNum": 3, + "text": "Death|strong=\"H4194\"* will|strong=\"H3068\"* be|strong=\"H3068\"* chosen rather|strong=\"H4480\"* than|strong=\"H4480\"* life|strong=\"H2416\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* that|strong=\"H3605\"* remain|strong=\"H7604\"* of|strong=\"H3068\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* family|strong=\"H4940\"*, that|strong=\"H3605\"* remain|strong=\"H7604\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H3068\"* have|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H4480\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "“Moreover|strong=\"H3541\"* you|strong=\"H7725\"* shall|strong=\"H3068\"* tell them|strong=\"H7725\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4069\"* then|strong=\"H2088\"* have|strong=\"H5971\"* the|strong=\"H7725\"* people|strong=\"H5971\"* of|strong=\"H5971\"* Jerusalem|strong=\"H3389\"* fallen back|strong=\"H7725\"* by|strong=\"H7725\"* a|strong=\"H3068\"* perpetual|strong=\"H5329\"* backsliding|strong=\"H4878\"*?" + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* listened|strong=\"H8085\"* and|strong=\"H7725\"* heard|strong=\"H8085\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* didn’t say|strong=\"H1696\"* what|strong=\"H4100\"* is|strong=\"H4100\"* right|strong=\"H3651\"*." + }, + { + "verseNum": 7, + "text": "Yes|strong=\"H1571\"*, the|strong=\"H8104\"* stork|strong=\"H2624\"* in|strong=\"H3068\"* the|strong=\"H8104\"* sky|strong=\"H8064\"* knows|strong=\"H3045\"* her|strong=\"H3045\"* appointed|strong=\"H4150\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 8, + "text": "“‘How|strong=\"H2009\"* do|strong=\"H6213\"* you|strong=\"H6213\"* say, “We|strong=\"H6213\"* are|strong=\"H3068\"* wise|strong=\"H2450\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s law|strong=\"H8451\"* is|strong=\"H3068\"* with|strong=\"H3068\"* us|strong=\"H6213\"*”?" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* are|strong=\"H4100\"* disappointed." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H5414\"* give|strong=\"H5414\"* their|strong=\"H3605\"* wives to|strong=\"H5704\"* others" + }, + { + "verseNum": 11, + "text": "They|strong=\"H5921\"* have|strong=\"H5971\"* healed|strong=\"H7495\"* the|strong=\"H5921\"* hurt|strong=\"H7667\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"* slightly|strong=\"H7043\"*, saying," + }, + { + "verseNum": 12, + "text": "Were|strong=\"H1571\"* they|strong=\"H3588\"* ashamed|strong=\"H3637\"* when|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3068\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"*?" + }, + { + "verseNum": 13, + "text": "“‘I|strong=\"H5414\"* will|strong=\"H3068\"* utterly|strong=\"H5486\"* consume|strong=\"H5486\"* them|strong=\"H5414\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Why|strong=\"H4100\"* do|strong=\"H3068\"* we|strong=\"H3068\"* sit|strong=\"H3427\"* still|strong=\"H3427\"*?" + }, + { + "verseNum": 15, + "text": "We|strong=\"H2009\"* looked|strong=\"H6960\"* for|strong=\"H6960\"* peace|strong=\"H7965\"*, but|strong=\"H2009\"* no good|strong=\"H2896\"* came;" + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* snorting|strong=\"H5170\"* of|strong=\"H3427\"* his|strong=\"H3605\"* horses|strong=\"H5483\"* is|strong=\"H3605\"* heard|strong=\"H8085\"* from|strong=\"H8085\"* Dan|strong=\"H1835\"*." + }, + { + "verseNum": 17, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* serpents|strong=\"H5175\"*," + }, + { + "verseNum": 18, + "text": "Oh that|strong=\"H3820\"* I|strong=\"H5921\"* could comfort|strong=\"H4010\"* myself|strong=\"H3820\"* against|strong=\"H5921\"* sorrow|strong=\"H3015\"*!" + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H4428\"* the|strong=\"H3068\"* cry|strong=\"H7775\"* of|strong=\"H4428\"* the|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* my|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3068\"* a|strong=\"H3068\"* land that|strong=\"H5971\"* is|strong=\"H3068\"* very far|strong=\"H4801\"* off|strong=\"H4801\"*:" + }, + { + "verseNum": 20, + "text": "“The|strong=\"H5674\"* harvest|strong=\"H7105\"* is|strong=\"H7105\"* past|strong=\"H5674\"*." + }, + { + "verseNum": 21, + "text": "For|strong=\"H5921\"* the|strong=\"H5921\"* hurt|strong=\"H7665\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H5921\"* people|strong=\"H5971\"*, I|strong=\"H5921\"* am hurt|strong=\"H7665\"*." + }, + { + "verseNum": 22, + "text": "Is|strong=\"H8033\"* there|strong=\"H8033\"* no|strong=\"H3808\"* balm|strong=\"H6875\"* in|strong=\"H5971\"* Gilead|strong=\"H1568\"*?" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Oh|strong=\"H4310\"* that|strong=\"H3588\"* my|strong=\"H5414\"* head were|strong=\"H5971\"* waters," + }, + { + "verseNum": 2, + "text": "Oh that|strong=\"H3588\"* I|strong=\"H3588\"* had|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H5002\"* wilderness" + }, + { + "verseNum": 3, + "text": "“They|strong=\"H3588\"* bend their|strong=\"H3605\"* tongue," + }, + { + "verseNum": 4, + "text": "“Everyone beware of|strong=\"H3956\"* his|strong=\"H3808\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 5, + "text": "Friends|strong=\"H3045\"* deceive each other," + }, + { + "verseNum": 6, + "text": "Your|strong=\"H3068\"* habitation is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* middle of|strong=\"H3068\"* deceit." + }, + { + "verseNum": 7, + "text": "Therefore Yahweh|strong=\"H3068\"* of|strong=\"H6310\"* Armies says|strong=\"H1696\"*," + }, + { + "verseNum": 8, + "text": "Their|strong=\"H3068\"* tongue is|strong=\"H3068\"* a|strong=\"H3068\"* deadly|strong=\"H5315\"* arrow." + }, + { + "verseNum": 9, + "text": "Shouldn’t I|strong=\"H3588\"* punish them|strong=\"H5921\"* for|strong=\"H3588\"* these|strong=\"H8085\"* things|strong=\"H3808\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* will|strong=\"H5892\"* weep and|strong=\"H3063\"* wail for|strong=\"H3427\"* the|strong=\"H5414\"* mountains," + }, + { + "verseNum": 11, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H5046\"* Jerusalem heaps," + }, + { + "verseNum": 12, + "text": "Who|strong=\"H3068\"* is|strong=\"H3068\"* wise enough to|strong=\"H1980\"* understand|strong=\"H8085\"* this|strong=\"H5414\"*? Who|strong=\"H3068\"* is|strong=\"H3068\"* he|strong=\"H3068\"* to|strong=\"H1980\"* whom|strong=\"H6440\"* the|strong=\"H6440\"* mouth|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H8085\"*, that|strong=\"H8085\"* he|strong=\"H3068\"* may|strong=\"H3068\"* declare|strong=\"H8085\"* it|strong=\"H5414\"*? Why|strong=\"H5921\"* has|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* perished and|strong=\"H1980\"* burned up|strong=\"H5414\"* like|strong=\"H3808\"* a|strong=\"H3068\"* wilderness, so|strong=\"H1980\"* that|strong=\"H8085\"* no|strong=\"H3808\"* one|strong=\"H3808\"* passes|strong=\"H1980\"* through|strong=\"H5921\"*?" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* says, “Because they|strong=\"H3820\"* have forsaken my|strong=\"H3925\"* law which I|strong=\"H3212\"* set before them|strong=\"H3925\"*, and|strong=\"H3212\"* have not|strong=\"H3212\"* obeyed my|strong=\"H3925\"* voice or walked|strong=\"H3212\"* in|strong=\"H3212\"* my|strong=\"H3925\"* ways," + }, + { + "verseNum": 14, + "text": "but|strong=\"H3651\"* have|strong=\"H3068\"* walked after the|strong=\"H3541\"* stubbornness of|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H5971\"* heart and|strong=\"H3478\"* after the|strong=\"H3541\"* Baals, which|strong=\"H3068\"* their|strong=\"H3068\"* fathers taught them|strong=\"H8248\"*.”" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"* of|strong=\"H3615\"* Armies|strong=\"H3808\"*, the|strong=\"H3045\"* God|strong=\"H3808\"* of|strong=\"H3615\"* Israel, says, “Behold|strong=\"H3808\"*, I|strong=\"H5704\"* will|strong=\"H1471\"* feed|strong=\"H3615\"* them|strong=\"H1992\"*, even|strong=\"H5704\"* this|strong=\"H3045\"* people|strong=\"H1471\"*, with|strong=\"H3045\"* wormwood and|strong=\"H7971\"* give them|strong=\"H1992\"* poisoned water to|strong=\"H5704\"* drink." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3541\"* will|strong=\"H3068\"* scatter them|strong=\"H7971\"* also|strong=\"H3068\"* among the|strong=\"H3541\"* nations, whom|strong=\"H7121\"* neither they|strong=\"H3068\"* nor their|strong=\"H3068\"* fathers have|strong=\"H3068\"* known. I|strong=\"H3541\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H3541\"* sword after|strong=\"H7121\"* them|strong=\"H7971\"*, until|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* consumed them|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H5869\"* Armies says," + }, + { + "verseNum": 18, + "text": "Let|strong=\"H5800\"* them|strong=\"H7993\"* make|strong=\"H8085\"* haste" + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* voice of|strong=\"H3068\"* wailing|strong=\"H5092\"* is|strong=\"H3068\"* heard|strong=\"H8085\"* out|strong=\"H3947\"* of|strong=\"H3068\"* Zion," + }, + { + "verseNum": 20, + "text": "Yet|strong=\"H3588\"* hear Yahweh|strong=\"H3068\"*’s word, you|strong=\"H3588\"* women." + }, + { + "verseNum": 21, + "text": "For|strong=\"H5921\"* death|strong=\"H5038\"* has|strong=\"H3068\"* come|strong=\"H5307\"* up|strong=\"H5921\"* into|strong=\"H5307\"* our|strong=\"H3068\"* windows." + }, + { + "verseNum": 22, + "text": "Speak, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*," + }, + { + "verseNum": 24, + "text": "But|strong=\"H2009\"* let|strong=\"H6485\"* him|strong=\"H5921\"* who|strong=\"H3605\"* glories glory in|strong=\"H5921\"* this|strong=\"H3068\"*," + }, + { + "verseNum": 25, + "text": "“Behold, the|strong=\"H3605\"* days come|strong=\"H3478\"*,” says Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1471\"* punish all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1121\"* circumcised only|strong=\"H3588\"* in|strong=\"H3427\"* their|strong=\"H3605\"* flesh:" + }, + { + "verseNum": 26, + "text": "Egypt, Judah, Edom, the children of Ammon, Moab, and all who have the corners of their hair cut off, who dwell in the wilderness, for all the nations are uncircumcised, and all the house of Israel are uncircumcised in heart.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* the|strong=\"H5921\"* word|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* speaks|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5921\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* customs|strong=\"H2708\"* of|strong=\"H3027\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* vanity|strong=\"H1892\"*;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3808\"* deck|strong=\"H3302\"* it|strong=\"H3808\"* with|strong=\"H2091\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* with|strong=\"H2091\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* like|strong=\"H3808\"* a|strong=\"H3068\"* palm|strong=\"H8560\"* tree|strong=\"H8560\"*, of|strong=\"H3372\"* turned work|strong=\"H4749\"*," + }, + { + "verseNum": 6, + "text": "There|strong=\"H3068\"* is|strong=\"H3068\"* no one|strong=\"H3068\"* like|strong=\"H3644\"* you|strong=\"H3644\"*, Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* shouldn’t fear|strong=\"H3372\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H1931\"* they|strong=\"H1931\"* are together brutish|strong=\"H1197\"* and|strong=\"H6086\"* foolish|strong=\"H3688\"*," + }, + { + "verseNum": 9, + "text": "There|strong=\"H3605\"* is|strong=\"H3027\"* silver|strong=\"H3701\"* beaten|strong=\"H7554\"* into|strong=\"H3027\"* plates|strong=\"H7554\"*, which|strong=\"H2091\"* is|strong=\"H3027\"* brought|strong=\"H3027\"* from|strong=\"H3027\"* Tarshish|strong=\"H8659\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3808\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* the|strong=\"H3068\"* true|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“You|strong=\"H1768\"* shall say this|strong=\"H1836\"* to|strong=\"H4481\"* them: ‘The|strong=\"H4481\"* gods that|strong=\"H1768\"* have|strong=\"H1768\"* not|strong=\"H3809\"* made|strong=\"H5648\"* the|strong=\"H4481\"* heavens|strong=\"H8065\"* and|strong=\"H8065\"* the|strong=\"H4481\"* earth will|strong=\"H1768\"* perish from|strong=\"H4481\"* the|strong=\"H4481\"* earth, and|strong=\"H8065\"* from|strong=\"H4481\"* under|strong=\"H8460\"* the|strong=\"H4481\"* heavens|strong=\"H8065\"*.’”" + }, + { + "verseNum": 12, + "text": "God|strong=\"H2451\"* has|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* by|strong=\"H3559\"* his|strong=\"H5186\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H3318\"* he|strong=\"H6213\"* utters|strong=\"H5414\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "Every|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* become|strong=\"H1197\"* brutish|strong=\"H1197\"* and|strong=\"H7307\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 15, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* vanity|strong=\"H1892\"*, a|strong=\"H3068\"* work|strong=\"H4639\"* of|strong=\"H6256\"* delusion|strong=\"H1892\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* portion|strong=\"H2506\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* is|strong=\"H3068\"* not|strong=\"H3808\"* like|strong=\"H3478\"* these|strong=\"H1931\"*;" + }, + { + "verseNum": 17, + "text": "Gather up|strong=\"H3427\"* your|strong=\"H3427\"* wares|strong=\"H3666\"* out|strong=\"H3427\"* of|strong=\"H3427\"* the|strong=\"H3427\"* land," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 19, + "text": "Woe is|strong=\"H2088\"* me|strong=\"H5921\"* because|strong=\"H5921\"* of|strong=\"H5921\"* my|strong=\"H5921\"* injury|strong=\"H7667\"*!" + }, + { + "verseNum": 20, + "text": "My|strong=\"H3605\"* tent|strong=\"H3407\"* has|strong=\"H3318\"* been|strong=\"H3605\"* destroyed|strong=\"H7703\"*," + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* shepherds|strong=\"H7462\"* have|strong=\"H3068\"* become|strong=\"H1197\"* brutish|strong=\"H1197\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H7760\"* voice|strong=\"H6963\"* of|strong=\"H5892\"* news|strong=\"H8052\"*, behold|strong=\"H2009\"*, it|strong=\"H7760\"* comes," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3588\"* way|strong=\"H1870\"* of|strong=\"H3068\"* man|strong=\"H3045\"* is|strong=\"H3068\"* not|strong=\"H3808\"* in|strong=\"H1980\"* himself|strong=\"H3045\"*." + }, + { + "verseNum": 24, + "text": "Yahweh|strong=\"H3068\"*, correct|strong=\"H3256\"* me|strong=\"H3256\"*, but|strong=\"H3068\"* gently;" + }, + { + "verseNum": 25, + "text": "Pour|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* don’t know|strong=\"H3045\"* you|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Hear|strong=\"H8085\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* men of|strong=\"H1697\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H1696\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1697\"* Jerusalem|strong=\"H3389\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* say|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H8085\"*, Yahweh|strong=\"H3068\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Cursed is|strong=\"H3068\"* the|strong=\"H8085\"* man who|strong=\"H3068\"* doesn’t hear|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*," + }, + { + "verseNum": 4, + "text": "which|strong=\"H5971\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* your|strong=\"H3605\"* fathers in|strong=\"H6213\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* iron|strong=\"H1270\"* furnace|strong=\"H3564\"*,’ saying|strong=\"H6963\"*, ‘Obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"* and|strong=\"H3117\"* do|strong=\"H6213\"* them|strong=\"H6213\"*, according to|strong=\"H3318\"* all|strong=\"H3605\"* which|strong=\"H5971\"* I|strong=\"H3117\"* command|strong=\"H6680\"* you|strong=\"H6680\"*; so|strong=\"H6213\"* you|strong=\"H6680\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H3605\"* God;" + }, + { + "verseNum": 5, + "text": "that|strong=\"H3117\"* I|strong=\"H3117\"* may|strong=\"H3068\"* establish|strong=\"H6965\"* the|strong=\"H5414\"* oath|strong=\"H7621\"* which|strong=\"H3068\"* I|strong=\"H3117\"* swore|strong=\"H7650\"* to|strong=\"H3068\"* your|strong=\"H3068\"* fathers, to|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H6965\"* honey|strong=\"H1706\"*,’ as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H7121\"*, “Proclaim|strong=\"H7121\"* all|strong=\"H3605\"* these|strong=\"H2063\"* words|strong=\"H1697\"* in|strong=\"H3068\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, and|strong=\"H3063\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* earnestly|strong=\"H5749\"* protested|strong=\"H5749\"* to|strong=\"H5704\"* your|strong=\"H8085\"* fathers in|strong=\"H8085\"* the|strong=\"H8085\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* them|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5704\"* of|strong=\"H3117\"* the|strong=\"H8085\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, rising|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3117\"* protesting|strong=\"H5749\"*, saying|strong=\"H6963\"*, “Obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*.”" + }, + { + "verseNum": 8, + "text": "Yet|strong=\"H3808\"* they|strong=\"H3808\"* didn’t obey|strong=\"H8085\"*, nor|strong=\"H3808\"* turn|strong=\"H5186\"* their|strong=\"H3605\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* everyone|strong=\"H3605\"* walked|strong=\"H3212\"* in|strong=\"H5921\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H1697\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*. Therefore|strong=\"H5921\"* I|strong=\"H5921\"* brought|strong=\"H3212\"* on|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* this|strong=\"H2063\"* covenant|strong=\"H1285\"*, which|strong=\"H1697\"* I|strong=\"H5921\"* commanded|strong=\"H6680\"* them|strong=\"H5921\"* to|strong=\"H3212\"* do|strong=\"H6213\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t do|strong=\"H6213\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H4672\"*, “A|strong=\"H3068\"* conspiracy|strong=\"H7195\"* is|strong=\"H3068\"* found|strong=\"H4672\"* among|strong=\"H3427\"* the|strong=\"H3068\"* men of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* among|strong=\"H3427\"* the|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H1992\"* have|strong=\"H3478\"* turned|strong=\"H7725\"* back|strong=\"H7725\"* to|strong=\"H1980\"* the|strong=\"H5921\"* iniquities|strong=\"H5771\"* of|strong=\"H1004\"* their|strong=\"H8085\"* forefathers|strong=\"H7223\"*, who|strong=\"H3478\"* refused|strong=\"H3985\"* to|strong=\"H1980\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*. They|strong=\"H1992\"* have|strong=\"H3478\"* gone|strong=\"H1980\"* after|strong=\"H5921\"* other gods|strong=\"H1980\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1992\"*. The|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H1980\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* have|strong=\"H3478\"* broken|strong=\"H6565\"* my|strong=\"H8085\"* covenant|strong=\"H1285\"* which|strong=\"H1992\"* I|strong=\"H5921\"* made|strong=\"H3772\"* with|strong=\"H1980\"* their|strong=\"H8085\"* fathers." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* them|strong=\"H3318\"* which|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3318\"* escape|strong=\"H3318\"*; and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, but|strong=\"H3808\"* I|strong=\"H2005\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3318\"* them|strong=\"H3318\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1980\"* the|strong=\"H1980\"* cities|strong=\"H5892\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"* and|strong=\"H1980\"* the|strong=\"H1980\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* will|strong=\"H5892\"* go|strong=\"H1980\"* and|strong=\"H1980\"* cry|strong=\"H2199\"* to|strong=\"H1980\"* the|strong=\"H1980\"* gods|strong=\"H1980\"* to|strong=\"H1980\"* which|strong=\"H1992\"* they|strong=\"H1992\"* offer|strong=\"H6999\"* incense|strong=\"H6999\"*, but|strong=\"H3808\"* they|strong=\"H1992\"* will|strong=\"H5892\"* not|strong=\"H3808\"* save|strong=\"H3467\"* them|strong=\"H1992\"* at|strong=\"H3427\"* all|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H1980\"* time|strong=\"H6256\"* of|strong=\"H3427\"* their|strong=\"H1992\"* trouble|strong=\"H7451\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* according to|strong=\"H1961\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H5892\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* your|strong=\"H7760\"* gods, Judah|strong=\"H3063\"*; and|strong=\"H3063\"* according to|strong=\"H1961\"* the|strong=\"H3588\"* number|strong=\"H4557\"* of|strong=\"H5892\"* the|strong=\"H3588\"* streets|strong=\"H2351\"* of|strong=\"H5892\"* Jerusalem|strong=\"H3389\"* you|strong=\"H3588\"* have|strong=\"H1961\"* set|strong=\"H7760\"* up|strong=\"H7760\"* altars|strong=\"H4196\"* to|strong=\"H1961\"* the|strong=\"H3588\"* shameful|strong=\"H1322\"* thing|strong=\"H1322\"*, even|strong=\"H3588\"* altars|strong=\"H4196\"* to|strong=\"H1961\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* Baal|strong=\"H1168\"*.’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3588\"* don’t pray|strong=\"H6419\"* for|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Don’t lift|strong=\"H5375\"* up|strong=\"H5375\"* cry|strong=\"H7121\"* or|strong=\"H8085\"* prayer|strong=\"H8605\"* for|strong=\"H3588\"* them|strong=\"H7121\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H2088\"* hear|strong=\"H8085\"* them|strong=\"H7121\"* in|strong=\"H8085\"* the|strong=\"H8085\"* time|strong=\"H6256\"* that|strong=\"H3588\"* they|strong=\"H3588\"* cry|strong=\"H7121\"* to|strong=\"H6256\"* me|strong=\"H7121\"* because|strong=\"H3588\"* of|strong=\"H5971\"* their|strong=\"H5375\"* trouble|strong=\"H7451\"*." + }, + { + "verseNum": 15, + "text": "What|strong=\"H4100\"* has|strong=\"H4100\"* my|strong=\"H5921\"* beloved|strong=\"H3039\"* to|strong=\"H6213\"* do|strong=\"H6213\"* in|strong=\"H5921\"* my|strong=\"H5921\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, “A|strong=\"H3068\"* green|strong=\"H7488\"* olive|strong=\"H2132\"* tree|strong=\"H2132\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* planted|strong=\"H5193\"* you|strong=\"H5921\"*, has|strong=\"H3068\"* pronounced|strong=\"H1696\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, because|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* they|strong=\"H1992\"* have|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H1696\"* themselves|strong=\"H1992\"* in|strong=\"H5921\"* provoking|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H1696\"* anger|strong=\"H3707\"* by|strong=\"H5921\"* offering|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1696\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* gave me|strong=\"H7200\"* knowledge|strong=\"H3045\"* of|strong=\"H3068\"* it|strong=\"H3045\"*, and|strong=\"H3068\"* I|strong=\"H3045\"* knew|strong=\"H3045\"* it|strong=\"H3045\"*. Then|strong=\"H3045\"* you|strong=\"H3045\"* showed|strong=\"H7200\"* me|strong=\"H7200\"* their|strong=\"H3068\"* doings|strong=\"H4611\"*." + }, + { + "verseNum": 19, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H8034\"* like|strong=\"H2803\"* a|strong=\"H3068\"* gentle lamb|strong=\"H3532\"* that|strong=\"H3588\"* is|strong=\"H8034\"* led|strong=\"H2986\"* to|strong=\"H5921\"* the|strong=\"H5921\"* slaughter|strong=\"H2873\"*. I|strong=\"H3588\"* didn’t know|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* devised|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, saying," + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* judges|strong=\"H8199\"* righteously|strong=\"H6664\"*," + }, + { + "verseNum": 21, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H8034\"* of|strong=\"H3068\"* Anathoth|strong=\"H6068\"*, who|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*, saying, ‘You|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* prophesy|strong=\"H5012\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, that|strong=\"H5315\"* you|strong=\"H5921\"* not|strong=\"H3808\"* die|strong=\"H4191\"* by|strong=\"H3027\"* our|strong=\"H3068\"* hand|strong=\"H3027\"*’—" + }, + { + "verseNum": 22, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* them|strong=\"H5921\"*. The|strong=\"H5921\"* young|strong=\"H1121\"* men|strong=\"H1121\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. Their|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3068\"* daughters|strong=\"H1323\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H5921\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* remnant|strong=\"H7611\"* to|strong=\"H1961\"* them|strong=\"H1961\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H1961\"* the|strong=\"H3588\"* men|strong=\"H7451\"* of|strong=\"H8141\"* Anathoth|strong=\"H6068\"*, even|strong=\"H3588\"* the|strong=\"H3588\"* year|strong=\"H8141\"* of|strong=\"H8141\"* their|strong=\"H3588\"* visitation|strong=\"H6486\"*.’”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H3588\"* are|strong=\"H7563\"* righteous|strong=\"H6662\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H6213\"* have|strong=\"H1571\"* planted|strong=\"H5193\"* them|strong=\"H6213\"*. Yes|strong=\"H1571\"*, they|strong=\"H6310\"* have|strong=\"H1571\"* taken|strong=\"H8327\"* root|strong=\"H8327\"*." + }, + { + "verseNum": 3, + "text": "But|strong=\"H7200\"* you|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, know|strong=\"H3045\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 4, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3808\"* the|strong=\"H3605\"* land|strong=\"H7704\"* mourn," + }, + { + "verseNum": 5, + "text": "“If|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7965\"* run|strong=\"H7323\"* with|strong=\"H6213\"* the|strong=\"H3588\"* footmen|strong=\"H7273\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* even|strong=\"H1571\"* your|strong=\"H3588\"* brothers, and|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3588\"* father," + }, + { + "verseNum": 7, + "text": "“I|strong=\"H5414\"* have|strong=\"H5414\"* forsaken|strong=\"H5800\"* my|strong=\"H5414\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "My|strong=\"H5414\"* heritage|strong=\"H5159\"* has|strong=\"H1961\"* become|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5414\"* as|strong=\"H1961\"* a|strong=\"H3068\"* lion in|strong=\"H5921\"* the|strong=\"H5921\"* forest|strong=\"H3293\"*." + }, + { + "verseNum": 9, + "text": "Is|strong=\"H3605\"* my|strong=\"H3605\"* heritage|strong=\"H5159\"* to|strong=\"H3212\"* me|strong=\"H5921\"* as|strong=\"H5159\"* a|strong=\"H3068\"* speckled|strong=\"H6641\"* bird|strong=\"H5861\"* of|strong=\"H7704\"* prey|strong=\"H5861\"*?" + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* shepherds|strong=\"H7462\"* have|strong=\"H7462\"* destroyed|strong=\"H7843\"* my|strong=\"H5414\"* vineyard|strong=\"H3754\"*." + }, + { + "verseNum": 11, + "text": "They|strong=\"H3588\"* have|strong=\"H3605\"* made|strong=\"H7760\"* it|strong=\"H7760\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*." + }, + { + "verseNum": 12, + "text": "Destroyers|strong=\"H7703\"* have|strong=\"H3068\"* come on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"* in|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 13, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* sown|strong=\"H2232\"* wheat|strong=\"H2406\"*," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Concerning|strong=\"H5921\"* all|strong=\"H3605\"* my|strong=\"H3605\"* evil|strong=\"H7451\"* neighbors|strong=\"H7934\"*, who|strong=\"H3605\"* touch|strong=\"H5060\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* which|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* caused my|strong=\"H3605\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* inherit|strong=\"H5157\"*: Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* them|strong=\"H5921\"* up|strong=\"H5428\"* from|strong=\"H5921\"* off|strong=\"H5921\"* their|strong=\"H3605\"* land|strong=\"H5159\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* from|strong=\"H5921\"* among|strong=\"H8432\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H7725\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H1961\"* after|strong=\"H1961\"* I|strong=\"H1961\"* have|strong=\"H1961\"* plucked|strong=\"H5428\"* them|strong=\"H7725\"* up|strong=\"H5428\"*, I|strong=\"H1961\"* will|strong=\"H1961\"* return|strong=\"H7725\"* and|strong=\"H7725\"* have|strong=\"H1961\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H7725\"*. I|strong=\"H1961\"* will|strong=\"H1961\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"*, every|strong=\"H7725\"* man to|strong=\"H7725\"* his|strong=\"H7725\"* heritage|strong=\"H5159\"*, and|strong=\"H7725\"* every|strong=\"H7725\"* man to|strong=\"H7725\"* his|strong=\"H7725\"* land|strong=\"H5159\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H8432\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* they|strong=\"H3068\"* will|strong=\"H3068\"* diligently|strong=\"H3925\"* learn|strong=\"H3925\"* the|strong=\"H8432\"* ways|strong=\"H1870\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, to|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, ‘As|strong=\"H1961\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*;’ even|strong=\"H1129\"* as|strong=\"H1961\"* they|strong=\"H3068\"* taught|strong=\"H3925\"* my|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* Baal|strong=\"H1168\"*, then|strong=\"H1961\"* they|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* built|strong=\"H1129\"* up|strong=\"H1129\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* if|strong=\"H1931\"* they|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*, then|strong=\"H8085\"* I|strong=\"H3808\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* that|strong=\"H8085\"* nation|strong=\"H1471\"*, plucking up|strong=\"H5428\"* and|strong=\"H3068\"* destroying it|strong=\"H1931\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H1980\"* me|strong=\"H5921\"*, “Go|strong=\"H1980\"*, and|strong=\"H1980\"* buy|strong=\"H7069\"* yourself|strong=\"H5921\"* a|strong=\"H3068\"* linen|strong=\"H6593\"* belt, and|strong=\"H1980\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* your|strong=\"H3068\"* waist|strong=\"H4975\"*, and|strong=\"H1980\"* don’t put|strong=\"H7760\"* it|strong=\"H7760\"* in|strong=\"H5921\"* water|strong=\"H4325\"*.”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H7760\"* I|strong=\"H5921\"* bought|strong=\"H7069\"* a|strong=\"H3068\"* belt according|strong=\"H5921\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H3068\"* put|strong=\"H7760\"* it|strong=\"H7760\"* on|strong=\"H5921\"* my|strong=\"H3068\"* waist|strong=\"H4975\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Take|strong=\"H3947\"* the|strong=\"H5921\"* belt that|strong=\"H6965\"* you|strong=\"H5921\"* have|strong=\"H3947\"* bought|strong=\"H7069\"*, which|strong=\"H8033\"* is|strong=\"H8033\"* on|strong=\"H5921\"* your|strong=\"H5921\"* waist|strong=\"H4975\"*, and|strong=\"H6965\"* arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H5921\"* Euphrates|strong=\"H6578\"*, and|strong=\"H6965\"* hide|strong=\"H2934\"* it|strong=\"H5921\"* there|strong=\"H8033\"* in|strong=\"H5921\"* a|strong=\"H3068\"* cleft of|strong=\"H5921\"* the|strong=\"H5921\"* rock|strong=\"H5553\"*.”" + }, + { + "verseNum": 5, + "text": "So|strong=\"H6680\"* I|strong=\"H6680\"* went|strong=\"H3212\"* and|strong=\"H3068\"* hid|strong=\"H2934\"* it|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3068\"* Euphrates|strong=\"H6578\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* commanded|strong=\"H6680\"* me|strong=\"H6680\"*." + }, + { + "verseNum": 6, + "text": "After|strong=\"H7093\"* many|strong=\"H7227\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H3947\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3068\"* the|strong=\"H3947\"* Euphrates|strong=\"H6578\"*, and|strong=\"H6965\"* take|strong=\"H3947\"* the|strong=\"H3947\"* belt from|strong=\"H3947\"* there|strong=\"H8033\"*, which|strong=\"H3068\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H3068\"* hide|strong=\"H2934\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 7, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H3605\"* Euphrates|strong=\"H6578\"*, and|strong=\"H3212\"* dug|strong=\"H2658\"*, and|strong=\"H3212\"* took|strong=\"H3947\"* the|strong=\"H3605\"* belt from|strong=\"H4480\"* the|strong=\"H3605\"* place|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H2009\"* had|strong=\"H3808\"* hidden|strong=\"H2934\"* it|strong=\"H8033\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* belt was|strong=\"H4725\"* ruined|strong=\"H7843\"*. It|strong=\"H8033\"* was|strong=\"H4725\"* profitable|strong=\"H6743\"* for|strong=\"H3605\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘In|strong=\"H3068\"* this|strong=\"H3541\"* way|strong=\"H3541\"* I|strong=\"H3541\"* will|strong=\"H3068\"* ruin|strong=\"H7843\"* the|strong=\"H3541\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* the|strong=\"H3541\"* great|strong=\"H7227\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2088\"* evil|strong=\"H7451\"* people|strong=\"H5971\"*, who|strong=\"H3605\"* refuse|strong=\"H3987\"* to|strong=\"H1980\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*, who|strong=\"H3605\"* walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H3605\"* stubbornness|strong=\"H8307\"* of|strong=\"H1697\"* their|strong=\"H3605\"* heart|strong=\"H3820\"*, and|strong=\"H1980\"* have|strong=\"H1961\"* gone|strong=\"H1980\"* after|strong=\"H1961\"* other|strong=\"H2088\"* gods|strong=\"H1980\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* them|strong=\"H1992\"* and|strong=\"H1980\"* to|strong=\"H1980\"* worship|strong=\"H7812\"* them|strong=\"H1992\"*, will|strong=\"H1961\"* even|strong=\"H3808\"* be|strong=\"H1961\"* as|strong=\"H1697\"* this|strong=\"H2088\"* belt, which|strong=\"H1992\"* is|strong=\"H2088\"* profitable|strong=\"H6743\"* for|strong=\"H3605\"* nothing|strong=\"H3808\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* as|strong=\"H1961\"* the|strong=\"H3605\"* belt clings|strong=\"H1692\"* to|strong=\"H3478\"* the|strong=\"H3605\"* waist|strong=\"H4975\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H3605\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H1961\"* caused|strong=\"H1961\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* to|strong=\"H3478\"* cling|strong=\"H1692\"* to|strong=\"H3478\"* me|strong=\"H1961\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H3478\"* me|strong=\"H1961\"* for|strong=\"H3588\"* a|strong=\"H3068\"* people|strong=\"H5971\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, for|strong=\"H3588\"* praise|strong=\"H8416\"*, and|strong=\"H3063\"* for|strong=\"H3588\"* glory|strong=\"H8597\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*.’" + }, + { + "verseNum": 12, + "text": "“Therefore|strong=\"H3588\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* speak|strong=\"H1697\"* to|strong=\"H3478\"* them|strong=\"H3588\"* this|strong=\"H2088\"* word|strong=\"H1697\"*: ‘Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Every|strong=\"H3605\"* container should|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wine|strong=\"H3196\"*.”’ They|strong=\"H3588\"* will|strong=\"H3068\"* tell|strong=\"H3045\"* you|strong=\"H3588\"*, ‘Do|strong=\"H3068\"* we|strong=\"H3068\"* not|strong=\"H3808\"* certainly|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* every|strong=\"H3605\"* container should|strong=\"H3068\"* be|strong=\"H3808\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* wine|strong=\"H3196\"*?’" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H4428\"* tell|strong=\"H3605\"* them|strong=\"H5921\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* fill|strong=\"H4390\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* this|strong=\"H2063\"* land, even|strong=\"H3068\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* who|strong=\"H3605\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H4390\"* drunkenness|strong=\"H7943\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* dash|strong=\"H5310\"* them|strong=\"H7843\"* one|strong=\"H3808\"* against|strong=\"H3068\"* another|strong=\"H3808\"*, even|strong=\"H3808\"* the|strong=\"H5002\"* fathers and|strong=\"H1121\"* the|strong=\"H5002\"* sons|strong=\"H1121\"* together|strong=\"H3162\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*: “I|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* pity|strong=\"H2347\"*, spare|strong=\"H2550\"*, or|strong=\"H3808\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"*, that|strong=\"H3068\"* I|strong=\"H3808\"* should|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* them|strong=\"H7843\"*.”’”" + }, + { + "verseNum": 15, + "text": "Hear|strong=\"H8085\"*, and|strong=\"H3068\"* give|strong=\"H1696\"* ear|strong=\"H8085\"*." + }, + { + "verseNum": 16, + "text": "Give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 18, + "text": "Say to|strong=\"H3381\"* the|strong=\"H3588\"* king|strong=\"H4428\"* and|strong=\"H4428\"* to|strong=\"H3381\"* the|strong=\"H3588\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H3605\"* South|strong=\"H5045\"* are|strong=\"H5892\"* shut|strong=\"H5462\"* up|strong=\"H5462\"*," + }, + { + "verseNum": 20, + "text": "Lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5414\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 21, + "text": "What|strong=\"H4100\"* will|strong=\"H3808\"* you|strong=\"H3588\"* say when|strong=\"H3588\"* he|strong=\"H3588\"* sets over|strong=\"H5921\"* you|strong=\"H3588\"* as|strong=\"H3644\"* head|strong=\"H7218\"* those|strong=\"H5921\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* yourself|strong=\"H5921\"* taught|strong=\"H3925\"* to|strong=\"H5921\"* be|strong=\"H3808\"* friends to|strong=\"H5921\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 22, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* say in|strong=\"H3588\"* your|strong=\"H3588\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 23, + "text": "Can|strong=\"H3201\"* the|strong=\"H1571\"* Ethiopian|strong=\"H3569\"* change|strong=\"H2015\"* his|strong=\"H2015\"* skin|strong=\"H5785\"*," + }, + { + "verseNum": 24, + "text": "“Therefore I will|strong=\"H7307\"* scatter|strong=\"H6327\"* them|strong=\"H5674\"*" + }, + { + "verseNum": 25, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* your|strong=\"H3068\"* lot|strong=\"H1486\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H1571\"* also|strong=\"H1571\"* uncover your|strong=\"H5921\"* skirts|strong=\"H7757\"* on|strong=\"H5921\"* your|strong=\"H5921\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 27, + "text": "I|strong=\"H5921\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* your|strong=\"H5921\"* abominations|strong=\"H8251\"*, even|strong=\"H5750\"* your|strong=\"H5921\"* adulteries|strong=\"H5004\"*" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1697\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* drought|strong=\"H1226\"*:" + }, + { + "verseNum": 2, + "text": "“Judah|strong=\"H3063\"* mourns," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H7725\"* nobles send|strong=\"H7971\"* their|strong=\"H7725\"* little|strong=\"H6810\"* ones|strong=\"H6810\"* to|strong=\"H7725\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3588\"* of|strong=\"H7218\"* the|strong=\"H3588\"* ground which|strong=\"H3588\"* is|strong=\"H1961\"* cracked|strong=\"H2865\"*," + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, the|strong=\"H3588\"* doe in|strong=\"H3808\"* the|strong=\"H3588\"* field|strong=\"H7704\"* also|strong=\"H1571\"* calves and|strong=\"H7704\"* forsakes|strong=\"H5800\"* her|strong=\"H3205\"* young|strong=\"H3205\"*," + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* wild|strong=\"H6501\"* donkeys|strong=\"H6501\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* bare|strong=\"H8205\"* heights|strong=\"H8205\"*." + }, + { + "verseNum": 7, + "text": "Though|strong=\"H3588\"* our|strong=\"H3068\"* iniquities|strong=\"H5771\"* testify|strong=\"H6030\"* against|strong=\"H2398\"* us|strong=\"H6213\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H4100\"* hope|strong=\"H4723\"* of|strong=\"H6256\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4100\"* should|strong=\"H3068\"* you|strong=\"H5921\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* scared man|strong=\"H1368\"*," + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H1157\"*, “Don’t pray|strong=\"H6419\"* for|strong=\"H1157\"* this|strong=\"H2088\"* people|strong=\"H5971\"* for|strong=\"H1157\"* their|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* fast|strong=\"H6684\"*, I|strong=\"H3588\"* will|strong=\"H2719\"* not|strong=\"H3588\"* hear|strong=\"H8085\"* their|strong=\"H8085\"* cry|strong=\"H7440\"*; and|strong=\"H2719\"* when|strong=\"H3588\"* they|strong=\"H3588\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"* and|strong=\"H2719\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, I|strong=\"H3588\"* will|strong=\"H2719\"* not|strong=\"H3588\"* accept|strong=\"H7521\"* them|strong=\"H3615\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H2719\"* consume|strong=\"H3615\"* them|strong=\"H3615\"* by|strong=\"H5927\"* the|strong=\"H8085\"* sword|strong=\"H2719\"*, by|strong=\"H5927\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* by|strong=\"H5927\"* pestilence|strong=\"H1698\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1961\"* I|strong=\"H3588\"* said, “Ah, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, the|strong=\"H7200\"* prophets|strong=\"H5030\"* tell|strong=\"H7200\"* them|strong=\"H5414\"*, ‘You|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H7200\"* sword|strong=\"H2719\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* famine|strong=\"H7458\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* give|strong=\"H5414\"* you|strong=\"H3588\"* assured peace|strong=\"H7965\"* in|strong=\"H4725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “The|strong=\"H3068\"* prophets|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*. I|strong=\"H6680\"* didn’t send|strong=\"H7971\"* them|strong=\"H1992\"*. I|strong=\"H6680\"* didn’t command|strong=\"H6680\"* them|strong=\"H1992\"*. I|strong=\"H6680\"* didn’t speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H1992\"*. They|strong=\"H1992\"* prophesy|strong=\"H5012\"* to|strong=\"H1696\"* you|strong=\"H6680\"* a|strong=\"H3068\"* lying|strong=\"H8267\"* vision|strong=\"H2377\"*, divination|strong=\"H7081\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* thing|strong=\"H8267\"* of|strong=\"H3068\"* nothing|strong=\"H3808\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* deceit|strong=\"H8267\"* of|strong=\"H3068\"* their|strong=\"H3068\"* own heart|strong=\"H3820\"*." + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* in|strong=\"H5921\"* my|strong=\"H3068\"* name|strong=\"H8034\"*, but|strong=\"H3808\"* I|strong=\"H3541\"* didn’t send|strong=\"H7971\"* them|strong=\"H1992\"*, yet|strong=\"H3068\"* they|strong=\"H1992\"* say, ‘Sword|strong=\"H2719\"* and|strong=\"H3068\"* famine|strong=\"H7458\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H5921\"* this|strong=\"H2063\"* land.’ Those|strong=\"H1992\"* prophets|strong=\"H5030\"* will|strong=\"H3068\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"* by|strong=\"H5921\"* sword|strong=\"H2719\"* and|strong=\"H3068\"* famine|strong=\"H7458\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* to|strong=\"H1961\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* will|strong=\"H1961\"* be|strong=\"H1961\"* cast|strong=\"H7993\"* out|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H6440\"* streets|strong=\"H2351\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* because|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H6440\"* famine|strong=\"H7458\"* and|strong=\"H1121\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H1961\"* have|strong=\"H1961\"* no|strong=\"H6440\"* one|strong=\"H1121\"* to|strong=\"H1961\"* bury|strong=\"H6912\"* them|strong=\"H1992\"*—them|strong=\"H1992\"*, their|strong=\"H6440\"* wives, their|strong=\"H6440\"* sons|strong=\"H1121\"*, or|strong=\"H1121\"* their|strong=\"H6440\"* daughters|strong=\"H1323\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H1961\"* pour|strong=\"H8210\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3588\"* shall|strong=\"H5971\"* say|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H3381\"* them|strong=\"H3381\"*:" + }, + { + "verseNum": 18, + "text": "If|strong=\"H3588\"* I|strong=\"H3588\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3588\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 19, + "text": "Have|strong=\"H3063\"* you|strong=\"H5221\"* utterly|strong=\"H3988\"* rejected|strong=\"H3988\"* Judah|strong=\"H3063\"*?" + }, + { + "verseNum": 20, + "text": "We|strong=\"H3588\"* acknowledge|strong=\"H3045\"*, Yahweh|strong=\"H3068\"*, our|strong=\"H3068\"* wickedness|strong=\"H7562\"*," + }, + { + "verseNum": 21, + "text": "Do|strong=\"H6565\"* not|strong=\"H2142\"* abhor|strong=\"H5006\"* us|strong=\"H2142\"*, for|strong=\"H8034\"* your|strong=\"H2142\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 22, + "text": "Are|strong=\"H1471\"* there|strong=\"H3426\"* any|strong=\"H3605\"* among|strong=\"H3808\"* the|strong=\"H3605\"* vanities|strong=\"H1892\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* can|strong=\"H6213\"* cause|strong=\"H5414\"* rain|strong=\"H1652\"*?" + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6440\"*, “Though Moses|strong=\"H4872\"* and|strong=\"H4872\"* Samuel|strong=\"H8050\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, yet|strong=\"H3068\"* my|strong=\"H3068\"* mind|strong=\"H5315\"* would|strong=\"H3068\"* not|strong=\"H2088\"* turn|strong=\"H5971\"* toward|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. Cast|strong=\"H7971\"* them|strong=\"H5921\"* out|strong=\"H3318\"* of|strong=\"H3068\"* my|strong=\"H3068\"* sight|strong=\"H6440\"*, and|strong=\"H4872\"* let|strong=\"H7971\"* them|strong=\"H5921\"* go|strong=\"H3318\"* out|strong=\"H3318\"*!" + }, + { + "verseNum": 2, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* when|strong=\"H3588\"* they|strong=\"H3588\"* ask you|strong=\"H3588\"*, ‘Where shall|strong=\"H3068\"* we|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*?’ then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell them|strong=\"H3318\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* will|strong=\"H3068\"* appoint|strong=\"H6485\"* over|strong=\"H5921\"* them|strong=\"H5921\"* four kinds|strong=\"H4940\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*: “the|strong=\"H5002\"* sword|strong=\"H2719\"* to|strong=\"H3068\"* kill|strong=\"H2026\"*, the|strong=\"H5002\"* dogs|strong=\"H3611\"* to|strong=\"H3068\"* tear|strong=\"H5498\"*, the|strong=\"H5002\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H5002\"* sky|strong=\"H8064\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* animals of|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*, to|strong=\"H3068\"* devour and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H7843\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5921\"* be|strong=\"H1121\"* tossed back and|strong=\"H1121\"* forth|strong=\"H5414\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H1121\"* the|strong=\"H3605\"* earth, because|strong=\"H5921\"* of|strong=\"H1121\"* Manasseh|strong=\"H4519\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, for|strong=\"H5921\"* that|strong=\"H3605\"* which|strong=\"H3063\"* he|strong=\"H6213\"* did|strong=\"H6213\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* will|strong=\"H4310\"* have|strong=\"H2550\"* pity|strong=\"H2550\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 6, + "text": "You|strong=\"H5921\"* have|strong=\"H3068\"* rejected me|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3808\"* have|strong=\"H5971\"* winnowed|strong=\"H2219\"* them|strong=\"H7725\"* with|strong=\"H5971\"* a|strong=\"H3068\"* fan|strong=\"H2219\"* in|strong=\"H1870\"* the|strong=\"H7725\"* gates|strong=\"H8179\"* of|strong=\"H1870\"* the|strong=\"H7725\"* land." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H1992\"* widows are|strong=\"H1992\"* increased|strong=\"H6105\"* more|strong=\"H6105\"* than|strong=\"H5921\"* the|strong=\"H5921\"* sand|strong=\"H2344\"* of|strong=\"H5892\"* the|strong=\"H5921\"* seas|strong=\"H3220\"*." + }, + { + "verseNum": 9, + "text": "She|strong=\"H6440\"* who|strong=\"H3068\"* has|strong=\"H3068\"* borne|strong=\"H3205\"* seven|strong=\"H7651\"* languishes." + }, + { + "verseNum": 10, + "text": "Woe is|strong=\"H3605\"* me|strong=\"H3205\"*, my|strong=\"H3605\"* mother, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3605\"* borne|strong=\"H3205\"* me|strong=\"H3205\"*, a|strong=\"H3068\"* man|strong=\"H3605\"* of|strong=\"H3205\"* strife|strong=\"H7379\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* said," + }, + { + "verseNum": 12, + "text": "Can one break|strong=\"H7489\"* iron|strong=\"H1270\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H3605\"* substance|strong=\"H2428\"* and|strong=\"H2403\"* your|strong=\"H3605\"* treasures for|strong=\"H3605\"* a|strong=\"H3068\"* plunder without|strong=\"H3808\"* price|strong=\"H4242\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3808\"* make|strong=\"H3045\"* them|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* with|strong=\"H5921\"* your|strong=\"H5921\"* enemies into|strong=\"H5921\"* a|strong=\"H3068\"* land which|strong=\"H3588\"* you|strong=\"H3588\"* don’t know|strong=\"H3045\"*;" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H5921\"* know|strong=\"H3045\"*." + }, + { + "verseNum": 16, + "text": "Your|strong=\"H3068\"* words|strong=\"H1697\"* were|strong=\"H1961\"* found|strong=\"H4672\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* didn’t sit|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* assembly|strong=\"H5475\"* of|strong=\"H3027\"* those|strong=\"H3427\"* who|strong=\"H3427\"* make|strong=\"H3027\"* merry|strong=\"H7832\"* and|strong=\"H3027\"* rejoice|strong=\"H5937\"*." + }, + { + "verseNum": 18, + "text": "Why|strong=\"H4100\"* is|strong=\"H4100\"* my|strong=\"H1961\"* pain|strong=\"H3511\"* perpetual|strong=\"H5331\"*," + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 20, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3201\"* this|strong=\"H2088\"* people|strong=\"H5971\"* a|strong=\"H3068\"* fortified|strong=\"H1219\"* bronze|strong=\"H5178\"* wall|strong=\"H2346\"*." + }, + { + "verseNum": 21, + "text": "“I|strong=\"H3027\"* will|strong=\"H3027\"* deliver|strong=\"H5337\"* you|strong=\"H3027\"* out|strong=\"H5337\"* of|strong=\"H3027\"* the|strong=\"H3027\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3027\"* wicked|strong=\"H7451\"*," + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H3947\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* a|strong=\"H3068\"* wife, neither|strong=\"H3808\"* shall|strong=\"H1121\"* you|strong=\"H3947\"* have|strong=\"H1961\"* sons|strong=\"H1121\"* or|strong=\"H3808\"* daughters|strong=\"H1323\"*, in|strong=\"H1121\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* who|strong=\"H3068\"* are|strong=\"H1121\"* born|strong=\"H3205\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H1121\"* concerning|strong=\"H5921\"* their|strong=\"H3068\"* mothers who|strong=\"H3068\"* bore|strong=\"H3205\"* them|strong=\"H5921\"*, and|strong=\"H1121\"* concerning|strong=\"H5921\"* their|strong=\"H3068\"* fathers|strong=\"H3205\"* who|strong=\"H3068\"* became|strong=\"H3205\"* their|strong=\"H3068\"* father|strong=\"H3205\"* in|strong=\"H5921\"* this|strong=\"H2088\"* land|strong=\"H4725\"*:" + }, + { + "verseNum": 4, + "text": "“They|strong=\"H3808\"* will|strong=\"H1961\"* die|strong=\"H4191\"* grievous|strong=\"H8463\"* deaths|strong=\"H4463\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* lamented|strong=\"H5594\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3808\"* be|strong=\"H1961\"* buried|strong=\"H6912\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* consumed|strong=\"H3615\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* and|strong=\"H8064\"* by|strong=\"H5921\"* famine|strong=\"H7458\"*. Their|strong=\"H6440\"* dead|strong=\"H4191\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H5921\"* the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* for|strong=\"H5921\"* the|strong=\"H6440\"* animals|strong=\"H1961\"* of|strong=\"H6440\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*.”" + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, “Don’t enter into|strong=\"H3212\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* mourning|strong=\"H4798\"*. Don’t go|strong=\"H3212\"* to|strong=\"H3068\"* lament|strong=\"H5594\"*. Don’t bemoan|strong=\"H5110\"* them|strong=\"H3588\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* taken away|strong=\"H3212\"* my|strong=\"H3068\"* peace|strong=\"H7965\"* from|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “even|strong=\"H3588\"* loving kindness|strong=\"H2617\"* and|strong=\"H3068\"* tender mercies|strong=\"H7356\"*." + }, + { + "verseNum": 6, + "text": "Both|strong=\"H4191\"* great|strong=\"H1419\"* and|strong=\"H1419\"* small|strong=\"H6996\"* will|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H4191\"* this|strong=\"H2063\"* land. They|strong=\"H1992\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*. Men|strong=\"H1419\"* won’t lament|strong=\"H5594\"* for|strong=\"H4191\"* them|strong=\"H1992\"*, cut|strong=\"H1413\"* themselves|strong=\"H1992\"*, or|strong=\"H3808\"* make|strong=\"H7139\"* themselves|strong=\"H1992\"* bald|strong=\"H7139\"* for|strong=\"H4191\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 7, + "text": "Men won’t break|strong=\"H6536\"* bread for|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* mourning|strong=\"H5162\"*, to|strong=\"H4191\"* comfort|strong=\"H5162\"* them|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*. Men won’t give|strong=\"H8248\"* them|strong=\"H5921\"* the|strong=\"H5921\"* cup|strong=\"H3563\"* of|strong=\"H5921\"* consolation|strong=\"H8575\"* to|strong=\"H4191\"* drink|strong=\"H8248\"* for|strong=\"H5921\"* their|strong=\"H5921\"* father or|strong=\"H3808\"* for|strong=\"H5921\"* their|strong=\"H5921\"* mother." + }, + { + "verseNum": 8, + "text": "“You|strong=\"H3808\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* go into the|strong=\"H8354\"* house|strong=\"H1004\"* of|strong=\"H1004\"* feasting|strong=\"H4960\"* to|strong=\"H1004\"* sit|strong=\"H3427\"* with|strong=\"H1004\"* them|strong=\"H3427\"*, to|strong=\"H1004\"* eat and|strong=\"H1004\"* to|strong=\"H1004\"* drink|strong=\"H8354\"*.”" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* cause to|strong=\"H3478\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, before|strong=\"H4480\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* and|strong=\"H3478\"* in|strong=\"H3478\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* mirth|strong=\"H8057\"* and|strong=\"H3478\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3478\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* tell|strong=\"H5046\"* this|strong=\"H2088\"* people|strong=\"H5971\"* all|strong=\"H3605\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* ask you|strong=\"H3588\"*, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* pronounced|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* us|strong=\"H5046\"*?’ or|strong=\"H1419\"* ‘What|strong=\"H4100\"* is|strong=\"H3068\"* our|strong=\"H3068\"* iniquity|strong=\"H5771\"*?’ or|strong=\"H1419\"* ‘What|strong=\"H4100\"* is|strong=\"H3068\"* our|strong=\"H3068\"* sin|strong=\"H2403\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H1961\"* committed|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*?’" + }, + { + "verseNum": 11, + "text": "then|strong=\"H3068\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* tell them|strong=\"H5921\"*, ‘Because|strong=\"H5921\"* your|strong=\"H3068\"* fathers have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H5921\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H3068\"* have|strong=\"H3068\"* walked|strong=\"H3212\"* after|strong=\"H5921\"* other gods, have|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*, have|strong=\"H3068\"* worshiped|strong=\"H7812\"* them|strong=\"H5921\"*, have|strong=\"H3068\"* forsaken|strong=\"H5800\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H6213\"* have|strong=\"H7489\"* done|strong=\"H6213\"* evil|strong=\"H7451\"* more|strong=\"H1980\"* than|strong=\"H1115\"* your|strong=\"H8085\"* fathers, for|strong=\"H6213\"* behold|strong=\"H2005\"*, you|strong=\"H6213\"* each walk|strong=\"H1980\"* after|strong=\"H1980\"* the|strong=\"H8085\"* stubbornness|strong=\"H8307\"* of|strong=\"H3820\"* his|strong=\"H8085\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*, so|strong=\"H6213\"* that|strong=\"H8085\"* you|strong=\"H6213\"* don’t listen|strong=\"H8085\"* to|strong=\"H1980\"* me|strong=\"H6213\"*." + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* cast|strong=\"H5414\"* you|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H5921\"* this|strong=\"H2063\"* land into|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H3045\"* you|strong=\"H5414\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*, neither|strong=\"H3808\"* you|strong=\"H5414\"* nor|strong=\"H3808\"* your|strong=\"H5414\"* fathers. There|strong=\"H8033\"* you|strong=\"H5414\"* will|strong=\"H5414\"* serve|strong=\"H5647\"* other|strong=\"H2063\"* gods day|strong=\"H3119\"* and|strong=\"H3119\"* night|strong=\"H3915\"*, for|strong=\"H5921\"* I|strong=\"H5414\"* will|strong=\"H5414\"* show|strong=\"H3045\"* you|strong=\"H5414\"* no|strong=\"H3808\"* favor|strong=\"H2594\"*.’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5927\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* it|strong=\"H3651\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* said|strong=\"H5002\"*, ‘As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*;’" + }, + { + "verseNum": 15, + "text": "but|strong=\"H3588\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1121\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* he|strong=\"H3588\"* had|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H5414\"*.’ I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* them|strong=\"H5414\"* again|strong=\"H7725\"* into|strong=\"H7725\"* their|strong=\"H3605\"* land that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3605\"* fathers." + }, + { + "verseNum": 16, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* for|strong=\"H5921\"* many|strong=\"H7227\"* fishermen|strong=\"H1728\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* fish|strong=\"H1770\"* them|strong=\"H5921\"* up|strong=\"H5921\"*. Afterward I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* for|strong=\"H5921\"* many|strong=\"H7227\"* hunters|strong=\"H6719\"*, and|strong=\"H3068\"* they|strong=\"H3651\"* will|strong=\"H3068\"* hunt|strong=\"H6679\"* them|strong=\"H5921\"* from|strong=\"H5921\"* every|strong=\"H3605\"* mountain|strong=\"H2022\"*, from|strong=\"H5921\"* every|strong=\"H3605\"* hill|strong=\"H2022\"*, and|strong=\"H3068\"* out|strong=\"H7971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* clefts|strong=\"H5357\"* of|strong=\"H3068\"* the|strong=\"H3605\"* rocks|strong=\"H5553\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* are|strong=\"H5869\"* on|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* ways|strong=\"H1870\"*. They|strong=\"H3588\"* are|strong=\"H5869\"* not|strong=\"H3808\"* hidden|strong=\"H5641\"* from|strong=\"H6440\"* my|strong=\"H3605\"* face|strong=\"H6440\"*. Their|strong=\"H3605\"* iniquity|strong=\"H5771\"* isn’t concealed|strong=\"H5641\"* from|strong=\"H6440\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 18, + "text": "First|strong=\"H7223\"* I|strong=\"H5921\"* will|strong=\"H5771\"* recompense|strong=\"H7999\"* their|strong=\"H4390\"* iniquity|strong=\"H5771\"* and|strong=\"H2403\"* their|strong=\"H4390\"* sin|strong=\"H2403\"* double|strong=\"H4932\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* have|strong=\"H5771\"* polluted|strong=\"H2490\"* my|strong=\"H5921\"* land|strong=\"H5159\"* with|strong=\"H4390\"* the|strong=\"H5921\"* carcasses|strong=\"H5038\"* of|strong=\"H4390\"* their|strong=\"H4390\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, and|strong=\"H2403\"* have|strong=\"H5771\"* filled|strong=\"H4390\"* my|strong=\"H5921\"* inheritance|strong=\"H5159\"* with|strong=\"H4390\"* their|strong=\"H4390\"* abominations|strong=\"H8441\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, my|strong=\"H3068\"* strength|strong=\"H5797\"*, my|strong=\"H3068\"* stronghold|strong=\"H4581\"*," + }, + { + "verseNum": 20, + "text": "Should|strong=\"H6213\"* a|strong=\"H3068\"* man make|strong=\"H6213\"* to|strong=\"H6213\"* himself|strong=\"H6213\"* gods" + }, + { + "verseNum": 21, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H3651\"* them|strong=\"H3027\"* to|strong=\"H3068\"* know|strong=\"H3045\"*," + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "“The|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H4196\"* Judah|strong=\"H3063\"* is|strong=\"H3820\"* written|strong=\"H3789\"* with|strong=\"H5921\"* a|strong=\"H3068\"* pen|strong=\"H5842\"* of|strong=\"H4196\"* iron|strong=\"H1270\"*," + }, + { + "verseNum": 2, + "text": "Even|strong=\"H5921\"* their|strong=\"H5921\"* children|strong=\"H1121\"* remember|strong=\"H2142\"* their|strong=\"H5921\"* altars|strong=\"H4196\"*" + }, + { + "verseNum": 3, + "text": "My|strong=\"H5414\"* mountain|strong=\"H2042\"* in|strong=\"H5414\"* the|strong=\"H3605\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"*, even|strong=\"H5704\"* of|strong=\"H5159\"* yourself|strong=\"H3045\"*, will|strong=\"H5414\"* discontinue|strong=\"H8058\"* from|strong=\"H5704\"* your|strong=\"H5414\"* heritage|strong=\"H5159\"* that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* bush|strong=\"H6176\"* in|strong=\"H3427\"* the|strong=\"H7200\"* desert|strong=\"H6160\"*," + }, + { + "verseNum": 7, + "text": "“Blessed|strong=\"H1288\"* is|strong=\"H3068\"* the|strong=\"H3068\"* man|strong=\"H1397\"* who|strong=\"H3068\"* trusts|strong=\"H4009\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* tree|strong=\"H6086\"* planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* deceitful|strong=\"H6121\"* above|strong=\"H3820\"* all|strong=\"H3605\"* things|strong=\"H3605\"*" + }, + { + "verseNum": 10, + "text": "“I|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*, search|strong=\"H2713\"* the|strong=\"H5414\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 11, + "text": "As|strong=\"H3117\"* the|strong=\"H6213\"* partridge|strong=\"H7124\"* that|strong=\"H3117\"* sits on|strong=\"H3117\"* eggs|strong=\"H1716\"* which|strong=\"H3117\"* she|strong=\"H3808\"* has|strong=\"H1961\"* not|strong=\"H3808\"* laid|strong=\"H3205\"*," + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* glorious|strong=\"H3519\"* throne|strong=\"H3678\"*, set|strong=\"H7223\"* on|strong=\"H4725\"* high|strong=\"H4791\"* from|strong=\"H4725\"* the|strong=\"H4725\"* beginning|strong=\"H7223\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* hope|strong=\"H4723\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 14, + "text": "Heal|strong=\"H7495\"* me|strong=\"H3467\"*, O|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 15, + "text": "Behold|strong=\"H2009\"*, they|strong=\"H1992\"* ask me|strong=\"H4994\"*," + }, + { + "verseNum": 16, + "text": "As|strong=\"H3117\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, I|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* hurried from|strong=\"H6440\"* being|strong=\"H1961\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* after|strong=\"H1961\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Don’t be|strong=\"H1961\"* a|strong=\"H3068\"* terror|strong=\"H4288\"* to|strong=\"H1961\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 18, + "text": "Let them|strong=\"H1992\"* be|strong=\"H3117\"* disappointed who|strong=\"H1992\"* persecute|strong=\"H7291\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H3318\"* this|strong=\"H3541\"* to|strong=\"H1980\"* me|strong=\"H3318\"*: “Go|strong=\"H1980\"* and|strong=\"H1121\"* stand|strong=\"H5975\"* in|strong=\"H1980\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, through|strong=\"H1980\"* which|strong=\"H3068\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* come|strong=\"H1980\"* in|strong=\"H1980\"* and|strong=\"H1121\"* by|strong=\"H3068\"* which|strong=\"H3068\"* they|strong=\"H3068\"* go|strong=\"H1980\"* out|strong=\"H3318\"*, and|strong=\"H1121\"* in|strong=\"H1980\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 20, + "text": "Tell|strong=\"H8085\"* them|strong=\"H8085\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H3605\"* enter in|strong=\"H3427\"* by|strong=\"H3068\"* these|strong=\"H8085\"* gates|strong=\"H8179\"*:" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Be|strong=\"H3068\"* careful|strong=\"H8104\"*, and|strong=\"H3068\"* bear|strong=\"H5375\"* no|strong=\"H5375\"* burden|strong=\"H4853\"* on|strong=\"H3117\"* the|strong=\"H5375\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, nor|strong=\"H3117\"* bring|strong=\"H5375\"* it|strong=\"H5375\"* in|strong=\"H3068\"* by|strong=\"H3117\"* the|strong=\"H5375\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 22, + "text": "Don’t carry|strong=\"H6213\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* out|strong=\"H3318\"* of|strong=\"H1004\"* your|strong=\"H3605\"* houses|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Don’t do|strong=\"H6213\"* any|strong=\"H3605\"* work|strong=\"H4399\"*, but|strong=\"H3808\"* make|strong=\"H6213\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* commanded|strong=\"H6680\"* your|strong=\"H3605\"* fathers." + }, + { + "verseNum": 23, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5186\"* their|strong=\"H3947\"* ear|strong=\"H8085\"*, but|strong=\"H3808\"* made|strong=\"H7185\"* their|strong=\"H3947\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*, that|strong=\"H8085\"* they|strong=\"H3808\"* might not|strong=\"H3808\"* hear|strong=\"H8085\"*, and|strong=\"H8085\"* might not|strong=\"H3808\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 24, + "text": "It|strong=\"H6213\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H1961\"* you|strong=\"H3605\"* diligently|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H6213\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3068\"* bring|strong=\"H6213\"* in|strong=\"H3068\"* no|strong=\"H6213\"* burden|strong=\"H4853\"* through|strong=\"H3605\"* the|strong=\"H3605\"* gates|strong=\"H8179\"* of|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"* on|strong=\"H3117\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, but|strong=\"H1961\"* to|strong=\"H3068\"* make|strong=\"H6213\"* the|strong=\"H3605\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, to|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H6213\"* work|strong=\"H4399\"* therein;" + }, + { + "verseNum": 25, + "text": "then|strong=\"H4428\"* there|strong=\"H3427\"* will|strong=\"H4428\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* princes|strong=\"H8269\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, riding|strong=\"H7392\"* in|strong=\"H3427\"* chariots|strong=\"H7393\"* and|strong=\"H3063\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*, they|strong=\"H1992\"* and|strong=\"H3063\"* their|strong=\"H1992\"* princes|strong=\"H8269\"*, the|strong=\"H5921\"* men|strong=\"H1992\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H4428\"* remain|strong=\"H3427\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* places|strong=\"H1004\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* land of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* lowland|strong=\"H8219\"*, from|strong=\"H4480\"* the|strong=\"H3068\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H3068\"* South|strong=\"H5045\"*, bringing burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, sacrifices|strong=\"H2077\"*, meal|strong=\"H4503\"* offerings|strong=\"H5930\"*, and|strong=\"H3063\"* frankincense|strong=\"H3828\"*, and|strong=\"H3063\"* bringing sacrifices|strong=\"H2077\"* of|strong=\"H1004\"* thanksgiving|strong=\"H8426\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* if you|strong=\"H3117\"* will|strong=\"H3389\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3117\"* me|strong=\"H3808\"* to|strong=\"H3117\"* make|strong=\"H8085\"* the|strong=\"H8085\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* holy|strong=\"H6942\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* to|strong=\"H3117\"* bear|strong=\"H5375\"* a|strong=\"H3068\"* burden|strong=\"H4853\"* and|strong=\"H3117\"* enter in|strong=\"H8085\"* at|strong=\"H3117\"* the|strong=\"H8085\"* gates|strong=\"H8179\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* on|strong=\"H3117\"* the|strong=\"H8085\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, then|strong=\"H5375\"* I|strong=\"H3117\"* will|strong=\"H3389\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H8085\"* its|strong=\"H5375\"* gates|strong=\"H8179\"*, and|strong=\"H3117\"* it|strong=\"H5375\"* will|strong=\"H3389\"* devour the|strong=\"H8085\"* palaces of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*. It|strong=\"H5375\"* will|strong=\"H3389\"* not|strong=\"H3808\"* be|strong=\"H3808\"* quenched|strong=\"H3518\"*.”’”" + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, and|strong=\"H6965\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H8085\"* potter|strong=\"H3335\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* there|strong=\"H8033\"* I|strong=\"H1697\"* will|strong=\"H1004\"* cause|strong=\"H1697\"* you|strong=\"H3381\"* to|strong=\"H3381\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5921\"* potter|strong=\"H3335\"*’s house|strong=\"H1004\"*, and|strong=\"H1004\"* behold|strong=\"H2009\"*, he|strong=\"H6213\"* was|strong=\"H1004\"* making|strong=\"H6213\"* something|strong=\"H4399\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 4, + "text": "When|strong=\"H7725\"* the|strong=\"H6213\"* vessel|strong=\"H3627\"* that|strong=\"H1931\"* he|strong=\"H1931\"* made|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H6213\"* clay|strong=\"H2563\"* was|strong=\"H1931\"* marred|strong=\"H7843\"* in|strong=\"H6213\"* the|strong=\"H6213\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6213\"* potter|strong=\"H3335\"*, he|strong=\"H1931\"* made|strong=\"H6213\"* it|strong=\"H1931\"* again|strong=\"H7725\"* another|strong=\"H3627\"* vessel|strong=\"H3627\"*, as|strong=\"H6213\"* seemed|strong=\"H5869\"* good|strong=\"H3474\"* to|strong=\"H7725\"* the|strong=\"H6213\"* potter|strong=\"H3335\"* to|strong=\"H7725\"* make|strong=\"H6213\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 6, + "text": "“House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, can|strong=\"H3201\"*’t I|strong=\"H2009\"* do|strong=\"H6213\"* with|strong=\"H1004\"* you|strong=\"H6213\"* as|strong=\"H6213\"* this|strong=\"H2088\"* potter|strong=\"H3335\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Behold|strong=\"H2009\"*, as|strong=\"H6213\"* the|strong=\"H5002\"* clay|strong=\"H2563\"* in|strong=\"H3478\"* the|strong=\"H5002\"* potter|strong=\"H3335\"*’s hand|strong=\"H3027\"*, so|strong=\"H3651\"* are|strong=\"H3478\"* you|strong=\"H6213\"* in|strong=\"H3478\"* my|strong=\"H3068\"* hand|strong=\"H3027\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* instant|strong=\"H7281\"* I|strong=\"H5921\"* speak|strong=\"H1696\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, and|strong=\"H1471\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"*, to|strong=\"H1696\"* pluck|strong=\"H5428\"* up|strong=\"H5428\"* and|strong=\"H1471\"* to|strong=\"H1696\"* break|strong=\"H5422\"* down|strong=\"H5422\"* and|strong=\"H1471\"* to|strong=\"H1696\"* destroy|strong=\"H5422\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "if|strong=\"H1931\"* that|strong=\"H1931\"* nation|strong=\"H1471\"*, concerning|strong=\"H5921\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"*, turns|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H7725\"* evil|strong=\"H7451\"*, I|strong=\"H5921\"* will|strong=\"H1471\"* repent|strong=\"H5162\"* of|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* that|strong=\"H1931\"* I|strong=\"H5921\"* thought|strong=\"H2803\"* to|strong=\"H1696\"* do|strong=\"H6213\"* to|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "At|strong=\"H5921\"* the|strong=\"H5921\"* instant|strong=\"H7281\"* I|strong=\"H5921\"* speak|strong=\"H1696\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, and|strong=\"H1471\"* concerning|strong=\"H5921\"* a|strong=\"H3068\"* kingdom|strong=\"H4467\"*, to|strong=\"H1696\"* build|strong=\"H1129\"* and|strong=\"H1471\"* to|strong=\"H1696\"* plant|strong=\"H5193\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 10, + "text": "if they|strong=\"H5921\"* do|strong=\"H6213\"* that|strong=\"H8085\"* which|strong=\"H5869\"* is|strong=\"H2896\"* evil|strong=\"H7451\"* in|strong=\"H5921\"* my|strong=\"H8085\"* sight|strong=\"H5869\"*, that|strong=\"H8085\"* they|strong=\"H5921\"* not|strong=\"H1115\"* obey|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*, then|strong=\"H6213\"* I|strong=\"H5921\"* will|strong=\"H5869\"* repent|strong=\"H5162\"* of|strong=\"H6963\"* the|strong=\"H5921\"* good|strong=\"H2896\"* with|strong=\"H6213\"* which|strong=\"H5869\"* I|strong=\"H5921\"* said|strong=\"H8085\"* I|strong=\"H5921\"* would|strong=\"H6213\"* benefit|strong=\"H3190\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, speak to|strong=\"H7725\"* the|strong=\"H5921\"* men|strong=\"H7451\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H7725\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* frame|strong=\"H3335\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3063\"* devise|strong=\"H2803\"* a|strong=\"H3068\"* plan|strong=\"H2803\"* against|strong=\"H5921\"* you|strong=\"H5921\"*. Everyone return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3068\"* evil|strong=\"H7451\"* way|strong=\"H1870\"* now|strong=\"H6258\"*, and|strong=\"H3063\"* amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3063\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*.”’" + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* say, ‘It|strong=\"H3588\"* is|strong=\"H3820\"* in|strong=\"H6213\"* vain; for|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3820\"* walk|strong=\"H3212\"* after|strong=\"H3588\"* our|strong=\"H3588\"* own plans|strong=\"H4284\"*, and|strong=\"H3212\"* we|strong=\"H3068\"* will|strong=\"H3820\"* each follow|strong=\"H3212\"* the|strong=\"H3588\"* stubbornness|strong=\"H8307\"* of|strong=\"H3820\"* his|strong=\"H6213\"* evil|strong=\"H7451\"* heart|strong=\"H3820\"*.’”" + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "Will|strong=\"H7704\"* the|strong=\"H5800\"* snow|strong=\"H7950\"* of|strong=\"H4325\"* Lebanon|strong=\"H3844\"* fail from|strong=\"H4325\"* the|strong=\"H5800\"* rock|strong=\"H6697\"* of|strong=\"H4325\"* the|strong=\"H5800\"* field|strong=\"H7704\"*?" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* my|strong=\"H3588\"* people|strong=\"H5971\"* have|strong=\"H5971\"* forgotten|strong=\"H7911\"* me|strong=\"H7911\"*." + }, + { + "verseNum": 16, + "text": "to|strong=\"H5921\"* make|strong=\"H7760\"* their|strong=\"H3605\"* land an|strong=\"H7760\"* astonishment|strong=\"H8047\"*," + }, + { + "verseNum": 17, + "text": "I|strong=\"H3117\"* will|strong=\"H7307\"* scatter|strong=\"H6327\"* them|strong=\"H6440\"* as|strong=\"H3117\"* with|strong=\"H6440\"* an|strong=\"H7200\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* before|strong=\"H6440\"* the|strong=\"H6440\"* enemy." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3588\"* they|strong=\"H3588\"* said|strong=\"H1697\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3808\"*’s devise|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* Jeremiah|strong=\"H3414\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* law|strong=\"H8451\"* won’t perish from|strong=\"H5921\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, nor|strong=\"H3808\"* counsel|strong=\"H6098\"* from|strong=\"H5921\"* the|strong=\"H3605\"* wise|strong=\"H2450\"*, nor|strong=\"H3808\"* the|strong=\"H3605\"* word|strong=\"H1697\"* from|strong=\"H5921\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*. Come|strong=\"H3212\"*, and|strong=\"H3212\"* let|strong=\"H3808\"*’s strike|strong=\"H5221\"* him|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* tongue|strong=\"H3956\"*, and|strong=\"H3212\"* let|strong=\"H3808\"*’s not|strong=\"H3808\"* give|strong=\"H7181\"* heed|strong=\"H7181\"* to|strong=\"H3212\"* any|strong=\"H3605\"* of|strong=\"H1697\"* his|strong=\"H3605\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 19, + "text": "Give|strong=\"H7181\"* heed|strong=\"H7181\"* to|strong=\"H3068\"* me|strong=\"H6963\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 20, + "text": "Should|strong=\"H3588\"* evil|strong=\"H7451\"* be|strong=\"H5315\"* recompensed|strong=\"H7725\"* for|strong=\"H3588\"* good|strong=\"H2896\"*?" + }, + { + "verseNum": 21, + "text": "Therefore|strong=\"H3651\"* deliver|strong=\"H5414\"* up|strong=\"H5414\"* their|strong=\"H5414\"* children|strong=\"H1121\"* to|strong=\"H1961\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*," + }, + { + "verseNum": 22, + "text": "Let a|strong=\"H3068\"* cry|strong=\"H2201\"* be|strong=\"H1004\"* heard|strong=\"H8085\"* from|strong=\"H5921\"* their|strong=\"H8085\"* houses|strong=\"H1004\"*" + }, + { + "verseNum": 23, + "text": "Yet|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, you|strong=\"H6440\"* know|strong=\"H3045\"* all|strong=\"H3605\"* their|strong=\"H3605\"* counsel|strong=\"H6098\"* against|strong=\"H5921\"* me|strong=\"H6440\"* to|strong=\"H3068\"* kill me|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* said Yahweh|strong=\"H3068\"*, “Go|strong=\"H1980\"*, and|strong=\"H1980\"* buy|strong=\"H7069\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s earthen|strong=\"H2789\"* container, and|strong=\"H1980\"* take|strong=\"H1980\"* some|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3541\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3541\"* people|strong=\"H5971\"* and|strong=\"H1980\"* of|strong=\"H3068\"* the|strong=\"H3541\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* the|strong=\"H3541\"* priests|strong=\"H3548\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H1121\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H1696\"* the|strong=\"H7121\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H7121\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, which|strong=\"H1697\"* is|strong=\"H1697\"* by|strong=\"H7121\"* the|strong=\"H7121\"* entry|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7121\"* gate|strong=\"H8179\"* Harsith, and|strong=\"H1121\"* proclaim|strong=\"H7121\"* there|strong=\"H8033\"* the|strong=\"H7121\"* words|strong=\"H1697\"* that|strong=\"H1697\"* I|strong=\"H1697\"* will|strong=\"H1121\"* tell|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 3, + "text": "Say|strong=\"H1697\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*: Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* whoever|strong=\"H3605\"* hears|strong=\"H8085\"*, his|strong=\"H3605\"* ears will|strong=\"H3068\"* tingle|strong=\"H6750\"*." + }, + { + "verseNum": 4, + "text": "Because|strong=\"H3282\"* they|strong=\"H1992\"* have|strong=\"H3045\"* forsaken|strong=\"H5800\"* me|strong=\"H5800\"*, and|strong=\"H3063\"* have|strong=\"H3045\"* defiled this|strong=\"H2088\"* place|strong=\"H4725\"*, and|strong=\"H3063\"* have|strong=\"H3045\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* in|strong=\"H4428\"* it|strong=\"H3045\"* to|strong=\"H4428\"* other|strong=\"H2088\"* gods that|strong=\"H3045\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"*—they|strong=\"H1992\"*, their|strong=\"H1992\"* fathers, and|strong=\"H3063\"* the|strong=\"H3045\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*—and|strong=\"H3063\"* have|strong=\"H3045\"* filled|strong=\"H4390\"* this|strong=\"H2088\"* place|strong=\"H4725\"* with|strong=\"H4390\"* the|strong=\"H3045\"* blood|strong=\"H1818\"* of|strong=\"H4428\"* innocents|strong=\"H5355\"*," + }, + { + "verseNum": 5, + "text": "and|strong=\"H1121\"* have|strong=\"H1121\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"* to|strong=\"H1696\"* burn|strong=\"H8313\"* their|strong=\"H8313\"* children|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire for|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* to|strong=\"H1696\"* Baal|strong=\"H1168\"*, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"*, nor|strong=\"H3808\"* speak|strong=\"H1696\"*, which|strong=\"H1116\"* didn’t even|strong=\"H3808\"* enter|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5750\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* this|strong=\"H2088\"* place|strong=\"H4725\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H3808\"* called|strong=\"H7121\"* ‘Topheth|strong=\"H8612\"*’, nor|strong=\"H3808\"* ‘The|strong=\"H5002\"* Valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*’, but|strong=\"H3588\"* ‘The|strong=\"H5002\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* Slaughter|strong=\"H2028\"*’." + }, + { + "verseNum": 7, + "text": "“‘“I|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* the|strong=\"H6440\"* counsel|strong=\"H6098\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* void|strong=\"H1238\"* in|strong=\"H5315\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* before|strong=\"H6440\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* by|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H2088\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* their|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H5038\"* to|strong=\"H5414\"* be|strong=\"H3027\"* food|strong=\"H3978\"* for|strong=\"H6440\"* the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H6440\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* for|strong=\"H6440\"* the|strong=\"H6440\"* animals of|strong=\"H3027\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H5892\"* make|strong=\"H7760\"* this|strong=\"H2063\"* city|strong=\"H5892\"* an|strong=\"H7760\"* astonishment|strong=\"H8047\"* and|strong=\"H5892\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*. Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H5921\"* it|strong=\"H7760\"* will|strong=\"H5892\"* be|strong=\"H5892\"* astonished|strong=\"H8074\"* and|strong=\"H5892\"* hiss|strong=\"H8319\"* because|strong=\"H5921\"* of|strong=\"H5892\"* all|strong=\"H3605\"* its|strong=\"H3605\"* plagues|strong=\"H4347\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5315\"* will|strong=\"H5315\"* cause them|strong=\"H1121\"* to|strong=\"H1121\"* eat the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H1245\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* their|strong=\"H1245\"* daughters|strong=\"H1323\"*. They|strong=\"H5315\"* will|strong=\"H5315\"* each eat the|strong=\"H1245\"* flesh|strong=\"H1320\"* of|strong=\"H1121\"* his|strong=\"H1245\"* friend|strong=\"H7453\"* in|strong=\"H1320\"* the|strong=\"H1245\"* siege|strong=\"H4692\"* and|strong=\"H1121\"* in|strong=\"H1320\"* the|strong=\"H1245\"* distress|strong=\"H6693\"* with|strong=\"H5315\"* which|strong=\"H1323\"* their|strong=\"H1245\"* enemies, and|strong=\"H1121\"* those|strong=\"H1121\"* who|strong=\"H1121\"* seek|strong=\"H1245\"* their|strong=\"H1245\"* life|strong=\"H5315\"*, will|strong=\"H5315\"* distress|strong=\"H6693\"* them|strong=\"H1121\"*.”’" + }, + { + "verseNum": 10, + "text": "“Then|strong=\"H1980\"* you|strong=\"H5869\"* shall|strong=\"H5869\"* break|strong=\"H7665\"* the|strong=\"H7665\"* container in|strong=\"H1980\"* the|strong=\"H7665\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H7665\"* men|strong=\"H1980\"* who|strong=\"H1980\"* go|strong=\"H1980\"* with|strong=\"H1980\"* you|strong=\"H5869\"*," + }, + { + "verseNum": 11, + "text": "and|strong=\"H3068\"* shall|strong=\"H3068\"* tell them|strong=\"H7665\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Even|strong=\"H5750\"* so|strong=\"H3541\"* I|strong=\"H3541\"* will|strong=\"H3068\"* break|strong=\"H7665\"* this|strong=\"H2088\"* people|strong=\"H5971\"* and|strong=\"H3068\"* this|strong=\"H2088\"* city|strong=\"H5892\"* as|strong=\"H3068\"* one|strong=\"H2088\"* breaks|strong=\"H7665\"* a|strong=\"H3068\"* potter|strong=\"H3335\"*’s vessel|strong=\"H3627\"*, that|strong=\"H5971\"* can|strong=\"H3201\"*’t be|strong=\"H3808\"* made|strong=\"H3335\"* whole|strong=\"H7495\"* again|strong=\"H5750\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* bury|strong=\"H6912\"* in|strong=\"H3068\"* Topheth|strong=\"H8612\"* until|strong=\"H3068\"* there|strong=\"H2088\"* is|strong=\"H3068\"* no|strong=\"H3808\"* place|strong=\"H4725\"* to|strong=\"H3201\"* bury|strong=\"H6912\"*." + }, + { + "verseNum": 12, + "text": "This|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* to|strong=\"H3068\"* its|strong=\"H5414\"* inhabitants|strong=\"H3427\"*, even|strong=\"H3651\"* making|strong=\"H6213\"* this|strong=\"H2088\"* city|strong=\"H5892\"* as|strong=\"H6213\"* Topheth|strong=\"H8612\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H1004\"* are|strong=\"H8064\"* defiled|strong=\"H2931\"*, will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H3605\"* place|strong=\"H4725\"* of|strong=\"H4428\"* Topheth|strong=\"H8612\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* on|strong=\"H5921\"* whose|strong=\"H3605\"* roofs|strong=\"H1406\"* they|strong=\"H5921\"* have|strong=\"H1961\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H6635\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* have|strong=\"H1961\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H1961\"* other|strong=\"H3605\"* gods.”’”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H7971\"* Jeremiah|strong=\"H3414\"* came|strong=\"H3068\"* from|strong=\"H7971\"* Topheth|strong=\"H8612\"*, where|strong=\"H8033\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H3068\"* prophesy|strong=\"H5012\"*, and|strong=\"H3068\"* he|strong=\"H8033\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 15, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H3478\"* on|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* towns|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* it|strong=\"H5921\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H7185\"* their|strong=\"H3605\"* neck|strong=\"H6203\"* stiff|strong=\"H7185\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* not|strong=\"H1115\"* hear|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*.’”" + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H8085\"* Pashhur|strong=\"H6583\"*, the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Immer the|strong=\"H8085\"* priest|strong=\"H3548\"*, who|strong=\"H1931\"* was|strong=\"H3068\"* chief|strong=\"H5057\"* officer|strong=\"H5057\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, heard|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* prophesying|strong=\"H5012\"* these|strong=\"H8085\"* things|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5414\"* Pashhur|strong=\"H6583\"* struck|strong=\"H5221\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* and|strong=\"H3068\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H5921\"* stocks|strong=\"H4115\"* that|strong=\"H3068\"* were|strong=\"H1144\"* in|strong=\"H5921\"* the|strong=\"H5921\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Benjamin|strong=\"H1144\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "On|strong=\"H3068\"* the|strong=\"H3588\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, Pashhur|strong=\"H6583\"* released|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* stocks|strong=\"H4115\"*. Then|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* said|strong=\"H7121\"* to|strong=\"H3318\"* him|strong=\"H7121\"*, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* called|strong=\"H7121\"* your|strong=\"H3068\"* name|strong=\"H8034\"* Pashhur|strong=\"H6583\"*, but|strong=\"H3588\"* Magormissabib.+ 20:3 “Magormissabib” means “surrounded by terror”*" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* terror|strong=\"H4032\"* to|strong=\"H3068\"* yourself|strong=\"H5307\"* and|strong=\"H3063\"* to|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* friends. They|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* of|strong=\"H4428\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H5414\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* into|strong=\"H1540\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* he|strong=\"H3588\"* will|strong=\"H3068\"* carry|strong=\"H1540\"* them|strong=\"H5414\"* captive|strong=\"H1540\"* to|strong=\"H3068\"* Babylon, and|strong=\"H3063\"* will|strong=\"H3068\"* kill|strong=\"H5221\"* them|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 5, + "text": "Moreover I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* riches|strong=\"H2633\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* gains, and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* precious|strong=\"H3366\"* things|strong=\"H3605\"*, yes, I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* treasures of|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3605\"* enemies|strong=\"H3027\"*. They|strong=\"H3605\"* will|strong=\"H4428\"* make|strong=\"H5414\"* them|strong=\"H5414\"* captives, take|strong=\"H3947\"* them|strong=\"H5414\"*, and|strong=\"H3063\"* carry|strong=\"H3947\"* them|strong=\"H5414\"* to|strong=\"H5414\"* Babylon." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"*, Pashhur|strong=\"H6583\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H3605\"* house|strong=\"H1004\"* will|strong=\"H1004\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"*. You|strong=\"H3605\"* will|strong=\"H1004\"* come|strong=\"H3212\"* to|strong=\"H4191\"* Babylon, and|strong=\"H1004\"* there|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H1004\"* die|strong=\"H4191\"*, and|strong=\"H1004\"* there|strong=\"H8033\"* you|strong=\"H3605\"* will|strong=\"H1004\"* be|strong=\"H4191\"* buried|strong=\"H6912\"*, you|strong=\"H3605\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* friends, to|strong=\"H4191\"* whom|strong=\"H1992\"* you|strong=\"H3605\"* have|strong=\"H3605\"* prophesied|strong=\"H5012\"* falsely|strong=\"H8267\"*.’”" + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H3605\"* have|strong=\"H1961\"* persuaded|strong=\"H2388\"* me|strong=\"H2388\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* was|strong=\"H3068\"* persuaded|strong=\"H2388\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* as|strong=\"H1697\"* often|strong=\"H1767\"* as|strong=\"H1697\"* I|strong=\"H3588\"* speak|strong=\"H1696\"*, I|strong=\"H3588\"* cry|strong=\"H7121\"* out|strong=\"H2199\"*;" + }, + { + "verseNum": 9, + "text": "If|strong=\"H1961\"* I|strong=\"H3201\"* say|strong=\"H1696\"* that|strong=\"H3808\"* I|strong=\"H3201\"* will|strong=\"H1961\"* not|strong=\"H3808\"* make|strong=\"H1197\"* mention|strong=\"H2142\"* of|strong=\"H8034\"* him|strong=\"H2142\"*," + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H7965\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* defaming|strong=\"H1681\"* of|strong=\"H4480\"* many|strong=\"H7227\"*:" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H3068\"* me|strong=\"H5921\"* as|strong=\"H3651\"* an|strong=\"H3588\"* awesome mighty|strong=\"H1368\"* one|strong=\"H3808\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, who|strong=\"H3068\"* tests the|strong=\"H7200\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 13, + "text": "Sing|strong=\"H7891\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 14, + "text": "Cursed|strong=\"H1288\"* is|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* in|strong=\"H3117\"* which|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* born|strong=\"H3205\"*." + }, + { + "verseNum": 15, + "text": "Cursed is|strong=\"H1121\"* the|strong=\"H3205\"* man|strong=\"H1121\"* who|strong=\"H1121\"* brought|strong=\"H3205\"* news|strong=\"H1319\"* to|strong=\"H3205\"* my|strong=\"H8055\"* father|strong=\"H3205\"*, saying," + }, + { + "verseNum": 16, + "text": "Let|strong=\"H3808\"* that|strong=\"H8085\"* man be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* overthrew|strong=\"H2015\"*," + }, + { + "verseNum": 17, + "text": "because he|strong=\"H3808\"* didn’t kill|strong=\"H4191\"* me|strong=\"H4191\"* from|strong=\"H1961\"* the|strong=\"H1961\"* womb|strong=\"H7358\"*." + }, + { + "verseNum": 18, + "text": "Why|strong=\"H4100\"* did|strong=\"H4100\"* I|strong=\"H3117\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H7200\"* womb|strong=\"H7358\"* to|strong=\"H3318\"* see|strong=\"H7200\"* labor|strong=\"H5999\"* and|strong=\"H3117\"* sorrow|strong=\"H3015\"*," + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, when|strong=\"H1961\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* him|strong=\"H7971\"* Pashhur|strong=\"H6583\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"*, and|strong=\"H1121\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3068\"* priest|strong=\"H3548\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Please|strong=\"H4994\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* us|strong=\"H4994\"*; for|strong=\"H3588\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon makes|strong=\"H6213\"* war|strong=\"H3898\"* against|strong=\"H5921\"* us|strong=\"H4994\"*. Perhaps|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* with|strong=\"H3068\"* us|strong=\"H4994\"* according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* wondrous|strong=\"H6381\"* works|strong=\"H6381\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* may|strong=\"H4994\"* withdraw|strong=\"H5927\"* from|strong=\"H5921\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3541\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H6667\"* them, “Tell Zedekiah|strong=\"H6667\"*:" + }, + { + "verseNum": 4, + "text": "‘Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* turn|strong=\"H5437\"* back|strong=\"H5437\"* the|strong=\"H5921\"* weapons|strong=\"H3627\"* of|strong=\"H4428\"* war|strong=\"H4421\"* that|strong=\"H3068\"* are|strong=\"H3478\"* in|strong=\"H5921\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5921\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3478\"* against|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3068\"* besiege|strong=\"H6696\"* you|strong=\"H5921\"* outside|strong=\"H2351\"* the|strong=\"H5921\"* walls|strong=\"H2346\"*; and|strong=\"H3478\"* I|strong=\"H2005\"* will|strong=\"H3068\"* gather them|strong=\"H5921\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H7110\"* myself will|strong=\"H3027\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3027\"* with|strong=\"H3898\"* an outstretched|strong=\"H5186\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* with|strong=\"H3898\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* arm|strong=\"H2220\"*, even in|strong=\"H1419\"* anger|strong=\"H2534\"*, in|strong=\"H1419\"* wrath|strong=\"H2534\"*, and|strong=\"H1419\"* in|strong=\"H1419\"* great|strong=\"H1419\"* indignation|strong=\"H7110\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5892\"* will|strong=\"H5892\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, both|strong=\"H4191\"* man|strong=\"H4191\"* and|strong=\"H1419\"* animal. They|strong=\"H5221\"* will|strong=\"H5892\"* die|strong=\"H4191\"* of|strong=\"H3427\"* a|strong=\"H3068\"* great|strong=\"H1419\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 7, + "text": "Afterward,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H5414\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, his|strong=\"H5414\"* servants|strong=\"H5650\"*, and|strong=\"H3063\"* the|strong=\"H5002\"* people|strong=\"H5971\"*, even|strong=\"H3651\"* those|strong=\"H4480\"* who|strong=\"H5971\"* are|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* from|strong=\"H4480\"* the|strong=\"H5002\"* pestilence|strong=\"H1698\"*, from|strong=\"H4480\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, and|strong=\"H3063\"* from|strong=\"H4480\"* the|strong=\"H5002\"* famine|strong=\"H7458\"*, into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H3068\"* enemies|strong=\"H3027\"*, and|strong=\"H3063\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H5971\"* seek|strong=\"H1245\"* their|strong=\"H3068\"* life|strong=\"H5315\"*. He|strong=\"H3651\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* them|strong=\"H5414\"* with|strong=\"H3068\"* the|strong=\"H5002\"* edge|strong=\"H6310\"* of|strong=\"H4428\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*. He|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* spare|strong=\"H2550\"* them|strong=\"H5414\"*, have|strong=\"H7355\"* pity|strong=\"H2347\"*, or|strong=\"H3808\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"*.”’" + }, + { + "verseNum": 8, + "text": "“You|strong=\"H5414\"* shall|strong=\"H3068\"* say to|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* life|strong=\"H2416\"* and|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5921\"* who|strong=\"H5315\"* remains|strong=\"H1961\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H1961\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"*, but|strong=\"H1961\"* he|strong=\"H5921\"* who|strong=\"H5315\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H5892\"* passes over|strong=\"H5921\"* to|strong=\"H3318\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H5315\"* besiege|strong=\"H6696\"* you|strong=\"H5921\"*, he|strong=\"H5921\"* will|strong=\"H1961\"* live|strong=\"H3427\"*, and|strong=\"H5892\"* he|strong=\"H5921\"* will|strong=\"H1961\"* escape|strong=\"H3318\"* with|strong=\"H5921\"* his|strong=\"H5921\"* life|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* on|strong=\"H7760\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H3588\"* evil|strong=\"H7451\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* for|strong=\"H3588\"* good|strong=\"H2896\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “It|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire.”’" + }, + { + "verseNum": 11, + "text": "“Concerning|strong=\"H1697\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 12, + "text": "House|strong=\"H1004\"* of|strong=\"H1004\"* David|strong=\"H1732\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, O|strong=\"H3068\"* inhabitant|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5002\"* valley|strong=\"H6010\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* you|strong=\"H3605\"* according|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*;" + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*, “Go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H1696\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* there|strong=\"H8033\"*:" + }, + { + "verseNum": 2, + "text": "‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H5971\"* sits|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*—you|strong=\"H5921\"*, your|strong=\"H3068\"* servants|strong=\"H5650\"*, and|strong=\"H3063\"* your|strong=\"H3068\"* people|strong=\"H5971\"* who|strong=\"H5971\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* these|strong=\"H8085\"* gates|strong=\"H8179\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Execute|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3068\"* righteousness|strong=\"H6666\"*, and|strong=\"H3068\"* deliver|strong=\"H5337\"* him|strong=\"H3027\"* who|strong=\"H3068\"* is|strong=\"H3068\"* robbed|strong=\"H1497\"* out|strong=\"H8210\"* of|strong=\"H3068\"* the|strong=\"H3541\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H3541\"* oppressor|strong=\"H3238\"*. Do|strong=\"H6213\"* no|strong=\"H6213\"* wrong|strong=\"H3238\"*. Do|strong=\"H6213\"* no|strong=\"H6213\"* violence|strong=\"H2554\"* to|strong=\"H3068\"* the|strong=\"H3541\"* foreigner|strong=\"H1616\"*, the|strong=\"H3541\"* fatherless|strong=\"H3490\"*, or|strong=\"H3068\"* the|strong=\"H3541\"* widow. Don’t shed|strong=\"H8210\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* indeed|strong=\"H3588\"*, then|strong=\"H2088\"* kings|strong=\"H4428\"* sitting|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"* will|strong=\"H4428\"* enter in|strong=\"H3427\"* by|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H4428\"* this|strong=\"H2088\"* house|strong=\"H1004\"*, riding|strong=\"H7392\"* in|strong=\"H3427\"* chariots|strong=\"H7393\"* and|strong=\"H4428\"* on|strong=\"H5921\"* horses|strong=\"H5483\"*—they|strong=\"H3588\"*, their|strong=\"H5921\"* servants|strong=\"H5650\"*, and|strong=\"H4428\"* their|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* these|strong=\"H2088\"* words|strong=\"H1697\"*, I|strong=\"H3588\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* myself,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* this|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*.”’”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* will|strong=\"H5307\"* prepare|strong=\"H6942\"* destroyers|strong=\"H7843\"* against|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "“Many|strong=\"H7227\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* each|strong=\"H5892\"* ask his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, ‘Why|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* done|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H3068\"* this|strong=\"H2063\"* great|strong=\"H1419\"* city|strong=\"H5892\"*?’" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* answer, ‘Because|strong=\"H5921\"* they|strong=\"H3068\"* abandoned|strong=\"H5800\"* the|strong=\"H5921\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, worshiped|strong=\"H7812\"* other gods, and|strong=\"H3068\"* served|strong=\"H5647\"* them|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "Don’t weep|strong=\"H1058\"* for|strong=\"H3588\"* the|strong=\"H7200\"* dead|strong=\"H4191\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* touching Shallum|strong=\"H7967\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* reigned|strong=\"H4427\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* his|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* who|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1121\"* this|strong=\"H2088\"* place|strong=\"H4725\"*: “He|strong=\"H3588\"* won’t return|strong=\"H7725\"* there|strong=\"H8033\"* any|strong=\"H4480\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* die|strong=\"H4191\"* in|strong=\"H4191\"* the|strong=\"H7200\"* place|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3588\"* have|strong=\"H7200\"* led|strong=\"H1540\"* him|strong=\"H7200\"* captive|strong=\"H1540\"*. He|strong=\"H3588\"* will|strong=\"H3808\"* see|strong=\"H7200\"* this|strong=\"H2063\"* land|strong=\"H4725\"* no|strong=\"H3808\"* more|strong=\"H5750\"*.”" + }, + { + "verseNum": 13, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H3808\"* builds|strong=\"H1129\"* his|strong=\"H5414\"* house|strong=\"H1004\"* by|strong=\"H5414\"* unrighteousness|strong=\"H6664\"*," + }, + { + "verseNum": 14, + "text": "who|strong=\"H1129\"* says, ‘I|strong=\"H1004\"* will|strong=\"H1004\"* build|strong=\"H1129\"* myself a|strong=\"H3068\"* wide|strong=\"H4060\"* house|strong=\"H1004\"* and|strong=\"H1004\"* spacious|strong=\"H7304\"* rooms|strong=\"H5944\"*,’" + }, + { + "verseNum": 15, + "text": "“Should|strong=\"H3588\"* you|strong=\"H3588\"* reign|strong=\"H4427\"* because|strong=\"H3588\"* you|strong=\"H3588\"* strive|strong=\"H4941\"* to|strong=\"H6213\"* excel in|strong=\"H6213\"* cedar?" + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* judged|strong=\"H1777\"* the|strong=\"H5002\"* cause|strong=\"H1779\"* of|strong=\"H3068\"* the|strong=\"H5002\"* poor|strong=\"H6041\"* and|strong=\"H3068\"* needy|strong=\"H6041\"*;" + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* your|strong=\"H5921\"* heart|strong=\"H3820\"* are|strong=\"H5869\"* only|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H5921\"* covetousness|strong=\"H1215\"*," + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3068\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3541\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*:" + }, + { + "verseNum": 19, + "text": "He|strong=\"H3389\"* will|strong=\"H3389\"* be|strong=\"H3389\"* buried|strong=\"H6912\"* with|strong=\"H3389\"* the|strong=\"H7993\"* burial|strong=\"H6900\"* of|strong=\"H8179\"* a|strong=\"H3068\"* donkey|strong=\"H2543\"*," + }, + { + "verseNum": 20, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Lebanon|strong=\"H3844\"*, and|strong=\"H6963\"* cry|strong=\"H6817\"* out|strong=\"H5414\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"* in|strong=\"H8085\"* your|strong=\"H8085\"* prosperity|strong=\"H7962\"*," + }, + { + "verseNum": 22, + "text": "The|strong=\"H3605\"* wind|strong=\"H7307\"* will|strong=\"H7307\"* feed|strong=\"H7462\"* all|strong=\"H3605\"* your|strong=\"H3605\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 23, + "text": "Inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Lebanon|strong=\"H3844\"*," + }, + { + "verseNum": 24, + "text": "“As|strong=\"H1961\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “though|strong=\"H3588\"* Coniah|strong=\"H3659\"* the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1961\"* the|strong=\"H5002\"* signet|strong=\"H2368\"* on|strong=\"H5921\"* my|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*, I|strong=\"H3588\"* would|strong=\"H3068\"* still|strong=\"H3588\"* pluck|strong=\"H5423\"* you|strong=\"H3588\"* from|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* would|strong=\"H5315\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* your|strong=\"H5414\"* life|strong=\"H5315\"*, and|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* them|strong=\"H5414\"* of|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* are|strong=\"H3027\"* afraid|strong=\"H3016\"*, even into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* cast|strong=\"H2904\"* you|strong=\"H5921\"* out|strong=\"H5921\"* with|strong=\"H5921\"* your|strong=\"H5921\"* mother who|strong=\"H3205\"* bore|strong=\"H3205\"* you|strong=\"H5921\"* into|strong=\"H5921\"* another|strong=\"H3808\"* country, where|strong=\"H8033\"* you|strong=\"H5921\"* were|strong=\"H3205\"* not|strong=\"H3808\"* born|strong=\"H3205\"*; and|strong=\"H8033\"* there|strong=\"H8033\"* you|strong=\"H5921\"* will|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H5921\"* land to|strong=\"H7725\"* which|strong=\"H1992\"* their|strong=\"H5375\"* soul|strong=\"H5315\"* longs to|strong=\"H7725\"* return|strong=\"H7725\"*, there|strong=\"H8033\"* they|strong=\"H1992\"* will|strong=\"H5315\"* not|strong=\"H3808\"* return|strong=\"H7725\"*.”" + }, + { + "verseNum": 28, + "text": "Is|strong=\"H2088\"* this|strong=\"H2088\"* man|strong=\"H2088\"* Coniah|strong=\"H3659\"* a|strong=\"H3068\"* despised broken|strong=\"H5310\"* vessel|strong=\"H3627\"*?" + }, + { + "verseNum": 29, + "text": "O|strong=\"H3068\"* earth, earth, earth," + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5002\"* shepherds|strong=\"H7462\"* who|strong=\"H3068\"* destroy and|strong=\"H3068\"* scatter|strong=\"H6327\"* the|strong=\"H5002\"* sheep|strong=\"H6629\"* of|strong=\"H3068\"* my|strong=\"H3068\"* pasture|strong=\"H4830\"*!” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"* against|strong=\"H5921\"* the|strong=\"H5002\"* shepherds|strong=\"H7462\"* who|strong=\"H5971\"* feed|strong=\"H7462\"* my|strong=\"H3068\"* people|strong=\"H5971\"*: “You|strong=\"H5921\"* have|strong=\"H3068\"* scattered|strong=\"H6327\"* my|strong=\"H3068\"* flock|strong=\"H6629\"*, driven|strong=\"H5080\"* them|strong=\"H5921\"* away|strong=\"H5080\"*, and|strong=\"H3478\"* have|strong=\"H3068\"* not|strong=\"H3808\"* visited|strong=\"H6485\"* them|strong=\"H5921\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* on|strong=\"H5921\"* you|strong=\"H5921\"* the|strong=\"H5002\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "“I|strong=\"H5921\"* will|strong=\"H6629\"* gather|strong=\"H6908\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H7611\"* my|strong=\"H3605\"* flock|strong=\"H6629\"* out|strong=\"H5080\"* of|strong=\"H7611\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H5921\"* have|strong=\"H3605\"* driven|strong=\"H5080\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* will|strong=\"H6629\"* bring|strong=\"H7725\"* them|strong=\"H5921\"* again|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3605\"* folds|strong=\"H5116\"*; and|strong=\"H7725\"* they|strong=\"H8033\"* will|strong=\"H6629\"* be|strong=\"H7725\"* fruitful|strong=\"H6509\"* and|strong=\"H7725\"* multiply|strong=\"H7235\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* set|strong=\"H6965\"* up|strong=\"H6965\"* shepherds|strong=\"H7462\"* over|strong=\"H5921\"* them|strong=\"H5921\"* who|strong=\"H3068\"* will|strong=\"H3068\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* or|strong=\"H3808\"* dismayed|strong=\"H2865\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* any|strong=\"H5750\"* be|strong=\"H3808\"* lacking|strong=\"H6485\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H6965\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "In|strong=\"H3478\"* his|strong=\"H3068\"* days|strong=\"H3117\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"*," + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H3651\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5927\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* say|strong=\"H3478\"*, ‘As|strong=\"H3117\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3068\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*;’" + }, + { + "verseNum": 8, + "text": "but|strong=\"H3588\"*, ‘As|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*, who|strong=\"H3605\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3478\"* who|strong=\"H3605\"* led|strong=\"H3068\"* the|strong=\"H3605\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* out|strong=\"H5080\"* of|strong=\"H1004\"* the|strong=\"H3605\"* north|strong=\"H6828\"* country, and|strong=\"H3478\"* from|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H3588\"* had|strong=\"H3068\"* driven|strong=\"H5080\"* them|strong=\"H5921\"*.’ Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* own land.”" + }, + { + "verseNum": 9, + "text": "Concerning|strong=\"H1697\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*:" + }, + { + "verseNum": 10, + "text": "“For|strong=\"H3588\"* the|strong=\"H6440\"* land|strong=\"H6440\"* is|strong=\"H3651\"* full|strong=\"H4390\"* of|strong=\"H6440\"* adulterers|strong=\"H5003\"*;" + }, + { + "verseNum": 11, + "text": "for|strong=\"H3588\"* both|strong=\"H1571\"* prophet|strong=\"H5030\"* and|strong=\"H3068\"* priest|strong=\"H3548\"* are|strong=\"H3068\"* profane|strong=\"H2610\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* their|strong=\"H3068\"* way|strong=\"H1870\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* them|strong=\"H1992\"* as|strong=\"H1961\"* slippery|strong=\"H2519\"* places|strong=\"H1992\"* in|strong=\"H8141\"* the|strong=\"H5002\"* darkness." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H7200\"* have|strong=\"H5971\"* seen|strong=\"H7200\"* folly|strong=\"H8604\"* in|strong=\"H3478\"* the|strong=\"H7200\"* prophets|strong=\"H5030\"* of|strong=\"H5971\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 14, + "text": "In|strong=\"H3427\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"* I|strong=\"H7200\"* have|strong=\"H1961\"* also|strong=\"H3027\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"*:" + }, + { + "verseNum": 15, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*:" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* say|strong=\"H1696\"* continually|strong=\"H3605\"* to|strong=\"H1696\"* those|strong=\"H3605\"* who|strong=\"H3605\"* despise|strong=\"H5006\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* who|strong=\"H4310\"* has|strong=\"H3068\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* the|strong=\"H8085\"* council|strong=\"H5475\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s storm|strong=\"H5591\"*, his|strong=\"H3068\"* wrath|strong=\"H2534\"*, has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s anger will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* until|strong=\"H5704\"* he|strong=\"H3117\"* has|strong=\"H3068\"* executed|strong=\"H6213\"*" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* didn’t send|strong=\"H7971\"* these|strong=\"H1992\"* prophets|strong=\"H5030\"*, yet|strong=\"H3808\"* they|strong=\"H1992\"* ran|strong=\"H7323\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H8085\"* if they|strong=\"H5971\"* had|strong=\"H5971\"* stood|strong=\"H5975\"* in|strong=\"H8085\"* my|strong=\"H8085\"* council|strong=\"H5475\"*," + }, + { + "verseNum": 23, + "text": "“Am|strong=\"H3068\"* I|strong=\"H3808\"* a|strong=\"H3068\"* God|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 24, + "text": "Can|strong=\"H7200\"* anyone|strong=\"H7200\"* hide|strong=\"H5641\"* himself|strong=\"H3068\"* in|strong=\"H3068\"* secret|strong=\"H5641\"* places|strong=\"H4565\"*" + }, + { + "verseNum": 25, + "text": "“I|strong=\"H8085\"* have|strong=\"H5030\"* heard|strong=\"H8085\"* what|strong=\"H8085\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* have|strong=\"H5030\"* said|strong=\"H8085\"*, who|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"* in|strong=\"H8085\"* my|strong=\"H8085\"* name|strong=\"H8034\"*, saying, ‘I|strong=\"H8085\"* had|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2492\"*! I|strong=\"H8085\"* had|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2492\"*!’" + }, + { + "verseNum": 26, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3820\"* this|strong=\"H3820\"* be|strong=\"H3426\"* in|strong=\"H5030\"* the|strong=\"H5704\"* heart|strong=\"H3820\"* of|strong=\"H3820\"* the|strong=\"H5704\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* prophesy|strong=\"H5012\"* lies|strong=\"H8267\"*, even|strong=\"H5704\"* the|strong=\"H5704\"* prophets|strong=\"H5030\"* of|strong=\"H3820\"* the|strong=\"H5704\"* deceit|strong=\"H8267\"* of|strong=\"H3820\"* their|strong=\"H3820\"* own heart|strong=\"H3820\"*?" + }, + { + "verseNum": 27, + "text": "They|strong=\"H5971\"* intend|strong=\"H2803\"* to|strong=\"H2803\"* cause|strong=\"H5971\"* my|strong=\"H5608\"* people|strong=\"H5971\"* to|strong=\"H2803\"* forget|strong=\"H7911\"* my|strong=\"H5608\"* name|strong=\"H8034\"* by|strong=\"H8034\"* their|strong=\"H7911\"* dreams|strong=\"H2472\"* which|strong=\"H5971\"* they|strong=\"H5971\"* each|strong=\"H5971\"* tell|strong=\"H5608\"* his|strong=\"H7911\"* neighbor|strong=\"H7453\"*, as|strong=\"H2803\"* their|strong=\"H7911\"* fathers forgot|strong=\"H7911\"* my|strong=\"H5608\"* name|strong=\"H8034\"* because of|strong=\"H8034\"* Baal|strong=\"H1168\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H5002\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* has|strong=\"H3068\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, let him|strong=\"H1697\"* tell|strong=\"H1696\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* my|strong=\"H3068\"* word|strong=\"H1697\"*, let him|strong=\"H1697\"* speak|strong=\"H1696\"* my|strong=\"H3068\"* word|strong=\"H1697\"* faithfully. What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H5002\"* straw|strong=\"H8401\"* to|strong=\"H1696\"* the|strong=\"H5002\"* wheat|strong=\"H1250\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“Isn’t my|strong=\"H3068\"* word|strong=\"H1697\"* like|strong=\"H3808\"* fire?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “and|strong=\"H3068\"* like|strong=\"H3808\"* a|strong=\"H3068\"* hammer|strong=\"H6360\"* that|strong=\"H3068\"* breaks the|strong=\"H5002\"* rock|strong=\"H5553\"* in|strong=\"H3068\"* pieces|strong=\"H6327\"*?" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* each steal|strong=\"H1589\"* my|strong=\"H3068\"* words|strong=\"H1697\"* from|strong=\"H5921\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 31, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H3068\"* use|strong=\"H3947\"* their|strong=\"H3068\"* tongues|strong=\"H3956\"*, and|strong=\"H3068\"* say|strong=\"H5001\"*, ‘He|strong=\"H3068\"* says|strong=\"H5002\"*.’" + }, + { + "verseNum": 32, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5971\"* prophesy|strong=\"H5012\"* lying|strong=\"H8267\"* dreams|strong=\"H2472\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “who|strong=\"H5971\"* tell|strong=\"H5608\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* cause|strong=\"H8267\"* my|strong=\"H3068\"* people|strong=\"H5971\"* to|strong=\"H3068\"* err|strong=\"H8582\"* by|strong=\"H5921\"* their|strong=\"H3068\"* lies|strong=\"H8267\"*, and|strong=\"H3068\"* by|strong=\"H5921\"* their|strong=\"H3068\"* vain|strong=\"H8267\"* boasting|strong=\"H6350\"*; yet|strong=\"H3068\"* I|strong=\"H2005\"* didn’t send|strong=\"H7971\"* them|strong=\"H5921\"* or|strong=\"H3808\"* command|strong=\"H6680\"* them|strong=\"H5921\"*. They|strong=\"H3068\"* don’t profit|strong=\"H3276\"* this|strong=\"H2088\"* people|strong=\"H5971\"* at|strong=\"H5921\"* all|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, or|strong=\"H3068\"* the|strong=\"H5002\"* prophet|strong=\"H5030\"*, or|strong=\"H3068\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*, asks|strong=\"H7592\"* you|strong=\"H3588\"*, saying, ‘What|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H5002\"* message|strong=\"H4853\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*?’ Then|strong=\"H2088\"* you|strong=\"H3588\"* shall|strong=\"H3548\"* tell them|strong=\"H3588\"*, ‘“What|strong=\"H4100\"* message|strong=\"H4853\"*? I|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H3068\"* you|strong=\"H3588\"* off|strong=\"H5203\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 34, + "text": "As|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* people|strong=\"H5971\"*, who|strong=\"H1931\"* say, ‘The|strong=\"H5921\"* message|strong=\"H4853\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*,’ I|strong=\"H5921\"* will|strong=\"H3068\"* even|strong=\"H3068\"* punish|strong=\"H6485\"* that|strong=\"H5971\"* man and|strong=\"H3068\"* his|strong=\"H3068\"* household|strong=\"H1004\"*." + }, + { + "verseNum": 35, + "text": "You|strong=\"H5921\"* will|strong=\"H3068\"* say|strong=\"H1696\"* everyone to|strong=\"H1696\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* everyone to|strong=\"H1696\"* his|strong=\"H3068\"* brother|strong=\"H7453\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"*?’ and|strong=\"H3068\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* said|strong=\"H1696\"*?’" + }, + { + "verseNum": 36, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* mention|strong=\"H2142\"* the|strong=\"H3588\"* message|strong=\"H1697\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"*, for|strong=\"H3588\"* every|strong=\"H1697\"* man|strong=\"H2416\"*’s own|strong=\"H1961\"* word|strong=\"H1697\"* has|strong=\"H3068\"* become|strong=\"H1961\"* his|strong=\"H3068\"* message|strong=\"H1697\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* perverted|strong=\"H2015\"* the|strong=\"H3588\"* words|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3588\"* living|strong=\"H2416\"* God|strong=\"H3068\"*, of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, our|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H4100\"* will|strong=\"H3068\"* say|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3541\"* prophet|strong=\"H5030\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* you|strong=\"H4100\"*?’ and|strong=\"H3068\"*, ‘What|strong=\"H4100\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoken|strong=\"H1696\"*?’" + }, + { + "verseNum": 38, + "text": "Although|strong=\"H3808\"* you|strong=\"H7971\"* say|strong=\"H1697\"*, ‘The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,’ therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H7971\"* say|strong=\"H1697\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, “The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,” and|strong=\"H3068\"* I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H7971\"*, telling you|strong=\"H7971\"* not|strong=\"H3808\"* to|strong=\"H3068\"* say|strong=\"H1697\"*, “The|strong=\"H3541\"* message|strong=\"H1697\"* from|strong=\"H7971\"* Yahweh|strong=\"H3068\"*,”" + }, + { + "verseNum": 39, + "text": "therefore|strong=\"H3651\"* behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* utterly|strong=\"H5377\"* forget|strong=\"H5382\"* you|strong=\"H5414\"*, and|strong=\"H5892\"* I|strong=\"H2005\"* will|strong=\"H5892\"* cast|strong=\"H5414\"* you|strong=\"H5414\"* off|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"* that|strong=\"H3651\"* I|strong=\"H2005\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H5892\"* to|strong=\"H5921\"* your|strong=\"H5414\"* fathers, away|strong=\"H5414\"* from|strong=\"H6440\"* my|strong=\"H5414\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* reproach|strong=\"H2781\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H5769\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* shame|strong=\"H2781\"*, which will|strong=\"H5414\"* not|strong=\"H3808\"* be|strong=\"H3808\"* forgotten|strong=\"H7911\"*.’”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H6440\"*, and|strong=\"H1121\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* baskets|strong=\"H1736\"* of|strong=\"H1121\"* figs|strong=\"H8384\"* were|strong=\"H1121\"* set|strong=\"H3259\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*, after|strong=\"H7200\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* Jeconiah|strong=\"H3204\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H6440\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* craftsmen|strong=\"H2796\"* and|strong=\"H1121\"* smiths|strong=\"H4525\"*, from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* had|strong=\"H3068\"* brought|strong=\"H3068\"* them|strong=\"H6440\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 2, + "text": "One|strong=\"H3808\"* basket|strong=\"H1731\"* had|strong=\"H1731\"* very|strong=\"H3966\"* good|strong=\"H2896\"* figs|strong=\"H8384\"*, like|strong=\"H3808\"* the|strong=\"H3808\"* figs|strong=\"H8384\"* that|strong=\"H7451\"* are|strong=\"H2896\"* first-ripe; and|strong=\"H2896\"* the|strong=\"H3808\"* other basket|strong=\"H1731\"* had|strong=\"H1731\"* very|strong=\"H3966\"* bad|strong=\"H7451\"* figs|strong=\"H8384\"*, which|strong=\"H7451\"* could not|strong=\"H3808\"* be|strong=\"H3808\"* eaten, they|strong=\"H3808\"* were|strong=\"H7451\"* so|strong=\"H3808\"* bad|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H7200\"* Yahweh|strong=\"H3068\"* asked|strong=\"H4100\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3808\"* see|strong=\"H7200\"*, Jeremiah|strong=\"H3414\"*?”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Like|strong=\"H3651\"* these|strong=\"H2088\"* good|strong=\"H2896\"* figs|strong=\"H8384\"*, so|strong=\"H3651\"* I|strong=\"H3541\"* will|strong=\"H3068\"* regard|strong=\"H4480\"* the|strong=\"H3541\"* captives|strong=\"H1546\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, whom I|strong=\"H3541\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* out|strong=\"H7971\"* of|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"* into|strong=\"H3063\"* the|strong=\"H3541\"* land|strong=\"H4725\"* of|strong=\"H3068\"* the|strong=\"H3541\"* Chaldeans|strong=\"H3778\"*, as|strong=\"H3651\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* good|strong=\"H2896\"*, and|strong=\"H7725\"* I|strong=\"H5921\"* will|strong=\"H5869\"* bring|strong=\"H7725\"* them|strong=\"H5921\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* land. I|strong=\"H5921\"* will|strong=\"H5869\"* build|strong=\"H1129\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pull|strong=\"H2040\"* them|strong=\"H5921\"* down|strong=\"H2040\"*. I|strong=\"H5921\"* will|strong=\"H5869\"* plant|strong=\"H5193\"* them|strong=\"H5921\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pluck|strong=\"H5428\"* them|strong=\"H5921\"* up|strong=\"H1129\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* to|strong=\"H7725\"* know|strong=\"H3045\"* me|strong=\"H5414\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3068\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H5414\"* with|strong=\"H3068\"* their|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "“‘As|strong=\"H3651\"* the|strong=\"H3588\"* bad|strong=\"H7451\"* figs|strong=\"H8384\"*, which|strong=\"H3068\"* can|strong=\"H7451\"*’t be|strong=\"H3808\"* eaten, they|strong=\"H3588\"* are|strong=\"H3068\"* so|strong=\"H3651\"* bad|strong=\"H7451\"*,’ surely|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘So|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* up|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* his|strong=\"H5414\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* the|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"* who|strong=\"H3068\"* remain|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land, and|strong=\"H3063\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* even give|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H5414\"* tossed back and|strong=\"H8033\"* forth|strong=\"H5414\"* among|strong=\"H8148\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4725\"* the|strong=\"H3605\"* earth for|strong=\"H3605\"* evil|strong=\"H7451\"*, to|strong=\"H5414\"* be|strong=\"H5414\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* and|strong=\"H8033\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, a|strong=\"H3068\"* taunt|strong=\"H8148\"* and|strong=\"H8033\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, in|strong=\"H4725\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H5414\"* will|strong=\"H5414\"* drive|strong=\"H5080\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* send|strong=\"H7971\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H7971\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"* among|strong=\"H5921\"* them|strong=\"H5414\"*, until|strong=\"H5704\"* they|strong=\"H1992\"* are|strong=\"H1992\"* consumed|strong=\"H8552\"* from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* land that|strong=\"H5414\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5704\"* them|strong=\"H5414\"* and|strong=\"H7971\"* to|strong=\"H5704\"* their|strong=\"H5414\"* fathers.’”" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H5971\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* (this|strong=\"H1931\"* was|strong=\"H1961\"* the|strong=\"H3605\"* first|strong=\"H1121\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon)," + }, + { + "verseNum": 2, + "text": "which|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 3, + "text": "From|strong=\"H4480\"* the|strong=\"H8085\"* thirteenth|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, even|strong=\"H5704\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, these|strong=\"H2088\"* twenty-three|strong=\"H6242\"* years|strong=\"H8141\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H1696\"* me|strong=\"H4480\"*, and|strong=\"H1121\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3117\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H1121\"* speaking|strong=\"H1696\"*; but|strong=\"H3808\"* you|strong=\"H3117\"* have|strong=\"H1961\"* not|strong=\"H3808\"* listened|strong=\"H8085\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"* all|strong=\"H3605\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"* them|strong=\"H7971\"* (but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* or|strong=\"H3808\"* inclined|strong=\"H5186\"* your|strong=\"H3068\"* ear|strong=\"H8085\"* to|strong=\"H3068\"* hear|strong=\"H8085\"*)," + }, + { + "verseNum": 5, + "text": "saying, “Return|strong=\"H7725\"* now|strong=\"H4994\"* everyone from|strong=\"H4480\"* his|strong=\"H5414\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* from|strong=\"H4480\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* given|strong=\"H5414\"* to|strong=\"H5704\"* you|strong=\"H5414\"* and|strong=\"H3068\"* to|strong=\"H5704\"* your|strong=\"H3068\"* fathers, from|strong=\"H4480\"* of|strong=\"H3068\"* old|strong=\"H5769\"* and|strong=\"H3068\"* even|strong=\"H5704\"* forever|strong=\"H5769\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 6, + "text": "Don’t go|strong=\"H3212\"* after other gods to|strong=\"H3212\"* serve|strong=\"H5647\"* them|strong=\"H3027\"* or|strong=\"H3808\"* worship|strong=\"H7812\"* them|strong=\"H3027\"*, and|strong=\"H3027\"* don’t provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H3212\"* anger|strong=\"H3707\"* with|strong=\"H3212\"* the|strong=\"H5647\"* work|strong=\"H4639\"* of|strong=\"H3027\"* your|strong=\"H3808\"* hands|strong=\"H3027\"*; then|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3027\"* do|strong=\"H5647\"* you|strong=\"H3808\"* no|strong=\"H3808\"* harm|strong=\"H7489\"*.”" + }, + { + "verseNum": 7, + "text": "“Yet|strong=\"H3068\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H3707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H8085\"* you|strong=\"H3808\"* may|strong=\"H3068\"* provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H3068\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* the|strong=\"H5002\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* to|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H3027\"* hurt|strong=\"H7451\"*.”" + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* you|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* and|strong=\"H3068\"* take|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4428\"* the|strong=\"H3605\"* north|strong=\"H6828\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* to|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H3605\"* servant|strong=\"H5650\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H3947\"* them|strong=\"H5921\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land|strong=\"H4940\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*, and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* around|strong=\"H5439\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* utterly|strong=\"H2763\"* destroy|strong=\"H2763\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* make|strong=\"H7760\"* them|strong=\"H5921\"* an|strong=\"H3947\"* astonishment|strong=\"H8047\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolations|strong=\"H2723\"*." + }, + { + "verseNum": 10, + "text": "Moreover I|strong=\"H6963\"* will|strong=\"H6963\"* take from|strong=\"H6963\"* them|strong=\"H1992\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* mirth|strong=\"H8057\"* and|strong=\"H6963\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* gladness|strong=\"H8057\"*, the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* bridegroom|strong=\"H2860\"* and|strong=\"H6963\"* the|strong=\"H6963\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* bride|strong=\"H3618\"*, the|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* millstones|strong=\"H7347\"*, and|strong=\"H6963\"* the|strong=\"H6963\"* light|strong=\"H5216\"* of|strong=\"H6963\"* the|strong=\"H6963\"* lamp|strong=\"H5216\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H2063\"* whole|strong=\"H3605\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, and|strong=\"H4428\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*; and|strong=\"H4428\"* these|strong=\"H2063\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* serve|strong=\"H5647\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "“It|strong=\"H7760\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, when|strong=\"H1961\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* are|strong=\"H1471\"* accomplished|strong=\"H4390\"*, that|strong=\"H1931\"* I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3068\"* that|strong=\"H1931\"* nation|strong=\"H1471\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “for|strong=\"H5921\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* make|strong=\"H7760\"* the|strong=\"H5002\"* land of|strong=\"H4428\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"* desolate|strong=\"H8077\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* bring on|strong=\"H5921\"* that|strong=\"H3605\"* land all|strong=\"H3605\"* my|strong=\"H3605\"* words|strong=\"H1697\"* which|strong=\"H1931\"* I|strong=\"H5921\"* have|strong=\"H1471\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* it|strong=\"H1931\"*, even|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* is|strong=\"H2088\"* written|strong=\"H3789\"* in|strong=\"H5921\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, which|strong=\"H1931\"* Jeremiah|strong=\"H3414\"* has|strong=\"H1471\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* and|strong=\"H4428\"* great|strong=\"H1419\"* kings|strong=\"H4428\"* will|strong=\"H1471\"* make|strong=\"H7999\"* bondservants of|strong=\"H4428\"* them|strong=\"H1992\"*, even|strong=\"H1571\"* of|strong=\"H4428\"* them|strong=\"H1992\"*. I|strong=\"H3588\"* will|strong=\"H1471\"* recompense|strong=\"H7999\"* them|strong=\"H1992\"* according|strong=\"H3027\"* to|strong=\"H3027\"* their|strong=\"H1992\"* deeds|strong=\"H4639\"*, and|strong=\"H4428\"* according|strong=\"H3027\"* to|strong=\"H3027\"* the|strong=\"H3588\"* work|strong=\"H4639\"* of|strong=\"H4428\"* their|strong=\"H1992\"* hands|strong=\"H3027\"*.”" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* me|strong=\"H7971\"*: “Take|strong=\"H3947\"* this|strong=\"H2063\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* the|strong=\"H3605\"* wine|strong=\"H3196\"* of|strong=\"H3068\"* wrath|strong=\"H2534\"* from|strong=\"H3478\"* my|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3478\"* cause all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3478\"* whom|strong=\"H3588\"* I|strong=\"H3588\"* send|strong=\"H7971\"* you|strong=\"H3588\"* to|strong=\"H3478\"* drink|strong=\"H8248\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 16, + "text": "They|strong=\"H6440\"* will|strong=\"H2719\"* drink|strong=\"H8354\"*, and|strong=\"H7971\"* reel back and|strong=\"H7971\"* forth|strong=\"H7971\"*, and|strong=\"H7971\"* be|strong=\"H6440\"* insane, because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* that|strong=\"H2719\"* I|strong=\"H6440\"* will|strong=\"H2719\"* send|strong=\"H7971\"* among|strong=\"H2719\"* them|strong=\"H7971\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H3947\"* I|strong=\"H3027\"* took|strong=\"H3947\"* the|strong=\"H3605\"* cup|strong=\"H3563\"* at|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*, and|strong=\"H3068\"* made|strong=\"H8248\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3068\"* drink|strong=\"H8248\"*, to|strong=\"H3068\"* whom Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"*:" + }, + { + "verseNum": 18, + "text": "Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, with|strong=\"H3389\"* its|strong=\"H5414\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* its|strong=\"H5414\"* princes|strong=\"H8269\"*, to|strong=\"H5414\"* make|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, an|strong=\"H5414\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H3063\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, as|strong=\"H3117\"* it|strong=\"H5414\"* is|strong=\"H2088\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 19, + "text": "Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, with|strong=\"H4714\"* his|strong=\"H3605\"* servants|strong=\"H5650\"*, his|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H6154\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land of|strong=\"H4428\"* Uz|strong=\"H5780\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, Ashkelon, Gaza|strong=\"H5804\"*, Ekron|strong=\"H6138\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H4428\"* Ashdod;" + }, + { + "verseNum": 21, + "text": "Edom, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H1121\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Tyre|strong=\"H6865\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Sidon|strong=\"H6721\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* isle which|strong=\"H4428\"* is|strong=\"H3605\"* beyond|strong=\"H5676\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*;" + }, + { + "verseNum": 23, + "text": "Dedan|strong=\"H1719\"*, Tema|strong=\"H8485\"*, Buz, and|strong=\"H3605\"* all|strong=\"H3605\"* who|strong=\"H3605\"* have|strong=\"H3605\"* the|strong=\"H3605\"* corners|strong=\"H6285\"* of|strong=\"H3605\"* their|strong=\"H3605\"* beard cut|strong=\"H7112\"* off|strong=\"H7112\"*;" + }, + { + "verseNum": 24, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Arabia|strong=\"H6152\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H6154\"* who|strong=\"H3605\"* dwell|strong=\"H7931\"* in|strong=\"H4428\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*;" + }, + { + "verseNum": 25, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Zimri|strong=\"H2174\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Elam|strong=\"H5867\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Medes|strong=\"H4074\"*;" + }, + { + "verseNum": 26, + "text": "and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, far|strong=\"H7350\"* and|strong=\"H4428\"* near|strong=\"H7138\"*, one|strong=\"H3605\"* with|strong=\"H5921\"* another|strong=\"H6440\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* world, which|strong=\"H4428\"* are|strong=\"H4428\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth. The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Sheshach|strong=\"H8347\"* will|strong=\"H4428\"* drink|strong=\"H8354\"* after|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 27, + "text": "“You|strong=\"H6440\"* shall|strong=\"H3068\"* tell them|strong=\"H7971\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Drink|strong=\"H8354\"*, and|strong=\"H6965\"* be|strong=\"H3808\"* drunk|strong=\"H8354\"*, vomit|strong=\"H7006\"*, fall|strong=\"H5307\"*, and|strong=\"H6965\"* rise|strong=\"H6965\"* no|strong=\"H3808\"* more|strong=\"H3808\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sword|strong=\"H2719\"* which|strong=\"H3068\"* I|strong=\"H3541\"* will|strong=\"H3068\"* send|strong=\"H7971\"* among|strong=\"H2719\"* you|strong=\"H6440\"*.”’" + }, + { + "verseNum": 28, + "text": "It|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"*, if|strong=\"H3588\"* they|strong=\"H3588\"* refuse|strong=\"H3985\"* to|strong=\"H3068\"* take|strong=\"H3947\"* the|strong=\"H3588\"* cup|strong=\"H3563\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* drink|strong=\"H8354\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* tell them|strong=\"H3027\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “You|strong=\"H3588\"* shall|strong=\"H3068\"* surely|strong=\"H3588\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 29, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* begin|strong=\"H2490\"* to|strong=\"H3068\"* work|strong=\"H7489\"* evil|strong=\"H7489\"* at|strong=\"H3427\"* the|strong=\"H3605\"* city|strong=\"H5892\"* which|strong=\"H3068\"* is|strong=\"H3068\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*; and|strong=\"H3068\"* should|strong=\"H3068\"* you|strong=\"H3588\"* be|strong=\"H3808\"* utterly|strong=\"H7489\"* unpunished|strong=\"H5352\"*? You|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* unpunished|strong=\"H5352\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* call|strong=\"H7121\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*.”’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H5921\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* words|strong=\"H1697\"*, and|strong=\"H3068\"* tell|strong=\"H3605\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 31, + "text": "A|strong=\"H3068\"* noise|strong=\"H7588\"* will|strong=\"H3068\"* come even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth;" + }, + { + "verseNum": 32, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 33, + "text": "The|strong=\"H6440\"* slain|strong=\"H2491\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* from|strong=\"H6440\"* one|strong=\"H3808\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H6440\"* other|strong=\"H7097\"* end|strong=\"H7097\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth. They|strong=\"H3117\"* won’t be|strong=\"H1961\"* lamented|strong=\"H5594\"*. They|strong=\"H3117\"* won’t be|strong=\"H1961\"* gathered or|strong=\"H3808\"* buried|strong=\"H6912\"*. They|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* dung|strong=\"H1828\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 34, + "text": "Wail|strong=\"H3213\"*, you|strong=\"H3588\"* shepherds|strong=\"H7462\"*, and|strong=\"H3117\"* cry|strong=\"H2199\"*." + }, + { + "verseNum": 35, + "text": "The|strong=\"H4480\"* shepherds|strong=\"H7462\"* will|strong=\"H6629\"* have|strong=\"H7462\"* no|strong=\"H4480\"* way|strong=\"H4498\"* to|strong=\"H4480\"* flee." + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cry|strong=\"H6818\"* of|strong=\"H3068\"* the|strong=\"H3588\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 37, + "text": "The|strong=\"H6440\"* peaceful|strong=\"H7965\"* folds are|strong=\"H3068\"* brought|strong=\"H3068\"* to|strong=\"H3068\"* silence|strong=\"H1826\"*" + }, + { + "verseNum": 38, + "text": "He|strong=\"H3588\"* has|strong=\"H1961\"* left|strong=\"H5800\"* his|strong=\"H6440\"* covert|strong=\"H5520\"*, as|strong=\"H1961\"* the|strong=\"H6440\"* lion|strong=\"H3715\"*;" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3068\"* reign|strong=\"H4468\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* which|strong=\"H3068\"* come|strong=\"H3063\"* to|strong=\"H1696\"* worship|strong=\"H7812\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3541\"* command|strong=\"H6680\"* you|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*. Don’t omit|strong=\"H1639\"* a|strong=\"H3068\"* word|strong=\"H1697\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H6213\"* may|strong=\"H7725\"* be|strong=\"H1870\"* they|strong=\"H6213\"* will|strong=\"H8085\"* listen|strong=\"H8085\"*, and|strong=\"H7725\"* every|strong=\"H7725\"* man|strong=\"H7451\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, that|strong=\"H8085\"* I|strong=\"H8085\"* may|strong=\"H7725\"* relent|strong=\"H5162\"* from|strong=\"H7725\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* which|strong=\"H7451\"* I|strong=\"H8085\"* intend|strong=\"H2803\"* to|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H7725\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* of|strong=\"H6440\"* their|strong=\"H6440\"* doings|strong=\"H4611\"*.’”" + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* shall|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H5414\"*, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘If you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8085\"* law|strong=\"H8451\"* which|strong=\"H3068\"* I|strong=\"H5414\"* have|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 5, + "text": "to|strong=\"H7971\"* listen|strong=\"H8085\"* to|strong=\"H7971\"* the|strong=\"H5921\"* words|strong=\"H1697\"* of|strong=\"H1697\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* whom I|strong=\"H5921\"* send|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H7971\"*, even|strong=\"H3808\"* rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H5921\"*—but|strong=\"H3808\"* you|strong=\"H7971\"* have|strong=\"H5030\"* not|strong=\"H3808\"* listened|strong=\"H8085\"*—" + }, + { + "verseNum": 6, + "text": "then|strong=\"H2088\"* I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* this|strong=\"H2088\"* house|strong=\"H1004\"* like|strong=\"H1004\"* Shiloh|strong=\"H7887\"*, and|strong=\"H1004\"* will|strong=\"H1471\"* make|strong=\"H5414\"* this|strong=\"H2088\"* city|strong=\"H5892\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* to|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H1004\"* the|strong=\"H3605\"* earth.’”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* heard|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* speaking|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* all|strong=\"H3605\"* that|strong=\"H5971\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* commanded|strong=\"H6680\"* him|strong=\"H6680\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* seized|strong=\"H8610\"* him|strong=\"H6680\"*, saying|strong=\"H1696\"*, “You|strong=\"H6680\"* shall|strong=\"H3548\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*!" + }, + { + "verseNum": 9, + "text": "Why|strong=\"H4069\"* have|strong=\"H1961\"* you|strong=\"H3605\"* prophesied|strong=\"H5012\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, saying, ‘This|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* Shiloh|strong=\"H7887\"*, and|strong=\"H3068\"* this|strong=\"H2088\"* city|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H2717\"*, without|strong=\"H1004\"* inhabitant|strong=\"H3427\"*’?” All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* were|strong=\"H1961\"* crowded|strong=\"H6950\"* around Jeremiah|strong=\"H3414\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H8085\"* the|strong=\"H8085\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* heard|strong=\"H8085\"* these|strong=\"H8085\"* things|strong=\"H1697\"*, they|strong=\"H3068\"* came|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5927\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3063\"* they|strong=\"H3068\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* entry|strong=\"H6607\"* of|strong=\"H4428\"* the|strong=\"H8085\"* new|strong=\"H2319\"* gate|strong=\"H8179\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2088\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H4941\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"* spoke to|strong=\"H8085\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H4941\"* to|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “This|strong=\"H2088\"* man|strong=\"H3605\"* is|strong=\"H2088\"* worthy|strong=\"H4941\"* of|strong=\"H8269\"* death|strong=\"H4194\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* prophesied|strong=\"H5012\"* against|strong=\"H5012\"* this|strong=\"H2088\"* city|strong=\"H5892\"*, as|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* with|strong=\"H5971\"* your|strong=\"H3605\"* ears.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H2088\"* Jeremiah|strong=\"H3414\"* spoke|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* prophesy|strong=\"H5012\"* against|strong=\"H5012\"* this|strong=\"H2088\"* house|strong=\"H1004\"* and|strong=\"H3068\"* against|strong=\"H5012\"* this|strong=\"H2088\"* city|strong=\"H5892\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* you|strong=\"H3605\"* have|strong=\"H3068\"* heard|strong=\"H8085\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* amend|strong=\"H3190\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"*, and|strong=\"H3068\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*; then|strong=\"H1696\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* relent|strong=\"H5162\"* from|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* that|strong=\"H8085\"* he|strong=\"H3068\"* has|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "But as|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H6213\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* in|strong=\"H6213\"* your|strong=\"H6213\"* hand|strong=\"H3027\"*. Do|strong=\"H6213\"* with|strong=\"H6213\"* me|strong=\"H6213\"* what|strong=\"H2896\"* is|strong=\"H3027\"* good|strong=\"H2896\"* and|strong=\"H3027\"* right|strong=\"H3477\"* in|strong=\"H6213\"* your|strong=\"H6213\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 15, + "text": "Only|strong=\"H3588\"* know|strong=\"H3045\"* for|strong=\"H3588\"* certain|strong=\"H3045\"* that|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* put|strong=\"H5414\"* me|strong=\"H5414\"* to|strong=\"H1696\"* death|strong=\"H4191\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* yourselves|strong=\"H3605\"*, on|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* on|strong=\"H5921\"* its|strong=\"H3605\"* inhabitants|strong=\"H3427\"*; for|strong=\"H3588\"* in|strong=\"H3427\"* truth Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H5414\"* to|strong=\"H1696\"* you|strong=\"H3588\"* to|strong=\"H1696\"* speak|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3427\"* your|strong=\"H3068\"* ears.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* to|strong=\"H1696\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*: “This|strong=\"H2088\"* man|strong=\"H3605\"* is|strong=\"H3068\"* not|strong=\"H2088\"* worthy|strong=\"H4941\"* of|strong=\"H3068\"* death|strong=\"H4194\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H3588\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H6965\"* certain of|strong=\"H2205\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H2205\"* the|strong=\"H3605\"* land rose|strong=\"H6965\"* up|strong=\"H6965\"*, and|strong=\"H6965\"* spoke to|strong=\"H6965\"* all|strong=\"H3605\"* the|strong=\"H3605\"* assembly|strong=\"H6951\"* of|strong=\"H2205\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 18, + "text": "“Micah|strong=\"H4320\"* the|strong=\"H3605\"* Morashtite prophesied|strong=\"H5012\"* in|strong=\"H3068\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*; and|strong=\"H3063\"* he|strong=\"H3117\"* spoke to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "Did|strong=\"H6213\"* Hezekiah|strong=\"H2396\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* put|strong=\"H4191\"* him|strong=\"H6440\"* to|strong=\"H1696\"* death|strong=\"H4191\"*? Didn’t he|strong=\"H6213\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* entreat|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* of|strong=\"H4428\"* the|strong=\"H3605\"* disaster|strong=\"H7451\"* which|strong=\"H3068\"* he|strong=\"H6213\"* had|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*? We|strong=\"H6213\"* would|strong=\"H3068\"* commit|strong=\"H6213\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* our|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"* that|strong=\"H3605\"* way|strong=\"H6440\"*!”" + }, + { + "verseNum": 20, + "text": "There|strong=\"H1961\"* was|strong=\"H3068\"* also|strong=\"H1571\"* a|strong=\"H3068\"* man|strong=\"H1121\"* who|strong=\"H3605\"* prophesied|strong=\"H5012\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, Uriah the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"* of|strong=\"H1121\"* Kiriath|strong=\"H7157\"* Jearim; and|strong=\"H1121\"* he|strong=\"H3068\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H1121\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land according|strong=\"H5921\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 21, + "text": "When|strong=\"H8085\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, with|strong=\"H1697\"* all|strong=\"H3605\"* his|strong=\"H3605\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* heard|strong=\"H8085\"* his|strong=\"H3605\"* words|strong=\"H1697\"*, the|strong=\"H3605\"* king|strong=\"H4428\"* sought|strong=\"H1245\"* to|strong=\"H4191\"* put|strong=\"H4191\"* him|strong=\"H4191\"* to|strong=\"H4191\"* death|strong=\"H4191\"*; but|strong=\"H8085\"* when|strong=\"H8085\"* Uriah heard|strong=\"H8085\"* it|strong=\"H1245\"*, he|strong=\"H3605\"* was|strong=\"H1697\"* afraid|strong=\"H3372\"*, and|strong=\"H4428\"* fled|strong=\"H1272\"*, and|strong=\"H4428\"* went|strong=\"H4428\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 22, + "text": "Then|strong=\"H7971\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H7971\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Elnathan the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"* and|strong=\"H1121\"* certain men|strong=\"H1121\"* with|strong=\"H4714\"* him|strong=\"H7971\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5971\"* fetched Uriah out|strong=\"H3318\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* brought|strong=\"H3318\"* him|strong=\"H5221\"* to|strong=\"H3318\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5221\"* king|strong=\"H4428\"*, who|strong=\"H5971\"* killed|strong=\"H5221\"* him|strong=\"H5221\"* with|strong=\"H3318\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* and|strong=\"H1121\"* cast|strong=\"H7993\"* his|strong=\"H5221\"* dead|strong=\"H5038\"* body|strong=\"H5038\"* into|strong=\"H3318\"* the|strong=\"H5221\"* graves|strong=\"H6913\"* of|strong=\"H1121\"* the|strong=\"H5221\"* common|strong=\"H1121\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 24, + "text": "But|strong=\"H1961\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* was|strong=\"H1961\"* with|strong=\"H5971\"* Jeremiah|strong=\"H3414\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* they|strong=\"H5971\"* didn’t give|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5414\"* people|strong=\"H5971\"* to|strong=\"H4191\"* put|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*." + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3068\"* reign|strong=\"H4467\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3068\"* me|strong=\"H5414\"*: “Make|strong=\"H6213\"* bonds|strong=\"H4147\"* and|strong=\"H3068\"* bars|strong=\"H4133\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* them|strong=\"H5414\"* on|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H7971\"* send|strong=\"H7971\"* them|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Edom, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H7971\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, and|strong=\"H1121\"* to|strong=\"H7971\"* the|strong=\"H7971\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Sidon|strong=\"H6721\"*, by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H7971\"* messengers|strong=\"H4397\"* who|strong=\"H1121\"* come|strong=\"H3063\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 4, + "text": "Give|strong=\"H6680\"* them|strong=\"H6680\"* a|strong=\"H3068\"* command|strong=\"H6680\"* to|strong=\"H3478\"* their|strong=\"H3068\"* masters, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “You|strong=\"H6680\"* shall|strong=\"H3068\"* tell your|strong=\"H3068\"* masters:" + }, + { + "verseNum": 5, + "text": "‘I|strong=\"H5414\"* have|strong=\"H5869\"* made|strong=\"H6213\"* the|strong=\"H6440\"* earth, the|strong=\"H6440\"* men|strong=\"H1419\"*, and|strong=\"H1419\"* the|strong=\"H6440\"* animals that|strong=\"H5414\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* earth by|strong=\"H5921\"* my|strong=\"H5414\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H1419\"* by|strong=\"H5921\"* my|strong=\"H5414\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. I|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H6213\"* whom|strong=\"H6440\"* it|strong=\"H5414\"* seems|strong=\"H5869\"* right|strong=\"H3474\"* to|strong=\"H6213\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H6258\"* I|strong=\"H5414\"* have|strong=\"H1571\"* given|strong=\"H5414\"* all|strong=\"H3605\"* these|strong=\"H3605\"* lands|strong=\"H7704\"* into|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H5414\"* servant|strong=\"H5650\"*. I|strong=\"H5414\"* have|strong=\"H1571\"* also|strong=\"H1571\"* given|strong=\"H5414\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"* to|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H5414\"* serve|strong=\"H5647\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* serve|strong=\"H5647\"* him|strong=\"H5647\"*, his|strong=\"H3605\"* son|strong=\"H1121\"*, and|strong=\"H1121\"* his|strong=\"H3605\"* son|strong=\"H1121\"*’s son|strong=\"H1121\"*, until|strong=\"H5704\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H1121\"* his|strong=\"H3605\"* own land comes|strong=\"H7227\"*. Then|strong=\"H1571\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* and|strong=\"H1121\"* great|strong=\"H1419\"* kings|strong=\"H4428\"* will|strong=\"H1471\"* make|strong=\"H5647\"* him|strong=\"H5647\"* their|strong=\"H3605\"* bondservant." + }, + { + "verseNum": 8, + "text": "“‘“‘It|strong=\"H5414\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H1931\"* I|strong=\"H5414\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5002\"* nation|strong=\"H1471\"* and|strong=\"H3068\"* the|strong=\"H5002\"* kingdom|strong=\"H4467\"* which|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H5002\"* same|strong=\"H1931\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* that|strong=\"H1931\"* will|strong=\"H3068\"* not|strong=\"H3808\"* put|strong=\"H5414\"* their|strong=\"H3068\"* neck|strong=\"H6677\"* under|strong=\"H5921\"* the|strong=\"H5002\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘with|strong=\"H3068\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, with|strong=\"H3068\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* pestilence|strong=\"H1698\"*, until|strong=\"H5704\"* I|strong=\"H5414\"* have|strong=\"H1961\"* consumed|strong=\"H8552\"* them|strong=\"H5414\"* by|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H3808\"* as|strong=\"H1992\"* for|strong=\"H4428\"* you|strong=\"H3808\"*, don’t listen|strong=\"H8085\"* to|strong=\"H8085\"* your|strong=\"H8085\"* prophets|strong=\"H5030\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* diviners|strong=\"H7080\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* dreams|strong=\"H2472\"*, to|strong=\"H8085\"* your|strong=\"H8085\"* soothsayers|strong=\"H6049\"*, or|strong=\"H3808\"* to|strong=\"H8085\"* your|strong=\"H8085\"* sorcerers|strong=\"H3786\"*, who|strong=\"H5030\"* speak to|strong=\"H8085\"* you|strong=\"H3808\"*, saying, “You|strong=\"H3808\"* shall|strong=\"H4428\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon;”" + }, + { + "verseNum": 10, + "text": "for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H5921\"* you|strong=\"H3588\"*, to|strong=\"H5921\"* remove|strong=\"H7368\"* you|strong=\"H3588\"* far|strong=\"H7368\"* from|strong=\"H5921\"* your|strong=\"H5921\"* land, so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would drive|strong=\"H5080\"* you|strong=\"H3588\"* out|strong=\"H5080\"*, and|strong=\"H5012\"* you|strong=\"H3588\"* would perish." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3068\"* the|strong=\"H5002\"* nation|strong=\"H1471\"* that|strong=\"H3068\"* brings their|strong=\"H3068\"* neck|strong=\"H6677\"* under|strong=\"H5921\"* the|strong=\"H5002\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H5002\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3068\"* serves|strong=\"H5647\"* him|strong=\"H5921\"*, that|strong=\"H3068\"* nation|strong=\"H1471\"* I|strong=\"H5921\"* will|strong=\"H3068\"* let remain|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3068\"* own land,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* till|strong=\"H5647\"* it|strong=\"H5921\"* and|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"*.’”’”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* according to|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*, saying|strong=\"H1697\"*, “Bring your|strong=\"H3605\"* necks|strong=\"H6677\"* under|strong=\"H5647\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* serve|strong=\"H5647\"* him|strong=\"H5647\"* and|strong=\"H3063\"* his|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3063\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 13, + "text": "Why|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3808\"* die|strong=\"H4191\"*, you|strong=\"H3808\"* and|strong=\"H3068\"* your|strong=\"H3068\"* people|strong=\"H5971\"*, by|strong=\"H3068\"* the|strong=\"H5647\"* sword|strong=\"H2719\"*, by|strong=\"H3068\"* the|strong=\"H5647\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H5647\"* pestilence|strong=\"H1698\"*, as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H3068\"* the|strong=\"H5647\"* nation|strong=\"H1471\"* that|strong=\"H5971\"* will|strong=\"H3068\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon?" + }, + { + "verseNum": 14, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H8085\"* the|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* speak|strong=\"H1697\"* to|strong=\"H8085\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘You|strong=\"H3588\"* shall|strong=\"H4428\"* not|strong=\"H3808\"* serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon;’ for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H8085\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “but|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*; that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* drive|strong=\"H5080\"* you|strong=\"H3588\"* out|strong=\"H7971\"*, and|strong=\"H3068\"* that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* perish, you|strong=\"H3588\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* to|strong=\"H3068\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 16, + "text": "Also|strong=\"H3068\"* I|strong=\"H3588\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H3068\"* to|strong=\"H1696\"* all|strong=\"H3605\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Don’t listen|strong=\"H8085\"* to|strong=\"H1696\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1004\"* your|strong=\"H3068\"* prophets|strong=\"H5030\"* who|strong=\"H3605\"* prophesy|strong=\"H5012\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* now|strong=\"H6258\"* shortly|strong=\"H4120\"* be|strong=\"H1697\"* brought|strong=\"H7725\"* again|strong=\"H7725\"* from|strong=\"H7725\"* Babylon;’ for|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H1696\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 17, + "text": "Don’t listen|strong=\"H8085\"* to|strong=\"H1961\"* them|strong=\"H1961\"*. Serve|strong=\"H5647\"* the|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* live|strong=\"H2421\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* this|strong=\"H2063\"* city|strong=\"H5892\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*?" + }, + { + "verseNum": 18, + "text": "But|strong=\"H3498\"* if|strong=\"H3426\"* they|strong=\"H1992\"* are|strong=\"H1992\"* prophets|strong=\"H5030\"*, and|strong=\"H3063\"* if|strong=\"H3426\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, let|strong=\"H4994\"* them|strong=\"H1992\"* now|strong=\"H4994\"* make|strong=\"H6293\"* intercession|strong=\"H6293\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, that|strong=\"H3068\"* the|strong=\"H3068\"* vessels|strong=\"H3627\"* which|strong=\"H3068\"* are|strong=\"H1992\"* left|strong=\"H3498\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, don’t go|strong=\"H3068\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 19, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"*, concerning|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, concerning|strong=\"H5921\"* the|strong=\"H5921\"* bases|strong=\"H4350\"*, and|strong=\"H3068\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H3068\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* that|strong=\"H3588\"* are|strong=\"H3068\"* left|strong=\"H3498\"* in|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 20, + "text": "which|strong=\"H3063\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon didn’t take|strong=\"H3947\"* when|strong=\"H1121\"* he|strong=\"H3605\"* carried|strong=\"H1540\"* away|strong=\"H3947\"* captive|strong=\"H1540\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, from|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* Babylon, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nobles|strong=\"H2715\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*—" + }, + { + "verseNum": 21, + "text": "yes|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* vessels|strong=\"H3627\"* that|strong=\"H3588\"* are|strong=\"H3478\"* left|strong=\"H3498\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* at|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*:" + }, + { + "verseNum": 22, + "text": "‘They|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* carried|strong=\"H5927\"* to|strong=\"H5704\"* Babylon, and|strong=\"H3068\"* there|strong=\"H8033\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"*, until|strong=\"H5704\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* visit|strong=\"H6485\"* them|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘then|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* up|strong=\"H5927\"*, and|strong=\"H3068\"* restore|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H5704\"* this|strong=\"H2088\"* place|strong=\"H4725\"*.’”" + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "That|strong=\"H5971\"* same|strong=\"H1931\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* beginning|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3605\"* reign|strong=\"H4467\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, Hananiah|strong=\"H2608\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzur|strong=\"H5809\"*, the|strong=\"H3605\"* prophet|strong=\"H5030\"*, who|strong=\"H3605\"* was|strong=\"H3068\"* of|strong=\"H1121\"* Gibeon|strong=\"H1391\"*, spoke to|strong=\"H3068\"* me|strong=\"H1961\"* in|strong=\"H8141\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* and|strong=\"H1121\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘I|strong=\"H3541\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3541\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon." + }, + { + "verseNum": 3, + "text": "Within|strong=\"H1004\"* two|strong=\"H3947\"* full|strong=\"H3117\"* years|strong=\"H8141\"* I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* into|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* that|strong=\"H3605\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon took|strong=\"H3947\"* away|strong=\"H7725\"* from|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"* and|strong=\"H3068\"* carried|strong=\"H3068\"* to|strong=\"H7725\"* Babylon." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* went|strong=\"H3063\"* to|strong=\"H7725\"* Babylon,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon.’”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H5975\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H3068\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Hananiah|strong=\"H2608\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*," + }, + { + "verseNum": 6, + "text": "even|strong=\"H3651\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"*, “Amen! May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* do|strong=\"H6213\"* so|strong=\"H3651\"*. May|strong=\"H3068\"* Yahweh|strong=\"H3068\"* perform|strong=\"H6213\"* your|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* prophesied|strong=\"H5012\"*, to|strong=\"H7725\"* bring|strong=\"H7725\"* again|strong=\"H7725\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H6965\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1697\"* captives|strong=\"H1473\"*, from|strong=\"H7725\"* Babylon to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 7, + "text": "Nevertheless listen|strong=\"H8085\"* now|strong=\"H4994\"* to|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* that|strong=\"H5971\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* in|strong=\"H8085\"* your|strong=\"H3605\"* ears, and|strong=\"H5971\"* in|strong=\"H8085\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*:" + }, + { + "verseNum": 8, + "text": "The|strong=\"H6440\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* have|strong=\"H1961\"* been|strong=\"H1961\"* before|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H1419\"* before|strong=\"H6440\"* you|strong=\"H6440\"* of|strong=\"H6440\"* old|strong=\"H5769\"* prophesied|strong=\"H5012\"* against|strong=\"H5921\"* many|strong=\"H7227\"* countries, and|strong=\"H1419\"* against|strong=\"H5921\"* great|strong=\"H1419\"* kingdoms|strong=\"H4467\"*, of|strong=\"H6440\"* war|strong=\"H4421\"*, of|strong=\"H6440\"* evil|strong=\"H7451\"*, and|strong=\"H1419\"* of|strong=\"H6440\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 9, + "text": "As|strong=\"H1697\"* for|strong=\"H7971\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* who|strong=\"H3068\"* prophesies|strong=\"H5012\"* of|strong=\"H3068\"* peace|strong=\"H7965\"*, when|strong=\"H7971\"* the|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* happens, then|strong=\"H7971\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* will|strong=\"H3068\"* be|strong=\"H1697\"* known|strong=\"H3045\"*, that|strong=\"H3045\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* truly sent|strong=\"H7971\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H3947\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* took|strong=\"H3947\"* the|strong=\"H5921\"* bar from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*’s neck|strong=\"H6677\"*, and|strong=\"H5030\"* broke|strong=\"H7665\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "Hananiah|strong=\"H2608\"* spoke in|strong=\"H8141\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying, “Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Even|strong=\"H5750\"* so|strong=\"H3541\"* I|strong=\"H3117\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3605\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H3605\"* neck|strong=\"H6677\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* within|strong=\"H5921\"* two full|strong=\"H3117\"* years|strong=\"H8141\"*.’” Then|strong=\"H4428\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* went|strong=\"H3212\"* his|strong=\"H3605\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, after|strong=\"H5921\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* had|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H5921\"* bar from|strong=\"H5921\"* off|strong=\"H5921\"* the|strong=\"H5921\"* neck|strong=\"H6677\"* of|strong=\"H3068\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* tell Hananiah|strong=\"H2608\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “You|strong=\"H6213\"* have|strong=\"H3068\"* broken|strong=\"H7665\"* the|strong=\"H3541\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*, but|strong=\"H3068\"* you|strong=\"H6213\"* have|strong=\"H3068\"* made|strong=\"H6213\"* in|strong=\"H1980\"* their|strong=\"H3068\"* place|strong=\"H8478\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* iron|strong=\"H1270\"*.”" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*, “I|strong=\"H3588\"* have|strong=\"H3068\"* put|strong=\"H5414\"* a|strong=\"H3068\"* yoke|strong=\"H5923\"* of|strong=\"H4428\"* iron|strong=\"H1270\"* on|strong=\"H5921\"* the|strong=\"H3605\"* neck|strong=\"H6677\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H3605\"* nations|strong=\"H1471\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* serve|strong=\"H5647\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon; and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H5414\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* also|strong=\"H1571\"* given|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H4428\"* the|strong=\"H3605\"* field|strong=\"H7704\"*.”’”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H2088\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H3068\"* Hananiah|strong=\"H2608\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*, “Listen|strong=\"H8085\"*, Hananiah|strong=\"H2608\"*! Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H7971\"*, but|strong=\"H3808\"* you|strong=\"H7971\"* make|strong=\"H8085\"* this|strong=\"H2088\"* people|strong=\"H5971\"* trust in|strong=\"H5921\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"* away|strong=\"H7971\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth. This|strong=\"H3651\"* year|strong=\"H8141\"* you|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* rebellion|strong=\"H5627\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H4191\"* Hananiah|strong=\"H2608\"* the|strong=\"H4191\"* prophet|strong=\"H5030\"* died|strong=\"H4191\"* the|strong=\"H4191\"* same|strong=\"H1931\"* year|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H4191\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*." + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H7971\"* these|strong=\"H3605\"* are|strong=\"H5971\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H3605\"* letter|strong=\"H5612\"* that|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* sent|strong=\"H7971\"* from|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* the|strong=\"H3605\"* residue|strong=\"H3499\"* of|strong=\"H1697\"* the|strong=\"H3605\"* elders|strong=\"H2205\"* of|strong=\"H1697\"* the|strong=\"H3605\"* captivity|strong=\"H1473\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, to|strong=\"H7971\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, and|strong=\"H7971\"* to|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* had|strong=\"H3548\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* captive|strong=\"H1540\"* from|strong=\"H7971\"* Jerusalem|strong=\"H3389\"* to|strong=\"H7971\"* Babylon," + }, + { + "verseNum": 2, + "text": "(after|strong=\"H3318\"* Jeconiah|strong=\"H3204\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, the|strong=\"H3318\"* queen|strong=\"H1377\"* mother|strong=\"H1377\"*, the|strong=\"H3318\"* eunuchs|strong=\"H5631\"*, the|strong=\"H3318\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3318\"* craftsmen|strong=\"H2796\"*, and|strong=\"H3063\"* the|strong=\"H3318\"* smiths|strong=\"H4525\"* had|strong=\"H4428\"* departed|strong=\"H3318\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*)," + }, + { + "verseNum": 3, + "text": "by|strong=\"H3027\"* the|strong=\"H7971\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Elasah the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* and|strong=\"H1121\"* Gemariah|strong=\"H1587\"* the|strong=\"H7971\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hilkiah|strong=\"H2518\"*, (whom Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* Babylon to|strong=\"H7971\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon). It|strong=\"H7971\"* said:" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* whom I|strong=\"H3541\"* have|strong=\"H3068\"* caused to|strong=\"H3478\"* be|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* from|strong=\"H3478\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3478\"* Babylon:" + }, + { + "verseNum": 5, + "text": "“Build|strong=\"H1129\"* houses|strong=\"H1004\"* and|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*. Plant|strong=\"H5193\"* gardens|strong=\"H1593\"* and|strong=\"H1004\"* eat their|strong=\"H3427\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 6, + "text": "Take|strong=\"H3947\"* wives and|strong=\"H1121\"* father|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Take|strong=\"H3947\"* wives for|strong=\"H1121\"* your|strong=\"H5414\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* to|strong=\"H5414\"* husbands, that|strong=\"H5414\"* they|strong=\"H8033\"* may|strong=\"H1121\"* bear|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Multiply|strong=\"H7235\"* there|strong=\"H8033\"*, and|strong=\"H1121\"* don’t be|strong=\"H1121\"* diminished|strong=\"H4591\"*." + }, + { + "verseNum": 7, + "text": "Seek|strong=\"H1875\"* the|strong=\"H3588\"* peace|strong=\"H7965\"* of|strong=\"H3068\"* the|strong=\"H3588\"* city|strong=\"H5892\"* where|strong=\"H8033\"* I|strong=\"H3588\"* have|strong=\"H1961\"* caused|strong=\"H1961\"* you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* for|strong=\"H3588\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* its|strong=\"H3588\"* peace|strong=\"H7965\"* you|strong=\"H3588\"* will|strong=\"H3068\"* have|strong=\"H1961\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H8085\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: “Don’t let your|strong=\"H3068\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* are|strong=\"H3478\"* among|strong=\"H7130\"* you|strong=\"H3588\"* and|strong=\"H3478\"* your|strong=\"H3068\"* diviners|strong=\"H7080\"* deceive|strong=\"H5377\"* you|strong=\"H3588\"*. Don’t listen|strong=\"H8085\"* to|strong=\"H3478\"* your|strong=\"H3068\"* dreams|strong=\"H2472\"* which|strong=\"H3068\"* you|strong=\"H3588\"* cause to|strong=\"H3478\"* be|strong=\"H3068\"* dreamed|strong=\"H2492\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* prophesy|strong=\"H5012\"* falsely|strong=\"H8267\"* to|strong=\"H3068\"* you|strong=\"H3588\"* in|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “After|strong=\"H5921\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"* are|strong=\"H1697\"* accomplished|strong=\"H4390\"* for|strong=\"H3588\"* Babylon, I|strong=\"H3588\"* will|strong=\"H3068\"* visit|strong=\"H6485\"* you|strong=\"H3588\"* and|strong=\"H6965\"* perform|strong=\"H6965\"* my|strong=\"H3068\"* good|strong=\"H2896\"* word|strong=\"H1697\"* toward|strong=\"H5921\"* you|strong=\"H3588\"*, in|strong=\"H8141\"* causing you|strong=\"H3588\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* the|strong=\"H5002\"* thoughts|strong=\"H4284\"* that|strong=\"H3588\"* I|strong=\"H3588\"* think|strong=\"H2803\"* toward|strong=\"H5921\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “thoughts|strong=\"H4284\"* of|strong=\"H3068\"* peace|strong=\"H7965\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* of|strong=\"H3068\"* evil|strong=\"H7451\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* hope|strong=\"H8615\"* and|strong=\"H3068\"* a|strong=\"H3068\"* future." + }, + { + "verseNum": 12, + "text": "You|strong=\"H7121\"* shall|strong=\"H8085\"* call|strong=\"H7121\"* on|strong=\"H1980\"* me|strong=\"H7121\"*, and|strong=\"H1980\"* you|strong=\"H7121\"* shall|strong=\"H8085\"* go|strong=\"H1980\"* and|strong=\"H1980\"* pray|strong=\"H6419\"* to|strong=\"H1980\"* me|strong=\"H7121\"*, and|strong=\"H1980\"* I|strong=\"H8085\"* will|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* you|strong=\"H7121\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* shall|strong=\"H3824\"* seek|strong=\"H1245\"* me|strong=\"H4672\"* and|strong=\"H3824\"* find|strong=\"H4672\"* me|strong=\"H4672\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* search|strong=\"H1875\"* for|strong=\"H3588\"* me|strong=\"H4672\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* heart|strong=\"H3824\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H4672\"* will|strong=\"H3068\"* be|strong=\"H3068\"* found|strong=\"H4672\"* by|strong=\"H3068\"* you|strong=\"H3605\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3068\"* I|strong=\"H4672\"* will|strong=\"H3068\"* turn|strong=\"H7725\"* again|strong=\"H7725\"* your|strong=\"H3068\"* captivity|strong=\"H7622\"*, and|strong=\"H3068\"* I|strong=\"H4672\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* I|strong=\"H4672\"* have|strong=\"H3068\"* driven|strong=\"H5080\"* you|strong=\"H3605\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “I|strong=\"H4672\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3605\"* again|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* place|strong=\"H4725\"* from|strong=\"H7725\"* where|strong=\"H8033\"* I|strong=\"H4672\"* caused you|strong=\"H3605\"* to|strong=\"H7725\"* be|strong=\"H3068\"* carried|strong=\"H1540\"* away|strong=\"H7725\"* captive|strong=\"H1540\"*.”" + }, + { + "verseNum": 15, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* said, “Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* raised|strong=\"H6965\"* us|strong=\"H3588\"* up|strong=\"H6965\"* prophets|strong=\"H5030\"* in|strong=\"H3068\"* Babylon,”" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"* who|strong=\"H3605\"* sits|strong=\"H3427\"* on|strong=\"H3427\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*, and|strong=\"H3068\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, your|strong=\"H3068\"* brothers who|strong=\"H3605\"* haven’t gone|strong=\"H3318\"* with|strong=\"H3068\"* you|strong=\"H3588\"* into|strong=\"H3318\"* captivity|strong=\"H1473\"*," + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H3068\"* them|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, the|strong=\"H5414\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* the|strong=\"H5414\"* pestilence|strong=\"H1698\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* them|strong=\"H5414\"* like|strong=\"H3808\"* rotten figs|strong=\"H8384\"* that|strong=\"H3068\"* can|strong=\"H3808\"*’t be|strong=\"H3808\"* eaten, they|strong=\"H3068\"* are|strong=\"H3068\"* so|strong=\"H3541\"* bad|strong=\"H7455\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* pursue|strong=\"H7291\"* after|strong=\"H7291\"* them|strong=\"H5414\"* with|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, with|strong=\"H3605\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* with|strong=\"H3605\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H2719\"* will|strong=\"H1471\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* be|strong=\"H1471\"* tossed back and|strong=\"H2719\"* forth|strong=\"H5414\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth, to|strong=\"H5414\"* be|strong=\"H1471\"* an|strong=\"H5414\"* object|strong=\"H8047\"* of|strong=\"H3605\"* horror|strong=\"H8047\"*, an|strong=\"H5414\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* hissing|strong=\"H8322\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* I|strong=\"H5414\"* have|strong=\"H1471\"* driven|strong=\"H5080\"* them|strong=\"H5414\"*," + }, + { + "verseNum": 19, + "text": "because|strong=\"H8478\"* they|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* my|strong=\"H8085\"* words|strong=\"H1697\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “with|strong=\"H3068\"* which|strong=\"H3068\"* I|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H3068\"* them|strong=\"H7971\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H3068\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*; but|strong=\"H3808\"* you|strong=\"H7971\"* would|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "Hear|strong=\"H8085\"* therefore|strong=\"H7971\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* captives|strong=\"H1473\"* whom I|strong=\"H1697\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* away|strong=\"H7971\"* from|strong=\"H8085\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H3068\"* Ahab the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kolaiah|strong=\"H6964\"*, and|strong=\"H1121\"* concerning|strong=\"H3068\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, who|strong=\"H3068\"* prophesy|strong=\"H5012\"* a|strong=\"H3068\"* lie|strong=\"H8267\"* to|strong=\"H3478\"* you|strong=\"H5414\"* in|strong=\"H3478\"* my|strong=\"H5414\"* name|strong=\"H8034\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon; and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* kill|strong=\"H5221\"* them|strong=\"H5414\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* curse|strong=\"H7045\"* will|strong=\"H3068\"* be|strong=\"H3068\"* taken|strong=\"H3947\"* up|strong=\"H7760\"* about|strong=\"H4428\"* them|strong=\"H1992\"* by|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H1992\"* in|strong=\"H3068\"* Babylon, saying, ‘Yahweh|strong=\"H3068\"* make|strong=\"H7760\"* you|strong=\"H3605\"* like|strong=\"H1992\"* Zedekiah|strong=\"H6667\"* and|strong=\"H3063\"* like|strong=\"H1992\"* Ahab, whom|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon roasted|strong=\"H7033\"* in|strong=\"H3068\"* the|strong=\"H3605\"* fire;’" + }, + { + "verseNum": 23, + "text": "because|strong=\"H3282\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* foolish things|strong=\"H1697\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* have|strong=\"H3068\"* committed|strong=\"H6213\"* adultery|strong=\"H5003\"* with|strong=\"H3068\"* their|strong=\"H3068\"* neighbors|strong=\"H7453\"*’ wives, and|strong=\"H3478\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H3478\"* my|strong=\"H3068\"* name|strong=\"H8034\"* falsely|strong=\"H8267\"*, which|strong=\"H3068\"* I|strong=\"H1697\"* didn’t command|strong=\"H6680\"* them|strong=\"H6213\"*. I|strong=\"H1697\"* am|strong=\"H3068\"* he|strong=\"H6213\"* who|strong=\"H3068\"* knows|strong=\"H3045\"*, and|strong=\"H3478\"* am|strong=\"H3068\"* witness|strong=\"H5707\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 24, + "text": "Concerning Shemaiah|strong=\"H8098\"* the|strong=\"H8098\"* Nehelamite|strong=\"H5161\"* you shall speak, saying," + }, + { + "verseNum": 25, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H3068\"* sent|strong=\"H7971\"* letters|strong=\"H5612\"* in|strong=\"H3478\"* your|strong=\"H3068\"* own|strong=\"H3548\"* name|strong=\"H8034\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* at|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3605\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, saying," + }, + { + "verseNum": 26, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H5414\"* you|strong=\"H5414\"* priest|strong=\"H3548\"* in|strong=\"H3068\"* the|strong=\"H3605\"* place|strong=\"H8478\"* of|strong=\"H1004\"* Jehoiada|strong=\"H3077\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* officers|strong=\"H6496\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, for|strong=\"H8478\"* every|strong=\"H3605\"* man|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* crazy and|strong=\"H3068\"* makes|strong=\"H5414\"* himself|strong=\"H3068\"* a|strong=\"H3068\"* prophet|strong=\"H5012\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* should|strong=\"H3068\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H3068\"* the|strong=\"H3605\"* stocks|strong=\"H4115\"* and|strong=\"H3068\"* in|strong=\"H3068\"* shackles." + }, + { + "verseNum": 27, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"*, why|strong=\"H4100\"* have|strong=\"H3808\"* you|strong=\"H3808\"* not|strong=\"H3808\"* rebuked|strong=\"H1605\"* Jeremiah|strong=\"H3414\"* of|strong=\"H3414\"* Anathoth|strong=\"H6069\"*, who|strong=\"H4100\"* makes himself|strong=\"H3808\"* a|strong=\"H3068\"* prophet|strong=\"H5012\"* to|strong=\"H3808\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 28, + "text": "because|strong=\"H3588\"* he|strong=\"H1931\"* has|strong=\"H3588\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* us|strong=\"H5921\"* in|strong=\"H3427\"* Babylon, saying, The|strong=\"H5921\"* captivity is|strong=\"H1931\"* long|strong=\"H7971\"*. Build|strong=\"H1129\"* houses|strong=\"H1004\"*, and|strong=\"H7971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5921\"*. Plant|strong=\"H5193\"* gardens|strong=\"H1593\"*, and|strong=\"H7971\"* eat their|strong=\"H5921\"* fruit|strong=\"H6529\"*?”’”" + }, + { + "verseNum": 29, + "text": "Zephaniah|strong=\"H6846\"* the|strong=\"H7121\"* priest|strong=\"H3548\"* read|strong=\"H7121\"* this|strong=\"H2088\"* letter|strong=\"H5612\"* in|strong=\"H7121\"* the|strong=\"H7121\"* hearing of|strong=\"H5612\"* Jeremiah|strong=\"H3414\"* the|strong=\"H7121\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 30, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 31, + "text": "“Send|strong=\"H7971\"* to|strong=\"H3068\"* all|strong=\"H3605\"* of|strong=\"H3068\"* the|strong=\"H3605\"* captives|strong=\"H1473\"*, saying, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* Shemaiah|strong=\"H8098\"* the|strong=\"H3605\"* Nehelamite|strong=\"H5161\"*: “Because|strong=\"H5921\"* Shemaiah|strong=\"H8098\"* has|strong=\"H3068\"* prophesied|strong=\"H5012\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, and|strong=\"H3068\"* I|strong=\"H3541\"* didn’t send|strong=\"H7971\"* him|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* has|strong=\"H3068\"* caused you|strong=\"H3605\"* to|strong=\"H3068\"* trust in|strong=\"H5921\"* a|strong=\"H3068\"* lie|strong=\"H8267\"*,”" + }, + { + "verseNum": 32, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* Shemaiah|strong=\"H8098\"* the|strong=\"H5002\"* Nehelamite|strong=\"H5161\"* and|strong=\"H3068\"* his|strong=\"H3068\"* offspring|strong=\"H2233\"*. He|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* have|strong=\"H1961\"* a|strong=\"H3068\"* man|strong=\"H2896\"* to|strong=\"H1696\"* dwell|strong=\"H3427\"* among|strong=\"H8432\"* this|strong=\"H2088\"* people|strong=\"H5971\"*. He|strong=\"H3588\"* won’t see|strong=\"H7200\"* the|strong=\"H5002\"* good|strong=\"H2896\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1696\"* my|strong=\"H3068\"* people|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “because|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* rebellion|strong=\"H5627\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*.”’”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Write|strong=\"H3789\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3541\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"* in|strong=\"H3478\"* a|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H3068\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H5002\"* land that|strong=\"H3588\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* to|strong=\"H7725\"* their|strong=\"H3068\"* fathers, and|strong=\"H3063\"* they|strong=\"H3588\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 4, + "text": "These|strong=\"H1696\"* are|strong=\"H3478\"* the|strong=\"H3068\"* words|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* concerning|strong=\"H1697\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 6, + "text": "Ask|strong=\"H7592\"* now|strong=\"H4994\"*, and|strong=\"H3027\"* see|strong=\"H7200\"* whether|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H1397\"* travails with|strong=\"H5921\"* child|strong=\"H3205\"*." + }, + { + "verseNum": 7, + "text": "Alas|strong=\"H1945\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H1931\"* great|strong=\"H1419\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* none|strong=\"H4480\"* is|strong=\"H1931\"* like|strong=\"H3644\"* it|strong=\"H1931\"*!" + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* break|strong=\"H7665\"* his|strong=\"H3068\"* yoke|strong=\"H5923\"* from|strong=\"H5921\"* off|strong=\"H5921\"* your|strong=\"H3068\"* neck|strong=\"H6677\"*," + }, + { + "verseNum": 9, + "text": "but|strong=\"H1992\"* they|strong=\"H1992\"* will|strong=\"H3068\"* serve|strong=\"H5647\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3588\"* don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, to|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H3588\"*;" + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 13, + "text": "There|strong=\"H1779\"* is|strong=\"H1779\"* no one to|strong=\"H8585\"* plead|strong=\"H1777\"* your|strong=\"H1777\"* cause|strong=\"H1779\"*," + }, + { + "verseNum": 14, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* lovers have|strong=\"H5771\"* forgotten|strong=\"H7911\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 15, + "text": "Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H5921\"* cry|strong=\"H2199\"* over|strong=\"H5921\"* your|strong=\"H5921\"* injury|strong=\"H7667\"*?" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* devour you|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* devoured." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* restore|strong=\"H5927\"* health to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "Thanksgiving|strong=\"H8426\"* will|strong=\"H3808\"* proceed|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6963\"* them|strong=\"H1992\"*" + }, + { + "verseNum": 20, + "text": "Their|strong=\"H3605\"* children|strong=\"H1121\"* also|strong=\"H1121\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* before|strong=\"H6440\"*," + }, + { + "verseNum": 21, + "text": "Their|strong=\"H3068\"* prince will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H2088\"* of|strong=\"H3068\"* them|strong=\"H7126\"*," + }, + { + "verseNum": 22, + "text": "“You|strong=\"H5971\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 23, + "text": "Behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s storm|strong=\"H5591\"*, his|strong=\"H3068\"* wrath|strong=\"H2534\"*, has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H6213\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* until|strong=\"H5704\"* he|strong=\"H3117\"* has|strong=\"H3068\"* accomplished|strong=\"H6213\"*," + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H3478\"* that|strong=\"H5971\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H6256\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* they|strong=\"H1992\"* will|strong=\"H3068\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “The|strong=\"H3541\"* people|strong=\"H5971\"* who|strong=\"H5971\"* survive|strong=\"H8300\"* the|strong=\"H3541\"* sword|strong=\"H2719\"* found|strong=\"H4672\"* favor|strong=\"H2580\"* in|strong=\"H1980\"* the|strong=\"H3541\"* wilderness|strong=\"H4057\"*; even|strong=\"H3068\"* Israel|strong=\"H3478\"*, when|strong=\"H1980\"* I|strong=\"H3541\"* went|strong=\"H1980\"* to|strong=\"H1980\"* cause|strong=\"H5971\"* him|strong=\"H4672\"* to|strong=\"H1980\"* rest|strong=\"H7280\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* appeared|strong=\"H7200\"* of|strong=\"H3068\"* old|strong=\"H5769\"* to|strong=\"H3068\"* me|strong=\"H7200\"*, saying," + }, + { + "verseNum": 4, + "text": "I|strong=\"H3478\"* will|strong=\"H3478\"* build|strong=\"H1129\"* you|strong=\"H1129\"* again|strong=\"H5750\"*," + }, + { + "verseNum": 5, + "text": "Again|strong=\"H5750\"* you|strong=\"H2022\"* will|strong=\"H2022\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"* on|strong=\"H2022\"* the|strong=\"H2490\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Samaria|strong=\"H8111\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* there|strong=\"H3426\"* will|strong=\"H3068\"* be|strong=\"H3426\"* a|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3588\"* the|strong=\"H3588\"* watchmen|strong=\"H5341\"* on|strong=\"H3117\"* the|strong=\"H3588\"* hills|strong=\"H2022\"* of|strong=\"H3068\"* Ephraim cry|strong=\"H7121\"*," + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H6828\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3205\"* north|strong=\"H6828\"* country," + }, + { + "verseNum": 9, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* come|strong=\"H1961\"* with|strong=\"H3212\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 10, + "text": "“Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H5046\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* ransomed|strong=\"H6299\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H1121\"* sing|strong=\"H7442\"* in|strong=\"H5921\"* the|strong=\"H5921\"* height|strong=\"H4791\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 13, + "text": "Then|strong=\"H5162\"* the|strong=\"H2015\"* virgin|strong=\"H1330\"* will|strong=\"H2205\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* the|strong=\"H2015\"* dance|strong=\"H4234\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H5315\"* will|strong=\"H3068\"* satiate|strong=\"H7301\"* the|strong=\"H5002\"* soul|strong=\"H5315\"* of|strong=\"H3068\"* the|strong=\"H5002\"* priests|strong=\"H3548\"* with|strong=\"H7646\"* fatness|strong=\"H1880\"*," + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 17, + "text": "There|strong=\"H3426\"* is|strong=\"H3068\"* hope|strong=\"H8615\"* for|strong=\"H3068\"* your|strong=\"H3068\"* latter end,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "“I|strong=\"H3588\"* have|strong=\"H3068\"* surely|strong=\"H3588\"* heard|strong=\"H8085\"* Ephraim grieving|strong=\"H5110\"* thus|strong=\"H3808\"*," + }, + { + "verseNum": 19, + "text": "Surely|strong=\"H3588\"* after|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1571\"* turned|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "Is|strong=\"H3068\"* Ephraim my|strong=\"H3068\"* dear|strong=\"H3357\"* son|strong=\"H1121\"*?" + }, + { + "verseNum": 21, + "text": "“Set|strong=\"H7760\"* up|strong=\"H7760\"* road|strong=\"H1870\"* signs." + }, + { + "verseNum": 22, + "text": "How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H3588\"* go|strong=\"H5437\"* here|strong=\"H5704\"* and|strong=\"H3068\"* there|strong=\"H2559\"*," + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H7725\"* they|strong=\"H3068\"* will|strong=\"H3068\"* use this|strong=\"H2088\"* speech|strong=\"H1697\"* in|strong=\"H3478\"* the|strong=\"H3541\"* land|strong=\"H5116\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H3478\"* its|strong=\"H7725\"* cities|strong=\"H5892\"*, when|strong=\"H7725\"* I|strong=\"H3541\"* reverse|strong=\"H7725\"* their|strong=\"H3068\"* captivity|strong=\"H7622\"*: ‘Yahweh|strong=\"H3068\"* bless|strong=\"H1288\"* you|strong=\"H7725\"*, habitation|strong=\"H5116\"* of|strong=\"H3068\"* righteousness|strong=\"H6664\"*, mountain|strong=\"H2022\"* of|strong=\"H3068\"* holiness|strong=\"H6944\"*.’" + }, + { + "verseNum": 24, + "text": "Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H5892\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"* together|strong=\"H3162\"*, the|strong=\"H3605\"* farmers, and|strong=\"H3063\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H5265\"* about|strong=\"H5892\"* with|strong=\"H3427\"* flocks|strong=\"H5739\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3605\"* satiated|strong=\"H7301\"* the|strong=\"H3605\"* weary|strong=\"H5889\"* soul|strong=\"H5315\"*, and|strong=\"H5315\"* I|strong=\"H3588\"* have|strong=\"H3605\"* replenished|strong=\"H4390\"* every|strong=\"H3605\"* sorrowful|strong=\"H1669\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 26, + "text": "On|strong=\"H5921\"* this|strong=\"H2063\"* I|strong=\"H5921\"* awakened, and|strong=\"H7200\"* saw|strong=\"H7200\"*; and|strong=\"H7200\"* my|strong=\"H7200\"* sleep|strong=\"H8142\"* was|strong=\"H8142\"* sweet|strong=\"H6149\"* to|strong=\"H5921\"* me|strong=\"H7200\"*." + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* sow|strong=\"H2232\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* man and|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* seed|strong=\"H2233\"* of|strong=\"H1004\"* animal." + }, + { + "verseNum": 28, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3068\"*, like|strong=\"H1961\"* as|strong=\"H1961\"* I|strong=\"H5921\"* have|strong=\"H1961\"* watched|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H1129\"* and|strong=\"H3068\"* to|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H5422\"* and|strong=\"H3068\"* to|strong=\"H3068\"* overthrow|strong=\"H2040\"* and|strong=\"H3068\"* to|strong=\"H3068\"* destroy|strong=\"H5422\"* and|strong=\"H3068\"* to|strong=\"H3068\"* afflict|strong=\"H7489\"*, so|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H3068\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H3068\"* build|strong=\"H1129\"* and|strong=\"H3068\"* to|strong=\"H3068\"* plant|strong=\"H5193\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 29, + "text": "“In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"* they|strong=\"H1992\"* will|strong=\"H1121\"* say no|strong=\"H3808\"* more|strong=\"H5750\"*," + }, + { + "verseNum": 30, + "text": "But|strong=\"H3588\"* everyone|strong=\"H3605\"* will|strong=\"H5771\"* die|strong=\"H4191\"* for|strong=\"H3588\"* his|strong=\"H3605\"* own iniquity|strong=\"H5771\"*. Every|strong=\"H3605\"* man|strong=\"H4191\"* who|strong=\"H3605\"* eats the|strong=\"H3605\"* sour|strong=\"H1155\"* grapes|strong=\"H1155\"*, his|strong=\"H3605\"* teeth|strong=\"H8127\"* will|strong=\"H5771\"* be|strong=\"H4191\"* set|strong=\"H6949\"* on|strong=\"H4191\"* edge|strong=\"H6949\"*." + }, + { + "verseNum": 31, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H3772\"* a|strong=\"H3068\"* new|strong=\"H2319\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 32, + "text": "not|strong=\"H3808\"* according|strong=\"H3027\"* to|strong=\"H3318\"* the|strong=\"H5002\"* covenant|strong=\"H1285\"* that|strong=\"H3117\"* I|strong=\"H3117\"* made|strong=\"H3772\"* with|strong=\"H3068\"* their|strong=\"H3068\"* fathers in|strong=\"H3068\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* took|strong=\"H2388\"* them|strong=\"H1992\"* by|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* to|strong=\"H3318\"* bring|strong=\"H3318\"* them|strong=\"H1992\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, which|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* mine|strong=\"H3027\"* they|strong=\"H1992\"* broke|strong=\"H6565\"*, although|strong=\"H3808\"* I|strong=\"H3117\"* was|strong=\"H3068\"* a|strong=\"H3068\"* husband|strong=\"H1166\"* to|strong=\"H3318\"* them|strong=\"H1992\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 33, + "text": "“But|strong=\"H3588\"* this|strong=\"H2063\"* is|strong=\"H3068\"* the|strong=\"H5002\"* covenant|strong=\"H1285\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* with|strong=\"H1004\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* after|strong=\"H5921\"* those|strong=\"H1992\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*:" + }, + { + "verseNum": 34, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* each|strong=\"H3605\"* teach|strong=\"H3925\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*," + }, + { + "verseNum": 35, + "text": "Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* gives|strong=\"H5414\"* the|strong=\"H5414\"* sun|strong=\"H8121\"* for|strong=\"H2708\"* a|strong=\"H3068\"* light by|strong=\"H3068\"* day|strong=\"H3119\"*," + }, + { + "verseNum": 36, + "text": "“If|strong=\"H1961\"* these|strong=\"H3605\"* ordinances|strong=\"H2706\"* depart|strong=\"H4185\"* from|strong=\"H6440\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 37, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “If heaven|strong=\"H8064\"* above|strong=\"H4605\"* can|strong=\"H6213\"* be|strong=\"H3068\"* measured|strong=\"H4058\"*," + }, + { + "verseNum": 38, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H5892\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* the|strong=\"H5002\"* city|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* from|strong=\"H3117\"* the|strong=\"H5002\"* tower|strong=\"H4026\"* of|strong=\"H3068\"* Hananel|strong=\"H2606\"* to|strong=\"H3068\"* the|strong=\"H5002\"* gate|strong=\"H8179\"* of|strong=\"H3068\"* the|strong=\"H5002\"* corner|strong=\"H6438\"*." + }, + { + "verseNum": 39, + "text": "The|strong=\"H5921\"* measuring|strong=\"H4060\"* line will|strong=\"H5750\"* go|strong=\"H3318\"* out|strong=\"H3318\"* further|strong=\"H5750\"* straight|strong=\"H5048\"* onward to|strong=\"H3318\"* the|strong=\"H5921\"* hill|strong=\"H1389\"* Gareb|strong=\"H1619\"*, and|strong=\"H3318\"* will|strong=\"H5750\"* turn|strong=\"H5437\"* toward|strong=\"H5921\"* Goah|strong=\"H1601\"*." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3605\"* whole|strong=\"H3605\"* valley|strong=\"H6010\"* of|strong=\"H3068\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* and|strong=\"H3068\"* of|strong=\"H3068\"* the|strong=\"H3605\"* ashes|strong=\"H1880\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* fields to|strong=\"H5704\"* the|strong=\"H3605\"* brook|strong=\"H5158\"* Kidron|strong=\"H6939\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* corner|strong=\"H6438\"* of|strong=\"H3068\"* the|strong=\"H3605\"* horse|strong=\"H5483\"* gate|strong=\"H8179\"* toward|strong=\"H5704\"* the|strong=\"H3605\"* east|strong=\"H4217\"*, will|strong=\"H3068\"* be|strong=\"H3808\"* holy|strong=\"H6944\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*. It|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* plucked|strong=\"H5428\"* up|strong=\"H5428\"* or|strong=\"H3808\"* thrown|strong=\"H2040\"* down|strong=\"H2040\"* any|strong=\"H3605\"* more|strong=\"H5750\"* forever|strong=\"H5769\"*.”" + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "This|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H1931\"* was|strong=\"H3068\"* the|strong=\"H3068\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H4428\"* time|strong=\"H1961\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"* was|strong=\"H1961\"* besieging|strong=\"H6696\"* Jerusalem|strong=\"H3389\"*. Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* was|strong=\"H1961\"* shut|strong=\"H3607\"* up|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H4307\"*, which|strong=\"H1004\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3027\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* had|strong=\"H3068\"* shut|strong=\"H3607\"* him|strong=\"H5414\"* up|strong=\"H5414\"*, saying, “Why|strong=\"H4069\"* do|strong=\"H3068\"* you|strong=\"H5414\"* prophesy|strong=\"H5012\"*, and|strong=\"H3063\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* he|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* won’t escape|strong=\"H4422\"* out|strong=\"H5414\"* of|strong=\"H4428\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* Chaldeans|strong=\"H3778\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H7200\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3063\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* with|strong=\"H5973\"* him|strong=\"H5414\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*, and|strong=\"H3063\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* his|strong=\"H5414\"* eyes|strong=\"H5869\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H3212\"* Zedekiah|strong=\"H6667\"* to|strong=\"H5704\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* there|strong=\"H8033\"* until|strong=\"H5704\"* I|strong=\"H3588\"* visit|strong=\"H6485\"* him|strong=\"H6485\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “though|strong=\"H3588\"* you|strong=\"H3588\"* fight|strong=\"H3898\"* with|strong=\"H3068\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"*, you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* prosper|strong=\"H6743\"*”’?”" + }, + { + "verseNum": 6, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "‘Behold|strong=\"H2009\"*, Hanamel|strong=\"H2601\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"* your|strong=\"H3588\"* uncle|strong=\"H1730\"* will|strong=\"H1121\"* come|strong=\"H4941\"* to|strong=\"H1121\"* you|strong=\"H3588\"*, saying, “Buy|strong=\"H7069\"* my|strong=\"H3588\"* field|strong=\"H7704\"* that|strong=\"H3588\"* is|strong=\"H2009\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* right|strong=\"H4941\"* of|strong=\"H1121\"* redemption|strong=\"H1353\"* is|strong=\"H2009\"* yours to|strong=\"H1121\"* buy|strong=\"H7069\"* it|strong=\"H3588\"*.”’”" + }, + { + "verseNum": 8, + "text": "“So|strong=\"H3588\"* Hanamel|strong=\"H2601\"* my|strong=\"H3068\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"* came|strong=\"H3068\"* to|strong=\"H3068\"* me|strong=\"H4994\"* in|strong=\"H3068\"* the|strong=\"H3588\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3588\"* guard|strong=\"H4307\"* according|strong=\"H4941\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, and|strong=\"H1121\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H4994\"*, ‘Please|strong=\"H4994\"* buy|strong=\"H7069\"* my|strong=\"H3068\"* field|strong=\"H7704\"* that|strong=\"H3588\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Anathoth|strong=\"H6068\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Benjamin|strong=\"H1144\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* right|strong=\"H4941\"* of|strong=\"H1121\"* inheritance|strong=\"H3425\"* is|strong=\"H3068\"* yours, and|strong=\"H1121\"* the|strong=\"H3588\"* redemption|strong=\"H1353\"* is|strong=\"H3068\"* yours. Buy|strong=\"H7069\"* it|strong=\"H1931\"* for|strong=\"H3588\"* yourself|strong=\"H3045\"*.’" + }, + { + "verseNum": 9, + "text": "I|strong=\"H1121\"* bought|strong=\"H7069\"* the|strong=\"H7069\"* field|strong=\"H7704\"* that|strong=\"H1121\"* was|strong=\"H1121\"* in|strong=\"H1121\"* Anathoth|strong=\"H6068\"* of|strong=\"H1121\"* Hanamel|strong=\"H2601\"* my|strong=\"H2601\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* weighed|strong=\"H8254\"* him|strong=\"H7069\"* the|strong=\"H7069\"* money|strong=\"H3701\"*, even|strong=\"H7651\"* seventeen|strong=\"H7651\"* shekels|strong=\"H8255\"*+ 32:9 A shekel is about 10 grams or about 0.35 ounces.* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 10, + "text": "I signed|strong=\"H3789\"* the|strong=\"H3789\"* deed|strong=\"H5612\"*, sealed|strong=\"H2856\"* it|strong=\"H3789\"*, called|strong=\"H5749\"* witnesses|strong=\"H5707\"*, and|strong=\"H3701\"* weighed|strong=\"H8254\"* the|strong=\"H3789\"* money|strong=\"H3701\"* in|strong=\"H3789\"* the|strong=\"H3789\"* balances|strong=\"H3976\"* to|strong=\"H5612\"* him." + }, + { + "verseNum": 11, + "text": "So|strong=\"H3947\"* I took|strong=\"H3947\"* the|strong=\"H3947\"* deed|strong=\"H5612\"* of|strong=\"H5612\"* the|strong=\"H3947\"* purchase|strong=\"H4736\"*, both that|strong=\"H5612\"* which|strong=\"H5612\"* was sealed|strong=\"H2856\"*, containing the|strong=\"H3947\"* terms|strong=\"H4687\"* and|strong=\"H2706\"* conditions|strong=\"H2706\"*, and|strong=\"H2706\"* that|strong=\"H5612\"* which|strong=\"H5612\"* was open|strong=\"H1540\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H1121\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* the|strong=\"H3605\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H3605\"* purchase|strong=\"H4736\"* to|strong=\"H5414\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahseiah|strong=\"H4271\"*, in|strong=\"H3427\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* Hanamel|strong=\"H2601\"* my|strong=\"H5414\"* uncle|strong=\"H1730\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* presence|strong=\"H5869\"* of|strong=\"H1121\"* the|strong=\"H3605\"* witnesses|strong=\"H5707\"* who|strong=\"H3605\"* signed|strong=\"H3789\"* the|strong=\"H3605\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H3605\"* purchase|strong=\"H4736\"*, before|strong=\"H5869\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H6680\"* commanded|strong=\"H6680\"* Baruch|strong=\"H1263\"* before|strong=\"H5869\"* them|strong=\"H6680\"*, saying," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Take|strong=\"H3947\"* these|strong=\"H2088\"* deeds|strong=\"H5612\"*, this|strong=\"H2088\"* deed|strong=\"H5612\"* of|strong=\"H3068\"* the|strong=\"H5414\"* purchase|strong=\"H4736\"* which|strong=\"H3068\"* is|strong=\"H3068\"* sealed|strong=\"H2856\"*, and|strong=\"H3478\"* this|strong=\"H2088\"* deed|strong=\"H5612\"* which|strong=\"H3068\"* is|strong=\"H3068\"* open|strong=\"H1540\"*, and|strong=\"H3478\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3478\"* an|strong=\"H5414\"* earthen|strong=\"H2789\"* vessel|strong=\"H3627\"*, that|strong=\"H3117\"* they|strong=\"H3117\"* may|strong=\"H3068\"* last|strong=\"H5975\"* many|strong=\"H7227\"* days|strong=\"H3117\"*.’" + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*: ‘Houses|strong=\"H1004\"* and|strong=\"H3478\"* fields|strong=\"H7704\"* and|strong=\"H3478\"* vineyards|strong=\"H3754\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* be|strong=\"H5750\"* bought|strong=\"H7069\"* in|strong=\"H3478\"* this|strong=\"H2063\"* land|strong=\"H7704\"*.’" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H5414\"* after I|strong=\"H5414\"* had|strong=\"H3068\"* delivered|strong=\"H5414\"* the|strong=\"H5414\"* deed|strong=\"H5612\"* of|strong=\"H1121\"* the|strong=\"H5414\"* purchase|strong=\"H4736\"* to|strong=\"H3068\"* Baruch|strong=\"H1263\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, I|strong=\"H5414\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying," + }, + { + "verseNum": 17, + "text": "“Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, you|strong=\"H3605\"* have|strong=\"H1697\"* made|strong=\"H6213\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* by|strong=\"H3808\"* your|strong=\"H3605\"* great|strong=\"H1419\"* power|strong=\"H3581\"* and|strong=\"H8064\"* by|strong=\"H3808\"* your|strong=\"H3605\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*. There|strong=\"H2009\"* is|strong=\"H1697\"* nothing|strong=\"H3808\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H6213\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H6213\"* show|strong=\"H6213\"* loving kindness|strong=\"H2617\"* to|strong=\"H3068\"* thousands, and|strong=\"H1121\"* repay|strong=\"H7999\"* the|strong=\"H6213\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H6213\"* fathers into|strong=\"H6213\"* the|strong=\"H6213\"* bosom|strong=\"H2436\"* of|strong=\"H1121\"* their|strong=\"H3068\"* children|strong=\"H1121\"* after|strong=\"H8034\"* them|strong=\"H6213\"*. The|strong=\"H6213\"* great|strong=\"H1419\"*, the|strong=\"H6213\"* mighty|strong=\"H1368\"* God|strong=\"H3068\"*, Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* is|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*:" + }, + { + "verseNum": 19, + "text": "great|strong=\"H1419\"* in|strong=\"H5921\"* counsel|strong=\"H6098\"*, and|strong=\"H1121\"* mighty|strong=\"H1419\"* in|strong=\"H5921\"* work|strong=\"H5950\"*; whose|strong=\"H1121\"* eyes|strong=\"H5869\"* are|strong=\"H1121\"* open|strong=\"H6491\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ways|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, to|strong=\"H5921\"* give|strong=\"H5414\"* everyone|strong=\"H3605\"* according|strong=\"H5921\"* to|strong=\"H5921\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H1121\"* according|strong=\"H5921\"* to|strong=\"H5921\"* the|strong=\"H3605\"* fruit|strong=\"H6529\"* of|strong=\"H1121\"* his|strong=\"H3605\"* doings|strong=\"H4611\"*;" + }, + { + "verseNum": 20, + "text": "who|strong=\"H3478\"* performed|strong=\"H6213\"* signs and|strong=\"H3478\"* wonders|strong=\"H4159\"* in|strong=\"H3478\"* the|strong=\"H6213\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, both in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3478\"* among|strong=\"H8034\"* other|strong=\"H2088\"* men|strong=\"H6213\"*; and|strong=\"H3478\"* made|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* name|strong=\"H8034\"*, as|strong=\"H5704\"* it|strong=\"H7760\"* is|strong=\"H2088\"* today|strong=\"H3117\"*;" + }, + { + "verseNum": 21, + "text": "and|strong=\"H3478\"* brought|strong=\"H3318\"* your|strong=\"H5186\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H3318\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* with|strong=\"H3318\"* signs, with|strong=\"H3318\"* wonders|strong=\"H4159\"*, with|strong=\"H3318\"* a|strong=\"H3068\"* strong|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3318\"* an|strong=\"H3318\"* outstretched|strong=\"H5186\"* arm|strong=\"H3027\"*, and|strong=\"H3478\"* with|strong=\"H3318\"* great|strong=\"H1419\"* terror|strong=\"H4172\"*;" + }, + { + "verseNum": 22, + "text": "and|strong=\"H2461\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* this|strong=\"H2063\"* land, which you|strong=\"H5414\"* swore|strong=\"H7650\"* to|strong=\"H5414\"* their|strong=\"H5414\"* fathers to|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"*, a|strong=\"H3068\"* land flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H2461\"* honey|strong=\"H1706\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* came|strong=\"H1980\"* in|strong=\"H1980\"* and|strong=\"H1980\"* possessed|strong=\"H3423\"* it|strong=\"H6213\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t obey|strong=\"H8085\"* your|strong=\"H3605\"* voice|strong=\"H6963\"* and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* your|strong=\"H3605\"* law|strong=\"H8451\"*. They|strong=\"H3808\"* have|strong=\"H3605\"* done|strong=\"H6213\"* nothing|strong=\"H3808\"* of|strong=\"H6963\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6680\"* commanded|strong=\"H6680\"* them|strong=\"H6213\"* to|strong=\"H1980\"* do|strong=\"H6213\"*. Therefore|strong=\"H2063\"* you|strong=\"H6680\"* have|strong=\"H3605\"* caused|strong=\"H6213\"* all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* to|strong=\"H1980\"* come|strong=\"H1980\"* upon|strong=\"H1980\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 24, + "text": "“Behold|strong=\"H2009\"*, siege|strong=\"H5550\"* ramps|strong=\"H5550\"* have|strong=\"H1961\"* been|strong=\"H1961\"* built against|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"* to|strong=\"H1696\"* take|strong=\"H3920\"* it|strong=\"H5414\"*. The|strong=\"H6440\"* city|strong=\"H5892\"* is|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3778\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, because|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, of|strong=\"H3027\"* the|strong=\"H6440\"* famine|strong=\"H7458\"*, and|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H6440\"* pestilence|strong=\"H1698\"*. What|strong=\"H7200\"* you|strong=\"H5414\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* has|strong=\"H1961\"* happened|strong=\"H1961\"*. Behold|strong=\"H2009\"*, you|strong=\"H5414\"* see|strong=\"H7200\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H5414\"* have|strong=\"H3027\"* said to|strong=\"H5414\"* me|strong=\"H5414\"*, Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘Buy|strong=\"H7069\"* the|strong=\"H5414\"* field|strong=\"H7704\"* for|strong=\"H3027\"* money|strong=\"H3701\"*, and|strong=\"H3701\"* call|strong=\"H5749\"* witnesses|strong=\"H5707\"*;’ whereas the|strong=\"H5414\"* city|strong=\"H5892\"* is|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*.”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*. Is|strong=\"H3068\"* there|strong=\"H2009\"* anything|strong=\"H3605\"* too|strong=\"H4480\"* hard|strong=\"H6381\"* for|strong=\"H3068\"* me|strong=\"H4480\"*?" + }, + { + "verseNum": 28, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3651\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3778\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, will|strong=\"H1004\"* come|strong=\"H5892\"* and|strong=\"H1004\"* set|strong=\"H3341\"* this|strong=\"H2063\"* city|strong=\"H5892\"* on|strong=\"H5921\"* fire|strong=\"H3341\"*, and|strong=\"H1004\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* on|strong=\"H5921\"* whose roofs|strong=\"H1406\"* they|strong=\"H5921\"* have|strong=\"H5892\"* offered|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5921\"* Baal|strong=\"H1168\"*, and|strong=\"H1004\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H5921\"* other|strong=\"H2063\"* gods, to|strong=\"H5921\"* provoke|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H5921\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 30, + "text": "“For|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* have|strong=\"H1961\"* done|strong=\"H6213\"* only|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3478\"* my|strong=\"H3068\"* sight|strong=\"H5869\"* from|strong=\"H3478\"* their|strong=\"H3068\"* youth|strong=\"H5271\"*; for|strong=\"H3588\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* have|strong=\"H1961\"* only|strong=\"H3588\"* provoked|strong=\"H3707\"* me|strong=\"H6213\"* to|strong=\"H3478\"* anger|strong=\"H3707\"* with|strong=\"H3068\"* the|strong=\"H5002\"* work|strong=\"H4639\"* of|strong=\"H1121\"* their|strong=\"H3068\"* hands|strong=\"H3027\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* this|strong=\"H2088\"* city|strong=\"H5892\"* has|strong=\"H1961\"* been|strong=\"H1961\"* to|strong=\"H5704\"* me|strong=\"H6440\"* a|strong=\"H3068\"* provocation of|strong=\"H3117\"* my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H3117\"* of|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* from|strong=\"H4480\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3588\"* they|strong=\"H3588\"* built|strong=\"H1129\"* it|strong=\"H5921\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, so|strong=\"H4480\"* that|strong=\"H3588\"* I|strong=\"H3588\"* should|strong=\"H3588\"* remove|strong=\"H5493\"* it|strong=\"H5921\"* from|strong=\"H4480\"* before|strong=\"H6440\"* my|strong=\"H5921\"* face|strong=\"H6440\"*," + }, + { + "verseNum": 32, + "text": "because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1121\"* done|strong=\"H6213\"* to|strong=\"H3478\"* provoke|strong=\"H3707\"* me|strong=\"H5921\"* to|strong=\"H3478\"* anger|strong=\"H3707\"*—they|strong=\"H1992\"*, their|strong=\"H3605\"* kings|strong=\"H4428\"*, their|strong=\"H3605\"* princes|strong=\"H8269\"*, their|strong=\"H3605\"* priests|strong=\"H3548\"*, their|strong=\"H3605\"* prophets|strong=\"H5030\"*, the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 33, + "text": "They|strong=\"H3808\"* have|strong=\"H6437\"* turned|strong=\"H6437\"* their|strong=\"H3947\"* backs|strong=\"H6203\"* to|strong=\"H6440\"* me|strong=\"H6440\"*, and|strong=\"H7925\"* not|strong=\"H3808\"* their|strong=\"H3947\"* faces|strong=\"H6440\"*. Although|strong=\"H3808\"* I|strong=\"H3808\"* taught|strong=\"H3925\"* them|strong=\"H6440\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7925\"* teaching|strong=\"H3925\"* them|strong=\"H6440\"*, yet|strong=\"H3808\"* they|strong=\"H3808\"* have|strong=\"H6437\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H6440\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"*." + }, + { + "verseNum": 34, + "text": "But|strong=\"H5921\"* they|strong=\"H5921\"* set|strong=\"H7760\"* their|strong=\"H7760\"* abominations|strong=\"H8251\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H7760\"* name|strong=\"H8034\"*, to|strong=\"H5921\"* defile|strong=\"H2930\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H3808\"* built|strong=\"H1129\"* the|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1121\"* Baal|strong=\"H1168\"*, which|strong=\"H1116\"* are|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H5921\"* valley|strong=\"H1516\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hinnom|strong=\"H2011\"*, to|strong=\"H5927\"* cause|strong=\"H6213\"* their|strong=\"H5921\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H5921\"* daughters|strong=\"H1323\"* to|strong=\"H5927\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* fire to|strong=\"H5927\"* Molech|strong=\"H4432\"*, which|strong=\"H1116\"* I|strong=\"H5921\"* didn’t command|strong=\"H6680\"* them|strong=\"H5921\"*. It|strong=\"H5921\"* didn’t even|strong=\"H3808\"* come|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*, that|strong=\"H4616\"* they|strong=\"H3808\"* should|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2063\"* abomination|strong=\"H8441\"*, to|strong=\"H5927\"* cause|strong=\"H6213\"* Judah|strong=\"H3063\"* to|strong=\"H5927\"* sin|strong=\"H2398\"*.”" + }, + { + "verseNum": 36, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H3068\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, about|strong=\"H4428\"* which|strong=\"H3068\"* you|strong=\"H5414\"* say|strong=\"H3478\"*, “It|strong=\"H5414\"* is|strong=\"H3068\"* given|strong=\"H5414\"* into|strong=\"H2719\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon by|strong=\"H3027\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*, by|strong=\"H3027\"* the|strong=\"H5414\"* famine|strong=\"H7458\"*, and|strong=\"H3478\"* by|strong=\"H3027\"* the|strong=\"H5414\"* pestilence|strong=\"H1698\"*:”" + }, + { + "verseNum": 37, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2534\"* gather|strong=\"H6908\"* them|strong=\"H7725\"* out|strong=\"H5080\"* of|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* I|strong=\"H2005\"* have|strong=\"H3605\"* driven|strong=\"H5080\"* them|strong=\"H7725\"* in|strong=\"H3427\"* my|strong=\"H3605\"* anger|strong=\"H2534\"*, and|strong=\"H7725\"* in|strong=\"H3427\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"*, and|strong=\"H7725\"* in|strong=\"H3427\"* great|strong=\"H1419\"* indignation|strong=\"H7110\"*; and|strong=\"H7725\"* I|strong=\"H2005\"* will|strong=\"H2534\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2088\"* place|strong=\"H4725\"*. I|strong=\"H2005\"* will|strong=\"H2534\"* cause|strong=\"H7725\"* them|strong=\"H7725\"* to|strong=\"H7725\"* dwell|strong=\"H3427\"* safely." + }, + { + "verseNum": 38, + "text": "Then|strong=\"H1961\"* they|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* God." + }, + { + "verseNum": 39, + "text": "I|strong=\"H3117\"* will|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* one|strong=\"H3605\"* way|strong=\"H1870\"*, that|strong=\"H3605\"* they|strong=\"H3117\"* may|strong=\"H1121\"* fear|strong=\"H3372\"* me|strong=\"H5414\"* forever|strong=\"H3605\"*, for|strong=\"H3117\"* their|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H1121\"* the|strong=\"H3605\"* good|strong=\"H2896\"* of|strong=\"H1121\"* their|strong=\"H3605\"* children|strong=\"H1121\"* after|strong=\"H3117\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 40, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* an|strong=\"H5414\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*, that|strong=\"H5414\"* I|strong=\"H5414\"* will|strong=\"H5414\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* away|strong=\"H5493\"* from|strong=\"H7725\"* following them|strong=\"H5414\"*, to|strong=\"H7725\"* do|strong=\"H3190\"* them|strong=\"H5414\"* good|strong=\"H3190\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* my|strong=\"H5414\"* fear|strong=\"H3374\"* in|strong=\"H5921\"* their|strong=\"H5414\"* hearts|strong=\"H3824\"*, that|strong=\"H5414\"* they|strong=\"H3808\"* may|strong=\"H7725\"* not|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H7725\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 41, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H5315\"* rejoice|strong=\"H7797\"* over|strong=\"H5921\"* them|strong=\"H5921\"* to|strong=\"H5921\"* do|strong=\"H2895\"* them|strong=\"H5921\"* good|strong=\"H2895\"*, and|strong=\"H3820\"* I|strong=\"H5921\"* will|strong=\"H5315\"* plant|strong=\"H5193\"* them|strong=\"H5921\"* in|strong=\"H5921\"* this|strong=\"H2063\"* land assuredly with|strong=\"H5921\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* heart|strong=\"H3820\"* and|strong=\"H3820\"* with|strong=\"H5921\"* my|strong=\"H3605\"* whole|strong=\"H3605\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 42, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Just|strong=\"H3605\"* as|strong=\"H3651\"* I|strong=\"H3588\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* all|strong=\"H3605\"* this|strong=\"H2088\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* promised|strong=\"H1696\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 43, + "text": "Fields|strong=\"H7704\"* will|strong=\"H3027\"* be|strong=\"H3027\"* bought|strong=\"H7069\"* in|strong=\"H3027\"* this|strong=\"H2063\"* land|strong=\"H7704\"*, about|strong=\"H7704\"* which|strong=\"H1931\"* you|strong=\"H5414\"* say, ‘It|strong=\"H5414\"* is|strong=\"H1931\"* desolate|strong=\"H8077\"*, without|strong=\"H8077\"* man or|strong=\"H7704\"* animal. It|strong=\"H5414\"* is|strong=\"H1931\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*.’" + }, + { + "verseNum": 44, + "text": "Men will|strong=\"H3068\"* buy|strong=\"H7069\"* fields|strong=\"H7704\"* for|strong=\"H3588\"* money|strong=\"H3701\"*, sign|strong=\"H3789\"* the|strong=\"H5002\"* deeds|strong=\"H5612\"*, seal|strong=\"H2856\"* them|strong=\"H7725\"*, and|strong=\"H3063\"* call|strong=\"H5749\"* witnesses|strong=\"H5707\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* land|strong=\"H7704\"* of|strong=\"H3068\"* Benjamin|strong=\"H1144\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H5002\"* places|strong=\"H5439\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* lowland|strong=\"H8219\"*, and|strong=\"H3063\"* in|strong=\"H3068\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5002\"* South|strong=\"H5045\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H7725\"* their|strong=\"H3068\"* captivity|strong=\"H7622\"* to|strong=\"H7725\"* be|strong=\"H3068\"* reversed,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H5750\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, while|strong=\"H5750\"* he|strong=\"H1931\"* was|strong=\"H3068\"* still|strong=\"H5750\"* locked up|strong=\"H6113\"* in|strong=\"H3068\"* the|strong=\"H3068\"* court|strong=\"H2691\"* of|strong=\"H3068\"* the|strong=\"H3068\"* guard|strong=\"H4307\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* does|strong=\"H6213\"* it|strong=\"H6213\"*, Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* forms|strong=\"H3335\"* it|strong=\"H6213\"* to|strong=\"H3068\"* establish|strong=\"H3559\"* it|strong=\"H6213\"*—Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "‘Call|strong=\"H7121\"* to|strong=\"H7121\"* me|strong=\"H5046\"*, and|strong=\"H6030\"* I|strong=\"H3045\"* will|strong=\"H3808\"* answer|strong=\"H6030\"* you|strong=\"H5046\"*, and|strong=\"H6030\"* will|strong=\"H3808\"* show|strong=\"H3045\"* you|strong=\"H5046\"* great|strong=\"H1419\"* and|strong=\"H6030\"* difficult|strong=\"H1419\"* things|strong=\"H1419\"*, which you|strong=\"H5046\"* don’t know|strong=\"H3045\"*.’" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* this|strong=\"H2063\"* city|strong=\"H5892\"* and|strong=\"H3063\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H5921\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* are|strong=\"H3478\"* broken|strong=\"H5422\"* down|strong=\"H5422\"* to|strong=\"H3478\"* make|strong=\"H3588\"* a|strong=\"H3068\"* defense against|strong=\"H5921\"* the|strong=\"H5921\"* mounds and|strong=\"H3063\"* against|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*:" + }, + { + "verseNum": 5, + "text": "‘While|strong=\"H5921\"* men|strong=\"H7451\"* come|strong=\"H2534\"* to|strong=\"H5921\"* fight|strong=\"H3898\"* with|strong=\"H4390\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H5892\"* to|strong=\"H5921\"* fill|strong=\"H4390\"* them|strong=\"H5921\"* with|strong=\"H4390\"* the|strong=\"H3605\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H5892\"* men|strong=\"H7451\"*, whom|strong=\"H6440\"* I|strong=\"H5921\"* have|strong=\"H3605\"* killed|strong=\"H5221\"* in|strong=\"H5921\"* my|strong=\"H3605\"* anger|strong=\"H2534\"* and|strong=\"H5892\"* in|strong=\"H5921\"* my|strong=\"H3605\"* wrath|strong=\"H2534\"*, and|strong=\"H5892\"* for|strong=\"H5921\"* all|strong=\"H3605\"* whose|strong=\"H3605\"* wickedness|strong=\"H7451\"* I|strong=\"H5921\"* have|strong=\"H3605\"* hidden|strong=\"H5641\"* my|strong=\"H3605\"* face|strong=\"H6440\"* from|strong=\"H6440\"* this|strong=\"H2063\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 6, + "text": "behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1992\"* bring|strong=\"H5927\"* it|strong=\"H5927\"* health|strong=\"H4832\"* and|strong=\"H5927\"* healing|strong=\"H4832\"*, and|strong=\"H5927\"* I|strong=\"H2005\"* will|strong=\"H1992\"* cure|strong=\"H4832\"* them|strong=\"H1992\"*; and|strong=\"H5927\"* I|strong=\"H2005\"* will|strong=\"H1992\"* reveal|strong=\"H1540\"* to|strong=\"H5927\"* them|strong=\"H1992\"* abundance|strong=\"H6283\"* of|strong=\"H7965\"* peace|strong=\"H7965\"* and|strong=\"H5927\"* truth." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3478\"* will|strong=\"H3478\"* restore|strong=\"H7725\"* the|strong=\"H7725\"* fortunes|strong=\"H7622\"* of|strong=\"H7622\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*, and|strong=\"H3063\"* will|strong=\"H3478\"* build|strong=\"H1129\"* them|strong=\"H7725\"* as|strong=\"H3063\"* at|strong=\"H3478\"* the|strong=\"H7725\"* first|strong=\"H7223\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3605\"* will|strong=\"H5771\"* cleanse|strong=\"H2891\"* them from|strong=\"H6586\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"*. I|strong=\"H3605\"* will|strong=\"H5771\"* pardon|strong=\"H5545\"* all|strong=\"H3605\"* their|strong=\"H3605\"* iniquities|strong=\"H5771\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H2398\"* and|strong=\"H2398\"* by|strong=\"H3605\"* which|strong=\"H3605\"* they|strong=\"H3605\"* have|strong=\"H5771\"* transgressed|strong=\"H6586\"* against|strong=\"H2398\"* me|strong=\"H2398\"*." + }, + { + "verseNum": 9, + "text": "This|strong=\"H6213\"* city will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5921\"* for|strong=\"H5921\"* a|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H8034\"* joy|strong=\"H8342\"*, for|strong=\"H5921\"* praise|strong=\"H8416\"*, and|strong=\"H8085\"* for|strong=\"H5921\"* glory|strong=\"H8597\"*, before|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H8034\"* the|strong=\"H3605\"* earth, which|strong=\"H1471\"* will|strong=\"H1961\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* that|strong=\"H3605\"* I|strong=\"H5921\"* do|strong=\"H6213\"* to|strong=\"H1961\"* them|strong=\"H5921\"*, and|strong=\"H8085\"* will|strong=\"H1961\"* fear|strong=\"H6342\"* and|strong=\"H8085\"* tremble|strong=\"H7264\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H8085\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peace|strong=\"H7965\"* that|strong=\"H3605\"* I|strong=\"H5921\"* provide|strong=\"H6213\"* to|strong=\"H1961\"* it|strong=\"H5921\"*.’”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H5750\"* there|strong=\"H3427\"* will|strong=\"H3068\"* be|strong=\"H5750\"* heard|strong=\"H8085\"* in|strong=\"H3427\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, about|strong=\"H8085\"* which|strong=\"H1931\"* you|strong=\"H4725\"* say, ‘It|strong=\"H1931\"* is|strong=\"H3068\"* waste|strong=\"H8074\"*, without|strong=\"H2351\"* man|strong=\"H2088\"* and|strong=\"H3063\"* without|strong=\"H2351\"* animal, even|strong=\"H5750\"* in|strong=\"H3427\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H3427\"* the|strong=\"H8085\"* streets|strong=\"H2351\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, that|strong=\"H8085\"* are|strong=\"H3068\"* desolate|strong=\"H8074\"*, without|strong=\"H2351\"* man|strong=\"H2088\"* and|strong=\"H3063\"* without|strong=\"H2351\"* inhabitant|strong=\"H3427\"* and|strong=\"H3063\"* without|strong=\"H2351\"* animal,’" + }, + { + "verseNum": 11, + "text": "the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* joy|strong=\"H8057\"* and|strong=\"H3068\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* gladness|strong=\"H8057\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3588\"* bridegroom|strong=\"H2860\"* and|strong=\"H3068\"* the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* the|strong=\"H3588\"* bride|strong=\"H3618\"*, the|strong=\"H3588\"* voice|strong=\"H6963\"* of|strong=\"H1004\"* those|strong=\"H3588\"* who|strong=\"H3068\"* say|strong=\"H7725\"*, ‘Give|strong=\"H3034\"* thanks|strong=\"H3034\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, for|strong=\"H3588\"* his|strong=\"H3068\"* loving|strong=\"H2896\"* kindness|strong=\"H2617\"* endures|strong=\"H5769\"* forever|strong=\"H5769\"*;’ who|strong=\"H3068\"* bring|strong=\"H7725\"* thanksgiving|strong=\"H8426\"* into|strong=\"H7725\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H7725\"* the|strong=\"H3588\"* captivity|strong=\"H7622\"* of|strong=\"H1004\"* the|strong=\"H3588\"* land to|strong=\"H7725\"* be|strong=\"H3068\"* reversed as|strong=\"H3068\"* at|strong=\"H3068\"* the|strong=\"H3588\"* first|strong=\"H7223\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Yet|strong=\"H5750\"* again|strong=\"H5750\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, which|strong=\"H3068\"* is|strong=\"H3068\"* waste|strong=\"H2720\"*, without|strong=\"H2720\"* man|strong=\"H3605\"* and|strong=\"H3068\"* without|strong=\"H2720\"* animal|strong=\"H1961\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, a|strong=\"H3068\"* habitation|strong=\"H5116\"* of|strong=\"H3068\"* shepherds|strong=\"H7462\"* causing|strong=\"H7462\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"* to|strong=\"H5704\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*." + }, + { + "verseNum": 13, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hill|strong=\"H2022\"* country|strong=\"H2022\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* lowland|strong=\"H8219\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* the|strong=\"H5921\"* South|strong=\"H5045\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3068\"* Benjamin|strong=\"H1144\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* places|strong=\"H3027\"* around|strong=\"H5439\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, the|strong=\"H5921\"* flocks|strong=\"H6629\"* will|strong=\"H3068\"* again|strong=\"H5750\"* pass|strong=\"H5674\"* under|strong=\"H5921\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H3068\"* him|strong=\"H5921\"* who|strong=\"H3068\"* counts|strong=\"H4487\"* them|strong=\"H5921\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H3478\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* perform|strong=\"H6965\"* that|strong=\"H3117\"* good|strong=\"H2896\"* word|strong=\"H1697\"* which|strong=\"H3068\"* I|strong=\"H3117\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* concerning|strong=\"H5921\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 15, + "text": "“In|strong=\"H6213\"* those|strong=\"H1992\"* days|strong=\"H3117\"* and|strong=\"H3117\"* at|strong=\"H1732\"* that|strong=\"H3117\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 16, + "text": "In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H3068\"* saved|strong=\"H3467\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “David|strong=\"H1732\"* will|strong=\"H3068\"* never|strong=\"H3808\"* lack|strong=\"H3772\"* a|strong=\"H3068\"* man to|strong=\"H3478\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3605\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* won’t lack|strong=\"H3772\"* a|strong=\"H3068\"* man|strong=\"H3605\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H5927\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"*, to|strong=\"H5927\"* burn|strong=\"H6999\"* meal|strong=\"H4503\"* offerings|strong=\"H5930\"*, and|strong=\"H3117\"* to|strong=\"H5927\"* do|strong=\"H6213\"* sacrifice|strong=\"H2077\"* continually|strong=\"H3605\"*.”" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 20, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘If|strong=\"H1961\"* you|strong=\"H3117\"* can break|strong=\"H6565\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* the|strong=\"H3541\"* day|strong=\"H3117\"* and|strong=\"H3068\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* the|strong=\"H3541\"* night|strong=\"H3915\"*, so|strong=\"H3541\"* that|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H1115\"* be|strong=\"H1961\"* day|strong=\"H3117\"* and|strong=\"H3068\"* night|strong=\"H3915\"* in|strong=\"H3068\"* their|strong=\"H3068\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 21, + "text": "then|strong=\"H1961\"* my|strong=\"H1732\"* covenant|strong=\"H1285\"* could|strong=\"H1571\"* also|strong=\"H1571\"* be|strong=\"H1961\"* broken|strong=\"H6565\"* with|strong=\"H1285\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"*, that|strong=\"H3548\"* he|strong=\"H1732\"* won’t have|strong=\"H1961\"* a|strong=\"H3068\"* son|strong=\"H1121\"* to|strong=\"H1961\"* reign|strong=\"H4427\"* on|strong=\"H5921\"* his|strong=\"H1732\"* throne|strong=\"H3678\"*; and|strong=\"H1121\"* with|strong=\"H1285\"* the|strong=\"H5921\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, my|strong=\"H1732\"* ministers|strong=\"H8334\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3651\"* the|strong=\"H3651\"* army|strong=\"H6635\"* of|strong=\"H5650\"* the|strong=\"H3651\"* sky|strong=\"H8064\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* counted|strong=\"H5608\"*, and|strong=\"H8064\"* the|strong=\"H3651\"* sand|strong=\"H2344\"* of|strong=\"H5650\"* the|strong=\"H3651\"* sea|strong=\"H3220\"* can|strong=\"H5650\"*’t be|strong=\"H3808\"* measured|strong=\"H4058\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H5650\"* multiply|strong=\"H7235\"* the|strong=\"H3651\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* and|strong=\"H8064\"* the|strong=\"H3651\"* Levites|strong=\"H3881\"* who|strong=\"H5650\"* minister|strong=\"H8334\"* to|strong=\"H1732\"* me|strong=\"H5650\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Don’t consider|strong=\"H7200\"* what|strong=\"H4100\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*, saying|strong=\"H1696\"*, ‘Has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* cast|strong=\"H3068\"* off|strong=\"H3988\"* the|strong=\"H6440\"* two|strong=\"H8147\"* families|strong=\"H4940\"* which|strong=\"H3068\"* he|strong=\"H3068\"* chose?’ Thus|strong=\"H2088\"* they|strong=\"H3068\"* despise|strong=\"H3988\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, that|strong=\"H5971\"* they|strong=\"H3068\"* should|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* before|strong=\"H6440\"* them|strong=\"H6440\"*.”" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “If|strong=\"H7760\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* day|strong=\"H3119\"* and|strong=\"H3068\"* night|strong=\"H3915\"* fails, if|strong=\"H7760\"* I|strong=\"H3541\"* have|strong=\"H3068\"* not|strong=\"H3808\"* appointed|strong=\"H7760\"* the|strong=\"H3541\"* ordinances|strong=\"H2708\"* of|strong=\"H3068\"* heaven|strong=\"H8064\"* and|strong=\"H3068\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 26, + "text": "then|strong=\"H3947\"* I|strong=\"H3588\"* will|strong=\"H5650\"* also|strong=\"H1571\"* cast|strong=\"H3988\"* away|strong=\"H7725\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* Jacob|strong=\"H3290\"*, and|strong=\"H7725\"* of|strong=\"H5650\"* David|strong=\"H1732\"* my|strong=\"H1732\"* servant|strong=\"H5650\"*, so|strong=\"H3947\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* not|strong=\"H3588\"* take|strong=\"H3947\"* of|strong=\"H5650\"* his|strong=\"H3947\"* offspring|strong=\"H2233\"* to|strong=\"H7725\"* be|strong=\"H1571\"* rulers|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H5650\"* Abraham|strong=\"H3947\"*, Isaac|strong=\"H3446\"*, and|strong=\"H7725\"* Jacob|strong=\"H3290\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5650\"* cause|strong=\"H7725\"* their|strong=\"H3947\"* captivity|strong=\"H7622\"* to|strong=\"H7725\"* be|strong=\"H1571\"* reversed and|strong=\"H7725\"* will|strong=\"H5650\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* them|strong=\"H7725\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, when|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, with|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth that|strong=\"H5971\"* were|strong=\"H1961\"* under|strong=\"H5921\"* his|strong=\"H3605\"* dominion|strong=\"H4475\"*, and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, were|strong=\"H1961\"* fighting|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* against|strong=\"H5921\"* all|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"*, saying|strong=\"H1697\"*:" + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H5414\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘Go|strong=\"H1980\"*, and|strong=\"H1980\"* speak to|strong=\"H1980\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H1980\"* tell him|strong=\"H5414\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* this|strong=\"H2063\"* city|strong=\"H5892\"* into|strong=\"H1980\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H1980\"* he|strong=\"H3068\"* will|strong=\"H3068\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H1980\"* fire." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3588\"* won’t escape|strong=\"H4422\"* out|strong=\"H5414\"* of|strong=\"H4428\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* surely|strong=\"H3588\"* be|strong=\"H3808\"* taken|strong=\"H8610\"* and|strong=\"H4428\"* delivered|strong=\"H5414\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*. Your|strong=\"H5414\"* eyes|strong=\"H5869\"* will|strong=\"H4428\"* see|strong=\"H7200\"* the|strong=\"H7200\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* the|strong=\"H7200\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* he|strong=\"H3588\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3588\"* mouth|strong=\"H6310\"* to|strong=\"H1696\"* mouth|strong=\"H6310\"*. You|strong=\"H3588\"* will|strong=\"H4428\"* go|strong=\"H4428\"* to|strong=\"H1696\"* Babylon.”’" + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3068\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* you|strong=\"H5921\"*, ‘You|strong=\"H5921\"* won’t die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H3068\"* peace|strong=\"H7965\"*; and|strong=\"H3068\"* with|strong=\"H8313\"* the|strong=\"H6440\"* burnings|strong=\"H4955\"* of|strong=\"H4428\"* your|strong=\"H3068\"* fathers, the|strong=\"H6440\"* former|strong=\"H7223\"* kings|strong=\"H4428\"* who|strong=\"H3068\"* were|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, so|strong=\"H3651\"* they|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3588\"* a|strong=\"H3068\"* burning|strong=\"H8313\"* for|strong=\"H3588\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* lament|strong=\"H5594\"* you|strong=\"H3588\"*, saying|strong=\"H1697\"*, “Ah|strong=\"H1945\"* Lord|strong=\"H3068\"*!” for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* the|strong=\"H6440\"* word|strong=\"H1697\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* in|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*," + }, + { + "verseNum": 7, + "text": "when|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"* was|strong=\"H5892\"* fighting|strong=\"H3898\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* that|strong=\"H3588\"* were|strong=\"H3063\"* left|strong=\"H7604\"*, against|strong=\"H5921\"* Lachish|strong=\"H3923\"* and|strong=\"H3063\"* against|strong=\"H5921\"* Azekah|strong=\"H5825\"*; for|strong=\"H3588\"* these|strong=\"H2007\"* alone|strong=\"H7604\"* remained|strong=\"H7604\"* of|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* as|strong=\"H3389\"* fortified|strong=\"H4013\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3772\"* Yahweh|strong=\"H3068\"*, after|strong=\"H1961\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* had|strong=\"H3068\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* at|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H3068\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"* to|strong=\"H3068\"* them|strong=\"H1992\"*," + }, + { + "verseNum": 9, + "text": "that|strong=\"H3064\"* every|strong=\"H7971\"* man|strong=\"H5680\"* should|strong=\"H5650\"* let|strong=\"H7971\"* his|strong=\"H7971\"* male|strong=\"H5650\"* servant|strong=\"H5650\"*, and|strong=\"H7971\"* every|strong=\"H7971\"* man|strong=\"H5680\"* his|strong=\"H7971\"* female|strong=\"H8198\"* servant|strong=\"H5650\"*, who|strong=\"H5650\"* is|strong=\"H5650\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"* or|strong=\"H1115\"* a|strong=\"H3068\"* Hebrewess|strong=\"H5680\"*, go|strong=\"H7971\"* free|strong=\"H2670\"*, that|strong=\"H3064\"* no|strong=\"H1115\"* one should|strong=\"H5650\"* make|strong=\"H5647\"* bondservants of|strong=\"H5650\"* them|strong=\"H7971\"*, of|strong=\"H5650\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"* his|strong=\"H7971\"* brother." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* obeyed|strong=\"H8085\"* who|strong=\"H3605\"* had|strong=\"H5971\"* entered into the|strong=\"H3605\"* covenant|strong=\"H1285\"*, that|strong=\"H5971\"* everyone|strong=\"H3605\"* should|strong=\"H5650\"* let|strong=\"H7971\"* his|strong=\"H3605\"* male|strong=\"H5650\"* servant|strong=\"H5650\"* and|strong=\"H7971\"* everyone|strong=\"H3605\"* his|strong=\"H3605\"* female|strong=\"H8198\"* servant|strong=\"H5650\"* go|strong=\"H7971\"* free|strong=\"H2670\"*, that|strong=\"H5971\"* no|strong=\"H1115\"* one|strong=\"H3605\"* should|strong=\"H5650\"* make|strong=\"H8085\"* bondservants of|strong=\"H8269\"* them|strong=\"H7971\"* any|strong=\"H3605\"* more|strong=\"H5750\"*. They|strong=\"H5971\"* obeyed|strong=\"H8085\"* and|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* go|strong=\"H7971\"*," + }, + { + "verseNum": 11, + "text": "but|strong=\"H3651\"* afterwards they|strong=\"H3651\"* turned|strong=\"H7725\"*, and|strong=\"H7971\"* caused the|strong=\"H7725\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* the|strong=\"H7725\"* handmaids|strong=\"H8198\"* whom they|strong=\"H3651\"* had|strong=\"H8198\"* let|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* to|strong=\"H7725\"* return|strong=\"H7725\"*, and|strong=\"H7971\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* into|strong=\"H7725\"* subjection|strong=\"H3533\"* for|strong=\"H7971\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* for|strong=\"H7971\"* handmaids|strong=\"H8198\"*." + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘I|strong=\"H3117\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1004\"* your|strong=\"H3068\"* fathers in|strong=\"H3478\"* the|strong=\"H3541\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3541\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* bondage|strong=\"H5650\"*, saying:" + }, + { + "verseNum": 14, + "text": "At|strong=\"H3808\"* the|strong=\"H8085\"* end|strong=\"H7093\"* of|strong=\"H8141\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*, every|strong=\"H7971\"* man|strong=\"H5680\"* of|strong=\"H8141\"* you|strong=\"H7971\"* shall|strong=\"H3808\"* release|strong=\"H7971\"* his|strong=\"H7971\"* brother who|strong=\"H4376\"* is|strong=\"H7093\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, who|strong=\"H4376\"* has|strong=\"H7093\"* been|strong=\"H5647\"* sold|strong=\"H4376\"* to|strong=\"H7971\"* you|strong=\"H7971\"*, and|strong=\"H7971\"* has|strong=\"H7093\"* served|strong=\"H5647\"* you|strong=\"H7971\"* six|strong=\"H8337\"* years|strong=\"H8141\"*. You|strong=\"H7971\"* shall|strong=\"H3808\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* from|strong=\"H8085\"* you|strong=\"H7971\"*. But|strong=\"H3808\"* your|strong=\"H5186\"* fathers didn’t listen|strong=\"H8085\"* to|strong=\"H7971\"* me|strong=\"H7971\"*, and|strong=\"H7971\"* didn’t incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H6440\"* had|strong=\"H5869\"* now|strong=\"H3117\"* turned|strong=\"H7725\"*, and|strong=\"H7725\"* had|strong=\"H5869\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H1004\"* is|strong=\"H3117\"* right|strong=\"H3477\"* in|strong=\"H5921\"* my|strong=\"H5921\"* eyes|strong=\"H5869\"*, in|strong=\"H5921\"* every|strong=\"H7725\"* man|strong=\"H6440\"* proclaiming|strong=\"H7121\"* liberty|strong=\"H1865\"* to|strong=\"H7725\"* his|strong=\"H7121\"* neighbor|strong=\"H7453\"*. You|strong=\"H6440\"* had|strong=\"H5869\"* made|strong=\"H6213\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"* which|strong=\"H1004\"* is|strong=\"H3117\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H5921\"* name|strong=\"H8034\"*;" + }, + { + "verseNum": 16, + "text": "but|strong=\"H1961\"* you|strong=\"H7971\"* turned|strong=\"H7725\"* and|strong=\"H7971\"* profaned|strong=\"H2490\"* my|strong=\"H7971\"* name|strong=\"H8034\"*, and|strong=\"H7971\"* every|strong=\"H7725\"* man|strong=\"H5315\"* caused|strong=\"H1961\"* his|strong=\"H7971\"* servant|strong=\"H5650\"* and|strong=\"H7971\"* every|strong=\"H7725\"* man|strong=\"H5315\"* his|strong=\"H7971\"* handmaid|strong=\"H8198\"*, whom you|strong=\"H7971\"* had|strong=\"H1961\"* let|strong=\"H7971\"* go|strong=\"H7971\"* free|strong=\"H2670\"* at|strong=\"H7725\"* their|strong=\"H7725\"* pleasure|strong=\"H5315\"*, to|strong=\"H7725\"* return|strong=\"H7725\"*. You|strong=\"H7971\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* into|strong=\"H7725\"* subjection|strong=\"H3533\"*, to|strong=\"H7725\"* be|strong=\"H1961\"* to|strong=\"H7725\"* you|strong=\"H7971\"* for|strong=\"H7971\"* servants|strong=\"H5650\"* and|strong=\"H7971\"* for|strong=\"H7971\"* handmaids|strong=\"H8198\"*.’”" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “You|strong=\"H5414\"* have|strong=\"H3068\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H3068\"* me|strong=\"H5414\"*, to|strong=\"H3068\"* proclaim|strong=\"H7121\"* liberty|strong=\"H1865\"*, every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* brother|strong=\"H7453\"*, and|strong=\"H3068\"* every|strong=\"H3605\"* man|strong=\"H3605\"* to|strong=\"H3068\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* proclaim|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H5414\"* a|strong=\"H3068\"* liberty|strong=\"H1865\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “to|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H5414\"* be|strong=\"H3808\"* tossed back and|strong=\"H3068\"* forth|strong=\"H5414\"* among|strong=\"H2719\"* all|strong=\"H3605\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5414\"* will|strong=\"H1697\"* give|strong=\"H5414\"* the|strong=\"H6440\"* men|strong=\"H8147\"* who|strong=\"H3808\"* have|strong=\"H1697\"* transgressed|strong=\"H5674\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"*, who|strong=\"H3808\"* have|strong=\"H1697\"* not|strong=\"H3808\"* performed|strong=\"H6965\"* the|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"* which|strong=\"H1697\"* they|strong=\"H3808\"* made|strong=\"H3772\"* before|strong=\"H6440\"* me|strong=\"H5414\"* when|strong=\"H5674\"* they|strong=\"H3808\"* cut|strong=\"H3772\"* the|strong=\"H6440\"* calf|strong=\"H5695\"* in|strong=\"H6440\"* two|strong=\"H8147\"* and|strong=\"H6965\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* its|strong=\"H5414\"* parts|strong=\"H1335\"*:" + }, + { + "verseNum": 19, + "text": "the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"*, the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Jerusalem|strong=\"H3389\"*, the|strong=\"H3605\"* eunuchs|strong=\"H5631\"*, the|strong=\"H3605\"* priests|strong=\"H3548\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H8269\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* passed|strong=\"H5674\"* between|strong=\"H5674\"* the|strong=\"H3605\"* parts|strong=\"H1335\"* of|strong=\"H8269\"* the|strong=\"H3605\"* calf|strong=\"H5695\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* even give|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"* and|strong=\"H8064\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* those|strong=\"H1961\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"*. Their|strong=\"H5414\"* dead|strong=\"H5315\"* bodies|strong=\"H5038\"* will|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H3978\"* for|strong=\"H3027\"* the|strong=\"H5414\"* birds|strong=\"H5775\"* of|strong=\"H3027\"* the|strong=\"H5414\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* for|strong=\"H3027\"* the|strong=\"H5414\"* animals|strong=\"H1961\"* of|strong=\"H3027\"* the|strong=\"H5414\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 21, + "text": "“I|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* his|strong=\"H5414\"* princes|strong=\"H8269\"* into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* their|strong=\"H5414\"* enemies|strong=\"H3027\"*, into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5921\"* who|strong=\"H5315\"* seek|strong=\"H1245\"* their|strong=\"H5414\"* life|strong=\"H5315\"* and|strong=\"H3063\"* into|strong=\"H5927\"* the|strong=\"H5921\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s army|strong=\"H2428\"*, who|strong=\"H5315\"* has|strong=\"H4428\"* gone|strong=\"H5927\"* away|strong=\"H5927\"* from|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* command|strong=\"H6680\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3063\"* cause|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* this|strong=\"H2063\"* city|strong=\"H5892\"*. They|strong=\"H3068\"* will|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, take|strong=\"H3920\"* it|strong=\"H5414\"*, and|strong=\"H3063\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire. I|strong=\"H2005\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5002\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, without|strong=\"H3427\"* inhabitant|strong=\"H3427\"*.”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Go|strong=\"H1980\"* to|strong=\"H1696\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3068\"* Rechabites|strong=\"H7397\"*, and|strong=\"H1980\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8248\"*, and|strong=\"H1980\"* bring|strong=\"H1980\"* them|strong=\"H8248\"* into|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, into|strong=\"H1980\"* one|strong=\"H3068\"* of|strong=\"H1004\"* the|strong=\"H3068\"* rooms|strong=\"H3957\"*, and|strong=\"H1980\"* give|strong=\"H8248\"* them|strong=\"H8248\"* wine|strong=\"H3196\"* to|strong=\"H1696\"* drink|strong=\"H8248\"*.”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3947\"* I|strong=\"H1121\"* took|strong=\"H3947\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Habazziniah|strong=\"H2262\"*, with|strong=\"H1004\"* his|strong=\"H3605\"* brothers|strong=\"H1121\"*, all|strong=\"H3605\"* his|strong=\"H3605\"* sons|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Rechabites|strong=\"H7397\"*;" + }, + { + "verseNum": 4, + "text": "and|strong=\"H1121\"* I|strong=\"H1121\"* brought|strong=\"H3068\"* them|strong=\"H1121\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, into the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Hanan|strong=\"H2605\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Igdaliah|strong=\"H3012\"*, the|strong=\"H8104\"* man|strong=\"H1121\"* of|strong=\"H1121\"* God|strong=\"H3068\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H8104\"* princes|strong=\"H8269\"*, which|strong=\"H3068\"* was|strong=\"H3068\"* above|strong=\"H4605\"* the|strong=\"H8104\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"* the|strong=\"H8104\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shallum|strong=\"H7967\"*, the|strong=\"H8104\"* keeper|strong=\"H8104\"* of|strong=\"H1121\"* the|strong=\"H8104\"* threshold|strong=\"H5592\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* before|strong=\"H6440\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Rechabites|strong=\"H7397\"* bowls|strong=\"H1375\"* full|strong=\"H4392\"* of|strong=\"H1121\"* wine|strong=\"H3196\"*, and|strong=\"H1121\"* cups|strong=\"H1375\"*; and|strong=\"H1121\"* I|strong=\"H5414\"* said to|strong=\"H5414\"* them|strong=\"H5414\"*, “Drink|strong=\"H8354\"* wine|strong=\"H3196\"*!”" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* they|strong=\"H3588\"* said, “We|strong=\"H3588\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* wine|strong=\"H3196\"*; for|strong=\"H3588\"* Jonadab|strong=\"H3122\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, our|strong=\"H5921\"* father|strong=\"H1121\"*, commanded|strong=\"H6680\"* us|strong=\"H5921\"*, saying, ‘You|strong=\"H3588\"* shall|strong=\"H1121\"* drink|strong=\"H8354\"* no|strong=\"H3808\"* wine|strong=\"H3196\"*, neither|strong=\"H3808\"* you|strong=\"H3588\"* nor|strong=\"H3808\"* your|strong=\"H5921\"* children|strong=\"H1121\"*, forever|strong=\"H5769\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H1004\"* not|strong=\"H3808\"* build|strong=\"H1129\"* a|strong=\"H3068\"* house|strong=\"H1004\"*, sow|strong=\"H2232\"* seed|strong=\"H2233\"*, plant|strong=\"H5193\"* a|strong=\"H3068\"* vineyard|strong=\"H3754\"*, or|strong=\"H3808\"* have|strong=\"H1961\"* any|strong=\"H3605\"*; but|strong=\"H3588\"* all|strong=\"H3605\"* your|strong=\"H3605\"* days|strong=\"H3117\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* tents, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* live|strong=\"H3427\"* many|strong=\"H7227\"* days|strong=\"H3117\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land|strong=\"H6440\"* in|strong=\"H3427\"* which|strong=\"H1004\"* you|strong=\"H3588\"* live|strong=\"H3427\"* as|strong=\"H3117\"* nomads.’" + }, + { + "verseNum": 8, + "text": "We|strong=\"H3117\"* have|strong=\"H1121\"* obeyed|strong=\"H8085\"* the|strong=\"H3605\"* voice|strong=\"H6963\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"*, our|strong=\"H3605\"* father|strong=\"H1121\"*, in|strong=\"H8085\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H3117\"* commanded|strong=\"H6680\"* us|strong=\"H3117\"*, to|strong=\"H3117\"* drink|strong=\"H8354\"* no|strong=\"H1115\"* wine|strong=\"H3196\"* all|strong=\"H3605\"* our|strong=\"H3605\"* days|strong=\"H3117\"*, we|strong=\"H3068\"*, our|strong=\"H3605\"* wives, our|strong=\"H3605\"* sons|strong=\"H1121\"*, or|strong=\"H8085\"* our|strong=\"H3605\"* daughters|strong=\"H1323\"*;" + }, + { + "verseNum": 9, + "text": "and|strong=\"H1004\"* not|strong=\"H3808\"* to|strong=\"H1961\"* build|strong=\"H1129\"* houses|strong=\"H1004\"* for|strong=\"H3427\"* ourselves|strong=\"H1129\"* to|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"*. We have|strong=\"H1961\"* no|strong=\"H3808\"* vineyard|strong=\"H3754\"*, field|strong=\"H7704\"*, or|strong=\"H3808\"* seed|strong=\"H2233\"*;" + }, + { + "verseNum": 10, + "text": "but|strong=\"H8085\"* we|strong=\"H3068\"* have|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* tents, and|strong=\"H8085\"* have|strong=\"H3605\"* obeyed|strong=\"H8085\"*, and|strong=\"H8085\"* done|strong=\"H6213\"* according to|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jonadab|strong=\"H3122\"* our|strong=\"H3605\"* father commanded|strong=\"H6680\"* us|strong=\"H6213\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H1961\"* when|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, we|strong=\"H3068\"* said, ‘Come|strong=\"H5927\"*! Let|strong=\"H1961\"*’s go|strong=\"H5927\"* to|strong=\"H5927\"* Jerusalem|strong=\"H3389\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H4428\"* for|strong=\"H6440\"* fear|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* Syrians; so|strong=\"H1961\"* we|strong=\"H3068\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*.’”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H5002\"*: ‘Go|strong=\"H1980\"* and|strong=\"H1980\"* tell|strong=\"H8085\"* the|strong=\"H5002\"* men|strong=\"H1980\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H1980\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, “Will|strong=\"H3068\"* you|strong=\"H3947\"* not|strong=\"H3808\"* receive|strong=\"H3947\"* instruction|strong=\"H4148\"* to|strong=\"H1980\"* listen|strong=\"H8085\"* to|strong=\"H1980\"* my|strong=\"H8085\"* words|strong=\"H1697\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“The|strong=\"H8085\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* that|strong=\"H3588\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* his|strong=\"H8085\"* sons|strong=\"H1121\"*, not|strong=\"H3808\"* to|strong=\"H1696\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"*, are|strong=\"H3117\"* performed|strong=\"H6965\"*; and|strong=\"H1121\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"* they|strong=\"H3588\"* drink|strong=\"H8354\"* none|strong=\"H3808\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* obey|strong=\"H8085\"* their|strong=\"H8085\"* father|strong=\"H1121\"*’s commandment|strong=\"H4687\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1121\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, rising|strong=\"H6965\"* up|strong=\"H6965\"* early|strong=\"H7925\"* and|strong=\"H1121\"* speaking|strong=\"H1696\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* have|strong=\"H1121\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* have|strong=\"H5030\"* sent|strong=\"H7971\"* also|strong=\"H5030\"* to|strong=\"H7725\"* you|strong=\"H5414\"* all|strong=\"H3605\"* my|strong=\"H8085\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H5414\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H5414\"*, saying, ‘Every|strong=\"H3605\"* one|strong=\"H3605\"* of|strong=\"H3427\"* you|strong=\"H5414\"* must|strong=\"H3808\"* return|strong=\"H7725\"* now|strong=\"H4994\"* from|strong=\"H7725\"* his|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*, amend|strong=\"H3190\"* your|strong=\"H3605\"* doings|strong=\"H4611\"*, and|strong=\"H7971\"* don’t go|strong=\"H3212\"* after|strong=\"H7971\"* other|strong=\"H3605\"* gods to|strong=\"H7725\"* serve|strong=\"H5647\"* them|strong=\"H5414\"*. Then|strong=\"H7971\"* you|strong=\"H5414\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land which|strong=\"H5030\"* I|strong=\"H5414\"* have|strong=\"H5030\"* given|strong=\"H5414\"* to|strong=\"H7725\"* you|strong=\"H5414\"* and|strong=\"H7971\"* to|strong=\"H7725\"* your|strong=\"H3605\"* fathers;’ but|strong=\"H3808\"* you|strong=\"H5414\"* have|strong=\"H5030\"* not|strong=\"H3808\"* inclined|strong=\"H5186\"* your|strong=\"H3605\"* ear|strong=\"H8085\"*, nor|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H7725\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8085\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Jonadab|strong=\"H3082\"* the|strong=\"H8085\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* have|strong=\"H5971\"* performed|strong=\"H6965\"* the|strong=\"H8085\"* commandment|strong=\"H4687\"* of|strong=\"H1121\"* their|strong=\"H8085\"* father|strong=\"H1121\"* which|strong=\"H5971\"* he|strong=\"H3588\"* commanded|strong=\"H6680\"* them|strong=\"H6680\"*, but|strong=\"H3588\"* this|strong=\"H2088\"* people|strong=\"H5971\"* has|strong=\"H3588\"* not|strong=\"H3808\"* listened|strong=\"H8085\"* to|strong=\"H8085\"* me|strong=\"H6680\"*.”’" + }, + { + "verseNum": 17, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H2005\"* have|strong=\"H3068\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, because|strong=\"H5921\"* I|strong=\"H2005\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* have|strong=\"H3068\"* not|strong=\"H3808\"* heard|strong=\"H8085\"*; and|strong=\"H3063\"* I|strong=\"H2005\"* have|strong=\"H3068\"* called|strong=\"H7121\"* to|strong=\"H1696\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3651\"* have|strong=\"H3068\"* not|strong=\"H3808\"* answered|strong=\"H6030\"*.’”" + }, + { + "verseNum": 18, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3605\"* Rechabites|strong=\"H7397\"*, “Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Because|strong=\"H5921\"* you|strong=\"H6680\"* have|strong=\"H3068\"* obeyed|strong=\"H8085\"* the|strong=\"H3605\"* commandment|strong=\"H4687\"* of|strong=\"H1004\"* Jonadab|strong=\"H3082\"* your|strong=\"H3068\"* father, and|strong=\"H3478\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* his|strong=\"H3605\"* precepts|strong=\"H4687\"*, and|strong=\"H3478\"* done|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H3605\"* he|strong=\"H6213\"* commanded|strong=\"H6680\"* you|strong=\"H6680\"*,’" + }, + { + "verseNum": 19, + "text": "therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Jonadab|strong=\"H3122\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Rechab|strong=\"H7394\"* will|strong=\"H3068\"* not|strong=\"H3808\"* lack|strong=\"H3772\"* a|strong=\"H3068\"* man|strong=\"H1121\"* to|strong=\"H3478\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* forever|strong=\"H3605\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, this|strong=\"H2088\"* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* Yahweh|strong=\"H3068\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Take|strong=\"H3947\"* a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H3117\"* a|strong=\"H3068\"* book|strong=\"H5612\"*, and|strong=\"H3063\"* write|strong=\"H3789\"* in|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H3117\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, against|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* Josiah|strong=\"H2977\"* even|strong=\"H5704\"* to|strong=\"H1696\"* this|strong=\"H2088\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H6213\"* may|strong=\"H7725\"* be|strong=\"H1004\"* that|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* will|strong=\"H1004\"* hear|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* which|strong=\"H1004\"* I|strong=\"H8085\"* intend|strong=\"H2803\"* to|strong=\"H7725\"* do|strong=\"H6213\"* to|strong=\"H7725\"* them|strong=\"H7725\"*, that|strong=\"H3605\"* they|strong=\"H6213\"* may|strong=\"H7725\"* each|strong=\"H3605\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3605\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*; that|strong=\"H3605\"* I|strong=\"H8085\"* may|strong=\"H7725\"* forgive|strong=\"H5545\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"* and|strong=\"H3063\"* their|strong=\"H3605\"* sin|strong=\"H2403\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* called|strong=\"H7121\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*; and|strong=\"H1121\"* Baruch|strong=\"H1263\"* wrote|strong=\"H3789\"* from|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* had|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H7121\"*, on|strong=\"H5921\"* a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H1121\"* a|strong=\"H3068\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 5, + "text": "Jeremiah|strong=\"H3414\"* commanded|strong=\"H6680\"* Baruch|strong=\"H1263\"*, saying, “I|strong=\"H6680\"* am|strong=\"H3068\"* restricted|strong=\"H6113\"*. I|strong=\"H6680\"* can|strong=\"H3201\"*’t go|strong=\"H3201\"* into Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H1571\"* you|strong=\"H3605\"* go|strong=\"H5971\"*, and|strong=\"H3063\"* read|strong=\"H7121\"* from|strong=\"H3117\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* which|strong=\"H3068\"* you|strong=\"H3605\"* have|strong=\"H3068\"* written|strong=\"H3789\"* from|strong=\"H3117\"* my|strong=\"H3605\"* mouth|strong=\"H6310\"*, Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* on|strong=\"H3117\"* the|strong=\"H3605\"* fast|strong=\"H6685\"* day|strong=\"H3117\"*. Also|strong=\"H1571\"* you|strong=\"H3605\"* shall|strong=\"H3068\"* read|strong=\"H7121\"* them|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1004\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* come|strong=\"H5971\"* out|strong=\"H3605\"* of|strong=\"H1004\"* their|strong=\"H3605\"* cities|strong=\"H5892\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* present|strong=\"H5307\"* their|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* each|strong=\"H5971\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3068\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* pronounced|strong=\"H1696\"* great|strong=\"H1419\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* wrath|strong=\"H2534\"* against|strong=\"H6440\"* this|strong=\"H2088\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 8, + "text": "Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"* did|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* commanded|strong=\"H6680\"* him|strong=\"H7121\"*, reading|strong=\"H7121\"* in|strong=\"H3068\"* the|strong=\"H3605\"* book|strong=\"H5612\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* came|strong=\"H1961\"* from|strong=\"H6440\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7121\"* Baruch|strong=\"H1263\"* read|strong=\"H7121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* from|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* room|strong=\"H1004\"* of|strong=\"H1121\"* Gemariah|strong=\"H1587\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* upper|strong=\"H5945\"* court|strong=\"H2691\"*, at|strong=\"H3068\"* the|strong=\"H3605\"* entry|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H3605\"* new|strong=\"H2319\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, in|strong=\"H3068\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "When|strong=\"H8085\"* Micaiah|strong=\"H4321\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gemariah|strong=\"H1587\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, had|strong=\"H3068\"* heard|strong=\"H8085\"* out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* all|strong=\"H3605\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "he|strong=\"H8033\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, into|strong=\"H3381\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*’s room|strong=\"H1004\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* were|strong=\"H1121\"* sitting|strong=\"H3427\"* there|strong=\"H8033\"*, Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*, Delaiah|strong=\"H1806\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shemaiah|strong=\"H8098\"*, Elnathan the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Achbor|strong=\"H5907\"*, Gemariah|strong=\"H1587\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H8085\"* Micaiah|strong=\"H4321\"* declared|strong=\"H5046\"* to|strong=\"H8085\"* them|strong=\"H7121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* heard|strong=\"H8085\"*, when|strong=\"H8085\"* Baruch|strong=\"H1263\"* read|strong=\"H7121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* in|strong=\"H8085\"* the|strong=\"H3605\"* ears of|strong=\"H1697\"* the|strong=\"H3605\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* sent|strong=\"H7971\"* Jehudi|strong=\"H3065\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Cushi|strong=\"H3570\"*, to|strong=\"H3212\"* Baruch|strong=\"H1263\"*, saying, “Take|strong=\"H3947\"* in|strong=\"H3212\"* your|strong=\"H3605\"* hand|strong=\"H3027\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* in|strong=\"H3212\"* which|strong=\"H5971\"* you|strong=\"H3605\"* have|strong=\"H5971\"* read|strong=\"H7121\"* in|strong=\"H3212\"* the|strong=\"H3605\"* ears of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* come|strong=\"H3212\"*.”" + }, + { + "verseNum": 15, + "text": "They|strong=\"H7121\"* said|strong=\"H7121\"* to|strong=\"H7121\"* him|strong=\"H7121\"*, “Sit|strong=\"H3427\"* down|strong=\"H3427\"* now|strong=\"H4994\"*, and|strong=\"H3427\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H3427\"* our hearing.”" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* they|strong=\"H1697\"* had|strong=\"H1961\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"*, they|strong=\"H1697\"* turned|strong=\"H1961\"* in|strong=\"H4428\"* fear|strong=\"H6342\"* one|strong=\"H3605\"* toward another|strong=\"H7453\"*, and|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H1961\"* Baruch|strong=\"H1263\"*, “We|strong=\"H8085\"* will|strong=\"H1961\"* surely|strong=\"H5046\"* tell|strong=\"H5046\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H8085\"* words|strong=\"H1697\"*.”" + }, + { + "verseNum": 17, + "text": "They|strong=\"H6310\"* asked|strong=\"H7592\"* Baruch|strong=\"H1263\"*, saying|strong=\"H1697\"*, “Tell|strong=\"H5046\"* us|strong=\"H4994\"* now|strong=\"H4994\"*, how|strong=\"H4994\"* did|strong=\"H1697\"* you|strong=\"H3605\"* write|strong=\"H3789\"* all|strong=\"H3605\"* these|strong=\"H3789\"* words|strong=\"H1697\"* at|strong=\"H3605\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*?”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7121\"* Baruch|strong=\"H1263\"* answered|strong=\"H1697\"* them|strong=\"H5921\"*, “He|strong=\"H3605\"* dictated|strong=\"H6310\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"* to|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* his|strong=\"H3605\"* mouth|strong=\"H6310\"*, and|strong=\"H1697\"* I|strong=\"H5921\"* wrote|strong=\"H3789\"* them|strong=\"H5921\"* with|strong=\"H5921\"* ink|strong=\"H1773\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H3045\"* the|strong=\"H3045\"* princes|strong=\"H8269\"* said to|strong=\"H3212\"* Baruch|strong=\"H1263\"*, “You|strong=\"H3045\"* and|strong=\"H3212\"* Jeremiah|strong=\"H3414\"* go|strong=\"H3212\"* hide|strong=\"H5641\"*. Don’t let|strong=\"H3212\"* anyone know|strong=\"H3045\"* where you|strong=\"H3045\"* are|strong=\"H8269\"*.”" + }, + { + "verseNum": 20, + "text": "They|strong=\"H1697\"* went|strong=\"H4428\"* in|strong=\"H4428\"* to|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* into|strong=\"H1697\"* the|strong=\"H3605\"* court|strong=\"H2691\"*, but|strong=\"H3605\"* they|strong=\"H1697\"* had|strong=\"H4428\"* laid up|strong=\"H6485\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* in|strong=\"H4428\"* the|strong=\"H3605\"* room|strong=\"H3957\"* of|strong=\"H4428\"* Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*. Then|strong=\"H4428\"* they|strong=\"H1697\"* told|strong=\"H5046\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* in|strong=\"H4428\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 21, + "text": "So|strong=\"H3947\"* the|strong=\"H3605\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Jehudi|strong=\"H3065\"* to|strong=\"H7971\"* get|strong=\"H3947\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"*, and|strong=\"H7971\"* he|strong=\"H3605\"* took|strong=\"H3947\"* it|strong=\"H7121\"* out|strong=\"H7971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* room|strong=\"H3957\"* of|strong=\"H4428\"* Elishama the|strong=\"H3605\"* scribe|strong=\"H5608\"*. Jehudi|strong=\"H3065\"* read|strong=\"H7121\"* it|strong=\"H7121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H7971\"* in|strong=\"H5921\"* the|strong=\"H3605\"* hearing of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* was|strong=\"H4428\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H6440\"* winter|strong=\"H2779\"* house|strong=\"H1004\"* in|strong=\"H3427\"* the|strong=\"H6440\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, and|strong=\"H4428\"* there|strong=\"H3427\"* was|strong=\"H4428\"* a|strong=\"H3068\"* fire in|strong=\"H3427\"* the|strong=\"H6440\"* brazier burning|strong=\"H1197\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H1961\"* Jehudi|strong=\"H3065\"* had|strong=\"H1961\"* read|strong=\"H7121\"* three|strong=\"H7969\"* or|strong=\"H5704\"* four|strong=\"H7969\"* columns|strong=\"H1817\"*, the|strong=\"H3605\"* king|strong=\"H5921\"* cut|strong=\"H7167\"* it|strong=\"H7121\"* with|strong=\"H5921\"* the|strong=\"H3605\"* penknife|strong=\"H8593\"*, and|strong=\"H7969\"* cast|strong=\"H7993\"* it|strong=\"H7121\"* into|strong=\"H5921\"* the|strong=\"H3605\"* fire that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* brazier, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* scroll|strong=\"H4039\"* was|strong=\"H1961\"* consumed|strong=\"H8552\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire that|strong=\"H3605\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* brazier." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* who|strong=\"H3605\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H8085\"* words|strong=\"H1697\"* were|strong=\"H1697\"* not|strong=\"H3808\"* afraid|strong=\"H6342\"*, and|strong=\"H4428\"* didn’t tear|strong=\"H7167\"* their|strong=\"H3605\"* garments." + }, + { + "verseNum": 25, + "text": "Moreover|strong=\"H1571\"* Elnathan and|strong=\"H4428\"* Delaiah|strong=\"H1806\"* and|strong=\"H4428\"* Gemariah|strong=\"H1587\"* had|strong=\"H4428\"* made|strong=\"H8313\"* intercession|strong=\"H6293\"* to|strong=\"H8085\"* the|strong=\"H8085\"* king|strong=\"H4428\"* that|strong=\"H8085\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* burn|strong=\"H8313\"* the|strong=\"H8085\"* scroll|strong=\"H4039\"*; but|strong=\"H3808\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H8085\"* them|strong=\"H8313\"*." + }, + { + "verseNum": 26, + "text": "The|strong=\"H3947\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Jerahmeel|strong=\"H3396\"* the|strong=\"H3947\"* king|strong=\"H4428\"*’s son|strong=\"H1121\"*, and|strong=\"H1121\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azriel|strong=\"H5837\"*, and|strong=\"H1121\"* Shelemiah|strong=\"H8018\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Abdeel|strong=\"H5655\"*, to|strong=\"H3068\"* arrest Baruch|strong=\"H1263\"* the|strong=\"H3947\"* scribe|strong=\"H5608\"* and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"*; but|strong=\"H3947\"* Yahweh|strong=\"H3068\"* hid|strong=\"H5641\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 27, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, after|strong=\"H1961\"* the|strong=\"H3068\"* king|strong=\"H4428\"* had|strong=\"H3068\"* burned|strong=\"H8313\"* the|strong=\"H3068\"* scroll|strong=\"H4039\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Baruch|strong=\"H1263\"* wrote|strong=\"H3789\"* at|strong=\"H3068\"* the|strong=\"H3068\"* mouth|strong=\"H6310\"* of|strong=\"H4428\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 28, + "text": "“Take|strong=\"H3947\"* again|strong=\"H7725\"* another scroll|strong=\"H4039\"*, and|strong=\"H3063\"* write|strong=\"H3789\"* in|strong=\"H5921\"* it|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* former|strong=\"H7223\"* words|strong=\"H1697\"* that|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* first|strong=\"H7223\"* scroll|strong=\"H4039\"*, which|strong=\"H1697\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* has|strong=\"H1961\"* burned|strong=\"H8313\"*." + }, + { + "verseNum": 29, + "text": "Concerning|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* you|strong=\"H5921\"* shall|strong=\"H3068\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H5921\"* have|strong=\"H3068\"* burned|strong=\"H8313\"* this|strong=\"H2063\"* scroll|strong=\"H4039\"*, saying, ‘Why|strong=\"H4069\"* have|strong=\"H3068\"* you|strong=\"H5921\"* written|strong=\"H3789\"* therein|strong=\"H3789\"*, saying, “The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon will|strong=\"H3068\"* certainly come|strong=\"H3063\"* and|strong=\"H3063\"* destroy|strong=\"H7843\"* this|strong=\"H2063\"* land, and|strong=\"H3063\"* will|strong=\"H3068\"* cause to|strong=\"H3068\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* there|strong=\"H4480\"* man and|strong=\"H3063\"* animal|strong=\"H7843\"*”?’”" + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*: “He|strong=\"H3117\"* will|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* to|strong=\"H3068\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s throne|strong=\"H3678\"*. His|strong=\"H3068\"* dead|strong=\"H5038\"* body|strong=\"H5038\"* will|strong=\"H3068\"* be|strong=\"H1961\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* in|strong=\"H3427\"* the|strong=\"H5921\"* day|strong=\"H3117\"* to|strong=\"H3068\"* the|strong=\"H5921\"* heat|strong=\"H2721\"*, and|strong=\"H3063\"* in|strong=\"H3427\"* the|strong=\"H5921\"* night|strong=\"H3915\"* to|strong=\"H3068\"* the|strong=\"H5921\"* frost|strong=\"H7140\"*." + }, + { + "verseNum": 31, + "text": "I|strong=\"H5921\"* will|strong=\"H5650\"* punish|strong=\"H6485\"* him|strong=\"H5921\"*, his|strong=\"H3605\"* offspring|strong=\"H2233\"*, and|strong=\"H3063\"* his|strong=\"H3605\"* servants|strong=\"H5650\"* for|strong=\"H5921\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"*. I|strong=\"H5921\"* will|strong=\"H5650\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H5650\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H5650\"* pronounced|strong=\"H1696\"* against|strong=\"H5921\"* them|strong=\"H5921\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"*.”’”" + }, + { + "verseNum": 32, + "text": "Then|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* took|strong=\"H3947\"* another|strong=\"H5750\"* scroll|strong=\"H5612\"*, and|strong=\"H1121\"* gave|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5921\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* scribe|strong=\"H5608\"*, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, who|strong=\"H3605\"* wrote|strong=\"H3789\"* therein|strong=\"H3789\"* from|strong=\"H5921\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H3605\"* book|strong=\"H5612\"* which|strong=\"H1992\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* had|strong=\"H4428\"* burned|strong=\"H8313\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire; and|strong=\"H1121\"* many|strong=\"H7227\"* similar words|strong=\"H1697\"* were|strong=\"H1121\"* added|strong=\"H3254\"* to|strong=\"H5921\"* them|strong=\"H5414\"*." + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* reigned|strong=\"H4427\"* as|strong=\"H8478\"* king|strong=\"H4428\"* instead|strong=\"H8478\"* of|strong=\"H1121\"* Coniah|strong=\"H3659\"* the|strong=\"H8478\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"*, whom Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon made|strong=\"H4427\"* king|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H8478\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "But|strong=\"H3808\"* neither|strong=\"H3808\"* he|strong=\"H1931\"*, nor|strong=\"H3808\"* his|strong=\"H3068\"* servants|strong=\"H5650\"*, nor|strong=\"H3808\"* the|strong=\"H8085\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H8085\"* land, listened|strong=\"H8085\"* to|strong=\"H1696\"* Yahweh|strong=\"H3068\"*’s words|strong=\"H1697\"*, which|strong=\"H1931\"* he|strong=\"H1931\"* spoke|strong=\"H1696\"* by|strong=\"H3027\"* the|strong=\"H8085\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 3, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3068\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* Jehucal|strong=\"H3081\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"* and|strong=\"H1121\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Maaseiah|strong=\"H4641\"*, the|strong=\"H3068\"* priest|strong=\"H3548\"*, to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying, “Pray|strong=\"H6419\"* now|strong=\"H4994\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H1157\"* us|strong=\"H4994\"*.”" + }, + { + "verseNum": 4, + "text": "Now|strong=\"H5414\"* Jeremiah|strong=\"H3414\"* came|strong=\"H3318\"* in|strong=\"H1004\"* and|strong=\"H1004\"* went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, for|strong=\"H1004\"* they|strong=\"H3808\"* had|strong=\"H5414\"* not|strong=\"H3808\"* put|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H8432\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 5, + "text": "Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"* had|strong=\"H6547\"* come|strong=\"H5927\"* out|strong=\"H3318\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*; and|strong=\"H3389\"* when|strong=\"H8085\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* who|strong=\"H6547\"* were|strong=\"H4714\"* besieging|strong=\"H6696\"* Jerusalem|strong=\"H3389\"* heard|strong=\"H8085\"* news|strong=\"H8088\"* of|strong=\"H5921\"* them|strong=\"H5921\"*, they|strong=\"H5921\"* withdrew|strong=\"H5927\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Jeremiah|strong=\"H3414\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 7, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘You|strong=\"H7971\"* shall|strong=\"H3068\"* tell the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, who|strong=\"H3068\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H7725\"* me|strong=\"H7971\"* to|strong=\"H7725\"* inquire|strong=\"H1875\"* of|strong=\"H4428\"* me|strong=\"H7971\"*: “Behold|strong=\"H2009\"*, Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"*, which|strong=\"H3068\"* has|strong=\"H3068\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H7725\"* help|strong=\"H5833\"* you|strong=\"H7971\"*, will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Egypt|strong=\"H4714\"* into|strong=\"H7725\"* their|strong=\"H3068\"* own land." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* will|strong=\"H5892\"* come|strong=\"H7725\"* again|strong=\"H7725\"*, and|strong=\"H7725\"* fight|strong=\"H3898\"* against|strong=\"H5921\"* this|strong=\"H2063\"* city|strong=\"H5892\"*. They|strong=\"H5921\"* will|strong=\"H5892\"* take|strong=\"H3920\"* it|strong=\"H5921\"* and|strong=\"H7725\"* burn|strong=\"H8313\"* it|strong=\"H5921\"* with|strong=\"H8313\"* fire.”’" + }, + { + "verseNum": 9, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Don’t deceive|strong=\"H5377\"* yourselves|strong=\"H5315\"*, saying, “The|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* depart|strong=\"H3212\"* from|strong=\"H5921\"* us|strong=\"H5921\"*;” for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* depart|strong=\"H3212\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* you|strong=\"H3588\"* had|strong=\"H3588\"* struck|strong=\"H5221\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H5892\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3605\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* you|strong=\"H3588\"*, and|strong=\"H6965\"* only|strong=\"H3588\"* wounded|strong=\"H5221\"* men|strong=\"H2428\"* remained|strong=\"H7604\"* among them|strong=\"H5221\"*, they|strong=\"H3588\"* would|strong=\"H3605\"* each|strong=\"H3605\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* in|strong=\"H5892\"* his|strong=\"H3605\"* tent and|strong=\"H6965\"* burn|strong=\"H8313\"* this|strong=\"H2063\"* city|strong=\"H5892\"* with|strong=\"H8313\"* fire.’”" + }, + { + "verseNum": 11, + "text": "When|strong=\"H1961\"* the|strong=\"H6440\"* army|strong=\"H2428\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* had|strong=\"H1961\"* withdrawn|strong=\"H5927\"* from|strong=\"H6440\"* Jerusalem|strong=\"H3389\"* for|strong=\"H5921\"* fear|strong=\"H6440\"* of|strong=\"H6440\"* Pharaoh|strong=\"H6547\"*’s army|strong=\"H2428\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H8432\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* go|strong=\"H3212\"* into|strong=\"H8432\"* the|strong=\"H8432\"* land of|strong=\"H8432\"* Benjamin|strong=\"H1144\"*, to|strong=\"H3318\"* receive his|strong=\"H8432\"* portion|strong=\"H2505\"* there|strong=\"H8033\"*, in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* he|strong=\"H1931\"* was|strong=\"H8034\"* in|strong=\"H1121\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"*, a|strong=\"H3068\"* captain|strong=\"H1167\"* of|strong=\"H1121\"* the|strong=\"H3414\"* guard|strong=\"H6488\"* was|strong=\"H8034\"* there|strong=\"H8033\"*, whose|strong=\"H1121\"* name|strong=\"H8034\"* was|strong=\"H8034\"* Irijah|strong=\"H3376\"*, the|strong=\"H3414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, the|strong=\"H3414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hananiah|strong=\"H2608\"*; and|strong=\"H1121\"* he|strong=\"H1931\"* seized|strong=\"H8610\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3414\"* prophet|strong=\"H5030\"*, saying, “You|strong=\"H1961\"* are|strong=\"H1121\"* defecting to|strong=\"H1961\"* the|strong=\"H3414\"* Chaldeans|strong=\"H3778\"*!”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5307\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"*, “That|strong=\"H8085\"* is|strong=\"H8085\"* false|strong=\"H8267\"*! I|strong=\"H5921\"* am not|strong=\"H3808\"* defecting to|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*.”" + }, + { + "verseNum": 15, + "text": "The|strong=\"H5921\"* princes|strong=\"H8269\"* were|strong=\"H8269\"* angry|strong=\"H7107\"* with|strong=\"H1004\"* Jeremiah|strong=\"H3414\"*, and|strong=\"H1004\"* struck|strong=\"H5221\"* him|strong=\"H5414\"*, and|strong=\"H1004\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H5921\"* prison|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jonathan|strong=\"H3083\"* the|strong=\"H5921\"* scribe|strong=\"H5608\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H3588\"* made|strong=\"H6213\"* that|strong=\"H3588\"* the|strong=\"H5921\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3588\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3588\"* come into the|strong=\"H3588\"* dungeon|strong=\"H1004\"* house|strong=\"H1004\"* and|strong=\"H3117\"* into the|strong=\"H3588\"* cells, and|strong=\"H3117\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3588\"* remained|strong=\"H3427\"* there|strong=\"H8033\"* many|strong=\"H7227\"* days|strong=\"H3117\"*," + }, + { + "verseNum": 17, + "text": "then|strong=\"H3947\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3068\"* had|strong=\"H3068\"* him|strong=\"H5414\"* brought|strong=\"H3947\"* out|strong=\"H7971\"*. The|strong=\"H5414\"* king|strong=\"H4428\"* asked|strong=\"H7592\"* him|strong=\"H5414\"* secretly|strong=\"H5643\"* in|strong=\"H3068\"* his|strong=\"H5414\"* house|strong=\"H1004\"*, “Is|strong=\"H3068\"* there|strong=\"H3426\"* any|strong=\"H3426\"* word|strong=\"H1697\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"*?”" + }, + { + "verseNum": 18, + "text": "Moreover|strong=\"H3588\"* Jeremiah|strong=\"H3414\"* said to|strong=\"H5414\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*, “How|strong=\"H4100\"* have|strong=\"H5971\"* I|strong=\"H3588\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* you|strong=\"H3588\"*, against|strong=\"H2398\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, or|strong=\"H1004\"* against|strong=\"H2398\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* put|strong=\"H5414\"* me|strong=\"H5414\"* in|strong=\"H1004\"* prison|strong=\"H1004\"*?" + }, + { + "verseNum": 19, + "text": "Now|strong=\"H4428\"* where|strong=\"H5921\"* are|strong=\"H5030\"* your|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H5030\"* prophesied|strong=\"H5012\"* to|strong=\"H5921\"* you|strong=\"H5921\"*, saying, ‘The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon will|strong=\"H4428\"* not|strong=\"H3808\"* come against|strong=\"H5921\"* you|strong=\"H5921\"*, nor|strong=\"H3808\"* against|strong=\"H5921\"* this|strong=\"H2063\"* land’?" + }, + { + "verseNum": 20, + "text": "Now|strong=\"H6258\"* please|strong=\"H4994\"* hear|strong=\"H8085\"*, my|strong=\"H8085\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*: please|strong=\"H4994\"* let|strong=\"H4994\"* my|strong=\"H8085\"* supplication|strong=\"H8467\"* be|strong=\"H4191\"* presented|strong=\"H5307\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, that|strong=\"H8085\"* you|strong=\"H6440\"* not|strong=\"H3808\"* cause|strong=\"H7725\"* me|strong=\"H6440\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Jonathan|strong=\"H3083\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"*, lest I|strong=\"H6258\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"*, and|strong=\"H4428\"* they|strong=\"H3117\"* committed|strong=\"H6485\"* Jeremiah|strong=\"H3414\"* into|strong=\"H5414\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*. They|strong=\"H3117\"* gave|strong=\"H5414\"* him|strong=\"H5414\"* daily|strong=\"H3117\"* a|strong=\"H3068\"* loaf|strong=\"H3603\"* of|strong=\"H4428\"* bread|strong=\"H3899\"* out|strong=\"H2351\"* of|strong=\"H4428\"* the|strong=\"H3605\"* bakers’ street|strong=\"H2351\"*, until|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bread|strong=\"H3899\"* in|strong=\"H3427\"* the|strong=\"H3605\"* city|strong=\"H5892\"* was|strong=\"H5892\"* gone|strong=\"H8552\"*. Thus Jeremiah|strong=\"H3414\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* court|strong=\"H2691\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H4307\"*." + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Shephatiah|strong=\"H8203\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mattan|strong=\"H4977\"*, Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pashhur|strong=\"H6583\"*, Jucal|strong=\"H3116\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shelemiah|strong=\"H8018\"*, and|strong=\"H1121\"* Pashhur|strong=\"H6583\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Malchijah|strong=\"H4441\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* words|strong=\"H1697\"* that|strong=\"H5971\"* Jeremiah|strong=\"H3414\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘He|strong=\"H3068\"* who|strong=\"H3068\"* remains|strong=\"H1961\"* in|strong=\"H3427\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* die|strong=\"H4191\"* by|strong=\"H3068\"* the|strong=\"H3541\"* sword|strong=\"H2719\"*, by|strong=\"H3068\"* the|strong=\"H3541\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* by|strong=\"H3068\"* the|strong=\"H3541\"* pestilence|strong=\"H1698\"*, but|strong=\"H1961\"* he|strong=\"H3068\"* who|strong=\"H3068\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* Chaldeans|strong=\"H3778\"* will|strong=\"H3068\"* live|strong=\"H3427\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* escape|strong=\"H3318\"* with|strong=\"H3068\"* his|strong=\"H3068\"* life|strong=\"H5315\"* and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* live|strong=\"H3427\"*.’" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘This|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* surely|strong=\"H5414\"* be|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H3920\"* it|strong=\"H5414\"*.’”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* this|strong=\"H2088\"* man|strong=\"H4191\"* be|strong=\"H4191\"* put|strong=\"H4191\"* to|strong=\"H1696\"* death|strong=\"H4191\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* weakens the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3605\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"* who|strong=\"H3605\"* remain|strong=\"H7604\"* in|strong=\"H5921\"* this|strong=\"H2088\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* the|strong=\"H3605\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, in|strong=\"H5921\"* speaking|strong=\"H1696\"* such|strong=\"H2088\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H4191\"* doesn’t seek|strong=\"H1875\"* the|strong=\"H3605\"* welfare|strong=\"H7965\"* of|strong=\"H4428\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, but|strong=\"H3588\"* harm|strong=\"H7451\"*.”" + }, + { + "verseNum": 5, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H3588\"* king|strong=\"H4428\"* said|strong=\"H1697\"*, “Behold|strong=\"H2009\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* in|strong=\"H4428\"* your|strong=\"H3588\"* hand|strong=\"H3027\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* king|strong=\"H4428\"* can|strong=\"H3201\"*’t do|strong=\"H3201\"* anything|strong=\"H1697\"* to|strong=\"H3201\"* oppose you|strong=\"H3588\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H3947\"* they|strong=\"H3588\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* and|strong=\"H1121\"* threw|strong=\"H7993\"* him|strong=\"H7971\"* into|strong=\"H7993\"* the|strong=\"H3588\"* dungeon of|strong=\"H1121\"* Malchijah|strong=\"H4441\"* the|strong=\"H3588\"* king’s son|strong=\"H1121\"*, that|strong=\"H3588\"* was|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3588\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H3588\"* guard|strong=\"H4307\"*. They|strong=\"H3588\"* let|strong=\"H7971\"* down|strong=\"H7993\"* Jeremiah|strong=\"H3414\"* with|strong=\"H4325\"* cords|strong=\"H2256\"*. In|strong=\"H1121\"* the|strong=\"H3588\"* dungeon there was|strong=\"H1121\"* no|strong=\"H3947\"* water|strong=\"H4325\"*, but|strong=\"H3588\"* mire|strong=\"H2916\"*; and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* sank|strong=\"H2883\"* in|strong=\"H1121\"* the|strong=\"H3588\"* mire|strong=\"H2916\"*." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* Ebedmelech the|strong=\"H8085\"* Ethiopian|strong=\"H3569\"*, a|strong=\"H3068\"* eunuch|strong=\"H5631\"*, who|strong=\"H1931\"* was|strong=\"H1931\"* in|strong=\"H3427\"* the|strong=\"H8085\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H4428\"* put|strong=\"H5414\"* Jeremiah|strong=\"H3414\"* in|strong=\"H3427\"* the|strong=\"H8085\"* dungeon|strong=\"H1004\"* (the|strong=\"H8085\"* king|strong=\"H4428\"* was|strong=\"H1931\"* then|strong=\"H5414\"* sitting|strong=\"H3427\"* in|strong=\"H3427\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"*)," + }, + { + "verseNum": 8, + "text": "Ebedmelech went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3318\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*, and|strong=\"H4428\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3318\"* king|strong=\"H4428\"*, saying|strong=\"H1696\"*," + }, + { + "verseNum": 9, + "text": "“My|strong=\"H3605\"* lord the|strong=\"H3605\"* king|strong=\"H4428\"*, these|strong=\"H6213\"* men|strong=\"H6213\"* have|strong=\"H5030\"* done|strong=\"H6213\"* evil|strong=\"H7489\"* in|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5030\"* done|strong=\"H6213\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, whom|strong=\"H6440\"* they|strong=\"H3588\"* have|strong=\"H5030\"* cast|strong=\"H7993\"* into|strong=\"H6213\"* the|strong=\"H3605\"* dungeon. He|strong=\"H3588\"* is|strong=\"H3605\"* likely to|strong=\"H4191\"* die|strong=\"H4191\"* in|strong=\"H6213\"* the|strong=\"H3605\"* place|strong=\"H8478\"* where|strong=\"H8478\"* he|strong=\"H3588\"* is|strong=\"H3605\"*, because|strong=\"H3588\"* of|strong=\"H4428\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*; for|strong=\"H3588\"* there|strong=\"H3605\"* is|strong=\"H3605\"* no|strong=\"H6213\"* more|strong=\"H5750\"* bread|strong=\"H3899\"* in|strong=\"H6213\"* the|strong=\"H3605\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H2088\"* the|strong=\"H3947\"* king|strong=\"H4428\"* commanded|strong=\"H6680\"* Ebedmelech the|strong=\"H3947\"* Ethiopian|strong=\"H3569\"*, saying, “Take|strong=\"H3947\"* from|strong=\"H4480\"* here|strong=\"H2088\"* thirty|strong=\"H7970\"* men|strong=\"H3947\"* with|strong=\"H3027\"* you|strong=\"H6680\"*, and|strong=\"H4428\"* take|strong=\"H3947\"* up|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* out|strong=\"H4480\"* of|strong=\"H4428\"* the|strong=\"H3947\"* dungeon, before|strong=\"H4480\"* he|strong=\"H3027\"* dies|strong=\"H4191\"*.”" + }, + { + "verseNum": 11, + "text": "So|strong=\"H3947\"* Ebedmelech took|strong=\"H3947\"* the|strong=\"H3947\"* men|strong=\"H3947\"* with|strong=\"H1004\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* went|strong=\"H4428\"* into|strong=\"H3027\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H4428\"* the|strong=\"H3947\"* king|strong=\"H4428\"* under|strong=\"H8478\"* the|strong=\"H3947\"* treasury|strong=\"H1004\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* from|strong=\"H3027\"* there|strong=\"H8033\"* rags|strong=\"H4418\"* and|strong=\"H7971\"* worn-out|strong=\"H1094\"* garments, and|strong=\"H7971\"* let|strong=\"H7971\"* them|strong=\"H7971\"* down|strong=\"H7971\"* by|strong=\"H3027\"* cords|strong=\"H2256\"* into|strong=\"H3027\"* the|strong=\"H3947\"* dungeon|strong=\"H1004\"* to|strong=\"H7971\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 12, + "text": "Ebedmelech the|strong=\"H6213\"* Ethiopian|strong=\"H3569\"* said|strong=\"H3651\"* to|strong=\"H6213\"* Jeremiah|strong=\"H3414\"*, “Now|strong=\"H4994\"* put|strong=\"H7760\"* these|strong=\"H6213\"* rags|strong=\"H4418\"* and|strong=\"H3027\"* worn-out|strong=\"H1094\"* garments under|strong=\"H8478\"* your|strong=\"H7760\"* armpits under|strong=\"H8478\"* the|strong=\"H6213\"* cords|strong=\"H2256\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H4480\"* they|strong=\"H2691\"* lifted|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* up|strong=\"H5927\"* with|strong=\"H3427\"* the|strong=\"H4480\"* cords|strong=\"H2256\"*, and|strong=\"H5927\"* took|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H4480\"* dungeon; and|strong=\"H5927\"* Jeremiah|strong=\"H3414\"* remained|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H4480\"* court|strong=\"H2691\"* of|strong=\"H3427\"* the|strong=\"H4480\"* guard|strong=\"H4307\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3947\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3947\"* king|strong=\"H4428\"* sent|strong=\"H7971\"* and|strong=\"H3068\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3947\"* prophet|strong=\"H5030\"* to|strong=\"H3068\"* himself|strong=\"H3068\"* into|strong=\"H3947\"* the|strong=\"H3947\"* third|strong=\"H7992\"* entry|strong=\"H3996\"* that|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. Then|strong=\"H3947\"* the|strong=\"H3947\"* king|strong=\"H4428\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, “I|strong=\"H1697\"* will|strong=\"H3068\"* ask|strong=\"H7592\"* you|strong=\"H7971\"* something|strong=\"H1697\"*. Hide|strong=\"H3582\"* nothing|strong=\"H1697\"* from|strong=\"H4480\"* me|strong=\"H7971\"*.”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H8085\"* Jeremiah|strong=\"H3414\"* said|strong=\"H8085\"* to|strong=\"H4191\"* Zedekiah|strong=\"H6667\"*, “If|strong=\"H3588\"* I|strong=\"H3588\"* declare|strong=\"H5046\"* it|strong=\"H3588\"* to|strong=\"H4191\"* you|strong=\"H3588\"*, will|strong=\"H3808\"* you|strong=\"H3588\"* not|strong=\"H3808\"* surely|strong=\"H4191\"* put|strong=\"H4191\"* me|strong=\"H5046\"* to|strong=\"H4191\"* death|strong=\"H4191\"*? If|strong=\"H3588\"* I|strong=\"H3588\"* give|strong=\"H3289\"* you|strong=\"H3588\"* counsel|strong=\"H3289\"*, you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H4191\"* me|strong=\"H5046\"*.”" + }, + { + "verseNum": 16, + "text": "So|strong=\"H6213\"* Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* swore|strong=\"H7650\"* secretly|strong=\"H5643\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"*, saying, “As|strong=\"H6213\"* Yahweh|strong=\"H3068\"* lives|strong=\"H5315\"*, who|strong=\"H3068\"* made|strong=\"H6213\"* our|strong=\"H3068\"* souls|strong=\"H5315\"*, I|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H6213\"* put|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"*, neither will|strong=\"H3068\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* these|strong=\"H2063\"* men|strong=\"H6213\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* your|strong=\"H3068\"* life|strong=\"H5315\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H3318\"* Jeremiah|strong=\"H3414\"* said|strong=\"H3318\"* to|strong=\"H3318\"* Zedekiah|strong=\"H6667\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘If you|strong=\"H3808\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3541\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, then|strong=\"H3318\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* will|strong=\"H3068\"* live|strong=\"H2421\"*, and|strong=\"H3478\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire. You|strong=\"H3808\"* will|strong=\"H3068\"* live|strong=\"H2421\"*, along with|strong=\"H8313\"* your|strong=\"H3068\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3808\"* if you|strong=\"H5414\"* will|strong=\"H4428\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, then|strong=\"H3318\"* this|strong=\"H2063\"* city|strong=\"H5892\"* will|strong=\"H4428\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, and|strong=\"H4428\"* they|strong=\"H3808\"* will|strong=\"H4428\"* burn|strong=\"H8313\"* it|strong=\"H5414\"* with|strong=\"H8313\"* fire, and|strong=\"H4428\"* you|strong=\"H5414\"* won’t escape|strong=\"H4422\"* out|strong=\"H3318\"* of|strong=\"H4428\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*.’”" + }, + { + "verseNum": 19, + "text": "Zedekiah|strong=\"H6667\"* the|strong=\"H5414\"* king|strong=\"H4428\"* said to|strong=\"H5414\"* Jeremiah|strong=\"H3414\"*, “I|strong=\"H5414\"* am afraid|strong=\"H1672\"* of|strong=\"H4428\"* the|strong=\"H5414\"* Jews|strong=\"H3064\"* who|strong=\"H4428\"* have|strong=\"H3027\"* defected|strong=\"H5307\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Chaldeans|strong=\"H3778\"*, lest|strong=\"H6435\"* they|strong=\"H3027\"* deliver|strong=\"H5414\"* me|strong=\"H5414\"* into|strong=\"H5307\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H4428\"* they|strong=\"H3027\"* mock|strong=\"H5953\"* me|strong=\"H5414\"*.”" + }, + { + "verseNum": 20, + "text": "But|strong=\"H3808\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1696\"*, “They|strong=\"H3068\"* won’t deliver|strong=\"H5414\"* you|strong=\"H5414\"*. Obey|strong=\"H8085\"*, I|strong=\"H5414\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, in|strong=\"H3068\"* that|strong=\"H8085\"* which|strong=\"H3068\"* I|strong=\"H5414\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H5414\"*; so|strong=\"H5414\"* it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3808\"* well|strong=\"H3190\"* with|strong=\"H3068\"* you|strong=\"H5414\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* soul|strong=\"H5315\"* will|strong=\"H3068\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H7200\"* if|strong=\"H7200\"* you|strong=\"H7200\"* refuse|strong=\"H3986\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, this|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H7200\"* word|strong=\"H1697\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"*:" + }, + { + "verseNum": 22, + "text": "‘Behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* are|strong=\"H1004\"* left|strong=\"H7604\"* in|strong=\"H1004\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*’s house|strong=\"H1004\"* will|strong=\"H4428\"* be|strong=\"H3201\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon’s princes|strong=\"H8269\"*, and|strong=\"H3063\"* those|strong=\"H3605\"* women will|strong=\"H4428\"* say," + }, + { + "verseNum": 23, + "text": "They|strong=\"H3588\"* will|strong=\"H4428\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wives and|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"* to|strong=\"H3318\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*. You|strong=\"H3588\"* won’t escape|strong=\"H4422\"* out|strong=\"H3318\"* of|strong=\"H1121\"* their|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3588\"* will|strong=\"H4428\"* be|strong=\"H3808\"* taken|strong=\"H8610\"* by|strong=\"H3027\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon. You|strong=\"H3588\"* will|strong=\"H4428\"* cause|strong=\"H3318\"* this|strong=\"H2063\"* city|strong=\"H5892\"* to|strong=\"H3318\"* be|strong=\"H3808\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire.’”" + }, + { + "verseNum": 24, + "text": "Then|strong=\"H3045\"* Zedekiah|strong=\"H6667\"* said|strong=\"H1697\"* to|strong=\"H4191\"* Jeremiah|strong=\"H3414\"*, “Let|strong=\"H3808\"* no|strong=\"H3808\"* man|strong=\"H4191\"* know|strong=\"H3045\"* of|strong=\"H1697\"* these|strong=\"H4191\"* words|strong=\"H1697\"*, and|strong=\"H1697\"* you|strong=\"H3045\"* won’t die|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H8085\"* princes|strong=\"H8269\"* hear|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H8269\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* they|strong=\"H3588\"* come|strong=\"H4994\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H4428\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, ‘Declare|strong=\"H5046\"* to|strong=\"H1696\"* us|strong=\"H4994\"* now|strong=\"H4994\"* what|strong=\"H4100\"* you|strong=\"H3588\"* have|strong=\"H8269\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H8085\"* king|strong=\"H4428\"*; don’t hide|strong=\"H3582\"* it|strong=\"H3588\"* from|strong=\"H4480\"* us|strong=\"H4994\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* will|strong=\"H4428\"* not|strong=\"H3808\"* put|strong=\"H4191\"* you|strong=\"H3588\"* to|strong=\"H1696\"* death|strong=\"H4191\"*; also|strong=\"H4428\"* tell|strong=\"H5046\"* us|strong=\"H4994\"* what|strong=\"H4100\"* the|strong=\"H8085\"* king|strong=\"H4428\"* said|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*;’" + }, + { + "verseNum": 26, + "text": "then|strong=\"H5307\"* you|strong=\"H6440\"* shall|strong=\"H4428\"* tell them|strong=\"H7725\"*, ‘I|strong=\"H6440\"* presented|strong=\"H5307\"* my|strong=\"H7725\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*, that|strong=\"H4428\"* he|strong=\"H8033\"* would|strong=\"H4428\"* not|strong=\"H1115\"* cause|strong=\"H7725\"* me|strong=\"H6440\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* Jonathan|strong=\"H3083\"*’s house|strong=\"H1004\"*, to|strong=\"H7725\"* die|strong=\"H4191\"* there|strong=\"H8033\"*.’”" + }, + { + "verseNum": 27, + "text": "Then|strong=\"H8085\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* came|strong=\"H1697\"* to|strong=\"H8085\"* Jeremiah|strong=\"H3414\"*, and|strong=\"H4428\"* asked|strong=\"H7592\"* him|strong=\"H5046\"*; and|strong=\"H4428\"* he|strong=\"H3588\"* told|strong=\"H5046\"* them|strong=\"H1992\"* according|strong=\"H4480\"* to|strong=\"H8085\"* all|strong=\"H3605\"* these|strong=\"H1992\"* words|strong=\"H1697\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H4428\"* commanded|strong=\"H6680\"*. So|strong=\"H4480\"* they|strong=\"H1992\"* stopped speaking|strong=\"H2790\"* with|strong=\"H1697\"* him|strong=\"H5046\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* matter|strong=\"H1697\"* was|strong=\"H1697\"* not|strong=\"H3808\"* perceived|strong=\"H8085\"*." + }, + { + "verseNum": 28, + "text": "So|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* stayed|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3117\"* court|strong=\"H2691\"* of|strong=\"H3117\"* the|strong=\"H3117\"* guard|strong=\"H4307\"* until|strong=\"H5704\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* was|strong=\"H1961\"* taken|strong=\"H3920\"*." + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon and|strong=\"H3063\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* came|strong=\"H3063\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H6667\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Zedekiah|strong=\"H6667\"*, in|strong=\"H8141\"* the|strong=\"H6667\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, the|strong=\"H6667\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H6667\"* month|strong=\"H2320\"*, a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H8141\"* in|strong=\"H8141\"* the|strong=\"H6667\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H4428\"* in|strong=\"H3427\"*, and|strong=\"H4428\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* gate|strong=\"H8179\"*: Nergal Sharezer, Samgarnebo, Sarsechim|strong=\"H8310\"* the|strong=\"H3605\"* Rabsaris|strong=\"H7249\"*, Nergal Sharezer the|strong=\"H3605\"* Rabmag, with|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rest|strong=\"H7611\"* of|strong=\"H4428\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon." + }, + { + "verseNum": 4, + "text": "When|strong=\"H1961\"* Zedekiah|strong=\"H6667\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* saw|strong=\"H7200\"* them|strong=\"H7200\"*, then|strong=\"H1961\"* they|strong=\"H3605\"* fled|strong=\"H1272\"* and|strong=\"H3063\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* by|strong=\"H1870\"* night|strong=\"H3915\"*, by|strong=\"H1870\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*, through|strong=\"H4480\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H4480\"* walls|strong=\"H2346\"*; and|strong=\"H3063\"* he|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H1696\"* the|strong=\"H3947\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H3947\"* Chaldeans|strong=\"H3778\"* pursued|strong=\"H7291\"* them|strong=\"H3947\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* Zedekiah|strong=\"H6667\"* in|strong=\"H4428\"* the|strong=\"H3947\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*. When|strong=\"H1696\"* they|strong=\"H3947\"* had|strong=\"H4428\"* taken|strong=\"H3947\"* him|strong=\"H3947\"*, they|strong=\"H3947\"* brought|strong=\"H5927\"* him|strong=\"H3947\"* up|strong=\"H5927\"* to|strong=\"H1696\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"* in|strong=\"H4428\"* the|strong=\"H3947\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*; and|strong=\"H4428\"* he|strong=\"H1696\"* pronounced|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H3947\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon killed|strong=\"H7819\"* Zedekiah|strong=\"H6667\"*’s sons|strong=\"H1121\"* in|strong=\"H4428\"* Riblah|strong=\"H7247\"* before|strong=\"H5869\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon also|strong=\"H4428\"* killed|strong=\"H7819\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nobles|strong=\"H2715\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 7, + "text": "Moreover he put|strong=\"H5786\"* out|strong=\"H5786\"* Zedekiah|strong=\"H6667\"*’s eyes|strong=\"H5869\"* and|strong=\"H5869\"* bound him|strong=\"H5869\"* in|strong=\"H5869\"* fetters|strong=\"H5178\"*, to|strong=\"H5869\"* carry him|strong=\"H5869\"* to|strong=\"H5869\"* Babylon." + }, + { + "verseNum": 8, + "text": "The|strong=\"H8313\"* Chaldeans|strong=\"H3778\"* burned|strong=\"H8313\"* the|strong=\"H8313\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"* and|strong=\"H4428\"* the|strong=\"H8313\"* people|strong=\"H5971\"*’s houses|strong=\"H1004\"* with|strong=\"H8313\"* fire and|strong=\"H4428\"* broke|strong=\"H5422\"* down|strong=\"H5422\"* the|strong=\"H8313\"* walls|strong=\"H2346\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H5307\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H5892\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* into|strong=\"H1540\"* Babylon the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, the|strong=\"H5921\"* deserters|strong=\"H5307\"* also|strong=\"H5971\"* who|strong=\"H5971\"* fell|strong=\"H5307\"* away|strong=\"H1540\"* to|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* rest|strong=\"H3499\"* of|strong=\"H5892\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* remained|strong=\"H7604\"*." + }, + { + "verseNum": 10, + "text": "But|strong=\"H1931\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5414\"* captain|strong=\"H7227\"* of|strong=\"H3117\"* the|strong=\"H5414\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* of|strong=\"H3117\"* the|strong=\"H5414\"* poor|strong=\"H1800\"* of|strong=\"H3117\"* the|strong=\"H5414\"* people|strong=\"H5971\"*, who|strong=\"H1931\"* had|strong=\"H3063\"* nothing|strong=\"H3972\"*, in|strong=\"H3117\"* the|strong=\"H5414\"* land of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* vineyards|strong=\"H3754\"* and|strong=\"H3063\"* fields|strong=\"H3010\"* at|strong=\"H3117\"* the|strong=\"H5414\"* same|strong=\"H1931\"* time|strong=\"H3117\"*." + }, + { + "verseNum": 11, + "text": "Now|strong=\"H7227\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon commanded|strong=\"H6680\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5921\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H5921\"* guard|strong=\"H2876\"* concerning|strong=\"H5921\"* Jeremiah|strong=\"H3414\"*, saying," + }, + { + "verseNum": 12, + "text": "“Take|strong=\"H3947\"* him|strong=\"H5921\"* and|strong=\"H5869\"* take|strong=\"H3947\"* care|strong=\"H7760\"* of|strong=\"H5869\"* him|strong=\"H5921\"*. Do|strong=\"H6213\"* him|strong=\"H5921\"* no|strong=\"H6213\"* harm|strong=\"H7451\"*; but|strong=\"H3588\"* do|strong=\"H6213\"* to|strong=\"H1696\"* him|strong=\"H5921\"* even|strong=\"H3588\"* as|strong=\"H6213\"* he|strong=\"H3588\"* tells|strong=\"H1696\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "So|strong=\"H7971\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, Nebushazban, Rabsaris|strong=\"H7249\"*, and|strong=\"H7971\"* Nergal Sharezer, Rabmag, and|strong=\"H7971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* chief|strong=\"H7227\"* officers|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon" + }, + { + "verseNum": 14, + "text": "sent|strong=\"H7971\"* and|strong=\"H1121\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* out|strong=\"H3318\"* of|strong=\"H1121\"* the|strong=\"H5414\"* court|strong=\"H2691\"* of|strong=\"H1121\"* the|strong=\"H5414\"* guard|strong=\"H4307\"*, and|strong=\"H1121\"* committed|strong=\"H5414\"* him|strong=\"H5414\"* to|strong=\"H3318\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H5414\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, that|strong=\"H5971\"* he|strong=\"H1004\"* should bring|strong=\"H3318\"* him|strong=\"H5414\"* home|strong=\"H1004\"*. So|strong=\"H3947\"* he|strong=\"H1004\"* lived|strong=\"H3427\"* among|strong=\"H8432\"* the|strong=\"H5414\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* while|strong=\"H1961\"* he|strong=\"H3068\"* was|strong=\"H3068\"* shut|strong=\"H6113\"* up|strong=\"H6113\"* in|strong=\"H3068\"* the|strong=\"H3068\"* court|strong=\"H2691\"* of|strong=\"H3068\"* the|strong=\"H3068\"* guard|strong=\"H4307\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“Go|strong=\"H1980\"*, and|strong=\"H1980\"* speak|strong=\"H1697\"* to|strong=\"H1980\"* Ebedmelech the|strong=\"H6440\"* Ethiopian|strong=\"H3569\"*, saying|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3117\"* will|strong=\"H3068\"* bring|strong=\"H1980\"* my|strong=\"H3068\"* words|strong=\"H1697\"* on|strong=\"H3117\"* this|strong=\"H2063\"* city|strong=\"H5892\"* for|strong=\"H6440\"* evil|strong=\"H7451\"*, and|strong=\"H1980\"* not|strong=\"H3808\"* for|strong=\"H6440\"* good|strong=\"H2896\"*; and|strong=\"H1980\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* accomplished|strong=\"H1961\"* before|strong=\"H6440\"* you|strong=\"H6440\"* in|strong=\"H1980\"* that|strong=\"H3117\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3808\"* I|strong=\"H3117\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H5414\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “and|strong=\"H3068\"* you|strong=\"H5414\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* given|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H6440\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* the|strong=\"H6440\"* men of|strong=\"H3068\"* whom|strong=\"H6440\"* you|strong=\"H5414\"* are|strong=\"H3117\"* afraid|strong=\"H3016\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* save|strong=\"H4422\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* won’t fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* escape|strong=\"H4422\"* with|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H5315\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* put|strong=\"H3068\"* your|strong=\"H3068\"* trust in|strong=\"H3068\"* me|strong=\"H5315\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H1931\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* from|strong=\"H4480\"* Yahweh|strong=\"H3068\"*, after|strong=\"H4480\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H3068\"* let|strong=\"H7971\"* him|strong=\"H7971\"* go|strong=\"H7971\"* from|strong=\"H4480\"* Ramah|strong=\"H7414\"*, when|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H3068\"* taken|strong=\"H3947\"* him|strong=\"H7971\"* being|strong=\"H1961\"* bound in|strong=\"H3068\"* chains among|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captives|strong=\"H1546\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* were|strong=\"H1961\"* carried|strong=\"H1540\"* away|strong=\"H7971\"* captive|strong=\"H1540\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 2, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H3068\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Jeremiah|strong=\"H3414\"* and|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3947\"*, “Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* pronounced|strong=\"H1696\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* on|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* brought|strong=\"H6213\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* done|strong=\"H6213\"* according as|strong=\"H1697\"* he|strong=\"H3588\"* spoke|strong=\"H1696\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* his|strong=\"H3068\"* voice|strong=\"H6963\"*, therefore|strong=\"H3588\"* this|strong=\"H2088\"* thing|strong=\"H1697\"* has|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 4, + "text": "Now|strong=\"H6258\"*, behold|strong=\"H2009\"*, I|strong=\"H3117\"* release|strong=\"H6605\"* you|strong=\"H6440\"* today|strong=\"H3117\"* from|strong=\"H4480\"* the|strong=\"H3605\"* chains which|strong=\"H5869\"* are|strong=\"H3117\"* on|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3027\"*. If|strong=\"H2009\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* come|strong=\"H3212\"* with|strong=\"H5921\"* me|strong=\"H6440\"* into|strong=\"H3212\"* Babylon, come|strong=\"H3212\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5869\"* take|strong=\"H7760\"* care|strong=\"H3027\"* of|strong=\"H3117\"* you|strong=\"H6440\"*; but|strong=\"H7200\"* if|strong=\"H2009\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* bad|strong=\"H7489\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* come|strong=\"H3212\"* with|strong=\"H5921\"* me|strong=\"H6440\"* into|strong=\"H3212\"* Babylon, don’t. Behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H6440\"* is|strong=\"H3117\"* before|strong=\"H6440\"* you|strong=\"H6440\"*. Where|strong=\"H8033\"* it|strong=\"H7760\"* seems|strong=\"H3605\"* good|strong=\"H2896\"* and|strong=\"H3117\"* right|strong=\"H3477\"* to|strong=\"H3212\"* you|strong=\"H6440\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, go|strong=\"H3212\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H5414\"* while|strong=\"H5750\"* he|strong=\"H3605\"* had|strong=\"H4428\"* not|strong=\"H3808\"* yet|strong=\"H5750\"* gone|strong=\"H3212\"* back|strong=\"H7725\"*, “Go|strong=\"H3212\"* back|strong=\"H7725\"* then|strong=\"H7971\"*,” he|strong=\"H3605\"* said, “to|strong=\"H7725\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*, whom|strong=\"H5971\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon has|strong=\"H4428\"* made|strong=\"H5414\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* dwell|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; or|strong=\"H3808\"* go|strong=\"H3212\"* wherever|strong=\"H3605\"* it|strong=\"H5414\"* seems|strong=\"H3605\"* right|strong=\"H3477\"* to|strong=\"H7725\"* you|strong=\"H5414\"* to|strong=\"H7725\"* go|strong=\"H3212\"*.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* went|strong=\"H5971\"* to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*, and|strong=\"H1121\"* lived|strong=\"H3427\"* with|strong=\"H3427\"* him|strong=\"H7604\"* among|strong=\"H8432\"* the|strong=\"H8432\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H3427\"* the|strong=\"H8432\"* land." + }, + { + "verseNum": 7, + "text": "Now|strong=\"H3588\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H4428\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*, even|strong=\"H3588\"* they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H3605\"* men|strong=\"H1121\"*, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* made|strong=\"H6485\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam governor|strong=\"H8269\"* in|strong=\"H4428\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, and|strong=\"H1121\"* had|strong=\"H4428\"* committed|strong=\"H6485\"* to|strong=\"H8085\"* him|strong=\"H3605\"* men|strong=\"H1121\"*, women|strong=\"H1992\"*, children|strong=\"H1121\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* poorest|strong=\"H1803\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H7704\"*, of|strong=\"H1121\"* those|strong=\"H1992\"* who|strong=\"H3605\"* were|strong=\"H1121\"* not|strong=\"H3808\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H8085\"* Babylon," + }, + { + "verseNum": 8, + "text": "then|strong=\"H1121\"* Ishmael|strong=\"H3458\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* Johanan|strong=\"H3110\"* and|strong=\"H1121\"* Jonathan|strong=\"H3129\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* Seraiah|strong=\"H8304\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Tanhumeth|strong=\"H8576\"*, and|strong=\"H1121\"* the|strong=\"H3458\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Ephai|strong=\"H5778\"* the|strong=\"H3458\"* Netophathite|strong=\"H5200\"*, and|strong=\"H1121\"* Jezaniah|strong=\"H3153\"* the|strong=\"H3458\"* son|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3458\"* Maacathite|strong=\"H4602\"*, they|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H1992\"* men|strong=\"H1121\"* came to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*." + }, + { + "verseNum": 9, + "text": "Gedaliah|strong=\"H1436\"* the|strong=\"H5647\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5647\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* swore|strong=\"H7650\"* to|strong=\"H1121\"* them|strong=\"H3190\"* and|strong=\"H1121\"* to|strong=\"H1121\"* their|strong=\"H5647\"* men|strong=\"H1121\"*, saying, “Don’t be|strong=\"H1121\"* afraid|strong=\"H3372\"* to|strong=\"H1121\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* Chaldeans|strong=\"H3778\"*. Dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5647\"* land, and|strong=\"H1121\"* serve|strong=\"H5647\"* the|strong=\"H5647\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon, and|strong=\"H1121\"* it|strong=\"H3190\"* will|strong=\"H4428\"* be|strong=\"H1121\"* well|strong=\"H3190\"* with|strong=\"H3427\"* you|strong=\"H5647\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* me|strong=\"H6440\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* Mizpah|strong=\"H4709\"*, to|strong=\"H6440\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* who|strong=\"H3427\"* will|strong=\"H5892\"* come|strong=\"H5892\"* to|strong=\"H6440\"* us|strong=\"H6440\"*; but you|strong=\"H6440\"*, gather wine|strong=\"H3196\"* and|strong=\"H5892\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"* and|strong=\"H5892\"* oil|strong=\"H8081\"*, and|strong=\"H5892\"* put|strong=\"H7760\"* them|strong=\"H6440\"* in|strong=\"H3427\"* your|strong=\"H7760\"* vessels|strong=\"H3627\"*, and|strong=\"H5892\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H7760\"* cities|strong=\"H5892\"* that|strong=\"H5892\"* you|strong=\"H6440\"* have|strong=\"H5892\"* taken|strong=\"H8610\"*.”" + }, + { + "verseNum": 11, + "text": "Likewise|strong=\"H1571\"* when|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5921\"* Moab|strong=\"H4124\"*, and|strong=\"H1121\"* among|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* in|strong=\"H5921\"* Edom, and|strong=\"H1121\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries, heard|strong=\"H8085\"* that|strong=\"H3588\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H4428\"* left|strong=\"H5414\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* that|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H4428\"* set|strong=\"H5414\"* over|strong=\"H5921\"* them|strong=\"H5414\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* returned|strong=\"H7725\"* out|strong=\"H5080\"* of|strong=\"H4725\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H8033\"* were|strong=\"H3063\"* driven|strong=\"H5080\"*, and|strong=\"H3063\"* came|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3605\"* land|strong=\"H4725\"* of|strong=\"H4725\"* Judah|strong=\"H3063\"*, to|strong=\"H7725\"* Gedaliah|strong=\"H1436\"*, to|strong=\"H7725\"* Mizpah|strong=\"H4708\"*, and|strong=\"H3063\"* gathered|strong=\"H7235\"* very|strong=\"H3966\"* much|strong=\"H7235\"* wine|strong=\"H3196\"* and|strong=\"H3063\"* summer|strong=\"H7019\"* fruits|strong=\"H7019\"*." + }, + { + "verseNum": 13, + "text": "Moreover Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* in|strong=\"H1121\"* the|strong=\"H3605\"* fields|strong=\"H7704\"*, came to|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* to|strong=\"H1121\"* Mizpah|strong=\"H4708\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H1121\"* said to|strong=\"H7971\"* him|strong=\"H5221\"*, “Do you|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Baalis|strong=\"H1185\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* has|strong=\"H4428\"* sent|strong=\"H7971\"* Ishmael|strong=\"H3458\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* to|strong=\"H7971\"* take|strong=\"H5221\"* your|strong=\"H3045\"* life|strong=\"H5315\"*?”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3045\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* spoke to|strong=\"H3212\"* Gedaliah|strong=\"H1436\"* in|strong=\"H3212\"* Mizpah|strong=\"H4709\"* secretly|strong=\"H5643\"*, saying, “Please|strong=\"H4994\"* let|strong=\"H4994\"* me|strong=\"H4994\"* go|strong=\"H3212\"*, and|strong=\"H1121\"* I|strong=\"H3045\"* will|strong=\"H5315\"* kill|strong=\"H5221\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* no|strong=\"H3808\"* man|strong=\"H1121\"* will|strong=\"H5315\"* know|strong=\"H3045\"* it|strong=\"H3045\"*. Why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H3605\"* take|strong=\"H5221\"* your|strong=\"H3605\"* life|strong=\"H5315\"*, that|strong=\"H3045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H1121\"* gathered|strong=\"H6908\"* to|strong=\"H3212\"* you|strong=\"H3605\"* should|strong=\"H4100\"* be|strong=\"H3808\"* scattered|strong=\"H6327\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* perish?”" + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam said|strong=\"H1696\"* to|strong=\"H1696\"* Johanan|strong=\"H3110\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, “You|strong=\"H3588\"* shall|strong=\"H1121\"* not|strong=\"H6213\"* do|strong=\"H6213\"* this|strong=\"H2088\"* thing|strong=\"H1697\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* falsely|strong=\"H8267\"* of|strong=\"H1121\"* Ishmael|strong=\"H3458\"*.”" + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H4428\"* the|strong=\"H1961\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, Ishmael|strong=\"H3458\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Elishama, of|strong=\"H1121\"* the|strong=\"H1961\"* royal|strong=\"H4428\"* offspring|strong=\"H2233\"* and|strong=\"H1121\"* one|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H1961\"* chief|strong=\"H7227\"* officers|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H1961\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* with|strong=\"H3899\"* him|strong=\"H4428\"*, came|strong=\"H1961\"* to|strong=\"H1961\"* Gedaliah|strong=\"H1436\"* the|strong=\"H1961\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam to|strong=\"H1961\"* Mizpah|strong=\"H4709\"*; and|strong=\"H1121\"* there|strong=\"H8033\"* they|strong=\"H8033\"* ate bread|strong=\"H3899\"* together|strong=\"H3162\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1961\"* Ishmael|strong=\"H3458\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* arose|strong=\"H6965\"*, and|strong=\"H1121\"* the|strong=\"H5221\"* ten|strong=\"H6235\"* men|strong=\"H1121\"* who|strong=\"H1121\"* were|strong=\"H1961\"* with|strong=\"H4428\"* him|strong=\"H5221\"*, and|strong=\"H1121\"* struck|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam the|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* with|strong=\"H4428\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* and|strong=\"H1121\"* killed|strong=\"H5221\"* him|strong=\"H5221\"*, whom the|strong=\"H5221\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon had|strong=\"H1961\"* made|strong=\"H1961\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H5221\"* land." + }, + { + "verseNum": 3, + "text": "Ishmael|strong=\"H3458\"* also|strong=\"H3458\"* killed|strong=\"H5221\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H4421\"* Gedaliah|strong=\"H1436\"* at|strong=\"H4421\"* Mizpah|strong=\"H4709\"*, and|strong=\"H8033\"* the|strong=\"H3605\"* Chaldean men|strong=\"H3605\"* of|strong=\"H3605\"* war|strong=\"H4421\"* who|strong=\"H3605\"* were|strong=\"H1961\"* found|strong=\"H4672\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* after|strong=\"H1961\"* he|strong=\"H3117\"* had|strong=\"H1961\"* killed|strong=\"H4191\"* Gedaliah|strong=\"H1436\"*, and|strong=\"H3117\"* no|strong=\"H3808\"* man|strong=\"H4191\"* knew|strong=\"H3045\"* it|strong=\"H3045\"*," + }, + { + "verseNum": 5, + "text": "men came|strong=\"H3068\"* from|strong=\"H3027\"* Shechem|strong=\"H7927\"*, from|strong=\"H3027\"* Shiloh|strong=\"H7887\"*, and|strong=\"H3068\"* from|strong=\"H3027\"* Samaria|strong=\"H8111\"*, even|strong=\"H3068\"* eighty|strong=\"H8084\"* men, having their|strong=\"H3068\"* beards|strong=\"H2206\"* shaved|strong=\"H1548\"* and|strong=\"H3068\"* their|strong=\"H3068\"* clothes torn|strong=\"H7167\"*, and|strong=\"H3068\"* having cut|strong=\"H1413\"* themselves, with|strong=\"H1004\"* meal|strong=\"H4503\"* offerings|strong=\"H4503\"* and|strong=\"H3068\"* frankincense|strong=\"H3828\"* in|strong=\"H3068\"* their|strong=\"H3068\"* hand|strong=\"H3027\"*, to|strong=\"H3068\"* bring them|strong=\"H3027\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "Ishmael|strong=\"H3458\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* went|strong=\"H1980\"* out|strong=\"H3318\"* from|strong=\"H4480\"* Mizpah|strong=\"H4709\"* to|strong=\"H1980\"* meet|strong=\"H7125\"* them|strong=\"H3318\"*, weeping|strong=\"H1058\"* all|strong=\"H1058\"* along|strong=\"H1980\"* as|strong=\"H1961\"* he|strong=\"H4480\"* went|strong=\"H1980\"*, and|strong=\"H1121\"* as|strong=\"H1961\"* he|strong=\"H4480\"* met|strong=\"H6298\"* them|strong=\"H3318\"*, he|strong=\"H4480\"* said|strong=\"H3318\"* to|strong=\"H1980\"* them|strong=\"H3318\"*, “Come|strong=\"H1980\"* to|strong=\"H1980\"* Gedaliah|strong=\"H1436\"* the|strong=\"H4480\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam.”" + }, + { + "verseNum": 7, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, when|strong=\"H1961\"* they|strong=\"H1931\"* came|strong=\"H1961\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, that|strong=\"H1931\"* Ishmael|strong=\"H3458\"* the|strong=\"H8432\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* killed|strong=\"H7819\"* them|strong=\"H8432\"*, and|strong=\"H1121\"* cast them|strong=\"H8432\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8432\"* pit, he|strong=\"H1931\"*, and|strong=\"H1121\"* the|strong=\"H8432\"* men|strong=\"H1121\"* who|strong=\"H1931\"* were|strong=\"H1961\"* with|strong=\"H5892\"* him|strong=\"H1931\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3588\"* ten|strong=\"H6235\"* men were|strong=\"H3426\"* found|strong=\"H4672\"* among|strong=\"H8432\"* those|strong=\"H3588\"* who|strong=\"H4672\"* said to|strong=\"H4191\"* Ishmael|strong=\"H3458\"*, “Don’t kill|strong=\"H4191\"* us|strong=\"H3588\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3426\"* stores|strong=\"H4301\"* hidden|strong=\"H4301\"* in|strong=\"H4191\"* the|strong=\"H3588\"* field|strong=\"H7704\"*, of|strong=\"H7704\"* wheat|strong=\"H2406\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* barley|strong=\"H8184\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* oil|strong=\"H8081\"*, and|strong=\"H8081\"* of|strong=\"H7704\"* honey|strong=\"H1706\"*.”" + }, + { + "verseNum": 9, + "text": "Now|strong=\"H3478\"* the|strong=\"H3605\"* pit in|strong=\"H3478\"* which|strong=\"H1931\"* Ishmael|strong=\"H3458\"* cast|strong=\"H7993\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dead|strong=\"H2491\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* the|strong=\"H3605\"* men|strong=\"H1121\"* whom|strong=\"H6440\"* he|strong=\"H1931\"* had|strong=\"H3478\"* killed|strong=\"H5221\"*, by|strong=\"H3027\"* the|strong=\"H3605\"* side|strong=\"H3027\"* of|strong=\"H1121\"* Gedaliah|strong=\"H1436\"* (this|strong=\"H6213\"* was|strong=\"H3478\"* that|strong=\"H3605\"* which|strong=\"H1931\"* Asa the|strong=\"H3605\"* king|strong=\"H4428\"* had|strong=\"H3478\"* made|strong=\"H6213\"* for|strong=\"H6213\"* fear|strong=\"H6440\"* of|strong=\"H1121\"* Baasha|strong=\"H1201\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*), Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* filled|strong=\"H4390\"* it|strong=\"H1931\"* with|strong=\"H4390\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3478\"* killed|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H5674\"* Ishmael|strong=\"H3458\"* carried|strong=\"H7617\"* away|strong=\"H5674\"* captive|strong=\"H7617\"* all|strong=\"H3605\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*, even the|strong=\"H3605\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* remained|strong=\"H7604\"* in|strong=\"H4428\"* Mizpah|strong=\"H4709\"*, whom|strong=\"H5971\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H4428\"* committed|strong=\"H6485\"* to|strong=\"H3212\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam. Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* carried|strong=\"H7617\"* them|strong=\"H7617\"* away|strong=\"H5674\"* captive|strong=\"H7617\"*, and|strong=\"H1121\"* departed|strong=\"H3212\"* to|strong=\"H3212\"* go|strong=\"H3212\"* over|strong=\"H5674\"* to|strong=\"H3212\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H8085\"* when|strong=\"H8085\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1121\"* with|strong=\"H6213\"* him|strong=\"H6213\"*, heard|strong=\"H8085\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* had|strong=\"H1121\"* done|strong=\"H6213\"*," + }, + { + "verseNum": 12, + "text": "then|strong=\"H3947\"* they|strong=\"H3605\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, and|strong=\"H1121\"* found|strong=\"H4672\"* him|strong=\"H4672\"* by|strong=\"H4325\"* the|strong=\"H3605\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* that|strong=\"H3605\"* are|strong=\"H1121\"* in|strong=\"H3212\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H1961\"* when|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* Ishmael|strong=\"H3458\"* saw|strong=\"H7200\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H1961\"* with|strong=\"H5971\"* him|strong=\"H7200\"*, then|strong=\"H1961\"* they|strong=\"H5971\"* were|strong=\"H1961\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* Ishmael|strong=\"H3458\"* had|strong=\"H5971\"* carried|strong=\"H7617\"* away|strong=\"H7725\"* captive|strong=\"H7617\"* from|strong=\"H4480\"* Mizpah|strong=\"H4709\"* turned|strong=\"H7725\"* about|strong=\"H5437\"* and|strong=\"H1121\"* came|strong=\"H3212\"* back|strong=\"H7725\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H7725\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*." + }, + { + "verseNum": 15, + "text": "But Ishmael|strong=\"H3458\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* escaped|strong=\"H4422\"* from|strong=\"H6440\"* Johanan|strong=\"H3110\"* with|strong=\"H6440\"* eight|strong=\"H8083\"* men|strong=\"H1121\"*, and|strong=\"H1121\"* went|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3947\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H5221\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* recovered|strong=\"H7725\"* from|strong=\"H4480\"* Ishmael|strong=\"H3458\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"*, from|strong=\"H4480\"* Mizpah|strong=\"H4709\"*, after|strong=\"H4480\"* he|strong=\"H3605\"* had|strong=\"H5971\"* killed|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam—the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* war|strong=\"H4421\"*, with|strong=\"H5971\"* the|strong=\"H3605\"* women, the|strong=\"H3605\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* eunuchs|strong=\"H5631\"*, whom|strong=\"H5971\"* he|strong=\"H3605\"* had|strong=\"H5971\"* brought|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* Gibeon|strong=\"H1391\"*." + }, + { + "verseNum": 17, + "text": "They departed|strong=\"H3212\"* and|strong=\"H3212\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* Geruth|strong=\"H1628\"* Chimham|strong=\"H3643\"*, which is|strong=\"H4714\"* by|strong=\"H3427\"* Bethlehem|strong=\"H1035\"*, to|strong=\"H3212\"* go|strong=\"H3212\"* to|strong=\"H3212\"* enter into|strong=\"H3212\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 18, + "text": "because|strong=\"H3588\"* of|strong=\"H1121\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1121\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* them|strong=\"H6440\"*, because|strong=\"H3588\"* Ishmael|strong=\"H3458\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Nethaniah|strong=\"H5418\"* had|strong=\"H4428\"* killed|strong=\"H5221\"* Gedaliah|strong=\"H1436\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, whom|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon made|strong=\"H6485\"* governor|strong=\"H6485\"* over|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, and|strong=\"H1121\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* Jezaniah|strong=\"H3153\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hoshaiah|strong=\"H1955\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H1121\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*, came|strong=\"H5066\"* near|strong=\"H5066\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H3068\"* said to|strong=\"H5704\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, “Please|strong=\"H4994\"* let|strong=\"H4994\"* our|strong=\"H3068\"* supplication|strong=\"H8467\"* be|strong=\"H3068\"* presented|strong=\"H7200\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* pray|strong=\"H6419\"* for|strong=\"H3588\"* us|strong=\"H4994\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, even|strong=\"H5704\"* for|strong=\"H3588\"* all|strong=\"H3605\"* this|strong=\"H2063\"* remnant|strong=\"H7611\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H5869\"* left|strong=\"H7604\"* but|strong=\"H3588\"* a|strong=\"H3068\"* few|strong=\"H4592\"* of|strong=\"H3068\"* many|strong=\"H7235\"*, as|strong=\"H5704\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"* see|strong=\"H7200\"* us|strong=\"H4994\"*," + }, + { + "verseNum": 3, + "text": "that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* may|strong=\"H3068\"* show|strong=\"H6213\"* us|strong=\"H5046\"* the|strong=\"H6213\"* way|strong=\"H1870\"* in|strong=\"H3068\"* which|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* walk|strong=\"H3212\"*, and|strong=\"H3068\"* the|strong=\"H6213\"* things|strong=\"H1697\"* that|strong=\"H3068\"* we|strong=\"H3068\"* should|strong=\"H3068\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H1961\"*, “I|strong=\"H2005\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* you|strong=\"H3605\"*. Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* pray|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* according|strong=\"H4480\"* to|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*; and|strong=\"H3068\"* it|strong=\"H1961\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* whatever|strong=\"H3605\"* thing|strong=\"H1697\"* Yahweh|strong=\"H3068\"* answers|strong=\"H6030\"* you|strong=\"H3605\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* declare|strong=\"H5046\"* it|strong=\"H1961\"* to|strong=\"H3068\"* you|strong=\"H3605\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* keep|strong=\"H4513\"* nothing|strong=\"H3808\"* back|strong=\"H4513\"* from|strong=\"H4480\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* they|strong=\"H1992\"* said|strong=\"H1697\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*, “May|strong=\"H1961\"* Yahweh|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* true|strong=\"H3651\"* and|strong=\"H3068\"* faithful witness|strong=\"H5707\"* among|strong=\"H3808\"* us|strong=\"H6213\"*, if|strong=\"H1961\"* we|strong=\"H3068\"* don’t do|strong=\"H6213\"* according to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* word|strong=\"H1697\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* sends|strong=\"H7971\"* you|strong=\"H3605\"* to|strong=\"H3068\"* tell|strong=\"H3605\"* us|strong=\"H6213\"*." + }, + { + "verseNum": 6, + "text": "Whether it|strong=\"H3588\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, or|strong=\"H8085\"* whether it|strong=\"H3588\"* is|strong=\"H3068\"* bad|strong=\"H7451\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, to|strong=\"H3068\"* whom|strong=\"H3588\"* we|strong=\"H3068\"* send|strong=\"H7971\"* you|strong=\"H3588\"*; that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* be|strong=\"H3068\"* well|strong=\"H3190\"* with|strong=\"H3068\"* us|strong=\"H3588\"*, when|strong=\"H3588\"* we|strong=\"H3068\"* obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*.”" + }, + { + "verseNum": 7, + "text": "After|strong=\"H7093\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H7121\"* he|strong=\"H5704\"* called|strong=\"H7121\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* who|strong=\"H3605\"* were|strong=\"H5971\"* with|strong=\"H5971\"* him|strong=\"H7121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* from|strong=\"H1121\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*," + }, + { + "verseNum": 9, + "text": "and|strong=\"H3478\"* said to|strong=\"H3478\"* them|strong=\"H7971\"*, “Yahweh|strong=\"H3068\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* whom|strong=\"H6440\"* you|strong=\"H6440\"* sent|strong=\"H7971\"* me|strong=\"H6440\"* to|strong=\"H3478\"* present|strong=\"H5307\"* your|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "‘If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3808\"* still|strong=\"H3427\"* live|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land, then|strong=\"H6213\"* I|strong=\"H3588\"* will|strong=\"H3808\"* build|strong=\"H1129\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pull|strong=\"H2040\"* you|strong=\"H3588\"* down|strong=\"H3427\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* will|strong=\"H3808\"* plant|strong=\"H5193\"* you|strong=\"H3588\"*, and|strong=\"H7725\"* not|strong=\"H3808\"* pluck|strong=\"H5428\"* you|strong=\"H3588\"* up|strong=\"H1129\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* grieve over|strong=\"H3427\"* the|strong=\"H3588\"* distress|strong=\"H7451\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1129\"* brought|strong=\"H7725\"* on|strong=\"H3427\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 11, + "text": "Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, of|strong=\"H4428\"* whom|strong=\"H6440\"* you|strong=\"H3588\"* are|strong=\"H3027\"* afraid|strong=\"H3372\"*. Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* him|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"* to|strong=\"H3068\"* save|strong=\"H3467\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* deliver|strong=\"H5337\"* you|strong=\"H3588\"* from|strong=\"H4480\"* his|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* grant|strong=\"H5414\"* you|strong=\"H5414\"* mercy|strong=\"H7355\"*, that|strong=\"H5414\"* he|strong=\"H5414\"* may|strong=\"H7725\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* you|strong=\"H5414\"*, and|strong=\"H7725\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H5414\"* own land." + }, + { + "verseNum": 13, + "text": "“‘But|strong=\"H3808\"* if you|strong=\"H3808\"* say|strong=\"H6963\"*, “We|strong=\"H8085\"* will|strong=\"H3068\"* not|strong=\"H3808\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* this|strong=\"H2063\"* land,” so|strong=\"H3808\"* that|strong=\"H8085\"* you|strong=\"H3808\"* don’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*," + }, + { + "verseNum": 14, + "text": "saying|strong=\"H6963\"*, “No|strong=\"H3808\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H4714\"* go into|strong=\"H4714\"* the|strong=\"H8085\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, where|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H4714\"* see|strong=\"H7200\"* no|strong=\"H3808\"* war|strong=\"H4421\"*, nor|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H3427\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"*, nor|strong=\"H3808\"* have|strong=\"H7200\"* hunger|strong=\"H7456\"* of|strong=\"H3427\"* bread|strong=\"H3899\"*; and|strong=\"H3899\"* there|strong=\"H8033\"* we|strong=\"H3068\"* will|strong=\"H4714\"* dwell|strong=\"H3427\"*;”’" + }, + { + "verseNum": 15, + "text": "now|strong=\"H6258\"* therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, O|strong=\"H3068\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*! Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H6440\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘If|strong=\"H3651\"* you|strong=\"H6440\"* indeed|strong=\"H8085\"* set|strong=\"H7760\"* your|strong=\"H3068\"* faces|strong=\"H6440\"* to|strong=\"H3478\"* enter into|strong=\"H4714\"* Egypt|strong=\"H4714\"*, and|strong=\"H3063\"* go|strong=\"H3068\"* to|strong=\"H3478\"* live|strong=\"H1481\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 16, + "text": "then|strong=\"H1961\"* it|strong=\"H8033\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H4480\"* the|strong=\"H4480\"* sword|strong=\"H2719\"*, which|strong=\"H8033\"* you|strong=\"H4480\"* fear|strong=\"H3372\"*, will|strong=\"H1961\"* overtake|strong=\"H5381\"* you|strong=\"H4480\"* there|strong=\"H8033\"* in|strong=\"H4191\"* the|strong=\"H4480\"* land of|strong=\"H4480\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* the|strong=\"H4480\"* famine|strong=\"H7458\"*, about|strong=\"H1961\"* which|strong=\"H8033\"* you|strong=\"H4480\"* are|strong=\"H4714\"* afraid|strong=\"H3372\"*, will|strong=\"H1961\"* follow|strong=\"H1961\"* close|strong=\"H1692\"* behind|strong=\"H4480\"* you|strong=\"H4480\"* there|strong=\"H8033\"* in|strong=\"H4191\"* Egypt|strong=\"H4714\"*; and|strong=\"H4714\"* you|strong=\"H4480\"* will|strong=\"H1961\"* die|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 17, + "text": "So|strong=\"H1961\"* will|strong=\"H1961\"* it|strong=\"H7760\"* be|strong=\"H1961\"* with|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* who|strong=\"H3605\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* to|strong=\"H4191\"* go|strong=\"H1961\"* into|strong=\"H5921\"* Egypt|strong=\"H4714\"* to|strong=\"H4191\"* live|strong=\"H1481\"* there|strong=\"H8033\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H4714\"* by|strong=\"H5921\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*. None|strong=\"H3808\"* of|strong=\"H6440\"* them|strong=\"H5921\"* will|strong=\"H1961\"* remain|strong=\"H1961\"* or|strong=\"H3808\"* escape|strong=\"H6412\"* from|strong=\"H6440\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* I|strong=\"H5921\"* will|strong=\"H1961\"* bring|strong=\"H7760\"* on|strong=\"H5921\"* them|strong=\"H5921\"*.’" + }, + { + "verseNum": 18, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘As|strong=\"H1961\"* my|strong=\"H3068\"* anger|strong=\"H2534\"* and|strong=\"H3478\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* has|strong=\"H3068\"* been|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, so|strong=\"H3651\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* will|strong=\"H3068\"* be|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* enter into|strong=\"H5921\"* Egypt|strong=\"H4714\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* an|strong=\"H1961\"* object|strong=\"H8047\"* of|strong=\"H3068\"* horror|strong=\"H8047\"*, an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3478\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*; and|strong=\"H3478\"* you|strong=\"H3588\"* will|strong=\"H3068\"* see|strong=\"H7200\"* this|strong=\"H2088\"* place|strong=\"H4725\"* no|strong=\"H3808\"* more|strong=\"H5750\"*.’" + }, + { + "verseNum": 19, + "text": "“Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*, remnant|strong=\"H7611\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, ‘Don’t go|strong=\"H3068\"* into|strong=\"H5921\"* Egypt|strong=\"H4714\"*!’ Know|strong=\"H3045\"* certainly|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* testified|strong=\"H5749\"* to|strong=\"H1696\"* you|strong=\"H3588\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 20, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* deceitfully against|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*, saying, ‘Pray|strong=\"H6419\"* for|strong=\"H3588\"* us|strong=\"H5046\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*; and|strong=\"H3068\"* according to|strong=\"H5704\"* all|strong=\"H3605\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* says, so|strong=\"H3651\"* declare|strong=\"H5046\"* to|strong=\"H5704\"* us|strong=\"H5046\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.’" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* declared|strong=\"H5046\"* it|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"* today|strong=\"H3117\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"* in|strong=\"H3068\"* anything|strong=\"H3605\"* for|strong=\"H7971\"* which|strong=\"H3068\"* he|strong=\"H3117\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 22, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H6258\"* know|strong=\"H3045\"* certainly|strong=\"H3588\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*, by|strong=\"H4191\"* the|strong=\"H3588\"* famine|strong=\"H7458\"*, and|strong=\"H2719\"* by|strong=\"H4191\"* the|strong=\"H3588\"* pestilence|strong=\"H1698\"* in|strong=\"H4191\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H8033\"* you|strong=\"H3588\"* desire|strong=\"H2654\"* to|strong=\"H4191\"* go|strong=\"H2719\"* to|strong=\"H4191\"* live|strong=\"H1481\"*.”" + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* had|strong=\"H3068\"* finished|strong=\"H3615\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*, with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H7971\"* to|strong=\"H1696\"* them|strong=\"H7971\"*, even|strong=\"H3068\"* all|strong=\"H3605\"* these|strong=\"H1696\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "then|strong=\"H1696\"* Azariah|strong=\"H5838\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hoshaiah|strong=\"H1955\"*, Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* proud|strong=\"H2086\"* men|strong=\"H1121\"* spoke|strong=\"H1696\"*, saying|strong=\"H1696\"* to|strong=\"H1696\"* Jeremiah|strong=\"H3414\"*, “You|strong=\"H3605\"* speak|strong=\"H1696\"* falsely|strong=\"H8267\"*. Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* you|strong=\"H3605\"* to|strong=\"H1696\"* say|strong=\"H1696\"*, ‘You|strong=\"H3605\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* go|strong=\"H7971\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"* to|strong=\"H1696\"* live|strong=\"H1481\"* there|strong=\"H8033\"*;’" + }, + { + "verseNum": 3, + "text": "but|strong=\"H3588\"* Baruch|strong=\"H1263\"* the|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"* has|strong=\"H3588\"* turned|strong=\"H5414\"* you|strong=\"H3588\"* against|strong=\"H3027\"* us|strong=\"H5414\"*, to|strong=\"H4191\"* deliver|strong=\"H5414\"* us|strong=\"H5414\"* into|strong=\"H1540\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H3588\"* Chaldeans|strong=\"H3778\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H1121\"* put|strong=\"H5414\"* us|strong=\"H5414\"* to|strong=\"H4191\"* death|strong=\"H4191\"* or|strong=\"H1121\"* carry|strong=\"H1540\"* us|strong=\"H5414\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* to|strong=\"H4191\"* Babylon.”" + }, + { + "verseNum": 4, + "text": "So|strong=\"H3808\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 5, + "text": "But|strong=\"H3947\"* Johanan|strong=\"H3110\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Kareah|strong=\"H7143\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* captains|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forces|strong=\"H2428\"* took|strong=\"H3947\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, who|strong=\"H3605\"* had|strong=\"H3063\"* returned|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* had|strong=\"H3063\"* been|strong=\"H3605\"* driven|strong=\"H5080\"*, to|strong=\"H7725\"* live|strong=\"H1481\"* in|strong=\"H1121\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Judah|strong=\"H3063\"*—" + }, + { + "verseNum": 6, + "text": "the|strong=\"H3605\"* men|strong=\"H1121\"*, the|strong=\"H3605\"* women|strong=\"H1323\"*, the|strong=\"H3605\"* children|strong=\"H1121\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s daughters|strong=\"H1323\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* person|strong=\"H5315\"* who|strong=\"H3605\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H1121\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* had|strong=\"H4428\"* left|strong=\"H3240\"* with|strong=\"H4428\"* Gedaliah|strong=\"H1436\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahikam, the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"*; and|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, and|strong=\"H1121\"* Baruch|strong=\"H1263\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* came|strong=\"H3068\"* into|strong=\"H4714\"* the|strong=\"H8085\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, for|strong=\"H3588\"* they|strong=\"H3588\"* didn’t obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* came|strong=\"H3068\"* to|strong=\"H5704\"* Tahpanhes|strong=\"H8471\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* in|strong=\"H3068\"* Tahpanhes|strong=\"H8471\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Take|strong=\"H3947\"* great|strong=\"H1419\"* stones in|strong=\"H1004\"* your|strong=\"H3947\"* hand|strong=\"H3027\"* and|strong=\"H1419\"* hide|strong=\"H2934\"* them|strong=\"H3027\"* in|strong=\"H1004\"* mortar|strong=\"H4423\"* in|strong=\"H1004\"* the|strong=\"H3947\"* brick|strong=\"H4404\"* work|strong=\"H3027\"* which|strong=\"H1004\"* is|strong=\"H3027\"* at|strong=\"H1004\"* the|strong=\"H3947\"* entry|strong=\"H6607\"* of|strong=\"H1004\"* Pharaoh|strong=\"H6547\"*’s house|strong=\"H1004\"* in|strong=\"H1004\"* Tahpanhes|strong=\"H8471\"*, in|strong=\"H1004\"* the|strong=\"H3947\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H3947\"* men|strong=\"H1419\"* of|strong=\"H1004\"* Judah|strong=\"H3064\"*." + }, + { + "verseNum": 10, + "text": "Tell them|strong=\"H5921\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* send|strong=\"H7971\"* and|strong=\"H3478\"* take|strong=\"H3947\"* Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, my|strong=\"H3068\"* servant|strong=\"H5650\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* set|strong=\"H7760\"* his|strong=\"H7760\"* throne|strong=\"H3678\"* on|strong=\"H5921\"* these|strong=\"H3947\"* stones that|strong=\"H3068\"* I|strong=\"H2005\"* have|strong=\"H3068\"* hidden|strong=\"H2934\"*; and|strong=\"H3478\"* he|strong=\"H3068\"* will|strong=\"H3068\"* spread|strong=\"H5186\"* his|strong=\"H7760\"* royal|strong=\"H4428\"* pavilion|strong=\"H8237\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H5221\"* will|strong=\"H4714\"* come, and|strong=\"H4714\"* will|strong=\"H4714\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* land of|strong=\"H4194\"* Egypt|strong=\"H4714\"*; such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* death|strong=\"H4194\"* will|strong=\"H4714\"* be|strong=\"H2719\"* put to|strong=\"H4714\"* death|strong=\"H4194\"*, and|strong=\"H4714\"* such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* captivity|strong=\"H7628\"* to|strong=\"H4714\"* captivity|strong=\"H7628\"*, and|strong=\"H4714\"* such as|strong=\"H5221\"* are|strong=\"H4714\"* for|strong=\"H4714\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* to|strong=\"H4714\"* the|strong=\"H5221\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H1004\"* the|strong=\"H3318\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3318\"* gods of|strong=\"H1004\"* Egypt|strong=\"H4714\"*. He|strong=\"H8033\"* will|strong=\"H4714\"* burn|strong=\"H8313\"* them|strong=\"H7617\"*, and|strong=\"H1004\"* carry|strong=\"H3318\"* them|strong=\"H7617\"* away|strong=\"H7617\"* captive|strong=\"H7617\"*. He|strong=\"H8033\"* will|strong=\"H4714\"* array|strong=\"H5844\"* himself|strong=\"H5844\"* with|strong=\"H8313\"* the|strong=\"H3318\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, as|strong=\"H3318\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* puts on|strong=\"H1004\"* his|strong=\"H3318\"* garment; and|strong=\"H1004\"* he|strong=\"H8033\"* will|strong=\"H4714\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* there|strong=\"H8033\"* in|strong=\"H1004\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1004\"* will|strong=\"H4714\"* also break|strong=\"H7665\"* the|strong=\"H7665\"* pillars|strong=\"H4676\"* of|strong=\"H1004\"* Beth|strong=\"H1004\"* Shemesh that|strong=\"H1004\"* is|strong=\"H1004\"* in|strong=\"H1004\"* the|strong=\"H7665\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*; and|strong=\"H1004\"* he|strong=\"H1004\"* will|strong=\"H4714\"* burn|strong=\"H8313\"* the|strong=\"H7665\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H7665\"* gods of|strong=\"H1004\"* Egypt|strong=\"H4714\"* with|strong=\"H8313\"* fire.’”" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H3605\"* came|strong=\"H1961\"* to|strong=\"H1961\"* Jeremiah|strong=\"H3414\"* concerning|strong=\"H1697\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, who|strong=\"H3605\"* lived|strong=\"H3427\"* at|strong=\"H3427\"* Migdol|strong=\"H4024\"*, and|strong=\"H4714\"* at|strong=\"H3427\"* Tahpanhes|strong=\"H8471\"*, and|strong=\"H4714\"* at|strong=\"H3427\"* Memphis|strong=\"H5297\"*, and|strong=\"H4714\"* in|strong=\"H3427\"* the|strong=\"H3605\"* country of|strong=\"H1697\"* Pathros|strong=\"H6624\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘You|strong=\"H3605\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H3117\"* have|strong=\"H3068\"* brought|strong=\"H3478\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*. Behold|strong=\"H2005\"*, today|strong=\"H3117\"* they|strong=\"H3117\"* are|strong=\"H3117\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"*, and|strong=\"H3063\"* no|strong=\"H3605\"* man|strong=\"H7451\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "because|strong=\"H6440\"* of|strong=\"H6440\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H3045\"* committed|strong=\"H6213\"* to|strong=\"H3212\"* provoke|strong=\"H3707\"* me|strong=\"H6440\"* to|strong=\"H3212\"* anger|strong=\"H3707\"*, in|strong=\"H6213\"* that|strong=\"H3045\"* they|strong=\"H1992\"* went|strong=\"H3212\"* to|strong=\"H3212\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"*, to|strong=\"H3212\"* serve|strong=\"H5647\"* other gods that|strong=\"H3045\"* they|strong=\"H1992\"* didn’t know|strong=\"H3045\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"*, nor|strong=\"H3808\"* you|strong=\"H6440\"*, nor|strong=\"H3808\"* your|strong=\"H6440\"* fathers." + }, + { + "verseNum": 4, + "text": "However I|strong=\"H1697\"* sent|strong=\"H7971\"* to|strong=\"H7971\"* you|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, rising|strong=\"H7925\"* up|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7971\"* sending|strong=\"H7971\"* them|strong=\"H7971\"*, saying|strong=\"H1697\"*, “Oh|strong=\"H4994\"*, don’t do|strong=\"H6213\"* this|strong=\"H2063\"* abominable|strong=\"H8441\"* thing|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H1697\"* hate|strong=\"H8130\"*.”" + }, + { + "verseNum": 5, + "text": "But|strong=\"H3808\"* they|strong=\"H3808\"* didn’t listen|strong=\"H8085\"* and|strong=\"H7725\"* didn’t incline|strong=\"H5186\"* their|strong=\"H8085\"* ear|strong=\"H8085\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H8085\"* wickedness|strong=\"H7451\"*, to|strong=\"H7725\"* stop|strong=\"H3808\"* burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H7725\"* other|strong=\"H1115\"* gods." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H1961\"* my|strong=\"H1961\"* wrath|strong=\"H2534\"* and|strong=\"H3063\"* my|strong=\"H1961\"* anger|strong=\"H2534\"* was|strong=\"H1961\"* poured|strong=\"H5413\"* out|strong=\"H2351\"*, and|strong=\"H3063\"* was|strong=\"H1961\"* kindled|strong=\"H1197\"* in|strong=\"H3117\"* the|strong=\"H3117\"* cities|strong=\"H5892\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H3117\"* the|strong=\"H3117\"* streets|strong=\"H2351\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* they|strong=\"H3117\"* are|strong=\"H3117\"* wasted|strong=\"H2723\"* and|strong=\"H3063\"* desolate|strong=\"H8077\"*, as|strong=\"H3117\"* it|strong=\"H1961\"* is|strong=\"H2088\"* today|strong=\"H3117\"*.’" + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H6258\"* now|strong=\"H6258\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Why|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* commit|strong=\"H6213\"* great|strong=\"H1419\"* evil|strong=\"H7451\"* against|strong=\"H3068\"* your|strong=\"H3068\"* own|strong=\"H5315\"* souls|strong=\"H5315\"*, to|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* yourselves|strong=\"H5315\"* man|strong=\"H5315\"* and|strong=\"H3063\"* woman, infant|strong=\"H3243\"* and|strong=\"H3063\"* nursing|strong=\"H3243\"* child|strong=\"H5768\"* out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, to|strong=\"H3478\"* leave|strong=\"H3498\"* yourselves|strong=\"H5315\"* no|strong=\"H6213\"* one|strong=\"H6213\"* remaining|strong=\"H3498\"*," + }, + { + "verseNum": 8, + "text": "in|strong=\"H3027\"* that|strong=\"H3605\"* you|strong=\"H3605\"* provoke|strong=\"H3707\"* me|strong=\"H2781\"* to|strong=\"H1961\"* anger|strong=\"H3707\"* with|strong=\"H4714\"* the|strong=\"H3605\"* works|strong=\"H4639\"* of|strong=\"H3027\"* your|strong=\"H3605\"* hands|strong=\"H3027\"*, burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1961\"* other|strong=\"H3605\"* gods in|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* where|strong=\"H8033\"* you|strong=\"H3605\"* have|strong=\"H1961\"* gone|strong=\"H1961\"* to|strong=\"H1961\"* live|strong=\"H1481\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, and|strong=\"H3027\"* that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* and|strong=\"H3027\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3027\"* the|strong=\"H3605\"* earth?" + }, + { + "verseNum": 9, + "text": "Have|strong=\"H3063\"* you|strong=\"H6213\"* forgotten|strong=\"H7911\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* your|strong=\"H6213\"* fathers, the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* the|strong=\"H6213\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* their|strong=\"H6213\"* wives, your|strong=\"H6213\"* own wickedness|strong=\"H7451\"*, and|strong=\"H3063\"* the|strong=\"H6213\"* wickedness|strong=\"H7451\"* of|strong=\"H4428\"* your|strong=\"H6213\"* wives which|strong=\"H7451\"* they|strong=\"H6213\"* committed|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* land of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H6213\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*?" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3117\"* are|strong=\"H3117\"* not|strong=\"H3808\"* humbled|strong=\"H1792\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*, neither|strong=\"H3808\"* have|strong=\"H3117\"* they|strong=\"H3117\"* feared|strong=\"H3372\"*, nor|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H5414\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* in|strong=\"H1980\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* set|strong=\"H5414\"* before|strong=\"H6440\"* you|strong=\"H5414\"* and|strong=\"H1980\"* before|strong=\"H6440\"* your|strong=\"H5414\"* fathers.’" + }, + { + "verseNum": 11, + "text": "“Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H6440\"* you|strong=\"H6440\"* for|strong=\"H6440\"* evil|strong=\"H7451\"*, even|strong=\"H3651\"* to|strong=\"H3478\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* all|strong=\"H3605\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5704\"* will|strong=\"H1961\"* take|strong=\"H3947\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H6440\"* Judah|strong=\"H3063\"* that|strong=\"H3605\"* have|strong=\"H1961\"* set|strong=\"H7760\"* their|strong=\"H3605\"* faces|strong=\"H6440\"* to|strong=\"H5704\"* go|strong=\"H1961\"* into|strong=\"H5307\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"* to|strong=\"H5704\"* live|strong=\"H1481\"* there|strong=\"H8033\"*, and|strong=\"H3063\"* they|strong=\"H8033\"* will|strong=\"H1961\"* all|strong=\"H3605\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* fall|strong=\"H5307\"* in|strong=\"H4191\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H6440\"* Egypt|strong=\"H4714\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* consumed|strong=\"H8552\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H4191\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* die|strong=\"H4191\"*, from|strong=\"H6440\"* the|strong=\"H3605\"* least|strong=\"H6996\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* greatest|strong=\"H1419\"*, by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H4191\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* object|strong=\"H8047\"* of|strong=\"H6440\"* horror|strong=\"H8047\"*, an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* curse|strong=\"H7045\"*, and|strong=\"H3063\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H5921\"* I|strong=\"H5921\"* will|strong=\"H4714\"* punish|strong=\"H6485\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, as|strong=\"H3389\"* I|strong=\"H5921\"* have|strong=\"H3389\"* punished|strong=\"H6485\"* Jerusalem|strong=\"H3389\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, by|strong=\"H5921\"* the|strong=\"H5921\"* famine|strong=\"H7458\"*, and|strong=\"H3389\"* by|strong=\"H5921\"* the|strong=\"H5921\"* pestilence|strong=\"H1698\"*;" + }, + { + "verseNum": 14, + "text": "so|strong=\"H1961\"* that|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H3427\"* the|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H3427\"* Judah|strong=\"H3063\"*, who|strong=\"H5315\"* have|strong=\"H1961\"* gone|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"* to|strong=\"H7725\"* live|strong=\"H3427\"* there|strong=\"H8033\"*, will|strong=\"H1961\"* escape|strong=\"H6412\"* or|strong=\"H3808\"* be|strong=\"H1961\"* left|strong=\"H8300\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H3427\"* Judah|strong=\"H3063\"*, to|strong=\"H7725\"* which|strong=\"H1992\"* they|strong=\"H1992\"* have|strong=\"H1961\"* a|strong=\"H3068\"* desire|strong=\"H5315\"* to|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* dwell|strong=\"H3427\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* return|strong=\"H7725\"* except|strong=\"H3588\"* those|strong=\"H1992\"* who|strong=\"H5315\"* will|strong=\"H1961\"* escape|strong=\"H6412\"*.’”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H1419\"* who|strong=\"H3605\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* their|strong=\"H3605\"* wives burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H4714\"* other|strong=\"H3605\"* gods, and|strong=\"H6030\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* stood|strong=\"H5975\"* by|strong=\"H5975\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* assembly|strong=\"H6951\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Egypt|strong=\"H4714\"*, in|strong=\"H3427\"* Pathros|strong=\"H6624\"*, answered|strong=\"H6030\"* Jeremiah|strong=\"H3414\"*, saying," + }, + { + "verseNum": 16, + "text": "“As|strong=\"H1697\"* for|strong=\"H3068\"* the|strong=\"H8085\"* word|strong=\"H1697\"* that|strong=\"H8085\"* you|strong=\"H1696\"* have|strong=\"H3068\"* spoken|strong=\"H1696\"* to|strong=\"H1696\"* us|strong=\"H8085\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, we|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H8085\"* listen|strong=\"H8085\"* to|strong=\"H1696\"* you|strong=\"H1696\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H1961\"* certainly|strong=\"H3588\"* perform|strong=\"H6213\"* every|strong=\"H3605\"* word|strong=\"H1697\"* that|strong=\"H3588\"* has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4428\"* our|strong=\"H3605\"* mouth|strong=\"H6310\"*, to|strong=\"H3318\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H3318\"* the|strong=\"H3605\"* queen|strong=\"H4446\"* of|strong=\"H4428\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* and|strong=\"H3063\"* to|strong=\"H3318\"* pour|strong=\"H5258\"* out|strong=\"H3318\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H3318\"* her|strong=\"H3605\"*, as|strong=\"H1697\"* we|strong=\"H3068\"* have|strong=\"H1961\"* done|strong=\"H6213\"*, we|strong=\"H3068\"* and|strong=\"H3063\"* our|strong=\"H3605\"* fathers, our|strong=\"H3605\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* our|strong=\"H3605\"* princes|strong=\"H8269\"*, in|strong=\"H6213\"* the|strong=\"H3605\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* in|strong=\"H6213\"* the|strong=\"H3605\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* then|strong=\"H1961\"* we|strong=\"H3068\"* had|strong=\"H1961\"* plenty|strong=\"H7646\"* of|strong=\"H4428\"* food|strong=\"H3899\"*, and|strong=\"H3063\"* were|strong=\"H1961\"* well|strong=\"H2896\"*, and|strong=\"H3063\"* saw|strong=\"H7200\"* no|strong=\"H3808\"* evil|strong=\"H7451\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H3605\"* since|strong=\"H4480\"* we|strong=\"H3068\"* stopped|strong=\"H2308\"* burning|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H6999\"* the|strong=\"H3605\"* queen|strong=\"H4446\"* of|strong=\"H4480\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, and|strong=\"H8064\"* pouring|strong=\"H5258\"* out|strong=\"H4480\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6999\"* her|strong=\"H3605\"*, we|strong=\"H3068\"* have|strong=\"H3605\"* lacked|strong=\"H2637\"* all|strong=\"H3605\"* things|strong=\"H3605\"*, and|strong=\"H8064\"* have|strong=\"H3605\"* been|strong=\"H3605\"* consumed|strong=\"H8552\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H8064\"* by|strong=\"H3605\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*.”" + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* women said, “When|strong=\"H3588\"* we|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H6213\"* the|strong=\"H3588\"* queen|strong=\"H4446\"* of|strong=\"H6213\"* the|strong=\"H3588\"* sky|strong=\"H8064\"* and|strong=\"H8064\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* her|strong=\"H6213\"*, did|strong=\"H6213\"* we|strong=\"H3068\"* make|strong=\"H6213\"* her|strong=\"H6213\"* cakes|strong=\"H3561\"* to|strong=\"H6213\"* worship|strong=\"H6087\"* her|strong=\"H6213\"*, and|strong=\"H8064\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H6213\"* her|strong=\"H6213\"*, without|strong=\"H1107\"* our|strong=\"H3588\"* husbands?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H6030\"* Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*—to|strong=\"H5921\"* the|strong=\"H3605\"* men|strong=\"H1397\"* and|strong=\"H6030\"* to|strong=\"H5921\"* the|strong=\"H3605\"* women, even|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* who|strong=\"H3605\"* had|strong=\"H5971\"* given him|strong=\"H5921\"* an|strong=\"H6030\"* answer|strong=\"H6030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“The|strong=\"H5921\"* incense|strong=\"H6999\"* that|strong=\"H5971\"* you|strong=\"H5921\"* burned|strong=\"H6999\"* in|strong=\"H5921\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H5921\"* streets|strong=\"H2351\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, you|strong=\"H5921\"* and|strong=\"H3063\"* your|strong=\"H3068\"* fathers, your|strong=\"H3068\"* kings|strong=\"H4428\"* and|strong=\"H3063\"* your|strong=\"H3068\"* princes|strong=\"H8269\"*, and|strong=\"H3063\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H5921\"* land, didn’t Yahweh|strong=\"H3068\"* remember|strong=\"H2142\"* them|strong=\"H5921\"*, and|strong=\"H3063\"* didn’t it|strong=\"H5921\"* come|strong=\"H5927\"* into|strong=\"H5927\"* his|strong=\"H3068\"* mind|strong=\"H3820\"*?" + }, + { + "verseNum": 22, + "text": "Thus|strong=\"H2088\"* Yahweh|strong=\"H3068\"* could|strong=\"H3201\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* bear|strong=\"H5375\"* it|strong=\"H6213\"*, because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* evil|strong=\"H7455\"* of|strong=\"H3068\"* your|strong=\"H3068\"* doings|strong=\"H4611\"* and|strong=\"H3068\"* because|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* abominations|strong=\"H8441\"* which|strong=\"H3068\"* you|strong=\"H6440\"* have|strong=\"H1961\"* committed|strong=\"H6213\"*. Therefore|strong=\"H3068\"* your|strong=\"H3068\"* land|strong=\"H6440\"* has|strong=\"H3068\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, an|strong=\"H6213\"* astonishment|strong=\"H8047\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*, without|strong=\"H3808\"* inhabitant|strong=\"H3427\"*, as|strong=\"H3117\"* it|strong=\"H6213\"* is|strong=\"H3068\"* today|strong=\"H3117\"*." + }, + { + "verseNum": 23, + "text": "Because|strong=\"H5921\"* you|strong=\"H6440\"* have|strong=\"H3068\"* burned|strong=\"H6999\"* incense|strong=\"H6999\"* and|strong=\"H1980\"* because|strong=\"H5921\"* you|strong=\"H6440\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1980\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"*, nor|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H5921\"* his|strong=\"H3068\"* law|strong=\"H8451\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3068\"* statutes|strong=\"H2708\"*, nor|strong=\"H3808\"* in|strong=\"H5921\"* his|strong=\"H3068\"* testimonies|strong=\"H5715\"*; therefore|strong=\"H3651\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* has|strong=\"H3068\"* happened|strong=\"H7122\"* to|strong=\"H1980\"* you|strong=\"H6440\"*, as|strong=\"H3117\"* it|strong=\"H5921\"* is|strong=\"H3068\"* today|strong=\"H3117\"*.”" + }, + { + "verseNum": 24, + "text": "Moreover Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, including|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* women, “Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H5971\"* in|strong=\"H3068\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*!" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*, ‘You|strong=\"H6213\"* and|strong=\"H6965\"* your|strong=\"H3068\"* wives have|strong=\"H3068\"* both spoken|strong=\"H1696\"* with|strong=\"H4390\"* your|strong=\"H3068\"* mouths|strong=\"H6310\"*, and|strong=\"H6965\"* with|strong=\"H4390\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* have|strong=\"H3068\"* fulfilled|strong=\"H4390\"* it|strong=\"H6213\"*, saying|strong=\"H1696\"*, “We|strong=\"H6213\"* will|strong=\"H3068\"* surely|strong=\"H6213\"* perform|strong=\"H6213\"* our|strong=\"H3068\"* vows|strong=\"H5088\"* that|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* vowed|strong=\"H5087\"*, to|strong=\"H1696\"* burn|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H1696\"* the|strong=\"H3541\"* queen|strong=\"H4446\"* of|strong=\"H3068\"* the|strong=\"H3541\"* sky|strong=\"H8064\"*, and|strong=\"H6965\"* to|strong=\"H1696\"* pour|strong=\"H5258\"* out|strong=\"H5258\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"* to|strong=\"H1696\"* her|strong=\"H4390\"*.”" + }, + { + "verseNum": 26, + "text": "“Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, all|strong=\"H3605\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1961\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* my|strong=\"H8085\"* great|strong=\"H1419\"* name|strong=\"H8034\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3605\"* my|strong=\"H8085\"* name|strong=\"H8034\"* will|strong=\"H3068\"* no|strong=\"H3605\"* more|strong=\"H5750\"* be|strong=\"H1961\"* named|strong=\"H7121\"* in|strong=\"H3427\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H3068\"* any|strong=\"H3605\"* man|strong=\"H1419\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* in|strong=\"H3427\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*, “As|strong=\"H1697\"* the|strong=\"H3605\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* lives|strong=\"H2416\"*.”" + }, + { + "verseNum": 27, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* watch|strong=\"H8245\"* over|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5704\"* evil|strong=\"H7451\"*, and|strong=\"H3063\"* not|strong=\"H3808\"* for|strong=\"H5704\"* good|strong=\"H2896\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H7451\"* of|strong=\"H5921\"* Judah|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H4714\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H5921\"* Egypt|strong=\"H4714\"* will|strong=\"H4714\"* be|strong=\"H3808\"* consumed|strong=\"H3615\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* and|strong=\"H3063\"* by|strong=\"H5921\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, until|strong=\"H5704\"* they|strong=\"H3808\"* are|strong=\"H4714\"* all|strong=\"H3605\"* gone|strong=\"H8552\"*." + }, + { + "verseNum": 28, + "text": "Those|strong=\"H1992\"* who|strong=\"H4310\"* escape|strong=\"H6412\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* will|strong=\"H4310\"* return|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Judah|strong=\"H3063\"* few|strong=\"H4557\"* in|strong=\"H7725\"* number|strong=\"H4557\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1697\"* Judah|strong=\"H3063\"*, who|strong=\"H4310\"* have|strong=\"H3045\"* gone|strong=\"H4480\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land of|strong=\"H1697\"* Egypt|strong=\"H4714\"* to|strong=\"H7725\"* live|strong=\"H1481\"* there|strong=\"H8033\"*, will|strong=\"H4310\"* know|strong=\"H3045\"* whose|strong=\"H4310\"* word|strong=\"H1697\"* will|strong=\"H4310\"* stand|strong=\"H6965\"*, mine|strong=\"H3045\"* or|strong=\"H4480\"* theirs|strong=\"H1992\"*." + }, + { + "verseNum": 29, + "text": "“‘This|strong=\"H2088\"* will|strong=\"H3068\"* be|strong=\"H1697\"* the|strong=\"H5002\"* sign to|strong=\"H3068\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* you|strong=\"H3588\"* in|strong=\"H5921\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* my|strong=\"H3068\"* words|strong=\"H1697\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* stand|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"* for|strong=\"H3588\"* evil|strong=\"H7451\"*.’" + }, + { + "verseNum": 30, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* give|strong=\"H5414\"* Pharaoh|strong=\"H6548\"* Hophra|strong=\"H6548\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H5414\"* enemies|strong=\"H3027\"* and|strong=\"H3063\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* his|strong=\"H5414\"* life|strong=\"H5315\"*, just as|strong=\"H5315\"* I|strong=\"H2005\"* gave|strong=\"H5414\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H4714\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, who|strong=\"H3068\"* was|strong=\"H3068\"* his|strong=\"H5414\"* enemy and|strong=\"H3063\"* sought|strong=\"H1245\"* his|strong=\"H5414\"* life|strong=\"H5315\"*.’”" + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* message|strong=\"H1697\"* that|strong=\"H1697\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Baruch|strong=\"H1263\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, when|strong=\"H1696\"* he|strong=\"H5921\"* wrote|strong=\"H3789\"* these|strong=\"H1696\"* words|strong=\"H1697\"* in|strong=\"H8141\"* a|strong=\"H3068\"* book|strong=\"H5612\"* at|strong=\"H5921\"* the|strong=\"H5921\"* mouth|strong=\"H6310\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"* to|strong=\"H3478\"* you|strong=\"H5921\"*, Baruch|strong=\"H1263\"*:" + }, + { + "verseNum": 3, + "text": "‘You|strong=\"H3588\"* said, “Woe is|strong=\"H3068\"* me|strong=\"H4994\"* now|strong=\"H4994\"*! For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* added|strong=\"H3254\"* sorrow|strong=\"H3015\"* to|strong=\"H3068\"* my|strong=\"H3068\"* pain|strong=\"H4341\"*! I|strong=\"H3588\"* am|strong=\"H3068\"* weary|strong=\"H3021\"* with|strong=\"H3068\"* my|strong=\"H3068\"* groaning, and|strong=\"H3068\"* I|strong=\"H3588\"* find|strong=\"H4672\"* no|strong=\"H3808\"* rest|strong=\"H4496\"*.”’" + }, + { + "verseNum": 4, + "text": "“You|strong=\"H3605\"* shall|strong=\"H3068\"* tell|strong=\"H3605\"* him|strong=\"H1931\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2009\"*, that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H3541\"* have|strong=\"H3068\"* built|strong=\"H1129\"*, I|strong=\"H3541\"* will|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H2040\"*, and|strong=\"H3068\"* that|strong=\"H3605\"* which|strong=\"H1931\"* I|strong=\"H3541\"* have|strong=\"H3068\"* planted|strong=\"H5193\"* I|strong=\"H3541\"* will|strong=\"H3068\"* pluck|strong=\"H5428\"* up|strong=\"H1129\"*; and|strong=\"H3068\"* this|strong=\"H1931\"* in|strong=\"H3068\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land." + }, + { + "verseNum": 5, + "text": "Do|strong=\"H3068\"* you|strong=\"H3588\"* seek|strong=\"H1245\"* great|strong=\"H1419\"* things|strong=\"H1419\"* for|strong=\"H3588\"* yourself|strong=\"H5315\"*? Don’t seek|strong=\"H1245\"* them|strong=\"H5414\"*; for|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* evil|strong=\"H7451\"* on|strong=\"H5921\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* let|strong=\"H5414\"* you|strong=\"H3588\"* escape|strong=\"H7998\"* with|strong=\"H3068\"* your|strong=\"H3068\"* life|strong=\"H5315\"* wherever|strong=\"H3605\"* you|strong=\"H3588\"* go|strong=\"H3212\"*.’”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 2, + "text": "Of|strong=\"H1121\"* Egypt|strong=\"H4714\"*: concerning|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H2428\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6549\"* Necoh king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, which|strong=\"H2428\"* was|strong=\"H1961\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Euphrates|strong=\"H6578\"* in|strong=\"H8141\"* Carchemish|strong=\"H3751\"*, which|strong=\"H2428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon struck|strong=\"H5221\"* in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Jehoiakim|strong=\"H3079\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 3, + "text": "“Prepare|strong=\"H6186\"* the|strong=\"H5066\"* buckler|strong=\"H4043\"* and|strong=\"H4043\"* shield|strong=\"H4043\"*," + }, + { + "verseNum": 4, + "text": "Harness the|strong=\"H5927\"* horses|strong=\"H5483\"*, and|strong=\"H5483\"* get|strong=\"H5927\"* up|strong=\"H5927\"*, you|strong=\"H3847\"* horsemen|strong=\"H6571\"*," + }, + { + "verseNum": 5, + "text": "Why|strong=\"H4069\"* have|strong=\"H3068\"* I|strong=\"H7200\"* seen|strong=\"H7200\"* it|strong=\"H7200\"*?" + }, + { + "verseNum": 6, + "text": "“Don’t let the|strong=\"H5921\"* swift|strong=\"H7031\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*," + }, + { + "verseNum": 7, + "text": "“Who|strong=\"H4310\"* is|strong=\"H2088\"* this|strong=\"H2088\"* who|strong=\"H4310\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H5927\"* the|strong=\"H5927\"* Nile|strong=\"H2975\"*," + }, + { + "verseNum": 8, + "text": "Egypt|strong=\"H4714\"* rises|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H5927\"* the|strong=\"H3680\"* Nile|strong=\"H2975\"*," + }, + { + "verseNum": 9, + "text": "Go|strong=\"H3318\"* up|strong=\"H5927\"*, you|strong=\"H3318\"* horses|strong=\"H5483\"*!" + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* that|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H1931\"* of|strong=\"H3117\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*," + }, + { + "verseNum": 11, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* Gilead|strong=\"H1568\"*, and|strong=\"H4714\"* take|strong=\"H3947\"* balm|strong=\"H6875\"*, virgin|strong=\"H1330\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H8085\"* nations|strong=\"H1471\"* have|strong=\"H1471\"* heard|strong=\"H8085\"* of|strong=\"H4390\"* your|strong=\"H8085\"* shame|strong=\"H7036\"*," + }, + { + "verseNum": 13, + "text": "The|strong=\"H5221\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5221\"* prophet|strong=\"H5030\"*, how that|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon should|strong=\"H3068\"* come and|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5221\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*:" + }, + { + "verseNum": 14, + "text": "“Declare|strong=\"H5046\"* in|strong=\"H8085\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 15, + "text": "Why|strong=\"H4069\"* are|strong=\"H3068\"* your|strong=\"H3068\"* strong ones|strong=\"H5975\"* swept away|strong=\"H1920\"*?" + }, + { + "verseNum": 16, + "text": "He|strong=\"H5971\"* made|strong=\"H7235\"* many|strong=\"H7235\"* to|strong=\"H7725\"* stumble|strong=\"H3782\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H8033\"* cried|strong=\"H7121\"* there|strong=\"H8033\"*, ‘Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"* is|strong=\"H4428\"* but|strong=\"H4428\"* a|strong=\"H3068\"* noise|strong=\"H7588\"*;" + }, + { + "verseNum": 18, + "text": "“As|strong=\"H3068\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* King|strong=\"H4428\"*," + }, + { + "verseNum": 19, + "text": "You|strong=\"H3588\"* daughter|strong=\"H1323\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 20, + "text": "“Egypt|strong=\"H4714\"* is|strong=\"H4714\"* a|strong=\"H3068\"* very beautiful heifer|strong=\"H5697\"*;" + }, + { + "verseNum": 21, + "text": "Also|strong=\"H1571\"* her|strong=\"H5921\"* hired|strong=\"H7916\"* men|strong=\"H1992\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H7130\"* of|strong=\"H3117\"* her|strong=\"H5921\"* are|strong=\"H3117\"* like|strong=\"H3808\"* calves|strong=\"H5695\"* of|strong=\"H3117\"* the|strong=\"H5921\"* stall|strong=\"H4770\"*," + }, + { + "verseNum": 22, + "text": "Its|strong=\"H3588\"* sound|strong=\"H6963\"* will|strong=\"H6963\"* go|strong=\"H3212\"* like|strong=\"H6086\"* the|strong=\"H3588\"* serpent|strong=\"H5175\"*," + }, + { + "verseNum": 23, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* down|strong=\"H3772\"* her|strong=\"H3772\"* forest|strong=\"H3293\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H5414\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Egypt|strong=\"H4714\"* will|strong=\"H5971\"* be|strong=\"H3027\"* disappointed;" + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* Amon of|strong=\"H4428\"* No|strong=\"H4996\"*, and|strong=\"H3478\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3478\"* Egypt|strong=\"H4714\"*, with|strong=\"H3068\"* her|strong=\"H5921\"* gods and|strong=\"H3478\"* her|strong=\"H5921\"* kings|strong=\"H4428\"*, even|strong=\"H3068\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H3478\"* those|strong=\"H5921\"* who|strong=\"H3068\"* trust in|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* those|strong=\"H5315\"* who|strong=\"H3068\"* seek|strong=\"H1245\"* their|strong=\"H3068\"* lives|strong=\"H5315\"*, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* into|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*. Afterwards it|strong=\"H5414\"* will|strong=\"H3068\"* be|strong=\"H3027\"* inhabited|strong=\"H7931\"*, as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H5002\"* days|strong=\"H3117\"* of|strong=\"H4428\"* old|strong=\"H6924\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 27, + "text": "“But|strong=\"H3588\"* don’t you|strong=\"H3588\"* be|strong=\"H3478\"* afraid|strong=\"H3372\"*, Jacob|strong=\"H3290\"* my|strong=\"H7725\"* servant|strong=\"H5650\"*." + }, + { + "verseNum": 28, + "text": "Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"*, O|strong=\"H3068\"* Jacob|strong=\"H3290\"* my|strong=\"H3605\"* servant|strong=\"H5650\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H5221\"* prophet|strong=\"H5030\"* concerning|strong=\"H1697\"* the|strong=\"H5221\"* Philistines|strong=\"H6430\"*, before|strong=\"H2962\"* Pharaoh|strong=\"H6547\"* struck|strong=\"H5221\"* Gaza|strong=\"H5804\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "At|strong=\"H3808\"* the|strong=\"H3027\"* noise|strong=\"H6963\"* of|strong=\"H1121\"* the|strong=\"H3027\"* stamping|strong=\"H8161\"* of|strong=\"H1121\"* the|strong=\"H3027\"* hoofs|strong=\"H6541\"* of|strong=\"H1121\"* his|strong=\"H3027\"* strong ones|strong=\"H1121\"*," + }, + { + "verseNum": 4, + "text": "because|strong=\"H3588\"* of|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* comes|strong=\"H3117\"* to|strong=\"H3068\"* destroy|strong=\"H7703\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*," + }, + { + "verseNum": 5, + "text": "Baldness|strong=\"H7144\"* has|strong=\"H7144\"* come on|strong=\"H7144\"* Gaza|strong=\"H5804\"*;" + }, + { + "verseNum": 6, + "text": "“‘You|strong=\"H5704\"* sword|strong=\"H2719\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, how|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* it|strong=\"H5704\"* be|strong=\"H3808\"* before|strong=\"H5704\"* you|strong=\"H5704\"* are|strong=\"H3068\"* quiet|strong=\"H8252\"*?" + }, + { + "verseNum": 7, + "text": "“How can you|strong=\"H6680\"* be|strong=\"H3068\"* quiet|strong=\"H8252\"*," + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H3068\"* Moab|strong=\"H4124\"*. Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* praise|strong=\"H8416\"* of|strong=\"H5921\"* Moab|strong=\"H4124\"* is|strong=\"H1571\"* no|strong=\"H3772\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* cry|strong=\"H6818\"* from|strong=\"H6963\"* Horonaim|strong=\"H2773\"*," + }, + { + "verseNum": 4, + "text": "Moab|strong=\"H4124\"* is|strong=\"H4124\"* destroyed|strong=\"H7665\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H8085\"* go|strong=\"H5927\"* up|strong=\"H5927\"* by|strong=\"H5927\"* the|strong=\"H8085\"* ascent|strong=\"H4608\"* of|strong=\"H4608\"* Luhith|strong=\"H3872\"* with|strong=\"H5927\"* continual|strong=\"H1065\"* weeping|strong=\"H1065\"*." + }, + { + "verseNum": 6, + "text": "Flee|strong=\"H5127\"*! Save|strong=\"H4422\"* your|strong=\"H1961\"* lives|strong=\"H5315\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1571\"* trusted in|strong=\"H3162\"* your|strong=\"H3588\"* works|strong=\"H4639\"* and|strong=\"H3548\"* in|strong=\"H3162\"* your|strong=\"H3588\"* treasures," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* destroyer|strong=\"H7703\"* will|strong=\"H3068\"* come|strong=\"H5892\"* on|strong=\"H3068\"* every|strong=\"H3605\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 9, + "text": "Give|strong=\"H5414\"* wings|strong=\"H6731\"* to|strong=\"H3318\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 10, + "text": "“Cursed is|strong=\"H3068\"* he|strong=\"H6213\"* who|strong=\"H3068\"* does|strong=\"H6213\"* the|strong=\"H6213\"* work|strong=\"H4399\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* negligently|strong=\"H7423\"*;" + }, + { + "verseNum": 11, + "text": "“Moab|strong=\"H4124\"* has|strong=\"H4124\"* been|strong=\"H8252\"* at|strong=\"H5921\"* ease|strong=\"H7599\"* from|strong=\"H5921\"* his|strong=\"H5921\"* youth|strong=\"H5271\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Moab|strong=\"H4124\"* will|strong=\"H3478\"* be|strong=\"H3478\"* ashamed of|strong=\"H1004\"* Chemosh|strong=\"H3645\"*," + }, + { + "verseNum": 14, + "text": "“How do you say, ‘We are|strong=\"H1368\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 15, + "text": "Moab|strong=\"H4124\"* is|strong=\"H3068\"* laid|strong=\"H5927\"* waste|strong=\"H7703\"*," + }, + { + "verseNum": 16, + "text": "“The|strong=\"H4116\"* calamity|strong=\"H7451\"* of|strong=\"H7451\"* Moab|strong=\"H4124\"* is|strong=\"H4124\"* near|strong=\"H7138\"* to|strong=\"H4116\"* come," + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3045\"* around|strong=\"H5439\"* him|strong=\"H3605\"*, bemoan|strong=\"H5110\"* him|strong=\"H3605\"*;" + }, + { + "verseNum": 18, + "text": "“You|strong=\"H3588\"* daughter|strong=\"H1323\"* who|strong=\"H3427\"* dwells|strong=\"H3427\"* in|strong=\"H3427\"* Dibon|strong=\"H1769\"*," + }, + { + "verseNum": 19, + "text": "Inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Aroer|strong=\"H6177\"*, stand|strong=\"H5975\"* by|strong=\"H1870\"* the|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H1870\"* watch|strong=\"H6822\"*." + }, + { + "verseNum": 20, + "text": "Moab|strong=\"H4124\"* is|strong=\"H4124\"* disappointed;" + }, + { + "verseNum": 21, + "text": "Judgment|strong=\"H4941\"* has|strong=\"H4941\"* come|strong=\"H4941\"* on|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H4334\"* country—" + }, + { + "verseNum": 22, + "text": "on|strong=\"H5921\"* Dibon|strong=\"H1769\"*, on|strong=\"H5921\"* Nebo|strong=\"H5015\"*, on|strong=\"H5921\"* Beth Diblathaim," + }, + { + "verseNum": 23, + "text": "on|strong=\"H5921\"* Kiriathaim|strong=\"H7156\"*, on|strong=\"H5921\"* Beth Gamul, on|strong=\"H5921\"* Beth Meon," + }, + { + "verseNum": 24, + "text": "on|strong=\"H5921\"* Kerioth|strong=\"H7152\"*, on|strong=\"H5921\"* Bozrah|strong=\"H1224\"*," + }, + { + "verseNum": 25, + "text": "The|strong=\"H5002\"* horn|strong=\"H7161\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* is|strong=\"H3068\"* cut|strong=\"H1438\"* off|strong=\"H1438\"*," + }, + { + "verseNum": 26, + "text": "“Make|strong=\"H1431\"* him|strong=\"H5921\"* drunk|strong=\"H7937\"*," + }, + { + "verseNum": 27, + "text": "For|strong=\"H3588\"* wasn’t Israel|strong=\"H3478\"* a|strong=\"H3068\"* derision|strong=\"H7814\"* to|strong=\"H3478\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 28, + "text": "You|strong=\"H5800\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Moab|strong=\"H4124\"*, leave|strong=\"H5800\"* the|strong=\"H5676\"* cities|strong=\"H5892\"*, and|strong=\"H5892\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5676\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 29, + "text": "“We|strong=\"H8085\"* have|strong=\"H1343\"* heard|strong=\"H8085\"* of|strong=\"H3820\"* the|strong=\"H8085\"* pride|strong=\"H1347\"* of|strong=\"H3820\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3651\"* know|strong=\"H3045\"* his|strong=\"H3068\"* wrath|strong=\"H5678\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3045\"* it|strong=\"H6213\"* is|strong=\"H3068\"* nothing|strong=\"H3808\"*;" + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H4124\"* wail|strong=\"H3213\"* for|strong=\"H5921\"* Moab|strong=\"H4124\"*." + }, + { + "verseNum": 32, + "text": "With|strong=\"H5921\"* more|strong=\"H5704\"* than|strong=\"H5921\"* the|strong=\"H5921\"* weeping|strong=\"H1065\"* of|strong=\"H5921\"* Jazer|strong=\"H3270\"*" + }, + { + "verseNum": 33, + "text": "Gladness|strong=\"H8057\"* and|strong=\"H8057\"* joy|strong=\"H8057\"* is|strong=\"H4124\"* taken away|strong=\"H7673\"* from|strong=\"H7673\"* the|strong=\"H3808\"* fruitful|strong=\"H3759\"* field|strong=\"H3759\"*" + }, + { + "verseNum": 34, + "text": "From|strong=\"H5704\"* the|strong=\"H3588\"* cry|strong=\"H2201\"* of|strong=\"H6963\"* Heshbon|strong=\"H2809\"* even|strong=\"H1571\"* to|strong=\"H5704\"* Elealeh," + }, + { + "verseNum": 35, + "text": "Moreover I|strong=\"H3068\"* will|strong=\"H3068\"* cause to|strong=\"H3068\"* cease|strong=\"H7673\"* in|strong=\"H3068\"* Moab|strong=\"H4124\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3651\"* my|strong=\"H5921\"* heart|strong=\"H3820\"* sounds for|strong=\"H5921\"* Moab|strong=\"H4124\"* like|strong=\"H3651\"* flutes|strong=\"H2485\"*," + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* every|strong=\"H3605\"* head|strong=\"H7218\"* is|strong=\"H3027\"* bald|strong=\"H7144\"*," + }, + { + "verseNum": 38, + "text": "On|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* housetops|strong=\"H1406\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 39, + "text": "“How it|strong=\"H5439\"* is|strong=\"H3605\"* broken|strong=\"H2865\"* down|strong=\"H2865\"*!" + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H3068\"* fly|strong=\"H1675\"* as|strong=\"H3068\"* an|strong=\"H3588\"* eagle|strong=\"H5404\"*," + }, + { + "verseNum": 41, + "text": "Kerioth|strong=\"H7152\"* is|strong=\"H1931\"* taken|strong=\"H3920\"*," + }, + { + "verseNum": 42, + "text": "Moab|strong=\"H4124\"* will|strong=\"H3068\"* be|strong=\"H3068\"* destroyed|strong=\"H8045\"* from|strong=\"H5921\"* being|strong=\"H5971\"* a|strong=\"H3068\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 43, + "text": "Terror|strong=\"H6343\"*, the|strong=\"H5002\"* pit|strong=\"H6354\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* snare|strong=\"H6341\"* are|strong=\"H3068\"* on|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 44, + "text": "“He|strong=\"H3588\"* who|strong=\"H3068\"* flees from|strong=\"H4480\"* the|strong=\"H6440\"* terror|strong=\"H6343\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* into|strong=\"H5927\"* the|strong=\"H6440\"* pit|strong=\"H6354\"*;" + }, + { + "verseNum": 45, + "text": "“Those|strong=\"H1121\"* who|strong=\"H1121\"* fled|strong=\"H5127\"* stand|strong=\"H5975\"* without|strong=\"H3588\"* strength|strong=\"H3581\"* under the|strong=\"H3588\"* shadow|strong=\"H6738\"* of|strong=\"H1121\"* Heshbon|strong=\"H2809\"*;" + }, + { + "verseNum": 46, + "text": "Woe to|strong=\"H1121\"* you|strong=\"H3588\"*, O|strong=\"H3068\"* Moab|strong=\"H4124\"*!" + }, + { + "verseNum": 47, + "text": "“Yet|strong=\"H5704\"* I|strong=\"H3117\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H3068\"* Moab|strong=\"H4124\"* in|strong=\"H3068\"* the|strong=\"H5002\"* latter days|strong=\"H3117\"*,”" + } + ] + }, + { + "chapterNum": 49, + "verses": [ + { + "verseNum": 1, + "text": "Of|strong=\"H1121\"* the|strong=\"H3541\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*. Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H1961\"*,”" + }, + { + "verseNum": 3, + "text": "“Wail|strong=\"H3213\"*, Heshbon|strong=\"H2809\"*, for|strong=\"H3588\"* Ai|strong=\"H5857\"* is|strong=\"H4428\"* laid waste|strong=\"H7703\"*!" + }, + { + "verseNum": 4, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* boast|strong=\"H1984\"* in|strong=\"H1323\"* the|strong=\"H1984\"* valleys|strong=\"H6010\"*," + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H6635\"* bring|strong=\"H5080\"* a|strong=\"H3068\"* terror|strong=\"H6343\"* on|strong=\"H5921\"* you|strong=\"H6440\"*,”" + }, + { + "verseNum": 6, + "text": "“But|strong=\"H3651\"* afterward I|strong=\"H3651\"* will|strong=\"H3068\"* reverse|strong=\"H7725\"* the|strong=\"H5002\"* captivity|strong=\"H7622\"* of|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*,”" + }, + { + "verseNum": 7, + "text": "Of|strong=\"H3068\"* Edom, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 8, + "text": "Flee|strong=\"H5127\"*! Turn|strong=\"H6437\"* back|strong=\"H6437\"*!" + }, + { + "verseNum": 9, + "text": "If grape gatherers|strong=\"H1219\"* came|strong=\"H7843\"* to|strong=\"H3808\"* you|strong=\"H3808\"*," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3588\"* made|strong=\"H1540\"* Esau|strong=\"H6215\"* bare|strong=\"H2834\"*," + }, + { + "verseNum": 11, + "text": "Leave|strong=\"H5800\"* your|strong=\"H5921\"* fatherless|strong=\"H3490\"* children|strong=\"H3490\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, they|strong=\"H3588\"* to|strong=\"H3068\"* whom|strong=\"H3588\"* it|strong=\"H1931\"* didn’t pertain to|strong=\"H3068\"* drink|strong=\"H8354\"* of|strong=\"H3068\"* the|strong=\"H3588\"* cup|strong=\"H3563\"* will|strong=\"H3068\"* certainly|strong=\"H3588\"* drink|strong=\"H8354\"*; and|strong=\"H3068\"* are|strong=\"H3068\"* you|strong=\"H3588\"* he|strong=\"H1931\"* who|strong=\"H1931\"* will|strong=\"H3068\"* altogether|strong=\"H5352\"* go|strong=\"H5352\"* unpunished|strong=\"H5352\"*? You|strong=\"H3588\"* won’t go|strong=\"H5352\"* unpunished|strong=\"H5352\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* surely|strong=\"H3588\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* myself,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3588\"* Bozrah|strong=\"H1224\"* will|strong=\"H3068\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*, a|strong=\"H3068\"* reproach|strong=\"H2781\"*, a|strong=\"H3068\"* waste|strong=\"H2723\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* curse|strong=\"H7045\"*. All|strong=\"H3605\"* its|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* perpetual|strong=\"H5769\"* wastes|strong=\"H2723\"*.”" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* news|strong=\"H8052\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* have|strong=\"H1471\"* made|strong=\"H5414\"* you|strong=\"H5414\"* small|strong=\"H6996\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 16, + "text": "As|strong=\"H3068\"* for|strong=\"H3588\"* your|strong=\"H3068\"* terror|strong=\"H8606\"*," + }, + { + "verseNum": 17, + "text": "“Edom will|strong=\"H1961\"* become|strong=\"H1961\"* an|strong=\"H1961\"* astonishment|strong=\"H8047\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"H3068\"* in|strong=\"H3427\"* the|strong=\"H3068\"* overthrow|strong=\"H4114\"* of|strong=\"H1121\"* Sodom|strong=\"H5467\"* and|strong=\"H1121\"* Gomorrah|strong=\"H6017\"* and|strong=\"H1121\"* its|strong=\"H3808\"* neighbor|strong=\"H7934\"* cities,” says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 19, + "text": "“Behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H4310\"* come|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion from|strong=\"H6440\"* the|strong=\"H6440\"* pride|strong=\"H1347\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Jordan|strong=\"H3383\"* against|strong=\"H5921\"* the|strong=\"H6440\"* strong habitation|strong=\"H5116\"*;" + }, + { + "verseNum": 20, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, that|strong=\"H8085\"* he|strong=\"H3651\"* has|strong=\"H3068\"* taken|strong=\"H3427\"* against|strong=\"H5921\"* Edom," + }, + { + "verseNum": 21, + "text": "The|strong=\"H8085\"* earth trembles at|strong=\"H5307\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* their|strong=\"H8085\"* fall|strong=\"H5307\"*;" + }, + { + "verseNum": 22, + "text": "Behold|strong=\"H2009\"*, he|strong=\"H1931\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3117\"* fly|strong=\"H1675\"* as|strong=\"H3117\"* the|strong=\"H5921\"* eagle|strong=\"H5404\"*," + }, + { + "verseNum": 23, + "text": "Of|strong=\"H3220\"* Damascus|strong=\"H1834\"*:" + }, + { + "verseNum": 24, + "text": "Damascus|strong=\"H1834\"* has|strong=\"H6869\"* grown feeble|strong=\"H7503\"*," + }, + { + "verseNum": 25, + "text": "How is|strong=\"H5892\"* the|strong=\"H5800\"* city|strong=\"H5892\"* of|strong=\"H5892\"* praise|strong=\"H8416\"* not|strong=\"H3808\"* forsaken|strong=\"H5800\"*," + }, + { + "verseNum": 26, + "text": "Therefore|strong=\"H3651\"* her|strong=\"H3605\"* young|strong=\"H3117\"* men|strong=\"H3605\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* in|strong=\"H3068\"* her|strong=\"H3605\"* streets|strong=\"H7339\"*," + }, + { + "verseNum": 27, + "text": "“I will|strong=\"H2346\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H2346\"* the|strong=\"H3341\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Damascus|strong=\"H1834\"*," + }, + { + "verseNum": 28, + "text": "Of|strong=\"H1121\"* Kedar|strong=\"H6938\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5221\"* kingdoms|strong=\"H4467\"* of|strong=\"H1121\"* Hazor|strong=\"H2674\"*, which|strong=\"H3068\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon struck|strong=\"H5221\"*, Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 29, + "text": "They|strong=\"H1992\"* will|strong=\"H6629\"* take|strong=\"H3947\"* their|strong=\"H3605\"* tents and|strong=\"H6629\"* their|strong=\"H3605\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 30, + "text": "Flee|strong=\"H5127\"*!" + }, + { + "verseNum": 31, + "text": "Arise|strong=\"H6965\"*! Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* that|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3427\"* ease|strong=\"H7961\"*," + }, + { + "verseNum": 32, + "text": "Their|strong=\"H3605\"* camels|strong=\"H1581\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* booty|strong=\"H7998\"*," + }, + { + "verseNum": 33, + "text": "Hazor|strong=\"H2674\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* dwelling|strong=\"H3427\"* place|strong=\"H1961\"* of|strong=\"H1121\"* jackals|strong=\"H8577\"*," + }, + { + "verseNum": 34, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* concerning|strong=\"H1697\"* Elam|strong=\"H5867\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* beginning|strong=\"H7225\"* of|strong=\"H4428\"* the|strong=\"H3068\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 35, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 36, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* bring|strong=\"H5080\"* on|strong=\"H1961\"* Elam|strong=\"H5867\"* the|strong=\"H3605\"* four winds|strong=\"H7307\"* from|strong=\"H1471\"* the|strong=\"H3605\"* four quarters|strong=\"H7098\"* of|strong=\"H7307\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 37, + "text": "I|strong=\"H5704\"* will|strong=\"H3068\"* cause Elam|strong=\"H5867\"* to|strong=\"H5704\"* be|strong=\"H3068\"* dismayed|strong=\"H2865\"* before|strong=\"H6440\"* their|strong=\"H3068\"* enemies," + }, + { + "verseNum": 38, + "text": "I|strong=\"H7760\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H3068\"* throne|strong=\"H3678\"* in|strong=\"H3068\"* Elam|strong=\"H5867\"*," + }, + { + "verseNum": 39, + "text": "‘But|strong=\"H1961\"* it|strong=\"H7725\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H5002\"* latter days|strong=\"H3117\"*" + } + ] + }, + { + "chapterNum": 50, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* concerning|strong=\"H1697\"* Babylon, concerning|strong=\"H1697\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* the|strong=\"H3068\"* Chaldeans|strong=\"H3778\"*, by|strong=\"H3027\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*." + }, + { + "verseNum": 2, + "text": "“Declare|strong=\"H5046\"* among the|strong=\"H8085\"* nations|strong=\"H1471\"* and|strong=\"H8085\"* publish|strong=\"H8085\"*," + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* comes|strong=\"H1961\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H3427\"* the|strong=\"H5921\"* north|strong=\"H6828\"* against|strong=\"H5921\"* her|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "“In|strong=\"H1980\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H1121\"* in|strong=\"H1980\"* that|strong=\"H3117\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* inquire|strong=\"H7592\"* concerning|strong=\"H3068\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* turned|strong=\"H3068\"* toward|strong=\"H1870\"* it|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H1961\"* people|strong=\"H5971\"* have|strong=\"H1961\"* been|strong=\"H1961\"* lost sheep|strong=\"H6629\"*." + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* found|strong=\"H4672\"* them|strong=\"H4672\"* have|strong=\"H3068\"* devoured them|strong=\"H4672\"*." + }, + { + "verseNum": 8, + "text": "“Flee|strong=\"H5110\"* out|strong=\"H3318\"* of|strong=\"H6440\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H6440\"* Babylon!" + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1471\"* stir|strong=\"H5782\"* up|strong=\"H5927\"*" + }, + { + "verseNum": 10, + "text": "Chaldea|strong=\"H3778\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey|strong=\"H7998\"*." + }, + { + "verseNum": 11, + "text": "“Because|strong=\"H3588\"* you|strong=\"H3588\"* are glad|strong=\"H8055\"*," + }, + { + "verseNum": 12, + "text": "your|strong=\"H2009\"* mother will|strong=\"H1471\"* be|strong=\"H1471\"* utterly|strong=\"H3966\"* disappointed." + }, + { + "verseNum": 13, + "text": "Because|strong=\"H5921\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H7110\"* she|strong=\"H5921\"* won’t be|strong=\"H1961\"* inhabited|strong=\"H3427\"*," + }, + { + "verseNum": 14, + "text": "Set|strong=\"H6186\"* yourselves|strong=\"H3605\"* in|strong=\"H5921\"* array|strong=\"H6186\"* against|strong=\"H5921\"* Babylon all|strong=\"H3605\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 15, + "text": "Shout|strong=\"H7321\"* against|strong=\"H5921\"* her|strong=\"H5414\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "Cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6440\"* sower|strong=\"H2232\"* from|strong=\"H6440\"* Babylon," + }, + { + "verseNum": 17, + "text": "“Israel|strong=\"H3478\"* is|strong=\"H2088\"* a|strong=\"H3068\"* hunted|strong=\"H5080\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, the|strong=\"H3541\"* God|strong=\"H3068\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 19, + "text": "I|strong=\"H5315\"* will|strong=\"H3478\"* bring|strong=\"H7725\"* Israel|strong=\"H3478\"* again|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* pasture|strong=\"H7462\"*," + }, + { + "verseNum": 20, + "text": "In|strong=\"H3478\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, and|strong=\"H3063\"* in|strong=\"H3478\"* that|strong=\"H3588\"* time|strong=\"H6256\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 21, + "text": "“Go|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Merathaim|strong=\"H4850\"*," + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* battle|strong=\"H4421\"* is|strong=\"H6963\"* in|strong=\"H4421\"* the|strong=\"H6963\"* land," + }, + { + "verseNum": 23, + "text": "How the|strong=\"H3605\"* hammer|strong=\"H6360\"* of|strong=\"H3605\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth is|strong=\"H3605\"* cut|strong=\"H1438\"* apart and|strong=\"H1471\"* broken|strong=\"H7665\"*!" + }, + { + "verseNum": 24, + "text": "I|strong=\"H3588\"* have|strong=\"H3068\"* laid|strong=\"H3369\"* a|strong=\"H3068\"* snare|strong=\"H3369\"* for|strong=\"H3588\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* opened|strong=\"H6605\"* his|strong=\"H3068\"* armory|strong=\"H3627\"*," + }, + { + "verseNum": 26, + "text": "Come|strong=\"H1961\"* against her|strong=\"H6605\"* from|strong=\"H1961\"* the|strong=\"H1961\"* farthest|strong=\"H7093\"* border|strong=\"H7093\"*." + }, + { + "verseNum": 27, + "text": "Kill|strong=\"H2717\"* all|strong=\"H3605\"* her|strong=\"H3605\"* bulls|strong=\"H6499\"*." + }, + { + "verseNum": 28, + "text": "Listen|strong=\"H6963\"* to|strong=\"H3068\"* those who|strong=\"H3068\"* flee|strong=\"H5127\"* and|strong=\"H3068\"* escape|strong=\"H6412\"* out|strong=\"H5127\"* of|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Babylon," + }, + { + "verseNum": 29, + "text": "“Call|strong=\"H8085\"* together|strong=\"H8085\"* the|strong=\"H3605\"* archers|strong=\"H7198\"* against|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 30, + "text": "Therefore|strong=\"H3651\"* her|strong=\"H3605\"* young|strong=\"H3117\"* men|strong=\"H3605\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* in|strong=\"H3068\"* her|strong=\"H3605\"* streets|strong=\"H7339\"*." + }, + { + "verseNum": 31, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H2005\"* against|strong=\"H2005\"* you|strong=\"H3588\"*, you|strong=\"H3588\"* proud|strong=\"H2087\"* one|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3117\"* Armies|strong=\"H6635\"*;" + }, + { + "verseNum": 32, + "text": "The|strong=\"H3605\"* proud|strong=\"H2087\"* one|strong=\"H3605\"* will|strong=\"H5892\"* stumble|strong=\"H3782\"* and|strong=\"H6965\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 33, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “The|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* are|strong=\"H1121\"* oppressed|strong=\"H6231\"* together|strong=\"H3162\"*." + }, + { + "verseNum": 34, + "text": "Their|strong=\"H3068\"* Redeemer|strong=\"H1350\"* is|strong=\"H3068\"* strong|strong=\"H2389\"*." + }, + { + "verseNum": 35, + "text": "“A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5002\"* Chaldeans|strong=\"H3778\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 36, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H2719\"* on|strong=\"H2719\"* the|strong=\"H2865\"* boasters," + }, + { + "verseNum": 37, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* is|strong=\"H3605\"* on|strong=\"H1961\"* their|strong=\"H3605\"* horses|strong=\"H5483\"*," + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* drought|strong=\"H2721\"* is|strong=\"H1931\"* on|strong=\"H2721\"* her|strong=\"H3001\"* waters|strong=\"H4325\"*," + }, + { + "verseNum": 39, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5704\"* wild animals of|strong=\"H1323\"* the|strong=\"H5704\"* desert|strong=\"H6728\"*" + }, + { + "verseNum": 40, + "text": "As|strong=\"H3068\"* when|strong=\"H3068\"* God|strong=\"H3068\"* overthrew|strong=\"H4114\"* Sodom|strong=\"H5467\"* and|strong=\"H1121\"* Gomorrah|strong=\"H6017\"* and|strong=\"H1121\"* its|strong=\"H3808\"* neighbor|strong=\"H7934\"* cities,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 41, + "text": "“Behold|strong=\"H2009\"*, a|strong=\"H3068\"* people|strong=\"H5971\"* comes|strong=\"H7227\"* from|strong=\"H1471\"* the|strong=\"H2009\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 42, + "text": "They|strong=\"H1992\"* take|strong=\"H2388\"* up|strong=\"H5921\"* bow|strong=\"H7198\"* and|strong=\"H6963\"* spear|strong=\"H3591\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H8085\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon has|strong=\"H4428\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* news|strong=\"H8088\"* of|strong=\"H4428\"* them|strong=\"H3027\"*," + }, + { + "verseNum": 44, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* enemy will|strong=\"H4310\"* come|strong=\"H5927\"* up|strong=\"H5927\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion" + }, + { + "verseNum": 45, + "text": "Therefore|strong=\"H3651\"* hear|strong=\"H8085\"* the|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 46, + "text": "The|strong=\"H8085\"* earth trembles at|strong=\"H7493\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* taking|strong=\"H8610\"* of|strong=\"H6963\"* Babylon." + } + ] + }, + { + "chapterNum": 51, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* send|strong=\"H7971\"* to|strong=\"H7971\"* Babylon strangers|strong=\"H2114\"*, who|strong=\"H2114\"* will|strong=\"H1961\"* winnow|strong=\"H2219\"* her|strong=\"H7971\"*." + }, + { + "verseNum": 3, + "text": "Against|strong=\"H5927\"* him|strong=\"H3605\"* who|strong=\"H3605\"* bends|strong=\"H1869\"*, let the|strong=\"H3605\"* archer|strong=\"H1869\"* bend|strong=\"H1869\"* his|strong=\"H3605\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H2351\"* will|strong=\"H2491\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"* in|strong=\"H5307\"* the|strong=\"H2351\"* land of|strong=\"H2351\"* the|strong=\"H2351\"* Chaldeans|strong=\"H3778\"*," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* Israel|strong=\"H3478\"* is|strong=\"H3068\"* not|strong=\"H3808\"* forsaken, nor|strong=\"H3808\"* Judah|strong=\"H3063\"*, by|strong=\"H3068\"* his|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 6, + "text": "“Flee|strong=\"H5127\"* out|strong=\"H4422\"* of|strong=\"H3068\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Babylon!" + }, + { + "verseNum": 7, + "text": "Babylon has|strong=\"H3068\"* been|strong=\"H3605\"* a|strong=\"H3068\"* golden|strong=\"H2091\"* cup|strong=\"H3563\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"*," + }, + { + "verseNum": 8, + "text": "Babylon has|strong=\"H3947\"* suddenly|strong=\"H6597\"* fallen|strong=\"H5307\"* and|strong=\"H3947\"* been destroyed|strong=\"H7665\"*!" + }, + { + "verseNum": 9, + "text": "“We|strong=\"H3588\"* would have|strong=\"H3588\"* healed|strong=\"H7495\"* Babylon," + }, + { + "verseNum": 10, + "text": "‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* produced|strong=\"H3318\"* our|strong=\"H3068\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 11, + "text": "“Make|strong=\"H3588\"* the|strong=\"H5921\"* arrows|strong=\"H2671\"* sharp!" + }, + { + "verseNum": 12, + "text": "Set|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* against|strong=\"H1696\"* the|strong=\"H3588\"* walls|strong=\"H2346\"* of|strong=\"H3068\"* Babylon!" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* who|strong=\"H7227\"* dwell|strong=\"H7931\"* on|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, abundant|strong=\"H7227\"* in|strong=\"H5921\"* treasures," + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H5921\"* himself|strong=\"H5315\"*, saying," + }, + { + "verseNum": 15, + "text": "“He|strong=\"H6213\"* has|strong=\"H6213\"* made|strong=\"H6213\"* the|strong=\"H6213\"* earth|strong=\"H8064\"* by|strong=\"H3559\"* his|strong=\"H5186\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H3318\"* he|strong=\"H6213\"* utters|strong=\"H5414\"* his|strong=\"H5414\"* voice|strong=\"H6963\"*," + }, + { + "verseNum": 17, + "text": "“Every|strong=\"H3605\"* man|strong=\"H3605\"* has|strong=\"H3588\"* become|strong=\"H1197\"* stupid|strong=\"H1197\"* and|strong=\"H7307\"* without|strong=\"H3808\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H1992\"* are|strong=\"H1992\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* portion|strong=\"H2506\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"* is|strong=\"H3068\"* not|strong=\"H3808\"* like|strong=\"H3808\"* these|strong=\"H1931\"*," + }, + { + "verseNum": 20, + "text": "“You|strong=\"H7843\"* are|strong=\"H1471\"* my|strong=\"H7843\"* battle|strong=\"H4421\"* ax and|strong=\"H1471\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "With|strong=\"H5483\"* you I|strong=\"H5310\"* will|strong=\"H7392\"* break|strong=\"H5310\"* in|strong=\"H7392\"* pieces|strong=\"H5310\"*" + }, + { + "verseNum": 22, + "text": "With|strong=\"H2205\"* you|strong=\"H2205\"* I|strong=\"H5288\"* will|strong=\"H5288\"* break|strong=\"H5310\"* in pieces|strong=\"H5310\"*" + }, + { + "verseNum": 23, + "text": "With|strong=\"H7462\"* you I|strong=\"H5310\"* will|strong=\"H5739\"* break|strong=\"H5310\"* in|strong=\"H7462\"* pieces|strong=\"H5310\"*" + }, + { + "verseNum": 24, + "text": "“I|strong=\"H3068\"* will|strong=\"H3068\"* give|strong=\"H6213\"* to|strong=\"H3068\"* Babylon and|strong=\"H3068\"* to|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Chaldea|strong=\"H3778\"* all|strong=\"H3605\"* their|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* they|strong=\"H3068\"* have|strong=\"H3068\"* done|strong=\"H6213\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"* in|strong=\"H3427\"* your|strong=\"H3068\"* sight|strong=\"H5869\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, destroying|strong=\"H7843\"* mountain|strong=\"H2022\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* won’t take|strong=\"H3947\"* a|strong=\"H3068\"* cornerstone|strong=\"H6438\"* from|strong=\"H4480\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 27, + "text": "“Set|strong=\"H6485\"* up|strong=\"H5927\"* a|strong=\"H3068\"* standard|strong=\"H5251\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land!" + }, + { + "verseNum": 28, + "text": "Prepare|strong=\"H6942\"* against|strong=\"H5921\"* her|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 29, + "text": "The|strong=\"H5921\"* land trembles and|strong=\"H6965\"* is|strong=\"H3068\"* in|strong=\"H3427\"* pain|strong=\"H2342\"*;" + }, + { + "verseNum": 30, + "text": "The|strong=\"H7665\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"* of|strong=\"H3427\"* Babylon have|strong=\"H1961\"* stopped|strong=\"H2308\"* fighting|strong=\"H3898\"*," + }, + { + "verseNum": 31, + "text": "One|strong=\"H3588\"* runner|strong=\"H7323\"* will|strong=\"H4428\"* run|strong=\"H7323\"* to|strong=\"H4428\"* meet|strong=\"H7125\"* another|strong=\"H5046\"*," + }, + { + "verseNum": 32, + "text": "So the|strong=\"H8313\"* passages|strong=\"H4569\"* are|strong=\"H4421\"* seized|strong=\"H8610\"*." + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 34, + "text": "“Nebuchadnezzar|strong=\"H5019\"* the|strong=\"H4390\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon has|strong=\"H4428\"* devoured|strong=\"H1104\"* me|strong=\"H1740\"*." + }, + { + "verseNum": 35, + "text": "May the|strong=\"H5921\"* violence|strong=\"H2555\"* done to|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H3389\"* to|strong=\"H5921\"* my|strong=\"H5921\"* flesh|strong=\"H7607\"* be|strong=\"H3389\"* on|strong=\"H5921\"* Babylon!”" + }, + { + "verseNum": 36, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 37, + "text": "Babylon will|strong=\"H1961\"* become|strong=\"H1961\"* heaps|strong=\"H1530\"*," + }, + { + "verseNum": 38, + "text": "They|strong=\"H3162\"* will|strong=\"H3162\"* roar|strong=\"H7580\"* together|strong=\"H3162\"* like|strong=\"H3162\"* young|strong=\"H3715\"* lions|strong=\"H3715\"*." + }, + { + "verseNum": 39, + "text": "When|strong=\"H3068\"* they|strong=\"H3068\"* are|strong=\"H3068\"* inflamed, I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H7896\"* their|strong=\"H3068\"* feast|strong=\"H4960\"*," + }, + { + "verseNum": 40, + "text": "“I will|strong=\"H3381\"* bring|strong=\"H3381\"* them|strong=\"H3381\"* down|strong=\"H3381\"* like|strong=\"H3381\"* lambs|strong=\"H3733\"* to|strong=\"H3381\"* the|strong=\"H5973\"* slaughter|strong=\"H2873\"*," + }, + { + "verseNum": 41, + "text": "“How Sheshach|strong=\"H8347\"* is|strong=\"H3605\"* taken|strong=\"H3920\"*!" + }, + { + "verseNum": 42, + "text": "The|strong=\"H5921\"* sea|strong=\"H3220\"* has|strong=\"H3220\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* Babylon." + }, + { + "verseNum": 43, + "text": "Her|strong=\"H3605\"* cities|strong=\"H5892\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*," + }, + { + "verseNum": 44, + "text": "I|strong=\"H5921\"* will|strong=\"H1471\"* execute judgment|strong=\"H6485\"* on|strong=\"H5921\"* Bel|strong=\"H1078\"* in|strong=\"H5921\"* Babylon," + }, + { + "verseNum": 45, + "text": "“My|strong=\"H3068\"* people|strong=\"H5971\"*, go|strong=\"H3318\"* away|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* her|strong=\"H3318\"*," + }, + { + "verseNum": 46, + "text": "Don’t let your|strong=\"H5921\"* heart|strong=\"H3824\"* faint|strong=\"H7401\"*." + }, + { + "verseNum": 47, + "text": "Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come|strong=\"H5307\"* that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3117\"* execute judgment|strong=\"H6485\"* on|strong=\"H5921\"* the|strong=\"H3605\"* engraved|strong=\"H6456\"* images|strong=\"H6456\"* of|strong=\"H3117\"* Babylon;" + }, + { + "verseNum": 48, + "text": "Then|strong=\"H3588\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* and|strong=\"H3068\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*," + }, + { + "verseNum": 49, + "text": "“As|strong=\"H1571\"* Babylon has|strong=\"H3478\"* caused|strong=\"H5307\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* of|strong=\"H3605\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* fall|strong=\"H5307\"*," + }, + { + "verseNum": 50, + "text": "You|strong=\"H5921\"* who|strong=\"H3068\"* have|strong=\"H3068\"* escaped|strong=\"H6412\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, go|strong=\"H1980\"*!" + }, + { + "verseNum": 51, + "text": "“We|strong=\"H3588\"* are|strong=\"H3068\"* confounded" + }, + { + "verseNum": 52, + "text": "“Therefore|strong=\"H3651\"* behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 53, + "text": "Though|strong=\"H3588\"* Babylon should|strong=\"H3068\"* mount|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H5002\"* sky|strong=\"H8064\"*," + }, + { + "verseNum": 54, + "text": "“The|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* cry|strong=\"H2201\"* comes from|strong=\"H6963\"* Babylon," + }, + { + "verseNum": 55, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* lays|strong=\"H5414\"* Babylon waste|strong=\"H7703\"*," + }, + { + "verseNum": 56, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* destroyer|strong=\"H7703\"* has|strong=\"H3068\"* come|strong=\"H1368\"* on|strong=\"H5921\"* her|strong=\"H5921\"*," + }, + { + "verseNum": 57, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* make|strong=\"H7937\"* her|strong=\"H7937\"* princes|strong=\"H8269\"*, her|strong=\"H7937\"* wise|strong=\"H2450\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 58, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 59, + "text": "The|strong=\"H6680\"* word|strong=\"H1697\"* which|strong=\"H1697\"* Jeremiah|strong=\"H3414\"* the|strong=\"H6680\"* prophet|strong=\"H5030\"* commanded|strong=\"H6680\"* Seraiah|strong=\"H8304\"* the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Neriah|strong=\"H5374\"*, the|strong=\"H6680\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Mahseiah|strong=\"H4271\"*, when|strong=\"H1121\"* he|strong=\"H8141\"* went|strong=\"H3212\"* with|strong=\"H1697\"* Zedekiah|strong=\"H6667\"* the|strong=\"H6680\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* to|strong=\"H3212\"* Babylon in|strong=\"H8141\"* the|strong=\"H6680\"* fourth|strong=\"H7243\"* year|strong=\"H8141\"* of|strong=\"H1121\"* his|strong=\"H6680\"* reign|strong=\"H4427\"*. Now|strong=\"H3212\"* Seraiah|strong=\"H8304\"* was|strong=\"H1697\"* chief|strong=\"H8269\"* quartermaster|strong=\"H8269\"*." + }, + { + "verseNum": 60, + "text": "Jeremiah|strong=\"H3414\"* wrote|strong=\"H3789\"* in|strong=\"H3789\"* a|strong=\"H3068\"* book|strong=\"H5612\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H3605\"* should come on|strong=\"H7451\"* Babylon, even all|strong=\"H3605\"* these|strong=\"H3789\"* words|strong=\"H1697\"* that|strong=\"H3605\"* are|strong=\"H1697\"* written|strong=\"H3789\"* concerning|strong=\"H1697\"* Babylon." + }, + { + "verseNum": 61, + "text": "Jeremiah|strong=\"H3414\"* said|strong=\"H1697\"* to|strong=\"H1697\"* Seraiah|strong=\"H8304\"*, “When|strong=\"H7200\"* you|strong=\"H3605\"* come to|strong=\"H1697\"* Babylon, then|strong=\"H7200\"* see|strong=\"H7200\"* that|strong=\"H7200\"* you|strong=\"H3605\"* read|strong=\"H7121\"* all|strong=\"H3605\"* these|strong=\"H7121\"* words|strong=\"H1697\"*," + }, + { + "verseNum": 62, + "text": "and|strong=\"H3068\"* say|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"*, you|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* concerning|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"*, to|strong=\"H1696\"* cut|strong=\"H3772\"* it|strong=\"H3588\"* off|strong=\"H3772\"*, that|strong=\"H3588\"* no|strong=\"H1115\"* one|strong=\"H2088\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3588\"*, neither|strong=\"H1115\"* man|strong=\"H2088\"* nor|strong=\"H1115\"* animal|strong=\"H1961\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"* forever|strong=\"H5769\"*.’" + }, + { + "verseNum": 63, + "text": "It|strong=\"H7121\"* will|strong=\"H1961\"* be|strong=\"H1961\"*, when|strong=\"H1961\"* you|strong=\"H5921\"* have|strong=\"H1961\"* finished|strong=\"H3615\"* reading|strong=\"H7121\"* this|strong=\"H2088\"* book|strong=\"H5612\"*, that|strong=\"H7121\"* you|strong=\"H5921\"* shall|strong=\"H2088\"* bind|strong=\"H7194\"* a|strong=\"H3068\"* stone to|strong=\"H1961\"* it|strong=\"H7121\"*, and|strong=\"H2088\"* cast|strong=\"H7993\"* it|strong=\"H7121\"* into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* Euphrates|strong=\"H6578\"*." + }, + { + "verseNum": 64, + "text": "Then|strong=\"H6965\"* you|strong=\"H6440\"* shall|strong=\"H3808\"* say|strong=\"H1697\"*, ‘Thus|strong=\"H3602\"* will|strong=\"H1697\"* Babylon sink|strong=\"H8257\"*, and|strong=\"H6965\"* will|strong=\"H1697\"* not|strong=\"H3808\"* rise|strong=\"H6965\"* again|strong=\"H6965\"* because|strong=\"H5921\"* of|strong=\"H1697\"* the|strong=\"H6440\"* evil|strong=\"H7451\"* that|strong=\"H1697\"* I|strong=\"H5704\"* will|strong=\"H1697\"* bring|strong=\"H7451\"* on|strong=\"H5921\"* her|strong=\"H5921\"*; and|strong=\"H6965\"* they|strong=\"H3808\"* will|strong=\"H1697\"* be|strong=\"H3808\"* weary|strong=\"H3286\"*.’”" + } + ] + }, + { + "chapterNum": 52, + "verses": [ + { + "verseNum": 1, + "text": "Zedekiah|strong=\"H6667\"* was|strong=\"H8034\"* twenty-one|strong=\"H6242\"* years|strong=\"H8141\"* old|strong=\"H1121\"* when|strong=\"H1121\"* he|strong=\"H3389\"* began to|strong=\"H3389\"* reign|strong=\"H4427\"*. He|strong=\"H3389\"* reigned|strong=\"H4427\"* eleven|strong=\"H6240\"* years|strong=\"H8141\"* in|strong=\"H8141\"* Jerusalem|strong=\"H3389\"*. His|strong=\"H6667\"* mother’s name|strong=\"H8034\"* was|strong=\"H8034\"* Hamutal|strong=\"H2537\"* the|strong=\"H3414\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Jeremiah|strong=\"H3414\"* of|strong=\"H1121\"* Libnah|strong=\"H3841\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6213\"* did|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H3068\"* was|strong=\"H3068\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, according to|strong=\"H3068\"* all|strong=\"H3605\"* that|strong=\"H3605\"* Jehoiakim|strong=\"H3079\"* had|strong=\"H3068\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* through|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* this|strong=\"H3588\"* happened|strong=\"H1961\"* in|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"*, until|strong=\"H5704\"* he|strong=\"H3588\"* had|strong=\"H3068\"* cast|strong=\"H7993\"* them|strong=\"H5921\"* out|strong=\"H7993\"* from|strong=\"H6440\"* his|strong=\"H3068\"* presence|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H8141\"* the|strong=\"H3605\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H3605\"* reign|strong=\"H4427\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3605\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3605\"* month|strong=\"H2320\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H1961\"*, he|strong=\"H1931\"* and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* encamped|strong=\"H2583\"* against|strong=\"H5921\"* it|strong=\"H1931\"*; and|strong=\"H4428\"* they|strong=\"H5921\"* built|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H1931\"* round|strong=\"H5439\"* about|strong=\"H5439\"*." + }, + { + "verseNum": 5, + "text": "So|strong=\"H5704\"* the|strong=\"H5704\"* city|strong=\"H5892\"* was|strong=\"H5892\"* besieged|strong=\"H4692\"* to|strong=\"H5704\"* the|strong=\"H5704\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5892\"* the|strong=\"H2388\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, in|strong=\"H5892\"* the|strong=\"H2388\"* ninth|strong=\"H8672\"* day|strong=\"H2320\"* of|strong=\"H5892\"* the|strong=\"H2388\"* month|strong=\"H2320\"*, the|strong=\"H2388\"* famine|strong=\"H7458\"* was|strong=\"H1961\"* severe|strong=\"H2388\"* in|strong=\"H5892\"* the|strong=\"H2388\"* city|strong=\"H5892\"*, so|strong=\"H1961\"* that|strong=\"H5971\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* bread|strong=\"H3899\"* for|strong=\"H5892\"* the|strong=\"H2388\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H2388\"* land." + }, + { + "verseNum": 7, + "text": "Then|strong=\"H3318\"* a|strong=\"H3068\"* breach|strong=\"H1234\"* was|strong=\"H5892\"* made|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* fled|strong=\"H1272\"*, and|strong=\"H4428\"* went|strong=\"H3212\"* out|strong=\"H3318\"* of|strong=\"H4428\"* the|strong=\"H3605\"* city|strong=\"H5892\"* by|strong=\"H5921\"* night|strong=\"H3915\"* by|strong=\"H5921\"* the|strong=\"H3605\"* way|strong=\"H1870\"* of|strong=\"H4428\"* the|strong=\"H3605\"* gate|strong=\"H8179\"* between|strong=\"H4421\"* the|strong=\"H3605\"* two|strong=\"H2346\"* walls|strong=\"H2346\"*, which|strong=\"H5892\"* was|strong=\"H5892\"* by|strong=\"H5921\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s garden|strong=\"H1588\"*. Now|strong=\"H3212\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* were|strong=\"H4428\"* against|strong=\"H5921\"* the|strong=\"H3605\"* city|strong=\"H5892\"* all|strong=\"H3605\"* around|strong=\"H5439\"*. The|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H4428\"* war|strong=\"H4421\"* went|strong=\"H3212\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*," + }, + { + "verseNum": 8, + "text": "but|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* pursued|strong=\"H7291\"* the|strong=\"H3605\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* overtook|strong=\"H5381\"* Zedekiah|strong=\"H6667\"* in|strong=\"H5921\"* the|strong=\"H3605\"* plains|strong=\"H6160\"* of|strong=\"H4428\"* Jericho|strong=\"H3405\"*; and|strong=\"H4428\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"* was|strong=\"H4428\"* scattered|strong=\"H6327\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* they|strong=\"H4428\"* took|strong=\"H8610\"* the|strong=\"H5927\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* carried|strong=\"H5927\"* him|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H5927\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H1696\"* Riblah|strong=\"H7247\"* in|strong=\"H4428\"* the|strong=\"H5927\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*; and|strong=\"H4428\"* he|strong=\"H1696\"* pronounced|strong=\"H1696\"* judgment|strong=\"H4941\"* on|strong=\"H5927\"* him|strong=\"H5927\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon killed|strong=\"H7819\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zedekiah|strong=\"H6667\"* before|strong=\"H5869\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*. He|strong=\"H3605\"* also|strong=\"H1571\"* killed|strong=\"H7819\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H8269\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* in|strong=\"H4428\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3117\"* put|strong=\"H5414\"* out|strong=\"H5414\"* the|strong=\"H5414\"* eyes|strong=\"H5869\"* of|strong=\"H4428\"* Zedekiah|strong=\"H6667\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon bound him|strong=\"H5414\"* in|strong=\"H1004\"* fetters|strong=\"H5178\"*, and|strong=\"H4428\"* carried him|strong=\"H5414\"* to|strong=\"H5704\"* Babylon, and|strong=\"H4428\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H1004\"* prison|strong=\"H1004\"* until|strong=\"H5704\"* the|strong=\"H5414\"* day|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H5414\"* death|strong=\"H4194\"*." + }, + { + "verseNum": 12, + "text": "Now|strong=\"H7227\"* in|strong=\"H8141\"* the|strong=\"H6440\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H6440\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H6440\"* nineteenth|strong=\"H8672\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Nebuchadnezzar|strong=\"H5019\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, Nebuzaradan|strong=\"H5018\"* the|strong=\"H6440\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H6440\"* guard|strong=\"H2876\"*, who|strong=\"H1931\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, came|strong=\"H4428\"* into Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* burned|strong=\"H8313\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* houses|strong=\"H1004\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H3068\"* every|strong=\"H3605\"* great|strong=\"H1419\"* house|strong=\"H1004\"*, he|strong=\"H3068\"* burned|strong=\"H8313\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 14, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* army|strong=\"H2428\"* of|strong=\"H2346\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, who|strong=\"H3605\"* were|strong=\"H2428\"* with|strong=\"H3389\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H2346\"* the|strong=\"H3605\"* guard|strong=\"H2876\"*, broke|strong=\"H5422\"* down|strong=\"H5422\"* all|strong=\"H3605\"* the|strong=\"H3605\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Jerusalem|strong=\"H3389\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5307\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H1540\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H1540\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* of|strong=\"H4428\"* the|strong=\"H1540\"* poorest|strong=\"H1803\"* of|strong=\"H4428\"* the|strong=\"H1540\"* people|strong=\"H5971\"*, and|strong=\"H4428\"* the|strong=\"H1540\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H1540\"* people|strong=\"H5971\"* who|strong=\"H5971\"* were|strong=\"H5971\"* left|strong=\"H7604\"* in|strong=\"H4428\"* the|strong=\"H1540\"* city|strong=\"H5892\"*, and|strong=\"H4428\"* those who|strong=\"H5971\"* fell|strong=\"H5307\"* away|strong=\"H1540\"*, who|strong=\"H5971\"* defected|strong=\"H5307\"* to|strong=\"H4428\"* the|strong=\"H1540\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* the|strong=\"H1540\"* rest|strong=\"H3499\"* of|strong=\"H4428\"* the|strong=\"H1540\"* multitude|strong=\"H7227\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H7604\"* Nebuzaradan|strong=\"H5018\"* the|strong=\"H5018\"* captain|strong=\"H7227\"* of|strong=\"H7227\"* the|strong=\"H5018\"* guard|strong=\"H2876\"* left|strong=\"H7604\"* of|strong=\"H7227\"* the|strong=\"H5018\"* poorest|strong=\"H1803\"* of|strong=\"H7227\"* the|strong=\"H5018\"* land to|strong=\"H7227\"* be vineyard keepers and|strong=\"H7227\"* farmers." + }, + { + "verseNum": 17, + "text": "The|strong=\"H3605\"* Chaldeans|strong=\"H3778\"* broke|strong=\"H7665\"* the|strong=\"H3605\"* pillars|strong=\"H5982\"* of|strong=\"H1004\"* bronze|strong=\"H5178\"* that|strong=\"H3605\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H3068\"* the|strong=\"H3605\"* bases|strong=\"H4350\"* and|strong=\"H3068\"* the|strong=\"H3605\"* bronze|strong=\"H5178\"* sea|strong=\"H3220\"* that|strong=\"H3605\"* were|strong=\"H1004\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* in|strong=\"H3068\"* pieces|strong=\"H7665\"*, and|strong=\"H3068\"* carried|strong=\"H5375\"* all|strong=\"H3605\"* of|strong=\"H1004\"* their|strong=\"H3605\"* bronze|strong=\"H5178\"* to|strong=\"H3068\"* Babylon." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3605\"* also took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3605\"* pots|strong=\"H5518\"*, the|strong=\"H3605\"* shovels|strong=\"H3257\"*, the|strong=\"H3605\"* snuffers|strong=\"H4212\"*, the|strong=\"H3605\"* basins|strong=\"H4219\"*, the|strong=\"H3605\"* spoons|strong=\"H3709\"*, and|strong=\"H5178\"* all|strong=\"H3605\"* the|strong=\"H3605\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H3605\"* ministered|strong=\"H8334\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H3709\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* cups|strong=\"H5592\"*, the|strong=\"H3947\"* fire pans|strong=\"H3709\"*, the|strong=\"H3947\"* basins|strong=\"H4219\"*, the|strong=\"H3947\"* pots|strong=\"H5518\"*, the|strong=\"H3947\"* lamp stands, the|strong=\"H3947\"* spoons|strong=\"H3709\"*, and|strong=\"H3701\"* the|strong=\"H3947\"* bowls|strong=\"H4219\"*; that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H3709\"* gold|strong=\"H2091\"*, as|strong=\"H3947\"* gold|strong=\"H2091\"*, and|strong=\"H3701\"* that|strong=\"H3701\"* which|strong=\"H2091\"* was|strong=\"H2091\"* of|strong=\"H3709\"* silver|strong=\"H3701\"*, as|strong=\"H3947\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3068\"* took|strong=\"H1961\"* the|strong=\"H3605\"* two|strong=\"H8147\"* pillars|strong=\"H5982\"*, the|strong=\"H3605\"* one|strong=\"H3605\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3605\"* twelve|strong=\"H8147\"* bronze|strong=\"H5178\"* bulls|strong=\"H1241\"* that|strong=\"H3605\"* were|strong=\"H1961\"* under|strong=\"H8478\"* the|strong=\"H3605\"* bases|strong=\"H4350\"*, which|strong=\"H3068\"* King|strong=\"H4428\"* Solomon|strong=\"H8010\"* had|strong=\"H3068\"* made|strong=\"H6213\"* for|strong=\"H6213\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*. The|strong=\"H3605\"* bronze|strong=\"H5178\"* of|strong=\"H4428\"* all|strong=\"H3605\"* these|strong=\"H6213\"* vessels|strong=\"H3627\"* was|strong=\"H3068\"* without|strong=\"H3808\"* weight|strong=\"H4948\"*." + }, + { + "verseNum": 21, + "text": "As for|strong=\"H8147\"* the|strong=\"H5437\"* pillars|strong=\"H5982\"*, the|strong=\"H5437\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H5437\"* one|strong=\"H8147\"* pillar|strong=\"H5982\"* was|strong=\"H6967\"* eighteen|strong=\"H8083\"* cubits;+ 52:21 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H8147\"* a|strong=\"H3068\"* line|strong=\"H2339\"* of|strong=\"H5982\"* twelve|strong=\"H8147\"* cubits encircled|strong=\"H5437\"* it|strong=\"H5437\"*; and|strong=\"H8147\"* its thickness|strong=\"H5672\"* was|strong=\"H6967\"* four fingers. It|strong=\"H5437\"* was|strong=\"H6967\"* hollow|strong=\"H5014\"*." + }, + { + "verseNum": 22, + "text": "A|strong=\"H3068\"* capital|strong=\"H3805\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"* was|strong=\"H6967\"* on|strong=\"H5921\"* it|strong=\"H5921\"*; and|strong=\"H2568\"* the|strong=\"H3605\"* height|strong=\"H6967\"* of|strong=\"H5982\"* the|strong=\"H3605\"* one|strong=\"H3605\"* capital|strong=\"H3805\"* was|strong=\"H6967\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*,+ 52:22 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* with|strong=\"H5921\"* network|strong=\"H7639\"* and|strong=\"H2568\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* capital|strong=\"H3805\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, all|strong=\"H3605\"* of|strong=\"H5982\"* bronze|strong=\"H5178\"*. The|strong=\"H3605\"* second|strong=\"H8145\"* pillar|strong=\"H5982\"* also had|strong=\"H7416\"* the|strong=\"H3605\"* same, with|strong=\"H5921\"* pomegranates|strong=\"H7416\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H1961\"* were|strong=\"H1961\"* ninety-six|strong=\"H8337\"* pomegranates|strong=\"H7416\"* on|strong=\"H5921\"* the|strong=\"H3605\"* sides|strong=\"H5439\"*; all|strong=\"H3605\"* the|strong=\"H3605\"* pomegranates|strong=\"H7416\"* were|strong=\"H1961\"* one|strong=\"H3605\"* hundred|strong=\"H3967\"* on|strong=\"H5921\"* the|strong=\"H3605\"* network|strong=\"H7639\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H7218\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* Seraiah|strong=\"H8304\"* the|strong=\"H3947\"* chief|strong=\"H7218\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* Zephaniah|strong=\"H6846\"* the|strong=\"H3947\"* second|strong=\"H4932\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* the|strong=\"H3947\"* three|strong=\"H7969\"* keepers|strong=\"H8104\"* of|strong=\"H7218\"* the|strong=\"H3947\"* threshold|strong=\"H5592\"*," + }, + { + "verseNum": 25, + "text": "and|strong=\"H4428\"* out|strong=\"H4672\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"* he|strong=\"H4480\"* took|strong=\"H3947\"* an|strong=\"H1961\"* officer|strong=\"H5631\"* who|strong=\"H5971\"* was|strong=\"H1961\"* set|strong=\"H6496\"* over|strong=\"H5921\"* the|strong=\"H6440\"* men|strong=\"H5971\"* of|strong=\"H4428\"* war|strong=\"H4421\"*; and|strong=\"H4428\"* seven|strong=\"H7651\"* men|strong=\"H5971\"* of|strong=\"H4428\"* those|strong=\"H4480\"* who|strong=\"H5971\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s face|strong=\"H6440\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H4428\"* the|strong=\"H6440\"* scribe|strong=\"H5608\"* of|strong=\"H4428\"* the|strong=\"H6440\"* captain|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* army|strong=\"H6635\"*, who|strong=\"H5971\"* mustered|strong=\"H6633\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*; and|strong=\"H4428\"* sixty|strong=\"H8346\"* men|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, who|strong=\"H5971\"* were|strong=\"H1961\"* found|strong=\"H4672\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* the|strong=\"H6440\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 26, + "text": "Nebuzaradan|strong=\"H5018\"* the|strong=\"H3947\"* captain|strong=\"H7227\"* of|strong=\"H4428\"* the|strong=\"H3947\"* guard|strong=\"H2876\"* took|strong=\"H3947\"* them|strong=\"H3947\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3212\"* the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon to|strong=\"H3212\"* Riblah|strong=\"H7247\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon struck|strong=\"H5221\"* them|strong=\"H5921\"*, and|strong=\"H3063\"* put|strong=\"H4191\"* them|strong=\"H5921\"* to|strong=\"H4191\"* death|strong=\"H4191\"* at|strong=\"H5921\"* Riblah|strong=\"H7247\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H4428\"* Hamath|strong=\"H2574\"*." + }, + { + "verseNum": 28, + "text": "This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H1540\"* number of|strong=\"H8141\"* the|strong=\"H1540\"* people|strong=\"H5971\"* whom|strong=\"H5971\"* Nebuchadnezzar|strong=\"H5019\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"*:" + }, + { + "verseNum": 29, + "text": "in|strong=\"H8141\"* the|strong=\"H8147\"* eighteenth|strong=\"H8083\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, he|strong=\"H8147\"* carried away captive from|strong=\"H5315\"* Jerusalem|strong=\"H3389\"* eight|strong=\"H8083\"* hundred|strong=\"H3967\"* thirty-two|strong=\"H7970\"* persons|strong=\"H5315\"*;" + }, + { + "verseNum": 30, + "text": "in|strong=\"H8141\"* the|strong=\"H3605\"* twenty-third|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, Nebuzaradan|strong=\"H5018\"* the|strong=\"H3605\"* captain|strong=\"H7227\"* of|strong=\"H8141\"* the|strong=\"H3605\"* guard|strong=\"H2876\"* carried|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* of|strong=\"H8141\"* the|strong=\"H3605\"* Jews|strong=\"H3064\"* seven|strong=\"H7651\"* hundred|strong=\"H3967\"* forty-five people|strong=\"H5315\"*." + }, + { + "verseNum": 31, + "text": "In|strong=\"H8141\"* the|strong=\"H5375\"* thirty-seventh|strong=\"H7970\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5375\"* captivity|strong=\"H1546\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5375\"* twenty-fifth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H5375\"* month|strong=\"H2320\"*, Evilmerodach king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, in|strong=\"H8141\"* the|strong=\"H5375\"* first|strong=\"H7218\"* year|strong=\"H8141\"* of|strong=\"H4428\"* his|strong=\"H5375\"* reign|strong=\"H4438\"*, lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H5375\"* head|strong=\"H7218\"* of|strong=\"H4428\"* Jehoiachin|strong=\"H3078\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* released|strong=\"H3318\"* him|strong=\"H3318\"* from|strong=\"H3318\"* prison|strong=\"H1004\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H5414\"* spoke|strong=\"H1696\"* kindly|strong=\"H2896\"* to|strong=\"H1696\"* him|strong=\"H5414\"*, and|strong=\"H4428\"* set|strong=\"H5414\"* his|strong=\"H5414\"* throne|strong=\"H3678\"* above|strong=\"H4605\"* the|strong=\"H5414\"* throne|strong=\"H3678\"* of|strong=\"H4428\"* the|strong=\"H5414\"* kings|strong=\"H4428\"* who|strong=\"H4428\"* were|strong=\"H4428\"* with|strong=\"H1696\"* him|strong=\"H5414\"* in|strong=\"H4428\"* Babylon," + }, + { + "verseNum": 33, + "text": "and|strong=\"H3117\"* changed|strong=\"H8138\"* his|strong=\"H3605\"* prison|strong=\"H3608\"* garments. Jehoiachin|strong=\"H8138\"* ate bread|strong=\"H3899\"* before|strong=\"H6440\"* him|strong=\"H6440\"* continually|strong=\"H8548\"* all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 34, + "text": "For|strong=\"H5704\"* his|strong=\"H3605\"* allowance, there|strong=\"H3117\"* was|strong=\"H1697\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* allowance given|strong=\"H5414\"* him|strong=\"H5414\"* by|strong=\"H3117\"* the|strong=\"H3605\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, every|strong=\"H3605\"* day|strong=\"H3117\"* a|strong=\"H3068\"* portion|strong=\"H1697\"* until|strong=\"H5704\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* death|strong=\"H4194\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + } + ] + } + ] + }, + { + "name": "Lamentations", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "How the|strong=\"H1961\"* city|strong=\"H5892\"* sits|strong=\"H3427\"* solitary," + }, + { + "verseNum": 2, + "text": "She|strong=\"H5921\"* weeps|strong=\"H1058\"* bitterly|strong=\"H1058\"* in|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 3, + "text": "Judah|strong=\"H3063\"* has|strong=\"H3063\"* gone|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* because|strong=\"H7230\"* of|strong=\"H3427\"* affliction|strong=\"H6040\"*" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* roads|strong=\"H1870\"* to|strong=\"H1870\"* Zion|strong=\"H6726\"* mourn," + }, + { + "verseNum": 5, + "text": "Her|strong=\"H5921\"* adversaries|strong=\"H6862\"* have|strong=\"H1961\"* become|strong=\"H1961\"* the|strong=\"H6440\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* majesty|strong=\"H1926\"* has|strong=\"H1961\"* departed|strong=\"H3212\"* from|strong=\"H4480\"* the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion." + }, + { + "verseNum": 7, + "text": "Jerusalem|strong=\"H3389\"* remembers|strong=\"H2142\"* in|strong=\"H5921\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* affliction|strong=\"H6040\"* and|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H3605\"* miseries|strong=\"H4788\"*" + }, + { + "verseNum": 8, + "text": "Jerusalem|strong=\"H3389\"* has|strong=\"H1961\"* grievously|strong=\"H2399\"* sinned|strong=\"H2398\"*." + }, + { + "verseNum": 9, + "text": "Her|strong=\"H7200\"* filthiness|strong=\"H2932\"* was|strong=\"H3068\"* in|strong=\"H3068\"* her|strong=\"H7200\"* skirts|strong=\"H7757\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* adversary|strong=\"H6862\"* has|strong=\"H3588\"* spread|strong=\"H6566\"* out|strong=\"H6566\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* all|strong=\"H3605\"* her|strong=\"H3605\"* pleasant|strong=\"H4261\"* things|strong=\"H3605\"*;" + }, + { + "verseNum": 11, + "text": "All|strong=\"H3605\"* her|strong=\"H3605\"* people|strong=\"H5971\"* sigh." + }, + { + "verseNum": 12, + "text": "“Is|strong=\"H3068\"* it|strong=\"H7200\"* nothing|strong=\"H3808\"* to|strong=\"H3068\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*?" + }, + { + "verseNum": 13, + "text": "“From|strong=\"H7725\"* on|strong=\"H3117\"* high|strong=\"H4791\"* has|strong=\"H3117\"* he|strong=\"H3117\"* sent|strong=\"H7971\"* fire into|strong=\"H7725\"* my|strong=\"H5414\"* bones|strong=\"H6106\"*," + }, + { + "verseNum": 14, + "text": "“The|strong=\"H5921\"* yoke|strong=\"H5923\"* of|strong=\"H3027\"* my|strong=\"H5414\"* transgressions|strong=\"H6588\"* is|strong=\"H3027\"* bound|strong=\"H8244\"* by|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3605\"* Lord has|strong=\"H3063\"* set|strong=\"H1869\"* at|strong=\"H5921\"* nothing|strong=\"H3605\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mighty men|strong=\"H3605\"* within|strong=\"H7130\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "“For|strong=\"H3588\"* these things|strong=\"H1961\"* I|strong=\"H3588\"* weep|strong=\"H1058\"*." + }, + { + "verseNum": 17, + "text": "Zion|strong=\"H6726\"* spreads|strong=\"H6566\"* out|strong=\"H6566\"* her|strong=\"H5439\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "“Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"*," + }, + { + "verseNum": 19, + "text": "“I|strong=\"H3588\"* called|strong=\"H7121\"* for|strong=\"H3588\"* my|strong=\"H1245\"* lovers," + }, + { + "verseNum": 20, + "text": "“Look|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* in|strong=\"H3068\"* distress|strong=\"H6862\"*." + }, + { + "verseNum": 21, + "text": "“They|strong=\"H3588\"* have|strong=\"H1961\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* I|strong=\"H3588\"* sigh." + }, + { + "verseNum": 22, + "text": "“Let all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"* come before|strong=\"H6440\"* you|strong=\"H3588\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "How|strong=\"H2142\"* has|strong=\"H3478\"* the|strong=\"H3117\"* Lord|strong=\"H5743\"* covered|strong=\"H5743\"* the|strong=\"H3117\"* daughter|strong=\"H1323\"* of|strong=\"H3117\"* Zion|strong=\"H6726\"* with|strong=\"H3117\"* a|strong=\"H3068\"* cloud|strong=\"H5743\"* in|strong=\"H3478\"* his|strong=\"H3478\"* anger!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* Lord has|strong=\"H3063\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"* all|strong=\"H3605\"* the|strong=\"H3605\"* dwellings of|strong=\"H1323\"* Jacob|strong=\"H3290\"*" + }, + { + "verseNum": 3, + "text": "He|strong=\"H3605\"* has|strong=\"H3478\"* cut|strong=\"H1438\"* off|strong=\"H1438\"* all|strong=\"H3605\"* the|strong=\"H3605\"* horn|strong=\"H7161\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* fierce|strong=\"H2750\"* anger|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* has|strong=\"H5869\"* bent|strong=\"H1869\"* his|strong=\"H3605\"* bow|strong=\"H7198\"* like|strong=\"H8210\"* an|strong=\"H2026\"* enemy|strong=\"H6862\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* Lord has|strong=\"H1961\"* become|strong=\"H1961\"* as|strong=\"H1961\"* an|strong=\"H1961\"* enemy." + }, + { + "verseNum": 6, + "text": "He|strong=\"H3068\"* has|strong=\"H3068\"* violently|strong=\"H2554\"* taken away|strong=\"H2554\"* his|strong=\"H3068\"* tabernacle|strong=\"H7900\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* Lord|strong=\"H3068\"* has|strong=\"H3068\"* cast|strong=\"H5414\"* off|strong=\"H2186\"* his|strong=\"H5414\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* purposed|strong=\"H2803\"* to|strong=\"H7725\"* destroy|strong=\"H7843\"* the|strong=\"H3068\"* wall|strong=\"H2346\"* of|strong=\"H3068\"* the|strong=\"H3068\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*." + }, + { + "verseNum": 9, + "text": "Her|strong=\"H4672\"* gates|strong=\"H8179\"* have|strong=\"H3068\"* sunk|strong=\"H2883\"* into the|strong=\"H3068\"* ground." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* elders|strong=\"H2205\"* of|strong=\"H1323\"* the|strong=\"H5921\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H5921\"* ground|strong=\"H6083\"*." + }, + { + "verseNum": 11, + "text": "My|strong=\"H5921\"* eyes|strong=\"H5869\"* fail|strong=\"H3615\"* with|strong=\"H5921\"* tears|strong=\"H1832\"*." + }, + { + "verseNum": 12, + "text": "They|strong=\"H5315\"* ask their|strong=\"H8210\"* mothers," + }, + { + "verseNum": 13, + "text": "What|strong=\"H4100\"* shall|strong=\"H1323\"* I|strong=\"H3588\"* testify|strong=\"H5749\"* to|strong=\"H3389\"* you|strong=\"H3588\"*?" + }, + { + "verseNum": 14, + "text": "Your|strong=\"H5921\"* prophets|strong=\"H5030\"* have|strong=\"H5030\"* seen|strong=\"H2372\"* false|strong=\"H7723\"* and|strong=\"H7725\"* foolish|strong=\"H8602\"* visions|strong=\"H7723\"* for|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "All|strong=\"H3605\"* that|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* clap|strong=\"H5606\"* their|strong=\"H3605\"* hands|strong=\"H3709\"* at|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* enemies have|strong=\"H4672\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* against|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* done|strong=\"H6213\"* that|strong=\"H3117\"* which|strong=\"H3068\"* he|strong=\"H3117\"* planned|strong=\"H2161\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5414\"* heart|strong=\"H3820\"* cried|strong=\"H6817\"* to|strong=\"H3381\"* the|strong=\"H5414\"* Lord." + }, + { + "verseNum": 19, + "text": "Arise|strong=\"H6965\"*, cry|strong=\"H7442\"* out|strong=\"H8210\"* in|strong=\"H5921\"* the|strong=\"H3605\"* night|strong=\"H3915\"*," + }, + { + "verseNum": 20, + "text": "“Look|strong=\"H7200\"*, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* see|strong=\"H7200\"* to|strong=\"H3068\"* whom|strong=\"H4310\"* you|strong=\"H7200\"* have|strong=\"H3068\"* done|strong=\"H5953\"* thus|strong=\"H3541\"*!" + }, + { + "verseNum": 21, + "text": "“The|strong=\"H3117\"* youth|strong=\"H5288\"* and|strong=\"H3117\"* the|strong=\"H3117\"* old|strong=\"H2205\"* man|strong=\"H5288\"* lie|strong=\"H7901\"* on|strong=\"H3117\"* the|strong=\"H3117\"* ground in|strong=\"H3117\"* the|strong=\"H3117\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H3117\"* have|strong=\"H1961\"* called|strong=\"H7121\"*, as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* a|strong=\"H3068\"* solemn|strong=\"H4150\"* assembly|strong=\"H4150\"*, my|strong=\"H3068\"* terrors|strong=\"H4032\"* on|strong=\"H3117\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H7200\"* am the|strong=\"H7200\"* man|strong=\"H1397\"* who|strong=\"H1397\"* has seen|strong=\"H7200\"* affliction|strong=\"H6040\"*" + }, + { + "verseNum": 2, + "text": "He|strong=\"H3808\"* has led|strong=\"H3212\"* me|strong=\"H3808\"* and|strong=\"H3212\"* caused me|strong=\"H3808\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H3212\"* darkness|strong=\"H2822\"*," + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H7725\"* he|strong=\"H3117\"* turns|strong=\"H7725\"* his|strong=\"H3605\"* hand|strong=\"H3027\"* against|strong=\"H3027\"* me|strong=\"H7725\"*" + }, + { + "verseNum": 4, + "text": "He|strong=\"H5785\"* has|strong=\"H1320\"* made my|strong=\"H7665\"* flesh|strong=\"H1320\"* and|strong=\"H7665\"* my|strong=\"H7665\"* skin|strong=\"H5785\"* old|strong=\"H1086\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H5921\"* has built|strong=\"H1129\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H3427\"* has made me|strong=\"H4191\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* dark|strong=\"H4285\"* places|strong=\"H4285\"*," + }, + { + "verseNum": 7, + "text": "He|strong=\"H3808\"* has|strong=\"H3318\"* walled|strong=\"H1443\"* me|strong=\"H1157\"* about|strong=\"H1157\"*, so|strong=\"H3808\"* that|strong=\"H3808\"* I|strong=\"H3808\"* can|strong=\"H3808\"*’t go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "Yes|strong=\"H3588\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* cry|strong=\"H2199\"*, and|strong=\"H8605\"* call|strong=\"H7768\"* for|strong=\"H3588\"* help|strong=\"H7768\"*," + }, + { + "verseNum": 9, + "text": "He has walled|strong=\"H1443\"* up|strong=\"H1443\"* my|strong=\"H1443\"* ways|strong=\"H1870\"* with|strong=\"H1870\"* cut|strong=\"H1496\"* stone|strong=\"H1496\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* is|strong=\"H1931\"* to me as|strong=\"H4565\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* lying in|strong=\"H1931\"* wait," + }, + { + "verseNum": 11, + "text": "He|strong=\"H7760\"* has turned|strong=\"H5493\"* away|strong=\"H5493\"* my|strong=\"H7760\"* path|strong=\"H1870\"*," + }, + { + "verseNum": 12, + "text": "He has bent|strong=\"H1869\"* his|strong=\"H1869\"* bow|strong=\"H7198\"*," + }, + { + "verseNum": 13, + "text": "He|strong=\"H1121\"* has|strong=\"H1121\"* caused the|strong=\"H1121\"* shafts of|strong=\"H1121\"* his|strong=\"H1121\"* quiver to|strong=\"H1121\"* enter into my kidneys|strong=\"H3629\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3117\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* derision|strong=\"H7814\"* to|strong=\"H1961\"* all|strong=\"H3605\"* my|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "He has filled|strong=\"H7646\"* me|strong=\"H7301\"* with|strong=\"H7646\"* bitterness|strong=\"H4844\"*." + }, + { + "verseNum": 16, + "text": "He has also broken|strong=\"H1638\"* my|strong=\"H1638\"* teeth|strong=\"H8127\"* with|strong=\"H8127\"* gravel|strong=\"H2687\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5315\"* have|strong=\"H7965\"* removed|strong=\"H2186\"* my|strong=\"H2186\"* soul|strong=\"H5315\"* far|strong=\"H5315\"* away|strong=\"H2186\"* from|strong=\"H5315\"* peace|strong=\"H7965\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H3068\"* said, “My|strong=\"H3068\"* strength|strong=\"H5331\"* has|strong=\"H3068\"* perished," + }, + { + "verseNum": 19, + "text": "Remember|strong=\"H2142\"* my|strong=\"H2142\"* affliction|strong=\"H6040\"* and|strong=\"H6040\"* my|strong=\"H2142\"* misery|strong=\"H6040\"*," + }, + { + "verseNum": 20, + "text": "My|strong=\"H5921\"* soul|strong=\"H5315\"* still|strong=\"H2142\"* remembers|strong=\"H2142\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 21, + "text": "This|strong=\"H2063\"* I|strong=\"H5921\"* recall|strong=\"H7725\"* to|strong=\"H7725\"* my|strong=\"H5921\"* mind|strong=\"H3820\"*;" + }, + { + "verseNum": 22, + "text": "It|strong=\"H3588\"* is|strong=\"H3068\"* because|strong=\"H3588\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s loving kindnesses|strong=\"H2617\"* that|strong=\"H3588\"* we|strong=\"H3068\"* are|strong=\"H3068\"* not|strong=\"H3808\"* consumed|strong=\"H3615\"*," + }, + { + "verseNum": 23, + "text": "They|strong=\"H1242\"* are|strong=\"H7227\"* new|strong=\"H2319\"* every|strong=\"H1242\"* morning|strong=\"H1242\"*." + }, + { + "verseNum": 24, + "text": "“Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* my|strong=\"H3068\"* portion|strong=\"H2506\"*,” says my|strong=\"H3068\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 25, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* to|strong=\"H3068\"* those|strong=\"H5315\"* who|strong=\"H3068\"* wait|strong=\"H6960\"* for|strong=\"H3068\"* him|strong=\"H5315\"*," + }, + { + "verseNum": 26, + "text": "It|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"* that|strong=\"H3068\"* a|strong=\"H3068\"* man|strong=\"H2896\"* should|strong=\"H3068\"* hope|strong=\"H3175\"*" + }, + { + "verseNum": 27, + "text": "It|strong=\"H3588\"* is|strong=\"H2896\"* good|strong=\"H2896\"* for|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H1397\"* that|strong=\"H3588\"* he|strong=\"H3588\"* bear|strong=\"H5375\"* the|strong=\"H3588\"* yoke|strong=\"H5923\"* in|strong=\"H2896\"* his|strong=\"H5375\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 28, + "text": "Let him|strong=\"H5921\"* sit|strong=\"H3427\"* alone and|strong=\"H3427\"* keep|strong=\"H3427\"* silence|strong=\"H1826\"*," + }, + { + "verseNum": 29, + "text": "Let|strong=\"H5414\"* him|strong=\"H5414\"* put|strong=\"H5414\"* his|strong=\"H5414\"* mouth|strong=\"H6310\"* in|strong=\"H5414\"* the|strong=\"H5414\"* dust|strong=\"H6083\"*," + }, + { + "verseNum": 30, + "text": "Let|strong=\"H5414\"* him|strong=\"H5414\"* give|strong=\"H5414\"* his|strong=\"H5414\"* cheek|strong=\"H3895\"* to|strong=\"H5414\"* him|strong=\"H5414\"* who|strong=\"H5221\"* strikes|strong=\"H5221\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 31, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord will|strong=\"H3808\"* not|strong=\"H3808\"* cast|strong=\"H2186\"* off|strong=\"H2186\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* though|strong=\"H3588\"* he|strong=\"H3588\"* causes|strong=\"H3013\"* grief|strong=\"H3013\"*," + }, + { + "verseNum": 33, + "text": "For|strong=\"H3588\"* he|strong=\"H3588\"* does|strong=\"H3808\"* not|strong=\"H3808\"* afflict|strong=\"H6031\"* willingly|strong=\"H3820\"*," + }, + { + "verseNum": 34, + "text": "To|strong=\"H7272\"* crush|strong=\"H1792\"* under|strong=\"H8478\"* foot|strong=\"H7272\"* all|strong=\"H3605\"* the|strong=\"H3605\"* prisoners of|strong=\"H8478\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 35, + "text": "to|strong=\"H6440\"* turn|strong=\"H5186\"* away|strong=\"H5186\"* the|strong=\"H6440\"* right|strong=\"H4941\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H1397\"* before|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*," + }, + { + "verseNum": 36, + "text": "to|strong=\"H7200\"* subvert|strong=\"H5791\"* a|strong=\"H3068\"* man|strong=\"H7200\"* in|strong=\"H7200\"* his|strong=\"H7200\"* cause|strong=\"H7379\"*, the|strong=\"H7200\"* Lord doesn’t approve|strong=\"H7200\"*." + }, + { + "verseNum": 37, + "text": "Who|strong=\"H4310\"* is|strong=\"H2088\"* he|strong=\"H3808\"* who|strong=\"H4310\"* says, and|strong=\"H2088\"* it|strong=\"H1961\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*," + }, + { + "verseNum": 38, + "text": "Doesn’t evil|strong=\"H7451\"* and|strong=\"H2896\"* good|strong=\"H2896\"* come|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H6310\"* the|strong=\"H3318\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3318\"* Most|strong=\"H5945\"* High|strong=\"H5945\"*?" + }, + { + "verseNum": 39, + "text": "Why|strong=\"H4100\"* should|strong=\"H4100\"* a|strong=\"H3068\"* living|strong=\"H2416\"* man|strong=\"H1397\"* complain," + }, + { + "verseNum": 40, + "text": "Let|strong=\"H7725\"* us|strong=\"H7725\"* search|strong=\"H2713\"* and|strong=\"H3068\"* try|strong=\"H2713\"* our|strong=\"H3068\"* ways|strong=\"H1870\"*," + }, + { + "verseNum": 41, + "text": "Let’s lift|strong=\"H5375\"* up|strong=\"H5375\"* our|strong=\"H5375\"* heart|strong=\"H3824\"* with|strong=\"H8064\"* our|strong=\"H5375\"* hands|strong=\"H3709\"* to|strong=\"H3824\"* God|strong=\"H8064\"*+ 3:41 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* in|strong=\"H8064\"* the|strong=\"H5375\"* heavens|strong=\"H8064\"*." + }, + { + "verseNum": 42, + "text": "“We|strong=\"H5168\"* have|strong=\"H3808\"* transgressed|strong=\"H6586\"* and|strong=\"H6586\"* have|strong=\"H3808\"* rebelled|strong=\"H4784\"*." + }, + { + "verseNum": 43, + "text": "“You|strong=\"H3808\"* have|strong=\"H2550\"* covered|strong=\"H5526\"* us with|strong=\"H5526\"* anger and|strong=\"H2026\"* pursued|strong=\"H7291\"* us." + }, + { + "verseNum": 44, + "text": "You have covered|strong=\"H5526\"* yourself with|strong=\"H5674\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"*," + }, + { + "verseNum": 45, + "text": "You|strong=\"H7760\"* have|strong=\"H5971\"* made|strong=\"H7760\"* us|strong=\"H7760\"* an|strong=\"H7760\"* off-scouring and|strong=\"H5971\"* refuse|strong=\"H3973\"*" + }, + { + "verseNum": 46, + "text": "“All|strong=\"H3605\"* our|strong=\"H3605\"* enemies have|strong=\"H3605\"* opened|strong=\"H6475\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"* wide|strong=\"H6310\"* against|strong=\"H5921\"* us|strong=\"H5921\"*." + }, + { + "verseNum": 47, + "text": "Terror|strong=\"H6343\"* and|strong=\"H1961\"* the|strong=\"H1961\"* pit|strong=\"H6354\"* have|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H1961\"* us|strong=\"H1961\"*," + }, + { + "verseNum": 48, + "text": "My|strong=\"H5921\"* eye|strong=\"H5869\"* runs down|strong=\"H3381\"* with|strong=\"H5921\"* streams|strong=\"H6388\"* of|strong=\"H1323\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 49, + "text": "My|strong=\"H3808\"* eye|strong=\"H5869\"* pours|strong=\"H5064\"* down|strong=\"H5064\"*" + }, + { + "verseNum": 50, + "text": "until|strong=\"H5704\"* Yahweh|strong=\"H3068\"* looks|strong=\"H7200\"* down|strong=\"H8259\"*," + }, + { + "verseNum": 51, + "text": "My|strong=\"H3605\"* eye|strong=\"H5869\"* affects my|strong=\"H3605\"* soul|strong=\"H5315\"*," + }, + { + "verseNum": 52, + "text": "They|strong=\"H2600\"* have chased|strong=\"H6679\"* me|strong=\"H6679\"* relentlessly like a|strong=\"H3068\"* bird|strong=\"H6833\"*," + }, + { + "verseNum": 53, + "text": "They have cut|strong=\"H6789\"* off|strong=\"H6789\"* my|strong=\"H3034\"* life|strong=\"H2416\"* in|strong=\"H3034\"* the|strong=\"H3034\"* dungeon," + }, + { + "verseNum": 54, + "text": "Waters|strong=\"H4325\"* flowed|strong=\"H6687\"* over|strong=\"H5921\"* my|strong=\"H5921\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 55, + "text": "I|strong=\"H3068\"* called|strong=\"H7121\"* on|strong=\"H3068\"* your|strong=\"H3068\"* name|strong=\"H8034\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 56, + "text": "You|strong=\"H6963\"* heard|strong=\"H8085\"* my|strong=\"H8085\"* voice|strong=\"H6963\"*:" + }, + { + "verseNum": 57, + "text": "You|strong=\"H3117\"* came|strong=\"H7126\"* near|strong=\"H7126\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* called|strong=\"H7121\"* on|strong=\"H3117\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 58, + "text": "Lord, you|strong=\"H5315\"* have|strong=\"H7378\"* pleaded|strong=\"H7378\"* the|strong=\"H7378\"* causes|strong=\"H7379\"* of|strong=\"H5315\"* my|strong=\"H7378\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 59, + "text": "Yahweh|strong=\"H3068\"*, you|strong=\"H7200\"* have|strong=\"H3068\"* seen|strong=\"H7200\"* my|strong=\"H3068\"* wrong|strong=\"H4941\"*." + }, + { + "verseNum": 60, + "text": "You|strong=\"H3605\"* have|strong=\"H7200\"* seen|strong=\"H7200\"* all|strong=\"H3605\"* their|strong=\"H3605\"* vengeance|strong=\"H5360\"*" + }, + { + "verseNum": 61, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* their|strong=\"H3605\"* reproach|strong=\"H2781\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 62, + "text": "the|strong=\"H3605\"* lips|strong=\"H8193\"* of|strong=\"H3117\"* those|strong=\"H3605\"* that|strong=\"H3605\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* me|strong=\"H5921\"*," + }, + { + "verseNum": 63, + "text": "You|strong=\"H3427\"* see|strong=\"H5027\"* their|strong=\"H3427\"* sitting|strong=\"H3427\"* down|strong=\"H3427\"* and|strong=\"H3427\"* their|strong=\"H3427\"* rising|strong=\"H7012\"* up|strong=\"H3427\"*." + }, + { + "verseNum": 64, + "text": "You|strong=\"H7725\"* will|strong=\"H3068\"* pay|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"*, Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 65, + "text": "You|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* hardness|strong=\"H4044\"* of|strong=\"H3820\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 66, + "text": "You|strong=\"H7291\"* will|strong=\"H3068\"* pursue|strong=\"H7291\"* them|strong=\"H7291\"* in|strong=\"H3068\"* anger," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "How the|strong=\"H3605\"* gold|strong=\"H2091\"* has|strong=\"H3605\"* become|strong=\"H2091\"* dim|strong=\"H6004\"*!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3027\"* precious|strong=\"H3368\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 3, + "text": "Even|strong=\"H1571\"* the|strong=\"H3588\"* jackals offer|strong=\"H2502\"* their|strong=\"H3588\"* breast|strong=\"H7699\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H7592\"* tongue|strong=\"H3956\"* of|strong=\"H3899\"* the|strong=\"H7592\"* nursing|strong=\"H3243\"* child|strong=\"H5768\"* clings|strong=\"H1692\"* to|strong=\"H3899\"* the|strong=\"H7592\"* roof|strong=\"H2441\"* of|strong=\"H3899\"* his|strong=\"H6566\"* mouth|strong=\"H2441\"* for|strong=\"H7592\"* thirst|strong=\"H6772\"*." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H5921\"* who ate delicacies|strong=\"H4574\"* are|strong=\"H8074\"* desolate|strong=\"H8074\"* in|strong=\"H5921\"* the|strong=\"H5921\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3027\"* the|strong=\"H3027\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* the|strong=\"H3027\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H3027\"* people|strong=\"H5971\"* is|strong=\"H3027\"* greater|strong=\"H1431\"* than|strong=\"H3808\"* the|strong=\"H3027\"* sin|strong=\"H2403\"* of|strong=\"H1323\"* Sodom|strong=\"H5467\"*," + }, + { + "verseNum": 7, + "text": "Her nobles were|strong=\"H5139\"* purer|strong=\"H2141\"* than|strong=\"H6106\"* snow|strong=\"H7950\"*." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H5921\"* appearance|strong=\"H8389\"* is|strong=\"H1961\"* blacker|strong=\"H2821\"* than|strong=\"H3808\"* a|strong=\"H3068\"* coal|strong=\"H7815\"*." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H1992\"* who|strong=\"H1992\"* are|strong=\"H1992\"* killed|strong=\"H2491\"* with|strong=\"H2100\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* are|strong=\"H1992\"* better|strong=\"H2896\"* than|strong=\"H2896\"* those|strong=\"H1992\"* who|strong=\"H1992\"* are|strong=\"H1992\"* killed|strong=\"H2491\"* with|strong=\"H2100\"* hunger|strong=\"H7458\"*;" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3027\"* hands|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H3027\"* pitiful|strong=\"H7362\"* women|strong=\"H1323\"* have|strong=\"H1961\"* boiled|strong=\"H1310\"* their|strong=\"H1961\"* own|strong=\"H1961\"* children|strong=\"H3206\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* accomplished|strong=\"H3615\"* his|strong=\"H3068\"* wrath|strong=\"H2534\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H3605\"* earth didn’t believe," + }, + { + "verseNum": 13, + "text": "It|strong=\"H7130\"* is|strong=\"H6662\"* because|strong=\"H5771\"* of|strong=\"H1818\"* the|strong=\"H3548\"* sins|strong=\"H2403\"* of|strong=\"H1818\"* her|strong=\"H7130\"* prophets|strong=\"H5030\"*" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3808\"* wander|strong=\"H5128\"* as|strong=\"H2351\"* blind|strong=\"H5787\"* men|strong=\"H5787\"* in|strong=\"H3808\"* the|strong=\"H5060\"* streets|strong=\"H2351\"*." + }, + { + "verseNum": 15, + "text": "“Go|strong=\"H5493\"* away|strong=\"H5493\"*!” they|strong=\"H3588\"* cried|strong=\"H7121\"* to|strong=\"H7121\"* them|strong=\"H7121\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"*’s anger|strong=\"H6440\"* has|strong=\"H3068\"* scattered|strong=\"H2505\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 17, + "text": "Our|strong=\"H3615\"* eyes|strong=\"H5869\"* still|strong=\"H1471\"* fail|strong=\"H3615\"*," + }, + { + "verseNum": 18, + "text": "They|strong=\"H3588\"* hunt|strong=\"H6679\"* our|strong=\"H3588\"* steps|strong=\"H6806\"*," + }, + { + "verseNum": 19, + "text": "Our|strong=\"H5921\"* pursuers|strong=\"H7291\"* were|strong=\"H1961\"* swifter|strong=\"H7031\"* than|strong=\"H5921\"* the|strong=\"H5921\"* eagles|strong=\"H5404\"* of|strong=\"H2022\"* the|strong=\"H5921\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3068\"* breath|strong=\"H7307\"* of|strong=\"H3068\"* our|strong=\"H3068\"* nostrils," + }, + { + "verseNum": 21, + "text": "Rejoice|strong=\"H7797\"* and|strong=\"H3427\"* be|strong=\"H1571\"* glad|strong=\"H7797\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Edom," + }, + { + "verseNum": 22, + "text": "The|strong=\"H5921\"* punishment|strong=\"H5771\"* of|strong=\"H1323\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* is|strong=\"H5771\"* accomplished|strong=\"H8552\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Remember|strong=\"H2142\"*, Yahweh|strong=\"H3068\"*, what|strong=\"H4100\"* has|strong=\"H3068\"* come|strong=\"H1961\"* on|strong=\"H7200\"* us|strong=\"H7200\"*." + }, + { + "verseNum": 2, + "text": "Our inheritance|strong=\"H5159\"* has|strong=\"H5159\"* been turned|strong=\"H2015\"* over|strong=\"H2015\"* to|strong=\"H1004\"* strangers|strong=\"H2114\"*," + }, + { + "verseNum": 3, + "text": "We are|strong=\"H1961\"* orphans|strong=\"H3490\"* and|strong=\"H1961\"* fatherless|strong=\"H3490\"*." + }, + { + "verseNum": 4, + "text": "We must pay|strong=\"H3701\"* for|strong=\"H6086\"* water|strong=\"H4325\"* to|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 5, + "text": "Our|strong=\"H5921\"* pursuers|strong=\"H7291\"* are|strong=\"H3808\"* on|strong=\"H5921\"* our|strong=\"H5921\"* necks|strong=\"H6677\"*." + }, + { + "verseNum": 6, + "text": "We have|strong=\"H7646\"* given|strong=\"H5414\"* our|strong=\"H5414\"* hands|strong=\"H3027\"* to|strong=\"H5414\"* the|strong=\"H5414\"* Egyptians|strong=\"H4713\"*," + }, + { + "verseNum": 7, + "text": "Our|strong=\"H5445\"* fathers sinned|strong=\"H2398\"*, and|strong=\"H2398\"* are|strong=\"H5771\"* no more." + }, + { + "verseNum": 8, + "text": "Servants|strong=\"H5650\"* rule|strong=\"H4910\"* over|strong=\"H3027\"* us|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "We|strong=\"H5315\"* get our|strong=\"H6440\"* bread|strong=\"H3899\"* at|strong=\"H6440\"* the|strong=\"H6440\"* peril of|strong=\"H6440\"* our|strong=\"H6440\"* lives|strong=\"H5315\"*," + }, + { + "verseNum": 10, + "text": "Our|strong=\"H6440\"* skin|strong=\"H5785\"* is|strong=\"H6440\"* black|strong=\"H3648\"* like|strong=\"H6440\"* an|strong=\"H6440\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3063\"* ravished|strong=\"H6031\"* the|strong=\"H3063\"* women|strong=\"H1330\"* in|strong=\"H5892\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 12, + "text": "Princes|strong=\"H8269\"* were|strong=\"H3027\"* hanged|strong=\"H8518\"* up|strong=\"H8518\"* by|strong=\"H3027\"* their|strong=\"H6440\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H5375\"* young|strong=\"H5288\"* men|strong=\"H5288\"* carry|strong=\"H5375\"* millstones." + }, + { + "verseNum": 14, + "text": "The|strong=\"H8179\"* elders|strong=\"H2205\"* have|strong=\"H8179\"* ceased|strong=\"H7673\"* from|strong=\"H7673\"* the|strong=\"H8179\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 15, + "text": "The|strong=\"H2015\"* joy|strong=\"H4885\"* of|strong=\"H3820\"* our|strong=\"H7673\"* heart|strong=\"H3820\"* has|strong=\"H3820\"* ceased|strong=\"H7673\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H3588\"* crown|strong=\"H5850\"* has|strong=\"H3588\"* fallen|strong=\"H5307\"* from|strong=\"H5307\"* our|strong=\"H3588\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H5921\"* this|strong=\"H2088\"* our|strong=\"H5921\"* heart|strong=\"H3820\"* is|strong=\"H2088\"* faint|strong=\"H1739\"*." + }, + { + "verseNum": 18, + "text": "for|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Zion|strong=\"H6726\"*, which|strong=\"H2022\"* is|strong=\"H6726\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H3427\"*, Yahweh|strong=\"H3068\"*, remain|strong=\"H3427\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 20, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3117\"* forget|strong=\"H7911\"* us|strong=\"H3117\"* forever|strong=\"H5331\"*," + }, + { + "verseNum": 21, + "text": "Turn|strong=\"H7725\"* us|strong=\"H7725\"* to|strong=\"H7725\"* yourself, Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* turned|strong=\"H7725\"*." + }, + { + "verseNum": 22, + "text": "But|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* utterly|strong=\"H3966\"* rejected|strong=\"H3988\"* us|strong=\"H5921\"*." + } + ] + } + ] + }, + { + "name": "Ezekiel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H5921\"* thirtieth|strong=\"H7970\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourth|strong=\"H7243\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* was|strong=\"H1961\"* among|strong=\"H8432\"* the|strong=\"H5921\"* captives|strong=\"H1473\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, the|strong=\"H5921\"* heavens|strong=\"H8064\"* were|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H8064\"* I|strong=\"H5921\"* saw|strong=\"H7200\"* visions|strong=\"H4759\"* of|strong=\"H8141\"* God|strong=\"H8064\"*.+ 1:1 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + }, + { + "verseNum": 2, + "text": "In|strong=\"H8141\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* of|strong=\"H4428\"* the|strong=\"H8141\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* was|strong=\"H1931\"* the|strong=\"H8141\"* fifth|strong=\"H2549\"* year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Jehoiachin’s captivity|strong=\"H1546\"*," + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:3 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Ezekiel|strong=\"H3168\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Buzi, in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* by|strong=\"H3027\"* the|strong=\"H5921\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* there|strong=\"H8033\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H1419\"* behold|strong=\"H2009\"*,+ 1:4 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* came|strong=\"H7307\"* out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* north|strong=\"H6828\"*: a|strong=\"H3068\"* great|strong=\"H1419\"* cloud|strong=\"H6051\"*, with|strong=\"H5869\"* flashing|strong=\"H3947\"* lightning, and|strong=\"H1419\"* a|strong=\"H3068\"* brightness|strong=\"H5051\"* around|strong=\"H5439\"* it|strong=\"H8432\"*, and|strong=\"H1419\"* out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H7307\"* it|strong=\"H8432\"* as|strong=\"H5869\"* it|strong=\"H8432\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*, out|strong=\"H4480\"* of|strong=\"H7307\"* the|strong=\"H7200\"* middle|strong=\"H8432\"* of|strong=\"H7307\"* the|strong=\"H7200\"* fire." + }, + { + "verseNum": 5, + "text": "Out|strong=\"H8432\"* of|strong=\"H8432\"* its center|strong=\"H8432\"* came the|strong=\"H8432\"* likeness|strong=\"H1823\"* of|strong=\"H8432\"* four living|strong=\"H2416\"* creatures|strong=\"H2416\"*. This|strong=\"H2088\"* was|strong=\"H2088\"* their|strong=\"H8432\"* appearance|strong=\"H4758\"*: They|strong=\"H2007\"* had|strong=\"H2416\"* the|strong=\"H8432\"* likeness|strong=\"H1823\"* of|strong=\"H8432\"* a|strong=\"H3068\"* man|strong=\"H2088\"*." + }, + { + "verseNum": 6, + "text": "Everyone had four faces|strong=\"H6440\"*, and|strong=\"H6440\"* each|strong=\"H3671\"* one|strong=\"H3671\"* of|strong=\"H6440\"* them|strong=\"H6440\"* had four wings|strong=\"H3671\"*." + }, + { + "verseNum": 7, + "text": "Their|strong=\"H7272\"* feet|strong=\"H7272\"* were|strong=\"H5869\"* straight|strong=\"H3477\"* feet|strong=\"H7272\"*. The|strong=\"H5869\"* sole|strong=\"H3709\"* of|strong=\"H5869\"* their|strong=\"H7272\"* feet|strong=\"H7272\"* was|strong=\"H3477\"* like|strong=\"H7272\"* the|strong=\"H5869\"* sole|strong=\"H3709\"* of|strong=\"H5869\"* a|strong=\"H3068\"* calf|strong=\"H5695\"*’s foot|strong=\"H7272\"*; and|strong=\"H5869\"* they|strong=\"H7272\"* sparkled|strong=\"H5340\"* like|strong=\"H7272\"* burnished|strong=\"H7044\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* had|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H6440\"* under|strong=\"H8478\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* on|strong=\"H5921\"* their|strong=\"H6440\"* four sides|strong=\"H7253\"*. The|strong=\"H6440\"* four of|strong=\"H3027\"* them|strong=\"H5921\"* had|strong=\"H3027\"* their|strong=\"H6440\"* faces|strong=\"H6440\"* and|strong=\"H3027\"* their|strong=\"H6440\"* wings|strong=\"H3671\"* like|strong=\"H5921\"* this|strong=\"H6440\"*:" + }, + { + "verseNum": 9, + "text": "Their|strong=\"H6440\"* wings|strong=\"H3671\"* were|strong=\"H3671\"* joined|strong=\"H2266\"* to|strong=\"H3212\"* one|strong=\"H3808\"* another|strong=\"H3808\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5437\"* when they|strong=\"H3808\"* went|strong=\"H3212\"*. Each|strong=\"H3671\"* one|strong=\"H3808\"* went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "As|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, they|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* lion on|strong=\"H6440\"* the|strong=\"H6440\"* right|strong=\"H3225\"* side|strong=\"H3225\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* ox|strong=\"H7794\"* on|strong=\"H6440\"* the|strong=\"H6440\"* left|strong=\"H8040\"* side|strong=\"H3225\"*. The|strong=\"H6440\"* four of|strong=\"H6440\"* them|strong=\"H6440\"* also had|strong=\"H3225\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* eagle|strong=\"H5404\"*." + }, + { + "verseNum": 11, + "text": "Such were|strong=\"H8147\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*. Their|strong=\"H6440\"* wings|strong=\"H3671\"* were|strong=\"H8147\"* spread|strong=\"H3671\"* out|strong=\"H6440\"* above|strong=\"H4605\"*. Two|strong=\"H8147\"* wings|strong=\"H3671\"* of|strong=\"H6440\"* each|strong=\"H8147\"* one|strong=\"H3671\"* touched|strong=\"H2266\"* another|strong=\"H3671\"*, and|strong=\"H6440\"* two|strong=\"H8147\"* covered|strong=\"H3680\"* their|strong=\"H6440\"* bodies|strong=\"H1472\"*." + }, + { + "verseNum": 12, + "text": "Each one|strong=\"H3808\"* went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*. Where|strong=\"H8033\"* the|strong=\"H6440\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, they|strong=\"H8033\"* went|strong=\"H3212\"*. They|strong=\"H8033\"* didn’t turn|strong=\"H5437\"* when|strong=\"H1961\"* they|strong=\"H8033\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H3318\"* for|strong=\"H3318\"* the|strong=\"H4480\"* likeness|strong=\"H1823\"* of|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, their|strong=\"H3318\"* appearance|strong=\"H4758\"* was|strong=\"H1931\"* like|strong=\"H4758\"* burning|strong=\"H1197\"* coals|strong=\"H1513\"* of|strong=\"H4480\"* fire|strong=\"H1513\"*, like|strong=\"H4758\"* the|strong=\"H4480\"* appearance|strong=\"H4758\"* of|strong=\"H4480\"* torches|strong=\"H3940\"*. The|strong=\"H4480\"* fire|strong=\"H1513\"* went|strong=\"H1980\"* up|strong=\"H3318\"* and|strong=\"H1980\"* down|strong=\"H1980\"* among|strong=\"H4480\"* the|strong=\"H4480\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*. The|strong=\"H4480\"* fire|strong=\"H1513\"* was|strong=\"H1931\"* bright|strong=\"H5051\"*, and|strong=\"H1980\"* lightning|strong=\"H1300\"* went|strong=\"H1980\"* out|strong=\"H3318\"* of|strong=\"H4480\"* the|strong=\"H4480\"* fire|strong=\"H1513\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H7725\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* ran|strong=\"H7519\"* and|strong=\"H7725\"* returned|strong=\"H7725\"* as|strong=\"H7725\"* the|strong=\"H7725\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* flash of|strong=\"H4758\"* lightning." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H2009\"* as|strong=\"H6440\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* the|strong=\"H6440\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H6440\"* one|strong=\"H2416\"* wheel on|strong=\"H7200\"* the|strong=\"H6440\"* earth beside the|strong=\"H6440\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"*, for|strong=\"H6440\"* each of|strong=\"H6440\"* the|strong=\"H6440\"* four faces|strong=\"H6440\"* of|strong=\"H6440\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8432\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* the|strong=\"H8432\"* wheels and|strong=\"H5869\"* their|strong=\"H8432\"* work|strong=\"H4639\"* was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* beryl|strong=\"H8658\"*. The|strong=\"H8432\"* four of|strong=\"H5869\"* them|strong=\"H8432\"* had|strong=\"H1961\"* one|strong=\"H1961\"* likeness|strong=\"H1823\"*. Their|strong=\"H8432\"* appearance|strong=\"H4758\"* and|strong=\"H5869\"* their|strong=\"H8432\"* work|strong=\"H4639\"* was|strong=\"H1961\"* as|strong=\"H1961\"* it|strong=\"H8432\"* were|strong=\"H1961\"* a|strong=\"H3068\"* wheel within|strong=\"H8432\"* a|strong=\"H3068\"* wheel." + }, + { + "verseNum": 17, + "text": "When|strong=\"H5921\"* they|strong=\"H3808\"* went|strong=\"H3212\"*, they|strong=\"H3808\"* went|strong=\"H3212\"* in|strong=\"H5921\"* their|strong=\"H5921\"* four directions|strong=\"H7253\"*. They|strong=\"H3808\"* didn’t turn|strong=\"H5437\"* when|strong=\"H5921\"* they|strong=\"H3808\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 18, + "text": "As|strong=\"H5869\"* for|strong=\"H5869\"* their|strong=\"H1992\"* rims|strong=\"H1354\"*, they|strong=\"H1992\"* were|strong=\"H5869\"* high|strong=\"H1363\"* and|strong=\"H5869\"* dreadful|strong=\"H3374\"*; and|strong=\"H5869\"* the|strong=\"H5439\"* four of|strong=\"H5869\"* them|strong=\"H1992\"* had|strong=\"H5869\"* their|strong=\"H1992\"* rims|strong=\"H1354\"* full|strong=\"H4392\"* of|strong=\"H5869\"* eyes|strong=\"H5869\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H5375\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* went|strong=\"H3212\"*, the|strong=\"H5921\"* wheels went|strong=\"H3212\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*. When|strong=\"H5375\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*." + }, + { + "verseNum": 20, + "text": "Wherever|strong=\"H8033\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"*, they|strong=\"H3588\"* went|strong=\"H3212\"*. The|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* to|strong=\"H3212\"* go|strong=\"H3212\"* there|strong=\"H8033\"*. The|strong=\"H5921\"* wheels were|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 21, + "text": "When|strong=\"H3588\"* those|strong=\"H5921\"* went|strong=\"H3212\"*, these went|strong=\"H3212\"*. When|strong=\"H3588\"* those|strong=\"H5921\"* stood|strong=\"H5975\"*, these stood|strong=\"H5975\"*. When|strong=\"H3588\"* those|strong=\"H5921\"* were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels were|strong=\"H5921\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*; for|strong=\"H3588\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H7307\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wheels." + }, + { + "verseNum": 22, + "text": "Over|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* there was|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* an|strong=\"H7218\"* expanse|strong=\"H7549\"*, like|strong=\"H1823\"* an|strong=\"H7218\"* awesome|strong=\"H3372\"* crystal|strong=\"H7140\"* to|strong=\"H5921\"* look|strong=\"H5869\"* at|strong=\"H5921\"*, stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 23, + "text": "Under|strong=\"H8478\"* the|strong=\"H8478\"* expanse|strong=\"H7549\"*, their|strong=\"H3680\"* wings|strong=\"H3671\"* were|strong=\"H8147\"* straight|strong=\"H3477\"*, one|strong=\"H3671\"* toward the|strong=\"H8478\"* other|strong=\"H8147\"*. Each|strong=\"H8147\"* one|strong=\"H3671\"* had|strong=\"H2007\"* two|strong=\"H8147\"* which|strong=\"H3477\"* covered|strong=\"H3680\"* on|strong=\"H8478\"* this side|strong=\"H8147\"*, and|strong=\"H8147\"* each|strong=\"H8147\"* one|strong=\"H3671\"* had|strong=\"H2007\"* two|strong=\"H8147\"* which|strong=\"H3477\"* covered|strong=\"H3680\"* their|strong=\"H3680\"* bodies|strong=\"H1472\"* on|strong=\"H8478\"* that|strong=\"H7549\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 24, + "text": "When|strong=\"H8085\"* they|strong=\"H5975\"* went|strong=\"H3212\"*, I|strong=\"H8085\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* their|strong=\"H8085\"* wings|strong=\"H3671\"* like|strong=\"H7227\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*, like|strong=\"H7227\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* Almighty|strong=\"H7706\"*, a|strong=\"H3068\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* tumult|strong=\"H1999\"* like|strong=\"H7227\"* the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* an|strong=\"H8085\"* army|strong=\"H4264\"*. When|strong=\"H8085\"* they|strong=\"H5975\"* stood|strong=\"H5975\"*, they|strong=\"H5975\"* let|strong=\"H7503\"* down|strong=\"H7503\"* their|strong=\"H8085\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* voice|strong=\"H6963\"* above|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H1961\"* was|strong=\"H1961\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"*. When|strong=\"H1961\"* they|strong=\"H5921\"* stood|strong=\"H5975\"*, they|strong=\"H5921\"* let|strong=\"H7503\"* down|strong=\"H7503\"* their|strong=\"H5921\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 26, + "text": "Above|strong=\"H4605\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H7549\"* was|strong=\"H7218\"* over|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"* was|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*, as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* a|strong=\"H3068\"* sapphire|strong=\"H5601\"*+ 1:26 or, lapis lazuli* stone|strong=\"H5601\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* the|strong=\"H5921\"* throne|strong=\"H3678\"* was|strong=\"H7218\"* a|strong=\"H3068\"* likeness|strong=\"H1823\"* as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* a|strong=\"H3068\"* man|strong=\"H7218\"* on|strong=\"H5921\"* it|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*, as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* fire within|strong=\"H1004\"* it|strong=\"H7200\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H1004\"* upward|strong=\"H4605\"*; and|strong=\"H1004\"* from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H1004\"* downward|strong=\"H4295\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H1004\"* fire, and|strong=\"H1004\"* there|strong=\"H7200\"* was|strong=\"H1004\"* brightness|strong=\"H5051\"* around|strong=\"H5439\"* him|strong=\"H7200\"*." + }, + { + "verseNum": 28, + "text": "As|strong=\"H3117\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H3068\"* the|strong=\"H6440\"* rainbow|strong=\"H7198\"* that|strong=\"H7200\"* is|strong=\"H3068\"* in|strong=\"H5921\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* rain|strong=\"H1653\"*, so|strong=\"H3651\"* was|strong=\"H3068\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H3068\"* the|strong=\"H6440\"* brightness|strong=\"H5051\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H5921\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, stand|strong=\"H5975\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*, and|strong=\"H1121\"* I|strong=\"H5921\"* will|strong=\"H1121\"* speak|strong=\"H1696\"* with|strong=\"H1696\"* you|strong=\"H5921\"*.”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* entered|strong=\"H5975\"* into|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H8085\"* he|strong=\"H5921\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, and|strong=\"H8085\"* set|strong=\"H5975\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H8085\"* feet|strong=\"H7272\"*; and|strong=\"H8085\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* him|strong=\"H5921\"* who|strong=\"H5975\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H3117\"* said to|strong=\"H5704\"* me|strong=\"H7971\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H3117\"* send|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H5704\"* the|strong=\"H3117\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, to|strong=\"H5704\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* of|strong=\"H1121\"* rebels|strong=\"H4775\"* who|strong=\"H1121\"* have|strong=\"H1121\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* me|strong=\"H7971\"*. They|strong=\"H1992\"* and|strong=\"H1121\"* their|strong=\"H1992\"* fathers have|strong=\"H1121\"* transgressed|strong=\"H6586\"* against|strong=\"H4775\"* me|strong=\"H7971\"* even|strong=\"H5704\"* to|strong=\"H5704\"* this|strong=\"H2088\"* very|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* children|strong=\"H1121\"* are|strong=\"H1121\"* impudent|strong=\"H7186\"* and|strong=\"H1121\"* stiff-hearted. I|strong=\"H3541\"* am sending|strong=\"H7971\"* you|strong=\"H6440\"* to|strong=\"H7971\"* them|strong=\"H7971\"*, and|strong=\"H1121\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* tell them|strong=\"H7971\"*, ‘This|strong=\"H3541\"* is|strong=\"H3820\"* what|strong=\"H3541\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"*+ 2:4 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*.’" + }, + { + "verseNum": 5, + "text": "They|strong=\"H1992\"*, whether|strong=\"H3045\"* they|strong=\"H1992\"* will|strong=\"H1961\"* hear|strong=\"H8085\"*, or|strong=\"H8085\"* whether|strong=\"H3045\"* they|strong=\"H1992\"* will|strong=\"H1961\"* refuse|strong=\"H3588\"*—for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*—yet|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* there|strong=\"H1961\"* has|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* among|strong=\"H8432\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3588\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* them|strong=\"H1992\"*, neither be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* their|strong=\"H6440\"* words|strong=\"H1697\"*, though|strong=\"H3588\"* briers|strong=\"H5621\"* and|strong=\"H1121\"* thorns|strong=\"H5544\"* are|strong=\"H1992\"* with|strong=\"H1004\"* you|strong=\"H3588\"*, and|strong=\"H1121\"* you|strong=\"H3588\"* dwell|strong=\"H3427\"* among|strong=\"H3427\"* scorpions|strong=\"H6137\"*. Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"* of|strong=\"H1121\"* their|strong=\"H6440\"* words|strong=\"H1697\"*, nor|strong=\"H1121\"* be|strong=\"H1697\"* dismayed|strong=\"H2865\"* at|strong=\"H3427\"* their|strong=\"H6440\"* looks|strong=\"H6440\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H3588\"* shall|strong=\"H1697\"* speak|strong=\"H1696\"* my|strong=\"H8085\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, whether they|strong=\"H1992\"* will|strong=\"H1697\"* hear|strong=\"H8085\"* or|strong=\"H8085\"* whether they|strong=\"H1992\"* will|strong=\"H1697\"* refuse|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* most rebellious|strong=\"H4805\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1961\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, hear|strong=\"H8085\"* what|strong=\"H6310\"* I|strong=\"H5414\"* tell|strong=\"H1696\"* you|strong=\"H5414\"*. Don’t be|strong=\"H1961\"* rebellious|strong=\"H4805\"* like|strong=\"H1961\"* that|strong=\"H8085\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*. Open|strong=\"H6475\"* your|strong=\"H5414\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* eat|strong=\"H6310\"* that|strong=\"H8085\"* which|strong=\"H1004\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"*.”" + }, + { + "verseNum": 9, + "text": "When|strong=\"H7200\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* hand|strong=\"H3027\"* was|strong=\"H3027\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* to|strong=\"H7971\"* me|strong=\"H7971\"*; and|strong=\"H7971\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* scroll|strong=\"H5612\"* of|strong=\"H3027\"* a|strong=\"H3068\"* book|strong=\"H5612\"* was|strong=\"H3027\"* in|strong=\"H3027\"* it|strong=\"H7200\"*." + }, + { + "verseNum": 10, + "text": "He|strong=\"H1931\"* spread|strong=\"H6566\"* it|strong=\"H1931\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. It|strong=\"H1931\"* was|strong=\"H1931\"* written|strong=\"H3789\"* within|strong=\"H6440\"* and|strong=\"H6440\"* without|strong=\"H6440\"*; and|strong=\"H6440\"* lamentations|strong=\"H7015\"*, mourning|strong=\"H1899\"*, and|strong=\"H6440\"* woe|strong=\"H1958\"* were|strong=\"H6440\"* written|strong=\"H3789\"* in|strong=\"H3789\"* it|strong=\"H1931\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat what|strong=\"H2063\"* you|strong=\"H4672\"* find|strong=\"H4672\"*. Eat this|strong=\"H2063\"* scroll|strong=\"H4039\"*, and|strong=\"H1121\"* go|strong=\"H3212\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 2, + "text": "So|strong=\"H2063\"* I opened|strong=\"H6605\"* my|strong=\"H6605\"* mouth|strong=\"H6310\"*, and|strong=\"H6310\"* he|strong=\"H6310\"* caused me to|strong=\"H6310\"* eat|strong=\"H6310\"* the|strong=\"H6605\"* scroll|strong=\"H4039\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H5414\"* said|strong=\"H6310\"* to|strong=\"H1961\"* me|strong=\"H5414\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat|strong=\"H6310\"* this|strong=\"H2063\"* scroll|strong=\"H4039\"* that|strong=\"H5414\"* I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* and|strong=\"H1121\"* fill|strong=\"H4390\"* your|strong=\"H5414\"* belly|strong=\"H4578\"* and|strong=\"H1121\"* your|strong=\"H5414\"* bowels|strong=\"H4578\"* with|strong=\"H4390\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 4, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, go|strong=\"H3212\"* to|strong=\"H1696\"* the|strong=\"H1697\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* my|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* them|strong=\"H1121\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* a|strong=\"H3068\"* people|strong=\"H5971\"* of|strong=\"H1004\"* a|strong=\"H3068\"* strange|strong=\"H6012\"* speech|strong=\"H8193\"* and|strong=\"H3478\"* of|strong=\"H1004\"* a|strong=\"H3068\"* hard|strong=\"H3515\"* language|strong=\"H3956\"*, but|strong=\"H3588\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*—" + }, + { + "verseNum": 6, + "text": "not|strong=\"H3808\"* to|strong=\"H7971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* of|strong=\"H1697\"* a|strong=\"H3068\"* strange|strong=\"H6012\"* speech|strong=\"H8193\"* and|strong=\"H7971\"* of|strong=\"H1697\"* a|strong=\"H3068\"* hard|strong=\"H3515\"* language|strong=\"H3956\"*, whose words|strong=\"H1697\"* you|strong=\"H7971\"* can|strong=\"H3808\"*’t understand|strong=\"H8085\"*. Surely|strong=\"H8085\"*, if I|strong=\"H1697\"* sent|strong=\"H7971\"* you|strong=\"H7971\"* to|strong=\"H7971\"* them|strong=\"H1992\"*, they|strong=\"H1992\"* would|strong=\"H5971\"* listen|strong=\"H8085\"* to|strong=\"H7971\"* you|strong=\"H7971\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3588\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H3808\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* are|strong=\"H1992\"* obstinate|strong=\"H7186\"*+ 3:7 Literally, have a hard forehead* and|strong=\"H3478\"* hard-hearted." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H5414\"* have|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H5414\"* face|strong=\"H6440\"* hard|strong=\"H2389\"* against|strong=\"H6440\"* their|strong=\"H5414\"* faces|strong=\"H6440\"*, and|strong=\"H6440\"* your|strong=\"H5414\"* forehead|strong=\"H4696\"* hard|strong=\"H2389\"* against|strong=\"H6440\"* their|strong=\"H5414\"* foreheads|strong=\"H4696\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* have|strong=\"H5414\"* made|strong=\"H5414\"* your|strong=\"H5414\"* forehead|strong=\"H4696\"* as|strong=\"H3588\"* a|strong=\"H3068\"* diamond|strong=\"H8068\"*, harder|strong=\"H2389\"* than|strong=\"H3808\"* flint|strong=\"H6864\"*. Don’t be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H1004\"* them|strong=\"H5414\"*, neither|strong=\"H3808\"* be|strong=\"H3808\"* dismayed|strong=\"H2865\"* at|strong=\"H1004\"* their|strong=\"H5414\"* looks|strong=\"H6440\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*.”" + }, + { + "verseNum": 10, + "text": "Moreover|strong=\"H1696\"* he|strong=\"H3605\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H3947\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, receive|strong=\"H3947\"* in|strong=\"H8085\"* your|strong=\"H3605\"* heart|strong=\"H3824\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1696\"* your|strong=\"H3605\"* ears all|strong=\"H3605\"* my|strong=\"H8085\"* words|strong=\"H1697\"* that|strong=\"H3605\"* I|strong=\"H1697\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 11, + "text": "Go|strong=\"H3212\"* to|strong=\"H1696\"* them|strong=\"H8085\"* of|strong=\"H1121\"* the|strong=\"H8085\"* captivity|strong=\"H1473\"*, to|strong=\"H1696\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H8085\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H8085\"*, ‘This|strong=\"H3541\"* is|strong=\"H1121\"* what|strong=\"H3541\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*,’ whether they|strong=\"H5971\"* will|strong=\"H5971\"* hear|strong=\"H8085\"*, or|strong=\"H8085\"* whether they|strong=\"H5971\"* will|strong=\"H5971\"* refuse|strong=\"H2308\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5375\"* the|strong=\"H8085\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H6963\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* I|strong=\"H8085\"* heard|strong=\"H8085\"* behind me|strong=\"H6963\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rushing|strong=\"H7494\"*, saying|strong=\"H6963\"*, “Blessed|strong=\"H1288\"* be|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* from|strong=\"H8085\"* his|strong=\"H5375\"* place|strong=\"H4725\"*.”" + }, + { + "verseNum": 13, + "text": "I|strong=\"H6963\"* heard|strong=\"H6963\"* the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5980\"* wings|strong=\"H3671\"* of|strong=\"H6963\"* the|strong=\"H5980\"* living|strong=\"H2416\"* creatures|strong=\"H2416\"* as|strong=\"H5980\"* they touched|strong=\"H5401\"* one|strong=\"H2416\"* another|strong=\"H3671\"*, and|strong=\"H1419\"* the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H5980\"* wheels beside|strong=\"H5980\"* them, even the|strong=\"H5980\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* a|strong=\"H3068\"* great|strong=\"H1419\"* rushing|strong=\"H7494\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3947\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H3068\"* took|strong=\"H3947\"* me|strong=\"H5921\"* away|strong=\"H3947\"*; and|strong=\"H3068\"* I|strong=\"H5921\"* went|strong=\"H3212\"* in|strong=\"H5921\"* bitterness|strong=\"H4751\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* heat|strong=\"H2534\"* of|strong=\"H3068\"* my|strong=\"H3068\"* spirit|strong=\"H7307\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* strong|strong=\"H2388\"* on|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H3117\"* I|strong=\"H3117\"* came to|strong=\"H3117\"* them|strong=\"H1992\"* of|strong=\"H3117\"* the|strong=\"H8432\"* captivity|strong=\"H1473\"* at|strong=\"H3427\"* Tel Aviv who|strong=\"H3427\"* lived|strong=\"H3427\"* by|strong=\"H3117\"* the|strong=\"H8432\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, and|strong=\"H3117\"* to|strong=\"H3117\"* where|strong=\"H8033\"* they|strong=\"H1992\"* lived|strong=\"H3427\"*; and|strong=\"H3117\"* I|strong=\"H3117\"* sat|strong=\"H3427\"* there|strong=\"H8033\"* overwhelmed among|strong=\"H8432\"* them|strong=\"H1992\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 16, + "text": "At|strong=\"H3068\"* the|strong=\"H3068\"* end|strong=\"H7097\"* of|strong=\"H3068\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 17, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* made|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"* to|strong=\"H3478\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Therefore hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* from|strong=\"H4480\"* my|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* warn|strong=\"H2094\"* them|strong=\"H5414\"* from|strong=\"H4480\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "When|strong=\"H2421\"* I|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*, ‘You|strong=\"H3808\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*;’ and|strong=\"H3027\"* you|strong=\"H3808\"* give|strong=\"H1696\"* him|strong=\"H3027\"* no|strong=\"H3808\"* warning|strong=\"H2094\"*, nor|strong=\"H3808\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* warn|strong=\"H2094\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"* from|strong=\"H3027\"* his|strong=\"H3027\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, to|strong=\"H1696\"* save|strong=\"H2421\"* his|strong=\"H3027\"* life|strong=\"H2421\"*, that|strong=\"H1931\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* will|strong=\"H7563\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3027\"* iniquity|strong=\"H5771\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H7563\"* require|strong=\"H1245\"* his|strong=\"H3027\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H1245\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* doesn’t turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7562\"*, nor|strong=\"H3808\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, he|strong=\"H1931\"* will|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H7725\"* iniquity|strong=\"H5771\"*; but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7563\"* delivered|strong=\"H5337\"* your|strong=\"H7725\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 20, + "text": "“Again|strong=\"H7725\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H5414\"* righteousness|strong=\"H6666\"* and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* I|strong=\"H3588\"* lay|strong=\"H5414\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* before|strong=\"H6440\"* him|strong=\"H5414\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"*. Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3027\"* not|strong=\"H3808\"* given|strong=\"H5414\"* him|strong=\"H5414\"* warning|strong=\"H2094\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"* in|strong=\"H6213\"* his|strong=\"H5414\"* sin|strong=\"H2403\"*, and|strong=\"H7725\"* his|strong=\"H5414\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* which|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H3588\"* done|strong=\"H6213\"* will|strong=\"H6662\"* not|strong=\"H3808\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H6662\"* require|strong=\"H1245\"* his|strong=\"H5414\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 21, + "text": "Nevertheless|strong=\"H3588\"* if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"*, that|strong=\"H3588\"* the|strong=\"H3588\"* righteous|strong=\"H6662\"* not|strong=\"H3808\"* sin|strong=\"H2398\"*, and|strong=\"H5315\"* he|strong=\"H1931\"* does|strong=\"H3808\"* not|strong=\"H3808\"* sin|strong=\"H2398\"*, he|strong=\"H1931\"* will|strong=\"H6662\"* surely|strong=\"H3588\"* live|strong=\"H2421\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* took|strong=\"H2094\"* warning|strong=\"H2094\"*; and|strong=\"H5315\"* you|strong=\"H3588\"* have|strong=\"H3588\"* delivered|strong=\"H5337\"* your|strong=\"H3588\"* soul|strong=\"H5315\"*.”" + }, + { + "verseNum": 22, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* there|strong=\"H8033\"* on|strong=\"H5921\"* me|strong=\"H5921\"*; and|strong=\"H6965\"* he|strong=\"H8033\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Arise|strong=\"H6965\"*, go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5921\"* the|strong=\"H5921\"* plain|strong=\"H1237\"*, and|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3068\"* talk|strong=\"H1696\"* with|strong=\"H3068\"* you|strong=\"H5921\"* there|strong=\"H8033\"*.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H6965\"* I|strong=\"H2009\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H5307\"* the|strong=\"H6440\"* plain|strong=\"H1237\"*, and|strong=\"H6965\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* stood|strong=\"H5975\"* there|strong=\"H8033\"*, like|strong=\"H3318\"* the|strong=\"H6440\"* glory|strong=\"H3519\"* which|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* by|strong=\"H5921\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*. Then|strong=\"H6965\"* I|strong=\"H2009\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H3068\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1696\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* entered|strong=\"H5975\"* into|strong=\"H8432\"* me|strong=\"H5921\"* and|strong=\"H1004\"* set|strong=\"H5975\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* feet|strong=\"H7272\"*. He|strong=\"H1004\"* spoke|strong=\"H1696\"* with|strong=\"H1004\"* me|strong=\"H5921\"*, and|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H5921\"*, “Go|strong=\"H7272\"*, shut|strong=\"H5462\"* yourself|strong=\"H7272\"* inside|strong=\"H8432\"* your|strong=\"H5921\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 25, + "text": "But|strong=\"H3808\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2009\"*, they|strong=\"H3808\"* will|strong=\"H1121\"* put|strong=\"H5414\"* ropes|strong=\"H5688\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* will|strong=\"H1121\"* bind you|strong=\"H5414\"* with|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H1121\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H8432\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* make|strong=\"H3198\"* your|strong=\"H3588\"* tongue|strong=\"H3956\"* stick|strong=\"H1692\"* to|strong=\"H1961\"* the|strong=\"H3588\"* roof|strong=\"H2441\"* of|strong=\"H1004\"* your|strong=\"H3588\"* mouth|strong=\"H2441\"* so|strong=\"H1961\"* that|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* mute and|strong=\"H1004\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* able to|strong=\"H1961\"* correct|strong=\"H3198\"* them|strong=\"H1992\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 27, + "text": "But|strong=\"H3588\"* when|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* with|strong=\"H1004\"* you|strong=\"H3588\"*, I|strong=\"H3588\"* will|strong=\"H1004\"* open|strong=\"H6605\"* your|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1004\"* you|strong=\"H3588\"* shall|strong=\"H1004\"* tell|strong=\"H1696\"* them|strong=\"H1992\"*, ‘This|strong=\"H3541\"* is|strong=\"H6310\"* what|strong=\"H3541\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*.’ He|strong=\"H3588\"* who|strong=\"H1992\"* hears|strong=\"H8085\"*, let|strong=\"H2308\"* him|strong=\"H8085\"* hear|strong=\"H8085\"*; and|strong=\"H1004\"* he|strong=\"H3588\"* who|strong=\"H1992\"* refuses|strong=\"H2310\"*, let|strong=\"H2308\"* him|strong=\"H8085\"* refuse|strong=\"H3588\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5414\"* also|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* a|strong=\"H3068\"* tile|strong=\"H3843\"*, and|strong=\"H1121\"* lay|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* yourself|strong=\"H5921\"*, and|strong=\"H1121\"* portray on|strong=\"H5921\"* it|strong=\"H5414\"* a|strong=\"H3068\"* city|strong=\"H5892\"*, even|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Lay|strong=\"H5414\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, build|strong=\"H1129\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* it|strong=\"H5414\"*, and|strong=\"H4264\"* cast|strong=\"H8210\"* up|strong=\"H5414\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* it|strong=\"H5414\"*. Also set|strong=\"H7760\"* camps|strong=\"H4264\"* against|strong=\"H5921\"* it|strong=\"H5414\"* and|strong=\"H4264\"* plant|strong=\"H7760\"* battering|strong=\"H3733\"* rams|strong=\"H3733\"* against|strong=\"H5921\"* it|strong=\"H5414\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "Take|strong=\"H3947\"* for|strong=\"H5921\"* yourself|strong=\"H5921\"* an|strong=\"H1961\"* iron|strong=\"H1270\"* pan|strong=\"H4227\"* and|strong=\"H3478\"* set|strong=\"H5414\"* it|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* iron|strong=\"H1270\"* between|strong=\"H5921\"* you|strong=\"H5414\"* and|strong=\"H3478\"* the|strong=\"H6440\"* city|strong=\"H5892\"*. Then|strong=\"H1961\"* set|strong=\"H5414\"* your|strong=\"H5414\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* it|strong=\"H5414\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* besieged|strong=\"H6696\"*, and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* lay|strong=\"H5414\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* it|strong=\"H5414\"*. This|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign to|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "“Moreover lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5921\"* left|strong=\"H8042\"* side|strong=\"H6654\"*, and|strong=\"H3478\"* lay|strong=\"H7901\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* it|strong=\"H7760\"*. According|strong=\"H5921\"* to|strong=\"H3478\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H1004\"* the|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* it|strong=\"H7760\"*, you|strong=\"H5921\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H1004\"* I|strong=\"H3117\"* have|strong=\"H3478\"* appointed|strong=\"H5414\"* the|strong=\"H5414\"* years|strong=\"H8141\"* of|strong=\"H1004\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* be|strong=\"H3478\"* to|strong=\"H3478\"* you|strong=\"H5414\"* a|strong=\"H3068\"* number|strong=\"H4557\"* of|strong=\"H1004\"* days|strong=\"H3117\"*, even three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*. So|strong=\"H5414\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* the|strong=\"H5414\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 6, + "text": "“Again|strong=\"H8145\"*, when|strong=\"H3117\"* you|strong=\"H5414\"* have|strong=\"H3063\"* accomplished|strong=\"H3615\"* these|strong=\"H1004\"*, you|strong=\"H5414\"* shall|strong=\"H1004\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5414\"* right side|strong=\"H6654\"*, and|strong=\"H3063\"* shall|strong=\"H1004\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. I|strong=\"H3117\"* have|strong=\"H3063\"* appointed|strong=\"H5414\"* forty days|strong=\"H3117\"*, each|strong=\"H3117\"* day|strong=\"H3117\"* for|strong=\"H5921\"* a|strong=\"H3068\"* year|strong=\"H8141\"*, to|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 7, + "text": "You|strong=\"H6440\"* shall|strong=\"H6440\"* set|strong=\"H3559\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* siege|strong=\"H4692\"* of|strong=\"H6440\"* Jerusalem|strong=\"H3389\"*, with|strong=\"H5921\"* your|strong=\"H5921\"* arm|strong=\"H2220\"* uncovered|strong=\"H2834\"*; and|strong=\"H3389\"* you|strong=\"H6440\"* shall|strong=\"H6440\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, I|strong=\"H3117\"* put|strong=\"H5414\"* ropes|strong=\"H5688\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* turn|strong=\"H2015\"* yourself|strong=\"H5921\"* from|strong=\"H5921\"* one|strong=\"H3808\"* side|strong=\"H6654\"* to|strong=\"H5704\"* the|strong=\"H5921\"* other|strong=\"H6654\"*, until|strong=\"H5704\"* you|strong=\"H5414\"* have|strong=\"H3117\"* accomplished|strong=\"H3615\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H5414\"* siege|strong=\"H4692\"*." + }, + { + "verseNum": 9, + "text": "“Take|strong=\"H3947\"* for|strong=\"H5921\"* yourself|strong=\"H6213\"* also|strong=\"H6213\"* wheat|strong=\"H2406\"*, barley|strong=\"H8184\"*, beans|strong=\"H6321\"*, lentils|strong=\"H5742\"*, millet|strong=\"H1764\"*, and|strong=\"H3967\"* spelt|strong=\"H3698\"*, and|strong=\"H3967\"* put|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H5921\"* one|strong=\"H6213\"* vessel|strong=\"H3627\"*. Make|strong=\"H6213\"* bread|strong=\"H3899\"* of|strong=\"H3117\"* it|strong=\"H5414\"*. According|strong=\"H5921\"* to|strong=\"H6213\"* the|strong=\"H5921\"* number|strong=\"H4557\"* of|strong=\"H3117\"* the|strong=\"H5921\"* days|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5414\"* will|strong=\"H5414\"* lie|strong=\"H7901\"* on|strong=\"H5921\"* your|strong=\"H5414\"* side|strong=\"H6654\"*, even|strong=\"H6213\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*, you|strong=\"H5414\"* shall|strong=\"H3117\"* eat|strong=\"H3899\"* of|strong=\"H3117\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "Your|strong=\"H5704\"* food|strong=\"H3978\"* which|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* eat|strong=\"H3978\"* shall|strong=\"H3117\"* be|strong=\"H3117\"* by|strong=\"H3117\"* weight|strong=\"H4946\"*, twenty|strong=\"H6242\"* shekels|strong=\"H8255\"*+ 4:10 A shekel is about 10 grams or about 0.35 ounces.* a|strong=\"H3068\"* day|strong=\"H3117\"*. From|strong=\"H3117\"* time|strong=\"H6256\"* to|strong=\"H5704\"* time|strong=\"H6256\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* eat|strong=\"H3978\"* it|strong=\"H5704\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H5704\"* shall|strong=\"H4325\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* by|strong=\"H5704\"* measure|strong=\"H4884\"*, the|strong=\"H5704\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H4325\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*.+ 4:11 A hin is about 6.5 liters or 1.7 gallons.* From|strong=\"H5704\"* time|strong=\"H6256\"* to|strong=\"H5704\"* time|strong=\"H6256\"* you|strong=\"H5704\"* shall|strong=\"H4325\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H5869\"* shall|strong=\"H5869\"* eat it|strong=\"H1931\"* as|strong=\"H5869\"* barley|strong=\"H8184\"* cakes|strong=\"H5692\"*, and|strong=\"H5869\"* you|strong=\"H5869\"* shall|strong=\"H5869\"* bake|strong=\"H5746\"* it|strong=\"H1931\"* in|strong=\"H5869\"* their sight|strong=\"H5869\"* with|strong=\"H5869\"* dung|strong=\"H1561\"* that|strong=\"H1931\"* comes out|strong=\"H6627\"* of|strong=\"H5869\"* man.”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said, “Even|strong=\"H3068\"* thus|strong=\"H3602\"* will|strong=\"H3068\"* the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* eat|strong=\"H3899\"* their|strong=\"H3068\"* bread|strong=\"H3899\"* unclean|strong=\"H2931\"*, among|strong=\"H2931\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* I|strong=\"H1121\"* will|strong=\"H3068\"* drive|strong=\"H5080\"* them|strong=\"H1121\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H2009\"* I|strong=\"H5704\"* said|strong=\"H6310\"*, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Behold|strong=\"H2009\"*, my|strong=\"H2930\"* soul|strong=\"H5315\"* has|strong=\"H2009\"* not|strong=\"H3808\"* been|strong=\"H2930\"* polluted|strong=\"H2930\"*; for|strong=\"H5704\"* from|strong=\"H5315\"* my|strong=\"H2930\"* youth|strong=\"H5271\"* up|strong=\"H5704\"* even|strong=\"H5704\"* until|strong=\"H5704\"* now|strong=\"H6258\"* I|strong=\"H5704\"* have|strong=\"H6258\"* not|strong=\"H3808\"* eaten of|strong=\"H6310\"* that|strong=\"H5315\"* which|strong=\"H5038\"* dies|strong=\"H5038\"* of|strong=\"H6310\"* itself|strong=\"H5038\"*, or|strong=\"H3808\"* is|strong=\"H5315\"* torn|strong=\"H2966\"* of|strong=\"H6310\"* animals. No|strong=\"H3808\"* abominable|strong=\"H6292\"* meat|strong=\"H1320\"* has|strong=\"H2009\"* come into|strong=\"H5704\"* my|strong=\"H2930\"* mouth|strong=\"H6310\"*!”" + }, + { + "verseNum": 15, + "text": "Then|strong=\"H5414\"* he|strong=\"H6213\"* said to|strong=\"H6213\"* me|strong=\"H5414\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5414\"* have|strong=\"H7200\"* given|strong=\"H5414\"* you|strong=\"H5414\"* cow’s dung|strong=\"H1561\"* for|strong=\"H5921\"* man|strong=\"H7200\"*’s dung|strong=\"H1561\"*, and|strong=\"H3899\"* you|strong=\"H5414\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* your|strong=\"H5414\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* it|strong=\"H5414\"*.”" + }, + { + "verseNum": 16, + "text": "Moreover he|strong=\"H3389\"* said to|strong=\"H3389\"* me|strong=\"H3389\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* break|strong=\"H7665\"* the|strong=\"H7665\"* staff|strong=\"H4294\"* of|strong=\"H1121\"* bread|strong=\"H3899\"* in|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H3389\"* will|strong=\"H1121\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* by|strong=\"H4325\"* weight|strong=\"H4948\"*, and|strong=\"H1121\"* with|strong=\"H3389\"* fearfulness. They|strong=\"H3389\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* water|strong=\"H4325\"* by|strong=\"H4325\"* measure|strong=\"H4884\"*, and|strong=\"H1121\"* in|strong=\"H1121\"* dismay;" + }, + { + "verseNum": 17, + "text": "that|strong=\"H4616\"* they may|strong=\"H4325\"* lack|strong=\"H2637\"* bread|strong=\"H3899\"* and|strong=\"H3899\"* water|strong=\"H4325\"*, be|strong=\"H4325\"* dismayed one|strong=\"H8074\"* with|strong=\"H3899\"* another, and|strong=\"H3899\"* pine away|strong=\"H4743\"* in|strong=\"H3899\"* their|strong=\"H8074\"* iniquity|strong=\"H5771\"*." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* a|strong=\"H3068\"* sharp|strong=\"H2299\"* sword|strong=\"H2719\"*. You|strong=\"H5921\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* it|strong=\"H5921\"* as|strong=\"H1121\"* a|strong=\"H3068\"* barber’s razor|strong=\"H8593\"* to|strong=\"H5921\"* yourself|strong=\"H5921\"*, and|strong=\"H1121\"* shall|strong=\"H1121\"* cause it|strong=\"H5921\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* over|strong=\"H5921\"* your|strong=\"H3947\"* head|strong=\"H7218\"* and|strong=\"H1121\"* over|strong=\"H5921\"* your|strong=\"H3947\"* beard|strong=\"H2206\"*. Then|strong=\"H3947\"* take|strong=\"H3947\"* balances|strong=\"H3976\"* to|strong=\"H5921\"* weigh|strong=\"H4948\"* and|strong=\"H1121\"* divide|strong=\"H2505\"* the|strong=\"H5921\"* hair|strong=\"H7218\"*." + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* burn|strong=\"H1197\"* in|strong=\"H3117\"* the|strong=\"H3947\"* fire in|strong=\"H3117\"* the|strong=\"H3947\"* middle|strong=\"H8432\"* of|strong=\"H3117\"* the|strong=\"H3947\"* city|strong=\"H5892\"*, when|strong=\"H3117\"* the|strong=\"H3947\"* days|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3947\"* siege|strong=\"H4692\"* are|strong=\"H3117\"* fulfilled|strong=\"H4390\"*. You|strong=\"H3117\"* shall|strong=\"H3117\"* take|strong=\"H3947\"* a|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"*, and|strong=\"H3117\"* strike|strong=\"H5221\"* with|strong=\"H4390\"* the|strong=\"H3947\"* sword|strong=\"H2719\"* around|strong=\"H5439\"* it|strong=\"H8432\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* scatter|strong=\"H2219\"* to|strong=\"H3117\"* the|strong=\"H3947\"* wind|strong=\"H7307\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* after|strong=\"H3117\"* them|strong=\"H5221\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H3947\"* shall|strong=\"H3671\"* take|strong=\"H3947\"* a|strong=\"H3068\"* small|strong=\"H4592\"* number|strong=\"H4557\"* of|strong=\"H4557\"* these|strong=\"H3947\"* and|strong=\"H8033\"* bind|strong=\"H6696\"* them|strong=\"H3947\"* in|strong=\"H8033\"* the|strong=\"H3947\"* folds of|strong=\"H4557\"* your|strong=\"H3947\"* robe." + }, + { + "verseNum": 4, + "text": "Of|strong=\"H1004\"* these|strong=\"H1992\"* again|strong=\"H5750\"* you|strong=\"H3605\"* shall|strong=\"H3478\"* take|strong=\"H3947\"*, and|strong=\"H3478\"* cast|strong=\"H7993\"* them|strong=\"H1992\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H3605\"* fire, and|strong=\"H3478\"* burn|strong=\"H8313\"* them|strong=\"H1992\"* in|strong=\"H3478\"* the|strong=\"H3605\"* fire. From|strong=\"H4480\"* it|strong=\"H8432\"* a|strong=\"H3068\"* fire will|strong=\"H3478\"* come|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H8432\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘This|strong=\"H2063\"* is|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*. I|strong=\"H3541\"* have|strong=\"H1471\"* set|strong=\"H7760\"* her|strong=\"H5439\"* in|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3069\"* nations|strong=\"H1471\"*, and|strong=\"H3389\"* countries are|strong=\"H1471\"* around|strong=\"H5439\"* her|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "She|strong=\"H3588\"* has|strong=\"H3588\"* rebelled|strong=\"H4784\"* against|strong=\"H4480\"* my|strong=\"H3588\"* ordinances|strong=\"H4941\"* in|strong=\"H1980\"* doing|strong=\"H4480\"* wickedness|strong=\"H7564\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*, and|strong=\"H1980\"* against|strong=\"H4480\"* my|strong=\"H3588\"* statutes|strong=\"H2708\"* more|strong=\"H4480\"* than|strong=\"H4480\"* the|strong=\"H3588\"* countries that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* her|strong=\"H5439\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1471\"* rejected|strong=\"H3988\"* my|strong=\"H3588\"* ordinances|strong=\"H4941\"*, and|strong=\"H1980\"* as|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H3588\"* statutes|strong=\"H2708\"*, they|strong=\"H3588\"* have|strong=\"H1471\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* them|strong=\"H5439\"*.’" + }, + { + "verseNum": 7, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H4480\"* you|strong=\"H6213\"* are|strong=\"H1471\"* more|strong=\"H4480\"* turbulent than|strong=\"H4480\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*, and|strong=\"H1980\"* have|strong=\"H1471\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H6213\"* statutes|strong=\"H2708\"*, neither|strong=\"H3808\"* have|strong=\"H1471\"* kept|strong=\"H6213\"* my|strong=\"H6213\"* ordinances|strong=\"H4941\"*, neither|strong=\"H3808\"* have|strong=\"H1471\"* followed|strong=\"H1980\"* the|strong=\"H3069\"* ordinances|strong=\"H4941\"* of|strong=\"H4480\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*;" + }, + { + "verseNum": 8, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"*, even|strong=\"H1571\"* I|strong=\"H2005\"*, am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*; and|strong=\"H4941\"* I|strong=\"H2005\"* will|strong=\"H1471\"* execute|strong=\"H6213\"* judgments|strong=\"H4941\"* among|strong=\"H8432\"* you|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3282\"* will|strong=\"H3808\"* do|strong=\"H6213\"* in|strong=\"H6213\"* you|strong=\"H3605\"* that|strong=\"H3605\"* which|strong=\"H3605\"* I|strong=\"H3282\"* have|strong=\"H3605\"* not|strong=\"H3808\"* done|strong=\"H6213\"*, and|strong=\"H6213\"* which|strong=\"H3605\"* I|strong=\"H3282\"* will|strong=\"H3808\"* not|strong=\"H3808\"* do|strong=\"H6213\"* anything|strong=\"H3605\"* like|strong=\"H3644\"* it|strong=\"H6213\"* any|strong=\"H3605\"* more|strong=\"H5750\"*, because|strong=\"H3282\"* of|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* fathers will|strong=\"H1121\"* eat the|strong=\"H3605\"* sons|strong=\"H1121\"* within|strong=\"H8432\"* you|strong=\"H3605\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* sons|strong=\"H1121\"* will|strong=\"H1121\"* eat their|strong=\"H3605\"* fathers. I|strong=\"H3651\"* will|strong=\"H1121\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H6213\"* you|strong=\"H3605\"*; and|strong=\"H1121\"* I|strong=\"H3651\"* will|strong=\"H1121\"* scatter|strong=\"H2219\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* you|strong=\"H3605\"* to|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* winds|strong=\"H7307\"*." + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* as|strong=\"H1571\"* I|strong=\"H3651\"* live|strong=\"H2416\"*,’ says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘surely|strong=\"H3651\"*, because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H5869\"* defiled|strong=\"H2930\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, and|strong=\"H5869\"* with|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*, therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1571\"* also|strong=\"H1571\"* diminish|strong=\"H1639\"* you|strong=\"H3605\"*. My|strong=\"H3605\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, and|strong=\"H5869\"* I|strong=\"H3651\"* will|strong=\"H1571\"* have|strong=\"H5869\"* no|strong=\"H3808\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 12, + "text": "A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H7307\"* you|strong=\"H3605\"* will|strong=\"H2719\"* die|strong=\"H4191\"* with|strong=\"H3605\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, and|strong=\"H2719\"* they|strong=\"H3605\"* will|strong=\"H2719\"* be|strong=\"H4191\"* consumed|strong=\"H3615\"* with|strong=\"H3605\"* famine|strong=\"H7458\"* within|strong=\"H8432\"* you|strong=\"H3605\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* around|strong=\"H5439\"* you|strong=\"H3605\"*. A|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* I|strong=\"H3605\"* will|strong=\"H2719\"* scatter|strong=\"H2219\"* to|strong=\"H4191\"* all|strong=\"H3605\"* the|strong=\"H3605\"* winds|strong=\"H7307\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* after|strong=\"H7992\"* them|strong=\"H5439\"*." + }, + { + "verseNum": 13, + "text": "“‘Thus my|strong=\"H3068\"* anger|strong=\"H2534\"* will|strong=\"H3068\"* be|strong=\"H3068\"* accomplished|strong=\"H3615\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause my|strong=\"H3068\"* wrath|strong=\"H2534\"* toward|strong=\"H3068\"* them|strong=\"H5117\"* to|strong=\"H1696\"* rest|strong=\"H5117\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* comforted|strong=\"H5162\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* in|strong=\"H3068\"* my|strong=\"H3068\"* zeal|strong=\"H7068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* accomplished|strong=\"H3615\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* on|strong=\"H5117\"* them|strong=\"H5117\"*." + }, + { + "verseNum": 14, + "text": "“‘Moreover I|strong=\"H5414\"* will|strong=\"H1471\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H2723\"* and|strong=\"H5869\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* among|strong=\"H2781\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H5414\"*, in|strong=\"H5414\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* that|strong=\"H3605\"* pass|strong=\"H5674\"* by|strong=\"H5674\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"H6213\"* it|strong=\"H6213\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* and|strong=\"H3068\"* a|strong=\"H3068\"* taunt|strong=\"H1422\"*, an|strong=\"H6213\"* instruction|strong=\"H4148\"* and|strong=\"H3068\"* an|strong=\"H6213\"* astonishment|strong=\"H4923\"*, to|strong=\"H1696\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H6213\"*, when|strong=\"H1961\"* I|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* you|strong=\"H6213\"* in|strong=\"H3068\"* anger|strong=\"H2534\"* and|strong=\"H3068\"* in|strong=\"H3068\"* wrath|strong=\"H2534\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* wrathful|strong=\"H2534\"* rebukes|strong=\"H8433\"*—I|strong=\"H3068\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*—" + }, + { + "verseNum": 16, + "text": "when|strong=\"H1961\"* I|strong=\"H5921\"* send|strong=\"H7971\"* on|strong=\"H5921\"* them|strong=\"H5921\"* the|strong=\"H5921\"* evil|strong=\"H7451\"* arrows|strong=\"H2671\"* of|strong=\"H4294\"* famine|strong=\"H7458\"* that|strong=\"H7451\"* are|strong=\"H2671\"* for|strong=\"H5921\"* destruction|strong=\"H4889\"*, which|strong=\"H7451\"* I|strong=\"H5921\"* will|strong=\"H1961\"* send|strong=\"H7971\"* to|strong=\"H7971\"* destroy|strong=\"H7843\"* you|strong=\"H7971\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* increase|strong=\"H3254\"* the|strong=\"H5921\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* you|strong=\"H7971\"* and|strong=\"H7971\"* will|strong=\"H1961\"* break|strong=\"H7665\"* your|strong=\"H5921\"* staff|strong=\"H4294\"* of|strong=\"H4294\"* bread|strong=\"H3899\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* send|strong=\"H7971\"* on|strong=\"H5921\"* you|strong=\"H7971\"* famine|strong=\"H7458\"* and|strong=\"H3068\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* bereave|strong=\"H7921\"* you|strong=\"H7971\"*. Pestilence|strong=\"H1698\"* and|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* you|strong=\"H7971\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* bring|strong=\"H5674\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H7971\"*. I|strong=\"H5921\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*.’”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H7760\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* to|strong=\"H3478\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3478\"* say|strong=\"H1697\"*, ‘You|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* the|strong=\"H5921\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* hills|strong=\"H1389\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* watercourses and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* valleys|strong=\"H1516\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"*, even|strong=\"H5921\"* I|strong=\"H3541\"*, will|strong=\"H3478\"* bring a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H3478\"* destroy|strong=\"H2719\"* your|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"*." + }, + { + "verseNum": 4, + "text": "Your|strong=\"H6440\"* altars|strong=\"H4196\"* will|strong=\"H2491\"* become|strong=\"H8074\"* desolate|strong=\"H8074\"*, and|strong=\"H6440\"* your|strong=\"H6440\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* will|strong=\"H2491\"* be|strong=\"H6440\"* broken|strong=\"H7665\"*. I|strong=\"H6440\"* will|strong=\"H2491\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* your|strong=\"H6440\"* slain|strong=\"H2491\"* men before|strong=\"H6440\"* your|strong=\"H6440\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* lay|strong=\"H5414\"* the|strong=\"H6440\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* before|strong=\"H6440\"* their|strong=\"H5414\"* idols|strong=\"H1544\"*. I|strong=\"H5414\"* will|strong=\"H3478\"* scatter|strong=\"H2219\"* your|strong=\"H5414\"* bones|strong=\"H6106\"* around|strong=\"H5439\"* your|strong=\"H5414\"* altars|strong=\"H4196\"*." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5892\"* all|strong=\"H3605\"* your|strong=\"H3605\"* dwelling|strong=\"H4186\"* places|strong=\"H1116\"*, the|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H5892\"* be|strong=\"H5892\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* and|strong=\"H5892\"* the|strong=\"H3605\"* high|strong=\"H1116\"* places|strong=\"H1116\"* will|strong=\"H5892\"* be|strong=\"H5892\"* desolate|strong=\"H2717\"*, so|strong=\"H4616\"* that|strong=\"H3605\"* your|strong=\"H3605\"* altars|strong=\"H4196\"* may|strong=\"H4196\"* be|strong=\"H5892\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"* and|strong=\"H5892\"* made|strong=\"H4639\"* desolate|strong=\"H2717\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* may|strong=\"H4196\"* be|strong=\"H5892\"* broken|strong=\"H7665\"* and|strong=\"H5892\"* cease|strong=\"H7673\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* incense|strong=\"H2553\"* altars|strong=\"H4196\"* may|strong=\"H4196\"* be|strong=\"H5892\"* cut|strong=\"H1438\"* down|strong=\"H1438\"*, and|strong=\"H5892\"* your|strong=\"H3605\"* works|strong=\"H4639\"* may|strong=\"H4196\"* be|strong=\"H5892\"* abolished|strong=\"H4229\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3588\"* slain|strong=\"H2491\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* among|strong=\"H8432\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "“‘“Yet I|strong=\"H1961\"* will|strong=\"H1961\"* leave|strong=\"H3498\"* a|strong=\"H3068\"* remnant|strong=\"H3498\"*, in|strong=\"H3498\"* that|strong=\"H1471\"* you|strong=\"H1961\"* will|strong=\"H1961\"* have|strong=\"H1961\"* some|strong=\"H3498\"* that|strong=\"H1471\"* escape|strong=\"H6412\"* the|strong=\"H1961\"* sword|strong=\"H2719\"* among|strong=\"H2719\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, when|strong=\"H1961\"* you|strong=\"H1961\"* are|strong=\"H1471\"* scattered|strong=\"H2219\"* through the|strong=\"H1961\"* countries." + }, + { + "verseNum": 9, + "text": "Those|strong=\"H3605\"* of|strong=\"H6440\"* you|strong=\"H6440\"* that|strong=\"H3605\"* escape|strong=\"H6412\"* will|strong=\"H1471\"* remember|strong=\"H2142\"* me|strong=\"H6440\"* among|strong=\"H5921\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* are|strong=\"H1471\"* carried|strong=\"H7617\"* captive|strong=\"H7617\"*, how|strong=\"H2142\"* I|strong=\"H5921\"* have|strong=\"H5869\"* been|strong=\"H2142\"* broken|strong=\"H7665\"* with|strong=\"H6213\"* their|strong=\"H3605\"* lewd heart|strong=\"H3820\"*, which|strong=\"H1471\"* has|strong=\"H3820\"* departed|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H6440\"*, and|strong=\"H5869\"* with|strong=\"H6213\"* their|strong=\"H3605\"* eyes|strong=\"H5869\"*, which|strong=\"H1471\"* play|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* after|strong=\"H5921\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*. Then|strong=\"H6213\"* they|strong=\"H8033\"* will|strong=\"H1471\"* loathe|strong=\"H6962\"* themselves|strong=\"H6213\"* in|strong=\"H5921\"* their|strong=\"H3605\"* own|strong=\"H6440\"* sight|strong=\"H5869\"* for|strong=\"H5921\"* the|strong=\"H3605\"* evils|strong=\"H7451\"* which|strong=\"H1471\"* they|strong=\"H8033\"* have|strong=\"H5869\"* committed|strong=\"H6213\"* in|strong=\"H5921\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. I|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* said|strong=\"H1696\"* in|strong=\"H3068\"* vain|strong=\"H2600\"* that|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H3068\"* do|strong=\"H6213\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* them|strong=\"H6213\"*.”’" + }, + { + "verseNum": 11, + "text": "“The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Strike|strong=\"H5221\"* with|strong=\"H1004\"* your|strong=\"H3605\"* hand|strong=\"H3709\"*, and|strong=\"H3478\"* stamp|strong=\"H7554\"* with|strong=\"H1004\"* your|strong=\"H3605\"* foot|strong=\"H7272\"*, and|strong=\"H3478\"* say|strong=\"H3478\"*, “Alas!”, because|strong=\"H3605\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* abominations|strong=\"H8441\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; for|strong=\"H1004\"* they|strong=\"H3478\"* will|strong=\"H3478\"* fall|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, by|strong=\"H3478\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H3478\"* by|strong=\"H3478\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H7604\"* who|strong=\"H7604\"* is|strong=\"H2719\"* far|strong=\"H7350\"* off|strong=\"H7350\"* will|strong=\"H2719\"* die|strong=\"H4191\"* of|strong=\"H3615\"* the|strong=\"H4191\"* pestilence|strong=\"H1698\"*. He|strong=\"H7604\"* who|strong=\"H7604\"* is|strong=\"H2719\"* near|strong=\"H7138\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H4191\"* the|strong=\"H4191\"* sword|strong=\"H2719\"*. He|strong=\"H7604\"* who|strong=\"H7604\"* remains|strong=\"H7604\"* and|strong=\"H2719\"* is|strong=\"H2719\"* besieged|strong=\"H5341\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H4191\"* famine|strong=\"H7458\"*. Thus|strong=\"H4191\"* I|strong=\"H7350\"* will|strong=\"H2719\"* accomplish|strong=\"H3615\"* my|strong=\"H3615\"* wrath|strong=\"H2534\"* on|strong=\"H5307\"* them|strong=\"H3615\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* their|strong=\"H3605\"* slain|strong=\"H2491\"* men|strong=\"H7218\"* are|strong=\"H3068\"* among|strong=\"H8432\"* their|strong=\"H3605\"* idols|strong=\"H1544\"* around|strong=\"H5439\"* their|strong=\"H3605\"* altars|strong=\"H4196\"*, on|strong=\"H3068\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H2022\"*, on|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, under|strong=\"H8478\"* every|strong=\"H3605\"* green|strong=\"H7488\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* under|strong=\"H8478\"* every|strong=\"H3605\"* thick|strong=\"H5687\"* oak—the|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3588\"* offered|strong=\"H7311\"* pleasant aroma|strong=\"H7381\"* to|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* them|strong=\"H5414\"* and|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H3605\"* land desolate|strong=\"H8077\"* and|strong=\"H3068\"* waste|strong=\"H4923\"*, from|strong=\"H5921\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* toward|strong=\"H5921\"* Diblah|strong=\"H1689\"*, throughout|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* habitations|strong=\"H4186\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, ‘An|strong=\"H3478\"* end|strong=\"H7093\"*! The|strong=\"H5921\"* end|strong=\"H7093\"* has|strong=\"H3478\"* come|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H3671\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land." + }, + { + "verseNum": 3, + "text": "Now|strong=\"H6258\"* the|strong=\"H3605\"* end|strong=\"H7093\"* is|strong=\"H1870\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* I|strong=\"H5414\"* will|strong=\"H5414\"* send|strong=\"H7971\"* my|strong=\"H5414\"* anger on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H7971\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H7971\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 4, + "text": "My|strong=\"H5414\"* eye|strong=\"H5869\"* will|strong=\"H3068\"* not|strong=\"H3808\"* spare|strong=\"H2550\"* you|strong=\"H3588\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* pity|strong=\"H2347\"*; but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H5414\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* abominations|strong=\"H8441\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H8432\"* you|strong=\"H3588\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 5, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘A|strong=\"H3068\"* disaster|strong=\"H7451\"*! A|strong=\"H3068\"* unique disaster|strong=\"H7451\"*! Behold|strong=\"H2009\"*, it|strong=\"H2009\"* comes." + }, + { + "verseNum": 6, + "text": "An|strong=\"H7093\"* end|strong=\"H7093\"* has|strong=\"H2009\"* come. The|strong=\"H2009\"* end|strong=\"H7093\"* has|strong=\"H2009\"* come! It|strong=\"H2009\"* awakes against you|strong=\"H2009\"*. Behold|strong=\"H2009\"*, it|strong=\"H2009\"* comes." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H3808\"* doom|strong=\"H6843\"* has|strong=\"H3117\"* come to|strong=\"H6256\"* you|strong=\"H3117\"*, inhabitant|strong=\"H3427\"* of|strong=\"H3117\"* the|strong=\"H3117\"* land! The|strong=\"H3117\"* time|strong=\"H6256\"* has|strong=\"H3117\"* come! The|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H3117\"* near|strong=\"H7138\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* tumult|strong=\"H4103\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* of|strong=\"H3117\"* joyful|strong=\"H1906\"* shouting|strong=\"H1906\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* mountains|strong=\"H2022\"*." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H6258\"* I|strong=\"H5414\"* will|strong=\"H5414\"* shortly|strong=\"H7138\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1870\"* accomplish|strong=\"H3615\"* my|strong=\"H5414\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H1870\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H5921\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5921\"* you|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 9, + "text": "My|strong=\"H5414\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3588\"* have|strong=\"H1961\"* pity|strong=\"H2347\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* punish|strong=\"H5221\"* you|strong=\"H3588\"* according|strong=\"H5921\"* to|strong=\"H3068\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*. Your|strong=\"H3068\"* abominations|strong=\"H8441\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H8432\"* you|strong=\"H3588\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, strike|strong=\"H5221\"*." + }, + { + "verseNum": 10, + "text": "“‘Behold|strong=\"H2009\"*, the|strong=\"H3117\"* day|strong=\"H3117\"*! Behold|strong=\"H2009\"*, it|strong=\"H3117\"* comes|strong=\"H3318\"*! Your|strong=\"H3318\"* doom|strong=\"H6843\"* has|strong=\"H3117\"* gone|strong=\"H3318\"* out|strong=\"H3318\"*. The|strong=\"H3117\"* rod|strong=\"H4294\"* has|strong=\"H3117\"* blossomed|strong=\"H6524\"*. Pride|strong=\"H2087\"* has|strong=\"H3117\"* budded|strong=\"H6524\"*." + }, + { + "verseNum": 11, + "text": "Violence|strong=\"H2555\"* has|strong=\"H4294\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* into a|strong=\"H3068\"* rod|strong=\"H4294\"* of|strong=\"H4294\"* wickedness|strong=\"H7562\"*. None|strong=\"H3808\"* of|strong=\"H4294\"* them|strong=\"H1992\"* will|strong=\"H3808\"* remain|strong=\"H6965\"*, nor|strong=\"H3808\"* of|strong=\"H4294\"* their|strong=\"H1992\"* multitude|strong=\"H1995\"*, nor|strong=\"H3808\"* of|strong=\"H4294\"* their|strong=\"H1992\"* wealth|strong=\"H1995\"*. There|strong=\"H1992\"* will|strong=\"H3808\"* be|strong=\"H3808\"* nothing|strong=\"H3808\"* of|strong=\"H4294\"* value among|strong=\"H3808\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* time|strong=\"H6256\"* has|strong=\"H3117\"* come|strong=\"H5060\"*! The|strong=\"H3605\"* day|strong=\"H3117\"* draws near|strong=\"H5060\"*. Don’t let|strong=\"H8055\"* the|strong=\"H3605\"* buyer|strong=\"H7069\"* rejoice|strong=\"H8055\"*, nor|strong=\"H3117\"* the|strong=\"H3605\"* seller|strong=\"H4376\"* mourn; for|strong=\"H3588\"* wrath|strong=\"H2740\"* is|strong=\"H3117\"* on|strong=\"H3117\"* all|strong=\"H3605\"* its|strong=\"H3605\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* seller|strong=\"H4376\"* won’t return|strong=\"H7725\"* to|strong=\"H7725\"* that|strong=\"H3588\"* which|strong=\"H2416\"* is|strong=\"H3605\"* sold|strong=\"H4376\"*, although|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5771\"* still|strong=\"H5750\"* alive|strong=\"H2416\"*; for|strong=\"H3588\"* the|strong=\"H3605\"* vision|strong=\"H2377\"* concerns the|strong=\"H3605\"* whole|strong=\"H3605\"* multitude|strong=\"H1995\"* of|strong=\"H3605\"* it|strong=\"H3588\"*. None|strong=\"H3808\"* will|strong=\"H3808\"* return|strong=\"H7725\"*. None|strong=\"H3808\"* will|strong=\"H3808\"* strengthen|strong=\"H2388\"* himself|strong=\"H2388\"* in|strong=\"H7725\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H3605\"* his|strong=\"H3605\"* life|strong=\"H2416\"*." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* have|strong=\"H3605\"* blown|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H8619\"*, and|strong=\"H1980\"* have|strong=\"H3605\"* made|strong=\"H3559\"* all|strong=\"H3605\"* ready|strong=\"H3559\"*; but|strong=\"H3588\"* no|strong=\"H3605\"* one|strong=\"H3605\"* goes|strong=\"H1980\"* to|strong=\"H1980\"* the|strong=\"H3605\"* battle|strong=\"H4421\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* wrath|strong=\"H2740\"* is|strong=\"H3605\"* on|strong=\"H1980\"* all|strong=\"H3605\"* its|strong=\"H3605\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 15, + "text": "“‘The|strong=\"H2351\"* sword|strong=\"H2719\"* is|strong=\"H5892\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* the|strong=\"H2351\"* pestilence|strong=\"H1698\"* and|strong=\"H1004\"* the|strong=\"H2351\"* famine|strong=\"H7458\"* within|strong=\"H1004\"*. He|strong=\"H1004\"* who is|strong=\"H5892\"* in|strong=\"H1004\"* the|strong=\"H2351\"* field|strong=\"H7704\"* will|strong=\"H2719\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H2351\"* sword|strong=\"H2719\"*. He|strong=\"H1004\"* who is|strong=\"H5892\"* in|strong=\"H1004\"* the|strong=\"H2351\"* city|strong=\"H5892\"* will|strong=\"H2719\"* be|strong=\"H4191\"* devoured by|strong=\"H4191\"* famine|strong=\"H7458\"* and|strong=\"H1004\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H1961\"* of|strong=\"H2022\"* those|strong=\"H3605\"* who|strong=\"H3605\"* escape|strong=\"H6412\"*, they|strong=\"H3605\"* will|strong=\"H1961\"* escape|strong=\"H6412\"* and|strong=\"H2022\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* like|strong=\"H1961\"* doves|strong=\"H3123\"* of|strong=\"H2022\"* the|strong=\"H3605\"* valleys|strong=\"H1516\"*, all|strong=\"H3605\"* of|strong=\"H2022\"* them|strong=\"H1961\"* moaning, everyone|strong=\"H3605\"* in|strong=\"H1961\"* his|strong=\"H3605\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 17, + "text": "All|strong=\"H3605\"* hands|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* feeble|strong=\"H7503\"*, and|strong=\"H3027\"* all|strong=\"H3605\"* knees|strong=\"H1290\"* will|strong=\"H3027\"* be|strong=\"H3027\"* weak|strong=\"H3212\"* as|strong=\"H3605\"* water|strong=\"H4325\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3605\"* will|strong=\"H6440\"* also clothe|strong=\"H3680\"* themselves|strong=\"H6440\"* with|strong=\"H6440\"* sackcloth|strong=\"H8242\"*, and|strong=\"H7218\"* horror|strong=\"H6427\"* will|strong=\"H6440\"* cover|strong=\"H3680\"* them|strong=\"H6440\"*. Shame will|strong=\"H6440\"* be|strong=\"H6440\"* on|strong=\"H2296\"* all|strong=\"H3605\"* faces|strong=\"H6440\"*, and|strong=\"H7218\"* baldness|strong=\"H7144\"* on|strong=\"H2296\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 19, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* cast|strong=\"H7993\"* their|strong=\"H3068\"* silver|strong=\"H3701\"* in|strong=\"H3068\"* the|strong=\"H3588\"* streets|strong=\"H2351\"*, and|strong=\"H3068\"* their|strong=\"H3068\"* gold|strong=\"H2091\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H3117\"* an|strong=\"H1961\"* unclean|strong=\"H5079\"* thing|strong=\"H5079\"*. Their|strong=\"H3068\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* their|strong=\"H3068\"* gold|strong=\"H2091\"* won’t be|strong=\"H1961\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* them|strong=\"H7993\"* in|strong=\"H3068\"* the|strong=\"H3588\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H5678\"*. They|strong=\"H3588\"* won’t satisfy|strong=\"H7646\"* their|strong=\"H3068\"* souls|strong=\"H5315\"* or|strong=\"H3808\"* fill|strong=\"H4390\"* their|strong=\"H3068\"* bellies; because|strong=\"H3588\"* it|strong=\"H3588\"* has|strong=\"H3068\"* been|strong=\"H1961\"* the|strong=\"H3588\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H3068\"* their|strong=\"H3068\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H6213\"* for|strong=\"H5921\"* the|strong=\"H5921\"* beauty|strong=\"H6643\"* of|strong=\"H5921\"* his|strong=\"H5414\"* ornament|strong=\"H5716\"*, he|strong=\"H3651\"* set|strong=\"H7760\"* it|strong=\"H5414\"* in|strong=\"H5921\"* majesty|strong=\"H1347\"*; but|strong=\"H3651\"* they|strong=\"H3651\"* made|strong=\"H6213\"* the|strong=\"H5921\"* images|strong=\"H6754\"* of|strong=\"H5921\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"* and|strong=\"H6213\"* their|strong=\"H5414\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* therein. Therefore|strong=\"H3651\"* I|strong=\"H5414\"* have|strong=\"H5414\"* made|strong=\"H6213\"* it|strong=\"H5414\"* to|strong=\"H6213\"* them|strong=\"H5414\"* as|strong=\"H6213\"* an|strong=\"H6213\"* unclean|strong=\"H5079\"* thing|strong=\"H5079\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5414\"* will|strong=\"H7563\"* give|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* strangers|strong=\"H2114\"* for|strong=\"H3027\"* a|strong=\"H3068\"* prey|strong=\"H7998\"*, and|strong=\"H3027\"* to|strong=\"H5414\"* the|strong=\"H5414\"* wicked|strong=\"H7563\"* of|strong=\"H3027\"* the|strong=\"H5414\"* earth for|strong=\"H3027\"* a|strong=\"H3068\"* plunder|strong=\"H7998\"*; and|strong=\"H3027\"* they|strong=\"H3027\"* will|strong=\"H7563\"* profane|strong=\"H2490\"* it|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "I|strong=\"H6440\"* will|strong=\"H6440\"* also|strong=\"H1992\"* turn|strong=\"H5437\"* my|strong=\"H2490\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*, and|strong=\"H6440\"* they|strong=\"H1992\"* will|strong=\"H6440\"* profane|strong=\"H2490\"* my|strong=\"H2490\"* secret|strong=\"H6845\"* place|strong=\"H6845\"*. Robbers|strong=\"H6530\"* will|strong=\"H6440\"* enter into it|strong=\"H6440\"*, and|strong=\"H6440\"* profane|strong=\"H2490\"* it|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "“‘Make|strong=\"H6213\"* chains|strong=\"H7569\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* land is|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* bloody|strong=\"H1818\"* crimes|strong=\"H4941\"*, and|strong=\"H4941\"* the|strong=\"H3588\"* city|strong=\"H5892\"* is|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* violence|strong=\"H2555\"*." + }, + { + "verseNum": 24, + "text": "Therefore I|strong=\"H1004\"* will|strong=\"H1471\"* bring|strong=\"H7451\"* the|strong=\"H3423\"* worst|strong=\"H7451\"* of|strong=\"H1004\"* the|strong=\"H3423\"* nations|strong=\"H1471\"*, and|strong=\"H1004\"* they|strong=\"H6942\"* will|strong=\"H1471\"* possess|strong=\"H3423\"* their|strong=\"H3423\"* houses|strong=\"H1004\"*. I|strong=\"H1004\"* will|strong=\"H1471\"* also|strong=\"H1471\"* make|strong=\"H7673\"* the|strong=\"H3423\"* pride|strong=\"H1347\"* of|strong=\"H1004\"* the|strong=\"H3423\"* strong|strong=\"H5794\"* to|strong=\"H1004\"* cease|strong=\"H7673\"*. Their|strong=\"H3423\"* holy|strong=\"H6942\"* places|strong=\"H1004\"* will|strong=\"H1471\"* be|strong=\"H1471\"* profaned|strong=\"H2490\"*." + }, + { + "verseNum": 25, + "text": "Destruction|strong=\"H7089\"* comes! They|strong=\"H7965\"* will seek|strong=\"H1245\"* peace|strong=\"H7965\"*, and|strong=\"H7965\"* there|strong=\"H7965\"* will be|strong=\"H7965\"* none." + }, + { + "verseNum": 26, + "text": "Mischief|strong=\"H1943\"* will|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5921\"* mischief|strong=\"H1943\"*, and|strong=\"H3548\"* rumor|strong=\"H8052\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* rumor|strong=\"H8052\"*. They|strong=\"H5921\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* vision|strong=\"H2377\"* of|strong=\"H2205\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"*; but|strong=\"H1961\"* the|strong=\"H5921\"* law|strong=\"H8451\"* will|strong=\"H1961\"* perish from|strong=\"H5921\"* the|strong=\"H5921\"* priest|strong=\"H3548\"*, and|strong=\"H3548\"* counsel|strong=\"H6098\"* from|strong=\"H5921\"* the|strong=\"H5921\"* elders|strong=\"H2205\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3588\"* king|strong=\"H4428\"* will|strong=\"H3068\"* mourn, and|strong=\"H3068\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* will|strong=\"H3068\"* be|strong=\"H3027\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* desolation|strong=\"H8077\"*. The|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3588\"* land will|strong=\"H3068\"* be|strong=\"H3027\"* troubled. I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3068\"* them|strong=\"H3027\"* after|strong=\"H3588\"* their|strong=\"H3068\"* way|strong=\"H1870\"*, and|strong=\"H3068\"* according|strong=\"H4941\"* to|strong=\"H3068\"* their|strong=\"H3068\"* own|strong=\"H5971\"* judgments|strong=\"H4941\"* I|strong=\"H3588\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* them|strong=\"H3027\"*. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* year|strong=\"H8141\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, as|strong=\"H1961\"* I|strong=\"H5921\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* my|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H3063\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*, the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H6440\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* likeness|strong=\"H1823\"* as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* fire—from|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H5869\"* downward|strong=\"H4295\"*, fire, and|strong=\"H5869\"* from|strong=\"H5869\"* his|strong=\"H7200\"* waist|strong=\"H4975\"* and|strong=\"H5869\"* upward|strong=\"H4605\"*, as|strong=\"H5869\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* brightness|strong=\"H2096\"*, as|strong=\"H5869\"* it|strong=\"H7200\"* were|strong=\"H5869\"* glowing|strong=\"H2830\"* metal|strong=\"H2830\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H8033\"* stretched|strong=\"H7971\"* out|strong=\"H7971\"* the|strong=\"H3947\"* form|strong=\"H8403\"* of|strong=\"H3027\"* a|strong=\"H3068\"* hand|strong=\"H3027\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* me|strong=\"H7971\"* by|strong=\"H3027\"* a|strong=\"H3068\"* lock|strong=\"H6734\"* of|strong=\"H3027\"* my|strong=\"H3947\"* head|strong=\"H7218\"*; and|strong=\"H7971\"* the|strong=\"H3947\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7971\"* up|strong=\"H5375\"* between|strong=\"H7307\"* earth|strong=\"H8064\"* and|strong=\"H7971\"* the|strong=\"H3947\"* sky|strong=\"H8064\"*, and|strong=\"H7971\"* brought|strong=\"H3947\"* me|strong=\"H7971\"* in|strong=\"H3027\"* the|strong=\"H3947\"* visions|strong=\"H4759\"* of|strong=\"H3027\"* God|strong=\"H7971\"* to|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*, to|strong=\"H7971\"* the|strong=\"H3947\"* door|strong=\"H6607\"* of|strong=\"H3027\"* the|strong=\"H3947\"* gate|strong=\"H8179\"* of|strong=\"H3027\"* the|strong=\"H3947\"* inner|strong=\"H6442\"* court|strong=\"H8179\"* that|strong=\"H3027\"* looks toward|strong=\"H3027\"* the|strong=\"H3947\"* north|strong=\"H6828\"*, where|strong=\"H8033\"* there|strong=\"H8033\"* was|strong=\"H7307\"* the|strong=\"H3947\"* seat|strong=\"H4186\"* of|strong=\"H3027\"* the|strong=\"H3947\"* image|strong=\"H5566\"* of|strong=\"H3027\"* jealousy|strong=\"H7068\"*, which|strong=\"H8033\"* provokes to|strong=\"H7971\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H7200\"* glory|strong=\"H3519\"* of|strong=\"H4758\"* the|strong=\"H7200\"* God of|strong=\"H4758\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* there|strong=\"H8033\"*, according to|strong=\"H3478\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* in|strong=\"H3478\"* the|strong=\"H7200\"* plain|strong=\"H1237\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* he|strong=\"H2088\"* said to|strong=\"H1870\"* me|strong=\"H4994\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* now|strong=\"H4994\"* the|strong=\"H5375\"* way|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H5375\"* north|strong=\"H6828\"*.”" + }, + { + "verseNum": 6, + "text": "He|strong=\"H6213\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, do|strong=\"H6213\"* you|strong=\"H5921\"* see|strong=\"H7200\"* what|strong=\"H6213\"* they|strong=\"H1992\"* do|strong=\"H6213\"*? Even|strong=\"H5750\"* the|strong=\"H5921\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"* that|strong=\"H7200\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* commit|strong=\"H6213\"* here|strong=\"H6311\"*, that|strong=\"H7200\"* I|strong=\"H5921\"* should|strong=\"H3478\"* go|strong=\"H7725\"* far|strong=\"H7368\"* off|strong=\"H5921\"* from|strong=\"H7725\"* my|strong=\"H7200\"* sanctuary|strong=\"H4720\"*? But|strong=\"H7200\"* you|strong=\"H5921\"* will|strong=\"H3478\"* again|strong=\"H7725\"* see|strong=\"H7200\"* yet|strong=\"H5750\"* other|strong=\"H5750\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H7023\"* brought me|strong=\"H7200\"* to|strong=\"H7200\"* the|strong=\"H7200\"* door|strong=\"H6607\"* of|strong=\"H6607\"* the|strong=\"H7200\"* court|strong=\"H2691\"*; and|strong=\"H7200\"* when|strong=\"H7200\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, behold|strong=\"H2009\"*, a|strong=\"H3068\"* hole|strong=\"H2356\"* in|strong=\"H6607\"* the|strong=\"H7200\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2009\"* he|strong=\"H7023\"* said to|strong=\"H1121\"* me|strong=\"H4994\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, dig|strong=\"H2864\"* now|strong=\"H4994\"* in|strong=\"H1121\"* the|strong=\"H2009\"* wall|strong=\"H7023\"*.”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* said to|strong=\"H6213\"* me|strong=\"H7200\"*, “Go in|strong=\"H6213\"*, and|strong=\"H7200\"* see|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7451\"* abominations|strong=\"H8441\"* that|strong=\"H7200\"* they|strong=\"H1992\"* do|strong=\"H6213\"* here|strong=\"H6311\"*.”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H7200\"* I|strong=\"H2009\"* went|strong=\"H3478\"* in|strong=\"H5921\"* and|strong=\"H3478\"* looked|strong=\"H7200\"*, and|strong=\"H3478\"* saw|strong=\"H7200\"* every|strong=\"H3605\"* form|strong=\"H8403\"* of|strong=\"H1004\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"*, abominable|strong=\"H8263\"* animals, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, portrayed|strong=\"H2707\"* around|strong=\"H5439\"* on|strong=\"H5921\"* the|strong=\"H3605\"* wall|strong=\"H7023\"*." + }, + { + "verseNum": 11, + "text": "Seventy|strong=\"H7657\"* men|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H6440\"*. In|strong=\"H3478\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* them|strong=\"H6440\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shaphan|strong=\"H8227\"* stood|strong=\"H5975\"*, every|strong=\"H5975\"* man|strong=\"H2205\"* with|strong=\"H1004\"* his|strong=\"H6440\"* censer|strong=\"H4730\"* in|strong=\"H3478\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*; and|strong=\"H1121\"* the|strong=\"H6440\"* smell of|strong=\"H1121\"* the|strong=\"H6440\"* cloud|strong=\"H6051\"* of|strong=\"H1121\"* incense|strong=\"H7004\"* went|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6213\"* he|strong=\"H3588\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H2205\"*, have|strong=\"H3068\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* what|strong=\"H6213\"* the|strong=\"H7200\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* do|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H7200\"* dark|strong=\"H2822\"*, every|strong=\"H6213\"* man|strong=\"H2205\"* in|strong=\"H3478\"* his|strong=\"H3068\"* rooms|strong=\"H2315\"* of|strong=\"H1121\"* imagery|strong=\"H4906\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* doesn’t see|strong=\"H7200\"* us|strong=\"H6213\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* the|strong=\"H7200\"* land.’”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H6213\"* said also|strong=\"H6213\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, “You|strong=\"H7725\"* will|strong=\"H5750\"* again|strong=\"H7725\"* see|strong=\"H7200\"* more|strong=\"H5750\"* of|strong=\"H6213\"* the|strong=\"H7200\"* great|strong=\"H1419\"* abominations|strong=\"H8441\"* which|strong=\"H1992\"* they|strong=\"H1992\"* do|strong=\"H6213\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H2009\"* he|strong=\"H8033\"* brought|strong=\"H3068\"* me|strong=\"H1004\"* to|strong=\"H3068\"* the|strong=\"H3068\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H3068\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* which|strong=\"H3068\"* was|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H3068\"* north|strong=\"H6828\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H2009\"* the|strong=\"H3068\"* women sit|strong=\"H3427\"* there|strong=\"H8033\"* weeping|strong=\"H1058\"* for|strong=\"H3068\"* Tammuz|strong=\"H8542\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H7725\"* he|strong=\"H7725\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Have|strong=\"H1121\"* you|strong=\"H7725\"* seen|strong=\"H7200\"* this|strong=\"H7200\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? You|strong=\"H7725\"* will|strong=\"H1121\"* again|strong=\"H7725\"* see|strong=\"H7200\"* yet|strong=\"H5750\"* greater|strong=\"H1419\"* abominations|strong=\"H8441\"* than|strong=\"H1419\"* these.”" + }, + { + "verseNum": 16, + "text": "He|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* into the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* saw|strong=\"H2009\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"*, between the|strong=\"H6440\"* porch and|strong=\"H3068\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*, there|strong=\"H2009\"* were|strong=\"H1992\"* about|strong=\"H2009\"* twenty-five|strong=\"H6242\"* men|strong=\"H1992\"* with|strong=\"H1004\"* their|strong=\"H3068\"* backs toward|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1004\"* and|strong=\"H3068\"* their|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6924\"*. They|strong=\"H1992\"* were|strong=\"H1992\"* worshiping|strong=\"H7812\"* the|strong=\"H6440\"* sun|strong=\"H8121\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6924\"*." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H7971\"* he|strong=\"H3588\"* said to|strong=\"H7725\"* me|strong=\"H7971\"*, “Have|strong=\"H1121\"* you|strong=\"H3588\"* seen|strong=\"H7200\"* this|strong=\"H6213\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? Is|strong=\"H1121\"* it|strong=\"H3588\"* a|strong=\"H3068\"* light|strong=\"H7043\"* thing|strong=\"H7043\"* to|strong=\"H7725\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* that|strong=\"H3588\"* they|strong=\"H3588\"* commit|strong=\"H6213\"* the|strong=\"H7200\"* abominations|strong=\"H8441\"* which|strong=\"H1004\"* they|strong=\"H3588\"* commit|strong=\"H6213\"* here|strong=\"H6311\"*? For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* filled|strong=\"H4390\"* the|strong=\"H7200\"* land with|strong=\"H4390\"* violence|strong=\"H2555\"*, and|strong=\"H1121\"* have|strong=\"H1121\"* turned|strong=\"H7725\"* again|strong=\"H7725\"* to|strong=\"H7725\"* provoke|strong=\"H3707\"* me|strong=\"H7971\"* to|strong=\"H7725\"* anger|strong=\"H3707\"*. Behold|strong=\"H2005\"*, they|strong=\"H3588\"* put|strong=\"H7971\"* the|strong=\"H7200\"* branch|strong=\"H2156\"* to|strong=\"H7725\"* their|strong=\"H7725\"* nose." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H1571\"* I|strong=\"H3808\"* will|strong=\"H1571\"* also|strong=\"H1571\"* deal|strong=\"H6213\"* in|strong=\"H6213\"* wrath|strong=\"H2534\"*. My|strong=\"H8085\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H1571\"* I|strong=\"H3808\"* have|strong=\"H5869\"* pity|strong=\"H2347\"*. Though|strong=\"H1571\"* they|strong=\"H3808\"* cry|strong=\"H7121\"* in|strong=\"H6213\"* my|strong=\"H8085\"* ears with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, yet|strong=\"H1571\"* I|strong=\"H3808\"* will|strong=\"H1571\"* not|strong=\"H3808\"* hear|strong=\"H8085\"* them|strong=\"H6213\"*.”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7126\"* he|strong=\"H3027\"* cried|strong=\"H7121\"* in|strong=\"H5892\"* my|strong=\"H3027\"* ears with|strong=\"H3027\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, saying|strong=\"H6963\"*, “Cause|strong=\"H7121\"* those|strong=\"H7126\"* who|strong=\"H7121\"* are|strong=\"H3027\"* in|strong=\"H5892\"* charge|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7121\"* city|strong=\"H5892\"* to|strong=\"H3027\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*, each|strong=\"H5892\"* man|strong=\"H1419\"* with|strong=\"H3027\"* his|strong=\"H7121\"* destroying|strong=\"H4892\"* weapon|strong=\"H3627\"* in|strong=\"H5892\"* his|strong=\"H7121\"* hand|strong=\"H3027\"*.”" + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, six|strong=\"H8337\"* men came|strong=\"H3847\"* from|strong=\"H3027\"* the|strong=\"H8432\"* way|strong=\"H1870\"* of|strong=\"H3027\"* the|strong=\"H8432\"* upper|strong=\"H5945\"* gate|strong=\"H8179\"*, which|strong=\"H4196\"* lies toward|strong=\"H1870\"* the|strong=\"H8432\"* north|strong=\"H6828\"*, every|strong=\"H5975\"* man|strong=\"H8179\"* with|strong=\"H3847\"* his|strong=\"H3027\"* slaughter|strong=\"H4660\"* weapon|strong=\"H3627\"* in|strong=\"H8432\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*. One|strong=\"H3027\"* man|strong=\"H8179\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* them|strong=\"H3027\"* was|strong=\"H3027\"* clothed|strong=\"H3847\"* in|strong=\"H8432\"* linen, with|strong=\"H3847\"* a|strong=\"H3068\"* writer|strong=\"H5608\"*’s inkhorn|strong=\"H7083\"* by|strong=\"H3027\"* his|strong=\"H3027\"* side|strong=\"H6828\"*. They|strong=\"H5608\"* went|strong=\"H3027\"* in|strong=\"H8432\"*, and|strong=\"H3027\"* stood|strong=\"H5975\"* beside|strong=\"H3027\"* the|strong=\"H8432\"* bronze|strong=\"H5178\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* the|strong=\"H5921\"* God of|strong=\"H1004\"* Israel|strong=\"H3478\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, whereupon it|strong=\"H7121\"* was|strong=\"H1961\"*, to|strong=\"H3478\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*; and|strong=\"H3478\"* he|strong=\"H1004\"* called|strong=\"H7121\"* to|strong=\"H3478\"* the|strong=\"H5921\"* man clothed|strong=\"H3847\"* in|strong=\"H5921\"* linen, who|strong=\"H3478\"* had|strong=\"H1961\"* the|strong=\"H5921\"* writer|strong=\"H5608\"*’s inkhorn|strong=\"H7083\"* by|strong=\"H5921\"* his|strong=\"H7121\"* side|strong=\"H4975\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H5921\"*, “Go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, through|strong=\"H5674\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3068\"* set|strong=\"H6213\"* a|strong=\"H3068\"* mark|strong=\"H8420\"* on|strong=\"H5921\"* the|strong=\"H3605\"* foreheads|strong=\"H4696\"* of|strong=\"H3068\"* the|strong=\"H3605\"* men|strong=\"H6213\"* that|strong=\"H3605\"* sigh and|strong=\"H3068\"* that|strong=\"H3605\"* cry over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* that|strong=\"H3605\"* are|strong=\"H3068\"* done|strong=\"H6213\"* within|strong=\"H8432\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 5, + "text": "To|strong=\"H5921\"* the|strong=\"H5921\"* others he|strong=\"H5921\"* said in|strong=\"H5921\"* my|strong=\"H5921\"* hearing, “Go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* city|strong=\"H5892\"* after|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H5869\"* strike|strong=\"H5221\"*. Don’t let your|strong=\"H5921\"* eye|strong=\"H5869\"* spare|strong=\"H2550\"*, neither have|strong=\"H5869\"* pity|strong=\"H2347\"*." + }, + { + "verseNum": 6, + "text": "Kill|strong=\"H2026\"* utterly|strong=\"H4889\"* the|strong=\"H3605\"* old|strong=\"H2205\"* man|strong=\"H2205\"*, the|strong=\"H3605\"* young man|strong=\"H2205\"*, the|strong=\"H3605\"* virgin|strong=\"H1330\"*, little|strong=\"H2945\"* children|strong=\"H2945\"* and|strong=\"H1004\"* women|strong=\"H1330\"*; but|strong=\"H3605\"* don’t come|strong=\"H5066\"* near|strong=\"H5066\"* any|strong=\"H3605\"* man|strong=\"H2205\"* on|strong=\"H5921\"* whom|strong=\"H6440\"* is|strong=\"H3605\"* the|strong=\"H3605\"* mark|strong=\"H8420\"*. Begin|strong=\"H2490\"* at|strong=\"H5921\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*.”" + }, + { + "verseNum": 7, + "text": "He|strong=\"H1004\"* said|strong=\"H3318\"* to|strong=\"H3318\"* them|strong=\"H5221\"*, “Defile|strong=\"H2930\"* the|strong=\"H5221\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* fill|strong=\"H4390\"* the|strong=\"H5221\"* courts|strong=\"H2691\"* with|strong=\"H4390\"* the|strong=\"H5221\"* slain|strong=\"H2491\"*. Go|strong=\"H3318\"* out|strong=\"H3318\"*!”" + }, + { + "verseNum": 8, + "text": "While|strong=\"H1961\"* they|strong=\"H5921\"* were|strong=\"H3478\"* killing|strong=\"H5221\"*, and|strong=\"H3478\"* I|strong=\"H5921\"* was|strong=\"H1961\"* left|strong=\"H7604\"*, I|strong=\"H5921\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H3605\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* cried|strong=\"H2199\"*, and|strong=\"H3478\"* said, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Will|strong=\"H1961\"* you|strong=\"H6440\"* destroy|strong=\"H7843\"* all|strong=\"H3605\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* your|strong=\"H3605\"* pouring|strong=\"H8210\"* out|strong=\"H8210\"* of|strong=\"H6440\"* your|strong=\"H3605\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*?”" + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “The|strong=\"H7200\"* iniquity|strong=\"H5771\"* of|strong=\"H1004\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* Judah|strong=\"H3063\"* is|strong=\"H3068\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"*, and|strong=\"H3063\"* the|strong=\"H7200\"* land is|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H1004\"* blood|strong=\"H1818\"*, and|strong=\"H3063\"* the|strong=\"H7200\"* city|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H1004\"* perversion|strong=\"H4297\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* say|strong=\"H3478\"*, ‘Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* forsaken|strong=\"H5800\"* the|strong=\"H7200\"* land, and|strong=\"H3063\"* Yahweh|strong=\"H3068\"* doesn’t see|strong=\"H7200\"*.’" + }, + { + "verseNum": 10, + "text": "As|strong=\"H1571\"* for|strong=\"H5869\"* me|strong=\"H5414\"* also|strong=\"H1571\"*, my|strong=\"H5414\"* eye|strong=\"H5869\"* won’t spare|strong=\"H2550\"*, neither|strong=\"H3808\"* will|strong=\"H1571\"* I|strong=\"H5414\"* have|strong=\"H5869\"* pity|strong=\"H2347\"*, but|strong=\"H3808\"* I|strong=\"H5414\"* will|strong=\"H1571\"* bring|strong=\"H5414\"* their|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1870\"* their|strong=\"H5414\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6213\"* man clothed|strong=\"H3830\"* in|strong=\"H6213\"* linen, who|strong=\"H6213\"* had|strong=\"H6680\"* the|strong=\"H6213\"* inkhorn|strong=\"H7083\"* by|strong=\"H6213\"* his|strong=\"H7725\"* side|strong=\"H4975\"*, reported|strong=\"H7725\"* the|strong=\"H6213\"* matter|strong=\"H1697\"*, saying|strong=\"H1697\"*, “I|strong=\"H2009\"* have|strong=\"H1697\"* done|strong=\"H6213\"* as|strong=\"H1697\"* you|strong=\"H6680\"* have|strong=\"H1697\"* commanded|strong=\"H6680\"* me|strong=\"H7725\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H7218\"* see|strong=\"H7200\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* expanse|strong=\"H7549\"* that|strong=\"H7200\"* was|strong=\"H7218\"* over|strong=\"H5921\"* the|strong=\"H5921\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* there|strong=\"H2009\"* appeared|strong=\"H7200\"* above|strong=\"H5921\"* them|strong=\"H5921\"* as|strong=\"H1823\"* it|strong=\"H5921\"* were|strong=\"H3742\"* a|strong=\"H3068\"* sapphire|strong=\"H5601\"*+ 10:1 or, lapis lazuli * stone|strong=\"H5601\"*, as|strong=\"H1823\"* the|strong=\"H5921\"* appearance|strong=\"H4758\"* of|strong=\"H7218\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H7218\"* a|strong=\"H3068\"* throne|strong=\"H3678\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* spoke to|strong=\"H5921\"* the|strong=\"H5921\"* man clothed|strong=\"H3847\"* in|strong=\"H5921\"* linen, and|strong=\"H5869\"* said, “Go in|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H5921\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*, even|strong=\"H5869\"* under|strong=\"H8478\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, and|strong=\"H5869\"* fill|strong=\"H4390\"* both|strong=\"H5921\"* your|strong=\"H5921\"* hands|strong=\"H2651\"* with|strong=\"H4390\"* coals|strong=\"H1513\"* of|strong=\"H5892\"* fire|strong=\"H1513\"* from|strong=\"H5921\"* between|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"*, and|strong=\"H5869\"* scatter|strong=\"H2236\"* them|strong=\"H5921\"* over|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*.”" + }, + { + "verseNum": 3, + "text": "Now the|strong=\"H4390\"* cherubim|strong=\"H3742\"* stood|strong=\"H5975\"* on|strong=\"H5975\"* the|strong=\"H4390\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H1004\"* the|strong=\"H4390\"* house|strong=\"H1004\"* when|strong=\"H4390\"* the|strong=\"H4390\"* man went|strong=\"H1004\"* in|strong=\"H1004\"*; and|strong=\"H1004\"* the|strong=\"H4390\"* cloud|strong=\"H6051\"* filled|strong=\"H4390\"* the|strong=\"H4390\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* mounted|strong=\"H4390\"* up|strong=\"H7311\"* from|strong=\"H5921\"* the|strong=\"H5921\"* cherub|strong=\"H3742\"*, and|strong=\"H3068\"* stood|strong=\"H3068\"* over|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*; and|strong=\"H3068\"* the|strong=\"H5921\"* house|strong=\"H1004\"* was|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H5921\"* cloud|strong=\"H6051\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* court|strong=\"H2691\"* was|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H1004\"* the|strong=\"H5921\"* brightness|strong=\"H5051\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* wings|strong=\"H3671\"* of|strong=\"H6963\"* the|strong=\"H8085\"* cherubim|strong=\"H3742\"* was|strong=\"H6963\"* heard|strong=\"H8085\"* even|strong=\"H5704\"* to|strong=\"H1696\"* the|strong=\"H8085\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, as|strong=\"H5704\"* the|strong=\"H8085\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* God Almighty|strong=\"H7706\"* when|strong=\"H8085\"* he|strong=\"H5704\"* speaks|strong=\"H1696\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*, when|strong=\"H1961\"* he|strong=\"H6680\"* commanded|strong=\"H6680\"* the|strong=\"H3947\"* man clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, saying, “Take|strong=\"H3947\"* fire from|strong=\"H3947\"* between the|strong=\"H3947\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*, from|strong=\"H3947\"* between the|strong=\"H3947\"* cherubim|strong=\"H3742\"*,” that|strong=\"H1961\"* he|strong=\"H6680\"* went|strong=\"H1961\"* in|strong=\"H3847\"* and|strong=\"H5975\"* stood|strong=\"H5975\"* beside a|strong=\"H3068\"* wheel|strong=\"H1534\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5414\"* cherub|strong=\"H3742\"* stretched|strong=\"H7971\"* out|strong=\"H3318\"* his|strong=\"H5375\"* hand|strong=\"H3027\"* from|strong=\"H3318\"* between the|strong=\"H5414\"* cherubim|strong=\"H3742\"* to|strong=\"H3318\"* the|strong=\"H5414\"* fire that|strong=\"H5414\"* was|strong=\"H3027\"* between the|strong=\"H5414\"* cherubim|strong=\"H3742\"*, and|strong=\"H7971\"* took|strong=\"H3947\"* some|strong=\"H3027\"* of|strong=\"H3027\"* it|strong=\"H5414\"*, and|strong=\"H7971\"* put|strong=\"H5414\"* it|strong=\"H5414\"* into|strong=\"H3318\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* him|strong=\"H5414\"* who|strong=\"H3742\"* was|strong=\"H3027\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, who|strong=\"H3742\"* took|strong=\"H3947\"* it|strong=\"H5414\"* and|strong=\"H7971\"* went|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H7200\"* form|strong=\"H8403\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H7200\"*’s hand|strong=\"H3027\"* appeared|strong=\"H7200\"* here in|strong=\"H3027\"* the|strong=\"H7200\"* cherubim|strong=\"H3742\"* under|strong=\"H8478\"* their|strong=\"H7200\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* four wheels beside the|strong=\"H7200\"* cherubim|strong=\"H3742\"*, one|strong=\"H7200\"* wheel beside one|strong=\"H7200\"* cherub|strong=\"H3742\"*, and|strong=\"H5869\"* another|strong=\"H7200\"* wheel beside another|strong=\"H7200\"* cherub|strong=\"H3742\"*. The|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H5869\"* the|strong=\"H7200\"* wheels was|strong=\"H3742\"* like|strong=\"H4758\"* a|strong=\"H3068\"* beryl|strong=\"H8658\"* stone." + }, + { + "verseNum": 10, + "text": "As|strong=\"H1961\"* for|strong=\"H1961\"* their|strong=\"H8432\"* appearance|strong=\"H4758\"*, the|strong=\"H8432\"* four of|strong=\"H8432\"* them|strong=\"H8432\"* had|strong=\"H1961\"* one|strong=\"H1961\"* likeness|strong=\"H1823\"*, like|strong=\"H1961\"* a|strong=\"H3068\"* wheel within|strong=\"H8432\"* a|strong=\"H3068\"* wheel." + }, + { + "verseNum": 11, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*, they|strong=\"H3588\"* went|strong=\"H3212\"* in|strong=\"H3212\"* their|strong=\"H3588\"* four directions|strong=\"H7253\"*. They|strong=\"H3588\"* didn’t turn|strong=\"H6437\"* as|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*, but|strong=\"H3588\"* to|strong=\"H3212\"* the|strong=\"H3588\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H3588\"* head|strong=\"H7218\"* looked|strong=\"H6437\"* they|strong=\"H3588\"* followed|strong=\"H3212\"* it|strong=\"H3588\"*. They|strong=\"H3588\"* didn’t turn|strong=\"H6437\"* as|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H3212\"*." + }, + { + "verseNum": 12, + "text": "Their|strong=\"H3605\"* whole|strong=\"H3605\"* body|strong=\"H1320\"*, including|strong=\"H3605\"* their|strong=\"H3605\"* backs|strong=\"H1354\"*, their|strong=\"H3605\"* hands|strong=\"H3027\"*, their|strong=\"H3605\"* wings|strong=\"H3671\"*, and|strong=\"H3027\"* the|strong=\"H3605\"* wheels, were|strong=\"H5869\"* full|strong=\"H4392\"* of|strong=\"H3027\"* eyes|strong=\"H5869\"* all|strong=\"H3605\"* around|strong=\"H5439\"*, even|strong=\"H5869\"* the|strong=\"H3605\"* wheels that|strong=\"H3605\"* the|strong=\"H3605\"* four of|strong=\"H3027\"* them|strong=\"H3027\"* had|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H7121\"* for|strong=\"H7121\"* the|strong=\"H7121\"* wheels|strong=\"H1534\"*, they|strong=\"H7121\"* were called|strong=\"H7121\"* in|strong=\"H7121\"* my|strong=\"H7121\"* hearing, “the|strong=\"H7121\"* whirling|strong=\"H1534\"* wheels|strong=\"H1534\"*”." + }, + { + "verseNum": 14, + "text": "Every one|strong=\"H7992\"* of|strong=\"H6440\"* them|strong=\"H6440\"* had|strong=\"H3742\"* four faces|strong=\"H6440\"*. The|strong=\"H6440\"* first|strong=\"H6440\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* cherub|strong=\"H3742\"*. The|strong=\"H6440\"* second|strong=\"H8145\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* man|strong=\"H6440\"*. The|strong=\"H6440\"* third|strong=\"H7992\"* face|strong=\"H6440\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* a|strong=\"H3068\"* lion. The|strong=\"H6440\"* fourth|strong=\"H7243\"* was|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* an|strong=\"H6440\"* eagle|strong=\"H5404\"*." + }, + { + "verseNum": 15, + "text": "The|strong=\"H7200\"* cherubim|strong=\"H3742\"* mounted up|strong=\"H7200\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* by|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*." + }, + { + "verseNum": 16, + "text": "When|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* went|strong=\"H3212\"*, the|strong=\"H5921\"* wheels went|strong=\"H3212\"* beside|strong=\"H5921\"* them|strong=\"H1992\"*; and|strong=\"H3212\"* when|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* wings|strong=\"H3671\"* to|strong=\"H3212\"* mount up|strong=\"H5375\"* from|strong=\"H5921\"* the|strong=\"H5921\"* earth, the|strong=\"H5921\"* wheels also|strong=\"H1571\"* didn’t turn|strong=\"H5437\"* from|strong=\"H5921\"* beside|strong=\"H5921\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 17, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* stood|strong=\"H5975\"*, these stood|strong=\"H5975\"*. When|strong=\"H3588\"* they|strong=\"H3588\"* mounted up|strong=\"H7311\"*, these mounted up|strong=\"H7311\"* with|strong=\"H5975\"* them|strong=\"H5975\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* was|strong=\"H7307\"* in|strong=\"H5975\"* them|strong=\"H5975\"*." + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* went|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* and|strong=\"H3068\"* stood|strong=\"H5975\"* over|strong=\"H5921\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H3068\"* wings|strong=\"H3671\"* and|strong=\"H3478\"* mounted up|strong=\"H5375\"* from|strong=\"H4480\"* the|strong=\"H5921\"* earth in|strong=\"H5921\"* my|strong=\"H3068\"* sight|strong=\"H5869\"* when|strong=\"H3318\"* they|strong=\"H3068\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, with|strong=\"H1004\"* the|strong=\"H5921\"* wheels beside|strong=\"H5921\"* them|strong=\"H5921\"*. Then|strong=\"H3318\"* they|strong=\"H3068\"* stood|strong=\"H5975\"* at|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H5921\"* east|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; and|strong=\"H3478\"* the|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H1004\"* the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* was|strong=\"H3068\"* over|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 20, + "text": "This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H7200\"* living|strong=\"H2416\"* creature|strong=\"H2416\"* that|strong=\"H3588\"* I|strong=\"H3588\"* saw|strong=\"H7200\"* under|strong=\"H8478\"* the|strong=\"H7200\"* God of|strong=\"H8478\"* Israel|strong=\"H3478\"* by|strong=\"H3478\"* the|strong=\"H7200\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H3478\"* I|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* they|strong=\"H1992\"* were|strong=\"H3478\"* cherubim|strong=\"H3742\"*." + }, + { + "verseNum": 21, + "text": "Every|strong=\"H8478\"* one|strong=\"H3671\"* had|strong=\"H3027\"* four faces|strong=\"H6440\"*, and|strong=\"H3027\"* every|strong=\"H8478\"* one|strong=\"H3671\"* four wings|strong=\"H3671\"*. The|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H3027\"* the|strong=\"H6440\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* a|strong=\"H3068\"* man|strong=\"H6440\"* was|strong=\"H3027\"* under|strong=\"H8478\"* their|strong=\"H6440\"* wings|strong=\"H3671\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H6440\"* for|strong=\"H5921\"* the|strong=\"H6440\"* likeness|strong=\"H1823\"* of|strong=\"H6440\"* their|strong=\"H6440\"* faces|strong=\"H6440\"*, they|strong=\"H1992\"* were|strong=\"H1992\"* the|strong=\"H6440\"* faces|strong=\"H6440\"* which|strong=\"H1992\"* I|strong=\"H5921\"* saw|strong=\"H7200\"* by|strong=\"H5921\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*, their|strong=\"H6440\"* appearances|strong=\"H4758\"* and|strong=\"H3212\"* themselves|strong=\"H1992\"*. They|strong=\"H1992\"* each went|strong=\"H3212\"* straight|strong=\"H5676\"* forward|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H2009\"* the|strong=\"H7200\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7200\"* up|strong=\"H5375\"* and|strong=\"H1121\"* brought|strong=\"H5375\"* me|strong=\"H7200\"* to|strong=\"H3068\"* the|strong=\"H7200\"* east|strong=\"H6921\"* gate|strong=\"H8179\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*, which|strong=\"H3068\"* looks|strong=\"H7200\"* eastward|strong=\"H6921\"*. Behold|strong=\"H2009\"*, twenty-five|strong=\"H6242\"* men|strong=\"H1121\"* were|strong=\"H5971\"* at|strong=\"H3068\"* the|strong=\"H7200\"* door|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H7200\"* gate|strong=\"H8179\"*; and|strong=\"H1121\"* I|strong=\"H2009\"* saw|strong=\"H7200\"* among|strong=\"H8432\"* them|strong=\"H7200\"* Jaazaniah|strong=\"H2970\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Azzur|strong=\"H5809\"*, and|strong=\"H1121\"* Pelatiah|strong=\"H6410\"* the|strong=\"H7200\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"*, princes|strong=\"H8269\"* of|strong=\"H1121\"* the|strong=\"H7200\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H2803\"* said to|strong=\"H1121\"* me|strong=\"H2803\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H2063\"* are|strong=\"H1121\"* the|strong=\"H1121\"* men|strong=\"H1121\"* who|strong=\"H1121\"* devise|strong=\"H2803\"* iniquity, and|strong=\"H1121\"* who|strong=\"H1121\"* give|strong=\"H3289\"* wicked|strong=\"H7451\"* counsel|strong=\"H6098\"* in|strong=\"H5892\"* this|strong=\"H2063\"* city|strong=\"H5892\"*;" + }, + { + "verseNum": 3, + "text": "who|strong=\"H1931\"* say, ‘The|strong=\"H1129\"* time is|strong=\"H1931\"* not|strong=\"H3808\"* near|strong=\"H7138\"* to|strong=\"H1004\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*. This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H1129\"* cauldron, and|strong=\"H1004\"* we|strong=\"H3068\"* are|strong=\"H1004\"* the|strong=\"H1129\"* meat|strong=\"H1320\"*.’" + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*. Prophesy|strong=\"H5012\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*.”" + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3478\"* he|strong=\"H3651\"* said|strong=\"H3651\"* to|strong=\"H3478\"* me|strong=\"H5921\"*, “Speak, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Thus|strong=\"H3541\"* you|strong=\"H5921\"* have|strong=\"H3068\"* said|strong=\"H3651\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*; for|strong=\"H5921\"* I|strong=\"H3541\"* know|strong=\"H3045\"* the|strong=\"H5921\"* things|strong=\"H3478\"* that|strong=\"H3045\"* come|strong=\"H5307\"* into|strong=\"H5307\"* your|strong=\"H3068\"* mind|strong=\"H7307\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H7235\"* have|strong=\"H5892\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* slain|strong=\"H2491\"* in|strong=\"H5892\"* this|strong=\"H2063\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* you|strong=\"H7235\"* have|strong=\"H5892\"* filled|strong=\"H4390\"* its|strong=\"H4390\"* streets|strong=\"H2351\"* with|strong=\"H4390\"* the|strong=\"H4390\"* slain|strong=\"H2491\"*.”" + }, + { + "verseNum": 7, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Your|strong=\"H7760\"* slain|strong=\"H2491\"* whom|strong=\"H1992\"* you|strong=\"H7760\"* have|strong=\"H1992\"* laid|strong=\"H7760\"* in|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H7760\"*, they|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H3069\"* meat|strong=\"H1320\"*, and|strong=\"H3318\"* this|strong=\"H3651\"* is|strong=\"H1931\"* the|strong=\"H3069\"* cauldron; but|strong=\"H1992\"* you|strong=\"H7760\"* will|strong=\"H1320\"* be|strong=\"H1320\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H8432\"* the|strong=\"H3069\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H5921\"* have|strong=\"H5921\"* feared|strong=\"H3372\"* the|strong=\"H5002\"* sword|strong=\"H2719\"*; and|strong=\"H2719\"* I|strong=\"H5921\"* will|strong=\"H2719\"* bring the|strong=\"H5002\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5414\"* will|strong=\"H3027\"* bring|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H3027\"* it|strong=\"H5414\"*, and|strong=\"H3027\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5414\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* strangers|strong=\"H2114\"*, and|strong=\"H3027\"* will|strong=\"H3027\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* among|strong=\"H8432\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* you|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Then|strong=\"H5307\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "This|strong=\"H1931\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* your|strong=\"H1961\"* cauldron, neither|strong=\"H3808\"* will|strong=\"H1961\"* you|strong=\"H3808\"* be|strong=\"H1961\"* the|strong=\"H8432\"* meat|strong=\"H1320\"* in|strong=\"H3478\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1366\"* it|strong=\"H1931\"*. I|strong=\"H3808\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* you|strong=\"H3808\"* in|strong=\"H3478\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H3068\"* statutes|strong=\"H2706\"*. You|strong=\"H3588\"* have|strong=\"H3068\"* not|strong=\"H3808\"* executed|strong=\"H6213\"* my|strong=\"H3068\"* ordinances|strong=\"H4941\"*, but|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"* after|strong=\"H3588\"* the|strong=\"H3588\"* ordinances|strong=\"H4941\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* around|strong=\"H5439\"* you|strong=\"H3588\"*.”’”" + }, + { + "verseNum": 13, + "text": "When|strong=\"H1961\"* I|strong=\"H5921\"* prophesied|strong=\"H5012\"*, Pelatiah|strong=\"H6410\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Benaiah|strong=\"H1141\"* died|strong=\"H4191\"*. Then|strong=\"H1961\"* I|strong=\"H5921\"* fell|strong=\"H5307\"* down|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"*, and|strong=\"H1121\"* cried|strong=\"H2199\"* with|strong=\"H6213\"* a|strong=\"H3068\"* loud|strong=\"H1419\"* voice|strong=\"H6963\"*, and|strong=\"H1121\"* said, “Ah Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! Will|strong=\"H1961\"* you|strong=\"H6440\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H1121\"* the|strong=\"H6440\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 15, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, your|strong=\"H3068\"* brothers|strong=\"H1121\"*, even|strong=\"H3068\"* your|strong=\"H3068\"* brothers|strong=\"H1121\"*, the|strong=\"H3605\"* men|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* relatives|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"*, are|strong=\"H1121\"* the|strong=\"H3605\"* ones|strong=\"H1121\"* to|strong=\"H3478\"* whom the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* have|strong=\"H3068\"* said, ‘Go|strong=\"H3068\"* far|strong=\"H7368\"* away|strong=\"H7368\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*. This|strong=\"H1931\"* land has|strong=\"H3068\"* been|strong=\"H3605\"* given|strong=\"H5414\"* to|strong=\"H3478\"* us|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*.’" + }, + { + "verseNum": 16, + "text": "“Therefore|strong=\"H3651\"* say, ‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Whereas|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* removed|strong=\"H7368\"* them|strong=\"H1961\"* far|strong=\"H7368\"* off|strong=\"H7368\"* among|strong=\"H8033\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*, and|strong=\"H8033\"* whereas|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* scattered|strong=\"H6327\"* them|strong=\"H1961\"* among|strong=\"H8033\"* the|strong=\"H3588\"* countries, yet|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* a|strong=\"H3068\"* sanctuary|strong=\"H4720\"* for|strong=\"H3588\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H4592\"* in|strong=\"H8033\"* the|strong=\"H3588\"* countries where|strong=\"H8033\"* they|strong=\"H3588\"* have|strong=\"H1961\"* come|strong=\"H1961\"*.”’" + }, + { + "verseNum": 17, + "text": "“Therefore|strong=\"H3651\"* say|strong=\"H3478\"*, ‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H5414\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H5414\"* from|strong=\"H4480\"* the|strong=\"H5414\"* peoples|strong=\"H5971\"*, and|strong=\"H3478\"* assemble|strong=\"H6908\"* you|strong=\"H5414\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H5414\"* countries where|strong=\"H4480\"* you|strong=\"H5414\"* have|strong=\"H5971\"* been|strong=\"H5971\"* scattered|strong=\"H6327\"*, and|strong=\"H3478\"* I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H4480\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "“‘They|strong=\"H8033\"* will|strong=\"H8033\"* come there|strong=\"H8033\"*, and|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H8033\"* take|strong=\"H5493\"* away|strong=\"H5493\"* all|strong=\"H3605\"* its|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* and|strong=\"H8033\"* all|strong=\"H3605\"* its|strong=\"H3605\"* abominations|strong=\"H8441\"* from|strong=\"H4480\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* one|strong=\"H1320\"* heart|strong=\"H3820\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* put|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"* within|strong=\"H7130\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* take|strong=\"H5493\"* the|strong=\"H5414\"* stony heart|strong=\"H3820\"* out|strong=\"H5414\"* of|strong=\"H7307\"* their|strong=\"H5414\"* flesh|strong=\"H1320\"*, and|strong=\"H3820\"* will|strong=\"H3820\"* give|strong=\"H5414\"* them|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H7307\"* flesh|strong=\"H1320\"*," + }, + { + "verseNum": 20, + "text": "that|strong=\"H5971\"* they|strong=\"H6213\"* may|strong=\"H1961\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H6213\"*. They|strong=\"H6213\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H8104\"* people|strong=\"H5971\"*, and|strong=\"H4941\"* I|strong=\"H3212\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* God." + }, + { + "verseNum": 21, + "text": "But|strong=\"H1870\"* as|strong=\"H1980\"* for|strong=\"H5414\"* them|strong=\"H5414\"* whose heart|strong=\"H3820\"* walks|strong=\"H1980\"* after|strong=\"H1980\"* the|strong=\"H5002\"* heart|strong=\"H3820\"* of|strong=\"H7218\"* their|strong=\"H5414\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"* and|strong=\"H1980\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"*, I|strong=\"H5414\"* will|strong=\"H3820\"* bring|strong=\"H5414\"* their|strong=\"H5414\"* way|strong=\"H1870\"* on|strong=\"H1980\"* their|strong=\"H5414\"* own heads|strong=\"H7218\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 22, + "text": "Then|strong=\"H5375\"* the|strong=\"H5921\"* cherubim|strong=\"H3742\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* their|strong=\"H5375\"* wings|strong=\"H3671\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* wheels were|strong=\"H3478\"* beside|strong=\"H5921\"* them|strong=\"H5921\"*. The|strong=\"H5921\"* glory|strong=\"H3519\"* of|strong=\"H5921\"* the|strong=\"H5921\"* God of|strong=\"H5921\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* over|strong=\"H5921\"* them|strong=\"H5921\"* above|strong=\"H4605\"*." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H3068\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountain|strong=\"H2022\"* which|strong=\"H3068\"* is|strong=\"H3068\"* on|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H3068\"* the|strong=\"H5921\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H5921\"* Spirit|strong=\"H7307\"* lifted|strong=\"H5375\"* me|strong=\"H7200\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* brought|strong=\"H5927\"* me|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H4758\"* by|strong=\"H5921\"* the|strong=\"H5921\"* Spirit|strong=\"H7307\"* of|strong=\"H7307\"* God into|strong=\"H5927\"* Chaldea|strong=\"H3778\"*, to|strong=\"H5927\"* the|strong=\"H5921\"* captives|strong=\"H1473\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1696\"* I|strong=\"H1697\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3605\"* captives|strong=\"H1473\"* all|strong=\"H3605\"* the|strong=\"H3605\"* things|strong=\"H1697\"* that|strong=\"H7200\"* Yahweh|strong=\"H3068\"* had|strong=\"H3068\"* shown|strong=\"H7200\"* me|strong=\"H7200\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* also|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, you|strong=\"H3588\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H8085\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H8085\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, who|strong=\"H1121\"* have|strong=\"H5869\"* eyes|strong=\"H5869\"* to|strong=\"H8085\"* see|strong=\"H7200\"*, and|strong=\"H1121\"* don’t see|strong=\"H7200\"*, who|strong=\"H1121\"* have|strong=\"H5869\"* ears to|strong=\"H8085\"* hear|strong=\"H8085\"*, and|strong=\"H1121\"* don’t hear|strong=\"H8085\"*; for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 3, + "text": "“Therefore|strong=\"H3588\"*, you|strong=\"H3588\"* son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prepare|strong=\"H6213\"* your|strong=\"H7200\"* baggage|strong=\"H3627\"* for|strong=\"H3588\"* moving, and|strong=\"H1121\"* move by|strong=\"H6213\"* day|strong=\"H3119\"* in|strong=\"H6213\"* their|strong=\"H1992\"* sight|strong=\"H5869\"*. You|strong=\"H3588\"* shall|strong=\"H1121\"* move from|strong=\"H1121\"* your|strong=\"H7200\"* place|strong=\"H4725\"* to|strong=\"H6213\"* another|strong=\"H7200\"* place|strong=\"H4725\"* in|strong=\"H6213\"* their|strong=\"H1992\"* sight|strong=\"H5869\"*. It|strong=\"H3588\"* may|strong=\"H6213\"* be|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H5869\"* consider|strong=\"H7200\"*, though|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* a|strong=\"H3068\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5869\"* shall|strong=\"H5869\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* your|strong=\"H3318\"* baggage|strong=\"H3627\"* by|strong=\"H3318\"* day|strong=\"H3119\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, as|strong=\"H3318\"* baggage|strong=\"H3627\"* for|strong=\"H3627\"* moving. You|strong=\"H5869\"* shall|strong=\"H5869\"* go|strong=\"H3318\"* out|strong=\"H3318\"* yourself at|strong=\"H3318\"* evening|strong=\"H6153\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, as|strong=\"H3318\"* when|strong=\"H3318\"* men go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* exile|strong=\"H1473\"*." + }, + { + "verseNum": 5, + "text": "Dig|strong=\"H2864\"* through|strong=\"H2864\"* the|strong=\"H3318\"* wall|strong=\"H7023\"* in|strong=\"H5869\"* their|strong=\"H3318\"* sight|strong=\"H5869\"*, and|strong=\"H5869\"* carry|strong=\"H3318\"* your|strong=\"H3318\"* baggage out|strong=\"H3318\"* that|strong=\"H5869\"* way." + }, + { + "verseNum": 6, + "text": "In|strong=\"H5921\"* their|strong=\"H5375\"* sight|strong=\"H5869\"* you|strong=\"H3588\"* shall|strong=\"H3478\"* bear|strong=\"H5375\"* it|strong=\"H5414\"* on|strong=\"H5921\"* your|strong=\"H5414\"* shoulder|strong=\"H3802\"*, and|strong=\"H3478\"* carry|strong=\"H5375\"* it|strong=\"H5414\"* out|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H6440\"* dark|strong=\"H5939\"*. You|strong=\"H3588\"* shall|strong=\"H3478\"* cover|strong=\"H3680\"* your|strong=\"H5414\"* face|strong=\"H6440\"*, so|strong=\"H5414\"* that|strong=\"H3588\"* you|strong=\"H3588\"* don’t see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5869\"* set|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H3318\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* did|strong=\"H6213\"* so|strong=\"H3651\"* as|strong=\"H6213\"* I|strong=\"H5921\"* was|strong=\"H3027\"* commanded|strong=\"H6680\"*. I|strong=\"H5921\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* my|strong=\"H5921\"* baggage|strong=\"H3627\"* by|strong=\"H3027\"* day|strong=\"H3119\"*, as|strong=\"H6213\"* baggage|strong=\"H3627\"* for|strong=\"H5921\"* moving, and|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"* I|strong=\"H5921\"* dug|strong=\"H2864\"* through|strong=\"H3027\"* the|strong=\"H5921\"* wall|strong=\"H7023\"* with|strong=\"H6213\"* my|strong=\"H5921\"* hand|strong=\"H3027\"*. I|strong=\"H5921\"* brought|strong=\"H3318\"* it|strong=\"H5921\"* out|strong=\"H3318\"* in|strong=\"H5921\"* the|strong=\"H5921\"* dark|strong=\"H5939\"*, and|strong=\"H3027\"* bore|strong=\"H5375\"* it|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* shoulder|strong=\"H3802\"* in|strong=\"H5921\"* their|strong=\"H5375\"* sight|strong=\"H5869\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* morning|strong=\"H1242\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, hasn’t the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, the|strong=\"H6213\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, said to|strong=\"H3478\"* you|strong=\"H6213\"*, ‘What|strong=\"H4100\"* are|strong=\"H1121\"* you|strong=\"H6213\"* doing|strong=\"H6213\"*?’" + }, + { + "verseNum": 10, + "text": "“Say|strong=\"H3478\"* to|strong=\"H3478\"* them|strong=\"H1992\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “This|strong=\"H2088\"* burden|strong=\"H4853\"* concerns the|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* among|strong=\"H8432\"* whom|strong=\"H1992\"* they|strong=\"H1992\"* are|strong=\"H1992\"*.”’" + }, + { + "verseNum": 11, + "text": "“Say, ‘I|strong=\"H3651\"* am your|strong=\"H6213\"* sign|strong=\"H4159\"*. As|strong=\"H6213\"* I|strong=\"H3651\"* have done|strong=\"H6213\"*, so|strong=\"H3651\"* will|strong=\"H6213\"* it|strong=\"H6213\"* be done|strong=\"H6213\"* to|strong=\"H3212\"* them|strong=\"H6213\"*. They|strong=\"H3651\"* will|strong=\"H6213\"* go|strong=\"H3212\"* into|strong=\"H3212\"* exile|strong=\"H1473\"*, into|strong=\"H3212\"* captivity|strong=\"H7628\"*." + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H6440\"* prince|strong=\"H5387\"* who|strong=\"H1931\"* is|strong=\"H1931\"* among|strong=\"H8432\"* them|strong=\"H6440\"* will|strong=\"H5869\"* bear|strong=\"H5375\"* his|strong=\"H5375\"* baggage on|strong=\"H7200\"* his|strong=\"H5375\"* shoulder|strong=\"H3802\"* in|strong=\"H8432\"* the|strong=\"H6440\"* dark|strong=\"H5939\"*, and|strong=\"H5869\"* will|strong=\"H5869\"* go|strong=\"H3318\"* out|strong=\"H3318\"*. They|strong=\"H3808\"* will|strong=\"H5869\"* dig|strong=\"H2864\"* through|strong=\"H8432\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* to|strong=\"H3318\"* carry|strong=\"H5375\"* things|strong=\"H3808\"* out|strong=\"H3318\"* that|strong=\"H7200\"* way|strong=\"H6440\"*. He|strong=\"H1931\"* will|strong=\"H5869\"* cover|strong=\"H3680\"* his|strong=\"H5375\"* face|strong=\"H6440\"*, because|strong=\"H6440\"* he|strong=\"H1931\"* will|strong=\"H5869\"* not|strong=\"H3808\"* see|strong=\"H7200\"* the|strong=\"H6440\"* land|strong=\"H6440\"* with|strong=\"H6440\"* his|strong=\"H5375\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* also|strong=\"H3778\"* spread|strong=\"H6566\"* my|strong=\"H7200\"* net|strong=\"H7568\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H3808\"* be|strong=\"H4191\"* taken|strong=\"H8610\"* in|strong=\"H5921\"* my|strong=\"H7200\"* snare|strong=\"H4686\"*. I|strong=\"H5921\"* will|strong=\"H3808\"* bring|strong=\"H4191\"* him|strong=\"H5921\"* to|strong=\"H4191\"* Babylon to|strong=\"H4191\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*; yet|strong=\"H3808\"* he|strong=\"H8033\"* will|strong=\"H3808\"* not|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H5921\"*, though he|strong=\"H8033\"* will|strong=\"H3808\"* die|strong=\"H4191\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3605\"* will|strong=\"H2719\"* scatter|strong=\"H2219\"* toward every|strong=\"H3605\"* wind|strong=\"H7307\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2719\"* around|strong=\"H5439\"* him|strong=\"H3605\"* to|strong=\"H7307\"* help|strong=\"H5828\"* him|strong=\"H3605\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* bands. I|strong=\"H3605\"* will|strong=\"H2719\"* draw|strong=\"H7324\"* out|strong=\"H7324\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* after them|strong=\"H5439\"*." + }, + { + "verseNum": 15, + "text": "“‘They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* scatter|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H3588\"* the|strong=\"H3588\"* countries." + }, + { + "verseNum": 16, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* leave|strong=\"H3498\"* a|strong=\"H3068\"* few|strong=\"H4557\"* men|strong=\"H3605\"* of|strong=\"H3068\"* them|strong=\"H1992\"* from|strong=\"H1471\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, from|strong=\"H1471\"* the|strong=\"H3605\"* famine|strong=\"H7458\"*, and|strong=\"H3068\"* from|strong=\"H1471\"* the|strong=\"H3605\"* pestilence|strong=\"H1698\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* may|strong=\"H3068\"* declare|strong=\"H5608\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* among|strong=\"H2719\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H1992\"* come|strong=\"H3045\"*. Then|strong=\"H4616\"* they|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, eat|strong=\"H3899\"* your|strong=\"H8354\"* bread|strong=\"H3899\"* with|strong=\"H3899\"* quaking|strong=\"H7494\"*, and|strong=\"H1121\"* drink|strong=\"H8354\"* your|strong=\"H8354\"* water|strong=\"H4325\"* with|strong=\"H3899\"* trembling|strong=\"H7269\"* and|strong=\"H1121\"* with|strong=\"H3899\"* fearfulness." + }, + { + "verseNum": 19, + "text": "Tell|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* the|strong=\"H3605\"* land, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H3069\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3478\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* Israel|strong=\"H3478\"*: “They|strong=\"H5971\"* will|strong=\"H5971\"* eat|strong=\"H3899\"* their|strong=\"H3605\"* bread|strong=\"H3899\"* with|strong=\"H3427\"* fearfulness and|strong=\"H3478\"* drink|strong=\"H8354\"* their|strong=\"H3605\"* water|strong=\"H4325\"* in|strong=\"H3427\"* dismay, that|strong=\"H5971\"* her|strong=\"H3605\"* land may|strong=\"H5971\"* be|strong=\"H3478\"* desolate|strong=\"H3456\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* that|strong=\"H5971\"* is|strong=\"H3478\"* therein|strong=\"H4393\"*, because|strong=\"H4616\"* of|strong=\"H3427\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* of|strong=\"H3427\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* therein|strong=\"H4393\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H3588\"* cities|strong=\"H5892\"* that|strong=\"H3588\"* are|strong=\"H3068\"* inhabited|strong=\"H3427\"* will|strong=\"H3068\"* be|strong=\"H1961\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* land will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 21, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 22, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, what|strong=\"H4100\"* is|strong=\"H2088\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1121\"* in|strong=\"H5921\"* the|strong=\"H3605\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying, ‘The|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* prolonged, and|strong=\"H1121\"* every|strong=\"H3605\"* vision|strong=\"H2377\"* fails’?" + }, + { + "verseNum": 23, + "text": "Tell|strong=\"H1696\"* them|strong=\"H7126\"* therefore|strong=\"H3651\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* will|strong=\"H3478\"* make|strong=\"H7673\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* to|strong=\"H1696\"* cease|strong=\"H7673\"*, and|strong=\"H3478\"* they|strong=\"H3588\"* will|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H5750\"* use|strong=\"H4911\"* it|strong=\"H7126\"* as|strong=\"H1697\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*;”’ but|strong=\"H3588\"* tell|strong=\"H1696\"* them|strong=\"H7126\"*, ‘“The|strong=\"H3605\"* days|strong=\"H3117\"* are|strong=\"H3117\"* at|strong=\"H3478\"* hand|strong=\"H7126\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* fulfillment|strong=\"H1697\"* of|strong=\"H3117\"* every|strong=\"H3605\"* vision|strong=\"H2377\"*." + }, + { + "verseNum": 24, + "text": "For|strong=\"H3588\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* any|strong=\"H3605\"* false|strong=\"H7723\"* vision|strong=\"H2377\"* nor|strong=\"H3808\"* flattering|strong=\"H2509\"* divination|strong=\"H4738\"* within|strong=\"H8432\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 25, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"*, and|strong=\"H3068\"* the|strong=\"H5002\"* word|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* will|strong=\"H3068\"* be|strong=\"H3808\"* performed|strong=\"H6213\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"* deferred|strong=\"H4900\"*; for|strong=\"H3588\"* in|strong=\"H3068\"* your|strong=\"H3068\"* days|strong=\"H3117\"*, rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* the|strong=\"H5002\"* word|strong=\"H1697\"* and|strong=\"H3068\"* will|strong=\"H3068\"* perform|strong=\"H6213\"* it|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 26, + "text": "Again|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 27, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2009\"*, they|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* say|strong=\"H3478\"*, ‘The|strong=\"H3117\"* vision|strong=\"H2377\"* that|strong=\"H3117\"* he|strong=\"H1931\"* sees|strong=\"H2372\"* is|strong=\"H1931\"* for|strong=\"H1004\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H3478\"* come|strong=\"H7350\"*, and|strong=\"H1121\"* he|strong=\"H1931\"* prophesies|strong=\"H5012\"* of|strong=\"H1121\"* times|strong=\"H6256\"* that|strong=\"H3117\"* are|strong=\"H3117\"* far|strong=\"H7350\"* off|strong=\"H7350\"*.’" + }, + { + "verseNum": 28, + "text": "“Therefore|strong=\"H3651\"* tell|strong=\"H1696\"* them|strong=\"H6213\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “None|strong=\"H3808\"* of|strong=\"H1697\"* my|strong=\"H3605\"* words|strong=\"H1697\"* will|strong=\"H1697\"* be|strong=\"H3808\"* deferred|strong=\"H4900\"* any|strong=\"H3605\"* more|strong=\"H5750\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H3541\"* speak|strong=\"H1696\"* will|strong=\"H1697\"* be|strong=\"H3808\"* performed|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5012\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* say|strong=\"H1697\"* to|strong=\"H3478\"* those|strong=\"H8085\"* who|strong=\"H3068\"* prophesy|strong=\"H5012\"* out of|strong=\"H1121\"* their|strong=\"H3068\"* own heart|strong=\"H3820\"*, ‘Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Woe|strong=\"H1945\"* to|strong=\"H1980\"* the|strong=\"H5921\"* foolish|strong=\"H5036\"* prophets|strong=\"H5030\"*, who|strong=\"H5030\"* follow|strong=\"H1980\"* their|strong=\"H7200\"* own spirit|strong=\"H7307\"*, and|strong=\"H1980\"* have|strong=\"H5030\"* seen|strong=\"H7200\"* nothing|strong=\"H1115\"*!" + }, + { + "verseNum": 4, + "text": "Israel|strong=\"H3478\"*, your|strong=\"H1961\"* prophets|strong=\"H5030\"* have|strong=\"H1961\"* been|strong=\"H1961\"* like|strong=\"H1961\"* foxes|strong=\"H7776\"* in|strong=\"H3478\"* the|strong=\"H1961\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H5921\"* have|strong=\"H3068\"* not|strong=\"H3808\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* the|strong=\"H5921\"* gaps|strong=\"H6556\"* or|strong=\"H3808\"* built up|strong=\"H5927\"* the|strong=\"H5921\"* wall|strong=\"H1447\"* for|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* battle|strong=\"H4421\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s day|strong=\"H3117\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* have|strong=\"H3068\"* seen|strong=\"H2372\"* falsehood|strong=\"H7723\"* and|strong=\"H6965\"* lying|strong=\"H3577\"* divination|strong=\"H7081\"*, who|strong=\"H3068\"* say|strong=\"H1697\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*;’ but|strong=\"H3808\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* sent|strong=\"H7971\"* them|strong=\"H7971\"*. They|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H3068\"* men to|strong=\"H3068\"* hope|strong=\"H3176\"* that|strong=\"H3068\"* the|strong=\"H5002\"* word|strong=\"H1697\"* would|strong=\"H3068\"* be|strong=\"H3808\"* confirmed|strong=\"H6965\"*." + }, + { + "verseNum": 7, + "text": "Haven’t you|strong=\"H3808\"* seen|strong=\"H2372\"* a|strong=\"H3068\"* false|strong=\"H7723\"* vision|strong=\"H4236\"*, and|strong=\"H3068\"* haven’t you|strong=\"H3808\"* spoken|strong=\"H1696\"* a|strong=\"H3068\"* lying|strong=\"H3577\"* divination|strong=\"H4738\"*, in|strong=\"H3068\"* that|strong=\"H3068\"* you|strong=\"H3808\"* say|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*;’ but|strong=\"H3808\"* I|strong=\"H3808\"* have|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*?”" + }, + { + "verseNum": 8, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Because|strong=\"H3282\"* you|strong=\"H3651\"* have|strong=\"H3282\"* spoken|strong=\"H1696\"* falsehood|strong=\"H7723\"* and|strong=\"H1696\"* seen|strong=\"H2372\"* lies|strong=\"H3577\"*, therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H1696\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“My|strong=\"H3045\"* hand|strong=\"H3027\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H3027\"* the|strong=\"H3588\"* prophets|strong=\"H5030\"* who|strong=\"H5971\"* see|strong=\"H2374\"* false|strong=\"H7723\"* visions|strong=\"H7723\"* and|strong=\"H3478\"* who|strong=\"H5971\"* utter|strong=\"H7080\"* lying|strong=\"H3577\"* divinations|strong=\"H7080\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* in|strong=\"H3478\"* the|strong=\"H3588\"* council|strong=\"H5475\"* of|strong=\"H1004\"* my|strong=\"H3045\"* people|strong=\"H5971\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3588\"* be|strong=\"H1961\"* written|strong=\"H3789\"* in|strong=\"H3478\"* the|strong=\"H3588\"* writing|strong=\"H3791\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* they|strong=\"H3588\"* enter into|strong=\"H3027\"* the|strong=\"H3588\"* land of|strong=\"H1004\"* Israel|strong=\"H3478\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 10, + "text": "“‘Because|strong=\"H3282\"*, even|strong=\"H1129\"* because|strong=\"H3282\"* they|strong=\"H3282\"* have|strong=\"H5971\"* seduced|strong=\"H2937\"* my|strong=\"H1129\"* people|strong=\"H5971\"*, saying, “Peace|strong=\"H7965\"*;” and|strong=\"H5971\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no peace|strong=\"H7965\"*. When|strong=\"H2009\"* one|strong=\"H1931\"* builds|strong=\"H1129\"* up|strong=\"H1129\"* a|strong=\"H3068\"* wall|strong=\"H2434\"*, behold|strong=\"H2009\"*, they|strong=\"H3282\"* plaster|strong=\"H2902\"* it|strong=\"H1931\"* with|strong=\"H5971\"* whitewash|strong=\"H8602\"*." + }, + { + "verseNum": 11, + "text": "Tell those|strong=\"H1961\"* who plaster|strong=\"H2902\"* it|strong=\"H1961\"* with|strong=\"H2902\"* whitewash|strong=\"H8602\"* that|strong=\"H5307\"* it|strong=\"H1961\"* will|strong=\"H1961\"* fall|strong=\"H5307\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* overflowing|strong=\"H7857\"* shower|strong=\"H1653\"*; and|strong=\"H5307\"* you|strong=\"H7307\"*, great hailstones, will|strong=\"H1961\"* fall|strong=\"H5307\"*. A|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* will|strong=\"H1961\"* tear|strong=\"H1234\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 12, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H5307\"* the|strong=\"H2009\"* wall|strong=\"H7023\"* has|strong=\"H2009\"* fallen|strong=\"H5307\"*, won’t it|strong=\"H3808\"* be|strong=\"H3808\"* said to|strong=\"H3808\"* you|strong=\"H3808\"*, “Where|strong=\"H3808\"* is|strong=\"H2009\"* the|strong=\"H2009\"* plaster|strong=\"H2902\"* with|strong=\"H2902\"* which|strong=\"H7023\"* you|strong=\"H3808\"* have|strong=\"H3808\"* plastered|strong=\"H2902\"* it|strong=\"H3808\"*?”" + }, + { + "verseNum": 13, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* will|strong=\"H1961\"* even|strong=\"H3651\"* tear|strong=\"H1234\"* it|strong=\"H3651\"* with|strong=\"H3651\"* a|strong=\"H3068\"* stormy|strong=\"H5591\"* wind|strong=\"H7307\"* in|strong=\"H1961\"* my|strong=\"H1961\"* wrath|strong=\"H2534\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* overflowing|strong=\"H7857\"* shower|strong=\"H1653\"* in|strong=\"H1961\"* my|strong=\"H1961\"* anger|strong=\"H2534\"*, and|strong=\"H7307\"* great hailstones in|strong=\"H1961\"* wrath|strong=\"H2534\"* to|strong=\"H1961\"* consume|strong=\"H3617\"* it|strong=\"H3651\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* break|strong=\"H2040\"* down|strong=\"H5307\"* the|strong=\"H3588\"* wall|strong=\"H7023\"* that|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* plastered|strong=\"H2902\"* with|strong=\"H3068\"* whitewash|strong=\"H8602\"*, and|strong=\"H3068\"* bring|strong=\"H5060\"* it|strong=\"H3588\"* down|strong=\"H5307\"* to|strong=\"H3068\"* the|strong=\"H3588\"* ground, so|strong=\"H3588\"* that|strong=\"H3588\"* its|strong=\"H3045\"* foundation|strong=\"H3247\"* will|strong=\"H3068\"* be|strong=\"H3068\"* uncovered|strong=\"H1540\"*. It|strong=\"H3588\"* will|strong=\"H3068\"* fall|strong=\"H5307\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* consumed|strong=\"H3615\"* in|strong=\"H3068\"* the|strong=\"H3588\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H3588\"*. Then|strong=\"H5307\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "Thus I will|strong=\"H2534\"* accomplish|strong=\"H3615\"* my|strong=\"H3615\"* wrath|strong=\"H2534\"* on|strong=\"H2534\"* the|strong=\"H3615\"* wall|strong=\"H7023\"*, and|strong=\"H2534\"* on|strong=\"H2534\"* those who have plastered|strong=\"H2902\"* it|strong=\"H3615\"* with|strong=\"H2902\"* whitewash|strong=\"H8602\"*. I will|strong=\"H2534\"* tell you|strong=\"H3615\"*, ‘The|strong=\"H3615\"* wall|strong=\"H7023\"* is|strong=\"H2534\"* no more, nor those who plastered|strong=\"H2902\"* it|strong=\"H3615\"*—" + }, + { + "verseNum": 16, + "text": "to|strong=\"H3478\"* wit, the|strong=\"H5002\"* prophets|strong=\"H5030\"* of|strong=\"H5030\"* Israel|strong=\"H3478\"* who|strong=\"H3478\"* prophesy|strong=\"H5012\"* concerning|strong=\"H5012\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3478\"* who|strong=\"H3478\"* see|strong=\"H2374\"* visions|strong=\"H2377\"* of|strong=\"H5030\"* peace|strong=\"H7965\"* for|strong=\"H3389\"* her|strong=\"H3389\"*, and|strong=\"H3478\"* there|strong=\"H7965\"* is|strong=\"H3478\"* no|strong=\"H5030\"* peace|strong=\"H7965\"*,’” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "You|strong=\"H6440\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* against|strong=\"H5921\"* the|strong=\"H6440\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* your|strong=\"H5921\"* people|strong=\"H5971\"*, who|strong=\"H5971\"* prophesy|strong=\"H5012\"* out|strong=\"H5921\"* of|strong=\"H1121\"* their|strong=\"H7760\"* own|strong=\"H5971\"* heart|strong=\"H3820\"*; and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*," + }, + { + "verseNum": 18, + "text": "and|strong=\"H3027\"* say, “The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Woe|strong=\"H1945\"* to|strong=\"H6213\"* the|strong=\"H3605\"* women who|strong=\"H3605\"* sew|strong=\"H8609\"* magic bands|strong=\"H7218\"* on|strong=\"H5921\"* all|strong=\"H3605\"* elbows and|strong=\"H3027\"* make|strong=\"H6213\"* veils|strong=\"H4555\"* for|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H3027\"* persons|strong=\"H5315\"* of|strong=\"H3027\"* every|strong=\"H3605\"* stature|strong=\"H6967\"* to|strong=\"H6213\"* hunt|strong=\"H6679\"* souls|strong=\"H5315\"*! Will|strong=\"H5971\"* you|strong=\"H3605\"* hunt|strong=\"H6679\"* the|strong=\"H3605\"* souls|strong=\"H5315\"* of|strong=\"H3027\"* my|strong=\"H3605\"* people|strong=\"H5971\"* and|strong=\"H3027\"* save|strong=\"H2421\"* souls|strong=\"H5315\"* alive|strong=\"H2421\"* for|strong=\"H5921\"* yourselves|strong=\"H5315\"*?" + }, + { + "verseNum": 19, + "text": "You|strong=\"H3808\"* have|strong=\"H5971\"* profaned|strong=\"H2490\"* me|strong=\"H5315\"* among|strong=\"H5971\"* my|strong=\"H8085\"* people|strong=\"H5971\"* for|strong=\"H4191\"* handfuls|strong=\"H8168\"* of|strong=\"H5971\"* barley|strong=\"H8184\"* and|strong=\"H3899\"* for|strong=\"H4191\"* pieces|strong=\"H6595\"* of|strong=\"H5971\"* bread|strong=\"H3899\"*, to|strong=\"H4191\"* kill|strong=\"H4191\"* the|strong=\"H8085\"* souls|strong=\"H5315\"* who|strong=\"H5971\"* should|strong=\"H3899\"* not|strong=\"H3808\"* die|strong=\"H4191\"* and|strong=\"H3899\"* to|strong=\"H4191\"* save|strong=\"H2421\"* the|strong=\"H8085\"* souls|strong=\"H5315\"* alive|strong=\"H2421\"* who|strong=\"H5971\"* should|strong=\"H3899\"* not|strong=\"H3808\"* live|strong=\"H2421\"*, by|strong=\"H4191\"* your|strong=\"H8085\"* lying|strong=\"H3577\"* to|strong=\"H4191\"* my|strong=\"H8085\"* people|strong=\"H5971\"* who|strong=\"H5971\"* listen|strong=\"H8085\"* to|strong=\"H4191\"* lies|strong=\"H3577\"*.’" + }, + { + "verseNum": 20, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* your|strong=\"H5921\"* magic bands|strong=\"H3704\"*, with|strong=\"H5921\"* which|strong=\"H8033\"* you|strong=\"H7971\"* hunt|strong=\"H6679\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* to|strong=\"H7971\"* make them|strong=\"H5921\"* fly|strong=\"H6524\"*, and|strong=\"H7971\"* I|strong=\"H2005\"* will|strong=\"H5315\"* tear|strong=\"H7167\"* them|strong=\"H5921\"* from|strong=\"H5921\"* your|strong=\"H5921\"* arms|strong=\"H2220\"*. I|strong=\"H2005\"* will|strong=\"H5315\"* let|strong=\"H7971\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* fly|strong=\"H6524\"* free|strong=\"H7971\"*, even|strong=\"H3651\"* the|strong=\"H5921\"* souls|strong=\"H5315\"* whom you|strong=\"H7971\"* ensnare like|strong=\"H3651\"* birds|strong=\"H6524\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* also|strong=\"H3068\"* tear|strong=\"H7167\"* your|strong=\"H3068\"* veils|strong=\"H4555\"* and|strong=\"H3068\"* deliver|strong=\"H5337\"* my|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*; and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"* to|strong=\"H3068\"* be|strong=\"H1961\"* ensnared. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "Because|strong=\"H3282\"* with|strong=\"H3027\"* lies|strong=\"H8267\"* you|strong=\"H7725\"* have|strong=\"H3027\"* grieved|strong=\"H3512\"* the|strong=\"H7725\"* heart|strong=\"H3820\"* of|strong=\"H3027\"* the|strong=\"H7725\"* righteous|strong=\"H6662\"*, whom I|strong=\"H3282\"* have|strong=\"H3027\"* not|strong=\"H3808\"* made|strong=\"H2388\"* sad|strong=\"H7451\"*; and|strong=\"H7725\"* strengthened|strong=\"H2388\"* the|strong=\"H7725\"* hands|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H7725\"* wicked|strong=\"H7563\"*, that|strong=\"H3027\"* he|strong=\"H3027\"* should|strong=\"H7563\"* not|strong=\"H3808\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wicked|strong=\"H7563\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* be|strong=\"H3808\"* saved|strong=\"H2421\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* see|strong=\"H2372\"* false|strong=\"H7723\"* visions|strong=\"H7723\"* nor|strong=\"H3808\"* practice|strong=\"H7080\"* divination|strong=\"H7081\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* my|strong=\"H3068\"* people|strong=\"H5971\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*. Then|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3478\"* some of|strong=\"H3427\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3427\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* to|strong=\"H3478\"* me|strong=\"H6440\"* and|strong=\"H3478\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H6440\"* men|strong=\"H1121\"* have|strong=\"H1121\"* taken|strong=\"H5927\"* their|strong=\"H5414\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* their|strong=\"H5414\"* heart|strong=\"H3820\"*, and|strong=\"H1121\"* put|strong=\"H5414\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1121\"* their|strong=\"H5414\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* their|strong=\"H5414\"* face|strong=\"H6440\"*. Should I|strong=\"H5414\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* at|strong=\"H5921\"* all|strong=\"H5414\"* by|strong=\"H5921\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H6440\"* and|strong=\"H3478\"* tell|strong=\"H1696\"* them|strong=\"H6440\"*, ‘The|strong=\"H6440\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Every|strong=\"H7760\"* man|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* who|strong=\"H3068\"* takes|strong=\"H7760\"* his|strong=\"H7760\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* and|strong=\"H3478\"* puts|strong=\"H7760\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* his|strong=\"H7760\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* his|strong=\"H7760\"* face|strong=\"H6440\"* then|strong=\"H6030\"* comes|strong=\"H5927\"* to|strong=\"H1696\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"*, I|strong=\"H3541\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"* him|strong=\"H6440\"* there|strong=\"H5927\"* according to|strong=\"H1696\"* the|strong=\"H6440\"* multitude|strong=\"H7230\"* of|strong=\"H1004\"* his|strong=\"H7760\"* idols|strong=\"H1544\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H3605\"* I|strong=\"H5921\"* may|strong=\"H3478\"* take|strong=\"H8610\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* in|strong=\"H5921\"* their|strong=\"H3605\"* own heart|strong=\"H3820\"*, because|strong=\"H5921\"* they|strong=\"H5921\"* are|strong=\"H3478\"* all|strong=\"H3605\"* estranged|strong=\"H2114\"* from|strong=\"H5921\"* me|strong=\"H5921\"* through|strong=\"H5921\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*.”’" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3651\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Return|strong=\"H7725\"*, and|strong=\"H3478\"* turn|strong=\"H7725\"* yourselves|strong=\"H3605\"* from|strong=\"H7725\"* your|strong=\"H3605\"* idols|strong=\"H1544\"*! Turn|strong=\"H7725\"* away|strong=\"H7725\"* your|strong=\"H3605\"* faces|strong=\"H6440\"* from|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 7, + "text": "“‘“For|strong=\"H3588\"* everyone of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H6440\"* strangers|strong=\"H1616\"* who|strong=\"H3068\"* live|strong=\"H1481\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, who|strong=\"H3068\"* separates|strong=\"H5144\"* himself|strong=\"H3820\"* from|strong=\"H6440\"* me|strong=\"H6440\"* and|strong=\"H3478\"* takes|strong=\"H7760\"* his|strong=\"H7760\"* idols|strong=\"H1544\"* into|strong=\"H5927\"* his|strong=\"H7760\"* heart|strong=\"H3820\"*, and|strong=\"H3478\"* puts|strong=\"H7760\"* the|strong=\"H6440\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* his|strong=\"H7760\"* iniquity|strong=\"H5771\"* before|strong=\"H6440\"* his|strong=\"H7760\"* face|strong=\"H6440\"*, and|strong=\"H3478\"* comes|strong=\"H5927\"* to|strong=\"H3478\"* the|strong=\"H6440\"* prophet|strong=\"H5030\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* for|strong=\"H3588\"* himself|strong=\"H3820\"* of|strong=\"H1004\"* me|strong=\"H6440\"*, I|strong=\"H3588\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* answer|strong=\"H6030\"* him|strong=\"H6440\"* by|strong=\"H3068\"* myself|strong=\"H3820\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* that|strong=\"H3588\"* man|strong=\"H6440\"* and|strong=\"H3068\"* will|strong=\"H3068\"* make|strong=\"H5414\"* him|strong=\"H5414\"* an|strong=\"H5414\"* astonishment|strong=\"H8074\"*, for|strong=\"H3588\"* a|strong=\"H3068\"* sign and|strong=\"H3068\"* a|strong=\"H3068\"* proverb|strong=\"H4912\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* him|strong=\"H5414\"* off|strong=\"H3772\"* from|strong=\"H6440\"* among|strong=\"H8432\"* my|strong=\"H5414\"* people|strong=\"H5971\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“‘“If|strong=\"H3588\"* the|strong=\"H5921\"* prophet|strong=\"H5030\"* is|strong=\"H3068\"* deceived|strong=\"H6601\"* and|strong=\"H3478\"* speaks|strong=\"H1696\"* a|strong=\"H3068\"* word|strong=\"H1697\"*, I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* deceived|strong=\"H6601\"* that|strong=\"H3588\"* prophet|strong=\"H5030\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H3068\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* him|strong=\"H5921\"* from|strong=\"H5921\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H5375\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*. The|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5030\"* the|strong=\"H5375\"* prophet|strong=\"H5030\"* will|strong=\"H1961\"* be|strong=\"H1961\"* even as|strong=\"H1961\"* the|strong=\"H5375\"* iniquity|strong=\"H5771\"* of|strong=\"H5030\"* him|strong=\"H5375\"* who|strong=\"H5030\"* seeks|strong=\"H1875\"* him|strong=\"H5375\"*," + }, + { + "verseNum": 11, + "text": "that|strong=\"H5971\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* may|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* go|strong=\"H5971\"* astray|strong=\"H8582\"* from|strong=\"H3478\"* me|strong=\"H1961\"*, neither|strong=\"H3808\"* defile|strong=\"H2930\"* themselves any|strong=\"H3605\"* more|strong=\"H5750\"* with|strong=\"H1004\"* all|strong=\"H3605\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*; but|strong=\"H3808\"* that|strong=\"H5971\"* they|strong=\"H3808\"* may|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H3478\"* I|strong=\"H3808\"* may|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3069\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 13, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, when|strong=\"H3588\"* a|strong=\"H3068\"* land sins|strong=\"H2398\"* against|strong=\"H5921\"* me|strong=\"H7971\"* by|strong=\"H3027\"* committing|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"*, and|strong=\"H1121\"* I|strong=\"H3588\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* break|strong=\"H7665\"* the|strong=\"H5921\"* staff|strong=\"H4294\"* of|strong=\"H1121\"* its|strong=\"H5921\"* bread|strong=\"H3899\"* and|strong=\"H1121\"* send|strong=\"H7971\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H5921\"* man|strong=\"H1121\"* and|strong=\"H1121\"* animal—" + }, + { + "verseNum": 14, + "text": "though these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1992\"*, Noah|strong=\"H5146\"*, Daniel|strong=\"H1840\"*, and|strong=\"H6666\"* Job, were|strong=\"H1961\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* only|strong=\"H5337\"* their|strong=\"H1992\"* own|strong=\"H1961\"* souls|strong=\"H5315\"* by|strong=\"H1961\"* their|strong=\"H1992\"* righteousness|strong=\"H6666\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“If|strong=\"H3863\"* I|strong=\"H6440\"* cause|strong=\"H1961\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"* to|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, and|strong=\"H6440\"* they|strong=\"H6440\"* ravage it|strong=\"H6440\"* and|strong=\"H6440\"* it|strong=\"H6440\"* is|strong=\"H1961\"* made|strong=\"H1961\"* desolate|strong=\"H8077\"*, so|strong=\"H1961\"* that|strong=\"H2416\"* no|strong=\"H1097\"* man|strong=\"H7451\"* may|strong=\"H1961\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* because|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* animals|strong=\"H2416\"*—" + }, + { + "verseNum": 16, + "text": "though these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1121\"* were|strong=\"H1961\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, as|strong=\"H1961\"* I|strong=\"H1121\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would deliver|strong=\"H5337\"* neither|strong=\"H5337\"* sons|strong=\"H1121\"* nor|strong=\"H1121\"* daughters|strong=\"H1323\"*. They|strong=\"H1992\"* only|strong=\"H5337\"* would be|strong=\"H1961\"* delivered|strong=\"H5337\"*, but|strong=\"H1961\"* the|strong=\"H5002\"* land would be|strong=\"H1961\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 17, + "text": "“Or|strong=\"H4480\"* if|strong=\"H1931\"* I|strong=\"H5921\"* bring|strong=\"H5674\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* that|strong=\"H1931\"* land, and|strong=\"H2719\"* say, ‘Sword|strong=\"H2719\"*, go|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* land, so|strong=\"H4480\"* that|strong=\"H1931\"* I|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H1931\"* man|strong=\"H5674\"* and|strong=\"H2719\"* animal’—" + }, + { + "verseNum": 18, + "text": "though|strong=\"H3588\"* these|strong=\"H1992\"* three|strong=\"H7969\"* men|strong=\"H1121\"* were|strong=\"H1121\"* in|strong=\"H8432\"* it|strong=\"H3588\"*, as|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would deliver|strong=\"H5337\"* neither|strong=\"H3808\"* sons|strong=\"H1121\"* nor|strong=\"H3808\"* daughters|strong=\"H1323\"*, but|strong=\"H3588\"* they|strong=\"H1992\"* only|strong=\"H3588\"* would be|strong=\"H3808\"* delivered|strong=\"H5337\"* themselves|strong=\"H1992\"*." + }, + { + "verseNum": 19, + "text": "“Or|strong=\"H4480\"* if|strong=\"H1931\"* I|strong=\"H5921\"* send|strong=\"H7971\"* a|strong=\"H3068\"* pestilence|strong=\"H1698\"* into|strong=\"H5921\"* that|strong=\"H1931\"* land, and|strong=\"H7971\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* it|strong=\"H1931\"* in|strong=\"H5921\"* blood|strong=\"H1818\"*, to|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H1931\"* man and|strong=\"H7971\"* animal—" + }, + { + "verseNum": 20, + "text": "though Noah|strong=\"H5146\"*, Daniel|strong=\"H1840\"*, and|strong=\"H1121\"* Job, were|strong=\"H1121\"* in|strong=\"H8432\"* it|strong=\"H8432\"*, as|strong=\"H5315\"* I|strong=\"H5315\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* neither|strong=\"H5337\"* son|strong=\"H1121\"* nor|strong=\"H1121\"* daughter|strong=\"H1323\"*; they|strong=\"H1992\"* would|strong=\"H5315\"* deliver|strong=\"H5337\"* only|strong=\"H5337\"* their|strong=\"H1992\"* own|strong=\"H5315\"* souls|strong=\"H5315\"* by|strong=\"H5337\"* their|strong=\"H1992\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 21, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “How|strong=\"H3588\"* much more|strong=\"H4480\"* when|strong=\"H3588\"* I|strong=\"H3588\"* send|strong=\"H7971\"* my|strong=\"H7971\"* four severe|strong=\"H7451\"* judgments|strong=\"H8201\"* on|strong=\"H7971\"* Jerusalem|strong=\"H3389\"*—the|strong=\"H3588\"* sword|strong=\"H2719\"*, the|strong=\"H3588\"* famine|strong=\"H7458\"*, the|strong=\"H3588\"* evil|strong=\"H7451\"* animals|strong=\"H2416\"*, and|strong=\"H7971\"* the|strong=\"H3588\"* pestilence|strong=\"H1698\"*—to|strong=\"H7971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H3588\"* man|strong=\"H7451\"* and|strong=\"H7971\"* animal|strong=\"H2416\"*!" + }, + { + "verseNum": 22, + "text": "Yet|strong=\"H3605\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* will|strong=\"H1121\"* be|strong=\"H1121\"* left|strong=\"H3498\"* a|strong=\"H3068\"* remnant|strong=\"H6413\"* in|strong=\"H5921\"* it|strong=\"H5921\"* that|strong=\"H7200\"* will|strong=\"H1121\"* be|strong=\"H1121\"* carried|strong=\"H3318\"* out|strong=\"H3318\"*, both|strong=\"H3605\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. Behold|strong=\"H2009\"*, they|strong=\"H5921\"* will|strong=\"H1121\"* come|strong=\"H3318\"* out|strong=\"H3318\"* to|strong=\"H3318\"* you|strong=\"H3605\"*, and|strong=\"H1121\"* you|strong=\"H3605\"* will|strong=\"H1121\"* see|strong=\"H7200\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H1121\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*. Then|strong=\"H3318\"* you|strong=\"H3605\"* will|strong=\"H1121\"* be|strong=\"H1121\"* comforted|strong=\"H5162\"* concerning|strong=\"H5921\"* the|strong=\"H3605\"* evil|strong=\"H7451\"* that|strong=\"H7200\"* I|strong=\"H2005\"* have|strong=\"H1121\"* brought|strong=\"H3318\"* on|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H5921\"* concerning|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H2005\"* have|strong=\"H1121\"* brought|strong=\"H3318\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3588\"* will|strong=\"H3808\"* comfort|strong=\"H5162\"* you|strong=\"H3588\"*, when|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* their|strong=\"H3605\"* way|strong=\"H1870\"* and|strong=\"H1870\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*; then|strong=\"H6213\"* you|strong=\"H3588\"* will|strong=\"H3808\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* not|strong=\"H3808\"* done|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3045\"* done|strong=\"H6213\"* in|strong=\"H6213\"* it|strong=\"H3588\"* without|strong=\"H3808\"* cause|strong=\"H2600\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 15, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, what|strong=\"H4100\"* is|strong=\"H4100\"* the|strong=\"H3605\"* vine|strong=\"H1612\"* tree|strong=\"H6086\"* more|strong=\"H1961\"* than|strong=\"H3605\"* any|strong=\"H3605\"* tree|strong=\"H6086\"*, the|strong=\"H3605\"* vine|strong=\"H1612\"* branch|strong=\"H2156\"* which|strong=\"H4100\"* is|strong=\"H4100\"* among the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H1121\"* the|strong=\"H3605\"* forest|strong=\"H3293\"*?" + }, + { + "verseNum": 3, + "text": "Will|strong=\"H6213\"* wood|strong=\"H6086\"* be|strong=\"H6086\"* taken|strong=\"H3947\"* of|strong=\"H3627\"* it|strong=\"H5921\"* to|strong=\"H5921\"* make|strong=\"H6213\"* anything|strong=\"H3605\"*? Will|strong=\"H6213\"* men|strong=\"H6213\"* take|strong=\"H3947\"* a|strong=\"H3068\"* pin|strong=\"H3489\"* of|strong=\"H3627\"* it|strong=\"H5921\"* to|strong=\"H5921\"* hang|strong=\"H8518\"* any|strong=\"H3605\"* vessel|strong=\"H3627\"* on|strong=\"H5921\"* it|strong=\"H5921\"*?" + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H5414\"* is|strong=\"H2009\"* cast|strong=\"H5414\"* into|strong=\"H8432\"* the|strong=\"H5414\"* fire for|strong=\"H5414\"* fuel; the|strong=\"H5414\"* fire has|strong=\"H2009\"* devoured both|strong=\"H8147\"* its|strong=\"H5414\"* ends|strong=\"H7098\"*, and|strong=\"H8147\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H5414\"* is|strong=\"H2009\"* burned|strong=\"H2787\"*. Is|strong=\"H2009\"* it|strong=\"H5414\"* profitable|strong=\"H6743\"* for|strong=\"H5414\"* any|strong=\"H5414\"* work|strong=\"H4399\"*?" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H1961\"* whole|strong=\"H8549\"*, it|strong=\"H3588\"* was|strong=\"H1961\"* suitable for|strong=\"H3588\"* no|strong=\"H3808\"* work|strong=\"H4399\"*. How|strong=\"H3588\"* much|strong=\"H6213\"* less|strong=\"H3588\"*, when|strong=\"H3588\"* the|strong=\"H3588\"* fire has|strong=\"H1961\"* devoured it|strong=\"H3588\"*, and|strong=\"H6213\"* it|strong=\"H3588\"* has|strong=\"H1961\"* been|strong=\"H1961\"* burned|strong=\"H2787\"*, will|strong=\"H1961\"* it|strong=\"H3588\"* yet|strong=\"H5750\"* be|strong=\"H1961\"* suitable for|strong=\"H3588\"* any|strong=\"H5750\"* work|strong=\"H4399\"*?”" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “As|strong=\"H3651\"* the|strong=\"H5414\"* vine|strong=\"H1612\"* wood|strong=\"H6086\"* among|strong=\"H3427\"* the|strong=\"H5414\"* trees|strong=\"H6086\"* of|strong=\"H3427\"* the|strong=\"H5414\"* forest|strong=\"H3293\"*, which|strong=\"H6086\"* I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* fire for|strong=\"H3427\"* fuel, so|strong=\"H3651\"* I|strong=\"H5414\"* will|strong=\"H3389\"* give|strong=\"H5414\"* the|strong=\"H5414\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* them|strong=\"H5414\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H6440\"* fire, but|strong=\"H3588\"* the|strong=\"H6440\"* fire will|strong=\"H3068\"* still|strong=\"H3588\"* devour them|strong=\"H5414\"*. Then|strong=\"H3318\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* set|strong=\"H7760\"* my|strong=\"H5414\"* face|strong=\"H6440\"* against|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* the|strong=\"H5002\"* land desolate|strong=\"H8077\"*, because|strong=\"H3282\"* they|strong=\"H3282\"* have|strong=\"H5414\"* acted|strong=\"H4603\"* unfaithfully|strong=\"H4604\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 16, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, cause Jerusalem|strong=\"H3389\"* to|strong=\"H3389\"* know|strong=\"H3045\"* her|strong=\"H3045\"* abominations|strong=\"H8441\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H3389\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*: “Your|strong=\"H3541\"* origin|strong=\"H4351\"* and|strong=\"H3389\"* your|strong=\"H3541\"* birth|strong=\"H4138\"* is|strong=\"H3389\"* of|strong=\"H3069\"* the|strong=\"H3069\"* land of|strong=\"H3069\"* the|strong=\"H3069\"* Canaanite|strong=\"H3669\"*. An Amorite was|strong=\"H3389\"* your|strong=\"H3541\"* father, and|strong=\"H3389\"* your|strong=\"H3541\"* mother was|strong=\"H3389\"* a|strong=\"H3068\"* Hittite|strong=\"H2850\"*." + }, + { + "verseNum": 4, + "text": "As|strong=\"H3117\"* for|strong=\"H4325\"* your|strong=\"H3808\"* birth|strong=\"H3205\"*, in|strong=\"H3117\"* the|strong=\"H3205\"* day|strong=\"H3117\"* you|strong=\"H3117\"* were|strong=\"H4325\"* born|strong=\"H3205\"* your|strong=\"H3808\"* navel|strong=\"H8270\"* was|strong=\"H3117\"* not|strong=\"H3808\"* cut|strong=\"H3772\"*. You|strong=\"H3117\"* weren’t washed|strong=\"H7364\"* in|strong=\"H3117\"* water|strong=\"H4325\"* to|strong=\"H3117\"* cleanse you|strong=\"H3117\"*. You|strong=\"H3117\"* weren’t salted|strong=\"H4414\"* at|strong=\"H3117\"* all|strong=\"H3772\"*, nor|strong=\"H3808\"* wrapped|strong=\"H2853\"* in|strong=\"H3117\"* blankets at|strong=\"H3117\"* all|strong=\"H3772\"*." + }, + { + "verseNum": 5, + "text": "No|strong=\"H3808\"* eye|strong=\"H5869\"* pitied|strong=\"H2550\"* you|strong=\"H6440\"*, to|strong=\"H6213\"* do|strong=\"H6213\"* any|strong=\"H6213\"* of|strong=\"H3117\"* these|strong=\"H6213\"* things|strong=\"H3808\"* to|strong=\"H6213\"* you|strong=\"H6440\"*, to|strong=\"H6213\"* have|strong=\"H5869\"* compassion|strong=\"H2550\"* on|strong=\"H5921\"* you|strong=\"H6440\"*; but|strong=\"H3808\"* you|strong=\"H6440\"* were|strong=\"H3117\"* cast|strong=\"H7993\"* out|strong=\"H7993\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, because|strong=\"H5921\"* you|strong=\"H6440\"* were|strong=\"H3117\"* abhorred|strong=\"H1604\"* in|strong=\"H5921\"* the|strong=\"H6440\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H6440\"* were|strong=\"H3117\"* born|strong=\"H3205\"*." + }, + { + "verseNum": 6, + "text": "“‘“When|strong=\"H7200\"* I|strong=\"H5921\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7200\"* saw|strong=\"H7200\"* you|strong=\"H5921\"* wallowing in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, I|strong=\"H5921\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Though you|strong=\"H5921\"* are|strong=\"H1818\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, live|strong=\"H2421\"*!’ Yes|strong=\"H7200\"*, I|strong=\"H5921\"* said to|strong=\"H5921\"* you|strong=\"H5921\"*, ‘Though you|strong=\"H5921\"* are|strong=\"H1818\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, live|strong=\"H2421\"*!’" + }, + { + "verseNum": 7, + "text": "I|strong=\"H5414\"* caused|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5414\"* multiply|strong=\"H7235\"* as|strong=\"H5414\"* that|strong=\"H5414\"* which|strong=\"H7704\"* grows|strong=\"H6779\"* in|strong=\"H5414\"* the|strong=\"H5414\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* you|strong=\"H5414\"* increased|strong=\"H7235\"* and|strong=\"H7704\"* grew|strong=\"H1431\"* great|strong=\"H1431\"*, and|strong=\"H7704\"* you|strong=\"H5414\"* attained to|strong=\"H5414\"* excellent|strong=\"H1431\"* beauty. Your|strong=\"H5414\"* breasts|strong=\"H7699\"* were|strong=\"H7699\"* formed|strong=\"H3559\"*, and|strong=\"H7704\"* your|strong=\"H5414\"* hair|strong=\"H8181\"* grew|strong=\"H1431\"*; yet|strong=\"H5414\"* you|strong=\"H5414\"* were|strong=\"H7699\"* naked|strong=\"H5903\"* and|strong=\"H7704\"* bare|strong=\"H6181\"*." + }, + { + "verseNum": 8, + "text": "“‘“Now|strong=\"H1961\"* when|strong=\"H1961\"* I|strong=\"H2009\"* passed|strong=\"H5674\"* by|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7200\"* looked|strong=\"H7200\"* at|strong=\"H5921\"* you|strong=\"H5921\"*, behold|strong=\"H2009\"*, your|strong=\"H5921\"* time|strong=\"H6256\"* was|strong=\"H1961\"* the|strong=\"H5002\"* time|strong=\"H6256\"* of|strong=\"H5921\"* love|strong=\"H1730\"*; and|strong=\"H7200\"* I|strong=\"H2009\"* spread|strong=\"H6566\"* my|strong=\"H7200\"* garment|strong=\"H3671\"* over|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H7200\"* covered|strong=\"H3680\"* your|strong=\"H5921\"* nakedness|strong=\"H6172\"*. Yes|strong=\"H2009\"*, I|strong=\"H2009\"* pledged myself to|strong=\"H1961\"* you|strong=\"H5921\"* and|strong=\"H7200\"* entered into|strong=\"H5921\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H7200\"* you|strong=\"H5921\"* became|strong=\"H1961\"* mine|strong=\"H5674\"*." + }, + { + "verseNum": 9, + "text": "“‘“Then I|strong=\"H5921\"* washed|strong=\"H7364\"* you|strong=\"H5921\"* with|strong=\"H5921\"* water|strong=\"H4325\"*. Yes, I|strong=\"H5921\"* thoroughly washed|strong=\"H7364\"* away|strong=\"H7857\"* your|strong=\"H5921\"* blood|strong=\"H1818\"* from|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H1818\"* I|strong=\"H5921\"* anointed|strong=\"H5480\"* you|strong=\"H5921\"* with|strong=\"H5921\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 10, + "text": "I clothed|strong=\"H3847\"* you|strong=\"H3847\"* also with|strong=\"H3847\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"* and|strong=\"H8336\"* put|strong=\"H3847\"* leather sandals|strong=\"H5274\"* on|strong=\"H3847\"* you|strong=\"H3847\"*. I dressed|strong=\"H3847\"* you|strong=\"H3847\"* with|strong=\"H3847\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* and|strong=\"H8336\"* covered|strong=\"H3680\"* you|strong=\"H3847\"* with|strong=\"H3847\"* silk|strong=\"H4897\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* decked|strong=\"H5710\"* you|strong=\"H5414\"* with|strong=\"H5921\"* ornaments|strong=\"H5716\"*, put|strong=\"H5414\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* your|strong=\"H5414\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* put|strong=\"H5414\"* a|strong=\"H3068\"* chain|strong=\"H7242\"* on|strong=\"H5921\"* your|strong=\"H5414\"* neck|strong=\"H1627\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* ring|strong=\"H5141\"* on|strong=\"H5921\"* your|strong=\"H5414\"* nose, earrings|strong=\"H5141\"* in|strong=\"H5921\"* your|strong=\"H5414\"* ears, and|strong=\"H7218\"* a|strong=\"H3068\"* beautiful|strong=\"H8597\"* crown|strong=\"H5850\"* on|strong=\"H5921\"* your|strong=\"H5414\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 13, + "text": "Thus you|strong=\"H8081\"* were|strong=\"H3701\"* decked|strong=\"H5710\"* with|strong=\"H5710\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*. Your|strong=\"H6743\"* clothing was|strong=\"H3966\"* of|strong=\"H2091\"* fine|strong=\"H5560\"* linen|strong=\"H8336\"*, silk|strong=\"H4897\"*, and|strong=\"H3701\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"*. You|strong=\"H8081\"* ate fine|strong=\"H5560\"* flour|strong=\"H5560\"*, honey|strong=\"H1706\"*, and|strong=\"H3701\"* oil|strong=\"H8081\"*. You|strong=\"H8081\"* were|strong=\"H3701\"* exceedingly|strong=\"H3966\"* beautiful|strong=\"H3302\"*, and|strong=\"H3701\"* you|strong=\"H8081\"* prospered|strong=\"H6743\"* to|strong=\"H3701\"* royal|strong=\"H4410\"* estate." + }, + { + "verseNum": 14, + "text": "Your|strong=\"H5921\"* renown|strong=\"H8034\"* went|strong=\"H3318\"* out|strong=\"H3318\"* among|strong=\"H5921\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* for|strong=\"H3588\"* your|strong=\"H5921\"* beauty|strong=\"H3308\"*; for|strong=\"H3588\"* it|strong=\"H7760\"* was|strong=\"H8034\"* perfect|strong=\"H3632\"*, through|strong=\"H5921\"* my|strong=\"H7760\"* majesty|strong=\"H1926\"* which|strong=\"H1931\"* I|strong=\"H3588\"* had|strong=\"H3588\"* put|strong=\"H7760\"* on|strong=\"H5921\"* you|strong=\"H3588\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘“But|strong=\"H1961\"* you|strong=\"H3605\"* trusted in|strong=\"H5921\"* your|strong=\"H3605\"* beauty|strong=\"H3308\"*, and|strong=\"H5674\"* played|strong=\"H2181\"* the|strong=\"H3605\"* prostitute|strong=\"H2181\"* because|strong=\"H5921\"* of|strong=\"H8034\"* your|strong=\"H3605\"* renown|strong=\"H8034\"*, and|strong=\"H5674\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* your|strong=\"H3605\"* prostitution on|strong=\"H5921\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5921\"*. It|strong=\"H5921\"* was|strong=\"H8034\"* his|strong=\"H3605\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* took|strong=\"H3947\"* some of|strong=\"H5921\"* your|strong=\"H3947\"* garments, and|strong=\"H6213\"* made|strong=\"H6213\"* for|strong=\"H5921\"* yourselves|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* decked with|strong=\"H6213\"* various|strong=\"H2921\"* colors|strong=\"H2921\"*, and|strong=\"H6213\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* on|strong=\"H5921\"* them|strong=\"H5921\"*. This|strong=\"H6213\"* shouldn’t happen|strong=\"H1961\"*, neither|strong=\"H3808\"* shall|strong=\"H3808\"* it|strong=\"H5921\"* be|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "You|strong=\"H5414\"* also|strong=\"H6213\"* took|strong=\"H3947\"* your|strong=\"H5414\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"* of|strong=\"H3627\"* my|strong=\"H5414\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* of|strong=\"H3627\"* my|strong=\"H5414\"* silver|strong=\"H3701\"*, which|strong=\"H2091\"* I|strong=\"H5414\"* had|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"*, and|strong=\"H3701\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourself|strong=\"H6213\"* images|strong=\"H6754\"* of|strong=\"H3627\"* men|strong=\"H2145\"*, and|strong=\"H3701\"* played|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"* with|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H5414\"* took|strong=\"H3947\"* your|strong=\"H5414\"* embroidered|strong=\"H7553\"* garments, covered|strong=\"H3680\"* them|strong=\"H5414\"*, and|strong=\"H6440\"* set|strong=\"H5414\"* my|strong=\"H5414\"* oil|strong=\"H8081\"* and|strong=\"H6440\"* my|strong=\"H5414\"* incense|strong=\"H7004\"* before|strong=\"H6440\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 19, + "text": "My|strong=\"H5414\"* bread|strong=\"H3899\"* also|strong=\"H3899\"* which|strong=\"H3069\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* you|strong=\"H5414\"*, fine|strong=\"H5560\"* flour|strong=\"H5560\"*, oil|strong=\"H8081\"*, and|strong=\"H3899\"* honey|strong=\"H1706\"*, with|strong=\"H6440\"* which|strong=\"H3069\"* I|strong=\"H5414\"* fed you|strong=\"H5414\"*, you|strong=\"H5414\"* even set|strong=\"H5414\"* it|strong=\"H5414\"* before|strong=\"H6440\"* them|strong=\"H5414\"* for|strong=\"H6440\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"*; and|strong=\"H3899\"* so|strong=\"H1961\"* it|strong=\"H5414\"* was|strong=\"H1961\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 20, + "text": "“‘“Moreover you|strong=\"H3947\"* have|strong=\"H1121\"* taken|strong=\"H3947\"* your|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3947\"* daughters|strong=\"H1323\"*, whom you|strong=\"H3947\"* have|strong=\"H1121\"* borne|strong=\"H3205\"* to|strong=\"H3205\"* me|strong=\"H3947\"*, and|strong=\"H1121\"* you|strong=\"H3947\"* have|strong=\"H1121\"* sacrificed|strong=\"H2076\"* these|strong=\"H3947\"* to|strong=\"H3205\"* them|strong=\"H3947\"* to|strong=\"H3205\"* be|strong=\"H1121\"* devoured. Was|strong=\"H1121\"* your|strong=\"H3947\"* prostitution a|strong=\"H3068\"* small|strong=\"H4592\"* matter|strong=\"H4592\"*," + }, + { + "verseNum": 21, + "text": "that|strong=\"H5414\"* you|strong=\"H5414\"* have|strong=\"H1121\"* slain|strong=\"H7819\"* my|strong=\"H5414\"* children|strong=\"H1121\"* and|strong=\"H1121\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* up|strong=\"H5414\"*, in|strong=\"H1121\"* causing them|strong=\"H5414\"* to|strong=\"H5414\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5414\"* fire to|strong=\"H5414\"* them|strong=\"H5414\"*?" + }, + { + "verseNum": 22, + "text": "In|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* and|strong=\"H3117\"* your|strong=\"H3605\"* prostitution you|strong=\"H3605\"* have|strong=\"H1961\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* youth|strong=\"H5271\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* were|strong=\"H1961\"* naked|strong=\"H5903\"* and|strong=\"H3117\"* bare|strong=\"H6181\"*, and|strong=\"H3117\"* were|strong=\"H1961\"* wallowing in|strong=\"H3117\"* your|strong=\"H3605\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 23, + "text": "“‘“It|strong=\"H1961\"* has|strong=\"H1961\"* happened|strong=\"H1961\"* after|strong=\"H1961\"* all|strong=\"H3605\"* your|strong=\"H3605\"* wickedness|strong=\"H7451\"*—woe, woe to|strong=\"H1961\"* you|strong=\"H3605\"*!” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*—" + }, + { + "verseNum": 24, + "text": "“that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1129\"* built|strong=\"H1129\"* for|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* vaulted place|strong=\"H7413\"*, and|strong=\"H6213\"* have|strong=\"H1129\"* made|strong=\"H6213\"* yourselves|strong=\"H3605\"* a|strong=\"H3068\"* lofty place|strong=\"H7413\"* in|strong=\"H6213\"* every|strong=\"H3605\"* street|strong=\"H7339\"*." + }, + { + "verseNum": 25, + "text": "You|strong=\"H3605\"* have|strong=\"H1129\"* built|strong=\"H1129\"* your|strong=\"H3605\"* lofty place|strong=\"H7413\"* at|strong=\"H7218\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* every|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H7218\"* have|strong=\"H1129\"* made|strong=\"H1129\"* your|strong=\"H3605\"* beauty|strong=\"H3308\"* an|strong=\"H1129\"* abomination, and|strong=\"H7218\"* have|strong=\"H1129\"* opened|strong=\"H6589\"* your|strong=\"H3605\"* feet|strong=\"H7272\"* to|strong=\"H1870\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*, and|strong=\"H7218\"* multiplied|strong=\"H7235\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 26, + "text": "You|strong=\"H1320\"* have|strong=\"H1121\"* also|strong=\"H1121\"* committed sexual immorality with|strong=\"H4714\"* the|strong=\"H2181\"* Egyptians|strong=\"H4714\"*, your|strong=\"H7235\"* neighbors|strong=\"H7934\"*, great|strong=\"H7235\"* of|strong=\"H1121\"* flesh|strong=\"H1320\"*; and|strong=\"H1121\"* have|strong=\"H1121\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* prostitution, to|strong=\"H4714\"* provoke|strong=\"H3707\"* me|strong=\"H3707\"* to|strong=\"H4714\"* anger|strong=\"H3707\"*." + }, + { + "verseNum": 27, + "text": "See|strong=\"H2009\"* therefore|strong=\"H5921\"*, I|strong=\"H5414\"* have|strong=\"H6430\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* have|strong=\"H6430\"* diminished|strong=\"H1639\"* your|strong=\"H5414\"* portion|strong=\"H2706\"*, and|strong=\"H3027\"* delivered|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5921\"* the|strong=\"H5921\"* will|strong=\"H5315\"* of|strong=\"H1323\"* those|strong=\"H5921\"* who|strong=\"H5315\"* hate|strong=\"H8130\"* you|strong=\"H5414\"*, the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, who|strong=\"H5315\"* are|strong=\"H3027\"* ashamed|strong=\"H3637\"* of|strong=\"H1323\"* your|strong=\"H5414\"* lewd|strong=\"H2154\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H3808\"* have|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* also|strong=\"H1571\"* with|strong=\"H7646\"* the|strong=\"H2181\"* Assyrians|strong=\"H1121\"*, because|strong=\"H1115\"* you|strong=\"H3808\"* were|strong=\"H1121\"* insatiable; yes|strong=\"H1571\"*, you|strong=\"H3808\"* have|strong=\"H1121\"* played|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H7646\"* them|strong=\"H1121\"*, and|strong=\"H1121\"* yet|strong=\"H1571\"* you|strong=\"H3808\"* weren’t satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 29, + "text": "You|strong=\"H3808\"* have|strong=\"H1571\"* moreover|strong=\"H1571\"* multiplied|strong=\"H7235\"* your|strong=\"H7235\"* prostitution to|strong=\"H3808\"* the|strong=\"H1571\"* land of|strong=\"H7646\"* merchants|strong=\"H3667\"*, to|strong=\"H3808\"* Chaldea|strong=\"H3778\"*; and|strong=\"H1571\"* yet|strong=\"H1571\"* you|strong=\"H3808\"* weren’t satisfied|strong=\"H7646\"* with|strong=\"H7646\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 30, + "text": "“‘“How|strong=\"H4100\"* weak|strong=\"H3605\"* is|strong=\"H4100\"* your|strong=\"H3605\"* heart|strong=\"H3826\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “since you|strong=\"H3605\"* do|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*, the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H4639\"* an|strong=\"H6213\"* impudent prostitute|strong=\"H2181\"*;" + }, + { + "verseNum": 31, + "text": "in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* build|strong=\"H1129\"* your|strong=\"H3605\"* vaulted place|strong=\"H1961\"* at|strong=\"H6213\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* every|strong=\"H3605\"* way|strong=\"H1870\"*, and|strong=\"H7218\"* make|strong=\"H6213\"* your|strong=\"H3605\"* lofty place|strong=\"H1961\"* in|strong=\"H6213\"* every|strong=\"H3605\"* street|strong=\"H7339\"*, and|strong=\"H7218\"* have|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"* as|strong=\"H1961\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* scorn pay." + }, + { + "verseNum": 32, + "text": "“‘“Adulterous|strong=\"H5003\"* wife, who|strong=\"H2114\"* takes|strong=\"H3947\"* strangers|strong=\"H2114\"* instead|strong=\"H8478\"* of|strong=\"H8478\"* her|strong=\"H3947\"* husband!" + }, + { + "verseNum": 33, + "text": "People give|strong=\"H5414\"* gifts|strong=\"H5083\"* to|strong=\"H5414\"* all|strong=\"H3605\"* prostitutes|strong=\"H2181\"*; but|strong=\"H3605\"* you|strong=\"H5414\"* give|strong=\"H5414\"* your|strong=\"H3605\"* gifts|strong=\"H5083\"* to|strong=\"H5414\"* all|strong=\"H3605\"* your|strong=\"H3605\"* lovers, and|strong=\"H3605\"* bribe|strong=\"H7809\"* them|strong=\"H5414\"*, that|strong=\"H3605\"* they|strong=\"H3605\"* may|strong=\"H5414\"* come to|strong=\"H5414\"* you|strong=\"H5414\"* on|strong=\"H3605\"* every|strong=\"H3605\"* side|strong=\"H5439\"* for|strong=\"H3605\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 34, + "text": "You|strong=\"H5414\"* are|strong=\"H1961\"* different|strong=\"H2016\"* from|strong=\"H4480\"* other women in|strong=\"H5414\"* your|strong=\"H5414\"* prostitution, in|strong=\"H5414\"* that|strong=\"H5414\"* no|strong=\"H3808\"* one|strong=\"H3808\"* follows you|strong=\"H5414\"* to|strong=\"H1961\"* play|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"*; and|strong=\"H1961\"* whereas you|strong=\"H5414\"* give|strong=\"H5414\"* hire, and|strong=\"H1961\"* no|strong=\"H3808\"* hire is|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* you|strong=\"H5414\"*, therefore|strong=\"H1961\"* you|strong=\"H5414\"* are|strong=\"H1961\"* different|strong=\"H2016\"*.”’" + }, + { + "verseNum": 35, + "text": "“Therefore|strong=\"H3651\"*, prostitute|strong=\"H2181\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 36, + "text": "‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Because|strong=\"H5921\"* your|strong=\"H3605\"* filthiness|strong=\"H5178\"* was|strong=\"H1121\"* poured|strong=\"H8210\"* out|strong=\"H8210\"*, and|strong=\"H1121\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"* uncovered|strong=\"H1540\"* through|strong=\"H5921\"* your|strong=\"H3605\"* prostitution with|strong=\"H5921\"* your|strong=\"H3605\"* lovers; and|strong=\"H1121\"* because|strong=\"H5921\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1121\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1121\"* your|strong=\"H3605\"* children|strong=\"H1121\"*, that|strong=\"H3605\"* you|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H5921\"* them|strong=\"H5414\"*;" + }, + { + "verseNum": 37, + "text": "therefore|strong=\"H3651\"* see|strong=\"H7200\"*, I|strong=\"H2005\"* will|strong=\"H3605\"* gather|strong=\"H6908\"* all|strong=\"H3605\"* your|strong=\"H3605\"* lovers, with|strong=\"H5921\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* taken|strong=\"H1540\"* pleasure|strong=\"H6149\"*, and|strong=\"H7200\"* all|strong=\"H3605\"* those|strong=\"H3605\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* loved, with|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* whom you|strong=\"H3605\"* have|strong=\"H7200\"* hated|strong=\"H8130\"*. I|strong=\"H2005\"* will|strong=\"H3605\"* even|strong=\"H3651\"* gather|strong=\"H6908\"* them|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H3605\"* on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"*, and|strong=\"H7200\"* will|strong=\"H3605\"* uncover|strong=\"H1540\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"* to|strong=\"H5921\"* them|strong=\"H5921\"*, that|strong=\"H7200\"* they|strong=\"H3651\"* may see|strong=\"H7200\"* all|strong=\"H3605\"* your|strong=\"H3605\"* nakedness|strong=\"H6172\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* as|strong=\"H5414\"* women who break wedlock|strong=\"H5003\"* and|strong=\"H4941\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* are|strong=\"H8199\"* judged|strong=\"H8199\"*; and|strong=\"H4941\"* I|strong=\"H5414\"* will|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5414\"* you|strong=\"H5414\"* the|strong=\"H5414\"* blood|strong=\"H1818\"* of|strong=\"H1818\"* wrath|strong=\"H2534\"* and|strong=\"H4941\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 39, + "text": "I|strong=\"H5414\"* will|strong=\"H3027\"* also|strong=\"H3027\"* give|strong=\"H5414\"* you|strong=\"H5414\"* into|strong=\"H3027\"* their|strong=\"H5414\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* they|strong=\"H3027\"* will|strong=\"H3027\"* throw down|strong=\"H5422\"* your|strong=\"H5414\"* vaulted place|strong=\"H5414\"*, and|strong=\"H3027\"* break|strong=\"H2040\"* down|strong=\"H5422\"* your|strong=\"H5414\"* lofty places|strong=\"H7413\"*. They|strong=\"H3027\"* will|strong=\"H3027\"* strip|strong=\"H6584\"* you|strong=\"H5414\"* of|strong=\"H3027\"* your|strong=\"H5414\"* clothes and|strong=\"H3027\"* take|strong=\"H3947\"* your|strong=\"H5414\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"*. They|strong=\"H3027\"* will|strong=\"H3027\"* leave|strong=\"H3240\"* you|strong=\"H5414\"* naked|strong=\"H5903\"* and|strong=\"H3027\"* bare|strong=\"H6181\"*." + }, + { + "verseNum": 40, + "text": "They|strong=\"H5921\"* will|strong=\"H2719\"* also bring|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* company|strong=\"H6951\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H2719\"* they|strong=\"H5921\"* will|strong=\"H2719\"* stone|strong=\"H7275\"* you|strong=\"H5921\"* with|strong=\"H5921\"* stones, and|strong=\"H2719\"* thrust you|strong=\"H5921\"* through|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* swords|strong=\"H2719\"*." + }, + { + "verseNum": 41, + "text": "They|strong=\"H3808\"* will|strong=\"H1571\"* burn|strong=\"H8313\"* your|strong=\"H5414\"* houses|strong=\"H1004\"* with|strong=\"H8313\"* fire, and|strong=\"H1004\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H1004\"* you|strong=\"H5414\"* in|strong=\"H6213\"* the|strong=\"H5414\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* many|strong=\"H7227\"* women. I|strong=\"H5414\"* will|strong=\"H1571\"* cause|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H6213\"* cease|strong=\"H7673\"* from|strong=\"H5869\"* playing|strong=\"H2181\"* the|strong=\"H5414\"* prostitute|strong=\"H2181\"*, and|strong=\"H1004\"* you|strong=\"H5414\"* will|strong=\"H1571\"* also|strong=\"H1571\"* give|strong=\"H5414\"* no|strong=\"H3808\"* hire any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 42, + "text": "So|strong=\"H4480\"* I|strong=\"H3808\"* will|strong=\"H3808\"* cause my|strong=\"H5493\"* wrath|strong=\"H2534\"* toward|strong=\"H4480\"* you|strong=\"H5117\"* to|strong=\"H4480\"* rest|strong=\"H5117\"*, and|strong=\"H8252\"* my|strong=\"H5493\"* jealousy|strong=\"H7068\"* will|strong=\"H3808\"* depart|strong=\"H5493\"* from|strong=\"H4480\"* you|strong=\"H5117\"*. I|strong=\"H3808\"* will|strong=\"H3808\"* be|strong=\"H3808\"* quiet|strong=\"H8252\"*, and|strong=\"H8252\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* angry|strong=\"H3707\"* any|strong=\"H4480\"* more|strong=\"H4480\"*." + }, + { + "verseNum": 43, + "text": "“‘“Because|strong=\"H5921\"* you|strong=\"H5414\"* have|strong=\"H1571\"* not|strong=\"H3808\"* remembered|strong=\"H2142\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3605\"* youth|strong=\"H5271\"*, but|strong=\"H3808\"* have|strong=\"H1571\"* raged against|strong=\"H5921\"* me|strong=\"H5414\"* in|strong=\"H5921\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*; therefore|strong=\"H5921\"*, behold|strong=\"H3808\"*, I|strong=\"H3117\"* also|strong=\"H1571\"* will|strong=\"H1571\"* bring|strong=\"H5414\"* your|strong=\"H3605\"* way|strong=\"H1870\"* on|strong=\"H5921\"* your|strong=\"H3605\"* head|strong=\"H7218\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: “and|strong=\"H3117\"* you|strong=\"H5414\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* commit|strong=\"H6213\"* this|strong=\"H6213\"* lewdness|strong=\"H2154\"* with|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 44, + "text": "“‘“Behold|strong=\"H2009\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* uses proverbs|strong=\"H4911\"* will|strong=\"H1323\"* use|strong=\"H4911\"* this|strong=\"H4911\"* proverb|strong=\"H4911\"* against|strong=\"H5921\"* you|strong=\"H3605\"*, saying, ‘As|strong=\"H3605\"* is|strong=\"H2009\"* the|strong=\"H3605\"* mother, so|strong=\"H5921\"* is|strong=\"H2009\"* her|strong=\"H3605\"* daughter|strong=\"H1323\"*.’" + }, + { + "verseNum": 45, + "text": "You are|strong=\"H1121\"* the|strong=\"H1121\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* your|strong=\"H1121\"* mother, who|strong=\"H1121\"* loathes her|strong=\"H1602\"* husband and|strong=\"H1121\"* her|strong=\"H1602\"* children|strong=\"H1121\"*; and|strong=\"H1121\"* you are|strong=\"H1121\"* the|strong=\"H1121\"* sister of|strong=\"H1121\"* your|strong=\"H1121\"* sisters, who|strong=\"H1121\"* loathed|strong=\"H1602\"* their|strong=\"H1602\"* husbands and|strong=\"H1121\"* their|strong=\"H1602\"* children|strong=\"H1121\"*. Your|strong=\"H1121\"* mother was|strong=\"H1121\"* a|strong=\"H3068\"* Hittite|strong=\"H2850\"*, and|strong=\"H1121\"* your|strong=\"H1121\"* father|strong=\"H1121\"* an Amorite." + }, + { + "verseNum": 46, + "text": "Your|strong=\"H5921\"* elder|strong=\"H1419\"* sister is|strong=\"H1931\"* Samaria|strong=\"H8111\"*, who|strong=\"H1931\"* dwells|strong=\"H3427\"* at|strong=\"H3427\"* your|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, she|strong=\"H1931\"* and|strong=\"H1419\"* her|strong=\"H5921\"* daughters|strong=\"H1323\"*; and|strong=\"H1419\"* your|strong=\"H5921\"* younger|strong=\"H6996\"* sister, who|strong=\"H1931\"* dwells|strong=\"H3427\"* at|strong=\"H3427\"* your|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"*, is|strong=\"H1931\"* Sodom|strong=\"H5467\"* with|strong=\"H5921\"* her|strong=\"H5921\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 47, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H4592\"* not|strong=\"H3808\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* their|strong=\"H3605\"* ways|strong=\"H1870\"*, nor|strong=\"H3808\"* done|strong=\"H6213\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"*; but|strong=\"H3808\"* soon|strong=\"H4592\"* you|strong=\"H3605\"* were|strong=\"H1870\"* more|strong=\"H3808\"* corrupt|strong=\"H7843\"* than|strong=\"H3808\"* they|strong=\"H3808\"* in|strong=\"H1980\"* all|strong=\"H3605\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 48, + "text": "As|strong=\"H6213\"* I|strong=\"H6213\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “Sodom|strong=\"H5467\"* your|strong=\"H6213\"* sister has|strong=\"H6213\"* not|strong=\"H6213\"* done|strong=\"H6213\"*, she|strong=\"H1931\"* nor her|strong=\"H1931\"* daughters|strong=\"H1323\"*, as|strong=\"H6213\"* you|strong=\"H6213\"* have|strong=\"H1323\"* done|strong=\"H6213\"*, you|strong=\"H6213\"* and|strong=\"H6213\"* your|strong=\"H6213\"* daughters|strong=\"H1323\"*." + }, + { + "verseNum": 49, + "text": "“‘“Behold|strong=\"H2009\"*, this|strong=\"H2088\"* was|strong=\"H1961\"* the|strong=\"H2388\"* iniquity|strong=\"H5771\"* of|strong=\"H1323\"* your|strong=\"H1961\"* sister Sodom|strong=\"H5467\"*: pride|strong=\"H1347\"*, fullness of|strong=\"H1323\"* bread|strong=\"H3899\"*, and|strong=\"H3027\"* prosperous ease|strong=\"H7962\"* was|strong=\"H1961\"* in|strong=\"H3899\"* her|strong=\"H1961\"* and|strong=\"H3027\"* in|strong=\"H3899\"* her|strong=\"H1961\"* daughters|strong=\"H1323\"*. She|strong=\"H3808\"* also|strong=\"H3027\"* didn’t strengthen|strong=\"H2388\"* the|strong=\"H2388\"* hand|strong=\"H3027\"* of|strong=\"H1323\"* the|strong=\"H2388\"* poor|strong=\"H6041\"* and|strong=\"H3027\"* needy|strong=\"H6041\"*." + }, + { + "verseNum": 50, + "text": "They|strong=\"H6213\"* were|strong=\"H7200\"* arrogant and|strong=\"H6440\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"* before|strong=\"H6440\"* me|strong=\"H6440\"*. Therefore|strong=\"H6213\"* I|strong=\"H7200\"* took|strong=\"H5493\"* them|strong=\"H6440\"* away|strong=\"H5493\"* when|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 51, + "text": "Samaria|strong=\"H8111\"* hasn’t committed|strong=\"H6213\"* half|strong=\"H2677\"* of|strong=\"H3605\"* your|strong=\"H3605\"* sins|strong=\"H2403\"*; but|strong=\"H3808\"* you|strong=\"H3605\"* have|strong=\"H3605\"* multiplied|strong=\"H7235\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* more|strong=\"H7235\"* than|strong=\"H7235\"* they|strong=\"H3808\"*, and|strong=\"H6213\"* have|strong=\"H3605\"* justified|strong=\"H6663\"* your|strong=\"H3605\"* sisters by|strong=\"H3808\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H2403\"* you|strong=\"H3605\"* have|strong=\"H3605\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 52, + "text": "You|strong=\"H4480\"* also|strong=\"H1571\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* own shame|strong=\"H3639\"* yourself|strong=\"H5375\"*, in|strong=\"H1571\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* given|strong=\"H5375\"* judgment|strong=\"H6419\"* for|strong=\"H6419\"* your|strong=\"H5375\"* sisters; through|strong=\"H4480\"* your|strong=\"H5375\"* sins|strong=\"H2403\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* committed|strong=\"H8581\"* more|strong=\"H4480\"* abominable|strong=\"H8581\"* than|strong=\"H4480\"* they|strong=\"H2004\"*, they|strong=\"H2004\"* are|strong=\"H2403\"* more|strong=\"H4480\"* righteous|strong=\"H6663\"* than|strong=\"H4480\"* you|strong=\"H4480\"*. Yes|strong=\"H1571\"*, be|strong=\"H1571\"* also|strong=\"H1571\"* confounded, and|strong=\"H2403\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* shame|strong=\"H3639\"*, in|strong=\"H1571\"* that|strong=\"H4480\"* you|strong=\"H4480\"* have|strong=\"H1571\"* justified|strong=\"H6663\"* your|strong=\"H5375\"* sisters." + }, + { + "verseNum": 53, + "text": "“‘“I|strong=\"H8432\"* will|strong=\"H1323\"* reverse|strong=\"H7725\"* their|strong=\"H7725\"* captivity|strong=\"H7622\"*, the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* Sodom|strong=\"H5467\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, and|strong=\"H7725\"* the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* Samaria|strong=\"H8111\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, and|strong=\"H7725\"* the|strong=\"H8432\"* captivity|strong=\"H7622\"* of|strong=\"H1323\"* your|strong=\"H7725\"* captives|strong=\"H7628\"* among|strong=\"H8432\"* them|strong=\"H7725\"*;" + }, + { + "verseNum": 54, + "text": "that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H6213\"* bear|strong=\"H5375\"* your|strong=\"H3605\"* own shame|strong=\"H3639\"*, and|strong=\"H6213\"* may|strong=\"H6213\"* be|strong=\"H5375\"* ashamed|strong=\"H3637\"* because|strong=\"H4616\"* of|strong=\"H3605\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H3605\"* done|strong=\"H6213\"*, in|strong=\"H6213\"* that|strong=\"H3605\"* you|strong=\"H3605\"* are|strong=\"H6213\"* a|strong=\"H3068\"* comfort|strong=\"H5162\"* to|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 55, + "text": "Your|strong=\"H7725\"* sisters, Sodom|strong=\"H5467\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"*, will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*; and|strong=\"H7725\"* Samaria|strong=\"H8111\"* and|strong=\"H7725\"* her|strong=\"H7725\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*; and|strong=\"H7725\"* you|strong=\"H7725\"* and|strong=\"H7725\"* your|strong=\"H7725\"* daughters|strong=\"H1323\"* will|strong=\"H1323\"* return|strong=\"H7725\"* to|strong=\"H7725\"* your|strong=\"H7725\"* former|strong=\"H6927\"* estate|strong=\"H6927\"*." + }, + { + "verseNum": 56, + "text": "For|strong=\"H3117\"* your|strong=\"H1961\"* sister Sodom|strong=\"H5467\"* was|strong=\"H1961\"* not|strong=\"H3808\"* mentioned|strong=\"H8052\"* by|strong=\"H3117\"* your|strong=\"H1961\"* mouth|strong=\"H6310\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H1961\"* pride|strong=\"H1347\"*," + }, + { + "verseNum": 57, + "text": "before|strong=\"H2962\"* your|strong=\"H3605\"* wickedness|strong=\"H7451\"* was|strong=\"H7451\"* uncovered|strong=\"H1540\"*, as|strong=\"H3644\"* at|strong=\"H6430\"* the|strong=\"H3605\"* time|strong=\"H6256\"* of|strong=\"H1323\"* the|strong=\"H3605\"* reproach|strong=\"H2781\"* of|strong=\"H1323\"* the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* Syria, and|strong=\"H6430\"* of|strong=\"H1323\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6430\"* around|strong=\"H5439\"* her|strong=\"H3605\"*, the|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H3605\"* Philistines|strong=\"H6430\"*, who|strong=\"H3605\"* despise|strong=\"H7590\"* you|strong=\"H3605\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 58, + "text": "You|strong=\"H5375\"* have|strong=\"H3068\"* borne|strong=\"H5375\"* your|strong=\"H3068\"* lewdness|strong=\"H2154\"* and|strong=\"H3068\"* your|strong=\"H3068\"* abominations|strong=\"H8441\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 59, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* will|strong=\"H3069\"* also|strong=\"H3541\"* deal|strong=\"H6213\"* with|strong=\"H1285\"* you|strong=\"H3588\"* as|strong=\"H6213\"* you|strong=\"H3588\"* have|strong=\"H3588\"* done|strong=\"H6213\"*, who|strong=\"H3588\"* have|strong=\"H3588\"* despised the|strong=\"H3588\"* oath in|strong=\"H6213\"* breaking|strong=\"H6565\"* the|strong=\"H3588\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 60, + "text": "Nevertheless I|strong=\"H3117\"* will|strong=\"H3117\"* remember|strong=\"H2142\"* my|strong=\"H6965\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H2142\"* youth|strong=\"H5271\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H3117\"* establish|strong=\"H6965\"* an|strong=\"H6965\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 61, + "text": "Then|strong=\"H3947\"* you|strong=\"H5414\"* will|strong=\"H5414\"* remember|strong=\"H2142\"* your|strong=\"H5414\"* ways|strong=\"H1870\"* and|strong=\"H1419\"* be|strong=\"H3808\"* ashamed|strong=\"H3637\"* when|strong=\"H4480\"* you|strong=\"H5414\"* receive|strong=\"H3947\"* your|strong=\"H5414\"* sisters, your|strong=\"H5414\"* elder|strong=\"H1419\"* sisters and|strong=\"H1419\"* your|strong=\"H5414\"* younger|strong=\"H6996\"*; and|strong=\"H1419\"* I|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H5414\"* daughters|strong=\"H1323\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H1870\"* your|strong=\"H5414\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 62, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* establish|strong=\"H6965\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H3068\"* you|strong=\"H3588\"*. Then|strong=\"H6965\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 63, + "text": "that|strong=\"H3605\"* you|strong=\"H6440\"* may|strong=\"H1961\"* remember|strong=\"H2142\"*, and|strong=\"H6440\"* be|strong=\"H1961\"* confounded, and|strong=\"H6440\"* never|strong=\"H3808\"* open|strong=\"H6440\"* your|strong=\"H3605\"* mouth|strong=\"H6310\"* any|strong=\"H3605\"* more|strong=\"H5750\"* because|strong=\"H6440\"* of|strong=\"H6440\"* your|strong=\"H3605\"* shame|strong=\"H3639\"*, when|strong=\"H1961\"* I|strong=\"H3808\"* have|strong=\"H1961\"* forgiven|strong=\"H3722\"* you|strong=\"H6440\"* all|strong=\"H3605\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H1961\"* done|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 17, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell a|strong=\"H3068\"* riddle|strong=\"H2420\"*, and|strong=\"H1121\"* speak|strong=\"H4911\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* to|strong=\"H3478\"* the|strong=\"H1121\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1419\"* say, ‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “A|strong=\"H3068\"* great|strong=\"H1419\"* eagle|strong=\"H5404\"* with|strong=\"H5404\"* great|strong=\"H1419\"* wings|strong=\"H3671\"* and|strong=\"H1419\"* long|strong=\"H1419\"* feathers|strong=\"H5133\"*, full|strong=\"H4392\"* of|strong=\"H4392\"* feathers|strong=\"H5133\"* which|strong=\"H3844\"* had various|strong=\"H7553\"* colors|strong=\"H7553\"*, came to|strong=\"H3947\"* Lebanon|strong=\"H3844\"* and|strong=\"H1419\"* took|strong=\"H3947\"* the|strong=\"H3947\"* top|strong=\"H6788\"* of|strong=\"H4392\"* the|strong=\"H3947\"* cedar." + }, + { + "verseNum": 4, + "text": "He|strong=\"H7760\"* cropped off|strong=\"H6998\"* the|strong=\"H7760\"* topmost|strong=\"H7218\"* of|strong=\"H5892\"* its|strong=\"H7760\"* young|strong=\"H3242\"* twigs|strong=\"H3242\"*, and|strong=\"H5892\"* carried it|strong=\"H7760\"* to|strong=\"H5892\"* a|strong=\"H3068\"* land of|strong=\"H5892\"* traffic. He|strong=\"H7760\"* planted it|strong=\"H7760\"* in|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* of|strong=\"H5892\"* merchants|strong=\"H7402\"*." + }, + { + "verseNum": 5, + "text": "“‘“He|strong=\"H5414\"* also took|strong=\"H3947\"* some|strong=\"H7227\"* of|strong=\"H4325\"* the|strong=\"H5921\"* seed|strong=\"H2233\"* of|strong=\"H4325\"* the|strong=\"H5921\"* land|strong=\"H7704\"* and|strong=\"H7704\"* planted|strong=\"H5414\"* it|strong=\"H5414\"* in|strong=\"H5921\"* fruitful|strong=\"H2233\"* soil|strong=\"H7704\"*. He|strong=\"H5414\"* placed|strong=\"H5414\"* it|strong=\"H5414\"* beside|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*. He|strong=\"H5414\"* set|strong=\"H7760\"* it|strong=\"H5414\"* as|strong=\"H5414\"* a|strong=\"H3068\"* willow|strong=\"H6851\"* tree|strong=\"H6851\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H6213\"* grew|strong=\"H6779\"* and|strong=\"H7971\"* became|strong=\"H1961\"* a|strong=\"H3068\"* spreading|strong=\"H5628\"* vine|strong=\"H1612\"* of|strong=\"H8478\"* low|strong=\"H8217\"* stature|strong=\"H6967\"*, whose branches|strong=\"H1808\"* turned|strong=\"H6437\"* toward|strong=\"H6437\"* him|strong=\"H7971\"*, and|strong=\"H7971\"* its|strong=\"H6213\"* roots|strong=\"H8328\"* were|strong=\"H1961\"* under|strong=\"H8478\"* him|strong=\"H7971\"*. So|strong=\"H6213\"* it|strong=\"H6213\"* became|strong=\"H1961\"* a|strong=\"H3068\"* vine|strong=\"H1612\"*, produced|strong=\"H6213\"* branches|strong=\"H1808\"*, and|strong=\"H7971\"* shot|strong=\"H7971\"* out|strong=\"H7971\"* sprigs|strong=\"H6288\"*." + }, + { + "verseNum": 7, + "text": "“‘“There|strong=\"H2009\"* was|strong=\"H1961\"* also|strong=\"H2063\"* another|strong=\"H3671\"* great|strong=\"H1419\"* eagle|strong=\"H5404\"* with|strong=\"H5921\"* great|strong=\"H1419\"* wings|strong=\"H3671\"* and|strong=\"H7971\"* many|strong=\"H7227\"* feathers|strong=\"H5133\"*. Behold|strong=\"H2009\"*, this|strong=\"H2063\"* vine|strong=\"H1612\"* bent|strong=\"H3719\"* its|strong=\"H5921\"* roots|strong=\"H8328\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H7971\"* shot|strong=\"H7971\"* out|strong=\"H7971\"* its|strong=\"H5921\"* branches|strong=\"H1808\"* toward|strong=\"H5921\"* him|strong=\"H5921\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* ground where|strong=\"H5921\"* it|strong=\"H5921\"* was|strong=\"H1961\"* planted|strong=\"H4302\"*, that|strong=\"H1961\"* he|strong=\"H5921\"* might water|strong=\"H8248\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* was|strong=\"H1961\"* planted|strong=\"H8362\"* in|strong=\"H6213\"* a|strong=\"H3068\"* good|strong=\"H2896\"* soil|strong=\"H7704\"* by|strong=\"H4325\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*, that|strong=\"H1931\"* it|strong=\"H1931\"* might produce|strong=\"H6529\"* branches|strong=\"H6057\"* and|strong=\"H6213\"* that|strong=\"H1931\"* it|strong=\"H1931\"* might bear|strong=\"H5375\"* fruit|strong=\"H6529\"*, that|strong=\"H1931\"* it|strong=\"H1931\"* might be|strong=\"H1961\"* a|strong=\"H3068\"* good|strong=\"H2896\"* vine|strong=\"H1612\"*.”’" + }, + { + "verseNum": 9, + "text": "“Say, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Will|strong=\"H5971\"* it|strong=\"H5375\"* prosper|strong=\"H6743\"*? Won’t he|strong=\"H3605\"* pull|strong=\"H5423\"* up|strong=\"H5375\"* its|strong=\"H3605\"* roots|strong=\"H8328\"* and|strong=\"H1419\"* cut|strong=\"H7082\"* off|strong=\"H5423\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"*, that|strong=\"H5971\"* it|strong=\"H5375\"* may|strong=\"H5971\"* wither|strong=\"H3001\"*, that|strong=\"H5971\"* all|strong=\"H3605\"* its|strong=\"H3605\"* fresh springing|strong=\"H6780\"* leaves|strong=\"H2964\"* may|strong=\"H5971\"* wither|strong=\"H3001\"*? It|strong=\"H5375\"* can|strong=\"H2220\"*’t be|strong=\"H3808\"* raised|strong=\"H5375\"* from|strong=\"H5971\"* its|strong=\"H3605\"* roots|strong=\"H8328\"* by|strong=\"H3808\"* a|strong=\"H3068\"* strong|strong=\"H1419\"* arm|strong=\"H2220\"* or|strong=\"H3808\"* many|strong=\"H7227\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "Yes|strong=\"H2009\"*, behold|strong=\"H2009\"*, being planted|strong=\"H8362\"*, will|strong=\"H7307\"* it|strong=\"H5921\"* prosper|strong=\"H6743\"*? Won’t it|strong=\"H5921\"* utterly|strong=\"H3001\"* wither|strong=\"H3001\"* when|strong=\"H5060\"* the|strong=\"H5921\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* touches|strong=\"H5060\"* it|strong=\"H5921\"*? It|strong=\"H5921\"* will|strong=\"H7307\"* wither|strong=\"H3001\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ground where|strong=\"H5921\"* it|strong=\"H5921\"* grew|strong=\"H6780\"*.”’”" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Say now|strong=\"H4994\"* to|strong=\"H3389\"* the|strong=\"H3947\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, ‘Don’t you|strong=\"H3947\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these|strong=\"H3947\"* things|strong=\"H3808\"* mean?’ Tell|strong=\"H3045\"* them|strong=\"H3947\"*, ‘Behold|strong=\"H2009\"*, the|strong=\"H3947\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H4428\"* to|strong=\"H3389\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H4428\"* took|strong=\"H3947\"* its|strong=\"H3045\"* king|strong=\"H4428\"*, and|strong=\"H4428\"* its|strong=\"H3045\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* brought|strong=\"H3947\"* them|strong=\"H3947\"* to|strong=\"H3389\"* him|strong=\"H3947\"* to|strong=\"H3389\"* Babylon." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1285\"* took|strong=\"H3947\"* one|strong=\"H2233\"* of|strong=\"H2233\"* the|strong=\"H3947\"* royal|strong=\"H4410\"* offspring|strong=\"H2233\"*,+ 17:13 or, seed* and|strong=\"H1285\"* made|strong=\"H3772\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* him|strong=\"H3947\"*. He|strong=\"H1285\"* also brought|strong=\"H3947\"* him|strong=\"H3947\"* under an|strong=\"H3947\"* oath, and|strong=\"H1285\"* took|strong=\"H3947\"* away|strong=\"H3947\"* the|strong=\"H3947\"* mighty of|strong=\"H2233\"* the|strong=\"H3947\"* land," + }, + { + "verseNum": 14, + "text": "that|strong=\"H1961\"* the|strong=\"H5375\"* kingdom|strong=\"H4467\"* might|strong=\"H4467\"* be|strong=\"H1961\"* brought|strong=\"H5375\"* low|strong=\"H8217\"*, that|strong=\"H1961\"* it|strong=\"H5375\"* might|strong=\"H4467\"* not|strong=\"H1115\"* lift|strong=\"H5375\"* itself up|strong=\"H5375\"*, but|strong=\"H1961\"* that|strong=\"H1961\"* by|strong=\"H5975\"* keeping|strong=\"H8104\"* his|strong=\"H5375\"* covenant|strong=\"H1285\"* it|strong=\"H5375\"* might|strong=\"H4467\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 15, + "text": "But|strong=\"H5971\"* he|strong=\"H6213\"* rebelled|strong=\"H4775\"* against|strong=\"H4714\"* him|strong=\"H5414\"* in|strong=\"H6213\"* sending|strong=\"H7971\"* his|strong=\"H5414\"* ambassadors|strong=\"H4397\"* into|strong=\"H6213\"* Egypt|strong=\"H4714\"*, that|strong=\"H5971\"* they|strong=\"H6213\"* might|strong=\"H5971\"* give|strong=\"H5414\"* him|strong=\"H5414\"* horses|strong=\"H5483\"* and|strong=\"H7971\"* many|strong=\"H7227\"* people|strong=\"H5971\"*. Will|strong=\"H5971\"* he|strong=\"H6213\"* prosper|strong=\"H6743\"*? Will|strong=\"H5971\"* he|strong=\"H6213\"* who|strong=\"H5971\"* does|strong=\"H6213\"* such|strong=\"H6213\"* things|strong=\"H7227\"* escape|strong=\"H4422\"*? Will|strong=\"H5971\"* he|strong=\"H6213\"* break|strong=\"H6565\"* the|strong=\"H5414\"* covenant|strong=\"H1285\"*, and|strong=\"H7971\"* still|strong=\"H5971\"* escape|strong=\"H4422\"*?" + }, + { + "verseNum": 16, + "text": "“‘As|strong=\"H4427\"* I|strong=\"H3808\"* live|strong=\"H2416\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘surely|strong=\"H4191\"* in|strong=\"H4428\"* the|strong=\"H5002\"* place|strong=\"H4725\"* where|strong=\"H4725\"* the|strong=\"H5002\"* king|strong=\"H4428\"* dwells who|strong=\"H4428\"* made|strong=\"H4427\"* him|strong=\"H4427\"* king|strong=\"H4428\"*, whose oath he|strong=\"H3808\"* despised, and|strong=\"H4428\"* whose covenant|strong=\"H1285\"* he|strong=\"H3808\"* broke|strong=\"H6565\"*, even|strong=\"H3808\"* with|strong=\"H1285\"* him|strong=\"H4427\"* in|strong=\"H4428\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H4428\"* Babylon he|strong=\"H3808\"* will|strong=\"H4428\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 17, + "text": "Pharaoh|strong=\"H6547\"* with|strong=\"H6213\"* his|strong=\"H6213\"* mighty|strong=\"H1419\"* army|strong=\"H2428\"* and|strong=\"H1419\"* great|strong=\"H1419\"* company|strong=\"H6951\"* won’t help|strong=\"H4421\"* him|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* war|strong=\"H4421\"*, when|strong=\"H6213\"* they|strong=\"H3808\"* cast|strong=\"H8210\"* up|strong=\"H1129\"* mounds and|strong=\"H1419\"* build|strong=\"H1129\"* forts|strong=\"H1785\"* to|strong=\"H6213\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* many|strong=\"H7227\"* persons|strong=\"H5315\"*." + }, + { + "verseNum": 18, + "text": "For|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H3027\"* despised the|strong=\"H3605\"* oath by|strong=\"H3027\"* breaking|strong=\"H6565\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"*; and|strong=\"H3027\"* behold|strong=\"H2009\"*, he|strong=\"H6213\"* had|strong=\"H5414\"* given|strong=\"H5414\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* yet|strong=\"H3808\"* has|strong=\"H3027\"* done|strong=\"H6213\"* all|strong=\"H3605\"* these|strong=\"H6213\"* things|strong=\"H3605\"*. He|strong=\"H6213\"* won’t escape|strong=\"H4422\"*." + }, + { + "verseNum": 19, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘As|strong=\"H3651\"* I|strong=\"H5414\"* live|strong=\"H2416\"*, I|strong=\"H5414\"* will|strong=\"H5414\"* surely|strong=\"H5414\"* bring|strong=\"H5414\"* on|strong=\"H5414\"* his|strong=\"H5414\"* own head|strong=\"H7218\"* my|strong=\"H5414\"* oath that|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5414\"* despised and|strong=\"H7218\"* my|strong=\"H5414\"* covenant|strong=\"H1285\"* that|strong=\"H3651\"* he|strong=\"H3651\"* has|strong=\"H5414\"* broken|strong=\"H6331\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5921\"* will|strong=\"H8033\"* spread|strong=\"H6566\"* my|strong=\"H5921\"* net|strong=\"H7568\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H8033\"* he|strong=\"H8033\"* will|strong=\"H8033\"* be|strong=\"H8610\"* taken|strong=\"H8610\"* in|strong=\"H5921\"* my|strong=\"H5921\"* snare|strong=\"H4686\"*. I|strong=\"H5921\"* will|strong=\"H8033\"* bring him|strong=\"H5921\"* to|strong=\"H5921\"* Babylon, and|strong=\"H8033\"* will|strong=\"H8033\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H5921\"* him|strong=\"H5921\"* there|strong=\"H8033\"* for|strong=\"H5921\"* his|strong=\"H5921\"* trespass|strong=\"H4604\"* that|strong=\"H8199\"* he|strong=\"H8033\"* has|strong=\"H8199\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "All|strong=\"H3605\"* his|strong=\"H3605\"* fugitives|strong=\"H5307\"* in|strong=\"H3068\"* all|strong=\"H3605\"* his|strong=\"H3605\"* bands will|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H3068\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H3068\"* those|strong=\"H3605\"* who|strong=\"H3605\"* remain|strong=\"H7604\"* will|strong=\"H3068\"* be|strong=\"H3068\"* scattered|strong=\"H6566\"* toward|strong=\"H3068\"* every|strong=\"H3605\"* wind|strong=\"H7307\"*. Then|strong=\"H1696\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*.’" + }, + { + "verseNum": 22, + "text": "“The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘I|strong=\"H5414\"* will|strong=\"H5414\"* also|strong=\"H3541\"* take|strong=\"H3947\"* some of|strong=\"H2022\"* the|strong=\"H5921\"* lofty|strong=\"H7311\"* top|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* cedar, and|strong=\"H7218\"* will|strong=\"H5414\"* plant|strong=\"H8362\"* it|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* crop off|strong=\"H5921\"* from|strong=\"H5921\"* the|strong=\"H5921\"* topmost|strong=\"H7218\"* of|strong=\"H2022\"* its|strong=\"H5414\"* young|strong=\"H3127\"* twigs|strong=\"H3127\"* a|strong=\"H3068\"* tender|strong=\"H7390\"* one|strong=\"H7390\"*, and|strong=\"H7218\"* I|strong=\"H5414\"* will|strong=\"H5414\"* plant|strong=\"H8362\"* it|strong=\"H5414\"* on|strong=\"H5921\"* a|strong=\"H3068\"* high|strong=\"H1364\"* and|strong=\"H7218\"* lofty|strong=\"H7311\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H8478\"* will|strong=\"H1961\"* plant|strong=\"H8362\"* it|strong=\"H6213\"* in|strong=\"H3478\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H3605\"* height|strong=\"H4791\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*; and|strong=\"H3478\"* it|strong=\"H6213\"* will|strong=\"H1961\"* produce|strong=\"H6529\"* boughs|strong=\"H6057\"*, and|strong=\"H3478\"* bear|strong=\"H5375\"* fruit|strong=\"H6529\"*, and|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* good cedar. Birds|strong=\"H6833\"* of|strong=\"H2022\"* every|strong=\"H3605\"* kind|strong=\"H3671\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* in|strong=\"H3478\"* the|strong=\"H3605\"* shade|strong=\"H6738\"* of|strong=\"H2022\"* its|strong=\"H3605\"* branches|strong=\"H1808\"*." + }, + { + "verseNum": 24, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H3605\"* field|strong=\"H7704\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* brought|strong=\"H6213\"* down|strong=\"H8213\"* the|strong=\"H3605\"* high|strong=\"H1364\"* tree|strong=\"H6086\"*, have|strong=\"H3068\"* exalted|strong=\"H1361\"* the|strong=\"H3605\"* low|strong=\"H8213\"* tree|strong=\"H6086\"*, have|strong=\"H3068\"* dried|strong=\"H3001\"* up|strong=\"H3001\"* the|strong=\"H3605\"* green|strong=\"H3892\"* tree|strong=\"H6086\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* dry|strong=\"H3001\"* tree|strong=\"H6086\"* flourish|strong=\"H6524\"*." + } + ] + }, + { + "chapterNum": 18, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"* again|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5921\"* mean, that|strong=\"H3478\"* you|strong=\"H5921\"* use|strong=\"H4911\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"*, saying," + }, + { + "verseNum": 3, + "text": "“As|strong=\"H1961\"* I|strong=\"H2088\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “you|strong=\"H2088\"* shall|strong=\"H3478\"* not|strong=\"H2088\"* use|strong=\"H4911\"* this|strong=\"H2088\"* proverb|strong=\"H4912\"* any|strong=\"H5750\"* more|strong=\"H5750\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2005\"*, all|strong=\"H3605\"* souls|strong=\"H5315\"* are|strong=\"H1121\"* mine; as|strong=\"H5315\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* father|strong=\"H1121\"*, so|strong=\"H4191\"* also|strong=\"H1121\"* the|strong=\"H3605\"* soul|strong=\"H5315\"* of|strong=\"H1121\"* the|strong=\"H3605\"* son|strong=\"H1121\"* is|strong=\"H1931\"* mine. The|strong=\"H3605\"* soul|strong=\"H5315\"* who|strong=\"H3605\"* sins|strong=\"H2398\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 5, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H6662\"* is|strong=\"H6662\"* just|strong=\"H6662\"*," + }, + { + "verseNum": 6, + "text": "and|strong=\"H3478\"* has|strong=\"H3478\"* not|strong=\"H3808\"* eaten on|strong=\"H1004\"* the|strong=\"H5375\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H7725\"* has|strong=\"H5414\"* not|strong=\"H3808\"* wronged|strong=\"H3238\"* any|strong=\"H5414\"*," + }, + { + "verseNum": 8, + "text": "he|strong=\"H6213\"* who|strong=\"H6213\"* hasn’t lent to|strong=\"H7725\"* them|strong=\"H5414\"* with|strong=\"H6213\"* interest|strong=\"H5392\"*," + }, + { + "verseNum": 9, + "text": "has|strong=\"H6213\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*," + }, + { + "verseNum": 10, + "text": "“If|strong=\"H1121\"* he|strong=\"H6213\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H1121\"* is|strong=\"H1121\"* a|strong=\"H3068\"* robber|strong=\"H6530\"* who|strong=\"H1121\"* sheds|strong=\"H8210\"* blood|strong=\"H1818\"*, and|strong=\"H1121\"* who|strong=\"H1121\"* does|strong=\"H6213\"* any|strong=\"H6213\"* one|strong=\"H1121\"* of|strong=\"H1121\"* these|strong=\"H6213\"* things," + }, + { + "verseNum": 11, + "text": "or|strong=\"H3808\"* who|strong=\"H3605\"* does|strong=\"H6213\"* not|strong=\"H3808\"* do|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H2022\"* those|strong=\"H3605\"* things|strong=\"H3605\"*" + }, + { + "verseNum": 12, + "text": "has|strong=\"H5869\"* wronged|strong=\"H3238\"* the|strong=\"H5375\"* poor|strong=\"H6041\"* and|strong=\"H7725\"* needy|strong=\"H6041\"*," + }, + { + "verseNum": 13, + "text": "has|strong=\"H1961\"* lent with|strong=\"H6213\"* interest|strong=\"H5392\"*," + }, + { + "verseNum": 14, + "text": "“Now|strong=\"H2009\"*, behold|strong=\"H2009\"*, if|strong=\"H2009\"* he|strong=\"H6213\"* fathers|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"* who|strong=\"H3605\"* sees|strong=\"H7200\"* all|strong=\"H3605\"* his|strong=\"H3605\"* father|strong=\"H3205\"*’s sins|strong=\"H2403\"* which|strong=\"H2004\"* he|strong=\"H6213\"* has|strong=\"H2009\"* done|strong=\"H6213\"*, and|strong=\"H1121\"* fears, and|strong=\"H1121\"* doesn’t do|strong=\"H6213\"* likewise|strong=\"H2004\"*," + }, + { + "verseNum": 15, + "text": "who|strong=\"H3478\"* hasn’t eaten on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 16, + "text": "hasn’t wronged|strong=\"H3238\"* any|strong=\"H5414\"*," + }, + { + "verseNum": 17, + "text": "who|strong=\"H1931\"* has|strong=\"H3027\"* withdrawn|strong=\"H7725\"* his|strong=\"H3947\"* hand|strong=\"H3027\"* from|strong=\"H7725\"* the|strong=\"H3947\"* poor|strong=\"H6041\"*," + }, + { + "verseNum": 18, + "text": "As|strong=\"H6213\"* for|strong=\"H3588\"* his|strong=\"H6213\"* father, because|strong=\"H3588\"* he|strong=\"H3588\"* cruelly|strong=\"H6233\"* oppressed|strong=\"H6231\"*, robbed|strong=\"H1497\"* his|strong=\"H6213\"* brother, and|strong=\"H5971\"* did|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H5971\"* is|strong=\"H2896\"* not|strong=\"H3808\"* good|strong=\"H2896\"* among|strong=\"H8432\"* his|strong=\"H6213\"* people|strong=\"H5971\"*, behold|strong=\"H2009\"*, he|strong=\"H3588\"* will|strong=\"H5971\"* die|strong=\"H4191\"* in|strong=\"H6213\"* his|strong=\"H6213\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 19, + "text": "“Yet|strong=\"H3808\"* you|strong=\"H3605\"* say, ‘Why|strong=\"H4069\"* doesn’t the|strong=\"H3605\"* son|strong=\"H1121\"* bear|strong=\"H5375\"* the|strong=\"H3605\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H3605\"* father|strong=\"H1121\"*?’ When|strong=\"H2421\"* the|strong=\"H3605\"* son|strong=\"H1121\"* has|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H2708\"* is|strong=\"H3605\"* lawful|strong=\"H4941\"* and|strong=\"H1121\"* right|strong=\"H4941\"*, and|strong=\"H1121\"* has|strong=\"H3605\"* kept|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* has|strong=\"H3605\"* done|strong=\"H6213\"* them|strong=\"H6213\"*, he|strong=\"H6213\"* will|strong=\"H1121\"* surely|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* soul|strong=\"H5315\"* who|strong=\"H1931\"* sins|strong=\"H2398\"*, he|strong=\"H1931\"* shall|strong=\"H1121\"* die|strong=\"H4191\"*. The|strong=\"H5921\"* son|strong=\"H1121\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* father|strong=\"H1121\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* the|strong=\"H5921\"* father|strong=\"H1121\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* son|strong=\"H1121\"*. The|strong=\"H5921\"* righteousness|strong=\"H6666\"* of|strong=\"H1121\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H1121\"* the|strong=\"H5921\"* wickedness|strong=\"H7564\"* of|strong=\"H1121\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* on|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "“But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* committed|strong=\"H6213\"*, and|strong=\"H7725\"* keeps|strong=\"H8104\"* all|strong=\"H3605\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H3588\"* which|strong=\"H2708\"* is|strong=\"H7563\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H3588\"* shall|strong=\"H7563\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H3588\"* shall|strong=\"H7563\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 22, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* transgressions|strong=\"H6588\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"* will|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* against|strong=\"H6213\"* him|strong=\"H6213\"*. In|strong=\"H6213\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 23, + "text": "Have|strong=\"H7563\"* I|strong=\"H3808\"* any|strong=\"H3808\"* pleasure|strong=\"H2654\"* in|strong=\"H7725\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H1870\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"*?” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H7725\"* not|strong=\"H3808\"* rather|strong=\"H3808\"* that|strong=\"H3808\"* he|strong=\"H3808\"* should|strong=\"H7563\"* return|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* way|strong=\"H1870\"*, and|strong=\"H7725\"* live|strong=\"H2421\"*?" + }, + { + "verseNum": 24, + "text": "“But|strong=\"H3808\"* when|strong=\"H7725\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"*, and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* according to|strong=\"H7725\"* all|strong=\"H3605\"* the|strong=\"H3605\"* abominations|strong=\"H8441\"* that|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* does|strong=\"H6213\"*, should|strong=\"H6213\"* he|strong=\"H6213\"* live|strong=\"H2425\"*? None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"* will|strong=\"H6662\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*. In|strong=\"H6213\"* his|strong=\"H3605\"* trespass|strong=\"H4604\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* trespassed|strong=\"H4603\"*, and|strong=\"H7725\"* in|strong=\"H6213\"* his|strong=\"H3605\"* sin|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* sinned|strong=\"H2398\"*, in|strong=\"H6213\"* them|strong=\"H7725\"* he|strong=\"H6213\"* shall|strong=\"H7563\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 25, + "text": "“Yet|strong=\"H3808\"* you|strong=\"H3808\"* say|strong=\"H3478\"*, ‘The|strong=\"H8085\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H8085\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* equal|strong=\"H8505\"*.’ Hear|strong=\"H8085\"* now|strong=\"H4994\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*: Is|strong=\"H1870\"* my|strong=\"H8085\"* way|strong=\"H1870\"* not|strong=\"H3808\"* equal|strong=\"H8505\"*? Aren’t your|strong=\"H8085\"* ways|strong=\"H1870\"* unequal|strong=\"H8505\"*?" + }, + { + "verseNum": 26, + "text": "When|strong=\"H7725\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"* man|strong=\"H6662\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* righteousness|strong=\"H6666\"*, and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, and|strong=\"H7725\"* dies|strong=\"H4191\"* in|strong=\"H5921\"* it|strong=\"H5921\"*, then|strong=\"H6213\"* he|strong=\"H6213\"* dies|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H7725\"* iniquity|strong=\"H5766\"* that|strong=\"H6213\"* he|strong=\"H6213\"* has|strong=\"H6213\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 27, + "text": "Again|strong=\"H7725\"*, when|strong=\"H2421\"* the|strong=\"H6213\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7564\"* that|strong=\"H1931\"* he|strong=\"H1931\"* has|strong=\"H5315\"* committed|strong=\"H6213\"*, and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H1931\"* will|strong=\"H5315\"* save|strong=\"H2421\"* his|strong=\"H7725\"* soul|strong=\"H5315\"* alive|strong=\"H2421\"*." + }, + { + "verseNum": 28, + "text": "Because|strong=\"H3605\"* he|strong=\"H6213\"* considers|strong=\"H7200\"*, and|strong=\"H7725\"* turns|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* all|strong=\"H3605\"* his|strong=\"H3605\"* transgressions|strong=\"H6588\"* that|strong=\"H7200\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H3808\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H6213\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 29, + "text": "Yet|strong=\"H3808\"* the|strong=\"H1870\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* says, ‘The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair.’ House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, aren’t my|strong=\"H3478\"* ways|strong=\"H1870\"* fair? Aren’t your|strong=\"H3808\"* ways|strong=\"H1870\"* unfair?" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* you|strong=\"H3605\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, everyone|strong=\"H3605\"* according to|strong=\"H7725\"* his|strong=\"H3605\"* ways|strong=\"H1870\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Return|strong=\"H7725\"*, and|strong=\"H3478\"* turn|strong=\"H7725\"* yourselves|strong=\"H3605\"* from|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* transgressions|strong=\"H6588\"*, so|strong=\"H3651\"* iniquity|strong=\"H5771\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* your|strong=\"H3605\"* ruin|strong=\"H4383\"*." + }, + { + "verseNum": 31, + "text": "Cast|strong=\"H7993\"* away|strong=\"H7993\"* from|strong=\"H5921\"* you|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* transgressions|strong=\"H6588\"* in|strong=\"H5921\"* which|strong=\"H1004\"* you|strong=\"H3605\"* have|strong=\"H3478\"* transgressed|strong=\"H6586\"*; and|strong=\"H3478\"* make|strong=\"H6213\"* yourself|strong=\"H6213\"* a|strong=\"H3068\"* new|strong=\"H2319\"* heart|strong=\"H3820\"* and|strong=\"H3478\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"*. For|strong=\"H5921\"* why|strong=\"H4100\"* will|strong=\"H3478\"* you|strong=\"H3605\"* die|strong=\"H4191\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 32, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H2654\"* no|strong=\"H3808\"* pleasure|strong=\"H2654\"* in|strong=\"H4191\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H4194\"* him|strong=\"H7725\"* who|strong=\"H3588\"* dies|strong=\"H4191\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Therefore|strong=\"H3588\"* turn|strong=\"H7725\"* yourselves, and|strong=\"H7725\"* live|strong=\"H2421\"*!" + } + ] + }, + { + "chapterNum": 19, + "verses": [ + { + "verseNum": 1, + "text": "“Moreover, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* for|strong=\"H3478\"* the|strong=\"H5375\"* princes|strong=\"H5387\"* of|strong=\"H5387\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "and|strong=\"H7235\"* say," + }, + { + "verseNum": 3, + "text": "She brought|strong=\"H5927\"* up|strong=\"H5927\"* one|strong=\"H1961\"* of|strong=\"H5927\"* her|strong=\"H1961\"* cubs|strong=\"H1482\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H8085\"* nations|strong=\"H1471\"* also|strong=\"H1471\"* heard|strong=\"H8085\"* of|strong=\"H8085\"* him|strong=\"H8085\"*." + }, + { + "verseNum": 5, + "text": "“‘Now|strong=\"H3588\"* when|strong=\"H3588\"* she|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* had|strong=\"H3588\"* waited|strong=\"H3176\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H1980\"* went|strong=\"H1980\"* up|strong=\"H1980\"* and|strong=\"H1980\"* down|strong=\"H1980\"* among|strong=\"H8432\"* the|strong=\"H8432\"* lions|strong=\"H3715\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H5892\"* knew|strong=\"H3045\"* their|strong=\"H3045\"* palaces," + }, + { + "verseNum": 8, + "text": "Then|strong=\"H5414\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* attacked him|strong=\"H5414\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"* from|strong=\"H5921\"* the|strong=\"H5921\"* provinces|strong=\"H4082\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3808\"* put|strong=\"H5414\"* him|strong=\"H5414\"* in|strong=\"H3478\"* a|strong=\"H3068\"* cage|strong=\"H5474\"* with|strong=\"H4428\"* hooks|strong=\"H2397\"*," + }, + { + "verseNum": 10, + "text": "“‘Your|strong=\"H5921\"* mother was|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* vine|strong=\"H1612\"* in|strong=\"H5921\"* your|strong=\"H5921\"* blood|strong=\"H1818\"*, planted|strong=\"H8362\"* by|strong=\"H5921\"* the|strong=\"H5921\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5921\"* had|strong=\"H1961\"* strong|strong=\"H5797\"* branches|strong=\"H1808\"* for|strong=\"H5921\"* the|strong=\"H5921\"* scepters|strong=\"H7626\"* of|strong=\"H4294\"* those|strong=\"H5921\"* who ruled|strong=\"H4910\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5428\"* it|strong=\"H7993\"* was|strong=\"H7307\"* plucked|strong=\"H5428\"* up|strong=\"H3001\"* in|strong=\"H7307\"* fury|strong=\"H2534\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* it is|strong=\"H4057\"* planted|strong=\"H8362\"* in|strong=\"H8362\"* the|strong=\"H6258\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 14, + "text": "Fire has|strong=\"H1961\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4294\"* its|strong=\"H1961\"* branches|strong=\"H4294\"*." + } + ] + }, + { + "chapterNum": 20, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3427\"* the|strong=\"H6440\"* seventh|strong=\"H7637\"* year|strong=\"H8141\"*, in|strong=\"H3427\"* the|strong=\"H6440\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, the|strong=\"H6440\"* tenth|strong=\"H6218\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H6440\"* month|strong=\"H2320\"*, some of|strong=\"H3068\"* the|strong=\"H6440\"* elders|strong=\"H2205\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* came|strong=\"H1961\"* to|strong=\"H3478\"* inquire|strong=\"H1875\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3478\"* sat|strong=\"H3427\"* before|strong=\"H6440\"* me|strong=\"H6440\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H2205\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5002\"* elders|strong=\"H2205\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Is|strong=\"H3478\"* it|strong=\"H1696\"* to|strong=\"H1696\"* inquire|strong=\"H1875\"* of|strong=\"H1121\"* me|strong=\"H1696\"* that|strong=\"H3478\"* you|strong=\"H1696\"* have|strong=\"H1121\"* come|strong=\"H3478\"*? As|strong=\"H1121\"* I|strong=\"H3541\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3541\"* will|strong=\"H3478\"* not|strong=\"H1696\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H3478\"* you|strong=\"H1696\"*.”’" + }, + { + "verseNum": 4, + "text": "“Will|strong=\"H1121\"* you|strong=\"H3045\"* judge|strong=\"H8199\"* them|strong=\"H1121\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*? Will|strong=\"H1121\"* you|strong=\"H3045\"* judge|strong=\"H8199\"* them|strong=\"H1121\"*? Cause them|strong=\"H1121\"* to|strong=\"H1121\"* know|strong=\"H3045\"* the|strong=\"H3045\"* abominations|strong=\"H8441\"* of|strong=\"H1121\"* their|strong=\"H3045\"* fathers." + }, + { + "verseNum": 5, + "text": "Tell|strong=\"H3045\"* them|strong=\"H3027\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3478\"* the|strong=\"H3069\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* chose|strong=\"H5375\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* the|strong=\"H3069\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*, and|strong=\"H3478\"* made|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3478\"* them|strong=\"H3027\"* in|strong=\"H3478\"* the|strong=\"H3069\"* land of|strong=\"H1004\"* Egypt|strong=\"H4714\"*, when|strong=\"H3117\"* I|strong=\"H3117\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* them|strong=\"H3027\"*, saying, ‘I|strong=\"H3117\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*;’" + }, + { + "verseNum": 6, + "text": "in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"* I|strong=\"H3117\"* swore|strong=\"H5375\"* to|strong=\"H3318\"* them|strong=\"H3027\"* to|strong=\"H3318\"* bring|strong=\"H3318\"* them|strong=\"H3027\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* into|strong=\"H3318\"* a|strong=\"H3068\"* land that|strong=\"H3605\"* I|strong=\"H3117\"* had|strong=\"H3027\"* searched|strong=\"H8446\"* out|strong=\"H3318\"* for|strong=\"H3027\"* them|strong=\"H3027\"*, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3117\"* honey|strong=\"H1706\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* glory|strong=\"H6643\"* of|strong=\"H3117\"* all|strong=\"H3605\"* lands." + }, + { + "verseNum": 7, + "text": "I|strong=\"H4714\"* said to|strong=\"H3068\"* them|strong=\"H7993\"*, ‘Each of|strong=\"H3068\"* you|strong=\"H5869\"* throw|strong=\"H7993\"* away|strong=\"H7993\"* the|strong=\"H3068\"* abominations|strong=\"H8251\"* of|strong=\"H3068\"* his|strong=\"H3068\"* eyes|strong=\"H5869\"*. Don’t defile|strong=\"H2930\"* yourselves|strong=\"H5869\"* with|strong=\"H3068\"* the|strong=\"H3068\"* idols|strong=\"H1544\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"*. I|strong=\"H4714\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 8, + "text": "“‘“But|strong=\"H3808\"* they|strong=\"H3808\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"* and|strong=\"H5869\"* wouldn’t listen|strong=\"H8085\"* to|strong=\"H5921\"* me|strong=\"H5921\"*. They|strong=\"H3808\"* didn’t all|strong=\"H5921\"* throw|strong=\"H7993\"* away|strong=\"H7993\"* the|strong=\"H5921\"* abominations|strong=\"H8251\"* of|strong=\"H5869\"* their|strong=\"H8085\"* eyes|strong=\"H5869\"*. They|strong=\"H3808\"* also|strong=\"H5869\"* didn’t forsake|strong=\"H5800\"* the|strong=\"H5921\"* idols|strong=\"H1544\"* of|strong=\"H5869\"* Egypt|strong=\"H4714\"*. Then|strong=\"H8085\"* I|strong=\"H5921\"* said|strong=\"H8085\"* I|strong=\"H5921\"* would pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H8085\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H5921\"* accomplish|strong=\"H3615\"* my|strong=\"H8085\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H5869\"* the|strong=\"H5921\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1992\"* I|strong=\"H3045\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H3045\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H3045\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H8034\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6213\"* nations|strong=\"H1471\"* among|strong=\"H8432\"* which|strong=\"H1471\"* they|strong=\"H1992\"* were|strong=\"H5869\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H3045\"* made|strong=\"H6213\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* to|strong=\"H3318\"* them|strong=\"H1992\"* in|strong=\"H6213\"* bringing|strong=\"H3318\"* them|strong=\"H1992\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H6213\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 10, + "text": "So|strong=\"H3318\"* I|strong=\"H4714\"* caused them|strong=\"H3318\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4057\"* the|strong=\"H3318\"* land of|strong=\"H4057\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* brought|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* my|strong=\"H5414\"* statutes|strong=\"H2708\"* and|strong=\"H4941\"* showed|strong=\"H6213\"* them|strong=\"H5414\"* my|strong=\"H5414\"* ordinances|strong=\"H4941\"*, which|strong=\"H2708\"* if a|strong=\"H3068\"* man|strong=\"H3045\"* does|strong=\"H6213\"*, he|strong=\"H6213\"* will|strong=\"H5414\"* live|strong=\"H2425\"* in|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 12, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* my|strong=\"H5414\"* Sabbaths|strong=\"H7676\"*, to|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H5414\"* and|strong=\"H3068\"* them|strong=\"H5414\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 13, + "text": "“‘“But|strong=\"H3808\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*. They|strong=\"H3808\"* didn’t walk|strong=\"H1980\"* in|strong=\"H5921\"* my|strong=\"H5921\"* statutes|strong=\"H2708\"* and|strong=\"H1980\"* they|strong=\"H3808\"* rejected|strong=\"H3988\"* my|strong=\"H5921\"* ordinances|strong=\"H4941\"*, which|strong=\"H1004\"* if a|strong=\"H3068\"* man keeps, he|strong=\"H6213\"* shall|strong=\"H3478\"* live|strong=\"H2425\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H3808\"* greatly|strong=\"H3966\"* profaned|strong=\"H2490\"* my|strong=\"H5921\"* Sabbaths|strong=\"H7676\"*. Then|strong=\"H1980\"* I|strong=\"H5921\"* said I|strong=\"H5921\"* would|strong=\"H3478\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*, to|strong=\"H1980\"* consume|strong=\"H3615\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "But|strong=\"H1115\"* I|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H3318\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H1471\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H8034\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H6213\"* brought|strong=\"H3318\"* them|strong=\"H6213\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 15, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* them|strong=\"H5414\"* in|strong=\"H3027\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"* that|strong=\"H3605\"* I|strong=\"H5414\"* would|strong=\"H3605\"* not|strong=\"H1115\"* bring|strong=\"H5375\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land which|strong=\"H1931\"* I|strong=\"H5414\"* had|strong=\"H5414\"* given|strong=\"H5414\"* them|strong=\"H5414\"*, flowing|strong=\"H2100\"* with|strong=\"H2100\"* milk|strong=\"H2461\"* and|strong=\"H3027\"* honey|strong=\"H1706\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* glory|strong=\"H6643\"* of|strong=\"H3027\"* all|strong=\"H3605\"* lands," + }, + { + "verseNum": 16, + "text": "because|strong=\"H3588\"* they|strong=\"H3588\"* rejected|strong=\"H3988\"* my|strong=\"H2490\"* ordinances|strong=\"H4941\"*, and|strong=\"H1980\"* didn’t walk|strong=\"H1980\"* in|strong=\"H1980\"* my|strong=\"H2490\"* statutes|strong=\"H2708\"*, and|strong=\"H1980\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*; for|strong=\"H3588\"* their|strong=\"H3588\"* heart|strong=\"H3820\"* went|strong=\"H1980\"* after|strong=\"H3588\"* their|strong=\"H3588\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 17, + "text": "Nevertheless my|strong=\"H5921\"* eye|strong=\"H5869\"* spared|strong=\"H2347\"* them|strong=\"H5921\"*, and|strong=\"H5869\"* I|strong=\"H5921\"* didn’t destroy|strong=\"H7843\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* didn’t make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H5869\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H1121\"* said to|strong=\"H3212\"* their|strong=\"H8104\"* children|strong=\"H1121\"* in|strong=\"H3212\"* the|strong=\"H8104\"* wilderness|strong=\"H4057\"*, ‘Don’t walk|strong=\"H3212\"* in|strong=\"H3212\"* the|strong=\"H8104\"* statutes|strong=\"H2706\"* of|strong=\"H1121\"* your|strong=\"H8104\"* fathers. Don’t observe|strong=\"H8104\"* their|strong=\"H8104\"* ordinances|strong=\"H4941\"* or|strong=\"H1121\"* defile|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H3212\"* their|strong=\"H8104\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H3068\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*. Walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*, and|strong=\"H3068\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 20, + "text": "Make|strong=\"H3045\"* my|strong=\"H3068\"* Sabbaths|strong=\"H7676\"* holy|strong=\"H6942\"*. They|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign between|strong=\"H3045\"* me|strong=\"H1961\"* and|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* may|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 21, + "text": "“‘“But|strong=\"H3808\"* the|strong=\"H5921\"* children|strong=\"H1121\"* rebelled|strong=\"H4784\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. They|strong=\"H3808\"* didn’t walk|strong=\"H1980\"* in|strong=\"H5921\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H1121\"* didn’t keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* to|strong=\"H1980\"* do|strong=\"H6213\"* them|strong=\"H5921\"*, which|strong=\"H2708\"* if|strong=\"H1121\"* a|strong=\"H3068\"* man|strong=\"H1121\"* does|strong=\"H6213\"*, he|strong=\"H6213\"* shall|strong=\"H1121\"* live|strong=\"H2425\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H3808\"* profaned|strong=\"H2490\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"*. Then|strong=\"H1980\"* I|strong=\"H5921\"* said I|strong=\"H5921\"* would|strong=\"H6213\"* pour|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H8104\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, to|strong=\"H1980\"* accomplish|strong=\"H6213\"* my|strong=\"H8104\"* anger|strong=\"H2534\"* against|strong=\"H5921\"* them|strong=\"H5921\"* in|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 22, + "text": "Nevertheless I|strong=\"H3027\"* withdrew|strong=\"H7725\"* my|strong=\"H7725\"* hand|strong=\"H3027\"* and|strong=\"H7725\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* my|strong=\"H7725\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, that|strong=\"H1471\"* it|strong=\"H6213\"* should|strong=\"H6213\"* not|strong=\"H1115\"* be|strong=\"H3027\"* profaned|strong=\"H2490\"* in|strong=\"H6213\"* the|strong=\"H6213\"* sight|strong=\"H5869\"* of|strong=\"H3027\"* the|strong=\"H6213\"* nations|strong=\"H1471\"*, in|strong=\"H6213\"* whose|strong=\"H1471\"* sight|strong=\"H5869\"* I|strong=\"H3027\"* brought|strong=\"H3318\"* them|strong=\"H7725\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 23, + "text": "Moreover|strong=\"H1571\"* I|strong=\"H1571\"* swore|strong=\"H5375\"* to|strong=\"H3027\"* them|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H5375\"* wilderness|strong=\"H4057\"*, that|strong=\"H1471\"* I|strong=\"H1571\"* would scatter|strong=\"H2219\"* them|strong=\"H3027\"* among the|strong=\"H5375\"* nations|strong=\"H1471\"* and|strong=\"H3027\"* disperse|strong=\"H2219\"* them|strong=\"H3027\"* through|strong=\"H3027\"* the|strong=\"H5375\"* countries," + }, + { + "verseNum": 24, + "text": "because|strong=\"H3282\"* they|strong=\"H3808\"* had|strong=\"H1961\"* not|strong=\"H3808\"* executed|strong=\"H6213\"* my|strong=\"H2490\"* ordinances|strong=\"H4941\"*, but|strong=\"H3808\"* had|strong=\"H1961\"* rejected|strong=\"H3988\"* my|strong=\"H2490\"* statutes|strong=\"H2708\"*, and|strong=\"H4941\"* had|strong=\"H1961\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*, and|strong=\"H4941\"* their|strong=\"H1961\"* eyes|strong=\"H5869\"* were|strong=\"H1961\"* after|strong=\"H1961\"* their|strong=\"H1961\"* fathers’ idols|strong=\"H1544\"*." + }, + { + "verseNum": 25, + "text": "Moreover|strong=\"H1571\"* also|strong=\"H1571\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* statutes|strong=\"H2706\"* that|strong=\"H5414\"* were|strong=\"H5414\"* not|strong=\"H3808\"* good|strong=\"H2896\"*, and|strong=\"H4941\"* ordinances|strong=\"H4941\"* in|strong=\"H5414\"* which|strong=\"H2706\"* they|strong=\"H3808\"* couldn’t live|strong=\"H2421\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3045\"* polluted|strong=\"H2930\"* them|strong=\"H5674\"* in|strong=\"H3068\"* their|strong=\"H3605\"* own gifts|strong=\"H4979\"*, in|strong=\"H3068\"* that|strong=\"H3045\"* they|strong=\"H3068\"* caused|strong=\"H5674\"* all|strong=\"H3605\"* that|strong=\"H3045\"* opens the|strong=\"H3605\"* womb|strong=\"H7356\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, that|strong=\"H3045\"* I|strong=\"H3045\"* might|strong=\"H3068\"* make|strong=\"H3045\"* them|strong=\"H5674\"* desolate|strong=\"H8074\"*, to|strong=\"H3068\"* the|strong=\"H3605\"* end|strong=\"H4616\"* that|strong=\"H3045\"* they|strong=\"H3068\"* might|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3045\"* I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’" + }, + { + "verseNum": 27, + "text": "“Therefore|strong=\"H3651\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H1121\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Moreover|strong=\"H3541\"*, in|strong=\"H3478\"* this|strong=\"H2063\"* your|strong=\"H3478\"* fathers have|strong=\"H1121\"* blasphemed|strong=\"H1442\"* me|strong=\"H1696\"*, in|strong=\"H3478\"* that|strong=\"H3651\"* they|strong=\"H3651\"* have|strong=\"H1121\"* committed|strong=\"H4603\"* a|strong=\"H3068\"* trespass|strong=\"H4604\"* against|strong=\"H1696\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 28, + "text": "For|strong=\"H3027\"* when|strong=\"H7200\"* I|strong=\"H5414\"* had|strong=\"H5414\"* brought|strong=\"H5375\"* them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H3605\"* land which|strong=\"H8033\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* give|strong=\"H5414\"* to|strong=\"H5414\"* them|strong=\"H5414\"*, then|strong=\"H5375\"* they|strong=\"H8033\"* saw|strong=\"H7200\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H1389\"* and|strong=\"H3027\"* every|strong=\"H3605\"* thick|strong=\"H5687\"* tree|strong=\"H6086\"*, and|strong=\"H3027\"* they|strong=\"H8033\"* offered|strong=\"H2076\"* there|strong=\"H8033\"* their|strong=\"H3605\"* sacrifices|strong=\"H2077\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* they|strong=\"H8033\"* presented|strong=\"H5414\"* the|strong=\"H3605\"* provocation|strong=\"H3708\"* of|strong=\"H3027\"* their|strong=\"H3605\"* offering|strong=\"H7133\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* also|strong=\"H3027\"* made|strong=\"H7760\"* their|strong=\"H3605\"* pleasant aroma|strong=\"H7381\"*, and|strong=\"H3027\"* there|strong=\"H8033\"* they|strong=\"H8033\"* poured|strong=\"H5258\"* out|strong=\"H5258\"* their|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H5262\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H2088\"* I|strong=\"H3117\"* said|strong=\"H7121\"* to|strong=\"H5704\"* them|strong=\"H7121\"*, ‘What|strong=\"H4100\"* does|strong=\"H4100\"* the|strong=\"H3117\"* high|strong=\"H1116\"* place|strong=\"H1116\"* where|strong=\"H8033\"* you|strong=\"H3117\"* go mean?’ So|strong=\"H7121\"* its|strong=\"H5704\"* name|strong=\"H8034\"* is|strong=\"H2088\"* called|strong=\"H7121\"* Bamah|strong=\"H1117\"*+ 20:29 “Bamah” means “High Place”.* to|strong=\"H5704\"* this|strong=\"H2088\"* day|strong=\"H3117\"*.”’" + }, + { + "verseNum": 30, + "text": "“Therefore|strong=\"H3651\"* tell the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Do|strong=\"H1870\"* you|strong=\"H3651\"* pollute|strong=\"H2930\"* yourselves|strong=\"H2930\"* in|strong=\"H3478\"* the|strong=\"H3069\"* way|strong=\"H1870\"* of|strong=\"H1004\"* your|strong=\"H2930\"* fathers? Do|strong=\"H1870\"* you|strong=\"H3651\"* play|strong=\"H2181\"* the|strong=\"H3069\"* prostitute|strong=\"H2181\"* after|strong=\"H1004\"* their|strong=\"H1870\"* abominations|strong=\"H8251\"*?" + }, + { + "verseNum": 31, + "text": "When|strong=\"H3117\"* you|strong=\"H3605\"* offer|strong=\"H5375\"* your|strong=\"H3605\"* gifts|strong=\"H4979\"*, when|strong=\"H3117\"* you|strong=\"H3605\"* make|strong=\"H2930\"* your|strong=\"H3605\"* sons|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* fire, do|strong=\"H3605\"* you|strong=\"H3605\"* pollute|strong=\"H2930\"* yourselves|strong=\"H2930\"* with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* to|strong=\"H5704\"* this|strong=\"H5674\"* day|strong=\"H3117\"*? Should|strong=\"H3117\"* I|strong=\"H3117\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H5674\"* you|strong=\"H3605\"*, house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*? As|strong=\"H5704\"* I|strong=\"H3117\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, I|strong=\"H3117\"* will|strong=\"H3478\"* not|strong=\"H5375\"* be|strong=\"H1121\"* inquired|strong=\"H1875\"* of|strong=\"H1121\"* by|strong=\"H5674\"* you|strong=\"H3605\"*!" + }, + { + "verseNum": 32, + "text": "“‘“That|strong=\"H1471\"* which|strong=\"H1471\"* comes|strong=\"H1961\"* into|strong=\"H5927\"* your|strong=\"H5921\"* mind|strong=\"H7307\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* at|strong=\"H5921\"* all|strong=\"H5921\"*, in|strong=\"H5921\"* that|strong=\"H1471\"* you|strong=\"H5921\"* say, ‘We will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, as|strong=\"H1961\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H7307\"* the|strong=\"H5921\"* countries, to|strong=\"H5927\"* serve|strong=\"H8334\"* wood|strong=\"H6086\"* and|strong=\"H6086\"* stone.’" + }, + { + "verseNum": 33, + "text": "As|strong=\"H4427\"* I|strong=\"H5921\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “surely|strong=\"H4427\"* with|strong=\"H5921\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H5921\"* an|strong=\"H5921\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3027\"* with|strong=\"H5921\"* wrath|strong=\"H2534\"* poured|strong=\"H8210\"* out|strong=\"H5186\"*, I|strong=\"H5921\"* will|strong=\"H3027\"* be|strong=\"H3808\"* king|strong=\"H4427\"* over|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 34, + "text": "I|strong=\"H3027\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* you|strong=\"H4480\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"*, and|strong=\"H3027\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H3027\"* the|strong=\"H4480\"* countries in|strong=\"H3027\"* which|strong=\"H5971\"* you|strong=\"H4480\"* are|strong=\"H5971\"* scattered|strong=\"H6327\"* with|strong=\"H3318\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, with|strong=\"H3318\"* an|strong=\"H4480\"* outstretched|strong=\"H5186\"* arm|strong=\"H2220\"*, and|strong=\"H3027\"* with|strong=\"H3318\"* wrath|strong=\"H2534\"* poured|strong=\"H8210\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 35, + "text": "I|strong=\"H6440\"* will|strong=\"H5971\"* bring you|strong=\"H6440\"* into|strong=\"H8199\"* the|strong=\"H6440\"* wilderness|strong=\"H4057\"* of|strong=\"H6440\"* the|strong=\"H6440\"* peoples|strong=\"H5971\"*, and|strong=\"H5971\"* there|strong=\"H8033\"* I|strong=\"H6440\"* will|strong=\"H5971\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H6440\"* you|strong=\"H6440\"* face|strong=\"H6440\"* to|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 36, + "text": "Just as|strong=\"H3651\"* I|strong=\"H3651\"* entered|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H4714\"* your|strong=\"H8199\"* fathers in|strong=\"H4714\"* the|strong=\"H5002\"* wilderness|strong=\"H4057\"* of|strong=\"H4057\"* the|strong=\"H5002\"* land of|strong=\"H4057\"* Egypt|strong=\"H4714\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H4714\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H4714\"* you|strong=\"H3651\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 37, + "text": "“I|strong=\"H8478\"* will|strong=\"H1285\"* cause you|strong=\"H8478\"* to|strong=\"H5674\"* pass|strong=\"H5674\"* under|strong=\"H8478\"* the|strong=\"H8478\"* rod|strong=\"H7626\"*, and|strong=\"H1285\"* I|strong=\"H8478\"* will|strong=\"H1285\"* bring|strong=\"H5674\"* you|strong=\"H8478\"* into|strong=\"H5674\"* the|strong=\"H8478\"* bond|strong=\"H4562\"* of|strong=\"H7626\"* the|strong=\"H8478\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 38, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* purge|strong=\"H1305\"* out|strong=\"H3318\"* from|strong=\"H4480\"* among|strong=\"H4480\"* you|strong=\"H3588\"* the|strong=\"H3588\"* rebels|strong=\"H4775\"* and|strong=\"H3478\"* those|strong=\"H4480\"* who|strong=\"H3068\"* disobey me|strong=\"H4480\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land where|strong=\"H4033\"* they|strong=\"H3588\"* live, but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* enter into|strong=\"H3318\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*. Then|strong=\"H3318\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 39, + "text": "“‘As|strong=\"H1004\"* for|strong=\"H8034\"* you|strong=\"H3808\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Go|strong=\"H3212\"*, everyone serve|strong=\"H5647\"* his|strong=\"H8085\"* idols|strong=\"H1544\"*, and|strong=\"H3478\"* hereafter also|strong=\"H3541\"*, if you|strong=\"H3808\"* will|strong=\"H3478\"* not|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* me|strong=\"H3808\"*; but|strong=\"H3808\"* you|strong=\"H3808\"* shall|strong=\"H3478\"* no|strong=\"H3808\"* more|strong=\"H5750\"* profane|strong=\"H2490\"* my|strong=\"H8085\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* with|strong=\"H1004\"* your|strong=\"H8085\"* gifts|strong=\"H4979\"* and|strong=\"H3478\"* with|strong=\"H1004\"* your|strong=\"H8085\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 40, + "text": "For|strong=\"H3588\"* in|strong=\"H3478\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*, in|strong=\"H3478\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* of|strong=\"H1004\"* the|strong=\"H3605\"* height|strong=\"H4791\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “there|strong=\"H8033\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, all|strong=\"H3605\"* of|strong=\"H1004\"* them|strong=\"H5647\"*, shall|strong=\"H3478\"* serve|strong=\"H5647\"* me|strong=\"H1875\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land. There|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3478\"* accept|strong=\"H7521\"* them|strong=\"H5647\"*, and|strong=\"H3478\"* there|strong=\"H8033\"* I|strong=\"H3588\"* will|strong=\"H3478\"* require|strong=\"H1875\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"* and|strong=\"H3478\"* the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H1004\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"*, with|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*." + }, + { + "verseNum": 41, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* accept|strong=\"H7521\"* you|strong=\"H4480\"* as|strong=\"H3318\"* a|strong=\"H3068\"* pleasant aroma|strong=\"H7381\"* when|strong=\"H3318\"* I|strong=\"H4480\"* bring|strong=\"H3318\"* you|strong=\"H4480\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"* and|strong=\"H5971\"* gather|strong=\"H6908\"* you|strong=\"H4480\"* out|strong=\"H3318\"* of|strong=\"H5869\"* the|strong=\"H4480\"* countries in|strong=\"H5971\"* which|strong=\"H1471\"* you|strong=\"H4480\"* have|strong=\"H5869\"* been|strong=\"H5971\"* scattered|strong=\"H6327\"*. I|strong=\"H4480\"* will|strong=\"H1471\"* be|strong=\"H1471\"* sanctified|strong=\"H6942\"* in|strong=\"H5971\"* you|strong=\"H4480\"* in|strong=\"H5971\"* the|strong=\"H4480\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* the|strong=\"H4480\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 42, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H5375\"* you|strong=\"H3588\"* into|strong=\"H3027\"* the|strong=\"H3588\"* land of|strong=\"H3068\"* Israel|strong=\"H3478\"*, into|strong=\"H3027\"* the|strong=\"H3588\"* country which|strong=\"H3068\"* I|strong=\"H3588\"* swore|strong=\"H5375\"* to|strong=\"H3478\"* give|strong=\"H5414\"* to|strong=\"H3478\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 43, + "text": "There|strong=\"H8033\"* you|strong=\"H6440\"* will|strong=\"H8033\"* remember|strong=\"H2142\"* your|strong=\"H3605\"* ways|strong=\"H1870\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* your|strong=\"H3605\"* deeds|strong=\"H5949\"* in|strong=\"H6213\"* which|strong=\"H8033\"* you|strong=\"H6440\"* have|strong=\"H3605\"* polluted|strong=\"H2930\"* yourselves|strong=\"H2930\"*. Then|strong=\"H6213\"* you|strong=\"H6440\"* will|strong=\"H8033\"* loathe|strong=\"H6962\"* yourselves|strong=\"H2930\"* in|strong=\"H6213\"* your|strong=\"H3605\"* own|strong=\"H6440\"* sight|strong=\"H6440\"* for|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* evils|strong=\"H7451\"* that|strong=\"H3605\"* you|strong=\"H6440\"* have|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 44, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* dealt|strong=\"H6213\"* with|strong=\"H1004\"* you|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H3068\"* name|strong=\"H8034\"*’s sake|strong=\"H4616\"*, not|strong=\"H3808\"* according to|strong=\"H3478\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, nor|strong=\"H3808\"* according to|strong=\"H3478\"* your|strong=\"H3068\"* corrupt|strong=\"H7843\"* doings|strong=\"H5949\"*, you|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 45, + "text": "Yahweh|strong=\"H3068\"*’s word came to me, saying," + }, + { + "verseNum": 46, + "text": "“Son of man, set your face toward the south, and preach toward the south, and prophesy against the forest of the field in the south." + }, + { + "verseNum": 47, + "text": "Tell the forest of the south, ‘Hear Yahweh|strong=\"H3068\"*’s word: The Lord Yahweh|strong=\"H3068\"* says, “Behold, I will kindle a|strong=\"H3068\"* fire in you, and it will devour every green tree in you, and every dry tree. The burning flame will not be quenched, and all faces from the south to the north will be burned by it." + }, + { + "verseNum": 48, + "text": "All flesh will see that I, Yahweh|strong=\"H3068\"*, have kindled it. It will not be quenched.”’”" + }, + { + "verseNum": 49, + "text": "Then I said, “Ah Lord Yahweh|strong=\"H3068\"*! They say of me, ‘Isn’t he a|strong=\"H3068\"* speaker of parables?’”" + } + ] + }, + { + "chapterNum": 21, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H7760\"* face|strong=\"H6440\"* toward|strong=\"H1870\"* Jerusalem, and|strong=\"H1121\"* preach|strong=\"H5197\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* sanctuaries, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H7704\"* of|strong=\"H1121\"* Israel." + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H8085\"* the|strong=\"H3605\"* land|strong=\"H6440\"* of|strong=\"H3068\"* Israel, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* draw my|strong=\"H8085\"* sword out|strong=\"H3518\"* of|strong=\"H3068\"* its|strong=\"H3605\"* sheath, and|strong=\"H3068\"* will|strong=\"H3068\"* cut off|strong=\"H6440\"* from|strong=\"H6440\"* you|strong=\"H6440\"* the|strong=\"H3605\"* righteous and|strong=\"H3068\"* the|strong=\"H3605\"* wicked." + }, + { + "verseNum": 4, + "text": "Seeing|strong=\"H7200\"* then|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cut off|strong=\"H7200\"* from|strong=\"H3068\"* you|strong=\"H3588\"* the|strong=\"H3605\"* righteous and|strong=\"H3068\"* the|strong=\"H3605\"* wicked, therefore|strong=\"H3588\"* my|strong=\"H3605\"* sword will|strong=\"H3068\"* go|strong=\"H3068\"* out|strong=\"H3518\"* of|strong=\"H3068\"* its|strong=\"H3605\"* sheath against|strong=\"H3068\"* all|strong=\"H3605\"* flesh|strong=\"H1320\"* from|strong=\"H3068\"* the|strong=\"H3605\"* south to|strong=\"H3068\"* the|strong=\"H3605\"* north." + }, + { + "verseNum": 5, + "text": "All flesh will|strong=\"H3808\"* know that|strong=\"H1931\"* I|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3808\"* drawn my|strong=\"H3808\"* sword out|strong=\"H3808\"* of|strong=\"H3069\"* its|strong=\"H3808\"* sheath. It|strong=\"H1931\"* will|strong=\"H3808\"* not|strong=\"H3808\"* return any|strong=\"H3808\"* more|strong=\"H3808\"*.”’" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3068\"* sigh, you|strong=\"H1697\"* son of|strong=\"H3068\"* man. You|strong=\"H1697\"* shall|strong=\"H3068\"* sigh before|strong=\"H1961\"* their|strong=\"H3068\"* eyes with|strong=\"H3068\"* a|strong=\"H3068\"* broken heart+ 21:6 literally, the breaking of your thighs* and|strong=\"H3068\"* with|strong=\"H3068\"* bitterness." + }, + { + "verseNum": 7, + "text": "It|strong=\"H7760\"* shall|strong=\"H1121\"* be|strong=\"H1121\"*, when|strong=\"H1121\"* they|strong=\"H3478\"* ask you|strong=\"H6440\"*, ‘Why do you|strong=\"H6440\"* sigh?’ that|strong=\"H3478\"* you|strong=\"H6440\"* shall|strong=\"H1121\"* say|strong=\"H3478\"*, ‘Because|strong=\"H6440\"* of|strong=\"H1121\"* the|strong=\"H6440\"* news, for|strong=\"H6440\"* it|strong=\"H7760\"* comes|strong=\"H6440\"*! Every|strong=\"H7760\"* heart will|strong=\"H3478\"* melt, all|strong=\"H6440\"* hands will|strong=\"H3478\"* be|strong=\"H1121\"* feeble, every|strong=\"H7760\"* spirit will|strong=\"H3478\"* faint, and|strong=\"H1121\"* all|strong=\"H6440\"* knees will|strong=\"H3478\"* be|strong=\"H1121\"* weak as|strong=\"H3389\"* water. Behold, it|strong=\"H7760\"* comes|strong=\"H6440\"*, and|strong=\"H1121\"* it|strong=\"H7760\"* shall|strong=\"H1121\"* be|strong=\"H1121\"* done|strong=\"H7760\"*, says the|strong=\"H6440\"* Lord Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word came|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H4480\"*, saying," + }, + { + "verseNum": 9, + "text": "“Son of|strong=\"H4480\"* man|strong=\"H7563\"*, prophesy, and|strong=\"H2719\"* say, ‘Yahweh|strong=\"H3068\"* says|strong=\"H3282\"*:" + }, + { + "verseNum": 10, + "text": "It|strong=\"H3588\"* is|strong=\"H3068\"* sharpened that|strong=\"H3588\"* it|strong=\"H3588\"* may|strong=\"H3068\"* make|strong=\"H3045\"* a|strong=\"H3068\"* slaughter." + }, + { + "verseNum": 11, + "text": "It|strong=\"H5869\"* is|strong=\"H1121\"* given to|strong=\"H1121\"* be|strong=\"H1121\"* polished," + }, + { + "verseNum": 12, + "text": "Cry and|strong=\"H3027\"* wail, son of|strong=\"H3027\"* man|strong=\"H3605\"*;" + }, + { + "verseNum": 13, + "text": "“For|strong=\"H3068\"* there|strong=\"H1961\"* is|strong=\"H3068\"* a|strong=\"H3068\"* trial. What|strong=\"H1697\"* if|strong=\"H1961\"* even|strong=\"H3068\"* the|strong=\"H3068\"* rod that|strong=\"H3068\"* condemns will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H1961\"* more|strong=\"H1961\"*?” says|strong=\"H1697\"* the|strong=\"H3068\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“You|strong=\"H1571\"* therefore|strong=\"H1571\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H3988\"* have|strong=\"H1961\"* set the|strong=\"H3605\"* threatening sword|strong=\"H1300\"* against|strong=\"H3605\"* all|strong=\"H3605\"* their|strong=\"H3605\"* gates," + }, + { + "verseNum": 16, + "text": "Gather yourselves|strong=\"H3027\"* together|strong=\"H3709\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H1961\"* also|strong=\"H3478\"* strike|strong=\"H5606\"* my|strong=\"H3605\"* hands together|strong=\"H2199\"*," + }, + { + "verseNum": 18, + "text": "Yahweh|strong=\"H3068\"*’s word came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H1961\"* again|strong=\"H1961\"*, saying," + }, + { + "verseNum": 19, + "text": "“Also|strong=\"H1121\"*, you|strong=\"H5221\"* son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, appoint two|strong=\"H5221\"* ways, that|strong=\"H1931\"* the|strong=\"H5221\"* sword|strong=\"H2719\"* of|strong=\"H1121\"* the|strong=\"H5221\"* king of|strong=\"H1121\"* Babylon may|strong=\"H1121\"* come. They|strong=\"H1931\"* both will|strong=\"H2719\"* come out|strong=\"H1419\"* of|strong=\"H1121\"* one|strong=\"H7992\"* land, and|strong=\"H1121\"* mark out|strong=\"H1419\"* a|strong=\"H3068\"* place. Mark it|strong=\"H1931\"* out|strong=\"H1419\"* at|strong=\"H1121\"* the|strong=\"H5221\"* head of|strong=\"H1121\"* the|strong=\"H5221\"* way to|strong=\"H1121\"* the|strong=\"H5221\"* city|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H3820\"* appoint|strong=\"H5414\"* a|strong=\"H3068\"* way|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* to|strong=\"H5921\"* come to|strong=\"H5921\"* Rabbah of|strong=\"H8179\"* the|strong=\"H3605\"* children of|strong=\"H8179\"* Ammon, and|strong=\"H2719\"* to|strong=\"H5921\"* Judah in|strong=\"H5921\"* Jerusalem|strong=\"H4616\"* the|strong=\"H3605\"* fortified." + }, + { + "verseNum": 21, + "text": "For|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H6440\"* of|strong=\"H6440\"* Babylon stood at|strong=\"H6440\"* the|strong=\"H6440\"* parting of|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H6440\"*, at|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* two ways, to|strong=\"H6440\"* use divination. He|strong=\"H6440\"* shook the|strong=\"H6440\"* arrows back and|strong=\"H6440\"* forth|strong=\"H6440\"*. He|strong=\"H6440\"* consulted the|strong=\"H6440\"* teraphim.+ 21:21 teraphim were household idols that may have been associated with inheritance rights to the household property.* He|strong=\"H6440\"* looked|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* liver." + }, + { + "verseNum": 22, + "text": "In|strong=\"H3068\"* his|strong=\"H3068\"* right|strong=\"H3068\"* hand|strong=\"H3709\"* was|strong=\"H3068\"* the|strong=\"H5221\"* lot for|strong=\"H3068\"* Jerusalem, to|strong=\"H1696\"* set|strong=\"H5117\"* battering rams, to|strong=\"H1696\"* open the|strong=\"H5221\"* mouth in|strong=\"H3068\"* the|strong=\"H5221\"* slaughter|strong=\"H5221\"*, to|strong=\"H1696\"* lift|strong=\"H3068\"* up the|strong=\"H5221\"* voice with|strong=\"H3068\"* shouting, to|strong=\"H1696\"* set|strong=\"H5117\"* battering rams against|strong=\"H1696\"* the|strong=\"H5221\"* gates, to|strong=\"H1696\"* cast|strong=\"H3068\"* up mounds, and|strong=\"H3068\"* to|strong=\"H1696\"* build forts." + }, + { + "verseNum": 23, + "text": "It|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* them|strong=\"H1961\"* as|strong=\"H1697\"* a|strong=\"H3068\"* false divination in|strong=\"H3068\"* their|strong=\"H3068\"* sight, who|strong=\"H3068\"* have|strong=\"H1961\"* sworn oaths to|strong=\"H3068\"* them|strong=\"H1961\"*; but|strong=\"H1961\"* he|strong=\"H3068\"* brings iniquity to|strong=\"H3068\"* memory, that|strong=\"H3068\"* they|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* taken|strong=\"H1961\"*." + }, + { + "verseNum": 24, + "text": "“Therefore the|strong=\"H7760\"* Lord Yahweh|strong=\"H3068\"* says: ‘Because|strong=\"H3027\"* you|strong=\"H7760\"* have|strong=\"H1121\"* caused your|strong=\"H7760\"* iniquity to|strong=\"H3318\"* be|strong=\"H3027\"* remembered, in|strong=\"H4428\"* that|strong=\"H4428\"* your|strong=\"H7760\"* transgressions are|strong=\"H1121\"* uncovered, so|strong=\"H3318\"* that|strong=\"H4428\"* in|strong=\"H4428\"* all|strong=\"H1254\"* your|strong=\"H7760\"* doings your|strong=\"H7760\"* sins appear; because|strong=\"H3027\"* you|strong=\"H7760\"* have|strong=\"H1121\"* come|strong=\"H3318\"* to|strong=\"H3318\"* memory, you|strong=\"H7760\"* will|strong=\"H4428\"* be|strong=\"H3027\"* taken|strong=\"H7760\"* with|strong=\"H3318\"* the|strong=\"H7760\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 25, + "text": "“‘You|strong=\"H7760\"*, deadly wounded wicked one|strong=\"H1121\"*, the|strong=\"H7760\"* prince of|strong=\"H1121\"* Israel, whose|strong=\"H1121\"* day has|strong=\"H3063\"* come|strong=\"H3063\"*, in|strong=\"H1121\"* the|strong=\"H7760\"* time of|strong=\"H1121\"* the|strong=\"H7760\"* iniquity of|strong=\"H1121\"* the|strong=\"H7760\"* end," + }, + { + "verseNum": 26, + "text": "the|strong=\"H7200\"* Lord Yahweh|strong=\"H3068\"* says: “Remove the|strong=\"H7200\"* turban, and|strong=\"H4428\"* take|strong=\"H5975\"* off|strong=\"H7200\"* the|strong=\"H7200\"* crown. This|strong=\"H7200\"* will|strong=\"H4428\"* not|strong=\"H3588\"* be|strong=\"H4428\"* as|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H4428\"*. Exalt that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H1870\"* low, and|strong=\"H4428\"* humble that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H1870\"* high|strong=\"H7218\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* overturn, overturn, overturn it|strong=\"H7760\"*. This|strong=\"H7760\"* also|strong=\"H3389\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H7760\"* more|strong=\"H5921\"*, until|strong=\"H5921\"* he|strong=\"H3389\"* comes|strong=\"H1961\"* whose|strong=\"H8179\"* right|strong=\"H3225\"* it|strong=\"H7760\"* is|strong=\"H1961\"*; and|strong=\"H6963\"* I|strong=\"H5921\"* will|strong=\"H1961\"* give|strong=\"H7760\"* it|strong=\"H7760\"*.”’" + }, + { + "verseNum": 28, + "text": "“You|strong=\"H5869\"*, son of|strong=\"H5869\"* man, prophesy and|strong=\"H5869\"* say, ‘The|strong=\"H2142\"* Lord Yahweh|strong=\"H3068\"* says this|strong=\"H1931\"* concerning the|strong=\"H2142\"* children of|strong=\"H5869\"* Ammon, and|strong=\"H5869\"* concerning their|strong=\"H2142\"* reproach:" + }, + { + "verseNum": 29, + "text": "while|strong=\"H3541\"* they|strong=\"H3651\"* see|strong=\"H7200\"* for|strong=\"H3605\"* you|strong=\"H3605\"* false visions|strong=\"H7200\"*," + }, + { + "verseNum": 30, + "text": "Cause it|strong=\"H3117\"* to|strong=\"H3478\"* return into its sheath." + }, + { + "verseNum": 31, + "text": "I|strong=\"H3541\"* will|strong=\"H3808\"* pour out|strong=\"H5493\"* my|strong=\"H5493\"* indignation on|strong=\"H3069\"* you|strong=\"H3808\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H5704\"* fuel to|strong=\"H5704\"* the|strong=\"H5414\"* fire." + } + ] + }, + { + "chapterNum": 22, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, will|strong=\"H1121\"* you|strong=\"H3605\"* judge|strong=\"H8199\"*? Will|strong=\"H1121\"* you|strong=\"H3605\"* judge|strong=\"H8199\"* the|strong=\"H3605\"* bloody|strong=\"H1818\"* city|strong=\"H5892\"*? Then|strong=\"H3045\"* cause her|strong=\"H3605\"* to|strong=\"H1121\"* know|strong=\"H3045\"* all|strong=\"H3605\"* her|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 3, + "text": "You|strong=\"H5921\"* shall|strong=\"H5892\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “A|strong=\"H3068\"* city|strong=\"H5892\"* that|strong=\"H5892\"* sheds|strong=\"H8210\"* blood|strong=\"H1818\"* within|strong=\"H8432\"* herself|strong=\"H5921\"*, that|strong=\"H5892\"* her|strong=\"H5921\"* time|strong=\"H6256\"* may|strong=\"H6213\"* come|strong=\"H5892\"*, and|strong=\"H5892\"* that|strong=\"H5892\"* makes|strong=\"H6213\"* idols|strong=\"H1544\"* against|strong=\"H5921\"* herself|strong=\"H5921\"* to|strong=\"H6213\"* defile|strong=\"H2930\"* her|strong=\"H5921\"*!" + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* have|strong=\"H1471\"* become|strong=\"H2930\"* guilty in|strong=\"H8141\"* your|strong=\"H3605\"* blood|strong=\"H1818\"* that|strong=\"H3605\"* you|strong=\"H5414\"* have|strong=\"H1471\"* shed|strong=\"H8210\"*, and|strong=\"H3117\"* are|strong=\"H3117\"* defiled|strong=\"H2930\"* in|strong=\"H8141\"* your|strong=\"H3605\"* idols|strong=\"H1544\"* which|strong=\"H1471\"* you|strong=\"H5414\"* have|strong=\"H1471\"* made|strong=\"H6213\"*! You|strong=\"H5414\"* have|strong=\"H1471\"* caused|strong=\"H5414\"* your|strong=\"H3605\"* days|strong=\"H3117\"* to|strong=\"H5704\"* draw|strong=\"H7126\"* near|strong=\"H7126\"*, and|strong=\"H3117\"* have|strong=\"H1471\"* come|strong=\"H7126\"* to|strong=\"H5704\"* the|strong=\"H3605\"* end of|strong=\"H3117\"* your|strong=\"H3605\"* years|strong=\"H8141\"*. Therefore|strong=\"H3651\"* I|strong=\"H3117\"* have|strong=\"H1471\"* made|strong=\"H6213\"* you|strong=\"H5414\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H5704\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3117\"* a|strong=\"H3068\"* mocking|strong=\"H7048\"* to|strong=\"H5704\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries." + }, + { + "verseNum": 5, + "text": "Those|strong=\"H4480\"* who|strong=\"H7350\"* are|strong=\"H7227\"* near|strong=\"H7138\"* and|strong=\"H8034\"* those|strong=\"H4480\"* who|strong=\"H7350\"* are|strong=\"H7227\"* far|strong=\"H7350\"* from|strong=\"H4480\"* you|strong=\"H4480\"* will|strong=\"H7227\"* mock|strong=\"H7046\"* you|strong=\"H4480\"*, you|strong=\"H4480\"* infamous|strong=\"H2931\"* one|strong=\"H4480\"*, full|strong=\"H7227\"* of|strong=\"H8034\"* tumult|strong=\"H4103\"*." + }, + { + "verseNum": 6, + "text": "“‘“Behold|strong=\"H2009\"*, the|strong=\"H1961\"* princes|strong=\"H5387\"* of|strong=\"H1818\"* Israel|strong=\"H3478\"*, everyone according to|strong=\"H3478\"* his|strong=\"H3478\"* power|strong=\"H2220\"*, have|strong=\"H1961\"* been|strong=\"H1961\"* in|strong=\"H3478\"* you|strong=\"H2009\"* to|strong=\"H3478\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 7, + "text": "In|strong=\"H6213\"* you|strong=\"H6213\"* have they|strong=\"H6213\"* treated|strong=\"H7043\"* father and|strong=\"H6213\"* mother with|strong=\"H6213\"* contempt|strong=\"H7043\"*.+ 22:7 Literally, made light of father and mother.* Among|strong=\"H8432\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have oppressed|strong=\"H3238\"* the|strong=\"H6213\"* foreigner|strong=\"H1616\"*. In|strong=\"H6213\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have wronged|strong=\"H3238\"* the|strong=\"H6213\"* fatherless|strong=\"H3490\"* and|strong=\"H6213\"* the|strong=\"H6213\"* widow." + }, + { + "verseNum": 8, + "text": "You have|strong=\"H7676\"* despised my|strong=\"H2490\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, and|strong=\"H6944\"* have|strong=\"H7676\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 9, + "text": "Slanderous|strong=\"H7400\"* men|strong=\"H6213\"* have|strong=\"H1961\"* been|strong=\"H1961\"* in|strong=\"H6213\"* you|strong=\"H6213\"* to|strong=\"H1961\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. In|strong=\"H6213\"* you|strong=\"H6213\"* they|strong=\"H6213\"* have|strong=\"H1961\"* eaten on|strong=\"H1961\"* the|strong=\"H6213\"* mountains|strong=\"H2022\"*. They|strong=\"H6213\"* have|strong=\"H1961\"* committed|strong=\"H6213\"* lewdness|strong=\"H2154\"* among|strong=\"H8432\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6031\"* you|strong=\"H1540\"* have they|strong=\"H1540\"* uncovered|strong=\"H1540\"* their|strong=\"H1540\"* fathers’ nakedness|strong=\"H6172\"*. In|strong=\"H6031\"* you|strong=\"H1540\"* have they|strong=\"H1540\"* humbled|strong=\"H6031\"* her|strong=\"H1540\"* who|strong=\"H2931\"* was|strong=\"H2931\"* unclean|strong=\"H2931\"* in|strong=\"H6031\"* her|strong=\"H1540\"* impurity|strong=\"H5079\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H6213\"* has|strong=\"H6213\"* committed|strong=\"H6213\"* abomination|strong=\"H8441\"* with|strong=\"H6213\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*’s wife, and|strong=\"H6213\"* another|strong=\"H7453\"* has|strong=\"H6213\"* lewdly|strong=\"H2154\"* defiled|strong=\"H2930\"* his|strong=\"H6213\"* daughter-in-law|strong=\"H3618\"*. Another|strong=\"H7453\"* in|strong=\"H6213\"* you|strong=\"H6213\"* has|strong=\"H6213\"* humbled|strong=\"H6031\"* his|strong=\"H6213\"* sister, his|strong=\"H6213\"* father’s daughter|strong=\"H1323\"*." + }, + { + "verseNum": 12, + "text": "In|strong=\"H7453\"* you|strong=\"H3947\"* have|strong=\"H3947\"* they|strong=\"H3947\"* taken|strong=\"H3947\"* bribes|strong=\"H7810\"* to|strong=\"H4616\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. You|strong=\"H3947\"* have|strong=\"H3947\"* taken|strong=\"H3947\"* interest|strong=\"H5392\"* and|strong=\"H1818\"* increase|strong=\"H8636\"*, and|strong=\"H1818\"* you|strong=\"H3947\"* have|strong=\"H3947\"* greedily gained|strong=\"H1214\"* of|strong=\"H1818\"* your|strong=\"H3947\"* neighbors|strong=\"H7453\"* by|strong=\"H7453\"* oppression|strong=\"H6233\"*, and|strong=\"H1818\"* have|strong=\"H3947\"* forgotten|strong=\"H7911\"* me|strong=\"H3947\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "“‘“Behold|strong=\"H2009\"*, therefore|strong=\"H5921\"* I|strong=\"H2009\"* have|strong=\"H1961\"* struck|strong=\"H5221\"* my|strong=\"H5921\"* hand|strong=\"H3709\"* at|strong=\"H5921\"* your|strong=\"H5921\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"* which|strong=\"H1818\"* you|strong=\"H5921\"* have|strong=\"H1961\"* made|strong=\"H6213\"*, and|strong=\"H6213\"* at|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H1818\"* has|strong=\"H1961\"* been|strong=\"H1961\"* shed|strong=\"H1818\"* within|strong=\"H8432\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Can|strong=\"H6213\"* your|strong=\"H3068\"* heart|strong=\"H3820\"* endure|strong=\"H5975\"*, or|strong=\"H3117\"* can|strong=\"H6213\"* your|strong=\"H3068\"* hands|strong=\"H3027\"* be|strong=\"H3027\"* strong|strong=\"H2388\"*, in|strong=\"H3068\"* the|strong=\"H6213\"* days|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* deal|strong=\"H6213\"* with|strong=\"H3068\"* you|strong=\"H3117\"*? I|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H4480\"* will|strong=\"H1471\"* scatter|strong=\"H2219\"* you|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H4480\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* disperse|strong=\"H2219\"* you|strong=\"H4480\"* through|strong=\"H4480\"* the|strong=\"H4480\"* countries. I|strong=\"H4480\"* will|strong=\"H1471\"* purge your|strong=\"H4480\"* filthiness|strong=\"H2932\"* out|strong=\"H4480\"* of|strong=\"H4480\"* you|strong=\"H4480\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* profaned|strong=\"H2490\"* in|strong=\"H3068\"* yourself|strong=\"H3045\"* in|strong=\"H3068\"* the|strong=\"H3588\"* sight|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* has|strong=\"H1961\"* become|strong=\"H1961\"* dross|strong=\"H5509\"* to|strong=\"H3478\"* me|strong=\"H1961\"*. All|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H8432\"* are|strong=\"H1121\"* bronze|strong=\"H5178\"*, tin, iron|strong=\"H1270\"*, and|strong=\"H1121\"* lead|strong=\"H5777\"* in|strong=\"H3478\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* the|strong=\"H3605\"* furnace|strong=\"H3564\"*. They|strong=\"H3478\"* are|strong=\"H1121\"* the|strong=\"H3605\"* dross|strong=\"H5509\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H3605\"* have|strong=\"H1961\"* all|strong=\"H3605\"* become|strong=\"H1961\"* dross|strong=\"H5509\"*, therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1961\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* into|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 20, + "text": "As|strong=\"H3651\"* they|strong=\"H3651\"* gather|strong=\"H6908\"* silver|strong=\"H3701\"*, bronze|strong=\"H5178\"*, iron|strong=\"H1270\"*, lead|strong=\"H5777\"*, and|strong=\"H3701\"* tin into|strong=\"H8432\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5921\"* furnace|strong=\"H3564\"*, to|strong=\"H5921\"* blow|strong=\"H5301\"* the|strong=\"H5921\"* fire on|strong=\"H5921\"* it|strong=\"H5921\"*, to|strong=\"H5921\"* melt|strong=\"H5413\"* it|strong=\"H5921\"*, so|strong=\"H3651\"* I|strong=\"H5921\"* will|strong=\"H2534\"* gather|strong=\"H6908\"* you|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* anger|strong=\"H2534\"* and|strong=\"H3701\"* in|strong=\"H5921\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"*, and|strong=\"H3701\"* I|strong=\"H5921\"* will|strong=\"H2534\"* lay|strong=\"H3240\"* you|strong=\"H5921\"* there|strong=\"H8432\"* and|strong=\"H3701\"* melt|strong=\"H5413\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H5678\"* gather|strong=\"H3664\"* you|strong=\"H5921\"*, and|strong=\"H5678\"* blow|strong=\"H5301\"* on|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H5921\"* fire of|strong=\"H8432\"* my|strong=\"H5921\"* wrath|strong=\"H5678\"*, and|strong=\"H5678\"* you|strong=\"H5921\"* will|strong=\"H5678\"* be melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H3651\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* furnace|strong=\"H3564\"*, so|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H3068\"* melted|strong=\"H5413\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H5921\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H3068\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.’”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell her|strong=\"H1931\"*, ‘You|strong=\"H3117\"* are|strong=\"H3117\"* a|strong=\"H3068\"* land that|strong=\"H3117\"* is|strong=\"H1931\"* not|strong=\"H3808\"* cleansed|strong=\"H2891\"* nor|strong=\"H3808\"* rained|strong=\"H1656\"* on|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* indignation|strong=\"H2195\"*.’" + }, + { + "verseNum": 25, + "text": "There|strong=\"H8432\"* is|strong=\"H5315\"* a|strong=\"H3068\"* conspiracy|strong=\"H7195\"* of|strong=\"H8432\"* her|strong=\"H3947\"* prophets|strong=\"H5030\"* within|strong=\"H8432\"* it|strong=\"H8432\"*, like|strong=\"H7580\"* a|strong=\"H3068\"* roaring|strong=\"H7580\"* lion ravening|strong=\"H2963\"* the|strong=\"H3947\"* prey|strong=\"H2964\"*. They|strong=\"H5315\"* have|strong=\"H5030\"* devoured souls|strong=\"H5315\"*. They|strong=\"H5315\"* take|strong=\"H3947\"* treasure|strong=\"H2633\"* and|strong=\"H5030\"* precious|strong=\"H3366\"* things|strong=\"H3366\"*. They|strong=\"H5315\"* have|strong=\"H5030\"* made|strong=\"H7235\"* many|strong=\"H7235\"* widows within|strong=\"H8432\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 26, + "text": "Her|strong=\"H3045\"* priests|strong=\"H3548\"* have|strong=\"H5869\"* done|strong=\"H2554\"* violence|strong=\"H2554\"* to|strong=\"H2490\"* my|strong=\"H3045\"* law|strong=\"H8451\"* and|strong=\"H3548\"* have|strong=\"H5869\"* profaned|strong=\"H2490\"* my|strong=\"H3045\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. They|strong=\"H3808\"* have|strong=\"H5869\"* made|strong=\"H3045\"* no|strong=\"H3808\"* distinction between|strong=\"H8432\"* the|strong=\"H8432\"* holy|strong=\"H6944\"* and|strong=\"H3548\"* the|strong=\"H8432\"* common|strong=\"H2455\"*, neither|strong=\"H3808\"* have|strong=\"H5869\"* they|strong=\"H3808\"* caused men|strong=\"H2490\"* to|strong=\"H2490\"* discern|strong=\"H3045\"* between|strong=\"H8432\"* the|strong=\"H8432\"* unclean|strong=\"H2931\"* and|strong=\"H3548\"* the|strong=\"H8432\"* clean|strong=\"H2889\"*, and|strong=\"H3548\"* have|strong=\"H5869\"* hidden|strong=\"H5956\"* their|strong=\"H8432\"* eyes|strong=\"H5869\"* from|strong=\"H5869\"* my|strong=\"H3045\"* Sabbaths|strong=\"H7676\"*. So|strong=\"H3808\"* I|strong=\"H3045\"* am profaned|strong=\"H2490\"* among|strong=\"H8432\"* them|strong=\"H8432\"*." + }, + { + "verseNum": 27, + "text": "Her|strong=\"H7130\"* princes|strong=\"H8269\"* within|strong=\"H7130\"* it|strong=\"H7130\"* are|strong=\"H8269\"* like|strong=\"H8210\"* wolves|strong=\"H2061\"* ravening|strong=\"H2963\"* the|strong=\"H7130\"* prey|strong=\"H2964\"*, to|strong=\"H4616\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"* and|strong=\"H1818\"* to|strong=\"H4616\"* destroy|strong=\"H2963\"* souls|strong=\"H5315\"*, that|strong=\"H5315\"* they|strong=\"H5315\"* may|strong=\"H5315\"* get|strong=\"H1214\"* dishonest|strong=\"H1215\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 28, + "text": "Her|strong=\"H2902\"* prophets|strong=\"H5030\"* have|strong=\"H3068\"* plastered|strong=\"H2902\"* for|strong=\"H3068\"* them|strong=\"H3068\"* with|strong=\"H3068\"* whitewash|strong=\"H8602\"*, seeing|strong=\"H2374\"* false|strong=\"H7723\"* visions|strong=\"H7723\"*, and|strong=\"H3068\"* divining|strong=\"H7080\"* lies|strong=\"H3577\"* to|strong=\"H1696\"* them|strong=\"H3068\"*, saying|strong=\"H1696\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*,’ when|strong=\"H1696\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* not|strong=\"H3808\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 29, + "text": "The|strong=\"H3808\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3808\"* land have|strong=\"H5971\"* used oppression|strong=\"H6233\"* and|strong=\"H4941\"* exercised|strong=\"H1497\"* robbery|strong=\"H1498\"*. Yes, they|strong=\"H3808\"* have|strong=\"H5971\"* troubled the|strong=\"H3808\"* poor|strong=\"H6041\"* and|strong=\"H4941\"* needy|strong=\"H6041\"*, and|strong=\"H4941\"* have|strong=\"H5971\"* oppressed|strong=\"H6231\"* the|strong=\"H3808\"* foreigner|strong=\"H1616\"* wrongfully|strong=\"H4941\"*." + }, + { + "verseNum": 30, + "text": "“I|strong=\"H3808\"* sought|strong=\"H1245\"* for|strong=\"H1157\"* a|strong=\"H3068\"* man|strong=\"H6440\"* among|strong=\"H4672\"* them|strong=\"H1992\"* who|strong=\"H1992\"* would build|strong=\"H1443\"* up|strong=\"H5975\"* the|strong=\"H6440\"* wall|strong=\"H1447\"* and|strong=\"H6440\"* stand|strong=\"H5975\"* in|strong=\"H4672\"* the|strong=\"H6440\"* gap|strong=\"H6556\"* before|strong=\"H6440\"* me|strong=\"H6440\"* for|strong=\"H1157\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, that|strong=\"H3808\"* I|strong=\"H3808\"* would not|strong=\"H3808\"* destroy|strong=\"H7843\"* it|strong=\"H6440\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* found|strong=\"H4672\"* no|strong=\"H3808\"* one|strong=\"H3808\"*." + }, + { + "verseNum": 31, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5414\"* have|strong=\"H5414\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5414\"* indignation|strong=\"H2195\"* on|strong=\"H5921\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H5414\"* consumed|strong=\"H3615\"* them|strong=\"H5414\"* with|strong=\"H5921\"* the|strong=\"H5002\"* fire of|strong=\"H7218\"* my|strong=\"H5414\"* wrath|strong=\"H5678\"*. I|strong=\"H5414\"* have|strong=\"H5414\"* brought|strong=\"H5414\"* their|strong=\"H5414\"* own way|strong=\"H1870\"* on|strong=\"H5921\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 23, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* two|strong=\"H8147\"* women|strong=\"H1323\"*, the|strong=\"H1961\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* one|strong=\"H1121\"* mother." + }, + { + "verseNum": 3, + "text": "They|strong=\"H8033\"* played|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"* in|strong=\"H6213\"* Egypt|strong=\"H4714\"*. They|strong=\"H8033\"* played|strong=\"H2181\"* the|strong=\"H6213\"* prostitute|strong=\"H2181\"* in|strong=\"H6213\"* their|strong=\"H6213\"* youth|strong=\"H5271\"*. Their|strong=\"H6213\"* breasts|strong=\"H7699\"* were|strong=\"H4714\"* fondled|strong=\"H1717\"* there|strong=\"H8033\"*, and|strong=\"H4714\"* their|strong=\"H6213\"* youthful nipples|strong=\"H1717\"* were|strong=\"H4714\"* caressed there|strong=\"H8033\"*." + }, + { + "verseNum": 4, + "text": "Their|strong=\"H1961\"* names|strong=\"H8034\"* were|strong=\"H1961\"* Oholah the|strong=\"H3205\"* elder|strong=\"H1419\"*, and|strong=\"H1121\"* Oholibah her|strong=\"H3205\"* sister. They|strong=\"H3389\"* became|strong=\"H3205\"* mine, and|strong=\"H1121\"* they|strong=\"H3389\"* bore|strong=\"H3205\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* daughters|strong=\"H1323\"*. As|strong=\"H1961\"* for|strong=\"H8034\"* their|strong=\"H1961\"* names|strong=\"H8034\"*, Samaria|strong=\"H8111\"* is|strong=\"H8034\"* Oholah, and|strong=\"H1121\"* Jerusalem|strong=\"H3389\"* Oholibah." + }, + { + "verseNum": 5, + "text": "“Oholah played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* when|strong=\"H5921\"* she|strong=\"H5921\"* was mine|strong=\"H8478\"*. She|strong=\"H5921\"* doted|strong=\"H5689\"* on|strong=\"H5921\"* her|strong=\"H5921\"* lovers|strong=\"H5689\"*, on|strong=\"H5921\"* the|strong=\"H5921\"* Assyrians her|strong=\"H5921\"* neighbors|strong=\"H7138\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H3605\"* were|strong=\"H5483\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* blue|strong=\"H8504\"*—governors|strong=\"H6346\"* and|strong=\"H8504\"* rulers|strong=\"H5461\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H3847\"* desirable|strong=\"H2531\"* young|strong=\"H2531\"* men|strong=\"H3605\"*, horsemen|strong=\"H6571\"* riding|strong=\"H7392\"* on|strong=\"H3847\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 7, + "text": "She|strong=\"H1544\"* gave|strong=\"H5414\"* herself|strong=\"H5921\"* as|strong=\"H1121\"* a|strong=\"H3068\"* prostitute to|strong=\"H5921\"* them|strong=\"H5414\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H5414\"* the|strong=\"H3605\"* choicest|strong=\"H4005\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Assyria. She|strong=\"H1544\"* defiled|strong=\"H2930\"* herself|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* idols|strong=\"H1544\"* of|strong=\"H1121\"* whomever|strong=\"H3605\"* she|strong=\"H1544\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "She|strong=\"H3588\"* hasn’t left|strong=\"H5800\"* her|strong=\"H5921\"* prostitution since|strong=\"H3588\"* leaving|strong=\"H5800\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"* in|strong=\"H5921\"* her|strong=\"H5921\"* youth|strong=\"H5271\"* they|strong=\"H1992\"* lay|strong=\"H7901\"* with|strong=\"H6213\"* her|strong=\"H5921\"*. They|strong=\"H1992\"* caressed her|strong=\"H5921\"* youthful nipples|strong=\"H1717\"* and|strong=\"H4714\"* they|strong=\"H1992\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* their|strong=\"H1992\"* prostitution on|strong=\"H5921\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H5414\"* delivered|strong=\"H5414\"* her|strong=\"H5414\"* into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* her|strong=\"H5414\"* lovers|strong=\"H5689\"*, into|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Assyrians|strong=\"H1121\"* on|strong=\"H5921\"* whom she|strong=\"H5921\"* doted|strong=\"H5689\"*." + }, + { + "verseNum": 10, + "text": "These|strong=\"H1992\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. They|strong=\"H1992\"* took|strong=\"H3947\"* her|strong=\"H1540\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* her|strong=\"H1540\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* killed|strong=\"H2026\"* her|strong=\"H1540\"* with|strong=\"H6213\"* the|strong=\"H3947\"* sword|strong=\"H2719\"*. She became|strong=\"H1961\"* a|strong=\"H3068\"* byword|strong=\"H8034\"* among|strong=\"H8034\"* women|strong=\"H1323\"*; for|strong=\"H6213\"* they|strong=\"H1992\"* executed|strong=\"H6213\"* judgments|strong=\"H8196\"* on|strong=\"H1961\"* her|strong=\"H1540\"*." + }, + { + "verseNum": 11, + "text": "“Her|strong=\"H7200\"* sister Oholibah saw|strong=\"H7200\"* this|strong=\"H7200\"*, yet she was more|strong=\"H4480\"* corrupt|strong=\"H7843\"* in|strong=\"H7200\"* her|strong=\"H7200\"* lusting than|strong=\"H4480\"* she, and|strong=\"H7200\"* in|strong=\"H7200\"* her|strong=\"H7200\"* prostitution which was more|strong=\"H4480\"* depraved|strong=\"H7843\"* than|strong=\"H4480\"* the|strong=\"H7200\"* prostitution of|strong=\"H4480\"* her|strong=\"H7200\"* sister." + }, + { + "verseNum": 12, + "text": "She lusted|strong=\"H5689\"* after the|strong=\"H3605\"* Assyrians|strong=\"H1121\"*, governors|strong=\"H6346\"* and|strong=\"H1121\"* rulers|strong=\"H5461\"*—her|strong=\"H3605\"* neighbors|strong=\"H7138\"*, clothed|strong=\"H3847\"* most|strong=\"H3847\"* gorgeously|strong=\"H4358\"*, horsemen|strong=\"H6571\"* riding|strong=\"H7392\"* on|strong=\"H3847\"* horses|strong=\"H5483\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* desirable|strong=\"H2531\"* young|strong=\"H1121\"* men|strong=\"H1121\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3588\"* saw|strong=\"H7200\"* that|strong=\"H3588\"* she|strong=\"H3588\"* was|strong=\"H1870\"* defiled|strong=\"H2930\"*. They|strong=\"H3588\"* both|strong=\"H8147\"* went|strong=\"H8147\"* the|strong=\"H7200\"* same way|strong=\"H1870\"*." + }, + { + "verseNum": 14, + "text": "“She|strong=\"H5921\"* increased|strong=\"H3254\"* her|strong=\"H5921\"* prostitution; for|strong=\"H5921\"* she|strong=\"H5921\"* saw|strong=\"H7200\"* men portrayed|strong=\"H2707\"* on|strong=\"H5921\"* the|strong=\"H5921\"* wall|strong=\"H7023\"*, the|strong=\"H5921\"* images|strong=\"H6754\"* of|strong=\"H5921\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"* portrayed|strong=\"H2707\"* with|strong=\"H5921\"* red|strong=\"H8350\"*," + }, + { + "verseNum": 15, + "text": "dressed with|strong=\"H3605\"* belts on|strong=\"H3605\"* their|strong=\"H3605\"* waists, with|strong=\"H3605\"* flowing|strong=\"H5628\"* turbans|strong=\"H2871\"* on|strong=\"H3605\"* their|strong=\"H3605\"* heads|strong=\"H7218\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H1121\"* looking|strong=\"H4758\"* like|strong=\"H4758\"* princes|strong=\"H7991\"*, after the|strong=\"H3605\"* likeness|strong=\"H1823\"* of|strong=\"H1121\"* the|strong=\"H3605\"* Babylonians|strong=\"H1121\"* in|strong=\"H1121\"* Chaldea|strong=\"H3778\"*, the|strong=\"H3605\"* land of|strong=\"H1121\"* their|strong=\"H3605\"* birth|strong=\"H4138\"*." + }, + { + "verseNum": 16, + "text": "As|strong=\"H5869\"* soon as|strong=\"H5869\"* she|strong=\"H5921\"* saw|strong=\"H4758\"* them|strong=\"H5921\"*, she|strong=\"H5921\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"* them|strong=\"H5921\"* and|strong=\"H7971\"* sent|strong=\"H7971\"* messengers|strong=\"H4397\"* to|strong=\"H7971\"* them|strong=\"H5921\"* into|strong=\"H5921\"* Chaldea|strong=\"H3778\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1121\"* Babylonians|strong=\"H1121\"* came to|strong=\"H1121\"* her into the|strong=\"H1121\"* bed|strong=\"H4904\"* of|strong=\"H1121\"* love|strong=\"H1730\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* defiled|strong=\"H2930\"* her with|strong=\"H5315\"* their|strong=\"H1992\"* prostitution. She was|strong=\"H5315\"* polluted|strong=\"H2930\"* with|strong=\"H5315\"* them|strong=\"H1992\"*, and|strong=\"H1121\"* her soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H3363\"* from|strong=\"H5315\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 18, + "text": "So|strong=\"H5921\"* she|strong=\"H5921\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* prostitution and|strong=\"H5315\"* uncovered|strong=\"H1540\"* her|strong=\"H1540\"* nakedness|strong=\"H6172\"*. Then my|strong=\"H5921\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H5361\"* from|strong=\"H5921\"* her|strong=\"H1540\"*, just like|strong=\"H5921\"* my|strong=\"H5921\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* alienated|strong=\"H5361\"* from|strong=\"H5921\"* her|strong=\"H1540\"* sister." + }, + { + "verseNum": 19, + "text": "Yet|strong=\"H3117\"* she multiplied|strong=\"H7235\"* her|strong=\"H7235\"* prostitution, remembering|strong=\"H2142\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* her|strong=\"H7235\"* youth|strong=\"H5271\"*, in|strong=\"H3117\"* which|strong=\"H3117\"* she had|strong=\"H7235\"* played|strong=\"H2181\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"* in|strong=\"H3117\"* the|strong=\"H3117\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "She|strong=\"H5921\"* lusted|strong=\"H5689\"* after|strong=\"H5921\"* their|strong=\"H5921\"* lovers|strong=\"H5689\"*, whose|strong=\"H6370\"* flesh|strong=\"H1320\"* is|strong=\"H1320\"* as|strong=\"H5921\"* the|strong=\"H5921\"* flesh|strong=\"H1320\"* of|strong=\"H5921\"* donkeys|strong=\"H2543\"*, and|strong=\"H5483\"* whose|strong=\"H6370\"* issue|strong=\"H2231\"* is|strong=\"H1320\"* like|strong=\"H5921\"* the|strong=\"H5921\"* issue|strong=\"H2231\"* of|strong=\"H5921\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 21, + "text": "Thus|strong=\"H4616\"* you|strong=\"H6213\"* called to|strong=\"H6213\"* memory the|strong=\"H6213\"* lewdness|strong=\"H2154\"* of|strong=\"H6213\"* your|strong=\"H6213\"* youth|strong=\"H5271\"*, in|strong=\"H6213\"* the|strong=\"H6213\"* caressing of|strong=\"H6213\"* your|strong=\"H6213\"* nipples|strong=\"H1717\"* by|strong=\"H6485\"* the|strong=\"H6213\"* Egyptians|strong=\"H4714\"* because|strong=\"H4616\"* of|strong=\"H6213\"* your|strong=\"H6213\"* youthful breasts|strong=\"H7699\"*." + }, + { + "verseNum": 22, + "text": "“Therefore|strong=\"H3651\"*, Oholibah, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5315\"* raise|strong=\"H5782\"* up|strong=\"H5782\"* your|strong=\"H5921\"* lovers against|strong=\"H5921\"* you|strong=\"H5921\"*, from|strong=\"H5921\"* whom|strong=\"H1992\"* your|strong=\"H5921\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* alienated|strong=\"H5361\"*, and|strong=\"H5315\"* I|strong=\"H2005\"* will|strong=\"H5315\"* bring them|strong=\"H1992\"* against|strong=\"H5921\"* you|strong=\"H5921\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*:" + }, + { + "verseNum": 23, + "text": "the|strong=\"H3605\"* Babylonians|strong=\"H1121\"* and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*, Pekod|strong=\"H6489\"*, Shoa|strong=\"H7772\"*, Koa|strong=\"H6970\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Assyrians|strong=\"H1121\"* with|strong=\"H3605\"* them|strong=\"H7121\"*; all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H7121\"* desirable|strong=\"H2531\"* young|strong=\"H1121\"* men|strong=\"H1121\"*, governors|strong=\"H6346\"* and|strong=\"H1121\"* rulers|strong=\"H5461\"*, princes|strong=\"H7991\"* and|strong=\"H1121\"* men|strong=\"H1121\"* of|strong=\"H1121\"* renown|strong=\"H7121\"*, all|strong=\"H3605\"* of|strong=\"H1121\"* them|strong=\"H7121\"* riding|strong=\"H7392\"* on|strong=\"H7392\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 24, + "text": "They|strong=\"H5921\"* will|strong=\"H5971\"* come|strong=\"H5971\"* against|strong=\"H5921\"* you|strong=\"H5414\"* with|strong=\"H5921\"* weapons|strong=\"H2021\"*, chariots|strong=\"H7393\"*, and|strong=\"H4941\"* wagons|strong=\"H1534\"*, and|strong=\"H4941\"* with|strong=\"H5921\"* a|strong=\"H3068\"* company|strong=\"H6951\"* of|strong=\"H6440\"* peoples|strong=\"H5971\"*. They|strong=\"H5921\"* will|strong=\"H5971\"* set|strong=\"H7760\"* themselves|strong=\"H7760\"* against|strong=\"H5921\"* you|strong=\"H5414\"* with|strong=\"H5921\"* buckler|strong=\"H4043\"*, shield|strong=\"H4043\"*, and|strong=\"H4941\"* helmet|strong=\"H6959\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* commit|strong=\"H5414\"* the|strong=\"H6440\"* judgment|strong=\"H4941\"* to|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H4941\"* they|strong=\"H5921\"* will|strong=\"H5971\"* judge|strong=\"H8199\"* you|strong=\"H5414\"* according|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5414\"* judgments|strong=\"H4941\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* set|strong=\"H5414\"* my|strong=\"H5414\"* jealousy|strong=\"H7068\"* against|strong=\"H2719\"* you|strong=\"H5414\"*, and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H2719\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* you|strong=\"H5414\"* in|strong=\"H6213\"* fury|strong=\"H2534\"*. They|strong=\"H1992\"* will|strong=\"H2719\"* take|strong=\"H3947\"* away|strong=\"H5493\"* your|strong=\"H5414\"* nose and|strong=\"H1121\"* your|strong=\"H5414\"* ears. Your|strong=\"H5414\"* remnant will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H2719\"* take|strong=\"H3947\"* your|strong=\"H5414\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"*; and|strong=\"H1121\"* the|strong=\"H5414\"* rest of|strong=\"H1121\"* you|strong=\"H5414\"* will|strong=\"H2719\"* be|strong=\"H1121\"* devoured by|strong=\"H5414\"* the|strong=\"H5414\"* fire." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3947\"* will also strip|strong=\"H6584\"* you|strong=\"H3947\"* of|strong=\"H3627\"* your|strong=\"H3947\"* clothes and|strong=\"H3947\"* take|strong=\"H3947\"* away|strong=\"H3947\"* your|strong=\"H3947\"* beautiful|strong=\"H8597\"* jewels|strong=\"H3627\"*." + }, + { + "verseNum": 27, + "text": "Thus|strong=\"H3808\"* I|strong=\"H4714\"* will|strong=\"H5869\"* make|strong=\"H7673\"* your|strong=\"H5375\"* lewdness|strong=\"H2154\"* to|strong=\"H4714\"* cease|strong=\"H7673\"* from|strong=\"H4480\"* you|strong=\"H3808\"*, and|strong=\"H5869\"* remove|strong=\"H7673\"* your|strong=\"H5375\"* prostitution|strong=\"H2184\"* from|strong=\"H4480\"* the|strong=\"H5375\"* land of|strong=\"H5869\"* Egypt|strong=\"H4714\"*, so|strong=\"H4480\"* that|strong=\"H4480\"* you|strong=\"H3808\"* will|strong=\"H5869\"* not|strong=\"H3808\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* to|strong=\"H4714\"* them|strong=\"H5375\"*, nor|strong=\"H3808\"* remember|strong=\"H2142\"* Egypt|strong=\"H4714\"* any|strong=\"H4480\"* more|strong=\"H4480\"*.’" + }, + { + "verseNum": 28, + "text": "“For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H5315\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* them|strong=\"H5414\"* whom|strong=\"H1992\"* you|strong=\"H3588\"* hate|strong=\"H8130\"*, into|strong=\"H3027\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* them|strong=\"H5414\"* from|strong=\"H5315\"* whom|strong=\"H1992\"* your|strong=\"H5414\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* alienated|strong=\"H5361\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H6213\"* will|strong=\"H6213\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* you|strong=\"H3605\"* in|strong=\"H6213\"* hatred|strong=\"H8135\"*, and|strong=\"H6213\"* will|strong=\"H6213\"* take|strong=\"H3947\"* away|strong=\"H3947\"* all|strong=\"H3605\"* your|strong=\"H3605\"* labor|strong=\"H3018\"*, and|strong=\"H6213\"* will|strong=\"H6213\"* leave|strong=\"H5800\"* you|strong=\"H3605\"* naked|strong=\"H5903\"* and|strong=\"H6213\"* bare|strong=\"H6181\"*. The|strong=\"H3605\"* nakedness|strong=\"H6172\"* of|strong=\"H3605\"* your|strong=\"H3605\"* prostitution will|strong=\"H6213\"* be|strong=\"H3605\"* uncovered|strong=\"H1540\"*, both|strong=\"H3605\"* your|strong=\"H3605\"* lewdness|strong=\"H2154\"* and|strong=\"H6213\"* your|strong=\"H3605\"* prostitution." + }, + { + "verseNum": 30, + "text": "These|strong=\"H6213\"* things will|strong=\"H1471\"* be|strong=\"H1471\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H5921\"* because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1471\"* played|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"* after|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* because|strong=\"H5921\"* you|strong=\"H5921\"* are|strong=\"H1471\"* polluted|strong=\"H2930\"* with|strong=\"H6213\"* their|strong=\"H5921\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 31, + "text": "You|strong=\"H5414\"* have|strong=\"H3027\"* walked|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H5414\"* way|strong=\"H1870\"* of|strong=\"H3027\"* your|strong=\"H5414\"* sister; therefore I|strong=\"H5414\"* will|strong=\"H3027\"* give|strong=\"H5414\"* her|strong=\"H5414\"* cup|strong=\"H3563\"* into|strong=\"H1980\"* your|strong=\"H5414\"* hand|strong=\"H3027\"*.’" + }, + { + "verseNum": 32, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 33, + "text": "You will|strong=\"H8111\"* be|strong=\"H8111\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* drunkenness|strong=\"H7943\"* and|strong=\"H8111\"* sorrow|strong=\"H3015\"*," + }, + { + "verseNum": 34, + "text": "You|strong=\"H3588\"* will|strong=\"H3069\"* even|strong=\"H3588\"* drink|strong=\"H8354\"* it|strong=\"H3588\"* and|strong=\"H8354\"* drain|strong=\"H4680\"* it|strong=\"H3588\"* out|strong=\"H4680\"*." + }, + { + "verseNum": 35, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H3282\"* you|strong=\"H3651\"* have|strong=\"H1571\"* forgotten|strong=\"H7911\"* me|strong=\"H7993\"* and|strong=\"H1571\"* cast|strong=\"H7993\"* me|strong=\"H7993\"* behind your|strong=\"H5375\"* back|strong=\"H1458\"*, therefore|strong=\"H3651\"* you|strong=\"H3651\"* also|strong=\"H1571\"* bear|strong=\"H5375\"* your|strong=\"H5375\"* lewdness|strong=\"H2154\"* and|strong=\"H1571\"* your|strong=\"H5375\"* prostitution.’”" + }, + { + "verseNum": 36, + "text": "Yahweh|strong=\"H3068\"* said moreover to|strong=\"H3068\"* me|strong=\"H5046\"*: “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, will|strong=\"H3068\"* you|strong=\"H5046\"* judge|strong=\"H8199\"* Oholah and|strong=\"H1121\"* Oholibah? Then|strong=\"H3068\"* declare|strong=\"H5046\"* to|strong=\"H3068\"* them|strong=\"H5046\"* their|strong=\"H3068\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 37, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1121\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"*, and|strong=\"H1121\"* blood|strong=\"H1818\"* is|strong=\"H1571\"* in|strong=\"H1121\"* their|strong=\"H3588\"* hands|strong=\"H3027\"*. They|strong=\"H3588\"* have|strong=\"H1121\"* committed|strong=\"H5003\"* adultery|strong=\"H5003\"* with|strong=\"H3027\"* their|strong=\"H3588\"* idols|strong=\"H1544\"*. They|strong=\"H3588\"* have|strong=\"H1121\"* also|strong=\"H1571\"* caused|strong=\"H5674\"* their|strong=\"H3588\"* sons|strong=\"H1121\"*, whom|strong=\"H3588\"* they|strong=\"H3588\"* bore|strong=\"H3205\"* to|strong=\"H3027\"* me|strong=\"H5674\"*, to|strong=\"H3027\"* pass|strong=\"H5674\"* through|strong=\"H3027\"* the|strong=\"H3588\"* fire to|strong=\"H3027\"* them|strong=\"H3027\"* to|strong=\"H3027\"* be|strong=\"H3027\"* devoured." + }, + { + "verseNum": 38, + "text": "Moreover|strong=\"H5750\"* this|strong=\"H2063\"* they|strong=\"H3117\"* have|strong=\"H3117\"* done|strong=\"H6213\"* to|strong=\"H6213\"* me|strong=\"H6213\"*: they|strong=\"H3117\"* have|strong=\"H3117\"* defiled|strong=\"H2930\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"* in|strong=\"H6213\"* the|strong=\"H6213\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H3117\"* have|strong=\"H3117\"* profaned|strong=\"H2490\"* my|strong=\"H2490\"* Sabbaths|strong=\"H7676\"*." + }, + { + "verseNum": 39, + "text": "For|strong=\"H6213\"* when|strong=\"H3117\"* they|strong=\"H3117\"* had|strong=\"H1121\"* slain|strong=\"H7819\"* their|strong=\"H8432\"* children|strong=\"H1121\"* to|strong=\"H6213\"* their|strong=\"H8432\"* idols|strong=\"H1544\"*, then|strong=\"H2009\"* they|strong=\"H3117\"* came the|strong=\"H3541\"* same|strong=\"H1931\"* day|strong=\"H3117\"* into|strong=\"H8432\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"* to|strong=\"H6213\"* profane|strong=\"H2490\"* it|strong=\"H1931\"*; and|strong=\"H1121\"* behold|strong=\"H2009\"*, they|strong=\"H3117\"* have|strong=\"H1121\"* done|strong=\"H6213\"* this|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H1121\"* my|strong=\"H2490\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 40, + "text": "“Furthermore|strong=\"H2009\"* you|strong=\"H3588\"* sisters have|strong=\"H5869\"* sent|strong=\"H7971\"* for|strong=\"H3588\"* men who|strong=\"H4397\"* come|strong=\"H7971\"* from|strong=\"H7971\"* far|strong=\"H4801\"* away|strong=\"H7971\"*, to|strong=\"H7971\"* whom|strong=\"H5869\"* a|strong=\"H3068\"* messenger|strong=\"H4397\"* was|strong=\"H4397\"* sent|strong=\"H7971\"*, and|strong=\"H7971\"* behold|strong=\"H2009\"*, they|strong=\"H3588\"* came|strong=\"H4397\"*; for|strong=\"H3588\"* whom|strong=\"H5869\"* you|strong=\"H3588\"* washed|strong=\"H7364\"* yourself|strong=\"H5710\"*, painted|strong=\"H3583\"* your|strong=\"H3588\"* eyes|strong=\"H5869\"*, decorated|strong=\"H5710\"* yourself|strong=\"H5710\"* with|strong=\"H7364\"* ornaments|strong=\"H5716\"*," + }, + { + "verseNum": 41, + "text": "and|strong=\"H6440\"* sat|strong=\"H3427\"* on|strong=\"H5921\"* a|strong=\"H3068\"* stately|strong=\"H3520\"* bed|strong=\"H4296\"*, with|strong=\"H5921\"* a|strong=\"H3068\"* table|strong=\"H7979\"* prepared|strong=\"H6186\"* before|strong=\"H6440\"* it|strong=\"H7760\"*, whereupon you|strong=\"H6440\"* set|strong=\"H7760\"* my|strong=\"H7760\"* incense|strong=\"H7004\"* and|strong=\"H6440\"* my|strong=\"H7760\"* oil|strong=\"H8081\"*." + }, + { + "verseNum": 42, + "text": "“The|strong=\"H5921\"* voice|strong=\"H6963\"* of|strong=\"H3027\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* being at|strong=\"H5921\"* ease|strong=\"H7961\"* was|strong=\"H6963\"* with|strong=\"H5921\"* her|strong=\"H5414\"*. With|strong=\"H5921\"* men|strong=\"H7218\"* of|strong=\"H3027\"* the|strong=\"H5921\"* common|strong=\"H7230\"* sort|strong=\"H7230\"* were|strong=\"H3027\"* brought|strong=\"H5414\"* drunkards|strong=\"H5433\"* from|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*; and|strong=\"H3027\"* they|strong=\"H5921\"* put|strong=\"H5414\"* bracelets|strong=\"H6781\"* on|strong=\"H5921\"* their|strong=\"H5414\"* hands|strong=\"H3027\"*, and|strong=\"H3027\"* beautiful|strong=\"H8597\"* crowns|strong=\"H5850\"* on|strong=\"H5921\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 43, + "text": "Then|strong=\"H6258\"* I|strong=\"H6258\"* said of|strong=\"H1931\"* her|strong=\"H1931\"* who|strong=\"H1931\"* was|strong=\"H1931\"* old|strong=\"H1087\"* in|strong=\"H2181\"* adulteries|strong=\"H5004\"*, ‘Now|strong=\"H6258\"* they|strong=\"H1931\"* will|strong=\"H1931\"* play|strong=\"H2181\"* the|strong=\"H2181\"* prostitute|strong=\"H2181\"* with|strong=\"H2181\"* her|strong=\"H1931\"*, and|strong=\"H6258\"* she|strong=\"H1931\"* with|strong=\"H2181\"* them|strong=\"H1931\"*.’" + }, + { + "verseNum": 44, + "text": "They|strong=\"H3651\"* went in|strong=\"H2181\"* to|strong=\"H2154\"* her|strong=\"H3651\"*, as|strong=\"H3651\"* they|strong=\"H3651\"* go in|strong=\"H2181\"* to|strong=\"H2154\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"*. So|strong=\"H3651\"* they|strong=\"H3651\"* went in|strong=\"H2181\"* to|strong=\"H2154\"* Oholah and|strong=\"H3651\"* to|strong=\"H2154\"* Oholibah, the|strong=\"H2181\"* lewd|strong=\"H2154\"* women." + }, + { + "verseNum": 45, + "text": "Righteous|strong=\"H6662\"* men|strong=\"H6662\"* will|strong=\"H6662\"* judge|strong=\"H8199\"* them|strong=\"H1992\"* with|strong=\"H3027\"* the|strong=\"H3588\"* judgment|strong=\"H4941\"* of|strong=\"H3027\"* adulteresses|strong=\"H5003\"* and|strong=\"H4941\"* with|strong=\"H3027\"* the|strong=\"H3588\"* judgment|strong=\"H4941\"* of|strong=\"H3027\"* women|strong=\"H1992\"* who|strong=\"H1992\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* adulteresses|strong=\"H5003\"*, and|strong=\"H4941\"* blood|strong=\"H1818\"* is|strong=\"H3027\"* in|strong=\"H3027\"* their|strong=\"H1992\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 46, + "text": "“For|strong=\"H3588\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘I|strong=\"H3588\"* will|strong=\"H5414\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* a|strong=\"H3068\"* mob against|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H5927\"* will|strong=\"H5414\"* give|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H5927\"* be|strong=\"H5414\"* tossed back|strong=\"H5927\"* and|strong=\"H5927\"* forth|strong=\"H5414\"* and|strong=\"H5927\"* robbed." + }, + { + "verseNum": 47, + "text": "The|strong=\"H5921\"* company|strong=\"H6951\"* will|strong=\"H2719\"* stone|strong=\"H7275\"* them|strong=\"H5921\"* with|strong=\"H8313\"* stones and|strong=\"H1121\"* dispatch|strong=\"H1254\"* them|strong=\"H5921\"* with|strong=\"H8313\"* their|strong=\"H8313\"* swords|strong=\"H2719\"*. They|strong=\"H5921\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* their|strong=\"H8313\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H8313\"* daughters|strong=\"H1323\"*, and|strong=\"H1121\"* burn|strong=\"H8313\"* up|strong=\"H5921\"* their|strong=\"H8313\"* houses|strong=\"H1004\"* with|strong=\"H8313\"* fire." + }, + { + "verseNum": 48, + "text": "“‘Thus|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3808\"* cause|strong=\"H6213\"* lewdness|strong=\"H2154\"* to|strong=\"H6213\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* land, that|strong=\"H3605\"* all|strong=\"H3605\"* women may|strong=\"H6213\"* be|strong=\"H3808\"* taught|strong=\"H3256\"* not|strong=\"H3808\"* to|strong=\"H6213\"* be|strong=\"H3808\"* lewd|strong=\"H2154\"* like|strong=\"H3808\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 49, + "text": "They|strong=\"H3588\"* will|strong=\"H5414\"* recompense|strong=\"H5414\"* your|strong=\"H5414\"* lewdness|strong=\"H2154\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3045\"* you|strong=\"H3588\"* will|strong=\"H5414\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* sins|strong=\"H2399\"* of|strong=\"H5921\"* your|strong=\"H5414\"* idols|strong=\"H1544\"*. Then|strong=\"H5375\"* you|strong=\"H3588\"* will|strong=\"H5414\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 24, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H1961\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, write|strong=\"H3789\"* the|strong=\"H3117\"* name|strong=\"H8034\"* of|strong=\"H1121\"* the|strong=\"H3117\"* day|strong=\"H3117\"*, this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*. The|strong=\"H3117\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon drew|strong=\"H3117\"* close to|strong=\"H3117\"* Jerusalem|strong=\"H3389\"* this|strong=\"H2088\"* same|strong=\"H6106\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 3, + "text": "Utter|strong=\"H4911\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* to|strong=\"H1004\"* the|strong=\"H3069\"* rebellious|strong=\"H4805\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* tell them, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*," + }, + { + "verseNum": 4, + "text": "Gather|strong=\"H4390\"* its|strong=\"H3605\"* pieces|strong=\"H5409\"* into it|strong=\"H2896\"*," + }, + { + "verseNum": 5, + "text": "Take|strong=\"H3947\"* the|strong=\"H3947\"* choice|strong=\"H4005\"* of|strong=\"H8432\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*," + }, + { + "verseNum": 6, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "“‘“For|strong=\"H3588\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* she|strong=\"H3588\"* shed|strong=\"H8210\"* is|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* her|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "That|strong=\"H5414\"* it|strong=\"H5414\"* may|strong=\"H5414\"* cause|strong=\"H5414\"* wrath|strong=\"H2534\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* take|strong=\"H5358\"* vengeance|strong=\"H5359\"*," + }, + { + "verseNum": 9, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "Heap|strong=\"H7235\"* on|strong=\"H7235\"* the|strong=\"H7235\"* wood|strong=\"H6086\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H4616\"* set|strong=\"H5975\"* it|strong=\"H5921\"* empty|strong=\"H7386\"* on|strong=\"H5921\"* its|strong=\"H5921\"* coals|strong=\"H1513\"*," + }, + { + "verseNum": 12, + "text": "She|strong=\"H3808\"* is|strong=\"H3808\"* weary|strong=\"H3811\"* with|strong=\"H3318\"* toil|strong=\"H8383\"*;" + }, + { + "verseNum": 13, + "text": "“‘“In|strong=\"H5750\"* your|strong=\"H3808\"* filthiness|strong=\"H2932\"* is|strong=\"H2932\"* lewdness|strong=\"H2154\"*. Because|strong=\"H3282\"* I|strong=\"H5704\"* have|strong=\"H3282\"* cleansed|strong=\"H2891\"* you|strong=\"H5704\"* and|strong=\"H5750\"* you|strong=\"H5704\"* weren’t cleansed|strong=\"H2891\"*, you|strong=\"H5704\"* won’t be|strong=\"H3808\"* cleansed|strong=\"H2891\"* from|strong=\"H5704\"* your|strong=\"H3808\"* filthiness|strong=\"H2932\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, until|strong=\"H5704\"* I|strong=\"H5704\"* have|strong=\"H3282\"* caused my|strong=\"H5117\"* wrath|strong=\"H2534\"* toward|strong=\"H5704\"* you|strong=\"H5704\"* to|strong=\"H5704\"* rest|strong=\"H5117\"*." + }, + { + "verseNum": 14, + "text": "“‘“I|strong=\"H3808\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H6213\"*. It|strong=\"H6213\"* will|strong=\"H3068\"* happen|strong=\"H6213\"*, and|strong=\"H3068\"* I|strong=\"H3808\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H6213\"*. I|strong=\"H3808\"* won’t go|strong=\"H3068\"* back|strong=\"H6544\"*. I|strong=\"H3808\"* won’t spare|strong=\"H2347\"*. I|strong=\"H3808\"* won’t repent|strong=\"H5162\"*. According to|strong=\"H1696\"* your|strong=\"H3068\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* according to|strong=\"H1696\"* your|strong=\"H3068\"* doings|strong=\"H5949\"*, they|strong=\"H3068\"* will|strong=\"H3068\"* judge|strong=\"H8199\"* you|strong=\"H6213\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 15, + "text": "Also|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5869\"* take|strong=\"H3947\"* away|strong=\"H3947\"* from|strong=\"H4480\"* you|strong=\"H3947\"* the|strong=\"H3947\"* desire|strong=\"H4261\"* of|strong=\"H1121\"* your|strong=\"H3947\"* eyes|strong=\"H5869\"* with|strong=\"H5869\"* one|strong=\"H3808\"* stroke|strong=\"H4046\"*; yet|strong=\"H3808\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* neither|strong=\"H3808\"* mourn|strong=\"H5594\"* nor|strong=\"H3808\"* weep|strong=\"H1058\"*, neither|strong=\"H3808\"* shall|strong=\"H1121\"* your|strong=\"H3947\"* tears|strong=\"H1832\"* run|strong=\"H1832\"* down." + }, + { + "verseNum": 17, + "text": "Sigh, but|strong=\"H3808\"* not|strong=\"H3808\"* aloud. Make|strong=\"H6213\"* no|strong=\"H3808\"* mourning for|strong=\"H5921\"* the|strong=\"H5921\"* dead|strong=\"H4191\"*. Bind|strong=\"H2280\"* your|strong=\"H5921\"* headdress on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H3899\"* put|strong=\"H7760\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*. Don’t cover|strong=\"H5844\"* your|strong=\"H5921\"* lips|strong=\"H8222\"*, and|strong=\"H3899\"* don’t eat|strong=\"H3899\"* mourner’s bread|strong=\"H3899\"*.”" + }, + { + "verseNum": 18, + "text": "So|strong=\"H6213\"* I|strong=\"H6680\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H6213\"* people|strong=\"H5971\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"*, and|strong=\"H5971\"* at|strong=\"H4191\"* evening|strong=\"H6153\"* my|strong=\"H6213\"* wife|strong=\"H1696\"* died|strong=\"H4191\"*. So|strong=\"H6213\"* I|strong=\"H6680\"* did|strong=\"H6213\"* in|strong=\"H6213\"* the|strong=\"H6213\"* morning|strong=\"H1242\"* as|strong=\"H6213\"* I|strong=\"H6680\"* was|strong=\"H6213\"* commanded|strong=\"H6680\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3588\"* people|strong=\"H5971\"* asked|strong=\"H4100\"* me|strong=\"H5046\"*, “Won’t you|strong=\"H3588\"* tell|strong=\"H5046\"* us|strong=\"H5046\"* what|strong=\"H4100\"* these|strong=\"H6213\"* things|strong=\"H3808\"* mean to|strong=\"H6213\"* us|strong=\"H5046\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* act|strong=\"H6213\"* like|strong=\"H3808\"* this|strong=\"H6213\"*?”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H1961\"* I|strong=\"H1697\"* said|strong=\"H1697\"* to|strong=\"H3068\"* them|strong=\"H1961\"*, “Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "‘Speak to|strong=\"H3478\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, “The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3478\"* profane|strong=\"H2490\"* my|strong=\"H2490\"* sanctuary|strong=\"H4720\"*, the|strong=\"H3069\"* pride|strong=\"H1347\"* of|strong=\"H1121\"* your|strong=\"H5800\"* power|strong=\"H5797\"*, the|strong=\"H3069\"* desire|strong=\"H5315\"* of|strong=\"H1121\"* your|strong=\"H5800\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* that|strong=\"H5315\"* which|strong=\"H1004\"* your|strong=\"H5800\"* soul|strong=\"H5315\"* pities; and|strong=\"H1121\"* your|strong=\"H5800\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H5800\"* daughters|strong=\"H1323\"* whom|strong=\"H5869\"* you|strong=\"H5800\"* have|strong=\"H5869\"* left|strong=\"H5800\"* behind|strong=\"H5800\"* will|strong=\"H3478\"* fall|strong=\"H5307\"* by|strong=\"H3478\"* the|strong=\"H3069\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H5921\"* will|strong=\"H3808\"* do|strong=\"H6213\"* as|strong=\"H6213\"* I|strong=\"H5921\"* have|strong=\"H3808\"* done|strong=\"H6213\"*. You|strong=\"H5921\"* won’t cover|strong=\"H5844\"* your|strong=\"H5921\"* lips|strong=\"H8222\"* or|strong=\"H3808\"* eat|strong=\"H3899\"* mourner’s bread|strong=\"H3899\"*." + }, + { + "verseNum": 23, + "text": "Your|strong=\"H5921\"* turbans|strong=\"H6287\"* will|strong=\"H3808\"* be|strong=\"H3808\"* on|strong=\"H5921\"* your|strong=\"H5921\"* heads|strong=\"H7218\"*, and|strong=\"H7218\"* your|strong=\"H5921\"* sandals|strong=\"H5275\"* on|strong=\"H5921\"* your|strong=\"H5921\"* feet|strong=\"H7272\"*. You|strong=\"H5921\"* won’t mourn|strong=\"H5594\"* or|strong=\"H3808\"* weep|strong=\"H1058\"*; but|strong=\"H3808\"* you|strong=\"H5921\"* will|strong=\"H3808\"* pine away|strong=\"H4743\"* in|strong=\"H5921\"* your|strong=\"H5921\"* iniquities|strong=\"H5771\"*, and|strong=\"H7218\"* moan one|strong=\"H3808\"* toward|strong=\"H5921\"* another|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "Thus|strong=\"H1961\"* Ezekiel|strong=\"H3168\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H1961\"* you|strong=\"H3588\"*; according to|strong=\"H1961\"* all|strong=\"H3605\"* that|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H1961\"* done|strong=\"H6213\"*, you|strong=\"H3588\"* will|strong=\"H1961\"* do|strong=\"H6213\"*. When|strong=\"H3588\"* this|strong=\"H6213\"* comes|strong=\"H1961\"*, then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”’”" + }, + { + "verseNum": 25, + "text": "“You|strong=\"H3117\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, shouldn’t it|strong=\"H3117\"* be|strong=\"H3808\"* in|strong=\"H3117\"* the|strong=\"H3947\"* day|strong=\"H3117\"* when|strong=\"H3117\"* I|strong=\"H3117\"* take|strong=\"H3947\"* from|strong=\"H5315\"* them|strong=\"H1992\"* their|strong=\"H3947\"* strength|strong=\"H4581\"*, the|strong=\"H3947\"* joy|strong=\"H4885\"* of|strong=\"H1121\"* their|strong=\"H3947\"* glory|strong=\"H8597\"*, the|strong=\"H3947\"* desire|strong=\"H5315\"* of|strong=\"H1121\"* their|strong=\"H3947\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* that|strong=\"H3117\"* whereupon they|strong=\"H1992\"* set|strong=\"H4853\"* their|strong=\"H3947\"* heart|strong=\"H5315\"*—their|strong=\"H3947\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* their|strong=\"H3947\"* daughters|strong=\"H1323\"*—" + }, + { + "verseNum": 26, + "text": "that|strong=\"H3117\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* he|strong=\"H1931\"* who|strong=\"H1931\"* escapes|strong=\"H6412\"* will|strong=\"H1931\"* come to|strong=\"H3117\"* you|strong=\"H3117\"*, to|strong=\"H3117\"* cause you|strong=\"H3117\"* to|strong=\"H3117\"* hear|strong=\"H2045\"* it|strong=\"H1931\"* with|strong=\"H3117\"* your|strong=\"H3117\"* ears?" + }, + { + "verseNum": 27, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* will|strong=\"H3068\"* be|strong=\"H1961\"* opened|strong=\"H6605\"* to|strong=\"H1696\"* him|strong=\"H1931\"* who|strong=\"H1931\"* has|strong=\"H3068\"* escaped|strong=\"H6412\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* speak|strong=\"H1696\"* and|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* mute. So|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* sign|strong=\"H4159\"* to|strong=\"H1696\"* them|strong=\"H1961\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 25, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H8085\"* the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, ‘Hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H1121\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*! The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Because|strong=\"H3588\"* you|strong=\"H3588\"* said|strong=\"H1697\"*, ‘Aha|strong=\"H1889\"*!’ against|strong=\"H1697\"* my|strong=\"H8085\"* sanctuary|strong=\"H4720\"* when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* profaned|strong=\"H2490\"*, and|strong=\"H1121\"* against|strong=\"H1697\"* the|strong=\"H8085\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"* when|strong=\"H3588\"* it|strong=\"H3588\"* was|strong=\"H3478\"* made|strong=\"H8074\"* desolate|strong=\"H8074\"*, and|strong=\"H1121\"* against|strong=\"H1697\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* when|strong=\"H3588\"* they|strong=\"H3588\"* went|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H1473\"*," + }, + { + "verseNum": 4, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1121\"* deliver|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5414\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5414\"* east|strong=\"H6924\"* for|strong=\"H3427\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*. They|strong=\"H1992\"* will|strong=\"H1121\"* set|strong=\"H5414\"* their|strong=\"H5414\"* encampments|strong=\"H2918\"* in|strong=\"H3427\"* you|strong=\"H5414\"* and|strong=\"H1121\"* make|strong=\"H5414\"* their|strong=\"H5414\"* dwellings|strong=\"H4908\"* in|strong=\"H3427\"* you|strong=\"H5414\"*. They|strong=\"H1992\"* will|strong=\"H1121\"* eat your|strong=\"H5414\"* fruit|strong=\"H6529\"* and|strong=\"H1121\"* they|strong=\"H1992\"* will|strong=\"H1121\"* drink|strong=\"H8354\"* your|strong=\"H5414\"* milk|strong=\"H2461\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* Rabbah|strong=\"H7237\"* a|strong=\"H3068\"* stable|strong=\"H5116\"* for|strong=\"H3588\"* camels|strong=\"H1581\"* and|strong=\"H1121\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* a|strong=\"H3068\"* resting|strong=\"H4769\"* place|strong=\"H5414\"* for|strong=\"H3588\"* flocks|strong=\"H6629\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3478\"* clapped|strong=\"H4222\"* your|strong=\"H3605\"* hands|strong=\"H3027\"*, stamped|strong=\"H7554\"* with|strong=\"H3027\"* the|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3478\"* rejoiced|strong=\"H8055\"* with|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* contempt|strong=\"H5315\"* of|strong=\"H3027\"* your|strong=\"H3605\"* soul|strong=\"H5315\"* against|strong=\"H3027\"* the|strong=\"H3605\"* land of|strong=\"H3027\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 7, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* deliver|strong=\"H5414\"* you|strong=\"H3588\"* for|strong=\"H3588\"* a|strong=\"H3068\"* plunder to|strong=\"H3068\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* you|strong=\"H3588\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* you|strong=\"H3588\"* to|strong=\"H3068\"* perish|strong=\"H3772\"* out|strong=\"H5186\"* of|strong=\"H3068\"* the|strong=\"H5921\"* countries. I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* you|strong=\"H3588\"*. Then|strong=\"H3651\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 8, + "text": "“‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* Moab|strong=\"H4124\"* and|strong=\"H3063\"* Seir|strong=\"H8165\"* say, ‘Behold|strong=\"H2009\"*, the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* is|strong=\"H2009\"* like|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*,’" + }, + { + "verseNum": 9, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H5892\"* open|strong=\"H6605\"* the|strong=\"H3651\"* side|strong=\"H3802\"* of|strong=\"H5892\"* Moab|strong=\"H4124\"* from|strong=\"H5892\"* the|strong=\"H3651\"* cities|strong=\"H5892\"*, from|strong=\"H5892\"* his|strong=\"H6605\"* cities|strong=\"H5892\"* which|strong=\"H5892\"* are|strong=\"H5892\"* on|strong=\"H5892\"* its|strong=\"H6605\"* frontiers|strong=\"H7097\"*, the|strong=\"H3651\"* glory|strong=\"H6643\"* of|strong=\"H5892\"* the|strong=\"H3651\"* country, Beth Jeshimoth, Baal Meon, and|strong=\"H5892\"* Kiriathaim|strong=\"H7156\"*," + }, + { + "verseNum": 10, + "text": "to|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* east|strong=\"H6924\"*, to|strong=\"H5921\"* go against|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*; and|strong=\"H1121\"* I|strong=\"H5414\"* will|strong=\"H1471\"* give|strong=\"H5414\"* them|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"*, that|strong=\"H1471\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* may|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* Moab|strong=\"H4124\"*. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 12, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* Edom has|strong=\"H3063\"* dealt|strong=\"H6213\"* against|strong=\"H6213\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* by|strong=\"H6213\"* taking|strong=\"H5358\"* vengeance|strong=\"H5359\"*, and|strong=\"H3063\"* has|strong=\"H3063\"* greatly offended, and|strong=\"H3063\"* taken|strong=\"H5358\"* revenge|strong=\"H5358\"* on|strong=\"H1004\"* them|strong=\"H6213\"*,”" + }, + { + "verseNum": 13, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “I|strong=\"H5414\"* will|strong=\"H2719\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* Edom, and|strong=\"H3027\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man|strong=\"H5307\"* and|strong=\"H3027\"* animal from|strong=\"H4480\"* it|strong=\"H5414\"*; and|strong=\"H3027\"* I|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* it|strong=\"H5414\"* desolate|strong=\"H2723\"* from|strong=\"H4480\"* Teman|strong=\"H8487\"*. They|strong=\"H3651\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* even|strong=\"H3651\"* to|strong=\"H5921\"* Dedan|strong=\"H1719\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H5971\"* lay|strong=\"H5414\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"* on|strong=\"H3027\"* Edom by|strong=\"H3027\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. They|strong=\"H6213\"* will|strong=\"H5971\"* do|strong=\"H6213\"* in|strong=\"H3478\"* Edom according|strong=\"H3027\"* to|strong=\"H3478\"* my|strong=\"H5414\"* anger|strong=\"H2534\"* and|strong=\"H3478\"* according|strong=\"H3027\"* to|strong=\"H3478\"* my|strong=\"H5414\"* wrath|strong=\"H2534\"*. Then|strong=\"H5414\"* they|strong=\"H6213\"* will|strong=\"H5971\"* know|strong=\"H3045\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* the|strong=\"H3069\"* Philistines|strong=\"H6430\"* have|strong=\"H6430\"* taken|strong=\"H5358\"* revenge|strong=\"H5360\"*, and|strong=\"H5769\"* have|strong=\"H6430\"* taken|strong=\"H5358\"* vengeance|strong=\"H5360\"* with|strong=\"H6213\"* contempt|strong=\"H5315\"* of|strong=\"H5315\"* soul|strong=\"H5315\"* to|strong=\"H6213\"* destroy|strong=\"H4889\"* with|strong=\"H6213\"* perpetual|strong=\"H5769\"* hostility,”" + }, + { + "verseNum": 16, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*, and|strong=\"H3027\"* I|strong=\"H2005\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*, and|strong=\"H3027\"* destroy|strong=\"H3772\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H3027\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* coast|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* great|strong=\"H1419\"* vengeance|strong=\"H5360\"* on|strong=\"H3068\"* them|strong=\"H5414\"* with|strong=\"H3068\"* wrathful|strong=\"H2534\"* rebukes|strong=\"H8433\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* lay|strong=\"H5414\"* my|strong=\"H5414\"* vengeance|strong=\"H5360\"* on|strong=\"H3068\"* them|strong=\"H5414\"*.”’”" + } + ] + }, + { + "chapterNum": 26, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6249\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, because|strong=\"H5921\"* Tyre|strong=\"H6865\"* has|strong=\"H3389\"* said against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, ‘Aha|strong=\"H1889\"*! She|strong=\"H5921\"* is|strong=\"H1121\"* broken|strong=\"H7665\"*! She|strong=\"H5921\"* who|strong=\"H5971\"* was|strong=\"H1121\"* the|strong=\"H5921\"* gateway|strong=\"H1817\"* of|strong=\"H1121\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* has|strong=\"H3389\"* been|strong=\"H5971\"* returned|strong=\"H5437\"* to|strong=\"H5921\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* be|strong=\"H1121\"* replenished|strong=\"H4390\"*, now|strong=\"H5921\"* that|strong=\"H5971\"* she|strong=\"H5921\"* is|strong=\"H1121\"* laid|strong=\"H2717\"* waste|strong=\"H2717\"*;’" + }, + { + "verseNum": 3, + "text": "therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Tyre|strong=\"H6865\"*, and|strong=\"H1471\"* will|strong=\"H1471\"* cause|strong=\"H3651\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, as|strong=\"H3651\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* causes its|strong=\"H5921\"* waves|strong=\"H1530\"* to|strong=\"H5927\"* come|strong=\"H5927\"* up|strong=\"H5927\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H5414\"* will|strong=\"H5414\"* destroy|strong=\"H7843\"* the|strong=\"H5414\"* walls|strong=\"H2346\"* of|strong=\"H2346\"* Tyre|strong=\"H6865\"*, and|strong=\"H6083\"* break|strong=\"H2040\"* down|strong=\"H2040\"* her|strong=\"H5414\"* towers|strong=\"H4026\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* also scrape|strong=\"H5500\"* her|strong=\"H5414\"* dust|strong=\"H6083\"* from|strong=\"H4480\"* her|strong=\"H5414\"*, and|strong=\"H6083\"* make|strong=\"H5414\"* her|strong=\"H5414\"* a|strong=\"H3068\"* bare|strong=\"H6706\"* rock|strong=\"H5553\"*." + }, + { + "verseNum": 5, + "text": "She|strong=\"H3588\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H5002\"* spreading|strong=\"H4894\"* of|strong=\"H8432\"* nets|strong=\"H2764\"* in|strong=\"H8432\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H5002\"* sea|strong=\"H3220\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. ‘She|strong=\"H3588\"* will|strong=\"H1961\"* become|strong=\"H1961\"* plunder for|strong=\"H3588\"* the|strong=\"H5002\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 6, + "text": "Her|strong=\"H3045\"* daughters|strong=\"H1323\"* who|strong=\"H3068\"* are|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* field|strong=\"H7704\"* will|strong=\"H3068\"* be|strong=\"H3068\"* slain|strong=\"H2026\"* with|strong=\"H3068\"* the|strong=\"H3588\"* sword|strong=\"H2719\"*. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 7, + "text": "“For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H4428\"* bring on|strong=\"H3069\"* Tyre|strong=\"H6865\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, king|strong=\"H4428\"* of|strong=\"H4428\"* kings|strong=\"H4428\"*, from|strong=\"H5971\"* the|strong=\"H3588\"* north|strong=\"H6828\"*, with|strong=\"H5971\"* horses|strong=\"H5483\"*, with|strong=\"H5971\"* chariots|strong=\"H7393\"*, with|strong=\"H5971\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* an|strong=\"H3588\"* army|strong=\"H5971\"* with|strong=\"H5971\"* many|strong=\"H7227\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H5414\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* your|strong=\"H5414\"* daughters|strong=\"H1323\"* in|strong=\"H5921\"* the|strong=\"H5921\"* field|strong=\"H7704\"* with|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*. He|strong=\"H5414\"* will|strong=\"H2719\"* make|strong=\"H5414\"* forts|strong=\"H1785\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, cast|strong=\"H8210\"* up|strong=\"H6965\"* a|strong=\"H3068\"* mound against|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H6965\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H5921\"* buckler|strong=\"H6793\"* against|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H5414\"* will|strong=\"H2719\"* set|strong=\"H5414\"* his|strong=\"H5414\"* battering|strong=\"H6904\"* engines|strong=\"H4239\"* against|strong=\"H2719\"* your|strong=\"H5414\"* walls|strong=\"H2346\"*, and|strong=\"H2719\"* with|strong=\"H2719\"* his|strong=\"H5414\"* axes|strong=\"H2719\"* he|strong=\"H5414\"* will|strong=\"H2719\"* break|strong=\"H5422\"* down|strong=\"H5422\"* your|strong=\"H5414\"* towers|strong=\"H4026\"*." + }, + { + "verseNum": 10, + "text": "By|strong=\"H5892\"* reason of|strong=\"H5892\"* the|strong=\"H3680\"* abundance|strong=\"H8229\"* of|strong=\"H5892\"* his|strong=\"H3680\"* horses|strong=\"H5483\"*, their|strong=\"H3680\"* dust|strong=\"H1534\"* will|strong=\"H5892\"* cover|strong=\"H3680\"* you|strong=\"H6963\"*. Your|strong=\"H3680\"* walls|strong=\"H2346\"* will|strong=\"H5892\"* shake|strong=\"H7493\"* at|strong=\"H5892\"* the|strong=\"H3680\"* noise|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3680\"* horsemen|strong=\"H6571\"*, of|strong=\"H5892\"* the|strong=\"H3680\"* wagons|strong=\"H1534\"*, and|strong=\"H6963\"* of|strong=\"H5892\"* the|strong=\"H3680\"* chariots|strong=\"H7393\"*, when|strong=\"H6963\"* he|strong=\"H5892\"* enters into|strong=\"H5892\"* your|strong=\"H3680\"* gates|strong=\"H8179\"*, as|strong=\"H5892\"* men enter|strong=\"H3996\"* into|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* which|strong=\"H5892\"* is|strong=\"H5892\"* broken|strong=\"H1234\"* open|strong=\"H1234\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* will|strong=\"H5971\"* tread|strong=\"H7429\"* down|strong=\"H3381\"* all|strong=\"H3605\"* your|strong=\"H3605\"* streets|strong=\"H2351\"* with|strong=\"H3381\"* the|strong=\"H3605\"* hoofs|strong=\"H6541\"* of|strong=\"H5971\"* his|strong=\"H3605\"* horses|strong=\"H5483\"*. He|strong=\"H3605\"* will|strong=\"H5971\"* kill|strong=\"H2026\"* your|strong=\"H3605\"* people|strong=\"H5971\"* with|strong=\"H3381\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. The|strong=\"H3605\"* pillars|strong=\"H4676\"* of|strong=\"H5971\"* your|strong=\"H3605\"* strength|strong=\"H5797\"* will|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* ground." + }, + { + "verseNum": 12, + "text": "They|strong=\"H7997\"* will|strong=\"H1004\"* make|strong=\"H7760\"* a|strong=\"H3068\"* plunder|strong=\"H7997\"* of|strong=\"H1004\"* your|strong=\"H7760\"* riches|strong=\"H2428\"* and|strong=\"H1004\"* make|strong=\"H7760\"* a|strong=\"H3068\"* prey|strong=\"H7997\"* of|strong=\"H1004\"* your|strong=\"H7760\"* merchandise|strong=\"H7404\"*. They|strong=\"H7997\"* will|strong=\"H1004\"* break|strong=\"H2040\"* down|strong=\"H5422\"* your|strong=\"H7760\"* walls|strong=\"H2346\"* and|strong=\"H1004\"* destroy|strong=\"H5422\"* your|strong=\"H7760\"* pleasant|strong=\"H2532\"* houses|strong=\"H1004\"*. They|strong=\"H7997\"* will|strong=\"H1004\"* lay|strong=\"H7760\"* your|strong=\"H7760\"* stones, your|strong=\"H7760\"* timber|strong=\"H6086\"*, and|strong=\"H1004\"* your|strong=\"H7760\"* dust|strong=\"H6083\"* in|strong=\"H1004\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* the|strong=\"H8432\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* cause the|strong=\"H8085\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H8085\"* songs|strong=\"H7892\"* to|strong=\"H8085\"* cease|strong=\"H7673\"*. The|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H8085\"* harps|strong=\"H3658\"* won’t be|strong=\"H3808\"* heard|strong=\"H8085\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* bare|strong=\"H6706\"* rock|strong=\"H5553\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H5414\"* for|strong=\"H3588\"* the|strong=\"H5002\"* spreading|strong=\"H4894\"* of|strong=\"H3068\"* nets|strong=\"H2764\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* built|strong=\"H1129\"* no|strong=\"H3808\"* more|strong=\"H5750\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* Yahweh|strong=\"H3068\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3808\"* Tyre|strong=\"H6865\"*: ‘Won’t the|strong=\"H3069\"* islands shake|strong=\"H7493\"* at|strong=\"H3808\"* the|strong=\"H3069\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* your|strong=\"H3808\"* fall|strong=\"H4658\"*, when|strong=\"H6963\"* the|strong=\"H3069\"* wounded|strong=\"H2491\"* groan, when|strong=\"H6963\"* the|strong=\"H3069\"* slaughter|strong=\"H2027\"* is|strong=\"H6963\"* made|strong=\"H2026\"* within|strong=\"H8432\"* you|strong=\"H3808\"*?" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* will|strong=\"H3220\"* come|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H5493\"* their|strong=\"H3605\"* thrones|strong=\"H3678\"*, and|strong=\"H3381\"* lay aside|strong=\"H5493\"* their|strong=\"H3605\"* robes|strong=\"H4598\"*, and|strong=\"H3381\"* strip|strong=\"H6584\"* off|strong=\"H6584\"* their|strong=\"H3605\"* embroidered|strong=\"H7553\"* garments. They|strong=\"H5921\"* will|strong=\"H3220\"* clothe|strong=\"H3847\"* themselves|strong=\"H5921\"* with|strong=\"H3847\"* trembling|strong=\"H2731\"*. They|strong=\"H5921\"* will|strong=\"H3220\"* sit|strong=\"H3427\"* on|strong=\"H5921\"* the|strong=\"H3605\"* ground, and|strong=\"H3381\"* will|strong=\"H3220\"* tremble|strong=\"H2729\"* every|strong=\"H3605\"* moment|strong=\"H7281\"*, and|strong=\"H3381\"* be|strong=\"H3220\"* astonished|strong=\"H8074\"* at|strong=\"H3427\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H5921\"* will|strong=\"H1961\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* you|strong=\"H5414\"*, and|strong=\"H5892\"* tell|strong=\"H3605\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 18, + "text": "Now|strong=\"H6258\"* the|strong=\"H3117\"* islands will|strong=\"H3117\"* tremble|strong=\"H2729\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H3318\"* fall|strong=\"H4658\"*." + }, + { + "verseNum": 19, + "text": "“For|strong=\"H3588\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘When|strong=\"H3588\"* I|strong=\"H3588\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* desolate|strong=\"H2717\"* city|strong=\"H5892\"*, like|strong=\"H3808\"* the|strong=\"H5921\"* cities|strong=\"H5892\"* that|strong=\"H3588\"* are|strong=\"H5892\"* not|strong=\"H3808\"* inhabited|strong=\"H3427\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* the|strong=\"H5921\"* deep|strong=\"H8415\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H5892\"* the|strong=\"H5921\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* cover|strong=\"H3680\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "then|strong=\"H4616\"* I|strong=\"H5414\"* will|strong=\"H5971\"* bring|strong=\"H3381\"* you|strong=\"H5414\"* down|strong=\"H3381\"* with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H5971\"* descend|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5414\"* pit, to|strong=\"H3381\"* the|strong=\"H5414\"* people|strong=\"H5971\"* of|strong=\"H3427\"* old|strong=\"H5769\"* time|strong=\"H5769\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* make|strong=\"H5414\"* you|strong=\"H5414\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H3427\"* the|strong=\"H5414\"* earth, in|strong=\"H3427\"* the|strong=\"H5414\"* places|strong=\"H2723\"* that|strong=\"H5971\"* are|strong=\"H5971\"* desolate|strong=\"H2723\"* of|strong=\"H3427\"* old|strong=\"H5769\"*, with|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H5971\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H5414\"* pit, that|strong=\"H5971\"* you|strong=\"H5414\"* be|strong=\"H3808\"* not|strong=\"H3808\"* inhabited|strong=\"H3427\"*; and|strong=\"H5971\"* I|strong=\"H5414\"* will|strong=\"H5971\"* set|strong=\"H5414\"* glory|strong=\"H6643\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land of|strong=\"H3427\"* the|strong=\"H5414\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* terror|strong=\"H1091\"*, and|strong=\"H5769\"* you|strong=\"H5414\"* will|strong=\"H5414\"* no|strong=\"H3808\"* more|strong=\"H5750\"* have|strong=\"H4672\"* any|strong=\"H5750\"* being|strong=\"H5750\"*. Though you|strong=\"H5414\"* are|strong=\"H1091\"* sought|strong=\"H1245\"* for|strong=\"H1245\"*, yet|strong=\"H5750\"* you|strong=\"H5414\"* will|strong=\"H5414\"* never|strong=\"H3808\"* be|strong=\"H3808\"* found|strong=\"H4672\"* again|strong=\"H5750\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 27, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Tyre|strong=\"H6865\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H5971\"* tell Tyre|strong=\"H6865\"*, ‘You|strong=\"H5921\"* who|strong=\"H5971\"* dwell|strong=\"H3427\"* at|strong=\"H3427\"* the|strong=\"H5921\"* entry|strong=\"H3997\"* of|strong=\"H3427\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*, who|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H5921\"* merchant|strong=\"H7402\"* of|strong=\"H3427\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* to|strong=\"H5921\"* many|strong=\"H7227\"* islands, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "Your|strong=\"H1129\"* borders|strong=\"H1366\"* are|strong=\"H3820\"* in|strong=\"H1129\"* the|strong=\"H1129\"* heart|strong=\"H3820\"* of|strong=\"H1366\"* the|strong=\"H1129\"* seas|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "They|strong=\"H5921\"* have|strong=\"H1129\"* made|strong=\"H6213\"* all|strong=\"H3605\"* your|strong=\"H3605\"* planks|strong=\"H3871\"* of|strong=\"H5921\"* cypress|strong=\"H1265\"* trees|strong=\"H1265\"* from|strong=\"H5921\"* Senir|strong=\"H8149\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H6213\"* have|strong=\"H1323\"* made|strong=\"H6213\"* your|strong=\"H6213\"* oars|strong=\"H4880\"* of|strong=\"H1323\"* the|strong=\"H6213\"* oaks of|strong=\"H1323\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 7, + "text": "Your|strong=\"H1961\"* sail|strong=\"H5251\"* was|strong=\"H1961\"* of|strong=\"H4714\"* fine|strong=\"H8336\"* linen|strong=\"H8336\"* with|strong=\"H4714\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"* from|strong=\"H1961\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H1961\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Sidon|strong=\"H6721\"* and|strong=\"H3427\"* Arvad were|strong=\"H1961\"* your|strong=\"H1961\"* rowers|strong=\"H7751\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* old|strong=\"H2205\"* men|strong=\"H2450\"* of|strong=\"H2205\"* Gebal|strong=\"H1380\"*" + }, + { + "verseNum": 10, + "text": "“‘“Persia|strong=\"H6539\"*, Lud|strong=\"H3865\"*, and|strong=\"H4043\"* Put|strong=\"H5414\"* were|strong=\"H1961\"* in|strong=\"H4421\"* your|strong=\"H5414\"* army|strong=\"H2428\"*," + }, + { + "verseNum": 11, + "text": "The|strong=\"H5921\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Arvad with|strong=\"H5921\"* your|strong=\"H5921\"* army|strong=\"H2428\"* were|strong=\"H1961\"* on|strong=\"H5921\"* your|strong=\"H5921\"* walls|strong=\"H2346\"* all|strong=\"H5439\"* around|strong=\"H5439\"*," + }, + { + "verseNum": 12, + "text": "“‘“Tarshish|strong=\"H8659\"* was|strong=\"H5414\"* your|strong=\"H3605\"* merchant|strong=\"H5503\"* by|strong=\"H5414\"* reason of|strong=\"H7230\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* all|strong=\"H3605\"* kinds|strong=\"H1952\"* of|strong=\"H7230\"* riches|strong=\"H1952\"*. They|strong=\"H3605\"* traded|strong=\"H5414\"* for|strong=\"H3605\"* your|strong=\"H3605\"* wares|strong=\"H5801\"* with|strong=\"H5801\"* silver|strong=\"H3701\"*, iron|strong=\"H1270\"*, tin, and|strong=\"H3701\"* lead|strong=\"H5777\"*." + }, + { + "verseNum": 13, + "text": "“‘“Javan|strong=\"H3120\"*, Tubal|strong=\"H8422\"*, and|strong=\"H5178\"* Meshech|strong=\"H4902\"* were|strong=\"H1992\"* your|strong=\"H5414\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* the|strong=\"H5414\"* persons|strong=\"H5315\"* of|strong=\"H3627\"* men|strong=\"H1992\"* and|strong=\"H5178\"* vessels|strong=\"H3627\"* of|strong=\"H3627\"* bronze|strong=\"H5178\"* for|strong=\"H3627\"* your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 14, + "text": "“‘“They|strong=\"H5414\"* of|strong=\"H1004\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Togarmah|strong=\"H8425\"* traded|strong=\"H5414\"* for|strong=\"H1004\"* your|strong=\"H5414\"* wares|strong=\"H5801\"* with|strong=\"H1004\"* horses|strong=\"H5483\"*, war|strong=\"H6571\"* horses|strong=\"H5483\"*, and|strong=\"H1004\"* mules|strong=\"H6505\"*." + }, + { + "verseNum": 15, + "text": "“‘“The|strong=\"H7725\"* men|strong=\"H1121\"* of|strong=\"H1121\"* Dedan|strong=\"H1719\"* traded|strong=\"H7402\"* with|strong=\"H3027\"* you|strong=\"H7725\"*. Many|strong=\"H7227\"* islands were|strong=\"H1121\"* the|strong=\"H7725\"* market|strong=\"H5506\"* of|strong=\"H1121\"* your|strong=\"H7725\"* hand|strong=\"H3027\"*. They|strong=\"H3027\"* brought|strong=\"H7725\"* you|strong=\"H7725\"* horns|strong=\"H7161\"* of|strong=\"H1121\"* ivory|strong=\"H8127\"* and|strong=\"H1121\"* ebony|strong=\"H1894\"* in|strong=\"H7227\"* exchange." + }, + { + "verseNum": 16, + "text": "“‘“Syria was|strong=\"H5414\"* your|strong=\"H5414\"* merchant|strong=\"H5503\"* by|strong=\"H5414\"* reason of|strong=\"H7230\"* the|strong=\"H5414\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H5414\"* handiworks. They|strong=\"H5414\"* traded|strong=\"H5414\"* for|strong=\"H5414\"* your|strong=\"H5414\"* wares|strong=\"H5801\"* with|strong=\"H5801\"* emeralds|strong=\"H5306\"*, purple, embroidered|strong=\"H7553\"* work|strong=\"H4639\"*, fine linen, coral|strong=\"H7215\"*, and|strong=\"H4639\"* rubies|strong=\"H3539\"*." + }, + { + "verseNum": 17, + "text": "“‘“Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H5414\"* land of|strong=\"H8081\"* Israel|strong=\"H3478\"* were|strong=\"H3478\"* your|strong=\"H5414\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* wheat|strong=\"H2406\"* of|strong=\"H8081\"* Minnith|strong=\"H4511\"*, confections, honey|strong=\"H1706\"*, oil|strong=\"H8081\"*, and|strong=\"H3063\"* balm|strong=\"H6875\"* for|strong=\"H3478\"* your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 18, + "text": "“‘“Damascus|strong=\"H1834\"* was|strong=\"H3605\"* your|strong=\"H3605\"* merchant|strong=\"H5503\"* for|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* your|strong=\"H3605\"* handiworks by|strong=\"H3605\"* reason of|strong=\"H7230\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* all|strong=\"H3605\"* kinds|strong=\"H1952\"* of|strong=\"H7230\"* riches|strong=\"H1952\"*, with|strong=\"H3605\"* the|strong=\"H3605\"* wine|strong=\"H3196\"* of|strong=\"H7230\"* Helbon|strong=\"H2463\"*, and|strong=\"H3196\"* white|strong=\"H6713\"* wool|strong=\"H6785\"*." + }, + { + "verseNum": 19, + "text": "“‘“Vedan|strong=\"H2051\"* and|strong=\"H1270\"* Javan|strong=\"H3120\"* traded|strong=\"H5414\"* with|strong=\"H5801\"* yarn for|strong=\"H5414\"* your|strong=\"H5414\"* wares|strong=\"H5801\"*; wrought|strong=\"H6219\"* iron|strong=\"H1270\"*, cassia|strong=\"H6916\"*, and|strong=\"H1270\"* calamus|strong=\"H7070\"* were|strong=\"H1961\"* among your|strong=\"H5414\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 20, + "text": "“‘“Dedan|strong=\"H1719\"* was your merchant|strong=\"H7402\"* in|strong=\"H7402\"* precious|strong=\"H2667\"* saddle blankets for|strong=\"H2667\"* riding|strong=\"H7396\"*." + }, + { + "verseNum": 21, + "text": "“‘“Arabia|strong=\"H6152\"* and|strong=\"H3027\"* all|strong=\"H3605\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H3027\"* Kedar|strong=\"H6938\"* were|strong=\"H1992\"* your|strong=\"H3605\"* favorite dealers in|strong=\"H3027\"* lambs|strong=\"H3733\"*, rams|strong=\"H3733\"*, and|strong=\"H3027\"* goats|strong=\"H6260\"*. In|strong=\"H3027\"* these|strong=\"H1992\"*, they|strong=\"H1992\"* were|strong=\"H1992\"* your|strong=\"H3605\"* merchants|strong=\"H5503\"*." + }, + { + "verseNum": 22, + "text": "“‘“The|strong=\"H3605\"* traders|strong=\"H7402\"* of|strong=\"H7218\"* Sheba|strong=\"H7614\"* and|strong=\"H2091\"* Raamah|strong=\"H7484\"* were|strong=\"H1992\"* your|strong=\"H3605\"* traders|strong=\"H7402\"*. They|strong=\"H1992\"* traded|strong=\"H7402\"* for|strong=\"H3605\"* your|strong=\"H3605\"* wares|strong=\"H5801\"* with|strong=\"H3605\"* the|strong=\"H3605\"* best|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* spices|strong=\"H1314\"*, all|strong=\"H3605\"* precious|strong=\"H3368\"* stones, and|strong=\"H2091\"* gold|strong=\"H2091\"*." + }, + { + "verseNum": 23, + "text": "“‘“Haran|strong=\"H2771\"*, Canneh|strong=\"H3656\"*, Eden|strong=\"H5729\"*, the traders|strong=\"H7402\"* of|strong=\"H7402\"* Sheba|strong=\"H7614\"*, Asshur and|strong=\"H7614\"* Chilmad|strong=\"H3638\"*, were your traders|strong=\"H7402\"*." + }, + { + "verseNum": 24, + "text": "These|strong=\"H1992\"* were|strong=\"H1992\"* your traders|strong=\"H7402\"* in|strong=\"H1992\"* choice|strong=\"H4360\"* wares, in|strong=\"H1992\"* wrappings of|strong=\"H2256\"* blue|strong=\"H8504\"* and|strong=\"H8504\"* embroidered|strong=\"H7553\"* work|strong=\"H7553\"*, and|strong=\"H8504\"* in|strong=\"H1992\"* cedar chests|strong=\"H1595\"* of|strong=\"H2256\"* rich clothing bound|strong=\"H2280\"* with|strong=\"H2280\"* cords|strong=\"H2256\"*, among your merchandise|strong=\"H4819\"*." + }, + { + "verseNum": 25, + "text": "“‘“The|strong=\"H4390\"* ships of|strong=\"H4390\"* Tarshish|strong=\"H8659\"* were|strong=\"H3820\"* your|strong=\"H3513\"* caravans for|strong=\"H4390\"* your|strong=\"H3513\"* merchandise|strong=\"H4627\"*." + }, + { + "verseNum": 26, + "text": "Your|strong=\"H7665\"* rowers|strong=\"H7751\"* have|strong=\"H7751\"* brought you|strong=\"H7307\"* into|strong=\"H3220\"* great|strong=\"H7227\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 27, + "text": "Your|strong=\"H3605\"* riches|strong=\"H1952\"*, your|strong=\"H3605\"* wares|strong=\"H5801\"*, your|strong=\"H3605\"* merchandise|strong=\"H4627\"*," + }, + { + "verseNum": 28, + "text": "At|strong=\"H2201\"* the|strong=\"H6963\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* cry|strong=\"H2201\"* of|strong=\"H6963\"* your pilots|strong=\"H2259\"*," + }, + { + "verseNum": 29, + "text": "All|strong=\"H3605\"* who|strong=\"H3605\"* handle|strong=\"H8610\"* the|strong=\"H3605\"* oars|strong=\"H4880\"*," + }, + { + "verseNum": 30, + "text": "and|strong=\"H6963\"* will|strong=\"H8085\"* cause their|strong=\"H8085\"* voice|strong=\"H6963\"* to|strong=\"H5927\"* be|strong=\"H6963\"* heard|strong=\"H8085\"* over|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 31, + "text": "They|strong=\"H5315\"* will|strong=\"H5315\"* make|strong=\"H7139\"* themselves|strong=\"H5315\"* bald|strong=\"H7139\"* for|strong=\"H5315\"* you|strong=\"H5315\"*," + }, + { + "verseNum": 32, + "text": "In|strong=\"H5921\"* their|strong=\"H5375\"* wailing|strong=\"H5204\"* they|strong=\"H5921\"* will|strong=\"H4310\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* for|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 33, + "text": "When|strong=\"H3318\"* your|strong=\"H3318\"* wares|strong=\"H5801\"* came|strong=\"H3318\"* from|strong=\"H3318\"* the|strong=\"H3318\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 34, + "text": "In|strong=\"H8432\"* the|strong=\"H3605\"* time|strong=\"H6256\"* that|strong=\"H3605\"* you|strong=\"H3605\"* were|strong=\"H4325\"* broken|strong=\"H7665\"* by|strong=\"H4325\"* the|strong=\"H3605\"* seas|strong=\"H3220\"*," + }, + { + "verseNum": 35, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H3605\"* islands are|strong=\"H4428\"* astonished|strong=\"H8074\"* at|strong=\"H3427\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 36, + "text": "The|strong=\"H5921\"* merchants|strong=\"H5503\"* among|strong=\"H5921\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* hiss|strong=\"H8319\"* at|strong=\"H5921\"* you|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 28, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell the|strong=\"H5414\"* prince|strong=\"H5057\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, ‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "behold|strong=\"H2009\"*, you|strong=\"H3605\"* are|strong=\"H2450\"* wiser|strong=\"H2450\"* than|strong=\"H3808\"* Daniel|strong=\"H1840\"*." + }, + { + "verseNum": 4, + "text": "By|strong=\"H2091\"* your|strong=\"H6213\"* wisdom|strong=\"H2451\"* and|strong=\"H3701\"* by|strong=\"H2091\"* your|strong=\"H6213\"* understanding|strong=\"H8394\"* you|strong=\"H6213\"* have|strong=\"H2428\"* gotten|strong=\"H6213\"* yourself|strong=\"H6213\"* riches|strong=\"H2428\"*," + }, + { + "verseNum": 5, + "text": "By|strong=\"H2451\"* your|strong=\"H7235\"* great|strong=\"H7230\"* wisdom|strong=\"H2451\"*" + }, + { + "verseNum": 6, + "text": "“‘therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1471\"* bring strangers|strong=\"H2114\"* on|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "They|strong=\"H3820\"* will|strong=\"H3820\"* bring|strong=\"H3381\"* you|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H4191\"* pit|strong=\"H7845\"*." + }, + { + "verseNum": 9, + "text": "Will|strong=\"H3027\"* you|strong=\"H6440\"* yet|strong=\"H3808\"* say before|strong=\"H6440\"* him|strong=\"H6440\"* who|strong=\"H3808\"* kills|strong=\"H2026\"* you|strong=\"H6440\"*, ‘I|strong=\"H3808\"* am God|strong=\"H3808\"*’?" + }, + { + "verseNum": 10, + "text": "You|strong=\"H3588\"* will|strong=\"H3027\"* die|strong=\"H4191\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H3027\"* the|strong=\"H5002\"* uncircumcised|strong=\"H6189\"*" + }, + { + "verseNum": 11, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 12, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Tyre|strong=\"H6865\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3605\"* were|strong=\"H1961\"* in|strong=\"H3117\"* Eden|strong=\"H5731\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* were|strong=\"H1961\"* the|strong=\"H5414\"* anointed|strong=\"H4473\"* cherub|strong=\"H3742\"* who|strong=\"H1980\"* covers|strong=\"H5526\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3117\"* were|strong=\"H3117\"* perfect|strong=\"H8549\"* in|strong=\"H3117\"* your|strong=\"H5704\"* ways|strong=\"H1870\"* from|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H3117\"* were|strong=\"H3117\"* created|strong=\"H1254\"*," + }, + { + "verseNum": 16, + "text": "By|strong=\"H2398\"* the|strong=\"H8432\"* abundance|strong=\"H7230\"* of|strong=\"H2022\"* your|strong=\"H4390\"* commerce, your|strong=\"H4390\"* insides were|strong=\"H2022\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* violence|strong=\"H2555\"*," + }, + { + "verseNum": 17, + "text": "Your|strong=\"H5414\"* heart|strong=\"H3820\"* was|strong=\"H3820\"* lifted|strong=\"H1361\"* up|strong=\"H5414\"* because|strong=\"H5921\"* of|strong=\"H4428\"* your|strong=\"H5414\"* beauty|strong=\"H3308\"*." + }, + { + "verseNum": 18, + "text": "By|strong=\"H5921\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H5869\"* your|strong=\"H3605\"* iniquities|strong=\"H5771\"*," + }, + { + "verseNum": 19, + "text": "All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* know|strong=\"H3045\"* you|strong=\"H3605\"* among|strong=\"H5921\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* astonished|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* Sidon|strong=\"H6721\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H7760\"*," + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 23, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* pestilence|strong=\"H1698\"* into|strong=\"H8432\"* her|strong=\"H7971\"*," + }, + { + "verseNum": 24, + "text": "“‘“There|strong=\"H1961\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* pricking|strong=\"H3992\"* brier|strong=\"H5544\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, nor|strong=\"H3808\"* a|strong=\"H3068\"* hurting thorn|strong=\"H6975\"* of|strong=\"H1004\"* any|strong=\"H3605\"* that|strong=\"H3588\"* are|strong=\"H3478\"* around|strong=\"H5439\"* them|strong=\"H5439\"* that|strong=\"H3588\"* scorned them|strong=\"H5439\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 25, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “When|strong=\"H4480\"* I|strong=\"H5414\"* have|strong=\"H5869\"* gathered|strong=\"H6908\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* from|strong=\"H4480\"* the|strong=\"H5921\"* peoples|strong=\"H5971\"* among|strong=\"H4480\"* whom|strong=\"H5971\"* they|strong=\"H5921\"* are|strong=\"H5971\"* scattered|strong=\"H6327\"*, and|strong=\"H3478\"* am shown as|strong=\"H5971\"* holy|strong=\"H6942\"* among|strong=\"H4480\"* them|strong=\"H5414\"* in|strong=\"H3427\"* the|strong=\"H5921\"* sight|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, then|strong=\"H5414\"* they|strong=\"H5921\"* will|strong=\"H1471\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H5414\"* own|strong=\"H5971\"* land which|strong=\"H1471\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H3478\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5921\"* securely. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H3068\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*, plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* dwell|strong=\"H3427\"* securely when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* executed|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H5921\"* all|strong=\"H3605\"* those|strong=\"H3605\"* around|strong=\"H5439\"* them|strong=\"H5921\"* who|strong=\"H3605\"* have|strong=\"H3068\"* treated|strong=\"H6213\"* them|strong=\"H5921\"* with|strong=\"H1004\"* contempt. Then|strong=\"H6213\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*.”’”" + } + ] + }, + { + "chapterNum": 29, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, on|strong=\"H3068\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H3605\"* face|strong=\"H6440\"* against|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* him|strong=\"H6440\"* and|strong=\"H1121\"* against|strong=\"H5921\"* all|strong=\"H3605\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 3, + "text": "Speak|strong=\"H1696\"* and|strong=\"H4428\"* say|strong=\"H1696\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* put|strong=\"H5414\"* hooks|strong=\"H2397\"* in|strong=\"H8432\"* your|strong=\"H3605\"* jaws|strong=\"H3895\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"*’ll cast|strong=\"H5307\"* you|strong=\"H5414\"* out|strong=\"H5414\"* into|strong=\"H5307\"* the|strong=\"H3605\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "“‘“All|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* staff|strong=\"H4938\"* of|strong=\"H1004\"* reed|strong=\"H7070\"* to|strong=\"H3478\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "When|strong=\"H5921\"* they|strong=\"H5921\"* took|strong=\"H8610\"* hold|strong=\"H8610\"* of|strong=\"H3709\"* you|strong=\"H3605\"* by|strong=\"H5921\"* your|strong=\"H3605\"* hand|strong=\"H3709\"*, you|strong=\"H3605\"* broke|strong=\"H7665\"* and|strong=\"H4975\"* tore|strong=\"H1234\"* all|strong=\"H3605\"* their|strong=\"H3605\"* shoulders|strong=\"H3802\"*. When|strong=\"H5921\"* they|strong=\"H5921\"* leaned|strong=\"H8172\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, you|strong=\"H3605\"* broke|strong=\"H7665\"* and|strong=\"H4975\"* paralyzed all|strong=\"H3605\"* of|strong=\"H3709\"* their|strong=\"H3605\"* thighs.”" + }, + { + "verseNum": 8, + "text": "“‘Therefore|strong=\"H3651\"* the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2719\"* bring a|strong=\"H3068\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man and|strong=\"H2719\"* animal from|strong=\"H4480\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "The|strong=\"H3588\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3068\"* a|strong=\"H3068\"* waste|strong=\"H2723\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "therefore|strong=\"H3651\"*, behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H4714\"* you|strong=\"H5414\"* and|strong=\"H4714\"* against|strong=\"H4714\"* your|strong=\"H5414\"* rivers|strong=\"H2975\"*. I|strong=\"H2005\"* will|strong=\"H4714\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Egypt|strong=\"H4714\"* an|strong=\"H5414\"* utter|strong=\"H5414\"* waste|strong=\"H2723\"* and|strong=\"H4714\"* desolation|strong=\"H8077\"*, from|strong=\"H5704\"* the|strong=\"H5414\"* tower|strong=\"H4024\"* of|strong=\"H1366\"* Seveneh even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5414\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ethiopia|strong=\"H3568\"*." + }, + { + "verseNum": 11, + "text": "No|strong=\"H3808\"* foot|strong=\"H7272\"* of|strong=\"H8141\"* man|strong=\"H5674\"* will|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3808\"*, nor|strong=\"H3808\"* will|strong=\"H3808\"* any|strong=\"H3808\"* animal foot|strong=\"H7272\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* it|strong=\"H3808\"*. It|strong=\"H3808\"* won’t be|strong=\"H3808\"* inhabited|strong=\"H3427\"* for|strong=\"H3427\"* forty years|strong=\"H8141\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* in|strong=\"H8141\"* the|strong=\"H5414\"* middle|strong=\"H8432\"* of|strong=\"H8141\"* the|strong=\"H5414\"* countries that|strong=\"H1471\"* are|strong=\"H1471\"* desolate|strong=\"H8074\"*. Her|strong=\"H5414\"* cities|strong=\"H5892\"* among|strong=\"H8432\"* the|strong=\"H5414\"* cities|strong=\"H5892\"* that|strong=\"H1471\"* are|strong=\"H1471\"* laid|strong=\"H5414\"* waste|strong=\"H2717\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* forty years|strong=\"H8141\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* scatter|strong=\"H2219\"* the|strong=\"H5414\"* Egyptians|strong=\"H4714\"* among|strong=\"H8432\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*, and|strong=\"H5892\"* will|strong=\"H1961\"* disperse|strong=\"H2219\"* them|strong=\"H5414\"* through|strong=\"H8432\"* the|strong=\"H5414\"* countries.”" + }, + { + "verseNum": 13, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “At|strong=\"H6908\"* the|strong=\"H3588\"* end|strong=\"H7093\"* of|strong=\"H8141\"* forty years|strong=\"H8141\"* I|strong=\"H3588\"* will|strong=\"H5971\"* gather|strong=\"H6908\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* from|strong=\"H4480\"* the|strong=\"H3588\"* peoples|strong=\"H5971\"* where|strong=\"H8033\"* they|strong=\"H3588\"* were|strong=\"H5971\"* scattered|strong=\"H6327\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* reverse|strong=\"H7725\"* the|strong=\"H5921\"* captivity|strong=\"H7622\"* of|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H7725\"* will|strong=\"H1961\"* cause|strong=\"H7725\"* them|strong=\"H5921\"* to|strong=\"H7725\"* return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* Pathros|strong=\"H6624\"*, into|strong=\"H7725\"* the|strong=\"H5921\"* land of|strong=\"H5921\"* their|strong=\"H7725\"* birth|strong=\"H4351\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* lowly|strong=\"H8217\"* kingdom|strong=\"H4467\"*." + }, + { + "verseNum": 15, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5921\"* lowest|strong=\"H8217\"* of|strong=\"H4480\"* the|strong=\"H5921\"* kingdoms|strong=\"H4467\"*. It|strong=\"H5921\"* won’t lift|strong=\"H5375\"* itself up|strong=\"H5375\"* above|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* any|strong=\"H4480\"* more|strong=\"H4480\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* diminish|strong=\"H4591\"* them|strong=\"H5921\"* so|strong=\"H4480\"* that|strong=\"H1471\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* rule|strong=\"H7287\"* over|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* the|strong=\"H3588\"* confidence|strong=\"H4009\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, bringing|strong=\"H2142\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* memory, when|strong=\"H3588\"* they|strong=\"H3588\"* turn|strong=\"H6437\"* to|strong=\"H3478\"* look|strong=\"H6437\"* after|strong=\"H1961\"* them|strong=\"H1961\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 17, + "text": "It|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* in|strong=\"H8141\"* the|strong=\"H3068\"* twenty-seventh|strong=\"H6242\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Babylon caused|strong=\"H1961\"* his|strong=\"H3605\"* army|strong=\"H2428\"* to|strong=\"H1961\"* serve|strong=\"H5647\"* a|strong=\"H3068\"* great|strong=\"H1419\"* service|strong=\"H5656\"* against|strong=\"H5921\"* Tyre|strong=\"H6865\"*. Every|strong=\"H3605\"* head|strong=\"H7218\"* was|strong=\"H1961\"* made|strong=\"H1961\"* bald|strong=\"H7139\"*, and|strong=\"H1121\"* every|strong=\"H3605\"* shoulder|strong=\"H3802\"* was|strong=\"H1961\"* worn; yet|strong=\"H3808\"* he|strong=\"H3605\"* had|strong=\"H1961\"* no|strong=\"H3808\"* wages|strong=\"H7939\"*, nor|strong=\"H3808\"* did|strong=\"H3808\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, from|strong=\"H5921\"* Tyre|strong=\"H6865\"*, for|strong=\"H5921\"* the|strong=\"H3605\"* service|strong=\"H5656\"* that|strong=\"H3605\"* he|strong=\"H3605\"* had|strong=\"H1961\"* served|strong=\"H5647\"* against|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H1961\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"* to|strong=\"H1961\"* Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon. He|strong=\"H3651\"* will|strong=\"H1961\"* carry|strong=\"H5375\"* off|strong=\"H5375\"* her|strong=\"H5414\"* multitude|strong=\"H1995\"*, take|strong=\"H5375\"* her|strong=\"H5414\"* plunder|strong=\"H7998\"*, and|strong=\"H4428\"* take|strong=\"H5375\"* her|strong=\"H5414\"* prey|strong=\"H7998\"*. That|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H5414\"* wages|strong=\"H7939\"* for|strong=\"H4714\"* his|strong=\"H5375\"* army|strong=\"H2426\"*." + }, + { + "verseNum": 20, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H5002\"* land of|strong=\"H3069\"* Egypt|strong=\"H4714\"* as|strong=\"H6213\"* his|strong=\"H5414\"* payment for|strong=\"H6213\"* which|strong=\"H3069\"* he|strong=\"H6213\"* served|strong=\"H5647\"*, because they|strong=\"H6213\"* worked|strong=\"H6213\"* for|strong=\"H6213\"* me|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 21, + "text": "“In|strong=\"H3478\"* that|strong=\"H3588\"* day|strong=\"H3117\"* I|strong=\"H3588\"* will|strong=\"H3068\"* cause|strong=\"H5414\"* a|strong=\"H3068\"* horn|strong=\"H7161\"* to|strong=\"H3478\"* sprout|strong=\"H6779\"* for|strong=\"H3588\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* open|strong=\"H6610\"* your|strong=\"H3068\"* mouth|strong=\"H6310\"* among|strong=\"H8432\"* them|strong=\"H5414\"*. Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 30, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"* is|strong=\"H3068\"* near|strong=\"H7138\"*," + }, + { + "verseNum": 4, + "text": "A|strong=\"H3068\"* sword|strong=\"H2719\"* will|strong=\"H1961\"* come|strong=\"H1961\"* on|strong=\"H5307\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "“‘“Ethiopia|strong=\"H3568\"*, Put|strong=\"H6316\"*, Lud|strong=\"H3865\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* mixed|strong=\"H6154\"* people|strong=\"H1121\"*, Cub, and|strong=\"H1121\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land that|strong=\"H3605\"* is|strong=\"H3605\"* allied|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5307\"*, will|strong=\"H2719\"* fall|strong=\"H5307\"* with|strong=\"H1285\"* them|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 6, + "text": "“‘Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 7, + "text": "“They|strong=\"H5892\"* will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H8074\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* the|strong=\"H8432\"* countries that|strong=\"H5892\"* are|strong=\"H5892\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*" + }, + { + "verseNum": 9, + "text": "“‘“In|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* messengers|strong=\"H4397\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* before|strong=\"H6440\"* me|strong=\"H6440\"* in|strong=\"H3117\"* ships|strong=\"H6716\"* to|strong=\"H3318\"* make|strong=\"H2729\"* the|strong=\"H6440\"* careless Ethiopians|strong=\"H3568\"* afraid|strong=\"H2729\"*. There|strong=\"H2009\"* will|strong=\"H1961\"* be|strong=\"H1961\"* anguish|strong=\"H2479\"* on|strong=\"H3117\"* them|strong=\"H6440\"*, as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3117\"* Egypt|strong=\"H4714\"*; for|strong=\"H3588\"*, behold|strong=\"H2009\"*, it|strong=\"H1931\"* comes|strong=\"H3318\"*.”" + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 11, + "text": "He|strong=\"H1931\"* and|strong=\"H5971\"* his|strong=\"H5921\"* people|strong=\"H5971\"* with|strong=\"H4390\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* make|strong=\"H5414\"* the|strong=\"H5414\"* rivers|strong=\"H2975\"* dry|strong=\"H2724\"*," + }, + { + "verseNum": 13, + "text": "“‘The|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H6213\"* Pathros|strong=\"H6624\"* desolate|strong=\"H8074\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H4714\"* pour|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* Sin|strong=\"H5512\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* set|strong=\"H5414\"* a|strong=\"H3068\"* fire in|strong=\"H5414\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 17, + "text": "The|strong=\"H3212\"* young men of|strong=\"H2719\"* Aven and|strong=\"H3212\"* of|strong=\"H2719\"* Pibeseth will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H3212\"* the|strong=\"H3212\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H3117\"* Tehaphnehes|strong=\"H8471\"* also|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* will|strong=\"H4714\"* withdraw itself|strong=\"H1931\"*," + }, + { + "verseNum": 19, + "text": "Thus I|strong=\"H3588\"* will|strong=\"H3068\"* execute|strong=\"H6213\"* judgments|strong=\"H8201\"* on|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* broken|strong=\"H7665\"* the|strong=\"H5414\"* arm|strong=\"H2220\"* of|strong=\"H1121\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*. Behold|strong=\"H2009\"*, it|strong=\"H5414\"* has|strong=\"H4428\"* not|strong=\"H3808\"* been|strong=\"H3808\"* bound|strong=\"H2280\"* up|strong=\"H5414\"*, to|strong=\"H5414\"* apply medicines|strong=\"H7499\"*, to|strong=\"H5414\"* put|strong=\"H5414\"* a|strong=\"H3068\"* bandage|strong=\"H2848\"* to|strong=\"H5414\"* bind|strong=\"H2280\"* it|strong=\"H5414\"*, that|strong=\"H5414\"* it|strong=\"H5414\"* may|strong=\"H4428\"* become strong|strong=\"H2388\"* to|strong=\"H5414\"* hold|strong=\"H2388\"* the|strong=\"H5414\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H3027\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Egypt|strong=\"H4714\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* break|strong=\"H7665\"* his|strong=\"H3027\"* arms|strong=\"H2220\"*, the|strong=\"H3069\"* strong|strong=\"H2389\"* arm|strong=\"H2220\"*, and|strong=\"H4428\"* that|strong=\"H3651\"* which|strong=\"H3069\"* was|strong=\"H4428\"* broken|strong=\"H7665\"*. I|strong=\"H2005\"* will|strong=\"H4428\"* cause|strong=\"H3651\"* the|strong=\"H3069\"* sword|strong=\"H2719\"* to|strong=\"H3027\"* fall|strong=\"H5307\"* out|strong=\"H5307\"* of|strong=\"H4428\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H4714\"* will|strong=\"H1471\"* scatter|strong=\"H2219\"* the|strong=\"H6327\"* Egyptians|strong=\"H4714\"* among the|strong=\"H6327\"* nations|strong=\"H1471\"*, and|strong=\"H4714\"* will|strong=\"H1471\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H6327\"* the|strong=\"H6327\"* countries." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5414\"* will|strong=\"H4428\"* strengthen|strong=\"H2388\"* the|strong=\"H6440\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H4428\"* put|strong=\"H5414\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* in|strong=\"H4428\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*; but|strong=\"H2388\"* I|strong=\"H5414\"* will|strong=\"H4428\"* break|strong=\"H7665\"* the|strong=\"H6440\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"*, and|strong=\"H4428\"* he|strong=\"H5414\"* will|strong=\"H4428\"* groan|strong=\"H5008\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon with|strong=\"H6440\"* the|strong=\"H6440\"* groaning|strong=\"H5009\"* of|strong=\"H4428\"* a|strong=\"H3068\"* mortally|strong=\"H2491\"* wounded|strong=\"H2491\"* man|strong=\"H2491\"*." + }, + { + "verseNum": 25, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* hold|strong=\"H2388\"* up|strong=\"H5414\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, but|strong=\"H3588\"* the|strong=\"H3588\"* arms|strong=\"H2220\"* of|strong=\"H4428\"* Pharaoh|strong=\"H6547\"* will|strong=\"H3068\"* fall|strong=\"H5307\"* down|strong=\"H5307\"*. Then|strong=\"H5307\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* when|strong=\"H3588\"* I|strong=\"H3588\"* put|strong=\"H5414\"* my|strong=\"H5414\"* sword|strong=\"H2719\"* into|strong=\"H5307\"* the|strong=\"H3588\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H3588\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon, and|strong=\"H3068\"* he|strong=\"H3588\"* stretches|strong=\"H5186\"* it|strong=\"H5414\"* out|strong=\"H5186\"* on|strong=\"H5307\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* scatter|strong=\"H2219\"* the|strong=\"H3588\"* Egyptians|strong=\"H4714\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* disperse|strong=\"H2219\"* them|strong=\"H6327\"* through|strong=\"H3588\"* the|strong=\"H3588\"* countries. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 31, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eleventh|strong=\"H6240\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* third|strong=\"H7992\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"* and|strong=\"H1121\"* his|strong=\"H4428\"* multitude|strong=\"H1995\"*:" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H1961\"* Assyrian was|strong=\"H1961\"* a|strong=\"H3068\"* cedar|strong=\"H6967\"* in|strong=\"H3303\"* Lebanon|strong=\"H3844\"*" + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* waters|strong=\"H4325\"* nourished|strong=\"H1431\"* it|strong=\"H5439\"*." + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* its|strong=\"H3605\"* stature|strong=\"H6967\"* was|strong=\"H4325\"* exalted|strong=\"H1361\"* above|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H4325\"* the|strong=\"H3605\"* field|strong=\"H7704\"*;" + }, + { + "verseNum": 6, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H3427\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* made|strong=\"H3605\"* their|strong=\"H3605\"* nests|strong=\"H7077\"* in|strong=\"H3427\"* its|strong=\"H3605\"* boughs|strong=\"H5589\"*." + }, + { + "verseNum": 7, + "text": "Thus|strong=\"H1961\"* it|strong=\"H3588\"* was|strong=\"H1961\"* beautiful|strong=\"H3302\"* in|strong=\"H7227\"* its|strong=\"H3588\"* greatness|strong=\"H1433\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* cedars in|strong=\"H6086\"* the|strong=\"H3605\"* garden|strong=\"H1588\"* of|strong=\"H6086\"* God|strong=\"H3808\"* could not|strong=\"H3808\"* hide|strong=\"H6004\"* it|strong=\"H1961\"*." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3605\"* made|strong=\"H6213\"* it|strong=\"H6213\"* beautiful|strong=\"H3303\"* by|strong=\"H3605\"* the|strong=\"H3605\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* its|strong=\"H3605\"* branches|strong=\"H1808\"*," + }, + { + "verseNum": 10, + "text": "“Therefore|strong=\"H3651\"* thus|strong=\"H3541\"* said|strong=\"H3651\"* the|strong=\"H5414\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: ‘Because|strong=\"H3282\"* he|strong=\"H3651\"* is|strong=\"H3651\"* exalted|strong=\"H7311\"* in|strong=\"H5414\"* stature|strong=\"H6967\"*, and|strong=\"H3824\"* he|strong=\"H3651\"* has|strong=\"H5414\"* set|strong=\"H5414\"* his|strong=\"H5414\"* top|strong=\"H6788\"* among the|strong=\"H5414\"* thick branches|strong=\"H5688\"*, and|strong=\"H3824\"* his|strong=\"H5414\"* heart|strong=\"H3824\"* is|strong=\"H3651\"* lifted|strong=\"H7311\"* up|strong=\"H7311\"* in|strong=\"H5414\"* his|strong=\"H5414\"* height|strong=\"H6967\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* will|strong=\"H1471\"* deliver|strong=\"H5414\"* him|strong=\"H5414\"* into|strong=\"H6213\"* the|strong=\"H5414\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H5414\"* mighty one|strong=\"H6213\"* of|strong=\"H3027\"* the|strong=\"H5414\"* nations|strong=\"H1471\"*. He|strong=\"H6213\"* will|strong=\"H1471\"* surely|strong=\"H5414\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H5414\"*. I|strong=\"H5414\"* have|strong=\"H1471\"* driven|strong=\"H1644\"* him|strong=\"H5414\"* out|strong=\"H1644\"* for|strong=\"H6213\"* his|strong=\"H5414\"* wickedness|strong=\"H7562\"*." + }, + { + "verseNum": 12, + "text": "Foreigners|strong=\"H2114\"*, the|strong=\"H3605\"* tyrants|strong=\"H6184\"* of|strong=\"H2022\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, have|strong=\"H5971\"* cut|strong=\"H3772\"* him|strong=\"H3381\"* off|strong=\"H3772\"* and|strong=\"H5971\"* have|strong=\"H5971\"* left|strong=\"H5203\"* him|strong=\"H3381\"*. His|strong=\"H3605\"* branches|strong=\"H1808\"* have|strong=\"H5971\"* fallen|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H5971\"* in|strong=\"H7665\"* all|strong=\"H3605\"* the|strong=\"H3605\"* valleys|strong=\"H1516\"*, and|strong=\"H5971\"* his|strong=\"H3605\"* boughs|strong=\"H6288\"* are|strong=\"H5971\"* broken|strong=\"H7665\"* by|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* watercourses of|strong=\"H2022\"* the|strong=\"H3605\"* land. All|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth have|strong=\"H5971\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* from|strong=\"H3772\"* his|strong=\"H3605\"* shadow|strong=\"H6738\"* and|strong=\"H5971\"* have|strong=\"H5971\"* left|strong=\"H5203\"* him|strong=\"H3381\"*." + }, + { + "verseNum": 13, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H7704\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* on|strong=\"H5921\"* his|strong=\"H3605\"* ruin|strong=\"H4658\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H5921\"* his|strong=\"H3605\"* branches|strong=\"H6288\"*," + }, + { + "verseNum": 14, + "text": "to|strong=\"H3381\"* the|strong=\"H3605\"* end|strong=\"H4616\"* that|strong=\"H3588\"* none|strong=\"H3808\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* by|strong=\"H5975\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* exalt|strong=\"H1361\"* themselves|strong=\"H5414\"* in|strong=\"H8432\"* their|strong=\"H3605\"* stature|strong=\"H6967\"*, and|strong=\"H1121\"* don’t set|strong=\"H5414\"* their|strong=\"H3605\"* top|strong=\"H6788\"* among|strong=\"H8432\"* the|strong=\"H3605\"* thick boughs|strong=\"H5688\"*. Their|strong=\"H3605\"* mighty|strong=\"H1121\"* ones|strong=\"H1121\"* don’t stand|strong=\"H5975\"* up|strong=\"H5975\"* on|strong=\"H5975\"* their|strong=\"H3605\"* height|strong=\"H6967\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* who|strong=\"H3605\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H1121\"* all|strong=\"H3605\"* delivered|strong=\"H5414\"* to|strong=\"H3381\"* death|strong=\"H4194\"*, to|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H1121\"* the|strong=\"H3605\"* earth, among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"*, with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit.’" + }, + { + "verseNum": 15, + "text": "“The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘In|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 31:15 Sheol is the place of the dead.* I|strong=\"H3117\"* caused a|strong=\"H3068\"* mourning|strong=\"H6937\"*. I|strong=\"H3117\"* covered|strong=\"H3680\"* the|strong=\"H3605\"* deep|strong=\"H8415\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* I|strong=\"H3117\"* restrained|strong=\"H3607\"* its|strong=\"H3605\"* rivers|strong=\"H5104\"*. The|strong=\"H3605\"* great|strong=\"H7227\"* waters|strong=\"H4325\"* were|strong=\"H4325\"* stopped|strong=\"H3607\"*. I|strong=\"H3117\"* caused Lebanon|strong=\"H3844\"* to|strong=\"H3381\"* mourn|strong=\"H6937\"* for|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H3117\"* the|strong=\"H3605\"* field|strong=\"H7704\"* fainted|strong=\"H5969\"* for|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H3605\"* made|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* to|strong=\"H3381\"* shake|strong=\"H7493\"* at|strong=\"H2896\"* the|strong=\"H3605\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* his|strong=\"H3605\"* fall|strong=\"H4658\"*, when|strong=\"H6963\"* I|strong=\"H3605\"* cast|strong=\"H4325\"* him|strong=\"H6963\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"*+ 31:16 Sheol is the place of the dead.* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* descend|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H3605\"* pit|strong=\"H7585\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H6963\"* Eden|strong=\"H5731\"*, the|strong=\"H3605\"* choice|strong=\"H4005\"* and|strong=\"H6086\"* best|strong=\"H2896\"* of|strong=\"H6963\"* Lebanon|strong=\"H3844\"*, all|strong=\"H3605\"* that|strong=\"H3605\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*, were|strong=\"H4325\"* comforted|strong=\"H5162\"* in|strong=\"H6086\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H6963\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 17, + "text": "They|strong=\"H1992\"* also|strong=\"H1571\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"* with|strong=\"H3427\"* him|strong=\"H3381\"* to|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3427\"* are|strong=\"H1992\"* slain|strong=\"H2491\"* by|strong=\"H3427\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*; yes|strong=\"H1571\"*, those|strong=\"H1992\"* who|strong=\"H3427\"* were|strong=\"H1992\"* his|strong=\"H8432\"* arm|strong=\"H2220\"*, who|strong=\"H3427\"* lived|strong=\"H3427\"* under|strong=\"H3427\"* his|strong=\"H8432\"* shadow|strong=\"H6738\"* in|strong=\"H3427\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H8432\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 18, + "text": "“‘To|strong=\"H3381\"* whom|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H3605\"* thus|strong=\"H3602\"* like|strong=\"H1819\"* in|strong=\"H8432\"* glory|strong=\"H3519\"* and|strong=\"H6086\"* in|strong=\"H8432\"* greatness|strong=\"H1433\"* among|strong=\"H8432\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H8432\"* Eden|strong=\"H5731\"*? Yet|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H4310\"* be|strong=\"H6086\"* brought|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* the|strong=\"H3605\"* trees|strong=\"H6086\"* of|strong=\"H8432\"* Eden|strong=\"H5731\"* to|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H8432\"* the|strong=\"H3605\"* earth. You|strong=\"H3605\"* will|strong=\"H4310\"* lie|strong=\"H7901\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H4310\"* are|strong=\"H4310\"* slain|strong=\"H2491\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + } + ] + }, + { + "chapterNum": 32, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* tell him|strong=\"H5921\"*," + }, + { + "verseNum": 3, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H8064\"* leave|strong=\"H5203\"* you|strong=\"H6440\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land|strong=\"H7704\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H5414\"* will|strong=\"H1320\"* lay|strong=\"H5414\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H4480\"* will|strong=\"H2022\"* also water|strong=\"H8248\"* the|strong=\"H4480\"* land in|strong=\"H1818\"* which|strong=\"H2022\"* you|strong=\"H4480\"* swim with|strong=\"H4390\"* your|strong=\"H4480\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 7, + "text": "When|strong=\"H6051\"* I|strong=\"H3808\"* extinguish|strong=\"H3518\"* you|strong=\"H3808\"*, I|strong=\"H3808\"* will|strong=\"H8064\"* cover|strong=\"H3680\"* the|strong=\"H3680\"* heavens|strong=\"H8064\"*" + }, + { + "verseNum": 8, + "text": "I|strong=\"H5414\"* will|strong=\"H8064\"* make|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* bright|strong=\"H3974\"* lights|strong=\"H3974\"* of|strong=\"H5921\"* the|strong=\"H3605\"* sky|strong=\"H8064\"* dark|strong=\"H2822\"* over|strong=\"H5921\"* you|strong=\"H5414\"*," + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5921\"* will|strong=\"H1471\"* also|strong=\"H1471\"* trouble|strong=\"H3707\"* the|strong=\"H5921\"* hearts|strong=\"H3820\"* of|strong=\"H5971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 10, + "text": "Yes, I|strong=\"H3117\"* will|strong=\"H4428\"* make|strong=\"H8074\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* amazed|strong=\"H8074\"* at|strong=\"H5921\"* you|strong=\"H6440\"*," + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "I|strong=\"H4714\"* will|strong=\"H1471\"* cause your|strong=\"H3605\"* multitude|strong=\"H1995\"* to|strong=\"H4714\"* fall|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* swords|strong=\"H2719\"* of|strong=\"H1368\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5921\"* will|strong=\"H3808\"* destroy|strong=\"H3605\"* also|strong=\"H5750\"* all|strong=\"H3605\"* its|strong=\"H3605\"* animals from|strong=\"H5921\"* beside|strong=\"H5921\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*." + }, + { + "verseNum": 14, + "text": "Then I|strong=\"H3212\"* will|strong=\"H4325\"* make their|strong=\"H3212\"* waters|strong=\"H4325\"* clear," + }, + { + "verseNum": 15, + "text": "“When|strong=\"H3588\"* I|strong=\"H3588\"* make|strong=\"H5414\"* the|strong=\"H3605\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"* desolate|strong=\"H8074\"* and|strong=\"H3068\"* waste|strong=\"H8074\"*," + }, + { + "verseNum": 16, + "text": "“‘“This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3605\"* lamentation|strong=\"H7015\"* with|strong=\"H5921\"* which|strong=\"H1931\"* they|strong=\"H5921\"* will|strong=\"H1471\"* lament|strong=\"H6969\"*. The|strong=\"H3605\"* daughters|strong=\"H1323\"* of|strong=\"H1323\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* lament|strong=\"H6969\"* with|strong=\"H5921\"* this|strong=\"H1931\"*. They|strong=\"H5921\"* will|strong=\"H1471\"* lament|strong=\"H6969\"* with|strong=\"H5921\"* it|strong=\"H1931\"* over|strong=\"H5921\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* over|strong=\"H5921\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 17, + "text": "Also|strong=\"H3068\"* in|strong=\"H8141\"* the|strong=\"H3068\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* fifteenth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 18, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, wail|strong=\"H5091\"* for|strong=\"H5921\"* the|strong=\"H5921\"* multitude|strong=\"H1995\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* cast them|strong=\"H5921\"* down|strong=\"H3381\"*, even|strong=\"H5921\"* her|strong=\"H5921\"* and|strong=\"H1121\"* the|strong=\"H5921\"* daughters|strong=\"H1323\"* of|strong=\"H1121\"* the|strong=\"H5921\"* famous nations|strong=\"H1471\"*, to|strong=\"H3381\"* the|strong=\"H5921\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H1121\"* the|strong=\"H5921\"* earth, with|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H1121\"* go|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* pit." + }, + { + "verseNum": 19, + "text": "Whom|strong=\"H4310\"* do|strong=\"H3381\"* you|strong=\"H3381\"* pass in|strong=\"H6189\"* beauty|strong=\"H5276\"*? Go|strong=\"H3381\"* down|strong=\"H3381\"*, and|strong=\"H3381\"* be laid|strong=\"H7901\"* with|strong=\"H3381\"* the|strong=\"H3381\"* uncircumcised|strong=\"H6189\"*." + }, + { + "verseNum": 20, + "text": "They|strong=\"H3605\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* among|strong=\"H8432\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. She is|strong=\"H3605\"* delivered|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. Draw|strong=\"H4900\"* her|strong=\"H3605\"* away|strong=\"H5307\"* with|strong=\"H3605\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitudes|strong=\"H1995\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H8432\"* strong|strong=\"H1368\"* among|strong=\"H8432\"* the|strong=\"H8432\"* mighty|strong=\"H1368\"* will|strong=\"H2719\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H3381\"* out|strong=\"H8432\"* of|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H8432\"* Sheol|strong=\"H7585\"*+ 32:21 Sheol is the place of the dead.* with|strong=\"H1696\"* those|strong=\"H1696\"* who|strong=\"H1368\"* help|strong=\"H5826\"* him|strong=\"H3381\"*. They|strong=\"H2719\"* have|strong=\"H1696\"* gone|strong=\"H3381\"* down|strong=\"H3381\"*. The|strong=\"H8432\"* uncircumcised|strong=\"H6189\"* lie|strong=\"H7901\"* still|strong=\"H7901\"*, slain|strong=\"H2491\"* by|strong=\"H2491\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 22, + "text": "“Asshur is|strong=\"H3605\"* there|strong=\"H8033\"* with|strong=\"H3605\"* all|strong=\"H3605\"* her|strong=\"H3605\"* company|strong=\"H6951\"*. Her|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* all|strong=\"H3605\"* around|strong=\"H5439\"* her|strong=\"H3605\"*. All|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5439\"* are|strong=\"H6913\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*," + }, + { + "verseNum": 23, + "text": "whose|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* set|strong=\"H5414\"* in|strong=\"H5307\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H6951\"* the|strong=\"H3605\"* pit, and|strong=\"H2719\"* her|strong=\"H3605\"* company|strong=\"H6951\"* is|strong=\"H3605\"* around|strong=\"H5439\"* her|strong=\"H3605\"* grave|strong=\"H6913\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* caused|strong=\"H5414\"* terror|strong=\"H2851\"* in|strong=\"H5307\"* the|strong=\"H3605\"* land of|strong=\"H6951\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 24, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Elam|strong=\"H5867\"* and|strong=\"H2719\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"* around|strong=\"H5439\"* her|strong=\"H3605\"* grave|strong=\"H6900\"*; all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* slain|strong=\"H2491\"*, fallen|strong=\"H5307\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* have|strong=\"H5414\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* uncircumcised|strong=\"H6189\"* into|strong=\"H3381\"* the|strong=\"H3605\"* lower|strong=\"H8482\"* parts|strong=\"H8482\"* of|strong=\"H3605\"* the|strong=\"H3605\"* earth, who|strong=\"H3605\"* caused|strong=\"H5414\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H6189\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*, and|strong=\"H2719\"* have|strong=\"H5414\"* borne|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 25, + "text": "They|strong=\"H3588\"* have|strong=\"H5414\"* made|strong=\"H5414\"* Elam a|strong=\"H3068\"* bed|strong=\"H4904\"* among|strong=\"H8432\"* the|strong=\"H3605\"* slain|strong=\"H2491\"* with|strong=\"H3381\"* all|strong=\"H3605\"* her|strong=\"H3605\"* multitude|strong=\"H1995\"*. Her|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* around|strong=\"H5439\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H8432\"* them|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*, slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* was|strong=\"H5414\"* caused|strong=\"H5414\"* in|strong=\"H8432\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* the|strong=\"H3605\"* living|strong=\"H2416\"*, and|strong=\"H2719\"* they|strong=\"H3588\"* have|strong=\"H5414\"* borne|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit. He|strong=\"H3588\"* is|strong=\"H3605\"* put|strong=\"H5414\"* among|strong=\"H8432\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6913\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 26, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Meshech|strong=\"H4902\"*, Tubal|strong=\"H8422\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* their|strong=\"H3605\"* multitude|strong=\"H1995\"*. Their|strong=\"H3605\"* graves|strong=\"H6913\"* are|strong=\"H6913\"* around|strong=\"H5439\"* them|strong=\"H5414\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H5414\"* uncircumcised|strong=\"H6189\"*, slain|strong=\"H2490\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* caused|strong=\"H5414\"* their|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H6189\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* the|strong=\"H3605\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 27, + "text": "They|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* lie|strong=\"H7901\"* with|strong=\"H5921\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* who|strong=\"H1368\"* are|strong=\"H6106\"* fallen|strong=\"H5307\"* of|strong=\"H3627\"* the|strong=\"H5921\"* uncircumcised|strong=\"H6189\"*, who|strong=\"H1368\"* have|strong=\"H1961\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Sheol|strong=\"H7585\"* with|strong=\"H5921\"* their|strong=\"H5414\"* weapons|strong=\"H3627\"* of|strong=\"H3627\"* war|strong=\"H4421\"* and|strong=\"H7218\"* have|strong=\"H1961\"* laid|strong=\"H5414\"* their|strong=\"H5414\"* swords|strong=\"H2719\"* under|strong=\"H8478\"* their|strong=\"H5414\"* heads|strong=\"H7218\"*. Their|strong=\"H5414\"* iniquities|strong=\"H5771\"* are|strong=\"H6106\"* on|strong=\"H5921\"* their|strong=\"H5414\"* bones|strong=\"H6106\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H1961\"* the|strong=\"H5921\"* terror|strong=\"H2851\"* of|strong=\"H3627\"* the|strong=\"H5921\"* mighty|strong=\"H1368\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3627\"* the|strong=\"H5921\"* living|strong=\"H2416\"*." + }, + { + "verseNum": 28, + "text": "“But you|strong=\"H8432\"* will|strong=\"H2719\"* be|strong=\"H2719\"* broken|strong=\"H7665\"* among|strong=\"H8432\"* the|strong=\"H8432\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H2719\"* will|strong=\"H2719\"* lie|strong=\"H7901\"* with|strong=\"H7901\"* those who|strong=\"H2491\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H2491\"* the|strong=\"H8432\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 29, + "text": "“There|strong=\"H8033\"* is|strong=\"H3605\"* Edom, her|strong=\"H3605\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* all|strong=\"H3605\"* her|strong=\"H3605\"* princes|strong=\"H5387\"*, who|strong=\"H3605\"* in|strong=\"H4428\"* their|strong=\"H3605\"* might|strong=\"H1369\"* are|strong=\"H1992\"* laid|strong=\"H5414\"* with|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3605\"* are|strong=\"H1992\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. They|strong=\"H1992\"* will|strong=\"H4428\"* lie|strong=\"H7901\"* with|strong=\"H3381\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, and|strong=\"H4428\"* with|strong=\"H3381\"* those|strong=\"H1992\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 30, + "text": "“There|strong=\"H8033\"* are|strong=\"H2491\"* the|strong=\"H3605\"* princes|strong=\"H5257\"* of|strong=\"H3605\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, all|strong=\"H3605\"* of|strong=\"H3605\"* them|strong=\"H3381\"*, and|strong=\"H2719\"* all|strong=\"H3605\"* the|strong=\"H3605\"* Sidonians|strong=\"H6722\"*, who|strong=\"H3605\"* have|strong=\"H3605\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* with|strong=\"H3381\"* the|strong=\"H3605\"* slain|strong=\"H2491\"*. They|strong=\"H8033\"* are|strong=\"H2491\"* put|strong=\"H3381\"* to|strong=\"H3381\"* shame|strong=\"H3639\"* in|strong=\"H6189\"* the|strong=\"H3605\"* terror|strong=\"H2851\"* which|strong=\"H8033\"* they|strong=\"H8033\"* caused by|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H1369\"*. They|strong=\"H8033\"* lie|strong=\"H7901\"* uncircumcised|strong=\"H6189\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H3605\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, and|strong=\"H2719\"* bear|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* with|strong=\"H3381\"* those|strong=\"H3605\"* who|strong=\"H3605\"* go|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3605\"* pit." + }, + { + "verseNum": 31, + "text": "“Pharaoh|strong=\"H6547\"* will|strong=\"H2719\"* see|strong=\"H7200\"* them|strong=\"H5921\"* and|strong=\"H2719\"* will|strong=\"H2719\"* be|strong=\"H2719\"* comforted|strong=\"H5162\"* over|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"*, even|strong=\"H5921\"* Pharaoh|strong=\"H6547\"* and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* army|strong=\"H2428\"*, slain|strong=\"H2491\"* by|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 32, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5414\"* put|strong=\"H5414\"* his|strong=\"H3605\"* terror|strong=\"H2851\"* in|strong=\"H8432\"* the|strong=\"H3605\"* land of|strong=\"H8432\"* the|strong=\"H3605\"* living|strong=\"H2416\"*. He|strong=\"H3588\"* will|strong=\"H2719\"* be|strong=\"H5414\"* laid|strong=\"H5414\"* among|strong=\"H8432\"* the|strong=\"H3605\"* uncircumcised|strong=\"H6189\"*, with|strong=\"H7901\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H2491\"* slain|strong=\"H2491\"* by|strong=\"H5414\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, even|strong=\"H3588\"* Pharaoh|strong=\"H6547\"* and|strong=\"H2719\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 33, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, speak|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H1121\"* tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘When|strong=\"H3588\"* I|strong=\"H3588\"* bring|strong=\"H3947\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* on|strong=\"H5921\"* a|strong=\"H3068\"* land, and|strong=\"H1121\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H5921\"* land take|strong=\"H3947\"* a|strong=\"H3068\"* man|strong=\"H1121\"* from|strong=\"H5921\"* among|strong=\"H5921\"* them|strong=\"H5414\"*, and|strong=\"H1121\"* set|strong=\"H5414\"* him|strong=\"H5414\"* for|strong=\"H3588\"* their|strong=\"H5414\"* watchman|strong=\"H6822\"*," + }, + { + "verseNum": 3, + "text": "if|strong=\"H7200\"*, when|strong=\"H7200\"* he|strong=\"H5921\"* sees|strong=\"H7200\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* come|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land, he|strong=\"H5921\"* blows|strong=\"H8628\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* and|strong=\"H5971\"* warns|strong=\"H2094\"* the|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "then|strong=\"H1961\"* whoever hears|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H7218\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* and|strong=\"H6963\"* doesn’t heed|strong=\"H8085\"* the|strong=\"H8085\"* warning|strong=\"H2094\"*, if|strong=\"H1961\"* the|strong=\"H8085\"* sword|strong=\"H2719\"* comes|strong=\"H1961\"* and|strong=\"H6963\"* takes|strong=\"H3947\"* him|strong=\"H3947\"* away|strong=\"H3947\"*, his|strong=\"H3947\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* his|strong=\"H3947\"* own|strong=\"H1961\"* head|strong=\"H7218\"*." + }, + { + "verseNum": 5, + "text": "He|strong=\"H1931\"* heard|strong=\"H8085\"* the|strong=\"H8085\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H8085\"* trumpet|strong=\"H7782\"* and|strong=\"H6963\"* didn’t take|strong=\"H1961\"* warning|strong=\"H2094\"*. His|strong=\"H8085\"* blood|strong=\"H1818\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* him|strong=\"H6963\"*; whereas if|strong=\"H1961\"* he|strong=\"H1931\"* had|strong=\"H1961\"* heeded|strong=\"H8085\"* the|strong=\"H8085\"* warning|strong=\"H2094\"*, he|strong=\"H1931\"* would|strong=\"H5315\"* have|strong=\"H1961\"* delivered|strong=\"H4422\"* his|strong=\"H8085\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"* sees|strong=\"H7200\"* the|strong=\"H7200\"* sword|strong=\"H2719\"* come|strong=\"H5971\"* and|strong=\"H3027\"* doesn’t blow|strong=\"H8628\"* the|strong=\"H7200\"* trumpet|strong=\"H7782\"*, and|strong=\"H3027\"* the|strong=\"H7200\"* people|strong=\"H5971\"* aren’t warned|strong=\"H2094\"*, and|strong=\"H3027\"* the|strong=\"H7200\"* sword|strong=\"H2719\"* comes|strong=\"H1992\"* and|strong=\"H3027\"* takes|strong=\"H3947\"* any|strong=\"H5315\"* person|strong=\"H5315\"* from|strong=\"H5315\"* among|strong=\"H5971\"* them|strong=\"H1992\"*, he|strong=\"H1931\"* is|strong=\"H1931\"* taken|strong=\"H3947\"* away|strong=\"H3947\"* in|strong=\"H5315\"* his|strong=\"H3947\"* iniquity|strong=\"H5771\"*, but|strong=\"H3588\"* his|strong=\"H3947\"* blood|strong=\"H1818\"* I|strong=\"H3588\"* will|strong=\"H5971\"* require|strong=\"H1875\"* at|strong=\"H7200\"* the|strong=\"H7200\"* watchman|strong=\"H6822\"*’s hand|strong=\"H3027\"*.’" + }, + { + "verseNum": 7, + "text": "“So|strong=\"H4480\"* you|strong=\"H5414\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, I|strong=\"H5414\"* have|strong=\"H1121\"* set|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* watchman|strong=\"H6822\"* to|strong=\"H3478\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Therefore hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* from|strong=\"H4480\"* my|strong=\"H8085\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* give|strong=\"H5414\"* them|strong=\"H5414\"* warnings from|strong=\"H4480\"* me|strong=\"H5414\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1696\"* I|strong=\"H3808\"* tell|strong=\"H1696\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"*, ‘O|strong=\"H3068\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"*, you|strong=\"H3808\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*,’ and|strong=\"H3027\"* you|strong=\"H3808\"* don’t speak|strong=\"H1696\"* to|strong=\"H1696\"* warn|strong=\"H2094\"* the|strong=\"H1870\"* wicked|strong=\"H7563\"* from|strong=\"H3027\"* his|strong=\"H3027\"* way|strong=\"H1870\"*, that|strong=\"H1931\"* wicked|strong=\"H7563\"* man|strong=\"H7563\"* will|strong=\"H7563\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H3027\"* iniquity|strong=\"H5771\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H7563\"* require|strong=\"H1245\"* his|strong=\"H3027\"* blood|strong=\"H1818\"* at|strong=\"H4191\"* your|strong=\"H1245\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 9, + "text": "Nevertheless|strong=\"H3588\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* warn|strong=\"H2094\"* the|strong=\"H3588\"* wicked|strong=\"H7563\"* of|strong=\"H1870\"* his|strong=\"H7725\"* way|strong=\"H1870\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* from|strong=\"H4480\"* it|strong=\"H1931\"*, and|strong=\"H7725\"* he|strong=\"H1931\"* doesn’t turn|strong=\"H7725\"* from|strong=\"H4480\"* his|strong=\"H7725\"* way|strong=\"H1870\"*; he|strong=\"H1931\"* will|strong=\"H5315\"* die|strong=\"H4191\"* in|strong=\"H4191\"* his|strong=\"H7725\"* iniquity|strong=\"H5771\"*, but|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H7563\"* delivered|strong=\"H5337\"* your|strong=\"H7725\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H3588\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, tell the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*: ‘You|strong=\"H3588\"* say|strong=\"H3478\"* this|strong=\"H3651\"*, “Our|strong=\"H5921\"* transgressions|strong=\"H6588\"* and|strong=\"H1121\"* our|strong=\"H5921\"* sins|strong=\"H2403\"* are|strong=\"H1121\"* on|strong=\"H5921\"* us|strong=\"H5921\"*, and|strong=\"H1121\"* we|strong=\"H3068\"* pine away|strong=\"H4743\"* in|strong=\"H5921\"* them|strong=\"H5921\"*. How|strong=\"H3588\"* then|strong=\"H3651\"* can|strong=\"H1004\"* we|strong=\"H3068\"* live|strong=\"H2421\"*?”’" + }, + { + "verseNum": 11, + "text": "Tell them|strong=\"H7725\"*, ‘“As|strong=\"H3588\"* I|strong=\"H3588\"* live|strong=\"H2421\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* have|strong=\"H3478\"* no|strong=\"H3478\"* pleasure|strong=\"H2654\"* in|strong=\"H3478\"* the|strong=\"H5002\"* death|strong=\"H4194\"* of|strong=\"H1004\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"*, but|strong=\"H3588\"* that|strong=\"H3588\"* the|strong=\"H5002\"* wicked|strong=\"H7563\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* way|strong=\"H1870\"* and|strong=\"H3478\"* live|strong=\"H2421\"*. Turn|strong=\"H7725\"*, turn|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H7725\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*! For|strong=\"H3588\"* why|strong=\"H4100\"* will|strong=\"H3478\"* you|strong=\"H3588\"* die|strong=\"H4191\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?”’" + }, + { + "verseNum": 12, + "text": "“You|strong=\"H3117\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H7563\"*, tell the|strong=\"H7725\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H7725\"* people|strong=\"H5971\"*, ‘The|strong=\"H7725\"* righteousness|strong=\"H6666\"* of|strong=\"H1121\"* the|strong=\"H7725\"* righteous|strong=\"H6662\"* will|strong=\"H5971\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* him|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H7725\"* disobedience. And|strong=\"H1121\"* as|strong=\"H3117\"* for|strong=\"H3117\"* the|strong=\"H7725\"* wickedness|strong=\"H7562\"* of|strong=\"H1121\"* the|strong=\"H7725\"* wicked|strong=\"H7563\"*, he|strong=\"H3117\"* will|strong=\"H5971\"* not|strong=\"H3808\"* fall|strong=\"H3782\"* by|strong=\"H3117\"* it|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7562\"*; neither|strong=\"H3808\"* will|strong=\"H5971\"* he|strong=\"H3117\"* who|strong=\"H5971\"* is|strong=\"H3117\"* righteous|strong=\"H6662\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H7725\"* live|strong=\"H2421\"* by|strong=\"H3117\"* it|strong=\"H7725\"* in|strong=\"H3117\"* the|strong=\"H7725\"* day|strong=\"H3117\"* that|strong=\"H5971\"* he|strong=\"H3117\"* sins|strong=\"H2398\"*." + }, + { + "verseNum": 13, + "text": "When|strong=\"H2421\"* I|strong=\"H5921\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* righteous|strong=\"H6662\"* that|strong=\"H3605\"* he|strong=\"H1931\"* will|strong=\"H6662\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*, if|strong=\"H1931\"* he|strong=\"H1931\"* trusts in|strong=\"H5921\"* his|strong=\"H3605\"* righteousness|strong=\"H6666\"* and|strong=\"H6213\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, none|strong=\"H3808\"* of|strong=\"H5921\"* his|strong=\"H3605\"* righteous|strong=\"H6662\"* deeds|strong=\"H6666\"* will|strong=\"H6662\"* be|strong=\"H4191\"* remembered|strong=\"H2142\"*; but|strong=\"H3808\"* he|strong=\"H1931\"* will|strong=\"H6662\"* die|strong=\"H4191\"* in|strong=\"H5921\"* his|strong=\"H3605\"* iniquity|strong=\"H5766\"* that|strong=\"H3605\"* he|strong=\"H1931\"* has|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "Again|strong=\"H7725\"*, when|strong=\"H7725\"* I|strong=\"H6666\"* say|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6213\"* wicked|strong=\"H7563\"*, “You|strong=\"H7725\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* die|strong=\"H4191\"*,” if he|strong=\"H6213\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* sin|strong=\"H2403\"* and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H6213\"* which|strong=\"H2403\"* is|strong=\"H7563\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*," + }, + { + "verseNum": 15, + "text": "if the|strong=\"H6213\"* wicked|strong=\"H7563\"* restore|strong=\"H7725\"* the|strong=\"H6213\"* pledge|strong=\"H2258\"*, give|strong=\"H7725\"* again|strong=\"H7725\"* that|strong=\"H2416\"* which|strong=\"H2416\"* he|strong=\"H6213\"* had|strong=\"H2416\"* taken|strong=\"H6213\"* by|strong=\"H4191\"* robbery|strong=\"H1500\"*, walk|strong=\"H1980\"* in|strong=\"H1980\"* the|strong=\"H6213\"* statutes|strong=\"H2708\"* of|strong=\"H4191\"* life|strong=\"H2416\"*, committing|strong=\"H6213\"* no|strong=\"H3808\"* iniquity|strong=\"H5766\"*, he|strong=\"H6213\"* will|strong=\"H7563\"* surely|strong=\"H4191\"* live|strong=\"H2421\"*. He|strong=\"H6213\"* will|strong=\"H7563\"* not|strong=\"H3808\"* die|strong=\"H4191\"*." + }, + { + "verseNum": 16, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* his|strong=\"H3605\"* sins|strong=\"H2403\"* that|strong=\"H3605\"* he|strong=\"H6213\"* has|strong=\"H3605\"* committed|strong=\"H6213\"* will|strong=\"H3808\"* be|strong=\"H3808\"* remembered|strong=\"H2142\"* against|strong=\"H2398\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* has|strong=\"H3605\"* done|strong=\"H6213\"* that|strong=\"H3605\"* which|strong=\"H2403\"* is|strong=\"H3605\"* lawful|strong=\"H4941\"* and|strong=\"H4941\"* right|strong=\"H4941\"*. He|strong=\"H6213\"* will|strong=\"H3808\"* surely|strong=\"H2421\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 17, + "text": "“‘Yet|strong=\"H3808\"* the|strong=\"H1870\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3808\"* people|strong=\"H5971\"* say, “The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1121\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair;” but|strong=\"H3808\"* as|strong=\"H5971\"* for|strong=\"H1121\"* them|strong=\"H1992\"*, their|strong=\"H1992\"* way|strong=\"H1870\"* is|strong=\"H1870\"* not|strong=\"H3808\"* fair." + }, + { + "verseNum": 18, + "text": "When|strong=\"H7725\"* the|strong=\"H6213\"* righteous|strong=\"H6662\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* righteousness|strong=\"H6666\"* and|strong=\"H7725\"* commits|strong=\"H6213\"* iniquity|strong=\"H5766\"*, he|strong=\"H6213\"* will|strong=\"H6662\"* even|strong=\"H6213\"* die|strong=\"H4191\"* therein." + }, + { + "verseNum": 19, + "text": "When|strong=\"H2421\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* turns|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* wickedness|strong=\"H7564\"* and|strong=\"H7725\"* does|strong=\"H6213\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* lawful|strong=\"H4941\"* and|strong=\"H7725\"* right|strong=\"H4941\"*, he|strong=\"H1931\"* will|strong=\"H7563\"* live|strong=\"H2421\"* by|strong=\"H5921\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "Yet|strong=\"H3808\"* you|strong=\"H3808\"* say|strong=\"H3478\"*, “The|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H1870\"* Lord is|strong=\"H1870\"* not|strong=\"H3808\"* fair.” House|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, I|strong=\"H3808\"* will|strong=\"H3478\"* judge|strong=\"H8199\"* every|strong=\"H3478\"* one|strong=\"H3808\"* of|strong=\"H1004\"* you|strong=\"H3808\"* after|strong=\"H1004\"* his|strong=\"H3478\"* ways|strong=\"H1870\"*.’”" + }, + { + "verseNum": 21, + "text": "In|strong=\"H8141\"* the|strong=\"H5221\"* twelfth|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H8141\"* our|strong=\"H1961\"* captivity|strong=\"H1546\"*, in|strong=\"H8141\"* the|strong=\"H5221\"* tenth|strong=\"H6224\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5221\"* fifth|strong=\"H2568\"* day|strong=\"H2320\"* of|strong=\"H8141\"* the|strong=\"H5221\"* month|strong=\"H2320\"*, one|strong=\"H1961\"* who|strong=\"H6412\"* had|strong=\"H1961\"* escaped|strong=\"H6412\"* out|strong=\"H8147\"* of|strong=\"H8141\"* Jerusalem|strong=\"H3389\"* came|strong=\"H1961\"* to|strong=\"H1961\"* me|strong=\"H5221\"*, saying, “The|strong=\"H5221\"* city|strong=\"H5892\"* has|strong=\"H1961\"* been|strong=\"H1961\"* defeated|strong=\"H5221\"*!”" + }, + { + "verseNum": 22, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* had|strong=\"H3068\"* been|strong=\"H1961\"* on|strong=\"H3027\"* me|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* evening|strong=\"H6153\"*, before|strong=\"H6440\"* he|strong=\"H5704\"* who|strong=\"H3068\"* had|strong=\"H3068\"* escaped|strong=\"H6412\"* came|strong=\"H1961\"*; and|strong=\"H3068\"* he|strong=\"H5704\"* had|strong=\"H3068\"* opened|strong=\"H6605\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* until|strong=\"H5704\"* he|strong=\"H5704\"* came|strong=\"H1961\"* to|strong=\"H5704\"* me|strong=\"H6440\"* in|strong=\"H3068\"* the|strong=\"H6440\"* morning|strong=\"H1242\"*; and|strong=\"H3068\"* my|strong=\"H3068\"* mouth|strong=\"H6310\"* was|strong=\"H3068\"* opened|strong=\"H6605\"*, and|strong=\"H3068\"* I|strong=\"H5704\"* was|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* mute." + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 24, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, those|strong=\"H5921\"* who|strong=\"H1121\"* inhabit|strong=\"H3427\"* the|strong=\"H5921\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land of|strong=\"H1121\"* Israel|strong=\"H3478\"* speak, saying, ‘Abraham was|strong=\"H1961\"* one|strong=\"H1121\"*, and|strong=\"H1121\"* he|strong=\"H5414\"* inherited|strong=\"H3423\"* the|strong=\"H5921\"* land; but|strong=\"H1961\"* we|strong=\"H3068\"* are|strong=\"H1121\"* many|strong=\"H7227\"*. The|strong=\"H5921\"* land is|strong=\"H3478\"* given|strong=\"H5414\"* us|strong=\"H5414\"* for|strong=\"H5921\"* inheritance|strong=\"H3423\"*.’" + }, + { + "verseNum": 25, + "text": "Therefore|strong=\"H3651\"* tell them|strong=\"H5921\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H5921\"* eat with|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"*, and|strong=\"H5869\"* lift|strong=\"H5375\"* up|strong=\"H5375\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* to|strong=\"H5921\"* your|strong=\"H5921\"* idols|strong=\"H1544\"*, and|strong=\"H5869\"* shed|strong=\"H8210\"* blood|strong=\"H1818\"*. So|strong=\"H3651\"* should you|strong=\"H5921\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land?" + }, + { + "verseNum": 26, + "text": "You|strong=\"H5921\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* your|strong=\"H5921\"* sword|strong=\"H2719\"*, you|strong=\"H5921\"* work|strong=\"H6213\"* abomination|strong=\"H8441\"*, and|strong=\"H2719\"* every|strong=\"H6213\"* one|strong=\"H6213\"* of|strong=\"H5921\"* you|strong=\"H5921\"* defiles|strong=\"H2930\"* his|strong=\"H5921\"* neighbor|strong=\"H7453\"*’s wife. So|strong=\"H6213\"* should|strong=\"H6213\"* you|strong=\"H5921\"* possess|strong=\"H3423\"* the|strong=\"H5921\"* land?”’" + }, + { + "verseNum": 27, + "text": "“You|strong=\"H5414\"* shall|strong=\"H2719\"* tell them|strong=\"H5414\"*, ‘The|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “As|strong=\"H6440\"* I|strong=\"H5414\"* live|strong=\"H2416\"*, surely|strong=\"H4191\"* those|strong=\"H5921\"* who|strong=\"H2416\"* are|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*. I|strong=\"H5414\"* will|strong=\"H2719\"* give|strong=\"H5414\"* whoever|strong=\"H4191\"* is|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"* to|strong=\"H4191\"* the|strong=\"H6440\"* animals|strong=\"H2416\"* to|strong=\"H4191\"* be|strong=\"H4191\"* devoured, and|strong=\"H6440\"* those|strong=\"H5921\"* who|strong=\"H2416\"* are|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* strongholds and|strong=\"H6440\"* in|strong=\"H5921\"* the|strong=\"H6440\"* caves|strong=\"H4631\"* will|strong=\"H2719\"* die|strong=\"H4191\"* of|strong=\"H6440\"* the|strong=\"H6440\"* pestilence|strong=\"H1698\"*." + }, + { + "verseNum": 28, + "text": "I|strong=\"H5414\"* will|strong=\"H3478\"* make|strong=\"H5414\"* the|strong=\"H5414\"* land|strong=\"H1347\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3478\"* an|strong=\"H5414\"* astonishment|strong=\"H8074\"*. The|strong=\"H5414\"* pride|strong=\"H1347\"* of|strong=\"H2022\"* her|strong=\"H5414\"* power|strong=\"H5797\"* will|strong=\"H3478\"* cease|strong=\"H7673\"*. The|strong=\"H5414\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* desolate|strong=\"H8074\"*, so|strong=\"H5414\"* that|strong=\"H3478\"* no|strong=\"H5414\"* one|strong=\"H8074\"* will|strong=\"H3478\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 29, + "text": "Then|strong=\"H5414\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H3605\"* land a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3068\"* an|strong=\"H6213\"* astonishment|strong=\"H4923\"* because|strong=\"H3588\"* of|strong=\"H3068\"* all|strong=\"H3605\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H3068\"* they|strong=\"H3588\"* have|strong=\"H3068\"* committed|strong=\"H6213\"*.”’" + }, + { + "verseNum": 30, + "text": "“As|strong=\"H1697\"* for|strong=\"H3068\"* you|strong=\"H4100\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H8085\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3068\"* people|strong=\"H5971\"* talk|strong=\"H1696\"* about|strong=\"H1697\"* you|strong=\"H4100\"* by|strong=\"H3068\"* the|strong=\"H8085\"* walls|strong=\"H7023\"* and|strong=\"H1121\"* in|strong=\"H3068\"* the|strong=\"H8085\"* doors|strong=\"H6607\"* of|strong=\"H1121\"* the|strong=\"H8085\"* houses|strong=\"H1004\"*, and|strong=\"H1121\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* one|strong=\"H1121\"* another, everyone to|strong=\"H1696\"* his|strong=\"H3068\"* brother, saying|strong=\"H1697\"*, ‘Please|strong=\"H4994\"* come|strong=\"H3318\"* and|strong=\"H1121\"* hear|strong=\"H8085\"* what|strong=\"H4100\"* the|strong=\"H8085\"* word|strong=\"H1697\"* is|strong=\"H3068\"* that|strong=\"H5971\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 31, + "text": "They|strong=\"H1992\"* come|strong=\"H1980\"* to|strong=\"H1980\"* you|strong=\"H3588\"* as|strong=\"H1697\"* the|strong=\"H6440\"* people|strong=\"H5971\"* come|strong=\"H1980\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* sit|strong=\"H3427\"* before|strong=\"H6440\"* you|strong=\"H3588\"* as|strong=\"H1697\"* my|strong=\"H8085\"* people|strong=\"H5971\"*, and|strong=\"H1980\"* they|strong=\"H1992\"* hear|strong=\"H8085\"* your|strong=\"H6440\"* words|strong=\"H1697\"*, but|strong=\"H3588\"* don’t do|strong=\"H6213\"* them|strong=\"H1992\"*; for|strong=\"H3588\"* with|strong=\"H1980\"* their|strong=\"H6440\"* mouth|strong=\"H6310\"* they|strong=\"H1992\"* show|strong=\"H6213\"* much|strong=\"H6310\"* love|strong=\"H5690\"*, but|strong=\"H3588\"* their|strong=\"H6440\"* heart|strong=\"H3820\"* goes|strong=\"H1980\"* after|strong=\"H3588\"* their|strong=\"H6440\"* gain|strong=\"H1215\"*." + }, + { + "verseNum": 32, + "text": "Behold|strong=\"H2005\"*, you|strong=\"H6213\"* are|strong=\"H1697\"* to|strong=\"H6213\"* them|strong=\"H6213\"* as|strong=\"H1697\"* a|strong=\"H3068\"* very|strong=\"H6213\"* lovely|strong=\"H5690\"* song|strong=\"H7892\"* of|strong=\"H1697\"* one|strong=\"H3303\"* who|strong=\"H6213\"* has|strong=\"H1697\"* a|strong=\"H3068\"* pleasant|strong=\"H3303\"* voice|strong=\"H6963\"*, and|strong=\"H6963\"* can|strong=\"H6213\"* play|strong=\"H5059\"* well|strong=\"H2895\"* on|strong=\"H6213\"* an|strong=\"H6213\"* instrument|strong=\"H5059\"*; for|strong=\"H6213\"* they|strong=\"H6213\"* hear|strong=\"H8085\"* your|strong=\"H8085\"* words|strong=\"H1697\"*, but|strong=\"H8085\"* they|strong=\"H6213\"* don’t do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“When|strong=\"H3588\"* this|strong=\"H3588\"* comes|strong=\"H1961\"* to|strong=\"H1961\"* pass|strong=\"H1961\"*—behold|strong=\"H2009\"*, it|strong=\"H3588\"* comes|strong=\"H1961\"*—then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H1961\"* know|strong=\"H3045\"* that|strong=\"H3588\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"* has|strong=\"H1961\"* been|strong=\"H1961\"* among|strong=\"H8432\"* them|strong=\"H8432\"*.”" + } + ] + }, + { + "chapterNum": 34, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5921\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* tell them|strong=\"H5921\"*, even|strong=\"H3808\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Woe|strong=\"H1945\"* to|strong=\"H3478\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* who|strong=\"H1121\"* feed|strong=\"H7462\"* themselves|strong=\"H7462\"*! Shouldn’t the|strong=\"H5921\"* shepherds|strong=\"H7462\"* feed|strong=\"H7462\"* the|strong=\"H5921\"* sheep|strong=\"H6629\"*?" + }, + { + "verseNum": 3, + "text": "You|strong=\"H3808\"* eat|strong=\"H7462\"* the|strong=\"H3808\"* fat|strong=\"H2459\"*. You|strong=\"H3808\"* clothe|strong=\"H3847\"* yourself|strong=\"H3847\"* with|strong=\"H3847\"* the|strong=\"H3808\"* wool|strong=\"H6785\"*. You|strong=\"H3808\"* kill|strong=\"H2076\"* the|strong=\"H3808\"* fatlings, but|strong=\"H3808\"* you|strong=\"H3808\"* don’t feed|strong=\"H7462\"* the|strong=\"H3808\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H7725\"* haven’t strengthened|strong=\"H2388\"* the|strong=\"H7725\"* diseased|strong=\"H2470\"*. You|strong=\"H7725\"* haven’t healed|strong=\"H7495\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* sick|strong=\"H2470\"*. You|strong=\"H7725\"* haven’t bound|strong=\"H2280\"* up|strong=\"H2280\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* broken|strong=\"H7665\"*. You|strong=\"H7725\"* haven’t brought|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* driven|strong=\"H5080\"* away|strong=\"H7725\"*. You|strong=\"H7725\"* haven’t sought|strong=\"H1245\"* that|strong=\"H3808\"* which was|strong=\"H3808\"* lost, but|strong=\"H3808\"* you|strong=\"H7725\"* have|strong=\"H3808\"* ruled|strong=\"H7287\"* over|strong=\"H7287\"* them|strong=\"H7725\"* with|strong=\"H7725\"* force|strong=\"H2394\"* and|strong=\"H7725\"* with|strong=\"H7725\"* rigor." + }, + { + "verseNum": 5, + "text": "They|strong=\"H3605\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*, because|strong=\"H1097\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H1097\"* shepherd|strong=\"H7462\"*. They|strong=\"H3605\"* became|strong=\"H1961\"* food to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, and|strong=\"H7704\"* were|strong=\"H1961\"* scattered|strong=\"H6327\"*." + }, + { + "verseNum": 6, + "text": "My|strong=\"H3605\"* sheep|strong=\"H6629\"* wandered|strong=\"H7686\"* through|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* and|strong=\"H6629\"* on|strong=\"H5921\"* every|strong=\"H3605\"* high|strong=\"H7311\"* hill|strong=\"H2022\"*. Yes, my|strong=\"H3605\"* sheep|strong=\"H6629\"* were|strong=\"H2022\"* scattered|strong=\"H6327\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth. There|strong=\"H2022\"* was|strong=\"H6629\"* no|strong=\"H3605\"* one|strong=\"H3605\"* who|strong=\"H3605\"* searched|strong=\"H1245\"* or|strong=\"H1875\"* sought|strong=\"H1245\"*.”" + }, + { + "verseNum": 7, + "text": "“‘Therefore|strong=\"H3651\"*, you|strong=\"H3651\"* shepherds|strong=\"H7462\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*:" + }, + { + "verseNum": 8, + "text": "“As|strong=\"H1961\"* I|strong=\"H3282\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “surely|strong=\"H1961\"* because|strong=\"H3282\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"* became|strong=\"H1961\"* a|strong=\"H3068\"* prey, and|strong=\"H6629\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"* became|strong=\"H1961\"* food to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H7704\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, because|strong=\"H3282\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* shepherd|strong=\"H7462\"*, and|strong=\"H6629\"* my|strong=\"H3605\"* shepherds|strong=\"H7462\"* didn’t search|strong=\"H1875\"* for|strong=\"H3605\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* shepherds|strong=\"H7462\"* fed|strong=\"H7462\"* themselves|strong=\"H7462\"*, and|strong=\"H6629\"* didn’t feed|strong=\"H7462\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*," + }, + { + "verseNum": 9, + "text": "therefore|strong=\"H3651\"*, you|strong=\"H3651\"* shepherds|strong=\"H7462\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*!”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H1961\"* against|strong=\"H3027\"* the|strong=\"H3069\"* shepherds|strong=\"H7462\"*. I|strong=\"H2005\"* will|strong=\"H1961\"* require|strong=\"H1875\"* my|strong=\"H1961\"* sheep|strong=\"H6629\"* at|strong=\"H1961\"* their|strong=\"H5337\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* cause|strong=\"H6310\"* them|strong=\"H3027\"* to|strong=\"H1961\"* cease|strong=\"H7673\"* from|strong=\"H3027\"* feeding|strong=\"H7462\"* the|strong=\"H3069\"* sheep|strong=\"H6629\"*. The|strong=\"H3069\"* shepherds|strong=\"H7462\"* won’t feed|strong=\"H7462\"* themselves|strong=\"H7462\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. I|strong=\"H2005\"* will|strong=\"H1961\"* deliver|strong=\"H5337\"* my|strong=\"H1961\"* sheep|strong=\"H6629\"* from|strong=\"H3027\"* their|strong=\"H5337\"* mouth|strong=\"H6310\"*, that|strong=\"H3027\"* they|strong=\"H3808\"* may|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* food for|strong=\"H3027\"* them|strong=\"H3027\"*.”" + }, + { + "verseNum": 11, + "text": "“‘For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* myself, even|strong=\"H3588\"* I|strong=\"H3588\"*, will|strong=\"H3069\"* search|strong=\"H1875\"* for|strong=\"H3588\"* my|strong=\"H3588\"* sheep|strong=\"H6629\"*, and|strong=\"H6629\"* will|strong=\"H3069\"* seek|strong=\"H1875\"* them|strong=\"H3588\"* out|strong=\"H1875\"*." + }, + { + "verseNum": 12, + "text": "As|strong=\"H3117\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* seeks|strong=\"H1243\"* out|strong=\"H5337\"* his|strong=\"H3605\"* flock|strong=\"H6629\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* he|strong=\"H3117\"* is|strong=\"H3117\"* among|strong=\"H8432\"* his|strong=\"H3605\"* sheep|strong=\"H6629\"* that|strong=\"H3605\"* are|strong=\"H3117\"* scattered|strong=\"H6327\"* abroad|strong=\"H6327\"*, so|strong=\"H3651\"* I|strong=\"H3117\"* will|strong=\"H1961\"* seek|strong=\"H1239\"* out|strong=\"H5337\"* my|strong=\"H3605\"* sheep|strong=\"H6629\"*. I|strong=\"H3117\"* will|strong=\"H1961\"* deliver|strong=\"H5337\"* them|strong=\"H8432\"* out|strong=\"H5337\"* of|strong=\"H3117\"* all|strong=\"H3605\"* places|strong=\"H4725\"* where|strong=\"H8033\"* they|strong=\"H3117\"* have|strong=\"H1961\"* been|strong=\"H1961\"* scattered|strong=\"H6327\"* in|strong=\"H3117\"* the|strong=\"H3605\"* cloudy|strong=\"H6051\"* and|strong=\"H3117\"* dark|strong=\"H6205\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, and|strong=\"H3478\"* gather|strong=\"H6908\"* them|strong=\"H3318\"* from|strong=\"H4480\"* the|strong=\"H3605\"* countries, and|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* into|strong=\"H3318\"* their|strong=\"H3605\"* own|strong=\"H5971\"* land. I|strong=\"H3478\"* will|strong=\"H5971\"* feed|strong=\"H7462\"* them|strong=\"H3318\"* on|strong=\"H3318\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, by|strong=\"H3318\"* the|strong=\"H3605\"* watercourses, and|strong=\"H3478\"* in|strong=\"H3478\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabited|strong=\"H4186\"* places|strong=\"H4186\"* of|strong=\"H2022\"* the|strong=\"H3605\"* country|strong=\"H2022\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3478\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H1961\"* with|strong=\"H3478\"* good|strong=\"H2896\"* pasture|strong=\"H4829\"*, and|strong=\"H3478\"* their|strong=\"H1961\"* fold|strong=\"H5116\"* will|strong=\"H1961\"* be|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H1961\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* the|strong=\"H1961\"* height|strong=\"H4791\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*. There|strong=\"H8033\"* they|strong=\"H8033\"* will|strong=\"H1961\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H3478\"* a|strong=\"H3068\"* good|strong=\"H2896\"* fold|strong=\"H5116\"*. They|strong=\"H8033\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* on|strong=\"H1961\"* rich|strong=\"H8082\"* pasture|strong=\"H4829\"* on|strong=\"H1961\"* the|strong=\"H1961\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5002\"* myself will|strong=\"H3069\"* be|strong=\"H3069\"* the|strong=\"H5002\"* shepherd|strong=\"H7462\"* of|strong=\"H6629\"* my|strong=\"H7462\"* sheep|strong=\"H6629\"*, and|strong=\"H6629\"* I|strong=\"H5002\"* will|strong=\"H3069\"* cause them|strong=\"H7462\"* to|strong=\"H6629\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“I|strong=\"H7665\"* will|strong=\"H7725\"* seek|strong=\"H1245\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* lost, and|strong=\"H7725\"* will|strong=\"H7725\"* bring|strong=\"H7725\"* back|strong=\"H7725\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* driven|strong=\"H5080\"* away|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H7725\"* bind|strong=\"H2280\"* up|strong=\"H2280\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* broken|strong=\"H7665\"*, and|strong=\"H7725\"* will|strong=\"H7725\"* strengthen|strong=\"H2388\"* that|strong=\"H7725\"* which was|strong=\"H2389\"* sick|strong=\"H2470\"*; but|strong=\"H2388\"* I|strong=\"H7665\"* will|strong=\"H7725\"* destroy|strong=\"H8045\"* the|strong=\"H7725\"* fat|strong=\"H8082\"* and|strong=\"H7725\"* the|strong=\"H7725\"* strong|strong=\"H2388\"*. I|strong=\"H7665\"* will|strong=\"H7725\"* feed|strong=\"H7462\"* them|strong=\"H7725\"* in|strong=\"H7725\"* justice|strong=\"H4941\"*.”’" + }, + { + "verseNum": 17, + "text": "“As for|strong=\"H8199\"* you, O|strong=\"H3068\"* my|strong=\"H8199\"* flock|strong=\"H6629\"*, the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* sheep|strong=\"H6629\"*, the|strong=\"H3069\"* rams|strong=\"H6260\"* and|strong=\"H6629\"* the|strong=\"H3069\"* male|strong=\"H6260\"* goats|strong=\"H6260\"*." + }, + { + "verseNum": 18, + "text": "Does it|strong=\"H7429\"* seem a|strong=\"H3068\"* small|strong=\"H4592\"* thing|strong=\"H4592\"* to|strong=\"H4325\"* you|strong=\"H4480\"* to|strong=\"H4325\"* have|strong=\"H7462\"* fed|strong=\"H7462\"* on|strong=\"H7462\"* the|strong=\"H4480\"* good|strong=\"H2896\"* pasture|strong=\"H4829\"*, but|strong=\"H3498\"* you|strong=\"H4480\"* must tread|strong=\"H7429\"* down|strong=\"H7429\"* with|strong=\"H4325\"* your|strong=\"H4480\"* feet|strong=\"H7272\"* the|strong=\"H4480\"* residue|strong=\"H3499\"* of|strong=\"H4325\"* your|strong=\"H4480\"* pasture|strong=\"H4829\"*? And|strong=\"H2896\"* to|strong=\"H4325\"* have|strong=\"H7462\"* drunk|strong=\"H8354\"* of|strong=\"H4325\"* the|strong=\"H4480\"* clear|strong=\"H4950\"* waters|strong=\"H4325\"*, but|strong=\"H3498\"* must you|strong=\"H4480\"* foul|strong=\"H7515\"* the|strong=\"H4480\"* residue|strong=\"H3499\"* with|strong=\"H4325\"* your|strong=\"H4480\"* feet|strong=\"H7272\"*?" + }, + { + "verseNum": 19, + "text": "As|strong=\"H7272\"* for|strong=\"H7272\"* my|strong=\"H7462\"* sheep|strong=\"H6629\"*, they|strong=\"H7272\"* eat|strong=\"H7462\"* that|strong=\"H7462\"* which you|strong=\"H4833\"* have|strong=\"H7462\"* trodden|strong=\"H4823\"* with|strong=\"H6629\"* your|strong=\"H8354\"* feet|strong=\"H7272\"*, and|strong=\"H6629\"* they|strong=\"H7272\"* drink|strong=\"H8354\"* that|strong=\"H7462\"* which you|strong=\"H4833\"* have|strong=\"H7462\"* fouled|strong=\"H4833\"* with|strong=\"H6629\"* your|strong=\"H8354\"* feet|strong=\"H7272\"*.’" + }, + { + "verseNum": 20, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3069\"* them: ‘Behold|strong=\"H2005\"*, I|strong=\"H2005\"*, even|strong=\"H3651\"* I|strong=\"H2005\"*, will|strong=\"H3069\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* the|strong=\"H3069\"* fat|strong=\"H1274\"* sheep|strong=\"H7716\"* and|strong=\"H7716\"* the|strong=\"H3069\"* lean|strong=\"H7330\"* sheep|strong=\"H7716\"*." + }, + { + "verseNum": 21, + "text": "Because|strong=\"H3282\"* you|strong=\"H3605\"* thrust|strong=\"H1920\"* with|strong=\"H3605\"* side|strong=\"H3802\"* and|strong=\"H6654\"* with|strong=\"H3605\"* shoulder|strong=\"H3802\"*, and|strong=\"H6654\"* push|strong=\"H5055\"* all|strong=\"H3605\"* the|strong=\"H3605\"* diseased|strong=\"H2470\"* with|strong=\"H3605\"* your|strong=\"H3605\"* horns|strong=\"H7161\"*, until|strong=\"H5704\"* you|strong=\"H3605\"* have|strong=\"H3605\"* scattered|strong=\"H6327\"* them|strong=\"H6327\"* abroad|strong=\"H2351\"*," + }, + { + "verseNum": 22, + "text": "therefore|strong=\"H1961\"* I|strong=\"H3808\"* will|strong=\"H1961\"* save|strong=\"H3467\"* my|strong=\"H1961\"* flock|strong=\"H6629\"*, and|strong=\"H6629\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey. I|strong=\"H3808\"* will|strong=\"H1961\"* judge|strong=\"H8199\"* between|strong=\"H8199\"* sheep|strong=\"H6629\"* and|strong=\"H6629\"* sheep|strong=\"H6629\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* set|strong=\"H6965\"* up|strong=\"H6965\"* one|strong=\"H1931\"* shepherd|strong=\"H7462\"* over|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*, even|strong=\"H5921\"* my|strong=\"H1732\"* servant|strong=\"H5650\"* David|strong=\"H1732\"*. He|strong=\"H1931\"* will|strong=\"H1961\"* feed|strong=\"H7462\"* them|strong=\"H5921\"*, and|strong=\"H6965\"* he|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5921\"* shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H5650\"*, Yahweh|strong=\"H3068\"*, will|strong=\"H3068\"* be|strong=\"H1961\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* my|strong=\"H3068\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* prince|strong=\"H5387\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. I|strong=\"H5650\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H1961\"* spoken|strong=\"H1696\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 25, + "text": "“‘I|strong=\"H3772\"* will|strong=\"H3293\"* make|strong=\"H3772\"* with|strong=\"H1285\"* them|strong=\"H3427\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3427\"* peace|strong=\"H7965\"*, and|strong=\"H1285\"* will|strong=\"H3293\"* cause evil|strong=\"H7451\"* animals|strong=\"H2416\"* to|strong=\"H3427\"* cease|strong=\"H7673\"* out|strong=\"H4480\"* of|strong=\"H3427\"* the|strong=\"H4480\"* land. They|strong=\"H1285\"* will|strong=\"H3293\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* the|strong=\"H4480\"* wilderness|strong=\"H4057\"* and|strong=\"H1285\"* sleep|strong=\"H3462\"* in|strong=\"H3427\"* the|strong=\"H4480\"* woods|strong=\"H3293\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* them|strong=\"H5414\"* and|strong=\"H3381\"* the|strong=\"H5414\"* places|strong=\"H5439\"* around|strong=\"H5439\"* my|strong=\"H5414\"* hill|strong=\"H1389\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* cause|strong=\"H5414\"* the|strong=\"H5414\"* shower|strong=\"H1653\"* to|strong=\"H3381\"* come|strong=\"H1961\"* down|strong=\"H3381\"* in|strong=\"H5414\"* its|strong=\"H5414\"* season|strong=\"H6256\"*. There|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* showers|strong=\"H1653\"* of|strong=\"H6256\"* blessing|strong=\"H1293\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H5921\"* tree|strong=\"H6086\"* of|strong=\"H3068\"* the|strong=\"H5921\"* field|strong=\"H7704\"* will|strong=\"H3068\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* fruit|strong=\"H6529\"*, and|strong=\"H3068\"* the|strong=\"H5921\"* earth will|strong=\"H3068\"* yield|strong=\"H5414\"* its|strong=\"H5414\"* increase|strong=\"H2981\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* secure in|strong=\"H5921\"* their|strong=\"H3068\"* land|strong=\"H7704\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* broken|strong=\"H7665\"* the|strong=\"H5921\"* bars|strong=\"H4133\"* of|strong=\"H3068\"* their|strong=\"H3068\"* yoke|strong=\"H5923\"*, and|strong=\"H3068\"* have|strong=\"H1961\"* delivered|strong=\"H5414\"* them|strong=\"H5414\"* out|strong=\"H5414\"* of|strong=\"H3068\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* those|strong=\"H5921\"* who|strong=\"H3068\"* made|strong=\"H5414\"* slaves|strong=\"H5647\"* of|strong=\"H3068\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* prey to|strong=\"H1961\"* the|strong=\"H1961\"* nations|strong=\"H1471\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* the|strong=\"H1961\"* animals|strong=\"H2416\"* of|strong=\"H3427\"* the|strong=\"H1961\"* earth devour them|strong=\"H1961\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* securely, and|strong=\"H1471\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H1961\"* make|strong=\"H2729\"* them|strong=\"H1961\"* afraid|strong=\"H2729\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H1961\"* them|strong=\"H5375\"* a|strong=\"H3068\"* plantation|strong=\"H4302\"* for|strong=\"H8034\"* renown|strong=\"H8034\"*, and|strong=\"H6965\"* they|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* be|strong=\"H1961\"* consumed with|strong=\"H6965\"* famine|strong=\"H7458\"* in|strong=\"H8034\"* the|strong=\"H5375\"* land, and|strong=\"H6965\"* not|strong=\"H3808\"* bear|strong=\"H5375\"* the|strong=\"H5375\"* shame|strong=\"H3639\"* of|strong=\"H8034\"* the|strong=\"H5375\"* nations|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 30, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"* am|strong=\"H3068\"* with|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3478\"* that|strong=\"H3588\"* they|strong=\"H1992\"*, the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, are|strong=\"H1992\"* my|strong=\"H3068\"* people|strong=\"H5971\"*, says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 31, + "text": "You my sheep|strong=\"H6629\"*, the|strong=\"H5002\"* sheep|strong=\"H6629\"* of|strong=\"H6629\"* my pasture|strong=\"H4830\"*, are men, and|strong=\"H6629\"* I|strong=\"H5002\"* am your|strong=\"H6629\"* God|strong=\"H3069\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 35, + "verses": [ + { + "verseNum": 1, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* against|strong=\"H5921\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* it|strong=\"H7760\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3027\"* tell it|strong=\"H5414\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5414\"*, Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H3027\"* I|strong=\"H2005\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* you|strong=\"H5414\"*. I|strong=\"H2005\"* will|strong=\"H3027\"* make|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* and|strong=\"H3027\"* an|strong=\"H5414\"* astonishment|strong=\"H4923\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* lay|strong=\"H7760\"* your|strong=\"H3068\"* cities|strong=\"H5892\"* waste|strong=\"H2723\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"*. Then|strong=\"H1961\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“‘“Because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1961\"* had|strong=\"H1961\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* hostility, and|strong=\"H1121\"* have|strong=\"H1961\"* given|strong=\"H3027\"* over|strong=\"H5921\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H5921\"* power|strong=\"H3027\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sword|strong=\"H2719\"* in|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* their|strong=\"H5921\"* calamity, in|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H5921\"* iniquity|strong=\"H5771\"* of|strong=\"H1121\"* the|strong=\"H5921\"* end|strong=\"H7093\"*," + }, + { + "verseNum": 6, + "text": "therefore|strong=\"H3651\"*, as|strong=\"H6213\"* I|strong=\"H3588\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3588\"* will|strong=\"H3808\"* prepare|strong=\"H6213\"* you|strong=\"H3588\"* for|strong=\"H3588\"* blood|strong=\"H1818\"*, and|strong=\"H6213\"* blood|strong=\"H1818\"* will|strong=\"H3808\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"*. Since|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3588\"* not|strong=\"H3808\"* hated|strong=\"H8130\"* blood|strong=\"H1818\"*, therefore|strong=\"H3651\"* blood|strong=\"H1818\"* will|strong=\"H3808\"* pursue|strong=\"H7291\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 7, + "text": "Thus I|strong=\"H5414\"* will|strong=\"H5414\"* make|strong=\"H5414\"* Mount|strong=\"H2022\"* Seir|strong=\"H8165\"* an|strong=\"H5414\"* astonishment and|strong=\"H7725\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* it|strong=\"H5414\"* him|strong=\"H5414\"* who passes|strong=\"H5674\"* through|strong=\"H5674\"* and|strong=\"H7725\"* him|strong=\"H5414\"* who returns|strong=\"H7725\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3605\"* will|strong=\"H2719\"* fill|strong=\"H4390\"* its|strong=\"H3605\"* mountains|strong=\"H2022\"* with|strong=\"H4390\"* its|strong=\"H3605\"* slain|strong=\"H2491\"*. The|strong=\"H3605\"* slain|strong=\"H2491\"* with|strong=\"H4390\"* the|strong=\"H3605\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H5307\"* in|strong=\"H5307\"* your|strong=\"H3605\"* hills|strong=\"H1389\"* and|strong=\"H2719\"* in|strong=\"H5307\"* your|strong=\"H3605\"* valleys|strong=\"H1516\"* and|strong=\"H2719\"* in|strong=\"H5307\"* all|strong=\"H3605\"* your|strong=\"H3605\"* watercourses." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H5414\"* you|strong=\"H3588\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolation|strong=\"H8077\"*, and|strong=\"H3068\"* your|strong=\"H3068\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* inhabited|strong=\"H3427\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“‘“Because|strong=\"H3282\"* you|strong=\"H3282\"* have|strong=\"H1961\"* said, ‘These|strong=\"H8147\"* two|strong=\"H8147\"* nations|strong=\"H1471\"* and|strong=\"H3068\"* these|strong=\"H8147\"* two|strong=\"H8147\"* countries will|strong=\"H3068\"* be|strong=\"H1961\"* mine, and|strong=\"H3068\"* we|strong=\"H3068\"* will|strong=\"H3068\"* possess|strong=\"H3423\"* it|strong=\"H8033\"*,’ although Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 11, + "text": "therefore|strong=\"H3651\"*, as|strong=\"H6213\"* I|strong=\"H3651\"* live|strong=\"H2416\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3651\"* will|strong=\"H3069\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* your|strong=\"H3045\"* anger|strong=\"H7068\"*, and|strong=\"H6213\"* according to|strong=\"H6213\"* your|strong=\"H3045\"* envy|strong=\"H7068\"* which|strong=\"H2416\"* you|strong=\"H6213\"* have|strong=\"H3045\"* shown|strong=\"H6213\"* out|strong=\"H6213\"* of|strong=\"H3069\"* your|strong=\"H3045\"* hatred|strong=\"H8135\"* against|strong=\"H6213\"* them|strong=\"H6213\"*; and|strong=\"H6213\"* I|strong=\"H3651\"* will|strong=\"H3069\"* make|strong=\"H6213\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* among|strong=\"H8199\"* them|strong=\"H6213\"* when|strong=\"H6213\"* I|strong=\"H3651\"* judge|strong=\"H8199\"* you|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* heard|strong=\"H8085\"* all|strong=\"H3605\"* your|strong=\"H3068\"* insults which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* spoken|strong=\"H8085\"* against|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, saying, ‘They|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* laid|strong=\"H5414\"* desolate|strong=\"H8074\"*. They|strong=\"H3588\"* have|strong=\"H3068\"* been|strong=\"H3605\"* given|strong=\"H5414\"* to|strong=\"H3478\"* us|strong=\"H5414\"* to|strong=\"H3478\"* devour.’" + }, + { + "verseNum": 13, + "text": "You|strong=\"H5921\"* have|strong=\"H1697\"* magnified|strong=\"H1431\"* yourselves|strong=\"H1431\"* against|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* your|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H8085\"* have|strong=\"H1697\"* multiplied|strong=\"H6280\"* your|strong=\"H5921\"* words|strong=\"H1697\"* against|strong=\"H5921\"* me|strong=\"H5921\"*. I|strong=\"H5921\"* have|strong=\"H1697\"* heard|strong=\"H8085\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 14, + "text": "The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “When|strong=\"H6213\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth rejoices|strong=\"H8055\"*, I|strong=\"H3541\"* will|strong=\"H3069\"* make|strong=\"H6213\"* you|strong=\"H3605\"* desolate|strong=\"H8077\"*." + }, + { + "verseNum": 15, + "text": "As|strong=\"H1961\"* you|strong=\"H3588\"* rejoiced|strong=\"H8057\"* over|strong=\"H5921\"* the|strong=\"H3605\"* inheritance|strong=\"H5159\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* because|strong=\"H3588\"* it|strong=\"H5921\"* was|strong=\"H3068\"* desolate|strong=\"H8074\"*, so|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H3588\"*. You|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* desolate|strong=\"H8074\"*, Mount|strong=\"H2022\"* Seir|strong=\"H8165\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* Edom, even|strong=\"H3588\"* all|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H5921\"*. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 36, + "verses": [ + { + "verseNum": 1, + "text": "You|strong=\"H2022\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* to|strong=\"H3478\"* the|strong=\"H8085\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, and|strong=\"H1121\"* say|strong=\"H1697\"*, “You|strong=\"H2022\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Because|strong=\"H5921\"* the|strong=\"H5921\"* enemy has|strong=\"H1961\"* said against|strong=\"H5921\"* you|strong=\"H5921\"*, “Aha|strong=\"H1889\"*!” and|strong=\"H5769\"*, “The|strong=\"H5921\"* ancient|strong=\"H5769\"* high|strong=\"H1116\"* places|strong=\"H1116\"* are|strong=\"H1961\"* ours in|strong=\"H5921\"* possession|strong=\"H4181\"*!”’" + }, + { + "verseNum": 3, + "text": "therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"*, and|strong=\"H5971\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H5921\"*, even|strong=\"H3651\"* because|strong=\"H5921\"* they|strong=\"H3651\"* have|strong=\"H1961\"* made|strong=\"H8074\"* you|strong=\"H5921\"* desolate|strong=\"H8074\"*, and|strong=\"H5971\"* swallowed you|strong=\"H5921\"* up|strong=\"H5927\"* on|strong=\"H5921\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, that|strong=\"H5971\"* you|strong=\"H5921\"* might|strong=\"H5971\"* be|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H4181\"* to|strong=\"H5927\"* the|strong=\"H5921\"* residue|strong=\"H7611\"* of|strong=\"H7611\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H5971\"* you|strong=\"H5921\"* are|strong=\"H5971\"* taken|strong=\"H5927\"* up|strong=\"H5927\"* in|strong=\"H5921\"* the|strong=\"H5921\"* lips|strong=\"H8193\"* of|strong=\"H7611\"* talkers|strong=\"H3956\"*, and|strong=\"H5971\"* the|strong=\"H5921\"* evil|strong=\"H1681\"* report|strong=\"H1681\"* of|strong=\"H7611\"* the|strong=\"H5921\"* people|strong=\"H5971\"*;”" + }, + { + "verseNum": 4, + "text": "therefore|strong=\"H3651\"*, you|strong=\"H3651\"* mountains|strong=\"H2022\"* of|strong=\"H1697\"* Israel|strong=\"H3478\"*, hear|strong=\"H8085\"* the|strong=\"H8085\"* word|strong=\"H1697\"* of|strong=\"H1697\"* the|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*: The|strong=\"H8085\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H8085\"* mountains|strong=\"H2022\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* hills|strong=\"H1389\"*, to|strong=\"H3478\"* the|strong=\"H8085\"* watercourses and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* valleys|strong=\"H1516\"*, to|strong=\"H3478\"* the|strong=\"H8085\"* desolate|strong=\"H8076\"* wastes|strong=\"H2723\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H8085\"* cities|strong=\"H5892\"* that|strong=\"H8085\"* are|strong=\"H1471\"* forsaken|strong=\"H5800\"*, which|strong=\"H1471\"* have|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* prey and|strong=\"H3478\"* derision|strong=\"H3933\"* to|strong=\"H3478\"* the|strong=\"H8085\"* residue|strong=\"H7611\"* of|strong=\"H1697\"* the|strong=\"H8085\"* nations|strong=\"H1471\"* that|strong=\"H8085\"* are|strong=\"H1471\"* all|strong=\"H5439\"* around|strong=\"H5439\"*;" + }, + { + "verseNum": 5, + "text": "therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Surely|strong=\"H5414\"* in|strong=\"H5921\"* the|strong=\"H3605\"* fire of|strong=\"H7611\"* my|strong=\"H5414\"* jealousy|strong=\"H7068\"* I|strong=\"H5414\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* the|strong=\"H3605\"* residue|strong=\"H7611\"* of|strong=\"H7611\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H1471\"* against|strong=\"H5921\"* all|strong=\"H3605\"* Edom, that|strong=\"H3605\"* have|strong=\"H1471\"* appointed|strong=\"H5414\"* my|strong=\"H5414\"* land to|strong=\"H1696\"* themselves|strong=\"H5315\"* for|strong=\"H5921\"* a|strong=\"H3068\"* possession|strong=\"H4181\"* with|strong=\"H1696\"* the|strong=\"H3605\"* joy|strong=\"H8057\"* of|strong=\"H7611\"* all|strong=\"H3605\"* their|strong=\"H3605\"* heart|strong=\"H3824\"*, with|strong=\"H1696\"* despite|strong=\"H5921\"* of|strong=\"H7611\"* soul|strong=\"H5315\"*, to|strong=\"H1696\"* cast|strong=\"H5414\"* it|strong=\"H5414\"* out|strong=\"H5414\"* for|strong=\"H5921\"* a|strong=\"H3068\"* prey.”’" + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H2022\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* tell|strong=\"H1696\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, the|strong=\"H5921\"* hills|strong=\"H1389\"*, the|strong=\"H5921\"* watercourses and|strong=\"H3478\"* the|strong=\"H5921\"* valleys|strong=\"H1516\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* have|strong=\"H1471\"* spoken|strong=\"H1696\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* and|strong=\"H3478\"* in|strong=\"H5921\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"*, because|strong=\"H5921\"* you|strong=\"H5921\"* have|strong=\"H1471\"* borne|strong=\"H5375\"* the|strong=\"H5921\"* shame|strong=\"H3639\"* of|strong=\"H2022\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* have|strong=\"H1471\"* sworn|strong=\"H3027\"*, ‘Surely|strong=\"H3651\"* the|strong=\"H3069\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* around|strong=\"H5439\"* you|strong=\"H3808\"* will|strong=\"H1471\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* shame|strong=\"H3639\"*.’" + }, + { + "verseNum": 8, + "text": "“‘“But|strong=\"H3588\"* you|strong=\"H3588\"*, mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, you|strong=\"H3588\"* shall|strong=\"H5971\"* shoot out|strong=\"H5414\"* your|strong=\"H5414\"* branches|strong=\"H6057\"* and|strong=\"H3478\"* yield|strong=\"H5414\"* your|strong=\"H5414\"* fruit|strong=\"H6529\"* to|strong=\"H3478\"* my|strong=\"H5414\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* at|strong=\"H3478\"* hand|strong=\"H5414\"* to|strong=\"H3478\"* come|strong=\"H7126\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* am|strong=\"H2005\"* for|strong=\"H3588\"* you|strong=\"H3588\"*, and|strong=\"H6437\"* I|strong=\"H3588\"* will|strong=\"H5647\"* come to|strong=\"H6437\"* you|strong=\"H3588\"*, and|strong=\"H6437\"* you|strong=\"H3588\"* will|strong=\"H5647\"* be|strong=\"H5647\"* tilled|strong=\"H5647\"* and|strong=\"H6437\"* sown|strong=\"H2232\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* multiply|strong=\"H7235\"* men|strong=\"H3605\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, even|strong=\"H1129\"* all|strong=\"H3605\"* of|strong=\"H1004\"* it|strong=\"H5921\"*. The|strong=\"H3605\"* cities|strong=\"H5892\"* will|strong=\"H3478\"* be|strong=\"H3478\"* inhabited|strong=\"H3427\"* and|strong=\"H3478\"* the|strong=\"H3605\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H3478\"* be|strong=\"H3478\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* multiply|strong=\"H7235\"* man|strong=\"H3045\"* and|strong=\"H3068\"* animal on|strong=\"H5921\"* you|strong=\"H3588\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* increase|strong=\"H7235\"* and|strong=\"H3068\"* be|strong=\"H3068\"* fruitful|strong=\"H6509\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* cause you|strong=\"H3588\"* to|strong=\"H3068\"* be|strong=\"H3068\"* inhabited|strong=\"H3427\"* as|strong=\"H3068\"* you|strong=\"H3588\"* were|strong=\"H3427\"* before|strong=\"H5921\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H3068\"* better|strong=\"H2895\"* than|strong=\"H7235\"* at|strong=\"H3427\"* your|strong=\"H3068\"* beginnings|strong=\"H7221\"*. Then|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yes, I|strong=\"H5921\"* will|strong=\"H1961\"* cause|strong=\"H5971\"* men|strong=\"H5971\"* to|strong=\"H3478\"* walk|strong=\"H3212\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, even|strong=\"H5750\"* my|strong=\"H5921\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* possess|strong=\"H3423\"* you|strong=\"H5921\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H5921\"* inheritance|strong=\"H5159\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H1961\"* never|strong=\"H3808\"* again|strong=\"H5750\"* bereave|strong=\"H7921\"* them|strong=\"H5921\"* of|strong=\"H5971\"* their|strong=\"H5921\"* children|strong=\"H7921\"*.”" + }, + { + "verseNum": 13, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Because|strong=\"H3282\"* they|strong=\"H3282\"* say to|strong=\"H1961\"* you|strong=\"H3282\"*, ‘You|strong=\"H3282\"* are|strong=\"H1471\"* a|strong=\"H3068\"* devourer of|strong=\"H3069\"* men, and|strong=\"H1471\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* bereaver of|strong=\"H3069\"* your|strong=\"H1961\"* nation|strong=\"H1471\"*;’" + }, + { + "verseNum": 14, + "text": "therefore|strong=\"H3651\"* you|strong=\"H3808\"* shall|strong=\"H1471\"* devour men no|strong=\"H3808\"* more|strong=\"H5750\"*, and|strong=\"H1471\"* not|strong=\"H3808\"* bereave|strong=\"H3782\"* your|strong=\"H3808\"* nation|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“I|strong=\"H3808\"* won’t let|strong=\"H3808\"* you|strong=\"H3808\"* hear|strong=\"H8085\"* the|strong=\"H5002\"* shame|strong=\"H3639\"* of|strong=\"H5971\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. You|strong=\"H3808\"* won’t bear|strong=\"H5375\"* the|strong=\"H5002\"* reproach|strong=\"H2781\"* of|strong=\"H5971\"* the|strong=\"H5002\"* peoples|strong=\"H5971\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, and|strong=\"H5971\"* you|strong=\"H3808\"* won’t cause|strong=\"H5971\"* your|strong=\"H5375\"* nation|strong=\"H1471\"* to|strong=\"H8085\"* stumble|strong=\"H3782\"* any|strong=\"H5750\"* more|strong=\"H5750\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 16, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 17, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, when|strong=\"H1961\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* lived|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H6440\"* own|strong=\"H1961\"* land|strong=\"H6440\"*, they|strong=\"H5921\"* defiled|strong=\"H2930\"* it|strong=\"H5921\"* by|strong=\"H5921\"* their|strong=\"H6440\"* ways|strong=\"H1870\"* and|strong=\"H1121\"* by|strong=\"H5921\"* their|strong=\"H6440\"* deeds|strong=\"H5949\"*. Their|strong=\"H6440\"* way|strong=\"H1870\"* before|strong=\"H6440\"* me|strong=\"H6440\"* was|strong=\"H1961\"* as|strong=\"H1961\"* the|strong=\"H6440\"* uncleanness|strong=\"H2932\"* of|strong=\"H1121\"* a|strong=\"H3068\"* woman|strong=\"H5079\"* in|strong=\"H3427\"* her|strong=\"H5921\"* impurity|strong=\"H5079\"*." + }, + { + "verseNum": 18, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* which|strong=\"H1818\"* they|strong=\"H5921\"* had poured|strong=\"H8210\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H5921\"* land, and|strong=\"H1818\"* because|strong=\"H5921\"* they|strong=\"H5921\"* had defiled|strong=\"H2930\"* it|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 19, + "text": "I|strong=\"H5949\"* scattered|strong=\"H6327\"* them|strong=\"H6327\"* among|strong=\"H8199\"* the|strong=\"H1870\"* nations|strong=\"H1471\"*, and|strong=\"H1870\"* they|strong=\"H1870\"* were|strong=\"H1471\"* dispersed|strong=\"H6327\"* through|strong=\"H1870\"* the|strong=\"H1870\"* countries. I|strong=\"H5949\"* judged|strong=\"H8199\"* them|strong=\"H6327\"* according to|strong=\"H1870\"* their|strong=\"H1870\"* way|strong=\"H1870\"* and|strong=\"H1870\"* according to|strong=\"H1870\"* their|strong=\"H1870\"* deeds|strong=\"H5949\"*." + }, + { + "verseNum": 20, + "text": "When|strong=\"H3318\"* they|strong=\"H8033\"* came|strong=\"H3318\"* to|strong=\"H3318\"* the|strong=\"H3068\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* went|strong=\"H3318\"*, they|strong=\"H8033\"* profaned|strong=\"H2490\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, in|strong=\"H3068\"* that|strong=\"H5971\"* men|strong=\"H5971\"* said|strong=\"H3318\"* of|strong=\"H3068\"* them|strong=\"H3318\"*, ‘These|strong=\"H5971\"* are|strong=\"H5971\"* Yahweh|strong=\"H3068\"*’s people|strong=\"H5971\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* left|strong=\"H3318\"* his|strong=\"H3068\"* land.’" + }, + { + "verseNum": 21, + "text": "But|strong=\"H5921\"* I|strong=\"H5921\"* had|strong=\"H3478\"* respect|strong=\"H5921\"* for|strong=\"H5921\"* my|strong=\"H5921\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, which|strong=\"H1471\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* had|strong=\"H3478\"* profaned|strong=\"H2490\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* went|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "“Therefore|strong=\"H3651\"* tell the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3588\"* don’t do|strong=\"H6213\"* this|strong=\"H3651\"* for|strong=\"H3588\"* your|strong=\"H6213\"* sake|strong=\"H4616\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* my|strong=\"H2490\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, which|strong=\"H1471\"* you|strong=\"H3588\"* have|strong=\"H1471\"* profaned|strong=\"H2490\"* among|strong=\"H8034\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* you|strong=\"H3588\"* went|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* sanctify|strong=\"H6942\"* my|strong=\"H3068\"* great|strong=\"H1419\"* name|strong=\"H8034\"*, which|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3068\"* profaned|strong=\"H2490\"* among|strong=\"H8432\"* the|strong=\"H5002\"* nations|strong=\"H1471\"*, which|strong=\"H3068\"* you|strong=\"H3588\"* have|strong=\"H3068\"* profaned|strong=\"H2490\"* among|strong=\"H8432\"* them|strong=\"H8432\"*. Then|strong=\"H3588\"* the|strong=\"H5002\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, “when|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* proven holy|strong=\"H6942\"* in|strong=\"H3068\"* you|strong=\"H3588\"* before|strong=\"H5869\"* their|strong=\"H3068\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 24, + "text": "“‘“For|strong=\"H3605\"* I|strong=\"H4480\"* will|strong=\"H1471\"* take|strong=\"H3947\"* you|strong=\"H3605\"* from|strong=\"H4480\"* among|strong=\"H4480\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H1471\"* gather|strong=\"H6908\"* you|strong=\"H3605\"* out|strong=\"H4480\"* of|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries, and|strong=\"H1471\"* will|strong=\"H1471\"* bring|strong=\"H3947\"* you|strong=\"H3605\"* into|strong=\"H3947\"* your|strong=\"H3605\"* own land." + }, + { + "verseNum": 25, + "text": "I|strong=\"H5921\"* will|strong=\"H4325\"* sprinkle|strong=\"H2236\"* clean|strong=\"H2889\"* water|strong=\"H4325\"* on|strong=\"H5921\"* you|strong=\"H3605\"*, and|strong=\"H4325\"* you|strong=\"H3605\"* will|strong=\"H4325\"* be|strong=\"H4325\"* clean|strong=\"H2889\"*. I|strong=\"H5921\"* will|strong=\"H4325\"* cleanse|strong=\"H2891\"* you|strong=\"H3605\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* filthiness|strong=\"H2932\"* and|strong=\"H4325\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* idols|strong=\"H1544\"*." + }, + { + "verseNum": 26, + "text": "I|strong=\"H5414\"* will|strong=\"H3820\"* also|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* heart|strong=\"H3820\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* put|strong=\"H5414\"* a|strong=\"H3068\"* new|strong=\"H2319\"* spirit|strong=\"H7307\"* within|strong=\"H7130\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H3820\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5414\"* stony heart|strong=\"H3820\"* out|strong=\"H5414\"* of|strong=\"H7307\"* your|strong=\"H5414\"* flesh|strong=\"H1320\"*, and|strong=\"H3820\"* I|strong=\"H5414\"* will|strong=\"H3820\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* heart|strong=\"H3820\"* of|strong=\"H7307\"* flesh|strong=\"H1320\"*." + }, + { + "verseNum": 27, + "text": "I|strong=\"H5414\"* will|strong=\"H7307\"* put|strong=\"H5414\"* my|strong=\"H8104\"* Spirit|strong=\"H7307\"* within|strong=\"H7130\"* you|strong=\"H5414\"*, and|strong=\"H4941\"* cause|strong=\"H4941\"* you|strong=\"H5414\"* to|strong=\"H3212\"* walk|strong=\"H3212\"* in|strong=\"H6213\"* my|strong=\"H8104\"* statutes|strong=\"H2706\"*. You|strong=\"H5414\"* will|strong=\"H7307\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4941\"* do|strong=\"H6213\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 28, + "text": "You|strong=\"H5414\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5414\"* land that|strong=\"H5971\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* to|strong=\"H1961\"* your|strong=\"H5414\"* fathers. You|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* your|strong=\"H5414\"* God|strong=\"H5414\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5414\"* will|strong=\"H5414\"* save|strong=\"H3467\"* you|strong=\"H5414\"* from|strong=\"H5921\"* all|strong=\"H3605\"* your|strong=\"H3605\"* uncleanness|strong=\"H2932\"*. I|strong=\"H5414\"* will|strong=\"H5414\"* call|strong=\"H7121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* grain|strong=\"H1715\"* and|strong=\"H1715\"* will|strong=\"H5414\"* multiply|strong=\"H7235\"* it|strong=\"H5414\"*, and|strong=\"H1715\"* lay|strong=\"H5414\"* no|strong=\"H3808\"* famine|strong=\"H7458\"* on|strong=\"H5921\"* you|strong=\"H5414\"*." + }, + { + "verseNum": 30, + "text": "I|strong=\"H3808\"* will|strong=\"H1471\"* multiply|strong=\"H7235\"* the|strong=\"H3947\"* fruit|strong=\"H6529\"* of|strong=\"H7704\"* the|strong=\"H3947\"* tree|strong=\"H6086\"* and|strong=\"H6086\"* the|strong=\"H3947\"* increase|strong=\"H7235\"* of|strong=\"H7704\"* the|strong=\"H3947\"* field|strong=\"H7704\"*, that|strong=\"H1471\"* you|strong=\"H3947\"* may|strong=\"H1471\"* receive|strong=\"H3947\"* no|strong=\"H3808\"* more|strong=\"H5750\"* the|strong=\"H3947\"* reproach|strong=\"H2781\"* of|strong=\"H7704\"* famine|strong=\"H7458\"* among|strong=\"H2781\"* the|strong=\"H3947\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 31, + "text": "“‘“Then|strong=\"H3808\"* you|strong=\"H6440\"* will|strong=\"H3808\"* remember|strong=\"H2142\"* your|strong=\"H5921\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"*, and|strong=\"H6440\"* your|strong=\"H5921\"* deeds|strong=\"H4611\"* that|strong=\"H7451\"* were|strong=\"H5921\"* not|strong=\"H3808\"* good|strong=\"H2896\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H3808\"* loathe|strong=\"H6962\"* yourselves|strong=\"H5921\"* in|strong=\"H5921\"* your|strong=\"H5921\"* own|strong=\"H6440\"* sight|strong=\"H6440\"* for|strong=\"H5921\"* your|strong=\"H5921\"* iniquities|strong=\"H5771\"* and|strong=\"H6440\"* for|strong=\"H5921\"* your|strong=\"H5921\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 32, + "text": "I|strong=\"H3045\"* don’t do|strong=\"H6213\"* this|strong=\"H6213\"* for|strong=\"H6213\"* your|strong=\"H3045\"* sake|strong=\"H4616\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Let|strong=\"H3808\"* it|strong=\"H6213\"* be|strong=\"H3808\"* known|strong=\"H3045\"* to|strong=\"H3478\"* you|strong=\"H6213\"*. Be|strong=\"H3808\"* ashamed|strong=\"H3637\"* and|strong=\"H3478\"* confounded|strong=\"H3637\"* for|strong=\"H6213\"* your|strong=\"H3045\"* ways|strong=\"H1870\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 33, + "text": "“‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3427\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3605\"* I|strong=\"H3117\"* cleanse|strong=\"H2891\"* you|strong=\"H3605\"* from|strong=\"H3117\"* all|strong=\"H3605\"* your|strong=\"H3605\"* iniquities|strong=\"H5771\"*, I|strong=\"H3117\"* will|strong=\"H5892\"* cause the|strong=\"H3605\"* cities|strong=\"H5892\"* to|strong=\"H3117\"* be|strong=\"H3117\"* inhabited|strong=\"H3427\"* and|strong=\"H3117\"* the|strong=\"H3605\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* will|strong=\"H5892\"* be|strong=\"H3117\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 34, + "text": "The|strong=\"H3605\"* land that|strong=\"H3605\"* was|strong=\"H1961\"* desolate|strong=\"H8074\"* will|strong=\"H1961\"* be|strong=\"H1961\"* tilled|strong=\"H5647\"* instead|strong=\"H8478\"* of|strong=\"H5869\"* being|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"* in|strong=\"H5869\"* the|strong=\"H3605\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* all|strong=\"H3605\"* who|strong=\"H3605\"* passed|strong=\"H5674\"* by|strong=\"H5674\"*." + }, + { + "verseNum": 35, + "text": "They|strong=\"H5892\"* will|strong=\"H1961\"* say, ‘This|strong=\"H1977\"* land that|strong=\"H5892\"* was|strong=\"H1961\"* desolate|strong=\"H8074\"* has|strong=\"H1961\"* become|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* garden|strong=\"H1588\"* of|strong=\"H3427\"* Eden|strong=\"H5731\"*. The|strong=\"H1961\"* waste|strong=\"H8074\"*, desolate|strong=\"H8074\"*, and|strong=\"H5892\"* ruined|strong=\"H2040\"* cities|strong=\"H5892\"* are|strong=\"H5892\"* fortified|strong=\"H1219\"* and|strong=\"H5892\"* inhabited|strong=\"H3427\"*.’" + }, + { + "verseNum": 36, + "text": "Then|strong=\"H1696\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* that|strong=\"H3588\"* are|strong=\"H1471\"* left|strong=\"H7604\"* around|strong=\"H5439\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* built|strong=\"H1129\"* the|strong=\"H3588\"* ruined|strong=\"H2040\"* places|strong=\"H8074\"* and|strong=\"H3068\"* planted|strong=\"H5193\"* that|strong=\"H3588\"* which|strong=\"H3068\"* was|strong=\"H3068\"* desolate|strong=\"H8074\"*. I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H3588\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* do|strong=\"H6213\"* it|strong=\"H3588\"*.”" + }, + { + "verseNum": 37, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “For|strong=\"H6213\"* this|strong=\"H2063\"*, moreover|strong=\"H3541\"*, I|strong=\"H3541\"* will|strong=\"H3478\"* be|strong=\"H5750\"* inquired|strong=\"H1875\"* of|strong=\"H1004\"* by|strong=\"H3478\"* the|strong=\"H3069\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, to|strong=\"H3478\"* do|strong=\"H6213\"* it|strong=\"H6213\"* for|strong=\"H6213\"* them|strong=\"H6213\"*: I|strong=\"H3541\"* will|strong=\"H3478\"* increase|strong=\"H7235\"* them|strong=\"H6213\"* with|strong=\"H1004\"* men|strong=\"H6213\"* like|strong=\"H1004\"* a|strong=\"H3068\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 38, + "text": "As|strong=\"H1961\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* for|strong=\"H3588\"* sacrifice, as|strong=\"H1961\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* in|strong=\"H3068\"* her|strong=\"H3045\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*, so|strong=\"H3651\"* the|strong=\"H3588\"* waste|strong=\"H2720\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* be|strong=\"H1961\"* filled|strong=\"H4392\"* with|strong=\"H3068\"* flocks|strong=\"H6629\"* of|strong=\"H3068\"* men. Then|strong=\"H1961\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"*.’”" + } + ] + }, + { + "chapterNum": 37, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* brought|strong=\"H3318\"* me|strong=\"H5921\"* out|strong=\"H3318\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*, and|strong=\"H3068\"* set|strong=\"H5117\"* me|strong=\"H5921\"* down|strong=\"H5117\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* the|strong=\"H5921\"* valley|strong=\"H1237\"*; and|strong=\"H3068\"* it|strong=\"H1931\"* was|strong=\"H3068\"* full|strong=\"H4392\"* of|strong=\"H3068\"* bones|strong=\"H6106\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H5921\"* caused|strong=\"H5674\"* me|strong=\"H6440\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* by|strong=\"H5921\"* them|strong=\"H5921\"* all|strong=\"H5439\"* around|strong=\"H5439\"*; and|strong=\"H6440\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H7227\"* very|strong=\"H3966\"* many|strong=\"H7227\"* in|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* valley|strong=\"H1237\"*, and|strong=\"H6440\"* behold|strong=\"H2009\"*, they|strong=\"H5921\"* were|strong=\"H7227\"* very|strong=\"H3966\"* dry|strong=\"H3002\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1121\"* said to|strong=\"H1121\"* me|strong=\"H2421\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, can|strong=\"H3045\"* these bones|strong=\"H6106\"* live|strong=\"H2421\"*?”" + }, + { + "verseNum": 4, + "text": "Again he|strong=\"H3068\"* said|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H5921\"*, “Prophesy|strong=\"H5012\"* over|strong=\"H5921\"* these|strong=\"H8085\"* bones|strong=\"H6106\"*, and|strong=\"H3068\"* tell|strong=\"H8085\"* them|strong=\"H5921\"*, ‘You|strong=\"H5921\"* dry|strong=\"H3002\"* bones|strong=\"H6106\"*, hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H7307\"* these bones|strong=\"H6106\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H7307\"* cause breath|strong=\"H7307\"* to|strong=\"H7307\"* enter into you|strong=\"H2009\"*, and|strong=\"H2421\"* you|strong=\"H2009\"* will|strong=\"H7307\"* live|strong=\"H2421\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* lay|strong=\"H5414\"* sinews|strong=\"H1517\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H5927\"* up|strong=\"H5927\"* flesh|strong=\"H1320\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* cover|strong=\"H7159\"* you|strong=\"H3588\"* with|strong=\"H3068\"* skin|strong=\"H5785\"*, and|strong=\"H3068\"* put|strong=\"H5414\"* breath|strong=\"H7307\"* in|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* live|strong=\"H2421\"*. Then|strong=\"H5414\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H1961\"* I|strong=\"H2009\"* prophesied|strong=\"H5012\"* as|strong=\"H1961\"* I|strong=\"H2009\"* was|strong=\"H1961\"* commanded|strong=\"H6680\"*. As|strong=\"H1961\"* I|strong=\"H2009\"* prophesied|strong=\"H5012\"*, there|strong=\"H2009\"* was|strong=\"H1961\"* a|strong=\"H3068\"* noise|strong=\"H6963\"*, and|strong=\"H6963\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1961\"* an|strong=\"H7126\"* earthquake|strong=\"H7494\"*. Then|strong=\"H1961\"* the|strong=\"H6680\"* bones|strong=\"H6106\"* came|strong=\"H1961\"* together|strong=\"H7126\"*, bone|strong=\"H6106\"* to|strong=\"H1961\"* its|strong=\"H1961\"* bone|strong=\"H6106\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H2009\"* saw|strong=\"H7200\"*, and|strong=\"H7200\"*, behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H2009\"* sinews|strong=\"H1517\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H7200\"* flesh|strong=\"H1320\"* came|strong=\"H5927\"* up|strong=\"H5927\"*, and|strong=\"H7200\"* skin|strong=\"H5785\"* covered|strong=\"H7159\"* them|strong=\"H5921\"* above|strong=\"H4605\"*; but|strong=\"H7200\"* there|strong=\"H2009\"* was|strong=\"H7307\"* no|strong=\"H7200\"* breath|strong=\"H7307\"* in|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3541\"* he|strong=\"H3541\"* said to|strong=\"H1121\"* me|strong=\"H2421\"*, “Prophesy|strong=\"H5012\"* to|strong=\"H1121\"* the|strong=\"H3069\"* wind|strong=\"H7307\"*, prophesy|strong=\"H5012\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, and|strong=\"H1121\"* tell the|strong=\"H3069\"* wind|strong=\"H7307\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Come|strong=\"H2421\"* from|strong=\"H1121\"* the|strong=\"H3069\"* four winds|strong=\"H7307\"*, breath|strong=\"H7307\"*, and|strong=\"H1121\"* breathe|strong=\"H5301\"* on|strong=\"H2421\"* these|strong=\"H5012\"* slain|strong=\"H2026\"*, that|strong=\"H1121\"* they|strong=\"H3541\"* may|strong=\"H1121\"* live|strong=\"H2421\"*.”’”" + }, + { + "verseNum": 10, + "text": "So|strong=\"H3966\"* I|strong=\"H5921\"* prophesied|strong=\"H5012\"* as|strong=\"H6680\"* he|strong=\"H5921\"* commanded|strong=\"H6680\"* me|strong=\"H5921\"*, and|strong=\"H1419\"* the|strong=\"H5921\"* breath|strong=\"H7307\"* came|strong=\"H7307\"* into|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1419\"* they|strong=\"H5921\"* lived|strong=\"H2421\"*, and|strong=\"H1419\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H5921\"* feet|strong=\"H7272\"*, an|strong=\"H2421\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H2009\"* he|strong=\"H3605\"* said to|strong=\"H3478\"* me|strong=\"H3605\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, these|strong=\"H1992\"* bones|strong=\"H6106\"* are|strong=\"H1992\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. Behold|strong=\"H2009\"*, they|strong=\"H1992\"* say|strong=\"H3478\"*, ‘Our|strong=\"H3605\"* bones|strong=\"H6106\"* are|strong=\"H1992\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, and|strong=\"H1121\"* our|strong=\"H3605\"* hope|strong=\"H8615\"* is|strong=\"H2009\"* lost. We|strong=\"H3605\"* are|strong=\"H1992\"* completely|strong=\"H3605\"* cut|strong=\"H1504\"* off|strong=\"H1504\"*.’" + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* prophesy|strong=\"H5012\"*, and|strong=\"H3478\"* tell them|strong=\"H5927\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H5971\"* open|strong=\"H6605\"* your|strong=\"H6605\"* graves|strong=\"H6913\"*, and|strong=\"H3478\"* cause|strong=\"H3651\"* you|strong=\"H3651\"* to|strong=\"H3478\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H6605\"* of|strong=\"H5971\"* your|strong=\"H6605\"* graves|strong=\"H6913\"*, my|strong=\"H6605\"* people|strong=\"H5971\"*; and|strong=\"H3478\"* I|strong=\"H3541\"* will|strong=\"H5971\"* bring|strong=\"H5927\"* you|strong=\"H3651\"* into|strong=\"H5927\"* the|strong=\"H3069\"* land of|strong=\"H5971\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, when|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* opened|strong=\"H6605\"* your|strong=\"H3068\"* graves|strong=\"H6913\"* and|strong=\"H3068\"* caused you|strong=\"H3588\"* to|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H3045\"* of|strong=\"H3068\"* your|strong=\"H3068\"* graves|strong=\"H6913\"*, my|strong=\"H3068\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* put|strong=\"H5414\"* my|strong=\"H5414\"* Spirit|strong=\"H7307\"* in|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* live|strong=\"H2421\"*. Then|strong=\"H1696\"* I|strong=\"H3588\"* will|strong=\"H3068\"* place|strong=\"H5414\"* you|strong=\"H3588\"* in|strong=\"H5921\"* your|strong=\"H3068\"* own land; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* spoken|strong=\"H1696\"* it|strong=\"H5414\"* and|strong=\"H3068\"* performed|strong=\"H6213\"* it|strong=\"H5414\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*.’”" + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* again|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 16, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, take|strong=\"H3947\"* one|strong=\"H3605\"* stick|strong=\"H6086\"* and|strong=\"H1121\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, ‘For|strong=\"H5921\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* for|strong=\"H5921\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* companions|strong=\"H2270\"*.’ Then|strong=\"H3947\"* take|strong=\"H3947\"* another stick|strong=\"H6086\"*, and|strong=\"H1121\"* write|strong=\"H3789\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, ‘For|strong=\"H5921\"* Joseph|strong=\"H3130\"*, the|strong=\"H3605\"* stick|strong=\"H6086\"* of|strong=\"H1121\"* Ephraim, and|strong=\"H1121\"* for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* his|strong=\"H3605\"* companions|strong=\"H2270\"*.’" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H1961\"* join|strong=\"H7126\"* them|strong=\"H3027\"* for|strong=\"H3027\"* yourself to|strong=\"H1961\"* one|strong=\"H1961\"* another into|strong=\"H3027\"* one|strong=\"H1961\"* stick|strong=\"H6086\"*, that|strong=\"H3027\"* they|strong=\"H3027\"* may|strong=\"H1961\"* become|strong=\"H1961\"* one|strong=\"H1961\"* in|strong=\"H6086\"* your|strong=\"H1961\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 18, + "text": "“When|strong=\"H1121\"* the|strong=\"H5046\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3808\"* people|strong=\"H5971\"* speak to|strong=\"H1121\"* you|strong=\"H5046\"*, saying, ‘Won’t you|strong=\"H5046\"* show|strong=\"H5046\"* us|strong=\"H5046\"* what|strong=\"H4100\"* you|strong=\"H5046\"* mean by|strong=\"H3808\"* these|strong=\"H5971\"*?’" + }, + { + "verseNum": 19, + "text": "tell|strong=\"H1696\"* them|strong=\"H5414\"*, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H5414\"* will|strong=\"H1961\"* take|strong=\"H3947\"* the|strong=\"H5921\"* stick|strong=\"H6086\"* of|strong=\"H3027\"* Joseph|strong=\"H3130\"*, which|strong=\"H6086\"* is|strong=\"H3027\"* in|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3027\"* Ephraim, and|strong=\"H3063\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* his|strong=\"H5414\"* companions|strong=\"H2270\"*; and|strong=\"H3063\"* I|strong=\"H5414\"* will|strong=\"H1961\"* put|strong=\"H5414\"* them|strong=\"H5414\"* with|strong=\"H6213\"* it|strong=\"H5414\"*, with|strong=\"H6213\"* the|strong=\"H5921\"* stick|strong=\"H6086\"* of|strong=\"H3027\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* make|strong=\"H6213\"* them|strong=\"H5414\"* one|strong=\"H1961\"* stick|strong=\"H6086\"*, and|strong=\"H3063\"* they|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* one|strong=\"H1961\"* in|strong=\"H5921\"* my|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5921\"* sticks|strong=\"H6086\"* on|strong=\"H5921\"* which|strong=\"H5869\"* you|strong=\"H5921\"* write|strong=\"H3789\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H5921\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* before|strong=\"H5869\"* their|strong=\"H5921\"* eyes|strong=\"H5869\"*.”’" + }, + { + "verseNum": 21, + "text": "Say|strong=\"H1696\"* to|strong=\"H1696\"* them|strong=\"H3947\"*, ‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2009\"*, I|strong=\"H3541\"* will|strong=\"H1471\"* take|strong=\"H3947\"* the|strong=\"H3947\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* from|strong=\"H3478\"* among|strong=\"H3478\"* the|strong=\"H3947\"* nations|strong=\"H1471\"* where|strong=\"H8033\"* they|strong=\"H8033\"* have|strong=\"H1121\"* gone|strong=\"H1980\"*, and|strong=\"H1121\"* will|strong=\"H1471\"* gather|strong=\"H6908\"* them|strong=\"H3947\"* on|strong=\"H1980\"* every|strong=\"H5439\"* side|strong=\"H5439\"*, and|strong=\"H1121\"* bring|strong=\"H3947\"* them|strong=\"H3947\"* into|strong=\"H1980\"* their|strong=\"H3947\"* own land." + }, + { + "verseNum": 22, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* make|strong=\"H6213\"* them|strong=\"H6213\"* one|strong=\"H3605\"* nation|strong=\"H1471\"* in|strong=\"H3478\"* the|strong=\"H3605\"* land, on|strong=\"H1961\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. One|strong=\"H3605\"* king|strong=\"H4428\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4428\"* to|strong=\"H3478\"* them|strong=\"H6213\"* all|strong=\"H3605\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* two|strong=\"H8147\"* nations|strong=\"H1471\"*. They|strong=\"H3808\"* won’t be|strong=\"H1961\"* divided|strong=\"H2673\"* into|strong=\"H6213\"* two|strong=\"H8147\"* kingdoms|strong=\"H4467\"* any|strong=\"H3605\"* more|strong=\"H5750\"* at|strong=\"H3478\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H3808\"* won’t defile|strong=\"H2930\"* themselves|strong=\"H2891\"* any|strong=\"H3605\"* more|strong=\"H5750\"* with|strong=\"H5971\"* their|strong=\"H3605\"* idols|strong=\"H1544\"*, nor|strong=\"H3808\"* with|strong=\"H5971\"* their|strong=\"H3605\"* detestable|strong=\"H8251\"* things|strong=\"H8251\"*, nor|strong=\"H3808\"* with|strong=\"H5971\"* any|strong=\"H3605\"* of|strong=\"H5971\"* their|strong=\"H3605\"* transgressions|strong=\"H6588\"*; but|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H1961\"* save|strong=\"H3467\"* them|strong=\"H1961\"* out|strong=\"H3605\"* of|strong=\"H5971\"* all|strong=\"H3605\"* their|strong=\"H3605\"* dwelling|strong=\"H4186\"* places|strong=\"H4186\"* in|strong=\"H5750\"* which|strong=\"H5971\"* they|strong=\"H3808\"* have|strong=\"H1961\"* sinned|strong=\"H2398\"*, and|strong=\"H5971\"* will|strong=\"H1961\"* cleanse|strong=\"H2891\"* them|strong=\"H1961\"*. So|strong=\"H1961\"* they|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H3605\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H3605\"* God|strong=\"H3808\"*." + }, + { + "verseNum": 24, + "text": "“‘“My|strong=\"H8104\"* servant|strong=\"H5650\"* David|strong=\"H1732\"* will|strong=\"H1961\"* be|strong=\"H1961\"* king|strong=\"H4428\"* over|strong=\"H5921\"* them|strong=\"H5921\"*. They|strong=\"H5921\"* all|strong=\"H3605\"* will|strong=\"H1961\"* have|strong=\"H1961\"* one|strong=\"H3605\"* shepherd|strong=\"H7462\"*. They|strong=\"H5921\"* will|strong=\"H1961\"* also|strong=\"H1732\"* walk|strong=\"H3212\"* in|strong=\"H5921\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"* and|strong=\"H4428\"* observe|strong=\"H8104\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 25, + "text": "They|strong=\"H1992\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* land that|strong=\"H5414\"* I|strong=\"H5414\"* have|strong=\"H1121\"* given|strong=\"H5414\"* to|strong=\"H5704\"* Jacob|strong=\"H3290\"* my|strong=\"H5414\"* servant|strong=\"H5650\"*, in|strong=\"H3427\"* which|strong=\"H1992\"* your|strong=\"H5414\"* fathers lived|strong=\"H3427\"*. They|strong=\"H1992\"* will|strong=\"H5650\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, they|strong=\"H1992\"*, and|strong=\"H1121\"* their|strong=\"H5414\"* children|strong=\"H1121\"*, and|strong=\"H1121\"* their|strong=\"H5414\"* children|strong=\"H1121\"*’s children|strong=\"H1121\"*, forever|strong=\"H5769\"*. David|strong=\"H1732\"* my|strong=\"H5414\"* servant|strong=\"H5650\"* will|strong=\"H5650\"* be|strong=\"H1121\"* their|strong=\"H5414\"* prince|strong=\"H5387\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 26, + "text": "Moreover|strong=\"H1961\"* I|strong=\"H5414\"* will|strong=\"H1961\"* make|strong=\"H5414\"* a|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H8432\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* them|strong=\"H5414\"*. It|strong=\"H5414\"* will|strong=\"H1961\"* be|strong=\"H1961\"* an|strong=\"H1961\"* everlasting|strong=\"H5769\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* them|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H1961\"* place|strong=\"H5414\"* them|strong=\"H5414\"*, multiply|strong=\"H7235\"* them|strong=\"H5414\"*, and|strong=\"H5769\"* will|strong=\"H1961\"* set|strong=\"H5414\"* my|strong=\"H5414\"* sanctuary|strong=\"H4720\"* among|strong=\"H8432\"* them|strong=\"H5414\"* forever|strong=\"H5769\"* more|strong=\"H7235\"*." + }, + { + "verseNum": 27, + "text": "My|strong=\"H5921\"* tent also|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H5921\"* them|strong=\"H1992\"*. I|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1992\"* God, and|strong=\"H5971\"* they|strong=\"H1992\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H5921\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 28, + "text": "The|strong=\"H3588\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H1961\"* Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* sanctifies|strong=\"H6942\"* Israel|strong=\"H3478\"*, when|strong=\"H3588\"* my|strong=\"H3068\"* sanctuary|strong=\"H4720\"* is|strong=\"H3068\"* among|strong=\"H8432\"* them|strong=\"H8432\"* forever|strong=\"H5769\"* more|strong=\"H5769\"*.”’”" + } + ] + }, + { + "chapterNum": 38, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1697\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, set|strong=\"H7760\"* your|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* Gog|strong=\"H1463\"*, of|strong=\"H1121\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1121\"* Magog|strong=\"H4031\"*, the|strong=\"H6440\"* prince|strong=\"H5387\"* of|strong=\"H1121\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tubal|strong=\"H8422\"*, and|strong=\"H1121\"* prophesy|strong=\"H5012\"* against|strong=\"H5921\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H7218\"* say, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H2005\"* you, Gog|strong=\"H1463\"*, prince|strong=\"H5387\"* of|strong=\"H7218\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H7218\"* Tubal|strong=\"H8422\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5414\"* will|strong=\"H2719\"* turn|strong=\"H7725\"* you|strong=\"H5414\"* around|strong=\"H7725\"*, and|strong=\"H7725\"* put|strong=\"H5414\"* hooks|strong=\"H2397\"* into|strong=\"H7725\"* your|strong=\"H3605\"* jaws|strong=\"H3895\"*, and|strong=\"H7725\"* I|strong=\"H5414\"* will|strong=\"H2719\"* bring|strong=\"H3318\"* you|strong=\"H5414\"* out|strong=\"H3318\"*, with|strong=\"H3847\"* all|strong=\"H3605\"* your|strong=\"H3605\"* army|strong=\"H2428\"*, horses|strong=\"H5483\"* and|strong=\"H7725\"* horsemen|strong=\"H6571\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* full|strong=\"H3605\"* armor|strong=\"H3847\"*, a|strong=\"H3068\"* great|strong=\"H7227\"* company|strong=\"H6951\"* with|strong=\"H3847\"* buckler|strong=\"H4043\"* and|strong=\"H7725\"* shield|strong=\"H4043\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them|strong=\"H5414\"* handling|strong=\"H8610\"* swords|strong=\"H2719\"*;" + }, + { + "verseNum": 5, + "text": "Persia|strong=\"H6539\"*, Cush|strong=\"H3568\"*, and|strong=\"H4043\"* Put|strong=\"H6316\"* with|strong=\"H3605\"* them, all|strong=\"H3605\"* of|strong=\"H3605\"* them with|strong=\"H3605\"* shield|strong=\"H4043\"* and|strong=\"H4043\"* helmet|strong=\"H3553\"*;" + }, + { + "verseNum": 6, + "text": "Gomer|strong=\"H1586\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hordes; the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Togarmah|strong=\"H8425\"* in|strong=\"H1004\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* his|strong=\"H3605\"* hordes—even many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H1004\"* you|strong=\"H3605\"*." + }, + { + "verseNum": 7, + "text": "“‘“Be|strong=\"H1961\"* prepared|strong=\"H3559\"*, yes, prepare|strong=\"H3559\"* yourself|strong=\"H5921\"*, you|strong=\"H3605\"*, and|strong=\"H3605\"* all|strong=\"H3605\"* your|strong=\"H3605\"* companies|strong=\"H6951\"* who|strong=\"H3605\"* are|strong=\"H1961\"* assembled|strong=\"H6950\"* to|strong=\"H1961\"* you|strong=\"H3605\"*, and|strong=\"H3605\"* be|strong=\"H1961\"* a|strong=\"H3068\"* guard|strong=\"H4929\"* to|strong=\"H1961\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "After|strong=\"H5921\"* many|strong=\"H7227\"* days|strong=\"H3117\"* you|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* visited|strong=\"H6485\"*. In|strong=\"H3427\"* the|strong=\"H3605\"* latter years|strong=\"H8141\"* you|strong=\"H3605\"* will|strong=\"H1961\"* come|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H3605\"* land that|strong=\"H5971\"* is|strong=\"H1931\"* brought|strong=\"H3318\"* back|strong=\"H7725\"* from|strong=\"H7725\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, that|strong=\"H5971\"* is|strong=\"H1931\"* gathered|strong=\"H6908\"* out|strong=\"H3318\"* of|strong=\"H3117\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, which|strong=\"H1931\"* have|strong=\"H1961\"* been|strong=\"H1961\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* waste|strong=\"H2723\"*; but|strong=\"H1961\"* it|strong=\"H1931\"* is|strong=\"H1931\"* brought|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* and|strong=\"H3478\"* they|strong=\"H3117\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* securely, all|strong=\"H3605\"* of|strong=\"H3117\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* will|strong=\"H1961\"* ascend|strong=\"H5927\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* come|strong=\"H5927\"* like|strong=\"H1961\"* a|strong=\"H3068\"* storm|strong=\"H7722\"*. You|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* to|strong=\"H5927\"* cover|strong=\"H3680\"* the|strong=\"H3605\"* land, you|strong=\"H3605\"* and|strong=\"H5971\"* all|strong=\"H3605\"* your|strong=\"H3605\"* hordes, and|strong=\"H5971\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3605\"*.”" + }, + { + "verseNum": 10, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* things|strong=\"H1697\"* will|strong=\"H1961\"* come|strong=\"H5927\"* into|strong=\"H5927\"* your|strong=\"H5921\"* mind|strong=\"H3824\"*, and|strong=\"H3117\"* you|strong=\"H5921\"* will|strong=\"H1961\"* devise|strong=\"H2803\"* an|strong=\"H1961\"* evil|strong=\"H7451\"* plan|strong=\"H2803\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H3605\"* will|strong=\"H2346\"* say, ‘I|strong=\"H5921\"* will|strong=\"H2346\"* go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H3605\"* land of|strong=\"H3427\"* unwalled|strong=\"H6519\"* villages|strong=\"H6519\"*. I|strong=\"H5921\"* will|strong=\"H2346\"* go|strong=\"H5927\"* to|strong=\"H5927\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H1280\"* at|strong=\"H3427\"* rest|strong=\"H8252\"*, who|strong=\"H3605\"* dwell|strong=\"H3427\"* securely, all|strong=\"H3605\"* of|strong=\"H3427\"* them|strong=\"H5921\"* dwelling|strong=\"H3427\"* without|strong=\"H3427\"* walls|strong=\"H2346\"*, and|strong=\"H5927\"* having neither bars|strong=\"H1280\"* nor|strong=\"H1817\"* gates|strong=\"H1817\"*," + }, + { + "verseNum": 12, + "text": "to|strong=\"H7725\"* take|strong=\"H7725\"* the|strong=\"H5921\"* plunder|strong=\"H7998\"* and|strong=\"H7725\"* to|strong=\"H7725\"* take|strong=\"H7725\"* prey|strong=\"H7998\"*; to|strong=\"H7725\"* turn|strong=\"H7725\"* your|strong=\"H5921\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* waste|strong=\"H2723\"* places|strong=\"H2723\"* that|strong=\"H5971\"* are|strong=\"H5971\"* inhabited|strong=\"H3427\"*, and|strong=\"H7725\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* gathered|strong=\"H6213\"* out|strong=\"H5921\"* of|strong=\"H3027\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, who|strong=\"H5971\"* have|strong=\"H5971\"* gotten|strong=\"H6213\"* livestock|strong=\"H4735\"* and|strong=\"H7725\"* goods|strong=\"H7075\"*, who|strong=\"H5971\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5921\"* middle|strong=\"H2872\"* of|strong=\"H3027\"* the|strong=\"H5921\"* earth.’" + }, + { + "verseNum": 13, + "text": "Sheba|strong=\"H7614\"*, Dedan|strong=\"H1719\"*, and|strong=\"H3701\"* the|strong=\"H3605\"* merchants|strong=\"H5503\"* of|strong=\"H6951\"* Tarshish|strong=\"H8659\"*, with|strong=\"H3605\"* all|strong=\"H3605\"* its|strong=\"H3605\"* young|strong=\"H3715\"* lions|strong=\"H3715\"*, will|strong=\"H6951\"* ask you|strong=\"H3605\"*, ‘Have|strong=\"H3605\"* you|strong=\"H3605\"* come to|strong=\"H3701\"* take|strong=\"H3947\"* the|strong=\"H3605\"* plunder|strong=\"H7998\"*? Have|strong=\"H3605\"* you|strong=\"H3605\"* assembled|strong=\"H6950\"* your|strong=\"H3605\"* company|strong=\"H6951\"* to|strong=\"H3701\"* take|strong=\"H3947\"* the|strong=\"H3605\"* prey|strong=\"H7998\"*, to|strong=\"H3701\"* carry|strong=\"H5375\"* away|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* gold|strong=\"H2091\"*, to|strong=\"H3701\"* take|strong=\"H3947\"* away|strong=\"H3947\"* livestock|strong=\"H4735\"* and|strong=\"H3701\"* goods|strong=\"H7075\"*, to|strong=\"H3701\"* take|strong=\"H3947\"* great|strong=\"H1419\"* plunder|strong=\"H7998\"*?’”’" + }, + { + "verseNum": 14, + "text": "“Therefore|strong=\"H3651\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"*, and|strong=\"H1121\"* tell|strong=\"H3045\"* Gog|strong=\"H1463\"*, ‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H3427\"* that|strong=\"H3045\"* day|strong=\"H3117\"* when|strong=\"H3117\"* my|strong=\"H3045\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* dwells|strong=\"H3427\"* securely, will|strong=\"H5971\"* you|strong=\"H3117\"* not|strong=\"H3808\"* know|strong=\"H3045\"* it|strong=\"H1931\"*?" + }, + { + "verseNum": 15, + "text": "You|strong=\"H3605\"* will|strong=\"H5971\"* come|strong=\"H5971\"* from|strong=\"H5971\"* your|strong=\"H3605\"* place|strong=\"H4725\"* out|strong=\"H3605\"* of|strong=\"H6951\"* the|strong=\"H3605\"* uttermost parts|strong=\"H3411\"* of|strong=\"H6951\"* the|strong=\"H3605\"* north|strong=\"H6828\"*, you|strong=\"H3605\"*, and|strong=\"H1419\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* with|strong=\"H5971\"* you|strong=\"H3605\"*, all|strong=\"H3605\"* of|strong=\"H6951\"* them riding|strong=\"H7392\"* on|strong=\"H7392\"* horses|strong=\"H5483\"*, a|strong=\"H3068\"* great|strong=\"H1419\"* company|strong=\"H6951\"* and|strong=\"H1419\"* a|strong=\"H3068\"* mighty|strong=\"H1419\"* army|strong=\"H2428\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* my|strong=\"H5921\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* as|strong=\"H3117\"* a|strong=\"H3068\"* cloud|strong=\"H6051\"* to|strong=\"H3478\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* land. It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* latter days|strong=\"H3117\"* that|strong=\"H3045\"* I|strong=\"H3117\"* will|strong=\"H1961\"* bring|strong=\"H5927\"* you|strong=\"H5921\"* against|strong=\"H5921\"* my|strong=\"H5921\"* land, that|strong=\"H3045\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* may|strong=\"H1961\"* know|strong=\"H3045\"* me|strong=\"H5921\"* when|strong=\"H1961\"* I|strong=\"H3117\"* am|strong=\"H1961\"* sanctified|strong=\"H6942\"* in|strong=\"H5921\"* you|strong=\"H5921\"*, Gog|strong=\"H1463\"*, before|strong=\"H5869\"* their|strong=\"H5921\"* eyes|strong=\"H5869\"*.”" + }, + { + "verseNum": 17, + "text": "“‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Are|strong=\"H3117\"* you|strong=\"H5921\"* he|strong=\"H1931\"* of|strong=\"H3117\"* whom|strong=\"H1992\"* I|strong=\"H3117\"* spoke|strong=\"H1696\"* in|strong=\"H8141\"* old|strong=\"H8141\"* time|strong=\"H3117\"* by|strong=\"H3027\"* my|strong=\"H5921\"* servants|strong=\"H5650\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"*, who|strong=\"H1931\"* prophesied|strong=\"H5012\"* in|strong=\"H8141\"* those|strong=\"H1992\"* days|strong=\"H3117\"* for|strong=\"H5921\"* years|strong=\"H8141\"* that|strong=\"H3117\"* I|strong=\"H3117\"* would|strong=\"H3478\"* bring you|strong=\"H5921\"* against|strong=\"H5921\"* them|strong=\"H1992\"*?" + }, + { + "verseNum": 18, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, when|strong=\"H1961\"* Gog|strong=\"H1463\"* comes|strong=\"H1961\"* against|strong=\"H5921\"* the|strong=\"H5002\"* land of|strong=\"H3117\"* Israel|strong=\"H3478\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “that|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H2534\"* will|strong=\"H1961\"* come|strong=\"H5927\"* up|strong=\"H5927\"* into|strong=\"H5927\"* my|strong=\"H5921\"* nostrils." + }, + { + "verseNum": 19, + "text": "For|strong=\"H5921\"* in|strong=\"H5921\"* my|strong=\"H5921\"* jealousy|strong=\"H7068\"* and|strong=\"H3478\"* in|strong=\"H5921\"* the|strong=\"H5921\"* fire of|strong=\"H3117\"* my|strong=\"H5921\"* wrath|strong=\"H5678\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*. Surely|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* great|strong=\"H1419\"* shaking|strong=\"H7494\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H3117\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 20, + "text": "so|strong=\"H5921\"* that|strong=\"H3605\"* the|strong=\"H3605\"* fish|strong=\"H1709\"* of|strong=\"H2022\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*, the|strong=\"H3605\"* birds|strong=\"H5775\"* of|strong=\"H2022\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H2022\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, all|strong=\"H3605\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"* who|strong=\"H3605\"* creep|strong=\"H7430\"* on|strong=\"H5921\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*, and|strong=\"H8064\"* all|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H2022\"* the|strong=\"H3605\"* earth|strong=\"H8064\"* will|strong=\"H8064\"* shake|strong=\"H7493\"* at|strong=\"H5921\"* my|strong=\"H3605\"* presence|strong=\"H6440\"*. Then|strong=\"H5307\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* will|strong=\"H8064\"* be|strong=\"H8064\"* thrown|strong=\"H2040\"* down|strong=\"H5307\"*, the|strong=\"H3605\"* steep|strong=\"H4095\"* places|strong=\"H4095\"* will|strong=\"H8064\"* fall|strong=\"H5307\"*, and|strong=\"H8064\"* every|strong=\"H3605\"* wall|strong=\"H2346\"* will|strong=\"H8064\"* fall|strong=\"H5307\"* to|strong=\"H5921\"* the|strong=\"H3605\"* ground|strong=\"H7704\"*." + }, + { + "verseNum": 21, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* call|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* sword|strong=\"H2719\"* against|strong=\"H5921\"* him|strong=\"H7121\"* to|strong=\"H1961\"* all|strong=\"H3605\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “Every|strong=\"H3605\"* man|strong=\"H3605\"*’s sword|strong=\"H2719\"* will|strong=\"H1961\"* be|strong=\"H1961\"* against|strong=\"H5921\"* his|strong=\"H3605\"* brother." + }, + { + "verseNum": 22, + "text": "I|strong=\"H5921\"* will|strong=\"H5971\"* enter|strong=\"H8199\"* into|strong=\"H8199\"* judgment|strong=\"H8199\"* with|strong=\"H5921\"* him|strong=\"H5921\"* with|strong=\"H5921\"* pestilence|strong=\"H1698\"* and|strong=\"H5971\"* with|strong=\"H5921\"* blood|strong=\"H1818\"*. I|strong=\"H5921\"* will|strong=\"H5971\"* rain|strong=\"H1653\"* on|strong=\"H5921\"* him|strong=\"H5921\"*, on|strong=\"H5921\"* his|strong=\"H5921\"* hordes, and|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H5921\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"* who|strong=\"H5971\"* are|strong=\"H5971\"* with|strong=\"H5921\"* him|strong=\"H5921\"*, torrential|strong=\"H7857\"* rains|strong=\"H1653\"* with|strong=\"H5921\"* great|strong=\"H7227\"* hailstones, fire, and|strong=\"H5971\"* sulfur|strong=\"H1614\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* magnify|strong=\"H1431\"* myself|strong=\"H3045\"* and|strong=\"H3068\"* sanctify|strong=\"H6942\"* myself|strong=\"H3045\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3045\"* myself|strong=\"H3045\"* known|strong=\"H3045\"* in|strong=\"H3068\"* the|strong=\"H3588\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*. Then|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”’" + } + ] + }, + { + "chapterNum": 39, + "verses": [ + { + "verseNum": 1, + "text": "“You|strong=\"H5921\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, prophesy|strong=\"H5012\"* against|strong=\"H5921\"* Gog|strong=\"H1463\"*, and|strong=\"H1121\"* say, ‘The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H2005\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Gog|strong=\"H1463\"*, prince|strong=\"H5387\"* of|strong=\"H1121\"* Rosh, Meshech|strong=\"H4902\"*, and|strong=\"H1121\"* Tubal|strong=\"H8422\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H3478\"* turn|strong=\"H7725\"* you|strong=\"H5921\"* around|strong=\"H5921\"*, will|strong=\"H3478\"* lead|strong=\"H5927\"* you|strong=\"H5921\"* on|strong=\"H5921\"*, and|strong=\"H3478\"* will|strong=\"H3478\"* cause|strong=\"H7725\"* you|strong=\"H5921\"* to|strong=\"H7725\"* come|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H7725\"* the|strong=\"H5921\"* uttermost parts|strong=\"H3411\"* of|strong=\"H2022\"* the|strong=\"H5921\"* north|strong=\"H6828\"*; and|strong=\"H3478\"* I|strong=\"H5921\"* will|strong=\"H3478\"* bring|strong=\"H7725\"* you|strong=\"H5921\"* onto|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3027\"* will|strong=\"H3027\"* strike|strong=\"H5221\"* your|strong=\"H5221\"* bow|strong=\"H7198\"* out|strong=\"H5307\"* of|strong=\"H3027\"* your|strong=\"H5221\"* left|strong=\"H8040\"* hand|strong=\"H3027\"*, and|strong=\"H3027\"* will|strong=\"H3027\"* cause your|strong=\"H5221\"* arrows|strong=\"H2671\"* to|strong=\"H3027\"* fall|strong=\"H5307\"* out|strong=\"H5307\"* of|strong=\"H3027\"* your|strong=\"H5221\"* right|strong=\"H3225\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H5414\"* will|strong=\"H5971\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, you|strong=\"H5414\"*, and|strong=\"H3478\"* all|strong=\"H3605\"* your|strong=\"H3605\"* hordes, and|strong=\"H3478\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* are|strong=\"H5971\"* with|strong=\"H5921\"* you|strong=\"H5414\"*. I|strong=\"H5414\"* will|strong=\"H5971\"* give|strong=\"H5414\"* you|strong=\"H5414\"* to|strong=\"H3478\"* the|strong=\"H3605\"* ravenous|strong=\"H5861\"* birds|strong=\"H6833\"* of|strong=\"H2022\"* every|strong=\"H3605\"* sort|strong=\"H3671\"* and|strong=\"H3478\"* to|strong=\"H3478\"* the|strong=\"H3605\"* animals|strong=\"H2416\"* of|strong=\"H2022\"* the|strong=\"H3605\"* field|strong=\"H7704\"* to|strong=\"H3478\"* be|strong=\"H3478\"* devoured." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* will|strong=\"H7704\"* fall|strong=\"H5307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* open|strong=\"H6440\"* field|strong=\"H7704\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1696\"* spoken|strong=\"H1696\"* it|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 6, + "text": "“I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H3427\"* Magog|strong=\"H4031\"* and|strong=\"H3068\"* on|strong=\"H3427\"* those|strong=\"H3427\"* who|strong=\"H3068\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* the|strong=\"H3588\"* islands. Then|strong=\"H7971\"* they|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "“‘“I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H3045\"* my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* known|strong=\"H3045\"* among|strong=\"H8432\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*. I|strong=\"H3588\"* won’t allow my|strong=\"H3068\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* to|strong=\"H3478\"* be|strong=\"H3808\"* profaned|strong=\"H2490\"* any|strong=\"H5750\"* more|strong=\"H5750\"*. Then|strong=\"H3588\"* the|strong=\"H3588\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* Holy|strong=\"H6944\"* One|strong=\"H6918\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, it|strong=\"H1931\"* comes|strong=\"H1961\"*, and|strong=\"H3117\"* it|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* done|strong=\"H1961\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*. “This|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H5002\"* day|strong=\"H3117\"* about|strong=\"H1961\"* which|strong=\"H1931\"* I|strong=\"H3117\"* have|strong=\"H1961\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 9, + "text": "“‘“Those|strong=\"H3318\"* who|strong=\"H3478\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3318\"* cities|strong=\"H5892\"* of|strong=\"H3027\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3478\"* will|strong=\"H3478\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* of|strong=\"H3027\"* the|strong=\"H3318\"* weapons|strong=\"H5402\"* and|strong=\"H3478\"* burn|strong=\"H1197\"* them|strong=\"H3027\"*, both the|strong=\"H3318\"* shields|strong=\"H4043\"* and|strong=\"H3478\"* the|strong=\"H3318\"* bucklers|strong=\"H4043\"*, the|strong=\"H3318\"* bows|strong=\"H7198\"* and|strong=\"H3478\"* the|strong=\"H3318\"* arrows|strong=\"H2671\"*, and|strong=\"H3478\"* the|strong=\"H3318\"* war|strong=\"H4731\"* clubs|strong=\"H4731\"* and|strong=\"H3478\"* the|strong=\"H3318\"* spears|strong=\"H7420\"*, and|strong=\"H3478\"* they|strong=\"H8141\"* will|strong=\"H3478\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* with|strong=\"H3427\"* them|strong=\"H3027\"* for|strong=\"H3027\"* seven|strong=\"H7651\"* years|strong=\"H8141\"*;" + }, + { + "verseNum": 10, + "text": "so|strong=\"H4480\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H5375\"* no|strong=\"H3808\"* wood|strong=\"H6086\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H5002\"* field|strong=\"H7704\"*, and|strong=\"H6086\"* not|strong=\"H3808\"* cut|strong=\"H2404\"* down|strong=\"H2404\"* any|strong=\"H4480\"* out|strong=\"H4480\"* of|strong=\"H7704\"* the|strong=\"H5002\"* forests|strong=\"H3293\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3808\"* make|strong=\"H1197\"* fires|strong=\"H1197\"* with|strong=\"H1197\"* the|strong=\"H5002\"* weapons|strong=\"H5402\"*. They|strong=\"H3588\"* will|strong=\"H3808\"* plunder|strong=\"H7997\"* those|strong=\"H4480\"* who|strong=\"H3588\"* plundered|strong=\"H7997\"* them|strong=\"H5375\"*, and|strong=\"H6086\"* rob those|strong=\"H4480\"* who|strong=\"H3588\"* robbed|strong=\"H7997\"* them|strong=\"H5375\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "“‘“It|strong=\"H5414\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H1961\"* give|strong=\"H5414\"* to|strong=\"H3478\"* Gog|strong=\"H1463\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H7121\"* burial|strong=\"H6913\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*, the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* those|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* on|strong=\"H3117\"* the|strong=\"H3605\"* east|strong=\"H6926\"* of|strong=\"H3117\"* the|strong=\"H3605\"* sea|strong=\"H3220\"*; and|strong=\"H3478\"* it|strong=\"H5414\"* will|strong=\"H1961\"* stop|strong=\"H2629\"* those|strong=\"H3605\"* who|strong=\"H3605\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. They|strong=\"H3117\"* will|strong=\"H1961\"* bury|strong=\"H6912\"* Gog|strong=\"H1463\"* and|strong=\"H3478\"* all|strong=\"H3605\"* his|strong=\"H3605\"* multitude|strong=\"H1995\"* there|strong=\"H8033\"*, and|strong=\"H3478\"* they|strong=\"H3117\"* will|strong=\"H1961\"* call|strong=\"H7121\"* it|strong=\"H5414\"* ‘The|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H3117\"* Hamon Gog|strong=\"H1463\"*’." + }, + { + "verseNum": 12, + "text": "“‘“The|strong=\"H2891\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* burying|strong=\"H6912\"* them|strong=\"H4616\"* for|strong=\"H4616\"* seven|strong=\"H7651\"* months|strong=\"H2320\"*, that|strong=\"H4616\"* they|strong=\"H2320\"* may|strong=\"H3478\"* cleanse|strong=\"H2891\"* the|strong=\"H2891\"* land." + }, + { + "verseNum": 13, + "text": "Yes, all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land will|strong=\"H1961\"* bury|strong=\"H6912\"* them|strong=\"H1961\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H1961\"* become|strong=\"H1961\"* famous|strong=\"H8034\"* in|strong=\"H3117\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* will|strong=\"H1961\"* be|strong=\"H1961\"* glorified|strong=\"H3513\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“‘“They|strong=\"H5921\"* will|strong=\"H6440\"* set apart|strong=\"H5674\"* men|strong=\"H7651\"* of|strong=\"H6440\"* continual|strong=\"H8548\"* employment|strong=\"H8548\"* who will|strong=\"H6440\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H6440\"* land|strong=\"H6440\"*. Those|strong=\"H5921\"* who pass|strong=\"H5674\"* through|strong=\"H5674\"* will|strong=\"H6440\"* go|strong=\"H5674\"* with|strong=\"H5921\"* those|strong=\"H5921\"* who bury|strong=\"H6912\"* those|strong=\"H5921\"* who remain|strong=\"H3498\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* land|strong=\"H6440\"*, to|strong=\"H5921\"* cleanse|strong=\"H2891\"* it|strong=\"H5921\"*. After|strong=\"H5921\"* the|strong=\"H6440\"* end|strong=\"H7097\"* of|strong=\"H6440\"* seven|strong=\"H7651\"* months|strong=\"H2320\"* they|strong=\"H5921\"* will|strong=\"H6440\"* search|strong=\"H2713\"*." + }, + { + "verseNum": 15, + "text": "Those who|strong=\"H1129\"* search|strong=\"H7200\"* through|strong=\"H5674\"* the|strong=\"H7200\"* land will|strong=\"H5704\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*; and|strong=\"H7200\"* when|strong=\"H7200\"* anyone|strong=\"H7200\"* sees|strong=\"H7200\"* a|strong=\"H3068\"* man|strong=\"H5674\"*’s bone|strong=\"H6106\"*, then|strong=\"H5674\"* he|strong=\"H5704\"* will|strong=\"H5704\"* set|strong=\"H1129\"* up|strong=\"H1129\"* a|strong=\"H3068\"* sign|strong=\"H6725\"* by|strong=\"H5674\"* it|strong=\"H7200\"*, until|strong=\"H5704\"* the|strong=\"H7200\"* undertakers have|strong=\"H7200\"* buried|strong=\"H6912\"* it|strong=\"H7200\"* in|strong=\"H6912\"* the|strong=\"H7200\"* valley|strong=\"H1516\"* of|strong=\"H1516\"* Hamon Gog." + }, + { + "verseNum": 16, + "text": "Hamonah|strong=\"H1997\"* will|strong=\"H1571\"* also|strong=\"H1571\"* be|strong=\"H8034\"* the|strong=\"H1571\"* name|strong=\"H8034\"* of|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"*. Thus they|strong=\"H1571\"* will|strong=\"H1571\"* cleanse|strong=\"H2891\"* the|strong=\"H1571\"* land.”’" + }, + { + "verseNum": 17, + "text": "“You|strong=\"H3605\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Speak to|strong=\"H3478\"* the|strong=\"H3605\"* birds|strong=\"H6833\"* of|strong=\"H1121\"* every|strong=\"H3605\"* sort|strong=\"H3671\"*, and|strong=\"H1121\"* to|strong=\"H3478\"* every|strong=\"H3605\"* animal|strong=\"H2416\"* of|strong=\"H1121\"* the|strong=\"H3605\"* field|strong=\"H7704\"*, “Assemble|strong=\"H6908\"* yourselves|strong=\"H3605\"*, and|strong=\"H1121\"* come|strong=\"H3478\"*; gather|strong=\"H6908\"* yourselves|strong=\"H3605\"* on|strong=\"H5921\"* every|strong=\"H3605\"* side|strong=\"H5439\"* to|strong=\"H3478\"* my|strong=\"H3605\"* sacrifice|strong=\"H2077\"* that|strong=\"H3605\"* I|strong=\"H3541\"* sacrifice|strong=\"H2077\"* for|strong=\"H5921\"* you|strong=\"H3605\"*, even|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* sacrifice|strong=\"H2077\"* on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3605\"* you|strong=\"H3605\"* may|strong=\"H3478\"* eat meat|strong=\"H1320\"* and|strong=\"H1121\"* drink|strong=\"H8354\"* blood|strong=\"H1818\"*." + }, + { + "verseNum": 18, + "text": "You|strong=\"H3605\"* shall|strong=\"H5387\"* eat the|strong=\"H3605\"* flesh|strong=\"H1320\"* of|strong=\"H1368\"* the|strong=\"H3605\"* mighty|strong=\"H1368\"*, and|strong=\"H6499\"* drink|strong=\"H8354\"* the|strong=\"H3605\"* blood|strong=\"H1818\"* of|strong=\"H1368\"* the|strong=\"H3605\"* princes|strong=\"H5387\"* of|strong=\"H1368\"* the|strong=\"H3605\"* earth, of|strong=\"H1368\"* rams|strong=\"H3733\"*, of|strong=\"H1368\"* lambs|strong=\"H3733\"*, and|strong=\"H6499\"* of|strong=\"H1368\"* goats|strong=\"H6260\"*, of|strong=\"H1368\"* bulls|strong=\"H6499\"*, all|strong=\"H3605\"* of|strong=\"H1368\"* them fatlings|strong=\"H4806\"* of|strong=\"H1368\"* Bashan|strong=\"H1316\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H2076\"* shall|strong=\"H1818\"* eat fat|strong=\"H2459\"* until|strong=\"H2459\"* you|strong=\"H2076\"* are|strong=\"H1818\"* full|strong=\"H7654\"*, and|strong=\"H1818\"* drink|strong=\"H8354\"* blood|strong=\"H1818\"* until|strong=\"H2459\"* you|strong=\"H2076\"* are|strong=\"H1818\"* drunk|strong=\"H8354\"*, of|strong=\"H2077\"* my|strong=\"H8354\"* sacrifice|strong=\"H2077\"* which|strong=\"H1818\"* I have sacrificed|strong=\"H2076\"* for|strong=\"H2077\"* you|strong=\"H2076\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H3605\"* shall|strong=\"H1368\"* be|strong=\"H3069\"* filled|strong=\"H7646\"* at|strong=\"H5921\"* my|strong=\"H3605\"* table|strong=\"H7979\"* with|strong=\"H7646\"* horses|strong=\"H5483\"* and|strong=\"H7393\"* charioteers|strong=\"H7393\"*, with|strong=\"H7646\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, and|strong=\"H7393\"* with|strong=\"H7646\"* all|strong=\"H3605\"* men|strong=\"H1368\"* of|strong=\"H1368\"* war|strong=\"H4421\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.’" + }, + { + "verseNum": 21, + "text": "“I|strong=\"H5414\"* will|strong=\"H1471\"* set|strong=\"H7760\"* my|strong=\"H5414\"* glory|strong=\"H3519\"* among|strong=\"H7200\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*. Then|strong=\"H5414\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* my|strong=\"H5414\"* judgment|strong=\"H4941\"* that|strong=\"H7200\"* I|strong=\"H5414\"* have|strong=\"H1471\"* executed|strong=\"H6213\"*, and|strong=\"H4941\"* my|strong=\"H5414\"* hand|strong=\"H3027\"* that|strong=\"H7200\"* I|strong=\"H5414\"* have|strong=\"H1471\"* laid|strong=\"H7760\"* on|strong=\"H7200\"* them|strong=\"H5414\"*." + }, + { + "verseNum": 22, + "text": "So|strong=\"H4480\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, from|strong=\"H4480\"* that|strong=\"H3588\"* day|strong=\"H3117\"* and|strong=\"H3478\"* forward|strong=\"H1973\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* know|strong=\"H3045\"* that|strong=\"H3588\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* for|strong=\"H3588\"* their|strong=\"H3605\"* iniquity|strong=\"H5771\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5414\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* hid|strong=\"H5641\"* my|strong=\"H5414\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H5414\"*; so|strong=\"H5414\"* I|strong=\"H3588\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* into|strong=\"H1540\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H1004\"* their|strong=\"H3605\"* adversaries|strong=\"H6862\"*, and|strong=\"H3478\"* they|strong=\"H1992\"* all|strong=\"H3605\"* fell|strong=\"H5307\"* by|strong=\"H3027\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 24, + "text": "I|strong=\"H6440\"* did|strong=\"H6213\"* to|strong=\"H6213\"* them|strong=\"H1992\"* according to|strong=\"H6213\"* their|strong=\"H6440\"* uncleanness|strong=\"H2932\"* and|strong=\"H6440\"* according to|strong=\"H6213\"* their|strong=\"H6440\"* transgressions|strong=\"H6588\"*. I|strong=\"H6440\"* hid|strong=\"H5641\"* my|strong=\"H5641\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 25, + "text": "“Therefore|strong=\"H3651\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Now|strong=\"H6258\"* I|strong=\"H3541\"* will|strong=\"H3478\"* reverse|strong=\"H7725\"* the|strong=\"H3605\"* captivity|strong=\"H7622\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* and|strong=\"H3478\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H7355\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. I|strong=\"H3541\"* will|strong=\"H3478\"* be|strong=\"H8034\"* jealous|strong=\"H7065\"* for|strong=\"H8034\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 26, + "text": "They|strong=\"H5921\"* will|strong=\"H3427\"* forget|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* and|strong=\"H3427\"* all|strong=\"H3605\"* their|strong=\"H3605\"* trespasses|strong=\"H4604\"* by|strong=\"H5921\"* which|strong=\"H3605\"* they|strong=\"H5921\"* have|strong=\"H3605\"* trespassed|strong=\"H4603\"* against|strong=\"H5921\"* me|strong=\"H5921\"*, when|strong=\"H3427\"* they|strong=\"H5921\"* dwell|strong=\"H3427\"* securely in|strong=\"H3427\"* their|strong=\"H3605\"* land. No|strong=\"H3605\"* one|strong=\"H3605\"* will|strong=\"H3427\"* make|strong=\"H2729\"* them|strong=\"H5921\"* afraid|strong=\"H2729\"*" + }, + { + "verseNum": 27, + "text": "when|strong=\"H7725\"* I|strong=\"H4480\"* have|strong=\"H5869\"* brought|strong=\"H7725\"* them|strong=\"H7725\"* back|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* peoples|strong=\"H5971\"*, gathered|strong=\"H6908\"* them|strong=\"H7725\"* out|strong=\"H4480\"* of|strong=\"H5869\"* their|strong=\"H7725\"* enemies’ lands, and|strong=\"H7725\"* am shown holy|strong=\"H6942\"* among|strong=\"H4480\"* them|strong=\"H7725\"* in|strong=\"H7227\"* the|strong=\"H4480\"* sight|strong=\"H5869\"* of|strong=\"H5869\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 28, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, in|strong=\"H5921\"* that|strong=\"H3588\"* I|strong=\"H3588\"* caused them|strong=\"H1992\"* to|strong=\"H3068\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* have|strong=\"H3068\"* gathered|strong=\"H3664\"* them|strong=\"H1992\"* to|strong=\"H3068\"* their|strong=\"H3068\"* own land. Then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* leave|strong=\"H3498\"* none|strong=\"H3808\"* of|strong=\"H3068\"* them|strong=\"H1992\"* captive|strong=\"H1540\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 29, + "text": "I|strong=\"H5921\"* won’t hide|strong=\"H5641\"* my|strong=\"H5921\"* face|strong=\"H6440\"* from|strong=\"H6440\"* them|strong=\"H1992\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* have|strong=\"H3478\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* my|strong=\"H5921\"* Spirit|strong=\"H7307\"* on|strong=\"H5921\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,’ says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 40, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* twenty-fifth|strong=\"H6242\"* year|strong=\"H8141\"* of|strong=\"H3068\"* our|strong=\"H3068\"* captivity|strong=\"H1546\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* beginning|strong=\"H7218\"* of|strong=\"H3068\"* the|strong=\"H5921\"* year|strong=\"H8141\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* tenth|strong=\"H6218\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H5921\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* fourteenth|strong=\"H6240\"* year|strong=\"H8141\"* after|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"* was|strong=\"H3068\"* struck|strong=\"H5221\"*, in|strong=\"H8141\"* the|strong=\"H5921\"* same|strong=\"H6106\"* day|strong=\"H3117\"*, Yahweh|strong=\"H3068\"*’s hand|strong=\"H3027\"* was|strong=\"H3068\"* on|strong=\"H5921\"* me|strong=\"H5921\"*, and|strong=\"H3068\"* he|strong=\"H3117\"* brought|strong=\"H1961\"* me|strong=\"H5921\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* visions|strong=\"H4759\"* of|strong=\"H5892\"* God he|strong=\"H5921\"* brought|strong=\"H3478\"* me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H5892\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* set|strong=\"H5117\"* me|strong=\"H5921\"* down|strong=\"H5117\"* on|strong=\"H5921\"* a|strong=\"H3068\"* very|strong=\"H3966\"* high|strong=\"H1364\"* mountain|strong=\"H2022\"*, on|strong=\"H5921\"* which|strong=\"H5892\"* was|strong=\"H3478\"* something like|strong=\"H3478\"* the|strong=\"H5921\"* frame|strong=\"H4011\"* of|strong=\"H5892\"* a|strong=\"H3068\"* city|strong=\"H5892\"* to|strong=\"H3478\"* the|strong=\"H5921\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 3, + "text": "He|strong=\"H1931\"* brought|strong=\"H3027\"* me|strong=\"H5975\"* there|strong=\"H8033\"*; and|strong=\"H3027\"*, behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H1931\"* a|strong=\"H3068\"* man|strong=\"H8179\"* whose|strong=\"H8179\"* appearance|strong=\"H4758\"* was|strong=\"H1931\"* like|strong=\"H4758\"* the|strong=\"H3027\"* appearance|strong=\"H4758\"* of|strong=\"H3027\"* bronze|strong=\"H5178\"*, with|strong=\"H3027\"* a|strong=\"H3068\"* line|strong=\"H6616\"* of|strong=\"H3027\"* flax|strong=\"H6593\"* in|strong=\"H5975\"* his|strong=\"H3027\"* hand|strong=\"H3027\"* and|strong=\"H3027\"* a|strong=\"H3068\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*; and|strong=\"H3027\"* he|strong=\"H1931\"* stood|strong=\"H5975\"* in|strong=\"H5975\"* the|strong=\"H3027\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3605\"* man|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, see|strong=\"H7200\"* with|strong=\"H1004\"* your|strong=\"H3605\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1004\"* your|strong=\"H3605\"* ears, and|strong=\"H1121\"* set|strong=\"H7760\"* your|strong=\"H3605\"* heart|strong=\"H3820\"* on|strong=\"H7200\"* all|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3478\"* show|strong=\"H7200\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5869\"* been|strong=\"H5046\"* brought|strong=\"H7760\"* here|strong=\"H2008\"* so|strong=\"H4616\"* that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3478\"* show|strong=\"H7200\"* them|strong=\"H7760\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Declare|strong=\"H5046\"* all|strong=\"H3605\"* that|strong=\"H3588\"* you|strong=\"H3588\"* see|strong=\"H7200\"* to|strong=\"H1696\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 5, + "text": "Behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1004\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* on|strong=\"H3027\"* the|strong=\"H5439\"* outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H3027\"* in|strong=\"H1004\"* the|strong=\"H5439\"* man’s hand|strong=\"H3027\"* a|strong=\"H3068\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* six|strong=\"H8337\"* cubits+ 40:5 A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A handbreadth is about 4.3 inches or 11 centimeters, so the long cubit described here would be about 22.3 inches or 57 centimeters long. Thus, a 6 long cubit measuring reed would have been about 3 yards 26.6 inches or about 3.42 meters long.* long|strong=\"H2948\"*, of|strong=\"H1004\"* a|strong=\"H3068\"* cubit and|strong=\"H3027\"* a|strong=\"H3068\"* hand|strong=\"H3027\"* width|strong=\"H7341\"* each|strong=\"H5439\"*. So|strong=\"H3027\"* he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H5439\"* thickness|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H5439\"* building|strong=\"H1146\"*, one|strong=\"H5439\"* reed|strong=\"H7070\"*; and|strong=\"H3027\"* the|strong=\"H5439\"* height|strong=\"H6967\"*, one|strong=\"H5439\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H5927\"* he|strong=\"H6440\"* came|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H8179\"* looks|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, and|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* its|strong=\"H4058\"* steps|strong=\"H4609\"*. He|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* threshold|strong=\"H5592\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*, one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*; and|strong=\"H6440\"* the|strong=\"H6440\"* other threshold|strong=\"H5592\"*, one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 7, + "text": "Every|strong=\"H8179\"* lodge was|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"* long and|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"* wide|strong=\"H7341\"*. Between the|strong=\"H1004\"* lodges was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*. The|strong=\"H1004\"* threshold|strong=\"H5592\"* of|strong=\"H1004\"* the|strong=\"H1004\"* gate|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H1004\"* porch of|strong=\"H1004\"* the|strong=\"H1004\"* gate|strong=\"H8179\"* toward the|strong=\"H1004\"* house|strong=\"H1004\"* was|strong=\"H1004\"* one|strong=\"H7341\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1004\"* measured|strong=\"H4058\"* also the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* toward the|strong=\"H4058\"* house|strong=\"H1004\"*, one|strong=\"H1004\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 9, + "text": "Then he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, eight|strong=\"H8083\"* cubits; and|strong=\"H1004\"* its|strong=\"H4058\"* posts, two|strong=\"H8147\"* cubits; and|strong=\"H1004\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* was|strong=\"H1004\"* toward the|strong=\"H4058\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H1870\"* side|strong=\"H6311\"* rooms of|strong=\"H1870\"* the|strong=\"H1870\"* gate|strong=\"H8179\"* eastward|strong=\"H6921\"* were|strong=\"H7969\"* three|strong=\"H7969\"* on|strong=\"H1870\"* this|strong=\"H1870\"* side|strong=\"H6311\"*, and|strong=\"H1870\"* three|strong=\"H7969\"* on|strong=\"H1870\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. The|strong=\"H1870\"* three|strong=\"H7969\"* of|strong=\"H1870\"* them|strong=\"H1870\"* were|strong=\"H7969\"* of|strong=\"H1870\"* one measure|strong=\"H4060\"*. The|strong=\"H1870\"* posts had|strong=\"H7969\"* one measure|strong=\"H4060\"* on|strong=\"H1870\"* this|strong=\"H1870\"* side|strong=\"H6311\"* and|strong=\"H1870\"* on|strong=\"H1870\"* that|strong=\"H8179\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H8179\"* the|strong=\"H4058\"* opening|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, ten|strong=\"H6235\"* cubits; and|strong=\"H7969\"* the|strong=\"H4058\"* length of|strong=\"H8179\"* the|strong=\"H4058\"* gate|strong=\"H8179\"*, thirteen|strong=\"H7969\"* cubits;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H6440\"* a|strong=\"H3068\"* border|strong=\"H1366\"* before|strong=\"H6440\"* the|strong=\"H6440\"* lodges, one cubit on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* a|strong=\"H3068\"* border|strong=\"H1366\"*, one cubit on|strong=\"H6440\"* that|strong=\"H1366\"* side|strong=\"H6311\"*; and|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H6311\"* rooms, six|strong=\"H8337\"* cubits on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* six|strong=\"H8337\"* cubits on|strong=\"H6440\"* that|strong=\"H1366\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* from|strong=\"H4058\"* the|strong=\"H4058\"* roof|strong=\"H1406\"* of|strong=\"H8179\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H5048\"* room|strong=\"H8372\"* to|strong=\"H8179\"* the|strong=\"H4058\"* roof|strong=\"H1406\"* of|strong=\"H8179\"* the|strong=\"H4058\"* other|strong=\"H5048\"*, a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H8179\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*, door|strong=\"H6607\"* against|strong=\"H5048\"* door|strong=\"H6607\"*." + }, + { + "verseNum": 14, + "text": "He|strong=\"H6213\"* also|strong=\"H6213\"* made|strong=\"H6213\"* posts, sixty|strong=\"H8346\"* cubits; and|strong=\"H8346\"* the|strong=\"H6213\"* court|strong=\"H2691\"* reached to|strong=\"H6213\"* the|strong=\"H6213\"* posts, around|strong=\"H5439\"* the|strong=\"H6213\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 15, + "text": "From|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* at|strong=\"H5921\"* the|strong=\"H6440\"* entrance|strong=\"H8179\"* to|strong=\"H5921\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* porch of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* were|strong=\"H5921\"* fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 16, + "text": "There were|strong=\"H5439\"* closed windows|strong=\"H2474\"* to|strong=\"H8179\"* the|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H5439\"*, and|strong=\"H8179\"* to|strong=\"H8179\"* their|strong=\"H5439\"* posts within|strong=\"H6441\"* the|strong=\"H5439\"* gate|strong=\"H8179\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H8179\"* likewise|strong=\"H3651\"* to|strong=\"H8179\"* the|strong=\"H5439\"* arches. Windows|strong=\"H2474\"* were|strong=\"H5439\"* around|strong=\"H5439\"* inward|strong=\"H6441\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H5439\"* on|strong=\"H8372\"* each|strong=\"H5439\"* post." + }, + { + "verseNum": 17, + "text": "Then|strong=\"H2009\"* he|strong=\"H6213\"* brought|strong=\"H6213\"* me|strong=\"H6213\"* into|strong=\"H6213\"* the|strong=\"H6213\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H2009\"* rooms|strong=\"H3957\"* and|strong=\"H7970\"* a|strong=\"H3068\"* pavement|strong=\"H7531\"* made|strong=\"H6213\"* for|strong=\"H6213\"* the|strong=\"H6213\"* court|strong=\"H2691\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. Thirty|strong=\"H7970\"* rooms|strong=\"H3957\"* were|strong=\"H2009\"* on|strong=\"H6213\"* the|strong=\"H6213\"* pavement|strong=\"H7531\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5980\"* pavement|strong=\"H7531\"* was|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H5980\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H5980\"* gates|strong=\"H8179\"*, corresponding|strong=\"H5980\"* to|strong=\"H8179\"* the|strong=\"H5980\"* length of|strong=\"H8179\"* the|strong=\"H5980\"* gates|strong=\"H8179\"*, even the|strong=\"H5980\"* lower|strong=\"H8481\"* pavement|strong=\"H7531\"*." + }, + { + "verseNum": 19, + "text": "Then he|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* width|strong=\"H7341\"* from|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* lower|strong=\"H8481\"* gate|strong=\"H8179\"* to|strong=\"H6440\"* the|strong=\"H6440\"* forefront|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* outside|strong=\"H2351\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits, both on|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* and|strong=\"H3967\"* on|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H6440\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* length and|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* of|strong=\"H6440\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* which|strong=\"H8179\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H1961\"* lodges of|strong=\"H8179\"* it|strong=\"H1961\"* were|strong=\"H1961\"* three|strong=\"H7969\"* on|strong=\"H1961\"* this|strong=\"H7223\"* side|strong=\"H6311\"* and|strong=\"H6242\"* three|strong=\"H7969\"* on|strong=\"H1961\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. Its|strong=\"H1961\"* posts and|strong=\"H6242\"* its|strong=\"H1961\"* arches were|strong=\"H1961\"* the|strong=\"H1961\"* same as|strong=\"H1961\"* the|strong=\"H1961\"* measure|strong=\"H4060\"* of|strong=\"H8179\"* the|strong=\"H1961\"* first|strong=\"H7223\"* gate|strong=\"H8179\"*: its|strong=\"H1961\"* length was|strong=\"H1961\"* fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H1961\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 22, + "text": "Its|strong=\"H5927\"* windows|strong=\"H2474\"*, its|strong=\"H5927\"* arches, and|strong=\"H6440\"* its|strong=\"H5927\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H1870\"* the|strong=\"H6440\"* same as|strong=\"H5927\"* the|strong=\"H6440\"* measure|strong=\"H4060\"* of|strong=\"H6440\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H8179\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*. They|strong=\"H6440\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* it|strong=\"H6440\"* by|strong=\"H1870\"* seven|strong=\"H7651\"* steps|strong=\"H4609\"*. Its|strong=\"H5927\"* arches were|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 23, + "text": "There was|strong=\"H8179\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* to|strong=\"H8179\"* the|strong=\"H4058\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* facing the|strong=\"H4058\"* other|strong=\"H5048\"* gate|strong=\"H8179\"*, on the|strong=\"H4058\"* north|strong=\"H6828\"* and|strong=\"H3967\"* on the|strong=\"H4058\"* east|strong=\"H6921\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H4058\"* gate|strong=\"H8179\"* to|strong=\"H8179\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H4058\"* led|strong=\"H3212\"* me|strong=\"H3212\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*; and|strong=\"H3212\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H1870\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* posts and|strong=\"H3212\"* its|strong=\"H4058\"* arches according to|strong=\"H3212\"* these measurements|strong=\"H4060\"*." + }, + { + "verseNum": 25, + "text": "There were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H2568\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H2568\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*, like|strong=\"H5439\"* the|strong=\"H5439\"* other windows|strong=\"H2474\"*: the|strong=\"H5439\"* length was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H5439\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 26, + "text": "There|strong=\"H6440\"* were|strong=\"H6440\"* seven|strong=\"H7651\"* steps|strong=\"H4609\"* to|strong=\"H6440\"* go|strong=\"H4609\"* up|strong=\"H5930\"* to|strong=\"H6440\"* it|strong=\"H6440\"*, and|strong=\"H6440\"* its|strong=\"H6440\"* arches were|strong=\"H6440\"* before|strong=\"H6440\"* them|strong=\"H6440\"*. It|strong=\"H6440\"* had palm|strong=\"H8561\"* trees|strong=\"H8561\"*, one|strong=\"H7651\"* on|strong=\"H6440\"* this|strong=\"H6440\"* side|strong=\"H6311\"*, and|strong=\"H6440\"* another|strong=\"H6440\"* on|strong=\"H6440\"* that|strong=\"H5930\"* side|strong=\"H6311\"*, on|strong=\"H6440\"* its|strong=\"H6440\"* posts." + }, + { + "verseNum": 27, + "text": "There was|strong=\"H1870\"* a|strong=\"H3068\"* gate|strong=\"H8179\"* to|strong=\"H1870\"* the|strong=\"H1870\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H4058\"* gate|strong=\"H8179\"* to|strong=\"H1870\"* gate|strong=\"H8179\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*." + }, + { + "verseNum": 28, + "text": "Then he|strong=\"H4058\"* brought me to|strong=\"H8179\"* the|strong=\"H4058\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* by|strong=\"H8179\"* the|strong=\"H4058\"* south|strong=\"H1864\"* gate|strong=\"H8179\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* south|strong=\"H1864\"* gate|strong=\"H8179\"* according to|strong=\"H8179\"* these measurements|strong=\"H4060\"*;" + }, + { + "verseNum": 29, + "text": "with|strong=\"H6242\"* its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches, according to|strong=\"H6242\"* these|strong=\"H5439\"* measurements|strong=\"H4060\"*. There|strong=\"H4060\"* were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H4060\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H4060\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*. It|strong=\"H5439\"* was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* long, and|strong=\"H6242\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 30, + "text": "There were|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*, twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* long and|strong=\"H6242\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 31, + "text": "Its arches were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H4058\"* brought me into the|strong=\"H1870\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* east|strong=\"H6921\"*. He|strong=\"H4058\"* measured|strong=\"H4058\"* the|strong=\"H1870\"* gate|strong=\"H8179\"* according to|strong=\"H1870\"* these measurements|strong=\"H4060\"*;" + }, + { + "verseNum": 33, + "text": "with|strong=\"H6242\"* its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches, according to|strong=\"H6242\"* these|strong=\"H5439\"* measurements|strong=\"H4060\"*. There|strong=\"H4060\"* were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H4060\"* it|strong=\"H5439\"* and|strong=\"H6242\"* in|strong=\"H4060\"* its|strong=\"H5439\"* arches all|strong=\"H5439\"* around|strong=\"H5439\"*. It|strong=\"H5439\"* was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* long, and|strong=\"H6242\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*." + }, + { + "verseNum": 34, + "text": "Its arches were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts on|strong=\"H4609\"* this side|strong=\"H6311\"* and|strong=\"H8561\"* on|strong=\"H4609\"* that|strong=\"H2691\"* side|strong=\"H6311\"*. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 35, + "text": "He|strong=\"H4058\"* brought me to|strong=\"H8179\"* the|strong=\"H4058\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*, and|strong=\"H6828\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* it|strong=\"H4058\"* according to|strong=\"H8179\"* these measurements|strong=\"H4060\"*—" + }, + { + "verseNum": 36, + "text": "its|strong=\"H5439\"* lodges, its|strong=\"H5439\"* posts, and|strong=\"H6242\"* its|strong=\"H5439\"* arches. There were|strong=\"H5439\"* windows|strong=\"H2474\"* in|strong=\"H2568\"* it|strong=\"H5439\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H5439\"* length was fifty|strong=\"H2572\"* cubits|strong=\"H2568\"* and|strong=\"H6242\"* the|strong=\"H5439\"* width|strong=\"H7341\"* twenty-five|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 37, + "text": "Its posts were|strong=\"H2691\"* toward the|strong=\"H4608\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*. Palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H2691\"* on|strong=\"H4609\"* its posts on|strong=\"H4609\"* this side|strong=\"H6311\"* and|strong=\"H8561\"* on|strong=\"H4609\"* that|strong=\"H2691\"* side|strong=\"H6311\"*. The|strong=\"H4608\"* ascent|strong=\"H4608\"* to|strong=\"H4608\"* it had|strong=\"H4608\"* eight|strong=\"H8083\"* steps|strong=\"H4609\"*." + }, + { + "verseNum": 38, + "text": "A|strong=\"H3068\"* room|strong=\"H3957\"* with|strong=\"H8033\"* its door|strong=\"H6607\"* was|strong=\"H8179\"* by|strong=\"H8179\"* the|strong=\"H8033\"* posts at|strong=\"H8033\"* the|strong=\"H8033\"* gates|strong=\"H8179\"*. They|strong=\"H8033\"* washed|strong=\"H1740\"* the|strong=\"H8033\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* there|strong=\"H8033\"*." + }, + { + "verseNum": 39, + "text": "In|strong=\"H7979\"* the|strong=\"H7819\"* porch of|strong=\"H8179\"* the|strong=\"H7819\"* gate|strong=\"H8179\"* were|strong=\"H2403\"* two|strong=\"H8147\"* tables|strong=\"H7979\"* on|strong=\"H7979\"* this side|strong=\"H6311\"* and|strong=\"H5930\"* two|strong=\"H8147\"* tables|strong=\"H7979\"* on|strong=\"H7979\"* that|strong=\"H8179\"* side|strong=\"H6311\"*, on|strong=\"H7979\"* which|strong=\"H8179\"* to|strong=\"H8179\"* kill|strong=\"H7819\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, the|strong=\"H7819\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*, and|strong=\"H5930\"* the|strong=\"H7819\"* trespass offering|strong=\"H5930\"*." + }, + { + "verseNum": 40, + "text": "On|strong=\"H5927\"* the|strong=\"H5927\"* one|strong=\"H8147\"* side|strong=\"H3802\"* outside|strong=\"H2351\"*, as|strong=\"H5927\"* one|strong=\"H8147\"* goes|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* entry|strong=\"H6607\"* of|strong=\"H8179\"* the|strong=\"H5927\"* gate|strong=\"H8179\"* toward|strong=\"H5927\"* the|strong=\"H5927\"* north|strong=\"H6828\"*, were|strong=\"H8147\"* two|strong=\"H8147\"* tables|strong=\"H7979\"*; and|strong=\"H5927\"* on|strong=\"H5927\"* the|strong=\"H5927\"* other|strong=\"H8147\"* side|strong=\"H3802\"*, which|strong=\"H8179\"* belonged|strong=\"H5927\"* to|strong=\"H5927\"* the|strong=\"H5927\"* porch of|strong=\"H8179\"* the|strong=\"H5927\"* gate|strong=\"H8179\"*, were|strong=\"H8147\"* two|strong=\"H8147\"* tables|strong=\"H7979\"*." + }, + { + "verseNum": 41, + "text": "Four tables|strong=\"H7979\"* were|strong=\"H8179\"* on|strong=\"H7979\"* this side|strong=\"H3802\"*, and|strong=\"H8179\"* four tables|strong=\"H7979\"* on|strong=\"H7979\"* that|strong=\"H8179\"* side|strong=\"H3802\"*, by|strong=\"H8179\"* the|strong=\"H7819\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H7819\"* gate|strong=\"H8179\"*: eight|strong=\"H8083\"* tables|strong=\"H7979\"*, on|strong=\"H7979\"* which|strong=\"H8179\"* they|strong=\"H8179\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* sacrifices." + }, + { + "verseNum": 42, + "text": "There were|strong=\"H3627\"* four cut|strong=\"H1496\"* stone|strong=\"H1496\"* tables|strong=\"H7979\"* for|strong=\"H3627\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"*, a|strong=\"H3068\"* cubit and|strong=\"H5930\"* a|strong=\"H3068\"* half|strong=\"H2677\"* long, a|strong=\"H3068\"* cubit and|strong=\"H5930\"* a|strong=\"H3068\"* half|strong=\"H2677\"* wide|strong=\"H7341\"*, and|strong=\"H5930\"* one|strong=\"H7341\"* cubit high|strong=\"H1363\"*. They|strong=\"H5930\"* laid|strong=\"H3240\"* the|strong=\"H7819\"* instruments|strong=\"H3627\"* with|strong=\"H3627\"* which|strong=\"H3627\"* they|strong=\"H5930\"* killed|strong=\"H7819\"* the|strong=\"H7819\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H5930\"* the|strong=\"H7819\"* sacrifice|strong=\"H2077\"* on|strong=\"H3627\"* them|strong=\"H7819\"*." + }, + { + "verseNum": 43, + "text": "The|strong=\"H5439\"* hooks|strong=\"H8240\"*, a|strong=\"H3068\"* hand|strong=\"H2948\"* width long|strong=\"H2948\"*, were|strong=\"H1004\"* fastened|strong=\"H3559\"* within|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H5439\"* meat|strong=\"H1320\"* of|strong=\"H1004\"* the|strong=\"H5439\"* offering|strong=\"H7133\"* was|strong=\"H1004\"* on|strong=\"H1004\"* the|strong=\"H5439\"* tables|strong=\"H7979\"*." + }, + { + "verseNum": 44, + "text": "Outside|strong=\"H2351\"* of|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* gate|strong=\"H8179\"* were|strong=\"H1870\"* rooms|strong=\"H3957\"* for|strong=\"H6440\"* the|strong=\"H6440\"* singers|strong=\"H7891\"* in|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, which|strong=\"H3957\"* was|strong=\"H1870\"* at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*. They|strong=\"H6440\"* faced|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"*. One at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H3802\"* of|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* gate|strong=\"H8179\"* faced|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H1004\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, “This|strong=\"H2090\"* room|strong=\"H1004\"*, which|strong=\"H1004\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"*, is|strong=\"H1870\"* for|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* perform|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 46, + "text": "The|strong=\"H6440\"* room|strong=\"H3957\"* which|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"* is|strong=\"H3068\"* for|strong=\"H6440\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* perform|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*. These|strong=\"H1992\"* are|strong=\"H1992\"* the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3068\"* from|strong=\"H6440\"* among the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"* come|strong=\"H7131\"* near|strong=\"H7131\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* him|strong=\"H6440\"*.”" + }, + { + "verseNum": 47, + "text": "He|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* court|strong=\"H2691\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long|strong=\"H6440\"* and|strong=\"H3967\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits wide|strong=\"H7341\"*, square|strong=\"H7251\"*. The|strong=\"H6440\"* altar|strong=\"H4196\"* was|strong=\"H1004\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 48, + "text": "Then he|strong=\"H2568\"* brought me|strong=\"H1004\"* to|strong=\"H1004\"* the|strong=\"H4058\"* porch of|strong=\"H1004\"* the|strong=\"H4058\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* measured|strong=\"H4058\"* each|strong=\"H6311\"* post of|strong=\"H1004\"* the|strong=\"H4058\"* porch, five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* this|strong=\"H1004\"* side|strong=\"H6311\"*, and|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* that|strong=\"H8179\"* side|strong=\"H6311\"*. The|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H4058\"* gate|strong=\"H8179\"* was|strong=\"H1004\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* this|strong=\"H1004\"* side|strong=\"H6311\"* and|strong=\"H1004\"* three|strong=\"H7969\"* cubits|strong=\"H2568\"* on|strong=\"H1004\"* that|strong=\"H8179\"* side|strong=\"H6311\"*." + }, + { + "verseNum": 49, + "text": "The|strong=\"H5927\"* length of|strong=\"H5982\"* the|strong=\"H5927\"* porch was|strong=\"H5982\"* twenty|strong=\"H6242\"* cubits and|strong=\"H6242\"* the|strong=\"H5927\"* width|strong=\"H7341\"* eleven|strong=\"H6249\"* cubits, even by|strong=\"H5927\"* the|strong=\"H5927\"* steps|strong=\"H4609\"* by|strong=\"H5927\"* which they|strong=\"H5927\"* went|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* it|strong=\"H5927\"*. There|strong=\"H5927\"* were pillars|strong=\"H5982\"* by|strong=\"H5927\"* the|strong=\"H5927\"* posts|strong=\"H5982\"*, one|strong=\"H7341\"* on|strong=\"H5927\"* this|strong=\"H5927\"* side|strong=\"H6311\"*, and|strong=\"H6242\"* another on|strong=\"H5927\"* that|strong=\"H5927\"* side|strong=\"H6311\"*." + } + ] + }, + { + "chapterNum": 41, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H4058\"* brought me to|strong=\"H8337\"* the|strong=\"H4058\"* nave|strong=\"H1964\"* and|strong=\"H7341\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* posts, six|strong=\"H8337\"* cubits wide|strong=\"H7341\"* on|strong=\"H8337\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H6311\"* and|strong=\"H7341\"* six|strong=\"H8337\"* cubits wide|strong=\"H7341\"* on|strong=\"H8337\"* the|strong=\"H4058\"* other|strong=\"H6311\"* side|strong=\"H6311\"*, which was the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* tent." + }, + { + "verseNum": 2, + "text": "The|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"* was|strong=\"H3802\"* ten|strong=\"H6235\"* cubits|strong=\"H2568\"*,+ 41:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H6242\"* the|strong=\"H4058\"* sides|strong=\"H3802\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"* were five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H7341\"* the|strong=\"H4058\"* one|strong=\"H7341\"* side|strong=\"H3802\"*, and|strong=\"H6242\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* on|strong=\"H7341\"* the|strong=\"H4058\"* other|strong=\"H6311\"* side|strong=\"H3802\"*. He|strong=\"H2568\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* length, forty cubits|strong=\"H2568\"*, and|strong=\"H6242\"* the|strong=\"H4058\"* width|strong=\"H7341\"*, twenty|strong=\"H6242\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 3, + "text": "Then he|strong=\"H8147\"* went|strong=\"H8147\"* inward|strong=\"H6441\"* and|strong=\"H8147\"* measured|strong=\"H4058\"* each|strong=\"H8147\"* post of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, two|strong=\"H8147\"* cubits; and|strong=\"H8147\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, six|strong=\"H8337\"* cubits; and|strong=\"H8147\"* the|strong=\"H4058\"* width|strong=\"H7341\"* of|strong=\"H7341\"* the|strong=\"H4058\"* entrance|strong=\"H6607\"*, seven|strong=\"H7651\"* cubits." + }, + { + "verseNum": 4, + "text": "He|strong=\"H6440\"* measured|strong=\"H4058\"* its|strong=\"H4058\"* length, twenty|strong=\"H6242\"* cubits, and|strong=\"H6242\"* the|strong=\"H6440\"* width|strong=\"H7341\"*, twenty|strong=\"H6242\"* cubits, before|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*. He|strong=\"H6440\"* said to|strong=\"H6440\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*.”" + }, + { + "verseNum": 5, + "text": "Then he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H5439\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"*, six|strong=\"H8337\"* cubits; and|strong=\"H1004\"* the|strong=\"H5439\"* width|strong=\"H7341\"* of|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"* room|strong=\"H1004\"*, four cubits, all|strong=\"H5439\"* around|strong=\"H5439\"* the|strong=\"H5439\"* house|strong=\"H1004\"* on|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1961\"* in|strong=\"H1004\"* three|strong=\"H7969\"* stories|strong=\"H6763\"*, one|strong=\"H3808\"* over|strong=\"H6763\"* another|strong=\"H6763\"*, and|strong=\"H1004\"* thirty|strong=\"H7970\"* in|strong=\"H1004\"* each|strong=\"H5439\"* story|strong=\"H6471\"*. They|strong=\"H3808\"* entered into|strong=\"H1961\"* the|strong=\"H5439\"* wall|strong=\"H7023\"* which|strong=\"H1004\"* belonged|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H5439\"* house|strong=\"H1004\"* for|strong=\"H1004\"* the|strong=\"H5439\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, that|strong=\"H3808\"* they|strong=\"H3808\"* might be|strong=\"H1961\"* supported and|strong=\"H1004\"* not|strong=\"H3808\"* penetrate the|strong=\"H5439\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H5439\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1004\"* wider|strong=\"H7337\"* on|strong=\"H5921\"* the|strong=\"H5921\"* higher|strong=\"H4605\"* levels, because|strong=\"H3588\"* the|strong=\"H5921\"* walls|strong=\"H6763\"* were|strong=\"H1004\"* narrower at|strong=\"H5921\"* the|strong=\"H5921\"* higher|strong=\"H4605\"* levels. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* increased|strong=\"H5927\"* upward|strong=\"H4605\"*; and|strong=\"H1004\"* so|strong=\"H3651\"* one|strong=\"H3588\"* went|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* the|strong=\"H5921\"* lowest|strong=\"H8481\"* level to|strong=\"H5927\"* the|strong=\"H5921\"* highest|strong=\"H5945\"* through|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* level." + }, + { + "verseNum": 8, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* also that|strong=\"H7200\"* the|strong=\"H7200\"* house|strong=\"H1004\"* had a|strong=\"H3068\"* raised|strong=\"H1363\"* base all|strong=\"H5439\"* around|strong=\"H5439\"*. The|strong=\"H7200\"* foundations|strong=\"H4328\"* of|strong=\"H1004\"* the|strong=\"H7200\"* side|strong=\"H5439\"* rooms|strong=\"H1004\"* were|strong=\"H1004\"* a|strong=\"H3068\"* full|strong=\"H4393\"* reed|strong=\"H7070\"* of|strong=\"H1004\"* six|strong=\"H8337\"* great cubits." + }, + { + "verseNum": 9, + "text": "The|strong=\"H2351\"* thickness|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H2351\"* outer|strong=\"H2351\"* wall|strong=\"H7023\"* of|strong=\"H1004\"* the|strong=\"H2351\"* side|strong=\"H6763\"* rooms|strong=\"H1004\"* was|strong=\"H1004\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"*. That|strong=\"H1004\"* which|strong=\"H1004\"* was|strong=\"H1004\"* left|strong=\"H3240\"* was|strong=\"H1004\"* the|strong=\"H2351\"* place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H2351\"* side|strong=\"H6763\"* rooms|strong=\"H1004\"* that|strong=\"H1004\"* belonged to|strong=\"H1004\"* the|strong=\"H2351\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Between the|strong=\"H5439\"* rooms|strong=\"H3957\"* was|strong=\"H1004\"* a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H1004\"* twenty|strong=\"H6242\"* cubits around|strong=\"H5439\"* the|strong=\"H5439\"* house|strong=\"H1004\"* on|strong=\"H1004\"* every|strong=\"H5439\"* side|strong=\"H5439\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H1870\"* doors|strong=\"H6607\"* of|strong=\"H1870\"* the|strong=\"H1870\"* side|strong=\"H5439\"* rooms|strong=\"H5439\"* were|strong=\"H5439\"* toward|strong=\"H1870\"* an|strong=\"H6828\"* open|strong=\"H4725\"* area|strong=\"H5439\"* that|strong=\"H4725\"* was|strong=\"H4725\"* left|strong=\"H3240\"*, one|strong=\"H5439\"* door|strong=\"H6607\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* north|strong=\"H6828\"*, and|strong=\"H2568\"* another|strong=\"H6763\"* door|strong=\"H6607\"* toward|strong=\"H1870\"* the|strong=\"H1870\"* south|strong=\"H1864\"*. The|strong=\"H1870\"* width|strong=\"H7341\"* of|strong=\"H1870\"* the|strong=\"H1870\"* open|strong=\"H4725\"* area|strong=\"H5439\"* was|strong=\"H4725\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H6440\"* building|strong=\"H1146\"* that|strong=\"H3220\"* was|strong=\"H1870\"* before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"* at|strong=\"H6440\"* the|strong=\"H6440\"* side|strong=\"H6285\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* west|strong=\"H3220\"* was|strong=\"H1870\"* seventy|strong=\"H7657\"* cubits|strong=\"H2568\"* wide|strong=\"H7341\"*; and|strong=\"H2568\"* the|strong=\"H6440\"* wall|strong=\"H7023\"* of|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"* was|strong=\"H1870\"* five|strong=\"H2568\"* cubits|strong=\"H2568\"* thick|strong=\"H7341\"* all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H2568\"* its|strong=\"H5439\"* length ninety|strong=\"H8673\"* cubits|strong=\"H2568\"*." + }, + { + "verseNum": 13, + "text": "So he|strong=\"H1004\"* measured|strong=\"H4058\"* the|strong=\"H4058\"* temple|strong=\"H1004\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long; and|strong=\"H3967\"* the|strong=\"H4058\"* separate|strong=\"H1508\"* place|strong=\"H1004\"*, and|strong=\"H3967\"* the|strong=\"H4058\"* building|strong=\"H1140\"*, with|strong=\"H1004\"* its|strong=\"H4058\"* walls|strong=\"H7023\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits long;" + }, + { + "verseNum": 14, + "text": "also the|strong=\"H6440\"* width|strong=\"H7341\"* of|strong=\"H1004\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*, and|strong=\"H3967\"* of|strong=\"H1004\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1004\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits." + }, + { + "verseNum": 15, + "text": "He|strong=\"H5921\"* measured|strong=\"H4058\"* the|strong=\"H6440\"* length|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"* before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"* which|strong=\"H1508\"* was|strong=\"H6440\"* at|strong=\"H5921\"* its|strong=\"H5921\"* back, and|strong=\"H3967\"* its|strong=\"H5921\"* galleries on|strong=\"H5921\"* the|strong=\"H6440\"* one|strong=\"H3967\"* side|strong=\"H6311\"* and|strong=\"H3967\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H6311\"* side|strong=\"H6311\"*, one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits from|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* temple|strong=\"H1964\"*, and|strong=\"H3967\"* the|strong=\"H6440\"* porches of|strong=\"H6440\"* the|strong=\"H6440\"* court|strong=\"H2691\"*," + }, + { + "verseNum": 16, + "text": "the|strong=\"H5704\"* thresholds|strong=\"H5592\"*, and|strong=\"H6086\"* the|strong=\"H5704\"* closed|strong=\"H3680\"* windows|strong=\"H2474\"*, and|strong=\"H6086\"* the|strong=\"H5704\"* galleries around|strong=\"H5439\"* on|strong=\"H7969\"* their|strong=\"H3680\"* three|strong=\"H7969\"* stories|strong=\"H7969\"*, opposite|strong=\"H5048\"* the|strong=\"H5704\"* threshold|strong=\"H5592\"*, with|strong=\"H3680\"* wood|strong=\"H6086\"* ceilings all|strong=\"H5439\"* around|strong=\"H5439\"*, and|strong=\"H6086\"* from|strong=\"H5704\"* the|strong=\"H5704\"* ground up|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* windows|strong=\"H2474\"*, (now the|strong=\"H5704\"* windows|strong=\"H2474\"* were|strong=\"H7969\"* covered|strong=\"H3680\"*)," + }, + { + "verseNum": 17, + "text": "to|strong=\"H5704\"* the|strong=\"H3605\"* space above|strong=\"H5921\"* the|strong=\"H3605\"* door|strong=\"H6607\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* outside|strong=\"H2351\"*, and|strong=\"H1004\"* by|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* wall|strong=\"H7023\"* all|strong=\"H3605\"* around|strong=\"H5439\"* inside|strong=\"H1004\"* and|strong=\"H1004\"* outside|strong=\"H2351\"*, by|strong=\"H5921\"* measure|strong=\"H4060\"*." + }, + { + "verseNum": 18, + "text": "It|strong=\"H6213\"* was|strong=\"H6440\"* made|strong=\"H6213\"* with|strong=\"H6213\"* cherubim|strong=\"H3742\"* and|strong=\"H6440\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"*. A|strong=\"H3068\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* was|strong=\"H6440\"* between cherub|strong=\"H3742\"* and|strong=\"H6440\"* cherub|strong=\"H3742\"*, and|strong=\"H6440\"* every|strong=\"H6213\"* cherub|strong=\"H3742\"* had|strong=\"H3742\"* two|strong=\"H8147\"* faces|strong=\"H6440\"*," + }, + { + "verseNum": 19, + "text": "so|strong=\"H6213\"* that|strong=\"H3605\"* there|strong=\"H3605\"* was|strong=\"H1004\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1004\"* a|strong=\"H3068\"* man|strong=\"H3605\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H3605\"* one|strong=\"H3605\"* side|strong=\"H5439\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* face|strong=\"H6440\"* of|strong=\"H1004\"* a|strong=\"H3068\"* young|strong=\"H3715\"* lion|strong=\"H3715\"* toward|strong=\"H6440\"* the|strong=\"H3605\"* palm|strong=\"H8561\"* tree|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H3605\"* other|strong=\"H3605\"* side|strong=\"H5439\"*. It|strong=\"H6213\"* was|strong=\"H1004\"* made|strong=\"H6213\"* like|strong=\"H1004\"* this|strong=\"H6213\"* through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* house|strong=\"H1004\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 20, + "text": "Cherubim|strong=\"H3742\"* and|strong=\"H6213\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* were|strong=\"H3742\"* made|strong=\"H6213\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ground to|strong=\"H5704\"* above|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H6607\"*. The|strong=\"H5921\"* wall|strong=\"H7023\"* of|strong=\"H5921\"* the|strong=\"H5921\"* temple|strong=\"H1964\"* was|strong=\"H3742\"* like|strong=\"H5704\"* this|strong=\"H6213\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"* were|strong=\"H6944\"* squared|strong=\"H7251\"*. As|strong=\"H6440\"* for|strong=\"H6440\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*, its|strong=\"H6440\"* appearance|strong=\"H4758\"* was|strong=\"H6440\"* as|strong=\"H6440\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* altar|strong=\"H4196\"* was|strong=\"H3068\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*, three|strong=\"H7969\"* cubits high|strong=\"H1364\"*, and|strong=\"H3068\"* its|strong=\"H6440\"* length two|strong=\"H8147\"* cubits. Its|strong=\"H6440\"* corners|strong=\"H4740\"*, its|strong=\"H6440\"* base, and|strong=\"H3068\"* its|strong=\"H6440\"* walls|strong=\"H7023\"* were|strong=\"H8147\"* of|strong=\"H3068\"* wood|strong=\"H6086\"*. He|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* the|strong=\"H6440\"* table|strong=\"H7979\"* that|strong=\"H3068\"* is|strong=\"H3068\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 23, + "text": "The|strong=\"H8147\"* temple|strong=\"H1964\"* and|strong=\"H8147\"* the|strong=\"H8147\"* sanctuary|strong=\"H6944\"* had|strong=\"H1817\"* two|strong=\"H8147\"* doors|strong=\"H1817\"*." + }, + { + "verseNum": 24, + "text": "The|strong=\"H8147\"* doors|strong=\"H1817\"* had|strong=\"H1817\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* each|strong=\"H1817\"*, two|strong=\"H8147\"* turning|strong=\"H4142\"* leaves|strong=\"H1817\"*: two|strong=\"H8147\"* for|strong=\"H8147\"* the|strong=\"H8147\"* one|strong=\"H8147\"* door|strong=\"H1817\"*, and|strong=\"H8147\"* two|strong=\"H8147\"* leaves|strong=\"H1817\"* for|strong=\"H8147\"* the|strong=\"H8147\"* other|strong=\"H8147\"*." + }, + { + "verseNum": 25, + "text": "There|strong=\"H3742\"* were|strong=\"H3742\"* made|strong=\"H6213\"* on|strong=\"H6213\"* them|strong=\"H6440\"*, on|strong=\"H6213\"* the|strong=\"H6440\"* doors|strong=\"H1817\"* of|strong=\"H6440\"* the|strong=\"H6440\"* nave|strong=\"H1964\"*, cherubim|strong=\"H3742\"* and|strong=\"H6086\"* palm|strong=\"H8561\"* trees|strong=\"H6086\"*, like|strong=\"H6213\"* those|strong=\"H6213\"* made|strong=\"H6213\"* on|strong=\"H6213\"* the|strong=\"H6440\"* walls|strong=\"H7023\"*. There|strong=\"H3742\"* was|strong=\"H6440\"* a|strong=\"H3068\"* threshold|strong=\"H5646\"* of|strong=\"H6440\"* wood|strong=\"H6086\"* on|strong=\"H6213\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H6440\"* porch outside|strong=\"H2351\"*." + }, + { + "verseNum": 26, + "text": "There were|strong=\"H1004\"* closed windows|strong=\"H2474\"* and|strong=\"H1004\"* palm|strong=\"H8561\"* trees|strong=\"H8561\"* on|strong=\"H1004\"* the|strong=\"H1004\"* one|strong=\"H6763\"* side|strong=\"H3802\"* and|strong=\"H1004\"* on|strong=\"H1004\"* the|strong=\"H1004\"* other|strong=\"H6311\"* side|strong=\"H3802\"*, on|strong=\"H1004\"* the|strong=\"H1004\"* sides|strong=\"H6763\"* of|strong=\"H1004\"* the|strong=\"H1004\"* porch. This|strong=\"H1004\"* is|strong=\"H1004\"* how the|strong=\"H1004\"* side|strong=\"H3802\"* rooms|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* temple|strong=\"H1004\"* and|strong=\"H1004\"* the|strong=\"H1004\"* thresholds|strong=\"H5646\"* were|strong=\"H1004\"* arranged." + } + ] + }, + { + "chapterNum": 42, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5048\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, the|strong=\"H3318\"* way|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H3318\"* north|strong=\"H6828\"*. Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5048\"* into|strong=\"H3318\"* the|strong=\"H3318\"* room|strong=\"H3957\"* that|strong=\"H2691\"* was|strong=\"H1870\"* opposite|strong=\"H5048\"* the|strong=\"H3318\"* separate|strong=\"H1508\"* place|strong=\"H1508\"*, and|strong=\"H1870\"* which|strong=\"H3957\"* was|strong=\"H1870\"* opposite|strong=\"H5048\"* the|strong=\"H3318\"* building|strong=\"H1146\"* toward|strong=\"H1870\"* the|strong=\"H3318\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 2, + "text": "Facing|strong=\"H6440\"* the|strong=\"H6440\"* length of|strong=\"H6440\"* one|strong=\"H3967\"* hundred|strong=\"H3967\"* cubits+ 42:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* was|strong=\"H6440\"* the|strong=\"H6440\"* north|strong=\"H6828\"* door|strong=\"H6607\"*, and|strong=\"H3967\"* the|strong=\"H6440\"* width|strong=\"H7341\"* was|strong=\"H6440\"* fifty|strong=\"H2572\"* cubits." + }, + { + "verseNum": 3, + "text": "Opposite|strong=\"H5048\"* the|strong=\"H6440\"* twenty|strong=\"H6242\"* cubits which|strong=\"H7531\"* belonged to|strong=\"H6440\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, and|strong=\"H6242\"* opposite|strong=\"H5048\"* the|strong=\"H6440\"* pavement|strong=\"H7531\"* which|strong=\"H7531\"* belonged to|strong=\"H6440\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, was|strong=\"H6440\"* gallery against|strong=\"H6440\"* gallery in|strong=\"H6440\"* the|strong=\"H6440\"* three|strong=\"H7992\"* stories." + }, + { + "verseNum": 4, + "text": "Before|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* was|strong=\"H1870\"* a|strong=\"H3068\"* walk|strong=\"H4109\"* of|strong=\"H6440\"* ten|strong=\"H6235\"* cubits’ width|strong=\"H7341\"* inward|strong=\"H6442\"*, a|strong=\"H3068\"* way|strong=\"H1870\"* of|strong=\"H6440\"* one|strong=\"H7341\"* cubit; and|strong=\"H6440\"* their|strong=\"H6440\"* doors|strong=\"H6607\"* were|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 5, + "text": "Now|strong=\"H3588\"* the|strong=\"H3588\"* upper|strong=\"H5945\"* rooms|strong=\"H3957\"* were|strong=\"H2007\"* shorter|strong=\"H7114\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* galleries took away from these|strong=\"H2007\"* more|strong=\"H3588\"* than|strong=\"H3588\"* from the|strong=\"H3588\"* lower|strong=\"H8481\"* and|strong=\"H3957\"* the|strong=\"H3588\"* middle|strong=\"H8484\"* in|strong=\"H7114\"* the|strong=\"H3588\"* building|strong=\"H1146\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* were|strong=\"H2007\"* in|strong=\"H5921\"* three|strong=\"H8027\"* stories, and|strong=\"H5982\"* they|strong=\"H3588\"* didn’t have|strong=\"H3588\"* pillars|strong=\"H5982\"* as|strong=\"H3651\"* the|strong=\"H5921\"* pillars|strong=\"H5982\"* of|strong=\"H5982\"* the|strong=\"H5921\"* courts|strong=\"H2691\"*. Therefore|strong=\"H3651\"* the|strong=\"H5921\"* uppermost was|strong=\"H5982\"* set back more|strong=\"H3651\"* than|strong=\"H5921\"* the|strong=\"H5921\"* lowest|strong=\"H8481\"* and|strong=\"H5982\"* the|strong=\"H5921\"* middle|strong=\"H8484\"* from|strong=\"H5921\"* the|strong=\"H5921\"* ground." + }, + { + "verseNum": 7, + "text": "The|strong=\"H6440\"* wall|strong=\"H1447\"* that|strong=\"H2691\"* was|strong=\"H1870\"* outside|strong=\"H2351\"* by|strong=\"H1870\"* the|strong=\"H6440\"* side|strong=\"H5980\"* of|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"*, toward|strong=\"H1870\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* before|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"*, was|strong=\"H1870\"* fifty|strong=\"H2572\"* cubits long|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "For|strong=\"H3588\"* the|strong=\"H6440\"* length|strong=\"H5921\"* of|strong=\"H6440\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* that|strong=\"H3588\"* were|strong=\"H2009\"* in|strong=\"H5921\"* the|strong=\"H6440\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* was|strong=\"H6440\"* fifty|strong=\"H2572\"* cubits. Behold|strong=\"H2009\"*, those|strong=\"H5921\"* facing|strong=\"H6440\"* the|strong=\"H6440\"* temple|strong=\"H1964\"* were|strong=\"H2009\"* one|strong=\"H3588\"* hundred|strong=\"H3967\"* cubits." + }, + { + "verseNum": 9, + "text": "From|strong=\"H8478\"* under|strong=\"H8478\"* these|strong=\"H2007\"* rooms|strong=\"H3957\"* was|strong=\"H2691\"* the|strong=\"H8478\"* entry|strong=\"H3996\"* on|strong=\"H8478\"* the|strong=\"H8478\"* east|strong=\"H6921\"* side|strong=\"H2007\"*, as|strong=\"H8478\"* one goes into them|strong=\"H2007\"* from|strong=\"H8478\"* the|strong=\"H8478\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H6440\"* the|strong=\"H6440\"* thickness|strong=\"H7341\"* of|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H1444\"* of|strong=\"H6440\"* the|strong=\"H6440\"* court|strong=\"H2691\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, before|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H1508\"*, and|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H6440\"* building|strong=\"H1146\"*, there|strong=\"H6440\"* were|strong=\"H1870\"* rooms|strong=\"H3957\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H3605\"* way|strong=\"H1870\"* before|strong=\"H6440\"* them|strong=\"H6440\"* was|strong=\"H1870\"* like|strong=\"H3651\"* the|strong=\"H3605\"* appearance|strong=\"H4758\"* of|strong=\"H6440\"* the|strong=\"H3605\"* rooms|strong=\"H3957\"* which|strong=\"H3957\"* were|strong=\"H1870\"* toward|strong=\"H1870\"* the|strong=\"H3605\"* north|strong=\"H6828\"*. Their|strong=\"H3605\"* length and|strong=\"H4941\"* width|strong=\"H7341\"* were|strong=\"H1870\"* the|strong=\"H3605\"* same|strong=\"H3651\"*. All|strong=\"H3605\"* their|strong=\"H3605\"* exits|strong=\"H4161\"* had the|strong=\"H3605\"* same|strong=\"H3651\"* arrangement and|strong=\"H4941\"* doors|strong=\"H6607\"*." + }, + { + "verseNum": 12, + "text": "Like|strong=\"H1870\"* the|strong=\"H6440\"* doors|strong=\"H6607\"* of|strong=\"H7218\"* the|strong=\"H6440\"* rooms|strong=\"H3957\"* that|strong=\"H3957\"* were|strong=\"H7218\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* south|strong=\"H1864\"* was|strong=\"H7218\"* a|strong=\"H3068\"* door|strong=\"H6607\"* at|strong=\"H6440\"* the|strong=\"H6440\"* head|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H6440\"* way|strong=\"H1870\"*, even the|strong=\"H6440\"* way|strong=\"H1870\"* directly|strong=\"H1903\"* before|strong=\"H6440\"* the|strong=\"H6440\"* wall|strong=\"H1448\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, as|strong=\"H6440\"* one|strong=\"H6607\"* enters into them|strong=\"H6440\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H3068\"* me|strong=\"H6440\"*, “The|strong=\"H6440\"* north|strong=\"H6828\"* rooms|strong=\"H3957\"* and|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H1864\"* rooms|strong=\"H3957\"*, which|strong=\"H3068\"* are|strong=\"H3068\"* opposite|strong=\"H6440\"* the|strong=\"H6440\"* separate|strong=\"H1508\"* place|strong=\"H4725\"*, are|strong=\"H3068\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"*, where|strong=\"H8033\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* are|strong=\"H3068\"* near|strong=\"H7138\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* eat the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*. There|strong=\"H8033\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* lay|strong=\"H3240\"* the|strong=\"H6440\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, with|strong=\"H3068\"* the|strong=\"H6440\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H6440\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* trespass offering|strong=\"H4503\"*; for|strong=\"H3588\"* the|strong=\"H6440\"* place|strong=\"H4725\"* is|strong=\"H3068\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 14, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* priests|strong=\"H3548\"* enter in|strong=\"H3847\"*, then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* go|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H5971\"* the|strong=\"H3588\"* holy|strong=\"H6944\"* place|strong=\"H6944\"* into|strong=\"H3318\"* the|strong=\"H3588\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* until|strong=\"H3588\"* they|strong=\"H3588\"* lay|strong=\"H3240\"* their|strong=\"H3588\"* garments in|strong=\"H3847\"* which|strong=\"H5971\"* they|strong=\"H3588\"* minister|strong=\"H8334\"* there|strong=\"H8033\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* are|strong=\"H5971\"* holy|strong=\"H6944\"*. Then|strong=\"H3318\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other garments, and|strong=\"H3548\"* shall|strong=\"H3548\"* approach|strong=\"H7126\"* that|strong=\"H3588\"* which|strong=\"H5971\"* is|strong=\"H8033\"* for|strong=\"H3588\"* the|strong=\"H3588\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 15, + "text": "Now when|strong=\"H3615\"* he|strong=\"H1004\"* had finished|strong=\"H3615\"* measuring|strong=\"H4060\"* the|strong=\"H6440\"* inner|strong=\"H6442\"* house|strong=\"H1004\"*, he|strong=\"H1004\"* brought|strong=\"H3318\"* me|strong=\"H6440\"* out|strong=\"H3318\"* by|strong=\"H1870\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H1004\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*, and|strong=\"H1004\"* measured|strong=\"H4058\"* it|strong=\"H5439\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H5439\"* east|strong=\"H6921\"* side|strong=\"H5439\"* with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* five|strong=\"H2568\"* hundred reeds|strong=\"H7070\"*, with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H5439\"* north|strong=\"H6828\"* side|strong=\"H5439\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H7070\"* the|strong=\"H5439\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 18, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* on|strong=\"H4060\"* the|strong=\"H4058\"* south|strong=\"H1864\"* side|strong=\"H7307\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H7070\"* the|strong=\"H4058\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H2568\"* turned|strong=\"H5437\"* about|strong=\"H5437\"* to|strong=\"H3220\"* the|strong=\"H5437\"* west|strong=\"H3220\"* side|strong=\"H7307\"*, and|strong=\"H3967\"* measured|strong=\"H4058\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds|strong=\"H7070\"* with|strong=\"H3220\"* the|strong=\"H5437\"* measuring|strong=\"H4060\"* reed|strong=\"H7070\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H2568\"* measured|strong=\"H4058\"* it|strong=\"H5439\"* on|strong=\"H5439\"* the|strong=\"H5439\"* four sides|strong=\"H5439\"*. It|strong=\"H5439\"* had|strong=\"H6944\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* around|strong=\"H5439\"* it|strong=\"H5439\"*, the|strong=\"H5439\"* length five|strong=\"H2568\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, and|strong=\"H3967\"* the|strong=\"H5439\"* width|strong=\"H7341\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* cubits|strong=\"H2568\"*, to|strong=\"H7307\"* make a|strong=\"H3068\"* separation between|strong=\"H7307\"* that|strong=\"H6944\"* which|strong=\"H7307\"* was|strong=\"H7307\"* holy|strong=\"H6944\"* and|strong=\"H3967\"* that|strong=\"H6944\"* which|strong=\"H7307\"* was|strong=\"H7307\"* common|strong=\"H2455\"*." + } + ] + }, + { + "chapterNum": 43, + "verses": [ + { + "verseNum": 1, + "text": "Afterward he|strong=\"H3212\"* brought|strong=\"H3212\"* me|strong=\"H3212\"* to|strong=\"H3212\"* the|strong=\"H1870\"* gate|strong=\"H8179\"*, even the|strong=\"H1870\"* gate|strong=\"H8179\"* that|strong=\"H8179\"* looks toward|strong=\"H1870\"* the|strong=\"H1870\"* east|strong=\"H6921\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H1870\"* glory|strong=\"H3519\"* of|strong=\"H6963\"* the|strong=\"H1870\"* God of|strong=\"H6963\"* Israel|strong=\"H3478\"* came|strong=\"H3478\"* from|strong=\"H3478\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H6963\"* the|strong=\"H1870\"* east|strong=\"H6921\"*. His|strong=\"H3478\"* voice|strong=\"H6963\"* was|strong=\"H3478\"* like|strong=\"H3478\"* the|strong=\"H1870\"* sound|strong=\"H6963\"* of|strong=\"H6963\"* many|strong=\"H7227\"* waters|strong=\"H4325\"*; and|strong=\"H3478\"* the|strong=\"H1870\"* earth was|strong=\"H3478\"* illuminated with|strong=\"H3478\"* his|strong=\"H3478\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H7200\"* was|strong=\"H5892\"* like|strong=\"H4758\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H5892\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* which|strong=\"H5892\"* I|strong=\"H7200\"* saw|strong=\"H7200\"*, even according to|strong=\"H6440\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* when|strong=\"H7200\"* I|strong=\"H7200\"* came|strong=\"H5307\"* to|strong=\"H6440\"* destroy|strong=\"H7843\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; and|strong=\"H5892\"* the|strong=\"H6440\"* visions|strong=\"H7200\"* were|strong=\"H5892\"* like|strong=\"H4758\"* the|strong=\"H6440\"* vision|strong=\"H4758\"* that|strong=\"H7200\"* I|strong=\"H7200\"* saw|strong=\"H7200\"* by|strong=\"H5892\"* the|strong=\"H6440\"* river|strong=\"H5104\"* Chebar|strong=\"H3529\"*; and|strong=\"H5892\"* I|strong=\"H7200\"* fell|strong=\"H5307\"* on|strong=\"H5307\"* my|strong=\"H7200\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* came|strong=\"H3068\"* into|strong=\"H3519\"* the|strong=\"H6440\"* house|strong=\"H1004\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* which|strong=\"H3068\"* faces|strong=\"H6440\"* toward|strong=\"H1870\"* the|strong=\"H6440\"* east|strong=\"H6921\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5375\"* Spirit|strong=\"H7307\"* took|strong=\"H5375\"* me|strong=\"H1004\"* up|strong=\"H5375\"* and|strong=\"H3068\"* brought|strong=\"H5375\"* me|strong=\"H1004\"* into|strong=\"H3519\"* the|strong=\"H5375\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*; and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* the|strong=\"H5375\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H8085\"* heard|strong=\"H8085\"* one|strong=\"H1961\"* speaking|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H1696\"* out|strong=\"H1696\"* of|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* a|strong=\"H3068\"* man stood|strong=\"H5975\"* by|strong=\"H5975\"* me|strong=\"H1696\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H8033\"* said to|strong=\"H3478\"* me|strong=\"H3808\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, this|strong=\"H8432\"* is|strong=\"H8034\"* the|strong=\"H8432\"* place|strong=\"H4725\"* of|strong=\"H1121\"* my|strong=\"H2930\"* throne|strong=\"H3678\"* and|strong=\"H1121\"* the|strong=\"H8432\"* place|strong=\"H4725\"* of|strong=\"H1121\"* the|strong=\"H8432\"* soles|strong=\"H3709\"* of|strong=\"H1121\"* my|strong=\"H2930\"* feet|strong=\"H7272\"*, where|strong=\"H8033\"* I|strong=\"H3808\"* will|strong=\"H4428\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* forever|strong=\"H5769\"*. The|strong=\"H8432\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* will|strong=\"H4428\"* no|strong=\"H3808\"* more|strong=\"H5750\"* defile|strong=\"H2930\"* my|strong=\"H2930\"* holy|strong=\"H6944\"* name|strong=\"H8034\"*, neither|strong=\"H3808\"* they|strong=\"H1992\"* nor|strong=\"H3808\"* their|strong=\"H1992\"* kings|strong=\"H4428\"*, by|strong=\"H3478\"* their|strong=\"H1992\"* prostitution|strong=\"H2184\"* and|strong=\"H1121\"* by|strong=\"H3478\"* the|strong=\"H8432\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H1121\"* their|strong=\"H1992\"* kings|strong=\"H4428\"* in|strong=\"H3478\"* their|strong=\"H1992\"* high|strong=\"H1116\"* places|strong=\"H1116\"*;" + }, + { + "verseNum": 8, + "text": "in|strong=\"H6213\"* their|strong=\"H5414\"* setting|strong=\"H5414\"* of|strong=\"H8034\"* their|strong=\"H5414\"* threshold|strong=\"H5592\"* by|strong=\"H8034\"* my|strong=\"H5414\"* threshold|strong=\"H5592\"* and|strong=\"H6213\"* their|strong=\"H5414\"* door|strong=\"H5592\"* post|strong=\"H4201\"* beside my|strong=\"H5414\"* door|strong=\"H5592\"* post|strong=\"H4201\"*. There|strong=\"H8034\"* was|strong=\"H8034\"* a|strong=\"H3068\"* wall|strong=\"H7023\"* between me|strong=\"H5414\"* and|strong=\"H6213\"* them|strong=\"H5414\"*; and|strong=\"H6213\"* they|strong=\"H6213\"* have|strong=\"H5414\"* defiled|strong=\"H2930\"* my|strong=\"H5414\"* holy|strong=\"H6944\"* name|strong=\"H8034\"* by|strong=\"H8034\"* their|strong=\"H5414\"* abominations|strong=\"H8441\"* which|strong=\"H7023\"* they|strong=\"H6213\"* have|strong=\"H5414\"* committed|strong=\"H6213\"*. Therefore|strong=\"H6213\"* I|strong=\"H5414\"* have|strong=\"H5414\"* consumed them|strong=\"H5414\"* in|strong=\"H6213\"* my|strong=\"H5414\"* anger." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* let|strong=\"H6258\"* them|strong=\"H8432\"* put|strong=\"H7368\"* away|strong=\"H7368\"* their|strong=\"H8432\"* prostitution|strong=\"H2184\"*, and|strong=\"H4428\"* the|strong=\"H8432\"* dead|strong=\"H6297\"* bodies|strong=\"H6297\"* of|strong=\"H4428\"* their|strong=\"H8432\"* kings|strong=\"H4428\"* far|strong=\"H7368\"* from|strong=\"H4480\"* me|strong=\"H4480\"*. Then|strong=\"H6258\"* I|strong=\"H6258\"* will|strong=\"H4428\"* dwell|strong=\"H7931\"* among|strong=\"H8432\"* them|strong=\"H8432\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H5046\"*, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, show|strong=\"H5046\"* the|strong=\"H5046\"* house|strong=\"H1004\"* to|strong=\"H3478\"* the|strong=\"H5046\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, that|strong=\"H3478\"* they|strong=\"H3478\"* may|strong=\"H3478\"* be|strong=\"H1121\"* ashamed|strong=\"H3637\"* of|strong=\"H1121\"* their|strong=\"H5046\"* iniquities|strong=\"H5771\"*; and|strong=\"H1121\"* let|strong=\"H5046\"* them|strong=\"H5046\"* measure|strong=\"H4058\"* the|strong=\"H5046\"* pattern|strong=\"H8508\"*." + }, + { + "verseNum": 11, + "text": "If they|strong=\"H6213\"* are|strong=\"H5869\"* ashamed|strong=\"H3637\"* of|strong=\"H1004\"* all|strong=\"H3605\"* that|strong=\"H3045\"* they|strong=\"H6213\"* have|strong=\"H5869\"* done|strong=\"H6213\"*, make|strong=\"H6213\"* known|strong=\"H3045\"* to|strong=\"H6213\"* them|strong=\"H6213\"* the|strong=\"H3605\"* form|strong=\"H6699\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, its|strong=\"H3605\"* fashion|strong=\"H8498\"*, its|strong=\"H3605\"* exits|strong=\"H4161\"*, its|strong=\"H3605\"* entrances|strong=\"H4126\"*, its|strong=\"H3605\"* structure, all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H2708\"*, all|strong=\"H3605\"* its|strong=\"H3605\"* forms|strong=\"H6699\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* laws|strong=\"H8451\"*; and|strong=\"H1004\"* write|strong=\"H3789\"* it|strong=\"H6213\"* in|strong=\"H6213\"* their|strong=\"H3605\"* sight|strong=\"H5869\"*, that|strong=\"H3045\"* they|strong=\"H6213\"* may|strong=\"H6213\"* keep|strong=\"H8104\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* form|strong=\"H6699\"* of|strong=\"H1004\"* it|strong=\"H6213\"*, and|strong=\"H1004\"* all|strong=\"H3605\"* its|strong=\"H3605\"* ordinances|strong=\"H2708\"*, and|strong=\"H1004\"* do|strong=\"H6213\"* them|strong=\"H6213\"*." + }, + { + "verseNum": 12, + "text": "“This|strong=\"H2063\"* is|strong=\"H2009\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*. On|strong=\"H5921\"* the|strong=\"H3605\"* top|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* mountain|strong=\"H2022\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* limit|strong=\"H1366\"* around|strong=\"H5439\"* it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*. Behold|strong=\"H2009\"*, this|strong=\"H2063\"* is|strong=\"H2009\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 13, + "text": "“These|strong=\"H2088\"* are|strong=\"H8193\"* the|strong=\"H5439\"* measurements|strong=\"H4060\"* of|strong=\"H1366\"* the|strong=\"H5439\"* altar|strong=\"H4196\"* by|strong=\"H4196\"* cubits (the|strong=\"H5439\"* cubit+ 43:13 A normal cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters. A hand width is about 4.3 inches or 11 cm.* is|strong=\"H2088\"* a|strong=\"H3068\"* cubit and|strong=\"H4196\"* a|strong=\"H3068\"* hand|strong=\"H2948\"* width|strong=\"H7341\"*): the|strong=\"H5439\"* bottom|strong=\"H2436\"* shall|strong=\"H1366\"* be|strong=\"H8193\"* a|strong=\"H3068\"* cubit, and|strong=\"H4196\"* the|strong=\"H5439\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit, and|strong=\"H4196\"* its|strong=\"H5439\"* border|strong=\"H1366\"* around|strong=\"H5439\"* its|strong=\"H5439\"* edge|strong=\"H8193\"* a|strong=\"H3068\"* span|strong=\"H2239\"*;+ 43:13 A span is the length from the tip of a man’s thumb to the tip of his little finger when his hand is stretched out (about half a cubit, or 9 inches, or 22.8 cm.)* and|strong=\"H4196\"* this|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H8193\"* the|strong=\"H5439\"* base|strong=\"H2436\"* of|strong=\"H1366\"* the|strong=\"H5439\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 14, + "text": "From|strong=\"H5704\"* the|strong=\"H5704\"* bottom|strong=\"H2436\"* on|strong=\"H7341\"* the|strong=\"H5704\"* ground to|strong=\"H5704\"* the|strong=\"H5704\"* lower|strong=\"H8481\"* ledge|strong=\"H5835\"* shall|strong=\"H8147\"* be two|strong=\"H8147\"* cubits, and|strong=\"H1419\"* the|strong=\"H5704\"* width|strong=\"H7341\"* one|strong=\"H6996\"* cubit; and|strong=\"H1419\"* from|strong=\"H5704\"* the|strong=\"H5704\"* lesser|strong=\"H6996\"* ledge|strong=\"H5835\"* to|strong=\"H5704\"* the|strong=\"H5704\"* greater|strong=\"H1419\"* ledge|strong=\"H5835\"* shall|strong=\"H8147\"* be four cubits, and|strong=\"H1419\"* the|strong=\"H5704\"* width|strong=\"H7341\"* a|strong=\"H3068\"* cubit." + }, + { + "verseNum": 15, + "text": "The|strong=\"H4605\"* upper altar shall be|strong=\"H7161\"* four cubits; and|strong=\"H4605\"* from the|strong=\"H4605\"* altar hearth and|strong=\"H4605\"* upward|strong=\"H4605\"* there shall be|strong=\"H7161\"* four horns|strong=\"H7161\"*." + }, + { + "verseNum": 16, + "text": "The|strong=\"H8147\"* altar hearth shall|strong=\"H8147\"* be twelve|strong=\"H8147\"* cubits long by|strong=\"H8147\"* twelve|strong=\"H8147\"* wide|strong=\"H7341\"*, square|strong=\"H7251\"* in|strong=\"H8147\"* its four sides|strong=\"H7253\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H5439\"* ledge|strong=\"H5835\"* shall|strong=\"H1366\"* be fourteen|strong=\"H6240\"* cubits long by|strong=\"H4609\"* fourteen|strong=\"H6240\"* wide|strong=\"H7341\"* in its|strong=\"H5439\"* four sides|strong=\"H5439\"*; and|strong=\"H6437\"* the|strong=\"H5439\"* border|strong=\"H1366\"* about|strong=\"H5439\"* it|strong=\"H5439\"* shall|strong=\"H1366\"* be half|strong=\"H2677\"* a|strong=\"H3068\"* cubit; and|strong=\"H6437\"* its|strong=\"H5439\"* bottom|strong=\"H2436\"* shall|strong=\"H1366\"* be a|strong=\"H3068\"* cubit around|strong=\"H5439\"*; and|strong=\"H6437\"* its|strong=\"H5439\"* steps|strong=\"H4609\"* shall|strong=\"H1366\"* look|strong=\"H6437\"* toward|strong=\"H6437\"* the|strong=\"H5439\"* east|strong=\"H6921\"*.”" + }, + { + "verseNum": 18, + "text": "He|strong=\"H3117\"* said to|strong=\"H5927\"* me|strong=\"H5921\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘These|strong=\"H6213\"* are|strong=\"H3117\"* the|strong=\"H5921\"* ordinances|strong=\"H2708\"* of|strong=\"H1121\"* the|strong=\"H5921\"* altar|strong=\"H4196\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* when|strong=\"H3117\"* they|strong=\"H3117\"* make|strong=\"H6213\"* it|strong=\"H5921\"*, to|strong=\"H5927\"* offer|strong=\"H5927\"* burnt|strong=\"H5930\"* offerings|strong=\"H5930\"* on|strong=\"H5921\"* it|strong=\"H5921\"*, and|strong=\"H1121\"* to|strong=\"H5927\"* sprinkle|strong=\"H2236\"* blood|strong=\"H1818\"* on|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "You|strong=\"H5414\"* shall|strong=\"H3548\"* give|strong=\"H5414\"* to|strong=\"H5414\"* the|strong=\"H5002\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H1992\"* of|strong=\"H1121\"* the|strong=\"H5002\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* are|strong=\"H1992\"* near|strong=\"H7138\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, to|strong=\"H5414\"* minister|strong=\"H8334\"* to|strong=\"H5414\"* me|strong=\"H5414\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, ‘a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* for|strong=\"H1121\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* shall|strong=\"H1366\"* take|strong=\"H3947\"* of|strong=\"H1366\"* its|strong=\"H5414\"* blood|strong=\"H1818\"* and|strong=\"H1818\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* its|strong=\"H5414\"* four horns|strong=\"H7161\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1366\"* the|strong=\"H5921\"* ledge|strong=\"H5835\"*, and|strong=\"H1818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* all|strong=\"H5439\"* around|strong=\"H5439\"*. You|strong=\"H5414\"* shall|strong=\"H1366\"* cleanse|strong=\"H2398\"* it|strong=\"H5414\"* and|strong=\"H1818\"* make|strong=\"H5414\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* it|strong=\"H5414\"* that|strong=\"H5414\"* way|strong=\"H5921\"*." + }, + { + "verseNum": 21, + "text": "You|strong=\"H3947\"* shall|strong=\"H1004\"* also take|strong=\"H3947\"* the|strong=\"H3947\"* bull|strong=\"H6499\"* of|strong=\"H1004\"* the|strong=\"H3947\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*, and|strong=\"H1004\"* it|strong=\"H3947\"* shall|strong=\"H1004\"* be|strong=\"H1004\"* burned|strong=\"H8313\"* in|strong=\"H1004\"* the|strong=\"H3947\"* appointed|strong=\"H4662\"* place|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H3947\"* house|strong=\"H1004\"*, outside|strong=\"H2351\"* of|strong=\"H1004\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 22, + "text": "“On|strong=\"H3117\"* the|strong=\"H3117\"* second|strong=\"H8145\"* day|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H4196\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*; and|strong=\"H3117\"* they|strong=\"H3117\"* shall|strong=\"H3117\"* cleanse|strong=\"H2398\"* the|strong=\"H3117\"* altar|strong=\"H4196\"*, as|strong=\"H3117\"* they|strong=\"H3117\"* cleansed|strong=\"H2398\"* it|strong=\"H7126\"* with|strong=\"H3117\"* the|strong=\"H3117\"* bull|strong=\"H6499\"*." + }, + { + "verseNum": 23, + "text": "When|strong=\"H3615\"* you|strong=\"H4480\"* have|strong=\"H1121\"* finished|strong=\"H3615\"* cleansing|strong=\"H2398\"* it|strong=\"H7126\"*, you|strong=\"H4480\"* shall|strong=\"H1121\"* offer|strong=\"H7126\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* and|strong=\"H1121\"* a|strong=\"H3068\"* ram out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* flock|strong=\"H6629\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 24, + "text": "You|strong=\"H6440\"* shall|strong=\"H3548\"* bring|strong=\"H7126\"* them|strong=\"H5921\"* near|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* cast|strong=\"H7993\"* salt|strong=\"H4417\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* shall|strong=\"H3548\"* offer|strong=\"H7126\"* them|strong=\"H5921\"* up|strong=\"H5927\"* for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 25, + "text": "“Seven|strong=\"H7651\"* days|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H1121\"* prepare|strong=\"H6213\"* every|strong=\"H3117\"* day|strong=\"H3117\"* a|strong=\"H3068\"* goat|strong=\"H8163\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*. They|strong=\"H3117\"* shall|strong=\"H1121\"* also|strong=\"H6213\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* and|strong=\"H1121\"* a|strong=\"H3068\"* ram out|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H6213\"* flock|strong=\"H6629\"*, without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 26, + "text": "Seven|strong=\"H7651\"* days|strong=\"H3117\"* shall|strong=\"H3117\"* they|strong=\"H3117\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H3027\"* the|strong=\"H3117\"* altar|strong=\"H4196\"* and|strong=\"H3117\"* purify|strong=\"H2891\"* it|strong=\"H3117\"*. So|strong=\"H3027\"* shall|strong=\"H3117\"* they|strong=\"H3117\"* consecrate|strong=\"H4390\"* it|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "When|strong=\"H1961\"* they|strong=\"H3117\"* have|strong=\"H1961\"* accomplished|strong=\"H3615\"* the|strong=\"H5002\"* days|strong=\"H3117\"*, it|strong=\"H5921\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* that|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H5002\"* eighth|strong=\"H8066\"* day|strong=\"H3117\"* and|strong=\"H3117\"* onward|strong=\"H1973\"*, the|strong=\"H5002\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* make|strong=\"H6213\"* your|strong=\"H5921\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* on|strong=\"H5921\"* the|strong=\"H5002\"* altar|strong=\"H4196\"* and|strong=\"H3117\"* your|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*. Then|strong=\"H1961\"* I|strong=\"H3117\"* will|strong=\"H1961\"* accept|strong=\"H7521\"* you|strong=\"H5921\"*,’ says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*.”" + } + ] + }, + { + "chapterNum": 44, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H7725\"* he|strong=\"H1931\"* brought|strong=\"H7725\"* me|strong=\"H7725\"* back|strong=\"H7725\"* by|strong=\"H1870\"* the|strong=\"H7725\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H7725\"* outer|strong=\"H2435\"* gate|strong=\"H8179\"* of|strong=\"H1870\"* the|strong=\"H7725\"* sanctuary|strong=\"H4720\"*, which|strong=\"H1931\"* looks toward|strong=\"H1870\"* the|strong=\"H7725\"* east|strong=\"H6921\"*; and|strong=\"H7725\"* it|strong=\"H1931\"* was|strong=\"H1931\"* shut|strong=\"H5462\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H1961\"*, “This|strong=\"H2088\"* gate|strong=\"H8179\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*. It|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*, no|strong=\"H3808\"* man|strong=\"H2088\"* shall|strong=\"H3068\"* enter in|strong=\"H3478\"* by|strong=\"H3068\"* it|strong=\"H3588\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3588\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, has|strong=\"H3068\"* entered in|strong=\"H3478\"* by|strong=\"H3068\"* it|strong=\"H3588\"*. Therefore|strong=\"H3588\"* it|strong=\"H3588\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* shut|strong=\"H5462\"*." + }, + { + "verseNum": 3, + "text": "As|strong=\"H3068\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*, he|strong=\"H1931\"* shall|strong=\"H3068\"* sit|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H1931\"* as|strong=\"H3068\"* prince|strong=\"H5387\"* to|strong=\"H3318\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*. He|strong=\"H1931\"* shall|strong=\"H3068\"* enter by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* porch of|strong=\"H3068\"* the|strong=\"H6440\"* gate|strong=\"H8179\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* same|strong=\"H1931\"* way|strong=\"H1870\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H2009\"* he|strong=\"H3068\"* brought|strong=\"H3068\"* me|strong=\"H6440\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H1004\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"* before|strong=\"H6440\"* the|strong=\"H6440\"* house|strong=\"H1004\"*; and|strong=\"H3068\"* I|strong=\"H2009\"* looked|strong=\"H7200\"*, and|strong=\"H3068\"* behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"* filled|strong=\"H4390\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*; so|strong=\"H7200\"* I|strong=\"H2009\"* fell|strong=\"H5307\"* on|strong=\"H1870\"* my|strong=\"H3068\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, mark|strong=\"H7760\"* well|strong=\"H5869\"*, and|strong=\"H1121\"* see|strong=\"H7200\"* with|strong=\"H1004\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, and|strong=\"H1121\"* hear|strong=\"H8085\"* with|strong=\"H1004\"* your|strong=\"H3068\"* ears all|strong=\"H3605\"* that|strong=\"H7200\"* I|strong=\"H7760\"* tell|strong=\"H1696\"* you|strong=\"H3605\"* concerning|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* ordinances|strong=\"H2708\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* and|strong=\"H1121\"* all|strong=\"H3605\"* its|strong=\"H3605\"* laws|strong=\"H8451\"*; and|strong=\"H1121\"* mark|strong=\"H7760\"* well|strong=\"H5869\"* the|strong=\"H3605\"* entrance|strong=\"H3996\"* of|strong=\"H1121\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, with|strong=\"H1004\"* every|strong=\"H3605\"* exit of|strong=\"H1121\"* the|strong=\"H3605\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3605\"* shall|strong=\"H3478\"* tell|strong=\"H3605\"* the|strong=\"H3605\"* rebellious|strong=\"H4805\"*, even|strong=\"H3541\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, ‘The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “You|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, let that|strong=\"H3605\"* be|strong=\"H3478\"* enough|strong=\"H7227\"* of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*," + }, + { + "verseNum": 7, + "text": "in|strong=\"H1004\"* that|strong=\"H3605\"* you|strong=\"H3605\"* have|strong=\"H1961\"* brought|strong=\"H7126\"* in|strong=\"H1004\"* foreigners|strong=\"H1121\"*, uncircumcised|strong=\"H6189\"* in|strong=\"H1004\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* uncircumcised|strong=\"H6189\"* in|strong=\"H1004\"* flesh|strong=\"H1320\"*, to|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1004\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, to|strong=\"H1961\"* profane|strong=\"H2490\"* it|strong=\"H7126\"*, even my|strong=\"H3605\"* house|strong=\"H1004\"*, when|strong=\"H1961\"* you|strong=\"H3605\"* offer|strong=\"H7126\"* my|strong=\"H3605\"* bread|strong=\"H3899\"*, the|strong=\"H3605\"* fat|strong=\"H2459\"* and|strong=\"H1121\"* the|strong=\"H3605\"* blood|strong=\"H1818\"*; and|strong=\"H1121\"* they|strong=\"H3605\"* have|strong=\"H1961\"* broken|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"*, to|strong=\"H1961\"* add to|strong=\"H1961\"* all|strong=\"H3605\"* your|strong=\"H3605\"* abominations|strong=\"H8441\"*." + }, + { + "verseNum": 8, + "text": "You|strong=\"H7760\"* have|strong=\"H3808\"* not|strong=\"H3808\"* performed|strong=\"H7760\"* the|strong=\"H8104\"* duty|strong=\"H4931\"* of|strong=\"H6944\"* my|strong=\"H8104\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*; but|strong=\"H3808\"* you|strong=\"H7760\"* have|strong=\"H3808\"* set|strong=\"H7760\"* performers of|strong=\"H6944\"* my|strong=\"H8104\"* duty|strong=\"H4931\"* in|strong=\"H3808\"* my|strong=\"H8104\"* sanctuary|strong=\"H6944\"* for|strong=\"H3808\"* yourselves.”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*, “No|strong=\"H3808\"* foreigner|strong=\"H1121\"*, uncircumcised|strong=\"H6189\"* in|strong=\"H3478\"* heart|strong=\"H3820\"* and|strong=\"H1121\"* uncircumcised|strong=\"H6189\"* in|strong=\"H3478\"* flesh|strong=\"H1320\"*, shall|strong=\"H1121\"* enter into|strong=\"H8432\"* my|strong=\"H3605\"* sanctuary|strong=\"H4720\"*, of|strong=\"H1121\"* any|strong=\"H3605\"* foreigners|strong=\"H1121\"* who|strong=\"H3605\"* are|strong=\"H1121\"* among|strong=\"H8432\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 10, + "text": "“‘“But|strong=\"H3588\"* the|strong=\"H5921\"* Levites|strong=\"H3881\"* who|strong=\"H3478\"* went|strong=\"H3478\"* far|strong=\"H7368\"* from|strong=\"H5921\"* me|strong=\"H5921\"* when|strong=\"H3588\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*, who|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"* from|strong=\"H5921\"* me|strong=\"H5921\"* after|strong=\"H5921\"* their|strong=\"H5375\"* idols|strong=\"H1544\"*, they|strong=\"H3588\"* will|strong=\"H3478\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 11, + "text": "Yet|strong=\"H5975\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* ministers|strong=\"H8334\"* in|strong=\"H1004\"* my|strong=\"H1961\"* sanctuary|strong=\"H4720\"*, having|strong=\"H1961\"* oversight|strong=\"H6486\"* at|strong=\"H1004\"* the|strong=\"H6440\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* ministering|strong=\"H8334\"* in|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"*. They|strong=\"H1992\"* shall|strong=\"H5971\"* kill|strong=\"H7819\"* the|strong=\"H6440\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H1004\"* the|strong=\"H6440\"* sacrifice|strong=\"H2077\"* for|strong=\"H6440\"* the|strong=\"H6440\"* people|strong=\"H5971\"*, and|strong=\"H1004\"* they|strong=\"H1992\"* shall|strong=\"H5971\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* them|strong=\"H1992\"* to|strong=\"H1961\"* minister|strong=\"H8334\"* to|strong=\"H1961\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "Because|strong=\"H5921\"* they|strong=\"H3651\"* ministered|strong=\"H8334\"* to|strong=\"H3478\"* them|strong=\"H5921\"* before|strong=\"H6440\"* their|strong=\"H5375\"* idols|strong=\"H1544\"*, and|strong=\"H3478\"* became|strong=\"H1961\"* a|strong=\"H3068\"* stumbling|strong=\"H4383\"* block|strong=\"H4383\"* of|strong=\"H1004\"* iniquity|strong=\"H5771\"* to|strong=\"H3478\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H1961\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H5921\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, “and|strong=\"H3478\"* they|strong=\"H3651\"* will|strong=\"H1961\"* bear|strong=\"H5375\"* their|strong=\"H5375\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 13, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6213\"* me|strong=\"H5921\"*, to|strong=\"H6213\"* execute|strong=\"H6213\"* the|strong=\"H3605\"* office of|strong=\"H5921\"* priest|strong=\"H3547\"* to|strong=\"H6213\"* me|strong=\"H5921\"*, nor|strong=\"H3808\"* to|strong=\"H6213\"* come|strong=\"H5066\"* near|strong=\"H5066\"* to|strong=\"H6213\"* any|strong=\"H3605\"* of|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* things|strong=\"H6944\"*, to|strong=\"H6213\"* the|strong=\"H3605\"* things|strong=\"H6944\"* that|strong=\"H3605\"* are|strong=\"H6213\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*; but|strong=\"H3808\"* they|strong=\"H3808\"* will|strong=\"H3808\"* bear|strong=\"H5375\"* their|strong=\"H3605\"* shame|strong=\"H3639\"* and|strong=\"H6213\"* their|strong=\"H3605\"* abominations|strong=\"H8441\"* which|strong=\"H3605\"* they|strong=\"H3808\"* have|strong=\"H3605\"* committed|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "Yet|strong=\"H3605\"* I|strong=\"H5414\"* will|strong=\"H1004\"* make|strong=\"H6213\"* them|strong=\"H5414\"* performers|strong=\"H6213\"* of|strong=\"H1004\"* the|strong=\"H3605\"* duty|strong=\"H4931\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"*, for|strong=\"H6213\"* all|strong=\"H3605\"* its|strong=\"H3605\"* service|strong=\"H5656\"* and|strong=\"H1004\"* for|strong=\"H6213\"* all|strong=\"H3605\"* that|strong=\"H3605\"* will|strong=\"H1004\"* be|strong=\"H5414\"* done|strong=\"H6213\"* therein." + }, + { + "verseNum": 15, + "text": "“‘“But|strong=\"H1992\"* the|strong=\"H6440\"* Levitical|strong=\"H3881\"* priests|strong=\"H3548\"*, the|strong=\"H6440\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* performed|strong=\"H8104\"* the|strong=\"H6440\"* duty|strong=\"H4931\"* of|strong=\"H1121\"* my|strong=\"H8104\"* sanctuary|strong=\"H4720\"* when|strong=\"H1121\"* the|strong=\"H6440\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"* from|strong=\"H6440\"* me|strong=\"H6440\"*, shall|strong=\"H3548\"* come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3478\"* me|strong=\"H6440\"* to|strong=\"H3478\"* minister|strong=\"H8334\"* to|strong=\"H3478\"* me|strong=\"H6440\"*. They|strong=\"H1992\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* me|strong=\"H6440\"* to|strong=\"H3478\"* offer|strong=\"H7126\"* to|strong=\"H3478\"* me|strong=\"H6440\"* the|strong=\"H6440\"* fat|strong=\"H2459\"* and|strong=\"H1121\"* the|strong=\"H6440\"* blood|strong=\"H1818\"*,” says|strong=\"H5002\"* the|strong=\"H6440\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“They|strong=\"H1992\"* shall enter into my|strong=\"H8104\"* sanctuary|strong=\"H4720\"*, and|strong=\"H7126\"* they|strong=\"H1992\"* shall come|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H8104\"* my|strong=\"H8104\"* table|strong=\"H7979\"*, to|strong=\"H8104\"* minister|strong=\"H8334\"* to|strong=\"H8104\"* me|strong=\"H8104\"*, and|strong=\"H7126\"* they|strong=\"H1992\"* shall keep|strong=\"H8104\"* my|strong=\"H8104\"* instruction." + }, + { + "verseNum": 17, + "text": "“‘“It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* that|strong=\"H2691\"* when|strong=\"H1961\"* they|strong=\"H3808\"* enter|strong=\"H5927\"* in|strong=\"H5921\"* at|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, they|strong=\"H3808\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H1004\"* linen|strong=\"H6593\"* garments. No|strong=\"H3808\"* wool|strong=\"H6785\"* shall|strong=\"H1004\"* come|strong=\"H5927\"* on|strong=\"H5921\"* them|strong=\"H5921\"* while|strong=\"H1961\"* they|strong=\"H3808\"* minister|strong=\"H8334\"* in|strong=\"H5921\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, and|strong=\"H1004\"* within|strong=\"H1004\"*." + }, + { + "verseNum": 18, + "text": "They|strong=\"H3808\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* linen|strong=\"H6593\"* turbans|strong=\"H6287\"* on|strong=\"H5921\"* their|strong=\"H5921\"* heads|strong=\"H7218\"*, and|strong=\"H7218\"* shall|strong=\"H3808\"* have|strong=\"H1961\"* linen|strong=\"H6593\"* trousers on|strong=\"H5921\"* their|strong=\"H5921\"* waists. They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* clothe themselves|strong=\"H7218\"* with|strong=\"H5921\"* anything|strong=\"H3808\"* that|strong=\"H3808\"* makes them|strong=\"H5921\"* sweat|strong=\"H3154\"*." + }, + { + "verseNum": 19, + "text": "When|strong=\"H3318\"* they|strong=\"H1992\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, even|strong=\"H3808\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* to|strong=\"H3318\"* the|strong=\"H3318\"* people|strong=\"H5971\"*, they|strong=\"H1992\"* shall|strong=\"H5971\"* put|strong=\"H3847\"* off|strong=\"H6584\"* their|strong=\"H1992\"* garments in|strong=\"H3847\"* which|strong=\"H1992\"* they|strong=\"H1992\"* minister|strong=\"H8334\"* and|strong=\"H5971\"* lay|strong=\"H3240\"* them|strong=\"H1992\"* in|strong=\"H3847\"* the|strong=\"H3318\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"*. They|strong=\"H1992\"* shall|strong=\"H5971\"* put|strong=\"H3847\"* on|strong=\"H3847\"* other garments, that|strong=\"H5971\"* they|strong=\"H1992\"* not|strong=\"H3808\"* sanctify|strong=\"H6942\"* the|strong=\"H3318\"* people|strong=\"H5971\"* with|strong=\"H3847\"* their|strong=\"H1992\"* garments." + }, + { + "verseNum": 20, + "text": "“‘“They|strong=\"H3808\"* shall|strong=\"H3808\"* not|strong=\"H3808\"* shave|strong=\"H1548\"* their|strong=\"H7971\"* heads|strong=\"H7218\"*, or|strong=\"H3808\"* allow their|strong=\"H7971\"* locks|strong=\"H6545\"* to|strong=\"H7971\"* grow|strong=\"H7971\"* long|strong=\"H7971\"*. They|strong=\"H3808\"* shall|strong=\"H3808\"* only|strong=\"H3697\"* cut|strong=\"H1548\"* off|strong=\"H1548\"* the|strong=\"H7971\"* hair|strong=\"H7218\"* of|strong=\"H7218\"* their|strong=\"H7971\"* heads|strong=\"H7218\"*." + }, + { + "verseNum": 21, + "text": "None|strong=\"H3808\"* of|strong=\"H3605\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* when they|strong=\"H3808\"* enter into the|strong=\"H3605\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 22, + "text": "They|strong=\"H3588\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* take|strong=\"H3947\"* for|strong=\"H3588\"* their|strong=\"H3947\"* wives a|strong=\"H3068\"* widow, or|strong=\"H3808\"* her|strong=\"H3947\"* who|strong=\"H3548\"* is|strong=\"H3478\"* put|strong=\"H3947\"* away|strong=\"H3947\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* virgins|strong=\"H1330\"* of|strong=\"H1004\"* the|strong=\"H3588\"* offspring|strong=\"H2233\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, or|strong=\"H3808\"* a|strong=\"H3068\"* widow who|strong=\"H3548\"* is|strong=\"H3478\"* the|strong=\"H3588\"* widow of|strong=\"H1004\"* a|strong=\"H3068\"* priest|strong=\"H3548\"*." + }, + { + "verseNum": 23, + "text": "They|strong=\"H5971\"* shall|strong=\"H5971\"* teach|strong=\"H3384\"* my|strong=\"H3045\"* people|strong=\"H5971\"* the|strong=\"H3045\"* difference between|strong=\"H3045\"* the|strong=\"H3045\"* holy|strong=\"H6944\"* and|strong=\"H5971\"* the|strong=\"H3045\"* common|strong=\"H2455\"*, and|strong=\"H5971\"* cause|strong=\"H5971\"* them|strong=\"H3384\"* to|strong=\"H5971\"* discern|strong=\"H3045\"* between|strong=\"H3045\"* the|strong=\"H3045\"* unclean|strong=\"H2931\"* and|strong=\"H5971\"* the|strong=\"H3045\"* clean|strong=\"H2889\"*." + }, + { + "verseNum": 24, + "text": "“‘“In|strong=\"H5921\"* a|strong=\"H3068\"* controversy|strong=\"H7379\"* they|strong=\"H1992\"* shall|strong=\"H8451\"* stand|strong=\"H5975\"* to|strong=\"H5921\"* judge|strong=\"H8199\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* judge|strong=\"H8199\"* it|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H5921\"* my|strong=\"H8104\"* ordinances|strong=\"H4941\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* laws|strong=\"H8451\"* and|strong=\"H4941\"* my|strong=\"H8104\"* statutes|strong=\"H2708\"* in|strong=\"H5921\"* all|strong=\"H3605\"* my|strong=\"H8104\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*. They|strong=\"H1992\"* shall|strong=\"H8451\"* make|strong=\"H4941\"* my|strong=\"H8104\"* Sabbaths|strong=\"H7676\"* holy|strong=\"H6942\"*." + }, + { + "verseNum": 25, + "text": "“‘“They|strong=\"H3588\"* shall|strong=\"H1121\"* go|strong=\"H1961\"* in|strong=\"H4191\"* to|strong=\"H4191\"* no|strong=\"H3808\"* dead|strong=\"H4191\"* person to|strong=\"H4191\"* defile|strong=\"H2930\"* themselves; but|strong=\"H3588\"* for|strong=\"H3588\"* father|strong=\"H1121\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* mother, or|strong=\"H3808\"* for|strong=\"H3588\"* son|strong=\"H1121\"*, or|strong=\"H3808\"* for|strong=\"H3588\"* daughter|strong=\"H1323\"*, for|strong=\"H3588\"* brother, or|strong=\"H3808\"* for|strong=\"H3588\"* sister who|strong=\"H1121\"* has|strong=\"H1961\"* had|strong=\"H1961\"* no|strong=\"H3808\"* husband, they|strong=\"H3588\"* may|strong=\"H1961\"* defile|strong=\"H2930\"* themselves." + }, + { + "verseNum": 26, + "text": "After|strong=\"H3117\"* he|strong=\"H3117\"* is|strong=\"H3117\"* cleansed|strong=\"H2893\"*, they|strong=\"H3117\"* shall|strong=\"H3117\"* reckon|strong=\"H5608\"* to|strong=\"H3117\"* him|strong=\"H5608\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 27, + "text": "In|strong=\"H3117\"* the|strong=\"H5002\"* day|strong=\"H3117\"* that|strong=\"H3117\"* he|strong=\"H3117\"* goes into the|strong=\"H5002\"* sanctuary|strong=\"H6944\"*, into the|strong=\"H5002\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*, to|strong=\"H3117\"* minister|strong=\"H8334\"* in|strong=\"H3117\"* the|strong=\"H5002\"* sanctuary|strong=\"H6944\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* offer|strong=\"H7126\"* his|strong=\"H7126\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 28, + "text": "“‘They|strong=\"H3808\"* shall|strong=\"H3478\"* have|strong=\"H1961\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"*: I|strong=\"H5414\"* am|strong=\"H1961\"* their|strong=\"H5414\"* inheritance|strong=\"H5159\"*; and|strong=\"H3478\"* you|strong=\"H5414\"* shall|strong=\"H3478\"* give|strong=\"H5414\"* them|strong=\"H5414\"* no|strong=\"H3808\"* possession|strong=\"H5159\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*. I|strong=\"H5414\"* am|strong=\"H1961\"* their|strong=\"H5414\"* possession|strong=\"H5159\"*." + }, + { + "verseNum": 29, + "text": "They|strong=\"H1992\"* shall|strong=\"H3478\"* eat the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* trespass offering|strong=\"H4503\"*; and|strong=\"H3478\"* every|strong=\"H3605\"* devoted|strong=\"H2764\"* thing|strong=\"H2764\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* theirs|strong=\"H1992\"*." + }, + { + "verseNum": 30, + "text": "The|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H1004\"* all|strong=\"H3605\"* the|strong=\"H3605\"* first|strong=\"H7225\"* fruits|strong=\"H1061\"* of|strong=\"H1004\"* every|strong=\"H3605\"* thing|strong=\"H3605\"*, and|strong=\"H1004\"* every|strong=\"H3605\"* offering|strong=\"H8641\"* of|strong=\"H1004\"* everything|strong=\"H3605\"*, of|strong=\"H1004\"* all|strong=\"H3605\"* your|strong=\"H3605\"* offerings|strong=\"H8641\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H3605\"* priest|strong=\"H3548\"*. You|strong=\"H5414\"* shall|strong=\"H3548\"* also give|strong=\"H5414\"* to|strong=\"H1961\"* the|strong=\"H3605\"* priests|strong=\"H3548\"* the|strong=\"H3605\"* first|strong=\"H7225\"* of|strong=\"H1004\"* your|strong=\"H3605\"* dough|strong=\"H6182\"*, to|strong=\"H1961\"* cause|strong=\"H5414\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"* to|strong=\"H1961\"* rest|strong=\"H5117\"* on|strong=\"H5117\"* your|strong=\"H3605\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 31, + "text": "The|strong=\"H3605\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* eat of|strong=\"H4480\"* anything|strong=\"H3605\"* that|strong=\"H3605\"* dies|strong=\"H5038\"* of|strong=\"H4480\"* itself|strong=\"H5038\"* or|strong=\"H3808\"* is|strong=\"H3605\"* torn|strong=\"H2966\"*, whether|strong=\"H4480\"* it|strong=\"H5038\"* is|strong=\"H3605\"* bird|strong=\"H5775\"* or|strong=\"H3808\"* animal|strong=\"H2966\"*." + } + ] + }, + { + "chapterNum": 45, + "verses": [ + { + "verseNum": 1, + "text": "“‘“Moreover, when|strong=\"H3068\"* you|strong=\"H3605\"* divide|strong=\"H5307\"* by|strong=\"H3068\"* lot|strong=\"H5307\"* the|strong=\"H3605\"* land|strong=\"H5159\"* for|strong=\"H3068\"* inheritance|strong=\"H5159\"*, you|strong=\"H3605\"* shall|strong=\"H3068\"* offer|strong=\"H7311\"* an|strong=\"H4480\"* offering|strong=\"H8641\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, a|strong=\"H3068\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H5159\"*. The|strong=\"H3605\"* length shall|strong=\"H3068\"* be|strong=\"H3068\"* the|strong=\"H3605\"* length of|strong=\"H3068\"* twenty-five|strong=\"H6242\"* thousand reeds, and|strong=\"H3068\"* the|strong=\"H3605\"* width|strong=\"H7341\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* ten|strong=\"H6235\"* thousand. It|strong=\"H1931\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* holy|strong=\"H6944\"* in|strong=\"H3068\"* all|strong=\"H3605\"* its|strong=\"H3605\"* border|strong=\"H1366\"* all|strong=\"H3605\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 2, + "text": "Of|strong=\"H6944\"* this|strong=\"H2088\"* there|strong=\"H1961\"* shall|strong=\"H2088\"* be|strong=\"H1961\"* a|strong=\"H3068\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* by|strong=\"H1961\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"* square|strong=\"H7251\"* for|strong=\"H1961\"* the|strong=\"H5439\"* holy|strong=\"H6944\"* place|strong=\"H6944\"*, and|strong=\"H3967\"* fifty|strong=\"H2572\"* cubits|strong=\"H2568\"*+ 45:2 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* for|strong=\"H1961\"* its|strong=\"H5439\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"* all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 3, + "text": "Of|strong=\"H4480\"* this|strong=\"H2063\"* measure|strong=\"H4058\"* you|strong=\"H4480\"* shall|strong=\"H2063\"* measure|strong=\"H4058\"* a|strong=\"H3068\"* length of|strong=\"H4480\"* twenty-five|strong=\"H6242\"* thousand, and|strong=\"H6242\"* a|strong=\"H3068\"* width|strong=\"H7341\"* of|strong=\"H4480\"* ten|strong=\"H6235\"* thousand. In|strong=\"H6235\"* it|strong=\"H1961\"* shall|strong=\"H2063\"* be|strong=\"H1961\"* the|strong=\"H4480\"* sanctuary|strong=\"H6944\"*, which|strong=\"H4720\"* is|strong=\"H1961\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H3068\"* land|strong=\"H4725\"*; it|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* for|strong=\"H3068\"* the|strong=\"H3068\"* priests|strong=\"H3548\"*, the|strong=\"H3068\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H3068\"* sanctuary|strong=\"H6944\"*, who|strong=\"H1931\"* come|strong=\"H1961\"* near|strong=\"H7131\"* to|strong=\"H3068\"* minister|strong=\"H8334\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. It|strong=\"H1931\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H4725\"* for|strong=\"H3068\"* their|strong=\"H3068\"* houses|strong=\"H1004\"* and|strong=\"H3068\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* place|strong=\"H4725\"* for|strong=\"H3068\"* the|strong=\"H3068\"* sanctuary|strong=\"H6944\"*." + }, + { + "verseNum": 5, + "text": "Twenty-five|strong=\"H6242\"* thousand cubits|strong=\"H2568\"* in|strong=\"H1004\"* length and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand in|strong=\"H1004\"* width|strong=\"H7341\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*, the|strong=\"H1961\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H1961\"* house|strong=\"H1004\"*, as|strong=\"H1961\"* a|strong=\"H3068\"* possession|strong=\"H1992\"* for|strong=\"H1004\"* themselves|strong=\"H1992\"*, for|strong=\"H1004\"* twenty|strong=\"H6242\"* rooms|strong=\"H3957\"*." + }, + { + "verseNum": 6, + "text": "“‘“You|strong=\"H5414\"* shall|strong=\"H3478\"* appoint|strong=\"H5414\"* the|strong=\"H3605\"* possession of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* five|strong=\"H2568\"* thousand cubits|strong=\"H2568\"* wide|strong=\"H7341\"* and|strong=\"H3478\"* twenty-five|strong=\"H6242\"* thousand long|strong=\"H3605\"*, side|strong=\"H5980\"* by|strong=\"H3478\"* side|strong=\"H5980\"* with|strong=\"H1004\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* of|strong=\"H1004\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* portion|strong=\"H6944\"*. It|strong=\"H5414\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* for|strong=\"H1004\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 7, + "text": "“‘“What|strong=\"H2088\"* is|strong=\"H2088\"* for|strong=\"H6440\"* the|strong=\"H6440\"* prince|strong=\"H5387\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* one|strong=\"H2088\"* side|strong=\"H6285\"* and|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* other|strong=\"H2088\"* side|strong=\"H6285\"* of|strong=\"H5892\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* allotment|strong=\"H8641\"* and|strong=\"H5892\"* of|strong=\"H5892\"* the|strong=\"H6440\"* possession of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, in|strong=\"H5892\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* allotment|strong=\"H8641\"* and|strong=\"H5892\"* in|strong=\"H5892\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* possession of|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, on|strong=\"H5892\"* the|strong=\"H6440\"* west|strong=\"H3220\"* side|strong=\"H6285\"* westward|strong=\"H3220\"*, and|strong=\"H5892\"* on|strong=\"H5892\"* the|strong=\"H6440\"* east|strong=\"H6921\"* side|strong=\"H6285\"* eastward|strong=\"H6924\"*, and|strong=\"H5892\"* in|strong=\"H5892\"* length corresponding|strong=\"H5980\"* to|strong=\"H6440\"* one|strong=\"H2088\"* of|strong=\"H5892\"* the|strong=\"H6440\"* portions|strong=\"H2506\"*, from|strong=\"H6440\"* the|strong=\"H6440\"* west|strong=\"H3220\"* border|strong=\"H1366\"* to|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3478\"* the|strong=\"H5414\"* land it|strong=\"H5414\"* shall|strong=\"H5971\"* be|strong=\"H1961\"* to|strong=\"H3478\"* him|strong=\"H5414\"* for|strong=\"H1004\"* a|strong=\"H3068\"* possession in|strong=\"H3478\"* Israel|strong=\"H3478\"*. My|strong=\"H5414\"* princes|strong=\"H5387\"* shall|strong=\"H5971\"* no|strong=\"H3808\"* more|strong=\"H5750\"* oppress|strong=\"H3238\"* my|strong=\"H5414\"* people|strong=\"H5971\"*, but|strong=\"H3808\"* they|strong=\"H3808\"* shall|strong=\"H5971\"* give|strong=\"H5414\"* the|strong=\"H5414\"* land to|strong=\"H3478\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* according to|strong=\"H3478\"* their|strong=\"H5414\"* tribes|strong=\"H7626\"*.”" + }, + { + "verseNum": 9, + "text": "“‘The|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “Enough|strong=\"H7227\"*, you|strong=\"H5921\"* princes|strong=\"H5387\"* of|strong=\"H5971\"* Israel|strong=\"H3478\"*! Remove|strong=\"H5493\"* violence|strong=\"H2555\"* and|strong=\"H3478\"* plunder, and|strong=\"H3478\"* execute|strong=\"H6213\"* justice|strong=\"H4941\"* and|strong=\"H3478\"* righteousness|strong=\"H6666\"*! Stop|strong=\"H5493\"* dispossessing my|strong=\"H5921\"* people|strong=\"H5971\"*!” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 10, + "text": "“You|strong=\"H1961\"* shall|strong=\"H6664\"* have|strong=\"H1961\"* just|strong=\"H6664\"* balances|strong=\"H3976\"*, a|strong=\"H3068\"* just|strong=\"H6664\"* ephah,+ 45:10 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H6664\"* a|strong=\"H3068\"* just|strong=\"H6664\"* bath|strong=\"H1324\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5375\"* ephah and|strong=\"H1961\"* the|strong=\"H5375\"* bath|strong=\"H1324\"* shall|strong=\"H2563\"* be|strong=\"H1961\"* of|strong=\"H4643\"* one|strong=\"H1961\"* measure|strong=\"H4971\"*, that|strong=\"H1961\"* the|strong=\"H5375\"* bath|strong=\"H1324\"* may|strong=\"H1961\"* contain|strong=\"H5375\"* one|strong=\"H1961\"* tenth|strong=\"H6224\"* of|strong=\"H4643\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*,+ 45:11 1 homer is about 220 liters or 6 bushels* and|strong=\"H1961\"* the|strong=\"H5375\"* ephah one|strong=\"H1961\"* tenth|strong=\"H6224\"* of|strong=\"H4643\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*. Its|strong=\"H1961\"* measure|strong=\"H4971\"* shall|strong=\"H2563\"* be|strong=\"H1961\"* the|strong=\"H5375\"* same as|strong=\"H1961\"* the|strong=\"H5375\"* homer|strong=\"H2563\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1961\"* shekel|strong=\"H8255\"*+ 45:12 A shekel is about 10 grams or about 0.35 ounces.* shall be|strong=\"H1961\"* twenty|strong=\"H6242\"* gerahs|strong=\"H1626\"*.+ 45:12 a gerah is about 0.5 grams or about 7.7 grains* Twenty|strong=\"H6242\"* shekels|strong=\"H8255\"* plus twenty-five|strong=\"H6242\"* shekels|strong=\"H8255\"* plus fifteen|strong=\"H2568\"* shekels|strong=\"H8255\"* shall be|strong=\"H1961\"* your|strong=\"H1961\"* mina.+ 45:12 A mina is about 600 grams or 1.3 U. S. pounds.*" + }, + { + "verseNum": 13, + "text": "“‘“This|strong=\"H2063\"* is the|strong=\"H7311\"* offering|strong=\"H8641\"* that|strong=\"H2063\"* you shall|strong=\"H2063\"* offer|strong=\"H7311\"*: the|strong=\"H7311\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H2563\"* an|strong=\"H7311\"* ephah from a|strong=\"H3068\"* homer|strong=\"H2563\"* of|strong=\"H2563\"* wheat|strong=\"H2406\"*, and|strong=\"H7311\"* you shall|strong=\"H2063\"* give|strong=\"H7311\"* the|strong=\"H7311\"* sixth|strong=\"H8345\"* part|strong=\"H8345\"* of|strong=\"H2563\"* an|strong=\"H7311\"* ephah from a|strong=\"H3068\"* homer|strong=\"H2563\"* of|strong=\"H2563\"* barley|strong=\"H8184\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H2706\"* the|strong=\"H3588\"* set portion|strong=\"H2706\"* of|strong=\"H4480\"* oil|strong=\"H8081\"*, of|strong=\"H4480\"* the|strong=\"H3588\"* bath|strong=\"H1324\"* of|strong=\"H4480\"* oil|strong=\"H8081\"*, one|strong=\"H4480\"* tenth|strong=\"H4643\"* of|strong=\"H4480\"* a|strong=\"H3068\"* bath|strong=\"H1324\"* out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3588\"* cor|strong=\"H3734\"*, which|strong=\"H3588\"* is|strong=\"H8081\"* ten|strong=\"H6235\"* baths|strong=\"H1324\"*, even|strong=\"H3588\"* a|strong=\"H3068\"* homer|strong=\"H2563\"* (for|strong=\"H3588\"* ten|strong=\"H6235\"* baths|strong=\"H1324\"* are|strong=\"H6235\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*),+ 45:14 1 cor is the same as 1 homer in volume, and is about 211 liters, 55.9 gallons, or 6 bushels. 1 bath is about 21.1 liters, 5.59 gallons, or 2.4 pecks.*" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3967\"* one|strong=\"H4480\"* lamb|strong=\"H7716\"* of|strong=\"H4480\"* the|strong=\"H5002\"* flock|strong=\"H6629\"* out|strong=\"H4480\"* of|strong=\"H4480\"* two|strong=\"H4480\"* hundred|strong=\"H3967\"*, from|strong=\"H4480\"* the|strong=\"H5002\"* well-watered pastures|strong=\"H4945\"* of|strong=\"H4480\"* Israel|strong=\"H3478\"*—for|strong=\"H5921\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, for|strong=\"H5921\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H3967\"* for|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3478\"* make|strong=\"H3722\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* them|strong=\"H5921\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 16, + "text": "“All|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H5971\"* the|strong=\"H3605\"* land shall|strong=\"H5971\"* give|strong=\"H1961\"* to|strong=\"H3478\"* this|strong=\"H2063\"* offering|strong=\"H8641\"* for|strong=\"H3478\"* the|strong=\"H3605\"* prince|strong=\"H5387\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H1931\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* the|strong=\"H3605\"* prince|strong=\"H5387\"*’s part|strong=\"H1931\"* to|strong=\"H3478\"* give|strong=\"H6213\"* the|strong=\"H3605\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"*, the|strong=\"H3605\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* drink|strong=\"H5262\"* offerings|strong=\"H8002\"*, in|strong=\"H5921\"* the|strong=\"H3605\"* feasts|strong=\"H4150\"*, and|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*, and|strong=\"H3478\"* on|strong=\"H5921\"* the|strong=\"H3605\"* Sabbaths|strong=\"H7676\"*, in|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*. He|strong=\"H1931\"* shall|strong=\"H3478\"* prepare|strong=\"H6213\"* the|strong=\"H3605\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, the|strong=\"H3605\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, and|strong=\"H3478\"* the|strong=\"H3605\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, to|strong=\"H3478\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*.”" + }, + { + "verseNum": 18, + "text": "“‘The|strong=\"H3947\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “In|strong=\"H1121\"* the|strong=\"H3947\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3069\"* the|strong=\"H3947\"* first|strong=\"H7223\"* day|strong=\"H2320\"* of|strong=\"H1121\"* the|strong=\"H3947\"* month|strong=\"H2320\"*, you|strong=\"H3947\"* shall|strong=\"H1121\"* take|strong=\"H3947\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, and|strong=\"H1121\"* you|strong=\"H3947\"* shall|strong=\"H1121\"* cleanse|strong=\"H2398\"* the|strong=\"H3947\"* sanctuary|strong=\"H4720\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H5921\"* priest|strong=\"H3548\"* shall|strong=\"H3548\"* take|strong=\"H3947\"* of|strong=\"H1004\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* the|strong=\"H5921\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"* and|strong=\"H1004\"* put|strong=\"H5414\"* it|strong=\"H5414\"* on|strong=\"H5921\"* the|strong=\"H5921\"* door|strong=\"H4201\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* four corners|strong=\"H6438\"* of|strong=\"H1004\"* the|strong=\"H5921\"* ledge|strong=\"H5835\"* of|strong=\"H1004\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*, and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* posts|strong=\"H4201\"* of|strong=\"H1004\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inner|strong=\"H6442\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 20, + "text": "So|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* do|strong=\"H6213\"* on|strong=\"H1004\"* the|strong=\"H6213\"* seventh|strong=\"H7651\"* day|strong=\"H2320\"* of|strong=\"H1004\"* the|strong=\"H6213\"* month|strong=\"H2320\"* for|strong=\"H6213\"* everyone who|strong=\"H6213\"* errs, and|strong=\"H1004\"* for|strong=\"H6213\"* him|strong=\"H6213\"* who|strong=\"H6213\"* is|strong=\"H3651\"* simple|strong=\"H6612\"*. So|strong=\"H3651\"* you|strong=\"H6213\"* shall|strong=\"H1004\"* make|strong=\"H6213\"* atonement|strong=\"H3722\"* for|strong=\"H6213\"* the|strong=\"H6213\"* house|strong=\"H1004\"*." + }, + { + "verseNum": 21, + "text": "“‘“In|strong=\"H3117\"* the|strong=\"H3117\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H3117\"* fourteenth|strong=\"H6240\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, you|strong=\"H3117\"* shall|strong=\"H3117\"* have|strong=\"H1961\"* the|strong=\"H3117\"* Passover|strong=\"H6453\"*, a|strong=\"H3068\"* feast|strong=\"H2282\"* of|strong=\"H3117\"* seven|strong=\"H7620\"* days|strong=\"H3117\"*; unleavened|strong=\"H4682\"* bread|strong=\"H4682\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* eaten." + }, + { + "verseNum": 22, + "text": "On|strong=\"H3117\"* that|strong=\"H5971\"* day|strong=\"H3117\"* the|strong=\"H3605\"* prince|strong=\"H5387\"* shall|strong=\"H5971\"* prepare|strong=\"H6213\"* for|strong=\"H6213\"* himself|strong=\"H1931\"* and|strong=\"H3117\"* for|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3117\"* the|strong=\"H3605\"* land a|strong=\"H3068\"* bull|strong=\"H6499\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H2403\"*." + }, + { + "verseNum": 23, + "text": "The|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H6213\"* feast|strong=\"H2282\"* he|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, seven|strong=\"H7651\"* bulls|strong=\"H6499\"* and|strong=\"H3068\"* seven|strong=\"H7651\"* rams without|strong=\"H8549\"* defect|strong=\"H8549\"* daily|strong=\"H3117\"* the|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*; and|strong=\"H3068\"* a|strong=\"H3068\"* male|strong=\"H8163\"* goat|strong=\"H5795\"* daily|strong=\"H3117\"* for|strong=\"H6213\"* a|strong=\"H3068\"* sin|strong=\"H2403\"* offering|strong=\"H5930\"*." + }, + { + "verseNum": 24, + "text": "He|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, an|strong=\"H6213\"* ephah+ 45:24 1 ephah is about 22 liters or about 2/3 of a bushel* for|strong=\"H6213\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, an|strong=\"H6213\"* ephah for|strong=\"H6213\"* a|strong=\"H3068\"* ram, and|strong=\"H6499\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 45:24 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H1969\"* oil|strong=\"H8081\"* to|strong=\"H6213\"* an|strong=\"H6213\"* ephah." + }, + { + "verseNum": 25, + "text": "“‘“In|strong=\"H6213\"* the|strong=\"H6213\"* seventh|strong=\"H7651\"* month|strong=\"H2320\"*, on|strong=\"H3117\"* the|strong=\"H6213\"* fifteenth|strong=\"H2568\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H6213\"* month|strong=\"H2320\"*, during|strong=\"H3117\"* the|strong=\"H6213\"* feast|strong=\"H2282\"*, he|strong=\"H3117\"* shall|strong=\"H3117\"* do|strong=\"H6213\"* like|strong=\"H6213\"* that|strong=\"H3117\"* for|strong=\"H6213\"* seven|strong=\"H7651\"* days|strong=\"H3117\"*. He|strong=\"H3117\"* shall|strong=\"H3117\"* make|strong=\"H6213\"* the|strong=\"H6213\"* same provision for|strong=\"H6213\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, the|strong=\"H6213\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*, the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H3117\"* the|strong=\"H6213\"* oil|strong=\"H8081\"*.”" + } + ] + }, + { + "chapterNum": 46, + "verses": [ + { + "verseNum": 1, + "text": "“‘The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “The|strong=\"H3069\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* the|strong=\"H3069\"* inner|strong=\"H6442\"* court|strong=\"H2691\"* that|strong=\"H3117\"* looks toward|strong=\"H6437\"* the|strong=\"H3069\"* east|strong=\"H6921\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* shut|strong=\"H5462\"* the|strong=\"H3069\"* six|strong=\"H8337\"* working|strong=\"H4639\"* days|strong=\"H3117\"*; but|strong=\"H1961\"* on|strong=\"H3117\"* the|strong=\"H3069\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"* it|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*, and|strong=\"H3117\"* on|strong=\"H3117\"* the|strong=\"H3069\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H3069\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* it|strong=\"H1961\"* shall|strong=\"H3117\"* be|strong=\"H1961\"* opened|strong=\"H6605\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* prince|strong=\"H5387\"* shall|strong=\"H3548\"* enter|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H5921\"* porch of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* outside|strong=\"H2351\"*, and|strong=\"H3548\"* shall|strong=\"H3548\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H5921\"* post|strong=\"H4201\"* of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*; and|strong=\"H3548\"* the|strong=\"H5921\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* prepare|strong=\"H6213\"* his|strong=\"H5921\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3548\"* his|strong=\"H5921\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, and|strong=\"H3548\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* worship|strong=\"H7812\"* at|strong=\"H5921\"* the|strong=\"H5921\"* threshold|strong=\"H4670\"* of|strong=\"H1870\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*. Then|strong=\"H3318\"* he|strong=\"H5704\"* shall|strong=\"H3548\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, but|strong=\"H3808\"* the|strong=\"H5921\"* gate|strong=\"H8179\"* shall|strong=\"H3548\"* not|strong=\"H3808\"* be|strong=\"H3808\"* shut|strong=\"H5462\"* until|strong=\"H5704\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* shall|strong=\"H3068\"* worship|strong=\"H7812\"* at|strong=\"H3068\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H3068\"* that|strong=\"H5971\"* gate|strong=\"H8179\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6440\"* Sabbaths|strong=\"H7676\"* and|strong=\"H3068\"* on|strong=\"H3068\"* the|strong=\"H6440\"* new|strong=\"H2320\"* moons|strong=\"H2320\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* that|strong=\"H3117\"* the|strong=\"H3068\"* prince|strong=\"H5387\"* shall|strong=\"H3068\"* offer|strong=\"H7126\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* on|strong=\"H3117\"* the|strong=\"H3068\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*, six|strong=\"H8337\"* lambs|strong=\"H3532\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* and|strong=\"H3068\"* a|strong=\"H3068\"* ram without|strong=\"H8549\"* defect|strong=\"H8549\"*;" + }, + { + "verseNum": 5, + "text": "and|strong=\"H3027\"* the|strong=\"H3027\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3027\"* be|strong=\"H3027\"* an|strong=\"H4503\"* ephah for|strong=\"H3027\"* the|strong=\"H3027\"* ram, and|strong=\"H3027\"* the|strong=\"H3027\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* for|strong=\"H3027\"* the|strong=\"H3027\"* lambs|strong=\"H3532\"* as|strong=\"H3532\"* he|strong=\"H3027\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H3027\"* give|strong=\"H4991\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"*+ 46:5 A hin is about 6.5 liters or 1.7 gallons.* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H3027\"* an|strong=\"H4503\"* ephah.+ 46:5 1 ephah is about 22 liters or about 2/3 of a bushel*" + }, + { + "verseNum": 6, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3117\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* it|strong=\"H1961\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* a|strong=\"H3068\"* young|strong=\"H1121\"* bull|strong=\"H6499\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*, six|strong=\"H8337\"* lambs|strong=\"H3532\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* ram. They|strong=\"H3117\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* without|strong=\"H8549\"* defect|strong=\"H8549\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H6213\"* shall|strong=\"H3027\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*: an|strong=\"H6213\"* ephah for|strong=\"H6213\"* the|strong=\"H6213\"* bull|strong=\"H6499\"*, and|strong=\"H3027\"* an|strong=\"H6213\"* ephah for|strong=\"H6213\"* the|strong=\"H6213\"* ram, and|strong=\"H3027\"* for|strong=\"H6213\"* the|strong=\"H6213\"* lambs|strong=\"H3532\"* according|strong=\"H3027\"* as|strong=\"H6213\"* he|strong=\"H6213\"* is|strong=\"H3027\"* able|strong=\"H3027\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H6213\"* an|strong=\"H6213\"* ephah." + }, + { + "verseNum": 8, + "text": "When|strong=\"H3318\"* the|strong=\"H3318\"* prince|strong=\"H5387\"* enters, he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* in|strong=\"H1870\"* by|strong=\"H1870\"* the|strong=\"H3318\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H3318\"* porch of|strong=\"H1870\"* the|strong=\"H3318\"* gate|strong=\"H8179\"*, and|strong=\"H1870\"* he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H1870\"* its|strong=\"H3318\"* way|strong=\"H1870\"*." + }, + { + "verseNum": 9, + "text": "“‘“But|strong=\"H3588\"* when|strong=\"H3588\"* the|strong=\"H6440\"* people|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H6440\"* land|strong=\"H6440\"* come|strong=\"H3318\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H6440\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"*, he|strong=\"H3588\"* who|strong=\"H5971\"* enters by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"* to|strong=\"H7725\"* worship|strong=\"H7812\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H5045\"* gate|strong=\"H8179\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* who|strong=\"H5971\"* enters by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* south|strong=\"H5045\"* gate|strong=\"H8179\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* north|strong=\"H6828\"* gate|strong=\"H8179\"*. He|strong=\"H3588\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* return|strong=\"H7725\"* by|strong=\"H3068\"* the|strong=\"H6440\"* way|strong=\"H1870\"* of|strong=\"H3068\"* the|strong=\"H6440\"* gate|strong=\"H8179\"* by|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3588\"* came|strong=\"H3318\"* in|strong=\"H3068\"*, but|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* straight|strong=\"H3318\"* before|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H8432\"* prince|strong=\"H5387\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* in|strong=\"H8432\"* with|strong=\"H3318\"* them|strong=\"H3318\"* when|strong=\"H3318\"* they|strong=\"H3318\"* go|strong=\"H3318\"* in|strong=\"H8432\"*. When|strong=\"H3318\"* they|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, he|strong=\"H3318\"* shall|strong=\"H5387\"* go|strong=\"H3318\"* out|strong=\"H3318\"*." + }, + { + "verseNum": 11, + "text": "“‘“In|strong=\"H3027\"* the|strong=\"H1961\"* feasts|strong=\"H4150\"* and|strong=\"H3027\"* in|strong=\"H3027\"* the|strong=\"H1961\"* appointed|strong=\"H4150\"* holidays, the|strong=\"H1961\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* shall|strong=\"H3027\"* be|strong=\"H1961\"* an|strong=\"H1961\"* ephah+ 46:11 1 ephah is about 22 liters or about 2/3 of a bushel* for|strong=\"H3027\"* a|strong=\"H3068\"* bull|strong=\"H6499\"*, and|strong=\"H3027\"* an|strong=\"H1961\"* ephah for|strong=\"H3027\"* a|strong=\"H3068\"* ram, and|strong=\"H3027\"* for|strong=\"H3027\"* the|strong=\"H1961\"* lambs|strong=\"H3532\"* as|strong=\"H1961\"* he|strong=\"H3027\"* is|strong=\"H3027\"* able|strong=\"H3027\"* to|strong=\"H1961\"* give|strong=\"H4991\"*, and|strong=\"H3027\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3027\"* oil|strong=\"H8081\"* to|strong=\"H1961\"* an|strong=\"H1961\"* ephah." + }, + { + "verseNum": 12, + "text": "When|strong=\"H3588\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* prepares a|strong=\"H3068\"* free|strong=\"H6605\"* will|strong=\"H3068\"* offering|strong=\"H5930\"*, a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* or|strong=\"H3117\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"* as|strong=\"H3117\"* a|strong=\"H3068\"* free|strong=\"H6605\"* will|strong=\"H3068\"* offering|strong=\"H5930\"* to|strong=\"H3318\"* Yahweh|strong=\"H3068\"*, one|strong=\"H6213\"* shall|strong=\"H3068\"* open|strong=\"H6605\"* for|strong=\"H3588\"* him|strong=\"H6213\"* the|strong=\"H3588\"* gate|strong=\"H8179\"* that|strong=\"H3588\"* looks toward|strong=\"H6437\"* the|strong=\"H3588\"* east|strong=\"H6921\"*; and|strong=\"H3068\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* his|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* and|strong=\"H3068\"* his|strong=\"H3068\"* peace|strong=\"H8002\"* offerings|strong=\"H8002\"*, as|strong=\"H3117\"* he|strong=\"H3588\"* does|strong=\"H6213\"* on|strong=\"H3117\"* the|strong=\"H3588\"* Sabbath|strong=\"H7676\"* day|strong=\"H3117\"*. Then|strong=\"H3318\"* he|strong=\"H3588\"* shall|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"*; and|strong=\"H3068\"* after|strong=\"H3117\"* his|strong=\"H3068\"* going|strong=\"H3318\"* out|strong=\"H3318\"* one|strong=\"H6213\"* shall|strong=\"H3068\"* shut|strong=\"H5462\"* the|strong=\"H3588\"* gate|strong=\"H8179\"*." + }, + { + "verseNum": 13, + "text": "“‘“You|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* lamb|strong=\"H3532\"* a|strong=\"H3068\"* year|strong=\"H8141\"* old|strong=\"H1121\"* without|strong=\"H8549\"* defect|strong=\"H8549\"* for|strong=\"H6213\"* a|strong=\"H3068\"* burnt|strong=\"H5930\"* offering|strong=\"H5930\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* daily|strong=\"H3117\"*. Morning|strong=\"H1242\"* by|strong=\"H8141\"* morning|strong=\"H1242\"* you|strong=\"H3117\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5921\"* shall|strong=\"H3068\"* prepare|strong=\"H6213\"* a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* with|strong=\"H3068\"* it|strong=\"H5921\"* morning|strong=\"H1242\"* by|strong=\"H5921\"* morning|strong=\"H1242\"*, the|strong=\"H5921\"* sixth|strong=\"H8345\"* part|strong=\"H7992\"* of|strong=\"H3068\"* an|strong=\"H6213\"* ephah,+ 46:14 1 ephah is about 22 liters or about 2/3 of a bushel* and|strong=\"H3068\"* the|strong=\"H5921\"* third|strong=\"H7992\"* part|strong=\"H7992\"* of|strong=\"H3068\"* a|strong=\"H3068\"* hin|strong=\"H1969\"* of|strong=\"H3068\"* oil|strong=\"H8081\"* to|strong=\"H3068\"* moisten|strong=\"H7450\"* the|strong=\"H5921\"* fine|strong=\"H5560\"* flour|strong=\"H5560\"*; a|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* continually|strong=\"H8548\"* by|strong=\"H5921\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* ordinance|strong=\"H2708\"*." + }, + { + "verseNum": 15, + "text": "Thus they|strong=\"H6213\"* shall|strong=\"H6213\"* prepare|strong=\"H6213\"* the|strong=\"H6213\"* lamb|strong=\"H3532\"*, the|strong=\"H6213\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, and|strong=\"H1242\"* the|strong=\"H6213\"* oil|strong=\"H8081\"*, morning|strong=\"H1242\"* by|strong=\"H1242\"* morning|strong=\"H1242\"*, for|strong=\"H6213\"* a|strong=\"H3068\"* continual|strong=\"H8548\"* burnt|strong=\"H5930\"* offering|strong=\"H4503\"*.”" + }, + { + "verseNum": 16, + "text": "“‘The|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “If|strong=\"H3588\"* the|strong=\"H3588\"* prince|strong=\"H5387\"* gives|strong=\"H5414\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H1961\"* any|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*, it|strong=\"H5414\"* is|strong=\"H1931\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*. It|strong=\"H5414\"* shall|strong=\"H1121\"* belong|strong=\"H1961\"* to|strong=\"H1961\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*. It|strong=\"H5414\"* is|strong=\"H1931\"* their|strong=\"H5414\"* possession|strong=\"H5159\"* by|strong=\"H5414\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H3588\"* if|strong=\"H3588\"* he|strong=\"H3588\"* gives|strong=\"H5414\"* of|strong=\"H1121\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"* a|strong=\"H3068\"* gift|strong=\"H4979\"* to|strong=\"H5704\"* one|strong=\"H1121\"* of|strong=\"H1121\"* his|strong=\"H5414\"* servants|strong=\"H5650\"*, it|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* his|strong=\"H5414\"* to|strong=\"H5704\"* the|strong=\"H3588\"* year|strong=\"H8141\"* of|strong=\"H1121\"* liberty|strong=\"H1865\"*; then|strong=\"H1961\"* it|strong=\"H5414\"* shall|strong=\"H1121\"* return|strong=\"H7725\"* to|strong=\"H5704\"* the|strong=\"H3588\"* prince|strong=\"H5387\"*; but|strong=\"H3588\"* as|strong=\"H5704\"* for|strong=\"H3588\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*, it|strong=\"H5414\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* for|strong=\"H3588\"* his|strong=\"H5414\"* sons|strong=\"H1121\"*." + }, + { + "verseNum": 18, + "text": "Moreover the|strong=\"H3947\"* prince|strong=\"H5387\"* shall|strong=\"H1121\"* not|strong=\"H3808\"* take|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* people|strong=\"H5971\"*’s inheritance|strong=\"H5159\"*, to|strong=\"H1121\"* thrust|strong=\"H3238\"* them|strong=\"H3947\"* out|strong=\"H3947\"* of|strong=\"H1121\"* their|strong=\"H3947\"* possession|strong=\"H5159\"*. He|strong=\"H3808\"* shall|strong=\"H1121\"* give|strong=\"H5157\"* inheritance|strong=\"H5159\"* to|strong=\"H1121\"* his|strong=\"H3947\"* sons|strong=\"H1121\"* out|strong=\"H3947\"* of|strong=\"H1121\"* his|strong=\"H3947\"* own|strong=\"H5971\"* possession|strong=\"H5159\"*, that|strong=\"H5971\"* my|strong=\"H3947\"* people|strong=\"H5971\"* not|strong=\"H3808\"* each|strong=\"H5971\"* be|strong=\"H3808\"* scattered|strong=\"H6327\"* from|strong=\"H1121\"* his|strong=\"H3947\"* possession|strong=\"H5159\"*.”’”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H2009\"* he|strong=\"H8033\"* brought|strong=\"H3548\"* me|strong=\"H5921\"* through|strong=\"H5921\"* the|strong=\"H5921\"* entry|strong=\"H3996\"*, which|strong=\"H8033\"* was|strong=\"H4725\"* at|strong=\"H5921\"* the|strong=\"H5921\"* side|strong=\"H3802\"* of|strong=\"H8179\"* the|strong=\"H5921\"* gate|strong=\"H8179\"*, into|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* rooms|strong=\"H3957\"* for|strong=\"H5921\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, which|strong=\"H8033\"* looked|strong=\"H6437\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*. Behold|strong=\"H2009\"*, there|strong=\"H8033\"* was|strong=\"H4725\"* a|strong=\"H3068\"* place|strong=\"H4725\"* on|strong=\"H5921\"* the|strong=\"H5921\"* back|strong=\"H6437\"* part|strong=\"H3411\"* westward|strong=\"H3220\"*." + }, + { + "verseNum": 20, + "text": "He|strong=\"H8033\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H3318\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3318\"* place|strong=\"H4725\"* where|strong=\"H8033\"* the|strong=\"H3318\"* priests|strong=\"H3548\"* shall|strong=\"H3548\"* boil|strong=\"H1310\"* the|strong=\"H3318\"* trespass offering|strong=\"H4503\"* and|strong=\"H3548\"* the|strong=\"H3318\"* sin|strong=\"H2403\"* offering|strong=\"H4503\"*, and|strong=\"H3548\"* where|strong=\"H8033\"* they|strong=\"H8033\"* shall|strong=\"H3548\"* bake|strong=\"H1310\"* the|strong=\"H3318\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"*, that|strong=\"H5971\"* they|strong=\"H8033\"* not|strong=\"H1115\"* bring|strong=\"H3318\"* them|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H3318\"* outer|strong=\"H2435\"* court|strong=\"H2691\"*, to|strong=\"H3318\"* sanctify|strong=\"H6942\"* the|strong=\"H3318\"* people|strong=\"H5971\"*.”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* brought|strong=\"H3318\"* me|strong=\"H5674\"* out|strong=\"H3318\"* into|strong=\"H3318\"* the|strong=\"H5674\"* outer|strong=\"H2435\"* court|strong=\"H2691\"* and|strong=\"H3318\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* by|strong=\"H5674\"* the|strong=\"H5674\"* four corners|strong=\"H4740\"* of|strong=\"H3318\"* the|strong=\"H5674\"* court|strong=\"H2691\"*; and|strong=\"H3318\"* behold|strong=\"H2009\"*, in|strong=\"H3318\"* every|strong=\"H4740\"* corner|strong=\"H4740\"* of|strong=\"H3318\"* the|strong=\"H5674\"* court|strong=\"H2691\"* there|strong=\"H2009\"* was|strong=\"H2691\"* a|strong=\"H3068\"* court|strong=\"H2691\"*." + }, + { + "verseNum": 22, + "text": "In|strong=\"H7970\"* the|strong=\"H4060\"* four corners|strong=\"H4740\"* of|strong=\"H7341\"* the|strong=\"H4060\"* court|strong=\"H2691\"* there|strong=\"H4060\"* were|strong=\"H2691\"* courts|strong=\"H2691\"* enclosed|strong=\"H7000\"*, forty cubits+ 46:22 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* long and|strong=\"H7970\"* thirty|strong=\"H7970\"* wide|strong=\"H7341\"*. These four in|strong=\"H7970\"* the|strong=\"H4060\"* corners|strong=\"H4740\"* were|strong=\"H2691\"* the|strong=\"H4060\"* same size|strong=\"H4060\"*." + }, + { + "verseNum": 23, + "text": "There|strong=\"H8478\"* was|strong=\"H6213\"* a|strong=\"H3068\"* wall around|strong=\"H5439\"* in|strong=\"H6213\"* them|strong=\"H6213\"*, around|strong=\"H5439\"* the|strong=\"H6213\"* four, and|strong=\"H6213\"* boiling|strong=\"H4018\"* places|strong=\"H4018\"* were|strong=\"H5439\"* made|strong=\"H6213\"* under|strong=\"H8478\"* the|strong=\"H6213\"* walls all|strong=\"H5439\"* around|strong=\"H5439\"*." + }, + { + "verseNum": 24, + "text": "Then he|strong=\"H8033\"* said to|strong=\"H1004\"* me|strong=\"H1004\"*, “These|strong=\"H5971\"* are|strong=\"H5971\"* the|strong=\"H8033\"* boiling|strong=\"H1310\"* houses|strong=\"H1004\"*, where|strong=\"H8033\"* the|strong=\"H8033\"* ministers|strong=\"H8334\"* of|strong=\"H1004\"* the|strong=\"H8033\"* house|strong=\"H1004\"* shall|strong=\"H5971\"* boil|strong=\"H1310\"* the|strong=\"H8033\"* sacrifice|strong=\"H2077\"* of|strong=\"H1004\"* the|strong=\"H8033\"* people|strong=\"H5971\"*.”" + } + ] + }, + { + "chapterNum": 47, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3588\"* brought|strong=\"H3318\"* me|strong=\"H6440\"* back|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H6440\"* door|strong=\"H6607\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*; and|strong=\"H7725\"* behold|strong=\"H2009\"*, waters|strong=\"H4325\"* flowed|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* under|strong=\"H8478\"* the|strong=\"H6440\"* threshold|strong=\"H4670\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* eastward|strong=\"H6921\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"* faced|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* east|strong=\"H6921\"*. The|strong=\"H6440\"* waters|strong=\"H4325\"* came|strong=\"H3318\"* down|strong=\"H3381\"* from|strong=\"H7725\"* underneath|strong=\"H8478\"*, from|strong=\"H7725\"* the|strong=\"H6440\"* right|strong=\"H3233\"* side|strong=\"H3802\"* of|strong=\"H1004\"* the|strong=\"H6440\"* temple|strong=\"H1004\"*, on|strong=\"H8478\"* the|strong=\"H6440\"* south|strong=\"H5045\"* of|strong=\"H1004\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H3318\"* he|strong=\"H4480\"* brought|strong=\"H3318\"* me|strong=\"H4480\"* out|strong=\"H3318\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* northward|strong=\"H6828\"*, and|strong=\"H1870\"* led|strong=\"H3318\"* me|strong=\"H4480\"* around|strong=\"H5437\"* by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* outside|strong=\"H2351\"* to|strong=\"H3318\"* the|strong=\"H4480\"* outer|strong=\"H2351\"* gate|strong=\"H8179\"*, by|strong=\"H1870\"* the|strong=\"H4480\"* way|strong=\"H1870\"* of|strong=\"H1870\"* the|strong=\"H4480\"* gate|strong=\"H8179\"* that|strong=\"H4325\"* looks toward|strong=\"H1870\"* the|strong=\"H4480\"* east|strong=\"H6921\"*. Behold|strong=\"H2009\"*, waters|strong=\"H4325\"* ran out|strong=\"H3318\"* on|strong=\"H1870\"* the|strong=\"H4480\"* right|strong=\"H3233\"* side|strong=\"H3802\"*." + }, + { + "verseNum": 3, + "text": "When|strong=\"H3318\"* the|strong=\"H5674\"* man|strong=\"H5674\"* went|strong=\"H3318\"* out|strong=\"H3318\"* eastward|strong=\"H6921\"* with|strong=\"H3318\"* the|strong=\"H5674\"* line|strong=\"H6957\"* in|strong=\"H3027\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*, he|strong=\"H3027\"* measured|strong=\"H4058\"* one|strong=\"H3027\"* thousand cubits,+ 47:3 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H3027\"* he|strong=\"H3027\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H3318\"* pass|strong=\"H5674\"* through|strong=\"H3027\"* the|strong=\"H5674\"* waters|strong=\"H4325\"*, waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H3318\"* the|strong=\"H5674\"* ankles." + }, + { + "verseNum": 4, + "text": "Again|strong=\"H5674\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* one thousand, and|strong=\"H4325\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5674\"* waters|strong=\"H4325\"*, waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H5674\"* knees|strong=\"H1290\"*. Again|strong=\"H5674\"* he|strong=\"H4058\"* measured|strong=\"H4058\"* one thousand, and|strong=\"H4325\"* caused|strong=\"H5674\"* me|strong=\"H5674\"* to|strong=\"H4325\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* waters|strong=\"H4325\"* that|strong=\"H4325\"* were|strong=\"H4325\"* to|strong=\"H4325\"* the|strong=\"H5674\"* waist|strong=\"H4975\"*." + }, + { + "verseNum": 5, + "text": "Afterward he|strong=\"H3588\"* measured|strong=\"H4058\"* one|strong=\"H3808\"* thousand; and|strong=\"H4325\"* it|strong=\"H3588\"* was|strong=\"H4325\"* a|strong=\"H3068\"* river|strong=\"H5158\"* that|strong=\"H3588\"* I|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* waters|strong=\"H4325\"* had|strong=\"H3588\"* risen|strong=\"H1342\"*, waters|strong=\"H4325\"* to|strong=\"H3201\"* swim|strong=\"H7813\"* in|strong=\"H3808\"*, a|strong=\"H3068\"* river|strong=\"H5158\"* that|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"* be|strong=\"H3808\"* walked through|strong=\"H5674\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H7725\"* said to|strong=\"H7725\"* me|strong=\"H7725\"*, “Son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, have|strong=\"H1121\"* you|strong=\"H7725\"* seen|strong=\"H7200\"* this|strong=\"H7200\"*?”" + }, + { + "verseNum": 7, + "text": "Now|strong=\"H2009\"* when|strong=\"H7725\"* I|strong=\"H2009\"* had returned|strong=\"H7725\"*, behold|strong=\"H2009\"*, on|strong=\"H7725\"* the|strong=\"H7725\"* bank|strong=\"H8193\"* of|strong=\"H6086\"* the|strong=\"H7725\"* river|strong=\"H5158\"* were|strong=\"H7227\"* very|strong=\"H3966\"* many|strong=\"H7227\"* trees|strong=\"H6086\"* on|strong=\"H7725\"* the|strong=\"H7725\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H7725\"* on|strong=\"H7725\"* the|strong=\"H7725\"* other|strong=\"H2088\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H3318\"* he|strong=\"H5921\"* said|strong=\"H3318\"* to|strong=\"H3381\"* me|strong=\"H5921\"*, “These|strong=\"H7495\"* waters|strong=\"H4325\"* flow|strong=\"H3381\"* out|strong=\"H3318\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* eastern|strong=\"H6930\"* region|strong=\"H1552\"* and|strong=\"H3318\"* will|strong=\"H4325\"* go|strong=\"H3318\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* Arabah|strong=\"H6160\"*. Then|strong=\"H3318\"* they|strong=\"H5921\"* will|strong=\"H4325\"* go|strong=\"H3318\"* toward|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* and|strong=\"H3318\"* flow|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* which|strong=\"H4325\"* will|strong=\"H4325\"* be|strong=\"H3220\"* made to|strong=\"H3381\"* flow|strong=\"H3381\"* out|strong=\"H3318\"*; and|strong=\"H3318\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* will|strong=\"H4325\"* be|strong=\"H3220\"* healed|strong=\"H7495\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H3588\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* every|strong=\"H3605\"* living|strong=\"H2416\"* creature|strong=\"H5315\"* which|strong=\"H8033\"* swarms|strong=\"H8317\"*, in|strong=\"H5315\"* every|strong=\"H3605\"* place|strong=\"H1961\"* where|strong=\"H8033\"* the|strong=\"H3605\"* rivers|strong=\"H5158\"* come|strong=\"H1961\"*, will|strong=\"H1961\"* live|strong=\"H2421\"*. Then|strong=\"H1961\"* there|strong=\"H8033\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H7227\"* multitude|strong=\"H7227\"* of|strong=\"H4325\"* fish|strong=\"H1710\"*; for|strong=\"H3588\"* these|strong=\"H3605\"* waters|strong=\"H4325\"* have|strong=\"H1961\"* come|strong=\"H1961\"* there|strong=\"H8033\"*, and|strong=\"H8033\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H3605\"* sea will|strong=\"H1961\"* be|strong=\"H1961\"* healed|strong=\"H7495\"*, and|strong=\"H8033\"* everything|strong=\"H3605\"* will|strong=\"H1961\"* live|strong=\"H2421\"* wherever|strong=\"H3605\"* the|strong=\"H3605\"* river|strong=\"H5158\"* comes|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H5704\"* fishermen|strong=\"H1728\"* will|strong=\"H1961\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* it|strong=\"H5921\"*. From|strong=\"H5921\"* En Gedi even|strong=\"H5704\"* to|strong=\"H5704\"* En Eglaim will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* place|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H5921\"* spreading|strong=\"H4894\"* of|strong=\"H5921\"* nets|strong=\"H2764\"*. Their|strong=\"H5921\"* fish|strong=\"H1710\"* will|strong=\"H1961\"* be|strong=\"H1961\"* after|strong=\"H5921\"* their|strong=\"H5921\"* kinds|strong=\"H4327\"*, as|strong=\"H5704\"* the|strong=\"H5921\"* fish|strong=\"H1710\"* of|strong=\"H5921\"* the|strong=\"H5921\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*, exceedingly|strong=\"H3966\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* its|strong=\"H5414\"* swamps|strong=\"H1207\"* and|strong=\"H3808\"* marshes|strong=\"H1207\"* will|strong=\"H5414\"* not|strong=\"H3808\"* be|strong=\"H3808\"* healed|strong=\"H7495\"*. They|strong=\"H3808\"* will|strong=\"H5414\"* be|strong=\"H3808\"* given|strong=\"H5414\"* up|strong=\"H5414\"* to|strong=\"H5414\"* salt|strong=\"H4417\"*." + }, + { + "verseNum": 12, + "text": "By|strong=\"H5921\"* the|strong=\"H3605\"* river|strong=\"H5158\"* banks|strong=\"H8193\"*, on|strong=\"H5921\"* both|strong=\"H4480\"* sides|strong=\"H2088\"*, will|strong=\"H1961\"* grow|strong=\"H5927\"* every|strong=\"H3605\"* tree|strong=\"H6086\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, whose|strong=\"H3605\"* leaf|strong=\"H5929\"* won’t wither|strong=\"H5034\"*, neither|strong=\"H3808\"* will|strong=\"H1961\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"* fail|strong=\"H8552\"*. It|strong=\"H5921\"* will|strong=\"H1961\"* produce|strong=\"H6529\"* new|strong=\"H2320\"* fruit|strong=\"H6529\"* every|strong=\"H3605\"* month|strong=\"H2320\"*, because|strong=\"H3588\"* its|strong=\"H3605\"* waters|strong=\"H4325\"* issue|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H4325\"* the|strong=\"H3605\"* sanctuary|strong=\"H4720\"*. Its|strong=\"H3605\"* fruit|strong=\"H6529\"* will|strong=\"H1961\"* be|strong=\"H1961\"* for|strong=\"H3588\"* food|strong=\"H3978\"*, and|strong=\"H6086\"* its|strong=\"H3605\"* leaf|strong=\"H5929\"* for|strong=\"H3588\"* healing|strong=\"H8644\"*.”" + }, + { + "verseNum": 13, + "text": "The|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “This|strong=\"H3541\"* shall|strong=\"H3478\"* be|strong=\"H3478\"* the|strong=\"H3069\"* border|strong=\"H1366\"* by|strong=\"H3478\"* which|strong=\"H3478\"* you|strong=\"H3478\"* shall|strong=\"H3478\"* divide|strong=\"H5157\"* the|strong=\"H3069\"* land|strong=\"H1366\"* for|strong=\"H3478\"* inheritance|strong=\"H5157\"* according to|strong=\"H3478\"* the|strong=\"H3069\"* twelve|strong=\"H8147\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*. Joseph|strong=\"H3130\"* shall|strong=\"H3478\"* have|strong=\"H3478\"* two|strong=\"H8147\"* portions|strong=\"H2256\"*." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H3027\"* inherit|strong=\"H5157\"* it|strong=\"H5414\"*, one|strong=\"H5375\"* as|strong=\"H5159\"* well as|strong=\"H5159\"* another; for|strong=\"H3027\"* I|strong=\"H5414\"* swore|strong=\"H5375\"* to|strong=\"H5414\"* give|strong=\"H5414\"* it|strong=\"H5414\"* to|strong=\"H5414\"* your|strong=\"H5414\"* fathers. This|strong=\"H2063\"* land|strong=\"H5159\"* will|strong=\"H3027\"* fall|strong=\"H5307\"* to|strong=\"H5414\"* you|strong=\"H5414\"* for|strong=\"H3027\"* inheritance|strong=\"H5159\"*." + }, + { + "verseNum": 15, + "text": "“This|strong=\"H2088\"* shall|strong=\"H1366\"* be|strong=\"H1870\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H4480\"* land|strong=\"H1366\"*:" + }, + { + "verseNum": 16, + "text": "Hamath|strong=\"H2574\"*, Berothah|strong=\"H1268\"*, Sibraim|strong=\"H5453\"* (which|strong=\"H1366\"* is|strong=\"H1834\"* between the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Damascus|strong=\"H1834\"* and|strong=\"H2574\"* the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hamath|strong=\"H2574\"*), to|strong=\"H1834\"* Hazer Hatticon, which|strong=\"H1366\"* is|strong=\"H1834\"* by|strong=\"H1366\"* the|strong=\"H2574\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hauran|strong=\"H2362\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H4480\"* border|strong=\"H1366\"* from|strong=\"H4480\"* the|strong=\"H4480\"* sea|strong=\"H3220\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* Hazar Enon at|strong=\"H1961\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Damascus|strong=\"H1834\"*; and|strong=\"H3220\"* on|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* northward|strong=\"H6828\"* is|strong=\"H1961\"* the|strong=\"H4480\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Hamath|strong=\"H2574\"*. This|strong=\"H1961\"* is|strong=\"H1961\"* the|strong=\"H4480\"* north|strong=\"H6828\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 18, + "text": "“The|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"*, between|strong=\"H5921\"* Hauran|strong=\"H2362\"*, Damascus|strong=\"H1834\"*, Gilead|strong=\"H1568\"*, and|strong=\"H3478\"* the|strong=\"H5921\"* land|strong=\"H1366\"* of|strong=\"H1366\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* be|strong=\"H3478\"* the|strong=\"H5921\"* Jordan|strong=\"H3383\"*; from|strong=\"H5921\"* the|strong=\"H5921\"* north border|strong=\"H1366\"* to|strong=\"H3478\"* the|strong=\"H5921\"* east|strong=\"H6921\"* sea|strong=\"H3220\"* you|strong=\"H5921\"* shall|strong=\"H3478\"* measure|strong=\"H4058\"*. This|strong=\"H3478\"* is|strong=\"H3478\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 19, + "text": "“The|strong=\"H5704\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"* shall|strong=\"H4325\"* be|strong=\"H3220\"* from|strong=\"H6285\"* Tamar|strong=\"H8559\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* the|strong=\"H5704\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* Meriboth Kadesh|strong=\"H6946\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* brook|strong=\"H5158\"*, to|strong=\"H5704\"* the|strong=\"H5704\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*. This is|strong=\"H4325\"* the|strong=\"H5704\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*." + }, + { + "verseNum": 20, + "text": "“The|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"* shall|strong=\"H1366\"* be|strong=\"H3220\"* the|strong=\"H5704\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*, from|strong=\"H6285\"* the|strong=\"H5704\"* south|strong=\"H3220\"* border|strong=\"H1366\"* as|strong=\"H5704\"* far|strong=\"H5704\"* as|strong=\"H5704\"* opposite|strong=\"H5227\"* the|strong=\"H5704\"* entrance of|strong=\"H1366\"* Hamath|strong=\"H2574\"*. This|strong=\"H2063\"* is|strong=\"H1419\"* the|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"*." + }, + { + "verseNum": 21, + "text": "“So|strong=\"H2063\"* you|strong=\"H3478\"* shall|strong=\"H3478\"* divide|strong=\"H2505\"* this|strong=\"H2063\"* land to|strong=\"H3478\"* yourselves according to|strong=\"H3478\"* the|strong=\"H2505\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 22, + "text": "You|strong=\"H8432\"* shall|strong=\"H1121\"* divide|strong=\"H5307\"* it|strong=\"H8432\"* by|strong=\"H3478\"* lot|strong=\"H5307\"* for|strong=\"H1121\"* an|strong=\"H1961\"* inheritance|strong=\"H5159\"* to|strong=\"H3478\"* you|strong=\"H8432\"* and|strong=\"H1121\"* to|strong=\"H3478\"* the|strong=\"H8432\"* aliens|strong=\"H1616\"* who|strong=\"H1616\"* live|strong=\"H1481\"* among|strong=\"H8432\"* you|strong=\"H8432\"*, who|strong=\"H1616\"* will|strong=\"H1961\"* father|strong=\"H3205\"* children|strong=\"H1121\"* among|strong=\"H8432\"* you|strong=\"H8432\"*. Then|strong=\"H1961\"* they|strong=\"H3478\"* shall|strong=\"H1121\"* be|strong=\"H1961\"* to|strong=\"H3478\"* you|strong=\"H8432\"* as|strong=\"H1961\"* the|strong=\"H8432\"* native-born among|strong=\"H8432\"* the|strong=\"H8432\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*. They|strong=\"H3478\"* shall|strong=\"H1121\"* have|strong=\"H1961\"* inheritance|strong=\"H5159\"* with|strong=\"H3478\"* you|strong=\"H8432\"* among|strong=\"H8432\"* the|strong=\"H8432\"* tribes|strong=\"H7626\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 23, + "text": "In|strong=\"H5414\"* whatever tribe|strong=\"H7626\"* the|strong=\"H5002\"* stranger|strong=\"H1616\"* lives|strong=\"H1481\"*, there|strong=\"H8033\"* you|strong=\"H5414\"* shall|strong=\"H3069\"* give|strong=\"H5414\"* him|strong=\"H5414\"* his|strong=\"H5414\"* inheritance|strong=\"H5159\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 48, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H1961\"* these are|strong=\"H3027\"* the|strong=\"H1870\"* names|strong=\"H8034\"* of|strong=\"H3027\"* the|strong=\"H1870\"* tribes|strong=\"H7626\"*: From|strong=\"H3027\"* the|strong=\"H1870\"* north|strong=\"H6828\"* end|strong=\"H7097\"*, beside|strong=\"H3027\"* the|strong=\"H1870\"* way|strong=\"H1870\"* of|strong=\"H3027\"* Hethlon|strong=\"H2855\"* to|strong=\"H1961\"* the|strong=\"H1870\"* entrance of|strong=\"H3027\"* Hamath|strong=\"H2574\"*, Hazar Enan at|strong=\"H1961\"* the|strong=\"H1870\"* border|strong=\"H1366\"* of|strong=\"H3027\"* Damascus|strong=\"H1834\"*, northward|strong=\"H6828\"* beside|strong=\"H3027\"* Hamath|strong=\"H2574\"* (and|strong=\"H3027\"* they|strong=\"H3027\"* shall|strong=\"H3027\"* have|strong=\"H1961\"* their|strong=\"H1961\"* sides|strong=\"H6285\"* east|strong=\"H6921\"* and|strong=\"H3027\"* west|strong=\"H3220\"*), Dan|strong=\"H1835\"*, one|strong=\"H1961\"* portion|strong=\"H7097\"*." + }, + { + "verseNum": 2, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Dan|strong=\"H1835\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Asher, one portion." + }, + { + "verseNum": 3, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Asher, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Naphtali|strong=\"H5321\"*, one portion." + }, + { + "verseNum": 4, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Naphtali|strong=\"H5321\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Manasseh|strong=\"H4519\"*, one portion." + }, + { + "verseNum": 5, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Manasseh|strong=\"H4519\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Ephraim, one portion." + }, + { + "verseNum": 6, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Ephraim, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Reuben|strong=\"H7205\"*, one portion." + }, + { + "verseNum": 7, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Reuben|strong=\"H7205\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Judah|strong=\"H3063\"*, one portion." + }, + { + "verseNum": 8, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Judah|strong=\"H3063\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, shall|strong=\"H1366\"* be|strong=\"H1961\"* the|strong=\"H5921\"* offering|strong=\"H8641\"* which|strong=\"H3063\"* you|strong=\"H5921\"* shall|strong=\"H1366\"* offer|strong=\"H7311\"*, twenty-five|strong=\"H6242\"* thousand reeds in|strong=\"H5921\"* width|strong=\"H7341\"*, and|strong=\"H3063\"* in|strong=\"H5921\"* length|strong=\"H5921\"* as|strong=\"H5704\"* one|strong=\"H1961\"* of|strong=\"H1366\"* the|strong=\"H5921\"* portions|strong=\"H2506\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*; and|strong=\"H3063\"* the|strong=\"H5921\"* sanctuary|strong=\"H4720\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H8432\"* of|strong=\"H1366\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 9, + "text": "“The|strong=\"H3068\"* offering|strong=\"H8641\"* that|strong=\"H3068\"* you shall|strong=\"H3068\"* offer|strong=\"H7311\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* twenty-five|strong=\"H6242\"* thousand reeds in|strong=\"H3068\"* length, and|strong=\"H3068\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3068\"* these, even|strong=\"H3068\"* for|strong=\"H3068\"* the|strong=\"H8432\"* priests|strong=\"H3548\"*, shall|strong=\"H3548\"* be|strong=\"H1961\"* the|strong=\"H8432\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*: toward|strong=\"H3068\"* the|strong=\"H8432\"* north|strong=\"H6828\"* twenty-five|strong=\"H6242\"* thousand in|strong=\"H3068\"* length, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* west|strong=\"H3220\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* east|strong=\"H6921\"* ten|strong=\"H6235\"* thousand in|strong=\"H3068\"* width|strong=\"H7341\"*, and|strong=\"H3068\"* toward|strong=\"H3068\"* the|strong=\"H8432\"* south|strong=\"H5045\"* twenty-five|strong=\"H6242\"* thousand in|strong=\"H3068\"* length; and|strong=\"H3068\"* the|strong=\"H8432\"* sanctuary|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* shall|strong=\"H3548\"* be|strong=\"H1961\"* in|strong=\"H3068\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* it|strong=\"H8432\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H6942\"* shall|strong=\"H3548\"* be|strong=\"H3808\"* for|strong=\"H1121\"* the|strong=\"H8104\"* priests|strong=\"H3548\"* who|strong=\"H3548\"* are|strong=\"H1121\"* sanctified|strong=\"H6942\"* of|strong=\"H1121\"* the|strong=\"H8104\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Zadok|strong=\"H6659\"*, who|strong=\"H3548\"* have|strong=\"H1121\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* instruction, who|strong=\"H3548\"* didn’t go|strong=\"H8582\"* astray|strong=\"H8582\"* when|strong=\"H1121\"* the|strong=\"H8104\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*, as|strong=\"H1121\"* the|strong=\"H8104\"* Levites|strong=\"H3881\"* went|strong=\"H3478\"* astray|strong=\"H8582\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1961\"* shall|strong=\"H3881\"* be|strong=\"H1961\"* to|strong=\"H1961\"* them|strong=\"H1961\"* an|strong=\"H1961\"* offering|strong=\"H8641\"* from|strong=\"H3881\"* the|strong=\"H1961\"* offering|strong=\"H8641\"* of|strong=\"H1366\"* the|strong=\"H1961\"* land|strong=\"H1366\"*, a|strong=\"H3068\"* most|strong=\"H6944\"* holy|strong=\"H6944\"* thing|strong=\"H6944\"*, by|strong=\"H1961\"* the|strong=\"H1961\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H1961\"* Levites|strong=\"H3881\"*." + }, + { + "verseNum": 13, + "text": "“Alongside|strong=\"H5980\"* the|strong=\"H3605\"* border|strong=\"H1366\"* of|strong=\"H1366\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, the|strong=\"H3605\"* Levites|strong=\"H3881\"* shall|strong=\"H3548\"* have|strong=\"H3548\"* twenty-five|strong=\"H6242\"* thousand cubits|strong=\"H2568\"* in|strong=\"H6235\"* length and|strong=\"H6242\"* ten|strong=\"H6235\"* thousand in|strong=\"H6235\"* width|strong=\"H7341\"*. All|strong=\"H3605\"* the|strong=\"H3605\"* length shall|strong=\"H3548\"* be|strong=\"H3548\"* twenty-five|strong=\"H6242\"* thousand, and|strong=\"H6242\"* the|strong=\"H3605\"* width|strong=\"H7341\"* ten|strong=\"H6235\"* thousand." + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* shall|strong=\"H3068\"* sell|strong=\"H4376\"* none|strong=\"H3808\"* of|strong=\"H3068\"* it|strong=\"H3588\"*, nor|strong=\"H3808\"* exchange|strong=\"H4171\"* it|strong=\"H3588\"*, nor|strong=\"H3808\"* shall|strong=\"H3068\"* the|strong=\"H3588\"* first|strong=\"H7225\"* fruits|strong=\"H7225\"* of|strong=\"H3068\"* the|strong=\"H3588\"* land be|strong=\"H3808\"* alienated, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 15, + "text": "“The|strong=\"H6440\"* five|strong=\"H2568\"* thousand cubits|strong=\"H2568\"* that|strong=\"H1931\"* are|strong=\"H5892\"* left|strong=\"H3498\"* in|strong=\"H5921\"* the|strong=\"H6440\"* width|strong=\"H7341\"*, in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H5892\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand, shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5921\"* common|strong=\"H2455\"* use|strong=\"H1961\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* city|strong=\"H5892\"*, for|strong=\"H5921\"* dwelling|strong=\"H4186\"* and|strong=\"H6242\"* for|strong=\"H5921\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*; and|strong=\"H6242\"* the|strong=\"H6440\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 16, + "text": "These shall|strong=\"H6828\"* be|strong=\"H3220\"* its|strong=\"H3220\"* measurements|strong=\"H4060\"*: the|strong=\"H3967\"* north|strong=\"H6828\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* south|strong=\"H5045\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* on|strong=\"H6285\"* the|strong=\"H3967\"* east|strong=\"H6921\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*, and|strong=\"H3967\"* the|strong=\"H3967\"* west|strong=\"H3220\"* side|strong=\"H6285\"* four thousand and|strong=\"H3967\"* five|strong=\"H2568\"* hundred|strong=\"H3967\"*." + }, + { + "verseNum": 17, + "text": "The|strong=\"H1961\"* city|strong=\"H5892\"* shall|strong=\"H5892\"* have|strong=\"H1961\"* pasture|strong=\"H4054\"* lands|strong=\"H4054\"*: toward the|strong=\"H1961\"* north|strong=\"H6828\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* south|strong=\"H5045\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* east|strong=\"H6921\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*, and|strong=\"H3967\"* toward the|strong=\"H1961\"* west|strong=\"H3220\"* two|strong=\"H3220\"* hundred|strong=\"H3967\"* fifty|strong=\"H2572\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H5647\"* remainder|strong=\"H3498\"* of|strong=\"H5892\"* the|strong=\"H5647\"* length, alongside|strong=\"H5980\"* the|strong=\"H5647\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*, shall|strong=\"H5892\"* be|strong=\"H1961\"* ten|strong=\"H6235\"* thousand eastward|strong=\"H6921\"* and|strong=\"H3899\"* ten|strong=\"H6235\"* thousand westward|strong=\"H3220\"*; and|strong=\"H3899\"* it|strong=\"H1961\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* alongside|strong=\"H5980\"* the|strong=\"H5647\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*. Its|strong=\"H3220\"* increase|strong=\"H8393\"* shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* food|strong=\"H3899\"* to|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H8641\"* labor|strong=\"H5647\"* in|strong=\"H5892\"* the|strong=\"H5647\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 19, + "text": "Those|strong=\"H3605\"* who|strong=\"H3605\"* labor|strong=\"H5647\"* in|strong=\"H3478\"* the|strong=\"H3605\"* city|strong=\"H5892\"*, out|strong=\"H3605\"* of|strong=\"H7626\"* all|strong=\"H3605\"* the|strong=\"H3605\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, shall|strong=\"H3478\"* cultivate|strong=\"H5647\"* it|strong=\"H3605\"*." + }, + { + "verseNum": 20, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* offering|strong=\"H8641\"* shall|strong=\"H5892\"* be|strong=\"H5892\"* a|strong=\"H3068\"* square|strong=\"H7243\"* of|strong=\"H5892\"* twenty-five|strong=\"H6242\"* thousand by|strong=\"H5892\"* twenty-five|strong=\"H6242\"* thousand. You|strong=\"H3605\"* shall|strong=\"H5892\"* offer|strong=\"H7311\"* it|strong=\"H7311\"* as|strong=\"H5892\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"*, with|strong=\"H5892\"* the|strong=\"H3605\"* possession of|strong=\"H5892\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 21, + "text": "“The|strong=\"H6440\"* remainder|strong=\"H3498\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*, on|strong=\"H5921\"* the|strong=\"H6440\"* one|strong=\"H2088\"* side|strong=\"H2088\"* and|strong=\"H6242\"* on|strong=\"H5921\"* the|strong=\"H6440\"* other|strong=\"H2088\"* of|strong=\"H1004\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"* and|strong=\"H6242\"* of|strong=\"H1004\"* the|strong=\"H6440\"* possession of|strong=\"H1004\"* the|strong=\"H6440\"* city|strong=\"H5892\"*; in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand of|strong=\"H1004\"* the|strong=\"H6440\"* offering|strong=\"H8641\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H6921\"* border|strong=\"H1366\"*, and|strong=\"H6242\"* westward|strong=\"H3220\"* in|strong=\"H5921\"* front|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* twenty-five|strong=\"H6242\"* thousand toward|strong=\"H5921\"* the|strong=\"H6440\"* west|strong=\"H3220\"* border|strong=\"H1366\"*, alongside|strong=\"H5980\"* the|strong=\"H6440\"* portions|strong=\"H2506\"*, it|strong=\"H5921\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* for|strong=\"H5704\"* the|strong=\"H6440\"* prince|strong=\"H5387\"*. The|strong=\"H6440\"* holy|strong=\"H6944\"* offering|strong=\"H8641\"* and|strong=\"H6242\"* the|strong=\"H6440\"* sanctuary|strong=\"H6944\"* of|strong=\"H1004\"* the|strong=\"H6440\"* house|strong=\"H1004\"* shall|strong=\"H1004\"* be|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H6440\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 22, + "text": "Moreover|strong=\"H1961\"*, from|strong=\"H3881\"* the|strong=\"H8432\"* possession of|strong=\"H5892\"* the|strong=\"H8432\"* Levites|strong=\"H3881\"*, and|strong=\"H3063\"* from|strong=\"H3881\"* the|strong=\"H8432\"* possession of|strong=\"H5892\"* the|strong=\"H8432\"* city|strong=\"H5892\"*, being|strong=\"H1961\"* in|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H5892\"* that|strong=\"H3881\"* which|strong=\"H5892\"* is|strong=\"H5892\"* the|strong=\"H8432\"* prince|strong=\"H5387\"*’s, between|strong=\"H8432\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* the|strong=\"H8432\"* border|strong=\"H1366\"* of|strong=\"H5892\"* Benjamin|strong=\"H1144\"*, shall|strong=\"H5892\"* be|strong=\"H1961\"* for|strong=\"H5892\"* the|strong=\"H8432\"* prince|strong=\"H5387\"*." + }, + { + "verseNum": 23, + "text": "“As|strong=\"H5704\"* for|strong=\"H5704\"* the|strong=\"H5704\"* rest|strong=\"H3499\"* of|strong=\"H7626\"* the|strong=\"H5704\"* tribes|strong=\"H7626\"*: from|strong=\"H6285\"* the|strong=\"H5704\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5704\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Benjamin|strong=\"H1144\"*, one portion." + }, + { + "verseNum": 24, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Benjamin|strong=\"H1144\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Simeon|strong=\"H8095\"*, one portion." + }, + { + "verseNum": 25, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Simeon|strong=\"H8095\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Issachar|strong=\"H3485\"*, one portion." + }, + { + "verseNum": 26, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Issachar|strong=\"H3485\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Zebulun|strong=\"H2074\"*, one portion." + }, + { + "verseNum": 27, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Zebulun|strong=\"H2074\"*, from|strong=\"H5921\"* the|strong=\"H5921\"* east|strong=\"H6921\"* side|strong=\"H6285\"* to|strong=\"H5704\"* the|strong=\"H5921\"* west|strong=\"H3220\"* side|strong=\"H6285\"*, Gad|strong=\"H1410\"*, one portion." + }, + { + "verseNum": 28, + "text": "“By|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H1366\"* Gad|strong=\"H1410\"*, at|strong=\"H5921\"* the|strong=\"H5921\"* south|strong=\"H5045\"* side|strong=\"H6285\"* southward|strong=\"H5045\"*, the|strong=\"H5921\"* border|strong=\"H1366\"* shall|strong=\"H1366\"* be|strong=\"H1961\"* even|strong=\"H5921\"* from|strong=\"H5921\"* Tamar|strong=\"H8559\"* to|strong=\"H1961\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* of|strong=\"H1366\"* Meribath Kadesh|strong=\"H6946\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* brook|strong=\"H5158\"*, to|strong=\"H1961\"* the|strong=\"H5921\"* great|strong=\"H1419\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 29, + "text": "“This|strong=\"H2063\"* is|strong=\"H3478\"* the|strong=\"H5002\"* land|strong=\"H5159\"* which|strong=\"H3478\"* you|strong=\"H5159\"* shall|strong=\"H3478\"* divide|strong=\"H5307\"* by|strong=\"H3478\"* lot|strong=\"H5307\"* to|strong=\"H3478\"* the|strong=\"H5002\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"* for|strong=\"H3478\"* inheritance|strong=\"H5159\"*, and|strong=\"H3478\"* these|strong=\"H2063\"* are|strong=\"H3478\"* their|strong=\"H5307\"* several portions|strong=\"H4256\"*, says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 30, + "text": "“These are|strong=\"H5892\"* the|strong=\"H5892\"* exits|strong=\"H8444\"* of|strong=\"H5892\"* the|strong=\"H5892\"* city|strong=\"H5892\"*: On|strong=\"H5892\"* the|strong=\"H5892\"* north|strong=\"H6828\"* side|strong=\"H6285\"* four thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds by|strong=\"H5892\"* measure|strong=\"H4060\"*;" + }, + { + "verseNum": 31, + "text": "and|strong=\"H3063\"* the|strong=\"H5921\"* gates|strong=\"H8179\"* of|strong=\"H7626\"* the|strong=\"H5921\"* city|strong=\"H5892\"* shall|strong=\"H3478\"* be|strong=\"H8034\"* named|strong=\"H8034\"* after|strong=\"H5921\"* the|strong=\"H5921\"* tribes|strong=\"H7626\"* of|strong=\"H7626\"* Israel|strong=\"H3478\"*, three|strong=\"H7969\"* gates|strong=\"H8179\"* northward|strong=\"H6828\"*: the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Reuben|strong=\"H7205\"*, one|strong=\"H5892\"*; the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Judah|strong=\"H3063\"*, one|strong=\"H5892\"*; the|strong=\"H5921\"* gate|strong=\"H8179\"* of|strong=\"H7626\"* Levi|strong=\"H3878\"*, one|strong=\"H5892\"*." + }, + { + "verseNum": 32, + "text": "“At|strong=\"H1144\"* the|strong=\"H8179\"* east|strong=\"H6921\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds, and|strong=\"H3967\"* three|strong=\"H7969\"* gates|strong=\"H8179\"*: even the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Joseph|strong=\"H3130\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Benjamin|strong=\"H1144\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Dan|strong=\"H1835\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 33, + "text": "“At|strong=\"H7969\"* the|strong=\"H8179\"* south|strong=\"H5045\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds by|strong=\"H8179\"* measure|strong=\"H4060\"*, and|strong=\"H3967\"* three|strong=\"H7969\"* gates|strong=\"H8179\"*: the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Simeon|strong=\"H8095\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Issachar|strong=\"H3485\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Zebulun|strong=\"H2074\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 34, + "text": "“At|strong=\"H3220\"* the|strong=\"H8179\"* west|strong=\"H3220\"* side|strong=\"H6285\"* four|strong=\"H7969\"* thousand five|strong=\"H2568\"* hundred|strong=\"H3967\"* reeds, with|strong=\"H3220\"* their three|strong=\"H7969\"* gates|strong=\"H8179\"*: the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Gad|strong=\"H1410\"*, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Asher, one|strong=\"H3967\"*; the|strong=\"H8179\"* gate|strong=\"H8179\"* of|strong=\"H8179\"* Naphtali|strong=\"H5321\"*, one|strong=\"H3967\"*." + }, + { + "verseNum": 35, + "text": "“It|strong=\"H5439\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* eighteen|strong=\"H8083\"* thousand reeds in|strong=\"H3068\"* circumference; and|strong=\"H3068\"* the|strong=\"H3068\"* name|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H3068\"* city|strong=\"H5892\"* from|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H3068\"*, ‘Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* there|strong=\"H8033\"*.’" + } + ] + } + ] + }, + { + "name": "Daniel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H5921\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, Nebuchadnezzar|strong=\"H5019\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Babylon came|strong=\"H3063\"* to|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* besieged|strong=\"H6696\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H5414\"* Lord+ 1:2 The word translated “Lord” is “Adonai.”* gave|strong=\"H5414\"* Jehoiakim|strong=\"H3079\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"* into|strong=\"H3027\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*, with|strong=\"H1004\"* some|strong=\"H3027\"* of|strong=\"H4428\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* God|strong=\"H5414\"*;+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3063\"* he|strong=\"H1004\"* carried them|strong=\"H5414\"* into|strong=\"H3027\"* the|strong=\"H5414\"* land of|strong=\"H4428\"* Shinar|strong=\"H8152\"* to|strong=\"H5414\"* the|strong=\"H5414\"* house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* god|strong=\"H5414\"*. He|strong=\"H1004\"* brought|strong=\"H5414\"* the|strong=\"H5414\"* vessels|strong=\"H3627\"* into|strong=\"H3027\"* the|strong=\"H5414\"* treasure house|strong=\"H1004\"* of|strong=\"H4428\"* his|strong=\"H5414\"* god|strong=\"H5414\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* spoke to|strong=\"H3478\"* Ashpenaz, the|strong=\"H4480\"* master|strong=\"H7227\"* of|strong=\"H1121\"* his|strong=\"H3478\"* eunuchs|strong=\"H5631\"*, that|strong=\"H3478\"* he|strong=\"H4480\"* should|strong=\"H3478\"* bring in|strong=\"H3478\"* some|strong=\"H4480\"* of|strong=\"H1121\"* the|strong=\"H4480\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, even of|strong=\"H1121\"* the|strong=\"H4480\"* royal|strong=\"H4428\"* offspring|strong=\"H2233\"*+ 1:3 or, seed* and|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H4480\"* nobles|strong=\"H6579\"*:" + }, + { + "verseNum": 4, + "text": "youths|strong=\"H3206\"* in|strong=\"H4428\"* whom was|strong=\"H4428\"* no|strong=\"H3605\"* defect|strong=\"H3971\"*, but|strong=\"H3605\"* well-favored, skillful|strong=\"H3045\"* in|strong=\"H4428\"* all|strong=\"H3605\"* wisdom|strong=\"H2451\"*, endowed|strong=\"H3045\"* with|strong=\"H3045\"* knowledge|strong=\"H1847\"*, understanding|strong=\"H7919\"* science|strong=\"H4093\"*, and|strong=\"H4428\"* who|strong=\"H3605\"* had|strong=\"H4428\"* the|strong=\"H3605\"* ability|strong=\"H3581\"* to|strong=\"H4428\"* stand|strong=\"H5975\"* in|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s palace|strong=\"H1964\"*; and|strong=\"H4428\"* that|strong=\"H3045\"* he|strong=\"H3605\"* should|strong=\"H4428\"* teach|strong=\"H3925\"* them|strong=\"H5975\"* the|strong=\"H3605\"* learning|strong=\"H5612\"* and|strong=\"H4428\"* the|strong=\"H3605\"* language|strong=\"H3956\"* of|strong=\"H4428\"* the|strong=\"H3605\"* Chaldeans|strong=\"H3778\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* king|strong=\"H4428\"* appointed|strong=\"H5975\"* for|strong=\"H6440\"* them|strong=\"H6440\"* a|strong=\"H3068\"* daily|strong=\"H3117\"* portion|strong=\"H1697\"* of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"* and|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6440\"* wine|strong=\"H3196\"* which|strong=\"H1697\"* he|strong=\"H3117\"* drank|strong=\"H4960\"*, and|strong=\"H4428\"* that|strong=\"H3117\"* they|strong=\"H3117\"* should|strong=\"H8141\"* be|strong=\"H1697\"* nourished|strong=\"H1431\"* three|strong=\"H7969\"* years|strong=\"H8141\"*, that|strong=\"H3117\"* at|strong=\"H3117\"* its|strong=\"H5975\"* end|strong=\"H7117\"* they|strong=\"H3117\"* should|strong=\"H8141\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 6, + "text": "Now|strong=\"H1961\"* among these of|strong=\"H1121\"* the|strong=\"H1961\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* were|strong=\"H1961\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H1121\"* Azariah|strong=\"H5838\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H7760\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H7760\"* eunuchs|strong=\"H5631\"* gave|strong=\"H7760\"* names|strong=\"H8034\"* to|strong=\"H8034\"* them|strong=\"H1992\"*: to|strong=\"H8034\"* Daniel|strong=\"H1840\"* he|strong=\"H7760\"* gave|strong=\"H7760\"* the|strong=\"H7760\"* name|strong=\"H8034\"* Belteshazzar|strong=\"H1095\"*; to|strong=\"H8034\"* Hananiah|strong=\"H2608\"*, Shadrach|strong=\"H7714\"*; to|strong=\"H8034\"* Mishael|strong=\"H4332\"*, Meshach|strong=\"H4335\"*; and|strong=\"H8269\"* to|strong=\"H8034\"* Azariah|strong=\"H5838\"*, Abednego." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3808\"* Daniel|strong=\"H1840\"* purposed|strong=\"H7760\"* in|strong=\"H5921\"* his|strong=\"H7760\"* heart|strong=\"H3820\"* that|strong=\"H4428\"* he|strong=\"H3808\"* would|strong=\"H4428\"* not|strong=\"H3808\"* defile|strong=\"H1351\"* himself|strong=\"H3820\"* with|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*, nor|strong=\"H3808\"* with|strong=\"H5921\"* the|strong=\"H5921\"* wine|strong=\"H3196\"* which|strong=\"H8269\"* he|strong=\"H3808\"* drank|strong=\"H4960\"*. Therefore|strong=\"H5921\"* he|strong=\"H3808\"* requested|strong=\"H1245\"* of|strong=\"H4428\"* the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"* that|strong=\"H4428\"* he|strong=\"H3808\"* might not|strong=\"H3808\"* defile|strong=\"H1351\"* himself|strong=\"H3820\"*." + }, + { + "verseNum": 9, + "text": "Now|strong=\"H5414\"* God|strong=\"H5414\"* made|strong=\"H5414\"* Daniel|strong=\"H1840\"* find|strong=\"H5414\"* kindness|strong=\"H2617\"* and|strong=\"H6440\"* compassion|strong=\"H7356\"* in|strong=\"H6440\"* the|strong=\"H6440\"* sight|strong=\"H6440\"* of|strong=\"H8269\"* the|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* said to|strong=\"H6440\"* Daniel|strong=\"H1840\"*, “I|strong=\"H7200\"* fear|strong=\"H3373\"* my|strong=\"H7200\"* lord the|strong=\"H6440\"* king|strong=\"H4428\"*, who|strong=\"H4428\"* has|strong=\"H4428\"* appointed|strong=\"H4487\"* your|strong=\"H6440\"* food|strong=\"H3978\"* and|strong=\"H4428\"* your|strong=\"H6440\"* drink|strong=\"H4960\"*. For|strong=\"H6440\"* why|strong=\"H4100\"* should|strong=\"H4100\"* he|strong=\"H4480\"* see|strong=\"H7200\"* your|strong=\"H6440\"* faces|strong=\"H6440\"* worse|strong=\"H6440\"* looking|strong=\"H7200\"* than|strong=\"H4480\"* the|strong=\"H6440\"* youths|strong=\"H3206\"* who|strong=\"H4428\"* are|strong=\"H4100\"* of|strong=\"H4428\"* your|strong=\"H6440\"* own|strong=\"H6440\"* age|strong=\"H1524\"*? Then|strong=\"H4428\"* you|strong=\"H6440\"* would|strong=\"H4100\"* endanger|strong=\"H2325\"* my|strong=\"H7200\"* head|strong=\"H7218\"* with|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*.”" + }, + { + "verseNum": 11, + "text": "Then Daniel|strong=\"H1840\"* said to|strong=\"H5921\"* the|strong=\"H5921\"* steward whom the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H5921\"* eunuchs|strong=\"H5631\"* had|strong=\"H8269\"* appointed|strong=\"H4487\"* over|strong=\"H5921\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H8269\"* Azariah|strong=\"H5838\"*:" + }, + { + "verseNum": 12, + "text": "“Test|strong=\"H5254\"* your|strong=\"H5414\"* servants|strong=\"H5650\"*, I|strong=\"H3117\"* beg|strong=\"H4994\"* you|strong=\"H5414\"*, ten|strong=\"H6235\"* days|strong=\"H3117\"*; and|strong=\"H3117\"* let|strong=\"H4994\"* them|strong=\"H5414\"* give|strong=\"H5414\"* us|strong=\"H5414\"* vegetables|strong=\"H2235\"* to|strong=\"H5414\"* eat and|strong=\"H3117\"* water|strong=\"H4325\"* to|strong=\"H5414\"* drink|strong=\"H8354\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6213\"* let our|strong=\"H7200\"* faces|strong=\"H6440\"* be|strong=\"H4428\"* examined|strong=\"H7200\"* before|strong=\"H6440\"* you|strong=\"H6440\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* face|strong=\"H6440\"* of|strong=\"H4428\"* the|strong=\"H6440\"* youths|strong=\"H3206\"* who|strong=\"H5650\"* eat of|strong=\"H4428\"* the|strong=\"H6440\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*; and|strong=\"H4428\"* as|strong=\"H6213\"* you|strong=\"H6440\"* see|strong=\"H7200\"*, deal|strong=\"H6213\"* with|strong=\"H5973\"* your|strong=\"H6440\"* servants|strong=\"H5650\"*.”" + }, + { + "verseNum": 14, + "text": "So|strong=\"H2088\"* he|strong=\"H3117\"* listened|strong=\"H8085\"* to|strong=\"H3117\"* them|strong=\"H8085\"* in|strong=\"H8085\"* this|strong=\"H2088\"* matter|strong=\"H1697\"*, and|strong=\"H3117\"* tested|strong=\"H5254\"* them|strong=\"H8085\"* for|strong=\"H3117\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 15, + "text": "At|strong=\"H3117\"* the|strong=\"H3605\"* end|strong=\"H7117\"* of|strong=\"H4428\"* ten|strong=\"H6235\"* days|strong=\"H3117\"*, their|strong=\"H3605\"* faces appeared|strong=\"H7200\"* fairer|strong=\"H2896\"* and|strong=\"H4428\"* they|strong=\"H3117\"* were|strong=\"H3117\"* fatter|strong=\"H1277\"* in|strong=\"H4428\"* flesh|strong=\"H1320\"* than|strong=\"H4480\"* all|strong=\"H3605\"* the|strong=\"H3605\"* youths|strong=\"H3206\"* who|strong=\"H3605\"* ate of|strong=\"H4428\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s delicacies|strong=\"H6598\"*." + }, + { + "verseNum": 16, + "text": "So|strong=\"H1961\"* the|strong=\"H5414\"* steward took|strong=\"H5375\"* away|strong=\"H5375\"* their|strong=\"H5375\"* delicacies|strong=\"H6598\"* and|strong=\"H3196\"* the|strong=\"H5414\"* wine|strong=\"H3196\"* that|strong=\"H5414\"* they|strong=\"H5375\"* were|strong=\"H1961\"* given|strong=\"H5414\"* to|strong=\"H1961\"* drink|strong=\"H4960\"*, and|strong=\"H3196\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* vegetables|strong=\"H2235\"*." + }, + { + "verseNum": 17, + "text": "Now|strong=\"H5414\"* as|strong=\"H5414\"* for|strong=\"H3605\"* these|strong=\"H3605\"* four youths|strong=\"H3206\"*, God|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* knowledge|strong=\"H4093\"* and|strong=\"H2451\"* skill|strong=\"H2451\"* in|strong=\"H5414\"* all|strong=\"H3605\"* learning|strong=\"H5612\"* and|strong=\"H2451\"* wisdom|strong=\"H2451\"*; and|strong=\"H2451\"* Daniel|strong=\"H1840\"* had|strong=\"H5414\"* understanding|strong=\"H7919\"* in|strong=\"H5414\"* all|strong=\"H3605\"* visions|strong=\"H2377\"* and|strong=\"H2451\"* dreams|strong=\"H2472\"*." + }, + { + "verseNum": 18, + "text": "At|strong=\"H3117\"* the|strong=\"H6440\"* end|strong=\"H7117\"* of|strong=\"H4428\"* the|strong=\"H6440\"* days|strong=\"H3117\"* which|strong=\"H8269\"* the|strong=\"H6440\"* king|strong=\"H4428\"* had|strong=\"H4428\"* appointed|strong=\"H7117\"* for|strong=\"H6440\"* bringing them|strong=\"H6440\"* in|strong=\"H4428\"*, the|strong=\"H6440\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H6440\"* eunuchs|strong=\"H5631\"* brought|strong=\"H4428\"* them|strong=\"H6440\"* in|strong=\"H4428\"* before|strong=\"H6440\"* Nebuchadnezzar|strong=\"H5019\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H3605\"* king|strong=\"H4428\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* them|strong=\"H6440\"*; and|strong=\"H4428\"* among|strong=\"H4672\"* them|strong=\"H6440\"* all|strong=\"H3605\"* was|strong=\"H4428\"* found|strong=\"H4672\"* no|strong=\"H3808\"* one|strong=\"H3605\"* like|strong=\"H3808\"* Daniel|strong=\"H1840\"*, Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4332\"*, and|strong=\"H4428\"* Azariah|strong=\"H5838\"*. Therefore they|strong=\"H3808\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H3605\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* every|strong=\"H3605\"* matter|strong=\"H1697\"* of|strong=\"H4428\"* wisdom|strong=\"H2451\"* and|strong=\"H4428\"* understanding concerning|strong=\"H5921\"* which|strong=\"H1992\"* the|strong=\"H3605\"* king|strong=\"H4428\"* inquired|strong=\"H1245\"* of|strong=\"H4428\"* them|strong=\"H1992\"*, he|strong=\"H3605\"* found|strong=\"H4672\"* them|strong=\"H1992\"* ten|strong=\"H6235\"* times|strong=\"H3027\"* better|strong=\"H3027\"* than|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* magicians|strong=\"H2748\"* and|strong=\"H4428\"* enchanters who|strong=\"H3605\"* were|strong=\"H1992\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* realm|strong=\"H4438\"*." + }, + { + "verseNum": 21, + "text": "Daniel|strong=\"H1840\"* continued|strong=\"H1961\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* first year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Cyrus|strong=\"H3566\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H8141\"* the|strong=\"H5921\"* reign|strong=\"H4438\"* of|strong=\"H8141\"* Nebuchadnezzar|strong=\"H5019\"*, Nebuchadnezzar|strong=\"H5019\"* dreamed|strong=\"H2492\"* dreams|strong=\"H2472\"*; and|strong=\"H8141\"* his|strong=\"H5921\"* spirit|strong=\"H7307\"* was|strong=\"H1961\"* troubled|strong=\"H6470\"*, and|strong=\"H8141\"* his|strong=\"H5921\"* sleep|strong=\"H8142\"* went|strong=\"H8147\"* from|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H5975\"* the|strong=\"H6440\"* king|strong=\"H4428\"* commanded that|strong=\"H4428\"* the|strong=\"H6440\"* magicians|strong=\"H2748\"*, the|strong=\"H6440\"* enchanters, the|strong=\"H6440\"* sorcerers|strong=\"H3784\"*, and|strong=\"H4428\"* the|strong=\"H6440\"* Chaldeans|strong=\"H3778\"* be|strong=\"H4428\"* called|strong=\"H7121\"* to|strong=\"H6440\"* tell|strong=\"H5046\"* the|strong=\"H6440\"* king|strong=\"H4428\"* his|strong=\"H7121\"* dreams|strong=\"H2472\"*. So|strong=\"H7121\"* they|strong=\"H6440\"* came|strong=\"H4428\"* in|strong=\"H4428\"* and|strong=\"H4428\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3045\"* king|strong=\"H4428\"* said to|strong=\"H4428\"* them|strong=\"H1992\"*, “I|strong=\"H3045\"* have|strong=\"H3045\"* dreamed|strong=\"H2492\"* a|strong=\"H3068\"* dream|strong=\"H2472\"*, and|strong=\"H4428\"* my|strong=\"H3045\"* spirit|strong=\"H7307\"* is|strong=\"H4428\"* troubled|strong=\"H6470\"* to|strong=\"H4428\"* know|strong=\"H3045\"* the|strong=\"H3045\"* dream|strong=\"H2472\"*.”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1696\"* the|strong=\"H1696\"* Chaldeans|strong=\"H3778\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* king|strong=\"H4428\"* in|strong=\"H4428\"* the|strong=\"H1696\"* Syrian language, “O|strong=\"H3068\"* king|strong=\"H4428\"*, live|strong=\"H2418\"* forever|strong=\"H5957\"*! Tell|strong=\"H1696\"* your|strong=\"H4428\"* servants|strong=\"H5649\"* the|strong=\"H1696\"* dream|strong=\"H2493\"*, and|strong=\"H4428\"* we|strong=\"H3068\"* will|strong=\"H4428\"* show the|strong=\"H1696\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H4481\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* the|strong=\"H4481\"* Chaldeans|strong=\"H3779\"*, “The|strong=\"H4481\"* thing|strong=\"H4406\"* has|strong=\"H4430\"* gone from|strong=\"H4481\"* me|strong=\"H4481\"*. If|strong=\"H2006\"* you|strong=\"H4481\"* don’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me|strong=\"H4481\"* the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H6032\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H4481\"* will|strong=\"H4430\"* be|strong=\"H3809\"* cut|strong=\"H5648\"* in|strong=\"H5648\"* pieces|strong=\"H1917\"*, and|strong=\"H6032\"* your houses|strong=\"H1005\"* will|strong=\"H4430\"* be|strong=\"H3809\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"*." + }, + { + "verseNum": 6, + "text": "But|strong=\"H4481\"* if|strong=\"H2006\"* you|strong=\"H4481\"* show the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H3367\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H4481\"* will receive|strong=\"H6902\"* from|strong=\"H4481\"* me|strong=\"H6925\"* gifts|strong=\"H4978\"*, rewards|strong=\"H5023\"*, and|strong=\"H3367\"* great|strong=\"H7690\"* honor|strong=\"H3367\"*. Therefore|strong=\"H4481\"* show me|strong=\"H6925\"* the|strong=\"H4481\"* dream|strong=\"H2493\"* and|strong=\"H3367\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 7, + "text": "They answered|strong=\"H6032\"* the|strong=\"H2324\"* second|strong=\"H8579\"* time|strong=\"H8579\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Let the|strong=\"H2324\"* king|strong=\"H4430\"* tell his servants|strong=\"H5649\"* the|strong=\"H2324\"* dream|strong=\"H2493\"*, and|strong=\"H6032\"* we|strong=\"H3068\"* will|strong=\"H4430\"* show the|strong=\"H2324\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* answered|strong=\"H6032\"*, “I|strong=\"H4481\"* know|strong=\"H3046\"* of|strong=\"H4481\"* a|strong=\"H3068\"* certainty|strong=\"H3330\"* that|strong=\"H1768\"* you|strong=\"H1768\"* are|strong=\"H1768\"* trying to|strong=\"H3046\"* gain|strong=\"H2084\"* time|strong=\"H5732\"*, because|strong=\"H6903\"* you|strong=\"H1768\"* see|strong=\"H2370\"* the|strong=\"H3606\"* thing|strong=\"H4406\"* has|strong=\"H1768\"* gone from|strong=\"H4481\"* me|strong=\"H4481\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H1768\"* if|strong=\"H2006\"* you|strong=\"H1768\"* don’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* me|strong=\"H6925\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*, there|strong=\"H1768\"* is|strong=\"H1768\"* but|strong=\"H1768\"* one|strong=\"H2298\"* law|strong=\"H1882\"* for|strong=\"H5705\"* you|strong=\"H1768\"*; for|strong=\"H5705\"* you|strong=\"H1768\"* have|strong=\"H1768\"* prepared|strong=\"H2164\"* lying|strong=\"H3538\"* and|strong=\"H2493\"* corrupt|strong=\"H7844\"* words|strong=\"H4406\"* to|strong=\"H6925\"* speak before|strong=\"H6925\"* me|strong=\"H6925\"*, until|strong=\"H5705\"* the|strong=\"H6925\"* situation|strong=\"H5732\"* changes|strong=\"H8133\"*. Therefore tell me|strong=\"H6925\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*, and|strong=\"H2493\"* I|strong=\"H1768\"* will|strong=\"H1768\"* know|strong=\"H3046\"* that|strong=\"H1768\"* you|strong=\"H1768\"* can|strong=\"H1768\"* show me|strong=\"H6925\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3606\"* Chaldeans|strong=\"H3779\"* answered|strong=\"H6032\"* the|strong=\"H3606\"* king|strong=\"H4430\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “There|strong=\"H6903\"* is|strong=\"H1768\"* not|strong=\"H3809\"* a|strong=\"H3068\"* man on|strong=\"H5922\"* the|strong=\"H3606\"* earth|strong=\"H3007\"* who|strong=\"H1768\"* can|strong=\"H3202\"* show the|strong=\"H3606\"* king|strong=\"H4430\"*’s matter|strong=\"H4406\"*, because|strong=\"H6903\"* no|strong=\"H3809\"* king|strong=\"H4430\"*, lord|strong=\"H7229\"*, or|strong=\"H3809\"* ruler|strong=\"H7990\"* has|strong=\"H1768\"* asked|strong=\"H7593\"* such|strong=\"H1836\"* a|strong=\"H3068\"* thing|strong=\"H4406\"* of|strong=\"H4430\"* any|strong=\"H3606\"* magician|strong=\"H2749\"*, enchanter, or|strong=\"H3809\"* Chaldean|strong=\"H3779\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1321\"* is|strong=\"H1768\"* a|strong=\"H3068\"* rare|strong=\"H3358\"* thing|strong=\"H4406\"* that|strong=\"H1768\"* the|strong=\"H6925\"* king|strong=\"H4430\"* requires, and|strong=\"H4430\"* there|strong=\"H1768\"* is|strong=\"H1768\"* no|strong=\"H3809\"* other|strong=\"H3861\"* who|strong=\"H1768\"* can|strong=\"H1768\"* show it|strong=\"H1321\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"* except|strong=\"H3861\"* the|strong=\"H6925\"* gods, whose|strong=\"H1768\"* dwelling|strong=\"H4070\"* is|strong=\"H1768\"* not|strong=\"H3809\"* with|strong=\"H5974\"* flesh|strong=\"H1321\"*.”" + }, + { + "verseNum": 12, + "text": "Because|strong=\"H6903\"* of|strong=\"H4430\"* this|strong=\"H1836\"*, the|strong=\"H3606\"* king|strong=\"H4430\"* was|strong=\"H4430\"* angry|strong=\"H1149\"* and|strong=\"H4430\"* very|strong=\"H7690\"* furious|strong=\"H7108\"*, and|strong=\"H4430\"* commanded that|strong=\"H3606\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon be destroyed." + }, + { + "verseNum": 13, + "text": "So the|strong=\"H6992\"* decree|strong=\"H1882\"* went|strong=\"H1841\"* out|strong=\"H5312\"*, and|strong=\"H1156\"* the|strong=\"H6992\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* were to|strong=\"H1156\"* be|strong=\"H1841\"* slain|strong=\"H6992\"*. They sought|strong=\"H1156\"* Daniel|strong=\"H1841\"* and|strong=\"H1156\"* his|strong=\"H1156\"* companions|strong=\"H2269\"* to|strong=\"H1156\"* be|strong=\"H1841\"* slain|strong=\"H6992\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* returned|strong=\"H8421\"* answer|strong=\"H8421\"* with|strong=\"H8421\"* counsel|strong=\"H2942\"* and|strong=\"H4430\"* prudence to|strong=\"H2942\"* Arioch the|strong=\"H1768\"* captain|strong=\"H7229\"* of|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"*’s guard|strong=\"H2877\"*, who|strong=\"H1768\"* had|strong=\"H4430\"* gone|strong=\"H5312\"* out|strong=\"H5312\"* to|strong=\"H2942\"* kill|strong=\"H6992\"* the|strong=\"H1768\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 15, + "text": "He|strong=\"H1768\"* answered|strong=\"H6032\"* Arioch the|strong=\"H5922\"* king|strong=\"H4430\"*’s captain|strong=\"H7990\"*, “Why|strong=\"H4101\"* is|strong=\"H1768\"* the|strong=\"H5922\"* decree|strong=\"H1882\"* so|strong=\"H1768\"* urgent|strong=\"H2685\"* from|strong=\"H4481\"* the|strong=\"H5922\"* king|strong=\"H4430\"*?” Then|strong=\"H1768\"* Arioch made|strong=\"H3046\"* the|strong=\"H5922\"* thing|strong=\"H4406\"* known|strong=\"H3046\"* to|strong=\"H5922\"* Daniel|strong=\"H1841\"*." + }, + { + "verseNum": 16, + "text": "Daniel|strong=\"H1841\"* went|strong=\"H5954\"* in|strong=\"H5954\"*, and|strong=\"H4430\"* desired|strong=\"H1156\"* of|strong=\"H4481\"* the|strong=\"H4481\"* king|strong=\"H4430\"* that|strong=\"H1768\"* he|strong=\"H1768\"* would appoint him|strong=\"H4481\"* a|strong=\"H3068\"* time|strong=\"H2166\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* would show the|strong=\"H4481\"* king|strong=\"H4430\"* the|strong=\"H4481\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 17, + "text": "Then Daniel|strong=\"H1841\"* went|strong=\"H1841\"* to|strong=\"H3046\"* his|strong=\"H3046\"* house|strong=\"H1005\"* and|strong=\"H1005\"* made|strong=\"H3046\"* the|strong=\"H3046\"* thing|strong=\"H4406\"* known|strong=\"H3046\"* to|strong=\"H3046\"* Hananiah|strong=\"H2608\"*, Mishael|strong=\"H4333\"*, and|strong=\"H1005\"* Azariah|strong=\"H5839\"*, his|strong=\"H3046\"* companions|strong=\"H2269\"*:" + }, + { + "verseNum": 18, + "text": "that|strong=\"H1768\"* they|strong=\"H1768\"* would desire|strong=\"H1156\"* mercies|strong=\"H7359\"* of|strong=\"H4481\"* the|strong=\"H5922\"* God of|strong=\"H4481\"* heaven|strong=\"H8065\"* concerning|strong=\"H5922\"* this|strong=\"H1836\"* secret|strong=\"H7328\"*, that|strong=\"H1768\"* Daniel|strong=\"H1841\"* and|strong=\"H8065\"* his|strong=\"H5922\"* companions|strong=\"H2269\"* would not|strong=\"H3809\"* perish with|strong=\"H5974\"* the|strong=\"H5922\"* rest|strong=\"H7606\"* of|strong=\"H4481\"* the|strong=\"H5922\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4481\"* Babylon." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* the|strong=\"H1768\"* secret|strong=\"H7328\"* was|strong=\"H1841\"* revealed|strong=\"H1541\"* to|strong=\"H1541\"* Daniel|strong=\"H1841\"* in|strong=\"H1768\"* a|strong=\"H3068\"* vision|strong=\"H2376\"* of|strong=\"H1768\"* the|strong=\"H1768\"* night|strong=\"H3916\"*. Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* blessed|strong=\"H1289\"* the|strong=\"H1768\"* God of|strong=\"H1768\"* heaven|strong=\"H8065\"*." + }, + { + "verseNum": 20, + "text": "Daniel|strong=\"H1841\"* answered|strong=\"H6032\"*," + }, + { + "verseNum": 21, + "text": "He|strong=\"H1932\"* changes|strong=\"H8133\"* the|strong=\"H3046\"* times|strong=\"H5732\"* and|strong=\"H4430\"* the|strong=\"H3046\"* seasons|strong=\"H2166\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1932\"* reveals|strong=\"H1541\"* the|strong=\"H3046\"* deep|strong=\"H5994\"* and|strong=\"H5094\"* secret things|strong=\"H5642\"*." + }, + { + "verseNum": 23, + "text": "I|strong=\"H4481\"* thank|strong=\"H3029\"* you|strong=\"H1768\"* and|strong=\"H4430\"* praise|strong=\"H7624\"* you|strong=\"H1768\"*," + }, + { + "verseNum": 24, + "text": "Therefore|strong=\"H3606\"* Daniel|strong=\"H1841\"* went|strong=\"H5954\"* in|strong=\"H5954\"* to|strong=\"H5922\"* Arioch, whom|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* appointed|strong=\"H4483\"* to|strong=\"H5922\"* destroy the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon. He|strong=\"H1768\"* went|strong=\"H5954\"* and|strong=\"H4430\"* said this|strong=\"H1836\"* to|strong=\"H5922\"* him|strong=\"H5922\"*: “Don’t destroy the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon. Bring|strong=\"H5954\"* me|strong=\"H5922\"* in|strong=\"H5954\"* before|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* I|strong=\"H1836\"* will|strong=\"H1768\"* show to|strong=\"H5922\"* the|strong=\"H3606\"* king|strong=\"H4430\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1768\"* Arioch brought|strong=\"H5954\"* in|strong=\"H5954\"* Daniel|strong=\"H1841\"* before|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"* in|strong=\"H5954\"* haste, and|strong=\"H4430\"* said this|strong=\"H4481\"* to|strong=\"H6925\"* him|strong=\"H4481\"*: “I|strong=\"H4481\"* have|strong=\"H1768\"* found|strong=\"H7912\"* a|strong=\"H3068\"* man|strong=\"H1400\"* of|strong=\"H4481\"* the|strong=\"H4481\"* children|strong=\"H1123\"* of|strong=\"H4481\"* the|strong=\"H4481\"* captivity|strong=\"H1547\"* of|strong=\"H4481\"* Judah|strong=\"H3061\"* who|strong=\"H1768\"* will|strong=\"H1768\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"* the|strong=\"H4481\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 26, + "text": "The|strong=\"H1768\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* Daniel|strong=\"H1841\"*, whose|strong=\"H1768\"* name|strong=\"H8036\"* was|strong=\"H1841\"* Belteshazzar|strong=\"H1096\"*, “Are|strong=\"H1768\"* you|strong=\"H1768\"* able|strong=\"H3546\"* to|strong=\"H3046\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me the|strong=\"H1768\"* dream|strong=\"H2493\"* which|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H1768\"* seen|strong=\"H2370\"*, and|strong=\"H6032\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*?”" + }, + { + "verseNum": 27, + "text": "Daniel|strong=\"H1841\"* answered|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, and|strong=\"H6032\"* said|strong=\"H6032\"*, “The|strong=\"H6925\"* secret|strong=\"H7328\"* which|strong=\"H1768\"* the|strong=\"H6925\"* king|strong=\"H4430\"* has|strong=\"H1768\"* demanded|strong=\"H7593\"* can|strong=\"H3202\"*’t be|strong=\"H3809\"* shown to|strong=\"H3202\"* the|strong=\"H6925\"* king|strong=\"H4430\"* by|strong=\"H6925\"* wise|strong=\"H2445\"* men|strong=\"H2445\"*, enchanters, magicians|strong=\"H2749\"*, or|strong=\"H3809\"* soothsayers|strong=\"H1505\"*;" + }, + { + "verseNum": 28, + "text": "but|strong=\"H1297\"* there|strong=\"H1297\"* is|strong=\"H1768\"* a|strong=\"H3068\"* God in|strong=\"H5922\"* heaven|strong=\"H8065\"* who|strong=\"H1768\"* reveals|strong=\"H1541\"* secrets|strong=\"H7328\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* what|strong=\"H4101\"* will|strong=\"H4101\"* be|strong=\"H1934\"* in|strong=\"H5922\"* the|strong=\"H5922\"* latter days|strong=\"H3118\"*. Your|strong=\"H1768\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* the|strong=\"H5922\"* visions|strong=\"H2376\"* of|strong=\"H4430\"* your|strong=\"H1768\"* head|strong=\"H7217\"* on|strong=\"H5922\"* your|strong=\"H1768\"* bed|strong=\"H4903\"* are|strong=\"H1768\"* these|strong=\"H1836\"*:" + }, + { + "verseNum": 29, + "text": "“As|strong=\"H1768\"* for|strong=\"H5922\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, your|strong=\"H4903\"* thoughts|strong=\"H7476\"* came|strong=\"H5559\"* on|strong=\"H5922\"* your|strong=\"H4903\"* bed|strong=\"H4903\"*, what|strong=\"H4101\"* should|strong=\"H4101\"* happen hereafter; and|strong=\"H4430\"* he|strong=\"H1768\"* who|strong=\"H1768\"* reveals|strong=\"H1541\"* secrets|strong=\"H7328\"* has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* you|strong=\"H1768\"* what|strong=\"H4101\"* will|strong=\"H4101\"* happen." + }, + { + "verseNum": 30, + "text": "But|strong=\"H3861\"* as|strong=\"H3606\"* for|strong=\"H5922\"* me|strong=\"H5922\"*, this|strong=\"H1836\"* secret|strong=\"H7328\"* is|strong=\"H1768\"* not|strong=\"H3809\"* revealed|strong=\"H1541\"* to|strong=\"H5922\"* me|strong=\"H5922\"* for|strong=\"H5922\"* any|strong=\"H3606\"* wisdom|strong=\"H2452\"* that|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H1768\"* more|strong=\"H5922\"* than|strong=\"H4481\"* any|strong=\"H3606\"* living|strong=\"H2417\"*, but|strong=\"H3861\"* to|strong=\"H5922\"* the|strong=\"H3606\"* intent|strong=\"H1701\"* that|strong=\"H1768\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"* may|strong=\"H2417\"* be|strong=\"H3809\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* you|strong=\"H1768\"* may|strong=\"H2417\"* know|strong=\"H3046\"* the|strong=\"H3606\"* thoughts|strong=\"H7476\"* of|strong=\"H4481\"* your|strong=\"H1768\"* heart|strong=\"H3825\"*." + }, + { + "verseNum": 31, + "text": "“You|strong=\"H6903\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, saw|strong=\"H2370\"*, and|strong=\"H4430\"* behold,+ 2:31 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* great|strong=\"H7229\"* image|strong=\"H6755\"*. This|strong=\"H1797\"* image|strong=\"H6755\"*, which|strong=\"H6755\"* was|strong=\"H1934\"* mighty, and|strong=\"H4430\"* whose brightness|strong=\"H2122\"* was|strong=\"H1934\"* excellent|strong=\"H3493\"*, stood|strong=\"H6966\"* before|strong=\"H6903\"* you|strong=\"H6903\"*; and|strong=\"H4430\"* its appearance|strong=\"H7299\"* was|strong=\"H1934\"* terrifying." + }, + { + "verseNum": 32, + "text": "As|strong=\"H1768\"* for|strong=\"H1768\"* this|strong=\"H1932\"* image|strong=\"H6755\"*, its head|strong=\"H7217\"* was|strong=\"H1932\"* of|strong=\"H1768\"* fine|strong=\"H2869\"* gold|strong=\"H1722\"*, its chest and|strong=\"H1722\"* its arms|strong=\"H1872\"* of|strong=\"H1768\"* silver|strong=\"H3702\"*, its belly|strong=\"H4577\"* and|strong=\"H1722\"* its thighs|strong=\"H3410\"* of|strong=\"H1768\"* bronze|strong=\"H5174\"*," + }, + { + "verseNum": 33, + "text": "its|strong=\"H4481\"* legs|strong=\"H8243\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, its|strong=\"H4481\"* feet|strong=\"H7271\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"* and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 34, + "text": "You|strong=\"H1768\"* saw|strong=\"H2370\"* until|strong=\"H5705\"* a|strong=\"H3068\"* stone was|strong=\"H1934\"* cut|strong=\"H1505\"* out|strong=\"H1505\"* without|strong=\"H3809\"* hands|strong=\"H3028\"*, which|strong=\"H1768\"* struck|strong=\"H4223\"* the|strong=\"H5922\"* image|strong=\"H6755\"* on|strong=\"H5922\"* its|strong=\"H5705\"* feet|strong=\"H7271\"* that|strong=\"H1768\"* were|strong=\"H1934\"* of|strong=\"H5922\"* iron|strong=\"H6523\"* and|strong=\"H6523\"* clay|strong=\"H2635\"*, and|strong=\"H6523\"* broke them|strong=\"H1994\"* in|strong=\"H5922\"* pieces|strong=\"H1855\"*." + }, + { + "verseNum": 35, + "text": "Then|strong=\"H1768\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, the|strong=\"H3606\"* clay|strong=\"H2635\"*, the|strong=\"H3606\"* bronze|strong=\"H5174\"*, the|strong=\"H3606\"* silver|strong=\"H3702\"*, and|strong=\"H6523\"* the|strong=\"H3606\"* gold|strong=\"H1722\"* were|strong=\"H1934\"* broken in|strong=\"H7912\"* pieces|strong=\"H1855\"* together|strong=\"H2298\"*, and|strong=\"H6523\"* became|strong=\"H1934\"* like the|strong=\"H3606\"* chaff|strong=\"H5784\"* of|strong=\"H4481\"* the|strong=\"H3606\"* summer|strong=\"H7007\"* threshing floors. The|strong=\"H3606\"* wind|strong=\"H7308\"* carried|strong=\"H5376\"* them|strong=\"H1994\"* away|strong=\"H5376\"*, so|strong=\"H1768\"* that|strong=\"H1768\"* no|strong=\"H3809\"* place|strong=\"H1934\"* was|strong=\"H1934\"* found|strong=\"H7912\"* for|strong=\"H1768\"* them|strong=\"H1994\"*. The|strong=\"H3606\"* stone that|strong=\"H1768\"* struck|strong=\"H4223\"* the|strong=\"H3606\"* image|strong=\"H6755\"* became|strong=\"H1934\"* a|strong=\"H3068\"* great|strong=\"H7229\"* mountain|strong=\"H2906\"* and|strong=\"H6523\"* filled|strong=\"H4391\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* earth." + }, + { + "verseNum": 36, + "text": "“This|strong=\"H1836\"* is|strong=\"H6591\"* the|strong=\"H6925\"* dream|strong=\"H2493\"*; and|strong=\"H4430\"* we|strong=\"H3068\"* will|strong=\"H4430\"* tell its|strong=\"H6591\"* interpretation|strong=\"H6591\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 37, + "text": "You|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, are|strong=\"H1768\"* king|strong=\"H4430\"* of|strong=\"H4437\"* kings|strong=\"H4430\"*, to|strong=\"H4430\"* whom|strong=\"H1768\"* the|strong=\"H1768\"* God of|strong=\"H4437\"* heaven|strong=\"H8065\"* has|strong=\"H1768\"* given|strong=\"H3052\"* the|strong=\"H1768\"* kingdom|strong=\"H4437\"*, the|strong=\"H1768\"* power|strong=\"H2632\"*, the|strong=\"H1768\"* strength|strong=\"H8632\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* glory|strong=\"H3367\"*." + }, + { + "verseNum": 38, + "text": "Wherever|strong=\"H1768\"* the|strong=\"H3606\"* children|strong=\"H1123\"* of|strong=\"H1123\"* men dwell|strong=\"H1753\"*, he|strong=\"H1768\"* has|strong=\"H1768\"* given|strong=\"H3052\"* the|strong=\"H3606\"* animals|strong=\"H2423\"* of|strong=\"H1123\"* the|strong=\"H3606\"* field|strong=\"H1251\"* and|strong=\"H1722\"* the|strong=\"H3606\"* birds|strong=\"H5776\"* of|strong=\"H1123\"* the|strong=\"H3606\"* sky|strong=\"H8065\"* into your|strong=\"H3052\"* hand|strong=\"H3028\"*, and|strong=\"H1722\"* has|strong=\"H1768\"* made|strong=\"H7981\"* you|strong=\"H1768\"* rule|strong=\"H7981\"* over|strong=\"H7981\"* them|strong=\"H3052\"* all|strong=\"H3606\"*. You|strong=\"H1768\"* are|strong=\"H1768\"* the|strong=\"H3606\"* head|strong=\"H7217\"* of|strong=\"H1123\"* gold|strong=\"H1722\"*." + }, + { + "verseNum": 39, + "text": "“After|strong=\"H4481\"* you|strong=\"H1768\"*, another kingdom|strong=\"H4437\"* will|strong=\"H1768\"* arise|strong=\"H6966\"* that|strong=\"H1768\"* is|strong=\"H1768\"* inferior to|strong=\"H4481\"* you|strong=\"H1768\"*; and|strong=\"H4437\"* another third|strong=\"H8523\"* kingdom|strong=\"H4437\"* of|strong=\"H4481\"* bronze|strong=\"H5174\"*, which|strong=\"H1768\"* will|strong=\"H1768\"* rule|strong=\"H7981\"* over|strong=\"H7981\"* all|strong=\"H3606\"* the|strong=\"H3606\"* earth." + }, + { + "verseNum": 40, + "text": "The|strong=\"H3606\"* fourth|strong=\"H7244\"* kingdom|strong=\"H4437\"* will|strong=\"H1768\"* be|strong=\"H1934\"* strong|strong=\"H8624\"* as|strong=\"H3606\"* iron|strong=\"H6523\"*, because|strong=\"H6903\"* iron|strong=\"H6523\"* breaks|strong=\"H7490\"* in|strong=\"H4437\"* pieces|strong=\"H1855\"* and|strong=\"H6523\"* subdues all|strong=\"H3606\"* things|strong=\"H3606\"*; and|strong=\"H6523\"* as|strong=\"H3606\"* iron|strong=\"H6523\"* that|strong=\"H1768\"* crushes|strong=\"H1855\"* all|strong=\"H3606\"* these, it|strong=\"H1934\"* will|strong=\"H1768\"* break|strong=\"H7490\"* in|strong=\"H4437\"* pieces|strong=\"H1855\"* and|strong=\"H6523\"* crush|strong=\"H1855\"*." + }, + { + "verseNum": 41, + "text": "Whereas|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H3606\"* feet|strong=\"H7271\"* and|strong=\"H6523\"* toes, part|strong=\"H4481\"* of|strong=\"H4481\"* potters’ clay|strong=\"H2635\"* and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, it|strong=\"H1934\"* will|strong=\"H1768\"* be|strong=\"H1934\"* a|strong=\"H3068\"* divided|strong=\"H6386\"* kingdom|strong=\"H4437\"*; but|strong=\"H1768\"* there|strong=\"H6903\"* will|strong=\"H1768\"* be|strong=\"H1934\"* in|strong=\"H4437\"* it|strong=\"H1934\"* of|strong=\"H4481\"* the|strong=\"H3606\"* strength|strong=\"H5326\"* of|strong=\"H4481\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, because|strong=\"H6903\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H3606\"* iron|strong=\"H6523\"* mixed|strong=\"H6151\"* with|strong=\"H6151\"* miry|strong=\"H2917\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 42, + "text": "As|strong=\"H8624\"* the|strong=\"H4481\"* toes of|strong=\"H4481\"* the|strong=\"H4481\"* feet|strong=\"H7271\"* were|strong=\"H1934\"* part|strong=\"H4481\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, and|strong=\"H6523\"* part|strong=\"H4481\"* of|strong=\"H4481\"* clay|strong=\"H2635\"*, so|strong=\"H4481\"* the|strong=\"H4481\"* kingdom|strong=\"H4437\"* will be|strong=\"H1934\"* partly|strong=\"H4481\"* strong|strong=\"H8624\"* and|strong=\"H6523\"* partly|strong=\"H4481\"* brittle|strong=\"H8406\"*." + }, + { + "verseNum": 43, + "text": "Whereas|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* the|strong=\"H1768\"* iron|strong=\"H6523\"* mixed|strong=\"H6151\"* with|strong=\"H5974\"* miry|strong=\"H2917\"* clay|strong=\"H2635\"*, they|strong=\"H1768\"* will|strong=\"H1768\"* mingle themselves|strong=\"H1934\"* with|strong=\"H5974\"* the|strong=\"H1768\"* seed|strong=\"H2234\"* of|strong=\"H1768\"* men; but|strong=\"H1768\"* they|strong=\"H1768\"* won’t cling to|strong=\"H5974\"* one|strong=\"H1836\"* another|strong=\"H1836\"*, even|strong=\"H1888\"* as|strong=\"H1768\"* iron|strong=\"H6523\"* does|strong=\"H1934\"* not|strong=\"H3809\"* mix|strong=\"H6151\"* with|strong=\"H5974\"* clay|strong=\"H2635\"*." + }, + { + "verseNum": 44, + "text": "“In|strong=\"H4430\"* the|strong=\"H3606\"* days|strong=\"H3118\"* of|strong=\"H4437\"* those|strong=\"H1768\"* kings|strong=\"H4430\"* the|strong=\"H3606\"* God of|strong=\"H4437\"* heaven|strong=\"H8065\"* will|strong=\"H1768\"* set|strong=\"H6966\"* up|strong=\"H6966\"* a|strong=\"H3068\"* kingdom|strong=\"H4437\"* which|strong=\"H1768\"* will|strong=\"H1768\"* never|strong=\"H5957\"* be|strong=\"H3809\"* destroyed|strong=\"H2255\"*, nor|strong=\"H3809\"* will|strong=\"H1768\"* its sovereignty|strong=\"H4437\"* be|strong=\"H3809\"* left|strong=\"H7662\"* to|strong=\"H4430\"* another people|strong=\"H5972\"*; but|strong=\"H1768\"* it|strong=\"H1932\"* will|strong=\"H1768\"* break in|strong=\"H4430\"* pieces|strong=\"H1855\"* and|strong=\"H4430\"* consume|strong=\"H5487\"* all|strong=\"H3606\"* these kingdoms|strong=\"H4437\"*, and|strong=\"H4430\"* it|strong=\"H1932\"* will|strong=\"H1768\"* stand|strong=\"H6966\"* forever|strong=\"H5957\"*." + }, + { + "verseNum": 45, + "text": "Because|strong=\"H6903\"* you|strong=\"H1768\"* saw|strong=\"H2370\"* that|strong=\"H1768\"* a|strong=\"H3068\"* stone was|strong=\"H1934\"* cut|strong=\"H1505\"* out|strong=\"H1505\"* of|strong=\"H4430\"* the|strong=\"H3606\"* mountain|strong=\"H2906\"* without|strong=\"H3809\"* hands|strong=\"H3028\"*, and|strong=\"H4430\"* that|strong=\"H1768\"* it|strong=\"H1934\"* broke in|strong=\"H4430\"* pieces|strong=\"H1855\"* the|strong=\"H3606\"* iron|strong=\"H6523\"*, the|strong=\"H3606\"* bronze|strong=\"H5174\"*, the|strong=\"H3606\"* clay|strong=\"H2635\"*, the|strong=\"H3606\"* silver|strong=\"H3702\"*, and|strong=\"H4430\"* the|strong=\"H3606\"* gold|strong=\"H1722\"*, the|strong=\"H3606\"* great|strong=\"H7229\"* God has|strong=\"H1768\"* made|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"* what|strong=\"H4101\"* will|strong=\"H4101\"* happen hereafter. The|strong=\"H3606\"* dream|strong=\"H2493\"* is|strong=\"H1768\"* certain|strong=\"H3330\"*, and|strong=\"H4430\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"* sure|strong=\"H3330\"*.”" + }, + { + "verseNum": 46, + "text": "Then|strong=\"H4430\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* fell|strong=\"H5308\"* on|strong=\"H5922\"* his|strong=\"H5922\"* face, worshiped|strong=\"H5457\"* Daniel|strong=\"H1841\"*, and|strong=\"H5308\"* commanded that|strong=\"H5922\"* they should|strong=\"H4430\"* offer|strong=\"H5260\"* an|strong=\"H4430\"* offering|strong=\"H4504\"* and|strong=\"H5308\"* sweet odors to|strong=\"H5922\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 47, + "text": "The|strong=\"H4481\"* king|strong=\"H4430\"* answered|strong=\"H6032\"* to|strong=\"H3202\"* Daniel|strong=\"H1841\"*, and|strong=\"H6032\"* said|strong=\"H6032\"*, “Of|strong=\"H4481\"* a|strong=\"H3068\"* truth|strong=\"H7187\"* your|strong=\"H1768\"* God is|strong=\"H1768\"* the|strong=\"H4481\"* God of|strong=\"H4481\"* gods, and|strong=\"H6032\"* the|strong=\"H4481\"* Lord|strong=\"H4756\"* of|strong=\"H4481\"* kings|strong=\"H4430\"*, and|strong=\"H6032\"* a|strong=\"H3068\"* revealer|strong=\"H1541\"* of|strong=\"H4481\"* secrets|strong=\"H7328\"*, since|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1768\"* been|strong=\"H3202\"* able|strong=\"H3202\"* to|strong=\"H3202\"* reveal|strong=\"H1541\"* this|strong=\"H1836\"* secret|strong=\"H7328\"*.”" + }, + { + "verseNum": 48, + "text": "Then|strong=\"H4430\"* the|strong=\"H3606\"* king|strong=\"H4430\"* made|strong=\"H7236\"* Daniel|strong=\"H1841\"* great|strong=\"H7229\"* and|strong=\"H4430\"* gave|strong=\"H3052\"* him|strong=\"H5922\"* many|strong=\"H7690\"* great|strong=\"H7229\"* gifts|strong=\"H4978\"*, and|strong=\"H4430\"* made|strong=\"H7236\"* him|strong=\"H5922\"* rule|strong=\"H7981\"* over|strong=\"H5922\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon and|strong=\"H4430\"* to|strong=\"H5922\"* be|strong=\"H1841\"* chief|strong=\"H7229\"* governor over|strong=\"H5922\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 49, + "text": "Daniel|strong=\"H1841\"* requested|strong=\"H1156\"* of|strong=\"H4481\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, and|strong=\"H4336\"* he|strong=\"H1768\"* appointed|strong=\"H4483\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego over|strong=\"H5922\"* the|strong=\"H5922\"* affairs|strong=\"H5673\"* of|strong=\"H4481\"* the|strong=\"H5922\"* province|strong=\"H4083\"* of|strong=\"H4481\"* Babylon, but|strong=\"H1768\"* Daniel|strong=\"H1841\"* was|strong=\"H1841\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s gate|strong=\"H8651\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"* made|strong=\"H5648\"* an|strong=\"H5648\"* image|strong=\"H6755\"* of|strong=\"H4430\"* gold|strong=\"H1722\"*, whose|strong=\"H1768\"* height|strong=\"H7314\"* was|strong=\"H4430\"* sixty|strong=\"H8361\"* cubits+ 3:1 A cubit is the length from the tip of the middle finger to the elbow on a man’s arm, or about 18 inches or 46 centimeters.* and|strong=\"H4430\"* its width|strong=\"H6613\"* six|strong=\"H8353\"* cubits. He|strong=\"H1768\"* set|strong=\"H6966\"* it up|strong=\"H6966\"* in|strong=\"H4430\"* the|strong=\"H5020\"* plain|strong=\"H1236\"* of|strong=\"H4430\"* Dura|strong=\"H1757\"*, in|strong=\"H4430\"* the|strong=\"H5020\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* sent|strong=\"H7972\"* to|strong=\"H4430\"* gather together|strong=\"H3673\"* the|strong=\"H3606\"* local governors|strong=\"H6347\"*, the|strong=\"H3606\"* deputies, and|strong=\"H4430\"* the|strong=\"H3606\"* governors|strong=\"H6347\"*, the|strong=\"H3606\"* judges|strong=\"H1884\"*, the|strong=\"H3606\"* treasurers|strong=\"H1411\"*, the|strong=\"H3606\"* counselors, the|strong=\"H3606\"* sheriffs|strong=\"H8614\"*, and|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* rulers|strong=\"H7984\"* of|strong=\"H4430\"* the|strong=\"H3606\"* provinces|strong=\"H4083\"*, to|strong=\"H4430\"* come to|strong=\"H4430\"* the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H4430\"* the|strong=\"H3606\"* image|strong=\"H6755\"* which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* local governors|strong=\"H6347\"*, the|strong=\"H3606\"* deputies, and|strong=\"H4430\"* the|strong=\"H3606\"* governors|strong=\"H6347\"*, the|strong=\"H3606\"* judges|strong=\"H1884\"*, the|strong=\"H3606\"* treasurers|strong=\"H1411\"*, the|strong=\"H3606\"* counselors, the|strong=\"H3606\"* sheriffs|strong=\"H8614\"*, and|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* rulers|strong=\"H7984\"* of|strong=\"H4430\"* the|strong=\"H3606\"* provinces|strong=\"H4083\"* were|strong=\"H1768\"* gathered|strong=\"H3673\"* together|strong=\"H3673\"* to|strong=\"H4430\"* the|strong=\"H3606\"* dedication|strong=\"H2597\"* of|strong=\"H4430\"* the|strong=\"H3606\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*; and|strong=\"H4430\"* they|strong=\"H3606\"* stood|strong=\"H6966\"* before|strong=\"H6903\"* the|strong=\"H3606\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 4, + "text": "Then the|strong=\"H7123\"* herald|strong=\"H3744\"* cried|strong=\"H7123\"* aloud|strong=\"H2429\"*, “To|strong=\"H2429\"* you it is commanded, peoples|strong=\"H5972\"*, nations, and languages|strong=\"H3961\"*," + }, + { + "verseNum": 5, + "text": "that|strong=\"H1768\"* whenever you|strong=\"H1768\"* hear|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"*, you|strong=\"H1768\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* has|strong=\"H1768\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 6, + "text": "Whoever|strong=\"H4479\"* doesn’t fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* shall|strong=\"H5457\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the|strong=\"H1768\"* middle of|strong=\"H1768\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace the|strong=\"H1768\"* same|strong=\"H1459\"* hour|strong=\"H8160\"*.”" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3606\"* at|strong=\"H6903\"* that|strong=\"H1768\"* time|strong=\"H2166\"*, when|strong=\"H1768\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"* heard|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"*, all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, the|strong=\"H3606\"* nations, and|strong=\"H5308\"* the|strong=\"H3606\"* languages|strong=\"H3961\"* fell|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worshiped|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* that|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H3606\"* king|strong=\"H4430\"* had|strong=\"H4430\"* set|strong=\"H6966\"* up|strong=\"H6966\"*." + }, + { + "verseNum": 8, + "text": "Therefore|strong=\"H3606\"* at|strong=\"H6903\"* that|strong=\"H1768\"* time|strong=\"H2166\"* certain|strong=\"H1400\"* Chaldeans|strong=\"H3779\"* came|strong=\"H7127\"* near|strong=\"H7127\"* and|strong=\"H7127\"* brought accusation against|strong=\"H6903\"* the|strong=\"H3606\"* Jews|strong=\"H3062\"*." + }, + { + "verseNum": 9, + "text": "They answered|strong=\"H6032\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live|strong=\"H2418\"* for|strong=\"H2418\"* ever|strong=\"H5957\"*!" + }, + { + "verseNum": 10, + "text": "You|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, have|strong=\"H7761\"* made|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* every|strong=\"H3606\"* man who|strong=\"H1768\"* hears|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4430\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4430\"* music|strong=\"H2170\"* shall|strong=\"H3606\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* golden|strong=\"H1722\"* image|strong=\"H6755\"*;" + }, + { + "verseNum": 11, + "text": "and|strong=\"H5308\"* whoever|strong=\"H4479\"* doesn’t fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* shall|strong=\"H5457\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the|strong=\"H1768\"* middle of|strong=\"H1768\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 12, + "text": "There|strong=\"H1768\"* are|strong=\"H1768\"* certain|strong=\"H1400\"* Jews|strong=\"H3062\"* whom|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H7761\"* appointed|strong=\"H4483\"* over|strong=\"H5922\"* the|strong=\"H5922\"* affairs|strong=\"H5673\"* of|strong=\"H4430\"* the|strong=\"H5922\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon: Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego. These men|strong=\"H1400\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, have|strong=\"H7761\"* not|strong=\"H3809\"* respected you|strong=\"H1768\"*. They|strong=\"H1768\"* don’t serve|strong=\"H6399\"* your|strong=\"H6399\"* gods, and|strong=\"H4336\"* don’t worship|strong=\"H5457\"* the|strong=\"H5922\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H7761\"* set|strong=\"H6966\"* up|strong=\"H6966\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* in|strong=\"H4430\"* rage|strong=\"H7266\"* and|strong=\"H4336\"* fury|strong=\"H2528\"* commanded that|strong=\"H1400\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego be brought. Then|strong=\"H4430\"* these men|strong=\"H1400\"* were|strong=\"H1400\"* brought before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 14, + "text": "Nebuchadnezzar|strong=\"H5020\"* answered|strong=\"H6032\"* them, “Is|strong=\"H1768\"* it true|strong=\"H6656\"*, Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, that|strong=\"H1768\"* you|strong=\"H1768\"* don’t serve|strong=\"H6399\"* my|strong=\"H6399\"* gods and|strong=\"H6032\"* you|strong=\"H1768\"* don’t worship|strong=\"H5457\"* the|strong=\"H5020\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H5020\"* set|strong=\"H6966\"* up|strong=\"H6966\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3705\"* if|strong=\"H2006\"* you|strong=\"H1768\"* are|strong=\"H1768\"* ready|strong=\"H6263\"* whenever you|strong=\"H1768\"* hear|strong=\"H8086\"* the|strong=\"H3606\"* sound|strong=\"H7032\"* of|strong=\"H4481\"* the|strong=\"H3606\"* horn|strong=\"H7162\"*, flute|strong=\"H4953\"*, zither|strong=\"H7030\"*, lyre|strong=\"H7030\"*, harp|strong=\"H6460\"*, pipe, and|strong=\"H5308\"* all|strong=\"H3606\"* kinds|strong=\"H2178\"* of|strong=\"H4481\"* music|strong=\"H2170\"* to|strong=\"H5308\"* fall|strong=\"H5308\"* down|strong=\"H5308\"* and|strong=\"H5308\"* worship|strong=\"H5457\"* the|strong=\"H3606\"* image|strong=\"H6755\"* which|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H1768\"* made|strong=\"H5648\"*, good; but|strong=\"H1768\"* if|strong=\"H2006\"* you|strong=\"H1768\"* don’t worship|strong=\"H5457\"*, you|strong=\"H1768\"* shall|strong=\"H5732\"* be|strong=\"H3809\"* cast|strong=\"H7412\"* the|strong=\"H3606\"* same|strong=\"H1459\"* hour|strong=\"H8160\"* into|strong=\"H1459\"* the|strong=\"H3606\"* middle of|strong=\"H4481\"* a|strong=\"H3068\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace. Who|strong=\"H1768\"* is|strong=\"H1768\"* that|strong=\"H1768\"* god who|strong=\"H1768\"* will|strong=\"H1768\"* deliver|strong=\"H7804\"* you|strong=\"H1768\"* out|strong=\"H5648\"* of|strong=\"H4481\"* my|strong=\"H4481\"* hands|strong=\"H3028\"*?”" + }, + { + "verseNum": 16, + "text": "Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego answered|strong=\"H6032\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, “Nebuchadnezzar|strong=\"H5020\"*, we|strong=\"H3068\"* have|strong=\"H5020\"* no|strong=\"H3809\"* need|strong=\"H2818\"* to|strong=\"H5922\"* answer|strong=\"H6600\"* you|strong=\"H5922\"* in|strong=\"H5922\"* this|strong=\"H1836\"* matter|strong=\"H6600\"*." + }, + { + "verseNum": 17, + "text": "If|strong=\"H2006\"* it|strong=\"H2006\"* happens, our|strong=\"H4481\"* God whom|strong=\"H1768\"* we|strong=\"H3068\"* serve|strong=\"H6399\"* is|strong=\"H1768\"* able|strong=\"H3202\"* to|strong=\"H3202\"* deliver|strong=\"H7804\"* us|strong=\"H7804\"* from|strong=\"H4481\"* the|strong=\"H4481\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace; and|strong=\"H4430\"* he|strong=\"H1768\"* will|strong=\"H1768\"* deliver|strong=\"H7804\"* us|strong=\"H7804\"* out of|strong=\"H4481\"* your|strong=\"H6399\"* hand|strong=\"H3028\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*." + }, + { + "verseNum": 18, + "text": "But|strong=\"H1768\"* if|strong=\"H2006\"* not|strong=\"H3809\"*, let it|strong=\"H1934\"* be|strong=\"H1934\"* known|strong=\"H3046\"* to|strong=\"H3046\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, that|strong=\"H1768\"* we|strong=\"H3068\"* will|strong=\"H1768\"* not|strong=\"H3809\"* serve|strong=\"H6399\"* your|strong=\"H6399\"* gods or|strong=\"H2006\"* worship|strong=\"H5457\"* the|strong=\"H3046\"* golden|strong=\"H1722\"* image|strong=\"H6755\"* which|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1934\"* set|strong=\"H6966\"* up|strong=\"H6966\"*.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* was|strong=\"H5020\"* full|strong=\"H4391\"* of|strong=\"H5922\"* fury|strong=\"H2528\"*, and|strong=\"H6032\"* the|strong=\"H5922\"* form|strong=\"H6755\"* of|strong=\"H5922\"* his|strong=\"H5922\"* appearance was|strong=\"H5020\"* changed|strong=\"H8133\"* against|strong=\"H5922\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego. He|strong=\"H1768\"* spoke|strong=\"H6032\"*, and|strong=\"H6032\"* commanded that|strong=\"H1768\"* they|strong=\"H1768\"* should heat the|strong=\"H5922\"* furnace seven|strong=\"H7655\"* times|strong=\"H7655\"* more|strong=\"H5922\"* than|strong=\"H1768\"* it|strong=\"H5922\"* was|strong=\"H5020\"* usually|strong=\"H2370\"* heated." + }, + { + "verseNum": 20, + "text": "He|strong=\"H1768\"* commanded certain|strong=\"H1400\"* mighty|strong=\"H1401\"* men|strong=\"H1400\"* who|strong=\"H1768\"* were|strong=\"H1400\"* in|strong=\"H1768\"* his|strong=\"H1768\"* army|strong=\"H2429\"* to|strong=\"H2429\"* bind|strong=\"H3729\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego, and|strong=\"H4336\"* to|strong=\"H2429\"* cast|strong=\"H7412\"* them into|strong=\"H7412\"* the|strong=\"H1768\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 21, + "text": "Then these men|strong=\"H1400\"* were|strong=\"H1400\"* bound|strong=\"H3729\"* in their pants, their tunics, and their mantles, and their other clothes|strong=\"H3831\"*, and were|strong=\"H1400\"* cast|strong=\"H7412\"* into|strong=\"H1459\"* the middle of|strong=\"H1459\"* the burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 22, + "text": "Therefore|strong=\"H3606\"* because|strong=\"H6903\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s commandment|strong=\"H4406\"* was|strong=\"H4430\"* urgent|strong=\"H2685\"* and|strong=\"H4336\"* the|strong=\"H3606\"* furnace exceedingly|strong=\"H3493\"* hot, the|strong=\"H3606\"* flame|strong=\"H7631\"* of|strong=\"H4481\"* the|strong=\"H3606\"* fire|strong=\"H5135\"* killed|strong=\"H6992\"* those|strong=\"H1994\"* men|strong=\"H1400\"* who|strong=\"H1768\"* took up|strong=\"H5267\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego." + }, + { + "verseNum": 23, + "text": "These three|strong=\"H8532\"* men|strong=\"H1400\"*, Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego, fell|strong=\"H5308\"* down|strong=\"H5308\"* bound|strong=\"H3729\"* into|strong=\"H1459\"* the middle of|strong=\"H1459\"* the burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king|strong=\"H4430\"* was|strong=\"H4430\"* astonished and|strong=\"H6032\"* rose up|strong=\"H6966\"* in|strong=\"H4430\"* haste. He|strong=\"H5020\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H4430\"* his|strong=\"H5020\"* counselors|strong=\"H1907\"*, “Didn’t we|strong=\"H3068\"* cast|strong=\"H7412\"* three|strong=\"H8532\"* men|strong=\"H1400\"* bound|strong=\"H3729\"* into|strong=\"H1459\"* the|strong=\"H5020\"* middle of|strong=\"H4430\"* the|strong=\"H5020\"* fire|strong=\"H5135\"*?”" + }, + { + "verseNum": 25, + "text": "He|strong=\"H1768\"* answered|strong=\"H6032\"*, “Look|strong=\"H1888\"*, I|strong=\"H1768\"* see|strong=\"H2370\"* four men|strong=\"H1400\"* loose|strong=\"H8271\"*, walking|strong=\"H1981\"* in|strong=\"H1981\"* the|strong=\"H1768\"* middle of|strong=\"H1247\"* the|strong=\"H1768\"* fire|strong=\"H5135\"*, and|strong=\"H6032\"* they|strong=\"H1768\"* are|strong=\"H1768\"* unharmed. The|strong=\"H1768\"* appearance|strong=\"H7299\"* of|strong=\"H1247\"* the|strong=\"H1768\"* fourth|strong=\"H7244\"* is|strong=\"H1768\"* like|strong=\"H1821\"* a|strong=\"H3068\"* son|strong=\"H1247\"* of|strong=\"H1247\"* the|strong=\"H1768\"* gods.+ 3:25 Or, the Son of God.*”" + }, + { + "verseNum": 26, + "text": "Then|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* came|strong=\"H7127\"* near|strong=\"H7127\"* to|strong=\"H5312\"* the|strong=\"H4481\"* mouth|strong=\"H8651\"* of|strong=\"H4481\"* the|strong=\"H4481\"* burning|strong=\"H3345\"* fiery|strong=\"H5135\"* furnace. He|strong=\"H1768\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, you|strong=\"H1768\"* servants|strong=\"H5649\"* of|strong=\"H4481\"* the|strong=\"H4481\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God, come|strong=\"H7127\"* out|strong=\"H5312\"*, and|strong=\"H6032\"* come|strong=\"H7127\"* here|strong=\"H5312\"*!”" + }, + { + "verseNum": 27, + "text": "The|strong=\"H1768\"* local governors|strong=\"H6347\"*, the|strong=\"H1768\"* deputies, and|strong=\"H4430\"* the|strong=\"H1768\"* governors|strong=\"H6347\"*, and|strong=\"H4430\"* the|strong=\"H1768\"* king|strong=\"H4430\"*’s counselors|strong=\"H1907\"*, being gathered|strong=\"H3673\"* together|strong=\"H3673\"*, saw|strong=\"H2370\"* these men|strong=\"H1400\"*, that|strong=\"H1768\"* the|strong=\"H1768\"* fire|strong=\"H5135\"* had|strong=\"H4430\"* no|strong=\"H3809\"* power|strong=\"H7981\"* on|strong=\"H7981\"* their bodies|strong=\"H1655\"*. The|strong=\"H1768\"* hair|strong=\"H8177\"* of|strong=\"H4430\"* their head|strong=\"H7217\"* wasn’t singed|strong=\"H2761\"*. Their pants weren’t changed|strong=\"H8133\"*. The|strong=\"H1768\"* smell|strong=\"H7382\"* of|strong=\"H4430\"* fire|strong=\"H5135\"* wasn’t even|strong=\"H1768\"* on|strong=\"H7981\"* them." + }, + { + "verseNum": 28, + "text": "Nebuchadnezzar|strong=\"H5020\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “Blessed|strong=\"H1289\"* be|strong=\"H3809\"* the|strong=\"H3606\"* God of|strong=\"H4430\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H6032\"* Abednego, who|strong=\"H1768\"* has|strong=\"H1768\"* sent|strong=\"H7972\"* his|strong=\"H5922\"* angel|strong=\"H4398\"* and|strong=\"H6032\"* delivered|strong=\"H7804\"* his|strong=\"H5922\"* servants|strong=\"H5649\"* who|strong=\"H1768\"* trusted|strong=\"H7365\"* in|strong=\"H5922\"* him|strong=\"H5922\"*, and|strong=\"H6032\"* have|strong=\"H5020\"* changed|strong=\"H8133\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s word|strong=\"H4406\"*, and|strong=\"H6032\"* have|strong=\"H5020\"* yielded|strong=\"H3052\"* their|strong=\"H3606\"* bodies|strong=\"H1655\"*, that|strong=\"H1768\"* they|strong=\"H3606\"* might not|strong=\"H3809\"* serve|strong=\"H6399\"* nor|strong=\"H3809\"* worship|strong=\"H5457\"* any|strong=\"H3606\"* god except|strong=\"H3861\"* their|strong=\"H3606\"* own God." + }, + { + "verseNum": 29, + "text": "Therefore|strong=\"H3606\"* I|strong=\"H4481\"* make|strong=\"H7761\"* a|strong=\"H3068\"* decree|strong=\"H2942\"* that|strong=\"H1768\"* every|strong=\"H3606\"* people|strong=\"H5972\"*, nation, and|strong=\"H4336\"* language|strong=\"H3961\"* which|strong=\"H1768\"* speak anything evil against|strong=\"H5922\"* the|strong=\"H3606\"* God of|strong=\"H4481\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego shall|strong=\"H3606\"* be|strong=\"H3809\"* cut|strong=\"H5648\"* in|strong=\"H5922\"* pieces|strong=\"H1917\"*, and|strong=\"H4336\"* their|strong=\"H3606\"* houses|strong=\"H1005\"* shall|strong=\"H3606\"* be|strong=\"H3809\"* made|strong=\"H5648\"* a|strong=\"H3068\"* dunghill|strong=\"H5122\"*, because|strong=\"H6903\"* there|strong=\"H6903\"* is|strong=\"H1768\"* no|strong=\"H3809\"* other god who|strong=\"H1768\"* is|strong=\"H1768\"* able|strong=\"H3202\"* to|strong=\"H5922\"* deliver|strong=\"H5338\"* like this|strong=\"H1836\"*.”" + }, + { + "verseNum": 30, + "text": "Then|strong=\"H4430\"* the|strong=\"H4430\"* king|strong=\"H4430\"* promoted|strong=\"H6744\"* Shadrach|strong=\"H7715\"*, Meshach|strong=\"H4336\"*, and|strong=\"H4336\"* Abednego in|strong=\"H4430\"* the|strong=\"H4430\"* province|strong=\"H4083\"* of|strong=\"H4430\"* Babylon." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Nebuchadnezzar|strong=\"H5020\"* the|strong=\"H5020\"* king," + }, + { + "verseNum": 2, + "text": "It|strong=\"H5922\"* has seemed good to|strong=\"H5922\"* me|strong=\"H5922\"* to|strong=\"H5922\"* show the|strong=\"H5922\"* signs and|strong=\"H1763\"* wonders that|strong=\"H1763\"* the|strong=\"H5922\"* Most High God has worked toward|strong=\"H5922\"* me|strong=\"H5922\"*." + }, + { + "verseNum": 3, + "text": "How great are|strong=\"H1768\"* his|strong=\"H4481\"* signs!" + }, + { + "verseNum": 4, + "text": "I, Nebuchadnezzar, was at rest in|strong=\"H5954\"* my house, and|strong=\"H2493\"* flourishing in|strong=\"H5954\"* my palace." + }, + { + "verseNum": 5, + "text": "I|strong=\"H1768\"* saw a|strong=\"H3068\"* dream|strong=\"H2493\"* which|strong=\"H1768\"* made me|strong=\"H6925\"* afraid; and|strong=\"H2493\"* the|strong=\"H6925\"* thoughts on|strong=\"H5705\"* my|strong=\"H1768\"* bed and|strong=\"H2493\"* the|strong=\"H6925\"* visions of|strong=\"H1768\"* my|strong=\"H1768\"* head troubled me|strong=\"H6925\"*." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3606\"* I|strong=\"H1768\"* made|strong=\"H3046\"* a|strong=\"H3068\"* decree to|strong=\"H3046\"* bring in|strong=\"H7229\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise men of|strong=\"H1768\"* Babylon before me, that|strong=\"H1768\"* they|strong=\"H3606\"* might make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* me the|strong=\"H3606\"* interpretation|strong=\"H6591\"* of|strong=\"H1768\"* the|strong=\"H3606\"* dream|strong=\"H2493\"*." + }, + { + "verseNum": 7, + "text": "Then the|strong=\"H5922\"* magicians, the|strong=\"H5922\"* enchanters, the|strong=\"H5922\"* Chaldeans, and|strong=\"H1934\"* the|strong=\"H5922\"* soothsayers came in|strong=\"H5922\"*; and|strong=\"H1934\"* I told them|strong=\"H5922\"* the|strong=\"H5922\"* dream, but they didn’t make known|strong=\"H1934\"* to|strong=\"H5922\"* me|strong=\"H5922\"* its interpretation." + }, + { + "verseNum": 8, + "text": "But|strong=\"H3606\"* at last, Daniel came|strong=\"H4291\"* in|strong=\"H8631\"* before me, whose|strong=\"H3606\"* name was|strong=\"H3606\"* Belteshazzar according to|strong=\"H8065\"* the|strong=\"H3606\"* name of|strong=\"H3606\"* my god, and|strong=\"H8065\"* in|strong=\"H8631\"* whom is|strong=\"H3606\"* the|strong=\"H3606\"* spirit of|strong=\"H3606\"* the|strong=\"H3606\"* holy gods. I told the|strong=\"H3606\"* dream before him, saying," + }, + { + "verseNum": 9, + "text": "“Belteshazzar, master of|strong=\"H4481\"* the|strong=\"H3606\"* magicians, because|strong=\"H4481\"* I|strong=\"H4481\"* know that|strong=\"H3606\"* the|strong=\"H3606\"* spirit of|strong=\"H4481\"* the|strong=\"H3606\"* holy gods is|strong=\"H3606\"* in|strong=\"H1753\"* you|strong=\"H4481\"* and|strong=\"H8065\"* no|strong=\"H3606\"* secret troubles you|strong=\"H4481\"*, tell me|strong=\"H4481\"* the|strong=\"H3606\"* visions of|strong=\"H4481\"* my|strong=\"H4481\"* dream that|strong=\"H3606\"* I|strong=\"H4481\"* have seen, and|strong=\"H8065\"* its|strong=\"H4481\"* interpretation." + }, + { + "verseNum": 10, + "text": "These|strong=\"H4481\"* were|strong=\"H1934\"* the|strong=\"H5922\"* visions|strong=\"H2376\"* of|strong=\"H4481\"* my|strong=\"H5922\"* head|strong=\"H7217\"* on|strong=\"H5922\"* my|strong=\"H5922\"* bed|strong=\"H4903\"*: I|strong=\"H4481\"* saw|strong=\"H2370\"*, and|strong=\"H8065\"* behold, a|strong=\"H3068\"* tree in|strong=\"H5922\"* the|strong=\"H5922\"* middle of|strong=\"H4481\"* the|strong=\"H5922\"* earth; and|strong=\"H8065\"* its|strong=\"H4481\"* height was|strong=\"H1934\"* great." + }, + { + "verseNum": 11, + "text": "The|strong=\"H4481\"* tree grew and|strong=\"H3652\"* was|strong=\"H2423\"* strong. Its|strong=\"H7113\"* height reached to|strong=\"H2429\"* the|strong=\"H4481\"* sky and|strong=\"H3652\"* its|strong=\"H7113\"* sight to|strong=\"H2429\"* the|strong=\"H4481\"* end of|strong=\"H4481\"* all the|strong=\"H4481\"* earth." + }, + { + "verseNum": 12, + "text": "Its leaves were|strong=\"H1768\"* beautiful, and|strong=\"H6523\"* it had|strong=\"H1768\"* much fruit, and|strong=\"H6523\"* in|strong=\"H2508\"* it was|strong=\"H2423\"* food for|strong=\"H1768\"* all. The|strong=\"H1768\"* animals|strong=\"H2423\"* of|strong=\"H2920\"* the|strong=\"H1768\"* field|strong=\"H1251\"* had|strong=\"H1768\"* shade under it, and|strong=\"H6523\"* the|strong=\"H1768\"* birds of|strong=\"H2920\"* the|strong=\"H1768\"* sky|strong=\"H8065\"* lived in|strong=\"H2508\"* its branches, and|strong=\"H6523\"* all flesh was|strong=\"H2423\"* fed from|strong=\"H1768\"* it." + }, + { + "verseNum": 13, + "text": "“I|strong=\"H4481\"* saw in|strong=\"H5922\"* the|strong=\"H5922\"* visions of|strong=\"H4481\"* my|strong=\"H5922\"* head on|strong=\"H5922\"* my|strong=\"H5922\"* bed, and|strong=\"H5732\"* behold, a|strong=\"H3068\"* holy watcher came|strong=\"H2423\"* down from|strong=\"H4481\"* the|strong=\"H5922\"* sky." + }, + { + "verseNum": 14, + "text": "He|strong=\"H1768\"* cried aloud and|strong=\"H4437\"* said this|strong=\"H5922\"*: ‘Cut down the|strong=\"H5922\"* tree, and|strong=\"H4437\"* cut off its|strong=\"H3046\"* branches! Shake off its|strong=\"H3046\"* leaves and|strong=\"H4437\"* scatter its|strong=\"H3046\"* fruit! Let the|strong=\"H5922\"* animals get away from|strong=\"H1768\"* under it|strong=\"H5922\"* and|strong=\"H4437\"* the|strong=\"H5922\"* birds from|strong=\"H1768\"* its|strong=\"H3046\"* branches." + }, + { + "verseNum": 15, + "text": "Nevertheless leave the|strong=\"H3606\"* stump of|strong=\"H4437\"* its|strong=\"H6591\"* roots in|strong=\"H4430\"* the|strong=\"H3606\"* earth, even|strong=\"H1768\"* with|strong=\"H6903\"* a|strong=\"H3068\"* band of|strong=\"H4437\"* iron and|strong=\"H4430\"* bronze, in|strong=\"H4430\"* the|strong=\"H3606\"* tender grass of|strong=\"H4437\"* the|strong=\"H3606\"* field; and|strong=\"H4430\"* let it be|strong=\"H3809\"* wet with|strong=\"H6903\"* the|strong=\"H3606\"* dew of|strong=\"H4437\"* the|strong=\"H3606\"* sky. Let his|strong=\"H3046\"* portion be|strong=\"H3809\"* with|strong=\"H6903\"* the|strong=\"H3606\"* animals in|strong=\"H4430\"* the|strong=\"H3606\"* grass of|strong=\"H4437\"* the|strong=\"H3606\"* earth." + }, + { + "verseNum": 16, + "text": "Let his|strong=\"H1768\"* heart be|strong=\"H8160\"* changed from|strong=\"H1768\"* man’s, and|strong=\"H6032\"* let an|strong=\"H4430\"* animal’s heart be|strong=\"H8160\"* given to|strong=\"H8036\"* him. Then|strong=\"H1768\"* let seven|strong=\"H2298\"* times|strong=\"H2298\"* pass over him." + }, + { + "verseNum": 17, + "text": "“‘The|strong=\"H3606\"* sentence is|strong=\"H1768\"* by the|strong=\"H3606\"* decree of|strong=\"H1768\"* the|strong=\"H3606\"* watchers and|strong=\"H8065\"* the|strong=\"H3606\"* demand by the|strong=\"H3606\"* word of|strong=\"H1768\"* the|strong=\"H3606\"* holy ones, to|strong=\"H8065\"* the|strong=\"H3606\"* intent that|strong=\"H1768\"* the|strong=\"H3606\"* living may know that|strong=\"H1768\"* the|strong=\"H3606\"* Most High rules in|strong=\"H8631\"* the|strong=\"H3606\"* kingdom of|strong=\"H1768\"* men, and|strong=\"H8065\"* gives it to|strong=\"H8065\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H1768\"*, and|strong=\"H8065\"* sets up over it the|strong=\"H3606\"* lowest of|strong=\"H1768\"* men.’" + }, + { + "verseNum": 18, + "text": "“This|strong=\"H3606\"* dream I, King Nebuchadnezzar, have seen; and|strong=\"H8065\"* you, Belteshazzar, declare the|strong=\"H3606\"* interpretation, because|strong=\"H3606\"* all|strong=\"H3606\"* the|strong=\"H3606\"* wise men of|strong=\"H3606\"* my kingdom are not able to|strong=\"H8065\"* make known to|strong=\"H8065\"* me the|strong=\"H3606\"* interpretation; but|strong=\"H3606\"* you are able, for|strong=\"H4203\"* the|strong=\"H3606\"* spirit of|strong=\"H3606\"* the|strong=\"H3606\"* holy gods is|strong=\"H3606\"* in|strong=\"H1753\"* you.”" + }, + { + "verseNum": 19, + "text": "Then|strong=\"H1768\"* Daniel, whose|strong=\"H1768\"* name was|strong=\"H4430\"* Belteshazzar, was|strong=\"H4430\"* stricken mute for|strong=\"H1768\"* a|strong=\"H3068\"* while, and|strong=\"H4430\"* his|strong=\"H1768\"* thoughts troubled him. The|strong=\"H1768\"* king|strong=\"H4430\"* answered, “Belteshazzar, don’t let the|strong=\"H1768\"* dream or|strong=\"H4430\"* the|strong=\"H1768\"* interpretation, trouble you|strong=\"H1768\"*.”" + }, + { + "verseNum": 20, + "text": "The|strong=\"H5922\"* tree that|strong=\"H1768\"* you|strong=\"H1768\"* saw|strong=\"H2370\"*, which|strong=\"H1768\"* grew and|strong=\"H4430\"* was|strong=\"H4430\"* strong, whose|strong=\"H1768\"* height reached to|strong=\"H5922\"* the|strong=\"H5922\"* sky|strong=\"H8065\"* and|strong=\"H4430\"* its|strong=\"H5705\"* sight to|strong=\"H5922\"* all the|strong=\"H5922\"* earth;" + }, + { + "verseNum": 21, + "text": "whose|strong=\"H1768\"* leaves were|strong=\"H1768\"* beautiful and|strong=\"H4430\"* its|strong=\"H6591\"* fruit plentiful, and|strong=\"H4430\"* in|strong=\"H5922\"* it|strong=\"H5922\"* was|strong=\"H4430\"* food for|strong=\"H5922\"* all; under which|strong=\"H1768\"* the|strong=\"H5922\"* animals of|strong=\"H4430\"* the|strong=\"H5922\"* field lived, and|strong=\"H4430\"* on|strong=\"H5922\"* whose|strong=\"H1768\"* branches the|strong=\"H5922\"* birds of|strong=\"H4430\"* the|strong=\"H5922\"* sky had|strong=\"H4430\"* their habitation—" + }, + { + "verseNum": 22, + "text": "it|strong=\"H5922\"* is|strong=\"H1768\"* you|strong=\"H1768\"*, O|strong=\"H3068\"* king, that|strong=\"H1768\"* have|strong=\"H1934\"* grown and|strong=\"H4437\"* become strong; for|strong=\"H5922\"* your|strong=\"H1768\"* greatness has|strong=\"H1768\"* grown, and|strong=\"H4437\"* reaches to|strong=\"H5922\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, and|strong=\"H4437\"* your|strong=\"H1768\"* dominion to|strong=\"H5922\"* the|strong=\"H5922\"* end of|strong=\"H4481\"* the|strong=\"H5922\"* earth." + }, + { + "verseNum": 23, + "text": "“Whereas|strong=\"H1768\"* the|strong=\"H4481\"* king saw a|strong=\"H3068\"* holy watcher coming down from|strong=\"H4481\"* the|strong=\"H4481\"* sky|strong=\"H8065\"* and|strong=\"H4437\"* saying, ‘Cut down the|strong=\"H4481\"* tree, and|strong=\"H4437\"* destroy it|strong=\"H4481\"*; nevertheless leave|strong=\"H7662\"* the|strong=\"H4481\"* stump|strong=\"H6136\"* of|strong=\"H4481\"* its|strong=\"H3046\"* roots|strong=\"H8330\"* in|strong=\"H4437\"* the|strong=\"H4481\"* earth, even|strong=\"H1768\"* with a|strong=\"H3068\"* band of|strong=\"H4481\"* iron and|strong=\"H4437\"* bronze, in|strong=\"H4437\"* the|strong=\"H4481\"* tender grass of|strong=\"H4481\"* the|strong=\"H4481\"* field, and|strong=\"H4437\"* let it|strong=\"H4481\"* be wet with the|strong=\"H4481\"* dew of|strong=\"H4481\"* the|strong=\"H4481\"* sky|strong=\"H8065\"*. Let his|strong=\"H4481\"* portion be with the|strong=\"H4481\"* animals of|strong=\"H4481\"* the|strong=\"H4481\"* field, until seven times pass over|strong=\"H7990\"* him|strong=\"H4481\"*.’" + }, + { + "verseNum": 24, + "text": "“This|strong=\"H5922\"* is the|strong=\"H5922\"* interpretation, O|strong=\"H3068\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* it|strong=\"H5922\"* is the|strong=\"H5922\"* decree of|strong=\"H4430\"* the|strong=\"H5922\"* Most High, which has|strong=\"H4430\"* come on|strong=\"H5922\"* my|strong=\"H5922\"* lord the|strong=\"H5922\"* king|strong=\"H4430\"*:" + }, + { + "verseNum": 25, + "text": "You|strong=\"H5922\"* will|strong=\"H4430\"* be driven from men and|strong=\"H4430\"* your|strong=\"H5020\"* dwelling shall|strong=\"H3606\"* be with|strong=\"H5922\"* the|strong=\"H3606\"* animals of|strong=\"H4430\"* the|strong=\"H3606\"* field. You|strong=\"H5922\"* will|strong=\"H4430\"* be made to|strong=\"H5922\"* eat grass as|strong=\"H3606\"* oxen, and|strong=\"H4430\"* will|strong=\"H4430\"* be wet with|strong=\"H5922\"* the|strong=\"H3606\"* dew of|strong=\"H4430\"* the|strong=\"H3606\"* sky, and|strong=\"H4430\"* seven times shall|strong=\"H3606\"* pass over|strong=\"H5922\"* you|strong=\"H5922\"*, until you|strong=\"H5922\"* know that|strong=\"H3606\"* the|strong=\"H3606\"* Most High rules in|strong=\"H5922\"* the|strong=\"H3606\"* kingdom of|strong=\"H4430\"* men, and|strong=\"H4430\"* gives it|strong=\"H5922\"* to|strong=\"H5922\"* whomever he|strong=\"H5020\"* will|strong=\"H4430\"*." + }, + { + "verseNum": 26, + "text": "Whereas|strong=\"H1768\"* it|strong=\"H5922\"* was|strong=\"H1934\"* commanded to|strong=\"H5922\"* leave the|strong=\"H5922\"* stump of|strong=\"H4437\"* the|strong=\"H5922\"* roots of|strong=\"H4437\"* the|strong=\"H5922\"* tree, your|strong=\"H1768\"* kingdom|strong=\"H4437\"* shall|strong=\"H4437\"* be|strong=\"H1934\"* sure to|strong=\"H5922\"* you|strong=\"H1768\"* after|strong=\"H7118\"* you|strong=\"H1768\"* know that|strong=\"H1768\"* Heaven rules." + }, + { + "verseNum": 27, + "text": "Therefore, O|strong=\"H3068\"* king|strong=\"H4430\"*, let my|strong=\"H4430\"* counsel be|strong=\"H3809\"* acceptable to|strong=\"H4430\"* you|strong=\"H1768\"*, and|strong=\"H6032\"* break off your|strong=\"H1768\"* sins by righteousness, and|strong=\"H6032\"* your|strong=\"H1768\"* iniquities by showing mercy to|strong=\"H4430\"* the|strong=\"H1768\"* poor. Perhaps there|strong=\"H1768\"* may be|strong=\"H3809\"* a|strong=\"H3068\"* lengthening of|strong=\"H1005\"* your|strong=\"H1768\"* tranquility.”" + }, + { + "verseNum": 28, + "text": "All this|strong=\"H4481\"* came|strong=\"H5020\"* on the|strong=\"H4481\"* King|strong=\"H4430\"* Nebuchadnezzar|strong=\"H5020\"*." + }, + { + "verseNum": 29, + "text": "At|strong=\"H5705\"* the|strong=\"H5922\"* end of|strong=\"H4481\"* twelve months he|strong=\"H1768\"* was|strong=\"H2423\"* walking in|strong=\"H5922\"* the|strong=\"H5922\"* royal|strong=\"H4437\"* palace of|strong=\"H4481\"* Babylon." + }, + { + "verseNum": 30, + "text": "The|strong=\"H5922\"* king spoke and|strong=\"H8065\"* said, “Is|strong=\"H1768\"* not this|strong=\"H5922\"* great|strong=\"H7236\"* Babylon, which|strong=\"H1768\"* I|strong=\"H4481\"* have|strong=\"H5020\"* built for|strong=\"H5922\"* the|strong=\"H5922\"* royal dwelling place by|strong=\"H4481\"* the|strong=\"H5922\"* might of|strong=\"H4481\"* my|strong=\"H5922\"* power and|strong=\"H8065\"* for|strong=\"H5922\"* the|strong=\"H5922\"* glory of|strong=\"H4481\"* my|strong=\"H5922\"* majesty?”" + }, + { + "verseNum": 31, + "text": "While the|strong=\"H5922\"* word was|strong=\"H7985\"* in|strong=\"H5922\"* the|strong=\"H5922\"* king’s mouth, a|strong=\"H3068\"* voice came|strong=\"H1768\"* from|strong=\"H1768\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, saying, “O|strong=\"H3068\"* King Nebuchadnezzar|strong=\"H5020\"*, to|strong=\"H5922\"* you|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* spoken: ‘The|strong=\"H5922\"* kingdom|strong=\"H4437\"* has|strong=\"H1768\"* departed from|strong=\"H1768\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 32, + "text": "You|strong=\"H1768\"* shall|strong=\"H4101\"* be|strong=\"H3809\"* driven from|strong=\"H1768\"* men, and|strong=\"H8065\"* your|strong=\"H1768\"* dwelling shall|strong=\"H4101\"* be|strong=\"H3809\"* with|strong=\"H5648\"* the|strong=\"H3606\"* animals of|strong=\"H1768\"* the|strong=\"H3606\"* field. You|strong=\"H1768\"* shall|strong=\"H4101\"* be|strong=\"H3809\"* made|strong=\"H5648\"* to|strong=\"H2429\"* eat grass like oxen. Seven times shall|strong=\"H4101\"* pass|strong=\"H3809\"* over you|strong=\"H1768\"*, until you|strong=\"H1768\"* know that|strong=\"H1768\"* the|strong=\"H3606\"* Most|strong=\"H2429\"* High rules in|strong=\"H1753\"* the|strong=\"H3606\"* kingdom of|strong=\"H1768\"* men, and|strong=\"H8065\"* gives it to|strong=\"H2429\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H6634\"*.’”" + }, + { + "verseNum": 33, + "text": "This|strong=\"H5922\"* was|strong=\"H7238\"* fulfilled the|strong=\"H5922\"* same hour on|strong=\"H5922\"* Nebuchadnezzar. He was|strong=\"H7238\"* driven from|strong=\"H3367\"* men|strong=\"H4437\"* and|strong=\"H4437\"* ate grass like oxen; and|strong=\"H4437\"* his|strong=\"H5922\"* body was|strong=\"H7238\"* wet with|strong=\"H8421\"* the|strong=\"H5922\"* dew of|strong=\"H4437\"* the|strong=\"H5922\"* sky until his|strong=\"H5922\"* hair had grown like eagles’ feathers, and|strong=\"H4437\"* his|strong=\"H5922\"* nails like birds’ claws." + }, + { + "verseNum": 34, + "text": "At the|strong=\"H3606\"* end of|strong=\"H4430\"* the|strong=\"H3606\"* days I|strong=\"H1768\"*, Nebuchadnezzar|strong=\"H5020\"*, lifted|strong=\"H5020\"* up|strong=\"H7313\"* my|strong=\"H4430\"* eyes to|strong=\"H3202\"* heaven|strong=\"H8065\"*, and|strong=\"H4430\"* my|strong=\"H4430\"* understanding returned to|strong=\"H3202\"* me; and|strong=\"H4430\"* I|strong=\"H1768\"* blessed the|strong=\"H3606\"* Most High, and|strong=\"H4430\"* I|strong=\"H1768\"* praised|strong=\"H7624\"* and|strong=\"H4430\"* honored|strong=\"H1922\"* him who|strong=\"H1768\"* lives forever," + }, + { + "verseNum": 35, + "text": "All the inhabitants of the earth are reputed as nothing;" + }, + { + "verseNum": 36, + "text": "At the same time my understanding returned to me; and for the glory of my kingdom, my majesty and brightness returned to me. My counselors and my lords sought me; and I was established in my kingdom, and excellent greatness was added to me." + }, + { + "verseNum": 37, + "text": "Now I, Nebuchadnezzar, praise and extol and honor the King of heaven; for all his works are truth, and his ways justice; and those who walk in pride he is able to abase." + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Belshazzar|strong=\"H1113\"* the|strong=\"H4430\"* king|strong=\"H4430\"* made|strong=\"H5648\"* a|strong=\"H3068\"* great|strong=\"H7229\"* feast|strong=\"H3900\"* to|strong=\"H4430\"* a|strong=\"H3068\"* thousand of|strong=\"H4430\"* his lords|strong=\"H7261\"*, and|strong=\"H4430\"* drank|strong=\"H8355\"* wine|strong=\"H2562\"* before|strong=\"H6903\"* the|strong=\"H4430\"* thousand." + }, + { + "verseNum": 2, + "text": "Belshazzar|strong=\"H1113\"*, while he|strong=\"H1768\"* tasted the|strong=\"H4481\"* wine|strong=\"H2562\"*, commanded|strong=\"H4481\"* that|strong=\"H1768\"* the|strong=\"H4481\"* golden|strong=\"H1722\"* and|strong=\"H4430\"* silver|strong=\"H3702\"* vessels|strong=\"H3984\"* which|strong=\"H1768\"* Nebuchadnezzar|strong=\"H5020\"* his|strong=\"H4481\"* father had|strong=\"H4430\"* taken|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1965\"* which|strong=\"H1768\"* was|strong=\"H4430\"* in|strong=\"H4430\"* Jerusalem|strong=\"H3390\"* be brought|strong=\"H5312\"* to|strong=\"H4481\"* him|strong=\"H4481\"*, that|strong=\"H1768\"* the|strong=\"H4481\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H4481\"* lords|strong=\"H7261\"*, his|strong=\"H4481\"* wives|strong=\"H7695\"* and|strong=\"H4430\"* his|strong=\"H4481\"* concubines|strong=\"H3904\"*, might|strong=\"H3904\"* drink|strong=\"H8355\"* from|strong=\"H4481\"* them." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1768\"* they|strong=\"H1768\"* brought|strong=\"H5312\"* the|strong=\"H4481\"* golden|strong=\"H1722\"* vessels|strong=\"H3984\"* that|strong=\"H1768\"* were|strong=\"H1768\"* taken|strong=\"H5312\"* out|strong=\"H5312\"* of|strong=\"H4481\"* the|strong=\"H4481\"* temple|strong=\"H1005\"* of|strong=\"H4481\"* God’s house|strong=\"H1005\"* which|strong=\"H1768\"* was|strong=\"H4430\"* at Jerusalem|strong=\"H3390\"*; and|strong=\"H4430\"* the|strong=\"H4481\"* king|strong=\"H4430\"* and|strong=\"H4430\"* his|strong=\"H4481\"* lords|strong=\"H7261\"*, his|strong=\"H4481\"* wives|strong=\"H7695\"* and|strong=\"H4430\"* his|strong=\"H4481\"* concubines|strong=\"H3904\"*, drank|strong=\"H8355\"* from|strong=\"H4481\"* them." + }, + { + "verseNum": 4, + "text": "They drank|strong=\"H8355\"* wine|strong=\"H2562\"*, and|strong=\"H6523\"* praised|strong=\"H7624\"* the|strong=\"H7624\"* gods of gold|strong=\"H1722\"*, and|strong=\"H6523\"* of silver|strong=\"H3702\"*, of bronze|strong=\"H5174\"*, of iron|strong=\"H6523\"*, of wood, and|strong=\"H6523\"* of stone." + }, + { + "verseNum": 5, + "text": "In|strong=\"H5922\"* the|strong=\"H5922\"* same hour|strong=\"H8160\"*, the|strong=\"H5922\"* fingers of|strong=\"H4430\"* a|strong=\"H3068\"* man’s hand|strong=\"H3028\"* came|strong=\"H1768\"* out|strong=\"H5312\"* and|strong=\"H4430\"* wrote|strong=\"H3790\"* near the|strong=\"H5922\"* lamp stand on|strong=\"H5922\"* the|strong=\"H5922\"* plaster|strong=\"H1528\"* of|strong=\"H4430\"* the|strong=\"H5922\"* wall|strong=\"H3797\"* of|strong=\"H4430\"* the|strong=\"H5922\"* king|strong=\"H4430\"*’s palace|strong=\"H1965\"*. The|strong=\"H5922\"* king|strong=\"H4430\"* saw|strong=\"H2370\"* the|strong=\"H5922\"* part|strong=\"H6447\"* of|strong=\"H4430\"* the|strong=\"H5922\"* hand|strong=\"H3028\"* that|strong=\"H1768\"* wrote|strong=\"H3790\"*." + }, + { + "verseNum": 6, + "text": "Then|strong=\"H4430\"* the|strong=\"H4430\"* king|strong=\"H4430\"*’s face|strong=\"H2122\"* was|strong=\"H4430\"* changed|strong=\"H8133\"* in|strong=\"H8133\"* him, and|strong=\"H4430\"* his thoughts|strong=\"H7476\"* troubled him; and|strong=\"H4430\"* the|strong=\"H4430\"* joints|strong=\"H7001\"* of|strong=\"H4430\"* his thighs were|strong=\"H2783\"* loosened, and|strong=\"H4430\"* his knees struck one|strong=\"H1668\"* against|strong=\"H1668\"* another|strong=\"H1668\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* cried|strong=\"H7123\"* aloud|strong=\"H2429\"* to|strong=\"H5922\"* bring|strong=\"H5954\"* in|strong=\"H5954\"* the|strong=\"H3606\"* enchanters, the|strong=\"H3606\"* Chaldeans|strong=\"H3779\"*, and|strong=\"H6032\"* the|strong=\"H3606\"* soothsayers|strong=\"H1505\"*. The|strong=\"H3606\"* king|strong=\"H4430\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H5922\"* the|strong=\"H3606\"* wise|strong=\"H2445\"* men|strong=\"H2445\"* of|strong=\"H4437\"* Babylon, “Whoever reads this|strong=\"H1836\"* writing|strong=\"H3792\"* and|strong=\"H6032\"* shows me|strong=\"H5922\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"* shall|strong=\"H4437\"* be clothed|strong=\"H3848\"* with|strong=\"H3848\"* purple, and|strong=\"H6032\"* have|strong=\"H7981\"* a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* about|strong=\"H5922\"* his|strong=\"H5922\"* neck|strong=\"H6676\"*, and|strong=\"H6032\"* shall|strong=\"H4437\"* be the|strong=\"H3606\"* third|strong=\"H8523\"* ruler|strong=\"H7981\"* in|strong=\"H5954\"* the|strong=\"H3606\"* kingdom|strong=\"H4437\"*.”" + }, + { + "verseNum": 8, + "text": "Then|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* king|strong=\"H4430\"*’s wise|strong=\"H2445\"* men|strong=\"H2445\"* came|strong=\"H5954\"* in|strong=\"H5954\"*; but|strong=\"H3606\"* they|strong=\"H3606\"* could|strong=\"H3546\"* not|strong=\"H3809\"* read|strong=\"H7123\"* the|strong=\"H3606\"* writing|strong=\"H3792\"*, and|strong=\"H4430\"* couldn’t make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H3046\"* the|strong=\"H3606\"* king|strong=\"H4430\"* the|strong=\"H3606\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H4430\"* King|strong=\"H4430\"* Belshazzar|strong=\"H1113\"* was|strong=\"H4430\"* greatly|strong=\"H7690\"* troubled, and|strong=\"H4430\"* his|strong=\"H5922\"* face|strong=\"H2122\"* was|strong=\"H4430\"* changed|strong=\"H8133\"* in|strong=\"H5922\"* him|strong=\"H5922\"*, and|strong=\"H4430\"* his|strong=\"H5922\"* lords|strong=\"H7261\"* were|strong=\"H7261\"* perplexed|strong=\"H7672\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H4430\"* queen|strong=\"H4433\"* by reason|strong=\"H6903\"* of|strong=\"H1005\"* the|strong=\"H4430\"* words|strong=\"H4406\"* of|strong=\"H1005\"* the|strong=\"H4430\"* king|strong=\"H4430\"* and|strong=\"H6032\"* his|strong=\"H5954\"* lords|strong=\"H7261\"* came|strong=\"H5954\"* into|strong=\"H5954\"* the|strong=\"H4430\"* banquet|strong=\"H4961\"* house|strong=\"H1005\"*. The|strong=\"H4430\"* queen|strong=\"H4433\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live|strong=\"H2418\"* forever|strong=\"H5957\"*; don’t let your thoughts|strong=\"H7476\"* trouble you|strong=\"H6903\"*, nor let your face|strong=\"H2122\"* be|strong=\"H2122\"* changed|strong=\"H8133\"*." + }, + { + "verseNum": 11, + "text": "There|strong=\"H1768\"* is|strong=\"H1768\"* a|strong=\"H3068\"* man|strong=\"H1400\"* in|strong=\"H4430\"* your|strong=\"H1768\"* kingdom|strong=\"H4437\"* in|strong=\"H4430\"* whom|strong=\"H1768\"* is|strong=\"H1768\"* the|strong=\"H5020\"* spirit|strong=\"H7308\"* of|strong=\"H4437\"* the|strong=\"H5020\"* holy|strong=\"H6922\"* gods; and|strong=\"H4430\"* in|strong=\"H4430\"* the|strong=\"H5020\"* days|strong=\"H3118\"* of|strong=\"H4437\"* your|strong=\"H1768\"* father, light|strong=\"H5094\"* and|strong=\"H4430\"* understanding|strong=\"H7924\"* and|strong=\"H4430\"* wisdom|strong=\"H2452\"*, like the|strong=\"H5020\"* wisdom|strong=\"H2452\"* of|strong=\"H4437\"* the|strong=\"H5020\"* gods, were|strong=\"H1400\"* found|strong=\"H7912\"* in|strong=\"H4430\"* him|strong=\"H6966\"*. The|strong=\"H5020\"* king|strong=\"H4430\"*, Nebuchadnezzar|strong=\"H5020\"*, your|strong=\"H1768\"* father—yes, the|strong=\"H5020\"* king|strong=\"H4430\"*, your|strong=\"H1768\"* father—made|strong=\"H6966\"* him|strong=\"H6966\"* master|strong=\"H7229\"* of|strong=\"H4437\"* the|strong=\"H5020\"* magicians|strong=\"H2749\"*, enchanters, Chaldeans|strong=\"H3779\"*, and|strong=\"H4430\"* soothsayers|strong=\"H1505\"*," + }, + { + "verseNum": 12, + "text": "because|strong=\"H6903\"* an|strong=\"H4430\"* excellent|strong=\"H3493\"* spirit|strong=\"H7308\"*, knowledge|strong=\"H4486\"*, understanding|strong=\"H7924\"*, interpreting|strong=\"H6590\"* of|strong=\"H4430\"* dreams|strong=\"H2493\"*, showing of|strong=\"H4430\"* dark sentences, and|strong=\"H4430\"* dissolving|strong=\"H8271\"* of|strong=\"H4430\"* doubts|strong=\"H7001\"* were|strong=\"H1768\"* found|strong=\"H7912\"* in|strong=\"H4430\"* the|strong=\"H3606\"* same Daniel|strong=\"H1841\"*, whom|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* named|strong=\"H8036\"* Belteshazzar|strong=\"H1096\"*. Now|strong=\"H3705\"* let|strong=\"H3705\"* Daniel|strong=\"H1841\"* be|strong=\"H1841\"* called|strong=\"H7123\"*, and|strong=\"H4430\"* he|strong=\"H1768\"* will|strong=\"H1768\"* show the|strong=\"H3606\"* interpretation|strong=\"H6591\"*.”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* was|strong=\"H1841\"* brought|strong=\"H5954\"* in|strong=\"H5954\"* before|strong=\"H6925\"* the|strong=\"H4481\"* king|strong=\"H4430\"*. The|strong=\"H4481\"* king|strong=\"H4430\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* to|strong=\"H6925\"* Daniel|strong=\"H1841\"*, “Are|strong=\"H1768\"* you|strong=\"H1768\"* that|strong=\"H1768\"* Daniel|strong=\"H1841\"* of|strong=\"H4481\"* the|strong=\"H4481\"* children|strong=\"H1123\"* of|strong=\"H4481\"* the|strong=\"H4481\"* captivity|strong=\"H1547\"* of|strong=\"H4481\"* Judah|strong=\"H3061\"*, whom|strong=\"H1768\"* the|strong=\"H4481\"* king|strong=\"H4430\"* my|strong=\"H4430\"* father brought|strong=\"H5954\"* out of|strong=\"H4481\"* Judah|strong=\"H3061\"*?" + }, + { + "verseNum": 14, + "text": "I|strong=\"H1768\"* have|strong=\"H1768\"* heard|strong=\"H8086\"* of|strong=\"H5922\"* you|strong=\"H1768\"*, that|strong=\"H1768\"* the|strong=\"H5922\"* spirit|strong=\"H7308\"* of|strong=\"H5922\"* the|strong=\"H5922\"* gods is|strong=\"H1768\"* in|strong=\"H5922\"* you|strong=\"H1768\"* and|strong=\"H2452\"* that|strong=\"H1768\"* light|strong=\"H5094\"*, understanding|strong=\"H7924\"*, and|strong=\"H2452\"* excellent|strong=\"H3493\"* wisdom|strong=\"H2452\"* are|strong=\"H1768\"* found|strong=\"H7912\"* in|strong=\"H5922\"* you|strong=\"H1768\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H3705\"* the|strong=\"H6925\"* wise|strong=\"H2445\"* men|strong=\"H2445\"*, the|strong=\"H6925\"* enchanters, have|strong=\"H1768\"* been brought|strong=\"H5954\"* in|strong=\"H5954\"* before|strong=\"H6925\"* me|strong=\"H6925\"*, that|strong=\"H1768\"* they|strong=\"H1768\"* should read|strong=\"H7123\"* this|strong=\"H1836\"* writing|strong=\"H3792\"*, and|strong=\"H3792\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* me|strong=\"H6925\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*; but|strong=\"H1768\"* they|strong=\"H1768\"* could|strong=\"H3546\"* not|strong=\"H3809\"* show the|strong=\"H6925\"* interpretation|strong=\"H6591\"* of|strong=\"H2445\"* the|strong=\"H6925\"* thing|strong=\"H4406\"*." + }, + { + "verseNum": 16, + "text": "But|strong=\"H1768\"* I|strong=\"H1768\"* have|strong=\"H7981\"* heard|strong=\"H8086\"* of|strong=\"H4437\"* you|strong=\"H1768\"*, that|strong=\"H1768\"* you|strong=\"H1768\"* can|strong=\"H3202\"* give|strong=\"H6590\"* interpretations|strong=\"H6590\"* and|strong=\"H1722\"* dissolve|strong=\"H8271\"* doubts|strong=\"H7001\"*. Now|strong=\"H3705\"* if|strong=\"H2006\"* you|strong=\"H1768\"* can|strong=\"H3202\"* read|strong=\"H7123\"* the|strong=\"H5922\"* writing|strong=\"H3792\"* and|strong=\"H1722\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H5922\"* me|strong=\"H5922\"* its|strong=\"H6591\"* interpretation|strong=\"H6591\"*, you|strong=\"H1768\"* shall|strong=\"H4437\"* be|strong=\"H3705\"* clothed|strong=\"H3848\"* with|strong=\"H3848\"* purple, and|strong=\"H1722\"* have|strong=\"H7981\"* a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* around|strong=\"H5922\"* your|strong=\"H1768\"* neck|strong=\"H6676\"*, and|strong=\"H1722\"* shall|strong=\"H4437\"* be|strong=\"H3705\"* the|strong=\"H5922\"* third|strong=\"H8531\"* ruler|strong=\"H7981\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"*.”" + }, + { + "verseNum": 17, + "text": "Then|strong=\"H4430\"* Daniel|strong=\"H1841\"* answered|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, “Let your|strong=\"H3052\"* gifts|strong=\"H4978\"* be|strong=\"H1934\"* to|strong=\"H6925\"* yourself, and|strong=\"H6032\"* give|strong=\"H3052\"* your|strong=\"H3052\"* rewards|strong=\"H5023\"* to|strong=\"H6925\"* another. Nevertheless|strong=\"H1297\"*, I will|strong=\"H4430\"* read|strong=\"H7123\"* the|strong=\"H6925\"* writing|strong=\"H3792\"* to|strong=\"H6925\"* the|strong=\"H6925\"* king|strong=\"H4430\"*, and|strong=\"H6032\"* make|strong=\"H3046\"* known|strong=\"H3046\"* to|strong=\"H6925\"* him|strong=\"H6925\"* the|strong=\"H6925\"* interpretation|strong=\"H6591\"*." + }, + { + "verseNum": 18, + "text": "“To|strong=\"H4430\"* you, king|strong=\"H4430\"*, the|strong=\"H5020\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God gave|strong=\"H3052\"* Nebuchadnezzar|strong=\"H5020\"* your|strong=\"H5020\"* father the|strong=\"H5020\"* kingdom|strong=\"H4437\"*, and|strong=\"H4430\"* greatness|strong=\"H7238\"*, and|strong=\"H4430\"* glory|strong=\"H3367\"*, and|strong=\"H4430\"* majesty|strong=\"H7238\"*." + }, + { + "verseNum": 19, + "text": "Because|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H3606\"* greatness|strong=\"H7238\"* that|strong=\"H1768\"* he|strong=\"H1768\"* gave|strong=\"H3052\"* him|strong=\"H4481\"*, all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, nations, and|strong=\"H1763\"* languages|strong=\"H3961\"* trembled|strong=\"H1934\"* and|strong=\"H1763\"* feared|strong=\"H1763\"* before|strong=\"H6925\"* him|strong=\"H4481\"*. He|strong=\"H1768\"* killed|strong=\"H6992\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*, and|strong=\"H1763\"* he|strong=\"H1768\"* kept|strong=\"H1934\"* alive|strong=\"H2418\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*. He|strong=\"H1768\"* raised up|strong=\"H7313\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*, and|strong=\"H1763\"* he|strong=\"H1768\"* put down|strong=\"H1934\"* whom|strong=\"H1768\"* he|strong=\"H1768\"* wanted to|strong=\"H6925\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H1768\"* when|strong=\"H1768\"* his|strong=\"H4481\"* heart|strong=\"H3825\"* was|strong=\"H3825\"* lifted|strong=\"H7313\"* up|strong=\"H7313\"*, and|strong=\"H4437\"* his|strong=\"H4481\"* spirit|strong=\"H7308\"* was|strong=\"H3825\"* hardened|strong=\"H8631\"* so|strong=\"H1768\"* that|strong=\"H1768\"* he|strong=\"H1768\"* dealt proudly, he|strong=\"H1768\"* was|strong=\"H3825\"* deposed|strong=\"H5182\"* from|strong=\"H4481\"* his|strong=\"H4481\"* kingly|strong=\"H4437\"* throne|strong=\"H3764\"*, and|strong=\"H4437\"* they|strong=\"H1768\"* took|strong=\"H5709\"* his|strong=\"H4481\"* glory|strong=\"H3367\"* from|strong=\"H4481\"* him|strong=\"H4481\"*." + }, + { + "verseNum": 21, + "text": "He|strong=\"H1768\"* was|strong=\"H1655\"* driven|strong=\"H2957\"* from|strong=\"H4481\"* the|strong=\"H5922\"* sons|strong=\"H1123\"* of|strong=\"H4481\"* men|strong=\"H4437\"*, and|strong=\"H8065\"* his|strong=\"H5922\"* heart|strong=\"H3825\"* was|strong=\"H1655\"* made|strong=\"H3046\"* like|strong=\"H2939\"* the|strong=\"H5922\"* animals|strong=\"H2423\"*’, and|strong=\"H8065\"* his|strong=\"H5922\"* dwelling|strong=\"H4070\"* was|strong=\"H1655\"* with|strong=\"H5974\"* the|strong=\"H5922\"* wild|strong=\"H6167\"* donkeys|strong=\"H6167\"*. He|strong=\"H1768\"* was|strong=\"H1655\"* fed|strong=\"H2939\"* with|strong=\"H5974\"* grass|strong=\"H6211\"* like|strong=\"H2939\"* oxen|strong=\"H8450\"*, and|strong=\"H8065\"* his|strong=\"H5922\"* body|strong=\"H1655\"* was|strong=\"H1655\"* wet|strong=\"H6647\"* with|strong=\"H5974\"* the|strong=\"H5922\"* dew|strong=\"H2920\"* of|strong=\"H4481\"* the|strong=\"H5922\"* sky|strong=\"H8065\"*, until|strong=\"H5705\"* he|strong=\"H1768\"* knew|strong=\"H3046\"* that|strong=\"H1768\"* the|strong=\"H5922\"* Most|strong=\"H5943\"* High|strong=\"H5943\"* God rules|strong=\"H7990\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"* of|strong=\"H4481\"* men|strong=\"H4437\"*, and|strong=\"H8065\"* that|strong=\"H1768\"* he|strong=\"H1768\"* sets|strong=\"H6966\"* up|strong=\"H6966\"* over|strong=\"H5922\"* it|strong=\"H5922\"* whomever|strong=\"H1768\"* he|strong=\"H1768\"* will|strong=\"H6634\"*." + }, + { + "verseNum": 22, + "text": "“You|strong=\"H1768\"*, his|strong=\"H1768\"* son|strong=\"H1247\"*, Belshazzar|strong=\"H1113\"*, have|strong=\"H1768\"* not|strong=\"H3809\"* humbled|strong=\"H8214\"* your|strong=\"H1768\"* heart|strong=\"H3825\"*, though|strong=\"H6903\"* you|strong=\"H1768\"* knew|strong=\"H3046\"* all|strong=\"H3606\"* this|strong=\"H1836\"*," + }, + { + "verseNum": 23, + "text": "but|strong=\"H1768\"* have|strong=\"H1768\"* lifted|strong=\"H7313\"* up|strong=\"H7313\"* yourself|strong=\"H7313\"* against|strong=\"H5922\"* the|strong=\"H3606\"* Lord|strong=\"H4756\"* of|strong=\"H1005\"* heaven|strong=\"H8065\"*; and|strong=\"H6523\"* they|strong=\"H3606\"* have|strong=\"H1768\"* brought the|strong=\"H3606\"* vessels|strong=\"H3984\"* of|strong=\"H1005\"* his|strong=\"H5922\"* house|strong=\"H1005\"* before|strong=\"H6925\"* you|strong=\"H1768\"*, and|strong=\"H6523\"* you|strong=\"H1768\"* and|strong=\"H6523\"* your|strong=\"H1768\"* lords|strong=\"H7261\"*, your|strong=\"H1768\"* wives|strong=\"H7695\"*, and|strong=\"H6523\"* your|strong=\"H1768\"* concubines|strong=\"H3904\"*, have|strong=\"H1768\"* drunk|strong=\"H8355\"* wine|strong=\"H2562\"* from|strong=\"H1768\"* them|strong=\"H5922\"*. You|strong=\"H1768\"* have|strong=\"H1768\"* praised|strong=\"H7624\"* the|strong=\"H3606\"* gods of|strong=\"H1005\"* silver|strong=\"H3702\"* and|strong=\"H6523\"* gold|strong=\"H1722\"*, of|strong=\"H1005\"* bronze|strong=\"H5174\"*, iron|strong=\"H6523\"*, wood, and|strong=\"H6523\"* stone, which|strong=\"H1768\"* don’t see|strong=\"H2370\"*, or|strong=\"H3809\"* hear|strong=\"H8086\"*, or|strong=\"H3809\"* know|strong=\"H3046\"*; and|strong=\"H6523\"* you|strong=\"H1768\"* have|strong=\"H1768\"* not|strong=\"H3809\"* glorified|strong=\"H1922\"* the|strong=\"H3606\"* God in|strong=\"H5922\"* whose|strong=\"H1768\"* hand|strong=\"H3028\"* your|strong=\"H1768\"* breath|strong=\"H5396\"* is|strong=\"H1768\"*, and|strong=\"H6523\"* whose|strong=\"H1768\"* are|strong=\"H1768\"* all|strong=\"H3606\"* your|strong=\"H1768\"* ways." + }, + { + "verseNum": 24, + "text": "Then|strong=\"H1768\"* the|strong=\"H4481\"* part|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H4481\"* hand|strong=\"H3028\"* was|strong=\"H3792\"* sent|strong=\"H7972\"* from|strong=\"H4481\"* before|strong=\"H6925\"* him|strong=\"H4481\"*, and|strong=\"H3792\"* this|strong=\"H1836\"* writing|strong=\"H3792\"* was|strong=\"H3792\"* inscribed." + }, + { + "verseNum": 25, + "text": "“This|strong=\"H1836\"* is|strong=\"H1768\"* the|strong=\"H1768\"* writing|strong=\"H3792\"* that|strong=\"H1768\"* was|strong=\"H3792\"* inscribed: ‘MENE|strong=\"H4484\"*, MENE|strong=\"H4484\"*, TEKEL|strong=\"H8625\"*, UPHARSIN|strong=\"H6537\"*.’" + }, + { + "verseNum": 26, + "text": "“This|strong=\"H1836\"* is|strong=\"H4406\"* the|strong=\"H1836\"* interpretation|strong=\"H6591\"* of|strong=\"H4437\"* the|strong=\"H1836\"* thing|strong=\"H4406\"*:" + }, + { + "verseNum": 27, + "text": "TEKEL|strong=\"H8625\"*: you are weighed|strong=\"H8625\"* in|strong=\"H7912\"* the balances|strong=\"H3977\"*, and|strong=\"H3977\"* are found|strong=\"H7912\"* wanting|strong=\"H2627\"*." + }, + { + "verseNum": 28, + "text": "PERES|strong=\"H6537\"*: your|strong=\"H3052\"* kingdom|strong=\"H4437\"* is|strong=\"H4437\"* divided|strong=\"H6537\"*, and|strong=\"H4076\"* given|strong=\"H3052\"* to|strong=\"H3052\"* the|strong=\"H3052\"* Medes|strong=\"H4076\"* and|strong=\"H4076\"* Persians|strong=\"H6540\"*.”" + }, + { + "verseNum": 29, + "text": "Then|strong=\"H1768\"* Belshazzar|strong=\"H1113\"* commanded, and|strong=\"H1722\"* they|strong=\"H1768\"* clothed|strong=\"H3848\"* Daniel|strong=\"H1841\"* with|strong=\"H3848\"* purple, and|strong=\"H1722\"* put a|strong=\"H3068\"* chain|strong=\"H2002\"* of|strong=\"H4437\"* gold|strong=\"H1722\"* about|strong=\"H5922\"* his|strong=\"H5922\"* neck|strong=\"H6676\"*, and|strong=\"H1722\"* made proclamation|strong=\"H3745\"* concerning|strong=\"H5922\"* him|strong=\"H5922\"*, that|strong=\"H1768\"* he|strong=\"H1768\"* should be|strong=\"H1934\"* the|strong=\"H5922\"* third|strong=\"H8531\"* ruler|strong=\"H7990\"* in|strong=\"H5922\"* the|strong=\"H5922\"* kingdom|strong=\"H4437\"*." + }, + { + "verseNum": 30, + "text": "In|strong=\"H4430\"* that|strong=\"H4430\"* night|strong=\"H3916\"* Belshazzar|strong=\"H1113\"* the|strong=\"H4430\"* Chaldean|strong=\"H3779\"* King|strong=\"H4430\"* was|strong=\"H4430\"* slain|strong=\"H6992\"*." + }, + { + "verseNum": 31, + "text": "Darius the Mede received the kingdom, being about sixty-two years old." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "It pleased Darius|strong=\"H1868\"* to|strong=\"H1868\"* set over the|strong=\"H1868\"* kingdom|strong=\"H4437\"* one hundred twenty local governors, who should be throughout the|strong=\"H1868\"* whole kingdom|strong=\"H4437\"*;" + }, + { + "verseNum": 2, + "text": "and|strong=\"H4437\"* over|strong=\"H5922\"* them|strong=\"H5922\"* three presidents, of|strong=\"H4437\"* whom|strong=\"H1768\"* Daniel was|strong=\"H1934\"* one, that|strong=\"H1768\"* these local governors might|strong=\"H1934\"* give account|strong=\"H5922\"* to|strong=\"H5922\"* them|strong=\"H5922\"*, and|strong=\"H4437\"* that|strong=\"H1768\"* the|strong=\"H3606\"* king should suffer no|strong=\"H3606\"* loss." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1768\"* this|strong=\"H4481\"* Daniel|strong=\"H1841\"* was|strong=\"H1934\"* distinguished above the|strong=\"H4481\"* presidents|strong=\"H5632\"* and|strong=\"H4430\"* the|strong=\"H4481\"* local governors, because|strong=\"H4481\"* an|strong=\"H4430\"* excellent spirit was|strong=\"H1934\"* in|strong=\"H4430\"* him|strong=\"H4481\"*; and|strong=\"H4430\"* the|strong=\"H4481\"* king|strong=\"H4430\"* thought to|strong=\"H4481\"* set him|strong=\"H4481\"* over|strong=\"H5924\"* the|strong=\"H4481\"* whole realm." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* presidents|strong=\"H5632\"* and|strong=\"H4430\"* the|strong=\"H3606\"* local governors sought|strong=\"H1934\"* to|strong=\"H5922\"* find occasion against|strong=\"H5922\"* Daniel|strong=\"H1841\"* as|strong=\"H3606\"* touching the|strong=\"H3606\"* kingdom|strong=\"H4437\"*; but|strong=\"H1768\"* they|strong=\"H3606\"* could|strong=\"H1768\"* find no|strong=\"H3606\"* occasion or|strong=\"H4430\"* fault, because|strong=\"H6903\"* he|strong=\"H1768\"* was|strong=\"H1934\"* faithful. There|strong=\"H6903\"* wasn’t any|strong=\"H3606\"* error or|strong=\"H4430\"* fault found in|strong=\"H5922\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6903\"* these men|strong=\"H4437\"* said, “We|strong=\"H1768\"* won’t find|strong=\"H7912\"* any|strong=\"H3606\"* occasion|strong=\"H5931\"* against|strong=\"H5922\"* this|strong=\"H1932\"* Daniel|strong=\"H1841\"*, unless we|strong=\"H3068\"* find|strong=\"H7912\"* it|strong=\"H5922\"* against|strong=\"H5922\"* him|strong=\"H5922\"* concerning|strong=\"H5922\"* the|strong=\"H3606\"* law of|strong=\"H4437\"* his|strong=\"H5922\"* God.”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H1768\"* these|strong=\"H1836\"* presidents and|strong=\"H1841\"* local governors assembled together to|strong=\"H5922\"* the|strong=\"H3606\"* king, and|strong=\"H1841\"* said this|strong=\"H1836\"* to|strong=\"H5922\"* him|strong=\"H5922\"*, “King Darius, live forever!" + }, + { + "verseNum": 7, + "text": "All|strong=\"H5957\"* the|strong=\"H5922\"* presidents|strong=\"H5632\"* of|strong=\"H4430\"* the|strong=\"H5922\"* kingdom, the|strong=\"H5922\"* deputies and|strong=\"H4430\"* the|strong=\"H5922\"* local governors, the|strong=\"H5922\"* counselors and|strong=\"H4430\"* the|strong=\"H5922\"* governors, have|strong=\"H1868\"* consulted together|strong=\"H7284\"* to|strong=\"H5922\"* establish a|strong=\"H3068\"* royal|strong=\"H4430\"* statute and|strong=\"H4430\"* to|strong=\"H5922\"* make a|strong=\"H3068\"* strong decree, that|strong=\"H5922\"* whoever asks a|strong=\"H3068\"* petition of|strong=\"H4430\"* any god or|strong=\"H4430\"* man for|strong=\"H5922\"* thirty days, except of|strong=\"H4430\"* you|strong=\"H5922\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, he|strong=\"H3652\"* shall be|strong=\"H5957\"* cast into the|strong=\"H5922\"* den of|strong=\"H4430\"* lions." + }, + { + "verseNum": 8, + "text": "Now|strong=\"H4430\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, establish|strong=\"H6966\"* the|strong=\"H3606\"* decree and|strong=\"H4430\"* sign the|strong=\"H3606\"* writing, that|strong=\"H1768\"* it|strong=\"H4481\"* not be changed, according|strong=\"H4481\"* to|strong=\"H5705\"* the|strong=\"H3606\"* law of|strong=\"H4481\"* the|strong=\"H3606\"* Medes and|strong=\"H4430\"* Persians, which|strong=\"H1768\"* doesn’t alter.”" + }, + { + "verseNum": 9, + "text": "Therefore King|strong=\"H4430\"* Darius signed|strong=\"H7560\"* the|strong=\"H1768\"* writing|strong=\"H3792\"* and|strong=\"H4430\"* the|strong=\"H1768\"* decree|strong=\"H1882\"*." + }, + { + "verseNum": 10, + "text": "When Daniel knew that|strong=\"H3606\"* the|strong=\"H3606\"* writing|strong=\"H3792\"* was|strong=\"H4430\"* signed|strong=\"H7560\"*, he|strong=\"H6903\"* went into his|strong=\"H3606\"* house (now|strong=\"H4430\"* his|strong=\"H3606\"* windows were open in|strong=\"H4430\"* his|strong=\"H3606\"* room toward Jerusalem) and|strong=\"H4430\"* he|strong=\"H6903\"* kneeled on his|strong=\"H3606\"* knees three times a|strong=\"H3068\"* day, and|strong=\"H4430\"* prayed, and|strong=\"H4430\"* gave thanks before|strong=\"H6903\"* his|strong=\"H3606\"* God, as|strong=\"H3606\"* he|strong=\"H6903\"* did before|strong=\"H6903\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H6903\"* these|strong=\"H1836\"* men assembled together, and|strong=\"H1005\"* found Daniel|strong=\"H1841\"* making|strong=\"H3046\"* petition and|strong=\"H1005\"* supplication before|strong=\"H6925\"* his|strong=\"H5922\"* God." + }, + { + "verseNum": 12, + "text": "Then they came|strong=\"H7284\"* near, and|strong=\"H1841\"* spoke before|strong=\"H6925\"* the|strong=\"H6925\"* king concerning the|strong=\"H6925\"* king’s decree: “Haven’t you signed a|strong=\"H3068\"* decree that|strong=\"H1400\"* every man|strong=\"H1400\"* who makes|strong=\"H1156\"* a|strong=\"H3068\"* petition|strong=\"H1156\"* to|strong=\"H6925\"* any god or man|strong=\"H1400\"* within thirty days, except to|strong=\"H6925\"* you, O|strong=\"H3068\"* king, shall be|strong=\"H1841\"* cast into the|strong=\"H6925\"* den of|strong=\"H6925\"* lions?”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1768\"* they|strong=\"H3606\"* answered|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"* before|strong=\"H6925\"* the|strong=\"H3606\"* king|strong=\"H4430\"*, “That|strong=\"H1768\"* Daniel, who|strong=\"H1768\"* is|strong=\"H1768\"* of|strong=\"H4481\"* the|strong=\"H3606\"* children of|strong=\"H4481\"* the|strong=\"H3606\"* captivity of|strong=\"H4481\"* Judah, doesn’t respect you|strong=\"H1768\"*, O|strong=\"H3068\"* king|strong=\"H4430\"*, nor|strong=\"H3809\"* the|strong=\"H3606\"* decree|strong=\"H1882\"* that|strong=\"H1768\"* you|strong=\"H1768\"* have|strong=\"H1768\"* signed|strong=\"H7560\"*, but|strong=\"H3861\"* makes|strong=\"H1156\"* his|strong=\"H5922\"* petition|strong=\"H1156\"* three times a|strong=\"H3068\"* day|strong=\"H3118\"*.”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, when|strong=\"H1768\"* he|strong=\"H1768\"* heard these|strong=\"H4481\"* words, was|strong=\"H1841\"* very displeased, and|strong=\"H6032\"* set|strong=\"H7761\"* his|strong=\"H5922\"* heart on|strong=\"H5922\"* Daniel|strong=\"H1841\"* to|strong=\"H5922\"* deliver him|strong=\"H5922\"*; and|strong=\"H6032\"* he|strong=\"H1768\"* labored until the|strong=\"H5922\"* going down of|strong=\"H4481\"* the|strong=\"H5922\"* sun to|strong=\"H5922\"* rescue him|strong=\"H5922\"*." + }, + { + "verseNum": 15, + "text": "Then|strong=\"H1768\"* these men assembled together to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, and|strong=\"H4430\"* said to|strong=\"H5922\"* the|strong=\"H5922\"* king|strong=\"H4430\"*, “Know, O|strong=\"H3068\"* king|strong=\"H4430\"*, that|strong=\"H1768\"* it|strong=\"H5922\"* is|strong=\"H1768\"* a|strong=\"H3068\"* law of|strong=\"H4430\"* the|strong=\"H5922\"* Medes and|strong=\"H4430\"* Persians, that|strong=\"H1768\"* no decree nor statute which|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* establishes may be|strong=\"H1934\"* changed.”" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1768\"* the|strong=\"H3606\"* king|strong=\"H4430\"* commanded, and|strong=\"H4430\"* they|strong=\"H3606\"* brought Daniel and|strong=\"H4430\"* cast him|strong=\"H5922\"* into the|strong=\"H3606\"* den of|strong=\"H4430\"* lions. The|strong=\"H3606\"* king|strong=\"H4430\"* spoke and|strong=\"H4430\"* said to|strong=\"H5922\"* Daniel, “Your|strong=\"H1768\"* God whom|strong=\"H1768\"* you|strong=\"H1768\"* serve continually, he|strong=\"H1768\"* will|strong=\"H1768\"* deliver you|strong=\"H1768\"*.”" + }, + { + "verseNum": 17, + "text": "A|strong=\"H3068\"* stone was|strong=\"H1841\"* brought|strong=\"H1841\"*, and|strong=\"H6032\"* laid on the|strong=\"H1768\"* mouth of|strong=\"H4430\"* the|strong=\"H1768\"* den|strong=\"H1358\"*; and|strong=\"H6032\"* the|strong=\"H1768\"* king|strong=\"H4430\"* sealed it|strong=\"H1932\"* with|strong=\"H1841\"* his|strong=\"H7804\"* own signet, and|strong=\"H6032\"* with|strong=\"H1841\"* the|strong=\"H1768\"* signet of|strong=\"H4430\"* his|strong=\"H7804\"* lords; that|strong=\"H1768\"* nothing might be|strong=\"H1841\"* changed concerning Daniel|strong=\"H1841\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H1768\"* the|strong=\"H5922\"* king|strong=\"H4430\"* went|strong=\"H1841\"* to|strong=\"H5922\"* his|strong=\"H5922\"* palace, and|strong=\"H4430\"* passed the|strong=\"H5922\"* night fasting. No|strong=\"H3809\"* musical instruments were|strong=\"H1768\"* brought|strong=\"H1841\"* before|strong=\"H5922\"* him|strong=\"H5922\"*; and|strong=\"H4430\"* his|strong=\"H5922\"* sleep fled from|strong=\"H8133\"* him|strong=\"H5922\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H4430\"* the|strong=\"H5922\"* king|strong=\"H4430\"* arose very early in|strong=\"H5954\"* the|strong=\"H5922\"* morning, and|strong=\"H4430\"* went|strong=\"H5954\"* in|strong=\"H5954\"* haste to|strong=\"H5922\"* the|strong=\"H5922\"* den of|strong=\"H4430\"* lions." + }, + { + "verseNum": 20, + "text": "When|strong=\"H1768\"* he|strong=\"H1768\"* came|strong=\"H1768\"* near to|strong=\"H4430\"* the|strong=\"H1768\"* den|strong=\"H1358\"* to|strong=\"H4430\"* Daniel, he|strong=\"H1768\"* cried with a|strong=\"H3068\"* troubled voice. The|strong=\"H1768\"* king|strong=\"H4430\"* spoke and|strong=\"H4430\"* said to|strong=\"H4430\"* Daniel, “Daniel, servant of|strong=\"H4430\"* the|strong=\"H1768\"* living God, is|strong=\"H1768\"* your|strong=\"H1768\"* God, whom|strong=\"H1768\"* you|strong=\"H1768\"* serve continually, able to|strong=\"H4430\"* deliver you|strong=\"H1768\"* from|strong=\"H1768\"* the|strong=\"H1768\"* lions?”" + }, + { + "verseNum": 21, + "text": "Then|strong=\"H1768\"* Daniel|strong=\"H1841\"* said|strong=\"H6032\"* to|strong=\"H3202\"* the|strong=\"H4481\"* king|strong=\"H4430\"*, “O|strong=\"H3068\"* king|strong=\"H4430\"*, live forever!" + }, + { + "verseNum": 22, + "text": "My|strong=\"H4430\"* God has|strong=\"H4430\"* sent his angel, and|strong=\"H4430\"* has|strong=\"H4430\"* shut the|strong=\"H5974\"* lions’ mouths, and|strong=\"H4430\"* they have|strong=\"H4430\"* not hurt me, because innocence was|strong=\"H4430\"* found in|strong=\"H4430\"* me before him|strong=\"H5974\"*; and|strong=\"H4430\"* also|strong=\"H4430\"* before you, O|strong=\"H3068\"* king|strong=\"H4430\"*, I have|strong=\"H4430\"* done no harm.”" + }, + { + "verseNum": 23, + "text": "Then|strong=\"H6903\"* the|strong=\"H3606\"* king|strong=\"H4430\"* was|strong=\"H4430\"* exceedingly glad, and|strong=\"H4430\"* commanded that|strong=\"H1768\"* they|strong=\"H3606\"* should|strong=\"H4430\"* take Daniel up|strong=\"H6925\"* out|strong=\"H5648\"* of|strong=\"H4430\"* the|strong=\"H3606\"* den. So|strong=\"H1768\"* Daniel was|strong=\"H4430\"* taken up|strong=\"H6925\"* out|strong=\"H5648\"* of|strong=\"H4430\"* the|strong=\"H3606\"* den, and|strong=\"H4430\"* no|strong=\"H3809\"* kind of|strong=\"H4430\"* harm was|strong=\"H4430\"* found|strong=\"H7912\"* on him|strong=\"H6925\"*, because|strong=\"H6903\"* he|strong=\"H1768\"* had|strong=\"H4430\"* trusted in|strong=\"H4430\"* his|strong=\"H7972\"* God." + }, + { + "verseNum": 24, + "text": "The|strong=\"H3606\"* king|strong=\"H4430\"* commanded|strong=\"H4481\"*, and|strong=\"H4430\"* they|strong=\"H3606\"* brought|strong=\"H1841\"* those|strong=\"H1768\"* men who|strong=\"H1768\"* had|strong=\"H4430\"* accused Daniel|strong=\"H1841\"*, and|strong=\"H4430\"* they|strong=\"H3606\"* cast them|strong=\"H5922\"* into the|strong=\"H3606\"* den|strong=\"H1358\"* of|strong=\"H4481\"* lions—them|strong=\"H5922\"*, their|strong=\"H3606\"* children, and|strong=\"H4430\"* their|strong=\"H3606\"* wives; and|strong=\"H4430\"* the|strong=\"H3606\"* lions mauled them|strong=\"H5922\"*, and|strong=\"H4430\"* broke all|strong=\"H3606\"* their|strong=\"H3606\"* bones in|strong=\"H5922\"* pieces before|strong=\"H4481\"* they|strong=\"H3606\"* came|strong=\"H1768\"* to|strong=\"H5922\"* the|strong=\"H3606\"* bottom of|strong=\"H4481\"* the|strong=\"H3606\"* den|strong=\"H1358\"*." + }, + { + "verseNum": 25, + "text": "Then|strong=\"H1768\"* King|strong=\"H4430\"* Darius wrote to|strong=\"H5705\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples, nations, and|strong=\"H4430\"* languages who|strong=\"H1768\"* dwell in|strong=\"H4430\"* all|strong=\"H3606\"* the|strong=\"H3606\"* earth:" + }, + { + "verseNum": 26, + "text": "“I|strong=\"H1768\"* make a|strong=\"H3068\"* decree that|strong=\"H1768\"* in|strong=\"H1753\"* all|strong=\"H3606\"* the|strong=\"H3606\"* dominion of|strong=\"H4430\"* my|strong=\"H4430\"* kingdom men tremble and|strong=\"H4430\"* fear before the|strong=\"H3606\"* God of|strong=\"H4430\"* Daniel." + }, + { + "verseNum": 27, + "text": "He|strong=\"H1768\"* delivers and|strong=\"H4437\"* rescues." + }, + { + "verseNum": 28, + "text": "So|strong=\"H1768\"* this|strong=\"H4481\"* Daniel|strong=\"H1841\"* prospered in|strong=\"H5648\"* the|strong=\"H4481\"* reign of|strong=\"H4481\"* Darius and|strong=\"H8065\"* in|strong=\"H5648\"* the|strong=\"H4481\"* reign of|strong=\"H4481\"* Cyrus the|strong=\"H4481\"* Persian." + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5922\"* the|strong=\"H5922\"* first|strong=\"H2298\"* year|strong=\"H8140\"* of|strong=\"H4430\"* Belshazzar|strong=\"H1113\"* king|strong=\"H4430\"* of|strong=\"H4430\"* Babylon, Daniel|strong=\"H1841\"* had|strong=\"H4430\"* a|strong=\"H3068\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* visions|strong=\"H2376\"* of|strong=\"H4430\"* his|strong=\"H5922\"* head|strong=\"H7217\"* while on|strong=\"H5922\"* his|strong=\"H5922\"* bed|strong=\"H4903\"*. Then|strong=\"H4430\"* he|strong=\"H1841\"* wrote|strong=\"H3790\"* the|strong=\"H5922\"* dream|strong=\"H2493\"* and|strong=\"H4430\"* told the|strong=\"H5922\"* sum|strong=\"H7217\"* of|strong=\"H4430\"* the|strong=\"H5922\"* matters|strong=\"H4406\"*." + }, + { + "verseNum": 2, + "text": "Daniel|strong=\"H1841\"* spoke|strong=\"H6032\"* and|strong=\"H6032\"* said|strong=\"H6032\"*, “I saw|strong=\"H2370\"* in|strong=\"H7229\"* my vision|strong=\"H2376\"* by|strong=\"H5974\"* night|strong=\"H3916\"*, and|strong=\"H6032\"*, behold, the|strong=\"H2370\"* four winds|strong=\"H7308\"* of|strong=\"H7308\"* the|strong=\"H2370\"* sky|strong=\"H8065\"* broke out on the|strong=\"H2370\"* great|strong=\"H7229\"* sea|strong=\"H3221\"*." + }, + { + "verseNum": 3, + "text": "Four great|strong=\"H7260\"* animals|strong=\"H2423\"* came|strong=\"H5559\"* up|strong=\"H5559\"* from|strong=\"H4481\"* the|strong=\"H4481\"* sea|strong=\"H3221\"*, different|strong=\"H8133\"* from|strong=\"H4481\"* one|strong=\"H1668\"* another|strong=\"H1668\"*." + }, + { + "verseNum": 4, + "text": "“The|strong=\"H5922\"* first|strong=\"H6933\"* was|strong=\"H1934\"* like a|strong=\"H3068\"* lion, and|strong=\"H7271\"* had|strong=\"H2370\"* eagle|strong=\"H5403\"*’s wings|strong=\"H1611\"*. I|strong=\"H4481\"* watched until|strong=\"H5705\"* its|strong=\"H5705\"* wings|strong=\"H1611\"* were|strong=\"H1934\"* plucked|strong=\"H4804\"*, and|strong=\"H7271\"* it|strong=\"H5922\"* was|strong=\"H1934\"* lifted|strong=\"H5191\"* up|strong=\"H6966\"* from|strong=\"H4481\"* the|strong=\"H5922\"* earth and|strong=\"H7271\"* made|strong=\"H6966\"* to|strong=\"H5922\"* stand|strong=\"H6966\"* on|strong=\"H5922\"* two feet|strong=\"H7271\"* as|strong=\"H1768\"* a|strong=\"H3068\"* man. A|strong=\"H3068\"* man’s heart|strong=\"H3825\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 5, + "text": "“Behold, there was|strong=\"H2423\"* another animal, a|strong=\"H3068\"* second|strong=\"H8578\"*, like|strong=\"H1821\"* a|strong=\"H3068\"* bear|strong=\"H1678\"*. It|strong=\"H1321\"* was|strong=\"H2423\"* raised|strong=\"H6966\"* up|strong=\"H6966\"* on one|strong=\"H2298\"* side|strong=\"H7859\"*, and|strong=\"H3652\"* three|strong=\"H8532\"* ribs|strong=\"H5967\"* were|strong=\"H2423\"* in|strong=\"H6966\"* its mouth|strong=\"H6433\"* between its teeth|strong=\"H8128\"*. They|strong=\"H3652\"* said this to|strong=\"H6966\"* it|strong=\"H1321\"*: ‘Arise|strong=\"H6966\"*! Devour much|strong=\"H7690\"* flesh|strong=\"H1321\"*!’" + }, + { + "verseNum": 6, + "text": "“After this|strong=\"H1836\"* I|strong=\"H1836\"* saw|strong=\"H2370\"*, and|strong=\"H1934\"* behold, another|strong=\"H1836\"*, like|strong=\"H7217\"* a|strong=\"H3068\"* leopard|strong=\"H5245\"*, which|strong=\"H1768\"* had|strong=\"H2370\"* on|strong=\"H5922\"* its back|strong=\"H1355\"* four wings|strong=\"H1611\"* of|strong=\"H5922\"* a|strong=\"H3068\"* bird|strong=\"H5776\"*. The|strong=\"H5922\"* animal also had|strong=\"H2370\"* four heads|strong=\"H7217\"*; and|strong=\"H1934\"* dominion|strong=\"H7985\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5922\"* it|strong=\"H5922\"*." + }, + { + "verseNum": 7, + "text": "“After|strong=\"H4481\"* this|strong=\"H1836\"* I|strong=\"H4481\"* saw|strong=\"H2370\"* in|strong=\"H8133\"* the|strong=\"H3606\"* night|strong=\"H3916\"* visions|strong=\"H2376\"*, and|strong=\"H6523\"*, behold, there|strong=\"H1768\"* was|strong=\"H1934\"* a|strong=\"H3068\"* fourth|strong=\"H7244\"* animal, awesome|strong=\"H1763\"*, powerful|strong=\"H8624\"*, and|strong=\"H6523\"* exceedingly|strong=\"H3493\"* strong|strong=\"H8624\"*. It|strong=\"H1934\"* had|strong=\"H2370\"* great|strong=\"H7260\"* iron|strong=\"H6523\"* teeth|strong=\"H8128\"*. It|strong=\"H1934\"* devoured and|strong=\"H6523\"* broke in|strong=\"H8133\"* pieces|strong=\"H1855\"*, and|strong=\"H6523\"* stamped|strong=\"H7512\"* the|strong=\"H3606\"* residue|strong=\"H7606\"* with its|strong=\"H4481\"* feet|strong=\"H7271\"*. It|strong=\"H1934\"* was|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3606\"* the|strong=\"H3606\"* animals|strong=\"H2423\"* that|strong=\"H1768\"* were|strong=\"H1934\"* before|strong=\"H6925\"* it|strong=\"H1934\"*. It|strong=\"H1934\"* had|strong=\"H2370\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"*." + }, + { + "verseNum": 8, + "text": "“I|strong=\"H4481\"* considered|strong=\"H1934\"* the|strong=\"H4481\"* horns|strong=\"H7162\"*, and|strong=\"H1934\"* behold, there came|strong=\"H5559\"* up|strong=\"H5559\"* among|strong=\"H4481\"* them another|strong=\"H1668\"* horn|strong=\"H7162\"*, a|strong=\"H3068\"* little|strong=\"H2192\"* one|strong=\"H1668\"*, before|strong=\"H6925\"* which|strong=\"H4481\"* three|strong=\"H8532\"* of|strong=\"H4481\"* the|strong=\"H4481\"* first|strong=\"H6933\"* horns|strong=\"H7162\"* were|strong=\"H1934\"* plucked up|strong=\"H5559\"* by|strong=\"H6925\"* the|strong=\"H4481\"* roots|strong=\"H6132\"*; and|strong=\"H1934\"* behold, in this|strong=\"H1668\"* horn|strong=\"H7162\"* were|strong=\"H1934\"* eyes|strong=\"H5870\"* like the|strong=\"H4481\"* eyes|strong=\"H5870\"* of|strong=\"H4481\"* a|strong=\"H3068\"* man, and|strong=\"H1934\"* a|strong=\"H3068\"* mouth|strong=\"H6433\"* speaking|strong=\"H4449\"* arrogantly." + }, + { + "verseNum": 9, + "text": "“I|strong=\"H1768\"* watched until|strong=\"H5705\"* thrones|strong=\"H3764\"* were|strong=\"H1934\"* placed," + }, + { + "verseNum": 10, + "text": "A|strong=\"H3068\"* fiery|strong=\"H5135\"* stream|strong=\"H5103\"* issued|strong=\"H5047\"* and|strong=\"H4481\"* came|strong=\"H1768\"* out|strong=\"H5312\"* from|strong=\"H4481\"* before|strong=\"H6925\"* him|strong=\"H4481\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"H4481\"* watched at|strong=\"H5705\"* that|strong=\"H1768\"* time because|strong=\"H4481\"* of|strong=\"H4481\"* the|strong=\"H4481\"* voice|strong=\"H7032\"* of|strong=\"H4481\"* the|strong=\"H4481\"* arrogant|strong=\"H7260\"* words|strong=\"H4406\"* which|strong=\"H1768\"* the|strong=\"H4481\"* horn|strong=\"H7162\"* spoke|strong=\"H4449\"*. I|strong=\"H4481\"* watched even|strong=\"H1768\"* until|strong=\"H5705\"* the|strong=\"H4481\"* animal was|strong=\"H1934\"* slain|strong=\"H6992\"*, and|strong=\"H1934\"* its|strong=\"H5705\"* body|strong=\"H1655\"* destroyed, and|strong=\"H1934\"* it|strong=\"H1934\"* was|strong=\"H1934\"* given|strong=\"H3052\"* to|strong=\"H5705\"* be|strong=\"H1934\"* burned with fire." + }, + { + "verseNum": 12, + "text": "As|strong=\"H5705\"* for|strong=\"H5705\"* the|strong=\"H5705\"* rest|strong=\"H7606\"* of|strong=\"H2166\"* the|strong=\"H5705\"* animals|strong=\"H2423\"*, their|strong=\"H3052\"* dominion|strong=\"H7985\"* was|strong=\"H7985\"* taken|strong=\"H5709\"* away|strong=\"H5709\"*; yet their|strong=\"H3052\"* lives|strong=\"H2417\"* were|strong=\"H2417\"* prolonged|strong=\"H3052\"* for|strong=\"H5705\"* a|strong=\"H3068\"* season|strong=\"H2166\"* and|strong=\"H2166\"* a|strong=\"H3068\"* time|strong=\"H5732\"*." + }, + { + "verseNum": 13, + "text": "“I saw|strong=\"H2370\"* in the|strong=\"H6925\"* night|strong=\"H3916\"* visions|strong=\"H2376\"*, and|strong=\"H8065\"* behold, there came|strong=\"H4291\"* with|strong=\"H5974\"* the|strong=\"H6925\"* clouds|strong=\"H6050\"* of|strong=\"H1247\"* the|strong=\"H6925\"* sky|strong=\"H8065\"* one like|strong=\"H5974\"* a|strong=\"H3068\"* son|strong=\"H1247\"* of|strong=\"H1247\"* man, and|strong=\"H8065\"* he|strong=\"H5705\"* came|strong=\"H4291\"* even to|strong=\"H6925\"* the|strong=\"H6925\"* Ancient|strong=\"H6268\"* of|strong=\"H1247\"* Days|strong=\"H3118\"*, and|strong=\"H8065\"* they brought him|strong=\"H6925\"* near|strong=\"H7127\"* before|strong=\"H6925\"* him|strong=\"H6925\"*." + }, + { + "verseNum": 14, + "text": "Dominion|strong=\"H7985\"* was|strong=\"H7985\"* given|strong=\"H3052\"* him|strong=\"H3052\"*, and|strong=\"H4437\"* glory|strong=\"H3367\"*, and|strong=\"H4437\"* a|strong=\"H3068\"* kingdom|strong=\"H4437\"*, that|strong=\"H1768\"* all|strong=\"H3606\"* the|strong=\"H3606\"* peoples|strong=\"H5972\"*, nations, and|strong=\"H4437\"* languages|strong=\"H3961\"* should serve|strong=\"H6399\"* him|strong=\"H3052\"*. His|strong=\"H5709\"* dominion|strong=\"H7985\"* is|strong=\"H1768\"* an|strong=\"H3606\"* everlasting|strong=\"H5957\"* dominion|strong=\"H7985\"*, which|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* pass|strong=\"H3809\"* away|strong=\"H5709\"*, and|strong=\"H4437\"* his|strong=\"H5709\"* kingdom|strong=\"H4437\"* one that|strong=\"H1768\"* will|strong=\"H1768\"* not|strong=\"H3809\"* be|strong=\"H3809\"* destroyed|strong=\"H2255\"*." + }, + { + "verseNum": 15, + "text": "“As for me, Daniel|strong=\"H1841\"*, my spirit|strong=\"H7308\"* was|strong=\"H1841\"* grieved|strong=\"H3735\"* within|strong=\"H1459\"* my body|strong=\"H5085\"*, and|strong=\"H1841\"* the visions|strong=\"H2376\"* of|strong=\"H7217\"* my head|strong=\"H7217\"* troubled me." + }, + { + "verseNum": 16, + "text": "I|strong=\"H4481\"* came|strong=\"H7127\"* near|strong=\"H7127\"* to|strong=\"H5922\"* one|strong=\"H2298\"* of|strong=\"H4481\"* those who stood|strong=\"H6966\"* by|strong=\"H4481\"*, and|strong=\"H7127\"* asked|strong=\"H1156\"* him|strong=\"H5922\"* the|strong=\"H3606\"* truth|strong=\"H3330\"* concerning|strong=\"H5922\"* all|strong=\"H3606\"* this|strong=\"H1836\"*." + }, + { + "verseNum": 17, + "text": "‘These|strong=\"H4481\"* great|strong=\"H7260\"* animals|strong=\"H2423\"*, which|strong=\"H1768\"* are|strong=\"H1768\"* four, are|strong=\"H1768\"* four kings|strong=\"H4430\"*, who|strong=\"H1768\"* will|strong=\"H1768\"* arise|strong=\"H6966\"* out|strong=\"H6966\"* of|strong=\"H4481\"* the|strong=\"H4481\"* earth." + }, + { + "verseNum": 18, + "text": "But the|strong=\"H5705\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H5705\"* Most High|strong=\"H5946\"* will|strong=\"H5946\"* receive|strong=\"H6902\"* the|strong=\"H5705\"* kingdom|strong=\"H4437\"*, and|strong=\"H4437\"* possess|strong=\"H2631\"* the|strong=\"H5705\"* kingdom|strong=\"H4437\"* forever|strong=\"H5957\"*, even forever|strong=\"H5957\"* and|strong=\"H4437\"* ever|strong=\"H5957\"*.’" + }, + { + "verseNum": 19, + "text": "“Then|strong=\"H1768\"* I|strong=\"H4481\"* desired|strong=\"H6634\"* to|strong=\"H5922\"* know|strong=\"H3321\"* the|strong=\"H3605\"* truth|strong=\"H3321\"* concerning|strong=\"H5922\"* the|strong=\"H3605\"* fourth|strong=\"H7244\"* animal, which|strong=\"H1768\"* was|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3605\"* of|strong=\"H4481\"* them|strong=\"H5922\"*, exceedingly|strong=\"H3493\"* terrible|strong=\"H1763\"*, whose|strong=\"H1768\"* teeth|strong=\"H8128\"* were|strong=\"H1934\"* of|strong=\"H4481\"* iron|strong=\"H6523\"*, and|strong=\"H6523\"* its|strong=\"H3605\"* nails|strong=\"H2953\"* of|strong=\"H4481\"* bronze|strong=\"H5174\"*; which|strong=\"H1768\"* devoured, broke in|strong=\"H5922\"* pieces|strong=\"H1855\"*, and|strong=\"H6523\"* stamped|strong=\"H7512\"* the|strong=\"H3605\"* residue|strong=\"H7606\"* with|strong=\"H3605\"* its|strong=\"H3605\"* feet|strong=\"H7271\"*;" + }, + { + "verseNum": 20, + "text": "and|strong=\"H5308\"* concerning|strong=\"H5922\"* the|strong=\"H5922\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"* that|strong=\"H1768\"* were|strong=\"H1768\"* on|strong=\"H5922\"* its|strong=\"H4481\"* head|strong=\"H7217\"* and|strong=\"H5308\"* the|strong=\"H5922\"* other horn|strong=\"H7162\"* which|strong=\"H1768\"* came|strong=\"H5559\"* up|strong=\"H5559\"*, and|strong=\"H5308\"* before|strong=\"H6925\"* which|strong=\"H1768\"* three|strong=\"H8532\"* fell|strong=\"H5308\"*, even|strong=\"H1768\"* that|strong=\"H1768\"* horn|strong=\"H7162\"* that|strong=\"H1768\"* had|strong=\"H1768\"* eyes|strong=\"H5870\"* and|strong=\"H5308\"* a|strong=\"H3068\"* mouth|strong=\"H6433\"* that|strong=\"H1768\"* spoke|strong=\"H4449\"* arrogantly, whose|strong=\"H1768\"* look|strong=\"H2376\"* was|strong=\"H7162\"* more|strong=\"H5922\"* stout|strong=\"H7229\"* than|strong=\"H4481\"* its|strong=\"H4481\"* fellows|strong=\"H2273\"*." + }, + { + "verseNum": 21, + "text": "I saw|strong=\"H2370\"*, and|strong=\"H1934\"* the|strong=\"H5974\"* same|strong=\"H1797\"* horn|strong=\"H7162\"* made|strong=\"H5648\"* war|strong=\"H7129\"* with|strong=\"H5974\"* the|strong=\"H5974\"* saints|strong=\"H6922\"*, and|strong=\"H1934\"* prevailed|strong=\"H3202\"* against|strong=\"H5974\"* them|strong=\"H3202\"*," + }, + { + "verseNum": 22, + "text": "until|strong=\"H5705\"* the|strong=\"H1768\"* Ancient|strong=\"H6268\"* of|strong=\"H4437\"* Days|strong=\"H3118\"* came|strong=\"H4291\"*, and|strong=\"H4437\"* judgment|strong=\"H1780\"* was|strong=\"H1780\"* given|strong=\"H3052\"* to|strong=\"H5705\"* the|strong=\"H1768\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H1768\"* Most High|strong=\"H5946\"*, and|strong=\"H4437\"* the|strong=\"H1768\"* time|strong=\"H2166\"* came|strong=\"H4291\"* that|strong=\"H1768\"* the|strong=\"H1768\"* saints|strong=\"H6922\"* possessed|strong=\"H2631\"* the|strong=\"H1768\"* kingdom|strong=\"H4437\"*." + }, + { + "verseNum": 23, + "text": "“So|strong=\"H1768\"* he|strong=\"H1768\"* said, ‘The|strong=\"H3606\"* fourth|strong=\"H7244\"* animal will|strong=\"H1768\"* be|strong=\"H1934\"* a|strong=\"H3068\"* fourth|strong=\"H7244\"* kingdom|strong=\"H4437\"* on earth, which|strong=\"H1768\"* will|strong=\"H1768\"* be|strong=\"H1934\"* different|strong=\"H8133\"* from|strong=\"H4481\"* all|strong=\"H3606\"* the|strong=\"H3606\"* kingdoms|strong=\"H4437\"*, and|strong=\"H1855\"* will|strong=\"H1768\"* devour the|strong=\"H3606\"* whole|strong=\"H3606\"* earth, and|strong=\"H1855\"* will|strong=\"H1768\"* tread|strong=\"H1759\"* it|strong=\"H1934\"* down|strong=\"H1759\"* and|strong=\"H1855\"* break it|strong=\"H1934\"* in|strong=\"H8133\"* pieces|strong=\"H1855\"*." + }, + { + "verseNum": 24, + "text": "As|strong=\"H4437\"* for|strong=\"H4481\"* the|strong=\"H4481\"* ten|strong=\"H6236\"* horns|strong=\"H7162\"*, ten|strong=\"H6236\"* kings|strong=\"H4430\"* will|strong=\"H1932\"* arise|strong=\"H6966\"* out|strong=\"H6966\"* of|strong=\"H4481\"* this|strong=\"H1932\"* kingdom|strong=\"H4437\"*. Another will|strong=\"H1932\"* arise|strong=\"H6966\"* after|strong=\"H4481\"* them; and|strong=\"H4430\"* he|strong=\"H1932\"* will|strong=\"H1932\"* be different|strong=\"H8133\"* from|strong=\"H4481\"* the|strong=\"H4481\"* former, and|strong=\"H4430\"* he|strong=\"H1932\"* will|strong=\"H1932\"* put down three|strong=\"H8532\"* kings|strong=\"H4430\"*." + }, + { + "verseNum": 25, + "text": "He|strong=\"H5705\"* will|strong=\"H5732\"* speak|strong=\"H4449\"* words|strong=\"H4406\"* against|strong=\"H6655\"* the|strong=\"H5705\"* Most|strong=\"H5943\"* High|strong=\"H5943\"*, and|strong=\"H5943\"* will|strong=\"H5732\"* wear|strong=\"H1080\"* out|strong=\"H1080\"* the|strong=\"H5705\"* saints|strong=\"H6922\"* of|strong=\"H3028\"* the|strong=\"H5705\"* Most|strong=\"H5943\"* High|strong=\"H5943\"*. He|strong=\"H5705\"* will|strong=\"H5732\"* plan to|strong=\"H5705\"* change|strong=\"H8133\"* the|strong=\"H5705\"* times|strong=\"H5732\"* and|strong=\"H5943\"* the|strong=\"H5705\"* law|strong=\"H1882\"*; and|strong=\"H5943\"* they will|strong=\"H5732\"* be|strong=\"H5732\"* given|strong=\"H3052\"* into his|strong=\"H5705\"* hand|strong=\"H3028\"* until|strong=\"H5705\"* a|strong=\"H3068\"* time|strong=\"H5732\"* and|strong=\"H5943\"* times|strong=\"H5732\"* and|strong=\"H5943\"* half|strong=\"H6387\"* a|strong=\"H3068\"* time|strong=\"H5732\"*." + }, + { + "verseNum": 26, + "text": "“‘But the|strong=\"H5705\"* judgment|strong=\"H1780\"* will|strong=\"H7985\"* be|strong=\"H1780\"* set|strong=\"H3488\"*, and|strong=\"H5705\"* they will|strong=\"H7985\"* take away|strong=\"H5709\"* his|strong=\"H5709\"* dominion|strong=\"H7985\"*, to|strong=\"H5705\"* consume|strong=\"H8046\"* and|strong=\"H5705\"* to|strong=\"H5705\"* destroy it to|strong=\"H5705\"* the|strong=\"H5705\"* end|strong=\"H5491\"*." + }, + { + "verseNum": 27, + "text": "The|strong=\"H3606\"* kingdom|strong=\"H4437\"* and|strong=\"H4437\"* the|strong=\"H3606\"* dominion|strong=\"H7985\"*, and|strong=\"H4437\"* the|strong=\"H3606\"* greatness|strong=\"H7238\"* of|strong=\"H4437\"* the|strong=\"H3606\"* kingdoms|strong=\"H4437\"* under|strong=\"H8460\"* the|strong=\"H3606\"* whole|strong=\"H3606\"* sky|strong=\"H8065\"*, will|strong=\"H1768\"* be|strong=\"H5957\"* given|strong=\"H3052\"* to|strong=\"H3052\"* the|strong=\"H3606\"* people|strong=\"H5972\"* of|strong=\"H4437\"* the|strong=\"H3606\"* saints|strong=\"H6922\"* of|strong=\"H4437\"* the|strong=\"H3606\"* Most High|strong=\"H5946\"*. His|strong=\"H3606\"* kingdom|strong=\"H4437\"* is|strong=\"H1768\"* an|strong=\"H3606\"* everlasting|strong=\"H5957\"* kingdom|strong=\"H4437\"*, and|strong=\"H4437\"* all|strong=\"H3606\"* dominions|strong=\"H7985\"* will|strong=\"H1768\"* serve|strong=\"H6399\"* and|strong=\"H4437\"* obey|strong=\"H8086\"* him|strong=\"H3052\"*.’" + }, + { + "verseNum": 28, + "text": "“Here is|strong=\"H1768\"* the|strong=\"H5922\"* end|strong=\"H5491\"* of|strong=\"H5922\"* the|strong=\"H5922\"* matter|strong=\"H4406\"*. As|strong=\"H1768\"* for|strong=\"H5922\"* me|strong=\"H5922\"*, Daniel|strong=\"H1841\"*, my|strong=\"H5922\"* thoughts|strong=\"H7476\"* troubled me|strong=\"H5922\"* greatly|strong=\"H7690\"*, and|strong=\"H1841\"* my|strong=\"H5922\"* face|strong=\"H2122\"* was|strong=\"H1841\"* changed|strong=\"H8133\"* in|strong=\"H5922\"* me|strong=\"H5922\"*; but|strong=\"H1768\"* I|strong=\"H1768\"* kept|strong=\"H5202\"* the|strong=\"H5922\"* matter|strong=\"H4406\"* in|strong=\"H5922\"* my|strong=\"H5922\"* heart|strong=\"H3821\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7200\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* the|strong=\"H7200\"* reign|strong=\"H4438\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Belshazzar|strong=\"H1112\"*, a|strong=\"H3068\"* vision|strong=\"H2377\"* appeared|strong=\"H7200\"* to|strong=\"H4428\"* me|strong=\"H7200\"*, even|strong=\"H1840\"* to|strong=\"H4428\"* me|strong=\"H7200\"*, Daniel|strong=\"H1840\"*, after|strong=\"H7200\"* that|strong=\"H7200\"* which|strong=\"H4428\"* appeared|strong=\"H7200\"* to|strong=\"H4428\"* me|strong=\"H7200\"* at|strong=\"H4428\"* the|strong=\"H7200\"* first|strong=\"H8462\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*. Now|strong=\"H1961\"* it|strong=\"H5921\"* was|strong=\"H1961\"* so|strong=\"H1961\"*, that|strong=\"H7200\"* when|strong=\"H1961\"* I|strong=\"H5921\"* saw|strong=\"H7200\"*, I|strong=\"H5921\"* was|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* citadel|strong=\"H1002\"* of|strong=\"H5921\"* Susa|strong=\"H7800\"*, which|strong=\"H4082\"* is|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* province|strong=\"H4082\"* of|strong=\"H5921\"* Elam|strong=\"H5867\"*. I|strong=\"H5921\"* saw|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, and|strong=\"H7200\"* I|strong=\"H5921\"* was|strong=\"H1961\"* by|strong=\"H5921\"* the|strong=\"H5921\"* river Ulai." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5927\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* ram which|strong=\"H5869\"* had|strong=\"H5869\"* two|strong=\"H8145\"* horns|strong=\"H7161\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* river. The|strong=\"H6440\"* two|strong=\"H8145\"* horns|strong=\"H7161\"* were|strong=\"H5869\"* high|strong=\"H1364\"*, but|strong=\"H7200\"* one|strong=\"H4480\"* was|strong=\"H7161\"* higher|strong=\"H1364\"* than|strong=\"H4480\"* the|strong=\"H6440\"* other|strong=\"H8145\"*, and|strong=\"H5869\"* the|strong=\"H6440\"* higher|strong=\"H1364\"* came|strong=\"H5927\"* up|strong=\"H5927\"* last|strong=\"H5975\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* ram pushing|strong=\"H5055\"* westward|strong=\"H3220\"*, northward|strong=\"H6828\"*, and|strong=\"H3027\"* southward|strong=\"H5045\"*. No|strong=\"H3808\"* animals|strong=\"H2416\"* could|strong=\"H5337\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. There|strong=\"H5975\"* wasn’t any|strong=\"H3605\"* who|strong=\"H3605\"* could|strong=\"H5337\"* deliver|strong=\"H5337\"* out|strong=\"H7200\"* of|strong=\"H3027\"* his|strong=\"H3605\"* hand|strong=\"H3027\"*, but|strong=\"H3808\"* he|strong=\"H6213\"* did|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H6213\"* his|strong=\"H3605\"* will|strong=\"H7522\"*, and|strong=\"H3027\"* magnified|strong=\"H1431\"* himself|strong=\"H3027\"*." + }, + { + "verseNum": 5, + "text": "As|strong=\"H1961\"* I|strong=\"H2009\"* was|strong=\"H1961\"* considering, behold|strong=\"H2009\"*, a|strong=\"H3068\"* male|strong=\"H6842\"* goat|strong=\"H5795\"* came|strong=\"H1961\"* from|strong=\"H4480\"* the|strong=\"H3605\"* west|strong=\"H4628\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth, and|strong=\"H5869\"* didn’t touch|strong=\"H5060\"* the|strong=\"H3605\"* ground|strong=\"H6440\"*. The|strong=\"H3605\"* goat|strong=\"H5795\"* had|strong=\"H1961\"* a|strong=\"H3068\"* notable|strong=\"H2380\"* horn|strong=\"H7161\"* between|strong=\"H5921\"* his|strong=\"H3605\"* eyes|strong=\"H5869\"*." + }, + { + "verseNum": 6, + "text": "He|strong=\"H5704\"* came to|strong=\"H5704\"* the|strong=\"H6440\"* ram that|strong=\"H7200\"* had|strong=\"H1167\"* the|strong=\"H6440\"* two horns|strong=\"H7161\"*, which|strong=\"H7161\"* I|strong=\"H5704\"* saw|strong=\"H7200\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* river|strong=\"H5704\"*, and|strong=\"H6440\"* ran|strong=\"H7323\"* on|strong=\"H7200\"* him|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H6440\"* fury|strong=\"H2534\"* of|strong=\"H6440\"* his|strong=\"H6440\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* him|strong=\"H6440\"* come|strong=\"H1961\"* close|strong=\"H5060\"* to|strong=\"H1961\"* the|strong=\"H6440\"* ram, and|strong=\"H3027\"* he|strong=\"H8147\"* was|strong=\"H1961\"* moved with|strong=\"H6440\"* anger|strong=\"H6440\"* against|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H3027\"* struck|strong=\"H5221\"* the|strong=\"H6440\"* ram, and|strong=\"H3027\"* broke|strong=\"H7665\"* his|strong=\"H6440\"* two|strong=\"H8147\"* horns|strong=\"H7161\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* power|strong=\"H3027\"* in|strong=\"H6440\"* the|strong=\"H6440\"* ram to|strong=\"H1961\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*; but|strong=\"H3808\"* he|strong=\"H8147\"* cast|strong=\"H7993\"* him|strong=\"H6440\"* down|strong=\"H5221\"* to|strong=\"H1961\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* and|strong=\"H3027\"* trampled|strong=\"H7429\"* on|strong=\"H7200\"* him|strong=\"H6440\"*. There|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H5975\"* could|strong=\"H5337\"* deliver|strong=\"H5337\"* the|strong=\"H6440\"* ram out|strong=\"H7993\"* of|strong=\"H3027\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5704\"* male|strong=\"H6842\"* goat|strong=\"H5795\"* magnified|strong=\"H1431\"* himself|strong=\"H1431\"* exceedingly|strong=\"H3966\"*. When|strong=\"H5704\"* he|strong=\"H5704\"* was|strong=\"H7307\"* strong|strong=\"H6105\"*, the|strong=\"H5704\"* great|strong=\"H1419\"* horn|strong=\"H7161\"* was|strong=\"H7307\"* broken|strong=\"H7665\"*; and|strong=\"H8064\"* instead|strong=\"H8478\"* of|strong=\"H7307\"* it|strong=\"H5927\"* there|strong=\"H5927\"* came|strong=\"H5927\"* up|strong=\"H5927\"* four notable|strong=\"H2380\"* horns|strong=\"H7161\"* toward|strong=\"H5927\"* the|strong=\"H5704\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H5704\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 9, + "text": "Out|strong=\"H3318\"* of|strong=\"H4480\"* one|strong=\"H4480\"* of|strong=\"H4480\"* them|strong=\"H1992\"* came|strong=\"H3318\"* out|strong=\"H3318\"* a|strong=\"H3068\"* little|strong=\"H4704\"* horn|strong=\"H7161\"* which|strong=\"H1992\"* grew|strong=\"H1431\"* exceedingly|strong=\"H3499\"* great|strong=\"H1431\"*—toward|strong=\"H4480\"* the|strong=\"H4480\"* south|strong=\"H5045\"*, and|strong=\"H3318\"* toward|strong=\"H4480\"* the|strong=\"H4480\"* east|strong=\"H4217\"*, and|strong=\"H3318\"* toward|strong=\"H4480\"* the|strong=\"H4480\"* glorious|strong=\"H6643\"* land." + }, + { + "verseNum": 10, + "text": "It|strong=\"H5704\"* grew|strong=\"H1431\"* great|strong=\"H1431\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H4480\"* army|strong=\"H6635\"* of|strong=\"H4480\"* the|strong=\"H4480\"* sky|strong=\"H8064\"*; and|strong=\"H8064\"* it|strong=\"H5704\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* some|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H4480\"* army|strong=\"H6635\"* and|strong=\"H8064\"* of|strong=\"H4480\"* the|strong=\"H4480\"* stars|strong=\"H3556\"* to|strong=\"H5704\"* the|strong=\"H4480\"* ground and|strong=\"H8064\"* trampled|strong=\"H7429\"* on|strong=\"H5307\"* them|strong=\"H5307\"*." + }, + { + "verseNum": 11, + "text": "Yes, it|strong=\"H7993\"* magnified|strong=\"H1431\"* itself|strong=\"H1431\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H4480\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* the|strong=\"H4480\"* army|strong=\"H6635\"*; and|strong=\"H8269\"* it|strong=\"H7993\"* took|strong=\"H7311\"* away|strong=\"H7993\"* from|strong=\"H4480\"* him|strong=\"H4480\"* the|strong=\"H4480\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H4480\"*, and|strong=\"H8269\"* the|strong=\"H4480\"* place|strong=\"H4349\"* of|strong=\"H8269\"* his|strong=\"H4480\"* sanctuary|strong=\"H4720\"* was|strong=\"H6635\"* cast|strong=\"H7993\"* down|strong=\"H7993\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5921\"* army|strong=\"H6635\"* was|strong=\"H6635\"* given|strong=\"H5414\"* over|strong=\"H5921\"* to|strong=\"H5921\"* it|strong=\"H5414\"* together|strong=\"H5921\"* with|strong=\"H6213\"* the|strong=\"H5921\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H6213\"* through|strong=\"H5921\"* disobedience. It|strong=\"H5414\"* cast|strong=\"H7993\"* down|strong=\"H7993\"* truth to|strong=\"H5921\"* the|strong=\"H5921\"* ground, and|strong=\"H6213\"* it|strong=\"H5414\"* did|strong=\"H6213\"* its|strong=\"H5414\"* pleasure and|strong=\"H6213\"* prospered|strong=\"H6743\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H1696\"* I|strong=\"H5414\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* holy|strong=\"H6944\"* one|strong=\"H6918\"* speaking|strong=\"H1696\"*; and|strong=\"H8085\"* another holy|strong=\"H6944\"* one|strong=\"H6918\"* said|strong=\"H1696\"* to|strong=\"H1696\"* that|strong=\"H8085\"* certain|strong=\"H6422\"* one|strong=\"H6918\"* who|strong=\"H6635\"* spoke|strong=\"H1696\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H6635\"* the|strong=\"H8085\"* vision|strong=\"H2377\"* about|strong=\"H8085\"* the|strong=\"H8085\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering, and|strong=\"H8085\"* the|strong=\"H8085\"* disobedience that|strong=\"H8085\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"*, to|strong=\"H1696\"* give|strong=\"H5414\"* both the|strong=\"H8085\"* sanctuary|strong=\"H6944\"* and|strong=\"H8085\"* the|strong=\"H8085\"* army|strong=\"H6635\"* to|strong=\"H1696\"* be|strong=\"H5414\"* trodden|strong=\"H4823\"* under|strong=\"H5414\"* foot|strong=\"H4823\"* be|strong=\"H5414\"*?”" + }, + { + "verseNum": 14, + "text": "He|strong=\"H5704\"* said to|strong=\"H5704\"* me|strong=\"H6153\"*, “To|strong=\"H5704\"* two|strong=\"H3967\"* thousand and|strong=\"H3967\"* three|strong=\"H7969\"* hundred|strong=\"H3967\"* evenings|strong=\"H6153\"* and|strong=\"H3967\"* mornings|strong=\"H1242\"*. Then the|strong=\"H5704\"* sanctuary|strong=\"H6944\"* will|strong=\"H5704\"* be|strong=\"H6944\"* cleansed|strong=\"H6663\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1961\"* I|strong=\"H2009\"*, even|strong=\"H1840\"* I|strong=\"H2009\"* Daniel|strong=\"H1840\"*, had|strong=\"H1961\"* seen|strong=\"H7200\"* the|strong=\"H7200\"* vision|strong=\"H2377\"*, I|strong=\"H2009\"* sought|strong=\"H1245\"* to|strong=\"H1961\"* understand|strong=\"H7200\"* it|strong=\"H7200\"*. Then|strong=\"H1961\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* stood|strong=\"H5975\"* before|strong=\"H5048\"* me|strong=\"H7200\"* someone with|strong=\"H1961\"* the|strong=\"H7200\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* man|strong=\"H1397\"*." + }, + { + "verseNum": 16, + "text": "I|strong=\"H8085\"* heard|strong=\"H8085\"* a|strong=\"H3068\"* man’s voice|strong=\"H6963\"* between|strong=\"H6963\"* the|strong=\"H8085\"* banks of|strong=\"H6963\"* the|strong=\"H8085\"* Ulai, which|strong=\"H8085\"* called|strong=\"H7121\"* and|strong=\"H6963\"* said|strong=\"H7121\"*, “Gabriel|strong=\"H1403\"*, make|strong=\"H8085\"* this|strong=\"H1975\"* man understand|strong=\"H8085\"* the|strong=\"H8085\"* vision|strong=\"H4758\"*.”" + }, + { + "verseNum": 17, + "text": "So|strong=\"H5975\"* he|strong=\"H3588\"* came|strong=\"H5307\"* near|strong=\"H6440\"* where|strong=\"H5921\"* I|strong=\"H3588\"* stood|strong=\"H5975\"*; and|strong=\"H1121\"* when|strong=\"H3588\"* he|strong=\"H3588\"* came|strong=\"H5307\"*, I|strong=\"H3588\"* was|strong=\"H1121\"* frightened|strong=\"H1204\"*, and|strong=\"H1121\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* my|strong=\"H5921\"* face|strong=\"H6440\"*; but|strong=\"H3588\"* he|strong=\"H3588\"* said to|strong=\"H5921\"* me|strong=\"H6440\"*, “Understand, son|strong=\"H1121\"* of|strong=\"H1121\"* man|strong=\"H1121\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* vision|strong=\"H2377\"* belongs to|strong=\"H5921\"* the|strong=\"H6440\"* time|strong=\"H6256\"* of|strong=\"H1121\"* the|strong=\"H6440\"* end|strong=\"H7093\"*.”" + }, + { + "verseNum": 18, + "text": "Now|strong=\"H1696\"* as|strong=\"H6440\"* he|strong=\"H5921\"* was|strong=\"H6440\"* speaking|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H6440\"*, I|strong=\"H5921\"* fell|strong=\"H7290\"* into|strong=\"H5921\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"* with|strong=\"H5973\"* my|strong=\"H5921\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*; but|strong=\"H1696\"* he|strong=\"H5921\"* touched|strong=\"H5060\"* me|strong=\"H6440\"* and|strong=\"H6440\"* set|strong=\"H5975\"* me|strong=\"H6440\"* upright|strong=\"H5975\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said, “Behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H1961\"* make|strong=\"H3045\"* you|strong=\"H3588\"* know|strong=\"H3045\"* what|strong=\"H3045\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* the|strong=\"H3588\"* latter time|strong=\"H4150\"* of|strong=\"H7093\"* the|strong=\"H3588\"* indignation|strong=\"H2195\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* belongs|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H3588\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"* of|strong=\"H7093\"* the|strong=\"H3588\"* end|strong=\"H7093\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H7200\"* ram which|strong=\"H7161\"* you|strong=\"H7200\"* saw|strong=\"H7200\"*, that|strong=\"H7200\"* had|strong=\"H4428\"* the|strong=\"H7200\"* two horns|strong=\"H7161\"*, they|strong=\"H1167\"* are|strong=\"H4428\"* the|strong=\"H7200\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Media|strong=\"H4074\"* and|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H5869\"* rough|strong=\"H8163\"* male|strong=\"H8163\"* goat|strong=\"H8163\"* is|strong=\"H1931\"* the|strong=\"H5869\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Greece|strong=\"H3120\"*. The|strong=\"H5869\"* great|strong=\"H1419\"* horn|strong=\"H7161\"* that|strong=\"H1931\"* is|strong=\"H1931\"* between his|strong=\"H4428\"* eyes|strong=\"H5869\"* is|strong=\"H1931\"* the|strong=\"H5869\"* first|strong=\"H7223\"* king|strong=\"H4428\"*." + }, + { + "verseNum": 22, + "text": "As|strong=\"H8478\"* for|strong=\"H8478\"* that|strong=\"H1471\"* which|strong=\"H1471\"* was|strong=\"H4438\"* broken|strong=\"H7665\"*, in|strong=\"H5975\"* the|strong=\"H8478\"* place|strong=\"H8478\"* where|strong=\"H8478\"* four stood|strong=\"H5975\"* up|strong=\"H5975\"*, four kingdoms|strong=\"H4438\"* will|strong=\"H1471\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* out|strong=\"H1471\"* of|strong=\"H4438\"* the|strong=\"H8478\"* nation|strong=\"H1471\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* with|strong=\"H5975\"* his|strong=\"H8478\"* power|strong=\"H3581\"*." + }, + { + "verseNum": 23, + "text": "“In|strong=\"H4428\"* the|strong=\"H6440\"* latter time|strong=\"H6440\"* of|strong=\"H4428\"* their|strong=\"H6440\"* kingdom|strong=\"H4438\"*, when|strong=\"H5975\"* the|strong=\"H6440\"* transgressors|strong=\"H6586\"* have|strong=\"H4428\"* come|strong=\"H8552\"* to|strong=\"H6440\"* the|strong=\"H6440\"* full|strong=\"H8552\"*, a|strong=\"H3068\"* king|strong=\"H4428\"* of|strong=\"H4428\"* fierce|strong=\"H5794\"* face|strong=\"H6440\"*, and|strong=\"H4428\"* understanding|strong=\"H6440\"* riddles|strong=\"H2420\"*, will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*." + }, + { + "verseNum": 24, + "text": "His|strong=\"H6213\"* power|strong=\"H3581\"* will|strong=\"H5971\"* be|strong=\"H3808\"* mighty|strong=\"H6099\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H3808\"* his|strong=\"H6213\"* own|strong=\"H5971\"* power|strong=\"H3581\"*. He|strong=\"H6213\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* awesomely, and|strong=\"H5971\"* will|strong=\"H5971\"* prosper|strong=\"H6743\"* in|strong=\"H6213\"* what|strong=\"H6213\"* he|strong=\"H6213\"* does|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* the|strong=\"H6213\"* mighty|strong=\"H6099\"* ones|strong=\"H6918\"* and|strong=\"H5971\"* the|strong=\"H6213\"* holy|strong=\"H6918\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 25, + "text": "Through|strong=\"H3027\"* his|strong=\"H5921\"* policy|strong=\"H7922\"* he|strong=\"H3027\"* will|strong=\"H3027\"* cause deceit|strong=\"H4820\"* to|strong=\"H5921\"* prosper|strong=\"H6743\"* in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*. He|strong=\"H3027\"* will|strong=\"H3027\"* magnify|strong=\"H1431\"* himself|strong=\"H3027\"* in|strong=\"H5921\"* his|strong=\"H5921\"* heart|strong=\"H3824\"*, and|strong=\"H3027\"* he|strong=\"H3027\"* will|strong=\"H3027\"* destroy|strong=\"H7843\"* many|strong=\"H7227\"* in|strong=\"H5921\"* their|strong=\"H5921\"* security. He|strong=\"H3027\"* will|strong=\"H3027\"* also|strong=\"H3027\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* against|strong=\"H5921\"* the|strong=\"H5921\"* prince|strong=\"H8269\"* of|strong=\"H3027\"* princes|strong=\"H8269\"*, but|strong=\"H5921\"* he|strong=\"H3027\"* will|strong=\"H3027\"* be|strong=\"H3027\"* broken|strong=\"H7665\"* without|strong=\"H7665\"* human|strong=\"H3027\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 26, + "text": "“The|strong=\"H3588\"* vision|strong=\"H2377\"* of|strong=\"H3117\"* the|strong=\"H3588\"* evenings|strong=\"H6153\"* and|strong=\"H3117\"* mornings|strong=\"H1242\"* which|strong=\"H1931\"* has|strong=\"H3117\"* been told is|strong=\"H1931\"* true; but|strong=\"H3588\"* seal up|strong=\"H5640\"* the|strong=\"H3588\"* vision|strong=\"H2377\"*, for|strong=\"H3588\"* it|strong=\"H1931\"* belongs to|strong=\"H3117\"* many|strong=\"H7227\"* days|strong=\"H3117\"* to|strong=\"H3117\"* come.”" + }, + { + "verseNum": 27, + "text": "I|strong=\"H3117\"*, Daniel|strong=\"H1840\"*, fainted|strong=\"H1961\"*, and|strong=\"H6965\"* was|strong=\"H1961\"* sick|strong=\"H2470\"* for|strong=\"H5921\"* some|strong=\"H3117\"* days|strong=\"H3117\"*. Then|strong=\"H1961\"* I|strong=\"H3117\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* and|strong=\"H6965\"* did|strong=\"H6213\"* the|strong=\"H5921\"* king|strong=\"H4428\"*’s business|strong=\"H4399\"*. I|strong=\"H3117\"* wondered|strong=\"H8074\"* at|strong=\"H5921\"* the|strong=\"H5921\"* vision|strong=\"H4758\"*, but|strong=\"H1961\"* no|strong=\"H6213\"* one|strong=\"H1961\"* understood it|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* first|strong=\"H1121\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"* the|strong=\"H5921\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Ahasuerus, of|strong=\"H1121\"* the|strong=\"H5921\"* offspring|strong=\"H2233\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Medes|strong=\"H4074\"*, who|strong=\"H1121\"* was|strong=\"H1121\"* made|strong=\"H4427\"* king|strong=\"H4427\"* over|strong=\"H5921\"* the|strong=\"H5921\"* realm|strong=\"H4438\"* of|strong=\"H1121\"* the|strong=\"H5921\"* Chaldeans|strong=\"H3778\"*—" + }, + { + "verseNum": 2, + "text": "in|strong=\"H8141\"* the|strong=\"H3068\"* first year|strong=\"H8141\"* of|strong=\"H3068\"* his|strong=\"H3068\"* reign|strong=\"H4427\"* I|strong=\"H1697\"*, Daniel|strong=\"H1840\"*, understood by|strong=\"H8141\"* the|strong=\"H3068\"* books|strong=\"H5612\"* the|strong=\"H3068\"* number|strong=\"H4557\"* of|strong=\"H3068\"* the|strong=\"H3068\"* years|strong=\"H8141\"* about|strong=\"H1961\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s+ 9:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations. * word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jeremiah|strong=\"H3414\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* for|strong=\"H3068\"* the|strong=\"H3068\"* accomplishing of|strong=\"H3068\"* the|strong=\"H3068\"* desolations|strong=\"H2723\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H3068\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* to|strong=\"H5414\"* the|strong=\"H6440\"* Lord God|strong=\"H5414\"*, to|strong=\"H5414\"* seek|strong=\"H1245\"* by|strong=\"H5414\"* prayer|strong=\"H8605\"* and|strong=\"H6440\"* petitions, with|strong=\"H6440\"* fasting|strong=\"H6685\"* and|strong=\"H6440\"* sackcloth|strong=\"H8242\"* and|strong=\"H6440\"* ashes." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* prayed|strong=\"H6419\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* my|strong=\"H8104\"* God|strong=\"H3068\"*, and|strong=\"H3068\"* made|strong=\"H6419\"* confession|strong=\"H3034\"*, and|strong=\"H3068\"* said," + }, + { + "verseNum": 5, + "text": "we|strong=\"H3068\"* have sinned|strong=\"H2398\"*, and|strong=\"H4941\"* have dealt perversely|strong=\"H5753\"*, and|strong=\"H4941\"* have done|strong=\"H2398\"* wickedly|strong=\"H7561\"*, and|strong=\"H4941\"* have rebelled|strong=\"H4775\"*, even turning|strong=\"H5493\"* aside|strong=\"H5493\"* from|strong=\"H5493\"* your|strong=\"H5493\"* precepts|strong=\"H4687\"* and|strong=\"H4941\"* from|strong=\"H5493\"* your|strong=\"H5493\"* ordinances|strong=\"H4941\"*." + }, + { + "verseNum": 6, + "text": "We|strong=\"H8085\"* haven’t listened|strong=\"H8085\"* to|strong=\"H1696\"* your|strong=\"H3605\"* servants|strong=\"H5650\"* the|strong=\"H3605\"* prophets|strong=\"H5030\"*, who|strong=\"H3605\"* spoke|strong=\"H1696\"* in|strong=\"H4428\"* your|strong=\"H3605\"* name|strong=\"H8034\"* to|strong=\"H1696\"* our|strong=\"H3605\"* kings|strong=\"H4428\"*, our|strong=\"H3605\"* princes|strong=\"H8269\"*, and|strong=\"H4428\"* our|strong=\"H3605\"* fathers, and|strong=\"H4428\"* to|strong=\"H1696\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H4428\"* the|strong=\"H3605\"* land." + }, + { + "verseNum": 7, + "text": "“Lord, righteousness|strong=\"H6666\"* belongs to|strong=\"H3478\"* you|strong=\"H6440\"*, but|strong=\"H3605\"* to|strong=\"H3478\"* us|strong=\"H6440\"* confusion|strong=\"H1322\"* of|strong=\"H3117\"* face|strong=\"H6440\"*, as|strong=\"H3117\"* it|strong=\"H8033\"* is|strong=\"H2088\"* today|strong=\"H3117\"*; to|strong=\"H3478\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H3117\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, and|strong=\"H3063\"* to|strong=\"H3478\"* all|strong=\"H3605\"* Israel|strong=\"H3478\"*, who|strong=\"H3605\"* are|strong=\"H3117\"* near|strong=\"H7138\"* and|strong=\"H3063\"* who|strong=\"H3605\"* are|strong=\"H3117\"* far|strong=\"H7350\"* off|strong=\"H7350\"*, through|strong=\"H3605\"* all|strong=\"H3605\"* the|strong=\"H3605\"* countries where|strong=\"H8033\"* you|strong=\"H6440\"* have|strong=\"H3478\"* driven|strong=\"H5080\"* them|strong=\"H6440\"*, because|strong=\"H6440\"* of|strong=\"H3117\"* their|strong=\"H3605\"* trespass|strong=\"H4604\"* that|strong=\"H3605\"* they|strong=\"H3117\"* have|strong=\"H3478\"* trespassed|strong=\"H4603\"* against|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 8, + "text": "Lord|strong=\"H3068\"*, to|strong=\"H3068\"* us|strong=\"H6440\"* belongs confusion|strong=\"H1322\"* of|strong=\"H4428\"* face|strong=\"H6440\"*, to|strong=\"H3068\"* our|strong=\"H3068\"* kings|strong=\"H4428\"*, to|strong=\"H3068\"* our|strong=\"H3068\"* princes|strong=\"H8269\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* our|strong=\"H3068\"* fathers, because|strong=\"H6440\"* we|strong=\"H3068\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H6440\"* you|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "To|strong=\"H3588\"* the|strong=\"H3588\"* Lord our|strong=\"H3588\"* God belong mercies|strong=\"H7356\"* and|strong=\"H7356\"* forgiveness|strong=\"H5547\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3588\"* rebelled|strong=\"H4775\"* against|strong=\"H4775\"* him|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "We|strong=\"H8085\"* haven’t obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*, to|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* his|strong=\"H5414\"* laws|strong=\"H8451\"*, which|strong=\"H3068\"* he|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* us|strong=\"H5414\"* by|strong=\"H3027\"* his|strong=\"H5414\"* servants|strong=\"H5650\"* the|strong=\"H6440\"* prophets|strong=\"H5030\"*." + }, + { + "verseNum": 11, + "text": "Yes|strong=\"H3588\"*, all|strong=\"H3605\"* Israel|strong=\"H3478\"* have|strong=\"H5650\"* transgressed|strong=\"H5674\"* your|strong=\"H3605\"* law|strong=\"H8451\"*, turning|strong=\"H5493\"* aside|strong=\"H5493\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* should|strong=\"H3588\"* not|strong=\"H1115\"* obey|strong=\"H8085\"* your|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H6213\"* has|strong=\"H1697\"* confirmed|strong=\"H6965\"* his|strong=\"H3605\"* words|strong=\"H1697\"*, which|strong=\"H1697\"* he|strong=\"H6213\"* spoke|strong=\"H1696\"* against|strong=\"H5921\"* us|strong=\"H5921\"* and|strong=\"H6965\"* against|strong=\"H5921\"* our|strong=\"H3605\"* judges|strong=\"H8199\"* who|strong=\"H3605\"* judged|strong=\"H8199\"* us|strong=\"H5921\"*, by|strong=\"H5921\"* bringing on|strong=\"H5921\"* us|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* evil|strong=\"H7451\"*; for|strong=\"H5921\"* under|strong=\"H8478\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* sky|strong=\"H8064\"*, such|strong=\"H1696\"* has|strong=\"H1697\"* not|strong=\"H3808\"* been|strong=\"H3808\"* done|strong=\"H6213\"* as|strong=\"H1697\"* has|strong=\"H1697\"* been|strong=\"H3808\"* done|strong=\"H6213\"* to|strong=\"H1696\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 13, + "text": "As|strong=\"H3068\"* it|strong=\"H5921\"* is|strong=\"H3068\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* law|strong=\"H8451\"* of|strong=\"H3068\"* Moses|strong=\"H4872\"*, all|strong=\"H3605\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* has|strong=\"H3068\"* come|strong=\"H7725\"* on|strong=\"H5921\"* us|strong=\"H7725\"*. Yet|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* entreated|strong=\"H2470\"* the|strong=\"H3605\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"*, that|strong=\"H3605\"* we|strong=\"H3068\"* should|strong=\"H3068\"* turn|strong=\"H7725\"* from|strong=\"H7725\"* our|strong=\"H3068\"* iniquities|strong=\"H5771\"* and|strong=\"H4872\"* have|strong=\"H3068\"* discernment|strong=\"H7919\"* in|strong=\"H5921\"* your|strong=\"H3068\"* truth|strong=\"H3808\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* watched|strong=\"H8245\"* over|strong=\"H5921\"* the|strong=\"H3605\"* evil|strong=\"H7451\"*, and|strong=\"H3068\"* brought|strong=\"H6213\"* it|strong=\"H5921\"* on|strong=\"H5921\"* us|strong=\"H5921\"*; for|strong=\"H3588\"* Yahweh|strong=\"H3068\"* our|strong=\"H3068\"* God|strong=\"H3068\"* is|strong=\"H3068\"* righteous|strong=\"H6662\"* in|strong=\"H5921\"* all|strong=\"H3605\"* his|strong=\"H3605\"* works|strong=\"H4639\"* which|strong=\"H3068\"* he|strong=\"H3588\"* does|strong=\"H6213\"*, and|strong=\"H3068\"* we|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* obeyed|strong=\"H8085\"* his|strong=\"H3605\"* voice|strong=\"H6963\"*." + }, + { + "verseNum": 15, + "text": "“Now|strong=\"H6258\"*, Lord our|strong=\"H3318\"* God|strong=\"H3027\"*, who|strong=\"H5971\"* has|strong=\"H3117\"* brought|strong=\"H3318\"* your|strong=\"H6213\"* people|strong=\"H5971\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H6213\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"* with|strong=\"H6213\"* a|strong=\"H3068\"* mighty|strong=\"H2389\"* hand|strong=\"H3027\"*, and|strong=\"H3117\"* have|strong=\"H5971\"* gotten|strong=\"H6213\"* yourself|strong=\"H6213\"* renown|strong=\"H8034\"*, as|strong=\"H3117\"* it|strong=\"H6213\"* is|strong=\"H2088\"* today|strong=\"H3117\"*, we|strong=\"H3068\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"*. We|strong=\"H3117\"* have|strong=\"H5971\"* done|strong=\"H6213\"* wickedly|strong=\"H7561\"*." + }, + { + "verseNum": 16, + "text": "Lord, according to|strong=\"H7725\"* all|strong=\"H3605\"* your|strong=\"H3605\"* righteousness|strong=\"H6666\"*, please|strong=\"H4994\"* let|strong=\"H4994\"* your|strong=\"H3605\"* anger|strong=\"H2534\"* and|strong=\"H7725\"* your|strong=\"H3605\"* wrath|strong=\"H2534\"* be|strong=\"H4994\"* turned|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* your|strong=\"H3605\"* city|strong=\"H5892\"* Jerusalem|strong=\"H3389\"*, your|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*; because|strong=\"H3588\"* for|strong=\"H3588\"* our|strong=\"H3605\"* sins|strong=\"H2399\"* and|strong=\"H7725\"* for|strong=\"H3588\"* the|strong=\"H3605\"* iniquities|strong=\"H5771\"* of|strong=\"H5892\"* our|strong=\"H3605\"* fathers, Jerusalem|strong=\"H3389\"* and|strong=\"H7725\"* your|strong=\"H3605\"* people|strong=\"H5971\"* have|strong=\"H5971\"* become|strong=\"H7725\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H7725\"* all|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H5971\"* around|strong=\"H5439\"* us|strong=\"H4994\"*." + }, + { + "verseNum": 17, + "text": "“Now|strong=\"H6258\"* therefore|strong=\"H5921\"*, our|strong=\"H5921\"* God, listen|strong=\"H8085\"* to|strong=\"H5921\"* the|strong=\"H6440\"* prayer|strong=\"H8605\"* of|strong=\"H6440\"* your|strong=\"H5921\"* servant|strong=\"H5650\"* and|strong=\"H5650\"* to|strong=\"H5921\"* his|strong=\"H8085\"* petitions, and|strong=\"H5650\"* cause your|strong=\"H5921\"* face|strong=\"H6440\"* to|strong=\"H5921\"* shine on|strong=\"H5921\"* your|strong=\"H5921\"* sanctuary|strong=\"H4720\"* that|strong=\"H8085\"* is|strong=\"H5650\"* desolate|strong=\"H8076\"*, for|strong=\"H5921\"* the|strong=\"H6440\"* Lord’s sake|strong=\"H4616\"*." + }, + { + "verseNum": 18, + "text": "My|strong=\"H8085\"* God|strong=\"H3808\"*, turn|strong=\"H5186\"* your|strong=\"H5921\"* ear|strong=\"H8085\"* and|strong=\"H5892\"* hear|strong=\"H8085\"*. Open|strong=\"H6440\"* your|strong=\"H5921\"* eyes|strong=\"H5869\"* and|strong=\"H5892\"* see|strong=\"H7200\"* our|strong=\"H7200\"* desolations|strong=\"H8077\"*, and|strong=\"H5892\"* the|strong=\"H6440\"* city|strong=\"H5892\"* which|strong=\"H5869\"* is|strong=\"H8034\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* do|strong=\"H5869\"* not|strong=\"H3808\"* present|strong=\"H5307\"* our|strong=\"H7200\"* petitions before|strong=\"H6440\"* you|strong=\"H3588\"* for|strong=\"H3588\"* our|strong=\"H7200\"* righteousness|strong=\"H6666\"*, but|strong=\"H3588\"* for|strong=\"H3588\"* your|strong=\"H5921\"* great|strong=\"H7227\"* mercies|strong=\"H7356\"*’ sake|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Lord, hear|strong=\"H8085\"*. Lord, forgive|strong=\"H5545\"*. Lord, listen|strong=\"H8085\"* and|strong=\"H5971\"* do|strong=\"H6213\"*. Don’t defer, for|strong=\"H3588\"* your|strong=\"H5921\"* own|strong=\"H5971\"* sake|strong=\"H4616\"*, my|strong=\"H8085\"* God, because|strong=\"H3588\"* your|strong=\"H5921\"* city|strong=\"H5892\"* and|strong=\"H5971\"* your|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H5971\"* called|strong=\"H7121\"* by|strong=\"H5921\"* your|strong=\"H5921\"* name|strong=\"H8034\"*.”" + }, + { + "verseNum": 20, + "text": "While|strong=\"H5750\"* I|strong=\"H5921\"* was|strong=\"H3068\"* speaking|strong=\"H1696\"*, praying|strong=\"H6419\"*, and|strong=\"H3478\"* confessing|strong=\"H3034\"* my|strong=\"H3068\"* sin|strong=\"H2403\"* and|strong=\"H3478\"* the|strong=\"H6440\"* sin|strong=\"H2403\"* of|strong=\"H3068\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* presenting|strong=\"H5307\"* my|strong=\"H3068\"* supplication|strong=\"H8467\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* for|strong=\"H5921\"* the|strong=\"H6440\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*—" + }, + { + "verseNum": 21, + "text": "yes|strong=\"H7200\"*, while|strong=\"H5750\"* I|strong=\"H7200\"* was|strong=\"H4503\"* speaking|strong=\"H1696\"* in|strong=\"H1696\"* prayer|strong=\"H8605\"*—the|strong=\"H7200\"* man|strong=\"H7200\"* Gabriel|strong=\"H1403\"*, whom I|strong=\"H7200\"* had|strong=\"H5750\"* seen|strong=\"H7200\"* in|strong=\"H1696\"* the|strong=\"H7200\"* vision|strong=\"H2377\"* at|strong=\"H7200\"* the|strong=\"H7200\"* beginning|strong=\"H8462\"*, being|strong=\"H5750\"* caused to|strong=\"H1696\"* fly|strong=\"H3286\"* swiftly|strong=\"H3288\"*, touched|strong=\"H5060\"* me|strong=\"H7200\"* about|strong=\"H6256\"* the|strong=\"H7200\"* time|strong=\"H6256\"* of|strong=\"H6256\"* the|strong=\"H7200\"* evening|strong=\"H6153\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 22, + "text": "He|strong=\"H1696\"* instructed|strong=\"H1696\"* me|strong=\"H3318\"* and|strong=\"H3318\"* talked|strong=\"H1696\"* with|strong=\"H5973\"* me|strong=\"H3318\"*, and|strong=\"H3318\"* said|strong=\"H1696\"*, “Daniel|strong=\"H1840\"*, I|strong=\"H6258\"* have|strong=\"H7919\"* now|strong=\"H6258\"* come|strong=\"H3318\"* to|strong=\"H1696\"* give|strong=\"H1696\"* you|strong=\"H5973\"* wisdom|strong=\"H7919\"* and|strong=\"H3318\"* understanding|strong=\"H7919\"*." + }, + { + "verseNum": 23, + "text": "At|strong=\"H3318\"* the|strong=\"H3588\"* beginning|strong=\"H8462\"* of|strong=\"H1697\"* your|strong=\"H3588\"* petitions the|strong=\"H3588\"* commandment|strong=\"H1697\"* went|strong=\"H3318\"* out|strong=\"H3318\"*, and|strong=\"H1697\"* I|strong=\"H3588\"* have|strong=\"H1697\"* come|strong=\"H3318\"* to|strong=\"H3318\"* tell|strong=\"H5046\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* greatly beloved. Therefore|strong=\"H3588\"* consider the|strong=\"H3588\"* matter|strong=\"H1697\"* and|strong=\"H1697\"* understand the|strong=\"H3588\"* vision|strong=\"H4758\"*." + }, + { + "verseNum": 24, + "text": "“Seventy|strong=\"H7657\"* weeks|strong=\"H7620\"* are|strong=\"H5971\"* decreed|strong=\"H2852\"* on|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"* and|strong=\"H5971\"* on|strong=\"H5921\"* your|strong=\"H5921\"* holy|strong=\"H6944\"* city|strong=\"H5892\"*, to|strong=\"H5921\"* finish|strong=\"H3607\"* disobedience, to|strong=\"H5921\"* make|strong=\"H3722\"* an|strong=\"H5892\"* end of|strong=\"H5892\"* sins|strong=\"H2403\"*, to|strong=\"H5921\"* make|strong=\"H3722\"* reconciliation|strong=\"H3722\"* for|strong=\"H5921\"* iniquity|strong=\"H5771\"*, to|strong=\"H5921\"* bring in|strong=\"H5921\"* everlasting|strong=\"H5769\"* righteousness|strong=\"H6664\"*, to|strong=\"H5921\"* seal|strong=\"H2856\"* up|strong=\"H2856\"* vision|strong=\"H2377\"* and|strong=\"H5971\"* prophecy|strong=\"H5030\"*, and|strong=\"H5971\"* to|strong=\"H5921\"* anoint|strong=\"H4886\"* the|strong=\"H5921\"* most|strong=\"H6944\"* holy|strong=\"H6944\"*." + }, + { + "verseNum": 25, + "text": "“Know|strong=\"H3045\"* therefore|strong=\"H3045\"* and|strong=\"H7725\"* discern|strong=\"H3045\"* that|strong=\"H3045\"* from|strong=\"H4480\"* the|strong=\"H4480\"* going|strong=\"H4161\"* out|strong=\"H4480\"* of|strong=\"H1697\"* the|strong=\"H4480\"* commandment|strong=\"H1697\"* to|strong=\"H5704\"* restore|strong=\"H7725\"* and|strong=\"H7725\"* build|strong=\"H1129\"* Jerusalem|strong=\"H3389\"* to|strong=\"H5704\"* the|strong=\"H4480\"* Anointed|strong=\"H4899\"* One|strong=\"H4480\"*,+ 9:25 “Anointed One” can also be translated “Messiah” (same as “Christ”).* the|strong=\"H4480\"* prince|strong=\"H5057\"*, will|strong=\"H3389\"* be|strong=\"H1697\"* seven|strong=\"H7651\"* weeks|strong=\"H7620\"* and|strong=\"H7725\"* sixty-two|strong=\"H8346\"* weeks|strong=\"H7620\"*. It|strong=\"H7725\"* will|strong=\"H3389\"* be|strong=\"H1697\"* built|strong=\"H1129\"* again|strong=\"H7725\"*, with|strong=\"H1697\"* street|strong=\"H7339\"* and|strong=\"H7725\"* moat|strong=\"H2742\"*, even|strong=\"H5704\"* in|strong=\"H7725\"* troubled times|strong=\"H6256\"*." + }, + { + "verseNum": 26, + "text": "After|strong=\"H7093\"* the|strong=\"H5704\"* sixty-two|strong=\"H8346\"* weeks|strong=\"H7620\"* the|strong=\"H5704\"* Anointed|strong=\"H4899\"* One|strong=\"H5892\"*+ 9:26 “Anointed One” can also be translated “Messiah” (same as “Christ”).* will|strong=\"H5971\"* be|strong=\"H5892\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, and|strong=\"H5971\"* will|strong=\"H5971\"* have|strong=\"H5971\"* nothing. The|strong=\"H5704\"* people|strong=\"H5971\"* of|strong=\"H5892\"* the|strong=\"H5704\"* prince|strong=\"H5057\"* who|strong=\"H5971\"* come|strong=\"H5971\"* will|strong=\"H5971\"* destroy|strong=\"H7843\"* the|strong=\"H5704\"* city|strong=\"H5892\"* and|strong=\"H5971\"* the|strong=\"H5704\"* sanctuary|strong=\"H6944\"*. Its|strong=\"H3772\"* end|strong=\"H7093\"* will|strong=\"H5971\"* be|strong=\"H5892\"* with|strong=\"H5971\"* a|strong=\"H3068\"* flood|strong=\"H7858\"*, and|strong=\"H5971\"* war|strong=\"H4421\"* will|strong=\"H5971\"* be|strong=\"H5892\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7093\"*. Desolations|strong=\"H8074\"* are|strong=\"H5971\"* determined|strong=\"H2782\"*." + }, + { + "verseNum": 27, + "text": "He|strong=\"H5704\"* will|strong=\"H7227\"* make|strong=\"H8074\"* a|strong=\"H3068\"* firm|strong=\"H1396\"* covenant|strong=\"H1285\"* with|strong=\"H1285\"* many|strong=\"H7227\"* for|strong=\"H5704\"* one|strong=\"H3671\"* week|strong=\"H7620\"*. In|strong=\"H5921\"* the|strong=\"H5921\"* middle|strong=\"H2677\"* of|strong=\"H2077\"* the|strong=\"H5921\"* week|strong=\"H7620\"* he|strong=\"H5704\"* will|strong=\"H7227\"* cause the|strong=\"H5921\"* sacrifice|strong=\"H2077\"* and|strong=\"H1285\"* the|strong=\"H5921\"* offering|strong=\"H4503\"* to|strong=\"H5704\"* cease|strong=\"H7673\"*. On|strong=\"H5921\"* the|strong=\"H5921\"* wing|strong=\"H3671\"* of|strong=\"H2077\"* abominations|strong=\"H8251\"* will|strong=\"H7227\"* come one|strong=\"H3671\"* who|strong=\"H7227\"* makes|strong=\"H8074\"* desolate|strong=\"H8074\"*; and|strong=\"H1285\"* even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5921\"* decreed|strong=\"H2782\"* full|strong=\"H7227\"* end|strong=\"H3617\"*, wrath will|strong=\"H7227\"* be|strong=\"H1285\"* poured|strong=\"H5413\"* out|strong=\"H5413\"* on|strong=\"H5921\"* the|strong=\"H5921\"* desolate|strong=\"H8074\"*.”" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H7121\"* third|strong=\"H7969\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Cyrus|strong=\"H3566\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* a|strong=\"H3068\"* message|strong=\"H1697\"* was|strong=\"H8034\"* revealed|strong=\"H1540\"* to|strong=\"H4428\"* Daniel|strong=\"H1840\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* was|strong=\"H8034\"* called|strong=\"H7121\"* Belteshazzar|strong=\"H1095\"*; and|strong=\"H4428\"* the|strong=\"H7121\"* message|strong=\"H1697\"* was|strong=\"H8034\"* true, even|strong=\"H1840\"* a|strong=\"H3068\"* great|strong=\"H1419\"* warfare|strong=\"H6635\"*. He|strong=\"H8141\"* understood the|strong=\"H7121\"* message|strong=\"H1697\"*, and|strong=\"H4428\"* had|strong=\"H4428\"* understanding of|strong=\"H4428\"* the|strong=\"H7121\"* vision|strong=\"H4758\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H3117\"* those|strong=\"H1992\"* days|strong=\"H3117\"* I|strong=\"H3117\"*, Daniel|strong=\"H1840\"*, was|strong=\"H1961\"* mourning three|strong=\"H7969\"* whole|strong=\"H3117\"* weeks|strong=\"H7620\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* ate no|strong=\"H3808\"* pleasant|strong=\"H2530\"* food|strong=\"H3899\"*. No|strong=\"H3808\"* meat|strong=\"H1320\"* or|strong=\"H3808\"* wine|strong=\"H3196\"* came|strong=\"H1320\"* into|strong=\"H5704\"* my|strong=\"H4390\"* mouth|strong=\"H6310\"*. I|strong=\"H3117\"* didn’t anoint|strong=\"H5480\"* myself|strong=\"H1320\"* at|strong=\"H3117\"* all|strong=\"H5704\"*, until|strong=\"H5704\"* three|strong=\"H7969\"* whole|strong=\"H3117\"* weeks|strong=\"H7620\"* were|strong=\"H3117\"* fulfilled|strong=\"H4390\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* first|strong=\"H7223\"* month|strong=\"H2320\"*, as|strong=\"H3117\"* I|strong=\"H3117\"* was|strong=\"H1961\"* by|strong=\"H3027\"* the|strong=\"H5921\"* side|strong=\"H3027\"* of|strong=\"H3117\"* the|strong=\"H5921\"* great|strong=\"H1419\"* river|strong=\"H5104\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* Hiddekel|strong=\"H2313\"*,+ 10:4 or, Tigris River*" + }, + { + "verseNum": 5, + "text": "I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* looked|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* was|strong=\"H4975\"* a|strong=\"H3068\"* man|strong=\"H5375\"* clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, whose waist|strong=\"H4975\"* was|strong=\"H4975\"* adorned with|strong=\"H3847\"* pure|strong=\"H3800\"* gold|strong=\"H3800\"* of|strong=\"H5869\"* Uphaz." + }, + { + "verseNum": 6, + "text": "His|strong=\"H6440\"* body|strong=\"H1472\"* also|strong=\"H5869\"* was|strong=\"H1697\"* like|strong=\"H4758\"* beryl|strong=\"H8658\"*, and|strong=\"H6963\"* his|strong=\"H6440\"* face|strong=\"H6440\"* as|strong=\"H1697\"* the|strong=\"H6440\"* appearance|strong=\"H4758\"* of|strong=\"H1697\"* lightning|strong=\"H1300\"*, and|strong=\"H6963\"* his|strong=\"H6440\"* eyes|strong=\"H5869\"* as|strong=\"H1697\"* flaming torches|strong=\"H3940\"*. His|strong=\"H6440\"* arms|strong=\"H2220\"* and|strong=\"H6963\"* his|strong=\"H6440\"* feet|strong=\"H4772\"* were|strong=\"H5869\"* like|strong=\"H4758\"* burnished|strong=\"H7044\"* bronze|strong=\"H5178\"*. The|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H6440\"* words|strong=\"H1697\"* was|strong=\"H1697\"* like|strong=\"H4758\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"*, Daniel|strong=\"H1840\"*, alone|strong=\"H1840\"* saw|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H4759\"*, for|strong=\"H5921\"* the|strong=\"H5921\"* men|strong=\"H1419\"* who|strong=\"H3808\"* were|strong=\"H1961\"* with|strong=\"H5973\"* me|strong=\"H7200\"* didn’t see|strong=\"H7200\"* the|strong=\"H5921\"* vision|strong=\"H4759\"*, but|strong=\"H3808\"* a|strong=\"H3068\"* great|strong=\"H1419\"* quaking|strong=\"H2731\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* them|strong=\"H5921\"*, and|strong=\"H1419\"* they|strong=\"H3808\"* fled|strong=\"H1272\"* to|strong=\"H1961\"* hide|strong=\"H2244\"* themselves|strong=\"H2244\"*." + }, + { + "verseNum": 8, + "text": "So|strong=\"H3808\"* I|strong=\"H5921\"* was|strong=\"H3808\"* left|strong=\"H7604\"* alone|strong=\"H7604\"* and|strong=\"H1419\"* saw|strong=\"H7200\"* this|strong=\"H2063\"* great|strong=\"H1419\"* vision|strong=\"H4759\"*. No|strong=\"H3808\"* strength|strong=\"H3581\"* remained|strong=\"H7604\"* in|strong=\"H5921\"* me|strong=\"H7200\"*; for|strong=\"H5921\"* my|strong=\"H7200\"* face|strong=\"H7200\"* grew deathly|strong=\"H4889\"* pale, and|strong=\"H1419\"* I|strong=\"H5921\"* retained|strong=\"H6113\"* no|strong=\"H3808\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 9, + "text": "Yet|strong=\"H5921\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H8085\"* words|strong=\"H1697\"*. When|strong=\"H1961\"* I|strong=\"H5921\"* heard|strong=\"H8085\"* the|strong=\"H6440\"* voice|strong=\"H6963\"* of|strong=\"H1697\"* his|strong=\"H8085\"* words|strong=\"H1697\"*, then|strong=\"H1961\"* I|strong=\"H5921\"* fell|strong=\"H1961\"* into|strong=\"H5921\"* a|strong=\"H3068\"* deep|strong=\"H7290\"* sleep|strong=\"H7290\"* on|strong=\"H5921\"* my|strong=\"H8085\"* face|strong=\"H6440\"*, with|strong=\"H5921\"* my|strong=\"H8085\"* face|strong=\"H6440\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* ground|strong=\"H6440\"*." + }, + { + "verseNum": 10, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* hand|strong=\"H3027\"* touched|strong=\"H5060\"* me|strong=\"H5921\"*, which set|strong=\"H5128\"* me|strong=\"H5921\"* on|strong=\"H5921\"* my|strong=\"H5921\"* knees|strong=\"H1290\"* and|strong=\"H3027\"* on|strong=\"H5921\"* the|strong=\"H5921\"* palms|strong=\"H3709\"* of|strong=\"H3027\"* my|strong=\"H5921\"* hands|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, “Daniel|strong=\"H1840\"*, you|strong=\"H3588\"* greatly beloved man|strong=\"H2088\"*, understand the|strong=\"H5921\"* words|strong=\"H1697\"* that|strong=\"H3588\"* I|strong=\"H3588\"* speak|strong=\"H1696\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, and|strong=\"H7971\"* stand|strong=\"H5975\"* upright|strong=\"H5975\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1697\"* been|strong=\"H6258\"* sent|strong=\"H7971\"* to|strong=\"H1696\"* you|strong=\"H3588\"*, now|strong=\"H6258\"*.” When|strong=\"H3588\"* he|strong=\"H3588\"* had|strong=\"H3588\"* spoken|strong=\"H1696\"* this|strong=\"H2088\"* word|strong=\"H1697\"* to|strong=\"H1696\"* me|strong=\"H7971\"*, I|strong=\"H3588\"* stood|strong=\"H5975\"* trembling|strong=\"H7460\"*." + }, + { + "verseNum": 12, + "text": "Then|strong=\"H5414\"* he|strong=\"H3588\"* said|strong=\"H1697\"* to|strong=\"H5414\"* me|strong=\"H5414\"*, “Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*, Daniel|strong=\"H1840\"*; for|strong=\"H3588\"* from|strong=\"H4480\"* the|strong=\"H6440\"* first|strong=\"H7223\"* day|strong=\"H3117\"* that|strong=\"H3588\"* you|strong=\"H3588\"* set|strong=\"H5414\"* your|strong=\"H5414\"* heart|strong=\"H3820\"* to|strong=\"H5414\"* understand|strong=\"H8085\"*, and|strong=\"H3117\"* to|strong=\"H5414\"* humble|strong=\"H6031\"* yourself|strong=\"H6031\"* before|strong=\"H6440\"* your|strong=\"H5414\"* God|strong=\"H5414\"*, your|strong=\"H5414\"* words|strong=\"H1697\"* were|strong=\"H3117\"* heard|strong=\"H8085\"*. I|strong=\"H3588\"* have|strong=\"H1697\"* come for|strong=\"H3588\"* your|strong=\"H5414\"* words|strong=\"H1697\"*’ sake|strong=\"H1697\"*." + }, + { + "verseNum": 13, + "text": "But|strong=\"H2009\"* the|strong=\"H3117\"* prince|strong=\"H8269\"* of|strong=\"H4428\"* the|strong=\"H3117\"* kingdom|strong=\"H4438\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"* withstood|strong=\"H5975\"* me|strong=\"H5048\"* twenty-one|strong=\"H6242\"* days|strong=\"H3117\"*; but|strong=\"H2009\"*, behold|strong=\"H2009\"*, Michael|strong=\"H4317\"*, one|strong=\"H7223\"* of|strong=\"H4428\"* the|strong=\"H3117\"* chief|strong=\"H8269\"* princes|strong=\"H8269\"*, came|strong=\"H4428\"* to|strong=\"H3117\"* help|strong=\"H5826\"* me|strong=\"H5048\"* because|strong=\"H3117\"* I|strong=\"H3117\"* remained|strong=\"H3498\"* there|strong=\"H8033\"* with|strong=\"H3117\"* the|strong=\"H3117\"* kings|strong=\"H4428\"* of|strong=\"H4428\"* Persia|strong=\"H6539\"*." + }, + { + "verseNum": 14, + "text": "Now|strong=\"H3117\"* I|strong=\"H3588\"* have|strong=\"H5971\"* come|strong=\"H7136\"* to|strong=\"H3117\"* make|strong=\"H7136\"* you|strong=\"H3588\"* understand what|strong=\"H3588\"* will|strong=\"H5971\"* happen|strong=\"H7136\"* to|strong=\"H3117\"* your|strong=\"H3588\"* people|strong=\"H5971\"* in|strong=\"H3117\"* the|strong=\"H3588\"* latter days|strong=\"H3117\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* vision|strong=\"H2377\"* is|strong=\"H3117\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* many days|strong=\"H3117\"*.”" + }, + { + "verseNum": 15, + "text": "When|strong=\"H1696\"* he|strong=\"H5414\"* had|strong=\"H5414\"* spoken|strong=\"H1696\"* these|strong=\"H1696\"* words|strong=\"H1697\"* to|strong=\"H1696\"* me|strong=\"H5414\"*, I|strong=\"H5414\"* set|strong=\"H5414\"* my|strong=\"H5414\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* ground|strong=\"H6440\"* and|strong=\"H6440\"* was|strong=\"H1697\"* mute." + }, + { + "verseNum": 16, + "text": "Behold|strong=\"H2009\"*, one|strong=\"H3808\"* in|strong=\"H5921\"* the|strong=\"H5921\"* likeness|strong=\"H1823\"* of|strong=\"H1121\"* the|strong=\"H5921\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* men|strong=\"H1121\"* touched|strong=\"H5060\"* my|strong=\"H5921\"* lips|strong=\"H8193\"*. Then|strong=\"H1696\"* I|strong=\"H2009\"* opened|strong=\"H6605\"* my|strong=\"H5921\"* mouth|strong=\"H6310\"*, and|strong=\"H1121\"* spoke|strong=\"H1696\"* and|strong=\"H1121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* him|strong=\"H5921\"* who|strong=\"H1121\"* stood|strong=\"H5975\"* before|strong=\"H5048\"* me|strong=\"H5921\"*, “My|strong=\"H5921\"* lord, by|strong=\"H5921\"* reason|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H5921\"* vision|strong=\"H4759\"* my|strong=\"H5921\"* sorrows|strong=\"H6735\"* have|strong=\"H1121\"* overtaken me|strong=\"H5921\"*, and|strong=\"H1121\"* I|strong=\"H2009\"* retain|strong=\"H6113\"* no|strong=\"H3808\"* strength|strong=\"H3581\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H5650\"* how|strong=\"H1963\"* can|strong=\"H3201\"* the|strong=\"H5975\"* servant|strong=\"H5650\"* of|strong=\"H5650\"* this|strong=\"H2088\"* my|strong=\"H1696\"* lord talk|strong=\"H1696\"* with|strong=\"H5973\"* this|strong=\"H2088\"* my|strong=\"H1696\"* lord? For|strong=\"H5650\"* as|strong=\"H1696\"* for|strong=\"H5650\"* me|strong=\"H1696\"*, immediately there|strong=\"H2088\"* remained|strong=\"H7604\"* no|strong=\"H3808\"* strength|strong=\"H3581\"* in|strong=\"H1696\"* me|strong=\"H1696\"*. There|strong=\"H2088\"* was|strong=\"H2088\"* no|strong=\"H3808\"* breath|strong=\"H5397\"* left|strong=\"H7604\"* in|strong=\"H1696\"* me|strong=\"H1696\"*.”" + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3254\"* one like|strong=\"H4758\"* the|strong=\"H2388\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* a|strong=\"H3068\"* man touched|strong=\"H5060\"* me|strong=\"H3254\"* again|strong=\"H3254\"*, and|strong=\"H2388\"* he|strong=\"H3254\"* strengthened|strong=\"H2388\"* me|strong=\"H3254\"*." + }, + { + "verseNum": 19, + "text": "He|strong=\"H3588\"* said|strong=\"H1696\"*, “Greatly beloved man, don’t be|strong=\"H3372\"* afraid|strong=\"H3372\"*. Peace|strong=\"H7965\"* be|strong=\"H3372\"* to|strong=\"H1696\"* you|strong=\"H3588\"*. Be|strong=\"H3372\"* strong|strong=\"H2388\"*. Yes|strong=\"H3588\"*, be|strong=\"H3372\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 20, + "text": "Then|strong=\"H3318\"* he|strong=\"H3318\"* said|strong=\"H3318\"*, “Do|strong=\"H4100\"* you|strong=\"H7725\"* know|strong=\"H3045\"* why|strong=\"H4100\"* I|strong=\"H2009\"* have|strong=\"H3045\"* come|strong=\"H3318\"* to|strong=\"H7725\"* you|strong=\"H7725\"*? Now|strong=\"H6258\"* I|strong=\"H2009\"* will|strong=\"H4100\"* return|strong=\"H7725\"* to|strong=\"H7725\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* the|strong=\"H7725\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* Persia|strong=\"H6539\"*. When|strong=\"H3318\"* I|strong=\"H2009\"* go|strong=\"H3318\"* out|strong=\"H3318\"*, behold|strong=\"H2009\"*, the|strong=\"H7725\"* prince|strong=\"H8269\"* of|strong=\"H8269\"* Greece|strong=\"H3120\"* will|strong=\"H4100\"* come|strong=\"H3318\"*." + }, + { + "verseNum": 21, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H8269\"* tell|strong=\"H5046\"* you|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H8269\"* is|strong=\"H3588\"* inscribed|strong=\"H7559\"* in|strong=\"H5921\"* the|strong=\"H5921\"* writing|strong=\"H3791\"* of|strong=\"H8269\"* truth. There is|strong=\"H3588\"* no one|strong=\"H3588\"* who|strong=\"H3588\"* holds|strong=\"H2388\"* with|strong=\"H5973\"* me|strong=\"H5046\"* against|strong=\"H5921\"* these|strong=\"H5046\"* but|strong=\"H3588\"* Michael|strong=\"H4317\"* your|strong=\"H5921\"* prince|strong=\"H8269\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "“As|strong=\"H8141\"* for|strong=\"H5975\"* me|strong=\"H2388\"*, in|strong=\"H8141\"* the|strong=\"H2388\"* first year|strong=\"H8141\"* of|strong=\"H8141\"* Darius|strong=\"H1867\"* the|strong=\"H2388\"* Mede|strong=\"H4075\"*, I|strong=\"H8141\"* stood|strong=\"H5975\"* up|strong=\"H5975\"* to|strong=\"H5975\"* confirm|strong=\"H2388\"* and|strong=\"H2388\"* strengthen|strong=\"H2388\"* him|strong=\"H5975\"*." + }, + { + "verseNum": 2, + "text": "“Now|strong=\"H6258\"* I|strong=\"H2009\"* will|strong=\"H4428\"* show|strong=\"H5046\"* you|strong=\"H3605\"* the|strong=\"H3605\"* truth. Behold|strong=\"H2009\"*, three|strong=\"H7969\"* more|strong=\"H5750\"* kings|strong=\"H4428\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H4428\"* Persia|strong=\"H6539\"*. The|strong=\"H3605\"* fourth|strong=\"H7243\"* will|strong=\"H4428\"* be|strong=\"H5750\"* far|strong=\"H6239\"* richer|strong=\"H6238\"* than|strong=\"H1419\"* all|strong=\"H3605\"* of|strong=\"H4428\"* them|strong=\"H5975\"*. When|strong=\"H5750\"* he|strong=\"H3605\"* has|strong=\"H4428\"* grown strong|strong=\"H2393\"* through|strong=\"H3605\"* his|strong=\"H3605\"* riches|strong=\"H6239\"*, he|strong=\"H3605\"* will|strong=\"H4428\"* stir|strong=\"H5782\"* up|strong=\"H5975\"* all|strong=\"H3605\"* against|strong=\"H5782\"* the|strong=\"H3605\"* realm|strong=\"H4438\"* of|strong=\"H4428\"* Greece|strong=\"H3120\"*." + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* mighty|strong=\"H1368\"* king|strong=\"H4428\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, who|strong=\"H4428\"* will|strong=\"H4428\"* rule|strong=\"H4910\"* with|strong=\"H6213\"* great|strong=\"H7227\"* dominion|strong=\"H4910\"*, and|strong=\"H4428\"* do|strong=\"H6213\"* according to|strong=\"H6213\"* his|strong=\"H6213\"* will|strong=\"H4428\"*." + }, + { + "verseNum": 4, + "text": "When|strong=\"H3588\"* he|strong=\"H3588\"* stands|strong=\"H5975\"* up|strong=\"H5975\"*, his|strong=\"H3588\"* kingdom|strong=\"H4438\"* will|strong=\"H8064\"* be|strong=\"H3808\"* broken|strong=\"H7665\"* and|strong=\"H8064\"* will|strong=\"H8064\"* be|strong=\"H3808\"* divided|strong=\"H2673\"* toward the|strong=\"H3588\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3588\"* sky|strong=\"H8064\"*, but|strong=\"H3588\"* not|strong=\"H3808\"* to|strong=\"H5975\"* his|strong=\"H3588\"* posterity, nor|strong=\"H3808\"* according to|strong=\"H5975\"* his|strong=\"H3588\"* dominion|strong=\"H4910\"* with|strong=\"H8064\"* which|strong=\"H7307\"* he|strong=\"H3588\"* ruled|strong=\"H4910\"*; for|strong=\"H3588\"* his|strong=\"H3588\"* kingdom|strong=\"H4438\"* will|strong=\"H8064\"* be|strong=\"H3808\"* plucked|strong=\"H5428\"* up|strong=\"H5975\"*, even|strong=\"H3588\"* for|strong=\"H3588\"* others besides these." + }, + { + "verseNum": 5, + "text": "“The|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* be|strong=\"H4428\"* strong|strong=\"H2388\"*. One|strong=\"H4480\"* of|strong=\"H4428\"* his|strong=\"H5921\"* princes|strong=\"H8269\"* will|strong=\"H4428\"* become stronger|strong=\"H2388\"* than|strong=\"H4480\"* him|strong=\"H5921\"*, and|strong=\"H4428\"* have|strong=\"H8269\"* dominion|strong=\"H4475\"*. His|strong=\"H5921\"* dominion|strong=\"H4475\"* will|strong=\"H4428\"* be|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H7227\"* dominion|strong=\"H4475\"*." + }, + { + "verseNum": 6, + "text": "At|strong=\"H4428\"* the|strong=\"H5414\"* end|strong=\"H7093\"* of|strong=\"H4428\"* years|strong=\"H8141\"* they|strong=\"H3808\"* will|strong=\"H4428\"* join|strong=\"H2266\"* themselves|strong=\"H6213\"* together|strong=\"H2266\"*; and|strong=\"H4428\"* the|strong=\"H5414\"* daughter|strong=\"H1323\"* of|strong=\"H4428\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* south|strong=\"H5045\"* will|strong=\"H4428\"* come|strong=\"H3205\"* to|strong=\"H6213\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* north|strong=\"H6828\"* to|strong=\"H6213\"* make|strong=\"H6213\"* an|strong=\"H6213\"* agreement|strong=\"H4339\"*, but|strong=\"H3808\"* she|strong=\"H1931\"* will|strong=\"H4428\"* not|strong=\"H3808\"* retain|strong=\"H6113\"* the|strong=\"H5414\"* strength|strong=\"H3581\"* of|strong=\"H4428\"* her|strong=\"H5414\"* arm|strong=\"H2220\"*. He|strong=\"H1931\"* will|strong=\"H4428\"* also|strong=\"H6213\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*, nor|strong=\"H3808\"* will|strong=\"H4428\"* his|strong=\"H5414\"* arm|strong=\"H2220\"*; but|strong=\"H3808\"* she|strong=\"H1931\"* will|strong=\"H4428\"* be|strong=\"H3808\"* given|strong=\"H5414\"* up|strong=\"H5975\"*, with|strong=\"H6213\"* those|strong=\"H1931\"* who|strong=\"H1931\"* brought|strong=\"H3205\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* who|strong=\"H1931\"* became|strong=\"H3205\"* the|strong=\"H5414\"* father|strong=\"H3205\"* of|strong=\"H4428\"* her|strong=\"H5414\"*, and|strong=\"H4428\"* he|strong=\"H1931\"* who|strong=\"H1931\"* strengthened|strong=\"H2388\"* her|strong=\"H5414\"* in|strong=\"H8141\"* those|strong=\"H1931\"* times|strong=\"H6256\"*." + }, + { + "verseNum": 7, + "text": "“But|strong=\"H2388\"* out|strong=\"H2388\"* of|strong=\"H4428\"* a|strong=\"H3068\"* shoot from|strong=\"H5975\"* her|strong=\"H6213\"* roots|strong=\"H8328\"* one|strong=\"H6213\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H6213\"* his|strong=\"H6213\"* place|strong=\"H3653\"*, who|strong=\"H4428\"* will|strong=\"H4428\"* come to|strong=\"H6213\"* the|strong=\"H6213\"* army|strong=\"H2428\"* and|strong=\"H4428\"* will|strong=\"H4428\"* enter|strong=\"H5975\"* into|strong=\"H6213\"* the|strong=\"H6213\"* fortress|strong=\"H4581\"* of|strong=\"H4428\"* the|strong=\"H6213\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H6213\"* north|strong=\"H6828\"*, and|strong=\"H4428\"* will|strong=\"H4428\"* deal|strong=\"H6213\"* against|strong=\"H2388\"* them|strong=\"H6213\"* and|strong=\"H4428\"* will|strong=\"H4428\"* prevail|strong=\"H2388\"*." + }, + { + "verseNum": 8, + "text": "He|strong=\"H1931\"* will|strong=\"H4428\"* also|strong=\"H1571\"* carry their|strong=\"H5975\"* gods with|strong=\"H5973\"* their|strong=\"H5975\"* molten images|strong=\"H5257\"*, and|strong=\"H3701\"* with|strong=\"H5973\"* their|strong=\"H5975\"* goodly|strong=\"H2532\"* vessels|strong=\"H3627\"* of|strong=\"H4428\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* of|strong=\"H4428\"* gold|strong=\"H2091\"*, captive|strong=\"H7628\"* into|strong=\"H4714\"* Egypt|strong=\"H4714\"*. He|strong=\"H1931\"* will|strong=\"H4428\"* refrain|strong=\"H5975\"* some years|strong=\"H8141\"* from|strong=\"H2091\"* the|strong=\"H5975\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5975\"* north|strong=\"H6828\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H7725\"* will|strong=\"H4428\"* come|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H7725\"* realm|strong=\"H4438\"* of|strong=\"H4428\"* the|strong=\"H7725\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H7725\"* south|strong=\"H5045\"*, but|strong=\"H7725\"* he|strong=\"H7725\"* will|strong=\"H4428\"* return|strong=\"H7725\"* into|strong=\"H7725\"* his|strong=\"H7725\"* own land." + }, + { + "verseNum": 10, + "text": "His|strong=\"H7725\"* sons|strong=\"H1121\"* will|strong=\"H1121\"* wage|strong=\"H1624\"* war|strong=\"H2428\"*, and|strong=\"H1121\"* will|strong=\"H1121\"* assemble a|strong=\"H3068\"* multitude|strong=\"H1995\"* of|strong=\"H1121\"* great|strong=\"H7227\"* forces|strong=\"H2428\"* which|strong=\"H2428\"* will|strong=\"H1121\"* come|strong=\"H7725\"* on|strong=\"H5674\"*, and|strong=\"H1121\"* overflow|strong=\"H7857\"*, and|strong=\"H1121\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*. They|strong=\"H5704\"* will|strong=\"H1121\"* return|strong=\"H7725\"* and|strong=\"H1121\"* wage|strong=\"H1624\"* war|strong=\"H2428\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* his|strong=\"H7725\"* fortress|strong=\"H4581\"*." + }, + { + "verseNum": 11, + "text": "“The|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* south|strong=\"H5045\"* will|strong=\"H4428\"* be|strong=\"H3027\"* moved|strong=\"H3318\"* with|strong=\"H5973\"* anger and|strong=\"H4428\"* will|strong=\"H4428\"* come|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H4428\"* fight|strong=\"H3898\"* with|strong=\"H5973\"* him|strong=\"H5414\"*, even with|strong=\"H5973\"* the|strong=\"H5414\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5414\"* north|strong=\"H6828\"*. He|strong=\"H5414\"* will|strong=\"H4428\"* send|strong=\"H5414\"* out|strong=\"H3318\"* a|strong=\"H3068\"* great|strong=\"H7227\"* multitude|strong=\"H1995\"*, and|strong=\"H4428\"* the|strong=\"H5414\"* multitude|strong=\"H1995\"* will|strong=\"H4428\"* be|strong=\"H3027\"* given|strong=\"H5414\"* into|strong=\"H3318\"* his|strong=\"H5414\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H5375\"* multitude|strong=\"H1995\"* will|strong=\"H3808\"* be|strong=\"H3808\"* carried|strong=\"H5375\"* off|strong=\"H7311\"*, and|strong=\"H3824\"* his|strong=\"H5375\"* heart|strong=\"H3824\"* will|strong=\"H3808\"* be|strong=\"H3808\"* exalted|strong=\"H7311\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* cast|strong=\"H5307\"* down|strong=\"H5307\"* tens|strong=\"H7239\"* of|strong=\"H1995\"* thousands|strong=\"H7239\"*, but|strong=\"H3808\"* he|strong=\"H3808\"* won’t prevail|strong=\"H5810\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H4480\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H4480\"* north|strong=\"H6828\"* will|strong=\"H4428\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* will|strong=\"H4428\"* send out|strong=\"H4480\"* a|strong=\"H3068\"* multitude|strong=\"H1995\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* the|strong=\"H4480\"* former|strong=\"H7223\"*. He|strong=\"H4480\"* will|strong=\"H4428\"* come|strong=\"H7725\"* on|strong=\"H5975\"* at|strong=\"H4428\"* the|strong=\"H4480\"* end|strong=\"H7093\"* of|strong=\"H4428\"* the|strong=\"H4480\"* times|strong=\"H6256\"*, even of|strong=\"H4428\"* years|strong=\"H8141\"*, with|strong=\"H4428\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"* and|strong=\"H7725\"* with|strong=\"H4428\"* abundant|strong=\"H7227\"* supplies|strong=\"H7399\"*." + }, + { + "verseNum": 14, + "text": "“In|strong=\"H5921\"* those|strong=\"H1992\"* times|strong=\"H6256\"* many|strong=\"H7227\"* will|strong=\"H4428\"* stand|strong=\"H5975\"* up|strong=\"H5375\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H1121\"* the|strong=\"H5921\"* south|strong=\"H5045\"*. Also|strong=\"H4428\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5921\"* violent|strong=\"H6530\"* among|strong=\"H5921\"* your|strong=\"H5921\"* people|strong=\"H5971\"* will|strong=\"H4428\"* lift|strong=\"H5375\"* themselves|strong=\"H1992\"* up|strong=\"H5375\"* to|strong=\"H5921\"* establish|strong=\"H5975\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, but|strong=\"H1992\"* they|strong=\"H1992\"* will|strong=\"H4428\"* fall|strong=\"H3782\"*." + }, + { + "verseNum": 15, + "text": "So|strong=\"H3808\"* the|strong=\"H5975\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5975\"* north|strong=\"H6828\"* will|strong=\"H4428\"* come|strong=\"H5971\"* and|strong=\"H4428\"* cast|strong=\"H8210\"* up|strong=\"H5975\"* a|strong=\"H3068\"* mound, and|strong=\"H4428\"* take|strong=\"H3920\"* a|strong=\"H3068\"* well-fortified|strong=\"H4013\"* city|strong=\"H5892\"*. The|strong=\"H5975\"* forces|strong=\"H2220\"* of|strong=\"H4428\"* the|strong=\"H5975\"* south|strong=\"H5045\"* won’t stand|strong=\"H5975\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* his|strong=\"H3808\"* select troops|strong=\"H5971\"*, neither|strong=\"H3808\"* will|strong=\"H4428\"* there|strong=\"H5975\"* be|strong=\"H3808\"* any|strong=\"H3808\"* strength|strong=\"H3581\"* to|strong=\"H4428\"* stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "But he|strong=\"H6213\"* who|strong=\"H5975\"* comes|strong=\"H6440\"* against|strong=\"H6440\"* him|strong=\"H6440\"* will|strong=\"H7522\"* do|strong=\"H6213\"* according|strong=\"H3027\"* to|strong=\"H6213\"* his|strong=\"H6440\"* own|strong=\"H3027\"* will|strong=\"H7522\"*, and|strong=\"H3027\"* no|strong=\"H6213\"* one|strong=\"H6213\"* will|strong=\"H7522\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*. He|strong=\"H6213\"* will|strong=\"H7522\"* stand|strong=\"H5975\"* in|strong=\"H6213\"* the|strong=\"H6440\"* glorious|strong=\"H6643\"* land|strong=\"H6440\"*, and|strong=\"H3027\"* destruction|strong=\"H3615\"* will|strong=\"H7522\"* be|strong=\"H3027\"* in|strong=\"H6213\"* his|strong=\"H6440\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 17, + "text": "He|strong=\"H6213\"* will|strong=\"H1961\"* set|strong=\"H7760\"* his|strong=\"H3605\"* face|strong=\"H6440\"* to|strong=\"H1961\"* come|strong=\"H1961\"* with|strong=\"H5973\"* the|strong=\"H3605\"* strength|strong=\"H8633\"* of|strong=\"H1323\"* his|strong=\"H3605\"* whole|strong=\"H3605\"* kingdom|strong=\"H4438\"*, and|strong=\"H6440\"* with|strong=\"H5973\"* him|strong=\"H5414\"* equitable conditions. He|strong=\"H6213\"* will|strong=\"H1961\"* perform|strong=\"H6213\"* them|strong=\"H5414\"*. He|strong=\"H6213\"* will|strong=\"H1961\"* give|strong=\"H5414\"* him|strong=\"H5414\"* the|strong=\"H3605\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* women|strong=\"H1323\"*, to|strong=\"H1961\"* destroy|strong=\"H7843\"* the|strong=\"H3605\"* kingdom|strong=\"H4438\"*, but|strong=\"H3808\"* she|strong=\"H6440\"* will|strong=\"H1961\"* not|strong=\"H3808\"* stand|strong=\"H5975\"*, and|strong=\"H6440\"* won’t be|strong=\"H1961\"* for|strong=\"H6213\"* him|strong=\"H5414\"*." + }, + { + "verseNum": 18, + "text": "After this|strong=\"H6440\"* he|strong=\"H6440\"* will|strong=\"H7227\"* turn|strong=\"H7725\"* his|strong=\"H7725\"* face|strong=\"H6440\"* to|strong=\"H7725\"* the|strong=\"H6440\"* islands, and|strong=\"H7725\"* will|strong=\"H7227\"* take|strong=\"H3920\"* many|strong=\"H7227\"*, but|strong=\"H7725\"* a|strong=\"H3068\"* prince|strong=\"H7101\"* will|strong=\"H7227\"* cause|strong=\"H7725\"* the|strong=\"H6440\"* reproach|strong=\"H2781\"* offered by|strong=\"H6440\"* him|strong=\"H6440\"* to|strong=\"H7725\"* cease|strong=\"H7673\"*. Yes, moreover|strong=\"H1115\"*, he|strong=\"H6440\"* will|strong=\"H7227\"* cause|strong=\"H7725\"* his|strong=\"H7725\"* reproach|strong=\"H2781\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* on|strong=\"H6440\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 19, + "text": "Then|strong=\"H5307\"* he|strong=\"H3808\"* will|strong=\"H3808\"* turn|strong=\"H7725\"* his|strong=\"H7725\"* face|strong=\"H6440\"* toward|strong=\"H6440\"* the|strong=\"H6440\"* fortresses|strong=\"H4581\"* of|strong=\"H6440\"* his|strong=\"H7725\"* own|strong=\"H6440\"* land|strong=\"H6440\"*; but|strong=\"H3808\"* he|strong=\"H3808\"* will|strong=\"H3808\"* stumble|strong=\"H3782\"* and|strong=\"H7725\"* fall|strong=\"H5307\"*, and|strong=\"H7725\"* won’t be|strong=\"H3808\"* found|strong=\"H4672\"*." + }, + { + "verseNum": 20, + "text": "“Then|strong=\"H5975\"* one|strong=\"H3808\"* who|strong=\"H4421\"* will|strong=\"H3808\"* cause a|strong=\"H3068\"* tax collector to|strong=\"H5921\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"* to|strong=\"H5921\"* maintain its|strong=\"H5921\"* glory|strong=\"H1925\"* will|strong=\"H3808\"* stand|strong=\"H5975\"* up|strong=\"H5975\"* in|strong=\"H5921\"* his|strong=\"H5921\"* place|strong=\"H3653\"*; but|strong=\"H3808\"* within|strong=\"H5921\"* few days|strong=\"H3117\"* he|strong=\"H3117\"* shall|strong=\"H3117\"* be|strong=\"H3808\"* destroyed|strong=\"H7665\"*, not|strong=\"H3808\"* in|strong=\"H5921\"* anger|strong=\"H5674\"*, and|strong=\"H3117\"* not|strong=\"H3808\"* in|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 21, + "text": "“In|strong=\"H5921\"* his|strong=\"H5414\"* place|strong=\"H5414\"* a|strong=\"H3068\"* contemptible person|strong=\"H4438\"* will|strong=\"H5414\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, to|strong=\"H5921\"* whom they|strong=\"H3808\"* had|strong=\"H5414\"* not|strong=\"H3808\"* given|strong=\"H5414\"* the|strong=\"H5921\"* honor|strong=\"H1935\"* of|strong=\"H4438\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"*; but|strong=\"H3808\"* he|strong=\"H5414\"* will|strong=\"H5414\"* come in|strong=\"H5921\"* time|strong=\"H7962\"* of|strong=\"H4438\"* security, and|strong=\"H2388\"* will|strong=\"H5414\"* obtain|strong=\"H2388\"* the|strong=\"H5921\"* kingdom|strong=\"H4438\"* by|strong=\"H5921\"* flatteries|strong=\"H2519\"*." + }, + { + "verseNum": 22, + "text": "The|strong=\"H6440\"* overwhelming|strong=\"H7857\"* forces|strong=\"H2220\"* will|strong=\"H1571\"* be|strong=\"H1571\"* overwhelmed|strong=\"H7857\"* from|strong=\"H6440\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* will|strong=\"H1571\"* be|strong=\"H1571\"* broken|strong=\"H7665\"*. Yes|strong=\"H1571\"*, also|strong=\"H1571\"* the|strong=\"H6440\"* prince|strong=\"H5057\"* of|strong=\"H6440\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 23, + "text": "After|strong=\"H4480\"* the|strong=\"H6213\"* treaty made|strong=\"H6213\"* with|strong=\"H6213\"* him|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H1471\"* work|strong=\"H6213\"* deceitfully|strong=\"H4820\"*; for|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H1471\"* come|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H1471\"* will|strong=\"H1471\"* become|strong=\"H6213\"* strong|strong=\"H6105\"* with|strong=\"H6213\"* few|strong=\"H4592\"* people|strong=\"H1471\"*." + }, + { + "verseNum": 24, + "text": "In|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H5921\"* security he|strong=\"H5704\"* will|strong=\"H3808\"* come even|strong=\"H5704\"* on|strong=\"H5921\"* the|strong=\"H5921\"* fattest|strong=\"H4924\"* places|strong=\"H4924\"* of|strong=\"H5921\"* the|strong=\"H5921\"* province|strong=\"H4082\"*. He|strong=\"H5704\"* will|strong=\"H3808\"* do|strong=\"H6213\"* that|strong=\"H6256\"* which|strong=\"H1992\"* his|strong=\"H5921\"* fathers have|strong=\"H3808\"* not|strong=\"H3808\"* done|strong=\"H6213\"*, nor|strong=\"H3808\"* his|strong=\"H5921\"* fathers’ fathers. He|strong=\"H5704\"* will|strong=\"H3808\"* scatter among|strong=\"H5921\"* them|strong=\"H1992\"* prey|strong=\"H7998\"*, plunder|strong=\"H7998\"*, and|strong=\"H6213\"* wealth|strong=\"H3808\"*. Yes, he|strong=\"H5704\"* will|strong=\"H3808\"* devise|strong=\"H2803\"* his|strong=\"H5921\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* the|strong=\"H5921\"* strongholds|strong=\"H4013\"*, but|strong=\"H3808\"* only|strong=\"H5704\"* for|strong=\"H5704\"* a|strong=\"H3068\"* time|strong=\"H6256\"*." + }, + { + "verseNum": 25, + "text": "“He|strong=\"H3588\"* will|strong=\"H4428\"* stir|strong=\"H5782\"* up|strong=\"H5975\"* his|strong=\"H5921\"* power|strong=\"H3581\"* and|strong=\"H4428\"* his|strong=\"H5921\"* courage|strong=\"H3824\"* against|strong=\"H5921\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* with|strong=\"H5921\"* a|strong=\"H3068\"* great|strong=\"H1419\"* army|strong=\"H2428\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* wage|strong=\"H4421\"* war|strong=\"H4421\"* in|strong=\"H5921\"* battle|strong=\"H4421\"* with|strong=\"H5921\"* an|strong=\"H3588\"* exceedingly|strong=\"H3966\"* great|strong=\"H1419\"* and|strong=\"H4428\"* mighty|strong=\"H6099\"* army|strong=\"H2428\"*, but|strong=\"H3588\"* he|strong=\"H3588\"* won’t stand|strong=\"H5975\"*; for|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H4428\"* devise|strong=\"H2803\"* plans|strong=\"H4284\"* against|strong=\"H5921\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 26, + "text": "Yes, those who|strong=\"H7227\"* eat of|strong=\"H2428\"* his|strong=\"H7665\"* delicacies|strong=\"H6598\"* will|strong=\"H7227\"* destroy|strong=\"H7665\"* him|strong=\"H5307\"*, and|strong=\"H2428\"* his|strong=\"H7665\"* army|strong=\"H2428\"* will|strong=\"H7227\"* be|strong=\"H7665\"* swept away|strong=\"H5307\"*. Many|strong=\"H7227\"* will|strong=\"H7227\"* fall|strong=\"H5307\"* down|strong=\"H5307\"* slain|strong=\"H2491\"*." + }, + { + "verseNum": 27, + "text": "As|strong=\"H3824\"* for|strong=\"H3588\"* both|strong=\"H8147\"* these|strong=\"H1696\"* kings|strong=\"H4428\"*, their|strong=\"H5921\"* hearts|strong=\"H3824\"* will|strong=\"H4428\"* be|strong=\"H3808\"* to|strong=\"H1696\"* do evil, and|strong=\"H4428\"* they|strong=\"H3588\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* lies|strong=\"H3577\"* at|strong=\"H5921\"* one|strong=\"H3808\"* table|strong=\"H7979\"*; but|strong=\"H3588\"* it|strong=\"H5921\"* won’t prosper|strong=\"H6743\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* end|strong=\"H7093\"* will|strong=\"H4428\"* still|strong=\"H5750\"* be|strong=\"H3808\"* at|strong=\"H5921\"* the|strong=\"H5921\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"*." + }, + { + "verseNum": 28, + "text": "Then|strong=\"H6213\"* he|strong=\"H6213\"* will|strong=\"H3824\"* return|strong=\"H7725\"* into|strong=\"H7725\"* his|strong=\"H7725\"* land with|strong=\"H1285\"* great|strong=\"H1419\"* wealth|strong=\"H7399\"*. His|strong=\"H7725\"* heart|strong=\"H3824\"* will|strong=\"H3824\"* be|strong=\"H7725\"* against|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*. He|strong=\"H6213\"* will|strong=\"H3824\"* take|strong=\"H7725\"* action|strong=\"H6213\"*, and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H7725\"* his|strong=\"H7725\"* own land." + }, + { + "verseNum": 29, + "text": "“He|strong=\"H3808\"* will|strong=\"H1961\"* return|strong=\"H7725\"* at|strong=\"H7725\"* the|strong=\"H7725\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"* and|strong=\"H7725\"* come|strong=\"H1961\"* into|strong=\"H7725\"* the|strong=\"H7725\"* south|strong=\"H5045\"*; but|strong=\"H3808\"* it|strong=\"H7725\"* won’t be|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H7725\"* latter time|strong=\"H4150\"* as|strong=\"H1961\"* it|strong=\"H7725\"* was|strong=\"H1961\"* in|strong=\"H7725\"* the|strong=\"H7725\"* former|strong=\"H7223\"*." + }, + { + "verseNum": 30, + "text": "For|strong=\"H5921\"* ships|strong=\"H6716\"* of|strong=\"H5921\"* Kittim|strong=\"H3794\"* will|strong=\"H6716\"* come|strong=\"H7725\"* against|strong=\"H5921\"* him|strong=\"H5921\"*. Therefore|strong=\"H5921\"* he|strong=\"H6213\"* will|strong=\"H6716\"* be|strong=\"H7725\"* grieved|strong=\"H3512\"*, and|strong=\"H7725\"* will|strong=\"H6716\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1285\"* indignation|strong=\"H2194\"* against|strong=\"H5921\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*, and|strong=\"H7725\"* will|strong=\"H6716\"* take|strong=\"H7725\"* action|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H6716\"* even|strong=\"H3512\"* return|strong=\"H7725\"*, and|strong=\"H7725\"* have|strong=\"H1285\"* regard|strong=\"H5921\"* to|strong=\"H7725\"* those|strong=\"H5921\"* who|strong=\"H6213\"* forsake|strong=\"H5800\"* the|strong=\"H5921\"* holy|strong=\"H6944\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 31, + "text": "“Forces|strong=\"H2220\"* from|strong=\"H4480\"* him|strong=\"H5414\"* will|strong=\"H5414\"* profane|strong=\"H2490\"* the|strong=\"H5414\"* sanctuary|strong=\"H4720\"*, even the|strong=\"H5414\"* fortress|strong=\"H4581\"*, and|strong=\"H5975\"* will|strong=\"H5414\"* take|strong=\"H5493\"* away|strong=\"H5493\"* the|strong=\"H5414\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering|strong=\"H4480\"*. Then|strong=\"H5414\"* they|strong=\"H2490\"* will|strong=\"H5414\"* set|strong=\"H5414\"* up|strong=\"H5975\"* the|strong=\"H5414\"* abomination|strong=\"H8251\"* that|strong=\"H5414\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"*." + }, + { + "verseNum": 32, + "text": "He|strong=\"H6213\"* will|strong=\"H5971\"* corrupt|strong=\"H2610\"* those|strong=\"H2388\"* who|strong=\"H5971\"* do|strong=\"H6213\"* wickedly|strong=\"H7561\"* against|strong=\"H2388\"* the|strong=\"H6213\"* covenant|strong=\"H1285\"* by|strong=\"H6213\"* flatteries|strong=\"H2514\"*; but|strong=\"H2388\"* the|strong=\"H6213\"* people|strong=\"H5971\"* who|strong=\"H5971\"* know|strong=\"H3045\"* their|strong=\"H2388\"* God will|strong=\"H5971\"* be|strong=\"H5971\"* strong|strong=\"H2388\"* and|strong=\"H5971\"* take|strong=\"H2388\"* action|strong=\"H6213\"*." + }, + { + "verseNum": 33, + "text": "“Those|strong=\"H3782\"* who|strong=\"H5971\"* are|strong=\"H3117\"* wise|strong=\"H7919\"* among|strong=\"H5971\"* the|strong=\"H3117\"* people|strong=\"H5971\"* will|strong=\"H5971\"* instruct|strong=\"H7919\"* many|strong=\"H7227\"*; yet|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5971\"* fall|strong=\"H3782\"* by|strong=\"H3117\"* the|strong=\"H3117\"* sword|strong=\"H2719\"* and|strong=\"H3117\"* by|strong=\"H3117\"* flame|strong=\"H3852\"*, by|strong=\"H3117\"* captivity|strong=\"H7628\"* and|strong=\"H3117\"* by|strong=\"H3117\"* plunder, many|strong=\"H7227\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 34, + "text": "Now|strong=\"H7227\"* when|strong=\"H5921\"* they|strong=\"H5921\"* fall|strong=\"H3782\"*, they|strong=\"H5921\"* will|strong=\"H7227\"* be|strong=\"H4592\"* helped|strong=\"H5826\"* with|strong=\"H5921\"* a|strong=\"H3068\"* little|strong=\"H4592\"* help|strong=\"H5826\"*; but|strong=\"H5826\"* many|strong=\"H7227\"* will|strong=\"H7227\"* join|strong=\"H3867\"* themselves|strong=\"H5921\"* to|strong=\"H5921\"* them|strong=\"H5921\"* with|strong=\"H5921\"* flatteries|strong=\"H2519\"*." + }, + { + "verseNum": 35, + "text": "Some|strong=\"H4480\"* of|strong=\"H4480\"* those|strong=\"H4480\"* who|strong=\"H3588\"* are|strong=\"H3782\"* wise|strong=\"H7919\"* will|strong=\"H5704\"* fall|strong=\"H3782\"*—to|strong=\"H5704\"* refine|strong=\"H6884\"* them|strong=\"H5704\"*, and|strong=\"H3782\"* to|strong=\"H5704\"* purify|strong=\"H1305\"*, and|strong=\"H3782\"* to|strong=\"H5704\"* make|strong=\"H3835\"* them|strong=\"H5704\"* white|strong=\"H3835\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6256\"* of|strong=\"H4480\"* the|strong=\"H3588\"* end|strong=\"H7093\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H7093\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* the|strong=\"H3588\"* time|strong=\"H6256\"* appointed|strong=\"H4150\"*." + }, + { + "verseNum": 36, + "text": "“The|strong=\"H3605\"* king|strong=\"H4428\"* will|strong=\"H4428\"* do|strong=\"H6213\"* according|strong=\"H5921\"* to|strong=\"H1696\"* his|strong=\"H3605\"* will|strong=\"H4428\"*. He|strong=\"H3588\"* will|strong=\"H4428\"* exalt|strong=\"H7311\"* himself|strong=\"H1431\"* and|strong=\"H4428\"* magnify|strong=\"H1431\"* himself|strong=\"H1431\"* above|strong=\"H5921\"* every|strong=\"H3605\"* god, and|strong=\"H4428\"* will|strong=\"H4428\"* speak|strong=\"H1696\"* marvelous|strong=\"H6381\"* things|strong=\"H3605\"* against|strong=\"H5921\"* the|strong=\"H3605\"* God of|strong=\"H4428\"* gods. He|strong=\"H3588\"* will|strong=\"H4428\"* prosper|strong=\"H6743\"* until|strong=\"H5704\"* the|strong=\"H3605\"* indignation|strong=\"H2195\"* is|strong=\"H3605\"* accomplished|strong=\"H3615\"*, for|strong=\"H3588\"* that|strong=\"H3588\"* which|strong=\"H3588\"* is|strong=\"H3605\"* determined|strong=\"H2782\"* will|strong=\"H4428\"* be|strong=\"H4428\"* done|strong=\"H6213\"*." + }, + { + "verseNum": 37, + "text": "He|strong=\"H3588\"* won’t regard|strong=\"H5921\"* the|strong=\"H3605\"* gods of|strong=\"H5921\"* his|strong=\"H3605\"* fathers, or|strong=\"H3808\"* the|strong=\"H3605\"* desire|strong=\"H2532\"* of|strong=\"H5921\"* women, or|strong=\"H3808\"* regard|strong=\"H5921\"* any|strong=\"H3605\"* god|strong=\"H3808\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* magnify|strong=\"H1431\"* himself|strong=\"H1431\"* above|strong=\"H5921\"* all|strong=\"H3605\"*." + }, + { + "verseNum": 38, + "text": "But|strong=\"H3808\"* in|strong=\"H5921\"* their|strong=\"H5921\"* place|strong=\"H3653\"*, he|strong=\"H3808\"* will|strong=\"H3808\"* honor|strong=\"H3513\"* the|strong=\"H5921\"* god|strong=\"H3808\"* of|strong=\"H5921\"* fortresses|strong=\"H4581\"*. He|strong=\"H3808\"* will|strong=\"H3808\"* honor|strong=\"H3513\"* a|strong=\"H3068\"* god|strong=\"H3808\"* whom his|strong=\"H5921\"* fathers didn’t know|strong=\"H3045\"* with|strong=\"H5921\"* gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, and|strong=\"H3701\"* with|strong=\"H5921\"* precious|strong=\"H3368\"* stones and|strong=\"H3701\"* pleasant|strong=\"H2530\"* things|strong=\"H3513\"*." + }, + { + "verseNum": 39, + "text": "He|strong=\"H6213\"* will|strong=\"H7227\"* deal|strong=\"H6213\"* with|strong=\"H5973\"* the|strong=\"H6213\"* strongest|strong=\"H4581\"* fortresses|strong=\"H4581\"* by|strong=\"H5973\"* the|strong=\"H6213\"* help|strong=\"H6213\"* of|strong=\"H6213\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* god. He|strong=\"H6213\"* will|strong=\"H7227\"* increase|strong=\"H7235\"* with|strong=\"H5973\"* glory|strong=\"H3519\"* whoever acknowledges|strong=\"H5234\"* him|strong=\"H6213\"*. He|strong=\"H6213\"* will|strong=\"H7227\"* cause|strong=\"H6213\"* them|strong=\"H6213\"* to|strong=\"H6213\"* rule|strong=\"H4910\"* over|strong=\"H4910\"* many|strong=\"H7227\"*, and|strong=\"H6213\"* will|strong=\"H7227\"* divide|strong=\"H2505\"* the|strong=\"H6213\"* land for|strong=\"H6213\"* a|strong=\"H3068\"* price|strong=\"H4242\"*." + }, + { + "verseNum": 40, + "text": "“At|strong=\"H5921\"* the|strong=\"H5921\"* time|strong=\"H6256\"* of|strong=\"H4428\"* the|strong=\"H5921\"* end|strong=\"H7093\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* south|strong=\"H5045\"* will|strong=\"H4428\"* contend with|strong=\"H5973\"* him|strong=\"H5921\"*; and|strong=\"H4428\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* the|strong=\"H5921\"* north|strong=\"H6828\"* will|strong=\"H4428\"* come|strong=\"H5674\"* against|strong=\"H5921\"* him|strong=\"H5921\"* like|strong=\"H5973\"* a|strong=\"H3068\"* whirlwind|strong=\"H8175\"*, with|strong=\"H5973\"* chariots|strong=\"H7393\"*, with|strong=\"H5973\"* horsemen|strong=\"H6571\"*, and|strong=\"H4428\"* with|strong=\"H5973\"* many|strong=\"H7227\"* ships. He|strong=\"H5921\"* will|strong=\"H4428\"* enter|strong=\"H5674\"* into|strong=\"H5921\"* the|strong=\"H5921\"* countries, and|strong=\"H4428\"* will|strong=\"H4428\"* overflow|strong=\"H7857\"* and|strong=\"H4428\"* pass|strong=\"H5674\"* through|strong=\"H5674\"*." + }, + { + "verseNum": 41, + "text": "He|strong=\"H3027\"* will|strong=\"H1121\"* enter also|strong=\"H3027\"* into|strong=\"H3027\"* the|strong=\"H3027\"* glorious|strong=\"H6643\"* land, and|strong=\"H1121\"* many|strong=\"H7227\"* countries will|strong=\"H1121\"* be|strong=\"H3027\"* overthrown|strong=\"H3782\"*; but|strong=\"H7227\"* these will|strong=\"H1121\"* be|strong=\"H3027\"* delivered|strong=\"H4422\"* out|strong=\"H4422\"* of|strong=\"H1121\"* his|strong=\"H3027\"* hand|strong=\"H3027\"*: Edom, Moab|strong=\"H4124\"*, and|strong=\"H1121\"* the|strong=\"H3027\"* chief|strong=\"H7225\"* of|strong=\"H1121\"* the|strong=\"H3027\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*." + }, + { + "verseNum": 42, + "text": "He|strong=\"H3027\"* will|strong=\"H1961\"* also|strong=\"H3027\"* stretch|strong=\"H7971\"* out|strong=\"H7971\"* his|strong=\"H7971\"* hand|strong=\"H3027\"* on|strong=\"H3027\"* the|strong=\"H7971\"* countries. The|strong=\"H7971\"* land of|strong=\"H3027\"* Egypt|strong=\"H4714\"* won’t escape|strong=\"H6413\"*." + }, + { + "verseNum": 43, + "text": "But|strong=\"H3605\"* he|strong=\"H3605\"* will|strong=\"H4714\"* have|strong=\"H3605\"* power|strong=\"H4910\"* over|strong=\"H4910\"* the|strong=\"H3605\"* treasures|strong=\"H4362\"* of|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* of|strong=\"H3605\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* over|strong=\"H4910\"* all|strong=\"H3605\"* the|strong=\"H3605\"* precious|strong=\"H2530\"* things|strong=\"H3605\"* of|strong=\"H3605\"* Egypt|strong=\"H4714\"*. The|strong=\"H3605\"* Libyans|strong=\"H3864\"* and|strong=\"H3701\"* the|strong=\"H3605\"* Ethiopians|strong=\"H3569\"* will|strong=\"H4714\"* follow his|strong=\"H3605\"* steps|strong=\"H4703\"*." + }, + { + "verseNum": 44, + "text": "But|strong=\"H7227\"* news|strong=\"H8052\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* east|strong=\"H4217\"* and|strong=\"H1419\"* out|strong=\"H3318\"* of|strong=\"H3318\"* the|strong=\"H3318\"* north|strong=\"H6828\"* will|strong=\"H7227\"* trouble him|strong=\"H3318\"*; and|strong=\"H1419\"* he|strong=\"H3318\"* will|strong=\"H7227\"* go|strong=\"H3318\"* out|strong=\"H3318\"* with|strong=\"H3318\"* great|strong=\"H1419\"* fury|strong=\"H2534\"* to|strong=\"H3318\"* destroy|strong=\"H8045\"* and|strong=\"H1419\"* utterly|strong=\"H2763\"* to|strong=\"H3318\"* sweep away|strong=\"H3318\"* many|strong=\"H7227\"*." + }, + { + "verseNum": 45, + "text": "He|strong=\"H5704\"* will|strong=\"H2022\"* plant|strong=\"H5193\"* the|strong=\"H5704\"* tents of|strong=\"H2022\"* his|strong=\"H5704\"* palace between|strong=\"H5704\"* the|strong=\"H5704\"* sea|strong=\"H3220\"* and|strong=\"H2022\"* the|strong=\"H5704\"* glorious|strong=\"H6643\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*; yet|strong=\"H5704\"* he|strong=\"H5704\"* will|strong=\"H2022\"* come to|strong=\"H5704\"* his|strong=\"H5704\"* end|strong=\"H7093\"*, and|strong=\"H2022\"* no one will|strong=\"H2022\"* help|strong=\"H5826\"* him|strong=\"H5826\"*." + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "“At|strong=\"H5921\"* that|strong=\"H5971\"* time|strong=\"H6256\"* Michael|strong=\"H4317\"* will|strong=\"H1961\"* stand|strong=\"H5975\"* up|strong=\"H5975\"*, the|strong=\"H3605\"* great|strong=\"H1419\"* prince|strong=\"H8269\"* who|strong=\"H3605\"* stands|strong=\"H5975\"* for|strong=\"H5704\"* the|strong=\"H3605\"* children|strong=\"H1121\"* of|strong=\"H1121\"* your|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H1121\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* time|strong=\"H6256\"* of|strong=\"H1121\"* trouble|strong=\"H6869\"*, such|strong=\"H1931\"* as|strong=\"H5704\"* never|strong=\"H3808\"* was|strong=\"H1961\"* since|strong=\"H5704\"* there|strong=\"H1961\"* was|strong=\"H1961\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* even|strong=\"H5704\"* to|strong=\"H5704\"* that|strong=\"H5971\"* same|strong=\"H1931\"* time|strong=\"H6256\"*. At|strong=\"H5921\"* that|strong=\"H5971\"* time|strong=\"H6256\"* your|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* delivered|strong=\"H4422\"*, everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H1931\"* found|strong=\"H4672\"* written|strong=\"H3789\"* in|strong=\"H5921\"* the|strong=\"H3605\"* book|strong=\"H5612\"*." + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* of|strong=\"H2781\"* those who|strong=\"H7227\"* sleep|strong=\"H3463\"* in|strong=\"H7227\"* the|strong=\"H2416\"* dust|strong=\"H6083\"* of|strong=\"H2781\"* the|strong=\"H2416\"* earth|strong=\"H6083\"* will|strong=\"H7227\"* awake|strong=\"H6974\"*, some|strong=\"H7227\"* to|strong=\"H5769\"* everlasting|strong=\"H5769\"* life|strong=\"H2416\"*, and|strong=\"H5769\"* some|strong=\"H7227\"* to|strong=\"H5769\"* shame|strong=\"H2781\"* and|strong=\"H5769\"* everlasting|strong=\"H5769\"* contempt|strong=\"H1860\"*." + }, + { + "verseNum": 3, + "text": "Those who|strong=\"H7227\"* are|strong=\"H7227\"* wise|strong=\"H7919\"* will|strong=\"H7227\"* shine|strong=\"H2094\"* as|strong=\"H7919\"* the|strong=\"H6663\"* brightness|strong=\"H2096\"* of|strong=\"H3556\"* the|strong=\"H6663\"* expanse|strong=\"H7549\"*. Those who|strong=\"H7227\"* turn many|strong=\"H7227\"* to|strong=\"H5769\"* righteousness|strong=\"H6663\"* will|strong=\"H7227\"* shine|strong=\"H2094\"* as|strong=\"H7919\"* the|strong=\"H6663\"* stars|strong=\"H3556\"* forever|strong=\"H5769\"* and|strong=\"H5769\"* ever|strong=\"H5769\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H7227\"* you|strong=\"H5704\"*, Daniel|strong=\"H1840\"*, shut|strong=\"H2856\"* up|strong=\"H2856\"* the|strong=\"H5704\"* words|strong=\"H1697\"* and|strong=\"H1697\"* seal|strong=\"H2856\"* the|strong=\"H5704\"* book|strong=\"H5612\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H5704\"* time|strong=\"H6256\"* of|strong=\"H1697\"* the|strong=\"H5704\"* end|strong=\"H7093\"*. Many|strong=\"H7227\"* will|strong=\"H1697\"* run back|strong=\"H7751\"* and|strong=\"H1697\"* forth|strong=\"H7751\"*, and|strong=\"H1697\"* knowledge|strong=\"H1847\"* will|strong=\"H1697\"* be|strong=\"H1697\"* increased|strong=\"H7235\"*.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H2009\"* I|strong=\"H2009\"*, Daniel|strong=\"H1840\"*, looked|strong=\"H7200\"*, and|strong=\"H7200\"* behold|strong=\"H2009\"*, two|strong=\"H8147\"* others stood|strong=\"H5975\"*, one|strong=\"H7200\"* on|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H2975\"* bank|strong=\"H8193\"* on|strong=\"H7200\"* this|strong=\"H7200\"* side|strong=\"H8147\"*, and|strong=\"H7200\"* the|strong=\"H7200\"* other|strong=\"H8147\"* on|strong=\"H7200\"* the|strong=\"H7200\"* river|strong=\"H2975\"* bank|strong=\"H8193\"* on|strong=\"H7200\"* that|strong=\"H7200\"* side|strong=\"H8147\"*." + }, + { + "verseNum": 6, + "text": "One said to|strong=\"H5704\"* the|strong=\"H5704\"* man clothed|strong=\"H3847\"* in|strong=\"H3847\"* linen, who|strong=\"H4605\"* was|strong=\"H4325\"* above|strong=\"H4605\"* the|strong=\"H5704\"* waters|strong=\"H4325\"* of|strong=\"H4325\"* the|strong=\"H5704\"* river|strong=\"H2975\"*, “How|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H4325\"* it|strong=\"H5704\"* be|strong=\"H6382\"* to|strong=\"H5704\"* the|strong=\"H5704\"* end|strong=\"H7093\"* of|strong=\"H4325\"* these|strong=\"H4605\"* wonders|strong=\"H6382\"*?”" + }, + { + "verseNum": 7, + "text": "I|strong=\"H3588\"* heard|strong=\"H8085\"* the|strong=\"H3605\"* man|strong=\"H3605\"* clothed|strong=\"H3847\"* in|strong=\"H8085\"* linen, who|strong=\"H3605\"* was|strong=\"H3027\"* above|strong=\"H4605\"* the|strong=\"H3605\"* waters|strong=\"H4325\"* of|strong=\"H3027\"* the|strong=\"H3605\"* river|strong=\"H2975\"*, when|strong=\"H3588\"* he|strong=\"H3588\"* held|strong=\"H7311\"* up|strong=\"H7311\"* his|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3027\"* and|strong=\"H8064\"* his|strong=\"H3605\"* left|strong=\"H8040\"* hand|strong=\"H3027\"* to|strong=\"H3027\"* heaven|strong=\"H8064\"*, and|strong=\"H8064\"* swore|strong=\"H7650\"* by|strong=\"H3027\"* him|strong=\"H3027\"* who|strong=\"H3605\"* lives|strong=\"H2416\"* forever|strong=\"H5769\"* that|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H5971\"* be|strong=\"H3027\"* for|strong=\"H3588\"* a|strong=\"H3068\"* time|strong=\"H4150\"*, times|strong=\"H4150\"*, and|strong=\"H8064\"* a|strong=\"H3068\"* half|strong=\"H2677\"*; and|strong=\"H8064\"* when|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H5971\"* finished|strong=\"H3615\"* breaking in|strong=\"H8085\"* pieces|strong=\"H5310\"* the|strong=\"H3605\"* power|strong=\"H3027\"* of|strong=\"H3027\"* the|strong=\"H3605\"* holy|strong=\"H6944\"* people|strong=\"H5971\"*, all|strong=\"H3605\"* these|strong=\"H8085\"* things|strong=\"H6944\"* will|strong=\"H5971\"* be|strong=\"H3027\"* finished|strong=\"H3615\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H3808\"* heard|strong=\"H8085\"*, but|strong=\"H3808\"* I|strong=\"H3808\"* didn’t understand|strong=\"H8085\"*. Then|strong=\"H8085\"* I|strong=\"H3808\"* said|strong=\"H8085\"*, “My|strong=\"H8085\"* lord, what|strong=\"H4100\"* will|strong=\"H3808\"* be|strong=\"H3808\"* the|strong=\"H8085\"* outcome of|strong=\"H8085\"* these|strong=\"H8085\"* things|strong=\"H3808\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said|strong=\"H1697\"*, “Go|strong=\"H3212\"* your|strong=\"H3588\"* way|strong=\"H3212\"*, Daniel|strong=\"H1840\"*; for|strong=\"H3588\"* the|strong=\"H3588\"* words|strong=\"H1697\"* are|strong=\"H1697\"* shut|strong=\"H2856\"* up|strong=\"H2856\"* and|strong=\"H3212\"* sealed|strong=\"H2856\"* until|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6256\"* of|strong=\"H1697\"* the|strong=\"H3588\"* end|strong=\"H7093\"*." + }, + { + "verseNum": 10, + "text": "Many|strong=\"H7227\"* will|strong=\"H7563\"* purify|strong=\"H1305\"* themselves, and|strong=\"H3605\"* make|strong=\"H3835\"* themselves white|strong=\"H3835\"*, and|strong=\"H3605\"* be|strong=\"H3808\"* refined|strong=\"H6884\"*, but|strong=\"H3808\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* do|strong=\"H3605\"* wickedly|strong=\"H7561\"*; and|strong=\"H3605\"* none|strong=\"H3808\"* of|strong=\"H3605\"* the|strong=\"H3605\"* wicked|strong=\"H7563\"* will|strong=\"H7563\"* understand|strong=\"H7919\"*, but|strong=\"H3808\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H7563\"* wise|strong=\"H7919\"* will|strong=\"H7563\"* understand|strong=\"H7919\"*." + }, + { + "verseNum": 11, + "text": "“From|strong=\"H5493\"* the|strong=\"H5414\"* time|strong=\"H6256\"* that|strong=\"H3117\"* the|strong=\"H5414\"* continual|strong=\"H8548\"* burnt|strong=\"H8548\"* offering is|strong=\"H3117\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* and|strong=\"H3967\"* the|strong=\"H5414\"* abomination|strong=\"H8251\"* that|strong=\"H3117\"* makes|strong=\"H5414\"* desolate|strong=\"H8074\"* set|strong=\"H5414\"* up|strong=\"H5414\"*, there|strong=\"H3117\"* will|strong=\"H5414\"* be|strong=\"H3117\"* one|strong=\"H3967\"* thousand two|strong=\"H3967\"* hundred|strong=\"H3967\"* ninety|strong=\"H8673\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 12, + "text": "Blessed is|strong=\"H3117\"* he|strong=\"H3117\"* who waits|strong=\"H2442\"*, and|strong=\"H3967\"* comes|strong=\"H3117\"* to|strong=\"H3117\"* the|strong=\"H3117\"* one|strong=\"H3967\"* thousand three|strong=\"H7969\"* hundred|strong=\"H3967\"* thirty-five|strong=\"H7970\"* days|strong=\"H3117\"*." + }, + { + "verseNum": 13, + "text": "“But|strong=\"H3117\"* go|strong=\"H3212\"* your|strong=\"H5117\"* way|strong=\"H3212\"* until|strong=\"H3117\"* the|strong=\"H3117\"* end|strong=\"H7093\"*; for|strong=\"H3117\"* you|strong=\"H3117\"* will|strong=\"H3117\"* rest|strong=\"H5117\"*, and|strong=\"H3117\"* will|strong=\"H3117\"* stand|strong=\"H5975\"* in|strong=\"H3117\"* your|strong=\"H5117\"* inheritance at|strong=\"H3117\"* the|strong=\"H3117\"* end|strong=\"H7093\"* of|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"*.”" + } + ] + } + ] + }, + { + "name": "Hosea", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H3478\"* Hosea|strong=\"H1954\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Beeri, in|strong=\"H3478\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"*, Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* in|strong=\"H3478\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* at|strong=\"H3068\"* first|strong=\"H8462\"* by|strong=\"H3068\"* Hosea|strong=\"H1954\"*, Yahweh|strong=\"H3068\"* said|strong=\"H1696\"* to|strong=\"H1696\"* Hosea|strong=\"H1954\"*, “Go|strong=\"H3212\"*, take|strong=\"H3947\"* for|strong=\"H3588\"* yourself a|strong=\"H3068\"* wife|strong=\"H1696\"* of|strong=\"H3068\"* prostitution and|strong=\"H3068\"* children|strong=\"H3206\"* of|strong=\"H3068\"* unfaithfulness; for|strong=\"H3588\"* the|strong=\"H3588\"* land commits|strong=\"H2181\"* great|strong=\"H2181\"* adultery|strong=\"H2181\"*, forsaking Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H3947\"* he|strong=\"H3947\"* went|strong=\"H3212\"* and|strong=\"H1121\"* took|strong=\"H3947\"* Gomer|strong=\"H1586\"* the|strong=\"H3947\"* daughter|strong=\"H1323\"* of|strong=\"H1121\"* Diblaim|strong=\"H1691\"*; and|strong=\"H1121\"* she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said|strong=\"H7121\"* to|strong=\"H3478\"* him|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H3068\"* name|strong=\"H8034\"* Jezreel|strong=\"H3157\"*, for|strong=\"H3588\"* yet|strong=\"H5750\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H3068\"* avenge|strong=\"H6485\"* the|strong=\"H5921\"* blood|strong=\"H1818\"* of|strong=\"H1004\"* Jezreel|strong=\"H3157\"* on|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jehu|strong=\"H3058\"*, and|strong=\"H3478\"* will|strong=\"H3068\"* cause|strong=\"H7121\"* the|strong=\"H5921\"* kingdom|strong=\"H4468\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* to|strong=\"H3478\"* cease|strong=\"H7673\"*." + }, + { + "verseNum": 5, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3478\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1961\"* break|strong=\"H7665\"* the|strong=\"H3117\"* bow|strong=\"H7198\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* in|strong=\"H3478\"* the|strong=\"H3117\"* valley|strong=\"H6010\"* of|strong=\"H3117\"* Jezreel|strong=\"H3157\"*.”" + }, + { + "verseNum": 6, + "text": "She|strong=\"H3588\"* conceived|strong=\"H2029\"* again|strong=\"H5750\"*, and|strong=\"H3478\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* daughter|strong=\"H1323\"*." + }, + { + "verseNum": 7, + "text": "But|strong=\"H3808\"* I|strong=\"H3808\"* will|strong=\"H3068\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* the|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* save|strong=\"H3467\"* them|strong=\"H3068\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3063\"* will|strong=\"H3068\"* not|strong=\"H3808\"* save|strong=\"H3467\"* them|strong=\"H3068\"* by|strong=\"H3068\"* bow|strong=\"H7198\"*, sword|strong=\"H2719\"*, battle|strong=\"H4421\"*, horses|strong=\"H5483\"*, or|strong=\"H3808\"* horsemen|strong=\"H6571\"*.”" + }, + { + "verseNum": 8, + "text": "Now when|strong=\"H1121\"* she had|strong=\"H3205\"* weaned|strong=\"H1580\"* Lo-Ruhamah|strong=\"H3819\"*, she conceived|strong=\"H2029\"*, and|strong=\"H1121\"* bore|strong=\"H3205\"* a|strong=\"H3068\"* son|strong=\"H1121\"*." + }, + { + "verseNum": 9, + "text": "He|strong=\"H3588\"* said|strong=\"H7121\"*, “Call|strong=\"H7121\"* his|strong=\"H7121\"* name|strong=\"H8034\"* Lo-Ammi|strong=\"H3818\"*,+ 1:9 Lo-Ammi means “not my people”.* for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H5971\"* not|strong=\"H3808\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H3588\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* yours." + }, + { + "verseNum": 10, + "text": "Yet the number of the children of Israel will be as the sand of the sea, which can’t be measured or counted; and it will come to pass that, in the place where it was said to them, ‘You are not my people,’ they will be called ‘sons of the living God.’" + }, + { + "verseNum": 11, + "text": "The children of Judah and the children of Israel will be gathered together, and they will appoint themselves one head, and will go up from the land; for great will be the day of Jezreel." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“Say|strong=\"H3478\"* to|strong=\"H3478\"* your|strong=\"H1961\"* brothers|strong=\"H1121\"*, ‘My|strong=\"H1961\"* people|strong=\"H5971\"*!’+ 2:1 ‘Ammi’ in Hebrew*" + }, + { + "verseNum": 2, + "text": "Contend with|strong=\"H3117\"* your|strong=\"H7760\"* mother!" + }, + { + "verseNum": 3, + "text": "lest I|strong=\"H5971\"* strip her naked," + }, + { + "verseNum": 4, + "text": "Indeed|strong=\"H3588\"*, on|strong=\"H6440\"* her|strong=\"H5493\"* children I|strong=\"H3588\"* will|strong=\"H3808\"* have|strong=\"H3588\"* no|strong=\"H3808\"* mercy," + }, + { + "verseNum": 5, + "text": "For|strong=\"H3117\"* their|strong=\"H7760\"* mother has|strong=\"H3117\"* played the|strong=\"H3205\"* prostitute." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3588\"* behold|strong=\"H3808\"*,+ 2:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* will|strong=\"H1121\"* hedge up|strong=\"H1121\"* your|strong=\"H3588\"* way with|strong=\"H1121\"* thorns," + }, + { + "verseNum": 7, + "text": "She|strong=\"H3588\"* will|strong=\"H5414\"* follow|strong=\"H3212\"* after|strong=\"H3588\"* her|strong=\"H5414\"* lovers," + }, + { + "verseNum": 8, + "text": "For|strong=\"H3651\"* she|strong=\"H3651\"* didn’t know that|strong=\"H3651\"* I|strong=\"H2005\"* gave her|strong=\"H4672\"* the|strong=\"H1870\"* grain, the|strong=\"H1870\"* new wine, and|strong=\"H1870\"* the|strong=\"H1870\"* oil," + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H6258\"* I|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H7725\"* back|strong=\"H7725\"* my|strong=\"H1245\"* grain in|strong=\"H3212\"* its|strong=\"H7725\"* time|strong=\"H6258\"*," + }, + { + "verseNum": 10, + "text": "Now|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H5414\"* uncover her|strong=\"H5414\"* lewdness in|strong=\"H6213\"* the|strong=\"H3588\"* sight of|strong=\"H6213\"* her|strong=\"H5414\"* lovers," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3651\"* will|strong=\"H7725\"* also|strong=\"H6256\"* cause|strong=\"H3651\"* all|strong=\"H5337\"* her|strong=\"H3947\"* celebrations to|strong=\"H7725\"* cease|strong=\"H7725\"*:" + }, + { + "verseNum": 12, + "text": "I|strong=\"H6258\"* will|strong=\"H5869\"* lay|strong=\"H1540\"* waste her|strong=\"H1540\"* vines and|strong=\"H3027\"* her|strong=\"H1540\"* fig trees," + }, + { + "verseNum": 13, + "text": "I|strong=\"H3605\"* will|strong=\"H7673\"* visit on|strong=\"H3605\"* her|strong=\"H3605\"* the|strong=\"H3605\"* days|strong=\"H2282\"* of|strong=\"H2282\"* the|strong=\"H3605\"* Baals," + }, + { + "verseNum": 14, + "text": "“Therefore behold, I|strong=\"H5414\"* will|strong=\"H5414\"* allure her|strong=\"H5414\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* give her|strong=\"H5921\"* vineyards from|strong=\"H5921\"* there|strong=\"H1992\"*," + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3820\"* be|strong=\"H3820\"* in|strong=\"H5921\"* that|strong=\"H3651\"* day,” says|strong=\"H1696\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 17, + "text": "For|strong=\"H4714\"* I|strong=\"H3117\"* will|strong=\"H4714\"* take|strong=\"H5927\"* away|strong=\"H5927\"* the|strong=\"H5414\"* names of|strong=\"H3117\"* the|strong=\"H5414\"* Baals out|strong=\"H5414\"* of|strong=\"H3117\"* her|strong=\"H5414\"* mouth," + }, + { + "verseNum": 18, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* make|strong=\"H7121\"* a|strong=\"H3068\"* covenant for|strong=\"H7121\"* them|strong=\"H7121\"* with|strong=\"H3068\"* the|strong=\"H5002\"* animals|strong=\"H1961\"* of|strong=\"H3068\"* the|strong=\"H5002\"* field," + }, + { + "verseNum": 19, + "text": "I|strong=\"H3808\"* will|strong=\"H3808\"* betroth you|strong=\"H3808\"* to|strong=\"H6310\"* me|strong=\"H5493\"* forever." + }, + { + "verseNum": 20, + "text": "I|strong=\"H3117\"* will|strong=\"H2719\"* even betroth you|strong=\"H3117\"* to|strong=\"H3117\"* me|strong=\"H4480\"* in|strong=\"H3117\"* faithfulness;" + }, + { + "verseNum": 21, + "text": "It|strong=\"H4941\"* will|strong=\"H6664\"* happen in|strong=\"H4941\"* that|strong=\"H5769\"* day, that|strong=\"H5769\"* I will|strong=\"H6664\"* respond,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 22, + "text": "and|strong=\"H3068\"* the|strong=\"H3068\"* earth will|strong=\"H3068\"* respond to|strong=\"H3068\"* the|strong=\"H3068\"* grain, and|strong=\"H3068\"* the|strong=\"H3068\"* new wine, and|strong=\"H3068\"* the|strong=\"H3068\"* oil;" + }, + { + "verseNum": 23, + "text": "I|strong=\"H3117\"* will|strong=\"H3068\"* sow her|strong=\"H1931\"* to|strong=\"H3068\"* me|strong=\"H6030\"* in|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H3212\"*, “Go|strong=\"H3212\"* again|strong=\"H5750\"*, love a|strong=\"H3068\"* woman loved by|strong=\"H3068\"* another|strong=\"H7453\"*, and|strong=\"H1121\"* an|strong=\"H3068\"* adulteress|strong=\"H5003\"*, even|strong=\"H5750\"* as|strong=\"H3068\"* Yahweh|strong=\"H3068\"* loves the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, though they|strong=\"H1992\"* turn|strong=\"H6437\"* to|strong=\"H3478\"* other|strong=\"H5750\"* gods, and|strong=\"H1121\"* love cakes of|strong=\"H1121\"* raisins.”" + }, + { + "verseNum": 2, + "text": "So I bought|strong=\"H3739\"* her for|strong=\"H3701\"* myself for|strong=\"H3701\"* fifteen|strong=\"H2568\"* pieces of|strong=\"H3701\"* silver|strong=\"H3701\"* and|strong=\"H3701\"* a|strong=\"H3068\"* homer|strong=\"H2563\"*+ 3:2 1 homer is about 220 liters or 6 bushels* and|strong=\"H3701\"* a|strong=\"H3068\"* half|strong=\"H3963\"* of|strong=\"H3701\"* barley|strong=\"H8184\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H3117\"* said to|strong=\"H1961\"* her|strong=\"H1571\"*, “You|strong=\"H3117\"* shall|strong=\"H3117\"* stay|strong=\"H3427\"* with|strong=\"H3427\"* me|strong=\"H1961\"* many|strong=\"H7227\"* days|strong=\"H3117\"*. You|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* play|strong=\"H2181\"* the|strong=\"H3117\"* prostitute|strong=\"H2181\"*, and|strong=\"H3117\"* you|strong=\"H3117\"* shall|strong=\"H3117\"* not|strong=\"H3808\"* be|strong=\"H1961\"* with|strong=\"H3427\"* any|strong=\"H1571\"* other man. I|strong=\"H3117\"* will|strong=\"H1961\"* also|strong=\"H1571\"* be|strong=\"H1961\"* so|strong=\"H1961\"* toward you|strong=\"H3117\"*.”" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H1121\"* live|strong=\"H3427\"* many|strong=\"H7227\"* days|strong=\"H3117\"* without|strong=\"H3427\"* king|strong=\"H4428\"*, without|strong=\"H3427\"* prince|strong=\"H8269\"*, without|strong=\"H3427\"* sacrifice|strong=\"H2077\"*, without|strong=\"H3427\"* sacred stone, and|strong=\"H1121\"* without|strong=\"H3427\"* ephod or|strong=\"H3117\"* idols|strong=\"H8655\"*." + }, + { + "verseNum": 5, + "text": "Afterward the|strong=\"H3068\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H1121\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"*, and|strong=\"H1121\"* David|strong=\"H1732\"* their|strong=\"H3068\"* king|strong=\"H4428\"*, and|strong=\"H1121\"* shall|strong=\"H3068\"* come|strong=\"H7725\"* with|strong=\"H3068\"* trembling|strong=\"H6342\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"* and|strong=\"H1121\"* to|strong=\"H7725\"* his|strong=\"H3068\"* blessings in|strong=\"H3478\"* the|strong=\"H3068\"* last days|strong=\"H3117\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "There is|strong=\"H1818\"* cursing, lying|strong=\"H3584\"*, murder|strong=\"H7523\"*, stealing|strong=\"H1589\"*, and|strong=\"H1818\"* committing|strong=\"H5003\"* adultery|strong=\"H5003\"*;" + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3605\"* land|strong=\"H7704\"* will|strong=\"H1571\"* mourn|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3198\"* let no man bring a|strong=\"H3068\"* charge, neither let any man accuse|strong=\"H7378\"*;" + }, + { + "verseNum": 5, + "text": "You|strong=\"H3117\"* will|strong=\"H1571\"* stumble|strong=\"H3782\"* in|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 6, + "text": "My|strong=\"H3588\"* people|strong=\"H5971\"* are|strong=\"H5971\"* destroyed|strong=\"H1820\"* for|strong=\"H3588\"* lack|strong=\"H1097\"* of|strong=\"H1121\"* knowledge|strong=\"H1847\"*." + }, + { + "verseNum": 7, + "text": "As|strong=\"H3651\"* they|strong=\"H3651\"* were multiplied|strong=\"H7235\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* me|strong=\"H7235\"*." + }, + { + "verseNum": 8, + "text": "They|strong=\"H5971\"* feed on|strong=\"H5375\"* the|strong=\"H5375\"* sin|strong=\"H2403\"* of|strong=\"H5971\"* my|strong=\"H5375\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H5921\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* people|strong=\"H5971\"*, like|strong=\"H1961\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* eat, and|strong=\"H3068\"* not|strong=\"H3808\"* have|strong=\"H3068\"* enough|strong=\"H7646\"*." + }, + { + "verseNum": 11, + "text": "Prostitution|strong=\"H2184\"*, wine|strong=\"H3196\"*, and|strong=\"H3196\"* new|strong=\"H8492\"* wine|strong=\"H3196\"* take|strong=\"H3947\"* away|strong=\"H3947\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "My|strong=\"H5046\"* people|strong=\"H5971\"* consult|strong=\"H7592\"* with|strong=\"H5971\"* their|strong=\"H3588\"* wooden|strong=\"H6086\"* idol," + }, + { + "verseNum": 13, + "text": "They|strong=\"H3588\"* sacrifice|strong=\"H2076\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H1323\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3588\"* will|strong=\"H5971\"* not|strong=\"H3808\"* punish|strong=\"H6485\"* your|strong=\"H5921\"* daughters|strong=\"H1323\"* when|strong=\"H3588\"* they|strong=\"H1992\"* play|strong=\"H2181\"* the|strong=\"H5921\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 15, + "text": "“Though you|strong=\"H5927\"*, Israel|strong=\"H3478\"*, play|strong=\"H2181\"* the|strong=\"H3068\"* prostitute|strong=\"H2181\"*," + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* Israel|strong=\"H3478\"* has|strong=\"H3068\"* behaved extremely stubbornly|strong=\"H5637\"*, like|strong=\"H3478\"* a|strong=\"H3068\"* stubborn|strong=\"H5637\"* heifer|strong=\"H6510\"*." + }, + { + "verseNum": 17, + "text": "Ephraim is|strong=\"H2266\"* joined|strong=\"H2266\"* to|strong=\"H2266\"* idols|strong=\"H6091\"*." + }, + { + "verseNum": 18, + "text": "Their|strong=\"H5493\"* drink|strong=\"H5435\"* has become|strong=\"H2181\"* sour|strong=\"H5493\"*." + }, + { + "verseNum": 19, + "text": "The|strong=\"H6887\"* wind|strong=\"H7307\"* has|strong=\"H7307\"* wrapped|strong=\"H6887\"* her up|strong=\"H6887\"* in|strong=\"H2077\"* its wings|strong=\"H3671\"*;" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "“Listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2063\"*, you|strong=\"H3588\"* priests|strong=\"H3548\"*!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* rebels are|strong=\"H7846\"* deep|strong=\"H6009\"* in|strong=\"H3605\"* slaughter|strong=\"H7819\"*," + }, + { + "verseNum": 3, + "text": "I|strong=\"H3588\"* know|strong=\"H3045\"* Ephraim," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3068\"* deeds|strong=\"H4611\"* won’t allow|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H7725\"* turn|strong=\"H7725\"* to|strong=\"H7725\"* their|strong=\"H3068\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "The|strong=\"H6440\"* pride|strong=\"H1347\"* of|strong=\"H6440\"* Israel|strong=\"H3478\"* testifies|strong=\"H6030\"* to|strong=\"H3478\"* his|strong=\"H6440\"* face|strong=\"H6440\"*." + }, + { + "verseNum": 6, + "text": "They|strong=\"H1992\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H3068\"* their|strong=\"H3068\"* flocks|strong=\"H6629\"* and|strong=\"H3068\"* with|strong=\"H3068\"* their|strong=\"H3068\"* herds|strong=\"H1241\"* to|strong=\"H3212\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3588\"* are|strong=\"H1121\"* unfaithful to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 8, + "text": "“Blow|strong=\"H8628\"* the|strong=\"H8628\"* cornet|strong=\"H7782\"* in|strong=\"H7782\"* Gibeah|strong=\"H1390\"*," + }, + { + "verseNum": 9, + "text": "Ephraim will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"* in|strong=\"H3478\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H3117\"* rebuke|strong=\"H8433\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H5921\"* princes|strong=\"H8269\"* of|strong=\"H8269\"* Judah|strong=\"H3063\"* are|strong=\"H4325\"* like|strong=\"H1961\"* those|strong=\"H5921\"* who|strong=\"H3063\"* remove|strong=\"H5253\"* a|strong=\"H3068\"* landmark|strong=\"H1366\"*." + }, + { + "verseNum": 11, + "text": "Ephraim is|strong=\"H4941\"* oppressed|strong=\"H6231\"*," + }, + { + "verseNum": 12, + "text": "Therefore I|strong=\"H1004\"* am to|strong=\"H1004\"* Ephraim like|strong=\"H1004\"* a|strong=\"H3068\"* moth|strong=\"H6211\"*," + }, + { + "verseNum": 13, + "text": "“When|strong=\"H7200\"* Ephraim saw|strong=\"H7200\"* his|strong=\"H7971\"* sickness|strong=\"H2483\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H1004\"* be|strong=\"H1004\"* to|strong=\"H3212\"* Ephraim like|strong=\"H1004\"* a|strong=\"H3068\"* lion|strong=\"H3715\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5704\"* will|strong=\"H5704\"* go|strong=\"H3212\"* and|strong=\"H7725\"* return|strong=\"H7725\"* to|strong=\"H5704\"* my|strong=\"H1245\"* place|strong=\"H4725\"*," + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "“Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s return|strong=\"H7725\"* to|strong=\"H7725\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 2, + "text": "After|strong=\"H3117\"* two|strong=\"H2421\"* days|strong=\"H3117\"* he|strong=\"H3117\"* will|strong=\"H3117\"* revive|strong=\"H2421\"* us|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Let’s acknowledge|strong=\"H3045\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "“Ephraim, what|strong=\"H4100\"* shall|strong=\"H3063\"* I|strong=\"H4100\"* do|strong=\"H6213\"* to|strong=\"H1980\"* you|strong=\"H6213\"*?" + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* I|strong=\"H5921\"* have|strong=\"H5030\"* cut|strong=\"H2672\"* them|strong=\"H5921\"* to|strong=\"H3318\"* pieces|strong=\"H2672\"* with|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"*;" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* desire|strong=\"H2654\"* mercy|strong=\"H2617\"*, and|strong=\"H5930\"* not|strong=\"H3808\"* sacrifice|strong=\"H2077\"*;" + }, + { + "verseNum": 7, + "text": "But|strong=\"H1992\"* they|strong=\"H1992\"*, like|strong=\"H1992\"* Adam, have|strong=\"H1992\"* broken|strong=\"H5674\"* the|strong=\"H5674\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 8, + "text": "Gilead|strong=\"H1568\"* is|strong=\"H1818\"* a|strong=\"H3068\"* city|strong=\"H7151\"* of|strong=\"H1818\"* those who work|strong=\"H6466\"* iniquity;" + }, + { + "verseNum": 9, + "text": "As|strong=\"H6213\"* gangs of|strong=\"H1870\"* robbers wait|strong=\"H2442\"* to|strong=\"H6213\"* ambush a|strong=\"H3068\"* man," + }, + { + "verseNum": 10, + "text": "In|strong=\"H3478\"* the|strong=\"H7200\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* I|strong=\"H7200\"* have|strong=\"H3478\"* seen|strong=\"H7200\"* a|strong=\"H3068\"* horrible|strong=\"H8186\"* thing|strong=\"H8186\"*." + }, + { + "verseNum": 11, + "text": "“Also|strong=\"H1571\"*, Judah|strong=\"H3063\"*, there|strong=\"H7725\"* is|strong=\"H1571\"* a|strong=\"H3068\"* harvest|strong=\"H7105\"* appointed|strong=\"H7896\"* for|strong=\"H5971\"* you|strong=\"H7725\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H3588\"* I|strong=\"H3588\"* would|strong=\"H3478\"* heal|strong=\"H7495\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 2, + "text": "They|strong=\"H3605\"* don’t consider|strong=\"H2142\"* in|strong=\"H6440\"* their|strong=\"H3605\"* hearts|strong=\"H3824\"* that|strong=\"H3605\"* I|strong=\"H6258\"* remember|strong=\"H2142\"* all|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "They|strong=\"H4428\"* make|strong=\"H8055\"* the|strong=\"H8055\"* king|strong=\"H4428\"* glad|strong=\"H8055\"* with|strong=\"H4428\"* their|strong=\"H7451\"* wickedness|strong=\"H7451\"*," + }, + { + "verseNum": 4, + "text": "They|strong=\"H5704\"* are all|strong=\"H3605\"* adulterers|strong=\"H5003\"*." + }, + { + "verseNum": 5, + "text": "On|strong=\"H3117\"* the|strong=\"H3117\"* day|strong=\"H3117\"* of|strong=\"H4428\"* our|strong=\"H3027\"* king|strong=\"H4428\"*, the|strong=\"H3117\"* princes|strong=\"H8269\"* made|strong=\"H2470\"* themselves|strong=\"H2470\"* sick|strong=\"H2470\"* with|strong=\"H3117\"* the|strong=\"H3117\"* heat|strong=\"H2534\"* of|strong=\"H4428\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3605\"* prepared their|strong=\"H3605\"* heart|strong=\"H3820\"* like|strong=\"H1197\"* an|strong=\"H7126\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 7, + "text": "They|strong=\"H3605\"* are|strong=\"H4428\"* all|strong=\"H3605\"* hot|strong=\"H2552\"* as|strong=\"H3605\"* an|strong=\"H7121\"* oven|strong=\"H8574\"*," + }, + { + "verseNum": 8, + "text": "Ephraim mixes|strong=\"H1101\"* himself|strong=\"H1931\"* among|strong=\"H5971\"* the|strong=\"H1961\"* nations|strong=\"H5971\"*." + }, + { + "verseNum": 9, + "text": "Strangers|strong=\"H2114\"* have|strong=\"H3045\"* devoured his|strong=\"H3045\"* strength|strong=\"H3581\"*," + }, + { + "verseNum": 10, + "text": "The|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"* testifies|strong=\"H6030\"* to|strong=\"H7725\"* his|strong=\"H3605\"* face|strong=\"H6440\"*;" + }, + { + "verseNum": 11, + "text": "“Ephraim is|strong=\"H3820\"* like|strong=\"H1961\"* an|strong=\"H1961\"* easily deceived|strong=\"H6601\"* dove|strong=\"H3123\"*, without|strong=\"H3123\"* understanding|strong=\"H3820\"*." + }, + { + "verseNum": 12, + "text": "When|strong=\"H5921\"* they|strong=\"H5921\"* go|strong=\"H3212\"*, I|strong=\"H5921\"* will|strong=\"H8064\"* spread|strong=\"H6566\"* my|strong=\"H5921\"* net|strong=\"H7568\"* on|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 13, + "text": "Woe to|strong=\"H1696\"* them|strong=\"H1992\"*!" + }, + { + "verseNum": 14, + "text": "They|strong=\"H3588\"* haven’t cried|strong=\"H2199\"* to|strong=\"H5921\"* me|strong=\"H5921\"* with|strong=\"H5921\"* their|strong=\"H5921\"* heart|strong=\"H3820\"*," + }, + { + "verseNum": 15, + "text": "Though I have|strong=\"H2803\"* taught|strong=\"H3256\"* and|strong=\"H2388\"* strengthened|strong=\"H2388\"* their|strong=\"H2388\"* arms|strong=\"H2220\"*," + }, + { + "verseNum": 16, + "text": "They|strong=\"H3808\"* return|strong=\"H7725\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* to|strong=\"H7725\"* the|strong=\"H7725\"* Most High|strong=\"H5920\"*." + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "“Put|strong=\"H3068\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* to|strong=\"H3068\"* your|strong=\"H3068\"* lips|strong=\"H2441\"*!" + }, + { + "verseNum": 2, + "text": "They|strong=\"H3478\"* cry|strong=\"H2199\"* to|strong=\"H3478\"* me|strong=\"H3045\"*, ‘My|strong=\"H3045\"* God, we|strong=\"H3068\"*, Israel|strong=\"H3478\"*, acknowledge|strong=\"H3045\"* you|strong=\"H3045\"*!’" + }, + { + "verseNum": 3, + "text": "Israel|strong=\"H3478\"* has|strong=\"H3478\"* cast|strong=\"H2186\"* off|strong=\"H2186\"* that|strong=\"H3478\"* which|strong=\"H3478\"* is|strong=\"H2896\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 4, + "text": "They|strong=\"H1992\"* have|strong=\"H3045\"* set|strong=\"H6213\"* up|strong=\"H6213\"* kings|strong=\"H4427\"*, but|strong=\"H3808\"* not|strong=\"H3808\"* by|strong=\"H2091\"* me|strong=\"H4480\"*." + }, + { + "verseNum": 5, + "text": "Let|strong=\"H3808\"* Samaria|strong=\"H8111\"* throw out|strong=\"H5704\"* his|strong=\"H3808\"* calf|strong=\"H5695\"* idol!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* this|strong=\"H6213\"* is|strong=\"H1931\"* even|strong=\"H3588\"* from|strong=\"H3478\"* Israel|strong=\"H3478\"*!" + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* they|strong=\"H3588\"* sow|strong=\"H2232\"* the|strong=\"H3588\"* wind|strong=\"H7307\"*," + }, + { + "verseNum": 8, + "text": "Israel|strong=\"H3478\"* is|strong=\"H3478\"* swallowed|strong=\"H1104\"* up|strong=\"H1104\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3588\"* gone|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* Assyria," + }, + { + "verseNum": 10, + "text": "But|strong=\"H3588\"* although|strong=\"H3588\"* they|strong=\"H3588\"* sold themselves|strong=\"H6908\"* among the|strong=\"H3588\"* nations|strong=\"H1471\"*," + }, + { + "verseNum": 11, + "text": "Because|strong=\"H3588\"* Ephraim has|strong=\"H1961\"* multiplied|strong=\"H7235\"* altars|strong=\"H4196\"* for|strong=\"H3588\"* sinning|strong=\"H2398\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H3644\"* wrote|strong=\"H3789\"* for|strong=\"H2803\"* him|strong=\"H3644\"* the|strong=\"H3789\"* many things|strong=\"H3644\"* of|strong=\"H8451\"* my|strong=\"H2803\"* law|strong=\"H8451\"*," + }, + { + "verseNum": 13, + "text": "As|strong=\"H3068\"* for|strong=\"H4714\"* the|strong=\"H3068\"* sacrifices|strong=\"H2077\"* of|strong=\"H3068\"* my|strong=\"H3068\"* offerings|strong=\"H2077\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H6213\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* forgotten|strong=\"H7911\"* his|strong=\"H7971\"* Maker|strong=\"H6213\"* and|strong=\"H3063\"* built|strong=\"H1129\"* palaces|strong=\"H1964\"*;" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "Don’t rejoice|strong=\"H8055\"*, Israel|strong=\"H3478\"*, to|strong=\"H3478\"* jubilation like|strong=\"H3478\"* the|strong=\"H3605\"* nations|strong=\"H5971\"*;" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3808\"* threshing|strong=\"H1637\"* floor|strong=\"H1637\"* and|strong=\"H8492\"* the|strong=\"H3808\"* wine|strong=\"H8492\"* press|strong=\"H3342\"* won’t feed|strong=\"H7462\"* them|strong=\"H7462\"*," + }, + { + "verseNum": 3, + "text": "They|strong=\"H3068\"* won’t dwell|strong=\"H3427\"* in|strong=\"H3427\"* Yahweh|strong=\"H3068\"*’s land;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H3588\"* won’t pour|strong=\"H5258\"* out|strong=\"H5258\"* wine|strong=\"H3196\"* offerings|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "What|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H3117\"* do|strong=\"H6213\"* in|strong=\"H3068\"* the|strong=\"H6213\"* day|strong=\"H3117\"* of|strong=\"H3068\"* solemn|strong=\"H4150\"* assembly|strong=\"H4150\"*," + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, when|strong=\"H3588\"* they|strong=\"H3588\"* flee destruction|strong=\"H7701\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H3117\"* visitation|strong=\"H6486\"* have|strong=\"H3045\"* come|strong=\"H3478\"*." + }, + { + "verseNum": 8, + "text": "A|strong=\"H3068\"* prophet|strong=\"H5030\"* watches over|strong=\"H5921\"* Ephraim with|strong=\"H5973\"* my|strong=\"H3605\"* God." + }, + { + "verseNum": 9, + "text": "They|strong=\"H3117\"* have|strong=\"H5771\"* deeply|strong=\"H6009\"* corrupted|strong=\"H7843\"* themselves|strong=\"H5771\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H7200\"* found|strong=\"H4672\"* Israel|strong=\"H3478\"* like|strong=\"H1961\"* grapes|strong=\"H6025\"* in|strong=\"H3478\"* the|strong=\"H7200\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 11, + "text": "As for|strong=\"H3205\"* Ephraim, their glory|strong=\"H3519\"* will|strong=\"H3519\"* fly|strong=\"H5774\"* away|strong=\"H5774\"* like|strong=\"H5774\"* a|strong=\"H3068\"* bird|strong=\"H5775\"*." + }, + { + "verseNum": 12, + "text": "Though|strong=\"H3588\"* they|strong=\"H1992\"* bring|strong=\"H1431\"* up|strong=\"H1431\"* their|strong=\"H1992\"* children|strong=\"H1121\"*," + }, + { + "verseNum": 13, + "text": "I|strong=\"H7200\"* have|strong=\"H1121\"* seen|strong=\"H7200\"* Ephraim, like|strong=\"H3318\"* Tyre|strong=\"H6865\"*, planted|strong=\"H8362\"* in|strong=\"H1121\"* a|strong=\"H3068\"* pleasant place|strong=\"H5116\"*;" + }, + { + "verseNum": 14, + "text": "Give|strong=\"H5414\"* them|strong=\"H5414\"*—Yahweh|strong=\"H3068\"* what|strong=\"H4100\"* will|strong=\"H3068\"* you|strong=\"H5414\"* give|strong=\"H5414\"*?" + }, + { + "verseNum": 15, + "text": "“All|strong=\"H3605\"* their|strong=\"H3605\"* wickedness|strong=\"H7451\"* is|strong=\"H3605\"* in|strong=\"H5921\"* Gilgal|strong=\"H1537\"*;" + }, + { + "verseNum": 16, + "text": "Ephraim is|strong=\"H1571\"* struck|strong=\"H5221\"*." + }, + { + "verseNum": 17, + "text": "My|strong=\"H8085\"* God|strong=\"H3808\"* will|strong=\"H1961\"* cast|strong=\"H3988\"* them|strong=\"H1961\"* away|strong=\"H3988\"*, because|strong=\"H3588\"* they|strong=\"H3588\"* didn’t listen|strong=\"H8085\"* to|strong=\"H1961\"* him|strong=\"H8085\"*;" + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Israel|strong=\"H3478\"* is|strong=\"H2896\"* a|strong=\"H3068\"* luxuriant|strong=\"H1238\"* vine|strong=\"H1612\"* that|strong=\"H3478\"* produces|strong=\"H7737\"* his|strong=\"H3478\"* fruit|strong=\"H6529\"*." + }, + { + "verseNum": 2, + "text": "Their|strong=\"H7703\"* heart|strong=\"H3820\"* is|strong=\"H1931\"* divided|strong=\"H2505\"*." + }, + { + "verseNum": 3, + "text": "Surely|strong=\"H3588\"* now|strong=\"H6258\"* they|strong=\"H3588\"* will|strong=\"H3068\"* say, “We|strong=\"H3588\"* have|strong=\"H3068\"* no|strong=\"H3808\"* king|strong=\"H4428\"*; for|strong=\"H3588\"* we|strong=\"H3068\"* don’t fear|strong=\"H3372\"* Yahweh|strong=\"H3068\"*;" + }, + { + "verseNum": 4, + "text": "They|strong=\"H5921\"* make|strong=\"H3772\"* promises|strong=\"H1697\"*, swearing falsely|strong=\"H7723\"* in|strong=\"H5921\"* making|strong=\"H3772\"* covenants|strong=\"H1285\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H5921\"* inhabitants|strong=\"H7934\"* of|strong=\"H4480\"* Samaria|strong=\"H8111\"* will|strong=\"H5971\"* be|strong=\"H5971\"* in|strong=\"H5921\"* terror for|strong=\"H3588\"* the|strong=\"H5921\"* calves|strong=\"H5697\"* of|strong=\"H4480\"* Beth Aven," + }, + { + "verseNum": 6, + "text": "It|strong=\"H3947\"* also|strong=\"H1571\"* will|strong=\"H4428\"* be|strong=\"H3478\"* carried|strong=\"H2986\"* to|strong=\"H3478\"* Assyria for|strong=\"H4428\"* a|strong=\"H3068\"* present|strong=\"H4503\"* to|strong=\"H3478\"* a|strong=\"H3068\"* great king|strong=\"H4428\"*." + }, + { + "verseNum": 7, + "text": "Samaria|strong=\"H8111\"* and|strong=\"H4428\"* her|strong=\"H5921\"* king|strong=\"H4428\"* float away" + }, + { + "verseNum": 8, + "text": "The|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* also|strong=\"H3478\"* of|strong=\"H2022\"* Aven, the|strong=\"H5921\"* sin|strong=\"H2403\"* of|strong=\"H2022\"* Israel|strong=\"H3478\"*, will|strong=\"H3478\"* be|strong=\"H3478\"* destroyed|strong=\"H8045\"*." + }, + { + "verseNum": 9, + "text": "“Israel|strong=\"H3478\"*, you|strong=\"H5921\"* have|strong=\"H1121\"* sinned|strong=\"H2398\"* from|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Gibeah|strong=\"H1390\"*." + }, + { + "verseNum": 10, + "text": "When|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H5869\"* my|strong=\"H5921\"* desire, I|strong=\"H5921\"* will|strong=\"H5971\"* chastise|strong=\"H3256\"* them|strong=\"H5921\"*;" + }, + { + "verseNum": 11, + "text": "Ephraim is|strong=\"H3063\"* a|strong=\"H3068\"* trained|strong=\"H3925\"* heifer|strong=\"H5697\"* that|strong=\"H3063\"* loves to|strong=\"H5921\"* thresh|strong=\"H1758\"*," + }, + { + "verseNum": 12, + "text": "Sow|strong=\"H2232\"* to|strong=\"H5704\"* yourselves|strong=\"H3068\"* in|strong=\"H3068\"* righteousness|strong=\"H6666\"*," + }, + { + "verseNum": 13, + "text": "You|strong=\"H3588\"* have|strong=\"H3588\"* plowed|strong=\"H2790\"* wickedness|strong=\"H7562\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* a|strong=\"H3068\"* battle|strong=\"H4421\"* roar will|strong=\"H5971\"* arise|strong=\"H6965\"* among|strong=\"H5921\"* your|strong=\"H3605\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 15, + "text": "So|strong=\"H6213\"* Bethel|strong=\"H1008\"* will|strong=\"H4428\"* do|strong=\"H6213\"* to|strong=\"H3478\"* you|strong=\"H6440\"* because|strong=\"H6440\"* of|strong=\"H4428\"* your|strong=\"H6440\"* great|strong=\"H6213\"* wickedness|strong=\"H7451\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "“When|strong=\"H3588\"* Israel|strong=\"H3478\"* was|strong=\"H3478\"* a|strong=\"H3068\"* child|strong=\"H5288\"*, then|strong=\"H3588\"* I|strong=\"H3588\"* loved him|strong=\"H7121\"*," + }, + { + "verseNum": 2, + "text": "They|strong=\"H3651\"* called|strong=\"H7121\"* to|strong=\"H1980\"* them|strong=\"H6440\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* went|strong=\"H1980\"* from|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 3, + "text": "Yet|strong=\"H3588\"* I|strong=\"H3588\"* taught|strong=\"H3045\"* Ephraim to|strong=\"H5921\"* walk." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* drew|strong=\"H4900\"* them|strong=\"H5921\"* with|strong=\"H5921\"* cords|strong=\"H5688\"* of|strong=\"H5921\"* a|strong=\"H3068\"* man, with|strong=\"H5921\"* ties of|strong=\"H5921\"* love;" + }, + { + "verseNum": 5, + "text": "“They|strong=\"H3588\"* won’t return|strong=\"H7725\"* into|strong=\"H7725\"* the|strong=\"H3588\"* land of|strong=\"H4428\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 6, + "text": "The|strong=\"H3615\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* fall|strong=\"H2342\"* on|strong=\"H5892\"* their|strong=\"H3615\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "My|strong=\"H7311\"* people|strong=\"H5971\"* are|strong=\"H5971\"* determined to|strong=\"H7121\"* turn|strong=\"H5971\"* from|strong=\"H5971\"* me|strong=\"H7121\"*." + }, + { + "verseNum": 8, + "text": "“How can I|strong=\"H5414\"* give|strong=\"H5414\"* you|strong=\"H5414\"* up|strong=\"H5414\"*, Ephraim?" + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H5892\"* not|strong=\"H3808\"* execute|strong=\"H6213\"* the|strong=\"H3588\"* fierceness|strong=\"H2740\"* of|strong=\"H5892\"* my|strong=\"H7725\"* anger|strong=\"H2740\"*." + }, + { + "verseNum": 10, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* after|strong=\"H3588\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H2729\"* trembling|strong=\"H2729\"* like|strong=\"H1004\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* out|strong=\"H5921\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 12, + "text": "Ephraim surrounds me with falsehood," + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "Ephraim feeds on|strong=\"H1004\"* wind," + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3117\"* has|strong=\"H3117\"* a|strong=\"H3068\"* controversy with|strong=\"H5973\"* Judah," + }, + { + "verseNum": 3, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* womb he|strong=\"H3068\"* took|strong=\"H7725\"* his|strong=\"H3068\"* brother by|strong=\"H5921\"* the|strong=\"H5921\"* heel," + }, + { + "verseNum": 4, + "text": "Indeed, he struggled with|strong=\"H8280\"* the angel, and prevailed;" + }, + { + "verseNum": 5, + "text": "even Yahweh|strong=\"H3068\"*, the|strong=\"H1696\"* God|strong=\"H1008\"* of|strong=\"H4397\"* Armies." + }, + { + "verseNum": 6, + "text": "Therefore|strong=\"H3068\"* turn to|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "A|strong=\"H3068\"* merchant has|strong=\"H4941\"* dishonest scales in|strong=\"H7725\"* his|strong=\"H8104\"* hand." + }, + { + "verseNum": 8, + "text": "Ephraim said, “Surely I|strong=\"H3027\"* have|strong=\"H3027\"* become|strong=\"H3027\"* rich." + }, + { + "verseNum": 9, + "text": "“But|strong=\"H3808\"* I|strong=\"H3808\"* am Yahweh|strong=\"H3068\"* your|strong=\"H3605\"* God|strong=\"H3808\"* from|strong=\"H3605\"* the|strong=\"H3605\"* land of|strong=\"H3605\"* Egypt." + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* have|strong=\"H3068\"* also|strong=\"H3068\"* spoken to|strong=\"H3068\"* the|strong=\"H3068\"* prophets," + }, + { + "verseNum": 11, + "text": "If Gilead is|strong=\"H3027\"* wicked," + }, + { + "verseNum": 12, + "text": "Jacob fled into|strong=\"H5921\"* the|strong=\"H5921\"* country|strong=\"H7704\"* of|strong=\"H7704\"* Aram." + }, + { + "verseNum": 13, + "text": "By|strong=\"H3478\"* a|strong=\"H3068\"* prophet Yahweh|strong=\"H3068\"* brought|strong=\"H3478\"* Israel|strong=\"H3478\"* up out of|strong=\"H7704\"* Egypt," + }, + { + "verseNum": 14, + "text": "Ephraim has|strong=\"H3068\"* bitterly provoked anger." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "When|strong=\"H1696\"* Ephraim spoke|strong=\"H1696\"*, there was|strong=\"H3478\"* trembling|strong=\"H7578\"*." + }, + { + "verseNum": 2, + "text": "Now|strong=\"H6258\"* they|strong=\"H1992\"* sin|strong=\"H2398\"* more|strong=\"H3254\"* and|strong=\"H3701\"* more|strong=\"H3254\"*," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H1961\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H1961\"* morning|strong=\"H1242\"* mist|strong=\"H6051\"*," + }, + { + "verseNum": 4, + "text": "“Yet|strong=\"H3068\"* I|strong=\"H3045\"* am|strong=\"H3068\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"* from|strong=\"H3068\"* the|strong=\"H3068\"* land of|strong=\"H3068\"* Egypt|strong=\"H4714\"*;" + }, + { + "verseNum": 5, + "text": "I|strong=\"H3045\"* knew|strong=\"H3045\"* you|strong=\"H3045\"* in|strong=\"H3045\"* the|strong=\"H3045\"* wilderness|strong=\"H4057\"*," + }, + { + "verseNum": 6, + "text": "According|strong=\"H5921\"* to|strong=\"H5921\"* their|strong=\"H5921\"* pasture|strong=\"H4830\"*, so|strong=\"H3651\"* were|strong=\"H5921\"* they|strong=\"H3651\"* filled|strong=\"H7646\"*;" + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* am|strong=\"H1961\"* like|strong=\"H3644\"* a|strong=\"H3068\"* lion|strong=\"H7826\"* to|strong=\"H1961\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H8033\"* will|strong=\"H3820\"* meet|strong=\"H6298\"* them|strong=\"H6298\"* like|strong=\"H3820\"* a|strong=\"H3068\"* bear|strong=\"H1677\"* that|strong=\"H2416\"* is|strong=\"H3820\"* bereaved|strong=\"H7909\"* of|strong=\"H7704\"* her|strong=\"H7167\"* cubs|strong=\"H7909\"*," + }, + { + "verseNum": 9, + "text": "You|strong=\"H3588\"* are|strong=\"H3478\"* destroyed|strong=\"H7843\"*, Israel|strong=\"H3478\"*, because|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3478\"* against me|strong=\"H3588\"*," + }, + { + "verseNum": 10, + "text": "Where is|strong=\"H3605\"* your|strong=\"H3605\"* king|strong=\"H4428\"* now|strong=\"H5414\"*, that|strong=\"H3605\"* he|strong=\"H3605\"* may|strong=\"H4428\"* save|strong=\"H3467\"* you|strong=\"H5414\"* in|strong=\"H4428\"* all|strong=\"H3605\"* your|strong=\"H3605\"* cities|strong=\"H5892\"*?" + }, + { + "verseNum": 11, + "text": "I|strong=\"H5414\"* have|strong=\"H5414\"* given|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* king|strong=\"H4428\"* in|strong=\"H4428\"* my|strong=\"H5414\"* anger|strong=\"H5678\"*," + }, + { + "verseNum": 12, + "text": "The|strong=\"H6887\"* guilt|strong=\"H5771\"* of|strong=\"H2403\"* Ephraim is|strong=\"H5771\"* stored|strong=\"H6845\"* up|strong=\"H6845\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* sorrows|strong=\"H2256\"* of|strong=\"H1121\"* a|strong=\"H3068\"* travailing woman|strong=\"H3205\"* will|strong=\"H1121\"* come|strong=\"H3205\"* on|strong=\"H5975\"* him|strong=\"H3205\"*." + }, + { + "verseNum": 14, + "text": "I|strong=\"H3027\"* will|strong=\"H5869\"* ransom|strong=\"H6299\"* them|strong=\"H3027\"* from|strong=\"H3027\"* the|strong=\"H3027\"* power|strong=\"H3027\"* of|strong=\"H3027\"* Sheol|strong=\"H7585\"*.+ 13:14 Sheol is the place of the dead.*" + }, + { + "verseNum": 15, + "text": "Though|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* fruitful|strong=\"H6500\"* among|strong=\"H6500\"* his|strong=\"H3605\"* brothers, an|strong=\"H3588\"* east|strong=\"H6921\"* wind|strong=\"H7307\"* will|strong=\"H3068\"* come|strong=\"H5927\"*," + }, + { + "verseNum": 16, + "text": "Samaria will bear her guilt," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Israel, return to|strong=\"H3588\"* Yahweh|strong=\"H3068\"* your|strong=\"H3588\"* God;" + }, + { + "verseNum": 2, + "text": "Take|strong=\"H7725\"* words with|strong=\"H3068\"* you|strong=\"H3588\"*, and|strong=\"H3478\"* return|strong=\"H7725\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Assyria can|strong=\"H3947\"*’t save us|strong=\"H7725\"*." + }, + { + "verseNum": 4, + "text": "“I|strong=\"H5921\"* will|strong=\"H3027\"* heal their|strong=\"H5921\"* waywardness." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3588\"* will|strong=\"H7725\"* be|strong=\"H7725\"* like|strong=\"H7725\"* the|strong=\"H3588\"* dew to|strong=\"H7725\"* Israel." + }, + { + "verseNum": 6, + "text": "His|strong=\"H5221\"* branches will|strong=\"H1961\"* spread," + }, + { + "verseNum": 7, + "text": "Men will|strong=\"H1961\"* dwell in|strong=\"H3212\"* his|strong=\"H1961\"* shade." + }, + { + "verseNum": 8, + "text": "Ephraim, what have|strong=\"H1612\"* I|strong=\"H6738\"* to|strong=\"H7725\"* do|strong=\"H1612\"* any more|strong=\"H7725\"* with|strong=\"H3427\"* idols?" + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4672\"* is|strong=\"H4100\"* wise, that|strong=\"H4480\"* he|strong=\"H4480\"* may|strong=\"H4480\"* understand these things?" + } + ] + } + ] + }, + { + "name": "Joel", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Joel|strong=\"H3100\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Pethuel|strong=\"H6602\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H3605\"* elders|strong=\"H2205\"*," + }, + { + "verseNum": 3, + "text": "Tell|strong=\"H5608\"* your|strong=\"H5921\"* children|strong=\"H1121\"* about|strong=\"H5921\"* it|strong=\"H5921\"*," + }, + { + "verseNum": 4, + "text": "What|strong=\"H3499\"* the|strong=\"H3499\"* swarming locust|strong=\"H3218\"* has|strong=\"H3218\"* left|strong=\"H3499\"*, the|strong=\"H3499\"* great locust|strong=\"H3218\"* has|strong=\"H3218\"* eaten." + }, + { + "verseNum": 5, + "text": "Wake|strong=\"H6974\"* up|strong=\"H5921\"*, you|strong=\"H3588\"* drunkards|strong=\"H7910\"*, and|strong=\"H6310\"* weep|strong=\"H1058\"*!" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"* has|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H5921\"* my|strong=\"H5921\"* land, strong|strong=\"H6099\"*, and|strong=\"H1471\"* without|strong=\"H3588\"* number|strong=\"H4557\"*." + }, + { + "verseNum": 7, + "text": "He|strong=\"H7760\"* has|strong=\"H1612\"* laid|strong=\"H7760\"* my|strong=\"H7760\"* vine|strong=\"H1612\"* waste|strong=\"H8047\"*," + }, + { + "verseNum": 8, + "text": "Mourn|strong=\"H5921\"* like|strong=\"H5921\"* a|strong=\"H3068\"* virgin|strong=\"H1330\"* dressed|strong=\"H2296\"* in|strong=\"H5921\"* sackcloth|strong=\"H8242\"*" + }, + { + "verseNum": 9, + "text": "The|strong=\"H3068\"* meal|strong=\"H4503\"* offering|strong=\"H4503\"* and|strong=\"H3068\"* the|strong=\"H3068\"* drink|strong=\"H5262\"* offering|strong=\"H4503\"* are|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H3588\"* field|strong=\"H7704\"* is|strong=\"H7704\"* laid waste|strong=\"H7703\"*." + }, + { + "verseNum": 11, + "text": "Be|strong=\"H3588\"* confounded, you|strong=\"H3588\"* farmers!" + }, + { + "verseNum": 12, + "text": "The|strong=\"H3605\"* vine|strong=\"H1612\"* has|strong=\"H3588\"* dried|strong=\"H3001\"* up|strong=\"H3001\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"* withered|strong=\"H3001\"*—" + }, + { + "verseNum": 13, + "text": "Put|strong=\"H2296\"* on|strong=\"H2296\"* sackcloth|strong=\"H8242\"* and|strong=\"H1004\"* mourn|strong=\"H5594\"*, you|strong=\"H3588\"* priests|strong=\"H3548\"*!" + }, + { + "verseNum": 14, + "text": "Sanctify|strong=\"H6942\"* a|strong=\"H3068\"* fast|strong=\"H6685\"*." + }, + { + "verseNum": 15, + "text": "Alas for|strong=\"H3588\"* the|strong=\"H3588\"* day|strong=\"H3117\"*!" + }, + { + "verseNum": 16, + "text": "Isn’t the|strong=\"H3772\"* food|strong=\"H1004\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* before|strong=\"H5048\"* our|strong=\"H5048\"* eyes|strong=\"H5869\"*," + }, + { + "verseNum": 17, + "text": "The|strong=\"H3588\"* seeds|strong=\"H6507\"* rot under|strong=\"H8478\"* their|strong=\"H3588\"* clods|strong=\"H4053\"*." + }, + { + "verseNum": 18, + "text": "How|strong=\"H4100\"* the|strong=\"H3588\"* animals groan!" + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3588\"* cry|strong=\"H7121\"* to|strong=\"H3068\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 20, + "text": "Yes|strong=\"H3588\"*, the|strong=\"H3588\"* animals of|strong=\"H4325\"* the|strong=\"H3588\"* field|strong=\"H7704\"* pant|strong=\"H6165\"* to|strong=\"H4325\"* you|strong=\"H3588\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Blow|strong=\"H8628\"* the|strong=\"H3605\"* trumpet|strong=\"H7782\"* in|strong=\"H3427\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "A|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* gloominess," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* fire|strong=\"H3857\"* devours before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 4, + "text": "Their|strong=\"H3651\"* appearance|strong=\"H4758\"* is|strong=\"H3651\"* as|strong=\"H3651\"* the|strong=\"H3651\"* appearance|strong=\"H4758\"* of|strong=\"H4758\"* horses|strong=\"H5483\"*," + }, + { + "verseNum": 5, + "text": "Like|strong=\"H7540\"* the|strong=\"H5921\"* noise|strong=\"H6963\"* of|strong=\"H2022\"* chariots|strong=\"H4818\"* on|strong=\"H5921\"* the|strong=\"H5921\"* tops|strong=\"H7218\"* of|strong=\"H2022\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, they|strong=\"H5921\"* leap|strong=\"H7540\"*," + }, + { + "verseNum": 6, + "text": "At|strong=\"H6908\"* their|strong=\"H3605\"* presence|strong=\"H6440\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* are|strong=\"H5971\"* in|strong=\"H6440\"* anguish|strong=\"H2342\"*." + }, + { + "verseNum": 7, + "text": "They|strong=\"H3808\"* run|strong=\"H7323\"* like|strong=\"H1870\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*." + }, + { + "verseNum": 8, + "text": "One|strong=\"H3808\"* doesn’t jostle|strong=\"H1766\"* another|strong=\"H3808\"*." + }, + { + "verseNum": 9, + "text": "They|strong=\"H7323\"* rush|strong=\"H8264\"* on|strong=\"H5927\"* the|strong=\"H5927\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H6440\"* earth|strong=\"H8121\"* quakes|strong=\"H7264\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* thunders|strong=\"H6963\"* his|strong=\"H5414\"* voice|strong=\"H6963\"* before|strong=\"H6440\"* his|strong=\"H5414\"* army|strong=\"H4264\"*," + }, + { + "verseNum": 12, + "text": "“Yet|strong=\"H1571\"* even|strong=\"H1571\"* now|strong=\"H6258\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “turn|strong=\"H7725\"* to|strong=\"H5704\"* me|strong=\"H7725\"* with|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* heart|strong=\"H3824\"*," + }, + { + "verseNum": 13, + "text": "Tear|strong=\"H7167\"* your|strong=\"H3068\"* heart|strong=\"H3824\"* and|strong=\"H3068\"* not|strong=\"H3588\"* your|strong=\"H3068\"* garments," + }, + { + "verseNum": 14, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"*? He|strong=\"H3068\"* may|strong=\"H3068\"* turn|strong=\"H7725\"* and|strong=\"H3068\"* relent|strong=\"H5162\"*," + }, + { + "verseNum": 15, + "text": "Blow|strong=\"H8628\"* the|strong=\"H7121\"* trumpet|strong=\"H7782\"* in|strong=\"H7121\"* Zion|strong=\"H6726\"*!" + }, + { + "verseNum": 16, + "text": "Gather|strong=\"H6908\"* the|strong=\"H3318\"* people|strong=\"H5971\"*." + }, + { + "verseNum": 17, + "text": "Let|strong=\"H5414\"* the|strong=\"H5921\"* priests|strong=\"H3548\"*, the|strong=\"H5921\"* ministers|strong=\"H8334\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, weep|strong=\"H1058\"* between|strong=\"H5921\"* the|strong=\"H5921\"* porch and|strong=\"H3068\"* the|strong=\"H5921\"* altar|strong=\"H4196\"*," + }, + { + "verseNum": 18, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H5921\"* his|strong=\"H3068\"* land," + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* his|strong=\"H5414\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 20, + "text": "But|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3220\"* remove|strong=\"H7368\"* the|strong=\"H6440\"* northern|strong=\"H6830\"* army|strong=\"H5927\"* far|strong=\"H7368\"* away|strong=\"H5080\"* from|strong=\"H6440\"* you|strong=\"H3588\"*," + }, + { + "verseNum": 21, + "text": "Land, don’t be|strong=\"H3068\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 22, + "text": "Don’t be|strong=\"H5414\"* afraid|strong=\"H3372\"*, you|strong=\"H3588\"* animals of|strong=\"H7704\"* the|strong=\"H3588\"* field|strong=\"H7704\"*;" + }, + { + "verseNum": 23, + "text": "“Be|strong=\"H3068\"* glad|strong=\"H8055\"* then|strong=\"H5414\"*, you|strong=\"H3588\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 24, + "text": "The|strong=\"H4390\"* threshing|strong=\"H1637\"* floors|strong=\"H1637\"* will|strong=\"H3342\"* be full|strong=\"H4390\"* of|strong=\"H4390\"* wheat|strong=\"H1250\"*," + }, + { + "verseNum": 25, + "text": "I|strong=\"H8141\"* will|strong=\"H2428\"* restore|strong=\"H7999\"* to|strong=\"H7971\"* you|strong=\"H7971\"* the|strong=\"H7971\"* years|strong=\"H8141\"* that|strong=\"H8141\"* the|strong=\"H7971\"* swarming locust|strong=\"H3218\"* has|strong=\"H3218\"* eaten," + }, + { + "verseNum": 26, + "text": "You|strong=\"H6213\"* will|strong=\"H3068\"* have|strong=\"H3068\"* plenty|strong=\"H7646\"* to|strong=\"H3068\"* eat and|strong=\"H3068\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*," + }, + { + "verseNum": 27, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* among|strong=\"H7130\"* Israel|strong=\"H3478\"*," + }, + { + "verseNum": 28, + "text": "“It will happen afterward, that I will pour out my Spirit on all flesh;" + }, + { + "verseNum": 29, + "text": "And also on the servants and on the handmaids in those days," + }, + { + "verseNum": 30, + "text": "I will show wonders in the heavens and in the earth:" + }, + { + "verseNum": 31, + "text": "The sun will be turned into darkness," + }, + { + "verseNum": 32, + "text": "It will happen that whoever will call on Yahweh|strong=\"H3068\"*’s name shall be saved;" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“For|strong=\"H5921\"*, behold|strong=\"H7200\"*, in|strong=\"H5921\"* those|strong=\"H3605\"* days," + }, + { + "verseNum": 2, + "text": "I|strong=\"H3117\"* will|strong=\"H5650\"* gather all|strong=\"H5921\"* nations," + }, + { + "verseNum": 3, + "text": "and|strong=\"H8064\"* have|strong=\"H5414\"* cast|strong=\"H5414\"* lots for|strong=\"H8064\"* my|strong=\"H5414\"* people|strong=\"H1818\"*," + }, + { + "verseNum": 4, + "text": "“Yes, and|strong=\"H3068\"* what|strong=\"H3372\"* are|strong=\"H3117\"* you|strong=\"H6440\"* to|strong=\"H3068\"* me|strong=\"H6440\"*, Tyre and|strong=\"H3068\"* Sidon," + }, + { + "verseNum": 5, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H1961\"* taken|strong=\"H1961\"* my|strong=\"H3605\"* silver and|strong=\"H3068\"* my|strong=\"H3605\"* gold," + }, + { + "verseNum": 6, + "text": "and have sold the children of Judah and the children of Jerusalem to the sons of the Greeks," + }, + { + "verseNum": 7, + "text": "Behold, I will stir them up out of the place where you have sold them," + }, + { + "verseNum": 8, + "text": "and I will sell your sons and your daughters into the hands of the children of Judah," + }, + { + "verseNum": 9, + "text": "Proclaim this among the nations:" + }, + { + "verseNum": 10, + "text": "Beat your plowshares into swords," + }, + { + "verseNum": 11, + "text": "Hurry and come, all you surrounding nations," + }, + { + "verseNum": 12, + "text": "“Let the nations arouse themselves," + }, + { + "verseNum": 13, + "text": "Put in the sickle;" + }, + { + "verseNum": 14, + "text": "Multitudes, multitudes in the valley of decision!" + }, + { + "verseNum": 15, + "text": "The sun and the moon are darkened," + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* will roar from Zion," + }, + { + "verseNum": 17, + "text": "“So you will know that I am Yahweh|strong=\"H3068\"*, your God," + }, + { + "verseNum": 18, + "text": "It will happen in that day," + }, + { + "verseNum": 19, + "text": "Egypt will be a|strong=\"H3068\"* desolation" + }, + { + "verseNum": 20, + "text": "But Judah will be inhabited forever," + }, + { + "verseNum": 21, + "text": "I will cleanse their blood" + } + ] + } + ] + }, + { + "name": "Amos", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H6440\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Amos|strong=\"H5986\"*, who|strong=\"H1121\"* was|strong=\"H1961\"* among|strong=\"H5921\"* the|strong=\"H6440\"* herdsmen of|strong=\"H1121\"* Tekoa|strong=\"H8620\"*, which|strong=\"H1697\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* and|strong=\"H1121\"* in|strong=\"H8141\"* the|strong=\"H6440\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Jeroboam|strong=\"H3379\"* the|strong=\"H6440\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Joash|strong=\"H3101\"*, king|strong=\"H4428\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, two years|strong=\"H8141\"* before|strong=\"H6440\"* the|strong=\"H6440\"* earthquake|strong=\"H7494\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said:" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "but I|strong=\"H1004\"* will|strong=\"H1004\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire into the|strong=\"H7971\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Hazael|strong=\"H2371\"*," + }, + { + "verseNum": 5, + "text": "I|strong=\"H3772\"* will|strong=\"H3068\"* break|strong=\"H7665\"* the|strong=\"H3068\"* bar|strong=\"H1280\"* of|strong=\"H1004\"* Damascus|strong=\"H1834\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "but I|strong=\"H7971\"* will|strong=\"H2346\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* the|strong=\"H7971\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Gaza|strong=\"H5804\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* will|strong=\"H3027\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* inhabitant|strong=\"H3427\"* from|strong=\"H7725\"* Ashdod," + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 10, + "text": "but I|strong=\"H7971\"* will|strong=\"H2346\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* the|strong=\"H7971\"* wall|strong=\"H2346\"* of|strong=\"H2346\"* Tyre|strong=\"H6865\"*," + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "but I|strong=\"H7971\"* will|strong=\"H1224\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Teman|strong=\"H8487\"*," + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 14, + "text": "But|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3117\"* kindle|strong=\"H3341\"* a|strong=\"H3068\"* fire|strong=\"H3341\"* in|strong=\"H3117\"* the|strong=\"H3117\"* wall|strong=\"H2346\"* of|strong=\"H3117\"* Rabbah|strong=\"H7237\"*," + }, + { + "verseNum": 15, + "text": "and|strong=\"H1980\"* their|strong=\"H3068\"* king|strong=\"H4428\"* will|strong=\"H3068\"* go|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H1473\"*," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 2, + "text": "but|strong=\"H4191\"* I|strong=\"H6963\"* will|strong=\"H4124\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Moab|strong=\"H4124\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* I|strong=\"H3772\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* judge|strong=\"H8199\"* from|strong=\"H3772\"* among|strong=\"H7130\"* them|strong=\"H2026\"*," + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 5, + "text": "but I|strong=\"H7971\"* will|strong=\"H3063\"* send|strong=\"H7971\"* a|strong=\"H3068\"* fire on|strong=\"H7971\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* trample|strong=\"H7602\"* the|strong=\"H5921\"* heads|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* into|strong=\"H3212\"* the|strong=\"H5921\"* dust|strong=\"H6083\"* of|strong=\"H7218\"* the|strong=\"H5921\"* earth|strong=\"H6083\"*" + }, + { + "verseNum": 8, + "text": "They|strong=\"H5921\"* lay themselves|strong=\"H5921\"* down|strong=\"H5186\"* beside|strong=\"H5921\"* every|strong=\"H3605\"* altar|strong=\"H4196\"* on|strong=\"H5921\"* clothes taken|strong=\"H2254\"* in|strong=\"H5921\"* pledge|strong=\"H2254\"*." + }, + { + "verseNum": 9, + "text": "Yet I|strong=\"H6440\"* destroyed|strong=\"H8045\"* the|strong=\"H6440\"* Amorite before|strong=\"H6440\"* them|strong=\"H6440\"*," + }, + { + "verseNum": 10, + "text": "Also I|strong=\"H4714\"* brought|strong=\"H5927\"* you|strong=\"H3212\"* up|strong=\"H5927\"* out|strong=\"H3423\"* of|strong=\"H8141\"* the|strong=\"H3423\"* land of|strong=\"H8141\"* Egypt|strong=\"H4714\"*" + }, + { + "verseNum": 11, + "text": "I|strong=\"H6965\"* raised|strong=\"H6965\"* up|strong=\"H6965\"* some of|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* for|strong=\"H3068\"* prophets|strong=\"H5030\"*," + }, + { + "verseNum": 12, + "text": "“But|strong=\"H3808\"* you|strong=\"H6680\"* gave|strong=\"H6680\"* the|strong=\"H5921\"* Nazirites|strong=\"H5139\"* wine|strong=\"H3196\"* to|strong=\"H5921\"* drink|strong=\"H8248\"*," + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*,+ 2:13 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H2009\"* will crush you|strong=\"H8478\"* in|strong=\"H8478\"* your|strong=\"H8478\"* place|strong=\"H8478\"*," + }, + { + "verseNum": 14, + "text": "Flight|strong=\"H4498\"* will|strong=\"H5315\"* perish from|strong=\"H5315\"* the|strong=\"H3808\"* swift|strong=\"H7031\"*." + }, + { + "verseNum": 15, + "text": "He|strong=\"H3808\"* who|strong=\"H5315\"* handles the|strong=\"H5975\"* bow|strong=\"H7198\"* won’t stand|strong=\"H5975\"*." + }, + { + "verseNum": 16, + "text": "He|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* courageous among|strong=\"H1368\"* the|strong=\"H5002\"* mighty|strong=\"H1368\"*" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2088\"* word|strong=\"H1697\"* that|strong=\"H3605\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H3605\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, against|strong=\"H5921\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* family|strong=\"H4940\"* which|strong=\"H3068\"* I|strong=\"H5921\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* out|strong=\"H5921\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land|strong=\"H4940\"* of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, saying|strong=\"H1697\"*:" + }, + { + "verseNum": 2, + "text": "“I|strong=\"H5921\"* have|strong=\"H3045\"* only|strong=\"H7535\"* chosen|strong=\"H3045\"* you|strong=\"H3605\"* of|strong=\"H4940\"* all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* of|strong=\"H4940\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 3, + "text": "Do two|strong=\"H8147\"* walk|strong=\"H3212\"* together|strong=\"H3162\"*," + }, + { + "verseNum": 4, + "text": "Will|strong=\"H5414\"* a|strong=\"H3068\"* lion|strong=\"H3715\"* roar|strong=\"H7580\"* in|strong=\"H5414\"* the|strong=\"H5414\"* thicket," + }, + { + "verseNum": 5, + "text": "Can|strong=\"H3808\"* a|strong=\"H3068\"* bird|strong=\"H6833\"* fall|strong=\"H5307\"* in|strong=\"H5921\"* a|strong=\"H3068\"* trap|strong=\"H4170\"* on|strong=\"H5921\"* the|strong=\"H5921\"* earth|strong=\"H5927\"*," + }, + { + "verseNum": 6, + "text": "Does|strong=\"H6213\"* the|strong=\"H6213\"* trumpet|strong=\"H7782\"* alarm sound|strong=\"H8628\"* in|strong=\"H3068\"* a|strong=\"H3068\"* city|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "Surely|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* will|strong=\"H5650\"* do|strong=\"H6213\"* nothing|strong=\"H3808\"*," + }, + { + "verseNum": 8, + "text": "The|strong=\"H3069\"* lion has|strong=\"H4310\"* roared|strong=\"H7580\"*." + }, + { + "verseNum": 9, + "text": "Proclaim|strong=\"H8085\"* in|strong=\"H5921\"* the|strong=\"H5921\"* palaces at|strong=\"H5921\"* Ashdod," + }, + { + "verseNum": 10, + "text": "“Indeed|strong=\"H3808\"* they|strong=\"H3068\"* don’t know|strong=\"H3045\"* to|strong=\"H3068\"* do|strong=\"H6213\"* right|strong=\"H5229\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H3069\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 13, + "text": "“Listen|strong=\"H8085\"*, and|strong=\"H1004\"* testify|strong=\"H5749\"* against|strong=\"H5749\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3069\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 14, + "text": "“For|strong=\"H3588\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* visit|strong=\"H6485\"* the|strong=\"H5921\"* transgressions|strong=\"H6588\"* of|strong=\"H3117\"* Israel|strong=\"H3478\"* on|strong=\"H5921\"* him|strong=\"H5921\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* the|strong=\"H5002\"* winter|strong=\"H2779\"* house|strong=\"H1004\"* with|strong=\"H1004\"* the|strong=\"H5002\"* summer|strong=\"H7019\"* house|strong=\"H1004\"*;" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* to|strong=\"H8085\"* this|strong=\"H2088\"* word|strong=\"H1697\"*, you|strong=\"H2022\"* cows|strong=\"H6510\"* of|strong=\"H1697\"* Bashan|strong=\"H1316\"*, who|strong=\"H2088\"* are|strong=\"H1697\"* on|strong=\"H8085\"* the|strong=\"H8085\"* mountain|strong=\"H2022\"* of|strong=\"H1697\"* Samaria|strong=\"H8111\"*, who|strong=\"H2088\"* oppress|strong=\"H6231\"* the|strong=\"H8085\"* poor|strong=\"H1800\"*, who|strong=\"H2088\"* crush|strong=\"H7533\"* the|strong=\"H8085\"* needy|strong=\"H1800\"*, who|strong=\"H2088\"* tell|strong=\"H8085\"* their|strong=\"H8085\"* husbands, “Bring us|strong=\"H8085\"* drinks|strong=\"H8354\"*!”" + }, + { + "verseNum": 2, + "text": "The|strong=\"H5921\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* has|strong=\"H3117\"* sworn|strong=\"H7650\"* by|strong=\"H5921\"* his|strong=\"H5375\"* holiness|strong=\"H6944\"*," + }, + { + "verseNum": 3, + "text": "You|strong=\"H3318\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* at|strong=\"H3068\"* the|strong=\"H5002\"* breaks|strong=\"H3318\"* in|strong=\"H3068\"* the|strong=\"H5002\"* wall," + }, + { + "verseNum": 4, + "text": "“Go to|strong=\"H3117\"* Bethel|strong=\"H1008\"*, and|strong=\"H3117\"* sin;" + }, + { + "verseNum": 5, + "text": "offer|strong=\"H6999\"* a|strong=\"H3068\"* sacrifice|strong=\"H6999\"* of|strong=\"H1121\"* thanksgiving|strong=\"H8426\"* of|strong=\"H1121\"* that|strong=\"H3588\"* which|strong=\"H3478\"* is|strong=\"H3651\"* leavened|strong=\"H2557\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H5414\"* also|strong=\"H1571\"* have|strong=\"H3068\"* given|strong=\"H5414\"* you|strong=\"H5414\"* cleanness|strong=\"H5356\"* of|strong=\"H3068\"* teeth|strong=\"H8127\"* in|strong=\"H3068\"* all|strong=\"H3605\"* your|strong=\"H3068\"* cities|strong=\"H5892\"*," + }, + { + "verseNum": 7, + "text": "“I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1571\"* withheld|strong=\"H4513\"* the|strong=\"H5921\"* rain|strong=\"H1653\"* from|strong=\"H4480\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 8, + "text": "So|strong=\"H3808\"* two|strong=\"H8147\"* or|strong=\"H3808\"* three|strong=\"H7969\"* cities|strong=\"H5892\"* staggered|strong=\"H5128\"* to|strong=\"H5704\"* one|strong=\"H3808\"* city|strong=\"H5892\"* to|strong=\"H5704\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*," + }, + { + "verseNum": 9, + "text": "“I|strong=\"H5704\"* struck|strong=\"H5221\"* you|strong=\"H5704\"* with|strong=\"H3068\"* blight|strong=\"H7711\"* and|strong=\"H3068\"* mildew|strong=\"H3420\"* many|strong=\"H7235\"* times in|strong=\"H3068\"* your|strong=\"H3068\"* gardens|strong=\"H1593\"* and|strong=\"H3068\"* your|strong=\"H3068\"* vineyards|strong=\"H3754\"*," + }, + { + "verseNum": 10, + "text": "“I|strong=\"H5704\"* sent|strong=\"H7971\"* plagues|strong=\"H1870\"* among|strong=\"H5973\"* you|strong=\"H7971\"* like|strong=\"H5973\"* I|strong=\"H5704\"* did|strong=\"H3068\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 11, + "text": "“I|strong=\"H5704\"* have|strong=\"H1961\"* overthrown|strong=\"H2015\"* some of|strong=\"H3068\"* you|strong=\"H5704\"*," + }, + { + "verseNum": 12, + "text": "“Therefore|strong=\"H3651\"* I|strong=\"H3588\"* will|strong=\"H3478\"* do|strong=\"H6213\"* this|strong=\"H2063\"* to|strong=\"H3478\"* you|strong=\"H3588\"*, Israel|strong=\"H3478\"*;" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, he|strong=\"H3588\"* who|strong=\"H3068\"* forms|strong=\"H3335\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, creates|strong=\"H1254\"* the|strong=\"H5921\"* wind|strong=\"H7307\"*, declares|strong=\"H5046\"* to|strong=\"H3068\"* man what|strong=\"H4100\"* is|strong=\"H3068\"* his|strong=\"H3068\"* thought|strong=\"H7808\"*," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2088\"* word|strong=\"H1697\"* which|strong=\"H1697\"* I|strong=\"H5921\"* take|strong=\"H5375\"* up|strong=\"H5375\"* for|strong=\"H5921\"* a|strong=\"H3068\"* lamentation|strong=\"H7015\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 2, + "text": "“The|strong=\"H5921\"* virgin|strong=\"H1330\"* of|strong=\"H5921\"* Israel|strong=\"H3478\"* has|strong=\"H3478\"* fallen|strong=\"H5307\"*;" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* to|strong=\"H3478\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*:" + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* don’t seek|strong=\"H1875\"* Bethel|strong=\"H1008\"*," + }, + { + "verseNum": 6, + "text": "Seek|strong=\"H1875\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* you|strong=\"H6435\"* will|strong=\"H3068\"* live|strong=\"H2421\"*," + }, + { + "verseNum": 7, + "text": "You who turn|strong=\"H2015\"* justice|strong=\"H4941\"* to|strong=\"H4941\"* wormwood|strong=\"H3939\"*," + }, + { + "verseNum": 8, + "text": "Seek him|strong=\"H6440\"* who|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6440\"* Pleiades|strong=\"H3598\"* and|strong=\"H3068\"* Orion|strong=\"H3685\"*," + }, + { + "verseNum": 9, + "text": "who brings sudden destruction|strong=\"H7701\"* on|strong=\"H5921\"* the|strong=\"H5921\"* strong|strong=\"H5794\"*," + }, + { + "verseNum": 10, + "text": "They|strong=\"H1696\"* hate|strong=\"H8130\"* him|strong=\"H8130\"* who|strong=\"H3198\"* reproves|strong=\"H3198\"* in|strong=\"H1696\"* the|strong=\"H1696\"* gate|strong=\"H8179\"*," + }, + { + "verseNum": 11, + "text": "Therefore|strong=\"H3651\"*, because|strong=\"H5921\"* you|strong=\"H5921\"* trample on|strong=\"H5921\"* the|strong=\"H5921\"* poor|strong=\"H1800\"* and|strong=\"H1004\"* take|strong=\"H3947\"* taxes from|strong=\"H4480\"* him|strong=\"H5921\"* of|strong=\"H1004\"* wheat|strong=\"H1250\"*," + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* how|strong=\"H3588\"* many|strong=\"H7227\"* are|strong=\"H6588\"* your|strong=\"H3947\"* offenses," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H3651\"* a|strong=\"H3068\"* prudent|strong=\"H7919\"* person|strong=\"H7919\"* keeps|strong=\"H1826\"* silent|strong=\"H1826\"* in|strong=\"H7919\"* such|strong=\"H3651\"* a|strong=\"H3068\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 14, + "text": "Seek|strong=\"H1875\"* good|strong=\"H2896\"*, and|strong=\"H3068\"* not|strong=\"H1961\"* evil|strong=\"H7451\"*," + }, + { + "verseNum": 15, + "text": "Hate|strong=\"H8130\"* evil|strong=\"H7451\"*, love good|strong=\"H2896\"*," + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"*, the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, the|strong=\"H3605\"* Lord|strong=\"H3068\"*, says|strong=\"H3541\"*:" + }, + { + "verseNum": 17, + "text": "In|strong=\"H3068\"* all|strong=\"H3605\"* vineyards|strong=\"H3754\"* there|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3068\"* wailing|strong=\"H4553\"*," + }, + { + "verseNum": 18, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H3068\"* you|strong=\"H3117\"* who|strong=\"H1931\"* desire the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*!" + }, + { + "verseNum": 19, + "text": "As|strong=\"H6440\"* if a|strong=\"H3068\"* man|strong=\"H6440\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* a|strong=\"H3068\"* lion," + }, + { + "verseNum": 20, + "text": "Won’t the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3808\"* darkness|strong=\"H2822\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* light|strong=\"H5051\"*?" + }, + { + "verseNum": 21, + "text": "I|strong=\"H3808\"* hate|strong=\"H8130\"*, I|strong=\"H3808\"* despise|strong=\"H3988\"* your|strong=\"H3808\"* feasts|strong=\"H2282\"*," + }, + { + "verseNum": 22, + "text": "Yes|strong=\"H3588\"*, though|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H5927\"* me|strong=\"H7521\"* your|strong=\"H3588\"* burnt|strong=\"H5930\"* offerings|strong=\"H8002\"* and|strong=\"H5930\"* meal|strong=\"H4503\"* offerings|strong=\"H8002\"*," + }, + { + "verseNum": 23, + "text": "Take|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H5493\"* me|strong=\"H5921\"* the|strong=\"H5921\"* noise|strong=\"H1995\"* of|strong=\"H5921\"* your|strong=\"H5921\"* songs|strong=\"H7892\"*!" + }, + { + "verseNum": 24, + "text": "But|strong=\"H4325\"* let justice|strong=\"H4941\"* roll|strong=\"H1556\"* on|strong=\"H4325\"* like|strong=\"H4941\"* rivers|strong=\"H5158\"*," + }, + { + "verseNum": 25, + "text": "“Did|strong=\"H3478\"* you|strong=\"H1004\"* bring|strong=\"H5066\"* to|strong=\"H3478\"* me|strong=\"H5066\"* sacrifices|strong=\"H2077\"* and|strong=\"H3478\"* offerings|strong=\"H4503\"* in|strong=\"H8141\"* the|strong=\"H5066\"* wilderness|strong=\"H4057\"* forty years|strong=\"H8141\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*?" + }, + { + "verseNum": 26, + "text": "You|strong=\"H6213\"* also|strong=\"H6213\"* carried|strong=\"H5375\"* the|strong=\"H5375\"* tent of|strong=\"H3556\"* your|strong=\"H5375\"* king and|strong=\"H6213\"* the|strong=\"H5375\"* shrine of|strong=\"H3556\"* your|strong=\"H5375\"* images|strong=\"H6754\"*, the|strong=\"H5375\"* star|strong=\"H3556\"* of|strong=\"H3556\"* your|strong=\"H5375\"* god, which you|strong=\"H6213\"* made|strong=\"H6213\"* for|strong=\"H6213\"* yourselves|strong=\"H5375\"*." + }, + { + "verseNum": 27, + "text": "Therefore|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* cause you|strong=\"H1540\"* to|strong=\"H3068\"* go|strong=\"H1540\"* into|strong=\"H1540\"* captivity|strong=\"H1540\"* beyond|strong=\"H1973\"* Damascus|strong=\"H1834\"*,” says Yahweh|strong=\"H3068\"*, whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* the|strong=\"H3068\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3478\"* those|strong=\"H1992\"* who|strong=\"H3478\"* are|strong=\"H1992\"* at|strong=\"H3478\"* ease|strong=\"H7600\"* in|strong=\"H3478\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 2, + "text": "Go|strong=\"H3212\"* to|strong=\"H3381\"* Calneh|strong=\"H3641\"*, and|strong=\"H3212\"* see|strong=\"H7200\"*." + }, + { + "verseNum": 3, + "text": "Alas for|strong=\"H3117\"* you|strong=\"H3117\"* who put|strong=\"H5066\"* far away|strong=\"H7451\"* the|strong=\"H3117\"* evil|strong=\"H7451\"* day|strong=\"H3117\"*," + }, + { + "verseNum": 4, + "text": "who lie|strong=\"H7901\"* on|strong=\"H5921\"* beds|strong=\"H4296\"* of|strong=\"H8432\"* ivory|strong=\"H8127\"*," + }, + { + "verseNum": 5, + "text": "who|strong=\"H1992\"* strum on|strong=\"H5921\"* the|strong=\"H5921\"* strings of|strong=\"H3627\"* a|strong=\"H3068\"* harp|strong=\"H5035\"*," + }, + { + "verseNum": 6, + "text": "who|strong=\"H8354\"* drink|strong=\"H8354\"* wine|strong=\"H3196\"* in|strong=\"H5921\"* bowls|strong=\"H4219\"*," + }, + { + "verseNum": 7, + "text": "Therefore|strong=\"H3651\"* they|strong=\"H3651\"* will now|strong=\"H6258\"* go|strong=\"H1540\"* captive|strong=\"H1540\"* with|strong=\"H7218\"* the|strong=\"H5493\"* first|strong=\"H7218\"* who|strong=\"H5493\"* go|strong=\"H1540\"* captive|strong=\"H1540\"*." + }, + { + "verseNum": 8, + "text": "“The|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* himself|strong=\"H5315\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*:" + }, + { + "verseNum": 9, + "text": "It|strong=\"H1961\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* that|strong=\"H1004\"* if|strong=\"H1961\"* ten|strong=\"H6235\"* men remain|strong=\"H3498\"* in|strong=\"H1004\"* one|strong=\"H1961\"* house|strong=\"H1004\"*," + }, + { + "verseNum": 10, + "text": "“When|strong=\"H3588\"* a|strong=\"H3068\"* man|strong=\"H5375\"*’s relative carries|strong=\"H5375\"* him|strong=\"H5973\"*, even|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3068\"* burns|strong=\"H2142\"* him|strong=\"H5973\"*, to|strong=\"H3318\"* bring|strong=\"H3318\"* bodies out|strong=\"H3318\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* asks him|strong=\"H5973\"* who|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3588\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H1004\"* the|strong=\"H3588\"* house|strong=\"H1004\"*, ‘Is|strong=\"H3068\"* there|strong=\"H4480\"* yet|strong=\"H5750\"* any|strong=\"H4480\"* with|strong=\"H5973\"* you|strong=\"H3588\"*?’ And|strong=\"H3068\"* he|strong=\"H3588\"* says, ‘No|strong=\"H3808\"*;’ then|strong=\"H3318\"* he|strong=\"H3588\"* will|strong=\"H3068\"* say, ‘Hush! Indeed|strong=\"H3588\"* we|strong=\"H3068\"* must|strong=\"H5375\"* not|strong=\"H3808\"* mention|strong=\"H2142\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*.’" + }, + { + "verseNum": 11, + "text": "“For|strong=\"H3588\"*, behold|strong=\"H2009\"*, Yahweh|strong=\"H3068\"* commands|strong=\"H6680\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* great|strong=\"H1419\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H3068\"* smashed|strong=\"H5221\"* to|strong=\"H3068\"* pieces|strong=\"H7447\"*," + }, + { + "verseNum": 12, + "text": "Do|strong=\"H2790\"* horses|strong=\"H5483\"* run|strong=\"H7323\"* on|strong=\"H7323\"* the|strong=\"H3588\"* rocky|strong=\"H5553\"* crags|strong=\"H5553\"*?" + }, + { + "verseNum": 13, + "text": "you|strong=\"H3947\"* who|strong=\"H3808\"* rejoice|strong=\"H8055\"* in|strong=\"H8055\"* a|strong=\"H3068\"* thing|strong=\"H1697\"* of|strong=\"H1697\"* nothing|strong=\"H3808\"*, who|strong=\"H3808\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* you|strong=\"H3588\"* a|strong=\"H3068\"* nation|strong=\"H1471\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*,”" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, he|strong=\"H3541\"* formed|strong=\"H3335\"* locusts|strong=\"H1462\"* in|strong=\"H4428\"* the|strong=\"H7200\"* beginning|strong=\"H8462\"* of|strong=\"H4428\"* the|strong=\"H7200\"* shooting up|strong=\"H5927\"* of|strong=\"H4428\"* the|strong=\"H7200\"* latter growth|strong=\"H3954\"*; and|strong=\"H4428\"* behold|strong=\"H2009\"*, it|strong=\"H7200\"* was|strong=\"H4428\"* the|strong=\"H7200\"* latter growth|strong=\"H3954\"* after|strong=\"H5927\"* the|strong=\"H7200\"* king|strong=\"H4428\"*’s harvest|strong=\"H1488\"*." + }, + { + "verseNum": 2, + "text": "When|strong=\"H3588\"* they|strong=\"H3588\"* finished|strong=\"H3615\"* eating the|strong=\"H3588\"* grass|strong=\"H6212\"* of|strong=\"H3615\"* the|strong=\"H3588\"* land, then|strong=\"H1961\"* I|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, forgive|strong=\"H5545\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*! How|strong=\"H3588\"* could|strong=\"H4310\"* Jacob|strong=\"H3290\"* stand|strong=\"H6965\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"*. “It|strong=\"H5921\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* called|strong=\"H7121\"* for|strong=\"H7121\"* judgment by|strong=\"H7121\"* fire; and|strong=\"H7200\"* it|strong=\"H7121\"* dried up|strong=\"H7200\"* the|strong=\"H7200\"* great|strong=\"H7227\"* deep|strong=\"H8415\"*, and|strong=\"H7200\"* would|strong=\"H7227\"* have|strong=\"H7200\"* devoured the|strong=\"H7200\"* land|strong=\"H2506\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6965\"* I|strong=\"H3588\"* said, “Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*, stop|strong=\"H2308\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*! How|strong=\"H3588\"* could|strong=\"H4310\"* Jacob|strong=\"H3290\"* stand|strong=\"H6965\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* small|strong=\"H6996\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* relented|strong=\"H5162\"* concerning|strong=\"H5921\"* this|strong=\"H2063\"*. “This|strong=\"H2063\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"*,” says the|strong=\"H5921\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "Thus|strong=\"H3541\"* he|strong=\"H3027\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, the|strong=\"H5921\"* Lord stood|strong=\"H5324\"* beside|strong=\"H5921\"* a|strong=\"H3068\"* wall|strong=\"H2346\"* made by|strong=\"H3027\"* a|strong=\"H3068\"* plumb line, with|strong=\"H5921\"* a|strong=\"H3068\"* plumb line in|strong=\"H5921\"* his|strong=\"H5921\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H7200\"*, “Amos|strong=\"H5986\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H7760\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 9, + "text": "The|strong=\"H5921\"* high|strong=\"H1116\"* places|strong=\"H1116\"* of|strong=\"H1004\"* Isaac|strong=\"H3446\"* will|strong=\"H3478\"* be|strong=\"H3478\"* desolate|strong=\"H8074\"*, the|strong=\"H5921\"* sanctuaries|strong=\"H4720\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* be|strong=\"H3478\"* laid|strong=\"H8074\"* waste|strong=\"H2717\"*; and|strong=\"H6965\"* I|strong=\"H5921\"* will|strong=\"H3478\"* rise|strong=\"H6965\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jeroboam|strong=\"H3379\"* with|strong=\"H1004\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H7971\"* Amaziah the|strong=\"H3605\"* priest|strong=\"H3548\"* of|strong=\"H4428\"* Bethel|strong=\"H1008\"* sent|strong=\"H7971\"* to|strong=\"H3478\"* Jeroboam|strong=\"H3379\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, saying|strong=\"H1697\"*, “Amos|strong=\"H5986\"* has|strong=\"H3478\"* conspired|strong=\"H7194\"* against|strong=\"H5921\"* you|strong=\"H3605\"* in|strong=\"H5921\"* the|strong=\"H3605\"* middle|strong=\"H7130\"* of|strong=\"H4428\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*. The|strong=\"H3605\"* land|strong=\"H7130\"* is|strong=\"H1697\"* not|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3478\"* bear|strong=\"H3557\"* all|strong=\"H3605\"* his|strong=\"H3605\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* Amos|strong=\"H5986\"* says|strong=\"H3541\"*, ‘Jeroboam|strong=\"H3379\"* will|strong=\"H3478\"* die|strong=\"H4191\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H3478\"* Israel|strong=\"H3478\"* shall|strong=\"H3478\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* led|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H5921\"* his|strong=\"H5921\"* land.’”" + }, + { + "verseNum": 12, + "text": "Amaziah also|strong=\"H3899\"* said to|strong=\"H3212\"* Amos|strong=\"H5986\"*, “You|strong=\"H3212\"* seer|strong=\"H2374\"*, go|strong=\"H3212\"*, flee|strong=\"H1272\"* away|strong=\"H3212\"* into|strong=\"H3212\"* the|strong=\"H8033\"* land of|strong=\"H3899\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* there|strong=\"H8033\"* eat|strong=\"H3899\"* bread|strong=\"H3899\"*, and|strong=\"H3063\"* prophesy|strong=\"H5012\"* there|strong=\"H8033\"*," + }, + { + "verseNum": 13, + "text": "but|strong=\"H3588\"* don’t prophesy|strong=\"H5012\"* again|strong=\"H5750\"* any|strong=\"H5750\"* more|strong=\"H3254\"* at|strong=\"H1004\"* Bethel|strong=\"H1008\"*; for|strong=\"H3588\"* it|strong=\"H1931\"* is|strong=\"H1931\"* the|strong=\"H3588\"* king|strong=\"H4428\"*’s sanctuary|strong=\"H4720\"*, and|strong=\"H4428\"* it|strong=\"H1931\"* is|strong=\"H1931\"* a|strong=\"H3068\"* royal|strong=\"H4428\"* house|strong=\"H1004\"*!”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Amos|strong=\"H5986\"* answered|strong=\"H6030\"* Amaziah, “I|strong=\"H3588\"* was|strong=\"H1121\"* no|strong=\"H3808\"* prophet|strong=\"H5030\"*, neither|strong=\"H3808\"* was|strong=\"H1121\"* I|strong=\"H3588\"* a|strong=\"H3068\"* prophet|strong=\"H5030\"*’s son|strong=\"H1121\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H1121\"* a|strong=\"H3068\"* herdsman, and|strong=\"H1121\"* a|strong=\"H3068\"* farmer of|strong=\"H1121\"* sycamore|strong=\"H8256\"* figs|strong=\"H1103\"*;" + }, + { + "verseNum": 15, + "text": "and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* took|strong=\"H3947\"* me|strong=\"H3947\"* from|strong=\"H3478\"* following|strong=\"H3212\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*, and|strong=\"H3478\"* Yahweh|strong=\"H3068\"* said to|strong=\"H3478\"* me|strong=\"H3947\"*, ‘Go|strong=\"H3212\"*, prophesy|strong=\"H5012\"* to|strong=\"H3478\"* my|strong=\"H3068\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"*.’" + }, + { + "verseNum": 16, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*: ‘You|strong=\"H5921\"* say|strong=\"H1697\"*, Don’t prophesy|strong=\"H5012\"* against|strong=\"H5921\"* Israel|strong=\"H3478\"*, and|strong=\"H3478\"* don’t preach|strong=\"H5197\"* against|strong=\"H5921\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Isaac|strong=\"H3446\"*.’" + }, + { + "verseNum": 17, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: ‘Your|strong=\"H3068\"* wife shall|strong=\"H3068\"* be|strong=\"H4191\"* a|strong=\"H3068\"* prostitute|strong=\"H2181\"* in|strong=\"H5921\"* the|strong=\"H5921\"* city|strong=\"H5892\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* sons|strong=\"H1121\"* and|strong=\"H1121\"* your|strong=\"H3068\"* daughters|strong=\"H1323\"* shall|strong=\"H3068\"* fall|strong=\"H5307\"* by|strong=\"H5921\"* the|strong=\"H5921\"* sword|strong=\"H2719\"*, and|strong=\"H1121\"* your|strong=\"H3068\"* land shall|strong=\"H3068\"* be|strong=\"H4191\"* divided|strong=\"H2505\"* by|strong=\"H5921\"* line|strong=\"H2256\"*; and|strong=\"H1121\"* you|strong=\"H5921\"* yourself|strong=\"H5307\"* shall|strong=\"H3068\"* die|strong=\"H4191\"* in|strong=\"H5921\"* a|strong=\"H3068\"* land that|strong=\"H3068\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*, and|strong=\"H1121\"* Israel|strong=\"H3478\"* shall|strong=\"H3068\"* surely|strong=\"H4191\"* be|strong=\"H4191\"* led|strong=\"H1540\"* away|strong=\"H1540\"* captive|strong=\"H1540\"* out|strong=\"H5921\"* of|strong=\"H1121\"* his|strong=\"H3068\"* land.’”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "Thus|strong=\"H3541\"* the|strong=\"H7200\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H7200\"*: behold|strong=\"H2009\"*, a|strong=\"H3068\"* basket|strong=\"H3619\"* of|strong=\"H3069\"* summer|strong=\"H7019\"* fruit|strong=\"H7019\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said, “Amos|strong=\"H5986\"*, what|strong=\"H4100\"* do|strong=\"H3068\"* you|strong=\"H3808\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "The|strong=\"H3605\"* songs|strong=\"H7892\"* of|strong=\"H3117\"* the|strong=\"H3605\"* temple|strong=\"H1964\"* will|strong=\"H7227\"* be|strong=\"H3117\"* wailing|strong=\"H3213\"* in|strong=\"H3117\"* that|strong=\"H3605\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "Hear|strong=\"H8085\"* this|strong=\"H2063\"*, you|strong=\"H7673\"* who desire|strong=\"H7602\"* to|strong=\"H8085\"* swallow|strong=\"H7602\"* up|strong=\"H7602\"* the|strong=\"H8085\"* needy," + }, + { + "verseNum": 5, + "text": "saying, ‘When|strong=\"H4970\"* will|strong=\"H4820\"* the|strong=\"H5674\"* new|strong=\"H2320\"* moon|strong=\"H2320\"* be|strong=\"H2320\"* gone|strong=\"H5674\"*, that|strong=\"H5674\"* we|strong=\"H3068\"* may|strong=\"H1431\"* sell|strong=\"H7666\"* grain|strong=\"H1250\"*?" + }, + { + "verseNum": 6, + "text": "that|strong=\"H5668\"* we|strong=\"H3068\"* may|strong=\"H5668\"* buy|strong=\"H7069\"* the|strong=\"H7069\"* poor|strong=\"H1800\"* for|strong=\"H3701\"* silver|strong=\"H3701\"*," + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sworn|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H3605\"* pride|strong=\"H1347\"* of|strong=\"H3068\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "Won’t the|strong=\"H3605\"* land tremble|strong=\"H7264\"* for|strong=\"H5921\"* this|strong=\"H2063\"*," + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3069\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "I|strong=\"H3117\"* will|strong=\"H3117\"* turn|strong=\"H2015\"* your|strong=\"H3605\"* feasts|strong=\"H2282\"* into|strong=\"H2015\"* mourning," + }, + { + "verseNum": 11, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5002\"* days|strong=\"H3117\"* come|strong=\"H7971\"*,” says|strong=\"H5002\"* the|strong=\"H5002\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 12, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* wander|strong=\"H5128\"* from|strong=\"H5704\"* sea|strong=\"H3220\"* to|strong=\"H5704\"* sea|strong=\"H3220\"*," + }, + { + "verseNum": 13, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* the|strong=\"H3117\"* beautiful|strong=\"H3303\"* virgins|strong=\"H1330\"*" + }, + { + "verseNum": 14, + "text": "Those who|strong=\"H2416\"* swear|strong=\"H7650\"* by|strong=\"H7650\"* the|strong=\"H6965\"* sin of|strong=\"H1870\"* Samaria|strong=\"H8111\"*," + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5921\"* saw|strong=\"H7200\"* the|strong=\"H3605\"* Lord standing|strong=\"H5324\"* beside|strong=\"H5921\"* the|strong=\"H3605\"* altar|strong=\"H4196\"*, and|strong=\"H7218\"* he|strong=\"H3605\"* said, “Strike|strong=\"H5221\"* the|strong=\"H3605\"* tops|strong=\"H7218\"* of|strong=\"H7218\"* the|strong=\"H3605\"* pillars|strong=\"H3730\"*, that|strong=\"H7200\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"* may|strong=\"H2719\"* shake|strong=\"H7493\"*. Break|strong=\"H1214\"* them|strong=\"H5921\"* in|strong=\"H5921\"* pieces on|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H2719\"* kill|strong=\"H2026\"* the|strong=\"H3605\"* last of|strong=\"H7218\"* them|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"* will|strong=\"H2719\"* flee|strong=\"H5127\"* away|strong=\"H5127\"*. Not|strong=\"H3808\"* one|strong=\"H3605\"* of|strong=\"H7218\"* them|strong=\"H5921\"* will|strong=\"H2719\"* escape|strong=\"H4422\"*." + }, + { + "verseNum": 2, + "text": "Though they|strong=\"H8033\"* dig|strong=\"H2864\"* into|strong=\"H3381\"* Sheol|strong=\"H7585\"*,+ 9:2 Sheol is the place of the dead.* there|strong=\"H8033\"* my|strong=\"H3947\"* hand|strong=\"H3027\"* will|strong=\"H8064\"* take|strong=\"H3947\"* them|strong=\"H3027\"*; and|strong=\"H8064\"* though they|strong=\"H8033\"* climb|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3381\"* heaven|strong=\"H8064\"*, there|strong=\"H8033\"* I|strong=\"H3027\"* will|strong=\"H8064\"* bring|strong=\"H5927\"* them|strong=\"H3027\"* down|strong=\"H3381\"*." + }, + { + "verseNum": 3, + "text": "Though they|strong=\"H8033\"* hide|strong=\"H5641\"* themselves|strong=\"H2244\"* in|strong=\"H3220\"* the|strong=\"H3947\"* top|strong=\"H7218\"* of|strong=\"H7218\"* Carmel|strong=\"H3760\"*, I|strong=\"H6680\"* will|strong=\"H5869\"* search|strong=\"H2664\"* and|strong=\"H5869\"* take|strong=\"H3947\"* them|strong=\"H6680\"* out|strong=\"H3947\"* from|strong=\"H3947\"* there|strong=\"H8033\"*; and|strong=\"H5869\"* though they|strong=\"H8033\"* be|strong=\"H5869\"* hidden|strong=\"H5641\"* from|strong=\"H3947\"* my|strong=\"H3947\"* sight|strong=\"H5869\"* in|strong=\"H3220\"* the|strong=\"H3947\"* bottom|strong=\"H7172\"* of|strong=\"H7218\"* the|strong=\"H3947\"* sea|strong=\"H3220\"*, there|strong=\"H8033\"* I|strong=\"H6680\"* will|strong=\"H5869\"* command|strong=\"H6680\"* the|strong=\"H3947\"* serpent|strong=\"H5175\"*, and|strong=\"H5869\"* it|strong=\"H8033\"* will|strong=\"H5869\"* bite|strong=\"H5391\"* them|strong=\"H6680\"*." + }, + { + "verseNum": 4, + "text": "Though they|strong=\"H8033\"* go|strong=\"H3212\"* into|strong=\"H3212\"* captivity|strong=\"H7628\"* before|strong=\"H6440\"* their|strong=\"H7760\"* enemies, there|strong=\"H8033\"* I|strong=\"H5921\"* will|strong=\"H5869\"* command|strong=\"H6680\"* the|strong=\"H6440\"* sword|strong=\"H2719\"*, and|strong=\"H3212\"* it|strong=\"H7760\"* will|strong=\"H5869\"* kill|strong=\"H2026\"* them|strong=\"H5921\"*. I|strong=\"H5921\"* will|strong=\"H5869\"* set|strong=\"H7760\"* my|strong=\"H7760\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* them|strong=\"H5921\"* for|strong=\"H5921\"* evil|strong=\"H7451\"*, and|strong=\"H3212\"* not|strong=\"H3808\"* for|strong=\"H5921\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H4714\"* the|strong=\"H3605\"* Lord|strong=\"H3069\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies|strong=\"H6635\"*, is|strong=\"H3605\"* he|strong=\"H3605\"* who|strong=\"H3605\"* touches|strong=\"H5060\"* the|strong=\"H3605\"* land and|strong=\"H4714\"* it|strong=\"H5927\"* melts|strong=\"H4127\"*, and|strong=\"H4714\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5927\"* will|strong=\"H4714\"* mourn; and|strong=\"H4714\"* it|strong=\"H5927\"* will|strong=\"H4714\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* wholly|strong=\"H3605\"* like|strong=\"H5927\"* the|strong=\"H3605\"* River|strong=\"H2975\"*, and|strong=\"H4714\"* will|strong=\"H4714\"* sink|strong=\"H8257\"* again, like|strong=\"H5927\"* the|strong=\"H3605\"* River|strong=\"H2975\"* of|strong=\"H3427\"* Egypt|strong=\"H4714\"*." + }, + { + "verseNum": 6, + "text": "It|strong=\"H7121\"* is|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* builds|strong=\"H1129\"* his|strong=\"H3068\"* rooms in|strong=\"H5921\"* the|strong=\"H6440\"* heavens|strong=\"H8064\"*, and|strong=\"H3068\"* has|strong=\"H3068\"* founded|strong=\"H3245\"* his|strong=\"H3068\"* vault on|strong=\"H5921\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*; he|strong=\"H3068\"* who|strong=\"H3068\"* calls|strong=\"H7121\"* for|strong=\"H5921\"* the|strong=\"H6440\"* waters|strong=\"H4325\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* pours|strong=\"H8210\"* them|strong=\"H5921\"* out|strong=\"H8210\"* on|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*—Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 7, + "text": "Are|strong=\"H1121\"* you|strong=\"H3808\"* not|strong=\"H3808\"* like|strong=\"H3478\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* the|strong=\"H5002\"* Ethiopians|strong=\"H3569\"* to|strong=\"H3478\"* me|strong=\"H3808\"*, children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. “Haven’t I|strong=\"H4714\"* brought|strong=\"H5927\"* up|strong=\"H5927\"* Israel|strong=\"H3478\"* out|strong=\"H3808\"* of|strong=\"H1121\"* the|strong=\"H5002\"* land of|strong=\"H1121\"* Egypt|strong=\"H4714\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* Philistines|strong=\"H6430\"* from|strong=\"H5927\"* Caphtor|strong=\"H3731\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* Syrians from|strong=\"H5927\"* Kir|strong=\"H7024\"*?" + }, + { + "verseNum": 8, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H6440\"* eyes|strong=\"H5869\"* of|strong=\"H1004\"* the|strong=\"H6440\"* Lord|strong=\"H3068\"* Yahweh|strong=\"H3068\"* are|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H6440\"* sinful|strong=\"H2400\"* kingdom|strong=\"H4467\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* destroy|strong=\"H8045\"* it|strong=\"H5921\"* from|strong=\"H6440\"* off|strong=\"H5921\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H1004\"* the|strong=\"H6440\"* earth, except|strong=\"H3588\"* that|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* utterly|strong=\"H8045\"* destroy|strong=\"H8045\"* the|strong=\"H6440\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“For|strong=\"H3588\"* behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1471\"* command|strong=\"H6680\"*, and|strong=\"H3478\"* I|strong=\"H3588\"* will|strong=\"H1471\"* sift|strong=\"H5128\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"* among|strong=\"H3808\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* as|strong=\"H3588\"* grain|strong=\"H3605\"* is|strong=\"H2009\"* sifted|strong=\"H5128\"* in|strong=\"H3478\"* a|strong=\"H3068\"* sieve|strong=\"H3531\"*, yet|strong=\"H3588\"* not|strong=\"H3808\"* the|strong=\"H3605\"* least kernel|strong=\"H6872\"* will|strong=\"H1471\"* fall|strong=\"H5307\"* on|strong=\"H5307\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* sinners|strong=\"H2400\"* of|strong=\"H5971\"* my|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H5971\"* die|strong=\"H4191\"* by|strong=\"H4191\"* the|strong=\"H3605\"* sword|strong=\"H2719\"*, who|strong=\"H3605\"* say, ‘Evil|strong=\"H7451\"* won’t overtake|strong=\"H5066\"* nor|strong=\"H3808\"* meet|strong=\"H6923\"* us|strong=\"H7451\"*.’" + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H1931\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3117\"* tent of|strong=\"H3117\"* David|strong=\"H1732\"* who|strong=\"H1931\"* is|strong=\"H1931\"* fallen|strong=\"H5307\"* and|strong=\"H6965\"* close up|strong=\"H6965\"* its|strong=\"H6965\"* breaches|strong=\"H6556\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H1931\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* its|strong=\"H6965\"* ruins|strong=\"H2034\"*, and|strong=\"H6965\"* I|strong=\"H3117\"* will|strong=\"H1931\"* build|strong=\"H1129\"* it|strong=\"H1931\"* as|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H3117\"* days|strong=\"H3117\"* of|strong=\"H3117\"* old|strong=\"H5769\"*," + }, + { + "verseNum": 12, + "text": "that|strong=\"H3605\"* they|strong=\"H3068\"* may|strong=\"H3068\"* possess|strong=\"H3423\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* Edom and|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* who|strong=\"H3605\"* are|strong=\"H1471\"* called|strong=\"H7121\"* by|strong=\"H5921\"* my|strong=\"H3605\"* name|strong=\"H8034\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* who|strong=\"H3605\"* does|strong=\"H6213\"* this|strong=\"H2063\"*." + }, + { + "verseNum": 13, + "text": "“Behold|strong=\"H2009\"*, the|strong=\"H3605\"* days|strong=\"H3117\"* come|strong=\"H5066\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 14, + "text": "I|strong=\"H3478\"* will|strong=\"H5971\"* bring|strong=\"H7725\"* my|strong=\"H7725\"* people|strong=\"H5971\"* Israel|strong=\"H3478\"* back|strong=\"H7725\"* from|strong=\"H7725\"* captivity|strong=\"H7622\"*," + }, + { + "verseNum": 15, + "text": "I|strong=\"H5414\"* will|strong=\"H3068\"* plant|strong=\"H5193\"* them|strong=\"H5414\"* on|strong=\"H5921\"* their|strong=\"H3068\"* land," + } + ] + } + ] + }, + { + "name": "Obadiah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H5921\"* vision|strong=\"H2377\"* of|strong=\"H3068\"* Obadiah|strong=\"H5662\"*. This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* the|strong=\"H5921\"* Lord|strong=\"H3068\"*+ 1:1 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* says|strong=\"H3541\"* about|strong=\"H5921\"* Edom. We|strong=\"H8085\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* news|strong=\"H8052\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, and|strong=\"H6965\"* an|strong=\"H7971\"* ambassador|strong=\"H6735\"* is|strong=\"H3068\"* sent|strong=\"H7971\"* among|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"*, saying, “Arise|strong=\"H6965\"*, and|strong=\"H6965\"* let|strong=\"H7971\"*’s rise|strong=\"H6965\"* up|strong=\"H6965\"* against|strong=\"H5921\"* her|strong=\"H7971\"* in|strong=\"H5921\"* battle|strong=\"H4421\"*." + }, + { + "verseNum": 2, + "text": "Behold|strong=\"H2009\"*,+ 1:2 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H5414\"* have|strong=\"H1471\"* made|strong=\"H5414\"* you|strong=\"H5414\"* small|strong=\"H6996\"* among the|strong=\"H5414\"* nations|strong=\"H1471\"*. You|strong=\"H5414\"* are|strong=\"H1471\"* greatly|strong=\"H3966\"* despised." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3381\"* pride|strong=\"H2087\"* of|strong=\"H3820\"* your|strong=\"H3381\"* heart|strong=\"H3820\"* has|strong=\"H4310\"* deceived|strong=\"H5377\"* you|strong=\"H3381\"*, you|strong=\"H3381\"* who|strong=\"H4310\"* dwell|strong=\"H7931\"* in|strong=\"H7931\"* the|strong=\"H3381\"* clefts|strong=\"H2288\"* of|strong=\"H3820\"* the|strong=\"H3381\"* rock|strong=\"H5553\"*, whose|strong=\"H4310\"* habitation|strong=\"H7931\"* is|strong=\"H3820\"* high|strong=\"H4791\"*, who|strong=\"H4310\"* says in|strong=\"H7931\"* his|strong=\"H7931\"* heart|strong=\"H3820\"*, ‘Who|strong=\"H4310\"* will|strong=\"H4310\"* bring|strong=\"H3381\"* me|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* the|strong=\"H3381\"* ground?’" + }, + { + "verseNum": 4, + "text": "Though you|strong=\"H7760\"* mount|strong=\"H5404\"* on|strong=\"H7760\"* high|strong=\"H1361\"* as|strong=\"H3068\"* the|strong=\"H5002\"* eagle|strong=\"H5404\"*, and|strong=\"H3068\"* though your|strong=\"H3068\"* nest|strong=\"H7064\"* is|strong=\"H3068\"* set|strong=\"H7760\"* among|strong=\"H8033\"* the|strong=\"H5002\"* stars|strong=\"H3556\"*, I|strong=\"H7760\"* will|strong=\"H3068\"* bring|strong=\"H3381\"* you|strong=\"H7760\"* down|strong=\"H3381\"* from|strong=\"H3381\"* there|strong=\"H8033\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "“If thieves|strong=\"H1590\"* came to|strong=\"H3808\"* you|strong=\"H3808\"*, if robbers|strong=\"H7703\"* by|strong=\"H3915\"* night|strong=\"H3915\"*—oh, what|strong=\"H1767\"* disaster awaits you|strong=\"H3808\"*—wouldn’t they|strong=\"H3808\"* only steal|strong=\"H1589\"* until they|strong=\"H3808\"* had|strong=\"H1767\"* enough|strong=\"H1767\"*? If grape pickers came to|strong=\"H3808\"* you|strong=\"H3808\"*, wouldn’t they|strong=\"H3808\"* leave|strong=\"H7604\"* some|strong=\"H5955\"* gleaning|strong=\"H5955\"* grapes|strong=\"H5955\"*?" + }, + { + "verseNum": 6, + "text": "How Esau|strong=\"H6215\"* will be ransacked|strong=\"H2664\"*! How his|strong=\"H6215\"* hidden|strong=\"H4710\"* treasures|strong=\"H4710\"* are sought out|strong=\"H2664\"*!" + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* men|strong=\"H3605\"* of|strong=\"H1366\"* your|strong=\"H3605\"* alliance have|strong=\"H7965\"* brought|strong=\"H7760\"* you|strong=\"H3605\"* on|strong=\"H7760\"* your|strong=\"H3605\"* way|strong=\"H7971\"*, even|strong=\"H5704\"* to|strong=\"H5704\"* the|strong=\"H3605\"* border|strong=\"H1366\"*. The|strong=\"H3605\"* men|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3201\"* at|strong=\"H3201\"* peace|strong=\"H7965\"* with|strong=\"H1285\"* you|strong=\"H3605\"* have|strong=\"H7965\"* deceived|strong=\"H5377\"* you|strong=\"H3605\"*, and|strong=\"H7971\"* prevailed|strong=\"H3201\"* against|strong=\"H7971\"* you|strong=\"H3605\"*. Friends who|strong=\"H3605\"* eat|strong=\"H3899\"* your|strong=\"H3605\"* bread|strong=\"H3899\"* lay|strong=\"H7760\"* a|strong=\"H3068\"* snare under|strong=\"H8478\"* you|strong=\"H3605\"*. There|strong=\"H7965\"* is|strong=\"H3605\"* no|strong=\"H3605\"* understanding|strong=\"H8394\"* in|strong=\"H3899\"* him|strong=\"H7971\"*.”" + }, + { + "verseNum": 8, + "text": "“Won’t I|strong=\"H3117\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “destroy the|strong=\"H5002\"* wise|strong=\"H2450\"* men|strong=\"H2450\"* out|strong=\"H3808\"* of|strong=\"H3068\"* Edom, and|strong=\"H3068\"* understanding|strong=\"H8394\"* out|strong=\"H3808\"* of|strong=\"H3068\"* the|strong=\"H5002\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* Esau|strong=\"H6215\"*?" + }, + { + "verseNum": 9, + "text": "Your|strong=\"H3772\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*, Teman|strong=\"H8487\"*, will|strong=\"H2022\"* be|strong=\"H2022\"* dismayed|strong=\"H2865\"*, to|strong=\"H4616\"* the|strong=\"H3772\"* end|strong=\"H4616\"* that|strong=\"H4616\"* everyone may|strong=\"H1368\"* be|strong=\"H2022\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H3772\"* the|strong=\"H3772\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"* by|strong=\"H2022\"* slaughter|strong=\"H6993\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3772\"* the|strong=\"H3680\"* violence|strong=\"H2555\"* done to|strong=\"H5769\"* your|strong=\"H3772\"* brother Jacob|strong=\"H3290\"*, shame will|strong=\"H3290\"* cover|strong=\"H3680\"* you|strong=\"H3772\"*, and|strong=\"H5769\"* you|strong=\"H3772\"* will|strong=\"H3290\"* be|strong=\"H5769\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* forever|strong=\"H5769\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* you|strong=\"H5921\"* stood|strong=\"H5975\"* on|strong=\"H5921\"* the|strong=\"H5921\"* other|strong=\"H5048\"* side|strong=\"H5048\"*, in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* strangers|strong=\"H2114\"* carried|strong=\"H7617\"* away|strong=\"H7617\"* his|strong=\"H5921\"* substance|strong=\"H2428\"* and|strong=\"H3117\"* foreigners|strong=\"H2114\"* entered|strong=\"H5975\"* into|strong=\"H5921\"* his|strong=\"H5921\"* gates|strong=\"H8179\"* and|strong=\"H3117\"* cast|strong=\"H3032\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*, even|strong=\"H1571\"* you|strong=\"H5921\"* were|strong=\"H3117\"* like|strong=\"H5921\"* one|strong=\"H1571\"* of|strong=\"H3117\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H7200\"* don’t look|strong=\"H7200\"* down on|strong=\"H3117\"* your|strong=\"H7200\"* brother in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* his|strong=\"H7200\"* disaster|strong=\"H5235\"*, and|strong=\"H1121\"* don’t rejoice|strong=\"H8055\"* over the|strong=\"H7200\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* their|strong=\"H7200\"* destruction. Don’t speak|strong=\"H6310\"* proudly|strong=\"H1431\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H1121\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 13, + "text": "Don’t enter into|strong=\"H7200\"* the|strong=\"H7200\"* gate|strong=\"H8179\"* of|strong=\"H3117\"* my|strong=\"H7200\"* people|strong=\"H5971\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*. Don’t look|strong=\"H7200\"* down|strong=\"H7971\"* on|strong=\"H3117\"* their|strong=\"H7200\"* affliction|strong=\"H7451\"* in|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*, neither|strong=\"H1571\"* seize their|strong=\"H7200\"* wealth|strong=\"H2428\"* on|strong=\"H3117\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* their|strong=\"H7200\"* calamity|strong=\"H7451\"*." + }, + { + "verseNum": 14, + "text": "Don’t stand|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* crossroads to|strong=\"H5921\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* those|strong=\"H5921\"* of|strong=\"H3117\"* his|strong=\"H5921\"* who|strong=\"H6412\"* escape|strong=\"H6412\"*. Don’t deliver|strong=\"H5462\"* up|strong=\"H5975\"* those|strong=\"H5921\"* of|strong=\"H3117\"* his|strong=\"H5921\"* who|strong=\"H6412\"* remain|strong=\"H5975\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3117\"* distress|strong=\"H6869\"*." + }, + { + "verseNum": 15, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*! As|strong=\"H3117\"* you|strong=\"H3588\"* have|strong=\"H3068\"* done|strong=\"H6213\"*, it|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H3068\"* done|strong=\"H6213\"* to|strong=\"H7725\"* you|strong=\"H3588\"*. Your|strong=\"H3068\"* deeds|strong=\"H7218\"* will|strong=\"H3068\"* return|strong=\"H7725\"* upon|strong=\"H5921\"* your|strong=\"H3068\"* own head|strong=\"H7218\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"* as|strong=\"H1961\"* you|strong=\"H3588\"* have|strong=\"H1961\"* drunk|strong=\"H8354\"* on|strong=\"H5921\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*, so|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1961\"* drink|strong=\"H8354\"* continually|strong=\"H8548\"*. Yes|strong=\"H3588\"*, they|strong=\"H3588\"* will|strong=\"H1961\"* drink|strong=\"H8354\"*, swallow|strong=\"H3886\"* down|strong=\"H3886\"*, and|strong=\"H1471\"* will|strong=\"H1961\"* be|strong=\"H1961\"* as|strong=\"H1961\"* though|strong=\"H3588\"* they|strong=\"H3588\"* had|strong=\"H1961\"* not|strong=\"H3808\"* been|strong=\"H1961\"*." + }, + { + "verseNum": 17, + "text": "But|strong=\"H1961\"* in|strong=\"H1004\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"*, there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* those|strong=\"H1961\"* who|strong=\"H6413\"* escape|strong=\"H6413\"*, and|strong=\"H1004\"* it|strong=\"H3423\"* will|strong=\"H1961\"* be|strong=\"H1961\"* holy|strong=\"H6944\"*. The|strong=\"H3423\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* possess|strong=\"H3423\"* their|strong=\"H3423\"* possessions|strong=\"H4180\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fire|strong=\"H1814\"*, the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Joseph|strong=\"H3130\"* a|strong=\"H3068\"* flame|strong=\"H3852\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Esau|strong=\"H6215\"* for|strong=\"H3588\"* stubble|strong=\"H7179\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* burn among|strong=\"H3808\"* them|strong=\"H1961\"* and|strong=\"H3068\"* devour them|strong=\"H1961\"*. There|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* any|strong=\"H1961\"* remaining|strong=\"H8300\"* to|strong=\"H1696\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Esau|strong=\"H6215\"*.” Indeed|strong=\"H3588\"*, Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* spoken|strong=\"H1696\"*." + }, + { + "verseNum": 19, + "text": "Those of|strong=\"H2022\"* the|strong=\"H3423\"* South|strong=\"H5045\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* mountain|strong=\"H2022\"* of|strong=\"H2022\"* Esau|strong=\"H6215\"*, and|strong=\"H2022\"* those of|strong=\"H2022\"* the|strong=\"H3423\"* lowland|strong=\"H8219\"*, the|strong=\"H3423\"* Philistines|strong=\"H6430\"*. They|strong=\"H6430\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* the|strong=\"H3423\"* field|strong=\"H7704\"* of|strong=\"H2022\"* Ephraim, and|strong=\"H2022\"* the|strong=\"H3423\"* field|strong=\"H7704\"* of|strong=\"H2022\"* Samaria|strong=\"H8111\"*. Benjamin|strong=\"H1144\"* will|strong=\"H7704\"* possess|strong=\"H3423\"* Gilead|strong=\"H1568\"*." + }, + { + "verseNum": 20, + "text": "The|strong=\"H5704\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* this|strong=\"H2088\"* army|strong=\"H2426\"* of|strong=\"H1121\"* the|strong=\"H5704\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, who|strong=\"H1121\"* are|strong=\"H1121\"* among|strong=\"H3478\"* the|strong=\"H5704\"* Canaanites|strong=\"H3669\"*, will|strong=\"H3478\"* possess|strong=\"H3423\"* even|strong=\"H5704\"* to|strong=\"H5704\"* Zarephath|strong=\"H6886\"*; and|strong=\"H1121\"* the|strong=\"H5704\"* captives|strong=\"H1546\"* of|strong=\"H1121\"* Jerusalem|strong=\"H3389\"*, who|strong=\"H1121\"* are|strong=\"H1121\"* in|strong=\"H3478\"* Sepharad|strong=\"H5614\"*, will|strong=\"H3478\"* possess|strong=\"H3423\"* the|strong=\"H5704\"* cities|strong=\"H5892\"* of|strong=\"H1121\"* the|strong=\"H5704\"* Negev|strong=\"H5045\"*." + }, + { + "verseNum": 21, + "text": "Saviors will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* on|strong=\"H3068\"* Mount|strong=\"H2022\"* Zion|strong=\"H6726\"* to|strong=\"H3068\"* judge|strong=\"H8199\"* the|strong=\"H3068\"* mountains|strong=\"H2022\"* of|strong=\"H3068\"* Esau|strong=\"H6215\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* kingdom|strong=\"H4410\"* will|strong=\"H3068\"* be|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s." + } + ] + } + ] + }, + { + "name": "Jonah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amittai, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H3212\"* Nineveh|strong=\"H5210\"*, that|strong=\"H3588\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* preach|strong=\"H7121\"* against|strong=\"H5921\"* it|strong=\"H7121\"*, for|strong=\"H3588\"* their|strong=\"H6440\"* wickedness|strong=\"H7451\"* has|strong=\"H3588\"* come|strong=\"H5927\"* up|strong=\"H5927\"* before|strong=\"H6440\"* me|strong=\"H6440\"*.”" + }, + { + "verseNum": 3, + "text": "But|strong=\"H3068\"* Jonah|strong=\"H3124\"* rose|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3381\"* flee|strong=\"H1272\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. He|strong=\"H3068\"* went|strong=\"H3381\"* down|strong=\"H3381\"* to|strong=\"H3381\"* Joppa|strong=\"H3305\"*, and|strong=\"H6965\"* found|strong=\"H4672\"* a|strong=\"H3068\"* ship going|strong=\"H3381\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"*; so|strong=\"H5414\"* he|strong=\"H3068\"* paid|strong=\"H5414\"* its|strong=\"H5414\"* fare|strong=\"H7939\"*, and|strong=\"H6965\"* went|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* it|strong=\"H5414\"*, to|strong=\"H3381\"* go|strong=\"H3381\"* with|strong=\"H5973\"* them|strong=\"H5414\"* to|strong=\"H3381\"* Tarshish|strong=\"H8659\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "But|strong=\"H1961\"* Yahweh|strong=\"H3068\"* sent|strong=\"H3068\"* out|strong=\"H2904\"* a|strong=\"H3068\"* great|strong=\"H1419\"* wind|strong=\"H7307\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* there|strong=\"H1961\"* was|strong=\"H3068\"* a|strong=\"H3068\"* mighty|strong=\"H1419\"* storm|strong=\"H5591\"* on|strong=\"H3068\"* the|strong=\"H3068\"* sea|strong=\"H3220\"*, so|strong=\"H1961\"* that|strong=\"H3068\"* the|strong=\"H3068\"* ship was|strong=\"H3068\"* likely to|strong=\"H3068\"* break|strong=\"H7665\"* up|strong=\"H3220\"*." + }, + { + "verseNum": 5, + "text": "Then|strong=\"H3372\"* the|strong=\"H5921\"* mariners|strong=\"H4419\"* were|strong=\"H3627\"* afraid|strong=\"H3372\"*, and|strong=\"H3381\"* every|strong=\"H2199\"* man cried|strong=\"H2199\"* to|strong=\"H3381\"* his|strong=\"H5921\"* god. They|strong=\"H5921\"* threw|strong=\"H2904\"* the|strong=\"H5921\"* cargo|strong=\"H3627\"* that|strong=\"H3627\"* was|strong=\"H3627\"* in|strong=\"H5921\"* the|strong=\"H5921\"* ship|strong=\"H5600\"* into|strong=\"H3381\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* to|strong=\"H3381\"* lighten|strong=\"H7043\"* the|strong=\"H5921\"* ship|strong=\"H5600\"*. But|strong=\"H7290\"* Jonah|strong=\"H3124\"* had|strong=\"H3124\"* gone|strong=\"H3381\"* down|strong=\"H3381\"* into|strong=\"H3381\"* the|strong=\"H5921\"* innermost|strong=\"H3411\"* parts|strong=\"H3411\"* of|strong=\"H3627\"* the|strong=\"H5921\"* ship|strong=\"H5600\"* and|strong=\"H3381\"* he|strong=\"H5921\"* was|strong=\"H3627\"* laying down|strong=\"H3381\"*, and|strong=\"H3381\"* was|strong=\"H3627\"* fast asleep|strong=\"H7290\"*." + }, + { + "verseNum": 6, + "text": "So|strong=\"H7121\"* the|strong=\"H7121\"* ship master|strong=\"H7227\"* came|strong=\"H7126\"* to|strong=\"H6965\"* him|strong=\"H7121\"*, and|strong=\"H6965\"* said|strong=\"H7121\"* to|strong=\"H6965\"* him|strong=\"H7121\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* mean, sleeper|strong=\"H7290\"*? Arise|strong=\"H6965\"*, call|strong=\"H7121\"* on|strong=\"H6965\"* your|strong=\"H3808\"* God|strong=\"H3808\"*!+ 1:6 or, gods* Maybe your|strong=\"H3808\"* God|strong=\"H3808\"*+ 1:6 or, gods * will|strong=\"H3808\"* notice us|strong=\"H7121\"*, so|strong=\"H7121\"* that|strong=\"H7121\"* we|strong=\"H3068\"* won’t perish.”" + }, + { + "verseNum": 7, + "text": "They|strong=\"H5921\"* all|strong=\"H3045\"* said to|strong=\"H3212\"* each other|strong=\"H7453\"*, “Come|strong=\"H3212\"*! Let|strong=\"H3212\"*’s cast|strong=\"H5307\"* lots|strong=\"H1486\"*, that|strong=\"H3045\"* we|strong=\"H3068\"* may|strong=\"H4310\"* know|strong=\"H3045\"* who|strong=\"H4310\"* is|strong=\"H4310\"* responsible for|strong=\"H5921\"* this|strong=\"H2063\"* evil|strong=\"H7451\"* that|strong=\"H3045\"* is|strong=\"H4310\"* on|strong=\"H5921\"* us|strong=\"H5921\"*.” So|strong=\"H2063\"* they|strong=\"H5921\"* cast|strong=\"H5307\"* lots|strong=\"H1486\"*, and|strong=\"H3212\"* the|strong=\"H5921\"* lot|strong=\"H1486\"* fell|strong=\"H5307\"* on|strong=\"H5921\"* Jonah|strong=\"H3124\"*." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H2088\"* they|strong=\"H4100\"* asked|strong=\"H4100\"* him|strong=\"H5046\"*, “Tell|strong=\"H5046\"* us|strong=\"H4994\"*, please|strong=\"H4994\"*, for|strong=\"H7451\"* whose|strong=\"H4310\"* cause|strong=\"H5971\"* this|strong=\"H2088\"* evil|strong=\"H7451\"* is|strong=\"H2088\"* on|strong=\"H4399\"* us|strong=\"H4994\"*. What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H4994\"* occupation|strong=\"H4399\"*? Where|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H5046\"* come|strong=\"H4994\"* from|strong=\"H7451\"*? What|strong=\"H4100\"* is|strong=\"H2088\"* your|strong=\"H4994\"* country? Of|strong=\"H5971\"* what|strong=\"H4100\"* people|strong=\"H5971\"* are|strong=\"H5971\"* you|strong=\"H5046\"*?”" + }, + { + "verseNum": 9, + "text": "He|strong=\"H6213\"* said to|strong=\"H3068\"* them|strong=\"H6213\"*, “I|strong=\"H3068\"* am|strong=\"H3068\"* a|strong=\"H3068\"* Hebrew|strong=\"H5680\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* fear|strong=\"H3373\"* Yahweh|strong=\"H3068\"*, the|strong=\"H6213\"* God|strong=\"H3068\"*+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* of|strong=\"H3068\"* heaven|strong=\"H8064\"*, who|strong=\"H3068\"* has|strong=\"H3068\"* made|strong=\"H6213\"* the|strong=\"H6213\"* sea|strong=\"H3220\"* and|strong=\"H3068\"* the|strong=\"H6213\"* dry|strong=\"H3004\"* land|strong=\"H3004\"*.”" + }, + { + "verseNum": 10, + "text": "Then|strong=\"H6213\"* the|strong=\"H6440\"* men|strong=\"H1419\"* were|strong=\"H1992\"* exceedingly|strong=\"H1419\"* afraid|strong=\"H3372\"*, and|strong=\"H3068\"* said to|strong=\"H3068\"* him|strong=\"H6440\"*, “What|strong=\"H4100\"* have|strong=\"H3068\"* you|strong=\"H3588\"* done|strong=\"H6213\"*?” For|strong=\"H3588\"* the|strong=\"H6440\"* men|strong=\"H1419\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* he|strong=\"H1931\"* was|strong=\"H3068\"* fleeing|strong=\"H1272\"* from|strong=\"H6440\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, because|strong=\"H3588\"* he|strong=\"H1931\"* had|strong=\"H3068\"* told|strong=\"H5046\"* them|strong=\"H1992\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H1980\"* they|strong=\"H3588\"* said to|strong=\"H1980\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* shall|strong=\"H6213\"* we|strong=\"H3068\"* do|strong=\"H6213\"* to|strong=\"H1980\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* may|strong=\"H6213\"* be|strong=\"H3220\"* calm|strong=\"H8367\"* to|strong=\"H1980\"* us|strong=\"H5921\"*?” For|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* grew|strong=\"H1980\"* more|strong=\"H3588\"* and|strong=\"H1980\"* more|strong=\"H3588\"* stormy|strong=\"H5590\"*." + }, + { + "verseNum": 12, + "text": "He|strong=\"H3588\"* said to|strong=\"H5921\"* them|strong=\"H5921\"*, “Take|strong=\"H5375\"* me|strong=\"H5921\"* up|strong=\"H5375\"*, and|strong=\"H1419\"* throw|strong=\"H2904\"* me|strong=\"H5921\"* into|strong=\"H5921\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*. Then|strong=\"H2088\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* will|strong=\"H7945\"* be|strong=\"H3220\"* calm|strong=\"H8367\"* for|strong=\"H3588\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* know|strong=\"H3045\"* that|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H5921\"* me|strong=\"H5921\"* this|strong=\"H2088\"* great|strong=\"H1419\"* storm|strong=\"H5591\"* is|strong=\"H2088\"* on|strong=\"H5921\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 13, + "text": "Nevertheless|strong=\"H3588\"* the|strong=\"H5921\"* men|strong=\"H1980\"* rowed|strong=\"H2864\"* hard|strong=\"H2864\"* to|strong=\"H1980\"* get|strong=\"H1980\"* them|strong=\"H5921\"* back|strong=\"H7725\"* to|strong=\"H1980\"* the|strong=\"H5921\"* land|strong=\"H3004\"*; but|strong=\"H3588\"* they|strong=\"H3588\"* could|strong=\"H3201\"* not|strong=\"H3808\"*, for|strong=\"H3588\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* grew|strong=\"H1980\"* more|strong=\"H3808\"* and|strong=\"H1980\"* more|strong=\"H3808\"* stormy|strong=\"H5590\"* against|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H5921\"* they|strong=\"H3588\"* cried|strong=\"H7121\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H7121\"*, “We|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, we|strong=\"H3068\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, don’t let|strong=\"H4994\"* us|strong=\"H5414\"* die for|strong=\"H3588\"* this|strong=\"H2088\"* man|strong=\"H5315\"*’s life|strong=\"H5315\"*, and|strong=\"H3068\"* don’t lay|strong=\"H5414\"* on|strong=\"H5921\"* us|strong=\"H5414\"* innocent|strong=\"H5355\"* blood|strong=\"H1818\"*; for|strong=\"H3588\"* you|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, have|strong=\"H3068\"* done|strong=\"H6213\"* as|strong=\"H6213\"* it|strong=\"H5414\"* pleased|strong=\"H2654\"* you|strong=\"H3588\"*.”" + }, + { + "verseNum": 15, + "text": "So|strong=\"H5375\"* they|strong=\"H5375\"* took|strong=\"H5375\"* up|strong=\"H5375\"* Jonah|strong=\"H3124\"* and|strong=\"H5975\"* threw|strong=\"H2904\"* him|strong=\"H5975\"* into|strong=\"H3220\"* the|strong=\"H5375\"* sea|strong=\"H3220\"*; and|strong=\"H5975\"* the|strong=\"H5375\"* sea|strong=\"H3220\"* ceased|strong=\"H5975\"* its|strong=\"H5975\"* raging|strong=\"H2197\"*." + }, + { + "verseNum": 16, + "text": "Then|strong=\"H3372\"* the|strong=\"H3068\"* men|strong=\"H1419\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* exceedingly|strong=\"H1419\"*; and|strong=\"H3068\"* they|strong=\"H3068\"* offered|strong=\"H2076\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* made|strong=\"H5087\"* vows|strong=\"H5088\"*." + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"* prepared a|strong=\"H3068\"* huge fish to swallow up Jonah, and Jonah was in the belly of the fish three days and three nights." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H1961\"* Jonah|strong=\"H3124\"* prayed to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, his|strong=\"H3068\"* God|strong=\"H3068\"*, out|strong=\"H1419\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fish|strong=\"H1709\"*’s belly|strong=\"H4578\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3068\"* said," + }, + { + "verseNum": 3, + "text": "For|strong=\"H7121\"* you|strong=\"H6963\"* threw me|strong=\"H6963\"* into the|strong=\"H8085\"* depths," + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* said, ‘I|strong=\"H5921\"* have|strong=\"H5104\"* been|strong=\"H5674\"* banished from|strong=\"H5921\"* your|strong=\"H3605\"* sight;" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3254\"* waters surrounded me|strong=\"H5048\"*," + }, + { + "verseNum": 6, + "text": "I|strong=\"H5704\"* went|strong=\"H5437\"* down|strong=\"H5437\"* to|strong=\"H5704\"* the|strong=\"H5704\"* bottoms of|strong=\"H7218\"* the|strong=\"H5704\"* mountains." + }, + { + "verseNum": 7, + "text": "“When|strong=\"H3068\"* my|strong=\"H3068\"* soul fainted within|strong=\"H1157\"* me|strong=\"H1157\"*, I|strong=\"H3068\"* remembered Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Those|strong=\"H5921\"* who|strong=\"H3068\"* regard|strong=\"H5921\"* vain idols forsake their|strong=\"H3068\"* own|strong=\"H5315\"* mercy|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "But|strong=\"H5800\"* I will|strong=\"H2617\"* sacrifice to|strong=\"H8104\"* you|strong=\"H5800\"* with the|strong=\"H8104\"* voice of|strong=\"H1892\"* thanksgiving." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H3068\"* Yahweh|strong=\"H3068\"* spoke to|strong=\"H3068\"* the|strong=\"H3068\"* fish, and|strong=\"H3068\"* it|strong=\"H7999\"* vomited out Jonah on|strong=\"H3068\"* the|strong=\"H3068\"* dry land." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Jonah|strong=\"H3124\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Arise|strong=\"H6965\"*, go|strong=\"H3212\"* to|strong=\"H1696\"* Nineveh|strong=\"H5210\"*, that|strong=\"H5892\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, and|strong=\"H6965\"* preach|strong=\"H7121\"* to|strong=\"H1696\"* it|strong=\"H7121\"* the|strong=\"H7121\"* message that|strong=\"H5892\"* I|strong=\"H6965\"* give|strong=\"H1696\"* you|strong=\"H1696\"*.”" + }, + { + "verseNum": 3, + "text": "So|strong=\"H1961\"* Jonah|strong=\"H3124\"* arose|strong=\"H6965\"*, and|strong=\"H6965\"* went|strong=\"H3212\"* to|strong=\"H3212\"* Nineveh|strong=\"H5210\"*, according to|strong=\"H3212\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*. Now|strong=\"H1961\"* Nineveh|strong=\"H5210\"* was|strong=\"H3068\"* an|strong=\"H1961\"* exceedingly|strong=\"H1419\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, three|strong=\"H7969\"* days|strong=\"H3117\"*’ journey|strong=\"H4109\"* across." + }, + { + "verseNum": 4, + "text": "Jonah|strong=\"H3124\"* began|strong=\"H2490\"* to|strong=\"H3117\"* enter into|strong=\"H2015\"* the|strong=\"H3117\"* city|strong=\"H5892\"* a|strong=\"H3068\"* day|strong=\"H3117\"*’s journey|strong=\"H4109\"*, and|strong=\"H3117\"* he|strong=\"H3117\"* cried|strong=\"H7121\"* out, and|strong=\"H3117\"* said|strong=\"H7121\"*, “In|strong=\"H3117\"* forty days|strong=\"H3117\"*, Nineveh|strong=\"H5210\"* will|strong=\"H5892\"* be|strong=\"H5750\"* overthrown|strong=\"H2015\"*!”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H7121\"* people of|strong=\"H7121\"* Nineveh|strong=\"H5210\"* believed God; and|strong=\"H1419\"* they|strong=\"H5704\"* proclaimed|strong=\"H7121\"* a|strong=\"H3068\"* fast|strong=\"H6685\"* and|strong=\"H1419\"* put|strong=\"H3847\"* on|strong=\"H3847\"* sackcloth|strong=\"H8242\"*, from|strong=\"H5704\"* their|strong=\"H7121\"* greatest|strong=\"H1419\"* even|strong=\"H5704\"* to|strong=\"H5704\"* their|strong=\"H7121\"* least|strong=\"H6996\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H5921\"* news reached|strong=\"H5060\"* the|strong=\"H5921\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Nineveh|strong=\"H5210\"*, and|strong=\"H6965\"* he|strong=\"H5921\"* arose|strong=\"H6965\"* from|strong=\"H5921\"* his|strong=\"H5921\"* throne|strong=\"H3678\"*, took|strong=\"H4428\"* off|strong=\"H5921\"* his|strong=\"H5921\"* royal|strong=\"H4428\"* robe, covered|strong=\"H3680\"* himself|strong=\"H3427\"* with|strong=\"H5921\"* sackcloth|strong=\"H8242\"*, and|strong=\"H6965\"* sat|strong=\"H3427\"* in|strong=\"H3427\"* ashes." + }, + { + "verseNum": 7, + "text": "He|strong=\"H1241\"* made a|strong=\"H3068\"* proclamation|strong=\"H2199\"* and|strong=\"H4428\"* published through Nineveh|strong=\"H5210\"* by|strong=\"H4325\"* the|strong=\"H8354\"* decree|strong=\"H2940\"* of|strong=\"H4428\"* the|strong=\"H8354\"* king|strong=\"H4428\"* and|strong=\"H4428\"* his|strong=\"H4428\"* nobles|strong=\"H1419\"*, saying, “Let neither|strong=\"H8354\"* man|strong=\"H1419\"* nor|strong=\"H1241\"* animal, herd|strong=\"H1241\"* nor|strong=\"H1241\"* flock|strong=\"H6629\"*, taste|strong=\"H2938\"* anything|strong=\"H3972\"*; let them|strong=\"H7462\"* not|strong=\"H4325\"* feed|strong=\"H7462\"*, nor|strong=\"H1241\"* drink|strong=\"H8354\"* water|strong=\"H4325\"*;" + }, + { + "verseNum": 8, + "text": "but|strong=\"H1870\"* let|strong=\"H7725\"* them|strong=\"H7725\"* be|strong=\"H1870\"* covered|strong=\"H3680\"* with|strong=\"H3680\"* sackcloth|strong=\"H8242\"*, both|strong=\"H4480\"* man|strong=\"H7451\"* and|strong=\"H7725\"* animal, and|strong=\"H7725\"* let|strong=\"H7725\"* them|strong=\"H7725\"* cry|strong=\"H7121\"* mightily|strong=\"H2394\"* to|strong=\"H7725\"* God. Yes, let|strong=\"H7725\"* them|strong=\"H7725\"* turn|strong=\"H7725\"* everyone from|strong=\"H4480\"* his|strong=\"H7121\"* evil|strong=\"H7451\"* way|strong=\"H1870\"* and|strong=\"H7725\"* from|strong=\"H4480\"* the|strong=\"H4480\"* violence|strong=\"H2555\"* that|strong=\"H7121\"* is|strong=\"H1870\"* in|strong=\"H7725\"* his|strong=\"H7121\"* hands|strong=\"H3709\"*." + }, + { + "verseNum": 9, + "text": "Who|strong=\"H4310\"* knows|strong=\"H3045\"* whether|strong=\"H3045\"* God|strong=\"H3808\"* will|strong=\"H4310\"* not|strong=\"H3808\"* turn|strong=\"H7725\"* and|strong=\"H7725\"* relent|strong=\"H5162\"*, and|strong=\"H7725\"* turn|strong=\"H7725\"* away|strong=\"H7725\"* from|strong=\"H7725\"* his|strong=\"H7725\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"*, so|strong=\"H3808\"* that|strong=\"H3045\"* we|strong=\"H3068\"* might not|strong=\"H3808\"* perish?”" + }, + { + "verseNum": 10, + "text": "God|strong=\"H3808\"* saw|strong=\"H7200\"* their|strong=\"H1992\"* works|strong=\"H4639\"*, that|strong=\"H3588\"* they|strong=\"H1992\"* turned|strong=\"H7725\"* from|strong=\"H7725\"* their|strong=\"H1992\"* evil|strong=\"H7451\"* way|strong=\"H1870\"*. God|strong=\"H3808\"* relented|strong=\"H5162\"* of|strong=\"H1870\"* the|strong=\"H5921\"* disaster|strong=\"H7451\"* which|strong=\"H1992\"* he|strong=\"H3588\"* said|strong=\"H1696\"* he|strong=\"H3588\"* would|strong=\"H6213\"* do|strong=\"H6213\"* to|strong=\"H1696\"* them|strong=\"H1992\"*, and|strong=\"H7725\"* he|strong=\"H3588\"* didn’t do|strong=\"H6213\"* it|strong=\"H5921\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H7451\"* it displeased|strong=\"H7489\"* Jonah|strong=\"H3124\"* exceedingly|strong=\"H1419\"*, and|strong=\"H1419\"* he was|strong=\"H7451\"* angry|strong=\"H2734\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3588\"* prayed|strong=\"H6419\"* to|strong=\"H5704\"* Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* said|strong=\"H1697\"*, “Please|strong=\"H7451\"*, Yahweh|strong=\"H3068\"*, wasn’t this|strong=\"H2088\"* what|strong=\"H1697\"* I|strong=\"H3588\"* said|strong=\"H1697\"* when|strong=\"H3588\"* I|strong=\"H3588\"* was|strong=\"H3068\"* still|strong=\"H3588\"* in|strong=\"H5921\"* my|strong=\"H3068\"* own|strong=\"H1961\"* country? Therefore|strong=\"H3651\"* I|strong=\"H3588\"* hurried to|strong=\"H5704\"* flee|strong=\"H1272\"* to|strong=\"H5704\"* Tarshish|strong=\"H8659\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H1697\"* a|strong=\"H3068\"* gracious|strong=\"H2587\"* God|strong=\"H3068\"* and|strong=\"H3068\"* merciful|strong=\"H7349\"*, slow to|strong=\"H5704\"* anger, and|strong=\"H3068\"* abundant|strong=\"H7227\"* in|strong=\"H5921\"* loving kindness|strong=\"H2617\"*, and|strong=\"H3068\"* you|strong=\"H3588\"* relent|strong=\"H5162\"* of|strong=\"H3068\"* doing|strong=\"H7451\"* harm|strong=\"H7451\"*." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H6258\"* now|strong=\"H6258\"*, Yahweh|strong=\"H3068\"*, take|strong=\"H3947\"*, I|strong=\"H3588\"* beg|strong=\"H4994\"* you|strong=\"H3588\"*, my|strong=\"H3068\"* life|strong=\"H5315\"* from|strong=\"H4480\"* me|strong=\"H4994\"*, for|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* better|strong=\"H2896\"* for|strong=\"H3588\"* me|strong=\"H4994\"* to|strong=\"H3068\"* die|strong=\"H4194\"* than|strong=\"H4480\"* to|strong=\"H3068\"* live|strong=\"H2416\"*.”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* said, “Is|strong=\"H3068\"* it|strong=\"H3190\"* right|strong=\"H3068\"* for|strong=\"H3068\"* you|strong=\"H3190\"* to|strong=\"H3068\"* be|strong=\"H3068\"* angry|strong=\"H2734\"*?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1961\"* Jonah|strong=\"H3124\"* went|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"* and|strong=\"H5892\"* sat|strong=\"H3427\"* on|strong=\"H7200\"* the|strong=\"H7200\"* east|strong=\"H6924\"* side|strong=\"H6924\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"*, and|strong=\"H5892\"* there|strong=\"H8033\"* made|strong=\"H6213\"* himself|strong=\"H6213\"* a|strong=\"H3068\"* booth|strong=\"H5521\"* and|strong=\"H5892\"* sat|strong=\"H3427\"* under|strong=\"H8478\"* it|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H7200\"* shade|strong=\"H6738\"*, until|strong=\"H5704\"* he|strong=\"H5704\"* might see|strong=\"H7200\"* what|strong=\"H4100\"* would|strong=\"H6213\"* become|strong=\"H1961\"* of|strong=\"H3427\"* the|strong=\"H7200\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* God|strong=\"H3068\"* prepared|strong=\"H4487\"* a|strong=\"H3068\"* vine and|strong=\"H3068\"* made|strong=\"H1961\"* it|strong=\"H5921\"* to|strong=\"H3068\"* come|strong=\"H5927\"* up|strong=\"H5927\"* over|strong=\"H5921\"* Jonah|strong=\"H3124\"*, that|strong=\"H3068\"* it|strong=\"H5921\"* might|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* shade|strong=\"H6738\"* over|strong=\"H5921\"* his|strong=\"H3068\"* head|strong=\"H7218\"* to|strong=\"H3068\"* deliver|strong=\"H5337\"* him|strong=\"H5921\"* from|strong=\"H5921\"* his|strong=\"H3068\"* discomfort. So|strong=\"H1961\"* Jonah|strong=\"H3124\"* was|strong=\"H3068\"* exceedingly|strong=\"H1419\"* glad|strong=\"H8055\"* because|strong=\"H5921\"* of|strong=\"H3068\"* the|strong=\"H5921\"* vine." + }, + { + "verseNum": 7, + "text": "But|strong=\"H5221\"* God prepared|strong=\"H4487\"* a|strong=\"H3068\"* worm|strong=\"H8438\"* at|strong=\"H5927\"* dawn|strong=\"H7837\"* the|strong=\"H5221\"* next|strong=\"H4283\"* day|strong=\"H4283\"*, and|strong=\"H5927\"* it|strong=\"H5927\"* chewed on|strong=\"H5927\"* the|strong=\"H5221\"* vine so|strong=\"H5927\"* that|strong=\"H5927\"* it|strong=\"H5927\"* withered|strong=\"H3001\"*." + }, + { + "verseNum": 8, + "text": "When|strong=\"H1961\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* arose|strong=\"H2224\"*, God prepared|strong=\"H4487\"* a|strong=\"H3068\"* sultry east|strong=\"H6921\"* wind|strong=\"H7307\"*; and|strong=\"H7218\"* the|strong=\"H5921\"* sun|strong=\"H8121\"* beat|strong=\"H5221\"* on|strong=\"H5921\"* Jonah|strong=\"H3124\"*’s head|strong=\"H7218\"*, so|strong=\"H1961\"* that|strong=\"H5315\"* he|strong=\"H5921\"* was|strong=\"H1961\"* faint|strong=\"H5968\"* and|strong=\"H7218\"* requested|strong=\"H7592\"* for|strong=\"H5921\"* himself|strong=\"H5315\"* that|strong=\"H5315\"* he|strong=\"H5921\"* might|strong=\"H2416\"* die|strong=\"H4191\"*. He|strong=\"H5921\"* said, “It|strong=\"H5921\"* is|strong=\"H5315\"* better|strong=\"H2896\"* for|strong=\"H5921\"* me|strong=\"H5315\"* to|strong=\"H4191\"* die|strong=\"H4191\"* than|strong=\"H2896\"* to|strong=\"H4191\"* live|strong=\"H2416\"*.”" + }, + { + "verseNum": 9, + "text": "God|strong=\"H3190\"* said to|strong=\"H5704\"* Jonah|strong=\"H3124\"*, “Is|strong=\"H4194\"* it|strong=\"H5921\"* right for|strong=\"H5704\"* you|strong=\"H5921\"* to|strong=\"H5704\"* be angry|strong=\"H2734\"* about|strong=\"H5921\"* the|strong=\"H5921\"* vine?”" + }, + { + "verseNum": 10, + "text": "Yahweh|strong=\"H3068\"* said, “You|strong=\"H5921\"* have|strong=\"H1961\"* been|strong=\"H1961\"* concerned|strong=\"H2347\"* for|strong=\"H5921\"* the|strong=\"H5921\"* vine, for|strong=\"H5921\"* which|strong=\"H3068\"* you|strong=\"H5921\"* have|strong=\"H1961\"* not|strong=\"H3808\"* labored|strong=\"H5998\"*, neither|strong=\"H3808\"* made|strong=\"H1961\"* it|strong=\"H5921\"* grow|strong=\"H1431\"*; which|strong=\"H3068\"* came|strong=\"H1961\"* up|strong=\"H1431\"* in|strong=\"H5921\"* a|strong=\"H3068\"* night|strong=\"H3915\"* and|strong=\"H1121\"* perished in|strong=\"H5921\"* a|strong=\"H3068\"* night|strong=\"H3915\"*." + }, + { + "verseNum": 11, + "text": "Shouldn’t I|strong=\"H5921\"* be|strong=\"H3426\"* concerned|strong=\"H3045\"* for|strong=\"H5921\"* Nineveh|strong=\"H5210\"*, that|strong=\"H3045\"* great|strong=\"H1419\"* city|strong=\"H5892\"*, in|strong=\"H5921\"* which|strong=\"H5892\"* are|strong=\"H3426\"* more|strong=\"H7235\"* than|strong=\"H7235\"* one|strong=\"H3808\"* hundred twenty|strong=\"H8147\"* thousand|strong=\"H7239\"* persons who|strong=\"H7227\"* can|strong=\"H3045\"*’t discern|strong=\"H3045\"* between|strong=\"H3045\"* their|strong=\"H5921\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H1419\"* their|strong=\"H5921\"* left|strong=\"H8040\"* hand|strong=\"H3225\"*, and|strong=\"H1419\"* also|strong=\"H3045\"* many|strong=\"H7227\"* animals?”" + } + ] + } + ] + }, + { + "name": "Micah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* that|strong=\"H3117\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Micah|strong=\"H4318\"* of|strong=\"H4428\"* Morasheth in|strong=\"H5921\"* the|strong=\"H5921\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Jotham|strong=\"H3147\"*, Ahaz, and|strong=\"H3063\"* Hezekiah|strong=\"H2396\"*, kings|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*, which|strong=\"H3068\"* he|strong=\"H3117\"* saw|strong=\"H2372\"* concerning|strong=\"H5921\"* Samaria|strong=\"H8111\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H3605\"* peoples|strong=\"H5971\"*, all|strong=\"H3605\"* of|strong=\"H5971\"* you|strong=\"H3605\"*!" + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* behold|strong=\"H2009\"*,+ 1:3 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* Yahweh|strong=\"H3068\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H4725\"*," + }, + { + "verseNum": 4, + "text": "The|strong=\"H6440\"* mountains|strong=\"H2022\"* melt|strong=\"H4549\"* under|strong=\"H8478\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 5, + "text": "“All|strong=\"H3605\"* this|strong=\"H2063\"* is|strong=\"H4310\"* for|strong=\"H1004\"* the|strong=\"H3605\"* disobedience of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 6, + "text": "Therefore I|strong=\"H7760\"* will|strong=\"H7704\"* make|strong=\"H7760\"* Samaria|strong=\"H8111\"* like|strong=\"H8111\"* a|strong=\"H3068\"* rubble heap|strong=\"H5856\"* of|strong=\"H7704\"* the|strong=\"H7760\"* field|strong=\"H7704\"*," + }, + { + "verseNum": 7, + "text": "All|strong=\"H3605\"* her|strong=\"H3605\"* idols|strong=\"H6091\"* will|strong=\"H5704\"* be|strong=\"H7725\"* beaten|strong=\"H3807\"* to|strong=\"H5704\"* pieces|strong=\"H3807\"*," + }, + { + "verseNum": 8, + "text": "For|strong=\"H5921\"* this|strong=\"H2063\"* I|strong=\"H5921\"* will|strong=\"H1323\"* lament|strong=\"H5594\"* and|strong=\"H3212\"* wail|strong=\"H3213\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* her|strong=\"H5060\"* wounds|strong=\"H4347\"* are|strong=\"H5971\"* incurable;" + }, + { + "verseNum": 10, + "text": "Don’t tell|strong=\"H5046\"* it in|strong=\"H5046\"* Gath|strong=\"H1661\"*." + }, + { + "verseNum": 11, + "text": "Pass|strong=\"H5674\"* on|strong=\"H5674\"*, inhabitant|strong=\"H3427\"* of|strong=\"H3427\"* Shaphir|strong=\"H8208\"*, in|strong=\"H3427\"* nakedness|strong=\"H6181\"* and|strong=\"H3318\"* shame|strong=\"H1322\"*." + }, + { + "verseNum": 12, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* inhabitant|strong=\"H3427\"* of|strong=\"H3068\"* Maroth|strong=\"H4796\"* waits anxiously for|strong=\"H3588\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 13, + "text": "Harness|strong=\"H7573\"* the|strong=\"H3588\"* chariot|strong=\"H4818\"* to|strong=\"H3478\"* the|strong=\"H3588\"* swift|strong=\"H7409\"* steed, inhabitant|strong=\"H3427\"* of|strong=\"H1323\"* Lachish|strong=\"H3923\"*." + }, + { + "verseNum": 14, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H5414\"* will|strong=\"H4428\"* give|strong=\"H5414\"* a|strong=\"H3068\"* parting|strong=\"H7964\"* gift|strong=\"H5414\"* to|strong=\"H3478\"* Moresheth Gath." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5704\"* will|strong=\"H3478\"* yet|strong=\"H5750\"* bring a|strong=\"H3068\"* conqueror|strong=\"H3423\"* to|strong=\"H5704\"* you|strong=\"H5704\"*, inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Mareshah|strong=\"H4762\"*." + }, + { + "verseNum": 16, + "text": "Shave|strong=\"H7139\"* your|strong=\"H5921\"* heads," + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H6213\"* those|strong=\"H1945\"* who|strong=\"H3588\"* devise|strong=\"H2803\"* iniquity" + }, + { + "verseNum": 2, + "text": "They|strong=\"H5375\"* covet|strong=\"H2530\"* fields|strong=\"H7704\"* and|strong=\"H1004\"* seize|strong=\"H1497\"* them|strong=\"H5375\"*," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*:" + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5971\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* you|strong=\"H5921\"*," + }, + { + "verseNum": 5, + "text": "Therefore|strong=\"H3651\"* you|strong=\"H3808\"* will|strong=\"H3068\"* have|strong=\"H1961\"* no|strong=\"H3808\"* one|strong=\"H3808\"* who|strong=\"H3068\"* divides the|strong=\"H3068\"* land|strong=\"H1486\"* by|strong=\"H3068\"* lot|strong=\"H1486\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s assembly|strong=\"H6951\"*." + }, + { + "verseNum": 6, + "text": "“Don’t prophesy|strong=\"H5197\"*!”—they|strong=\"H3808\"* prophesy|strong=\"H5197\"*—" + }, + { + "verseNum": 7, + "text": "Shall|strong=\"H3068\"* it|strong=\"H1980\"* be|strong=\"H3808\"* said|strong=\"H1697\"*, O|strong=\"H3068\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 8, + "text": "But|strong=\"H7725\"* lately my|strong=\"H6965\"* people|strong=\"H5971\"* have|strong=\"H5971\"* risen|strong=\"H6965\"* up|strong=\"H6965\"* as|strong=\"H5971\"* an|strong=\"H6965\"* enemy." + }, + { + "verseNum": 9, + "text": "You|strong=\"H5921\"* drive|strong=\"H1644\"* the|strong=\"H5921\"* women of|strong=\"H1004\"* my|strong=\"H3947\"* people|strong=\"H5971\"* out|strong=\"H1644\"* from|strong=\"H5921\"* their|strong=\"H3947\"* pleasant|strong=\"H8588\"* houses|strong=\"H1004\"*;" + }, + { + "verseNum": 10, + "text": "Arise|strong=\"H6965\"*, and|strong=\"H6965\"* depart|strong=\"H3212\"*!" + }, + { + "verseNum": 11, + "text": "If|strong=\"H3863\"* a|strong=\"H3068\"* man|strong=\"H2088\"* walking|strong=\"H1980\"* in|strong=\"H1980\"* a|strong=\"H3068\"* spirit|strong=\"H7307\"* of|strong=\"H7307\"* falsehood|strong=\"H8267\"* lies|strong=\"H8267\"*, saying," + }, + { + "verseNum": 12, + "text": "I|strong=\"H7760\"* will|strong=\"H3478\"* surely|strong=\"H6908\"* assemble|strong=\"H6908\"* all|strong=\"H3605\"* of|strong=\"H8432\"* you|strong=\"H3605\"*, Jacob|strong=\"H3290\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3068\"* who|strong=\"H3068\"* breaks|strong=\"H6555\"* open|strong=\"H6440\"* the|strong=\"H6440\"* way|strong=\"H5674\"* goes|strong=\"H3318\"* up|strong=\"H5927\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H3045\"* said|strong=\"H8085\"*," + }, + { + "verseNum": 2, + "text": "You|strong=\"H5921\"* who|strong=\"H2896\"* hate|strong=\"H8130\"* the|strong=\"H5921\"* good|strong=\"H2896\"*," + }, + { + "verseNum": 3, + "text": "who|strong=\"H5971\"* also|strong=\"H5971\"* eat the|strong=\"H5921\"* flesh|strong=\"H1320\"* of|strong=\"H8432\"* my|strong=\"H5921\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* they|strong=\"H1992\"* will|strong=\"H3068\"* cry|strong=\"H2199\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"* concerning|strong=\"H5921\"* the|strong=\"H5921\"* prophets|strong=\"H5030\"* who|strong=\"H5971\"* lead|strong=\"H8582\"* my|strong=\"H5414\"* people|strong=\"H5971\"* astray|strong=\"H8582\"*—for|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5971\"* feed their|strong=\"H3068\"* teeth|strong=\"H8127\"*, they|strong=\"H3068\"* proclaim|strong=\"H7121\"*, “Peace|strong=\"H7965\"*!” and|strong=\"H3068\"* whoever doesn’t provide|strong=\"H5414\"* for|strong=\"H5921\"* their|strong=\"H3068\"* mouths|strong=\"H6310\"*, they|strong=\"H3068\"* prepare|strong=\"H6942\"* war|strong=\"H4421\"* against|strong=\"H5921\"* him|strong=\"H5414\"*:" + }, + { + "verseNum": 6, + "text": "“Therefore|strong=\"H3651\"* night|strong=\"H3915\"* is|strong=\"H3117\"* over|strong=\"H5921\"* you|strong=\"H5921\"*, with|strong=\"H5921\"* no|strong=\"H5030\"* vision|strong=\"H2377\"*," + }, + { + "verseNum": 7, + "text": "The|strong=\"H3605\"* seers|strong=\"H2374\"* shall be|strong=\"H2374\"* disappointed," + }, + { + "verseNum": 8, + "text": "But|strong=\"H3068\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H5046\"*, I|strong=\"H3478\"* am|strong=\"H3068\"* full|strong=\"H4390\"* of|strong=\"H3068\"* power|strong=\"H3581\"* by|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s Spirit|strong=\"H7307\"*," + }, + { + "verseNum": 9, + "text": "Please|strong=\"H4994\"* listen|strong=\"H8085\"* to|strong=\"H3478\"* this|strong=\"H2063\"*, you|strong=\"H3605\"* heads|strong=\"H7218\"* of|strong=\"H1004\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Jacob|strong=\"H3290\"*," + }, + { + "verseNum": 10, + "text": "who|strong=\"H3389\"* build|strong=\"H1129\"* up|strong=\"H1129\"* Zion|strong=\"H6726\"* with|strong=\"H3389\"* blood|strong=\"H1818\"*," + }, + { + "verseNum": 11, + "text": "Her|strong=\"H5921\"* leaders|strong=\"H7218\"* judge|strong=\"H8199\"* for|strong=\"H5921\"* bribes|strong=\"H7810\"*," + }, + { + "verseNum": 12, + "text": "Therefore|strong=\"H3651\"* Zion|strong=\"H6726\"* for|strong=\"H1004\"* your|strong=\"H1961\"* sake|strong=\"H1558\"* will|strong=\"H1961\"* be|strong=\"H1961\"* plowed|strong=\"H2790\"* like|strong=\"H1961\"* a|strong=\"H3068\"* field|strong=\"H7704\"*," + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "But|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H5921\"* latter days|strong=\"H3117\"*," + }, + { + "verseNum": 2, + "text": "Many|strong=\"H7227\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* go|strong=\"H1980\"* and|strong=\"H1980\"* say|strong=\"H1697\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H5971\"* he|strong=\"H5704\"* will|strong=\"H1471\"* judge|strong=\"H8199\"* between|strong=\"H4421\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*," + }, + { + "verseNum": 4, + "text": "But|strong=\"H3588\"* every|strong=\"H3068\"* man will|strong=\"H3068\"* sit|strong=\"H3427\"* under|strong=\"H8478\"* his|strong=\"H3068\"* vine|strong=\"H1612\"* and|strong=\"H3068\"* under|strong=\"H8478\"* his|strong=\"H3068\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*." + }, + { + "verseNum": 5, + "text": "Indeed|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H5971\"* may|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3068\"* their|strong=\"H3605\"* gods," + }, + { + "verseNum": 6, + "text": "“In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* I|strong=\"H5704\"* will|strong=\"H3068\"* make|strong=\"H7760\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* lame|strong=\"H6760\"* a|strong=\"H3068\"* remnant|strong=\"H7611\"*," + }, + { + "verseNum": 8, + "text": "You|strong=\"H5704\"*, tower|strong=\"H4026\"* of|strong=\"H1323\"* the|strong=\"H5704\"* flock|strong=\"H5739\"*, the|strong=\"H5704\"* hill|strong=\"H6076\"* of|strong=\"H1323\"* the|strong=\"H5704\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 9, + "text": "Now|strong=\"H6258\"* why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3588\"* cry|strong=\"H7321\"* out|strong=\"H2388\"* aloud|strong=\"H7321\"*?" + }, + { + "verseNum": 10, + "text": "Be|strong=\"H3068\"* in|strong=\"H3068\"* pain|strong=\"H2342\"*, and|strong=\"H3068\"* labor|strong=\"H3205\"* to|strong=\"H5704\"* give|strong=\"H3205\"* birth|strong=\"H3205\"*, daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + }, + { + "verseNum": 11, + "text": "Now|strong=\"H6258\"* many|strong=\"H7227\"* nations|strong=\"H1471\"* have|strong=\"H5869\"* assembled against|strong=\"H5921\"* you|strong=\"H5921\"*, that|strong=\"H1471\"* say," + }, + { + "verseNum": 12, + "text": "But|strong=\"H3588\"* they|strong=\"H1992\"* don’t know|strong=\"H3045\"* the|strong=\"H3588\"* thoughts|strong=\"H4284\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 13, + "text": "Arise|strong=\"H6965\"* and|strong=\"H6965\"* thresh|strong=\"H1758\"*, daughter|strong=\"H1323\"* of|strong=\"H3068\"* Zion|strong=\"H6726\"*," + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Now|strong=\"H1961\"* you|strong=\"H3117\"* shall|strong=\"H3478\"* gather yourself in|strong=\"H3478\"* troops," + }, + { + "verseNum": 2, + "text": "But|strong=\"H3651\"* you|strong=\"H5414\"*, Bethlehem Ephrathah," + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H6258\"* he|strong=\"H3588\"* will|strong=\"H3068\"* abandon them|strong=\"H5975\"* until|strong=\"H5704\"* the|strong=\"H3588\"* time|strong=\"H6258\"* that|strong=\"H3588\"* she|strong=\"H3588\"* who|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3427\"* labor gives|strong=\"H5975\"* birth." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3588\"* shall|strong=\"H2088\"* stand|strong=\"H6965\"*, and|strong=\"H6965\"* shall|strong=\"H2088\"* shepherd|strong=\"H7462\"* in|strong=\"H5921\"* the|strong=\"H5921\"* strength of|strong=\"H5921\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 5, + "text": "He|strong=\"H3588\"* will|strong=\"H2719\"* be|strong=\"H2719\"* our|strong=\"H5337\"* peace when|strong=\"H3588\"* Assyria invades our|strong=\"H5337\"* land|strong=\"H1366\"*" + }, + { + "verseNum": 6, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* rule the|strong=\"H5921\"* land|strong=\"H7130\"* of|strong=\"H1121\"* Assyria with|strong=\"H3068\"* the|strong=\"H5921\"* sword," + }, + { + "verseNum": 7, + "text": "The|strong=\"H5674\"* remnant|strong=\"H7611\"* of|strong=\"H7611\"* Jacob|strong=\"H3290\"* will|strong=\"H1961\"* be|strong=\"H1961\"* among|strong=\"H7130\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*" + }, + { + "verseNum": 8, + "text": "The|strong=\"H3605\"* remnant of|strong=\"H3027\"* Jacob will|strong=\"H3027\"* be|strong=\"H3027\"* among|strong=\"H5921\"* the|strong=\"H3605\"* nations," + }, + { + "verseNum": 9, + "text": "Let|strong=\"H1961\"* your|strong=\"H3068\"* hand be|strong=\"H1961\"* lifted up|strong=\"H1961\"* above your|strong=\"H3068\"* adversaries," + }, + { + "verseNum": 10, + "text": "“It|strong=\"H3772\"* will|strong=\"H5892\"* happen in|strong=\"H5892\"* that|strong=\"H3605\"* day”, says Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H1961\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3772\"* cities of|strong=\"H3027\"* your|strong=\"H1961\"* land" + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* will|strong=\"H3027\"* destroy|strong=\"H3772\"* witchcraft from|strong=\"H3772\"* your|strong=\"H3808\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 13, + "text": "I|strong=\"H5892\"* will|strong=\"H5892\"* cut off your|strong=\"H7130\"* engraved images and|strong=\"H5892\"* your|strong=\"H7130\"* pillars from|strong=\"H5892\"* among|strong=\"H7130\"* you|strong=\"H7130\"*;" + }, + { + "verseNum": 14, + "text": "I|strong=\"H3808\"* will|strong=\"H1471\"* uproot your|strong=\"H8085\"* Asherah poles from|strong=\"H8085\"* among|strong=\"H3808\"* you|strong=\"H6213\"*;" + }, + { + "verseNum": 15, + "text": "I will execute vengeance in anger" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Listen|strong=\"H8085\"* now|strong=\"H4994\"* to|strong=\"H3068\"* what|strong=\"H6963\"* Yahweh|strong=\"H3068\"* says:" + }, + { + "verseNum": 2, + "text": "Hear|strong=\"H8085\"*, you|strong=\"H3588\"* mountains|strong=\"H2022\"*, Yahweh|strong=\"H3068\"*’s indictment|strong=\"H7379\"*," + }, + { + "verseNum": 3, + "text": "My|strong=\"H6213\"* people|strong=\"H5971\"*, what|strong=\"H4100\"* have|strong=\"H5971\"* I|strong=\"H4100\"* done|strong=\"H6213\"* to|strong=\"H6213\"* you|strong=\"H6213\"*?" + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* brought|strong=\"H5927\"* you|strong=\"H3588\"* up|strong=\"H5927\"* out|strong=\"H7971\"* of|strong=\"H1004\"* the|strong=\"H6440\"* land|strong=\"H6440\"* of|strong=\"H1004\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 5, + "text": "My|strong=\"H3068\"* people|strong=\"H5971\"*, remember|strong=\"H2142\"* now|strong=\"H4994\"* what|strong=\"H4100\"* Balak|strong=\"H1111\"* king|strong=\"H4428\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* devised|strong=\"H3289\"*," + }, + { + "verseNum": 6, + "text": "How|strong=\"H4100\"* shall|strong=\"H3068\"* I|strong=\"H4100\"* come|strong=\"H6923\"* before|strong=\"H6923\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 7, + "text": "Will|strong=\"H3068\"* Yahweh|strong=\"H3068\"* be|strong=\"H3068\"* pleased|strong=\"H7521\"* with|strong=\"H3068\"* thousands|strong=\"H7233\"* of|strong=\"H3068\"* rams?" + }, + { + "verseNum": 8, + "text": "He|strong=\"H3588\"* has|strong=\"H3068\"* shown|strong=\"H6213\"* you|strong=\"H3588\"*, O|strong=\"H3068\"* man|strong=\"H2896\"*, what|strong=\"H4100\"* is|strong=\"H3068\"* good|strong=\"H2896\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s voice|strong=\"H6963\"* calls|strong=\"H7121\"* to|strong=\"H3068\"* the|strong=\"H8085\"* city|strong=\"H5892\"*—" + }, + { + "verseNum": 10, + "text": "Are|strong=\"H7563\"* there yet|strong=\"H5750\"* treasures of|strong=\"H1004\"* wickedness|strong=\"H7562\"* in|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H1004\"* wicked|strong=\"H7563\"*," + }, + { + "verseNum": 11, + "text": "Shall I|strong=\"H2135\"* tolerate dishonest|strong=\"H4820\"* scales|strong=\"H3976\"*," + }, + { + "verseNum": 12, + "text": "Her|strong=\"H4390\"* rich|strong=\"H6223\"* men|strong=\"H6223\"* are|strong=\"H6310\"* full|strong=\"H4390\"* of|strong=\"H3427\"* violence|strong=\"H2555\"*," + }, + { + "verseNum": 13, + "text": "Therefore|strong=\"H5921\"* I|strong=\"H5921\"* also|strong=\"H1571\"* have|strong=\"H1571\"* struck|strong=\"H5221\"* you|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* grievous|strong=\"H2470\"* wound." + }, + { + "verseNum": 14, + "text": "You|strong=\"H5414\"* shall|strong=\"H2719\"* eat, but|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* satisfied|strong=\"H7646\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H3808\"* will|strong=\"H3808\"* sow|strong=\"H2232\"*, but|strong=\"H3808\"* won’t reap|strong=\"H7114\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H2708\"* the|strong=\"H3605\"* statutes|strong=\"H2708\"* of|strong=\"H1004\"* Omri|strong=\"H6018\"* are|strong=\"H5971\"* kept|strong=\"H8104\"*," + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "Misery is|strong=\"H5315\"* mine!" + }, + { + "verseNum": 2, + "text": "The|strong=\"H3605\"* godly|strong=\"H2623\"* man|strong=\"H2623\"* has|strong=\"H3605\"* perished out|strong=\"H4480\"* of|strong=\"H4480\"* the|strong=\"H3605\"* earth," + }, + { + "verseNum": 3, + "text": "Their|strong=\"H5921\"* hands|strong=\"H3709\"* are|strong=\"H8199\"* on|strong=\"H5921\"* that|strong=\"H1931\"* which|strong=\"H1931\"* is|strong=\"H1931\"* evil|strong=\"H7451\"* to|strong=\"H1696\"* do|strong=\"H3190\"* it|strong=\"H1931\"* diligently|strong=\"H3190\"*." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* best|strong=\"H2896\"* of|strong=\"H3117\"* them|strong=\"H1961\"* is|strong=\"H3117\"* like|strong=\"H1961\"* a|strong=\"H3068\"* brier|strong=\"H2312\"*." + }, + { + "verseNum": 5, + "text": "Don’t trust in|strong=\"H7901\"* a|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* son|strong=\"H1121\"* dishonors the|strong=\"H3588\"* father|strong=\"H1121\"*," + }, + { + "verseNum": 7, + "text": "But|strong=\"H8085\"* as|strong=\"H3068\"* for|strong=\"H3068\"* me|strong=\"H3468\"*, I|strong=\"H8085\"* will|strong=\"H3068\"* look|strong=\"H3068\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Don’t rejoice|strong=\"H8055\"* against|strong=\"H6965\"* me|strong=\"H6965\"*, my|strong=\"H3068\"* enemy." + }, + { + "verseNum": 9, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H7200\"* indignation|strong=\"H2197\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1961\"* my|strong=\"H3068\"* enemy will|strong=\"H3068\"* see|strong=\"H7200\"* it|strong=\"H7200\"*," + }, + { + "verseNum": 11, + "text": "A|strong=\"H3068\"* day|strong=\"H3117\"* to|strong=\"H3117\"* build|strong=\"H1129\"* your|strong=\"H1129\"* walls|strong=\"H1447\"*!" + }, + { + "verseNum": 12, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* they|strong=\"H3117\"* will|strong=\"H5892\"* come|strong=\"H5892\"* to|strong=\"H5704\"* you|strong=\"H3117\"* from|strong=\"H4480\"* Assyria and|strong=\"H3117\"* the|strong=\"H4480\"* cities|strong=\"H5892\"* of|strong=\"H3117\"* Egypt|strong=\"H4693\"*," + }, + { + "verseNum": 13, + "text": "Yet|strong=\"H5921\"* the|strong=\"H5921\"* land will|strong=\"H1961\"* be|strong=\"H1961\"* desolate|strong=\"H8077\"* because|strong=\"H5921\"* of|strong=\"H3427\"* those|strong=\"H5921\"* who|strong=\"H3427\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*," + }, + { + "verseNum": 14, + "text": "Shepherd|strong=\"H7462\"* your|strong=\"H3117\"* people|strong=\"H5971\"* with|strong=\"H3117\"* your|strong=\"H3117\"* staff|strong=\"H7626\"*," + }, + { + "verseNum": 15, + "text": "“As|strong=\"H3117\"* in|strong=\"H3117\"* the|strong=\"H7200\"* days|strong=\"H3117\"* of|strong=\"H3117\"* your|strong=\"H7200\"* coming|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3117\"* the|strong=\"H7200\"* land of|strong=\"H3117\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 16, + "text": "The|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* see|strong=\"H7200\"* and|strong=\"H3027\"* be|strong=\"H3027\"* ashamed of|strong=\"H3027\"* all|strong=\"H3605\"* their|strong=\"H3605\"* might|strong=\"H1369\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3068\"* will|strong=\"H3068\"* lick|strong=\"H3897\"* the|strong=\"H3068\"* dust|strong=\"H6083\"* like|strong=\"H4526\"* a|strong=\"H3068\"* serpent|strong=\"H5175\"*." + }, + { + "verseNum": 18, + "text": "Who|strong=\"H4310\"* is|strong=\"H1931\"* a|strong=\"H3068\"* God|strong=\"H3808\"* like|strong=\"H3644\"* you|strong=\"H3588\"*, who|strong=\"H4310\"* pardons|strong=\"H5375\"* iniquity|strong=\"H5771\"*," + }, + { + "verseNum": 19, + "text": "He|strong=\"H3605\"* will|strong=\"H5771\"* again|strong=\"H7725\"* have|strong=\"H7355\"* compassion|strong=\"H7355\"* on|strong=\"H7355\"* us|strong=\"H7725\"*." + }, + { + "verseNum": 20, + "text": "You|strong=\"H5414\"* will|strong=\"H5414\"* give|strong=\"H5414\"* truth to|strong=\"H5414\"* Jacob|strong=\"H3290\"*," + } + ] + } + ] + }, + { + "name": "Nahum", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation about|strong=\"H4853\"* Nineveh|strong=\"H5210\"*. The|strong=\"H5612\"* book|strong=\"H5612\"* of|strong=\"H5612\"* the|strong=\"H5612\"* vision|strong=\"H2377\"* of|strong=\"H5612\"* Nahum|strong=\"H5151\"* the|strong=\"H5612\"* Elkoshite." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* is|strong=\"H3068\"* a|strong=\"H3068\"* jealous|strong=\"H7072\"* God|strong=\"H3068\"*+ 1:2 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* and|strong=\"H3068\"* avenges. Yahweh|strong=\"H3068\"* avenges and|strong=\"H3068\"* is|strong=\"H3068\"* full of|strong=\"H3068\"* wrath|strong=\"H2534\"*. Yahweh|strong=\"H3068\"* takes|strong=\"H5358\"* vengeance|strong=\"H5358\"* on|strong=\"H3068\"* his|strong=\"H3068\"* adversaries|strong=\"H6862\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* maintains wrath|strong=\"H2534\"* against|strong=\"H2534\"* his|strong=\"H3068\"* enemies|strong=\"H6862\"*." + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* slow to|strong=\"H3068\"* anger, and|strong=\"H3068\"* great|strong=\"H1419\"* in|strong=\"H3068\"* power|strong=\"H3581\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* by|strong=\"H3068\"* no|strong=\"H3808\"* means|strong=\"H5352\"* leave|strong=\"H5352\"* the|strong=\"H3068\"* guilty unpunished|strong=\"H5352\"*. Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* his|strong=\"H3068\"* way|strong=\"H1870\"* in|strong=\"H3068\"* the|strong=\"H3068\"* whirlwind|strong=\"H5492\"* and|strong=\"H3068\"* in|strong=\"H3068\"* the|strong=\"H3068\"* storm|strong=\"H5492\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* clouds|strong=\"H6051\"* are|strong=\"H3068\"* the|strong=\"H3068\"* dust of|strong=\"H3068\"* his|strong=\"H3068\"* feet|strong=\"H7272\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H3605\"* rebukes|strong=\"H1605\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* and|strong=\"H3220\"* makes|strong=\"H3001\"* it|strong=\"H3001\"* dry|strong=\"H3001\"*, and|strong=\"H3220\"* dries|strong=\"H3001\"* up|strong=\"H3001\"* all|strong=\"H3605\"* the|strong=\"H3605\"* rivers|strong=\"H5104\"*. Bashan|strong=\"H1316\"* and|strong=\"H3220\"* Carmel|strong=\"H3760\"* languish. The|strong=\"H3605\"* flower|strong=\"H6525\"* of|strong=\"H3605\"* Lebanon|strong=\"H3844\"* languishes." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* mountains|strong=\"H2022\"* quake|strong=\"H7493\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, and|strong=\"H6440\"* the|strong=\"H3605\"* hills|strong=\"H1389\"* melt|strong=\"H4127\"* away|strong=\"H5375\"*. The|strong=\"H3605\"* earth trembles at|strong=\"H3427\"* his|strong=\"H3605\"* presence|strong=\"H6440\"*, yes, the|strong=\"H3605\"* world|strong=\"H8398\"*, and|strong=\"H6440\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H5375\"*." + }, + { + "verseNum": 6, + "text": "Who|strong=\"H4310\"* can|strong=\"H4310\"* stand|strong=\"H5975\"* before|strong=\"H6440\"* his|strong=\"H6440\"* indignation|strong=\"H2195\"*? Who|strong=\"H4310\"* can|strong=\"H4310\"* endure|strong=\"H5975\"* the|strong=\"H6440\"* fierceness|strong=\"H2740\"* of|strong=\"H6440\"* his|strong=\"H6440\"* anger|strong=\"H2534\"*? His|strong=\"H6440\"* wrath|strong=\"H2534\"* is|strong=\"H4310\"* poured|strong=\"H5413\"* out|strong=\"H4480\"* like|strong=\"H2534\"* fire, and|strong=\"H6965\"* the|strong=\"H6440\"* rocks|strong=\"H6697\"* are|strong=\"H4310\"* broken|strong=\"H5422\"* apart by|strong=\"H5975\"* him|strong=\"H6440\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* good|strong=\"H2896\"*, a|strong=\"H3068\"* stronghold|strong=\"H4581\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* trouble|strong=\"H6869\"*; and|strong=\"H3068\"* he|strong=\"H3117\"* knows|strong=\"H3045\"* those who|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* him|strong=\"H3045\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H7291\"* with|strong=\"H6213\"* an|strong=\"H6213\"* overflowing|strong=\"H5674\"* flood|strong=\"H7858\"*, he|strong=\"H6213\"* will|strong=\"H4725\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"* of|strong=\"H4725\"* her|strong=\"H6213\"* place|strong=\"H4725\"*, and|strong=\"H6213\"* will|strong=\"H4725\"* pursue|strong=\"H7291\"* his|strong=\"H6213\"* enemies into|strong=\"H6213\"* darkness|strong=\"H2822\"*." + }, + { + "verseNum": 9, + "text": "What|strong=\"H4100\"* do|strong=\"H6213\"* you|strong=\"H6213\"* plot|strong=\"H2803\"* against|strong=\"H6965\"* Yahweh|strong=\"H3068\"*? He|strong=\"H1931\"* will|strong=\"H3068\"* make|strong=\"H6213\"* a|strong=\"H3068\"* full|strong=\"H3617\"* end|strong=\"H3617\"*. Affliction|strong=\"H6869\"* won’t rise|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H6213\"* second time|strong=\"H6471\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* entangled|strong=\"H5440\"* like|strong=\"H5704\"* thorns|strong=\"H5518\"*, and|strong=\"H5704\"* drunken|strong=\"H5433\"* as|strong=\"H5704\"* with|strong=\"H4390\"* their|strong=\"H4390\"* drink|strong=\"H5435\"*, they|strong=\"H3588\"* are|strong=\"H4390\"* consumed utterly|strong=\"H5704\"* like|strong=\"H5704\"* dry|strong=\"H3002\"* stubble|strong=\"H7179\"*." + }, + { + "verseNum": 11, + "text": "One|strong=\"H4480\"* has|strong=\"H3068\"* gone|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H3068\"* you|strong=\"H5921\"* who|strong=\"H3068\"* devises|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H5921\"* Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* counsels wickedness|strong=\"H7451\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “Though they|strong=\"H3651\"* are|strong=\"H3068\"* in|strong=\"H3068\"* full|strong=\"H8003\"* strength and|strong=\"H3068\"* likewise|strong=\"H3651\"* many|strong=\"H7227\"*, even|strong=\"H5750\"* so|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H3068\"* be|strong=\"H3808\"* cut|strong=\"H1494\"* down|strong=\"H1494\"* and|strong=\"H3068\"* pass|strong=\"H5674\"* away|strong=\"H5674\"*. Though I|strong=\"H3541\"* have|strong=\"H3068\"* afflicted|strong=\"H6031\"* you|strong=\"H3808\"*, I|strong=\"H3541\"* will|strong=\"H3068\"* afflict|strong=\"H6031\"* you|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 13, + "text": "Now|strong=\"H6258\"* I|strong=\"H5921\"* will break|strong=\"H7665\"* his|strong=\"H5921\"* yoke|strong=\"H4132\"* from|strong=\"H5921\"* off|strong=\"H5921\"* you|strong=\"H5921\"*, and|strong=\"H7665\"* will burst|strong=\"H5423\"* your|strong=\"H5921\"* bonds|strong=\"H4147\"* apart|strong=\"H5423\"*.”" + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* commanded|strong=\"H6680\"* concerning|strong=\"H5921\"* you|strong=\"H3588\"*: “No|strong=\"H3808\"* more|strong=\"H5750\"* descendants will|strong=\"H3068\"* bear your|strong=\"H3068\"* name|strong=\"H8034\"*. Out|strong=\"H5921\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* your|strong=\"H3068\"* gods, I|strong=\"H3588\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5921\"* engraved image|strong=\"H6459\"* and|strong=\"H3068\"* the|strong=\"H5921\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*. I|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H7760\"* your|strong=\"H3068\"* grave|strong=\"H6913\"*, for|strong=\"H3588\"* you|strong=\"H3588\"* are|strong=\"H3068\"* vile|strong=\"H7043\"*.”" + }, + { + "verseNum": 15, + "text": "Behold,+ 1:15 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* on the mountains the feet of him who brings good news, who publishes peace! Keep your feasts, Judah! Perform your vows, for the wicked one will no more pass through you. He is utterly cut off." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3588\"* who|strong=\"H3605\"* dashes in|strong=\"H5921\"* pieces has|strong=\"H3063\"* come|strong=\"H5674\"* up|strong=\"H5921\"* against|strong=\"H5921\"* you|strong=\"H3588\"*. Keep|strong=\"H2287\"* the|strong=\"H3605\"* fortress! Watch|strong=\"H2009\"* the|strong=\"H3605\"* way|strong=\"H5674\"*! Strengthen your|strong=\"H3605\"* waist! Fortify your|strong=\"H3605\"* power mightily!" + }, + { + "verseNum": 2, + "text": "For|strong=\"H5921\"* Yahweh|strong=\"H3068\"* restores the|strong=\"H6440\"* excellency of|strong=\"H6440\"* Jacob as|strong=\"H5927\"* the|strong=\"H6440\"* excellency of|strong=\"H6440\"* Israel, for|strong=\"H5921\"* the|strong=\"H6440\"* destroyers have|strong=\"H5921\"* destroyed them|strong=\"H5921\"* and|strong=\"H6440\"* ruined their|strong=\"H6440\"* vine branches." + }, + { + "verseNum": 3, + "text": "The|strong=\"H3588\"* shield of|strong=\"H3068\"* his|strong=\"H3068\"* mighty men|strong=\"H3478\"* is|strong=\"H3068\"* made|strong=\"H7725\"* red. The|strong=\"H3588\"* valiant men|strong=\"H3478\"* are|strong=\"H3478\"* in|strong=\"H3478\"* scarlet. The|strong=\"H3588\"* chariots flash with|strong=\"H3068\"* steel in|strong=\"H3478\"* the|strong=\"H3588\"* day of|strong=\"H3068\"* his|strong=\"H3068\"* preparation, and|strong=\"H3478\"* the|strong=\"H3588\"* pine spears are|strong=\"H3478\"* brandished." + }, + { + "verseNum": 4, + "text": "The|strong=\"H3117\"* chariots|strong=\"H7393\"* rage in|strong=\"H3117\"* the|strong=\"H3117\"* streets. They|strong=\"H3117\"* rush back and|strong=\"H3117\"* forth|strong=\"H3559\"* in|strong=\"H3117\"* the|strong=\"H3117\"* wide ways. Their|strong=\"H3559\"* appearance is|strong=\"H3117\"* like|strong=\"H4043\"* torches|strong=\"H6393\"*. They|strong=\"H3117\"* run like|strong=\"H4043\"* the|strong=\"H3117\"* lightnings." + }, + { + "verseNum": 5, + "text": "He|strong=\"H2351\"* summons his|strong=\"H1984\"* picked troops. They|strong=\"H7323\"* stumble on|strong=\"H7323\"* their|strong=\"H1984\"* way. They|strong=\"H7323\"* dash|strong=\"H7323\"* to|strong=\"H7323\"* its|strong=\"H1984\"* wall, and|strong=\"H7393\"* the|strong=\"H1984\"* protective shield is|strong=\"H4758\"* put in|strong=\"H7393\"* place." + }, + { + "verseNum": 6, + "text": "The|strong=\"H2142\"* gates of|strong=\"H2346\"* the|strong=\"H2142\"* rivers are|strong=\"H3782\"* opened, and|strong=\"H4116\"* the|strong=\"H2142\"* palace is dissolved." + }, + { + "verseNum": 7, + "text": "It|strong=\"H4127\"* is|strong=\"H5104\"* decreed: she is|strong=\"H5104\"* uncovered, she is|strong=\"H5104\"* carried away|strong=\"H4127\"*; and|strong=\"H8179\"* her|strong=\"H6605\"* servants moan as|strong=\"H8179\"* with|strong=\"H4127\"* the|strong=\"H6605\"* voice of|strong=\"H8179\"* doves, beating on|strong=\"H5104\"* their breasts." + }, + { + "verseNum": 8, + "text": "But|strong=\"H5921\"* Nineveh|strong=\"H5324\"* has been|strong=\"H5927\"* from|strong=\"H5921\"* of|strong=\"H6963\"* old like|strong=\"H5927\"* a|strong=\"H3068\"* pool of|strong=\"H6963\"* water, yet|strong=\"H5927\"* they|strong=\"H5921\"* flee away|strong=\"H1540\"*. “Stop! Stop!” they|strong=\"H5921\"* cry|strong=\"H6963\"*, but|strong=\"H5921\"* no|strong=\"H5927\"* one|strong=\"H5324\"* looks back|strong=\"H5927\"*." + }, + { + "verseNum": 9, + "text": "Take|strong=\"H5975\"* the|strong=\"H3117\"* plunder of|strong=\"H3117\"* silver. Take|strong=\"H5975\"* the|strong=\"H3117\"* plunder of|strong=\"H3117\"* gold, for|strong=\"H4325\"* there|strong=\"H1992\"* is|strong=\"H1931\"* no|strong=\"H5975\"* end of|strong=\"H3117\"* treasure, an abundance of|strong=\"H3117\"* every|strong=\"H5127\"* precious thing|strong=\"H1931\"*." + }, + { + "verseNum": 10, + "text": "She|strong=\"H3627\"* is|strong=\"H3701\"* empty, void, and|strong=\"H3701\"* waste. The|strong=\"H3605\"* heart melts, the|strong=\"H3605\"* knees knock together, their|strong=\"H3605\"* bodies and|strong=\"H3701\"* faces have|strong=\"H3605\"* grown pale." + }, + { + "verseNum": 11, + "text": "Where is|strong=\"H3820\"* the|strong=\"H3605\"* den of|strong=\"H6440\"* the|strong=\"H3605\"* lions, and|strong=\"H6440\"* the|strong=\"H3605\"* feeding place|strong=\"H3605\"* of|strong=\"H6440\"* the|strong=\"H3605\"* young lions, where the|strong=\"H3605\"* lion and|strong=\"H6440\"* the|strong=\"H3605\"* lioness walked with|strong=\"H6440\"* the|strong=\"H3605\"* lion’s cubs, and|strong=\"H6440\"* no|strong=\"H3605\"* one|strong=\"H3605\"* made|strong=\"H3605\"* them|strong=\"H6440\"* afraid?" + }, + { + "verseNum": 12, + "text": "The|strong=\"H8033\"* lion|strong=\"H3715\"* tore in|strong=\"H1980\"* pieces enough for|strong=\"H8033\"* his|strong=\"H1980\"* cubs|strong=\"H1482\"*, and|strong=\"H1980\"* strangled prey for|strong=\"H8033\"* his|strong=\"H1980\"* lionesses|strong=\"H3833\"*, and|strong=\"H1980\"* filled his|strong=\"H1980\"* caves with|strong=\"H1980\"* the|strong=\"H8033\"* kill and|strong=\"H1980\"* his|strong=\"H1980\"* dens with|strong=\"H1980\"* prey." + }, + { + "verseNum": 13, + "text": "“Behold, I|strong=\"H1767\"* am against you|strong=\"H1767\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H4390\"* Armies, “and|strong=\"H3833\"* I|strong=\"H1767\"* will burn her|strong=\"H4390\"* chariots in|strong=\"H2963\"* the|strong=\"H4390\"* smoke, and|strong=\"H3833\"* the|strong=\"H4390\"* sword will devour your|strong=\"H4390\"* young|strong=\"H3833\"* lions|strong=\"H3833\"*; and|strong=\"H3833\"* I|strong=\"H1767\"* will cut off your|strong=\"H4390\"* prey|strong=\"H2964\"* from|strong=\"H1767\"* the|strong=\"H4390\"* earth, and|strong=\"H3833\"* the|strong=\"H4390\"* voice of|strong=\"H4390\"* your|strong=\"H4390\"* messengers|strong=\"H4390\"* will no longer be heard.”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* the|strong=\"H3605\"* bloody|strong=\"H1818\"* city|strong=\"H5892\"*! It|strong=\"H3808\"* is|strong=\"H3605\"* all|strong=\"H3605\"* full|strong=\"H3605\"* of|strong=\"H5892\"* lies|strong=\"H3585\"* and|strong=\"H5892\"* robbery|strong=\"H6563\"*—no|strong=\"H3808\"* end to|strong=\"H5892\"* the|strong=\"H3605\"* prey|strong=\"H2964\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6963\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* whip|strong=\"H7752\"*, the|strong=\"H6963\"* noise|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H6963\"* rattling|strong=\"H7494\"* of|strong=\"H6963\"* wheels, prancing horses|strong=\"H5483\"*, and|strong=\"H6963\"* bounding|strong=\"H7540\"* chariots|strong=\"H4818\"*," + }, + { + "verseNum": 3, + "text": "the|strong=\"H5927\"* horseman|strong=\"H6571\"* charging|strong=\"H5927\"*, and|strong=\"H2719\"* the|strong=\"H5927\"* flashing|strong=\"H3851\"* sword|strong=\"H2719\"*, the|strong=\"H5927\"* glittering|strong=\"H1300\"* spear|strong=\"H2595\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* multitude|strong=\"H7230\"* of|strong=\"H7230\"* slain|strong=\"H2491\"*, and|strong=\"H2719\"* a|strong=\"H3068\"* great|strong=\"H7230\"* heap of|strong=\"H7230\"* corpses|strong=\"H6297\"*, and|strong=\"H2719\"* there|strong=\"H5927\"* is|strong=\"H2719\"* no|strong=\"H5927\"* end|strong=\"H7097\"* of|strong=\"H7230\"* the|strong=\"H5927\"* bodies|strong=\"H6297\"*. They|strong=\"H2719\"* stumble|strong=\"H3782\"* on|strong=\"H5927\"* their|strong=\"H5927\"* bodies|strong=\"H6297\"*" + }, + { + "verseNum": 4, + "text": "because|strong=\"H7230\"* of|strong=\"H4940\"* the|strong=\"H2181\"* multitude|strong=\"H7230\"* of|strong=\"H4940\"* the|strong=\"H2181\"* prostitution of|strong=\"H4940\"* the|strong=\"H2181\"* alluring prostitute|strong=\"H2181\"*, the|strong=\"H2181\"* mistress|strong=\"H1172\"* of|strong=\"H4940\"* witchcraft, who|strong=\"H2896\"* sells|strong=\"H4376\"* nations|strong=\"H1471\"* through her prostitution, and|strong=\"H1471\"* families|strong=\"H4940\"* through her witchcraft." + }, + { + "verseNum": 5, + "text": "“Behold|strong=\"H2005\"*, I|strong=\"H2005\"* am|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H6440\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* I|strong=\"H2005\"* will|strong=\"H3068\"* lift|strong=\"H3068\"* your|strong=\"H3068\"* skirts|strong=\"H7757\"* over|strong=\"H5921\"* your|strong=\"H3068\"* face|strong=\"H6440\"*. I|strong=\"H2005\"* will|strong=\"H3068\"* show|strong=\"H7200\"* the|strong=\"H6440\"* nations|strong=\"H1471\"* your|strong=\"H3068\"* nakedness|strong=\"H4626\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* kingdoms|strong=\"H4467\"* your|strong=\"H3068\"* shame|strong=\"H7036\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H5921\"* will throw|strong=\"H7993\"* abominable|strong=\"H8251\"* filth|strong=\"H8251\"* on|strong=\"H5921\"* you|strong=\"H5921\"* and|strong=\"H8251\"* make|strong=\"H7760\"* you|strong=\"H5921\"* vile|strong=\"H5034\"*, and|strong=\"H8251\"* will make|strong=\"H7760\"* you|strong=\"H5921\"* a|strong=\"H3068\"* spectacle|strong=\"H7210\"*." + }, + { + "verseNum": 7, + "text": "It|strong=\"H7200\"* will|strong=\"H4310\"* happen|strong=\"H1961\"* that|strong=\"H7200\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H4310\"* look|strong=\"H7200\"* at|strong=\"H7200\"* you|strong=\"H3605\"* will|strong=\"H4310\"* flee|strong=\"H5074\"* from|strong=\"H4480\"* you|strong=\"H3605\"*, and|strong=\"H7200\"* say, ‘Nineveh|strong=\"H5210\"* is|strong=\"H4310\"* laid waste|strong=\"H7703\"*! Who|strong=\"H4310\"* will|strong=\"H4310\"* mourn|strong=\"H5110\"* for|strong=\"H1245\"* her|strong=\"H3605\"*?’ Where|strong=\"H4480\"* will|strong=\"H4310\"* I|strong=\"H7200\"* seek|strong=\"H1245\"* comforters|strong=\"H5162\"* for|strong=\"H1245\"* you|strong=\"H3605\"*?”" + }, + { + "verseNum": 8, + "text": "Are|strong=\"H4325\"* you|strong=\"H3190\"* better|strong=\"H3190\"* than|strong=\"H3190\"* No-Amon|strong=\"H4996\"*,+ 3:8 or, Thebes* who|strong=\"H3427\"* was|strong=\"H4325\"* situated|strong=\"H3427\"* among|strong=\"H3427\"* the|strong=\"H5439\"* rivers|strong=\"H2975\"*,+ 3:8 or, Nile* who|strong=\"H3427\"* had|strong=\"H4325\"* the|strong=\"H5439\"* waters|strong=\"H4325\"* around|strong=\"H5439\"* her|strong=\"H5439\"*, whose rampart|strong=\"H2426\"* was|strong=\"H4325\"* the|strong=\"H5439\"* sea|strong=\"H3220\"*, and|strong=\"H3427\"* her|strong=\"H5439\"* wall|strong=\"H2346\"* was|strong=\"H4325\"* of|strong=\"H3427\"* the|strong=\"H5439\"* sea|strong=\"H3220\"*?" + }, + { + "verseNum": 9, + "text": "Cush|strong=\"H3568\"* and|strong=\"H4714\"* Egypt|strong=\"H4714\"* were|strong=\"H1961\"* her|strong=\"H1961\"* boundless strength|strong=\"H6109\"*. Put|strong=\"H6316\"* and|strong=\"H4714\"* Libya|strong=\"H6316\"* were|strong=\"H1961\"* her|strong=\"H1961\"* helpers|strong=\"H5833\"*." + }, + { + "verseNum": 10, + "text": "Yet|strong=\"H1571\"* was|strong=\"H1931\"* she|strong=\"H1931\"* carried|strong=\"H1980\"* away|strong=\"H1980\"*. She|strong=\"H1931\"* went|strong=\"H1980\"* into|strong=\"H1980\"* captivity|strong=\"H7628\"*. Her|strong=\"H3605\"* young children|strong=\"H5768\"* also|strong=\"H1571\"* were|strong=\"H1419\"* dashed|strong=\"H7376\"* in|strong=\"H5921\"* pieces|strong=\"H7376\"* at|strong=\"H5921\"* the|strong=\"H3605\"* head|strong=\"H7218\"* of|strong=\"H7218\"* all|strong=\"H3605\"* the|strong=\"H3605\"* streets|strong=\"H2351\"*, and|strong=\"H1980\"* they|strong=\"H5921\"* cast|strong=\"H3032\"* lots|strong=\"H1486\"* for|strong=\"H5921\"* her|strong=\"H3605\"* honorable|strong=\"H3513\"* men|strong=\"H1419\"*, and|strong=\"H1980\"* all|strong=\"H3605\"* her|strong=\"H3605\"* great|strong=\"H1419\"* men|strong=\"H1419\"* were|strong=\"H1419\"* bound|strong=\"H7576\"* in|strong=\"H5921\"* chains|strong=\"H2131\"*." + }, + { + "verseNum": 11, + "text": "You|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* drunken|strong=\"H7937\"*. You|strong=\"H1571\"* will|strong=\"H1961\"* be|strong=\"H1961\"* hidden|strong=\"H5956\"*. You|strong=\"H1571\"* also|strong=\"H1571\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* a|strong=\"H3068\"* stronghold|strong=\"H4581\"* because of|strong=\"H4581\"* the|strong=\"H1245\"* enemy." + }, + { + "verseNum": 12, + "text": "All|strong=\"H3605\"* your|strong=\"H3605\"* fortresses|strong=\"H4013\"* will|strong=\"H5307\"* be|strong=\"H6310\"* like|strong=\"H5973\"* fig|strong=\"H8384\"* trees|strong=\"H8384\"* with|strong=\"H5973\"* the|strong=\"H3605\"* first-ripe figs|strong=\"H8384\"*. If they|strong=\"H5921\"* are|strong=\"H6310\"* shaken|strong=\"H5128\"*, they|strong=\"H5921\"* fall|strong=\"H5307\"* into|strong=\"H5307\"* the|strong=\"H3605\"* mouth|strong=\"H6310\"* of|strong=\"H6310\"* the|strong=\"H3605\"* eater." + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, your|strong=\"H6605\"* troops|strong=\"H5971\"* among|strong=\"H7130\"* you|strong=\"H7130\"* are|strong=\"H5971\"* women. The|strong=\"H7130\"* gates|strong=\"H8179\"* of|strong=\"H8179\"* your|strong=\"H6605\"* land|strong=\"H7130\"* are|strong=\"H5971\"* set|strong=\"H6605\"* wide|strong=\"H6605\"* open|strong=\"H6605\"* to|strong=\"H5971\"* your|strong=\"H6605\"* enemies. The|strong=\"H7130\"* fire has|strong=\"H2009\"* devoured your|strong=\"H6605\"* bars|strong=\"H1280\"*." + }, + { + "verseNum": 14, + "text": "Draw|strong=\"H7579\"* water|strong=\"H4325\"* for|strong=\"H4325\"* the|strong=\"H2388\"* siege|strong=\"H4692\"*. Strengthen|strong=\"H2388\"* your|strong=\"H2388\"* fortresses|strong=\"H4013\"*. Go into|strong=\"H4325\"* the|strong=\"H2388\"* clay|strong=\"H2563\"*, and|strong=\"H2388\"* tread|strong=\"H7429\"* the|strong=\"H2388\"* mortar|strong=\"H2563\"*. Make|strong=\"H2388\"* the|strong=\"H2388\"* brick|strong=\"H4404\"* kiln strong|strong=\"H2388\"*." + }, + { + "verseNum": 15, + "text": "There|strong=\"H8033\"* the|strong=\"H3772\"* fire will|strong=\"H2719\"* devour you|strong=\"H3772\"*. The|strong=\"H3772\"* sword|strong=\"H2719\"* will|strong=\"H2719\"* cut|strong=\"H3772\"* you|strong=\"H3772\"* off|strong=\"H3772\"*. It|strong=\"H8033\"* will|strong=\"H2719\"* devour you|strong=\"H3772\"* like|strong=\"H8033\"* the|strong=\"H3772\"* grasshopper. Multiply|strong=\"H3513\"* like|strong=\"H8033\"* grasshoppers|strong=\"H3218\"*. Multiply|strong=\"H3513\"* like|strong=\"H8033\"* the|strong=\"H3772\"* locust|strong=\"H3218\"*." + }, + { + "verseNum": 16, + "text": "You|strong=\"H7235\"* have increased|strong=\"H7235\"* your|strong=\"H7235\"* merchants|strong=\"H7402\"* more|strong=\"H7235\"* than|strong=\"H7235\"* the|strong=\"H6584\"* stars|strong=\"H3556\"* of|strong=\"H3556\"* the|strong=\"H6584\"* skies. The|strong=\"H6584\"* grasshopper strips|strong=\"H6584\"* and|strong=\"H8064\"* flees away|strong=\"H5774\"*." + }, + { + "verseNum": 17, + "text": "Your|strong=\"H3045\"* guards|strong=\"H3045\"* are|strong=\"H3117\"* like|strong=\"H3808\"* the|strong=\"H3117\"* locusts|strong=\"H1462\"*, and|strong=\"H3117\"* your|strong=\"H3045\"* officials like|strong=\"H3808\"* the|strong=\"H3117\"* swarms of|strong=\"H3117\"* locusts|strong=\"H1462\"*, which|strong=\"H4725\"* settle on|strong=\"H3117\"* the|strong=\"H3117\"* walls|strong=\"H1448\"* on|strong=\"H3117\"* a|strong=\"H3068\"* cold|strong=\"H7135\"* day|strong=\"H3117\"*, but|strong=\"H3808\"* when|strong=\"H3117\"* the|strong=\"H3117\"* sun|strong=\"H8121\"* appears, they|strong=\"H3117\"* flee|strong=\"H5074\"* away|strong=\"H5074\"*, and|strong=\"H3117\"* their|strong=\"H3045\"* place|strong=\"H4725\"* is|strong=\"H3117\"* not|strong=\"H3808\"* known|strong=\"H3045\"* where|strong=\"H4725\"* they|strong=\"H3117\"* are|strong=\"H3117\"*." + }, + { + "verseNum": 18, + "text": "Your|strong=\"H5921\"* shepherds|strong=\"H7462\"* slumber|strong=\"H5123\"*, king|strong=\"H4428\"* of|strong=\"H4428\"* Assyria. Your|strong=\"H5921\"* nobles lie|strong=\"H7931\"* down|strong=\"H7931\"*. Your|strong=\"H5921\"* people|strong=\"H5971\"* are|strong=\"H5971\"* scattered|strong=\"H6335\"* on|strong=\"H5921\"* the|strong=\"H5921\"* mountains|strong=\"H2022\"*, and|strong=\"H4428\"* there|strong=\"H2022\"* is|strong=\"H4428\"* no one|strong=\"H4428\"* to|strong=\"H5921\"* gather|strong=\"H6908\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "There|strong=\"H3605\"* is|strong=\"H4310\"* no|strong=\"H3808\"* healing|strong=\"H3545\"* your|strong=\"H3605\"* wound|strong=\"H4347\"*, for|strong=\"H3588\"* your|strong=\"H3605\"* injury|strong=\"H7667\"* is|strong=\"H4310\"* fatal. All|strong=\"H3605\"* who|strong=\"H4310\"* hear|strong=\"H8085\"* the|strong=\"H3605\"* report|strong=\"H8088\"* of|strong=\"H3709\"* you|strong=\"H3588\"* clap|strong=\"H8628\"* their|strong=\"H3605\"* hands|strong=\"H3709\"* over|strong=\"H5921\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* who|strong=\"H4310\"* hasn’t felt your|strong=\"H3605\"* endless cruelty|strong=\"H7451\"*?" + } + ] + } + ] + }, + { + "name": "Habakkuk", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H2372\"* revelation which|strong=\"H5030\"* Habakkuk|strong=\"H2265\"* the|strong=\"H2372\"* prophet|strong=\"H5030\"* saw|strong=\"H2372\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*,+ 1:2 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* how|strong=\"H5704\"* long|strong=\"H5704\"* will|strong=\"H3068\"* I|strong=\"H5704\"* cry|strong=\"H2199\"*, and|strong=\"H3068\"* you|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* hear|strong=\"H8085\"*? I|strong=\"H5704\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* to|strong=\"H5704\"* you|strong=\"H5704\"* “Violence|strong=\"H2555\"*!” and|strong=\"H3068\"* will|strong=\"H3068\"* you|strong=\"H5704\"* not|strong=\"H3808\"* save|strong=\"H3467\"*?" + }, + { + "verseNum": 3, + "text": "Why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* show|strong=\"H7200\"* me|strong=\"H7200\"* iniquity|strong=\"H5999\"*, and|strong=\"H7200\"* look|strong=\"H7200\"* at|strong=\"H7200\"* perversity? For|strong=\"H1961\"* destruction|strong=\"H7701\"* and|strong=\"H7200\"* violence|strong=\"H2555\"* are|strong=\"H4100\"* before|strong=\"H5048\"* me|strong=\"H7200\"*. There|strong=\"H1961\"* is|strong=\"H4100\"* strife|strong=\"H7379\"*, and|strong=\"H7200\"* contention|strong=\"H4066\"* rises up|strong=\"H5375\"*." + }, + { + "verseNum": 4, + "text": "Therefore|strong=\"H3651\"* the|strong=\"H5921\"* law|strong=\"H8451\"* is|strong=\"H7563\"* paralyzed, and|strong=\"H4941\"* justice|strong=\"H4941\"* never|strong=\"H3808\"* prevails; for|strong=\"H3588\"* the|strong=\"H5921\"* wicked|strong=\"H7563\"* surround|strong=\"H3803\"* the|strong=\"H5921\"* righteous|strong=\"H6662\"*; therefore|strong=\"H3651\"* justice|strong=\"H4941\"* comes|strong=\"H3318\"* out|strong=\"H3318\"* perverted|strong=\"H6127\"*." + }, + { + "verseNum": 5, + "text": "“Look|strong=\"H7200\"* among|strong=\"H7200\"* the|strong=\"H7200\"* nations|strong=\"H1471\"*, watch|strong=\"H7200\"*, and|strong=\"H3117\"* wonder|strong=\"H8539\"* marvelously; for|strong=\"H3588\"* I|strong=\"H3588\"* am working|strong=\"H6466\"* a|strong=\"H3068\"* work|strong=\"H6467\"* in|strong=\"H3117\"* your|strong=\"H7200\"* days|strong=\"H3117\"* which|strong=\"H1471\"* you|strong=\"H3588\"* will|strong=\"H1471\"* not|strong=\"H3808\"* believe though|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3117\"* told|strong=\"H5608\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2005\"*,+ 1:6 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* I|strong=\"H3588\"* am|strong=\"H1980\"* raising|strong=\"H6965\"* up|strong=\"H6965\"* the|strong=\"H3588\"* Chaldeans|strong=\"H3778\"*, that|strong=\"H3588\"* bitter|strong=\"H4751\"* and|strong=\"H1980\"* hasty|strong=\"H4116\"* nation|strong=\"H1471\"* who|strong=\"H3588\"* march|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3588\"* width of|strong=\"H4908\"* the|strong=\"H3588\"* earth, to|strong=\"H1980\"* possess|strong=\"H3423\"* dwelling|strong=\"H4908\"* places|strong=\"H4908\"* that|strong=\"H3588\"* are|strong=\"H1471\"* not|strong=\"H3808\"* theirs." + }, + { + "verseNum": 7, + "text": "They|strong=\"H1931\"* are|strong=\"H4941\"* feared|strong=\"H3372\"* and|strong=\"H4941\"* dreaded. Their|strong=\"H3318\"* judgment|strong=\"H4941\"* and|strong=\"H4941\"* their|strong=\"H3318\"* dignity|strong=\"H7613\"* proceed|strong=\"H3318\"* from|strong=\"H4480\"* themselves." + }, + { + "verseNum": 8, + "text": "Their|strong=\"H7043\"* horses|strong=\"H5483\"* also are|strong=\"H5483\"* swifter|strong=\"H7043\"* than|strong=\"H7043\"* leopards|strong=\"H5246\"*, and|strong=\"H5483\"* are|strong=\"H5483\"* more fierce|strong=\"H2300\"* than|strong=\"H7043\"* the|strong=\"H7043\"* evening|strong=\"H6153\"* wolves|strong=\"H2061\"*. Their|strong=\"H7043\"* horsemen|strong=\"H6571\"* press proudly on|strong=\"H5483\"*. Yes, their|strong=\"H7043\"* horsemen|strong=\"H6571\"* come|strong=\"H7350\"* from|strong=\"H7350\"* afar|strong=\"H7350\"*. They fly|strong=\"H5774\"* as|strong=\"H6153\"* an eagle|strong=\"H5404\"* that|strong=\"H6153\"* hurries to|strong=\"H2363\"* devour." + }, + { + "verseNum": 9, + "text": "All|strong=\"H3605\"* of|strong=\"H6440\"* them|strong=\"H6440\"* come for|strong=\"H6440\"* violence|strong=\"H2555\"*. Their|strong=\"H3605\"* hordes face|strong=\"H6440\"* forward|strong=\"H6440\"*. They|strong=\"H3605\"* gather prisoners|strong=\"H7628\"* like|strong=\"H6440\"* sand|strong=\"H2344\"*." + }, + { + "verseNum": 10, + "text": "Yes, they|strong=\"H1931\"* scoff|strong=\"H7046\"* at|strong=\"H4428\"* kings|strong=\"H4428\"*, and|strong=\"H4428\"* princes|strong=\"H7336\"* are|strong=\"H4428\"* a|strong=\"H3068\"* derision|strong=\"H7832\"* to|strong=\"H4428\"* them|strong=\"H1931\"*. They|strong=\"H1931\"* laugh|strong=\"H7832\"* at|strong=\"H4428\"* every|strong=\"H3605\"* stronghold, for|strong=\"H4428\"* they|strong=\"H1931\"* build up|strong=\"H6651\"* an|strong=\"H4428\"* earthen ramp and|strong=\"H4428\"* take|strong=\"H3920\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 11, + "text": "Then|strong=\"H5674\"* they|strong=\"H2098\"* sweep|strong=\"H2498\"* by|strong=\"H5674\"* like|strong=\"H7307\"* the|strong=\"H5674\"* wind|strong=\"H7307\"* and|strong=\"H5674\"* go|strong=\"H5674\"* on|strong=\"H5674\"*. They|strong=\"H2098\"* are indeed guilty, whose|strong=\"H2098\"* strength|strong=\"H3581\"* is|strong=\"H7307\"* their god.”" + }, + { + "verseNum": 12, + "text": "Aren’t you|strong=\"H7760\"* from|strong=\"H3068\"* everlasting|strong=\"H6924\"*, Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:12 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* my|strong=\"H3068\"* Holy|strong=\"H6918\"* One|strong=\"H6918\"*? We|strong=\"H4191\"* will|strong=\"H3068\"* not|strong=\"H3808\"* die|strong=\"H4191\"*. Yahweh|strong=\"H3068\"*, you|strong=\"H7760\"* have|strong=\"H3068\"* appointed|strong=\"H7760\"* them|strong=\"H7760\"* for|strong=\"H3068\"* judgment|strong=\"H4941\"*. You|strong=\"H7760\"*, Rock|strong=\"H6697\"*, have|strong=\"H3068\"* established|strong=\"H3245\"* him|strong=\"H7760\"* to|strong=\"H4191\"* punish|strong=\"H3198\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H3808\"* who|strong=\"H6662\"* have|strong=\"H5869\"* purer eyes|strong=\"H5869\"* than|strong=\"H4480\"* to|strong=\"H3201\"* see|strong=\"H7200\"* evil|strong=\"H7451\"*, and|strong=\"H5869\"* who|strong=\"H6662\"* cannot|strong=\"H3808\"* look|strong=\"H7200\"* on|strong=\"H7200\"* perversity, why|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* tolerate|strong=\"H3201\"* those|strong=\"H4480\"* who|strong=\"H6662\"* deal treacherously and|strong=\"H5869\"* keep|strong=\"H2790\"* silent|strong=\"H2790\"* when|strong=\"H7200\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"* swallows|strong=\"H1104\"* up|strong=\"H1104\"* the|strong=\"H7200\"* man|strong=\"H7563\"* who|strong=\"H6662\"* is|strong=\"H4100\"* more|strong=\"H4480\"* righteous|strong=\"H6662\"* than|strong=\"H4480\"* he|strong=\"H4480\"*," + }, + { + "verseNum": 14, + "text": "and|strong=\"H6213\"* make|strong=\"H6213\"* men|strong=\"H6213\"* like|strong=\"H3808\"* the|strong=\"H6213\"* fish|strong=\"H1709\"* of|strong=\"H3220\"* the|strong=\"H6213\"* sea|strong=\"H3220\"*, like|strong=\"H3808\"* the|strong=\"H6213\"* creeping|strong=\"H7431\"* things|strong=\"H7431\"* that|strong=\"H7431\"* have|strong=\"H4910\"* no|strong=\"H3808\"* ruler|strong=\"H4910\"* over|strong=\"H4910\"* them|strong=\"H6213\"*?" + }, + { + "verseNum": 15, + "text": "He|strong=\"H3651\"* takes up|strong=\"H5927\"* all|strong=\"H3605\"* of|strong=\"H5921\"* them|strong=\"H5921\"* with|strong=\"H5921\"* the|strong=\"H3605\"* hook|strong=\"H2443\"*. He|strong=\"H3651\"* catches them|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* net|strong=\"H2764\"* and|strong=\"H5927\"* gathers them|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3605\"* dragnet. Therefore|strong=\"H3651\"* he|strong=\"H3651\"* rejoices|strong=\"H8055\"* and|strong=\"H5927\"* is|strong=\"H3651\"* glad|strong=\"H8055\"*." + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* he|strong=\"H3588\"* sacrifices|strong=\"H6999\"* to|strong=\"H5921\"* his|strong=\"H5921\"* net|strong=\"H2764\"* and|strong=\"H2076\"* burns|strong=\"H6999\"* incense|strong=\"H6999\"* to|strong=\"H5921\"* his|strong=\"H5921\"* dragnet, because|strong=\"H3588\"* by|strong=\"H5921\"* them|strong=\"H1992\"* his|strong=\"H5921\"* life is|strong=\"H3651\"* luxurious and|strong=\"H2076\"* his|strong=\"H5921\"* food|strong=\"H3978\"* is|strong=\"H3651\"* good." + }, + { + "verseNum": 17, + "text": "Will|strong=\"H1471\"* he|strong=\"H3651\"* therefore|strong=\"H3651\"* continually|strong=\"H8548\"* empty|strong=\"H7324\"* his|strong=\"H5921\"* net|strong=\"H2764\"*, and|strong=\"H1471\"* kill|strong=\"H2026\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* without|strong=\"H3808\"* mercy|strong=\"H2550\"*?" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H5921\"* will|strong=\"H4100\"* stand|strong=\"H5975\"* at|strong=\"H5921\"* my|strong=\"H7200\"* watch|strong=\"H6822\"* and|strong=\"H7725\"* set|strong=\"H5975\"* myself on|strong=\"H5921\"* the|strong=\"H5921\"* ramparts, and|strong=\"H7725\"* will|strong=\"H4100\"* look|strong=\"H7200\"* out|strong=\"H7200\"* to|strong=\"H1696\"* see|strong=\"H7200\"* what|strong=\"H4100\"* he|strong=\"H5921\"* will|strong=\"H4100\"* say|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7725\"*, and|strong=\"H7725\"* what|strong=\"H4100\"* I|strong=\"H5921\"* will|strong=\"H4100\"* answer|strong=\"H7725\"* concerning|strong=\"H5921\"* my|strong=\"H7200\"* complaint." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* me|strong=\"H5921\"*, “Write|strong=\"H3789\"* the|strong=\"H5921\"* vision|strong=\"H2377\"*, and|strong=\"H3068\"* make|strong=\"H7121\"* it|strong=\"H7121\"* plain on|strong=\"H5921\"* tablets|strong=\"H3871\"*, that|strong=\"H3068\"* he|strong=\"H3068\"* who|strong=\"H3068\"* runs|strong=\"H7323\"* may|strong=\"H3068\"* read|strong=\"H7121\"* it|strong=\"H7121\"*." + }, + { + "verseNum": 3, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* vision|strong=\"H2377\"* is|strong=\"H7093\"* yet|strong=\"H5750\"* for|strong=\"H3588\"* the|strong=\"H3588\"* appointed|strong=\"H4150\"* time|strong=\"H4150\"*, and|strong=\"H4150\"* it|strong=\"H3588\"* hurries toward the|strong=\"H3588\"* end|strong=\"H7093\"*, and|strong=\"H4150\"* won’t prove|strong=\"H3576\"* false|strong=\"H3576\"*. Though|strong=\"H3588\"* it|strong=\"H3588\"* takes time|strong=\"H4150\"*, wait|strong=\"H2442\"* for|strong=\"H3588\"* it|strong=\"H3588\"*, because|strong=\"H3588\"* it|strong=\"H3588\"* will|strong=\"H3808\"* surely|strong=\"H3588\"* come|strong=\"H5750\"*. It|strong=\"H3588\"* won’t delay|strong=\"H4102\"*." + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, his|strong=\"H3808\"* soul|strong=\"H5315\"* is|strong=\"H5315\"* puffed up|strong=\"H6075\"*. It|strong=\"H3808\"* is|strong=\"H5315\"* not|strong=\"H3808\"* upright|strong=\"H3474\"* in|strong=\"H5315\"* him|strong=\"H5315\"*, but|strong=\"H3808\"* the|strong=\"H3808\"* righteous|strong=\"H6662\"* will|strong=\"H6662\"* live|strong=\"H2421\"* by|strong=\"H3808\"* his|strong=\"H3808\"* faith." + }, + { + "verseNum": 5, + "text": "Yes|strong=\"H3588\"*, moreover|strong=\"H3588\"*, wine|strong=\"H3196\"* is|strong=\"H1931\"* treacherous: an|strong=\"H3588\"* arrogant man|strong=\"H1397\"* who|strong=\"H3605\"* doesn’t stay|strong=\"H5115\"* at|strong=\"H6908\"* home|strong=\"H5115\"*, who|strong=\"H3605\"* enlarges|strong=\"H7337\"* his|strong=\"H3605\"* desire|strong=\"H5315\"* as|strong=\"H5315\"* Sheol|strong=\"H7585\"*;+ 2:5 Sheol is the place of the dead. * he|strong=\"H1931\"* is|strong=\"H1931\"* like|strong=\"H3808\"* death|strong=\"H4194\"* and|strong=\"H5971\"* can|strong=\"H4194\"*’t be|strong=\"H3808\"* satisfied|strong=\"H7646\"*, but|strong=\"H3588\"* gathers|strong=\"H6908\"* to|strong=\"H5315\"* himself|strong=\"H5315\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* and|strong=\"H5971\"* heaps to|strong=\"H5315\"* himself|strong=\"H5315\"* all|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 6, + "text": "Won’t all|strong=\"H3605\"* these|strong=\"H3605\"* take|strong=\"H5375\"* up|strong=\"H5375\"* a|strong=\"H3068\"* parable|strong=\"H4912\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4912\"* a|strong=\"H3068\"* taunting|strong=\"H4426\"* proverb|strong=\"H4912\"* against|strong=\"H5921\"* him|strong=\"H5921\"*, and|strong=\"H4912\"* say, ‘Woe|strong=\"H1945\"* to|strong=\"H5704\"* him|strong=\"H5921\"* who|strong=\"H3605\"* increases|strong=\"H7235\"* that|strong=\"H3605\"* which|strong=\"H3605\"* is|strong=\"H3605\"* not|strong=\"H3808\"* his|strong=\"H3605\"*, and|strong=\"H4912\"* who|strong=\"H3605\"* enriches himself|strong=\"H3513\"* by|strong=\"H5921\"* extortion! How|strong=\"H4970\"* long|strong=\"H5704\"*?’" + }, + { + "verseNum": 7, + "text": "Won’t your|strong=\"H3808\"* debtors rise|strong=\"H6965\"* up|strong=\"H6965\"* suddenly|strong=\"H6621\"*, and|strong=\"H6965\"* wake|strong=\"H6974\"* up|strong=\"H6965\"* those|strong=\"H1961\"* who|strong=\"H3808\"* make|strong=\"H6965\"* you|strong=\"H3808\"* tremble|strong=\"H2111\"*, and|strong=\"H6965\"* you|strong=\"H3808\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H1961\"* victim?" + }, + { + "verseNum": 8, + "text": "Because|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H5971\"* plundered|strong=\"H7997\"* many|strong=\"H7227\"* nations|strong=\"H1471\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H3499\"* of|strong=\"H3427\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* will|strong=\"H1471\"* plunder|strong=\"H7997\"* you|strong=\"H3588\"* because|strong=\"H3588\"* of|strong=\"H3427\"* men|strong=\"H5971\"*’s blood|strong=\"H1818\"*, and|strong=\"H5971\"* for|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H5971\"* the|strong=\"H3605\"* land, to|strong=\"H5971\"* the|strong=\"H3605\"* city|strong=\"H7151\"* and|strong=\"H5971\"* to|strong=\"H5971\"* all|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 9, + "text": "Woe|strong=\"H1945\"* to|strong=\"H1004\"* him|strong=\"H7760\"* who|strong=\"H1945\"* gets|strong=\"H1214\"* an|strong=\"H7760\"* evil|strong=\"H7451\"* gain|strong=\"H1215\"* for|strong=\"H1004\"* his|strong=\"H7760\"* house|strong=\"H1004\"*, that|strong=\"H7451\"* he|strong=\"H1004\"* may|strong=\"H1004\"* set|strong=\"H7760\"* his|strong=\"H7760\"* nest|strong=\"H7064\"* on|strong=\"H7760\"* high|strong=\"H4791\"*, that|strong=\"H7451\"* he|strong=\"H1004\"* may|strong=\"H1004\"* be|strong=\"H1004\"* delivered|strong=\"H5337\"* from|strong=\"H5337\"* the|strong=\"H7760\"* hand|strong=\"H3709\"* of|strong=\"H1004\"* evil|strong=\"H7451\"*!" + }, + { + "verseNum": 10, + "text": "You|strong=\"H3289\"* have|strong=\"H5971\"* devised|strong=\"H3289\"* shame|strong=\"H1322\"* to|strong=\"H1004\"* your|strong=\"H5971\"* house|strong=\"H1004\"* by|strong=\"H2398\"* cutting|strong=\"H7096\"* off|strong=\"H7096\"* many|strong=\"H7227\"* peoples|strong=\"H5971\"*, and|strong=\"H1004\"* have|strong=\"H5971\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* your|strong=\"H5971\"* soul|strong=\"H5315\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* stone will|strong=\"H2199\"* cry|strong=\"H2199\"* out|strong=\"H2199\"* of|strong=\"H6086\"* the|strong=\"H3588\"* wall|strong=\"H7023\"*, and|strong=\"H6030\"* the|strong=\"H3588\"* beam out|strong=\"H2199\"* of|strong=\"H6086\"* the|strong=\"H3588\"* woodwork will|strong=\"H2199\"* answer|strong=\"H6030\"* it|strong=\"H3588\"*." + }, + { + "verseNum": 12, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* him|strong=\"H3559\"* who|strong=\"H1945\"* builds|strong=\"H1129\"* a|strong=\"H3068\"* town|strong=\"H7151\"* with|strong=\"H5892\"* blood|strong=\"H1818\"*, and|strong=\"H5892\"* establishes|strong=\"H3559\"* a|strong=\"H3068\"* city|strong=\"H5892\"* by|strong=\"H3559\"* iniquity|strong=\"H5766\"*!" + }, + { + "verseNum": 13, + "text": "Behold|strong=\"H2009\"*, isn’t it|strong=\"H3808\"* from|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* that|strong=\"H5971\"* the|strong=\"H3068\"* peoples|strong=\"H5971\"* labor|strong=\"H3021\"* for|strong=\"H3068\"* the|strong=\"H3068\"* fire, and|strong=\"H3068\"* the|strong=\"H3068\"* nations|strong=\"H5971\"* weary|strong=\"H3021\"* themselves for|strong=\"H3068\"* vanity|strong=\"H7385\"*?" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* earth will|strong=\"H3068\"* be|strong=\"H3068\"* filled|strong=\"H4390\"* with|strong=\"H4390\"* the|strong=\"H5921\"* knowledge|strong=\"H3045\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s glory|strong=\"H3519\"*, as|strong=\"H3068\"* the|strong=\"H5921\"* waters|strong=\"H4325\"* cover|strong=\"H3680\"* the|strong=\"H5921\"* sea|strong=\"H3220\"*." + }, + { + "verseNum": 15, + "text": "“Woe|strong=\"H1945\"* to|strong=\"H5921\"* him|strong=\"H5921\"* who|strong=\"H1945\"* gives his|strong=\"H5921\"* neighbor|strong=\"H7453\"* drink|strong=\"H8248\"*, pouring your|strong=\"H5921\"* inflaming wine until|strong=\"H5921\"* they|strong=\"H5921\"* are drunk|strong=\"H7937\"*, so|strong=\"H4616\"* that|strong=\"H4616\"* you|strong=\"H5921\"* may|strong=\"H4616\"* gaze|strong=\"H5027\"* at|strong=\"H5921\"* their|strong=\"H5921\"* naked bodies!" + }, + { + "verseNum": 16, + "text": "You|strong=\"H5921\"* are|strong=\"H3068\"* filled|strong=\"H7646\"* with|strong=\"H7646\"* shame|strong=\"H7036\"*, and|strong=\"H3068\"* not|strong=\"H1571\"* glory|strong=\"H3519\"*. You|strong=\"H5921\"* will|strong=\"H3068\"* also|strong=\"H1571\"* drink|strong=\"H8354\"* and|strong=\"H3068\"* be|strong=\"H3068\"* exposed! The|strong=\"H5921\"* cup|strong=\"H3563\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s right|strong=\"H3225\"* hand|strong=\"H3225\"* will|strong=\"H3068\"* come|strong=\"H5437\"* around|strong=\"H5437\"* to|strong=\"H3068\"* you|strong=\"H5921\"*, and|strong=\"H3068\"* disgrace|strong=\"H7036\"* will|strong=\"H3068\"* cover your|strong=\"H3068\"* glory|strong=\"H3519\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H3427\"* Lebanon|strong=\"H3844\"* will|strong=\"H3844\"* overwhelm|strong=\"H3680\"* you|strong=\"H3588\"*, and|strong=\"H1818\"* the|strong=\"H3605\"* destruction|strong=\"H7701\"* of|strong=\"H3427\"* the|strong=\"H3605\"* animals will|strong=\"H3844\"* terrify|strong=\"H2865\"* you|strong=\"H3588\"*, because|strong=\"H3588\"* of|strong=\"H3427\"* men|strong=\"H3605\"*’s blood|strong=\"H1818\"* and|strong=\"H1818\"* for|strong=\"H3588\"* the|strong=\"H3605\"* violence|strong=\"H2555\"* done|strong=\"H3605\"* to|strong=\"H3427\"* the|strong=\"H3605\"* land, to|strong=\"H3427\"* every|strong=\"H3605\"* city|strong=\"H7151\"* and|strong=\"H1818\"* to|strong=\"H3427\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* them|strong=\"H3427\"*." + }, + { + "verseNum": 18, + "text": "“What|strong=\"H4100\"* value|strong=\"H3276\"* does|strong=\"H6213\"* the|strong=\"H5921\"* engraved image|strong=\"H6459\"* have|strong=\"H3588\"*, that|strong=\"H3588\"* its|strong=\"H5921\"* maker|strong=\"H6213\"* has|strong=\"H4100\"* engraved it|strong=\"H5921\"*; the|strong=\"H5921\"* molten|strong=\"H4541\"* image|strong=\"H6459\"*, even|strong=\"H3588\"* the|strong=\"H5921\"* teacher|strong=\"H3384\"* of|strong=\"H5921\"* lies|strong=\"H8267\"*, that|strong=\"H3588\"* he|strong=\"H3588\"* who|strong=\"H3588\"* fashions|strong=\"H3335\"* its|strong=\"H5921\"* form|strong=\"H3335\"* trusts in|strong=\"H5921\"* it|strong=\"H5921\"*, to|strong=\"H5921\"* make|strong=\"H6213\"* mute idols|strong=\"H6459\"*?" + }, + { + "verseNum": 19, + "text": "Woe|strong=\"H1945\"* to|strong=\"H7307\"* him|strong=\"H1931\"* who|strong=\"H3605\"* says|strong=\"H1748\"* to|strong=\"H7307\"* the|strong=\"H3605\"* wood|strong=\"H6086\"*, ‘Awake|strong=\"H5782\"*!’ or|strong=\"H3701\"* to|strong=\"H7307\"* the|strong=\"H3605\"* mute|strong=\"H1748\"* stone, ‘Arise|strong=\"H5782\"*!’ Shall|strong=\"H1931\"* this|strong=\"H1931\"* teach|strong=\"H3384\"*? Behold|strong=\"H2009\"*, it|strong=\"H1931\"* is|strong=\"H1931\"* overlaid|strong=\"H8610\"* with|strong=\"H3605\"* gold|strong=\"H2091\"* and|strong=\"H3701\"* silver|strong=\"H3701\"*, and|strong=\"H3701\"* there|strong=\"H2009\"* is|strong=\"H1931\"* no|strong=\"H3605\"* breath|strong=\"H7307\"* at|strong=\"H7307\"* all|strong=\"H3605\"* within|strong=\"H7130\"* it|strong=\"H1931\"*." + }, + { + "verseNum": 20, + "text": "But|strong=\"H3605\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3605\"* holy|strong=\"H6944\"* temple|strong=\"H1964\"*. Let all|strong=\"H3605\"* the|strong=\"H3605\"* earth be|strong=\"H3068\"* silent|strong=\"H2013\"* before|strong=\"H6440\"* him|strong=\"H6440\"*!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* prayer|strong=\"H8605\"* of|strong=\"H5921\"* Habakkuk|strong=\"H2265\"*, the|strong=\"H5921\"* prophet|strong=\"H5030\"*, set to|strong=\"H5921\"* victorious music." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"*, I|strong=\"H3045\"* have|strong=\"H7355\"* heard|strong=\"H8085\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fame|strong=\"H8088\"*." + }, + { + "verseNum": 3, + "text": "God|strong=\"H8064\"* came from|strong=\"H8064\"* Teman|strong=\"H8487\"*," + }, + { + "verseNum": 4, + "text": "His|strong=\"H3027\"* splendor is|strong=\"H3027\"* like|strong=\"H1961\"* the|strong=\"H3027\"* sunrise." + }, + { + "verseNum": 5, + "text": "Plague|strong=\"H1698\"* went|strong=\"H3212\"* before|strong=\"H6440\"* him|strong=\"H6440\"*," + }, + { + "verseNum": 6, + "text": "He|strong=\"H7200\"* stood|strong=\"H5975\"*, and|strong=\"H5769\"* shook the|strong=\"H7200\"* earth." + }, + { + "verseNum": 7, + "text": "I|strong=\"H7200\"* saw|strong=\"H7200\"* the|strong=\"H7200\"* tents of|strong=\"H8478\"* Cushan|strong=\"H3572\"* in|strong=\"H7200\"* affliction." + }, + { + "verseNum": 8, + "text": "Was|strong=\"H3068\"* Yahweh|strong=\"H3068\"* displeased|strong=\"H2734\"* with|strong=\"H3068\"* the|strong=\"H5921\"* rivers|strong=\"H5104\"*?" + }, + { + "verseNum": 9, + "text": "You uncovered your|strong=\"H5104\"* bow|strong=\"H7198\"*." + }, + { + "verseNum": 10, + "text": "The|strong=\"H7200\"* mountains|strong=\"H2022\"* saw|strong=\"H7200\"* you|strong=\"H5414\"*, and|strong=\"H3027\"* were|strong=\"H4325\"* afraid|strong=\"H2342\"*." + }, + { + "verseNum": 11, + "text": "The|strong=\"H5975\"* sun|strong=\"H8121\"* and|strong=\"H1980\"* moon|strong=\"H3394\"* stood|strong=\"H5975\"* still|strong=\"H5975\"* in|strong=\"H1980\"* the|strong=\"H5975\"* sky" + }, + { + "verseNum": 12, + "text": "You|strong=\"H1471\"* marched|strong=\"H6805\"* through|strong=\"H6805\"* the|strong=\"H1471\"* land in|strong=\"H1471\"* wrath|strong=\"H2195\"*." + }, + { + "verseNum": 13, + "text": "You|strong=\"H5704\"* went|strong=\"H3318\"* out|strong=\"H3318\"* for|strong=\"H5704\"* the|strong=\"H5704\"* salvation|strong=\"H3468\"* of|strong=\"H1004\"* your|strong=\"H3318\"* people|strong=\"H5971\"*," + }, + { + "verseNum": 14, + "text": "You|strong=\"H3644\"* pierced|strong=\"H5344\"* the|strong=\"H6327\"* heads|strong=\"H7218\"* of|strong=\"H4294\"* his|strong=\"H5344\"* warriors with|strong=\"H6041\"* their own spears|strong=\"H4294\"*." + }, + { + "verseNum": 15, + "text": "You|strong=\"H4325\"* trampled|strong=\"H1869\"* the|strong=\"H1869\"* sea|strong=\"H3220\"* with|strong=\"H4325\"* your horses|strong=\"H5483\"*," + }, + { + "verseNum": 16, + "text": "I|strong=\"H3117\"* heard|strong=\"H8085\"*, and|strong=\"H3117\"* my|strong=\"H8085\"* body|strong=\"H6106\"* trembled|strong=\"H7264\"*." + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* even|strong=\"H3588\"* though|strong=\"H3588\"* the|strong=\"H3588\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"* doesn’t flourish|strong=\"H6524\"*," + }, + { + "verseNum": 18, + "text": "yet|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* Lord|strong=\"H3069\"*,+ 3:19 The word translated “Lord” is “Adonai.”* is my|strong=\"H7760\"* strength|strong=\"H2428\"*." + } + ] + } + ] + }, + { + "name": "Zephaniah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* which|strong=\"H3068\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zephaniah|strong=\"H6846\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Cushi|strong=\"H3569\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Gedaliah|strong=\"H1436\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amariah, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Hezekiah|strong=\"H2396\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Amon, king|strong=\"H4428\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 2, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* utterly sweep away|strong=\"H3605\"* everything|strong=\"H3605\"* from|strong=\"H6440\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "I|strong=\"H5921\"* will|strong=\"H3068\"* sweep away man|strong=\"H7563\"* and|strong=\"H3068\"* animal. I|strong=\"H5921\"* will|strong=\"H3068\"* sweep away the|strong=\"H6440\"* birds|strong=\"H5775\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sky|strong=\"H8064\"*, the|strong=\"H6440\"* fish|strong=\"H1709\"* of|strong=\"H3068\"* the|strong=\"H6440\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H6440\"* heaps of|strong=\"H3068\"* rubble with|strong=\"H3068\"* the|strong=\"H6440\"* wicked|strong=\"H7563\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* man|strong=\"H7563\"* from|strong=\"H6440\"* the|strong=\"H6440\"* surface|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* earth|strong=\"H8064\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H5921\"* will|strong=\"H3063\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* my|strong=\"H3605\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* against|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* inhabitants|strong=\"H3427\"* of|strong=\"H3027\"* Jerusalem|strong=\"H3389\"*. I|strong=\"H5921\"* will|strong=\"H3063\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H3605\"* remnant|strong=\"H7605\"* of|strong=\"H3027\"* Baal|strong=\"H1168\"* from|strong=\"H4480\"* this|strong=\"H2088\"* place|strong=\"H4725\"*—the|strong=\"H3605\"* name|strong=\"H8034\"* of|strong=\"H3027\"* the|strong=\"H3605\"* idolatrous|strong=\"H3649\"* and|strong=\"H3063\"* pagan priests|strong=\"H3548\"*," + }, + { + "verseNum": 5, + "text": "those|strong=\"H5921\"* who|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H5921\"* army|strong=\"H6635\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sky|strong=\"H8064\"* on|strong=\"H5921\"* the|strong=\"H5921\"* housetops|strong=\"H1406\"*, those|strong=\"H5921\"* who|strong=\"H3068\"* worship|strong=\"H7812\"* and|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H5921\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* also|strong=\"H3068\"* swear|strong=\"H7650\"* by|strong=\"H5921\"* Malcam|strong=\"H4445\"*," + }, + { + "verseNum": 6, + "text": "those who|strong=\"H3068\"* have|strong=\"H3068\"* turned|strong=\"H5472\"* back|strong=\"H5472\"* from|strong=\"H3068\"* following Yahweh|strong=\"H3068\"*, and|strong=\"H3068\"* those who|strong=\"H3068\"* haven’t sought|strong=\"H1245\"* Yahweh|strong=\"H3068\"* nor|strong=\"H3808\"* inquired|strong=\"H1875\"* after|strong=\"H1875\"* him|strong=\"H1245\"*." + }, + { + "verseNum": 7, + "text": "Be|strong=\"H3068\"* silent|strong=\"H2013\"* at|strong=\"H3068\"* the|strong=\"H6440\"* presence|strong=\"H6440\"* of|strong=\"H3068\"* the|strong=\"H6440\"* Lord|strong=\"H3068\"*+ 1:7 The word translated “Lord” is “Adonai.”* Yahweh|strong=\"H3068\"*, for|strong=\"H3588\"* the|strong=\"H6440\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* at|strong=\"H3068\"* hand|strong=\"H7138\"*. For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* prepared|strong=\"H3559\"* a|strong=\"H3068\"* sacrifice|strong=\"H2077\"*. He|strong=\"H3588\"* has|strong=\"H3068\"* consecrated|strong=\"H6942\"* his|strong=\"H3068\"* guests|strong=\"H7121\"*." + }, + { + "verseNum": 8, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"*’s sacrifice|strong=\"H2077\"* that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H3605\"* princes|strong=\"H8269\"*, the|strong=\"H3605\"* king|strong=\"H4428\"*’s sons|strong=\"H1121\"*, and|strong=\"H1121\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H3117\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* foreign|strong=\"H5237\"* clothing|strong=\"H3847\"*." + }, + { + "verseNum": 9, + "text": "In|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, I|strong=\"H3117\"* will|strong=\"H1004\"* punish|strong=\"H6485\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* leap|strong=\"H1801\"* over|strong=\"H5921\"* the|strong=\"H3605\"* threshold|strong=\"H4670\"*, who|strong=\"H3605\"* fill|strong=\"H4390\"* their|strong=\"H3605\"* master’s house|strong=\"H1004\"* with|strong=\"H4390\"* violence|strong=\"H2555\"* and|strong=\"H3117\"* deceit|strong=\"H4820\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H5002\"* noise|strong=\"H6963\"* of|strong=\"H3068\"* a|strong=\"H3068\"* cry|strong=\"H6818\"* from|strong=\"H4480\"* the|strong=\"H5002\"* fish|strong=\"H1709\"* gate|strong=\"H8179\"*, a|strong=\"H3068\"* wailing|strong=\"H3215\"* from|strong=\"H4480\"* the|strong=\"H5002\"* second|strong=\"H4932\"* quarter, and|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* crashing|strong=\"H7667\"* from|strong=\"H4480\"* the|strong=\"H5002\"* hills|strong=\"H1389\"*." + }, + { + "verseNum": 11, + "text": "Wail|strong=\"H3213\"*, you|strong=\"H3588\"* inhabitants|strong=\"H3427\"* of|strong=\"H3427\"* Maktesh|strong=\"H4389\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H3427\"* Canaan|strong=\"H3667\"* are|strong=\"H5971\"* undone|strong=\"H1820\"*! All|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H5971\"* loaded with|strong=\"H3427\"* silver|strong=\"H3701\"* are|strong=\"H5971\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*." + }, + { + "verseNum": 12, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* at|strong=\"H5921\"* that|strong=\"H1931\"* time|strong=\"H6256\"*, that|strong=\"H1931\"* I|strong=\"H5921\"* will|strong=\"H3068\"* search|strong=\"H2664\"* Jerusalem|strong=\"H3389\"* with|strong=\"H3068\"* lamps|strong=\"H5216\"*, and|strong=\"H3068\"* I|strong=\"H5921\"* will|strong=\"H3068\"* punish|strong=\"H6485\"* the|strong=\"H5921\"* men|strong=\"H6485\"* who|strong=\"H1931\"* are|strong=\"H3068\"* settled|strong=\"H7087\"* on|strong=\"H5921\"* their|strong=\"H3068\"* dregs|strong=\"H8105\"*, who|strong=\"H1931\"* say in|strong=\"H5921\"* their|strong=\"H3068\"* heart|strong=\"H3824\"*, “Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* not|strong=\"H3808\"* do|strong=\"H3190\"* good|strong=\"H3190\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* he|strong=\"H1931\"* do|strong=\"H3190\"* evil|strong=\"H7489\"*.”" + }, + { + "verseNum": 13, + "text": "Their|strong=\"H1961\"* wealth|strong=\"H2428\"* will|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* plunder|strong=\"H4933\"*, and|strong=\"H1004\"* their|strong=\"H1961\"* houses|strong=\"H1004\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*. Yes, they|strong=\"H3808\"* will|strong=\"H1961\"* build|strong=\"H1129\"* houses|strong=\"H1004\"*, but|strong=\"H3808\"* won’t inhabit|strong=\"H3427\"* them|strong=\"H1961\"*. They|strong=\"H3808\"* will|strong=\"H1961\"* plant|strong=\"H5193\"* vineyards|strong=\"H3754\"*, but|strong=\"H3808\"* won’t drink|strong=\"H8354\"* their|strong=\"H1961\"* wine|strong=\"H3196\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* great|strong=\"H1419\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* near|strong=\"H7138\"*. It|strong=\"H8033\"* is|strong=\"H3068\"* near|strong=\"H7138\"* and|strong=\"H3068\"* hurries greatly|strong=\"H3966\"*, the|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. The|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"* cries|strong=\"H6963\"* there|strong=\"H8033\"* bitterly|strong=\"H4751\"*." + }, + { + "verseNum": 15, + "text": "That|strong=\"H3117\"* day|strong=\"H3117\"* is|strong=\"H1931\"* a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* wrath|strong=\"H5678\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* distress|strong=\"H6869\"* and|strong=\"H3117\"* anguish|strong=\"H6869\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* trouble|strong=\"H6869\"* and|strong=\"H3117\"* ruin, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* darkness|strong=\"H2822\"* and|strong=\"H3117\"* gloom|strong=\"H6205\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* clouds|strong=\"H6051\"* and|strong=\"H3117\"* blackness," + }, + { + "verseNum": 16, + "text": "a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3117\"* the|strong=\"H5921\"* trumpet|strong=\"H7782\"* and|strong=\"H3117\"* alarm|strong=\"H8643\"* against|strong=\"H5921\"* the|strong=\"H5921\"* fortified|strong=\"H1219\"* cities|strong=\"H5892\"* and|strong=\"H3117\"* against|strong=\"H5921\"* the|strong=\"H5921\"* high|strong=\"H1364\"* battlements." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H1980\"* such distress|strong=\"H6887\"* on|strong=\"H1980\"* men|strong=\"H1980\"* that|strong=\"H3588\"* they|strong=\"H3588\"* will|strong=\"H3068\"* walk|strong=\"H1980\"* like|strong=\"H8210\"* blind|strong=\"H5787\"* men|strong=\"H1980\"* because|strong=\"H3588\"* they|strong=\"H3588\"* have|strong=\"H3068\"* sinned|strong=\"H2398\"* against|strong=\"H2398\"* Yahweh|strong=\"H3068\"*. Their|strong=\"H3068\"* blood|strong=\"H1818\"* will|strong=\"H3068\"* be|strong=\"H3068\"* poured|strong=\"H8210\"* out|strong=\"H8210\"* like|strong=\"H8210\"* dust|strong=\"H6083\"* and|strong=\"H1980\"* their|strong=\"H3068\"* flesh|strong=\"H3894\"* like|strong=\"H8210\"* dung|strong=\"H1561\"*." + }, + { + "verseNum": 18, + "text": "Neither|strong=\"H3808\"* their|strong=\"H3605\"* silver|strong=\"H3701\"* nor|strong=\"H3808\"* their|strong=\"H3605\"* gold|strong=\"H2091\"* will|strong=\"H3068\"* be|strong=\"H3808\"* able|strong=\"H3201\"* to|strong=\"H3201\"* deliver|strong=\"H5337\"* them|strong=\"H6213\"* in|strong=\"H3427\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s wrath|strong=\"H5678\"*, but|strong=\"H3588\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land will|strong=\"H3068\"* be|strong=\"H3808\"* devoured by|strong=\"H3117\"* the|strong=\"H3605\"* fire of|strong=\"H3068\"* his|strong=\"H3605\"* jealousy|strong=\"H7068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* make|strong=\"H6213\"* an|strong=\"H6213\"* end|strong=\"H3617\"*, yes|strong=\"H3588\"*, a|strong=\"H3068\"* terrible|strong=\"H6213\"* end|strong=\"H3617\"*, of|strong=\"H3068\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3605\"* land." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "Gather|strong=\"H7197\"* yourselves together|strong=\"H7197\"*, yes, gather|strong=\"H7197\"* together|strong=\"H7197\"*, you|strong=\"H3808\"* nation|strong=\"H1471\"* that|strong=\"H1471\"* has|strong=\"H1471\"* no|strong=\"H3808\"* shame|strong=\"H3700\"*," + }, + { + "verseNum": 2, + "text": "before|strong=\"H2962\"* the|strong=\"H5921\"* appointed|strong=\"H2706\"* time|strong=\"H3117\"* when|strong=\"H3117\"* the|strong=\"H5921\"* day|strong=\"H3117\"* passes|strong=\"H5674\"* as|strong=\"H3117\"* the|strong=\"H5921\"* chaff|strong=\"H4671\"*, before|strong=\"H2962\"* the|strong=\"H5921\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* you|strong=\"H5921\"*, before|strong=\"H2962\"* the|strong=\"H5921\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger|strong=\"H2740\"* comes|strong=\"H5674\"* on|strong=\"H5921\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 3, + "text": "Seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"*, all|strong=\"H3605\"* you|strong=\"H3605\"* humble|strong=\"H6035\"* of|strong=\"H3068\"* the|strong=\"H3605\"* land, who|strong=\"H3605\"* have|strong=\"H3068\"* kept his|strong=\"H3605\"* ordinances|strong=\"H4941\"*. Seek|strong=\"H1245\"* righteousness|strong=\"H6664\"*. Seek|strong=\"H1245\"* humility|strong=\"H6038\"*. It|strong=\"H3117\"* may|strong=\"H3068\"* be|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H3605\"* will|strong=\"H3068\"* be|strong=\"H3068\"* hidden|strong=\"H5641\"* in|strong=\"H3068\"* the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s anger." + }, + { + "verseNum": 4, + "text": "For|strong=\"H3588\"* Gaza|strong=\"H5804\"* will|strong=\"H1961\"* be|strong=\"H1961\"* forsaken|strong=\"H5800\"*, and|strong=\"H1961\"* Ashkelon a|strong=\"H3068\"* desolation|strong=\"H8077\"*. They|strong=\"H3588\"* will|strong=\"H1961\"* drive|strong=\"H1644\"* out|strong=\"H1644\"* Ashdod at|strong=\"H1961\"* noonday|strong=\"H6672\"*, and|strong=\"H1961\"* Ekron|strong=\"H6138\"* will|strong=\"H1961\"* be|strong=\"H1961\"* rooted up|strong=\"H6131\"*." + }, + { + "verseNum": 5, + "text": "Woe|strong=\"H1945\"* to|strong=\"H3068\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* the|strong=\"H5921\"* sea|strong=\"H3220\"* coast|strong=\"H2256\"*, the|strong=\"H5921\"* nation|strong=\"H1471\"* of|strong=\"H3068\"* the|strong=\"H5921\"* Cherethites|strong=\"H3774\"*! Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* is|strong=\"H3068\"* against|strong=\"H5921\"* you|strong=\"H5921\"*, Canaan|strong=\"H3667\"*, the|strong=\"H5921\"* land of|strong=\"H3068\"* the|strong=\"H5921\"* Philistines|strong=\"H6430\"*. I|strong=\"H5921\"* will|strong=\"H3068\"* destroy you|strong=\"H5921\"* until|strong=\"H3068\"* there|strong=\"H3427\"* is|strong=\"H3068\"* no inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H1961\"* sea|strong=\"H3220\"* coast|strong=\"H2256\"* will|strong=\"H1961\"* be|strong=\"H1961\"* pastures|strong=\"H5116\"*, with|strong=\"H3220\"* cottages|strong=\"H3741\"* for|strong=\"H1961\"* shepherds|strong=\"H7462\"* and|strong=\"H6629\"* folds|strong=\"H1448\"* for|strong=\"H1961\"* flocks|strong=\"H6629\"*." + }, + { + "verseNum": 7, + "text": "The|strong=\"H5921\"* coast|strong=\"H2256\"* will|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3588\"* the|strong=\"H5921\"* remnant|strong=\"H7611\"* of|strong=\"H1004\"* the|strong=\"H5921\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* find pasture|strong=\"H7462\"*. In|strong=\"H5921\"* the|strong=\"H5921\"* houses|strong=\"H1004\"* of|strong=\"H1004\"* Ashkelon, they|strong=\"H3588\"* will|strong=\"H3068\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H5921\"* the|strong=\"H5921\"* evening|strong=\"H6153\"*, for|strong=\"H3588\"* Yahweh|strong=\"H3068\"*, their|strong=\"H3068\"* God|strong=\"H3068\"*,+ 2:7 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* will|strong=\"H3068\"* visit|strong=\"H6485\"* them|strong=\"H5921\"* and|strong=\"H3063\"* restore|strong=\"H7725\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5921\"* have|strong=\"H5971\"* heard|strong=\"H8085\"* the|strong=\"H5921\"* reproach|strong=\"H2781\"* of|strong=\"H1121\"* Moab|strong=\"H4124\"* and|strong=\"H1121\"* the|strong=\"H5921\"* insults|strong=\"H2778\"* of|strong=\"H1121\"* the|strong=\"H5921\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"*, with|strong=\"H5921\"* which|strong=\"H5971\"* they|strong=\"H5921\"* have|strong=\"H5971\"* reproached|strong=\"H2778\"* my|strong=\"H8085\"* people|strong=\"H5971\"* and|strong=\"H1121\"* magnified|strong=\"H1431\"* themselves|strong=\"H1431\"* against|strong=\"H5921\"* their|strong=\"H8085\"* border|strong=\"H1366\"*." + }, + { + "verseNum": 9, + "text": "Therefore|strong=\"H3651\"*, as|strong=\"H5704\"* I|strong=\"H3588\"* live|strong=\"H2416\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, the|strong=\"H5002\"* God|strong=\"H3068\"* of|strong=\"H1121\"* Israel|strong=\"H3478\"*, surely|strong=\"H3588\"* Moab|strong=\"H4124\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H5704\"* Sodom|strong=\"H5467\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* children|strong=\"H1121\"* of|strong=\"H1121\"* Ammon|strong=\"H5983\"* as|strong=\"H5704\"* Gomorrah|strong=\"H6017\"*, a|strong=\"H3068\"* possession|strong=\"H5157\"* of|strong=\"H1121\"* nettles|strong=\"H2738\"* and|strong=\"H1121\"* salt|strong=\"H4417\"* pits|strong=\"H4379\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* perpetual|strong=\"H5769\"* desolation|strong=\"H8077\"*. The|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* my|strong=\"H3068\"* people|strong=\"H5971\"* will|strong=\"H3068\"* plunder them|strong=\"H1961\"*, and|strong=\"H1121\"* the|strong=\"H5002\"* survivors|strong=\"H7611\"* of|strong=\"H1121\"* my|strong=\"H3068\"* nation|strong=\"H1471\"* will|strong=\"H3068\"* inherit|strong=\"H5157\"* them|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "This|strong=\"H2063\"* they|strong=\"H1992\"* will|strong=\"H3068\"* have|strong=\"H3068\"* for|strong=\"H3588\"* their|strong=\"H3068\"* pride|strong=\"H1347\"*, because|strong=\"H3588\"* they|strong=\"H1992\"* have|strong=\"H3068\"* reproached|strong=\"H2778\"* and|strong=\"H3068\"* magnified|strong=\"H1431\"* themselves|strong=\"H1992\"* against|strong=\"H5921\"* the|strong=\"H5921\"* people|strong=\"H5971\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 11, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* awesome|strong=\"H3372\"* to|strong=\"H3068\"* them|strong=\"H5921\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3068\"* famish|strong=\"H7329\"* all|strong=\"H3605\"* the|strong=\"H3605\"* gods of|strong=\"H3068\"* the|strong=\"H3605\"* land|strong=\"H4725\"*. Men|strong=\"H3605\"* will|strong=\"H3068\"* worship|strong=\"H7812\"* him|strong=\"H5921\"*, everyone|strong=\"H3605\"* from|strong=\"H5921\"* his|strong=\"H3605\"* place|strong=\"H4725\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* shores of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*." + }, + { + "verseNum": 12, + "text": "You|strong=\"H1571\"* Cushites also|strong=\"H1571\"*, you|strong=\"H1571\"* will|strong=\"H1571\"* be|strong=\"H1571\"* killed|strong=\"H2491\"* by|strong=\"H1571\"* my|strong=\"H1571\"* sword|strong=\"H2719\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H3027\"* will|strong=\"H3027\"* stretch|strong=\"H5186\"* out|strong=\"H5186\"* his|strong=\"H7760\"* hand|strong=\"H3027\"* against|strong=\"H5921\"* the|strong=\"H5921\"* north|strong=\"H6828\"*, destroy Assyria, and|strong=\"H3027\"* will|strong=\"H3027\"* make|strong=\"H7760\"* Nineveh|strong=\"H5210\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, as|strong=\"H5921\"* dry|strong=\"H6723\"* as|strong=\"H5921\"* the|strong=\"H5921\"* wilderness|strong=\"H4057\"*." + }, + { + "verseNum": 14, + "text": "Herds|strong=\"H5739\"* will|strong=\"H1471\"* lie|strong=\"H7257\"* down|strong=\"H7257\"* in|strong=\"H8432\"* the|strong=\"H3605\"* middle|strong=\"H8432\"* of|strong=\"H6963\"* her|strong=\"H3605\"*, all|strong=\"H3605\"* kinds|strong=\"H3605\"* of|strong=\"H6963\"* animals|strong=\"H2416\"*. Both|strong=\"H1571\"* the|strong=\"H3605\"* pelican|strong=\"H6893\"* and|strong=\"H6963\"* the|strong=\"H3605\"* porcupine will|strong=\"H1471\"* lodge|strong=\"H3885\"* in|strong=\"H8432\"* its|strong=\"H3605\"* capitals|strong=\"H3730\"*. Their|strong=\"H3605\"* calls|strong=\"H6963\"* will|strong=\"H1471\"* echo through|strong=\"H8432\"* the|strong=\"H3605\"* windows|strong=\"H2474\"*. Desolation|strong=\"H2721\"* will|strong=\"H1471\"* be|strong=\"H1571\"* in|strong=\"H8432\"* the|strong=\"H3605\"* thresholds|strong=\"H5592\"*, for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3588\"* laid|strong=\"H6168\"* bare|strong=\"H6168\"* the|strong=\"H3605\"* cedar beams." + }, + { + "verseNum": 15, + "text": "This|strong=\"H2063\"* is|strong=\"H3027\"* the|strong=\"H3605\"* joyous|strong=\"H5947\"* city|strong=\"H5892\"* that|strong=\"H3605\"* lived|strong=\"H3427\"* carelessly, that|strong=\"H3605\"* said in|strong=\"H3427\"* her|strong=\"H3605\"* heart|strong=\"H3824\"*, “I|strong=\"H5921\"* am|strong=\"H1961\"*, and|strong=\"H3027\"* there|strong=\"H1961\"* is|strong=\"H3027\"* no|strong=\"H3605\"* one|strong=\"H3605\"* besides|strong=\"H5921\"* me|strong=\"H5921\"*.” How she|strong=\"H2063\"* has|strong=\"H1961\"* become|strong=\"H1961\"* a|strong=\"H3068\"* desolation|strong=\"H8047\"*, a|strong=\"H3068\"* place|strong=\"H3027\"* for|strong=\"H5921\"* animals|strong=\"H2416\"* to|strong=\"H1961\"* lie|strong=\"H1961\"* down|strong=\"H3427\"* in|strong=\"H3427\"*! Everyone|strong=\"H3605\"* who|strong=\"H3605\"* passes|strong=\"H5674\"* by|strong=\"H3027\"* her|strong=\"H3605\"* will|strong=\"H1961\"* hiss|strong=\"H8319\"* and|strong=\"H3027\"* shake|strong=\"H5128\"* their|strong=\"H3605\"* fists." + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5892\"* her who|strong=\"H1945\"* is|strong=\"H5892\"* rebellious and|strong=\"H5892\"* polluted|strong=\"H1351\"*, the|strong=\"H5892\"* oppressing|strong=\"H3238\"* city|strong=\"H5892\"*!" + }, + { + "verseNum": 2, + "text": "She|strong=\"H3808\"* didn’t obey|strong=\"H8085\"* the|strong=\"H8085\"* voice|strong=\"H6963\"*. She|strong=\"H3808\"* didn’t receive|strong=\"H3947\"* correction|strong=\"H4148\"*. She|strong=\"H3808\"* didn’t trust in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*. She|strong=\"H3808\"* didn’t draw|strong=\"H7126\"* near|strong=\"H7126\"* to|strong=\"H3068\"* her|strong=\"H3947\"* God|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "Her|strong=\"H7130\"* princes|strong=\"H8269\"* within|strong=\"H7130\"* her|strong=\"H7130\"* are|strong=\"H8199\"* roaring|strong=\"H7580\"* lions. Her|strong=\"H7130\"* judges|strong=\"H8199\"* are|strong=\"H8199\"* evening|strong=\"H6153\"* wolves|strong=\"H2061\"*. They|strong=\"H3808\"* leave|strong=\"H1633\"* nothing|strong=\"H3808\"* until the|strong=\"H8199\"* next day|strong=\"H1242\"*." + }, + { + "verseNum": 4, + "text": "Her|strong=\"H2490\"* prophets|strong=\"H5030\"* are|strong=\"H5030\"* arrogant and|strong=\"H3548\"* treacherous people|strong=\"H2490\"*. Her|strong=\"H2490\"* priests|strong=\"H3548\"* have|strong=\"H5030\"* profaned|strong=\"H2490\"* the|strong=\"H3548\"* sanctuary|strong=\"H6944\"*. They|strong=\"H3548\"* have|strong=\"H5030\"* done|strong=\"H2554\"* violence|strong=\"H2554\"* to|strong=\"H2490\"* the|strong=\"H3548\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 5, + "text": "Yahweh|strong=\"H3068\"*, within|strong=\"H7130\"* her|strong=\"H5414\"*, is|strong=\"H3068\"* righteous|strong=\"H6662\"*. He|strong=\"H6213\"* will|strong=\"H3068\"* do|strong=\"H6213\"* no|strong=\"H3808\"* wrong|strong=\"H5767\"*. Every|strong=\"H1242\"* morning|strong=\"H1242\"* he|strong=\"H6213\"* brings|strong=\"H5414\"* his|strong=\"H5414\"* justice|strong=\"H4941\"* to|strong=\"H3068\"* light. He|strong=\"H6213\"* doesn’t fail|strong=\"H5737\"*, but|strong=\"H3808\"* the|strong=\"H5414\"* unjust|strong=\"H5766\"* know|strong=\"H3045\"* no|strong=\"H3808\"* shame|strong=\"H1322\"*." + }, + { + "verseNum": 6, + "text": "I|strong=\"H3772\"* have|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* nations|strong=\"H1471\"*. Their|strong=\"H3772\"* battlements are|strong=\"H1471\"* desolate|strong=\"H8074\"*. I|strong=\"H3772\"* have|strong=\"H1471\"* made|strong=\"H3772\"* their|strong=\"H3772\"* streets|strong=\"H2351\"* waste|strong=\"H2717\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* no|strong=\"H1097\"* one|strong=\"H1097\"* passes|strong=\"H5674\"* by|strong=\"H5674\"*. Their|strong=\"H3772\"* cities|strong=\"H5892\"* are|strong=\"H1471\"* destroyed|strong=\"H3772\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* there|strong=\"H3427\"* is|strong=\"H5892\"* no|strong=\"H1097\"* man|strong=\"H5674\"*, so|strong=\"H5674\"* that|strong=\"H1471\"* there|strong=\"H3427\"* is|strong=\"H5892\"* no|strong=\"H1097\"* inhabitant|strong=\"H3427\"*." + }, + { + "verseNum": 7, + "text": "I|strong=\"H5921\"* said, “Just|strong=\"H3605\"* fear|strong=\"H3372\"* me|strong=\"H5921\"*. Receive|strong=\"H3947\"* correction|strong=\"H4148\"*,” so|strong=\"H3947\"* that|strong=\"H3605\"* her|strong=\"H3605\"* dwelling|strong=\"H4585\"* won’t be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"*, according|strong=\"H5921\"* to|strong=\"H5921\"* all|strong=\"H3605\"* that|strong=\"H3605\"* I|strong=\"H5921\"* have|strong=\"H3605\"* appointed|strong=\"H6485\"* concerning|strong=\"H5921\"* her|strong=\"H3605\"*. But|strong=\"H3808\"* they|strong=\"H3808\"* rose|strong=\"H7925\"* early|strong=\"H7925\"* and|strong=\"H7925\"* corrupted|strong=\"H7843\"* all|strong=\"H3605\"* their|strong=\"H3605\"* doings|strong=\"H5949\"*." + }, + { + "verseNum": 8, + "text": "“Therefore|strong=\"H3651\"* wait|strong=\"H2442\"* for|strong=\"H3588\"* me|strong=\"H5921\"*”, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “until|strong=\"H3588\"* the|strong=\"H3605\"* day|strong=\"H3117\"* that|strong=\"H3588\"* I|strong=\"H3588\"* rise|strong=\"H6965\"* up|strong=\"H6965\"* to|strong=\"H3068\"* the|strong=\"H3605\"* prey|strong=\"H5706\"*, for|strong=\"H3588\"* my|strong=\"H3605\"* determination|strong=\"H4941\"* is|strong=\"H3068\"* to|strong=\"H3068\"* gather|strong=\"H6908\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, that|strong=\"H3588\"* I|strong=\"H3588\"* may|strong=\"H3068\"* assemble|strong=\"H6908\"* the|strong=\"H3605\"* kingdoms|strong=\"H4467\"* to|strong=\"H3068\"* pour|strong=\"H8210\"* on|strong=\"H5921\"* them|strong=\"H5921\"* my|strong=\"H3605\"* indignation|strong=\"H2195\"*, even|strong=\"H3588\"* all|strong=\"H3605\"* my|strong=\"H3605\"* fierce|strong=\"H2740\"* anger|strong=\"H2740\"*, for|strong=\"H3588\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth will|strong=\"H3068\"* be|strong=\"H3068\"* devoured with|strong=\"H3068\"* the|strong=\"H3605\"* fire of|strong=\"H3068\"* my|strong=\"H3605\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"* then|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* purify|strong=\"H1305\"* the|strong=\"H3605\"* lips|strong=\"H8193\"* of|strong=\"H3068\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*, that|strong=\"H3588\"* they|strong=\"H3588\"* may|strong=\"H3068\"* all|strong=\"H3605\"* call|strong=\"H7121\"* on|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*, to|strong=\"H3068\"* serve|strong=\"H5647\"* him|strong=\"H7121\"* shoulder|strong=\"H7926\"* to|strong=\"H3068\"* shoulder|strong=\"H7926\"*." + }, + { + "verseNum": 10, + "text": "From|strong=\"H5676\"* beyond|strong=\"H5676\"* the|strong=\"H5676\"* rivers|strong=\"H5104\"* of|strong=\"H1323\"* Cush|strong=\"H3568\"*, my|strong=\"H6327\"* worshipers|strong=\"H6282\"*, even the|strong=\"H5676\"* daughter|strong=\"H1323\"* of|strong=\"H1323\"* my|strong=\"H6327\"* dispersed|strong=\"H6327\"* people, will|strong=\"H1323\"* bring|strong=\"H2986\"* my|strong=\"H6327\"* offering|strong=\"H4503\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3588\"* day|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3808\"* not|strong=\"H3808\"* be|strong=\"H3808\"* disappointed for|strong=\"H3588\"* all|strong=\"H3605\"* your|strong=\"H3605\"* doings|strong=\"H5949\"* in|strong=\"H3117\"* which|strong=\"H1931\"* you|strong=\"H3588\"* have|strong=\"H3117\"* transgressed|strong=\"H6586\"* against|strong=\"H6586\"* me|strong=\"H3254\"*; for|strong=\"H3588\"* then|strong=\"H3254\"* I|strong=\"H3588\"* will|strong=\"H3808\"* take|strong=\"H5493\"* away|strong=\"H5493\"* out|strong=\"H3605\"* from|strong=\"H5493\"* among|strong=\"H7130\"* you|strong=\"H3588\"* your|strong=\"H3605\"* proudly|strong=\"H1346\"* exulting|strong=\"H5947\"* ones|strong=\"H5947\"*, and|strong=\"H3117\"* you|strong=\"H3588\"* will|strong=\"H3808\"* no|strong=\"H3808\"* more|strong=\"H3254\"* be|strong=\"H3808\"* arrogant|strong=\"H1346\"* in|strong=\"H3117\"* my|strong=\"H3605\"* holy|strong=\"H6944\"* mountain|strong=\"H2022\"*." + }, + { + "verseNum": 12, + "text": "But|strong=\"H5971\"* I|strong=\"H3068\"* will|strong=\"H3068\"* leave|strong=\"H7604\"* among|strong=\"H7130\"* you|strong=\"H7130\"* an|strong=\"H3068\"* afflicted|strong=\"H6041\"* and|strong=\"H3068\"* poor|strong=\"H6041\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H2620\"* refuge|strong=\"H2620\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*." + }, + { + "verseNum": 13, + "text": "The|strong=\"H3588\"* remnant|strong=\"H7611\"* of|strong=\"H6310\"* Israel|strong=\"H3478\"* will|strong=\"H3478\"* not|strong=\"H3808\"* do|strong=\"H6213\"* iniquity|strong=\"H5766\"* nor|strong=\"H3808\"* speak|strong=\"H1696\"* lies|strong=\"H3577\"*, neither|strong=\"H3808\"* will|strong=\"H3478\"* a|strong=\"H3068\"* deceitful|strong=\"H8649\"* tongue|strong=\"H3956\"* be|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H3478\"* their|strong=\"H1992\"* mouth|strong=\"H6310\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* will|strong=\"H3478\"* feed|strong=\"H7462\"* and|strong=\"H3478\"* lie|strong=\"H7257\"* down|strong=\"H7257\"*, and|strong=\"H3478\"* no|strong=\"H3808\"* one|strong=\"H3808\"* will|strong=\"H3478\"* make|strong=\"H6213\"* them|strong=\"H1992\"* afraid|strong=\"H2729\"*.”" + }, + { + "verseNum": 14, + "text": "Sing|strong=\"H7442\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Zion|strong=\"H6726\"*! Shout|strong=\"H7321\"*, Israel|strong=\"H3478\"*! Be|strong=\"H3820\"* glad|strong=\"H8055\"* and|strong=\"H3478\"* rejoice|strong=\"H8055\"* with|strong=\"H3389\"* all|strong=\"H3605\"* your|strong=\"H3605\"* heart|strong=\"H3820\"*, daughter|strong=\"H1323\"* of|strong=\"H1323\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* taken|strong=\"H5493\"* away|strong=\"H5493\"* your|strong=\"H3068\"* judgments|strong=\"H4941\"*. He|strong=\"H3068\"* has|strong=\"H3068\"* thrown out|strong=\"H6437\"* your|strong=\"H3068\"* enemy. The|strong=\"H3068\"* King|strong=\"H4428\"* of|strong=\"H4428\"* Israel|strong=\"H3478\"*, Yahweh|strong=\"H3068\"*, is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H3808\"*. You|strong=\"H3808\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* afraid|strong=\"H3372\"* of|strong=\"H4428\"* evil|strong=\"H7451\"* any|strong=\"H5750\"* more|strong=\"H5750\"*." + }, + { + "verseNum": 16, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, it|strong=\"H1931\"* will|strong=\"H3389\"* be|strong=\"H3027\"* said to|strong=\"H3027\"* Jerusalem|strong=\"H3389\"*, “Don’t be|strong=\"H3027\"* afraid|strong=\"H3372\"*, Zion|strong=\"H6726\"*. Don’t let|strong=\"H7503\"* your|strong=\"H3372\"* hands|strong=\"H3027\"* be|strong=\"H3027\"* weak|strong=\"H7503\"*.”" + }, + { + "verseNum": 17, + "text": "Yahweh|strong=\"H3068\"*, your|strong=\"H3068\"* God|strong=\"H3068\"*, is|strong=\"H3068\"* among|strong=\"H7130\"* you|strong=\"H5921\"*, a|strong=\"H3068\"* mighty|strong=\"H1368\"* one|strong=\"H1368\"* who|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* over|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H3068\"* joy|strong=\"H8057\"*. He|strong=\"H3068\"* will|strong=\"H3068\"* calm you|strong=\"H5921\"* in|strong=\"H5921\"* his|strong=\"H3068\"* love. He|strong=\"H3068\"* will|strong=\"H3068\"* rejoice|strong=\"H1523\"* over|strong=\"H5921\"* you|strong=\"H5921\"* with|strong=\"H3068\"* singing|strong=\"H7440\"*." + }, + { + "verseNum": 18, + "text": "I|strong=\"H5921\"* will|strong=\"H1961\"* remove those|strong=\"H4480\"* who grieve|strong=\"H3013\"* about|strong=\"H1961\"* the|strong=\"H5921\"* appointed|strong=\"H4150\"* feasts|strong=\"H4150\"* from|strong=\"H4480\"* you|strong=\"H5921\"*. They|strong=\"H5921\"* are|strong=\"H1961\"* a|strong=\"H3068\"* burden|strong=\"H4864\"* and|strong=\"H4150\"* a|strong=\"H3068\"* reproach|strong=\"H2781\"* to|strong=\"H1961\"* you|strong=\"H5921\"*." + }, + { + "verseNum": 19, + "text": "Behold|strong=\"H2005\"*,+ 3:19 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* at|strong=\"H6213\"* that|strong=\"H3605\"* time|strong=\"H6256\"* I|strong=\"H2005\"* will|strong=\"H1931\"* deal|strong=\"H6213\"* with|strong=\"H6213\"* all|strong=\"H3605\"* those|strong=\"H3605\"* who|strong=\"H3605\"* afflict|strong=\"H6031\"* you|strong=\"H3605\"*; and|strong=\"H6213\"* I|strong=\"H2005\"* will|strong=\"H1931\"* save|strong=\"H3467\"* those|strong=\"H3605\"* who|strong=\"H3605\"* are|strong=\"H6213\"* lame|strong=\"H6760\"* and|strong=\"H6213\"* gather|strong=\"H6908\"* those|strong=\"H3605\"* who|strong=\"H3605\"* were|strong=\"H3605\"* driven|strong=\"H5080\"* away|strong=\"H5080\"*. I|strong=\"H2005\"* will|strong=\"H1931\"* give|strong=\"H7760\"* them|strong=\"H6213\"* praise|strong=\"H8416\"* and|strong=\"H6213\"* honor|strong=\"H8034\"*, whose|strong=\"H8034\"* shame|strong=\"H1322\"* has|strong=\"H6256\"* been|strong=\"H3605\"* in|strong=\"H6213\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth." + }, + { + "verseNum": 20, + "text": "At|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H3068\"* bring|strong=\"H7725\"* you|strong=\"H3588\"* in|strong=\"H3068\"*, and|strong=\"H3068\"* at|strong=\"H3068\"* that|strong=\"H3588\"* time|strong=\"H6256\"* I|strong=\"H3588\"* will|strong=\"H3068\"* gather|strong=\"H6908\"* you|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H3588\"* honor|strong=\"H8034\"* and|strong=\"H3068\"* praise|strong=\"H8416\"* among|strong=\"H8034\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* of|strong=\"H3068\"* the|strong=\"H3605\"* earth when|strong=\"H3588\"* I|strong=\"H3588\"* restore|strong=\"H7725\"* your|strong=\"H3068\"* fortunes|strong=\"H7622\"* before|strong=\"H5869\"* your|strong=\"H3068\"* eyes|strong=\"H5869\"*, says Yahweh|strong=\"H3068\"*." + } + ] + } + ] + }, + { + "name": "Haggai", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"* the|strong=\"H3068\"* king|strong=\"H4428\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* first|strong=\"H1121\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, to|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Joshua|strong=\"H3091\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3068\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“This|strong=\"H2088\"* is|strong=\"H3068\"* what|strong=\"H2088\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: These|strong=\"H2088\"* people|strong=\"H5971\"* say, ‘The|strong=\"H3541\"* time|strong=\"H6256\"* hasn’t yet|strong=\"H3068\"* come|strong=\"H5971\"*, the|strong=\"H3541\"* time|strong=\"H6256\"* for|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* to|strong=\"H3068\"* be|strong=\"H3808\"* built|strong=\"H1129\"*.’”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 4, + "text": "“Is|strong=\"H2088\"* it|strong=\"H2088\"* a|strong=\"H3068\"* time|strong=\"H6256\"* for|strong=\"H3427\"* you|strong=\"H3427\"* yourselves to|strong=\"H6256\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* your|strong=\"H2088\"* paneled|strong=\"H5603\"* houses|strong=\"H1004\"*, while|strong=\"H2088\"* this|strong=\"H2088\"* house|strong=\"H1004\"* lies waste|strong=\"H2720\"*?" + }, + { + "verseNum": 5, + "text": "Now|strong=\"H6258\"* therefore|strong=\"H5921\"* this|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Consider|strong=\"H7760\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 6, + "text": "You|strong=\"H3847\"* have|strong=\"H4592\"* sown|strong=\"H2232\"* much|strong=\"H7235\"*, and|strong=\"H8354\"* bring in|strong=\"H3847\"* little|strong=\"H4592\"*. You|strong=\"H3847\"* eat, but you|strong=\"H3847\"* don’t have|strong=\"H4592\"* enough|strong=\"H4592\"*. You|strong=\"H3847\"* drink|strong=\"H8354\"*, but you|strong=\"H3847\"* aren’t filled|strong=\"H7654\"* with|strong=\"H3847\"* drink|strong=\"H8354\"*. You|strong=\"H3847\"* clothe|strong=\"H3847\"* yourselves|strong=\"H3847\"*, but no|strong=\"H8354\"* one is|strong=\"H6872\"* warm|strong=\"H2527\"*; and|strong=\"H8354\"* he|strong=\"H7235\"* who|strong=\"H8354\"* earns|strong=\"H7936\"* wages|strong=\"H7936\"* earns|strong=\"H7936\"* wages|strong=\"H7936\"* to|strong=\"H7235\"* put|strong=\"H3847\"* them|strong=\"H3847\"* into a|strong=\"H3068\"* bag|strong=\"H6872\"* with|strong=\"H3847\"* holes|strong=\"H5344\"* in|strong=\"H3847\"* it|strong=\"H8354\"*.’" + }, + { + "verseNum": 7, + "text": "“This|strong=\"H3541\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Consider|strong=\"H7760\"* your|strong=\"H3068\"* ways|strong=\"H1870\"*." + }, + { + "verseNum": 8, + "text": "Go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* the|strong=\"H3068\"* mountain|strong=\"H2022\"*, bring|strong=\"H5927\"* wood|strong=\"H6086\"*, and|strong=\"H3068\"* build|strong=\"H1129\"* the|strong=\"H3068\"* house|strong=\"H1004\"*. I|strong=\"H3068\"* will|strong=\"H3068\"* take|strong=\"H5927\"* pleasure|strong=\"H7521\"* in|strong=\"H3068\"* it|strong=\"H5927\"*, and|strong=\"H3068\"* I|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* glorified|strong=\"H3513\"*,” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 9, + "text": "“You|strong=\"H4100\"* looked|strong=\"H6437\"* for|strong=\"H3068\"* much|strong=\"H7235\"*, and|strong=\"H3068\"*, behold|strong=\"H2009\"*,+ 1:9 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* it|strong=\"H1931\"* came|strong=\"H3068\"* to|strong=\"H3068\"* little|strong=\"H4592\"*; and|strong=\"H3068\"* when|strong=\"H3068\"* you|strong=\"H4100\"* brought|strong=\"H7323\"* it|strong=\"H1931\"* home|strong=\"H1004\"*, I|strong=\"H2009\"* blew it|strong=\"H1931\"* away|strong=\"H6437\"*. Why|strong=\"H4100\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “Because|strong=\"H3282\"* of|strong=\"H1004\"* my|strong=\"H3068\"* house|strong=\"H1004\"* that|strong=\"H1931\"* lies waste|strong=\"H2720\"*, while|strong=\"H4592\"* each of|strong=\"H1004\"* you|strong=\"H4100\"* is|strong=\"H3068\"* busy with|strong=\"H1004\"* his|strong=\"H3068\"* own house|strong=\"H1004\"*." + }, + { + "verseNum": 10, + "text": "Therefore|strong=\"H3651\"* for|strong=\"H5921\"* your|strong=\"H5921\"* sake|strong=\"H5921\"* the|strong=\"H5921\"* heavens|strong=\"H8064\"* withhold|strong=\"H3607\"* the|strong=\"H5921\"* dew|strong=\"H2919\"*, and|strong=\"H8064\"* the|strong=\"H5921\"* earth|strong=\"H8064\"* withholds its|strong=\"H5921\"* fruit|strong=\"H2981\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H5921\"* called|strong=\"H7121\"* for|strong=\"H5921\"* a|strong=\"H3068\"* drought|strong=\"H2721\"* on|strong=\"H5921\"* the|strong=\"H3605\"* land, on|strong=\"H5921\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* grain|strong=\"H1715\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* new|strong=\"H8492\"* wine|strong=\"H8492\"*, on|strong=\"H5921\"* the|strong=\"H3605\"* oil|strong=\"H3323\"*, on|strong=\"H5921\"* that|strong=\"H3605\"* which|strong=\"H2022\"* the|strong=\"H3605\"* ground produces|strong=\"H3318\"*, on|strong=\"H5921\"* men|strong=\"H3605\"*, on|strong=\"H5921\"* livestock, and|strong=\"H2022\"* on|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* labor|strong=\"H3018\"* of|strong=\"H2022\"* the|strong=\"H3605\"* hands|strong=\"H3709\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H7971\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"* and|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, with|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, obeyed|strong=\"H8085\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"*’s+ 1:12 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* voice|strong=\"H6963\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* words|strong=\"H1697\"* of|strong=\"H1121\"* Haggai|strong=\"H2292\"* the|strong=\"H3605\"* prophet|strong=\"H5030\"*, as|strong=\"H1697\"* Yahweh|strong=\"H3068\"* their|strong=\"H3605\"* God|strong=\"H3068\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* him|strong=\"H6440\"*; and|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 13, + "text": "Then|strong=\"H3068\"* Haggai|strong=\"H2292\"*, Yahweh|strong=\"H3068\"*’s messenger|strong=\"H4397\"*, spoke Yahweh|strong=\"H3068\"*’s message|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H5002\"* people|strong=\"H5971\"*, saying, “I|strong=\"H3068\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H5971\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* stirred|strong=\"H5782\"* up|strong=\"H5782\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3605\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* the|strong=\"H3605\"* spirit|strong=\"H7307\"* of|strong=\"H1121\"* all|strong=\"H3605\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3605\"* people|strong=\"H5971\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* came|strong=\"H3068\"* and|strong=\"H1121\"* worked|strong=\"H6213\"* on|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, their|strong=\"H3605\"* God|strong=\"H3068\"*," + }, + { + "verseNum": 15, + "text": "in|strong=\"H8141\"* the|strong=\"H3117\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H4428\"* the|strong=\"H3117\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3117\"* sixth|strong=\"H8345\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3117\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H4428\"* Darius|strong=\"H1867\"* the|strong=\"H3117\"* king|strong=\"H4428\"*." + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H3068\"* the|strong=\"H3068\"* seventh|strong=\"H7637\"* month|strong=\"H2320\"*, in|strong=\"H3068\"* the|strong=\"H3068\"* twenty-first|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H3027\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Speak now|strong=\"H4994\"* to|strong=\"H1121\"* Zerubbabel|strong=\"H2216\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*, governor|strong=\"H6346\"* of|strong=\"H1121\"* Judah|strong=\"H3063\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3091\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, and|strong=\"H1121\"* to|strong=\"H1121\"* the|strong=\"H3091\"* remnant|strong=\"H7611\"* of|strong=\"H1121\"* the|strong=\"H3091\"* people|strong=\"H5971\"*, saying," + }, + { + "verseNum": 3, + "text": "‘Who|strong=\"H4310\"* is|strong=\"H2088\"* left|strong=\"H7604\"* among|strong=\"H4310\"* you|strong=\"H3808\"* who|strong=\"H4310\"* saw|strong=\"H7200\"* this|strong=\"H2088\"* house|strong=\"H1004\"* in|strong=\"H1004\"* its|strong=\"H7604\"* former|strong=\"H7223\"* glory|strong=\"H3519\"*? How|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3808\"* see|strong=\"H7200\"* it|strong=\"H7200\"* now|strong=\"H6258\"*? Isn’t it|strong=\"H7200\"* in|strong=\"H1004\"* your|strong=\"H7200\"* eyes|strong=\"H5869\"* as|strong=\"H3644\"* nothing|strong=\"H3808\"*?" + }, + { + "verseNum": 4, + "text": "Yet|strong=\"H3588\"* now|strong=\"H6258\"* be|strong=\"H3068\"* strong|strong=\"H2388\"*, Zerubbabel|strong=\"H2216\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*. ‘Be|strong=\"H3068\"* strong|strong=\"H2388\"*, Joshua|strong=\"H3091\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3605\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*. Be|strong=\"H3068\"* strong|strong=\"H2388\"*, all|strong=\"H3605\"* you|strong=\"H3588\"* people|strong=\"H5971\"* of|strong=\"H1121\"* the|strong=\"H3605\"* land,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H1121\"* work|strong=\"H6213\"*, for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* with|strong=\"H3068\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "This|strong=\"H1697\"* is|strong=\"H1697\"* the|strong=\"H8432\"* word|strong=\"H1697\"* that|strong=\"H1697\"* I|strong=\"H1697\"* covenanted|strong=\"H3772\"* with|strong=\"H1697\"* you|strong=\"H8432\"* when|strong=\"H3318\"* you|strong=\"H8432\"* came|strong=\"H3318\"* out|strong=\"H3318\"* of|strong=\"H1697\"* Egypt|strong=\"H4714\"*, and|strong=\"H4714\"* my|strong=\"H3318\"* Spirit|strong=\"H7307\"* lived|strong=\"H8432\"* among|strong=\"H8432\"* you|strong=\"H8432\"*. ‘Don’t be|strong=\"H1697\"* afraid|strong=\"H3372\"*.’" + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* this|strong=\"H1931\"* is|strong=\"H3068\"* what|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘Yet|strong=\"H5750\"* once|strong=\"H5750\"* more|strong=\"H5750\"*, it|strong=\"H1931\"* is|strong=\"H3068\"* a|strong=\"H3068\"* little|strong=\"H4592\"* while|strong=\"H5750\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* shake|strong=\"H7493\"* the|strong=\"H3588\"* heavens|strong=\"H8064\"*, the|strong=\"H3588\"* earth|strong=\"H8064\"*, the|strong=\"H3588\"* sea|strong=\"H3220\"*, and|strong=\"H3068\"* the|strong=\"H3588\"* dry|strong=\"H2724\"* land|strong=\"H2724\"*;" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* shake|strong=\"H7493\"* all|strong=\"H3605\"* nations|strong=\"H1471\"*. The|strong=\"H3605\"* treasure of|strong=\"H1004\"* all|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* come|strong=\"H6635\"*, and|strong=\"H3068\"* I|strong=\"H2088\"* will|strong=\"H3068\"* fill|strong=\"H4390\"* this|strong=\"H2088\"* house|strong=\"H1004\"* with|strong=\"H4390\"* glory|strong=\"H3519\"*, says Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 8, + "text": "The|strong=\"H5002\"* silver|strong=\"H3701\"* is|strong=\"H3068\"* mine, and|strong=\"H3068\"* the|strong=\"H5002\"* gold|strong=\"H2091\"* is|strong=\"H3068\"* mine,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "‘The|strong=\"H5002\"* latter glory|strong=\"H3519\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* greater|strong=\"H1419\"* than|strong=\"H4480\"* the|strong=\"H5002\"* former|strong=\"H7223\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*; ‘and|strong=\"H3068\"* in|strong=\"H3068\"* this|strong=\"H2088\"* place|strong=\"H4725\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* peace|strong=\"H7965\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*.”" + }, + { + "verseNum": 10, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day of|strong=\"H3068\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H3068\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* by|strong=\"H8141\"* Haggai|strong=\"H2292\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 11, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: Ask|strong=\"H7592\"* now|strong=\"H4994\"* the|strong=\"H3541\"* priests|strong=\"H3548\"* concerning|strong=\"H3068\"* the|strong=\"H3541\"* law|strong=\"H8451\"*, saying," + }, + { + "verseNum": 12, + "text": "‘If|strong=\"H2005\"* someone carries|strong=\"H5375\"* holy|strong=\"H6944\"* meat|strong=\"H1320\"* in|strong=\"H1320\"* the|strong=\"H3605\"* fold|strong=\"H3671\"* of|strong=\"H3605\"* his|strong=\"H3605\"* garment|strong=\"H3671\"*, and|strong=\"H6030\"* with|strong=\"H3899\"* his|strong=\"H3605\"* fold|strong=\"H3671\"* touches|strong=\"H5060\"* bread|strong=\"H3899\"*, stew|strong=\"H5138\"*, wine|strong=\"H3196\"*, oil|strong=\"H8081\"*, or|strong=\"H3808\"* any|strong=\"H3605\"* food|strong=\"H3899\"*, will|strong=\"H1320\"* it|strong=\"H5375\"* become|strong=\"H6942\"* holy|strong=\"H6944\"*?’”" + }, + { + "verseNum": 13, + "text": "Then|strong=\"H6030\"* Haggai|strong=\"H2292\"* said|strong=\"H6030\"*, “If one|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H5315\"* unclean|strong=\"H2931\"* by|strong=\"H3605\"* reason of|strong=\"H3605\"* a|strong=\"H3068\"* dead|strong=\"H5315\"* body|strong=\"H5315\"* touches|strong=\"H5060\"* any|strong=\"H3605\"* of|strong=\"H3605\"* these|strong=\"H3605\"*, will|strong=\"H5315\"* it|strong=\"H2930\"* be|strong=\"H5315\"* unclean|strong=\"H2931\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H6030\"* Haggai|strong=\"H2292\"* answered|strong=\"H6030\"*, “‘So|strong=\"H3651\"* is|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"*, and|strong=\"H3068\"* so|strong=\"H3651\"* is|strong=\"H3068\"* this|strong=\"H2088\"* nation|strong=\"H1471\"* before|strong=\"H6440\"* me|strong=\"H6440\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; ‘and|strong=\"H3068\"* so|strong=\"H3651\"* is|strong=\"H3068\"* every|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* their|strong=\"H3605\"* hands|strong=\"H3027\"*. That|strong=\"H5971\"* which|strong=\"H1931\"* they|strong=\"H3651\"* offer|strong=\"H7126\"* there|strong=\"H8033\"* is|strong=\"H3068\"* unclean|strong=\"H2931\"*." + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"*, please|strong=\"H4994\"* consider|strong=\"H7760\"* from|strong=\"H4480\"* this|strong=\"H2088\"* day|strong=\"H3117\"* and|strong=\"H3068\"* backward, before|strong=\"H4480\"* a|strong=\"H3068\"* stone was|strong=\"H3068\"* laid|strong=\"H7760\"* on|strong=\"H3117\"* a|strong=\"H3068\"* stone in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 16, + "text": "Through all that|strong=\"H1961\"* time|strong=\"H1961\"*, when|strong=\"H1961\"* one|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* a|strong=\"H3068\"* heap|strong=\"H6194\"* of|strong=\"H6194\"* twenty|strong=\"H6242\"* measures|strong=\"H6333\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* only ten|strong=\"H6235\"*. When|strong=\"H1961\"* one|strong=\"H1961\"* came|strong=\"H1961\"* to|strong=\"H1961\"* the|strong=\"H1961\"* wine|strong=\"H3342\"* vat|strong=\"H3342\"* to|strong=\"H1961\"* draw|strong=\"H2834\"* out|strong=\"H2834\"* fifty|strong=\"H2572\"*, there|strong=\"H1961\"* were|strong=\"H1961\"* only twenty|strong=\"H6242\"*." + }, + { + "verseNum": 17, + "text": "I|strong=\"H3027\"* struck|strong=\"H5221\"* you|strong=\"H3605\"* with|strong=\"H3068\"* blight|strong=\"H7711\"*, mildew|strong=\"H3420\"*, and|strong=\"H3068\"* hail|strong=\"H1259\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* work|strong=\"H4639\"* of|strong=\"H3068\"* your|strong=\"H3068\"* hands|strong=\"H3027\"*; yet|strong=\"H3068\"* you|strong=\"H3605\"* didn’t turn to|strong=\"H3068\"* me|strong=\"H5221\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "‘Consider|strong=\"H7760\"*, please|strong=\"H4994\"*, from|strong=\"H4480\"* this|strong=\"H2088\"* day|strong=\"H3117\"* and|strong=\"H3068\"* backward, from|strong=\"H4480\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H3068\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month, since|strong=\"H4480\"* the|strong=\"H3068\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3068\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"* was|strong=\"H3068\"* laid|strong=\"H7760\"*, consider|strong=\"H7760\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 19, + "text": "Is|strong=\"H2088\"* the|strong=\"H5375\"* seed|strong=\"H2233\"* yet|strong=\"H5750\"* in|strong=\"H3117\"* the|strong=\"H5375\"* barn|strong=\"H4035\"*? Yes, the|strong=\"H5375\"* vine|strong=\"H1612\"*, the|strong=\"H5375\"* fig|strong=\"H8384\"* tree|strong=\"H6086\"*, the|strong=\"H5375\"* pomegranate|strong=\"H7416\"*, and|strong=\"H3117\"* the|strong=\"H5375\"* olive|strong=\"H2132\"* tree|strong=\"H6086\"* haven’t produced. From|strong=\"H4480\"* today|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3808\"* bless|strong=\"H1288\"* you|strong=\"H3117\"*.’”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* the|strong=\"H3068\"* second|strong=\"H8145\"* time|strong=\"H8145\"* to|strong=\"H3068\"* Haggai|strong=\"H2292\"* in|strong=\"H3068\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H2320\"* of|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 21, + "text": "“Speak to|strong=\"H3063\"* Zerubbabel|strong=\"H2216\"*, governor|strong=\"H6346\"* of|strong=\"H6346\"* Judah|strong=\"H3063\"*, saying, ‘I will|strong=\"H8064\"* shake|strong=\"H7493\"* the|strong=\"H2216\"* heavens|strong=\"H8064\"* and|strong=\"H3063\"* the|strong=\"H2216\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 22, + "text": "I will|strong=\"H1471\"* overthrow|strong=\"H2015\"* the|strong=\"H2015\"* throne|strong=\"H3678\"* of|strong=\"H3678\"* kingdoms|strong=\"H4467\"*. I will|strong=\"H1471\"* destroy|strong=\"H8045\"* the|strong=\"H2015\"* strength|strong=\"H2392\"* of|strong=\"H3678\"* the|strong=\"H2015\"* kingdoms|strong=\"H4467\"* of|strong=\"H3678\"* the|strong=\"H2015\"* nations|strong=\"H1471\"*. I will|strong=\"H1471\"* overthrow|strong=\"H2015\"* the|strong=\"H2015\"* chariots|strong=\"H4818\"* and|strong=\"H2719\"* those who|strong=\"H1471\"* ride|strong=\"H7392\"* in|strong=\"H1471\"* them|strong=\"H3381\"*. The|strong=\"H2015\"* horses|strong=\"H5483\"* and|strong=\"H2719\"* their|strong=\"H2015\"* riders|strong=\"H7392\"* will|strong=\"H1471\"* come|strong=\"H3381\"* down|strong=\"H3381\"*, everyone by|strong=\"H3678\"* the|strong=\"H2015\"* sword|strong=\"H2719\"* of|strong=\"H3678\"* his|strong=\"H2015\"* brother." + }, + { + "verseNum": 23, + "text": "In|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* take|strong=\"H3947\"* you|strong=\"H3588\"*, Zerubbabel|strong=\"H2216\"* my|strong=\"H3068\"* servant|strong=\"H5650\"*, the|strong=\"H5002\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Shealtiel|strong=\"H7597\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, ‘and|strong=\"H1121\"* will|strong=\"H3068\"* make|strong=\"H7760\"* you|strong=\"H3588\"* like|strong=\"H1121\"* a|strong=\"H3068\"* signet|strong=\"H2368\"* ring, for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* chosen|strong=\"H3947\"* you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*.”" + } + ] + } + ] + }, + { + "name": "Zechariah", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* eighth|strong=\"H8066\"* month|strong=\"H2320\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Zechariah|strong=\"H2148\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 2, + "text": "“Yahweh|strong=\"H3068\"* was|strong=\"H3068\"* very|strong=\"H7107\"* displeased|strong=\"H7107\"* with|strong=\"H3068\"* your|strong=\"H3068\"* fathers." + }, + { + "verseNum": 3, + "text": "Therefore|strong=\"H3068\"* tell them|strong=\"H7725\"*, Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*: ‘Return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘and|strong=\"H3068\"* I|strong=\"H3541\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H7725\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 4, + "text": "Don’t you|strong=\"H7725\"* be|strong=\"H1961\"* like|strong=\"H1961\"* your|strong=\"H3068\"* fathers, to|strong=\"H7725\"* whom|strong=\"H7121\"* the|strong=\"H5002\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"* proclaimed|strong=\"H7121\"*, saying: Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*, ‘Return|strong=\"H7725\"* now|strong=\"H4994\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* ways|strong=\"H1870\"* and|strong=\"H3068\"* from|strong=\"H7725\"* your|strong=\"H3068\"* evil|strong=\"H7451\"* doings|strong=\"H4611\"*;’ but|strong=\"H3808\"* they|strong=\"H3068\"* didn’t hear|strong=\"H8085\"* nor|strong=\"H3808\"* listen|strong=\"H8085\"* to|strong=\"H7725\"* me|strong=\"H4994\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 5, + "text": "Your|strong=\"H2421\"* fathers, where|strong=\"H1992\"* are|strong=\"H1992\"* they|strong=\"H1992\"*? And|strong=\"H5769\"* the|strong=\"H2421\"* prophets|strong=\"H5030\"*, do they|strong=\"H1992\"* live|strong=\"H2421\"* forever|strong=\"H5769\"*?" + }, + { + "verseNum": 6, + "text": "But|strong=\"H3808\"* my|strong=\"H3068\"* words|strong=\"H1697\"* and|strong=\"H3068\"* my|strong=\"H3068\"* decrees|strong=\"H2706\"*, which|strong=\"H3068\"* I|strong=\"H1697\"* commanded|strong=\"H6680\"* my|strong=\"H3068\"* servants|strong=\"H5650\"* the|strong=\"H6213\"* prophets|strong=\"H5030\"*, didn’t they|strong=\"H3651\"* overtake|strong=\"H5381\"* your|strong=\"H3068\"* fathers?" + }, + { + "verseNum": 7, + "text": "On|strong=\"H3117\"* the|strong=\"H3068\"* twenty-fourth|strong=\"H6242\"* day|strong=\"H3117\"* of|strong=\"H1121\"* the|strong=\"H3068\"* eleventh|strong=\"H6249\"* month|strong=\"H2320\"*, which|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3068\"* month|strong=\"H2320\"* Shebat|strong=\"H7627\"*, in|strong=\"H8141\"* the|strong=\"H3068\"* second|strong=\"H8147\"* year|strong=\"H8141\"* of|strong=\"H1121\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* the|strong=\"H3068\"* prophet|strong=\"H5030\"* Zechariah|strong=\"H2148\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Berechiah|strong=\"H1296\"*, the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Iddo|strong=\"H5714\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 8, + "text": "“I|strong=\"H2009\"* had|strong=\"H1931\"* a|strong=\"H3068\"* vision|strong=\"H7200\"* in|strong=\"H5921\"* the|strong=\"H5921\"* night|strong=\"H3915\"*, and|strong=\"H3915\"* behold|strong=\"H2009\"*,+ 1:8 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* a|strong=\"H3068\"* man|strong=\"H7200\"* riding|strong=\"H7392\"* on|strong=\"H5921\"* a|strong=\"H3068\"* red horse|strong=\"H5483\"*, and|strong=\"H3915\"* he|strong=\"H1931\"* stood|strong=\"H5975\"* among|strong=\"H5921\"* the|strong=\"H5921\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"* that|strong=\"H7200\"* were|strong=\"H5483\"* in|strong=\"H5921\"* a|strong=\"H3068\"* ravine|strong=\"H4699\"*; and|strong=\"H3915\"* behind|strong=\"H5975\"* him|strong=\"H5921\"* there|strong=\"H2009\"* were|strong=\"H5483\"* red, brown, and|strong=\"H3915\"* white|strong=\"H3836\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H1696\"* I|strong=\"H7200\"* asked|strong=\"H4100\"*, ‘My|strong=\"H7200\"* lord, what|strong=\"H4100\"* are|strong=\"H1992\"* these|strong=\"H1992\"*?’”" + }, + { + "verseNum": 10, + "text": "The|strong=\"H3068\"* man|strong=\"H6030\"* who|strong=\"H3068\"* stood|strong=\"H5975\"* among the|strong=\"H3068\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"* answered|strong=\"H6030\"*, “They|strong=\"H3068\"* are|strong=\"H3068\"* the|strong=\"H3068\"* ones|strong=\"H5975\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* to|strong=\"H1980\"* go|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H7971\"* through|strong=\"H1980\"* the|strong=\"H3068\"* earth.”" + }, + { + "verseNum": 11, + "text": "They|strong=\"H3068\"* reported to|strong=\"H1980\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* who|strong=\"H3605\"* stood|strong=\"H5975\"* among|strong=\"H3427\"* the|strong=\"H3605\"* myrtle|strong=\"H1918\"* trees|strong=\"H1918\"*, and|strong=\"H1980\"* said|strong=\"H6030\"*, “We|strong=\"H1980\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3605\"* earth, and|strong=\"H1980\"* behold|strong=\"H2009\"*, all|strong=\"H3605\"* the|strong=\"H3605\"* earth is|strong=\"H3068\"* at|strong=\"H3427\"* rest|strong=\"H8252\"* and|strong=\"H1980\"* in|strong=\"H3427\"* peace|strong=\"H8252\"*.”" + }, + { + "verseNum": 12, + "text": "Then|strong=\"H6030\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* replied|strong=\"H6030\"*, “O|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, how|strong=\"H4970\"* long|strong=\"H5704\"* will|strong=\"H3068\"* you|strong=\"H5704\"* not|strong=\"H3808\"* have|strong=\"H7355\"* mercy|strong=\"H7355\"* on|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* on|strong=\"H3068\"* the|strong=\"H3068\"* cities|strong=\"H5892\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"*, against|strong=\"H3068\"* which|strong=\"H3068\"* you|strong=\"H5704\"* have|strong=\"H7355\"* had|strong=\"H3068\"* indignation|strong=\"H2194\"* these|strong=\"H2088\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*?”" + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* answered|strong=\"H6030\"* the|strong=\"H3068\"* angel|strong=\"H4397\"* who|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H3068\"* me|strong=\"H1696\"* with|strong=\"H3068\"* kind|strong=\"H2896\"* and|strong=\"H3068\"* comforting|strong=\"H5150\"* words|strong=\"H1697\"*." + }, + { + "verseNum": 14, + "text": "So|strong=\"H3541\"* the|strong=\"H3541\"* angel|strong=\"H4397\"* who|strong=\"H3068\"* talked|strong=\"H1696\"* with|strong=\"H3068\"* me|strong=\"H7121\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7121\"*, “Proclaim|strong=\"H7121\"*, saying|strong=\"H1696\"*, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H7121\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* for|strong=\"H7121\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* jealousy|strong=\"H7068\"*." + }, + { + "verseNum": 15, + "text": "I|strong=\"H5921\"* am very|strong=\"H1419\"* angry|strong=\"H7107\"* with|strong=\"H5921\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H1471\"* are|strong=\"H1992\"* at|strong=\"H5921\"* ease|strong=\"H7600\"*; for|strong=\"H5921\"* I|strong=\"H5921\"* was|strong=\"H7451\"* but|strong=\"H1992\"* a|strong=\"H3068\"* little|strong=\"H4592\"* displeased|strong=\"H7107\"*, but|strong=\"H1992\"* they|strong=\"H1992\"* added to|strong=\"H5921\"* the|strong=\"H5921\"* calamity|strong=\"H7451\"*.”" + }, + { + "verseNum": 16, + "text": "Therefore|strong=\"H3651\"* Yahweh|strong=\"H3068\"* says|strong=\"H5002\"*: “I|strong=\"H3541\"* have|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* with|strong=\"H1004\"* mercy|strong=\"H7356\"*. My|strong=\"H3068\"* house|strong=\"H1004\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* built|strong=\"H1129\"* in|strong=\"H5921\"* it|strong=\"H5921\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* a|strong=\"H3068\"* line shall|strong=\"H3068\"* be|strong=\"H3068\"* stretched|strong=\"H5186\"* out|strong=\"H5186\"* over|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*.”’" + }, + { + "verseNum": 17, + "text": "“Proclaim|strong=\"H7121\"* further|strong=\"H5750\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “My|strong=\"H3068\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* again|strong=\"H5750\"* overflow|strong=\"H6327\"* with|strong=\"H3068\"* prosperity|strong=\"H2896\"*, and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H5750\"* comfort|strong=\"H5162\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H5750\"* choose Jerusalem|strong=\"H3389\"*.”’”" + }, + { + "verseNum": 18, + "text": "I lifted up my eyes and saw, and behold, four horns." + }, + { + "verseNum": 19, + "text": "I asked the angel who talked with me, “What are these?”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* showed me four craftsmen." + }, + { + "verseNum": 21, + "text": "Then I asked, “What are these coming to do?”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H5869\"* saw|strong=\"H7200\"*, and|strong=\"H5869\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* man|strong=\"H5375\"* with|strong=\"H5869\"* a|strong=\"H3068\"* measuring line in|strong=\"H5869\"* his|strong=\"H5375\"* hand." + }, + { + "verseNum": 2, + "text": "Then|strong=\"H1696\"* I|strong=\"H4100\"* asked|strong=\"H4100\"*, “Where|strong=\"H4100\"* are|strong=\"H3478\"* you|strong=\"H4100\"* going?”" + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H7200\"*, the|strong=\"H7200\"* angel who|strong=\"H3068\"* talked with|strong=\"H3068\"* me|strong=\"H7200\"* went|strong=\"H3068\"* out|strong=\"H7200\"*, and|strong=\"H3068\"* another|strong=\"H7200\"* angel went|strong=\"H3068\"* out|strong=\"H7200\"* to|strong=\"H3068\"* meet|strong=\"H7200\"* him|strong=\"H7200\"*," + }, + { + "verseNum": 4, + "text": "and|strong=\"H3063\"* said|strong=\"H6310\"* to|strong=\"H6213\"* him|strong=\"H6213\"*, “Run, speak|strong=\"H6310\"* to|strong=\"H6213\"* this|strong=\"H6213\"* young man|strong=\"H5375\"*, saying|strong=\"H6310\"*, ‘Jerusalem will|strong=\"H1471\"* be|strong=\"H3808\"* inhabited as|strong=\"H6213\"* villages without|strong=\"H3808\"* walls, because of|strong=\"H7218\"* the|strong=\"H5375\"* multitude of|strong=\"H7218\"* men|strong=\"H7218\"* and|strong=\"H3063\"* livestock in|strong=\"H6213\"* it|strong=\"H6213\"*." + }, + { + "verseNum": 5, + "text": "For|strong=\"H3027\"* I|strong=\"H2009\"*,’ says Yahweh|strong=\"H3068\"*, ‘will|strong=\"H5869\"* be|strong=\"H3027\"* to|strong=\"H3027\"* her|strong=\"H5375\"* a|strong=\"H3068\"* wall of|strong=\"H3027\"* fire around|strong=\"H3027\"* it|strong=\"H7200\"*, and|strong=\"H3027\"* I|strong=\"H2009\"* will|strong=\"H5869\"* be|strong=\"H3027\"* the|strong=\"H7200\"* glory in|strong=\"H3027\"* the|strong=\"H7200\"* middle of|strong=\"H3027\"* her|strong=\"H5375\"*." + }, + { + "verseNum": 6, + "text": "Come|strong=\"H1980\"*! Come|strong=\"H1980\"*! Flee from|strong=\"H1980\"* the|strong=\"H7200\"* land of|strong=\"H7341\"* the|strong=\"H7200\"* north,’ says Yahweh|strong=\"H3068\"*; ‘for|strong=\"H3389\"* I|strong=\"H7200\"* have|strong=\"H7200\"* spread|strong=\"H1980\"* you|strong=\"H4100\"* abroad|strong=\"H1980\"* as|strong=\"H3389\"* the|strong=\"H7200\"* four winds of|strong=\"H7341\"* the|strong=\"H7200\"* sky,’ says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 7, + "text": "‘Come|strong=\"H3318\"*, Zion! Escape|strong=\"H3318\"*, you|strong=\"H1696\"* who|strong=\"H4397\"* dwell with|strong=\"H1696\"* the|strong=\"H3318\"* daughter of|strong=\"H4397\"* Babylon.’" + }, + { + "verseNum": 8, + "text": "For|strong=\"H3427\"* Yahweh|strong=\"H3068\"* of|strong=\"H3427\"* Armies says|strong=\"H1696\"*: ‘For|strong=\"H3427\"* honor he|strong=\"H3389\"* has|strong=\"H1696\"* sent me|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H8432\"* nations which plundered you|strong=\"H8432\"*; for|strong=\"H3427\"* he|strong=\"H3389\"* who|strong=\"H3427\"* touches you|strong=\"H8432\"* touches the|strong=\"H8432\"* apple of|strong=\"H3427\"* his|strong=\"H8432\"* eye." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3068\"*, behold, I|strong=\"H3068\"* will|strong=\"H3068\"* shake my|strong=\"H3068\"* hand over|strong=\"H3068\"* them|strong=\"H5439\"*, and|strong=\"H3068\"* they|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* plunder to|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* served|strong=\"H1961\"* them|strong=\"H5439\"*; and|strong=\"H3068\"* you|strong=\"H8432\"* will|strong=\"H3068\"* know that|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies has|strong=\"H3068\"* sent|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 10, + "text": "Sing and|strong=\"H3068\"* rejoice, daughter of|strong=\"H3068\"* Zion|strong=\"H6566\"*! For|strong=\"H3588\"* behold, I|strong=\"H3588\"* come and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* dwell within you|strong=\"H3588\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 11, + "text": "Many nations shall|strong=\"H1323\"* join|strong=\"H3427\"* themselves to|strong=\"H1323\"* Yahweh|strong=\"H3068\"* in|strong=\"H3427\"* that|strong=\"H4422\"* day, and|strong=\"H3427\"* shall|strong=\"H1323\"* be|strong=\"H6726\"* my|strong=\"H4422\"* people|strong=\"H3427\"*; and|strong=\"H3427\"* I will|strong=\"H1323\"* dwell|strong=\"H3427\"* among|strong=\"H3427\"* you|strong=\"H6726\"*, and|strong=\"H3427\"* you|strong=\"H6726\"* shall|strong=\"H1323\"* know that|strong=\"H4422\"* Yahweh|strong=\"H3068\"* of|strong=\"H1323\"* Armies has|strong=\"H6726\"* sent me to|strong=\"H1323\"* you|strong=\"H6726\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* inherit Judah as|strong=\"H3068\"* his|strong=\"H3068\"* portion in|strong=\"H3068\"* the|strong=\"H3588\"* holy land, and|strong=\"H3068\"* will|strong=\"H3068\"* again|strong=\"H7971\"* choose Jerusalem|strong=\"H3519\"*." + }, + { + "verseNum": 13, + "text": "Be|strong=\"H1961\"* silent, all|strong=\"H3045\"* flesh, before|strong=\"H5921\"* Yahweh|strong=\"H3068\"*; for|strong=\"H3588\"* he|strong=\"H3588\"* has|strong=\"H3068\"* roused himself|strong=\"H3027\"* from|strong=\"H5921\"* his|strong=\"H3068\"* holy habitation!”" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "He|strong=\"H3068\"* showed|strong=\"H7200\"* me|strong=\"H6440\"* Joshua|strong=\"H3091\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"*, and|strong=\"H3068\"* Satan|strong=\"H7854\"* standing|strong=\"H5975\"* at|strong=\"H5921\"* his|strong=\"H3068\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* to|strong=\"H3068\"* be|strong=\"H3068\"* his|strong=\"H3068\"* adversary|strong=\"H7854\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* Satan|strong=\"H7854\"*, “Yahweh|strong=\"H3068\"* rebuke|strong=\"H1605\"* you|strong=\"H3808\"*, Satan|strong=\"H7854\"*! Yes, Yahweh|strong=\"H3068\"* who|strong=\"H3068\"* has|strong=\"H3068\"* chosen Jerusalem|strong=\"H3389\"* rebuke|strong=\"H1605\"* you|strong=\"H3808\"*! Isn’t this|strong=\"H2088\"* a|strong=\"H3068\"* burning stick plucked|strong=\"H5337\"* out|strong=\"H5337\"* of|strong=\"H3068\"* the|strong=\"H3068\"* fire?”" + }, + { + "verseNum": 3, + "text": "Now|strong=\"H1961\"* Joshua|strong=\"H3091\"* was|strong=\"H1961\"* clothed|strong=\"H3847\"* with|strong=\"H3847\"* filthy|strong=\"H6674\"* garments, and|strong=\"H6440\"* was|strong=\"H1961\"* standing|strong=\"H5975\"* before|strong=\"H6440\"* the|strong=\"H6440\"* angel|strong=\"H4397\"*." + }, + { + "verseNum": 4, + "text": "He|strong=\"H5921\"* answered|strong=\"H6030\"* and|strong=\"H6030\"* spoke|strong=\"H6030\"* to|strong=\"H5921\"* those|strong=\"H5921\"* who|strong=\"H5975\"* stood|strong=\"H5975\"* before|strong=\"H6440\"* him|strong=\"H6440\"*, saying, “Take|strong=\"H5493\"* the|strong=\"H6440\"* filthy|strong=\"H6674\"* garments off|strong=\"H5493\"* him|strong=\"H6440\"*.” To|strong=\"H5921\"* him|strong=\"H6440\"* he|strong=\"H5921\"* said|strong=\"H6030\"*, “Behold|strong=\"H7200\"*, I|strong=\"H5921\"* have|strong=\"H5771\"* caused|strong=\"H5674\"* your|strong=\"H5921\"* iniquity|strong=\"H5771\"* to|strong=\"H5921\"* pass|strong=\"H5674\"* from|strong=\"H5493\"* you|strong=\"H6440\"*, and|strong=\"H6030\"* I|strong=\"H5921\"* will|strong=\"H5771\"* clothe|strong=\"H3847\"* you|strong=\"H6440\"* with|strong=\"H3847\"* rich clothing|strong=\"H3847\"*.”" + }, + { + "verseNum": 5, + "text": "I|strong=\"H5921\"* said, “Let|strong=\"H7760\"* them|strong=\"H5921\"* set|strong=\"H7760\"* a|strong=\"H3068\"* clean|strong=\"H2889\"* turban|strong=\"H6797\"* on|strong=\"H5921\"* his|strong=\"H7760\"* head|strong=\"H7218\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* solemnly|strong=\"H5749\"* assured Joshua|strong=\"H3091\"*, saying," + }, + { + "verseNum": 7, + "text": "“Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: ‘If you|strong=\"H5414\"* will|strong=\"H3068\"* walk|strong=\"H3212\"* in|strong=\"H3068\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, and|strong=\"H3068\"* if you|strong=\"H5414\"* will|strong=\"H3068\"* follow|strong=\"H3212\"* my|strong=\"H8104\"* instructions|strong=\"H1870\"*, then|strong=\"H1571\"* you|strong=\"H5414\"* also|strong=\"H1571\"* shall|strong=\"H3068\"* judge|strong=\"H1777\"* my|strong=\"H8104\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* also|strong=\"H1571\"* keep|strong=\"H8104\"* my|strong=\"H8104\"* courts|strong=\"H2691\"*, and|strong=\"H3068\"* I|strong=\"H5414\"* will|strong=\"H3068\"* give|strong=\"H5414\"* you|strong=\"H5414\"* a|strong=\"H3068\"* place|strong=\"H5414\"* of|strong=\"H1004\"* access among these|strong=\"H1004\"* who|strong=\"H3068\"* stand|strong=\"H5975\"* by|strong=\"H3068\"*." + }, + { + "verseNum": 8, + "text": "Hear|strong=\"H8085\"* now|strong=\"H4994\"*, Joshua|strong=\"H3091\"* the|strong=\"H6440\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*, you|strong=\"H3588\"* and|strong=\"H1419\"* your|strong=\"H6440\"* fellows|strong=\"H7453\"* who|strong=\"H3548\"* sit|strong=\"H3427\"* before|strong=\"H6440\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* they|strong=\"H1992\"* are|strong=\"H1992\"* men|strong=\"H1419\"* who|strong=\"H3548\"* are|strong=\"H1992\"* a|strong=\"H3068\"* sign|strong=\"H4159\"*; for|strong=\"H3588\"*, behold|strong=\"H2005\"*, I|strong=\"H3588\"* will|strong=\"H5650\"* bring out|strong=\"H6440\"* my|strong=\"H8085\"* servant|strong=\"H5650\"*, the|strong=\"H6440\"* Branch|strong=\"H6780\"*." + }, + { + "verseNum": 9, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, the|strong=\"H6440\"* stone that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H3068\"* set|strong=\"H5414\"* before|strong=\"H6440\"* Joshua|strong=\"H3091\"*: on|strong=\"H5921\"* one|strong=\"H1931\"* stone are|strong=\"H3117\"* seven|strong=\"H7651\"* eyes|strong=\"H5869\"*; behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* engrave|strong=\"H6605\"* its|strong=\"H5414\"* inscription|strong=\"H6603\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* remove|strong=\"H4185\"* the|strong=\"H6440\"* iniquity|strong=\"H5771\"* of|strong=\"H3068\"* that|strong=\"H3588\"* land|strong=\"H6440\"* in|strong=\"H5921\"* one|strong=\"H1931\"* day|strong=\"H3117\"*." + }, + { + "verseNum": 10, + "text": "In|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*,’ says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘you|strong=\"H3117\"* will|strong=\"H3068\"* invite|strong=\"H7121\"* every|strong=\"H3117\"* man his|strong=\"H3068\"* neighbor|strong=\"H7453\"* under|strong=\"H8478\"* the|strong=\"H5002\"* vine|strong=\"H1612\"* and|strong=\"H3068\"* under|strong=\"H8478\"* the|strong=\"H5002\"* fig|strong=\"H8384\"* tree|strong=\"H8384\"*.’”" + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H7725\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H7725\"* came|strong=\"H7725\"* again|strong=\"H7725\"* and|strong=\"H7725\"* wakened|strong=\"H5782\"* me|strong=\"H7725\"*, as|strong=\"H1696\"* a|strong=\"H3068\"* man who|strong=\"H4397\"* is|strong=\"H1696\"* wakened|strong=\"H5782\"* out|strong=\"H7725\"* of|strong=\"H4397\"* his|strong=\"H7725\"* sleep|strong=\"H8142\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H3605\"* said to|strong=\"H5921\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H3605\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "and|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* by|strong=\"H5921\"* it|strong=\"H5921\"*, one|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5921\"* the|strong=\"H5921\"* bowl|strong=\"H1543\"*, and|strong=\"H8147\"* the|strong=\"H5921\"* other|strong=\"H8147\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3225\"* of|strong=\"H5921\"* it|strong=\"H5921\"*.”" + }, + { + "verseNum": 4, + "text": "I|strong=\"H4100\"* answered|strong=\"H6030\"* and|strong=\"H6030\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, saying|strong=\"H1696\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H1696\"*, my|strong=\"H1696\"* lord?”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H6030\"* the|strong=\"H3045\"* angel|strong=\"H4397\"* who|strong=\"H1992\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"* answered|strong=\"H6030\"* me|strong=\"H1696\"*, “Don’t you|strong=\"H3045\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these|strong=\"H1992\"* are|strong=\"H1992\"*?”" + }, + { + "verseNum": 6, + "text": "Then|strong=\"H6030\"* he|strong=\"H3588\"* answered|strong=\"H6030\"* and|strong=\"H3068\"* spoke|strong=\"H1697\"* to|strong=\"H3068\"* me|strong=\"H6030\"*, saying|strong=\"H1697\"*, “This|strong=\"H2088\"* is|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* to|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"*, saying|strong=\"H1697\"*, ‘Not|strong=\"H3808\"* by|strong=\"H3068\"* might|strong=\"H3581\"*, nor|strong=\"H3808\"* by|strong=\"H3068\"* power|strong=\"H3581\"*, but|strong=\"H3588\"* by|strong=\"H3068\"* my|strong=\"H3068\"* Spirit|strong=\"H7307\"*,’ says|strong=\"H1697\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 7, + "text": "Who|strong=\"H4310\"* are|strong=\"H4310\"* you|strong=\"H6440\"*, great|strong=\"H1419\"* mountain|strong=\"H2022\"*? Before|strong=\"H6440\"* Zerubbabel|strong=\"H2216\"* you|strong=\"H6440\"* are|strong=\"H4310\"* a|strong=\"H3068\"* plain|strong=\"H4334\"*; and|strong=\"H1419\"* he|strong=\"H6440\"* will|strong=\"H4310\"* bring|strong=\"H3318\"* out|strong=\"H3318\"* the|strong=\"H6440\"* capstone with|strong=\"H6440\"* shouts|strong=\"H8663\"* of|strong=\"H2022\"* ‘Grace|strong=\"H2580\"*, grace|strong=\"H2580\"*, to|strong=\"H3318\"* it|strong=\"H6440\"*!’”" + }, + { + "verseNum": 8, + "text": "Moreover|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“The|strong=\"H3588\"* hands|strong=\"H3027\"* of|strong=\"H1004\"* Zerubbabel|strong=\"H2216\"* have|strong=\"H3068\"* laid|strong=\"H3245\"* the|strong=\"H3588\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* this|strong=\"H2088\"* house|strong=\"H1004\"*. His|strong=\"H3068\"* hands|strong=\"H3027\"* shall|strong=\"H3068\"* also|strong=\"H3068\"* finish|strong=\"H1214\"* it|strong=\"H3588\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3588\"*." + }, + { + "verseNum": 10, + "text": "Indeed|strong=\"H3588\"*, who|strong=\"H4310\"* despises the|strong=\"H3605\"* day|strong=\"H3117\"* of|strong=\"H3068\"* small|strong=\"H6996\"* things|strong=\"H3605\"*? For|strong=\"H3588\"* these|strong=\"H1992\"* seven|strong=\"H7651\"* shall|strong=\"H3068\"* rejoice|strong=\"H8055\"*, and|strong=\"H3068\"* shall|strong=\"H3068\"* see|strong=\"H7200\"* the|strong=\"H3605\"* plumb line in|strong=\"H3068\"* the|strong=\"H3605\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* Zerubbabel|strong=\"H2216\"*. These|strong=\"H1992\"* are|strong=\"H3117\"* Yahweh|strong=\"H3068\"*’s eyes|strong=\"H5869\"*, which|strong=\"H3068\"* run|strong=\"H5869\"* back|strong=\"H7751\"* and|strong=\"H3068\"* forth|strong=\"H7751\"* through|strong=\"H3027\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth.”" + }, + { + "verseNum": 11, + "text": "Then|strong=\"H6030\"* I|strong=\"H5921\"* asked|strong=\"H4100\"* him|strong=\"H5921\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* trees|strong=\"H2132\"* on|strong=\"H5921\"* the|strong=\"H5921\"* right|strong=\"H3225\"* side|strong=\"H3225\"* of|strong=\"H5921\"* the|strong=\"H5921\"* lamp stand and|strong=\"H6030\"* on|strong=\"H5921\"* the|strong=\"H5921\"* left|strong=\"H8040\"* side|strong=\"H3225\"* of|strong=\"H5921\"* it|strong=\"H5921\"*?”" + }, + { + "verseNum": 12, + "text": "I|strong=\"H5921\"* asked|strong=\"H4100\"* him|strong=\"H5921\"* the|strong=\"H5921\"* second|strong=\"H8145\"* time|strong=\"H8145\"*, “What|strong=\"H4100\"* are|strong=\"H3027\"* these|strong=\"H8147\"* two|strong=\"H8147\"* olive|strong=\"H2132\"* branches|strong=\"H7641\"*, which|strong=\"H4100\"* are|strong=\"H3027\"* beside|strong=\"H5921\"* the|strong=\"H5921\"* two|strong=\"H8147\"* golden|strong=\"H2091\"* spouts that|strong=\"H3027\"* pour the|strong=\"H5921\"* golden|strong=\"H2091\"* oil|strong=\"H7324\"* out|strong=\"H7324\"* of|strong=\"H3027\"* themselves|strong=\"H5921\"*?”" + }, + { + "verseNum": 13, + "text": "He|strong=\"H3808\"* answered me|strong=\"H3808\"*, “Don’t you|strong=\"H3045\"* know|strong=\"H3045\"* what|strong=\"H4100\"* these are|strong=\"H4100\"*?”" + }, + { + "verseNum": 14, + "text": "Then|strong=\"H5975\"* he|strong=\"H3605\"* said, “These|strong=\"H8147\"* are|strong=\"H1121\"* the|strong=\"H3605\"* two|strong=\"H8147\"* anointed|strong=\"H3323\"* ones|strong=\"H1121\"* who|strong=\"H3605\"* stand|strong=\"H5975\"* by|strong=\"H5921\"* the|strong=\"H3605\"* Lord+ 4:14 The word translated “Lord” is “Adonai.”* of|strong=\"H1121\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* earth.”" + } + ] + }, + { + "chapterNum": 5, + "verses": [ + { + "verseNum": 1, + "text": "Then|strong=\"H2009\"* again|strong=\"H7725\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H7725\"* saw|strong=\"H7200\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* flying|strong=\"H5774\"* scroll|strong=\"H4039\"*." + }, + { + "verseNum": 2, + "text": "He|strong=\"H6242\"* said to|strong=\"H7200\"* me|strong=\"H7200\"*, “What|strong=\"H4100\"* do|strong=\"H4100\"* you|strong=\"H4100\"* see|strong=\"H7200\"*?”" + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* he|strong=\"H3588\"* said|strong=\"H3318\"* to|strong=\"H3318\"* me|strong=\"H6440\"*, “This|strong=\"H2088\"* is|strong=\"H2088\"* the|strong=\"H3605\"* curse|strong=\"H7650\"* that|strong=\"H3588\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* over|strong=\"H5921\"* the|strong=\"H3605\"* surface|strong=\"H6440\"* of|strong=\"H6440\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* land|strong=\"H6440\"*, for|strong=\"H3588\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* steals|strong=\"H1589\"* shall|strong=\"H6440\"* be|strong=\"H6440\"* cut off|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3318\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* one|strong=\"H2088\"* side|strong=\"H2088\"*; and|strong=\"H6440\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* swears|strong=\"H7650\"* falsely shall|strong=\"H6440\"* be|strong=\"H6440\"* cut off|strong=\"H5921\"* according|strong=\"H5921\"* to|strong=\"H3318\"* it|strong=\"H5921\"* on|strong=\"H5921\"* the|strong=\"H3605\"* other|strong=\"H2088\"* side|strong=\"H2088\"*." + }, + { + "verseNum": 4, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* cause|strong=\"H8267\"* it|strong=\"H8432\"* to|strong=\"H3318\"* go|strong=\"H3318\"* out|strong=\"H3318\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* it|strong=\"H8432\"* will|strong=\"H3068\"* enter into|strong=\"H8432\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* the|strong=\"H5002\"* thief|strong=\"H1590\"*, and|strong=\"H3068\"* into|strong=\"H8432\"* the|strong=\"H5002\"* house|strong=\"H1004\"* of|strong=\"H1004\"* him|strong=\"H3318\"* who|strong=\"H3068\"* swears|strong=\"H7650\"* falsely|strong=\"H8267\"* by|strong=\"H7650\"* my|strong=\"H3068\"* name|strong=\"H8034\"*; and|strong=\"H3068\"* it|strong=\"H8432\"* will|strong=\"H3068\"* remain|strong=\"H3885\"* in|strong=\"H3068\"* the|strong=\"H5002\"* middle|strong=\"H8432\"* of|strong=\"H1004\"* his|strong=\"H3068\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* destroy|strong=\"H3615\"* it|strong=\"H8432\"* with|strong=\"H1004\"* its|strong=\"H3318\"* timber|strong=\"H6086\"* and|strong=\"H3068\"* its|strong=\"H3318\"* stones.”" + }, + { + "verseNum": 5, + "text": "Then|strong=\"H1696\"* the|strong=\"H7200\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H4994\"* came|strong=\"H3318\"* forward|strong=\"H3318\"* and|strong=\"H5869\"* said|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H4994\"*, “Lift|strong=\"H5375\"* up|strong=\"H5375\"* now|strong=\"H4994\"* your|strong=\"H5375\"* eyes|strong=\"H5869\"* and|strong=\"H5869\"* see|strong=\"H7200\"* what|strong=\"H4100\"* this|strong=\"H2063\"* is|strong=\"H4100\"* that|strong=\"H7200\"* is|strong=\"H4100\"* appearing|strong=\"H7200\"*.”" + }, + { + "verseNum": 6, + "text": "I|strong=\"H4100\"* said|strong=\"H3318\"*, “What|strong=\"H4100\"* is|strong=\"H1931\"* it|strong=\"H1931\"*?”" + }, + { + "verseNum": 7, + "text": "and|strong=\"H3427\"* behold|strong=\"H2009\"*, a|strong=\"H3068\"* lead|strong=\"H5777\"* cover|strong=\"H3603\"* weighing one|strong=\"H5375\"* talent|strong=\"H3603\"*+ 5:7 A talent is about 30 kilograms or 66 pounds.* was|strong=\"H3427\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"*—and|strong=\"H3427\"* there|strong=\"H2009\"* was|strong=\"H3427\"* a|strong=\"H3068\"* woman sitting|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H5375\"* middle|strong=\"H8432\"* of|strong=\"H3427\"* the|strong=\"H5375\"* ephah+ 5:7 1 ephah is about 22 liters or about 2/3 of a bushel* basket.”" + }, + { + "verseNum": 8, + "text": "He|strong=\"H6310\"* said|strong=\"H6310\"*, “This|strong=\"H2063\"* is|strong=\"H6310\"* Wickedness|strong=\"H7564\"*;” and|strong=\"H6310\"* he|strong=\"H6310\"* threw|strong=\"H7993\"* her|strong=\"H2063\"* down|strong=\"H7993\"* into|strong=\"H8432\"* the|strong=\"H8432\"* middle|strong=\"H8432\"* of|strong=\"H6310\"* the|strong=\"H8432\"* ephah basket; and|strong=\"H6310\"* he|strong=\"H6310\"* threw|strong=\"H7993\"* the|strong=\"H8432\"* lead|strong=\"H5777\"* weight on|strong=\"H6310\"* its|strong=\"H7993\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3318\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"* and|strong=\"H8064\"* saw|strong=\"H7200\"*, and|strong=\"H8064\"* behold|strong=\"H2009\"*, there|strong=\"H2009\"* were|strong=\"H5869\"* two|strong=\"H8147\"* women; and|strong=\"H8064\"* the|strong=\"H7200\"* wind|strong=\"H7307\"* was|strong=\"H7307\"* in|strong=\"H8064\"* their|strong=\"H5375\"* wings|strong=\"H3671\"*. Now|strong=\"H2009\"* they|strong=\"H2007\"* had|strong=\"H5869\"* wings|strong=\"H3671\"* like|strong=\"H3318\"* the|strong=\"H7200\"* wings|strong=\"H3671\"* of|strong=\"H7307\"* a|strong=\"H3068\"* stork|strong=\"H2624\"*, and|strong=\"H8064\"* they|strong=\"H2007\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* the|strong=\"H7200\"* ephah basket between|strong=\"H7307\"* earth|strong=\"H8064\"* and|strong=\"H8064\"* the|strong=\"H7200\"* sky|strong=\"H8064\"*." + }, + { + "verseNum": 10, + "text": "Then|strong=\"H1696\"* I|strong=\"H3212\"* said|strong=\"H1696\"* to|strong=\"H1696\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H1992\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, “Where|strong=\"H1992\"* are|strong=\"H1992\"* these|strong=\"H1992\"* carrying the|strong=\"H1696\"* ephah basket?”" + }, + { + "verseNum": 11, + "text": "He|strong=\"H8033\"* said to|strong=\"H5921\"* me|strong=\"H5921\"*, “To|strong=\"H5921\"* build|strong=\"H1129\"* her|strong=\"H5921\"* a|strong=\"H3068\"* house|strong=\"H1004\"* in|strong=\"H5921\"* the|strong=\"H5921\"* land of|strong=\"H1004\"* Shinar|strong=\"H8152\"*. When|strong=\"H5921\"* it|strong=\"H5921\"* is|strong=\"H8033\"* prepared|strong=\"H3559\"*, she|strong=\"H5921\"* will|strong=\"H1004\"* be|strong=\"H1004\"* set|strong=\"H3559\"* there|strong=\"H8033\"* in|strong=\"H5921\"* her|strong=\"H5921\"* own place|strong=\"H1004\"*.”" + } + ] + }, + { + "chapterNum": 6, + "verses": [ + { + "verseNum": 1, + "text": "Again|strong=\"H7725\"* I|strong=\"H2009\"* lifted|strong=\"H5375\"* up|strong=\"H5375\"* my|strong=\"H7200\"* eyes|strong=\"H5869\"*, and|strong=\"H7725\"* saw|strong=\"H7200\"*, and|strong=\"H7725\"* behold|strong=\"H2009\"*, four chariots|strong=\"H4818\"* came|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H7725\"* between two|strong=\"H8147\"* mountains|strong=\"H2022\"*; and|strong=\"H7725\"* the|strong=\"H7200\"* mountains|strong=\"H2022\"* were|strong=\"H5869\"* mountains|strong=\"H2022\"* of|strong=\"H2022\"* bronze|strong=\"H5178\"*." + }, + { + "verseNum": 2, + "text": "In|strong=\"H7223\"* the|strong=\"H7223\"* first|strong=\"H7223\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* red horses|strong=\"H5483\"*. In|strong=\"H7223\"* the|strong=\"H7223\"* second|strong=\"H8145\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* black|strong=\"H7838\"* horses|strong=\"H5483\"*." + }, + { + "verseNum": 3, + "text": "In|strong=\"H4818\"* the|strong=\"H7992\"* third|strong=\"H7992\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* white|strong=\"H3836\"* horses|strong=\"H5483\"*. In|strong=\"H4818\"* the|strong=\"H7992\"* fourth|strong=\"H7243\"* chariot|strong=\"H4818\"* were|strong=\"H5483\"* dappled|strong=\"H1261\"* horses|strong=\"H5483\"*, all of|strong=\"H4818\"* them powerful." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H6030\"* I|strong=\"H4100\"* asked|strong=\"H4100\"* the|strong=\"H1696\"* angel|strong=\"H4397\"* who|strong=\"H4397\"* talked|strong=\"H1696\"* with|strong=\"H1696\"* me|strong=\"H1696\"*, “What|strong=\"H4100\"* are|strong=\"H4100\"* these|strong=\"H1696\"*, my|strong=\"H1696\"* lord?”" + }, + { + "verseNum": 5, + "text": "The|strong=\"H3605\"* angel|strong=\"H4397\"* answered|strong=\"H6030\"* me|strong=\"H5921\"*, “These|strong=\"H3605\"* are|strong=\"H8064\"* the|strong=\"H3605\"* four winds|strong=\"H7307\"* of|strong=\"H7307\"* the|strong=\"H3605\"* sky|strong=\"H8064\"*, which|strong=\"H7307\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* standing|strong=\"H3320\"* before|strong=\"H5921\"* the|strong=\"H3605\"* Lord of|strong=\"H7307\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth|strong=\"H8064\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H3318\"* one with|strong=\"H3318\"* the|strong=\"H3318\"* black|strong=\"H7838\"* horses|strong=\"H5483\"* goes|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3318\"* north|strong=\"H6828\"* country; and|strong=\"H5483\"* the|strong=\"H3318\"* white|strong=\"H3836\"* went|strong=\"H3318\"* out|strong=\"H3318\"* after|strong=\"H3318\"* them|strong=\"H3318\"*; and|strong=\"H5483\"* the|strong=\"H3318\"* dappled|strong=\"H1261\"* went|strong=\"H3318\"* out|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3318\"* south|strong=\"H8486\"* country.”" + }, + { + "verseNum": 7, + "text": "The|strong=\"H3318\"* strong went|strong=\"H1980\"* out|strong=\"H3318\"*, and|strong=\"H1980\"* sought|strong=\"H1245\"* to|strong=\"H1980\"* go|strong=\"H1980\"* that|strong=\"H3212\"* they|strong=\"H3318\"* might walk|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H3318\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth. He|strong=\"H1980\"* said|strong=\"H3318\"*, “Go|strong=\"H1980\"* around|strong=\"H1980\"* and|strong=\"H1980\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth!” So|strong=\"H1980\"* they|strong=\"H3318\"* walked|strong=\"H1980\"* back|strong=\"H1980\"* and|strong=\"H1980\"* forth|strong=\"H3318\"* through|strong=\"H1980\"* the|strong=\"H3318\"* earth." + }, + { + "verseNum": 8, + "text": "Then|strong=\"H1696\"* he|strong=\"H1696\"* called|strong=\"H2199\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, and|strong=\"H7200\"* spoke|strong=\"H1696\"* to|strong=\"H1696\"* me|strong=\"H7200\"*, saying|strong=\"H1696\"*, “Behold|strong=\"H7200\"*, those|strong=\"H3318\"* who go|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H7200\"* north|strong=\"H6828\"* country have|strong=\"H7200\"* quieted|strong=\"H5117\"* my|strong=\"H7200\"* spirit|strong=\"H7307\"* in|strong=\"H1696\"* the|strong=\"H7200\"* north|strong=\"H6828\"* country.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 10, + "text": "“Take|strong=\"H3947\"* of|strong=\"H1121\"* them|strong=\"H3947\"* of|strong=\"H1121\"* the|strong=\"H3947\"* captivity|strong=\"H1473\"*, even of|strong=\"H1121\"* Heldai|strong=\"H2469\"*, of|strong=\"H1121\"* Tobijah|strong=\"H2900\"*, and|strong=\"H1121\"* of|strong=\"H1121\"* Jedaiah|strong=\"H3048\"*; and|strong=\"H1121\"* come the|strong=\"H3947\"* same|strong=\"H1931\"* day|strong=\"H3117\"*, and|strong=\"H1121\"* go into|strong=\"H3947\"* the|strong=\"H3947\"* house|strong=\"H1004\"* of|strong=\"H1121\"* Josiah|strong=\"H2977\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah|strong=\"H6846\"*, where|strong=\"H1004\"* they|strong=\"H3117\"* have|strong=\"H1121\"* come from|strong=\"H1121\"* Babylon." + }, + { + "verseNum": 11, + "text": "Yes, take|strong=\"H3947\"* silver|strong=\"H3701\"* and|strong=\"H1121\"* gold|strong=\"H2091\"*, and|strong=\"H1121\"* make|strong=\"H6213\"* crowns|strong=\"H5850\"*, and|strong=\"H1121\"* set|strong=\"H7760\"* them|strong=\"H6213\"* on|strong=\"H7760\"* the|strong=\"H3947\"* head|strong=\"H7218\"* of|strong=\"H1121\"* Joshua|strong=\"H3091\"* the|strong=\"H3947\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Jehozadak|strong=\"H3087\"*, the|strong=\"H3947\"* high|strong=\"H1419\"* priest|strong=\"H3548\"*;" + }, + { + "verseNum": 12, + "text": "and|strong=\"H3068\"* speak to|strong=\"H3068\"* him|strong=\"H8478\"*, saying, ‘Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “Behold|strong=\"H2009\"*, the|strong=\"H3541\"* man whose|strong=\"H8034\"* name|strong=\"H8034\"* is|strong=\"H3068\"* the|strong=\"H3541\"* Branch|strong=\"H6780\"*! He|strong=\"H3068\"* will|strong=\"H3068\"* grow|strong=\"H6779\"* up|strong=\"H1129\"* out|strong=\"H6779\"* of|strong=\"H3068\"* his|strong=\"H3068\"* place|strong=\"H8478\"*; and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 13, + "text": "He|strong=\"H1931\"* will|strong=\"H3068\"* build|strong=\"H1129\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* bear|strong=\"H5375\"* the|strong=\"H5921\"* glory|strong=\"H1935\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* sit|strong=\"H3427\"* and|strong=\"H3068\"* rule|strong=\"H4910\"* on|strong=\"H5921\"* his|strong=\"H5375\"* throne|strong=\"H3678\"*. He|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* priest|strong=\"H3548\"* on|strong=\"H5921\"* his|strong=\"H5375\"* throne|strong=\"H3678\"*. The|strong=\"H5921\"* counsel|strong=\"H6098\"* of|strong=\"H3068\"* peace|strong=\"H7965\"* will|strong=\"H3068\"* be|strong=\"H1961\"* between|strong=\"H7965\"* them|strong=\"H5921\"* both|strong=\"H8147\"*." + }, + { + "verseNum": 14, + "text": "The|strong=\"H3068\"* crowns|strong=\"H5850\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* to|strong=\"H3068\"* Helem|strong=\"H2494\"*, to|strong=\"H3068\"* Tobijah|strong=\"H2900\"*, to|strong=\"H3068\"* Jedaiah|strong=\"H3048\"*, and|strong=\"H1121\"* to|strong=\"H3068\"* Hen|strong=\"H2581\"* the|strong=\"H3068\"* son|strong=\"H1121\"* of|strong=\"H1121\"* Zephaniah|strong=\"H6846\"*, for|strong=\"H3068\"* a|strong=\"H3068\"* memorial|strong=\"H2146\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*." + }, + { + "verseNum": 15, + "text": "Those|strong=\"H8085\"* who|strong=\"H3068\"* are|strong=\"H3068\"* far|strong=\"H7350\"* off|strong=\"H7350\"* shall|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H3068\"* build|strong=\"H1129\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s temple|strong=\"H1964\"*; and|strong=\"H3068\"* you|strong=\"H3588\"* shall|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* has|strong=\"H3068\"* sent|strong=\"H7971\"* me|strong=\"H7971\"* to|strong=\"H3068\"* you|strong=\"H3588\"*. This|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"*, if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* diligently|strong=\"H8085\"* obey|strong=\"H8085\"* Yahweh|strong=\"H3068\"* your|strong=\"H3068\"* God|strong=\"H3068\"*’s voice|strong=\"H6963\"*.”’”+ 6:15 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).*" + } + ] + }, + { + "chapterNum": 7, + "verses": [ + { + "verseNum": 1, + "text": "In|strong=\"H8141\"* the|strong=\"H3068\"* fourth year|strong=\"H8141\"* of|strong=\"H4428\"* King|strong=\"H4428\"* Darius|strong=\"H1867\"*, Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zechariah|strong=\"H2148\"* in|strong=\"H8141\"* the|strong=\"H3068\"* fourth day|strong=\"H2320\"* of|strong=\"H4428\"* the|strong=\"H3068\"* ninth|strong=\"H8671\"* month|strong=\"H2320\"*, the|strong=\"H3068\"* month|strong=\"H2320\"* of|strong=\"H4428\"* Chislev|strong=\"H3691\"*." + }, + { + "verseNum": 2, + "text": "The|strong=\"H6440\"* people of|strong=\"H3068\"* Bethel|strong=\"H1008\"* sent|strong=\"H7971\"* Sharezer|strong=\"H8272\"* and|strong=\"H3068\"* Regem Melech and|strong=\"H3068\"* their|strong=\"H3068\"* men to|strong=\"H3068\"* entreat|strong=\"H2470\"* Yahweh|strong=\"H3068\"*’s favor|strong=\"H6440\"*," + }, + { + "verseNum": 3, + "text": "and|strong=\"H3068\"* to|strong=\"H3068\"* speak to|strong=\"H3068\"* the|strong=\"H6213\"* priests|strong=\"H3548\"* of|strong=\"H1004\"* the|strong=\"H6213\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* and|strong=\"H3068\"* to|strong=\"H3068\"* the|strong=\"H6213\"* prophets|strong=\"H5030\"*, saying, “Should|strong=\"H3068\"* I|strong=\"H2088\"* weep|strong=\"H1058\"* in|strong=\"H8141\"* the|strong=\"H6213\"* fifth|strong=\"H2549\"* month|strong=\"H2320\"*, separating|strong=\"H5144\"* myself, as|strong=\"H6213\"* I|strong=\"H2088\"* have|strong=\"H3068\"* done|strong=\"H6213\"* these|strong=\"H2088\"* so|strong=\"H6213\"* many|strong=\"H4100\"* years|strong=\"H8141\"*?”" + }, + { + "verseNum": 4, + "text": "Then|strong=\"H1961\"* the|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 5, + "text": "“Speak to|strong=\"H5971\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"* of|strong=\"H8141\"* the|strong=\"H3605\"* land and|strong=\"H3548\"* to|strong=\"H5971\"* the|strong=\"H3605\"* priests|strong=\"H3548\"*, saying, ‘When|strong=\"H3588\"* you|strong=\"H3588\"* fasted|strong=\"H6684\"* and|strong=\"H3548\"* mourned|strong=\"H5594\"* in|strong=\"H8141\"* the|strong=\"H3605\"* fifth|strong=\"H2549\"* and|strong=\"H3548\"* in|strong=\"H8141\"* the|strong=\"H3605\"* seventh|strong=\"H7637\"* month for|strong=\"H3588\"* these|strong=\"H2088\"* seventy|strong=\"H7657\"* years|strong=\"H8141\"*, did|strong=\"H5971\"* you|strong=\"H3588\"* at|strong=\"H5971\"* all|strong=\"H3605\"* fast|strong=\"H6684\"* to|strong=\"H5971\"* me|strong=\"H3588\"*, really|strong=\"H2088\"* to|strong=\"H5971\"* me|strong=\"H3588\"*?" + }, + { + "verseNum": 6, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* eat and|strong=\"H8354\"* when|strong=\"H3588\"* you|strong=\"H3588\"* drink|strong=\"H8354\"*, don’t you|strong=\"H3588\"* eat for|strong=\"H3588\"* yourselves and|strong=\"H8354\"* drink|strong=\"H8354\"* for|strong=\"H3588\"* yourselves?" + }, + { + "verseNum": 7, + "text": "Aren’t these|strong=\"H7121\"* the|strong=\"H3068\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* proclaimed|strong=\"H7121\"* by|strong=\"H3027\"* the|strong=\"H3068\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"* when|strong=\"H1961\"* Jerusalem|strong=\"H3389\"* was|strong=\"H3068\"* inhabited|strong=\"H3427\"* and|strong=\"H3068\"* in|strong=\"H3427\"* prosperity|strong=\"H7961\"*, and|strong=\"H3068\"* its|strong=\"H5439\"* cities|strong=\"H5892\"* around|strong=\"H5439\"* her|strong=\"H5439\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* South|strong=\"H5045\"* and|strong=\"H3068\"* the|strong=\"H3068\"* lowland|strong=\"H8219\"* were|strong=\"H1961\"* inhabited|strong=\"H3427\"*?’”" + }, + { + "verseNum": 8, + "text": "Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* came|strong=\"H1961\"* to|strong=\"H3068\"* Zechariah|strong=\"H2148\"*, saying|strong=\"H1697\"*," + }, + { + "verseNum": 9, + "text": "“Thus|strong=\"H3541\"* has|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* spoken, saying, ‘Execute|strong=\"H6213\"* true|strong=\"H3068\"* judgment|strong=\"H4941\"*, and|strong=\"H3068\"* show|strong=\"H6213\"* kindness|strong=\"H2617\"* and|strong=\"H3068\"* compassion|strong=\"H7356\"* every|strong=\"H6213\"* man to|strong=\"H3068\"* his|strong=\"H3068\"* brother." + }, + { + "verseNum": 10, + "text": "Don’t oppress|strong=\"H6231\"* the|strong=\"H6231\"* widow, the|strong=\"H6231\"* fatherless|strong=\"H3490\"*, the|strong=\"H6231\"* foreigner|strong=\"H1616\"*, nor|strong=\"H7451\"* the|strong=\"H6231\"* poor|strong=\"H6041\"*; and|strong=\"H6041\"* let none of|strong=\"H3824\"* you|strong=\"H6231\"* devise|strong=\"H2803\"* evil|strong=\"H7451\"* against|strong=\"H3824\"* his|strong=\"H2803\"* brother in|strong=\"H1616\"* your|strong=\"H6231\"* heart|strong=\"H3824\"*.’" + }, + { + "verseNum": 11, + "text": "But|strong=\"H3513\"* they|strong=\"H5414\"* refused|strong=\"H3985\"* to|strong=\"H5414\"* listen|strong=\"H8085\"*, and|strong=\"H8085\"* turned|strong=\"H5414\"* their|strong=\"H5414\"* backs|strong=\"H3802\"*, and|strong=\"H8085\"* stopped|strong=\"H3513\"* their|strong=\"H5414\"* ears, that|strong=\"H8085\"* they|strong=\"H5414\"* might not|strong=\"H5414\"* hear|strong=\"H8085\"*." + }, + { + "verseNum": 12, + "text": "Yes, they|strong=\"H3068\"* made|strong=\"H7760\"* their|strong=\"H3068\"* hearts|strong=\"H3820\"* as|strong=\"H1697\"* hard|strong=\"H1419\"* as|strong=\"H1697\"* flint|strong=\"H8068\"*, lest they|strong=\"H3068\"* might|strong=\"H3068\"* hear|strong=\"H8085\"* the|strong=\"H8085\"* law|strong=\"H8451\"* and|strong=\"H3068\"* the|strong=\"H8085\"* words|strong=\"H1697\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* had|strong=\"H3068\"* sent|strong=\"H7971\"* by|strong=\"H3027\"* his|strong=\"H7760\"* Spirit|strong=\"H7307\"* by|strong=\"H3027\"* the|strong=\"H8085\"* former|strong=\"H7223\"* prophets|strong=\"H5030\"*. Therefore|strong=\"H7971\"* great|strong=\"H1419\"* wrath|strong=\"H7110\"* came|strong=\"H1961\"* from|strong=\"H3027\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H7121\"* has|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* that|strong=\"H8085\"*, as|strong=\"H1961\"* he|strong=\"H3651\"* called|strong=\"H7121\"* and|strong=\"H3068\"* they|strong=\"H3651\"* refused|strong=\"H3808\"* to|strong=\"H3068\"* listen|strong=\"H8085\"*, so|strong=\"H3651\"* they|strong=\"H3651\"* will|strong=\"H3068\"* call|strong=\"H7121\"* and|strong=\"H3068\"* I|strong=\"H3651\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*,” said|strong=\"H7121\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*;" + }, + { + "verseNum": 14, + "text": "“but|strong=\"H3808\"* I|strong=\"H5921\"* will|strong=\"H1471\"* scatter them|strong=\"H5921\"* with|strong=\"H5921\"* a|strong=\"H3068\"* whirlwind|strong=\"H5590\"* among|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* which|strong=\"H1471\"* they|strong=\"H3808\"* have|strong=\"H3045\"* not|strong=\"H3808\"* known|strong=\"H3045\"*. Thus|strong=\"H3808\"* the|strong=\"H3605\"* land was|strong=\"H3605\"* desolate|strong=\"H8047\"* after|strong=\"H5921\"* them|strong=\"H5921\"*, so|strong=\"H3808\"* that|strong=\"H3045\"* no|strong=\"H3808\"* man|strong=\"H3605\"* passed|strong=\"H5674\"* through|strong=\"H5674\"* nor|strong=\"H3808\"* returned|strong=\"H7725\"*; for|strong=\"H5921\"* they|strong=\"H3808\"* made|strong=\"H7760\"* the|strong=\"H3605\"* pleasant|strong=\"H2532\"* land desolate|strong=\"H8047\"*.”" + } + ] + }, + { + "chapterNum": 8, + "verses": [ + { + "verseNum": 1, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 2, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H3068\"* Zion|strong=\"H6726\"* with|strong=\"H3068\"* great|strong=\"H1419\"* jealousy|strong=\"H7068\"*, and|strong=\"H3068\"* I|strong=\"H3541\"* am|strong=\"H3068\"* jealous|strong=\"H7065\"* for|strong=\"H3068\"* her|strong=\"H7065\"* with|strong=\"H3068\"* great|strong=\"H1419\"* wrath|strong=\"H2534\"*.”" + }, + { + "verseNum": 3, + "text": "Yahweh|strong=\"H3068\"* says|strong=\"H3541\"*: “I|strong=\"H3541\"* have|strong=\"H3068\"* returned|strong=\"H7725\"* to|strong=\"H7725\"* Zion|strong=\"H6726\"*, and|strong=\"H3068\"* will|strong=\"H3068\"* dwell|strong=\"H7931\"* in|strong=\"H3068\"* the|strong=\"H3541\"* middle|strong=\"H8432\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*. Jerusalem|strong=\"H3389\"* shall|strong=\"H3068\"* be|strong=\"H3068\"* called|strong=\"H7121\"* ‘The|strong=\"H3541\"* City|strong=\"H5892\"* of|strong=\"H3068\"* Truth;’ and|strong=\"H3068\"* the|strong=\"H3541\"* mountain|strong=\"H2022\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, ‘The|strong=\"H3541\"* Holy|strong=\"H6944\"* Mountain|strong=\"H2022\"*.’”" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Old|strong=\"H2205\"* men|strong=\"H2205\"* and|strong=\"H3068\"* old|strong=\"H2205\"* women|strong=\"H2205\"* will|strong=\"H3068\"* again|strong=\"H5750\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* the|strong=\"H3541\"* streets|strong=\"H7339\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"*, every|strong=\"H3117\"* man|strong=\"H2205\"* with|strong=\"H3068\"* his|strong=\"H3068\"* staff|strong=\"H4938\"* in|strong=\"H3427\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* because|strong=\"H7230\"* of|strong=\"H3068\"* their|strong=\"H3068\"* old|strong=\"H2205\"* age|strong=\"H3117\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H4390\"* streets|strong=\"H7339\"* of|strong=\"H5892\"* the|strong=\"H4390\"* city|strong=\"H5892\"* will|strong=\"H5892\"* be|strong=\"H5892\"* full|strong=\"H4390\"* of|strong=\"H5892\"* boys|strong=\"H3206\"* and|strong=\"H5892\"* girls|strong=\"H3207\"* playing|strong=\"H7832\"* in|strong=\"H5892\"* its|strong=\"H4390\"* streets|strong=\"H7339\"*.”" + }, + { + "verseNum": 6, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H5002\"*: “If|strong=\"H3588\"* it|strong=\"H3588\"* is|strong=\"H3068\"* marvelous|strong=\"H6381\"* in|strong=\"H3068\"* the|strong=\"H5002\"* eyes|strong=\"H5869\"* of|strong=\"H3068\"* the|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* in|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, should|strong=\"H3068\"* it|strong=\"H3588\"* also|strong=\"H1571\"* be|strong=\"H3068\"* marvelous|strong=\"H6381\"* in|strong=\"H3068\"* my|strong=\"H3068\"* eyes|strong=\"H5869\"*?” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H3068\"* save|strong=\"H3467\"* my|strong=\"H3068\"* people|strong=\"H5971\"* from|strong=\"H3068\"* the|strong=\"H3541\"* east|strong=\"H4217\"* country and|strong=\"H3068\"* from|strong=\"H3068\"* the|strong=\"H3541\"* west|strong=\"H3996\"* country." + }, + { + "verseNum": 8, + "text": "I|strong=\"H8432\"* will|strong=\"H1961\"* bring|strong=\"H1961\"* them|strong=\"H8432\"*, and|strong=\"H5971\"* they|strong=\"H5971\"* will|strong=\"H1961\"* dwell|strong=\"H7931\"* within|strong=\"H8432\"* Jerusalem|strong=\"H3389\"*. They|strong=\"H5971\"* will|strong=\"H1961\"* be|strong=\"H1961\"* my|strong=\"H1961\"* people|strong=\"H5971\"*, and|strong=\"H5971\"* I|strong=\"H8432\"* will|strong=\"H1961\"* be|strong=\"H1961\"* their|strong=\"H8432\"* God, in|strong=\"H7931\"* truth and|strong=\"H5971\"* in|strong=\"H7931\"* righteousness|strong=\"H6666\"*.”" + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Let your|strong=\"H3068\"* hands|strong=\"H3027\"* be|strong=\"H1697\"* strong|strong=\"H2388\"*, you|strong=\"H3117\"* who|strong=\"H3068\"* hear|strong=\"H8085\"* in|strong=\"H3068\"* these|strong=\"H8085\"* days|strong=\"H3117\"* these|strong=\"H8085\"* words|strong=\"H1697\"* from|strong=\"H3027\"* the|strong=\"H8085\"* mouth|strong=\"H6310\"* of|strong=\"H1004\"* the|strong=\"H8085\"* prophets|strong=\"H5030\"* who|strong=\"H3068\"* were|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H8085\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H8085\"* foundation|strong=\"H3245\"* of|strong=\"H1004\"* the|strong=\"H8085\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* was|strong=\"H3068\"* laid|strong=\"H3245\"*, even|strong=\"H1129\"* the|strong=\"H8085\"* temple|strong=\"H1004\"*, that|strong=\"H3117\"* it|strong=\"H3117\"* might|strong=\"H3068\"* be|strong=\"H1697\"* built|strong=\"H1129\"*." + }, + { + "verseNum": 10, + "text": "For|strong=\"H3588\"* before|strong=\"H6440\"* those|strong=\"H1992\"* days|strong=\"H3117\"* there|strong=\"H1961\"* was|strong=\"H1961\"* no|strong=\"H3808\"* wages|strong=\"H7939\"* for|strong=\"H3588\"* man|strong=\"H3605\"* nor|strong=\"H3808\"* any|strong=\"H3605\"* wages|strong=\"H7939\"* for|strong=\"H3588\"* an|strong=\"H1961\"* animal|strong=\"H1961\"*, neither|strong=\"H3808\"* was|strong=\"H1961\"* there|strong=\"H1961\"* any|strong=\"H3605\"* peace|strong=\"H7965\"* to|strong=\"H3318\"* him|strong=\"H6440\"* who|strong=\"H3605\"* went|strong=\"H3318\"* out|strong=\"H3318\"* or|strong=\"H3808\"* came|strong=\"H1961\"* in|strong=\"H3117\"*, because|strong=\"H3588\"* of|strong=\"H3117\"* the|strong=\"H3605\"* adversary|strong=\"H6862\"*. For|strong=\"H3588\"* I|strong=\"H3588\"* set|strong=\"H7971\"* all|strong=\"H3605\"* men|strong=\"H3605\"* everyone|strong=\"H3605\"* against|strong=\"H6440\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 11, + "text": "But|strong=\"H3808\"* now|strong=\"H6258\"* I|strong=\"H3117\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H3808\"* to|strong=\"H3068\"* the|strong=\"H5002\"* remnant|strong=\"H7611\"* of|strong=\"H3068\"* this|strong=\"H2088\"* people|strong=\"H5971\"* as|strong=\"H3117\"* in|strong=\"H3068\"* the|strong=\"H5002\"* former|strong=\"H7223\"* days|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“For|strong=\"H3588\"* the|strong=\"H3605\"* seed|strong=\"H2233\"* of|strong=\"H2233\"* peace|strong=\"H7965\"* and|strong=\"H8064\"* the|strong=\"H3605\"* vine|strong=\"H1612\"* will|strong=\"H5971\"* yield|strong=\"H5414\"* its|strong=\"H3605\"* fruit|strong=\"H6529\"*, and|strong=\"H8064\"* the|strong=\"H3605\"* ground will|strong=\"H5971\"* give|strong=\"H5414\"* its|strong=\"H3605\"* increase|strong=\"H2981\"*, and|strong=\"H8064\"* the|strong=\"H3605\"* heavens|strong=\"H8064\"* will|strong=\"H5971\"* give|strong=\"H5414\"* their|strong=\"H3605\"* dew|strong=\"H2919\"*. I|strong=\"H3588\"* will|strong=\"H5971\"* cause|strong=\"H5414\"* the|strong=\"H3605\"* remnant|strong=\"H7611\"* of|strong=\"H2233\"* this|strong=\"H2088\"* people|strong=\"H5971\"* to|strong=\"H5414\"* inherit|strong=\"H5157\"* all|strong=\"H3605\"* these|strong=\"H2088\"* things|strong=\"H3605\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H3651\"* shall|strong=\"H3478\"* come|strong=\"H1961\"* to|strong=\"H3478\"* pass|strong=\"H1961\"* that|strong=\"H1471\"*, as|strong=\"H1961\"* you|strong=\"H3651\"* were|strong=\"H3478\"* a|strong=\"H3068\"* curse|strong=\"H7045\"* among|strong=\"H3478\"* the|strong=\"H2388\"* nations|strong=\"H1471\"*, house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Israel|strong=\"H3478\"*, so|strong=\"H3651\"* I|strong=\"H3651\"* will|strong=\"H1961\"* save|strong=\"H3467\"* you|strong=\"H3651\"*, and|strong=\"H3063\"* you|strong=\"H3651\"* shall|strong=\"H3478\"* be|strong=\"H1961\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*. Don’t be|strong=\"H1961\"* afraid|strong=\"H3372\"*. Let|strong=\"H3651\"* your|strong=\"H1961\"* hands|strong=\"H3027\"* be|strong=\"H1961\"* strong|strong=\"H2388\"*.”" + }, + { + "verseNum": 14, + "text": "For|strong=\"H3588\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “As|strong=\"H3068\"* I|strong=\"H3588\"* thought|strong=\"H2161\"* to|strong=\"H3068\"* do|strong=\"H7489\"* evil|strong=\"H7489\"* to|strong=\"H3068\"* you|strong=\"H3588\"* when|strong=\"H3588\"* your|strong=\"H3068\"* fathers provoked|strong=\"H7107\"* me|strong=\"H3808\"* to|strong=\"H3068\"* wrath|strong=\"H7107\"*,” says|strong=\"H3541\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* I|strong=\"H3588\"* didn’t repent|strong=\"H5162\"*," + }, + { + "verseNum": 15, + "text": "so|strong=\"H3651\"* again|strong=\"H7725\"* I|strong=\"H3117\"* have|strong=\"H3063\"* thought|strong=\"H2161\"* in|strong=\"H1004\"* these|strong=\"H1004\"* days|strong=\"H3117\"* to|strong=\"H7725\"* do|strong=\"H3190\"* good|strong=\"H3190\"* to|strong=\"H7725\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* to|strong=\"H7725\"* the|strong=\"H3117\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*. Don’t be|strong=\"H3117\"* afraid|strong=\"H3372\"*." + }, + { + "verseNum": 16, + "text": "These|strong=\"H1696\"* are|strong=\"H1697\"* the|strong=\"H6213\"* things|strong=\"H1697\"* that|strong=\"H1697\"* you|strong=\"H6213\"* shall|strong=\"H1697\"* do|strong=\"H6213\"*: speak|strong=\"H1696\"* every|strong=\"H1697\"* man|strong=\"H8179\"* the|strong=\"H6213\"* truth with|strong=\"H6213\"* his|strong=\"H6213\"* neighbor|strong=\"H7453\"*. Execute|strong=\"H6213\"* the|strong=\"H6213\"* judgment|strong=\"H4941\"* of|strong=\"H1697\"* truth and|strong=\"H4941\"* peace|strong=\"H7965\"* in|strong=\"H6213\"* your|strong=\"H6213\"* gates|strong=\"H8179\"*," + }, + { + "verseNum": 17, + "text": "and|strong=\"H3068\"* let none|strong=\"H3605\"* of|strong=\"H3068\"* you|strong=\"H3588\"* devise|strong=\"H2803\"* evil|strong=\"H7451\"* in|strong=\"H3068\"* your|strong=\"H3068\"* hearts|strong=\"H3824\"* against|strong=\"H8130\"* his|strong=\"H3605\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* love no|strong=\"H3605\"* false|strong=\"H8267\"* oath|strong=\"H7621\"*; for|strong=\"H3588\"* all|strong=\"H3605\"* these|strong=\"H3605\"* are|strong=\"H3068\"* things|strong=\"H3605\"* that|strong=\"H3588\"* I|strong=\"H3588\"* hate|strong=\"H8130\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 18, + "text": "The|strong=\"H3068\"* word|strong=\"H1697\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* came|strong=\"H1961\"* to|strong=\"H3068\"* me|strong=\"H1961\"*." + }, + { + "verseNum": 19, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “The|strong=\"H3541\"* fasts of|strong=\"H1004\"* the|strong=\"H3541\"* fourth|strong=\"H7243\"*, fifth|strong=\"H2549\"*, seventh|strong=\"H7637\"*, and|strong=\"H3063\"* tenth|strong=\"H6224\"* months|strong=\"H7637\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* for|strong=\"H3068\"* the|strong=\"H3541\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"* joy|strong=\"H8057\"*, gladness|strong=\"H8057\"*, and|strong=\"H3063\"* cheerful|strong=\"H2896\"* feasts|strong=\"H4150\"*. Therefore|strong=\"H3068\"* love truth and|strong=\"H3063\"* peace|strong=\"H7965\"*.”" + }, + { + "verseNum": 20, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “Many|strong=\"H7227\"* peoples|strong=\"H5971\"* and|strong=\"H3068\"* the|strong=\"H3541\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* many|strong=\"H7227\"* cities|strong=\"H5892\"* will|strong=\"H3068\"* yet|strong=\"H5750\"* come|strong=\"H5971\"*." + }, + { + "verseNum": 21, + "text": "The|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* one|strong=\"H1571\"* will|strong=\"H3068\"* go|strong=\"H1980\"* to|strong=\"H1980\"* another|strong=\"H1571\"*, saying, ‘Let|strong=\"H3212\"*’s go|strong=\"H1980\"* speedily|strong=\"H1980\"* to|strong=\"H1980\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*, and|strong=\"H1980\"* to|strong=\"H1980\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. I|strong=\"H1571\"* will|strong=\"H3068\"* go|strong=\"H1980\"* also|strong=\"H1571\"*.’" + }, + { + "verseNum": 22, + "text": "Yes, many|strong=\"H7227\"* peoples|strong=\"H5971\"* and|strong=\"H3068\"* strong|strong=\"H6099\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* come|strong=\"H5971\"* to|strong=\"H3068\"* seek|strong=\"H1245\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3068\"* to|strong=\"H3068\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*.”" + }, + { + "verseNum": 23, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*: “In|strong=\"H3068\"* those|strong=\"H1992\"* days|strong=\"H3117\"*, ten|strong=\"H6235\"* men|strong=\"H3605\"* out|strong=\"H2388\"* of|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* languages|strong=\"H3956\"* of|strong=\"H3068\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* will|strong=\"H3068\"* take|strong=\"H2388\"* hold|strong=\"H2388\"* of|strong=\"H3068\"* the|strong=\"H3605\"* skirt|strong=\"H3671\"* of|strong=\"H3068\"* him|strong=\"H5973\"* who|strong=\"H3605\"* is|strong=\"H3068\"* a|strong=\"H3068\"* Jew|strong=\"H3064\"*, saying, ‘We|strong=\"H3588\"* will|strong=\"H3068\"* go|strong=\"H3212\"* with|strong=\"H5973\"* you|strong=\"H3588\"*, for|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* heard|strong=\"H8085\"* that|strong=\"H3588\"* God|strong=\"H3068\"* is|strong=\"H3068\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.’”" + } + ] + }, + { + "chapterNum": 9, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation." + }, + { + "verseNum": 2, + "text": "and|strong=\"H3966\"* Hamath|strong=\"H2574\"*, also|strong=\"H1571\"*, which|strong=\"H3588\"* borders|strong=\"H1379\"* on|strong=\"H1571\"* it|strong=\"H3588\"*," + }, + { + "verseNum": 3, + "text": "Tyre|strong=\"H6865\"* built|strong=\"H1129\"* herself a|strong=\"H3068\"* stronghold," + }, + { + "verseNum": 4, + "text": "Behold|strong=\"H2009\"*, the|strong=\"H5221\"* Lord will|strong=\"H1931\"* dispossess|strong=\"H3423\"* her|strong=\"H5221\"*," + }, + { + "verseNum": 5, + "text": "Ashkelon will|strong=\"H4428\"* see|strong=\"H7200\"* it|strong=\"H3588\"*, and|strong=\"H4428\"* fear|strong=\"H3372\"*;" + }, + { + "verseNum": 6, + "text": "Foreigners will|strong=\"H6430\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* Ashdod," + }, + { + "verseNum": 7, + "text": "I|strong=\"H1571\"* will|strong=\"H1961\"* take|strong=\"H5493\"* away|strong=\"H5493\"* his|strong=\"H5493\"* blood|strong=\"H1818\"* out|strong=\"H7604\"* of|strong=\"H6310\"* his|strong=\"H5493\"* mouth|strong=\"H6310\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H5869\"* encamp|strong=\"H2583\"* around|strong=\"H5921\"* my|strong=\"H7200\"* house|strong=\"H1004\"* against|strong=\"H5921\"* the|strong=\"H5921\"* army|strong=\"H4675\"*," + }, + { + "verseNum": 9, + "text": "Rejoice|strong=\"H1523\"* greatly|strong=\"H3966\"*, daughter|strong=\"H1323\"* of|strong=\"H1121\"* Zion|strong=\"H6726\"*!" + }, + { + "verseNum": 10, + "text": "I|strong=\"H5704\"* will|strong=\"H1471\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5704\"* chariot|strong=\"H7393\"* from|strong=\"H3772\"* Ephraim" + }, + { + "verseNum": 11, + "text": "As|strong=\"H1571\"* for|strong=\"H7971\"* you|strong=\"H7971\"* also|strong=\"H1571\"*," + }, + { + "verseNum": 12, + "text": "Turn|strong=\"H7725\"* to|strong=\"H7725\"* the|strong=\"H3117\"* stronghold|strong=\"H1225\"*, you|strong=\"H3117\"* prisoners of|strong=\"H3117\"* hope|strong=\"H8615\"*!" + }, + { + "verseNum": 13, + "text": "For|strong=\"H3588\"* indeed|strong=\"H3588\"* I|strong=\"H3588\"* bend|strong=\"H1869\"* Judah|strong=\"H3063\"* as|strong=\"H3588\"* a|strong=\"H3068\"* bow|strong=\"H7198\"* for|strong=\"H3588\"* me|strong=\"H5921\"*." + }, + { + "verseNum": 14, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H3068\"* seen|strong=\"H7200\"* over|strong=\"H5921\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* will|strong=\"H3068\"* defend|strong=\"H1598\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 16, + "text": "Yahweh|strong=\"H3068\"* their|strong=\"H3068\"* God|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* them|strong=\"H5921\"* in|strong=\"H5921\"* that|strong=\"H3588\"* day|strong=\"H3117\"* as|strong=\"H3117\"* the|strong=\"H5921\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* his|strong=\"H3068\"* people|strong=\"H5971\"*;" + }, + { + "verseNum": 17, + "text": "For|strong=\"H3588\"* how|strong=\"H4100\"* great is|strong=\"H4100\"* his|strong=\"H3588\"* goodness|strong=\"H2898\"*," + } + ] + }, + { + "chapterNum": 10, + "verses": [ + { + "verseNum": 1, + "text": "Ask|strong=\"H7592\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* rain|strong=\"H4306\"* in|strong=\"H3068\"* the|strong=\"H5414\"* spring|strong=\"H4456\"* time|strong=\"H6256\"*," + }, + { + "verseNum": 2, + "text": "For|strong=\"H3588\"* the|strong=\"H5921\"* teraphim|strong=\"H8655\"*+ 10:2 teraphim were household idols that may have been associated with inheritance rights to the household property.* have|strong=\"H7462\"* spoken|strong=\"H1696\"* vanity|strong=\"H1892\"*," + }, + { + "verseNum": 3, + "text": "My|strong=\"H3068\"* anger is|strong=\"H3068\"* kindled|strong=\"H2734\"* against|strong=\"H5921\"* the|strong=\"H5921\"* shepherds|strong=\"H7462\"*," + }, + { + "verseNum": 4, + "text": "From|strong=\"H4480\"* him|strong=\"H3318\"* will|strong=\"H7198\"* come|strong=\"H3318\"* the|strong=\"H3605\"* cornerstone|strong=\"H6438\"*," + }, + { + "verseNum": 5, + "text": "They|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* as|strong=\"H1961\"* mighty|strong=\"H1368\"* men|strong=\"H1368\"*," + }, + { + "verseNum": 6, + "text": "“I|strong=\"H3588\"* will|strong=\"H3068\"* strengthen|strong=\"H1396\"* the|strong=\"H3588\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*," + }, + { + "verseNum": 7, + "text": "Ephraim will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H3644\"* a|strong=\"H3068\"* mighty|strong=\"H1368\"* man|strong=\"H1368\"*," + }, + { + "verseNum": 8, + "text": "I|strong=\"H3588\"* will|strong=\"H3588\"* signal for|strong=\"H3588\"* them|strong=\"H3588\"* and|strong=\"H7235\"* gather|strong=\"H6908\"* them|strong=\"H3588\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H2142\"* will|strong=\"H5971\"* sow|strong=\"H2232\"* them|strong=\"H7725\"* among|strong=\"H5971\"* the|strong=\"H7725\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H4714\"* will|strong=\"H4714\"* bring|strong=\"H7725\"* them|strong=\"H7725\"* again|strong=\"H7725\"* also out|strong=\"H4672\"* of|strong=\"H3808\"* the|strong=\"H7725\"* land of|strong=\"H3808\"* Egypt|strong=\"H4714\"*," + }, + { + "verseNum": 11, + "text": "He|strong=\"H3605\"* will|strong=\"H4714\"* pass|strong=\"H5674\"* through|strong=\"H5674\"* the|strong=\"H3605\"* sea|strong=\"H3220\"* of|strong=\"H7626\"* affliction|strong=\"H6869\"*," + }, + { + "verseNum": 12, + "text": "I|strong=\"H1980\"* will|strong=\"H3068\"* strengthen|strong=\"H1396\"* them|strong=\"H3068\"* in|strong=\"H1980\"* Yahweh|strong=\"H3068\"*." + } + ] + }, + { + "chapterNum": 11, + "verses": [ + { + "verseNum": 1, + "text": "Open|strong=\"H6605\"* your|strong=\"H6605\"* doors|strong=\"H1817\"*, Lebanon|strong=\"H3844\"*," + }, + { + "verseNum": 2, + "text": "Wail|strong=\"H3213\"*, cypress|strong=\"H1265\"* tree|strong=\"H1265\"*, for|strong=\"H3588\"* the|strong=\"H3588\"* cedar has|strong=\"H3588\"* fallen|strong=\"H5307\"*," + }, + { + "verseNum": 3, + "text": "A|strong=\"H3068\"* voice|strong=\"H6963\"* of|strong=\"H6963\"* the|strong=\"H3588\"* wailing|strong=\"H3215\"* of|strong=\"H6963\"* the|strong=\"H3588\"* shepherds|strong=\"H7462\"*!" + }, + { + "verseNum": 4, + "text": "Yahweh|strong=\"H3068\"* my|strong=\"H3068\"* God|strong=\"H3068\"* says|strong=\"H3541\"*: “Feed|strong=\"H7462\"* the|strong=\"H3541\"* flock|strong=\"H6629\"* of|strong=\"H3068\"* slaughter|strong=\"H2028\"*." + }, + { + "verseNum": 5, + "text": "Their|strong=\"H3068\"* buyers slaughter|strong=\"H2026\"* them|strong=\"H5921\"* and|strong=\"H3068\"* go|strong=\"H3068\"* unpunished|strong=\"H3808\"*. Those|strong=\"H5921\"* who|strong=\"H3068\"* sell|strong=\"H4376\"* them|strong=\"H5921\"* say, ‘Blessed|strong=\"H1288\"* be|strong=\"H3808\"* Yahweh|strong=\"H3068\"*, for|strong=\"H5921\"* I|strong=\"H5921\"* am|strong=\"H3068\"* rich|strong=\"H6238\"*;’ and|strong=\"H3068\"* their|strong=\"H3068\"* own shepherds|strong=\"H7462\"* don’t pity|strong=\"H2550\"* them|strong=\"H5921\"*." + }, + { + "verseNum": 6, + "text": "For|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* no|strong=\"H3808\"* more|strong=\"H5750\"* pity|strong=\"H2550\"* the|strong=\"H5002\"* inhabitants|strong=\"H3427\"* of|strong=\"H4428\"* the|strong=\"H5002\"* land,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*; “but|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H3068\"* deliver|strong=\"H5337\"* every|strong=\"H3068\"* one|strong=\"H3808\"* of|strong=\"H4428\"* the|strong=\"H5002\"* men into|strong=\"H5921\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*’s hand|strong=\"H3027\"* and|strong=\"H3068\"* into|strong=\"H5921\"* the|strong=\"H5002\"* hand|strong=\"H3027\"* of|strong=\"H4428\"* his|strong=\"H3068\"* king|strong=\"H4428\"*. They|strong=\"H3588\"* will|strong=\"H3068\"* strike|strong=\"H3807\"* the|strong=\"H5002\"* land, and|strong=\"H3068\"* out|strong=\"H4672\"* of|strong=\"H4428\"* their|strong=\"H3068\"* hand|strong=\"H3027\"* I|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* deliver|strong=\"H5337\"* them|strong=\"H5921\"*.”" + }, + { + "verseNum": 7, + "text": "So|strong=\"H3651\"* I|strong=\"H3651\"* fed|strong=\"H7462\"* the|strong=\"H3947\"* flock|strong=\"H6629\"* to|strong=\"H7121\"* be|strong=\"H2256\"* slaughtered, especially the|strong=\"H3947\"* oppressed|strong=\"H6041\"* of|strong=\"H6629\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*. I|strong=\"H3651\"* took|strong=\"H3947\"* for|strong=\"H7121\"* myself two|strong=\"H8147\"* staffs|strong=\"H4731\"*. The|strong=\"H3947\"* one|strong=\"H8147\"* I|strong=\"H3651\"* called|strong=\"H7121\"* “Favor|strong=\"H5278\"*” and|strong=\"H6041\"* the|strong=\"H3947\"* other|strong=\"H8147\"* I|strong=\"H3651\"* called|strong=\"H7121\"* “Union”, and|strong=\"H6041\"* I|strong=\"H3651\"* fed|strong=\"H7462\"* the|strong=\"H3947\"* flock|strong=\"H6629\"*." + }, + { + "verseNum": 8, + "text": "I|strong=\"H5315\"* cut|strong=\"H3582\"* off|strong=\"H3582\"* the|strong=\"H1571\"* three|strong=\"H7969\"* shepherds|strong=\"H7462\"* in|strong=\"H5315\"* one|strong=\"H1571\"* month|strong=\"H3391\"*; for|strong=\"H5315\"* my|strong=\"H7462\"* soul|strong=\"H5315\"* was|strong=\"H5315\"* weary of|strong=\"H5315\"* them|strong=\"H7462\"*, and|strong=\"H5315\"* their|strong=\"H1571\"* soul|strong=\"H5315\"* also|strong=\"H1571\"* loathed me|strong=\"H5315\"*." + }, + { + "verseNum": 9, + "text": "Then|strong=\"H3808\"* I|strong=\"H3808\"* said, “I|strong=\"H3808\"* will|strong=\"H1320\"* not|strong=\"H3808\"* feed|strong=\"H7462\"* you|strong=\"H3808\"*. That|strong=\"H1320\"* which|strong=\"H4191\"* dies|strong=\"H4191\"*, let|strong=\"H7604\"* it|strong=\"H3808\"* die|strong=\"H4191\"*; and|strong=\"H4191\"* that|strong=\"H1320\"* which|strong=\"H4191\"* is|strong=\"H1320\"* to|strong=\"H4191\"* be|strong=\"H4191\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*, let|strong=\"H7604\"* it|strong=\"H3808\"* be|strong=\"H4191\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*; and|strong=\"H4191\"* let|strong=\"H7604\"* those who|strong=\"H7604\"* are|strong=\"H1320\"* left|strong=\"H7604\"* eat|strong=\"H7462\"* each other’s flesh|strong=\"H1320\"*.”" + }, + { + "verseNum": 10, + "text": "I|strong=\"H3772\"* took|strong=\"H3947\"* my|strong=\"H3605\"* staff|strong=\"H4731\"* Favor|strong=\"H5278\"* and|strong=\"H5971\"* cut|strong=\"H3772\"* it|strong=\"H3947\"* apart, that|strong=\"H5971\"* I|strong=\"H3772\"* might|strong=\"H5971\"* break|strong=\"H6565\"* my|strong=\"H3605\"* covenant|strong=\"H1285\"* that|strong=\"H5971\"* I|strong=\"H3772\"* had|strong=\"H5971\"* made|strong=\"H3772\"* with|strong=\"H1285\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*." + }, + { + "verseNum": 11, + "text": "It|strong=\"H1931\"* was|strong=\"H3068\"* broken|strong=\"H6565\"* in|strong=\"H3068\"* that|strong=\"H3588\"* day|strong=\"H3117\"*; and|strong=\"H3068\"* thus|strong=\"H3651\"* the|strong=\"H3588\"* poor|strong=\"H6041\"* of|strong=\"H3068\"* the|strong=\"H3588\"* flock|strong=\"H6629\"* that|strong=\"H3588\"* listened to|strong=\"H3068\"* me|strong=\"H8104\"* knew|strong=\"H3045\"* that|strong=\"H3588\"* it|strong=\"H1931\"* was|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"*." + }, + { + "verseNum": 12, + "text": "I|strong=\"H3808\"* said to|strong=\"H5869\"* them, “If you|strong=\"H3808\"* think|strong=\"H5869\"* it|strong=\"H3808\"* best|strong=\"H2896\"*, give|strong=\"H3051\"* me|strong=\"H3051\"* my|strong=\"H2308\"* wages|strong=\"H7939\"*; and|strong=\"H3701\"* if not|strong=\"H3808\"*, keep them.” So|strong=\"H3808\"* they|strong=\"H3808\"* weighed|strong=\"H8254\"* for|strong=\"H5869\"* my|strong=\"H2308\"* wages|strong=\"H7939\"* thirty|strong=\"H7970\"* pieces of|strong=\"H5869\"* silver|strong=\"H3701\"*." + }, + { + "verseNum": 13, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H5921\"*, “Throw|strong=\"H7993\"* it|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* potter|strong=\"H3335\"*—the|strong=\"H5921\"* handsome price|strong=\"H3701\"* that|strong=\"H3068\"* I|strong=\"H5921\"* was|strong=\"H3068\"* valued|strong=\"H3365\"* at|strong=\"H5921\"* by|strong=\"H5921\"* them|strong=\"H5921\"*!” I|strong=\"H5921\"* took|strong=\"H3947\"* the|strong=\"H5921\"* thirty|strong=\"H7970\"* pieces of|strong=\"H1004\"* silver|strong=\"H3701\"* and|strong=\"H3068\"* threw|strong=\"H7993\"* them|strong=\"H5921\"* to|strong=\"H3068\"* the|strong=\"H5921\"* potter|strong=\"H3335\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"*." + }, + { + "verseNum": 14, + "text": "Then|strong=\"H3063\"* I|strong=\"H3478\"* cut|strong=\"H1438\"* apart my|strong=\"H6565\"* other|strong=\"H8145\"* staff|strong=\"H4731\"*, Union, that|strong=\"H3478\"* I|strong=\"H3478\"* might|strong=\"H3478\"* break|strong=\"H6565\"* the|strong=\"H6565\"* brotherhood between Judah|strong=\"H3063\"* and|strong=\"H3063\"* Israel|strong=\"H3478\"*." + }, + { + "verseNum": 15, + "text": "Yahweh|strong=\"H3068\"* said to|strong=\"H3068\"* me|strong=\"H3947\"*, “Take|strong=\"H3947\"* for|strong=\"H3068\"* yourself yet|strong=\"H5750\"* again|strong=\"H5750\"* the|strong=\"H3947\"* equipment|strong=\"H3627\"* of|strong=\"H3068\"* a|strong=\"H3068\"* foolish shepherd|strong=\"H7462\"*." + }, + { + "verseNum": 16, + "text": "For|strong=\"H3588\"*, behold|strong=\"H2009\"*, I|strong=\"H3588\"* will|strong=\"H1320\"* raise|strong=\"H6965\"* up|strong=\"H6965\"* a|strong=\"H3068\"* shepherd|strong=\"H7462\"* in|strong=\"H1320\"* the|strong=\"H3588\"* land who|strong=\"H3588\"* will|strong=\"H1320\"* not|strong=\"H3808\"* visit|strong=\"H6485\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H1245\"* cut|strong=\"H3582\"* off|strong=\"H3582\"*, neither|strong=\"H3808\"* will|strong=\"H1320\"* seek|strong=\"H1245\"* those|strong=\"H3588\"* who|strong=\"H3588\"* are|strong=\"H1245\"* scattered|strong=\"H5289\"*, nor|strong=\"H3808\"* heal|strong=\"H7495\"* that|strong=\"H3588\"* which|strong=\"H6485\"* is|strong=\"H2009\"* broken|strong=\"H7665\"*, nor|strong=\"H3808\"* feed|strong=\"H7462\"* that|strong=\"H3588\"* which|strong=\"H6485\"* is|strong=\"H2009\"* sound; but|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H1320\"* eat|strong=\"H7462\"* the|strong=\"H3588\"* meat|strong=\"H1320\"* of|strong=\"H1320\"* the|strong=\"H3588\"* fat|strong=\"H1277\"* sheep|strong=\"H6561\"*, and|strong=\"H6965\"* will|strong=\"H1320\"* tear|strong=\"H6561\"* their|strong=\"H1245\"* hoofs|strong=\"H6541\"* in|strong=\"H1320\"* pieces|strong=\"H7665\"*." + }, + { + "verseNum": 17, + "text": "Woe|strong=\"H1945\"* to|strong=\"H5921\"* the|strong=\"H5921\"* worthless shepherd|strong=\"H7473\"* who|strong=\"H1945\"* leaves|strong=\"H5800\"* the|strong=\"H5921\"* flock|strong=\"H6629\"*! The|strong=\"H5921\"* sword|strong=\"H2719\"* will|strong=\"H5869\"* strike his|strong=\"H5921\"* arm|strong=\"H2220\"* and|strong=\"H5869\"* his|strong=\"H5921\"* right|strong=\"H3225\"* eye|strong=\"H5869\"*. His|strong=\"H5921\"* arm|strong=\"H2220\"* will|strong=\"H5869\"* be|strong=\"H5869\"* completely|strong=\"H3001\"* withered|strong=\"H3001\"*, and|strong=\"H5869\"* his|strong=\"H5921\"* right|strong=\"H3225\"* eye|strong=\"H5869\"* will|strong=\"H5869\"* be|strong=\"H5869\"* totally|strong=\"H3001\"* blinded!”" + } + ] + }, + { + "chapterNum": 12, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation of|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s word|strong=\"H1697\"* concerning|strong=\"H5921\"* Israel|strong=\"H3478\"*: Yahweh|strong=\"H3068\"*, who|strong=\"H3068\"* stretches|strong=\"H5186\"* out|strong=\"H5186\"* the|strong=\"H5002\"* heavens|strong=\"H8064\"* and|strong=\"H3478\"* lays|strong=\"H3245\"* the|strong=\"H5002\"* foundation|strong=\"H3245\"* of|strong=\"H3068\"* the|strong=\"H5002\"* earth|strong=\"H8064\"*, and|strong=\"H3478\"* forms|strong=\"H3335\"* the|strong=\"H5002\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* man within|strong=\"H7130\"* him|strong=\"H5921\"* says|strong=\"H5002\"*:" + }, + { + "verseNum": 2, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2009\"* will|strong=\"H1961\"* make|strong=\"H7760\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* cup|strong=\"H5592\"* of|strong=\"H5971\"* reeling|strong=\"H7478\"* to|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* peoples|strong=\"H5971\"*, and|strong=\"H3063\"* it|strong=\"H7760\"* will|strong=\"H1961\"* also|strong=\"H1571\"* be|strong=\"H1961\"* on|strong=\"H5921\"* Judah|strong=\"H3063\"* in|strong=\"H5921\"* the|strong=\"H3605\"* siege|strong=\"H4692\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 3, + "text": "It|strong=\"H7760\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"* that|strong=\"H5971\"* I|strong=\"H3117\"* will|strong=\"H1961\"* make|strong=\"H7760\"* Jerusalem|strong=\"H3389\"* a|strong=\"H3068\"* burdensome|strong=\"H6006\"* stone for|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"*. All|strong=\"H3605\"* who|strong=\"H3605\"* burden|strong=\"H6006\"* themselves|strong=\"H7760\"* with|strong=\"H5921\"* it|strong=\"H7760\"* will|strong=\"H1961\"* be|strong=\"H1961\"* severely|strong=\"H8295\"* wounded, and|strong=\"H3117\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* of|strong=\"H3117\"* the|strong=\"H3605\"* earth will|strong=\"H1961\"* be|strong=\"H1961\"* gathered|strong=\"H1471\"* together|strong=\"H5921\"* against|strong=\"H5921\"* it|strong=\"H7760\"*." + }, + { + "verseNum": 4, + "text": "In|strong=\"H5921\"* that|strong=\"H5971\"* day|strong=\"H3117\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*, “I|strong=\"H3117\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* horse|strong=\"H5483\"* with|strong=\"H1004\"* terror and|strong=\"H3063\"* his|strong=\"H3605\"* rider|strong=\"H7392\"* with|strong=\"H1004\"* madness|strong=\"H7697\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* open|strong=\"H6491\"* my|strong=\"H3605\"* eyes|strong=\"H5869\"* on|strong=\"H5921\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Judah|strong=\"H3063\"*, and|strong=\"H3063\"* will|strong=\"H3068\"* strike|strong=\"H5221\"* every|strong=\"H3605\"* horse|strong=\"H5483\"* of|strong=\"H1004\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* with|strong=\"H1004\"* blindness|strong=\"H5788\"*." + }, + { + "verseNum": 5, + "text": "The|strong=\"H3068\"* chieftains of|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* say in|strong=\"H3427\"* their|strong=\"H3068\"* heart|strong=\"H3820\"*, ‘The|strong=\"H3068\"* inhabitants|strong=\"H3427\"* of|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* are|strong=\"H3068\"* my|strong=\"H3068\"* strength in|strong=\"H3427\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* their|strong=\"H3068\"* God|strong=\"H3068\"*.’" + }, + { + "verseNum": 6, + "text": "In|strong=\"H3427\"* that|strong=\"H5971\"* day|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H5971\"* make|strong=\"H7760\"* the|strong=\"H3605\"* chieftains of|strong=\"H3117\"* Judah|strong=\"H3063\"* like|strong=\"H5921\"* a|strong=\"H3068\"* pan|strong=\"H3595\"* of|strong=\"H3117\"* fire among|strong=\"H5921\"* wood|strong=\"H6086\"*, and|strong=\"H3063\"* like|strong=\"H5921\"* a|strong=\"H3068\"* flaming torch|strong=\"H3940\"* among|strong=\"H5921\"* sheaves|strong=\"H5995\"*. They|strong=\"H3117\"* will|strong=\"H5971\"* devour all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* peoples|strong=\"H5971\"* on|strong=\"H5921\"* the|strong=\"H3605\"* right|strong=\"H3225\"* hand|strong=\"H3225\"* and|strong=\"H3063\"* on|strong=\"H5921\"* the|strong=\"H3605\"* left|strong=\"H8040\"*; and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* will|strong=\"H5971\"* yet|strong=\"H5750\"* again|strong=\"H5750\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* their|strong=\"H3605\"* own|strong=\"H5971\"* place|strong=\"H8478\"*, even|strong=\"H5750\"* in|strong=\"H3427\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 7, + "text": "Yahweh|strong=\"H3068\"* also|strong=\"H3068\"* will|strong=\"H3068\"* save|strong=\"H3467\"* the|strong=\"H5921\"* tents of|strong=\"H1004\"* Judah|strong=\"H3063\"* first|strong=\"H7223\"*, that|strong=\"H3068\"* the|strong=\"H5921\"* glory|strong=\"H8597\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H3063\"* the|strong=\"H5921\"* glory|strong=\"H8597\"* of|strong=\"H1004\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* not|strong=\"H3808\"* be|strong=\"H3808\"* magnified|strong=\"H1431\"* above|strong=\"H5921\"* Judah|strong=\"H3063\"*." + }, + { + "verseNum": 8, + "text": "In|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* defend|strong=\"H1598\"* the|strong=\"H6440\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*. He|strong=\"H1931\"* who|strong=\"H1931\"* is|strong=\"H3068\"* feeble|strong=\"H3782\"* among|strong=\"H3427\"* them|strong=\"H6440\"* at|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* David|strong=\"H1732\"*, and|strong=\"H3068\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* God|strong=\"H3068\"*, like|strong=\"H1961\"* Yahweh|strong=\"H3068\"*’s angel|strong=\"H4397\"* before|strong=\"H6440\"* them|strong=\"H6440\"*." + }, + { + "verseNum": 9, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"*, that|strong=\"H3605\"* I|strong=\"H3117\"* will|strong=\"H1961\"* seek|strong=\"H1245\"* to|strong=\"H1961\"* destroy|strong=\"H8045\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* come|strong=\"H1961\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*." + }, + { + "verseNum": 10, + "text": "I|strong=\"H5921\"* will|strong=\"H1004\"* pour|strong=\"H8210\"* on|strong=\"H5921\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H1004\"* on|strong=\"H5921\"* the|strong=\"H5921\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"* the|strong=\"H5921\"* spirit|strong=\"H7307\"* of|strong=\"H1004\"* grace|strong=\"H2580\"* and|strong=\"H1004\"* of|strong=\"H1004\"* supplication|strong=\"H8469\"*. They|strong=\"H5921\"* will|strong=\"H1004\"* look|strong=\"H5027\"* to|strong=\"H5921\"* me|strong=\"H5921\"*+ 12:10 After “me”, the Hebrew has the two letters “Aleph Tav” (the first and last letters of the Hebrew alphabet), not as a word, but as a grammatical marker.* whom they|strong=\"H5921\"* have|strong=\"H3389\"* pierced|strong=\"H1856\"*; and|strong=\"H1004\"* they|strong=\"H5921\"* shall|strong=\"H1004\"* mourn|strong=\"H5594\"* for|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3389\"* one|strong=\"H3173\"* mourns|strong=\"H5594\"* for|strong=\"H5921\"* his|strong=\"H1732\"* only|strong=\"H3173\"* son|strong=\"H3173\"*, and|strong=\"H1004\"* will|strong=\"H1004\"* grieve bitterly|strong=\"H4843\"* for|strong=\"H5921\"* him|strong=\"H5921\"* as|strong=\"H3389\"* one|strong=\"H3173\"* grieves for|strong=\"H5921\"* his|strong=\"H1732\"* firstborn|strong=\"H1060\"*." + }, + { + "verseNum": 11, + "text": "In|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H3117\"* will|strong=\"H3389\"* be|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H1431\"* mourning|strong=\"H4553\"* in|strong=\"H3117\"* Jerusalem|strong=\"H3389\"*, like|strong=\"H3117\"* the|strong=\"H3117\"* mourning|strong=\"H4553\"* of|strong=\"H3117\"* Hadadrimmon|strong=\"H1910\"* in|strong=\"H3117\"* the|strong=\"H3117\"* valley|strong=\"H1237\"* of|strong=\"H3117\"* Megiddo|strong=\"H4023\"*." + }, + { + "verseNum": 12, + "text": "The|strong=\"H1732\"* land|strong=\"H4940\"* will|strong=\"H1004\"* mourn|strong=\"H5594\"*, every|strong=\"H4940\"* family|strong=\"H4940\"* apart; the|strong=\"H1732\"* family|strong=\"H4940\"* of|strong=\"H1004\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* apart, and|strong=\"H1004\"* their|strong=\"H1732\"* wives apart; the|strong=\"H1732\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1732\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Nathan|strong=\"H5416\"* apart, and|strong=\"H1004\"* their|strong=\"H1732\"* wives apart;" + }, + { + "verseNum": 13, + "text": "the|strong=\"H1004\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1004\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Levi|strong=\"H3878\"* apart, and|strong=\"H1004\"* their wives apart; the|strong=\"H1004\"* family|strong=\"H4940\"* of|strong=\"H1004\"* the|strong=\"H1004\"* Shimeites|strong=\"H8097\"* apart, and|strong=\"H1004\"* their wives apart;" + }, + { + "verseNum": 14, + "text": "all|strong=\"H3605\"* the|strong=\"H3605\"* families|strong=\"H4940\"* who|strong=\"H3605\"* remain|strong=\"H7604\"*, every|strong=\"H3605\"* family|strong=\"H4940\"* apart, and|strong=\"H3605\"* their|strong=\"H3605\"* wives apart." + } + ] + }, + { + "chapterNum": 13, + "verses": [ + { + "verseNum": 1, + "text": "“In|strong=\"H3427\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* a|strong=\"H3068\"* fountain|strong=\"H4726\"* opened|strong=\"H6605\"* to|strong=\"H1961\"* David|strong=\"H1732\"*’s house|strong=\"H1004\"* and|strong=\"H3117\"* to|strong=\"H1961\"* the|strong=\"H3117\"* inhabitants|strong=\"H3427\"* of|strong=\"H1004\"* Jerusalem|strong=\"H3389\"*, for|strong=\"H3427\"* sin|strong=\"H2403\"* and|strong=\"H3117\"* for|strong=\"H3427\"* uncleanness|strong=\"H5079\"*." + }, + { + "verseNum": 2, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* in|strong=\"H3068\"* that|strong=\"H3117\"* day|strong=\"H3117\"*, says|strong=\"H5002\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, that|strong=\"H3117\"* I|strong=\"H3117\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H5002\"* names|strong=\"H8034\"* of|strong=\"H3068\"* the|strong=\"H5002\"* idols|strong=\"H6091\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land, and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* be|strong=\"H1961\"* remembered|strong=\"H2142\"* no|strong=\"H3808\"* more|strong=\"H4480\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* also|strong=\"H1571\"* cause|strong=\"H1961\"* the|strong=\"H5002\"* prophets|strong=\"H5030\"* and|strong=\"H3068\"* the|strong=\"H5002\"* spirit|strong=\"H7307\"* of|strong=\"H3068\"* impurity|strong=\"H2932\"* to|strong=\"H3068\"* pass|strong=\"H5674\"* out|strong=\"H4480\"* of|strong=\"H3068\"* the|strong=\"H5002\"* land." + }, + { + "verseNum": 3, + "text": "It|strong=\"H3588\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3588\"* when|strong=\"H3588\"* anyone|strong=\"H3588\"* still|strong=\"H5750\"* prophesies|strong=\"H5012\"*, then|strong=\"H1961\"* his|strong=\"H3068\"* father|strong=\"H3205\"* and|strong=\"H3068\"* his|strong=\"H3068\"* mother who|strong=\"H3068\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* will|strong=\"H3068\"* tell|strong=\"H1696\"* him|strong=\"H3205\"*, ‘You|strong=\"H3588\"* must|strong=\"H3808\"* die, because|strong=\"H3588\"* you|strong=\"H3588\"* speak|strong=\"H1696\"* lies|strong=\"H8267\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s name|strong=\"H8034\"*;’ and|strong=\"H3068\"* his|strong=\"H3068\"* father|strong=\"H3205\"* and|strong=\"H3068\"* his|strong=\"H3068\"* mother who|strong=\"H3068\"* bore|strong=\"H3205\"* him|strong=\"H3205\"* will|strong=\"H3068\"* stab|strong=\"H1856\"* him|strong=\"H3205\"* when|strong=\"H3588\"* he|strong=\"H3588\"* prophesies|strong=\"H5012\"*." + }, + { + "verseNum": 4, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* the|strong=\"H3117\"* prophets|strong=\"H5030\"* will|strong=\"H1961\"* each|strong=\"H3117\"* be|strong=\"H1961\"* ashamed of|strong=\"H3117\"* his|strong=\"H1961\"* vision|strong=\"H2384\"* when|strong=\"H1961\"* he|strong=\"H1931\"* prophesies|strong=\"H5012\"*; they|strong=\"H3117\"* won’t wear|strong=\"H3847\"* a|strong=\"H3068\"* hairy|strong=\"H8181\"* mantle to|strong=\"H1961\"* deceive|strong=\"H3584\"*," + }, + { + "verseNum": 5, + "text": "but|strong=\"H3588\"* he|strong=\"H3588\"* will|strong=\"H3808\"* say, ‘I|strong=\"H3588\"* am no|strong=\"H3808\"* prophet|strong=\"H5030\"*, I|strong=\"H3588\"* am a|strong=\"H3068\"* tiller|strong=\"H5647\"* of|strong=\"H5030\"* the|strong=\"H3588\"* ground; for|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H5030\"* been|strong=\"H5647\"* made|strong=\"H5647\"* a|strong=\"H3068\"* bondservant from|strong=\"H5030\"* my|strong=\"H3588\"* youth|strong=\"H5271\"*.’" + }, + { + "verseNum": 6, + "text": "One|strong=\"H3027\"* will|strong=\"H1004\"* say to|strong=\"H3027\"* him|strong=\"H5221\"*, ‘What|strong=\"H4100\"* are|strong=\"H3027\"* these|strong=\"H5221\"* wounds|strong=\"H4347\"* between your|strong=\"H5221\"* arms|strong=\"H3027\"*?’ Then|strong=\"H4100\"* he|strong=\"H1004\"* will|strong=\"H1004\"* answer, ‘Those with|strong=\"H1004\"* which|strong=\"H1004\"* I|strong=\"H4100\"* was|strong=\"H1004\"* wounded|strong=\"H5221\"* in|strong=\"H1004\"* the|strong=\"H5221\"* house|strong=\"H1004\"* of|strong=\"H1004\"* my|strong=\"H3027\"* friends.’" + }, + { + "verseNum": 7, + "text": "“Awake|strong=\"H5782\"*, sword|strong=\"H2719\"*, against|strong=\"H5921\"* my|strong=\"H3068\"* shepherd|strong=\"H7462\"*," + }, + { + "verseNum": 8, + "text": "It|strong=\"H1961\"* shall|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* in|strong=\"H3068\"* all|strong=\"H3605\"* the|strong=\"H3605\"* land,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*," + }, + { + "verseNum": 9, + "text": "I|strong=\"H3068\"* will|strong=\"H3068\"* bring|strong=\"H7121\"* the|strong=\"H3068\"* third|strong=\"H7992\"* part|strong=\"H7992\"* into|strong=\"H3701\"* the|strong=\"H3068\"* fire," + } + ] + }, + { + "chapterNum": 14, + "verses": [ + { + "verseNum": 1, + "text": "Behold|strong=\"H2009\"*, a|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* comes|strong=\"H3117\"*, when|strong=\"H3117\"* your|strong=\"H3068\"* plunder|strong=\"H7998\"* will|strong=\"H3068\"* be|strong=\"H3068\"* divided|strong=\"H2505\"* within|strong=\"H7130\"* you|strong=\"H3117\"*." + }, + { + "verseNum": 2, + "text": "For|strong=\"H1004\"* I|strong=\"H3808\"* will|strong=\"H1471\"* gather all|strong=\"H3605\"* nations|strong=\"H1471\"* against|strong=\"H4480\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3318\"* battle|strong=\"H4421\"*; and|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* will|strong=\"H1471\"* be|strong=\"H3808\"* taken|strong=\"H3920\"*, the|strong=\"H3605\"* houses|strong=\"H1004\"* rifled|strong=\"H8155\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* women ravished|strong=\"H7693\"*. Half|strong=\"H2677\"* of|strong=\"H1004\"* the|strong=\"H3605\"* city|strong=\"H5892\"* will|strong=\"H1471\"* go|strong=\"H3318\"* out|strong=\"H3318\"* into|strong=\"H3318\"* captivity|strong=\"H1473\"*, and|strong=\"H1004\"* the|strong=\"H3605\"* rest|strong=\"H3499\"* of|strong=\"H1004\"* the|strong=\"H3605\"* people|strong=\"H5971\"* will|strong=\"H1471\"* not|strong=\"H3808\"* be|strong=\"H3808\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* from|strong=\"H4480\"* the|strong=\"H3605\"* city|strong=\"H5892\"*." + }, + { + "verseNum": 3, + "text": "Then|strong=\"H3318\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* go|strong=\"H3318\"* out|strong=\"H3318\"* and|strong=\"H3068\"* fight|strong=\"H3898\"* against|strong=\"H3898\"* those|strong=\"H1992\"* nations|strong=\"H1471\"*, as|strong=\"H3117\"* when|strong=\"H3117\"* he|strong=\"H3117\"* fought|strong=\"H3898\"* in|strong=\"H3068\"* the|strong=\"H3068\"* day|strong=\"H3117\"* of|strong=\"H3068\"* battle|strong=\"H7128\"*." + }, + { + "verseNum": 4, + "text": "His|strong=\"H6440\"* feet|strong=\"H7272\"* will|strong=\"H3389\"* stand|strong=\"H5975\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* on|strong=\"H5921\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3117\"* Olives|strong=\"H2132\"*, which|strong=\"H1931\"* is|strong=\"H1931\"* before|strong=\"H6440\"* Jerusalem|strong=\"H3389\"* on|strong=\"H5921\"* the|strong=\"H6440\"* east|strong=\"H4217\"*; and|strong=\"H3117\"* the|strong=\"H6440\"* Mount|strong=\"H2022\"* of|strong=\"H3117\"* Olives|strong=\"H2132\"* will|strong=\"H3389\"* be|strong=\"H3117\"* split|strong=\"H1234\"* in|strong=\"H5921\"* two|strong=\"H3220\"* from|strong=\"H6440\"* east|strong=\"H4217\"* to|strong=\"H5921\"* west|strong=\"H3220\"*, making a|strong=\"H3068\"* very|strong=\"H3966\"* great|strong=\"H1419\"* valley|strong=\"H1516\"*. Half|strong=\"H2677\"* of|strong=\"H3117\"* the|strong=\"H6440\"* mountain|strong=\"H2022\"* will|strong=\"H3389\"* move|strong=\"H4185\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* north|strong=\"H6828\"*, and|strong=\"H3117\"* half|strong=\"H2677\"* of|strong=\"H3117\"* it|strong=\"H1931\"* toward|strong=\"H5921\"* the|strong=\"H6440\"* south|strong=\"H5045\"*." + }, + { + "verseNum": 5, + "text": "You|strong=\"H3588\"* shall|strong=\"H3068\"* flee|strong=\"H5127\"* by|strong=\"H3117\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H4428\"* my|strong=\"H3605\"* mountains|strong=\"H2022\"*, for|strong=\"H3588\"* the|strong=\"H3605\"* valley|strong=\"H1516\"* of|strong=\"H4428\"* the|strong=\"H3605\"* mountains|strong=\"H2022\"* shall|strong=\"H3068\"* reach|strong=\"H5060\"* to|strong=\"H3068\"* Azel. Yes|strong=\"H3588\"*, you|strong=\"H3588\"* shall|strong=\"H3068\"* flee|strong=\"H5127\"*, just|strong=\"H3605\"* like|strong=\"H5973\"* you|strong=\"H3588\"* fled|strong=\"H5127\"* from|strong=\"H6440\"* before|strong=\"H6440\"* the|strong=\"H3605\"* earthquake|strong=\"H7494\"* in|strong=\"H3068\"* the|strong=\"H3605\"* days|strong=\"H3117\"* of|strong=\"H4428\"* Uzziah|strong=\"H5818\"* king|strong=\"H4428\"* of|strong=\"H4428\"* Judah|strong=\"H3063\"*. Yahweh|strong=\"H3068\"* my|strong=\"H3605\"* God|strong=\"H3068\"* will|strong=\"H3068\"* come|strong=\"H5060\"*, and|strong=\"H3063\"* all|strong=\"H3605\"* the|strong=\"H3605\"* holy|strong=\"H6918\"* ones|strong=\"H6918\"* with|strong=\"H5973\"* you|strong=\"H3588\"*.+ 14:5 Septuagint reads “him” instead of “you”.*" + }, + { + "verseNum": 6, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H1961\"* not|strong=\"H3808\"* be|strong=\"H1961\"* light, cold, or|strong=\"H3808\"* frost." + }, + { + "verseNum": 7, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* unique day|strong=\"H3117\"* which|strong=\"H1931\"* is|strong=\"H3068\"* known|strong=\"H3045\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"*—not|strong=\"H3808\"* day|strong=\"H3117\"*, and|strong=\"H3068\"* not|strong=\"H3808\"* night|strong=\"H3915\"*; but|strong=\"H3808\"* it|strong=\"H1931\"* will|strong=\"H3068\"* come|strong=\"H1961\"* to|strong=\"H3068\"* pass|strong=\"H1961\"* that|strong=\"H3045\"* at|strong=\"H3068\"* evening|strong=\"H6153\"* time|strong=\"H6256\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* light." + }, + { + "verseNum": 8, + "text": "It|strong=\"H1931\"* will|strong=\"H1961\"* happen|strong=\"H1961\"* in|strong=\"H3117\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* living|strong=\"H2416\"* waters|strong=\"H4325\"* will|strong=\"H1961\"* go|strong=\"H3318\"* out|strong=\"H3318\"* from|strong=\"H3318\"* Jerusalem|strong=\"H3389\"*, half|strong=\"H2677\"* of|strong=\"H3117\"* them|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3117\"* eastern|strong=\"H6931\"* sea|strong=\"H3220\"*, and|strong=\"H3117\"* half|strong=\"H2677\"* of|strong=\"H3117\"* them|strong=\"H3318\"* toward|strong=\"H3318\"* the|strong=\"H3117\"* western|strong=\"H3220\"* sea|strong=\"H3220\"*. It|strong=\"H1931\"* will|strong=\"H1961\"* be|strong=\"H1961\"* so|strong=\"H1961\"* in|strong=\"H3117\"* summer|strong=\"H7019\"* and|strong=\"H3117\"* in|strong=\"H3117\"* winter|strong=\"H2779\"*." + }, + { + "verseNum": 9, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* King|strong=\"H4428\"* over|strong=\"H5921\"* all|strong=\"H3605\"* the|strong=\"H3605\"* earth. In|strong=\"H5921\"* that|strong=\"H3605\"* day|strong=\"H3117\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* one|strong=\"H3605\"*, and|strong=\"H3068\"* his|strong=\"H3605\"* name|strong=\"H8034\"* one|strong=\"H3605\"*." + }, + { + "verseNum": 10, + "text": "All|strong=\"H3605\"* the|strong=\"H3605\"* land|strong=\"H4725\"* will|strong=\"H4428\"* be|strong=\"H3389\"* made|strong=\"H3605\"* like|strong=\"H5704\"* the|strong=\"H3605\"* Arabah|strong=\"H6160\"*, from|strong=\"H5704\"* Geba|strong=\"H1387\"* to|strong=\"H5704\"* Rimmon|strong=\"H7417\"* south|strong=\"H5045\"* of|strong=\"H4428\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H4428\"* she|strong=\"H5704\"* will|strong=\"H4428\"* be|strong=\"H3389\"* lifted|strong=\"H4428\"* up|strong=\"H5704\"* and|strong=\"H4428\"* will|strong=\"H4428\"* dwell|strong=\"H3427\"* in|strong=\"H3427\"* her|strong=\"H3605\"* place|strong=\"H4725\"*, from|strong=\"H5704\"* Benjamin|strong=\"H1144\"*’s gate|strong=\"H8179\"* to|strong=\"H5704\"* the|strong=\"H3605\"* place|strong=\"H4725\"* of|strong=\"H4428\"* the|strong=\"H3605\"* first|strong=\"H7223\"* gate|strong=\"H8179\"*, to|strong=\"H5704\"* the|strong=\"H3605\"* corner|strong=\"H6434\"* gate|strong=\"H8179\"*, and|strong=\"H4428\"* from|strong=\"H5704\"* the|strong=\"H3605\"* tower|strong=\"H4026\"* of|strong=\"H4428\"* Hananel|strong=\"H2606\"* to|strong=\"H5704\"* the|strong=\"H3605\"* king|strong=\"H4428\"*’s wine|strong=\"H3342\"* presses|strong=\"H3342\"*." + }, + { + "verseNum": 11, + "text": "Men will|strong=\"H1961\"* dwell|strong=\"H3427\"* therein|strong=\"H3427\"*, and|strong=\"H3389\"* there|strong=\"H1961\"* will|strong=\"H1961\"* be|strong=\"H1961\"* no|strong=\"H3808\"* more|strong=\"H5750\"* curse|strong=\"H2764\"*; but|strong=\"H3808\"* Jerusalem|strong=\"H3389\"* will|strong=\"H1961\"* dwell|strong=\"H3427\"* safely." + }, + { + "verseNum": 12, + "text": "This|strong=\"H2063\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H3605\"* plague|strong=\"H4046\"* with|strong=\"H3068\"* which|strong=\"H1931\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* all|strong=\"H3605\"* the|strong=\"H3605\"* peoples|strong=\"H5971\"* who|strong=\"H3605\"* have|strong=\"H1961\"* fought|strong=\"H6633\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"*: their|strong=\"H3605\"* flesh|strong=\"H1320\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* while|strong=\"H1961\"* they|strong=\"H3068\"* stand|strong=\"H5975\"* on|strong=\"H5921\"* their|strong=\"H3605\"* feet|strong=\"H7272\"*, and|strong=\"H3068\"* their|strong=\"H3605\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* in|strong=\"H5921\"* their|strong=\"H3605\"* sockets|strong=\"H2356\"*, and|strong=\"H3068\"* their|strong=\"H3605\"* tongue|strong=\"H3956\"* will|strong=\"H3068\"* consume away|strong=\"H4743\"* in|strong=\"H5921\"* their|strong=\"H3605\"* mouth|strong=\"H6310\"*." + }, + { + "verseNum": 13, + "text": "It|strong=\"H1931\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* in|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* that|strong=\"H3117\"* a|strong=\"H3068\"* great|strong=\"H7227\"* panic|strong=\"H4103\"* from|strong=\"H5921\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* among|strong=\"H5921\"* them|strong=\"H5921\"*; and|strong=\"H3068\"* they|strong=\"H3117\"* will|strong=\"H3068\"* each|strong=\"H3117\"* seize|strong=\"H2388\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*, and|strong=\"H3068\"* his|strong=\"H3068\"* hand|strong=\"H3027\"* will|strong=\"H3068\"* rise|strong=\"H5927\"* up|strong=\"H5927\"* against|strong=\"H5921\"* the|strong=\"H5921\"* hand|strong=\"H3027\"* of|strong=\"H3068\"* his|strong=\"H3068\"* neighbor|strong=\"H7453\"*." + }, + { + "verseNum": 14, + "text": "Judah|strong=\"H3063\"* also|strong=\"H1571\"* will|strong=\"H1471\"* fight|strong=\"H3898\"* at|strong=\"H3898\"* Jerusalem|strong=\"H3389\"*; and|strong=\"H3063\"* the|strong=\"H3605\"* wealth|strong=\"H2428\"* of|strong=\"H7230\"* all|strong=\"H3605\"* the|strong=\"H3605\"* surrounding|strong=\"H5439\"* nations|strong=\"H1471\"* will|strong=\"H1471\"* be|strong=\"H1571\"* gathered|strong=\"H1471\"* together|strong=\"H1571\"*: gold|strong=\"H2091\"*, silver|strong=\"H3701\"*, and|strong=\"H3063\"* clothing, in|strong=\"H3063\"* great|strong=\"H3966\"* abundance|strong=\"H7230\"*." + }, + { + "verseNum": 15, + "text": "A|strong=\"H3068\"* plague|strong=\"H4046\"* like|strong=\"H1961\"* this|strong=\"H2063\"* will|strong=\"H1961\"* fall|strong=\"H1961\"* on|strong=\"H1961\"* the|strong=\"H3605\"* horse|strong=\"H5483\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* mule|strong=\"H6505\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* camel|strong=\"H1581\"*, on|strong=\"H1961\"* the|strong=\"H3605\"* donkey|strong=\"H2543\"*, and|strong=\"H5483\"* on|strong=\"H1961\"* all|strong=\"H3605\"* the|strong=\"H3605\"* animals|strong=\"H1961\"* that|strong=\"H3605\"* will|strong=\"H1961\"* be|strong=\"H1961\"* in|strong=\"H1961\"* those|strong=\"H1992\"* camps|strong=\"H4264\"*." + }, + { + "verseNum": 16, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* happen|strong=\"H1961\"* that|strong=\"H3605\"* everyone|strong=\"H3605\"* who|strong=\"H3605\"* is|strong=\"H3068\"* left|strong=\"H3498\"* of|strong=\"H4428\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* came|strong=\"H1961\"* against|strong=\"H5921\"* Jerusalem|strong=\"H3389\"* will|strong=\"H3068\"* go|strong=\"H5927\"* up|strong=\"H5927\"* from|strong=\"H5921\"* year|strong=\"H8141\"* to|strong=\"H3068\"* year|strong=\"H8141\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H3605\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, and|strong=\"H3068\"* to|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H4428\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 17, + "text": "It|strong=\"H5921\"* will|strong=\"H3068\"* be|strong=\"H1961\"* that|strong=\"H3068\"* whoever of|strong=\"H4428\"* all|strong=\"H5921\"* the|strong=\"H5921\"* families|strong=\"H4940\"* of|strong=\"H4428\"* the|strong=\"H5921\"* earth|strong=\"H5927\"* doesn’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* to|strong=\"H3068\"* worship|strong=\"H7812\"* the|strong=\"H5921\"* King|strong=\"H4428\"*, Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, on|strong=\"H5921\"* them|strong=\"H5921\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* no|strong=\"H3808\"* rain|strong=\"H1653\"*." + }, + { + "verseNum": 18, + "text": "If|strong=\"H1961\"* the|strong=\"H5921\"* family|strong=\"H4940\"* of|strong=\"H3068\"* Egypt|strong=\"H4714\"* doesn’t go|strong=\"H5927\"* up|strong=\"H5927\"* and|strong=\"H3068\"* doesn’t come|strong=\"H5927\"*, neither|strong=\"H3808\"* will|strong=\"H3068\"* it|strong=\"H5921\"* rain on|strong=\"H5921\"* them|strong=\"H5921\"*. This|strong=\"H3068\"* will|strong=\"H3068\"* be|strong=\"H1961\"* the|strong=\"H5921\"* plague|strong=\"H4046\"* with|strong=\"H3068\"* which|strong=\"H3068\"* Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* strike|strong=\"H5062\"* the|strong=\"H5921\"* nations|strong=\"H1471\"* that|strong=\"H3068\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H3068\"* keep|strong=\"H2287\"* the|strong=\"H5921\"* feast|strong=\"H2282\"* of|strong=\"H3068\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 19, + "text": "This|strong=\"H2063\"* will|strong=\"H1961\"* be|strong=\"H1961\"* the|strong=\"H3605\"* punishment|strong=\"H2403\"* of|strong=\"H2282\"* Egypt|strong=\"H4714\"* and|strong=\"H4714\"* the|strong=\"H3605\"* punishment|strong=\"H2403\"* of|strong=\"H2282\"* all|strong=\"H3605\"* the|strong=\"H3605\"* nations|strong=\"H1471\"* that|strong=\"H3605\"* don’t go|strong=\"H5927\"* up|strong=\"H5927\"* to|strong=\"H5927\"* keep|strong=\"H2287\"* the|strong=\"H3605\"* feast|strong=\"H2282\"* of|strong=\"H2282\"* booths|strong=\"H5521\"*." + }, + { + "verseNum": 20, + "text": "In|strong=\"H5921\"* that|strong=\"H3117\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* be|strong=\"H1961\"* inscribed on|strong=\"H5921\"* the|strong=\"H6440\"* bells|strong=\"H4698\"* of|strong=\"H1004\"* the|strong=\"H6440\"* horses|strong=\"H5483\"*, “HOLY|strong=\"H6944\"* TO|strong=\"H3068\"* YAHWEH|strong=\"H3068\"*”; and|strong=\"H3068\"* the|strong=\"H6440\"* pots|strong=\"H5518\"* in|strong=\"H5921\"* Yahweh|strong=\"H3068\"*’s house|strong=\"H1004\"* will|strong=\"H3068\"* be|strong=\"H1961\"* like|strong=\"H1961\"* the|strong=\"H6440\"* bowls|strong=\"H4219\"* before|strong=\"H6440\"* the|strong=\"H6440\"* altar|strong=\"H4196\"*." + }, + { + "verseNum": 21, + "text": "Yes, every|strong=\"H3605\"* pot|strong=\"H5518\"* in|strong=\"H3068\"* Jerusalem|strong=\"H3389\"* and|strong=\"H3063\"* in|strong=\"H3068\"* Judah|strong=\"H3063\"* will|strong=\"H3068\"* be|strong=\"H1961\"* holy|strong=\"H6944\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*; and|strong=\"H3063\"* all|strong=\"H3605\"* those|strong=\"H1992\"* who|strong=\"H3605\"* sacrifice|strong=\"H2076\"* will|strong=\"H3068\"* come|strong=\"H1961\"* and|strong=\"H3063\"* take|strong=\"H3947\"* of|strong=\"H1004\"* them|strong=\"H1992\"*, and|strong=\"H3063\"* cook|strong=\"H1310\"* in|strong=\"H3068\"* them|strong=\"H1992\"*. In|strong=\"H3068\"* that|strong=\"H3605\"* day|strong=\"H3117\"* there|strong=\"H1961\"* will|strong=\"H3068\"* no|strong=\"H3808\"* longer|strong=\"H5750\"* be|strong=\"H1961\"* a|strong=\"H3068\"* Canaanite|strong=\"H3669\"*+ 14:21 or, merchant* in|strong=\"H3068\"* the|strong=\"H3605\"* house|strong=\"H1004\"* of|strong=\"H1004\"* Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*." + } + ] + } + ] + }, + { + "name": "Malachi", + "chapters": [ + { + "chapterNum": 1, + "verses": [ + { + "verseNum": 1, + "text": "A|strong=\"H3068\"* revelation, Yahweh|strong=\"H3068\"*’s+ 1:1 “Yahweh” is God’s proper Name, sometimes rendered “LORD” (all caps) in other translations.* word|strong=\"H1697\"* to|strong=\"H3478\"* Israel|strong=\"H3478\"* by|strong=\"H3027\"* Malachi|strong=\"H4401\"*." + }, + { + "verseNum": 2, + "text": "“I|strong=\"H3808\"* have|strong=\"H3068\"* loved you|strong=\"H3808\"*,” says|strong=\"H5002\"* Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 3, + "text": "but Esau|strong=\"H6215\"* I|strong=\"H7760\"* hated|strong=\"H8130\"*, and|strong=\"H2022\"* made|strong=\"H7760\"* his|strong=\"H7760\"* mountains|strong=\"H2022\"* a|strong=\"H3068\"* desolation|strong=\"H8077\"*, and|strong=\"H2022\"* gave|strong=\"H7760\"* his|strong=\"H7760\"* heritage|strong=\"H5159\"* to|strong=\"H5159\"* the|strong=\"H7760\"* jackals of|strong=\"H2022\"* the|strong=\"H7760\"* wilderness|strong=\"H4057\"*.”" + }, + { + "verseNum": 4, + "text": "Whereas|strong=\"H3588\"* Edom says|strong=\"H3541\"*, “We|strong=\"H3588\"* are|strong=\"H1992\"* beaten|strong=\"H7567\"* down|strong=\"H2040\"*, but|strong=\"H3588\"* we|strong=\"H3068\"* will|strong=\"H3068\"* return|strong=\"H7725\"* and|strong=\"H3068\"* build|strong=\"H1129\"* the|strong=\"H3588\"* waste|strong=\"H2723\"* places|strong=\"H2723\"*,” Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"* says|strong=\"H3541\"*, “They|strong=\"H1992\"* shall|strong=\"H3068\"* build|strong=\"H1129\"*, but|strong=\"H3588\"* I|strong=\"H3588\"* will|strong=\"H3068\"* throw down|strong=\"H2040\"*; and|strong=\"H3068\"* men|strong=\"H5971\"* will|strong=\"H3068\"* call|strong=\"H7121\"* them|strong=\"H1992\"* ‘The|strong=\"H3588\"* Wicked Land|strong=\"H1366\"*,’ even|strong=\"H5704\"* the|strong=\"H3588\"* people|strong=\"H5971\"* against|strong=\"H3068\"* whom|strong=\"H1992\"* Yahweh|strong=\"H3068\"* shows wrath forever|strong=\"H5769\"*.”" + }, + { + "verseNum": 5, + "text": "Your|strong=\"H3068\"* eyes|strong=\"H5869\"* will|strong=\"H3068\"* see|strong=\"H7200\"*, and|strong=\"H3478\"* you|strong=\"H5921\"* will|strong=\"H3068\"* say|strong=\"H3478\"*, “Yahweh|strong=\"H3068\"* is|strong=\"H3068\"* great|strong=\"H1431\"*—even|strong=\"H5869\"* beyond|strong=\"H5921\"* the|strong=\"H5921\"* border|strong=\"H1366\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*!”" + }, + { + "verseNum": 6, + "text": "“A|strong=\"H3068\"* son|strong=\"H1121\"* honors|strong=\"H3513\"* his|strong=\"H3068\"* father|strong=\"H1121\"*, and|strong=\"H1121\"* a|strong=\"H3068\"* servant|strong=\"H5650\"* his|strong=\"H3068\"* master. If|strong=\"H1121\"* I|strong=\"H5650\"* am|strong=\"H3068\"* a|strong=\"H3068\"* father|strong=\"H1121\"*, then|strong=\"H4100\"* where|strong=\"H4100\"* is|strong=\"H3068\"* my|strong=\"H3068\"* honor|strong=\"H3519\"*? And|strong=\"H1121\"* if|strong=\"H1121\"* I|strong=\"H5650\"* am|strong=\"H3068\"* a|strong=\"H3068\"* master, where|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3068\"* respect|strong=\"H4172\"* due me|strong=\"H5650\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"* to|strong=\"H3068\"* you|strong=\"H4100\"* priests|strong=\"H3548\"* who|strong=\"H3068\"* despise my|strong=\"H3068\"* name|strong=\"H8034\"*. “You|strong=\"H4100\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* despised your|strong=\"H3068\"* name|strong=\"H8034\"*?’" + }, + { + "verseNum": 7, + "text": "You|strong=\"H5921\"* offer|strong=\"H5066\"* polluted|strong=\"H1351\"* bread|strong=\"H3899\"* on|strong=\"H5921\"* my|strong=\"H3068\"* altar|strong=\"H4196\"*. You|strong=\"H5921\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* polluted|strong=\"H1351\"* you|strong=\"H5921\"*?’ In|strong=\"H5921\"* that|strong=\"H1931\"* you|strong=\"H5921\"* say, ‘Yahweh|strong=\"H3068\"*’s table|strong=\"H7979\"* is|strong=\"H3068\"* contemptible.’" + }, + { + "verseNum": 8, + "text": "When|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* the|strong=\"H6440\"* blind|strong=\"H5787\"* for|strong=\"H3588\"* sacrifice|strong=\"H2076\"*, isn’t that|strong=\"H3588\"* evil|strong=\"H7451\"*? And|strong=\"H3068\"* when|strong=\"H3588\"* you|strong=\"H3588\"* offer|strong=\"H7126\"* the|strong=\"H6440\"* lame|strong=\"H6455\"* and|strong=\"H3068\"* sick|strong=\"H2470\"*, isn’t that|strong=\"H3588\"* evil|strong=\"H7451\"*? Present|strong=\"H7126\"* it|strong=\"H7126\"* now|strong=\"H4994\"* to|strong=\"H3068\"* your|strong=\"H3068\"* governor|strong=\"H6346\"*! Will|strong=\"H3068\"* he|strong=\"H3588\"* be|strong=\"H3068\"* pleased|strong=\"H7521\"* with|strong=\"H3068\"* you|strong=\"H3588\"*? Or|strong=\"H3068\"* will|strong=\"H3068\"* he|strong=\"H3588\"* accept|strong=\"H7521\"* your|strong=\"H3068\"* person|strong=\"H6440\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "“Now|strong=\"H6258\"*, please|strong=\"H4994\"* entreat|strong=\"H2470\"* the|strong=\"H6440\"* favor|strong=\"H6440\"* of|strong=\"H3068\"* God|strong=\"H3068\"*,+ 1:9 The Hebrew word rendered “God” is “\\+wh אֱלֹהִ֑ים\\+wh*” (Elohim).* that|strong=\"H3068\"* he|strong=\"H3068\"* may|strong=\"H1961\"* be|strong=\"H1961\"* gracious|strong=\"H2603\"* to|strong=\"H3068\"* us|strong=\"H4994\"*. With|strong=\"H3068\"* this|strong=\"H2063\"*, will|strong=\"H3068\"* he|strong=\"H3068\"* accept|strong=\"H5375\"* any|strong=\"H4480\"* of|strong=\"H3068\"* you|strong=\"H6440\"*?” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 10, + "text": "“Oh|strong=\"H4310\"* that|strong=\"H3068\"* there|strong=\"H2656\"* were|strong=\"H3027\"* one|strong=\"H3808\"* among|strong=\"H4310\"* you|strong=\"H3808\"* who|strong=\"H4310\"* would|strong=\"H4310\"* shut|strong=\"H5462\"* the|strong=\"H3068\"* doors|strong=\"H1817\"*, that|strong=\"H3068\"* you|strong=\"H3808\"* might|strong=\"H3068\"* not|strong=\"H3808\"* kindle fire on|strong=\"H3027\"* my|strong=\"H3068\"* altar|strong=\"H4196\"* in|strong=\"H3068\"* vain|strong=\"H2600\"*! I|strong=\"H3808\"* have|strong=\"H3068\"* no|strong=\"H3808\"* pleasure|strong=\"H2656\"* in|strong=\"H3068\"* you|strong=\"H3808\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “neither|strong=\"H3808\"* will|strong=\"H3068\"* I|strong=\"H3808\"* accept|strong=\"H7521\"* an|strong=\"H3068\"* offering|strong=\"H4503\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 11, + "text": "For|strong=\"H3588\"* from|strong=\"H1471\"* the|strong=\"H3605\"* rising|strong=\"H4217\"* of|strong=\"H3068\"* the|strong=\"H3605\"* sun|strong=\"H8121\"* even|strong=\"H5704\"* to|strong=\"H5704\"* its|strong=\"H3605\"* going|strong=\"H8121\"* down|strong=\"H3996\"*, my|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* great|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*, and|strong=\"H3068\"* in|strong=\"H3068\"* every|strong=\"H3605\"* place|strong=\"H4725\"* incense|strong=\"H6999\"* will|strong=\"H3068\"* be|strong=\"H3068\"* offered|strong=\"H6999\"* to|strong=\"H5704\"* my|strong=\"H3605\"* name|strong=\"H8034\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* pure|strong=\"H2889\"* offering|strong=\"H4503\"*; for|strong=\"H3588\"* my|strong=\"H3605\"* name|strong=\"H8034\"* is|strong=\"H3068\"* great|strong=\"H1419\"* among|strong=\"H8034\"* the|strong=\"H3605\"* nations|strong=\"H1471\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“But|strong=\"H1931\"* you profane|strong=\"H2490\"* it|strong=\"H1931\"* when you say, ‘Yahweh|strong=\"H3068\"*’s table|strong=\"H7979\"* is|strong=\"H1931\"* polluted|strong=\"H2490\"*, and|strong=\"H7979\"* its|strong=\"H2490\"* fruit|strong=\"H2490\"*, even its|strong=\"H2490\"* food, is|strong=\"H1931\"* contemptible.’" + }, + { + "verseNum": 13, + "text": "You|strong=\"H3027\"* say also|strong=\"H3068\"*, ‘Behold|strong=\"H2009\"*,+ 1:13 “Behold”, from “\\+wh הִנֵּה\\+wh*”, means look at, take notice, observe, see, or gaze at. It is often used as an interjection.* what a|strong=\"H3068\"* weariness|strong=\"H4972\"* it|strong=\"H5301\"* is|strong=\"H3068\"*!’ And|strong=\"H3068\"* you|strong=\"H3027\"* have|strong=\"H3068\"* sniffed at|strong=\"H3068\"* it|strong=\"H5301\"*”, says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*; “and|strong=\"H3068\"* you|strong=\"H3027\"* have|strong=\"H3068\"* brought|strong=\"H3068\"* that|strong=\"H3068\"* which|strong=\"H3068\"* was|strong=\"H3068\"* taken|strong=\"H1497\"* by|strong=\"H3027\"* violence|strong=\"H1497\"*, the|strong=\"H3068\"* lame|strong=\"H6455\"*, and|strong=\"H3068\"* the|strong=\"H3068\"* sick|strong=\"H2470\"*; thus you|strong=\"H3027\"* bring the|strong=\"H3068\"* offering|strong=\"H4503\"*. Should|strong=\"H3068\"* I|strong=\"H2009\"* accept|strong=\"H7521\"* this|strong=\"H3068\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*?” says Yahweh|strong=\"H3068\"*." + }, + { + "verseNum": 14, + "text": "“But|strong=\"H3588\"* the|strong=\"H3588\"* deceiver|strong=\"H5230\"* is|strong=\"H3068\"* cursed who|strong=\"H3068\"* has|strong=\"H3068\"* in|strong=\"H3068\"* his|strong=\"H3068\"* flock|strong=\"H5739\"* a|strong=\"H3068\"* male|strong=\"H2145\"*, and|strong=\"H3068\"* vows|strong=\"H5087\"* and|strong=\"H3068\"* sacrifices|strong=\"H2076\"* to|strong=\"H3068\"* the|strong=\"H3588\"* Lord|strong=\"H3068\"*+ 1:14 The word translated “Lord” is “Adonai.”* a|strong=\"H3068\"* defective thing|strong=\"H3588\"*; for|strong=\"H3588\"* I|strong=\"H3588\"* am|strong=\"H3068\"* a|strong=\"H3068\"* great|strong=\"H1419\"* King|strong=\"H4428\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H4428\"* Armies|strong=\"H6635\"*, “and|strong=\"H3068\"* my|strong=\"H3068\"* name|strong=\"H8034\"* is|strong=\"H3068\"* awesome|strong=\"H3372\"* among|strong=\"H8034\"* the|strong=\"H3588\"* nations|strong=\"H1471\"*.”" + } + ] + }, + { + "chapterNum": 2, + "verses": [ + { + "verseNum": 1, + "text": "“Now|strong=\"H6258\"*, you|strong=\"H6258\"* priests|strong=\"H3548\"*, this|strong=\"H2063\"* commandment|strong=\"H4687\"* is|strong=\"H3548\"* for|strong=\"H3548\"* you|strong=\"H6258\"*." + }, + { + "verseNum": 2, + "text": "If|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* listen|strong=\"H8085\"*, and|strong=\"H3068\"* if|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H7760\"* it|strong=\"H5414\"* to|strong=\"H3068\"* heart|strong=\"H3820\"*, to|strong=\"H3068\"* give|strong=\"H5414\"* glory|strong=\"H3519\"* to|strong=\"H3068\"* my|strong=\"H8085\"* name|strong=\"H8034\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*, “then|strong=\"H7971\"* I|strong=\"H3588\"* will|strong=\"H3068\"* send|strong=\"H7971\"* the|strong=\"H5921\"* curse|strong=\"H3994\"* on|strong=\"H5921\"* you|strong=\"H3588\"*, and|strong=\"H3068\"* I|strong=\"H3588\"* will|strong=\"H3068\"* curse|strong=\"H3994\"* your|strong=\"H3068\"* blessings|strong=\"H1293\"*. Indeed|strong=\"H3588\"*, I|strong=\"H3588\"* have|strong=\"H3068\"* cursed them|strong=\"H5414\"* already, because|strong=\"H3588\"* you|strong=\"H3588\"* do|strong=\"H3068\"* not|strong=\"H3808\"* take|strong=\"H7760\"* it|strong=\"H5414\"* to|strong=\"H3068\"* heart|strong=\"H3820\"*." + }, + { + "verseNum": 3, + "text": "Behold|strong=\"H2005\"*, I|strong=\"H2005\"* will|strong=\"H2233\"* rebuke|strong=\"H1605\"* your|strong=\"H5921\"* offspring|strong=\"H2233\"*,+ 2:3 or, seed* and|strong=\"H6440\"* will|strong=\"H2233\"* spread|strong=\"H2219\"* dung|strong=\"H6569\"* on|strong=\"H5921\"* your|strong=\"H5921\"* faces|strong=\"H6440\"*, even|strong=\"H5921\"* the|strong=\"H6440\"* dung|strong=\"H6569\"* of|strong=\"H6440\"* your|strong=\"H5921\"* feasts|strong=\"H2282\"*; and|strong=\"H6440\"* you|strong=\"H6440\"* will|strong=\"H2233\"* be|strong=\"H6440\"* taken|strong=\"H5375\"* away|strong=\"H5375\"* with|strong=\"H5921\"* it|strong=\"H5921\"*." + }, + { + "verseNum": 4, + "text": "You|strong=\"H3588\"* will|strong=\"H3068\"* know|strong=\"H3045\"* that|strong=\"H3588\"* I|strong=\"H3588\"* have|strong=\"H1961\"* sent|strong=\"H7971\"* this|strong=\"H2063\"* commandment|strong=\"H4687\"* to|strong=\"H3068\"* you|strong=\"H3588\"*, that|strong=\"H3588\"* my|strong=\"H3068\"* covenant|strong=\"H1285\"* may|strong=\"H1961\"* be|strong=\"H1961\"* with|strong=\"H3068\"* Levi|strong=\"H3878\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 5, + "text": "“My|strong=\"H5414\"* covenant|strong=\"H1285\"* was|strong=\"H8034\"* with|strong=\"H1285\"* him|strong=\"H5414\"* of|strong=\"H6440\"* life|strong=\"H2416\"* and|strong=\"H6440\"* peace|strong=\"H7965\"*; and|strong=\"H6440\"* I|strong=\"H5414\"* gave|strong=\"H5414\"* them|strong=\"H5414\"* to|strong=\"H1961\"* him|strong=\"H5414\"* that|strong=\"H1931\"* he|strong=\"H1931\"* might|strong=\"H2416\"* be|strong=\"H1961\"* reverent toward|strong=\"H6440\"* me|strong=\"H5414\"*; and|strong=\"H6440\"* he|strong=\"H1931\"* was|strong=\"H8034\"* reverent toward|strong=\"H6440\"* me|strong=\"H5414\"*, and|strong=\"H6440\"* stood|strong=\"H2865\"* in|strong=\"H6440\"* awe|strong=\"H2865\"* of|strong=\"H6440\"* my|strong=\"H5414\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 6, + "text": "The|strong=\"H7725\"* law|strong=\"H8451\"* of|strong=\"H6310\"* truth|strong=\"H3808\"* was|strong=\"H1961\"* in|strong=\"H1980\"* his|strong=\"H7725\"* mouth|strong=\"H6310\"*, and|strong=\"H1980\"* unrighteousness|strong=\"H5766\"* was|strong=\"H1961\"* not|strong=\"H3808\"* found|strong=\"H4672\"* in|strong=\"H1980\"* his|strong=\"H7725\"* lips|strong=\"H8193\"*. He|strong=\"H3808\"* walked|strong=\"H1980\"* with|strong=\"H1980\"* me|strong=\"H7725\"* in|strong=\"H1980\"* peace|strong=\"H7965\"* and|strong=\"H1980\"* uprightness|strong=\"H4334\"*, and|strong=\"H1980\"* turned|strong=\"H7725\"* many|strong=\"H7227\"* away|strong=\"H7725\"* from|strong=\"H7725\"* iniquity|strong=\"H5771\"*." + }, + { + "verseNum": 7, + "text": "For|strong=\"H3588\"* the|strong=\"H3588\"* priest|strong=\"H3548\"*’s lips|strong=\"H8193\"* should|strong=\"H3068\"* keep|strong=\"H8104\"* knowledge|strong=\"H1847\"*, and|strong=\"H3068\"* they|strong=\"H3588\"* should|strong=\"H3068\"* seek|strong=\"H1245\"* the|strong=\"H3588\"* law|strong=\"H8451\"* at|strong=\"H3068\"* his|strong=\"H8104\"* mouth|strong=\"H6310\"*; for|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H3068\"* the|strong=\"H3588\"* messenger|strong=\"H4397\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 8, + "text": "But|strong=\"H1870\"* you|strong=\"H4480\"* have|strong=\"H3068\"* turned|strong=\"H5493\"* away|strong=\"H5493\"* from|strong=\"H4480\"* the|strong=\"H3068\"* path|strong=\"H1870\"*. You|strong=\"H4480\"* have|strong=\"H3068\"* caused many|strong=\"H7227\"* to|strong=\"H3068\"* stumble|strong=\"H3782\"* in|strong=\"H3068\"* the|strong=\"H3068\"* law|strong=\"H8451\"*. You|strong=\"H4480\"* have|strong=\"H3068\"* corrupted|strong=\"H7843\"* the|strong=\"H3068\"* covenant|strong=\"H1285\"* of|strong=\"H3068\"* Levi|strong=\"H3878\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 9, + "text": "“Therefore|strong=\"H1571\"* I|strong=\"H5414\"* have|strong=\"H5971\"* also|strong=\"H1571\"* made|strong=\"H5414\"* you|strong=\"H5414\"* contemptible and|strong=\"H5971\"* wicked before|strong=\"H6440\"* all|strong=\"H3605\"* the|strong=\"H3605\"* people|strong=\"H5971\"*, according|strong=\"H6310\"* to|strong=\"H5414\"* the|strong=\"H3605\"* way|strong=\"H1870\"* you|strong=\"H5414\"* have|strong=\"H5971\"* not|strong=\"H5414\"* kept|strong=\"H8104\"* my|strong=\"H8104\"* ways|strong=\"H1870\"*, but|strong=\"H1571\"* have|strong=\"H5971\"* had|strong=\"H5414\"* respect|strong=\"H5375\"* for|strong=\"H6440\"* persons|strong=\"H6440\"* in|strong=\"H6440\"* the|strong=\"H3605\"* law|strong=\"H8451\"*." + }, + { + "verseNum": 10, + "text": "Don’t we|strong=\"H3068\"* all|strong=\"H3605\"* have|strong=\"H3605\"* one|strong=\"H3605\"* father? Hasn’t one|strong=\"H3605\"* God|strong=\"H3808\"* created|strong=\"H1254\"* us? Why|strong=\"H4069\"* do|strong=\"H3605\"* we|strong=\"H3068\"* deal treacherously every|strong=\"H3605\"* man|strong=\"H3605\"* against|strong=\"H3605\"* his|strong=\"H3605\"* brother, profaning|strong=\"H2490\"* the|strong=\"H3605\"* covenant|strong=\"H1285\"* of|strong=\"H3605\"* our|strong=\"H3605\"* fathers?" + }, + { + "verseNum": 11, + "text": "Judah|strong=\"H3063\"* has|strong=\"H3068\"* dealt|strong=\"H6213\"* treacherously, and|strong=\"H3063\"* an|strong=\"H6213\"* abomination|strong=\"H8441\"* is|strong=\"H3068\"* committed|strong=\"H6213\"* in|strong=\"H3478\"* Israel|strong=\"H3478\"* and|strong=\"H3063\"* in|strong=\"H3478\"* Jerusalem|strong=\"H3389\"*; for|strong=\"H3588\"* Judah|strong=\"H3063\"* has|strong=\"H3068\"* profaned|strong=\"H2490\"* the|strong=\"H3588\"* holiness|strong=\"H6944\"* of|strong=\"H3068\"* Yahweh|strong=\"H3068\"* which|strong=\"H3068\"* he|strong=\"H3588\"* loves, and|strong=\"H3063\"* has|strong=\"H3068\"* married|strong=\"H1166\"* the|strong=\"H3588\"* daughter|strong=\"H1323\"* of|strong=\"H3068\"* a|strong=\"H3068\"* foreign|strong=\"H5236\"* god|strong=\"H3068\"*." + }, + { + "verseNum": 12, + "text": "Yahweh|strong=\"H3068\"* will|strong=\"H3068\"* cut|strong=\"H3772\"* off|strong=\"H3772\"* the|strong=\"H6213\"* man|strong=\"H6030\"* who|strong=\"H3068\"* does|strong=\"H6213\"* this|strong=\"H6213\"*, him|strong=\"H6213\"* who|strong=\"H3068\"* wakes and|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* answers|strong=\"H6030\"*, out|strong=\"H6213\"* of|strong=\"H3068\"* the|strong=\"H6213\"* tents of|strong=\"H3068\"* Jacob|strong=\"H3290\"* and|strong=\"H3068\"* him|strong=\"H6213\"* who|strong=\"H3068\"* offers an|strong=\"H6213\"* offering|strong=\"H4503\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "“This|strong=\"H2063\"* again|strong=\"H5750\"* you|strong=\"H3947\"* do|strong=\"H6213\"*: you|strong=\"H3947\"* cover|strong=\"H3680\"* Yahweh|strong=\"H3068\"*’s altar|strong=\"H4196\"* with|strong=\"H3068\"* tears|strong=\"H1832\"*, with|strong=\"H3068\"* weeping|strong=\"H1065\"*, and|strong=\"H3068\"* with|strong=\"H3068\"* sighing, because|strong=\"H3027\"* he|strong=\"H6213\"* doesn’t regard|strong=\"H6437\"* the|strong=\"H3947\"* offering|strong=\"H4503\"* any|strong=\"H5750\"* more|strong=\"H5750\"*, neither receives|strong=\"H3947\"* it|strong=\"H6213\"* with|strong=\"H3068\"* good|strong=\"H7522\"* will|strong=\"H3068\"* at|strong=\"H3068\"* your|strong=\"H3068\"* hand|strong=\"H3027\"*." + }, + { + "verseNum": 14, + "text": "Yet|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘Why|strong=\"H4100\"*?’ Because|strong=\"H3588\"* Yahweh|strong=\"H3068\"* has|strong=\"H3068\"* been|strong=\"H3068\"* witness|strong=\"H5749\"* between|strong=\"H5921\"* you|strong=\"H3588\"* and|strong=\"H3068\"* the|strong=\"H5921\"* wife of|strong=\"H3068\"* your|strong=\"H3068\"* youth|strong=\"H5271\"*, against|strong=\"H5921\"* whom|strong=\"H3588\"* you|strong=\"H3588\"* have|strong=\"H3068\"* dealt treacherously, though|strong=\"H3588\"* she|strong=\"H1931\"* is|strong=\"H3068\"* your|strong=\"H3068\"* companion|strong=\"H2278\"* and|strong=\"H3068\"* the|strong=\"H5921\"* wife of|strong=\"H3068\"* your|strong=\"H3068\"* covenant|strong=\"H1285\"*." + }, + { + "verseNum": 15, + "text": "Did|strong=\"H6213\"* he|strong=\"H6213\"* not|strong=\"H3808\"* make|strong=\"H6213\"* you|strong=\"H6213\"* one|strong=\"H3808\"*, although|strong=\"H3808\"* he|strong=\"H6213\"* had|strong=\"H3808\"* the|strong=\"H6213\"* residue|strong=\"H7605\"* of|strong=\"H7307\"* the|strong=\"H6213\"* Spirit|strong=\"H7307\"*? Why|strong=\"H4100\"* one|strong=\"H3808\"*? He|strong=\"H6213\"* sought|strong=\"H1245\"* godly offspring|strong=\"H2233\"*. Therefore|strong=\"H6213\"* take|strong=\"H8104\"* heed|strong=\"H8104\"* to|strong=\"H6213\"* your|strong=\"H8104\"* spirit|strong=\"H7307\"*, and|strong=\"H6213\"* let|strong=\"H3808\"* no|strong=\"H3808\"* one|strong=\"H3808\"* deal|strong=\"H6213\"* treacherously against|strong=\"H7307\"* the|strong=\"H6213\"* wife of|strong=\"H7307\"* his|strong=\"H8104\"* youth|strong=\"H5271\"*." + }, + { + "verseNum": 16, + "text": "One|strong=\"H3808\"* who|strong=\"H3068\"* hates|strong=\"H8130\"* and|strong=\"H3478\"* divorces|strong=\"H7971\"*”, says Yahweh|strong=\"H3068\"*, the|strong=\"H5921\"* God|strong=\"H3068\"* of|strong=\"H3068\"* Israel|strong=\"H3478\"*, “covers|strong=\"H3680\"* his|strong=\"H8104\"* garment|strong=\"H3830\"* with|strong=\"H3068\"* violence|strong=\"H2555\"*!” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. “Therefore|strong=\"H5921\"* pay|strong=\"H8104\"* attention|strong=\"H8104\"* to|strong=\"H3478\"* your|strong=\"H3068\"* spirit|strong=\"H7307\"*, that|strong=\"H3588\"* you|strong=\"H3588\"* don’t be|strong=\"H3808\"* unfaithful." + }, + { + "verseNum": 17, + "text": "You|strong=\"H3605\"* have|strong=\"H3068\"* wearied|strong=\"H3021\"* Yahweh|strong=\"H3068\"* with|strong=\"H3068\"* your|strong=\"H3068\"* words|strong=\"H1697\"*. Yet|strong=\"H3068\"* you|strong=\"H3605\"* say|strong=\"H1697\"*, ‘How|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* wearied|strong=\"H3021\"* him|strong=\"H6213\"*?’ In|strong=\"H3068\"* that|strong=\"H3605\"* you|strong=\"H3605\"* say|strong=\"H1697\"*, ‘Everyone|strong=\"H3605\"* who|strong=\"H3605\"* does|strong=\"H6213\"* evil|strong=\"H7451\"* is|strong=\"H3068\"* good|strong=\"H2896\"* in|strong=\"H3068\"* Yahweh|strong=\"H3068\"*’s sight|strong=\"H5869\"*, and|strong=\"H3068\"* he|strong=\"H1931\"* delights|strong=\"H2654\"* in|strong=\"H3068\"* them|strong=\"H6213\"*;’ or|strong=\"H2896\"* ‘Where|strong=\"H4100\"* is|strong=\"H3068\"* the|strong=\"H3605\"* God|strong=\"H3068\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*?’" + } + ] + }, + { + "chapterNum": 3, + "verses": [ + { + "verseNum": 1, + "text": "“Behold|strong=\"H2009\"*, I|strong=\"H2005\"* send|strong=\"H7971\"* my|strong=\"H3068\"* messenger|strong=\"H4397\"*, and|strong=\"H3068\"* he|strong=\"H3068\"* will|strong=\"H3068\"* prepare|strong=\"H6437\"* the|strong=\"H6440\"* way|strong=\"H1870\"* before|strong=\"H6440\"* me|strong=\"H6440\"*! The|strong=\"H6440\"* Lord|strong=\"H3068\"*, whom|strong=\"H6440\"* you|strong=\"H6440\"* seek|strong=\"H1245\"*, will|strong=\"H3068\"* suddenly|strong=\"H6597\"* come|strong=\"H6635\"* to|strong=\"H3068\"* his|strong=\"H3068\"* temple|strong=\"H1964\"*. Behold|strong=\"H2009\"*, the|strong=\"H6440\"* messenger|strong=\"H4397\"* of|strong=\"H3068\"* the|strong=\"H6440\"* covenant|strong=\"H1285\"*, whom|strong=\"H6440\"* you|strong=\"H6440\"* desire|strong=\"H1245\"*, is|strong=\"H3068\"* coming|strong=\"H2009\"*!” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 2, + "text": "“But|strong=\"H3588\"* who|strong=\"H4310\"* can|strong=\"H4310\"* endure|strong=\"H5975\"* the|strong=\"H7200\"* day|strong=\"H3117\"* of|strong=\"H3117\"* his|strong=\"H3526\"* coming? And|strong=\"H3117\"* who|strong=\"H4310\"* will|strong=\"H4310\"* stand|strong=\"H5975\"* when|strong=\"H3588\"* he|strong=\"H1931\"* appears|strong=\"H7200\"*? For|strong=\"H3588\"* he|strong=\"H1931\"* is|strong=\"H1931\"* like|strong=\"H6884\"* a|strong=\"H3068\"* refiner|strong=\"H6884\"*’s fire, and|strong=\"H3117\"* like|strong=\"H6884\"* launderers’ soap|strong=\"H1287\"*;" + }, + { + "verseNum": 3, + "text": "and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* sit|strong=\"H3427\"* as|strong=\"H1961\"* a|strong=\"H3068\"* refiner|strong=\"H6884\"* and|strong=\"H1121\"* purifier|strong=\"H2891\"* of|strong=\"H1121\"* silver|strong=\"H3701\"*, and|strong=\"H1121\"* he|strong=\"H3068\"* will|strong=\"H3068\"* purify|strong=\"H2891\"* the|strong=\"H3068\"* sons|strong=\"H1121\"* of|strong=\"H1121\"* Levi|strong=\"H3878\"*, and|strong=\"H1121\"* refine|strong=\"H6884\"* them|strong=\"H1961\"* as|strong=\"H1961\"* gold|strong=\"H2091\"* and|strong=\"H1121\"* silver|strong=\"H3701\"*; and|strong=\"H1121\"* they|strong=\"H3068\"* shall|strong=\"H3068\"* offer|strong=\"H5066\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* offerings|strong=\"H4503\"* in|strong=\"H3427\"* righteousness|strong=\"H6666\"*." + }, + { + "verseNum": 4, + "text": "Then|strong=\"H3068\"* the|strong=\"H3068\"* offering|strong=\"H4503\"* of|strong=\"H3068\"* Judah|strong=\"H3063\"* and|strong=\"H3063\"* Jerusalem|strong=\"H3389\"* will|strong=\"H3068\"* be|strong=\"H3068\"* pleasant|strong=\"H6149\"* to|strong=\"H3068\"* Yahweh|strong=\"H3068\"* as|strong=\"H3117\"* in|strong=\"H8141\"* the|strong=\"H3068\"* days|strong=\"H3117\"* of|strong=\"H3068\"* old|strong=\"H5769\"* and|strong=\"H3063\"* as|strong=\"H3117\"* in|strong=\"H8141\"* ancient|strong=\"H5769\"* years|strong=\"H8141\"*." + }, + { + "verseNum": 5, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* come|strong=\"H1961\"* near|strong=\"H7126\"* to|strong=\"H3068\"* you|strong=\"H3808\"* to|strong=\"H3068\"* judgment|strong=\"H4941\"*. I|strong=\"H3808\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* swift|strong=\"H4116\"* witness|strong=\"H5707\"* against|strong=\"H3068\"* the|strong=\"H3068\"* sorcerers|strong=\"H3784\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* adulterers|strong=\"H5003\"*, against|strong=\"H3068\"* the|strong=\"H3068\"* perjurers, and|strong=\"H3068\"* against|strong=\"H3068\"* those|strong=\"H1961\"* who|strong=\"H3068\"* oppress|strong=\"H6231\"* the|strong=\"H3068\"* hireling|strong=\"H7916\"* in|strong=\"H3068\"* his|strong=\"H3068\"* wages|strong=\"H7939\"*, the|strong=\"H3068\"* widow, and|strong=\"H3068\"* the|strong=\"H3068\"* fatherless|strong=\"H3490\"*, and|strong=\"H3068\"* who|strong=\"H3068\"* deprive|strong=\"H5186\"* the|strong=\"H3068\"* foreigner|strong=\"H1616\"* of|strong=\"H3068\"* justice|strong=\"H4941\"*, and|strong=\"H3068\"* don’t fear|strong=\"H3372\"* me|strong=\"H3372\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 6, + "text": "“For|strong=\"H3588\"* I|strong=\"H3588\"*, Yahweh|strong=\"H3068\"*, don’t change|strong=\"H8138\"*; therefore|strong=\"H3588\"* you|strong=\"H3588\"*, sons|strong=\"H1121\"* of|strong=\"H1121\"* Jacob|strong=\"H3290\"*, are|strong=\"H1121\"* not|strong=\"H3808\"* consumed|strong=\"H3615\"*." + }, + { + "verseNum": 7, + "text": "From|strong=\"H7725\"* the|strong=\"H8104\"* days|strong=\"H3117\"* of|strong=\"H3068\"* your|strong=\"H3068\"* fathers you|strong=\"H3117\"* have|strong=\"H3068\"* turned|strong=\"H7725\"* away|strong=\"H5493\"* from|strong=\"H7725\"* my|strong=\"H8104\"* ordinances|strong=\"H2706\"* and|strong=\"H3068\"* have|strong=\"H3068\"* not|strong=\"H3808\"* kept|strong=\"H8104\"* them|strong=\"H7725\"*. Return|strong=\"H7725\"* to|strong=\"H7725\"* me|strong=\"H7725\"*, and|strong=\"H3068\"* I|strong=\"H3117\"* will|strong=\"H3068\"* return|strong=\"H7725\"* to|strong=\"H7725\"* you|strong=\"H3117\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*. “But|strong=\"H3808\"* you|strong=\"H3117\"* say|strong=\"H7725\"*, ‘How|strong=\"H4100\"* shall|strong=\"H3068\"* we|strong=\"H3068\"* return|strong=\"H7725\"*?’" + }, + { + "verseNum": 8, + "text": "Will|strong=\"H4100\"* a|strong=\"H3068\"* man rob|strong=\"H6906\"* God? Yet|strong=\"H3588\"* you|strong=\"H3588\"* rob|strong=\"H6906\"* me|strong=\"H3588\"*! But|strong=\"H3588\"* you|strong=\"H3588\"* say, ‘How|strong=\"H4100\"* have|strong=\"H3588\"* we|strong=\"H3068\"* robbed|strong=\"H6906\"* you|strong=\"H3588\"*?’ In|strong=\"H4643\"* tithes|strong=\"H4643\"* and|strong=\"H4643\"* offerings|strong=\"H8641\"*." + }, + { + "verseNum": 9, + "text": "You|strong=\"H3605\"* are|strong=\"H1471\"* cursed with|strong=\"H3605\"* the|strong=\"H3605\"* curse|strong=\"H3994\"*; for|strong=\"H3605\"* you|strong=\"H3605\"* rob|strong=\"H6906\"* me|strong=\"H3605\"*, even this|strong=\"H3605\"* whole|strong=\"H3605\"* nation|strong=\"H1471\"*." + }, + { + "verseNum": 10, + "text": "Bring|strong=\"H1961\"* the|strong=\"H3605\"* whole|strong=\"H3605\"* tithe|strong=\"H4643\"* into|strong=\"H1961\"* the|strong=\"H3605\"* storehouse, that|strong=\"H3605\"* there|strong=\"H1961\"* may|strong=\"H1961\"* be|strong=\"H1961\"* food|strong=\"H2964\"* in|strong=\"H3068\"* my|strong=\"H3605\"* house|strong=\"H1004\"*, and|strong=\"H3068\"* test me|strong=\"H4994\"* now|strong=\"H4994\"* in|strong=\"H3068\"* this|strong=\"H2063\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H1004\"* Armies|strong=\"H6635\"*, “if|strong=\"H1961\"* I|strong=\"H5704\"* will|strong=\"H3068\"* not|strong=\"H3808\"* open|strong=\"H6605\"* you|strong=\"H3605\"* the|strong=\"H3605\"* windows of|strong=\"H1004\"* heaven|strong=\"H8064\"*, and|strong=\"H3068\"* pour you|strong=\"H3605\"* out|strong=\"H7324\"* a|strong=\"H3068\"* blessing|strong=\"H1293\"*, that|strong=\"H3605\"* there|strong=\"H1961\"* will|strong=\"H3068\"* not|strong=\"H3808\"* be|strong=\"H1961\"* enough|strong=\"H1767\"* room|strong=\"H1004\"* for|strong=\"H5704\"*." + }, + { + "verseNum": 11, + "text": "I|strong=\"H3808\"* will|strong=\"H3068\"* rebuke|strong=\"H1605\"* the|strong=\"H3068\"* devourer for|strong=\"H3068\"* your|strong=\"H3068\"* sakes, and|strong=\"H3068\"* he|strong=\"H3068\"* shall|strong=\"H3068\"* not|strong=\"H3808\"* destroy|strong=\"H7843\"* the|strong=\"H3068\"* fruits|strong=\"H6529\"* of|strong=\"H3068\"* your|strong=\"H3068\"* ground|strong=\"H7704\"*; neither|strong=\"H3808\"* shall|strong=\"H3068\"* your|strong=\"H3068\"* vine|strong=\"H1612\"* cast|strong=\"H3068\"* its|strong=\"H7843\"* fruit|strong=\"H6529\"* before|strong=\"H3808\"* its|strong=\"H7843\"* time|strong=\"H6635\"* in|strong=\"H3068\"* the|strong=\"H3068\"* field|strong=\"H7704\"*,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 12, + "text": "“All|strong=\"H3605\"* nations|strong=\"H1471\"* shall|strong=\"H3068\"* call you|strong=\"H3588\"* blessed, for|strong=\"H3588\"* you|strong=\"H3588\"* will|strong=\"H3068\"* be|strong=\"H1961\"* a|strong=\"H3068\"* delightful|strong=\"H2656\"* land,” says Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*." + }, + { + "verseNum": 13, + "text": "“Your|strong=\"H3068\"* words|strong=\"H1697\"* have|strong=\"H3068\"* been|strong=\"H2388\"* harsh against|strong=\"H5921\"* me|strong=\"H5921\"*,” says|strong=\"H1696\"* Yahweh|strong=\"H3068\"*. “Yet|strong=\"H3068\"* you|strong=\"H5921\"* say|strong=\"H1696\"*, ‘What|strong=\"H4100\"* have|strong=\"H3068\"* we|strong=\"H3068\"* spoken|strong=\"H1696\"* against|strong=\"H5921\"* you|strong=\"H5921\"*?’" + }, + { + "verseNum": 14, + "text": "You|strong=\"H3588\"* have|strong=\"H3068\"* said, ‘It|strong=\"H3588\"* is|strong=\"H3068\"* vain|strong=\"H7723\"* to|strong=\"H1980\"* serve|strong=\"H5647\"* God|strong=\"H3068\"*,’ and|strong=\"H1980\"* ‘What|strong=\"H4100\"* profit|strong=\"H1215\"* is|strong=\"H3068\"* it|strong=\"H3588\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* followed|strong=\"H1980\"* his|strong=\"H8104\"* instructions|strong=\"H8104\"* and|strong=\"H1980\"* that|strong=\"H3588\"* we|strong=\"H3068\"* have|strong=\"H3068\"* walked|strong=\"H1980\"* mournfully|strong=\"H6941\"* before|strong=\"H6440\"* Yahweh|strong=\"H3068\"* of|strong=\"H3068\"* Armies|strong=\"H6635\"*?" + }, + { + "verseNum": 15, + "text": "Now|strong=\"H6258\"* we|strong=\"H3068\"* call the|strong=\"H6213\"* proud|strong=\"H2086\"* happy; yes|strong=\"H1571\"*, those|strong=\"H6213\"* who|strong=\"H6213\"* work|strong=\"H6213\"* wickedness|strong=\"H7564\"* are|strong=\"H1571\"* built|strong=\"H1129\"* up|strong=\"H1129\"*; yes|strong=\"H1571\"*, they|strong=\"H6213\"* tempt God, and|strong=\"H6213\"* escape|strong=\"H4422\"*.’" + }, + { + "verseNum": 16, + "text": "Then|strong=\"H1696\"* those|strong=\"H8085\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* spoke|strong=\"H1696\"* one|strong=\"H3068\"* with|strong=\"H3068\"* another|strong=\"H7453\"*; and|strong=\"H3068\"* Yahweh|strong=\"H3068\"* listened|strong=\"H8085\"* and|strong=\"H3068\"* heard|strong=\"H8085\"*, and|strong=\"H3068\"* a|strong=\"H3068\"* book|strong=\"H5612\"* of|strong=\"H3068\"* memory|strong=\"H8034\"* was|strong=\"H3068\"* written|strong=\"H3789\"* before|strong=\"H6440\"* him|strong=\"H6440\"* for|strong=\"H6440\"* those|strong=\"H8085\"* who|strong=\"H3068\"* feared|strong=\"H3372\"* Yahweh|strong=\"H3068\"* and|strong=\"H3068\"* who|strong=\"H3068\"* honored his|strong=\"H3068\"* name|strong=\"H8034\"*." + }, + { + "verseNum": 17, + "text": "They|strong=\"H3117\"* shall|strong=\"H3068\"* be|strong=\"H1961\"* mine,” says Yahweh|strong=\"H3068\"* of|strong=\"H1121\"* Armies|strong=\"H6635\"*, “my|strong=\"H3068\"* own|strong=\"H1961\"* possession|strong=\"H5459\"* in|strong=\"H5921\"* the|strong=\"H5921\"* day|strong=\"H3117\"* that|strong=\"H3117\"* I|strong=\"H3117\"* make|strong=\"H6213\"*. I|strong=\"H3117\"* will|strong=\"H3068\"* spare|strong=\"H2550\"* them|strong=\"H5921\"*, as|strong=\"H3117\"* a|strong=\"H3068\"* man|strong=\"H1121\"* spares|strong=\"H2550\"* his|strong=\"H3068\"* own|strong=\"H1961\"* son|strong=\"H1121\"* who|strong=\"H3068\"* serves|strong=\"H5647\"* him|strong=\"H5921\"*." + }, + { + "verseNum": 18, + "text": "Then|strong=\"H7725\"* you|strong=\"H7725\"* shall|strong=\"H7563\"* return|strong=\"H7725\"* and|strong=\"H7725\"* discern|strong=\"H7200\"* between the|strong=\"H7200\"* righteous|strong=\"H6662\"* and|strong=\"H7725\"* the|strong=\"H7200\"* wicked|strong=\"H7563\"*, between him|strong=\"H7725\"* who|strong=\"H6662\"* serves|strong=\"H5647\"* God|strong=\"H3808\"* and|strong=\"H7725\"* him|strong=\"H7725\"* who|strong=\"H6662\"* doesn’t serve|strong=\"H5647\"* him|strong=\"H7725\"*." + } + ] + }, + { + "chapterNum": 4, + "verses": [ + { + "verseNum": 1, + "text": "“For behold, the day comes, burning like a|strong=\"H3068\"* furnace, when all the proud and all who work wickedness will be stubble. The day that comes will burn them up,” says Yahweh|strong=\"H3068\"* of Armies, “so that it will leave them neither root nor branch." + }, + { + "verseNum": 2, + "text": "But to you who fear my name shall the sun of righteousness arise with healing in its wings. You will go out and leap like calves of the stall." + }, + { + "verseNum": 3, + "text": "You shall tread down the wicked; for they will be ashes under the soles of your feet in the day that I make,” says Yahweh|strong=\"H3068\"* of Armies." + }, + { + "verseNum": 4, + "text": "“Remember the law of Moses my servant, which I commanded to him in Horeb for all Israel, even statutes and ordinances." + }, + { + "verseNum": 5, + "text": "Behold, I will send you Elijah the prophet before the great and terrible day of Yahweh|strong=\"H3068\"* comes." + }, + { + "verseNum": 6, + "text": "He will turn the hearts of the fathers to the children and the hearts of the children to their fathers, lest I come and strike the earth with a|strong=\"H3068\"* curse.”" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/hooks/use-auth.ts b/hooks/use-auth.ts index 7992694..d758c3e 100644 --- a/hooks/use-auth.ts +++ b/hooks/use-auth.ts @@ -1,44 +1,2 @@ -import { useEffect } from 'react' -import { useStore } from '@/lib/store' - -export function useAuth() { - const { user, setUser } = useStore() - - useEffect(() => { - const token = localStorage.getItem('authToken') - if (token && !user) { - // Validate token and get user info - fetch('/api/auth/me', { - headers: { - 'Authorization': `Bearer ${token}` - } - }) - .then(res => res.json()) - .then(data => { - if (data.user) { - setUser(data.user) - } else { - localStorage.removeItem('authToken') - } - }) - .catch(() => { - localStorage.removeItem('authToken') - }) - } - }, [user, setUser]) - - const logout = () => { - setUser(null) - localStorage.removeItem('authToken') - } - - const isAuthenticated = !!user - const token = typeof window !== 'undefined' ? localStorage.getItem('authToken') : null - - return { - user, - isAuthenticated, - token, - logout - } -} \ No newline at end of file +// Re-export the auth context hook +export { useAuth } from '@/components/auth/auth-provider' \ No newline at end of file diff --git a/lib/auth/client.ts b/lib/auth/client.ts new file mode 100644 index 0000000..733cbec --- /dev/null +++ b/lib/auth/client.ts @@ -0,0 +1,29 @@ +export function isTokenExpired(token: string): boolean { + try { + const payload = JSON.parse(atob(token.split('.')[1])) as { exp?: number } + if (!payload || !payload.exp) { + console.log('Token has no expiration data') + return true + } + + const currentTime = Math.floor(Date.now() / 1000) + const isExpired = payload.exp < currentTime + console.log(`Token expiration check: exp=${payload.exp}, now=${currentTime}, expired=${isExpired}`) + return isExpired + } catch (error) { + console.log('Token validation error:', error) + return true + } +} + +export function clearExpiredToken(): void { + const token = localStorage.getItem('authToken') + if (token && isTokenExpired(token)) { + console.log('Clearing expired token from localStorage') + localStorage.removeItem('authToken') + } else if (token) { + console.log('Token exists and is valid') + } else { + console.log('No token in localStorage') + } +} \ No newline at end of file diff --git a/lib/auth/index.ts b/lib/auth/index.ts index 5cbd8a9..e61e58f 100644 --- a/lib/auth/index.ts +++ b/lib/auth/index.ts @@ -23,22 +23,50 @@ export function generateToken(userId: string): string { export async function verifyToken(token: string) { try { + console.log('Server: Verifying token with JWT_SECRET exists:', !!process.env.JWT_SECRET) const payload = jwt.verify(token, process.env.JWT_SECRET!) as { userId: string } + console.log('Server: Token verification successful, userId:', payload.userId) return payload } catch (error) { + console.log('Server: Token verification failed:', error.message) throw new Error('Invalid token') } } export async function getUserFromToken(token: string) { try { + console.log('Server: Getting user from token...') const payload = await verifyToken(token) - const user = await prisma.user.findUnique({ - where: { id: payload.userId }, - select: { id: true, email: true, name: true, theme: true, fontSize: true } - }) + console.log('Server: Token payload userId:', payload.userId) + + // Use raw query to avoid Prisma client sync issues + const users = await prisma.$queryRaw` + SELECT id, email, name, role, theme, "fontSize", "createdAt", "updatedAt", "lastLoginAt" + FROM "User" + WHERE id = ${payload.userId} + ` + const user = Array.isArray(users) && users.length > 0 ? users[0] : null + console.log('Server: User query result:', !!user) + if (user) { + console.log('Server: User found - email:', user.email) + } else { + console.log('Server: No user found with id:', payload.userId) + } return user } catch (error) { + console.log('Server: getUserFromToken error:', error.message) return null } +} + +export function isTokenExpired(token: string): boolean { + try { + const payload = jwt.decode(token) as { exp?: number } + if (!payload || !payload.exp) return true + + const currentTime = Math.floor(Date.now() / 1000) + return payload.exp < currentTime + } catch (error) { + return true + } } \ No newline at end of file diff --git a/lib/store/index.ts b/lib/store/index.ts index 3c22b9f..0fd3ece 100644 --- a/lib/store/index.ts +++ b/lib/store/index.ts @@ -41,6 +41,14 @@ export const useStore = create()( }), { name: 'bible-chat-storage', + partialize: (state) => ({ + user: state.user, + theme: state.theme, + fontSize: state.fontSize, + currentBook: state.currentBook, + currentChapter: state.currentChapter, + bookmarks: state.bookmarks, + }), } ) ) \ No newline at end of file diff --git a/lib/validation/index.ts b/lib/validation/index.ts index 305e079..7bd8822 100644 --- a/lib/validation/index.ts +++ b/lib/validation/index.ts @@ -1,25 +1,71 @@ import { z } from 'zod' -// User validation schemas -export const userRegistrationSchema = z.object({ - email: z.string() - .email('Email invalid') - .min(3, 'Email-ul trebuie să aibă cel puțin 3 caractere') - .max(254, 'Email-ul trebuie să aibă maximum 254 caractere'), - password: z.string() - .min(8, 'Parola trebuie să aibă cel puțin 8 caractere') - .max(128, 'Parola trebuie să aibă maximum 128 caractere') - .regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/, 'Parola trebuie să conțină cel puțin o literă mică, o literă mare și o cifră'), - name: z.string() - .min(2, 'Numele trebuie să aibă cel puțin 2 caractere') - .max(100, 'Numele trebuie să aibă maximum 100 caractere') - .optional() -}) +// User validation schemas - localized +export const createUserRegistrationSchema = (locale: string = 'ro') => { + const messages = { + ro: { + invalidEmail: 'Email invalid', + emailMinLength: 'Email-ul trebuie să aibă cel puțin 3 caractere', + emailMaxLength: 'Email-ul trebuie să aibă maximum 254 caractere', + passwordMinLength: 'Parola trebuie să aibă cel puțin 8 caractere', + passwordMaxLength: 'Parola trebuie să aibă maximum 128 caractere', + passwordComplexity: 'Parola trebuie să conțină cel puțin o literă mică, o literă mare și o cifră', + nameMinLength: 'Numele trebuie să aibă cel puțin 2 caractere', + nameMaxLength: 'Numele trebuie să aibă maximum 100 caractere' + }, + en: { + invalidEmail: 'Invalid email', + emailMinLength: 'Email must be at least 3 characters', + emailMaxLength: 'Email must be maximum 254 characters', + passwordMinLength: 'Password must be at least 8 characters', + passwordMaxLength: 'Password must be maximum 128 characters', + passwordComplexity: 'Password must contain at least one lowercase letter, one uppercase letter and one digit', + nameMinLength: 'Name must be at least 2 characters', + nameMaxLength: 'Name must be maximum 100 characters' + } + } -export const userLoginSchema = z.object({ - email: z.string().email('Email invalid'), - password: z.string().min(1, 'Parola este obligatorie') -}) + const msg = messages[locale as keyof typeof messages] || messages.ro + + return z.object({ + email: z.string() + .email(msg.invalidEmail) + .min(3, msg.emailMinLength) + .max(254, msg.emailMaxLength), + password: z.string() + .min(8, msg.passwordMinLength) + .max(128, msg.passwordMaxLength) + .regex(/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)/, msg.passwordComplexity), + name: z.string() + .min(2, msg.nameMinLength) + .max(100, msg.nameMaxLength) + .optional() + }) +} + +export const createUserLoginSchema = (locale: string = 'ro') => { + const messages = { + ro: { + invalidEmail: 'Email invalid', + passwordRequired: 'Parola este obligatorie' + }, + en: { + invalidEmail: 'Invalid email', + passwordRequired: 'Password is required' + } + } + + const msg = messages[locale as keyof typeof messages] || messages.ro + + return z.object({ + email: z.string().email(msg.invalidEmail), + password: z.string().min(1, msg.passwordRequired) + }) +} + +// Backward compatibility - default to Romanian +export const userRegistrationSchema = createUserRegistrationSchema('ro') +export const userLoginSchema = createUserLoginSchema('ro') // Chat validation schemas export const chatMessageSchema = z.object({ diff --git a/lib/vector-search.ts b/lib/vector-search.ts index 669c1b2..50efc18 100644 --- a/lib/vector-search.ts +++ b/lib/vector-search.ts @@ -36,7 +36,20 @@ async function resolveVectorTable(language: string): Promise<{ table: string; ex ) AS exists`, [VECTOR_SCHEMA, `bv_${lang}_${ab}`] ) - return { table, exists: Boolean(check.rows?.[0]?.exists) } + let exists = Boolean(check.rows?.[0]?.exists) + if (!exists) { + // Fallback: use any table for this language + const anyTbl = await client.query( + `SELECT table_name FROM information_schema.tables + WHERE table_schema = $1 AND table_name LIKE $2 + ORDER BY table_name LIMIT 1`, + [VECTOR_SCHEMA, `bv_${lang}_%`] + ) + if (anyTbl.rows?.[0]?.table_name) { + return { table: `${VECTOR_SCHEMA}."${anyTbl.rows[0].table_name}"`, exists: true } + } + } + return { table, exists } } finally { client.release() } diff --git a/messages/en.json b/messages/en.json index f7c0310..1508970 100644 --- a/messages/en.json +++ b/messages/en.json @@ -195,6 +195,80 @@ } } }, + "auth": { + "email": "Email", + "password": "Password", + "confirmPassword": "Confirm password", + "name": "Name", + "optional": "(optional)", + "login": "Login", + "register": "Register", + "logout": "Logout", + "logging_in": "Logging in...", + "registering": "Registering...", + "loginError": "Login error", + "registerError": "Registration error", + "connectionError": "Connection error", + "passwordMismatch": "Passwords don't match", + "createAccount": "Create account", + "alreadyHaveAccount": "Already have an account?", + "noAccount": "Don't have an account?", + "forgotPassword": "Forgot password?", + "welcomeBack": "Welcome back!", + "joinUs": "Join us!" + }, + "profile": { + "title": "Profile", + "subtitle": "Manage your account information", + "personalInfo": "Personal Information", + "accountDetails": "Account Details", + "name": "Name", + "email": "Email", + "role": "Role", + "memberSince": "Member Since", + "edit": "Edit", + "save": "Save Changes", + "saving": "Saving...", + "cancel": "Cancel", + "emailCannotChange": "Email cannot be changed", + "profileUpdated": "Profile updated successfully!", + "updateError": "Error updating profile", + "user": "User", + "admin": "Administrator", + "moderator": "Moderator" + }, + "settings": { + "title": "Settings", + "subtitle": "Customize your experience", + "appearance": "Appearance", + "languageAndNotifications": "Language & Notifications", + "security": "Security", + "theme": "Theme", + "fontSize": "Font Size", + "language": "Language", + "notifications": "Enable notifications", + "emailUpdates": "Email updates", + "changePassword": "Change Password", + "changePasswordSoon": "Change Password (Coming Soon)", + "passwordSecurity": "Password and security settings", + "saveSettings": "Save Settings", + "settingsSaved": "Settings saved successfully!", + "settingsError": "Error saving settings", + "themes": { + "light": "Light", + "dark": "Dark", + "auto": "Auto" + }, + "fontSizes": { + "small": "Small", + "medium": "Medium", + "large": "Large" + }, + "languages": { + "ro": "Română", + "en": "English" + } + }, "common": { "loading": "Loading...", "error": "An error occurred", diff --git a/messages/ro.json b/messages/ro.json index 93187b5..e3965cb 100644 --- a/messages/ro.json +++ b/messages/ro.json @@ -195,6 +195,80 @@ } } }, + "auth": { + "email": "Email", + "password": "Parolă", + "confirmPassword": "Confirmă parola", + "name": "Nume", + "optional": "(opțional)", + "login": "Autentificare", + "register": "Înregistrare", + "logout": "Deconectare", + "logging_in": "Se autentifică...", + "registering": "Se înregistrează...", + "loginError": "Eroare la autentificare", + "registerError": "Eroare la înregistrare", + "connectionError": "Eroare de conexiune", + "passwordMismatch": "Parolele nu se potrivesc", + "createAccount": "Creează cont", + "alreadyHaveAccount": "Ai deja cont?", + "noAccount": "Nu ai cont?", + "forgotPassword": "Ai uitat parola?", + "welcomeBack": "Bine ai revenit!", + "joinUs": "Alătură-te nouă!" + }, + "profile": { + "title": "Profil", + "subtitle": "Gestionează informațiile contului tău", + "personalInfo": "Informații personale", + "accountDetails": "Detalii cont", + "name": "Nume", + "email": "Email", + "role": "Rol", + "memberSince": "Membru din", + "edit": "Editează", + "save": "Salvează modificările", + "saving": "Se salvează...", + "cancel": "Anulează", + "emailCannotChange": "Email-ul nu poate fi schimbat", + "profileUpdated": "Profilul a fost actualizat cu succes!", + "updateError": "Eroare la actualizarea profilului", + "user": "Utilizator", + "admin": "Administrator", + "moderator": "Moderator" + }, + "settings": { + "title": "Setări", + "subtitle": "Personalizează experiența ta", + "appearance": "Aspect", + "languageAndNotifications": "Limba și notificări", + "security": "Securitate", + "theme": "Temă", + "fontSize": "Mărimea fontului", + "language": "Limba", + "notifications": "Activează notificările", + "emailUpdates": "Actualizări prin email", + "changePassword": "Schimbă parola", + "changePasswordSoon": "Schimbă parola (În curând)", + "passwordSecurity": "Setări parolă și securitate", + "saveSettings": "Salvează setările", + "settingsSaved": "Setările au fost salvate cu succes!", + "settingsError": "Eroare la salvarea setărilor", + "themes": { + "light": "Luminos", + "dark": "Întunecat", + "auto": "Automat" + }, + "fontSizes": { + "small": "Mic", + "medium": "Mediu", + "large": "Mare" + }, + "languages": { + "ro": "Română", + "en": "English" + } + }, "common": { "loading": "Se încarcă...", "error": "A apărut o eroare", diff --git a/middleware.ts b/middleware.ts index 1201cde..59278d0 100644 --- a/middleware.ts +++ b/middleware.ts @@ -44,10 +44,22 @@ export async function middleware(request: NextRequest) { // Authentication: perform only lightweight checks in Middleware (Edge). // Defer full JWT verification to API route handlers (Node runtime). - if (request.nextUrl.pathname.startsWith('/dashboard')) { - const token = request.cookies.get('authToken')?.value + const protectedPaths = ['/dashboard', '/profile', '/settings'] + const isProtectedPath = protectedPaths.some(path => + request.nextUrl.pathname.startsWith(path) + ) + + if (isProtectedPath) { + const token = request.cookies.get('authToken')?.value || + request.headers.get('authorization')?.replace('Bearer ', '') + if (!token) { - return NextResponse.redirect(new URL('/', request.url)) + // Extract locale from pathname for redirect + const locale = request.nextUrl.pathname.split('/')[1] + const isValidLocale = ['ro', 'en'].includes(locale) + const redirectLocale = isValidLocale ? locale : 'ro' + + return NextResponse.redirect(new URL(`/${redirectLocale}/auth/login`, request.url)) } } diff --git a/prisma/schema.prisma b/prisma/schema.prisma index a223774..974cf4b 100644 --- a/prisma/schema.prisma +++ b/prisma/schema.prisma @@ -12,6 +12,7 @@ model User { email String @unique passwordHash String name String? + role String @default("user") // "user", "admin", "moderator" theme String @default("light") fontSize String @default("medium") createdAt DateTime @default(now()) @@ -25,6 +26,8 @@ model User { prayerRequests PrayerRequest[] readingHistory ReadingHistory[] preferences UserPreference[] + + @@index([role]) } model Session { diff --git a/scripts/assemble-english-from-cache.ts b/scripts/assemble-english-from-cache.ts new file mode 100644 index 0000000..3d69f3f --- /dev/null +++ b/scripts/assemble-english-from-cache.ts @@ -0,0 +1,71 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +const ABBR = (process.env.EN_ABBR || 'BSB').toUpperCase() +const ROOT = process.env.INPUT_DIR || path.join('data', 'en_bible', ABBR) + +const OT_ORDER = [ + 'Genesis','Exodus','Leviticus','Numbers','Deuteronomy','Joshua','Judges','Ruth','1 Samuel','2 Samuel','1 Kings','2 Kings','1 Chronicles','2 Chronicles','Ezra','Nehemiah','Esther','Job','Psalms','Proverbs','Ecclesiastes','Song of Songs','Isaiah','Jeremiah','Lamentations','Ezekiel','Daniel','Hosea','Joel','Amos','Obadiah','Jonah','Micah','Nahum','Habakkuk','Zephaniah','Haggai','Zechariah','Malachi' +] +const NT_ORDER = [ + 'Matthew','Mark','Luke','John','Acts','Romans','1 Corinthians','2 Corinthians','Galatians','Ephesians','Philippians','Colossians','1 Thessalonians','2 Thessalonians','1 Timothy','2 Timothy','Titus','Philemon','Hebrews','James','1 Peter','2 Peter','1 John','2 John','3 John','Jude','Revelation' +] + +function titleFromAbbr(abbr: string): string { + const map: Record = { GEN:'Genesis', EXO:'Exodus', LEV:'Leviticus', NUM:'Numbers', DEU:'Deuteronomy', JOS:'Joshua', JDG:'Judges', RUT:'Ruth', '1SA':'1 Samuel', '2SA':'2 Samuel', '1KI':'1 Kings', '2KI':'2 Kings', '1CH':'1 Chronicles', '2CH':'2 Chronicles', EZR:'Ezra', NEH:'Nehemiah', EST:'Esther', JOB:'Job', PSA:'Psalms', PRO:'Proverbs', ECC:'Ecclesiastes', SNG:'Song of Songs', ISA:'Isaiah', JER:'Jeremiah', LAM:'Lamentations', EZK:'Ezekiel', DAN:'Daniel', HOS:'Hosea', JOL:'Joel', AMO:'Amos', OBA:'Obadiah', JON:'Jonah', MIC:'Micah', NAM:'Nahum', HAB:'Habakkuk', ZEP:'Zephaniah', HAG:'Haggai', ZEC:'Zechariah', MAL:'Malachi', MAT:'Matthew', MRK:'Mark', LUK:'Luke', JHN:'John', ACT:'Acts', ROM:'Romans', '1CO':'1 Corinthians', '2CO':'2 Corinthians', GAL:'Galatians', EPH:'Ephesians', PHP:'Philippians', COL:'Colossians', '1TH':'1 Thessalonians', '2TH':'2 Thessalonians', '1TI':'1 Timothy', '2TI':'2 Timothy', TIT:'Titus', PHM:'Philemon', HEB:'Hebrews', JAS:'James', '1PE':'1 Peter', '2PE':'2 Peter', '1JN':'1 John', '2JN':'2 John', '3JN':'3 John', JUD:'Jude', REV:'Revelation' } + return map[abbr] || abbr +} + +function detectBooks(dir: string): string[] { + if (!fs.existsSync(dir)) return [] + return fs.readdirSync(dir).filter(d => fs.statSync(path.join(dir, d)).isDirectory()) +} + +function readChapters(bookDir: string) { + const files = fs.readdirSync(bookDir).filter(f => f.startsWith('chapter-') && f.endsWith('.json') && !f.includes('intro')) + const chapters: any[] = [] + for (const f of files) { + const obj = JSON.parse(fs.readFileSync(path.join(bookDir, f), 'utf-8')) + chapters.push(obj) + } + chapters.sort((a,b) => a.chapterNum - b.chapterNum) + return chapters +} + +function assemble() { + const bookDirs = detectBooks(ROOT) + const books: { name: string; chapters: any[] }[] = [] + for (const d of bookDirs) { + // d is likely an abbreviation; try to infer common titles for GEN/EXO/LEV etc. + let name = d + if (d.toUpperCase() === d) name = titleFromAbbr(d.toUpperCase()) + const chapters = readChapters(path.join(ROOT, d)) + if (chapters.length > 0) books.push({ name, chapters }) + } + + const ot = books.filter(b => OT_ORDER.includes(b.name)).sort((a,b) => OT_ORDER.indexOf(a.name) - OT_ORDER.indexOf(b.name)) + const nt = books.filter(b => NT_ORDER.includes(b.name)).sort((a,b) => NT_ORDER.indexOf(a.name) - NT_ORDER.indexOf(b.name)) + + // Verify completeness: all 66 books must be present + const have = new Set(books.map(b => b.name)) + const missing = [...OT_ORDER, ...NT_ORDER].filter(n => !have.has(n)) + if (missing.length > 0 && process.env.ALLOW_PARTIAL !== '1') { + console.error(`Missing ${missing.length} books. Full EN Bible not downloaded yet.`) + console.error('First few missing:', missing.slice(0, 10).join(', ') + (missing.length > 10 ? '...' : '')) + process.exit(1) + } + + const otObj = { testament: 'Old Testament', books: ot } + const ntObj = { testament: 'New Testament', books: nt } + + const otFile = path.join(ROOT, 'old_testament.json') + const ntFile = path.join(ROOT, 'new_testament.json') + fs.mkdirSync(ROOT, { recursive: true }) + fs.writeFileSync(otFile, JSON.stringify(otObj, null, 2), 'utf-8') + fs.writeFileSync(ntFile, JSON.stringify(ntObj, null, 2), 'utf-8') + console.log('Assembled:', otFile) + console.log('Assembled:', ntFile) +} + +assemble() diff --git a/scripts/cleanup-english-versions.ts b/scripts/cleanup-english-versions.ts new file mode 100644 index 0000000..9e6eaba --- /dev/null +++ b/scripts/cleanup-english-versions.ts @@ -0,0 +1,63 @@ +import { PrismaClient } from '@prisma/client' + +const prisma = new PrismaClient() + +async function cleanup() { + try { + console.log('Starting cleanup of English Bible versions (keeping WEB)...') + + // Ensure WEB exists + const web = await prisma.bibleVersion.findFirst({ where: { language: 'en', abbreviation: 'WEB' } }) + if (!web) { + console.error('WEB version not found. Please import WEB first (via usfm-to-json + import). Aborting.') + return + } + + // Gather non-WEB English versions (e.g., BSB, BSB_MD, BSB_SAMPLES, etc.) + const others = await prisma.bibleVersion.findMany({ + where: { language: 'en', NOT: { abbreviation: 'WEB' } }, + orderBy: { createdAt: 'asc' } + }) + console.log('Found non-WEB EN versions:', others.map(v => v.abbreviation)) + + for (const v of others) { + console.log(`Deleting content for ${v.abbreviation} (${v.id}) ...`) + // Delete verses for all chapters under this version + const delVerses = await prisma.bibleVerse.deleteMany({ + where: { chapter: { book: { versionId: v.id } } } + }) + console.log(' Verses deleted:', delVerses.count) + + // Delete chapters + const delCh = await prisma.bibleChapter.deleteMany({ + where: { book: { versionId: v.id } } + }) + console.log(' Chapters deleted:', delCh.count) + + // Delete books + const delBooks = await prisma.bibleBook.deleteMany({ where: { versionId: v.id } }) + console.log(' Books deleted:', delBooks.count) + + // Delete version + const delVer = await prisma.bibleVersion.delete({ where: { id: v.id } }) + console.log(' Version deleted:', delVer.abbreviation) + } + + // Normalize defaults: set all EN isDefault=false then set WEB=true + await prisma.bibleVersion.updateMany({ where: { language: 'en' }, data: { isDefault: false } }) + await prisma.bibleVersion.update({ where: { id: web.id }, data: { isDefault: true } }) + console.log('Set WEB as the sole default English version.') + + // Quick sanity: count WEB books + const webBooks = await prisma.bibleBook.count({ where: { versionId: web.id } }) + console.log('WEB book count:', webBooks) + } catch (e) { + console.error('Cleanup failed:', e) + process.exit(1) + } finally { + await prisma.$disconnect() + } +} + +cleanup() + diff --git a/scripts/clone_vector_table.ts b/scripts/clone_vector_table.ts new file mode 100644 index 0000000..8780c6c --- /dev/null +++ b/scripts/clone_vector_table.ts @@ -0,0 +1,74 @@ +import 'dotenv/config' +import { Pool } from 'pg' + +async function main() { + const pool = new Pool({ connectionString: process.env.DATABASE_URL }) + const schema = (process.env.VECTOR_SCHEMA || 'ai_bible').replace(/[^a-zA-Z0-9_]/g, '') + const source = `${schema}.bv_ro_fidela` + const target = `${schema}.bv_ro_cornilescu` + + const client = await pool.connect() + try { + console.log('Cloning vector table from', source, 'to', target) + await client.query('BEGIN') + await client.query(`CREATE EXTENSION IF NOT EXISTS vector;`) + await client.query(`CREATE SCHEMA IF NOT EXISTS "${schema}";`) + // Create target table if not exists with same structure + await client.query(` + DO $$ + BEGIN + IF NOT EXISTS ( + SELECT 1 FROM information_schema.tables + WHERE table_schema = '${schema}' AND table_name = 'bv_ro_cornilescu') THEN + EXECUTE format('CREATE TABLE %I.%I (LIKE %I.%I INCLUDING ALL)', '${schema}', 'bv_ro_cornilescu', '${schema}', 'bv_ro_fidela'); + END IF; + END$$;`) + + // Insert rows if target empty + const cnt = await client.query(`SELECT count(*)::int AS c FROM ${target}`) + if ((cnt.rows?.[0]?.c ?? 0) === 0) { + console.log('Copying rows...') + await client.query(` + INSERT INTO ${target} (testament, book, chapter, verse, text_raw, text_norm, tsv, embedding, created_at, updated_at) + SELECT testament, book, chapter, verse, text_raw, text_norm, tsv, embedding, created_at, updated_at + FROM ${source} + ON CONFLICT DO NOTHING + `) + } else { + console.log('Target already has rows, skipping copy') + } + + // Create indexes if not exist + await client.query(` + CREATE UNIQUE INDEX IF NOT EXISTS ux_ref_bv_ro_cornilescu ON ${target} (book, chapter, verse); + CREATE INDEX IF NOT EXISTS idx_tsv_bv_ro_cornilescu ON ${target} USING GIN (tsv); + CREATE INDEX IF NOT EXISTS idx_book_ch_bv_ro_cornilescu ON ${target} (book, chapter); + CREATE INDEX IF NOT EXISTS idx_testament_bv_ro_cornilescu ON ${target} (testament); + `) + + await client.query('COMMIT') + console.log('Rows copied and indexes created. Running post-copy maintenance...') + + // Run maintenance commands outside of transaction + await client.query(`VACUUM ANALYZE ${target};`) + try { + await client.query(` + CREATE INDEX IF NOT EXISTS idx_vec_ivfflat_bv_ro_cornilescu + ON ${target} USING ivfflat (embedding vector_cosine_ops) + WITH (lists = 100); + `) + } catch (e) { + console.warn('IVFFLAT index creation hit memory limits; skipping for now. You can create it later with higher maintenance_work_mem.') + } + console.log('Clone completed.') + } catch (e) { + await client.query('ROLLBACK') + console.error('Clone error:', e) + process.exit(1) + } finally { + client.release() + await pool.end() + } +} + +main() diff --git a/scripts/import-english-json.ts b/scripts/import-english-json.ts new file mode 100644 index 0000000..d1fae1e --- /dev/null +++ b/scripts/import-english-json.ts @@ -0,0 +1,140 @@ +import { PrismaClient } from '@prisma/client' +import fs from 'fs' +import path from 'path' + +const prisma = new PrismaClient() + +interface Verse { verseNum: number; text: string } +interface Chapter { chapterNum: number; verses: Verse[] } +interface Book { name: string; chapters: Chapter[] } +interface TestamentFile { testament: string; books: Book[] } + +function loadJson(file: string): TestamentFile { + return JSON.parse(fs.readFileSync(file, 'utf-8')) +} + +function getBookKeyEn(name: string): string { + const map: Record = { + 'Genesis': 'genesis', 'Exodus': 'exodus', 'Leviticus': 'leviticus', 'Numbers': 'numbers', 'Deuteronomy': 'deuteronomy', + 'Joshua': 'joshua', 'Judges': 'judges', 'Ruth': 'ruth', '1 Samuel': '1_samuel', '2 Samuel': '2_samuel', + '1 Kings': '1_kings', '2 Kings': '2_kings', '1 Chronicles': '1_chronicles', '2 Chronicles': '2_chronicles', + 'Ezra': 'ezra', 'Nehemiah': 'nehemiah', 'Esther': 'esther', 'Job': 'job', 'Psalms': 'psalms', + 'Proverbs': 'proverbs', 'Ecclesiastes': 'ecclesiastes', 'Song of Songs': 'song_of_songs', 'Isaiah': 'isaiah', + 'Jeremiah': 'jeremiah', 'Lamentations': 'lamentations', 'Ezekiel': 'ezekiel', 'Daniel': 'daniel', + 'Hosea': 'hosea', 'Joel': 'joel', 'Amos': 'amos', 'Obadiah': 'obadiah', 'Jonah': 'jonah', 'Micah': 'micah', + 'Nahum': 'nahum', 'Habakkuk': 'habakkuk', 'Zephaniah': 'zephaniah', 'Haggai': 'haggai', 'Zechariah': 'zechariah', 'Malachi': 'malachi', + 'Matthew': 'matthew', 'Mark': 'mark', 'Luke': 'luke', 'John': 'john', 'Acts': 'acts', 'Romans': 'romans', + '1 Corinthians': '1_corinthians', '2 Corinthians': '2_corinthians', 'Galatians': 'galatians', 'Ephesians': 'ephesians', 'Philippians': 'philippians', 'Colossians': 'colossians', + '1 Thessalonians': '1_thessalonians', '2 Thessalonians': '2_thessalonians', '1 Timothy': '1_timothy', '2 Timothy': '2_timothy', 'Titus': 'titus', 'Philemon': 'philemon', + 'Hebrews': 'hebrews', 'James': 'james', '1 Peter': '1_peter', '2 Peter': '2_peter', '1 John': '1_john', '2 John': '2_john', '3 John': '3_john', 'Jude': 'jude', 'Revelation': 'revelation' + } + return map[name] || name.toLowerCase().replace(/\s+/g, '_') +} + +function getOrderFromList(name: string, list: string[]): number { + const idx = list.indexOf(name) + return idx >= 0 ? idx + 1 : 999 +} + +async function main() { + try { + const abbr = (process.env.EN_ABBR || 'BSB').toUpperCase() + const inputDir = process.env.INPUT_DIR || path.join('data', 'en_bible', abbr) + const lang = 'en' + + const otPath = path.join(inputDir, 'old_testament.json') + const ntPath = path.join(inputDir, 'new_testament.json') + if (!fs.existsSync(otPath) || !fs.existsSync(ntPath)) { + throw new Error(`Missing OT/NT JSON at ${inputDir}. Run fetch-english-bible.ts first.`) + } + + // Upsert English version + const englishVersion = await prisma.bibleVersion.upsert({ + where: { abbreviation_language: { abbreviation: abbr, language: lang } }, + update: {}, + create: { + name: abbr, + abbreviation: abbr, + language: lang, + description: `English Bible (${abbr})`, + isDefault: true + } + }) + + const ot = loadJson(otPath) + const nt = loadJson(ntPath) + const canon = [...ot.books.map(b => b.name), ...nt.books.map(b => b.name)] + + let importedBooks = 0 + let importedChapters = 0 + let importedVerses = 0 + + async function importTestament(test: TestamentFile) { + for (const book of test.books) { + const orderNum = getOrderFromList(book.name, canon) + const testament = test.testament + const bookKey = getBookKeyEn(book.name) + + const createdBook = await prisma.bibleBook.upsert({ + where: { + versionId_orderNum: { + versionId: englishVersion.id, + orderNum + } + }, + update: {}, + create: { + versionId: englishVersion.id, + name: book.name, + testament, + orderNum, + bookKey + } + }) + importedBooks++ + + for (const chapter of book.chapters) { + const createdChapter = await prisma.bibleChapter.upsert({ + where: { + bookId_chapterNum: { + bookId: createdBook.id, + chapterNum: chapter.chapterNum + } + }, + update: {}, + create: { bookId: createdBook.id, chapterNum: chapter.chapterNum } + }) + importedChapters++ + + // Deduplicate verses by verseNum + const unique = new Map() + for (const v of chapter.verses) { + if (!unique.has(v.verseNum)) unique.set(v.verseNum, v.text) + } + const versesData = Array.from(unique.entries()).map(([num, text]) => ({ + chapterId: createdChapter.id, + verseNum: num, + text + })) + if (versesData.length > 0) { + await prisma.bibleVerse.createMany({ data: versesData, skipDuplicates: true }) + importedVerses += versesData.length + } + } + } + } + + await importTestament(ot) + await importTestament(nt) + + console.log(`Imported ${importedBooks} books, ${importedChapters} chapters, ${importedVerses} verses for ${abbr}.`) + } catch (e) { + console.error('English JSON import failed:', e) + process.exit(1) + } finally { + await prisma.$disconnect() + } +} + +main() + diff --git a/scripts/parse-bsb-md-full.js b/scripts/parse-bsb-md-full.js new file mode 100644 index 0000000..6201e4e --- /dev/null +++ b/scripts/parse-bsb-md-full.js @@ -0,0 +1,103 @@ +#!/usr/bin/env node +const fs = require('fs') +const path = require('path') + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') +const OUT_ABBR = (process.env.EN_ABBR || 'BSB_MD').toUpperCase() +const OUT_DIR = process.env.OUTPUT_DIR || path.join('data','en_bible', OUT_ABBR) + +function ensureDir(p){ fs.mkdirSync(p,{recursive:true}) } +function writeJson(file,obj){ ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj,null,2),'utf-8') } + +const BOOKS = [ + ['Genesis', ['Genesis'],'OT'], ['Exodus',['Exodus'],'OT'], ['Leviticus',['Leviticus'],'OT'], ['Numbers',['Numbers'],'OT'], ['Deuteronomy',['Deuteronomy'],'OT'], + ['Joshua',['Joshua'],'OT'], ['Judges',['Judges'],'OT'], ['Ruth',['Ruth'],'OT'], ['1 Samuel',['1\s+Samuel','1\s+Samuel'],'OT'], ['2 Samuel',['2\s+Samuel','2\s+Samuel'],'OT'], + ['1 Kings',['1\s+Kings'],'OT'], ['2 Kings',['2\s+Kings'],'OT'], ['1 Chronicles',['1\s+Chronicles'],'OT'], ['2 Chronicles',['2\s+Chronicles'],'OT'], + ['Ezra',['Ezra'],'OT'], ['Nehemiah',['Nehemiah'],'OT'], ['Esther',['Esther'],'OT'], ['Job',['Job'],'OT'], ['Psalms',['Psalms|Psalm'],'OT'], + ['Proverbs',['Proverbs'],'OT'], ['Ecclesiastes',['Ecclesiastes'],'OT'], ['Song of Songs',['Song\s+of\s+Songs|Song\s+of\s+Solomon'],'OT'], ['Isaiah',['Isaiah'],'OT'], + ['Jeremiah',['Jeremiah'],'OT'], ['Lamentations',['Lamentations'],'OT'], ['Ezekiel',['Ezekiel'],'OT'], ['Daniel',['Daniel'],'OT'], + ['Hosea',['Hosea'],'OT'], ['Joel',['Joel'],'OT'], ['Amos',['Amos'],'OT'], ['Obadiah',['Obadiah'],'OT'], ['Jonah',['Jonah'],'OT'], ['Micah',['Micah'],'OT'], + ['Nahum',['Nahum'],'OT'], ['Habakkuk',['Habakkuk'],'OT'], ['Zephaniah',['Zephaniah'],'OT'], ['Haggai',['Haggai'],'OT'], ['Zechariah',['Zechariah'],'OT'], ['Malachi',['Malachi'],'OT'], + ['Matthew',['Matthew'],'NT'], ['Mark',['Mark'],'NT'], ['Luke',['Luke'],'NT'], ['John',['John'],'NT'], ['Acts',['Acts'],'NT'], + ['Romans',['Romans'],'NT'], ['1 Corinthians',['1\s+Corinthians'],'NT'], ['2 Corinthians',['2\s+Corinthians'],'NT'], ['Galatians',['Galatians'],'NT'], ['Ephesians',['Ephesians'],'NT'], + ['Philippians',['Philippians'],'NT'], ['Colossians',['Colossians'],'NT'], ['1 Thessalonians',['1\s+Thessalonians'],'NT'], ['2 Thessalonians',['2\s+Thessalonians'],'NT'], + ['1 Timothy',['1\s+Timothy'],'NT'], ['2 Timothy',['2\s+Timothy'],'NT'], ['Titus',['Titus'],'NT'], ['Philemon',['Philemon'],'NT'], + ['Hebrews',['Hebrews'],'NT'], ['James',['James'],'NT'], ['1 Peter',['1\\s+Peter'],'NT'], ['2 Peter',['2\\s+Peter'],'NT'], + ['1 John',['1\s+John'],'NT'], ['2 John',['2\s+John'],'NT'], ['3 John',['3\s+John'],'NT'], ['Jude',['Jude'],'NT'], ['Revelation',['Revelation'],'NT'] +] + +function main(){ + if(!fs.existsSync(SRC)) { console.error('Missing source:', SRC); process.exit(1) } + const md = fs.readFileSync(SRC,'utf-8') + + // Collect all verse markers across the entire doc + const markers = [] + for(const [name, variants] of BOOKS){ + const names = variants.join('|') + const re = new RegExp('(?:^|[\\n\\r\\f\\s\\|\\(])(?:'+names+')\\s+(\\d+):(\\d+)', 'gi') + let m + while((m=re.exec(md))!==null){ + markers.push({ book:name, chapter:parseInt(m[1],10), verse:parseInt(m[2],10), index:m.index, matchLen:m[0].length }) + } + } + if(markers.length===0){ console.error('No verse markers found'); process.exit(1) } + markers.sort((a,b)=>a.index-b.index) + + // Build text segments per marker (chapter/verse) + const entries = [] + for(let i=0;i1500) text = text.slice(0,1500).trim() + entries.push({ ...cur, text }) + } + + // Aggregate into OT/NT JSON + const bookIndex = new Map(BOOKS.map(([n,_,t],i)=>[n,{testament:t, order:i+1}])) + const byBook = new Map() + for(const e of entries){ + if(!byBook.has(e.book)) byBook.set(e.book, new Map()) + const chMap = byBook.get(e.book) + if(!chMap.has(e.chapter)) chMap.set(e.chapter, new Map()) + const vMap = chMap.get(e.chapter) + if(!vMap.has(e.verse)) vMap.set(e.verse, e.text) + } + + const otBooks=[]; const ntBooks=[] + for(const [name, chMap] of byBook){ + const meta = bookIndex.get(name) + const chapters=[] + for(const [ch, vMap] of Array.from(chMap.entries()).sort((a,b)=>a[0]-b[0])){ + const verses=[] + for(const [vn, txt] of Array.from(vMap.entries()).sort((a,b)=>a[0]-b[0])){ + verses.push({ verseNum: vn, text: txt }) + } + if(verses.length>0) chapters.push({ chapterNum: ch, verses }) + } + const bookObj={ name, chapters } + if(meta?.testament==='OT') otBooks.push({name,chapters}) + else ntBooks.push({name,chapters}) + } + + // Sort books in canonical order + otBooks.sort((a,b)=>bookIndex.get(a.name).order-bookIndex.get(b.name).order) + ntBooks.sort((a,b)=>bookIndex.get(a.name).order-bookIndex.get(b.name).order) + + const ot={ testament:'Old Testament', books: otBooks } + const nt={ testament:'New Testament', books: ntBooks } + + const otFile = path.join(OUT_DIR,'old_testament.json') + const ntFile = path.join(OUT_DIR,'new_testament.json') + writeJson(otFile, ot) + writeJson(ntFile, nt) + console.log('Wrote:', otFile) + console.log('Wrote:', ntFile) + console.log('Books parsed:', otBooks.length + ntBooks.length) +} + +main() diff --git a/scripts/parse-bsb-md-samples.ts b/scripts/parse-bsb-md-samples.ts new file mode 100644 index 0000000..9590195 --- /dev/null +++ b/scripts/parse-bsb-md-samples.ts @@ -0,0 +1,83 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +/* + Quick sample extractor from bibles/bible-bsb.md to our OT/NT JSON format. + - Looks for Genesis 3:20–24 markers and builds a small sample JSON. + - Output directory: data/en_bible/BSB_SAMPLES + - Intended for demo/import testing without hitting API limits. +*/ + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') +const OUT = path.join('data', 'en_bible', 'BSB_SAMPLES') + +function ensureDir(p: string) { fs.mkdirSync(p, { recursive: true }) } +function writeJson(file: string, obj: any) { ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj, null, 2), 'utf-8') } + +function extractGenesis3Samples(md: string): { chapterNum: number; verses: { verseNum: number; text: string }[] } { + // Find all markers like "Genesis 3:20" and capture their file offsets + const regex = /Genesis\s+3:(\d+)/g + const indices: { verse: number; index: number }[] = [] + for (const m of md.matchAll(regex) as any) { + const verse = parseInt(m[1], 10) + indices.push({ verse, index: m.index }) + } + + // We'll only keep verses 20..24 as a small sample + const keep = new Set([20, 21, 22, 23, 24]) + const kept = indices.filter(x => keep.has(x.verse)).sort((a,b) => a.verse - b.verse) + + const verses: { verseNum: number; text: string }[] = [] + for (let i = 0; i < kept.length; i++) { + const cur = kept[i] + const next = kept[i+1] + const start = cur.index! + const end = next ? next.index! : Math.min(md.length, start + 2000) // cap window + let chunk = md.slice(start, end) + // Remove the marker itself and nearby page headers/footers and footnote junk + chunk = chunk.replace(/Genesis\s+3:\d+.*\n?/,'') + chunk = chunk.replace(/\f\d+\s*\|\s*Genesis\s*3:\d+.*\n?/g,'') + chunk = chunk.replace(/[\u000c\r]+/g,'\n') // form feed cleanup + chunk = chunk.replace(/\s+/g,' ').trim() + // Try to cut off before the next verse number embedded as an isolated number + const stop = chunk.search(/\s(?:2[1-9]|3\d|\d{1,2})\s/) // heuristic + const clean = (stop > 40 ? chunk.slice(0, stop) : chunk).trim() + if (clean.length > 0) verses.push({ verseNum: cur.verse, text: clean }) + } + + // Fallback if nothing captured + if (verses.length === 0) { + verses.push({ verseNum: 20, text: 'And Adam named his wife Eve, because she would be the mother of all the living.' }) + } + + return { chapterNum: 3, verses } +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const gen3 = extractGenesis3Samples(md) + + const ot = { + testament: 'Old Testament', + books: [ + { + name: 'Genesis', + chapters: [gen3] + } + ] + } + // Minimal NT placeholder for structure completeness + const nt = { testament: 'New Testament', books: [] as any[] } + + writeJson(path.join(OUT, 'old_testament.json'), ot) + writeJson(path.join(OUT, 'new_testament.json'), nt) + console.log('Wrote samples to', OUT) +} + +main() + diff --git a/scripts/usfm-to-json.ts b/scripts/usfm-to-json.ts new file mode 100644 index 0000000..af6b747 --- /dev/null +++ b/scripts/usfm-to-json.ts @@ -0,0 +1,163 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +/* + Convert a directory of USFM files (e.g., WEB/KJV) into our OT/NT JSON format. + + Env: + - INPUT_USFM_DIR: path to folder with *.usfm files (unzipped) + - EN_ABBR: English version abbreviation for output folder (e.g., WEB or KJV) + - OUTPUT_DIR (optional): defaults to data/en_bible/ + + Output: + - /old_testament.json + - /new_testament.json + + USFM markers parsed: + - \id + - \h
(optional) + - \c + - \v +*/ + +const INPUT = process.env.INPUT_USFM_DIR || '' +const ABBR = (process.env.EN_ABBR || 'WEB').toUpperCase() +const OUTPUT_DIR = process.env.OUTPUT_DIR || path.join('data','en_bible', ABBR) + +if (!INPUT || !fs.existsSync(INPUT)) { + console.error('Missing or invalid INPUT_USFM_DIR. Set INPUT_USFM_DIR to a folder containing *.usfm files (unzipped).') + process.exit(1) +} + +function ensureDir(p: string) { fs.mkdirSync(p, { recursive: true }) } +function writeJson(file: string, obj: any) { ensureDir(path.dirname(file)); fs.writeFileSync(file, JSON.stringify(obj, null, 2), 'utf-8') } + +// Canonical order + mapping from USFM book codes to English names + testament +// Based on standard Protestant canon 66 books +type CanonEntry = { code: string; name: string; testament: 'OT'|'NT' } +const CANON: CanonEntry[] = [ + {code:'GEN',name:'Genesis',testament:'OT'},{code:'EXO',name:'Exodus',testament:'OT'},{code:'LEV',name:'Leviticus',testament:'OT'}, + {code:'NUM',name:'Numbers',testament:'OT'},{code:'DEU',name:'Deuteronomy',testament:'OT'},{code:'JOS',name:'Joshua',testament:'OT'}, + {code:'JDG',name:'Judges',testament:'OT'},{code:'RUT',name:'Ruth',testament:'OT'},{code:'1SA',name:'1 Samuel',testament:'OT'}, + {code:'2SA',name:'2 Samuel',testament:'OT'},{code:'1KI',name:'1 Kings',testament:'OT'},{code:'2KI',name:'2 Kings',testament:'OT'}, + {code:'1CH',name:'1 Chronicles',testament:'OT'},{code:'2CH',name:'2 Chronicles',testament:'OT'},{code:'EZR',name:'Ezra',testament:'OT'}, + {code:'NEH',name:'Nehemiah',testament:'OT'},{code:'EST',name:'Esther',testament:'OT'},{code:'JOB',name:'Job',testament:'OT'}, + {code:'PSA',name:'Psalms',testament:'OT'},{code:'PRO',name:'Proverbs',testament:'OT'},{code:'ECC',name:'Ecclesiastes',testament:'OT'}, + {code:'SNG',name:'Song of Songs',testament:'OT'},{code:'ISA',name:'Isaiah',testament:'OT'},{code:'JER',name:'Jeremiah',testament:'OT'}, + {code:'LAM',name:'Lamentations',testament:'OT'},{code:'EZK',name:'Ezekiel',testament:'OT'},{code:'DAN',name:'Daniel',testament:'OT'}, + {code:'HOS',name:'Hosea',testament:'OT'},{code:'JOL',name:'Joel',testament:'OT'},{code:'AMO',name:'Amos',testament:'OT'}, + {code:'OBA',name:'Obadiah',testament:'OT'},{code:'JON',name:'Jonah',testament:'OT'},{code:'MIC',name:'Micah',testament:'OT'}, + {code:'NAM',name:'Nahum',testament:'OT'},{code:'HAB',name:'Habakkuk',testament:'OT'},{code:'ZEP',name:'Zephaniah',testament:'OT'}, + {code:'HAG',name:'Haggai',testament:'OT'},{code:'ZEC',name:'Zechariah',testament:'OT'},{code:'MAL',name:'Malachi',testament:'OT'}, + {code:'MAT',name:'Matthew',testament:'NT'},{code:'MRK',name:'Mark',testament:'NT'},{code:'LUK',name:'Luke',testament:'NT'}, + {code:'JHN',name:'John',testament:'NT'},{code:'ACT',name:'Acts',testament:'NT'},{code:'ROM',name:'Romans',testament:'NT'}, + {code:'1CO',name:'1 Corinthians',testament:'NT'},{code:'2CO',name:'2 Corinthians',testament:'NT'},{code:'GAL',name:'Galatians',testament:'NT'}, + {code:'EPH',name:'Ephesians',testament:'NT'},{code:'PHP',name:'Philippians',testament:'NT'},{code:'COL',name:'Colossians',testament:'NT'}, + {code:'1TH',name:'1 Thessalonians',testament:'NT'},{code:'2TH',name:'2 Thessalonians',testament:'NT'},{code:'1TI',name:'1 Timothy',testament:'NT'}, + {code:'2TI',name:'2 Timothy',testament:'NT'},{code:'TIT',name:'Titus',testament:'NT'},{code:'PHM',name:'Philemon',testament:'NT'}, + {code:'HEB',name:'Hebrews',testament:'NT'},{code:'JAS',name:'James',testament:'NT'},{code:'1PE',name:'1 Peter',testament:'NT'}, + {code:'2PE',name:'2 Peter',testament:'NT'},{code:'1JN',name:'1 John',testament:'NT'},{code:'2JN',name:'2 John',testament:'NT'}, + {code:'3JN',name:'3 John',testament:'NT'},{code:'JUD',name:'Jude',testament:'NT'},{code:'REV',name:'Revelation',testament:'NT'} +] +const CODE_TO_META = new Map(CANON.map((c,i)=>[c.code,{...c, order:i+1}])) + +type Verse = { verseNum:number; text:string } +type Chapter = { chapterNum:number; verses:Verse[] } +type Book = { name:string; code:string; testament:'OT'|'NT'; chapters:Chapter[] } + +function parseUsfmFile(file: string): Book | null { + const lines = fs.readFileSync(file,'utf-8').split(/\r?\n/) + let code = '' + let name = '' + let currentChapter = 0 + let currentVerses: Verse[] = [] + const chapters = new Map() + + for (let raw of lines) { + const line = raw.trim() + if (/^\\id\s+/.test(line)) { + const m = line.match(/^\\id\s+(\S+)/) + if (m) code = m[1].toUpperCase() + continue + } + if (/^\\h\s+/.test(line)) { + // \h Genesis + name = line.replace(/^\\h\s+/, '').trim() + continue + } + if (/^\\c\s+/.test(line)) { + // new chapter + if (currentChapter > 0) chapters.set(currentChapter, currentVerses) + currentChapter = parseInt(line.slice(3).trim(), 10) + currentVerses = [] + continue + } + if (/^\\v\s+/.test(line)) { + // \v 1 In the beginning God... + const m = line.match(/^\\v\s+(\d+)\s+(.*)$/) + if (m) { + const verseNum = parseInt(m[1], 10) + let text = m[2] + // Strip inline USFM markers (basic) + text = text.replace(/\\[a-z0-9-]+\s*/gi,'').trim() + currentVerses.push({ verseNum, text }) + } + continue + } + // Some USFM wrap text on subsequent lines; append to last verse if applicable + if (currentVerses.length > 0 && line && !line.startsWith('\\')) { + const last = currentVerses[currentVerses.length - 1] + last.text = (last.text + ' ' + line).replace(/\s+/g,' ').trim() + } + } + if (currentChapter > 0) chapters.set(currentChapter, currentVerses) + + // Resolve name/code/testament + const meta = CODE_TO_META.get(code) + if (!meta) return null + const finalName = name || meta.name + const book: Book = { name: finalName, code, testament: meta.testament, chapters: [] } + for (const [ch, verses] of Array.from(chapters.entries()).sort((a,b)=>a[0]-b[0])) { + if (verses.length > 0) book.chapters.push({ chapterNum: ch, verses }) + } + return book +} + +function main() { + const files = fs.readdirSync(INPUT).filter(f=>f.toLowerCase().endsWith('.usfm')) + console.log('USFM files found:', files.length) + if (files.length === 0) { + console.error('No .usfm files found in', INPUT) + process.exit(1) + } + + const books: Book[] = [] + for (const f of files) { + const full = path.join(INPUT, f) + const b = parseUsfmFile(full) + if (b && b.chapters.length > 0) { + books.push(b) + } else { + // basic debug + // console.log('Skipping', f, 'parsed:', !!b, 'chapters:', b?.chapters.length) + } + } + + // Partition + const otBooks = books.filter(b => b.testament === 'OT').sort((a,b)=>CODE_TO_META.get(a.code)!.order - CODE_TO_META.get(b.code)!.order) + const ntBooks = books.filter(b => b.testament === 'NT').sort((a,b)=>CODE_TO_META.get(a.code)!.order - CODE_TO_META.get(b.code)!.order) + + const ot = { testament: 'Old Testament', books: otBooks.map(b=>({ name:b.name, chapters:b.chapters })) } + const nt = { testament: 'New Testament', books: ntBooks.map(b=>({ name:b.name, chapters:b.chapters })) } + + const otFile = path.join(OUTPUT_DIR, 'old_testament.json') + const ntFile = path.join(OUTPUT_DIR, 'new_testament.json') + writeJson(otFile, ot) + writeJson(ntFile, nt) + console.log('Wrote:', otFile) + console.log('Wrote:', ntFile) + console.log('Books:', books.length, 'OT:', otBooks.length, 'NT:', ntBooks.length) +} + +main() diff --git a/scripts/validate-bsb-md.js b/scripts/validate-bsb-md.js new file mode 100644 index 0000000..d96ad59 --- /dev/null +++ b/scripts/validate-bsb-md.js @@ -0,0 +1,143 @@ +#!/usr/bin/env node +const fs = require('fs') +const path = require('path') + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') + +function canon() { + const OT = [ + ['Genesis', ['Genesis'], 50], + ['Exodus', ['Exodus'], 40], + ['Leviticus', ['Leviticus'], 27], + ['Numbers', ['Numbers'], 36], + ['Deuteronomy', ['Deuteronomy'], 34], + ['Joshua', ['Joshua'], 24], + ['Judges', ['Judges'], 21], + ['Ruth', ['Ruth'], 4], + ['1 Samuel', ['1 Samuel','1 Samuel'], 31], + ['2 Samuel', ['2 Samuel','2 Samuel'], 24], + ['1 Kings', ['1 Kings','1 Kings'], 22], + ['2 Kings', ['2 Kings','2 Kings'], 25], + ['1 Chronicles', ['1 Chronicles','1 Chronicles'], 29], + ['2 Chronicles', ['2 Chronicles','2 Chronicles'], 36], + ['Ezra', ['Ezra'], 10], + ['Nehemiah', ['Nehemiah'], 13], + ['Esther', ['Esther'], 10], + ['Job', ['Job'], 42], + ['Psalms', ['Psalms','Psalm'], 150], + ['Proverbs', ['Proverbs'], 31], + ['Ecclesiastes', ['Ecclesiastes'], 12], + ['Song of Songs', ['Song of Songs','Song of Solomon'], 8], + ['Isaiah', ['Isaiah'], 66], + ['Jeremiah', ['Jeremiah'], 52], + ['Lamentations', ['Lamentations'], 5], + ['Ezekiel', ['Ezekiel'], 48], + ['Daniel', ['Daniel'], 12], + ['Hosea', ['Hosea'], 14], + ['Joel', ['Joel'], 3], + ['Amos', ['Amos'], 9], + ['Obadiah', ['Obadiah'], 1], + ['Jonah', ['Jonah'], 4], + ['Micah', ['Micah'], 7], + ['Nahum', ['Nahum'], 3], + ['Habakkuk', ['Habakkuk'], 3], + ['Zephaniah', ['Zephaniah'], 3], + ['Haggai', ['Haggai'], 2], + ['Zechariah', ['Zechariah'], 14], + ['Malachi', ['Malachi'], 4] + ] + const NT = [ + ['Matthew', ['Matthew'], 28], + ['Mark', ['Mark'], 16], + ['Luke', ['Luke'], 24], + ['John', ['John'], 21], + ['Acts', ['Acts'], 28], + ['Romans', ['Romans'], 16], + ['1 Corinthians', ['1 Corinthians','1 Corinthians'], 16], + ['2 Corinthians', ['2 Corinthians','2 Corinthians'], 13], + ['Galatians', ['Galatians'], 6], + ['Ephesians', ['Ephesians'], 6], + ['Philippians', ['Philippians'], 4], + ['Colossians', ['Colossians'], 4], + ['1 Thessalonians', ['1 Thessalonians','1 Thessalonians'], 5], + ['2 Thessalonians', ['2 Thessalonians','2 Thessalonians'], 3], + ['1 Timothy', ['1 Timothy','1 Timothy'], 6], + ['2 Timothy', ['2 Timothy','2 Timothy'], 4], + ['Titus', ['Titus'], 3], + ['Philemon', ['Philemon'], 1], + ['Hebrews', ['Hebrews'], 13], + ['James', ['James'], 5], + ['1 Peter', ['1 Peter','1 Peter'], 5], + ['2 Peter', ['2 Peter','2 Peter'], 3], + ['1 John', ['1 John','1 John'], 5], + ['2 John', ['2 John','2 John'], 1], + ['3 John', ['3 John','3 John'], 1], + ['Jude', ['Jude'], 1], + ['Revelation', ['Revelation'], 22] + ] + return [ + ...OT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'OT' })), + ...NT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'NT' })), + ] +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const books = canon() + + const report = { file: SRC, totals: { versesTagged: 0 }, books: [] } + + for (const b of books) { + const patterns = b.variants.map(v => v.replace(/\s+/g, '\\s+')) + const names = patterns.join('|') + const re = new RegExp(`(?:^|[\n\r\f\s\|\(])(?:${names})\\s+(\\d+):(\\d+)`, 'gi') + const chapters = new Set() + let m + let verseCount = 0 + while ((m = re.exec(md)) !== null) { + const nums = m.slice(1).filter(Boolean) + const ch = parseInt(nums[0] || '0', 10) + const vs = parseInt(nums[1] || '0', 10) + if (Number.isFinite(ch) && ch > 0) chapters.add(ch) + if (Number.isFinite(vs) && vs > 0) verseCount++ + } + + // Heuristic: some one-chapter books may lack inline verse references; accept header presence + const oneChapterBooks = new Set(['Obadiah','Philemon','2 John','3 John','Jude']) + if (chapters.size === 0 && oneChapterBooks.has(b.name)) { + const headerRe = new RegExp(`[\f\n\r]\s*${b.variants.map(v=>v.replace(/\s+/g,'\\s+')).join('|')}\s*[\n\r]`, 'i') + if (headerRe.test(md)) { + chapters.add(1) + } + } + report.totals.versesTagged += verseCount + report.books.push({ + name: b.name, + testament: b.testament, + expectedChapters: b.expectedChapters, + detectedChapters: Array.from(chapters).sort((a,b)=>a-b), + detectedCount: chapters.size, + coverage: b.expectedChapters > 0 ? +(100 * chapters.size / b.expectedChapters).toFixed(2) : null, + verseMarkers: verseCount + }) + } + + const missingBooks = report.books.filter(x => x.detectedCount === 0).map(x=>x.name) + const partialBooks = report.books.filter(x => x.detectedCount > 0 && x.detectedCount < x.expectedChapters).map(x=>({name:x.name, det:x.detectedCount, exp:x.expectedChapters})) + + console.log('Validation summary for', SRC) + console.log('Total verse markers found:', report.totals.versesTagged) + console.log('Books missing markers:', missingBooks.length ? missingBooks.join(', ') : 'None') + console.log('Books partially detected (chapters):', partialBooks.length ? JSON.stringify(partialBooks.slice(0,10)) : 'None') + + const outDir = path.join('data','en_bible','BSB_VALIDATION') + fs.mkdirSync(outDir, { recursive: true }) + fs.writeFileSync(path.join(outDir,'report.json'), JSON.stringify(report, null, 2), 'utf-8') + console.log('Wrote detailed report to', path.join(outDir,'report.json')) +} + +main() diff --git a/scripts/validate-bsb-md.ts b/scripts/validate-bsb-md.ts new file mode 100644 index 0000000..5cf9697 --- /dev/null +++ b/scripts/validate-bsb-md.ts @@ -0,0 +1,145 @@ +#!/usr/bin/env tsx +import fs from 'fs' +import path from 'path' + +const SRC = process.env.BSB_MD_PATH || path.join('bibles', 'bible-bsb.md') + +type BookInfo = { name: string; variants: string[]; expectedChapters: number; testament: 'OT'|'NT' } + +function canon(): BookInfo[] { + const OT: Array<[string, string[], number]> = [ + ['Genesis', ['Genesis'], 50], + ['Exodus', ['Exodus'], 40], + ['Leviticus', ['Leviticus'], 27], + ['Numbers', ['Numbers'], 36], + ['Deuteronomy', ['Deuteronomy'], 34], + ['Joshua', ['Joshua'], 24], + ['Judges', ['Judges'], 21], + ['Ruth', ['Ruth'], 4], + ['1 Samuel', ['1 Samuel','1 Samuel'], 31], + ['2 Samuel', ['2 Samuel','2 Samuel'], 24], + ['1 Kings', ['1 Kings','1 Kings'], 22], + ['2 Kings', ['2 Kings','2 Kings'], 25], + ['1 Chronicles', ['1 Chronicles','1 Chronicles'], 29], + ['2 Chronicles', ['2 Chronicles','2 Chronicles','2 Chronicles'], 36], + ['Ezra', ['Ezra'], 10], + ['Nehemiah', ['Nehemiah'], 13], + ['Esther', ['Esther'], 10], + ['Job', ['Job'], 42], + ['Psalms', ['Psalms','Psalm'], 150], + ['Proverbs', ['Proverbs'], 31], + ['Ecclesiastes', ['Ecclesiastes'], 12], + ['Song of Songs', ['Song of Songs','Song of Solomon'], 8], + ['Isaiah', ['Isaiah'], 66], + ['Jeremiah', ['Jeremiah'], 52], + ['Lamentations', ['Lamentations'], 5], + ['Ezekiel', ['Ezekiel'], 48], + ['Daniel', ['Daniel'], 12], + ['Hosea', ['Hosea'], 14], + ['Joel', ['Joel'], 3], + ['Amos', ['Amos'], 9], + ['Obadiah', ['Obadiah'], 1], + ['Jonah', ['Jonah'], 4], + ['Micah', ['Micah'], 7], + ['Nahum', ['Nahum'], 3], + ['Habakkuk', ['Habakkuk'], 3], + ['Zephaniah', ['Zephaniah'], 3], + ['Haggai', ['Haggai'], 2], + ['Zechariah', ['Zechariah'], 14], + ['Malachi', ['Malachi'], 4] + ] + const NT: Array<[string, string[], number]> = [ + ['Matthew', ['Matthew'], 28], + ['Mark', ['Mark'], 16], + ['Luke', ['Luke'], 24], + ['John', ['John'], 21], + ['Acts', ['Acts'], 28], + ['Romans', ['Romans'], 16], + ['1 Corinthians', ['1 Corinthians','1 Corinthians'], 16], + ['2 Corinthians', ['2 Corinthians','2 Corinthians'], 13], + ['Galatians', ['Galatians'], 6], + ['Ephesians', ['Ephesians'], 6], + ['Philippians', ['Philippians'], 4], + ['Colossians', ['Colossians'], 4], + ['1 Thessalonians', ['1 Thessalonians','1 Thessalonians'], 5], + ['2 Thessalonians', ['2 Thessalonians','2 Thessalonians'], 3], + ['1 Timothy', ['1 Timothy','1 Timothy'], 6], + ['2 Timothy', ['2 Timothy','2 Timothy'], 4], + ['Titus', ['Titus'], 3], + ['Philemon', ['Philemon'], 1], + ['Hebrews', ['Hebrews'], 13], + ['James', ['James'], 5], + ['1 Peter', ['1 Peter','1 Peter'], 5], + ['2 Peter', ['2 Peter','2 Peter'], 3], + ['1 John', ['1 John','1 John'], 5], + ['2 John', ['2 John','2 John'], 1], + ['3 John', ['3 John','3 John'], 1], + ['Jude', ['Jude'], 1], + ['Revelation', ['Revelation'], 22] + ] + return [ + ...OT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'OT' as const })), + ...NT.map(([n,v,c]) => ({ name:n, variants:v, expectedChapters:c, testament:'NT' as const })), + ] +} + +function escapeRegExp(s: string) { + return s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') +} + +function main() { + if (!fs.existsSync(SRC)) { + console.error('Missing source file:', SRC) + process.exit(1) + } + const md = fs.readFileSync(SRC, 'utf-8') + const books = canon() + + const report: any = { file: SRC, totals: { versesTagged: 0 }, books: [] as any[] } + + for (const b of books) { + // Build a regex to find markers like: "... | BookName 12:34" or just "BookName 12:34" + // Allow flexible whitespace and the double-spaced variants in source. + const patterns = b.variants.map(v => v.replace(/\s+/g, '\\s+')) + const combined = patterns.map(p => `(?:^|[\n\r\f\s\|])${p}\\s+(\\d+):(\\d+)`).join('|') + const re = new RegExp(combined, 'gi') + const chapters = new Set() + let m: RegExpExecArray | null + let verseCount = 0 + while ((m = re.exec(md)) !== null) { + // Find first numeric capture among alternations + const nums = m.slice(1).filter(Boolean) + const ch = parseInt(nums[0] || '0', 10) + const vs = parseInt(nums[1] || '0', 10) + if (Number.isFinite(ch) && ch > 0) chapters.add(ch) + if (Number.isFinite(vs) && vs > 0) verseCount++ + } + + report.totals.versesTagged += verseCount + report.books.push({ + name: b.name, + testament: b.testament, + expectedChapters: b.expectedChapters, + detectedChapters: [...chapters].sort((a,b)=>a-b), + detectedCount: chapters.size, + coverage: b.expectedChapters > 0 ? +(100 * chapters.size / b.expectedChapters).toFixed(2) : null, + verseMarkers: verseCount + }) + } + + const missingBooks = report.books.filter((x:any) => x.detectedCount === 0).map((x:any)=>x.name) + const partialBooks = report.books.filter((x:any) => x.detectedCount > 0 && x.detectedCount < x.expectedChapters).map((x:any)=>({name:x.name, det:x.detectedCount, exp:x.expectedChapters})) + + console.log('Validation summary for', SRC) + console.log('Total verse markers found:', report.totals.versesTagged) + console.log('Books missing markers:', missingBooks.length ? missingBooks.join(', ') : 'None') + console.log('Books partially detected (chapters):', partialBooks.length ? partialBooks.slice(0,10) : 'None') + + const outDir = path.join('data','en_bible','BSB_VALIDATION') + fs.mkdirSync(outDir, { recursive: true }) + fs.writeFileSync(path.join(outDir,'report.json'), JSON.stringify(report, null, 2), 'utf-8') + console.log('Wrote detailed report to', path.join(outDir,'report.json')) +} + +main() + diff --git a/multi-language-implementation-plan.md b/temp/multi-language-implementation-plan.md similarity index 100% rename from multi-language-implementation-plan.md rename to temp/multi-language-implementation-plan.md diff --git a/types/index.ts b/types/index.ts index 5b5f031..6e2dee7 100644 --- a/types/index.ts +++ b/types/index.ts @@ -2,6 +2,7 @@ export interface User { id: string email: string name: string | null + role: string theme: string fontSize: string createdAt: Date